diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000000..d771a8b81d --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,22 @@ +## What type of PR is this. +1. [ ] Bug +2. [ ] Enhancement + +### What have you changed and why? +Information: + + +### Please specify which Issue this PR Resolves. +closes #XXXX + +### Please verify the following and ensure all checks are completed. + +1. [ ] Have you loaded the Mission in Singleplayer? +2. [ ] Have you loaded the Mission in a Dedicated Server? + +### Is further testing or are further changes required? +1. [ ] No +2. [ ] Yes (Please provide further detail below.) + +******************************************************** +Notes: diff --git a/.gitignore b/.gitignore index 08479f2dcb..ca43f323dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,16 @@ - -A3DD/ .vscode/ .github/ -Arma 3 Dev Deploy.exe *.log *.pbo *.pbo.bak *.bat + +#Ignore mission files that have been copied to A3-Antistasi +A3-Antistasi/description.ext +A3-Antistasi/mission.sqm +A3-Antistasi/roadsDB*.sqf +A3-Antistasi/PIC.jpg +A3-Antistasi/ak.jpg + +#Ignore packaged missions +PreparedMissions/ \ No newline at end of file diff --git a/A3-Antistasi/AI/Buildings/isInRoof.sqf b/A3-Antistasi/AI/Buildings/isInRoof.sqf deleted file mode 100644 index 24f714a134..0000000000 --- a/A3-Antistasi/AI/Buildings/isInRoof.sqf +++ /dev/null @@ -1,24 +0,0 @@ -/**************************************************************** -File: UPSMON_Inbuilding.sqf -Author: Azroul13 - -Description: - Check if the AI is in a roof. - -Parameter(s): - <--- Unit -Returns: - boolean -****************************************************************/ - -private ["_onRoof","_Roof","_pos","_Down"]; -_pos = ATLToASL (_this select 0);//recuerda que tiene que ser positionX ATL -//if ((_pos select 2) == 0) then {_pos = ATLtoASL _pos}; -_onRoof = true; -_Roof = lineIntersectsWith [_pos, [(_pos select 0), (_pos select 1), (_pos select 2) + 20]]; -If (count _Roof > 0) then -{ - _onRoof = !((_Roof select 0) isKindOf "BUILDING"); -}; - -_onRoof \ No newline at end of file diff --git a/A3-Antistasi/AI/Buildings/isWindowPosition.sqf b/A3-Antistasi/AI/Buildings/isWindowPosition.sqf deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/A3-Antistasi/AI/autoRearm.sqf b/A3-Antistasi/AI/autoRearm.sqf deleted file mode 100644 index 72021a0358..0000000000 --- a/A3-Antistasi/AI/autoRearm.sqf +++ /dev/null @@ -1,492 +0,0 @@ -private ["_unit","_Pweapon","_Sweapon","_countX","_magazines","_hasBox","_distanceX","_objectsX","_target","_victim","_check","_timeOut","_weaponX","_weaponsX","_rearming","_basePossible","_hmd","_helmet","_truckX","_autoLoot","_itemsUnit"]; - -_unit = _this select 0; - -if (isPlayer _unit) exitWith {}; -if !([_unit] call A3A_fnc_canFight) exitWith {}; -_inPlayerGroup = (isPlayer (leader _unit)); -//_helping = _unit getVariable "helping"; -if (_unit getVariable ["helping",false]) exitWith {if (_inPlayerGroup) then {_unit groupChat "I cannot rearm right now. I'm healing a comrade"}}; -_rearming = _unit getVariable ["rearming",false]; -if (_rearming) exitWith {if (_inPlayerGroup) then {_unit groupChat "I am currently rearming. Cancelling."; _unit setVariable ["rearming",false]}}; -if (vehicle _unit != _unit) exitWith {}; -_unit setVariable ["rearming",true]; - -_Pweapon = primaryWeapon _unit; -_Sweapon = secondaryWeapon _unit; - -_objectsX = []; -_hasBox = false; -_weaponX = ""; -_weaponsX = []; -_distanceX = 51; -_objectsX = nearestObjects [_unit, ["ReammoBox_F","LandVehicle","WeaponHolderSimulated", "GroundWeaponHolder", "WeaponHolder"], 50]; -if (boxX in _objectsX) then {_objectsX = _objectsX - [boxX]}; - -_needsRearm = false; - -if ((_Pweapon in initialRifles) or (_Pweapon == "")) then - { - _needsRearm = true; - if (count _objectsX > 0) then - { - { - _objectX = _x; - if (_unit distance _objectX < _distanceX) then - { - if ((count weaponCargo _objectX > 0) and !(_objectX getVariable ["busy",false])) then - { - _weaponsX = weaponCargo _objectX; - for "_i" from 0 to (count _weaponsX - 1) do - { - _potential = _weaponsX select _i; - _basePossible = [_potential] call BIS_fnc_baseWeapon; - if ((not(_basePossible in ["hgun_PDW2000_F","hgun_Pistol_01_F","hgun_ACPC2_F","arifle_AKM_F","arifle_AKS_F","SMG_05_F","LMG_03_F"])) and ((_basePossible in arifles) or (_basePossible in srifles) or (_basePossible in mguns))) then - { - _target = _objectX; - _hasBox = true; - _distanceX = _unit distance _objectX; - _weaponX = _potential; - }; - }; - }; - }; - } forEach _objectsX; - }; - if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - if ((!alive _target) or (not(_target isKindOf "ReammoBox_F"))) then {_target setVariable ["busy",true]}; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Picking a better weapon"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if ((unitReady _unit) and ([_unit] call A3A_fnc_canFight) and (_unit distance _target > 3) and (_target isKindOf "ReammoBox_F") and (!isNull _target)) then {_unit setPos position _target}; - if (_unit distance _target < 3) then - { - _unit action ["TakeWeapon",_target,_weaponX]; - sleep 5; - if (primaryWeapon _unit == _weaponX) then - { - if (_inPlayerGroup) then {_unit groupChat "I have a better weapon now"}; - if (_target isKindOf "ReammoBox_F") then {_unit action ["rearm",_target]}; - }; - }; - _target setVariable ["busy",false]; - }; - _distanceX = 51; - _Pweapon = primaryWeapon _unit; - sleep 3; - }; -_hasBox = false; -_countX = 4; -if (_Pweapon in mguns) then {_countX = 2}; -_magazines = getArray (configFile / "CfgWeapons" / _Pweapon / "magazines"); -if ({_x in _magazines} count (magazines _unit) < _countX) then - { - _needsRearm = true; - _hasBox = false; - if (count _objectsX > 0) then - { - { - _objectX = _x; - if (({_x in _magazines} count magazineCargo _objectX) > 0) then - { - if (_unit distance _objectX < _distanceX) then - { - _target = _objectX; - _hasBox = true; - _distanceX = _unit distance _objectX; - }; - }; - } forEach _objectsX; - }; - _victims = allDead select {(_x distance _unit < 51) and (!(_x getVariable ["busy",false]))}; - { - _victim = _x; - if (({_x in _magazines} count (magazines _victim) > 0) and (_unit distance _victim < _distanceX)) then - { - _target = _victim; - _hasBox = true; - _distanceX = _victim distance _unit; - }; - } forEach _victims; - }; -if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - if ((!alive _target) or (not(_target isKindOf "ReammoBox_F"))) then {_target setVariable ["busy",true]}; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Rearming"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if ((unitReady _unit) and ([_unit] call A3A_fnc_canFight) and (_unit distance _target > 3) and (_target isKindOf "ReammoBox_F") and (!isNull _target)) then {_unit setPos position _target}; - if (_unit distance _target < 3) then - { - _unit action ["rearm",_target]; - if ({_x in _magazines} count (magazines _unit) >= _countX) then - { - if (_inPlayerGroup) then {_unit groupChat "Rearmed"}; - } - else - { - if (_inPlayerGroup) then {_unit groupChat "Partially Rearmed"}; - }; - }; - _target setVariable ["busy",false]; - } -else - { - if (_inPlayerGroup) then {_unit groupChat "No source to rearm my primary weapon"}; - }; -_hasBox = false; -if ((_Sweapon == "") and (loadAbs _unit < 340)) then - { - if (count _objectsX > 0) then - { - { - _objectX = _x; - if (_unit distance _objectX < _distanceX) then - { - if ((count weaponCargo _objectX > 0) and !(_objectX getVariable ["busy",false])) then - { - _weaponsX = weaponCargo _objectX; - for "_i" from 0 to (count _weaponsX - 1) do - { - _potential = _weaponsX select _i; - if ((_potential in mlaunchers) or (_potential in rlaunchers)) then - { - _target = _objectX; - _hasBox = true; - _distanceX = _unit distance _objectX; - _weaponX = _potential; - }; - }; - }; - }; - } forEach _objectsX; - }; - if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - if ((!alive _target) or (not(_target isKindOf "ReammoBox_F"))) then {_target setVariable ["busy",true]}; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Picking a secondary weapon"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if ((unitReady _unit) and ([_unit] call A3A_fnc_canFight) and (_unit distance _target > 3) and (_target isKindOf "ReammoBox_F") and (!isNull _target)) then {_unit setPos position _target}; - if (_unit distance _target < 3) then - { - _unit action ["TakeWeapon",_target,_weaponX]; - sleep 3; - if (secondaryWeapon _unit == _weaponX) then - { - if (_inPlayerGroup) then {_unit groupChat "I have a secondary weapon now"}; - if (_target isKindOf "ReammoBox_F") then {sleep 3;_unit action ["rearm",_target]}; - }; - }; - _target setVariable ["busy",false]; - }; - _Sweapon = secondaryWeapon _unit; - _distanceX = 51; - sleep 3; - }; -_hasBox = false; -if (_Sweapon != "") then - { - _magazines = getArray (configFile / "CfgWeapons" / _Sweapon / "magazines"); - if ({_x in _magazines} count (magazines _unit) < 2) then - { - _needsRearm = true; - _hasBox = false; - _distanceX = 50; - if (count _objectsX > 0) then - { - { - _objectX = _x; - if ({_x in _magazines} count magazineCargo _objectX > 0) then - { - if (_unit distance _objectX < _distanceX) then - { - _target = _objectX; - _hasBox = true; - _distanceX = _unit distance _objectX; - }; - }; - } forEach _objectsX; - }; - _victims = allDead select {(_x distance _unit < 51) and (!(_x getVariable ["busy",false]))}; - { - _victim = _x; - if (({_x in _magazines} count (magazines _victim) > 0) and (_unit distance _victim < _distanceX)) then - { - _target = _victim; - _hasBox = true; - _distanceX = _victim distance _unit; - }; - } forEach _victims; - }; - if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - if (!alive _target) then {_target setVariable ["busy",true]}; - _unit doMove (position _target); - if (_inPlayerGroup) then {_unit groupChat "Rearming"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if ((unitReady _unit) and ([_unit] call A3A_fnc_canFight) and (_unit distance _target > 3) and (_target isKindOf "ReammoBox_F") and (!isNull _target)) then {_unit setPos position _target}; - if (_unit distance _target < 3) then - { - if ((backpack _unit == "") and (backPack _target != "")) then - { - _unit addBackPackGlobal ((backpack _target) call A3A_fnc_basicBackpack); - _unit action ["rearm",_target]; - sleep 3; - {_unit addItemToBackpack _x} forEach (backpackItems _target); - removeBackpackGlobal _target; - } - else - { - _unit action ["rearm",_target]; - }; - - if ({_x in _magazines} count (magazines _unit) >= 2) then - { - if (_inPlayerGroup) then {_unit groupChat "Rearmed"}; - } - else - { - if (_inPlayerGroup) then {_unit groupChat "Partially Rearmed"}; - }; - }; - _target setVariable ["busy",false]; - } - else - { - if (_inPlayerGroup) then {_unit groupChat "No source to rearm my secondary weapon"}; - }; - sleep 3; - }; -_hasBox = false; -if (!haveRadio && {_unit call A3A_fnc_getRadio == ""}) then - { - _needsRearm = true; - _hasBox = false; - _distanceX = 50; - _victims = allDead select {(_x distance _unit < 51) and (!(_x getVariable ["busy",false]))}; - { - _victim = _x; - if ((_victim call A3A_fnc_getRadio != "") and (_unit distance _victim < _distanceX)) then - { - _target = _victim; - _hasBox = true; - _distanceX = _victim distance _unit; - }; - } forEach _victims; - if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - _target setVariable ["busy",true]; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Picking a Radio"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if (_unit distance _target < 3) then - { - _unit action ["rearm",_target]; - private _radio = _target call A3A_fnc_getRadio; - _unit linkItem _radio; - _target unlinkItem _radio; - }; - _target setVariable ["busy",false]; - }; - }; -_hasBox = false; -if (hmd _unit == "") then - { - _needsRearm = true; - _hasBox = false; - _distanceX = 50; - _victims = allDead select {(_x distance _unit < 51) and (!(_x getVariable ["busy",false]))}; - { - _victim = _x; - if ((hmd _victim != "") and (_unit distance _victim < _distanceX)) then - { - _target = _victim; - _hasBox = true; - _distanceX = _victim distance _unit; - }; - } forEach _victims; - - if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - _target setVariable ["busy",true]; - _hmd = hmd _target; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Picking NV Googles"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if (_unit distance _target < 3) then - { - _unit action ["rearm",_target]; - _unit linkItem _hmd; - _target unlinkItem _hmd; - }; - _target setVariable ["busy",false]; - }; - }; -_hasBox = false; -if (not(headgear _unit in helmets)) then - { - _needsRearm = true; - _hasBox = false; - _distanceX = 50; - _victims = allDead select {(_x distance _unit < 51) and (!(_x getVariable ["busy",false]))}; - { - _victim = _x; - if (((headgear _victim) in helmets) and (_unit distance _victim < _distanceX)) then - { - _target = _victim; - _hasBox = true; - _distanceX = _victim distance _unit; - }; - } forEach _victims; - if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - _target setVariable ["busy",true]; - _helmet = headgear _target; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Picking a Helmet"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if (_unit distance _target < 3) then - { - _unit action ["rearm",_target]; - _unit addHeadgear _helmet; - removeHeadgear _target; - }; - _target setVariable ["busy",false]; - }; - }; -_hasBox = false; -_minFA = if ([_unit] call A3A_fnc_isMedic) then {10} else {1}; - -if ({_x == "FirstAidKit"} count (items _unit) < _minFA) then - { - _needsRearm = true; - _hasBox = false; - _distanceX = 50; - _victims = allDead select {(_x distance _unit < 51) and (!(_x getVariable ["busy",false]))}; - { - _victim = _x; - if (("FirstAidKit" in items _victim) and (_unit distance _victim < _distanceX)) then - { - _target = _victim; - _hasBox = true; - _distanceX = _victim distance _unit; - }; - } forEach _victims; - if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - _target setVariable ["busy",true]; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Picking a First Aid Kit"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if (_unit distance _target < 3) then - { - while {{_x == "FirstAidKit"} count (items _unit) < _minFA} do - { - _unit action ["rearm",_target]; - _unit addItem "FirstAidKit"; - _target removeItem "FirstAidKit"; - if ("FirstAidKit" in items _victim) then {sleep 3}; - }; - }; - _target setVariable ["busy",false]; - }; - }; -_hasBox = false; -_numberX = getNumber (configfile >> "CfgWeapons" >> vest cursortarget >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Chest" >> "armor"); -_distanceX = 50; -_victims = allDead select {(_x distance _unit < 51) and (!(_x getVariable ["busy",false]))}; -{ -_victim = _x; -if ((getNumber (configfile >> "CfgWeapons" >> vest _victim >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Chest" >> "armor") > _numberX) and (_unit distance _victim < _distanceX)) then - { - _target = _victim; - _hasBox = true; - _distanceX = _victim distance _unit; - }; -} forEach _victims; -if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - _target setVariable ["busy",true]; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Picking a a better vest"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if (_unit distance _target < 3) then - { - _itemsUnit = vestItems _unit; - _unit addVest (vest _target); - {_unit addItemToVest _x} forEach _itemsUnit; - _unit action ["rearm",_target]; - //{_unit addItemCargoGlobal [_x,1]} forEach ((backpackItems _target) + (backpackMagazines _target)); - _things = nearestObjects [_target, ["WeaponHolderSimulated", "GroundWeaponHolder", "WeaponHolder"], 5]; - if (count _things > 0) then - { - _thingX = _things select 0; - {_thingX addItemCargoGlobal [_x,1]} forEach (vestItems _target); - }; - removeVest _target; - }; - _target setVariable ["busy",false]; - }; - -if (backpack _unit == "") then - { - _needsRearm = true; - _hasBox = false; - _distanceX = 50; - _victims = allDead select {(_x distance _unit < 51) and (!(_x getVariable ["busy",false]))}; - { - _victim = _x; - if ((backpack _victim != "") and (_unit distance _victim < _distanceX)) then - { - _target = _victim; - _hasBox = true; - _distanceX = _victim distance _unit; - }; - } forEach _victims; - if ((_hasBox) and (_unit getVariable "rearming")) then - { - _unit stop false; - _target setVariable ["busy",true]; - _unit doMove (getPosATL _target); - if (_inPlayerGroup) then {_unit groupChat "Picking a Backpack"}; - _timeOut = time + 60; - waitUntil {sleep 1; !([_unit] call A3A_fnc_canFight) or (isNull _target) or (_unit distance _target < 3) or (_timeOut < time) or (unitReady _unit)}; - if (_unit distance _target < 3) then - { - _unit addBackPackGlobal ((backpack _target) call A3A_fnc_basicBackpack); - _unit action ["rearm",_target]; - //{_unit addItemCargoGlobal [_x,1]} forEach ((backpackItems _target) + (backpackMagazines _target)); - _things = nearestObjects [_target, ["WeaponHolderSimulated", "GroundWeaponHolder", "WeaponHolder"], 5]; - if (count _things > 0) then - { - _thingX = _things select 0; - {_thingX addItemCargoGlobal [_x,1]} forEach (backpackItems _target); - }; - removeBackpackGlobal _target; - }; - _target setVariable ["busy",false]; - }; - }; -_unit doFollow (leader _unit); -if (!_needsRearm) then {if (_inPlayerGroup) then {_unit groupChat "No need to rearm"}} else {if (_inPlayerGroup) then {_unit groupChat "Rearming Done"}}; -_unit setVariable ["rearming",false]; \ No newline at end of file diff --git a/A3-Antistasi/AI/defendDrillAI.sqf b/A3-Antistasi/AI/defendDrillAI.sqf deleted file mode 100644 index 4b71da6de9..0000000000 --- a/A3-Antistasi/AI/defendDrillAI.sqf +++ /dev/null @@ -1,318 +0,0 @@ -private _groupX = _this select 0; -private _markerX = _this select 1; -private _modeX = _this select 2; -_objectivesX = _groupX call A3A_fnc_enemyList; -_groupX setVariable ["objectivesX",_objectivesX]; -private _size = [_markerX] call A3A_fnc_sizeMarker; -if (_modeX != "FORTIFY") then {_groupX setVariable ["taskX","PatrolSoft"]} else {_groupX setVariable ["taskX","FORTIFY"]}; -private _sideX = side _groupX; -private _friendlies = if (_sideX == Occupants) then {[Occupants,civilian]} else {[_sideX]}; -private _mortarsX = []; -private _mgs = []; -private _movable = [leader _groupX]; -private _baseOfFire = [leader _groupX]; - -{ -if (alive _x) then - { - _result = _x call A3A_fnc_typeOfSoldier; - _x setVariable ["maneuvering",false]; - if (_result == "Normal") then - { - _movable pushBack _x; - } - else - { - if (_result == "StaticMortar") then - { - _mortarsX pushBack _x; - } - else - { - if (_result == "StaticGunner") then - { - _mgs pushBack _x; - }; - _movable pushBack _x; - _baseOfFire pushBack _x; - }; - }; - }; -} forEach (units _groupX); - -if (count _mortarsX == 1) then - { - _mortarsX append ((units _groupX) select {_x getVariable ["typeOfSoldier",""] == "StaticBase"}); - if (count _mortarsX > 1) then - { - //_mortarsX spawn A3A_fnc_mortarDrill; - _mortarsX spawn A3A_fnc_staticMGDrill;//no olvides borrar la otra funciĆ³n si esto funciona - } - else - { - _movable pushBack (_mortarsX select 0); - }; - }; -if (count _mgs == 1) then - { - _mgs append ((units _groupX) select {_x getVariable ["typeOfSoldier",""] == "StaticBase"}); - if (count _mgs == 2) then - { - _mgs spawn A3A_fnc_staticMGDrill; - } - else - { - _movable pushBack (_mgs select 0); - }; - }; - -_groupX setVariable ["movable",_movable]; -_groupX setVariable ["baseOfFire",_baseOfFire]; -if (side _groupX == teamPlayer) then {_groupX setVariable ["autoRearmed",time + 300]}; -_buildingsX = nearestTerrainObjects [getMarkerPos _markerX, ["House"],true]; -_buildingsX = _buildingsX select {((_x buildingPos -1) isEqualTo []) and !((typeof _bld) in UPSMON_Bld_remove) and (_x inArea _markerX)}; - -if (_modeX == "FORTIFY") then - { - _buildingsX = _buildingsX call BIS_fnc_arrayShuffle; - _bldPos = []; - _countX = count _movable; - _exit = false; - { - _edificio = _x; - if (_exit) exitWith {}; - { - if ([_x] call isOnRoof) then - { - _bldPos pushBack _x; - if (count _bldPos == _countX) then {_exit = true}; - }; - } forEach (_edificio buildingPos -1); - } forEach _buildingsX; - }; -while {true} do - { - if (({alive _x} count (_groupX getVariable ["movable",[]]) == 0) or (isNull _groupX)) exitWith {}; - - _objectivesX = _groupX call A3A_fnc_enemyList; - _groupX setVariable ["objectivesX",_objectivesX]; - if !(_objectivesX isEqualTo []) then - { - _air = objNull; - _tanksX = objNull; - { - _eny = assignedVehicle (_x select 4); - if (_eny isKindOf "Tank") then - { - _tanksX = _eny; - } - else - { - if (_eny isKindOf "Air") then - { - if (count (weapons _eny) > 1) then - { - _air = _eny; - }; - }; - }; - if (!(isNull _air) and !(isNull _tanksX)) exitWith {}; - } forEach _objectivesX; - _LeaderX = leader _groupX; - _allNearFriends = allUnits select {(_x distance _LeaderX < (distanceSPWN/2)) and (side _x in _friendlies) and ([_x] call A3A_fnc_canFight)}; - { - _unit = _x; - { - _objectiveX = _x select 4; - if (_LeaderX knowsAbout _objectiveX >= 1.4) then - { - _know = _unit knowsAbout _objectiveX; - if (_know < 1.2) then {_unit reveal [_objectiveX,(_know + 0.2)]}; - }; - } forEach _objectivesX; - } forEach (_allNearFriends select {_x == leader _x}) - [_LeaderX]; - _numNearFriends = count _allNearFriends; - _air = objNull; - _tanksX = objNull; - _numObjectives = count _objectivesX; - _taskX = _groupX getVariable ["taskX","Patrol"]; - _nearX = _groupX call A3A_fnc_nearEnemy; - _soldiers = ((units _groupX) select {[_x] call A3A_fnc_canFight}) - [_groupX getVariable ["mortarX",objNull]]; - _numSoldiers = count _soldiers; - if !(isNull _air) then - { - if ({(_x call A3A_fnc_typeOfSoldier == "AAMan") or (_x call A3A_fnc_typeOfSoldier == "StaticGunner")} count _allNearFriends == 0) then - { - if (_sideX != teamPlayer) then {[[getPosASL _LeaderX,_sideX,"Air",false],"A3A_fnc_patrolCA"] remoteExec ["A3A_fnc_scheduler",2]}; - }; - //_nuevataskX = ["Hide",_soldiers - (_soldiers select {(_x call A3A_fnc_typeOfSoldier == "AAMan") or (_x getVariable ["typeOfSoldier",""] == "StaticGunner")})]; - _groupX setVariable ["taskX","Hide"]; - _taskX = "Hide"; - }; - if !(isNull _tanksX) then - { - if ({_x call A3A_fnc_typeOfSoldier == "ATMan"} count _allFriendlies == 0) then - { - _mortarX = _groupX getVariable ["mortarsX",objNull]; - if (!(isNull _mortarX) and ([_mortarX] call A3A_fnc_canFight)) then - { - if ({if (_x distance _tanksX < 100) exitWith {1}} count _allNearFriends == 0) then {[_mortarX,getPosASL _tanksX,4] spawn A3A_fnc_mortarSupport}; - } - else - { - if (_sideX != teamPlayer) then {[[getPosASL _LeaderX,_sideX,"Tank",false],"A3A_fnc_patrolCA"] remoteExec ["A3A_fnc_scheduler",2]}; - }; - }; - //_nuevataskX = ["Hide",_soldiers - (_soldiers select {(_x getVariable ["typeOfSoldier",""] == "ATMan")})]; - _groupX setVariable ["taskX","Hide"]; - _taskX = "Hide"; - }; - if (_numObjectives > 2*_numNearFriends) then - { - if !(isNull _nearX) then - { - if (_sideX != teamPlayer) then {[[getPosASL _LeaderX,_sideX,"Normal",false],"A3A_fnc_patrolCA"] remoteExec ["A3A_fnc_scheduler",2]}; - _mortarX = _groupX getVariable ["mortarsX",objNull]; - if (!(isNull _mortarX) and ([_mortarX] call A3A_fnc_canFight)) then - { - if ({if (_x distance _nearX < 100) exitWith {1}} count _allNearFriends == 0) then {[_mortarX,getPosASL _nearX,1] spawn A3A_fnc_mortarSupport}; - }; - }; - _groupX setVariable ["taskX","Hide"]; - _taskX = "Hide"; - }; - - - if (_taskX == "Patrol") then - { - if ((_nearX distance _LeaderX < 150) and !(isNull _nearX)) then - { - _groupX setVariable ["taskX","Assault"]; - _taskX = "Assault"; - } - else - { - if (_numObjectives > 1) then - { - _mortarX = _groupX getVariable ["mortarsX",objNull]; - if (!(isNull _mortarX) and ([_mortarX] call A3A_fnc_canFight)) then - { - if ({if (_x distance _nearX < 100) exitWith {1}} count _allNearFriends == 0) then {[_mortarX,getPosASL _nearX,1] spawn A3A_fnc_mortarSupport}; - }; - }; - }; - }; - - if (_taskX == "Assault") then - { - if (_nearX distance _LeaderX < 50) then - { - _groupX setVariable ["taskX","AssaultClose"]; - _taskX = "AssaultClose"; - } - else - { - if (_nearX distance _LeaderX > 150) then - { - _groupX setVariable ["taskX","Patrol"]; - } - else - { - if !(isNull _nearX) then - { - { - [_x,_nearX] call A3A_fnc_suppressingFire; - } forEach ((_groupX getVariable ["baseOfFire",[]]) select {([_x] call A3A_fnc_canFight) and ((_x getVariable ["typeOfSoldier",""] == "MGMan") or (_x getVariable ["typeOfSoldier",""] == "StaticGunner"))}); - _mortarX = _groupX getVariable ["mortarsX",objNull]; - if (!(isNull _mortarX) and ([_mortarX] call A3A_fnc_canFight)) then - { - if ({if (_x distance _nearX < 100) exitWith {1}} count _allNearFriends == 0) then {[_mortarX,getPosASL _nearX,1] spawn A3A_fnc_mortarSupport}; - }; - }; - }; - }; - }; - - if (_taskX == "AssaultClose") then - { - if (_nearX distance _LeaderX > 150) then - { - _groupX setVariable ["taskX","Patrol"]; - } - else - { - if (_nearX distance _LeaderX > 50) then - { - _groupX setVariable ["taskX","Assault"]; - } - else - { - if !(isNull _nearX) then - { - _flankers = (_groupX getVariable ["flankers",[]]) select {([_x] call A3A_fnc_canFight) and !(_x getVariable ["maneuvering",false])}; - if (count _flankers != 0) then - { - { - [_x,_x,_nearX] spawn A3A_fnc_chargeWithSmoke; - } forEach ((_groupX getVariable ["baseOfFire",[]]) select {([_x] call A3A_fnc_canFight) and (_x getVariable ["typeOfSoldier",""] == "Normal")}); - if ([getPosASL _nearX] call A3A_fnc_isBuildingPosition) then - { - _engineerX = objNull; - _building = nearestBuilding _nearX; - if !(_building getVariable ["assaulted",false]) then - { - { - if ((_x call A3A_fnc_typeOfSoldier == "Engineer") and {_x != leader _x} and {!(_x getVariable ["maneuvering",true])} and {_x distance _nearX < 50} and {[_x] call A3A_fnc_canFight}) exitWith {_engineerX = _x}; - } forEach (_groupX getVariable ["baseOfFire",[]]); - if !(isNull _engineerX) then - { - [_engineerX,_nearX,_building] spawn A3A_fnc_destroyBuilding; - } - else - { - [[_flankers,_nearX] call BIS_fnc_nearestPosition,_nearX,_building] spawn A3A_fnc_assaultBuilding; - }; - }; - } - else - { - [_flankers,_nearX] spawn A3A_fnc_doFlank; - }; - }; - }; - }; - }; - }; - - if (_taskX == "Hide") then - { - if ((isNull _tanksX) and {isNull _air} and {_numObjectives <= 2*_numNearFriends}) then - { - _groupX setVariable ["taskX","Patrol"]; - } - else - { - _movable = (_groupX getVariable ["movable",[]]) select {[_x] call A3A_fnc_canFight and !(_x getVariable ["maneuvering",false])}; - _movable spawn A3A_fnc_hideInBuilding; - }; - }; - } - else - { - if (_groupX getVariable ["taskX","Patrol"] != "Patrol") then - { - if (_groupX getVariable ["taskX","Patrol"] == "Hide") then {_groupX call A3A_fnc_recallGroup}; - _groupX setVariable ["taskX","Patrol"]; - }; - if (side _groupX == teamPlayer) then - { - if (time >= _groupX getVariable ["autoRearm",time]) then - { - _groupX setVariable ["autoRearm",time + 120]; - {[_x] spawn A3A_fnc_autoRearm; sleep 1} forEach ((_groupX getVariable ["movable",[]]) select {[_x] call A3A_fnc_canFight and !(_x getVariable ["maneuvering",false])}); - }; - }; - }; - diag_log format ["taskX:%1.Movable:%2.Base:%3.Flankers:%4",_groupX getVariable "taskX",_groupX getVariable "movable",_groupX getVariable "baseOfFire",_groupX getVariable "flankers"]; - sleep 30; - }; diff --git a/A3-Antistasi/AI/hasLOS.sqf b/A3-Antistasi/AI/hasLOS.sqf deleted file mode 100644 index 3bec08524f..0000000000 --- a/A3-Antistasi/AI/hasLOS.sqf +++ /dev/null @@ -1,14 +0,0 @@ -//Taken from SAok LOS snippet in OFPEC. -private ["_a","_b","_dirTo","_eyeD","_eyePb","_eyePa","_eyeDV","_hayLOS"]; -//Player -_a = _this select 0; -//AI to see or not -_b = _this select 1; -_eyeDV = eyeDirection _b; -_eyeD = ((_eyeDV select 0) atan2 (_eyeDV select 1)); -if (_eyeD < 0) then {_eyeD = 360 + _eyeD}; -_dirTo = [_b, _a] call BIS_fnc_dirTo; -_eyePb = eyePos _b; -_eyePa = eyePos _a; -if ((abs(_dirTo - _eyeD) >= 90 && (abs(_dirTo - _eyeD) <= 270)) || (lineIntersects [_eyePb, _eyePa]) || (terrainIntersectASL [_eyePb, _eyePa])) then {_hayLOS = false;} else {_hayLOS = true}; -_hayLOS; diff --git a/A3-Antistasi/Ammunition/CSATCrate.sqf b/A3-Antistasi/Ammunition/CSATCrate.sqf deleted file mode 100644 index 68f9139caa..0000000000 --- a/A3-Antistasi/Ammunition/CSATCrate.sqf +++ /dev/null @@ -1,91 +0,0 @@ - -private ["_crate","_thingX","_num","_magazines"]; - -_crate = _this select 0; - -clearMagazineCargoGlobal _crate; -clearWeaponCargoGlobal _crate; -clearItemCargoGlobal _crate; -clearBackpackCargoGlobal _crate; - -_var1 = 1+ round random 4; -_var2 = 1 + round random 5; -_var3 = 1 + floor random 3; -_var4 = floor random 2; -if (typeOf _crate == vehCSATAmmoTruck) then - { - _var1=_var1*2; - _var2=_var2*2; - _var3=_var3*2; - _var4=_var4*2; - }; - -for "_i" from 0 to _var1 do - { - _thingX = selectRandom (weaponsCSAT + antitankAAF); - if (!(_thingX in unlockedWeapons)) then - { - _num = 1+ (floor random 12); - _crate addWeaponCargoGlobal [_thingX, _num]; - _magazines = getArray (configFile / "CfgWeapons" / _thingX / "magazines"); - _crate addMagazineCargoGlobal [_magazines select 0, _num * 3]; - }; - }; -for "_i" from 0 to _var2 do - { - _thingX = selectRandom itemsAAF; - if (!(_thingX in unlockedItems)) then - { - _num = floor random 5; - _crate addItemCargoGlobal [_thingX, _num]; - }; - }; -for "_i" from 0 to _var2 do - { - _thingX = selectRandom ammunitionCSAT; - if (!(_thingX in unlockedMagazines)) then {_crate addMagazineCargoGlobal [_thingX, 10]}; - }; -for "_i" from 1 to _var3 do - { - _thingX = selectRandom minesAAF; - _num = 1 + (floor random 5); - _crate addMagazineCargoGlobal [_thingX, _num]; - }; - -if !(hasIFA) then - { - for "_i" from 1 to _var4 do - { - _thingX = selectRandom opticsAAF; - if (not(_thingX in unlockedItems)) then - { - _crate addItemCargoGlobal [_thingX, 1 + (floor random 2)]; - }; - }; - - if (round random 100 < 25) then - { - _crate addBackpackCargoGlobal ["O_Static_Designator_02_weapon_F",1]; - } - else - { - if (round random 100 < 25) then - { - if (side group petros == independent) then - { - _crate addBackpackCargoGlobal ["I_UAV_01_backpack_F",1]; - _crate addItemCargoGlobal ["I_UavTerminal",1]; - } - else - { - _crate addBackpackCargoGlobal ["B_UAV_01_backpack_F",1]; - _crate addItemCargoGlobal ["B_UavTerminal",1]; - comment "Exported from Arsenal by Alberto"; - }; - } - else - { - _crate addBackpackCargoGlobal ["B_Carryall_oli",round (random 2)]; - }; - }; - }; \ No newline at end of file diff --git a/A3-Antistasi/Ammunition/NATOCrate.sqf b/A3-Antistasi/Ammunition/NATOCrate.sqf deleted file mode 100644 index 5eec330f3c..0000000000 --- a/A3-Antistasi/Ammunition/NATOCrate.sqf +++ /dev/null @@ -1,95 +0,0 @@ -//if (!isServer) exitWith {}; - -private ["_crate","_thingX","_num","_magazines"]; - -_crate = _this select 0; - -clearMagazineCargoGlobal _crate; -clearWeaponCargoGlobal _crate; -clearItemCargoGlobal _crate; -clearBackpackCargoGlobal _crate; - -_var1 = 1 + round random 4; -_var2 = 1 + round random 5; -_var3 = 1 + floor random 3; -_var4 = floor random 2; -if (typeOf _crate == vehNATOAmmoTruck) then - { - _var1=_var1*2; - _var2=_var2*2; - _var3=_var3*2; - _var4=_var4*2; - }; - -for "_i" from 0 to _var1 do - { - _thingX = selectRandom (weaponsNato + antitankAAF); - if (!(_thingX in unlockedWeapons)) then - { - _num = 1 + (floor random 12); - _crate addWeaponCargoGlobal [_thingX, _num]; - _magazines = getArray (configFile / "CfgWeapons" / _thingX / "magazines"); - _crate addMagazineCargoGlobal [_magazines select 0, _num * 3]; - }; - }; -for "_i" from 0 to _var2 do - { - _thingX = selectRandom itemsAAF; - if (!(_thingX in unlockedItems)) then - { - _num = floor random 5; - _crate addItemCargoGlobal [_thingX, _num]; - }; - }; -for "_i" from 0 to _var2 do - { - _thingX = selectRandom ammunitionNATO; - if (!(_thingX in unlockedMagazines)) then {_crate addMagazineCargoGlobal [_thingX, 10]}; - }; -for "_i" from 1 to _var3 do - {_thingX = selectRandom minesAAF; - _num = 1 + (floor random 5); - _crate addMagazineCargoGlobal [_thingX, _num]; - }; -if !(hasIFA) then - { - for "_i" from 1 to _var4 do - { - _thingX = selectRandom opticsAAF; - if (not(_thingX in unlockedItems)) then - { - _crate addItemCargoGlobal [_thingX, 1 + (floor random 2)]; - }; - }; - - if (round random 100 < 25) then - { - _crate addBackpackCargoGlobal ["B_Static_Designator_01_weapon_F",1]; - } - else - { - if (round random 100 < 50) then - { - if (side group petros == independent) then - { - _crate addBackpackCargoGlobal ["I_UAV_01_backpack_F",1]; - _crate addItemCargoGlobal ["I_UavTerminal",1]; - } - else - { - _crate addBackpackCargoGlobal ["B_UAV_01_backpack_F",1]; - _crate addItemCargoGlobal ["B_UavTerminal",1]; - }; - } - else - { - _crate addBackpackCargoGlobal ["B_Carryall_oli",round (random 2)]; - }; - }; - if (hasACE) then - { - _crate addMagazineCargoGlobal ["ACE_HuntIR_M203", 3]; - //_crate addBackpackCargoGlobal ["ACE_HuntIR_Box",1]; - _crate addItemCargoGlobal ["ACE_HuntIR_monitor", 1]; - }; - }; \ No newline at end of file diff --git a/A3-Antistasi/Ammunition/arsenalManage.sqf b/A3-Antistasi/Ammunition/arsenalManage.sqf deleted file mode 100644 index 3b861dba67..0000000000 --- a/A3-Antistasi/Ammunition/arsenalManage.sqf +++ /dev/null @@ -1,162 +0,0 @@ -if (!isServer) exitWith {}; -#include "\A3\Ui_f\hpp\defineResinclDesign.inc" -private ["_weaponsX","_backpcks","_items","_magazines","_weaponX","_magazine","_index","_backpck","_item","_optics","_nv"]; - -_updated = ""; -/* - -(jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_UNIFORM) - - IDC_RSCDISPLAYARSENAL_TAB_CARGOMISC\ -*/ -["buttonInvToJNA"] call jn_fnc_arsenal; -_weaponsX = ((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_PRIMARYWEAPON) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_HANDGUN) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOTHROW) + /*(jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOPUT) + */(jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_SECONDARYWEAPON)) select {_x select 1 != -1}; -//_magazines = ((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOMAG) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL)) select {_x select 1 == -1}; -_backpcks = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_BACKPACK) select {_x select 1 != -1}; -_items = ((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_HEADGEAR) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_VEST) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_GOGGLES) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_MAP) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_GPS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_RADIO) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_COMPASS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_WATCH) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMACC) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMMUZZLE) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMBIPOD) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_BINOCULARS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOMISC)) select {_x select 1 != -1}; -_optics = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMOPTIC) select {_x select 1 != -1}; -_nv = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_NVGS) select {_x select 1 != -1}; - -_check = false; -{ -if (_x select 1 >= minWeaps) then - { - _weaponX = _x select 0; - if !(_weaponX in mlaunchers) then - { - _magazine = (getArray (configFile / "CfgWeapons" / _weaponX / "magazines") select 0); - if (!isNil "_magazine") then - { - if (not(_magazine in unlockedMagazines)) then - { - unlockedMagazines pushBack _magazine; - _updated = format ["%1%2
",_updated,getText (configFile >> "CfgMagazines" >> _magazine >> "displayName")]; - _index = _magazine call jn_fnc_arsenal_itemType; - [_index,_magazine,-1] call jn_fnc_arsenal_addItem; - }; - }; - unlockedWeapons pushBack _weaponX; - //lockedWeapons = lockedWeapons - [_weaponX]; - if (_weaponX in arifles) then - { - unlockedRifles pushBack _weaponX; publicVariable "unlockedRifles"; - if (count (getArray (configfile >> "CfgWeapons" >> _weaponX >> "muzzles")) == 2) then - { - unlockedGL pushBack _weaponX; publicVariable "unlockedGL"; - }; - } - else - { - if (_weaponX in mguns) then - { - unlockedMG pushBack _weaponX; publicVariable "unlockedMG"; - } - else - { - if (_weaponX in srifles) then - { - unlockedSN pushBack _weaponX; publicVariable "unlockedSN"; - } - else - { - if (_weaponX in ((rlaunchers + mlaunchers) select {(getNumber (configfile >> "CfgWeapons" >> _x >> "lockAcquire") == 0)})) then - { - unlockedAT pushBack _weaponX; publicVariable "unlockedAT"; - } - else - { - if (_weaponX in (mlaunchers select {(getNumber (configfile >> "CfgWeapons" >> _x >> "lockAcquire") == 1)})) then {unlockedAA pushBack _weaponX; publicVariable "unlockedAA"}; - }; - }; - }; - }; - _updated = format ["%1%2
",_updated,getText (configFile >> "CfgWeapons" >> _weaponX >> "displayName")]; - _index = _weaponX call jn_fnc_arsenal_itemType; - [_index,_weaponX,-1] call jn_fnc_arsenal_addItem; - }; - }; -} forEach _weaponsX; - -if (_check) then - { - publicVariable "unlockedWeapons"; - publicVariable "unlockedMagazines"; - _check = false; - }; - -{ -if (_x select 1 >= minWeaps) then - { - _backpck = _x select 0; - _index = _backpck call jn_fnc_arsenal_itemType; - [_index,_backpck,-1] call jn_fnc_arsenal_addItem; - _updated = format ["%1%2
",_updated,getText (configFile >> "CfgVehicles" >> _backpck >> "displayName")]; - unlockedBackpacks pushBack _backpck; - publicVariable "unlockedBackpacks"; - }; -} forEach _backpcks; - -{ -if (_x select 1 >= minWeaps) then - { - _item = _x select 0; - unlockedItems pushBack _item; - _updated = format ["%1%2
",_updated,getText (configFile >> "CfgWeapons" >> _item >> "displayName")]; - _check = true; - _index = _item call jn_fnc_arsenal_itemType; - [_index,_item,-1] call jn_fnc_arsenal_addItem; - }; -} forEach _items; - -if (_check) then - { - call A3A_fnc_checkRadiosUnlocked; - }; -{ -if (_x select 1 >= minWeaps) then - { - _item = _x select 0; - unlockedOptics pushBack _item; - unlockedOptics = [unlockedOptics,[],{getNumber (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "mass")},"DESCEND"] call BIS_fnc_sortBy; - unlockedItems pushBack _item; - _updated = format ["%1%2
",_updated,getText (configFile >> "CfgWeapons" >> _item >> "displayName")]; - _check = true; - _index = _item call jn_fnc_arsenal_itemType; - [_index,_item,-1] call jn_fnc_arsenal_addItem; - }; -} forEach _optics; - -if (_check) then - { - publicVariable "unlockedOptics"; - publicVariable "unlockedItems"; - _check = false; - }; - -//Handle NVG unlocking -//Unlock a random NVG per X non-unlocked NVG we have, from the list we've collected. -private _countX = 0; -private _lockedNvs = []; - -//Add up how many non-unlocked NVGs we have. -{ - private _amount = (_x select 1); - if (_amount > 0) then { - _countX = _countX + _amount; - _lockedNvs pushBack (_x select 0); - }; -} forEach _nv; - -//Implicitly, we have locked NVGs if we've counted more than 0 locked NVGs in the box. -if (_countX >= minWeaps) then -{ - private _nvToUnlock = selectRandom _lockedNvs; - unlockedItems = unlockedItems + [_nvToUnlock]; - haveNV = true; publicVariable "haveNV"; - publicVariable "unlockedItems"; - _updated = format ["%1%2
",_updated,getText (configFile >> "CfgWeapons" >> _nvToUnlock >> "displayName")]; - _index = _nvToUnlock call jn_fnc_arsenal_itemType; - [_index,_nvToUnlock,-1] call jn_fnc_arsenal_addItem; -}; - -_updated \ No newline at end of file diff --git a/A3-Antistasi/Ammunition/boxAAF.sqf b/A3-Antistasi/Ammunition/boxAAF.sqf deleted file mode 100644 index f368b3cb9e..0000000000 --- a/A3-Antistasi/Ammunition/boxAAF.sqf +++ /dev/null @@ -1,38 +0,0 @@ -if (!isServer and hasInterface) exitWith {}; - -private ["_thingX","_num","_magazines"]; - -clearMagazineCargoGlobal boxX; -clearWeaponCargoGlobal boxX; -clearItemCargoGlobal boxX; -clearBackpackCargoGlobal boxX; - - -for "_i" from 0 to (1+ round random 4) do - {_thingX = if (random 2 < 1) then {selectRandom (weaponsNato + antitankAAF)} else {selectRandom (weaponsCSAT + antitankAAF)}; - _num = 1+ (floor random 4); - boxX addWeaponCargoGlobal [_thingX, _num]; - _magazines = getArray (configFile / "CfgWeapons" / _thingX / "magazines"); - boxX addMagazineCargoGlobal [_magazines select 0, _num * 3]; - }; - -for "_i" from 0 to (1 + round random 5) do - {_thingX = selectRandom itemsAAF; - _num = floor random 5; - boxX addItemCargoGlobal [_thingX, _num]; - }; - -for "_i" from 1 to (floor random 3) do - {_thingX = selectRandom minesAAF; - _num = 1 + (floor random 5); - boxX addMagazineCargoGlobal [_thingX, _num]; - }; -if !(opticsAAF isEqualTo []) then - { - for "_i" from 1 to (floor random 2) do - { - _thingX = selectRandom opticsAAF; - boxX addItemCargoGlobal [_thingX, 1 + (floor random 2)]; - }; - }; -if (hasTFAR) then {boxX addBackpackCargoGlobal ["tf_rt1523g_big_bwmod",1]}; diff --git a/A3-Antistasi/Ammunition/randomRifle.sqf b/A3-Antistasi/Ammunition/randomRifle.sqf deleted file mode 100644 index 5ad34953c5..0000000000 --- a/A3-Antistasi/Ammunition/randomRifle.sqf +++ /dev/null @@ -1,23 +0,0 @@ -private ["_unit","_compatibleX","_potentials","_rifle","_helmet","_uniform","_vest"]; - -_unit = _this select 0; -_pool = _this select 1; -if (_pool isEqualTo []) exitWith {}; -_rifleFinal = selectRandom _pool; -if (_rifleFinal == primaryWeapon _unit) exitWith {}; - -_magazines = getArray (configFile / "CfgWeapons" / (primaryWeapon _unit) / "magazines"); -{_unit removeMagazines _x} forEach _magazines; -_unit removeWeaponGlobal (primaryWeapon _unit); - -if (_rifleFinal in unlockedGL) then - { - _unit addMagazine ["1Rnd_HE_Grenade_shell", 3]; - }; -[_unit, _rifleFinal, 5, 0] call BIS_fnc_addWeapon; -if (count unlockedOptics > 0) then - { - _compatibleX = [primaryWeapon _unit] call BIS_fnc_compatibleItems; - _potentials = unlockedOptics select {_x in _compatibleX}; - if (count _potentials > 0) then {_unit addPrimaryWeaponItem (selectRandom _potentials)}; - }; \ No newline at end of file diff --git a/A3-Antistasi/CREATE/CSATpunish.sqf b/A3-Antistasi/CREATE/CSATpunish.sqf deleted file mode 100644 index 306fd81140..0000000000 --- a/A3-Antistasi/CREATE/CSATpunish.sqf +++ /dev/null @@ -1,241 +0,0 @@ -if (!isServer and hasInterface) exitWith {}; -private ["_posOrigin","_typeGroup","_nameOrigin","_markTsk","_wp1","_soldiers","_landpos","_pad","_vehiclesX","_wp0","_wp3","_wp4","_wp2","_groupX","_groups","_typeVehX","_vehicle","_pilots","_rnd","_resourcesAAF","_nVeh","_radiusX","_roads","_Vwp1","_tanksX","_road","_veh","_vehCrew","_groupVeh","_Vwp0","_size","_Hwp0","_groupX1","_uav","_groupUAV","_uwp0","_tsk","_vehicle","_soldierX","_pilot","_mrkDestination","_posDestination","_prestigeCSAT","_base","_airportX","_nameDest","_timeX","_solMax","_nul","_pos","_timeOut"]; -_mrkDestination = _this select 0; -_mrkOrigin = _this select 1; -bigAttackInProgress = true; -publicVariable "bigAttackInProgress"; -_posDestination = getMarkerPos _mrkDestination; -_posOrigin = getMarkerPos _mrkOrigin; -_groups = []; -_soldiers = []; -_pilots = []; -_vehiclesX = []; -_civiles = []; - -diag_log format ["[Antistasi] Launching CSAT Punish Against %1 from %2 (CSATpunish.sqf)", _mrkDestination, _mrkOrigin]; - -_nameDest = [_mrkDestination] call A3A_fnc_localizar; -[[teamPlayer,civilian,Occupants],"AttackAAF",[format ["%2 is making a punishment expedition to %1. They will kill everybody there. Defend the city at all costs",_nameDest,nameInvaders],format ["%1 Punishment",nameInvaders],_mrkDestination],getMarkerPos _mrkDestination,false,0,true,"Defend",true] call BIS_fnc_taskCreate; - -_nul = [_mrkOrigin,_mrkDestination,Invaders] spawn A3A_fnc_artillery; -_sideX = if (sidesX getVariable [_mrkDestination,sideUnknown] == Occupants) then {Occupants} else {teamPlayer}; -_timeX = time + 3600; - -private _CSATTransportAir = vehCSATTransportHelis + vehCSATTransportPlanes; - -for "_i" from 1 to 3 do - { - _typeVehX = if (_i != 3) then {selectRandom (vehCSATAir select {[_x] call A3A_fnc_vehAvailable})} else {selectRandom (_CSATTransportAir select {[_x] call A3A_fnc_vehAvailable})}; - _timeOut = 0; - _pos = _posOrigin findEmptyPosition [0,100,_typeVehX]; - while {_timeOut < 60} do - { - if (count _pos > 0) exitWith {}; - _timeOut = _timeOut + 1; - _pos = _posOrigin findEmptyPosition [0,100,_typeVehX]; - sleep 1; - }; - if (count _pos == 0) then {_pos = _posOrigin}; - private _spawnResult=[_pos, 0, _typeVehX, Invaders] call bis_fnc_spawnvehicle; - private _veh = _spawnResult select 0; - private _vehCrew = _spawnResult select 1; - {[_x] call A3A_fnc_NATOinit} forEach _vehCrew; - [_veh] call A3A_fnc_AIVEHinit; - _groupVeh = _spawnResult select 2; - _pilots = _pilots + _vehCrew; - _groups pushBack _groupVeh; - _vehiclesX pushBack _veh; - - //If spawning a plane, it needs moving into the air. - if (_typeVehX isKindOf "Plane") then { - _veh setDir ((getDir _veh) + (_veh getRelDir _posDestination)); - _veh setPos (getPos _veh vectorAdd [0, 0, 300]); - _veh setVelocityModelSpace (velocityModelSpace _veh vectorAdd [0, 150, 10]); - }; - - //If we're an attack vehicle. - if (not(_typeVehX in _CSATTransportAir)) then - { - _wp1 = _groupVeh addWaypoint [_posDestination, 0]; - _wp1 setWaypointType "SAD"; - //[_veh,"Air Attack"] spawn A3A_fnc_inmuneConvoy; - } - else - { - {_x setBehaviour "CARELESS";} forEach units _groupVeh; - _typeGroup = [_typeVehX,Invaders] call A3A_fnc_cargoSeats; - _groupX = [_posOrigin, Invaders, _typeGroup] call A3A_fnc_spawnGroup; - {_x assignAsCargo _veh;_x moveInCargo _veh; _soldiers pushBack _x; [_x] call A3A_fnc_NATOinit; _x setVariable ["originX",_mrkOrigin]} forEach units _groupX; - _groups pushBack _groupX; - //[_veh,"CSAT Air Transport"] spawn A3A_fnc_inmuneConvoy; - - if (_typeVehX isKindOf "Plane") then { - [_veh,_groupX,_mrkDestination,_mrkOrigin] spawn A3A_fnc_airdrop; - } else { - if (not(_typeVehX in vehFastRope)) then - { - - _landPos = _posDestination getPos [(random 500) + 300, random 360]; - - _landPos = [_landPos, 200, 350, 10, 0, 0.20, 0,[],[[0,0,0],[0,0,0]]] call BIS_fnc_findSafePos; - if !(_landPos isEqualTo [0,0,0]) then - { - _landPos set [2, 0]; - _pad = createVehicle ["Land_HelipadEmpty_F", _landpos, [], 0, "NONE"]; - _vehiclesX pushBack _pad; - _wp0 = _groupVeh addWaypoint [_landpos, 0]; - _wp0 setWaypointType "TR UNLOAD"; - _wp0 setWaypointStatements ["true", "(vehicle this) land 'GET OUT'"]; - [_groupVeh,0] setWaypointBehaviour "CARELESS"; - _wp3 = _groupX addWaypoint [_landpos, 0]; - _wp3 setWaypointType "GETOUT"; - _wp0 synchronizeWaypoint [_wp3]; - _wp4 = _groupX addWaypoint [_posDestination, 1]; - _wp4 setWaypointType "SAD"; - _wp4 setWaypointStatements ["true","{if (side _x != side this) then {this reveal [_x,4]}} forEach allUnits"]; - _wp2 = _groupVeh addWaypoint [_posOrigin, 1]; - _wp2 setWaypointType "MOVE"; - _wp2 setWaypointStatements ["true", "deleteVehicle (vehicle this); {deleteVehicle _x} forEach thisList"]; - [_groupVeh,1] setWaypointBehaviour "AWARE"; - }; - } - else - { - {_x disableAI "TARGET"; _x disableAI "AUTOTARGET"} foreach units _groupVeh; - [_veh,_groupX,_posDestination,_posOrigin,_groupVeh] spawn A3A_fnc_fastrope; - }; - }; - }; - sleep 20; - }; - -_dataX = server getVariable _mrkDestination; - -_numCiv = _dataX select 0; -_numCiv = round (_numCiv /10); - -if (sidesX getVariable [_mrkDestination,sideUnknown] == Occupants) then {[[_posDestination,Occupants,"",false],"A3A_fnc_patrolCA"] remoteExec ["A3A_fnc_scheduler",2]}; - -if (_numCiv < 8) then {_numCiv = 8}; - -_size = [_mrkDestination] call A3A_fnc_sizeMarker; -//_groupCivil = if (_sideX == teamPlayer) then {createGroup teamPlayer} else {createGroup Occupants}; -_groupCivil = createGroup teamPlayer; -_groups pushBack _groupCivil; -//[Invaders,[civilian,0]] remoteExec ["setFriend",2]; -_typeUnit = if (_sideX == teamPlayer) then {SDKUnarmed} else {NATOUnarmed}; -for "_i" from 0 to _numCiv do - { - while {true} do - { - _pos = _posDestination getPos [random _size,random 360]; - if (!surfaceIsWater _pos) exitWith {}; - }; - _typeUnit = selectRandom arrayCivs; - _civ = _groupCivil createUnit [_typeUnit,_pos, [],0,"NONE"]; - _civ forceAddUniform (selectRandom civUniforms); - _rnd = random 100; - if (_rnd < 90) then - { - if (_rnd < 25) then {[_civ, "hgun_PDW2000_F", 5, 0] call BIS_fnc_addWeapon;} else {[_civ, "hgun_Pistol_heavy_02_F", 5, 0] call BIS_fnc_addWeapon;}; - }; - _civiles pushBack _civ; - [_civ] call A3A_fnc_civInit; - sleep 0.5; - }; - -_nul = [leader _groupCivil, _mrkDestination, "AWARE","SPAWNED","NOVEH2"] execVM "scripts\UPSMON.sqf"; - -_civilMax = {alive _x} count _civiles; -_solMax = count _soldiers; - -for "_i" from 0 to round random 2 do - { - if ([vehCSATPlane] call A3A_fnc_vehAvailable) then - { - private _bombType = if (napalmEnabled) then {"NAPALM"} else {"HE"}; - _nul = [_mrkDestination,Invaders,_bombType] spawn A3A_fnc_airstrike; - sleep 30; - }; - }; - -waitUntil {sleep 5; (({not (captive _x)} count _soldiers) < ({captive _x} count _soldiers)) or ({alive _x} count _soldiers < round (_solMax / 3)) or (({(_x distance _posDestination < _size*2) and (not(vehicle _x isKindOf "Air")) and (alive _x) and (!captive _x)} count _soldiers) > 4*({(alive _x) and (_x distance _posDestination < _size*2)} count _civiles)) or (time > _timeX)}; - -if ((({not (captive _x)} count _soldiers) < ({captive _x} count _soldiers)) or ({alive _x} count _soldiers < round (_solMax / 3)) or (time > _timeX)) then - { - {_x doMove [0,0,0]} forEach _soldiers; - //["AttackAAF", "SUCCEEDED",true] spawn BIS_fnc_taskSetState; - ["AttackAAF",[format ["%2 is making a punishment expedition to %1. They will kill everybody there. Defend the city at all costs",_nameDest,nameInvaders],format ["%1 Punishment",nameInvaders],_mrkDestination],getMarkerPos _mrkDestination,"SUCCEEDED"] call A3A_fnc_taskUpdate; - if ({(side _x == teamPlayer) and (_x distance _posDestination < _size * 2)} count allUnits >= {(side _x == Occupants) and (_x distance _posDestination < _size * 2)} count allUnits) then - { - if (sidesX getVariable [_mrkDestination,sideUnknown] == Occupants) then {[-15,15,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]} else {[-5,15,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]}; - [-5,0] remoteExec ["A3A_fnc_prestige",2]; - {[-10,10,_x] remoteExec ["A3A_fnc_citySupportChange",2]} forEach citiesX; - {if (isPlayer _x) then {[10,_x] call A3A_fnc_playerScoreAdd}} forEach ([500,0,_posDestination,teamPlayer] call A3A_fnc_distanceUnits); - [10,theBoss] call A3A_fnc_playerScoreAdd; - } - else - { - if (sidesX getVariable [_mrkDestination,sideUnknown] == Occupants) then {[15,-5,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]} else {[15,-15,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]}; - {[10,-10,_x] remoteExec ["A3A_fnc_citySupportChange",2]} forEach citiesX; - }; - } -else - { - ["AttackAAF",[format ["%2 is making a punishment expedition to %1. They will kill everybody there. Defend the city at all costs",_nameDest,nameInvaders],format ["%1 Punishment",nameInvaders],_mrkDestination],getMarkerPos _mrkDestination,"FAILED"] call A3A_fnc_taskUpdate; - //["AttackAAF", "FAILED",true] spawn BIS_fnc_taskSetState; - [-20,-20,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]; - {[-10,-10,_x] remoteExec ["A3A_fnc_citySupportChange",2]} forEach citiesX; - destroyedCities = destroyedCities + [_mrkDestination]; - publicVariable "destroyedCities"; - for "_i" from 1 to 60 do - { - _mineX = createMine ["APERSMine",_posDestination,[],_size]; - Invaders revealMine _mineX; - }; - [_mrkDestination] call A3A_fnc_destroyCity; - }; - -sleep 15; -//[Invaders,[civilian,1]] remoteExec ["setFriend",2]; -_nul = [0,"AttackAAF"] spawn A3A_fnc_deleteTask; -[7200] remoteExec ["A3A_fnc_timingCA",2]; -{ -_veh = _x; -if (!([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)) then {deleteVehicle _x}; -} forEach _vehiclesX; -{ -_veh = _x; -if (!([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)) then {deleteVehicle _x; _soldiers = _soldiers - [_x]}; -} forEach _soldiers; -{ -_veh = _x; -if (!([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)) then {deleteVehicle _x; _pilots = _pilots - [_x]}; -} forEach _pilots; - -bigAttackInProgress = false; -publicVariable "bigAttackInProgress"; - -if (count _soldiers > 0) then - { - { - _veh = _x; - waitUntil {sleep 1; !([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)}; - deleteVehicle _veh; - } forEach _soldiers; - }; - -if (count _pilots > 0) then - { - { - _veh = _x; - waitUntil {sleep 1; !([distanceSPWN,1,_x,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)}; - deleteVehicle _veh; - } forEach _pilots; - }; -{deleteGroup _x} forEach _groups; - -waitUntil {sleep 1; (spawner getVariable _mrkDestination == 2)}; - -{deleteVehicle _x} forEach _civiles; -deleteGroup _groupCivil; diff --git a/A3-Antistasi/CREATE/FIAinitBASES.sqf b/A3-Antistasi/CREATE/FIAinitBASES.sqf deleted file mode 100755 index f1825b38bf..0000000000 --- a/A3-Antistasi/CREATE/FIAinitBASES.sqf +++ /dev/null @@ -1,251 +0,0 @@ -private ["_unit","_skill"]; - -_unit = _this select 0; -if (isNil "_unit") exitWith {}; -if (isNull _unit) exitWith { - diag_log format ["%1: [Antistasi] | ERROR | FIAinitBases.sqf | Error with Nato Parameter:%2",servertime,_this]; - }; -_markerX = ""; -if (count _this > 1) then - { - _markerX = _this select 1; - _unit setVariable ["markerX",_markerX,true]; - if ((spawner getVariable _markerX != 0) and (vehicle _unit != _unit)) then - { - if (!isMultiplayer) then - { - _unit enableSimulation false - } - else - { - [_unit,false] remoteExec ["enableSimulationGlobal",2] - } - }; - }; -[_unit] call A3A_fnc_initRevive; - -_unit allowFleeing 0; -_typeX = typeOf _unit; -//_skill = if (_typeX in sdkTier1) then {0.1 + (skillFIA * 0.2)} else {if (_typeX in sdkTier2) then {0.2 + (skillFIA * 0.2)} else {0.3 + (skillFIA * 0.2)}}; -_skill = 0.1 + (skillFIA * 0.05 * skillMult); -if ((_markerX == "Synd_HQ") and (isMultiplayer)) then {_skill = 1}; -_unit setSkill _skill; -if (!activeGREF) then {if (not((uniform _unit) in uniformsSDK)) then {[_unit] call A3A_fnc_reDress}}; -if (_typeX in SDKSniper) then - { - if (count unlockedSN > 0) then - { - [_unit, selectRandom unlockedSN, 8, 0] call BIS_fnc_addWeapon; - if (count unlockedOptics > 0) then - { - _compatibleX = [primaryWeapon _unit] call BIS_fnc_compatibleItems; - _potentials = unlockedOptics select {_x in _compatibleX}; - if (count _potentials > 0) then {_unit addPrimaryWeaponItem (_potentials select 0)}; - }; - } - else - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - }; - } -else - { - if (_unit skill "aimingAccuracy" > 0.35) then {_unit setSkill ["aimingAccuracy",0.35]}; - if (random 40 < skillFIA) then - { - if (getNumber (configfile >> "CfgWeapons" >> headgear _unit >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") < 2) then {removeHeadgear _unit;_unit addHeadgear (selectRandom helmets)}; - }; - if (_typeX in SDKMil) then - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - if ((loadAbs _unit < 340) and (_typeX in SDKMil)) then - { - if ((random 20 < skillFIA) and (count unlockedAA > 0)) then - { - _unit addbackpack (unlockedBackpacks select 0); - [_unit, selectRandom unlockedAA, 2, 0] call BIS_fnc_addWeapon; - //removeBackpack _unit; - }; - }; - } - else - { - if (_typeX in SDKMG) then - { - if (count unlockedMG > 0) then - { - [_unit,unlockedMG] call A3A_fnc_randomRifle; - } - else - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - }; - } - else - { - if (_typeX in SDKGL) then - { - if (count unlockedGL > 0) then - { - [_unit,unlockedGL] call A3A_fnc_randomRifle; - } - else - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - }; - } - else - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - if (_typeX in SDKMedic) then - { - _unit setUnitTrait ["medic",true]; - if ({_x == "FirstAidKit"} count (items _unit) < 10) then - { - for "_i" from 1 to 10 do {_unit addItemToBackpack "FirstAidKit"}; - }; - } - else - { - if (_typeX in SDKATman) then - { - if !(unlockedAT isEqualTo []) then - { - _rlauncher = selectRandom unlockedAT; - if (_rlauncher != secondaryWeapon _unit) then - { - _magazines = getArray (configFile / "CfgWeapons" / (secondaryWeapon _unit) / "magazines"); - {_unit removeMagazines _x} forEach _magazines; - _unit removeWeaponGlobal (secondaryWeapon _unit); - [_unit, _rlauncher, 4, 0] call BIS_fnc_addWeapon; - }; - } - else - { - if (hasIFA) then - { - [_unit, "LIB_PTRD", 10, 0] call BIS_fnc_addWeapon; - }; - }; - } - else - { - if (_typeX in squadLeaders) then - { - _unit setskill ["courage",_skill + 0.2]; - _unit setskill ["commanding",_skill + 0.2]; - }; - }; - }; - }; - }; - }; - }; - - -_unit selectWeapon (primaryWeapon _unit); - -if (!haveRadio) then {_unit unlinkItem (_unit call A3A_fnc_getRadio)}; -if !(hasIFA) then - { - if (sunOrMoon < 1) then - { - if (haveNV) then - { - if (hmd _unit == "") then {_unit linkItem (selectRandom NVGoggles)}; - _pointers = pointers arrayIntersect unlockedItems; - if !(_pointers isEqualTo []) then - { - _pointers = _pointers arrayIntersect ((primaryWeapon _unit) call BIS_fnc_compatibleItems); - if !(_pointers isEqualTo []) then - { - _pointer = selectRandom _pointers; - _unit addPrimaryWeaponItem _pointer; - _unit assignItem _pointer; - _unit enableIRLasers true; - }; - }; - } - else - { - _hmd = hmd _unit; - if (_hmd != "") then - { - _unit unassignItem _hmd; - _unit removeItem _hmd; - }; - _flashlights = flashlights arrayIntersect unlockedItems; - if !(_flashlights isEqualTo []) then - { - _flashlights = _flashlights arrayIntersect ((primaryWeapon _unit) call BIS_fnc_compatibleItems); - if !(_flashlights isEqualTo []) then - { - _flashlight = selectRandom _flashlights; - _unit addPrimaryWeaponItem _flashlight; - _unit assignItem _flashlight; - _unit enableGunLights _flashlight; - }; - }; - }; - } - else - { - _hmd = hmd _unit; - if (_hmd != "") then - { - _unit unassignItem _hmd; - _unit removeItem _hmd; - }; - }; - }; -if ({if (_x in smokeX) exitWith {1}} count unlockedMagazines > 0) then {_unit addMagazines [selectRandom smokeX,2]}; - -_EHkilledIdx = _unit addEventHandler ["killed", { - _victim = _this select 0; - _killer = _this select 1; - [_victim] remoteExec ["A3A_fnc_postmortem",2]; - if (isPlayer _killer) then - { - if (!isMultiPlayer) then - { - _nul = [0,20] remoteExec ["A3A_fnc_resourcesFIA",2]; - _killer addRating 1000; - }; - }; - if (side _killer == Occupants) then - { - [0,-0.25,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; - [-0.25,0] remoteExec ["A3A_fnc_prestige",2]; - } - else - { - if (side _killer == Invaders) then {[0,-0.25] remoteExec ["A3A_fnc_prestige",2]}; - }; - _markerX = _victim getVariable "markerX"; - if (!isNil "_markerX") then - { - if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) then - { - [typeOf _victim,teamPlayer,_markerX,-1] remoteExec ["A3A_fnc_garrisonUpdate",2]; - _victim setVariable [_markerX,nil,true]; - }; - }; - }]; -_revealX = false; -if (vehicle _unit != _unit) then - { - if (_unit == gunner (vehicle _unit)) then - { - _revealX = true; - }; - } -else - { - if ((secondaryWeapon _unit) in mlaunchers) then {_revealX = true}; - }; -if (_revealX) then - { - { - _unit reveal [_x,1.5]; - } forEach allUnits select {(vehicle _x isKindOf "Air") and (_x distance _unit <= distanceSPWN)}; - }; diff --git a/A3-Antistasi/CREATE/WPCreate.sqf b/A3-Antistasi/CREATE/WPCreate.sqf deleted file mode 100644 index 50b2d242dd..0000000000 --- a/A3-Antistasi/CREATE/WPCreate.sqf +++ /dev/null @@ -1,131 +0,0 @@ -private ["_mrkOrigin","_mrkDestination","_groupX","_posOrigin","_posDestination","_finalArray","_arr2","_final","_isCentral","_roadsCentral","_useCentral"]; - -_mrkOrigin = _this select 0; -_posOrigin = if (_mrkOrigin isEqualType "") then {getMarkerPos _mrkOrigin} else {_mrkOrigin}; -_mrkDestination = _this select 1; -_posDestination = if (_mrkDestination isEqualType "") then {getMarkerPos _mrkDestination} else {_mrkDestination}; -_exit = false; -if (_mrkOrigin isEqualType "") then - { - if ((_mrkOrigin != "airport") and (_mrkOrigin != "airport_2")) then {_exit = true}; - } -else - { - if !([_mrkOrigin,"airport"] call A3A_fnc_isTheSameIsland) then - { - _exit = true - } - else - { - if (_mrkOrigin distance2D (getMarkerPos "airport") < _mrkOrigin distance2D (getMarkerPos "airport_2")) then {_mrkOrigin = "airport"} else {_mrkOrigin = "airport_2"}; - }; - }; -if (_exit) exitWith {}; - -_groupX = _this select 2; -_finalArray = []; -_arr2 = []; -_final = [roadsMrk,_posDestination] call BIS_fnc_nearestPosition; - -_useCentral = true; -_isCentral = false; -if (_final in roadsCentral) then - { - _isCentral = true; - } -else - { - if (_final in roadsCE) then - { - _arr2 = +roadsCE; - } - else - { - if (_final in roadsCSE) then - { - _arr2 = +roadsCSE; - } - else - { - if (_final in roadsSE) then - { - _arr2 = +roadsSE; - } - else - { - if (_final in roadsSW) then - { - _arr2 = +roadsSW; - if (_mrkOrigin == "airport") then {_useCentral = false}; - } - else - { - if (_final in roadsCW) then - { - _arr2 = +roadsCW; - } - else - { - if (_final in roadsNW) then - { - _arr2 = +roadsNW; - } - else - { - _arr2 = +roadsNE; - if (_mrkOrigin == "airport_2") then {_useCentral = false}; - }; - }; - }; - }; - }; - }; - }; - -_roadsCentral = +roadsCentral; -if (_useCentral and (_mrkOrigin != "airport")) then {reverse _roadsCentral}; - -if (_isCentral) then - { - { - _finalArray pushBack _x; - if (_x == _final) exitWith {}; - } forEach _roadsCentral; - } -else - { - if (_useCentral) then - { - _inicial = _arr2 select 0; - _medio = [_roadsCentral,_inicial] call BIS_fnc_nearestPosition; - { - _finalArray pushBack _x; - if (_x == _medio) exitWith {}; - } forEach _roadsCentral; - { - _finalArray pushBack _x; - if (_x == _final) exitWith {}; - } forEach _arr2; - } - else - { - { - _finalArray pushBack _x; - if (_x == _final) exitWith {}; - } forEach _arr2; - }; - }; - -if (getMarkerPos _final distance _posOrigin > _posDestination distance _posOrigin) then {_finalArray = _finalArray - [_final]}; - -for "_i" from 0 to ((count _finalArray) - 1) do - { - _groupX addWaypoint [getMarkerPos (_finalArray select _i), _i]; - /* - _mrkFinal = createMarker [format ["DES%1", random 100], getMarkerPos (_finalArray select _i)]; - _mrkFinal setMarkerShape "ICON"; - _mrkFinal setMarkerType "hd_destroy"; - _mrkFinal setMarkerColor "ColorRed"; - _mrkFinal setMarkerText format ["%1",_i]; - */ - }; diff --git a/A3-Antistasi/CREATE/WPCreateAltis.sqf b/A3-Antistasi/CREATE/WPCreateAltis.sqf deleted file mode 100644 index 036cd0430e..0000000000 --- a/A3-Antistasi/CREATE/WPCreateAltis.sqf +++ /dev/null @@ -1,37 +0,0 @@ -private ["_mrkOrigin","_mrkDestination","_posOrigin","_posDestination","_roadsMrk","_finalArray","_road","_pos"]; -_mrkOrigin = _this select 0; -_posOrigin = if (_mrkOrigin isEqualType "") then {getMarkerPos _mrkOrigin} else {_mrkOrigin}; -_mrkDestination = _this select 1; -_posDestination = if (_mrkDestination isEqualType "") then {getMarkerPos _mrkDestination} else {_mrkDestination}; -_distance = _posOrigin distance2d _posDestination; -//diag_log format ["Antistasi: Convoy Debug. Convoy sent from %1 to %2, distance: %3",_mrkOrigin,_mrkDestination,_distance]; -if (_distance < 1500) exitWith { - diag_log format ["%1: [Antistasi] | DEBUG | WPCreateAltis.sqf | Convoy with zero WP because they are too close: %2 to %3, distance: %4",servertime,_mrkOrigin,_mrkDestination,_distance]; -}; -//_roadsMrk = roadsMrk + (controlsX select {isOnRoad (getMarkerPos _x)}); -//_roadsMrk = _roadsMrk select {((getMarkerPos _x) distance2d _posDestination < _distance) and ((getMarkerPos _x) distance2d _posOrigin < _distance)}; -_roadsMrk = roadsMrk select {((getMarkerPos _x) distance2d _posDestination < _distance) and ((getMarkerPos _x) distance2d _posOrigin < _distance)}; -if (_roadsMrk isEqualTo []) exitWith {}; -_roadsMrk = [_roadsMrk,[],{getMarkerPos _x distance2d _posOrigin},"ASCEND"] call BIS_fnc_sortBy; -//diag_log format ["Antistasi: Convoy Debug. Convoy from %1 to %2, have this possible mid waypoints %3",_mrkOrigin,_mrkDestination,_roadsMrk]; -_finalArray = [_roadsMrk select 0]; -_roadsMrk = _roadsMrk - _finalArray; -while {true} do - { - if (_roadsMrk isEqualTo []) exitWith {}; - _lastRoad = _finalArray select ((count _finalArray) -1); - _road = [_roadsMrk,_lastRoad] call BIS_fnc_nearestPosition; - _pos = getMarkerPos _road; - _pos1 = getMarkerPos _lastRoad; - if (_pos distance2D _posDestination < _pos1 distance2d _posDestination) then - { - _finalArray pushBack _road; - }; - _roadsMrk = _roadsMrk - [_road]; - }; -_groupX = _this select 2; - -for "_i" from 0 to (count _finalArray) - 1 do - { - _groupX addWaypoint [getMarkerPos (_finalArray select _i), _i] - }; \ No newline at end of file diff --git a/A3-Antistasi/CREATE/createAIResources.sqf b/A3-Antistasi/CREATE/createAIResources.sqf deleted file mode 100644 index 7c2a8fdb52..0000000000 --- a/A3-Antistasi/CREATE/createAIResources.sqf +++ /dev/null @@ -1,224 +0,0 @@ -if (!isServer and hasInterface) exitWith{}; - -private ["_markerX","_vehiclesX","_groups","_soldiers","_civs","_positionX","_pos","_typeGroup","_typeCiv","_size","_mrk","_ang","_countX","_groupX","_veh","_civ","_frontierX","_flagX","_dog","_garrison","_sideX","_cfg","_isFIA","_roads","_dist","_road","_roadscon","_roadcon","_dirveh","_bunker","_typeVehX","_typeUnit","_unit","_typeGroup","_stance"]; - -_markerX = _this select 0; - -diag_log format ["[Antistasi] Spawning Resource Point %1 (createAIResources.sqf)", _markerX]; - -_positionX = getMarkerPos _markerX; - -_size = [_markerX] call A3A_fnc_sizeMarker; - -_civs = []; -_soldiers = []; -_groups = []; -_vehiclesX = []; - -_frontierX = [_markerX] call A3A_fnc_isFrontline; - -_sideX = Invaders; - -_isFIA = false; -if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then - { - _sideX = Occupants; - if ((random 10 <= (tierWar + difficultyCoef)) and !(_frontierX)) then - { - _isFIA = true; - }; - }; -_roads = _positionX nearRoads _size; -_dist = 0; -_road = objNull; -{if ((position _x) distance _positionX > _dist) then {_road = _x;_dist = position _x distance _positionX}} forEach _roads; -_roadscon = roadsConnectedto _road; -_roadcon = objNull; -{if ((position _x) distance _positionX > _dist) then {_roadcon = _x}} forEach _roadscon; -_dirveh = [_roadcon, _road] call BIS_fnc_DirTo; - -if ((spawner getVariable _markerX != 2) and _frontierX) then - { - if (count _roads != 0) then - { - if (!_isFIA) then - { - _groupX = createGroup _sideX; - _groups pushBack _groupX; - _pos = [getPos _road, 7, _dirveh + 270] call BIS_Fnc_relPos; - _bunker = "Land_BagBunker_01_small_green_F" createVehicle _pos; - _vehiclesX pushBack _bunker; - _bunker setDir _dirveh; - _pos = getPosATL _bunker; - _typeVehX = if (_sideX==Occupants) then {staticATOccupants} else {staticATInvaders}; - _veh = _typeVehX createVehicle _positionX; - _vehiclesX pushBack _veh; - _veh setPos _pos; - _veh setDir _dirVeh + 180; - _typeUnit = if (_sideX==Occupants) then {staticCrewOccupants} else {staticCrewInvaders}; - _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; - [_unit,_markerX] call A3A_fnc_NATOinit; - [_veh] call A3A_fnc_AIVEHinit; - _unit moveInGunner _veh; - _soldiers pushBack _unit; - } - else - { - _typeGroup = selectRandom groupsFIAMid; - _groupX = [_positionX, _sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup; - if !(isNull _groupX) then - { - _veh = vehFIAArmedCar createVehicle getPos _road; - _veh setDir _dirveh + 90; - _nul = [_veh] call A3A_fnc_AIVEHinit; - _vehiclesX pushBack _veh; - sleep 1; - _unit = _groupX createUnit [FIARifleman, _positionX, [], 0, "NONE"]; - _unit moveInGunner _veh; - {_soldiers pushBack _x; [_x,_markerX] call A3A_fnc_NATOinit} forEach units _groupX; - }; - }; - }; - }; - -_mrk = createMarkerLocal [format ["%1patrolarea", random 100], _positionX]; -_mrk setMarkerShapeLocal "RECTANGLE"; -_mrk setMarkerSizeLocal [(distanceSPWN/2),(distanceSPWN/2)]; -_mrk setMarkerTypeLocal "hd_warning"; -_mrk setMarkerColorLocal "ColorRed"; -_mrk setMarkerBrushLocal "DiagGrid"; -_ang = markerDir _markerX; -_mrk setMarkerDirLocal _ang; -if (!debug) then {_mrk setMarkerAlphaLocal 0}; -_garrison = garrison getVariable [_markerX,[]]; -_garrison = _garrison call A3A_fnc_garrisonReorg; -_radiusX = count _garrison; -private _patrol = true; -if (_radiusX < ([_markerX] call A3A_fnc_garrisonSize)) then - { - _patrol = false; - } -else - { - if ({if ((getMarkerPos _x inArea _mrk) and (sidesX getVariable [_x,sideUnknown] != _sideX)) exitWIth {1}} count markersX > 0) then {_patrol = false}; - }; -if (_patrol) then - { - _countX = 0; - while {(spawner getVariable _markerX != 2) and (_countX < 4)} do - { - _arraygroups = if (_sideX == Occupants) then - { - if (!_isFIA) then {groupsNATOsmall} else {groupsFIASmall}; - } - else - { - groupsCSATsmall - }; - if ([_markerX,false] call A3A_fnc_fogCheck < 0.3) then {_arraygroups = _arraygroups - sniperGroups}; - _typeGroup = selectRandom _arraygroups; - _groupX = [_positionX,_sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup; - if !(isNull _groupX) then - { - sleep 1; - if ((random 10 < 2.5) and (not(_typeGroup in sniperGroups))) then - { - _dog = _groupX createUnit ["Fin_random_F",_positionX,[],0,"FORM"]; - [_dog] spawn A3A_fnc_guardDog; - sleep 1; - }; - _nul = [leader _groupX, _mrk, "SAFE","SPAWNED", "RANDOM","NOVEH2"] execVM "scripts\UPSMON.sqf"; - _groups pushBack _groupX; - {[_x,_markerX] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _groupX; - }; - _countX = _countX +1; - }; - }; - -_typeVehX = if (_sideX == Occupants) then {NATOFlag} else {CSATFlag}; -_flagX = createVehicle [_typeVehX, _positionX, [],0, "CAN_COLLIDE"]; -_flagX allowDamage false; -[_flagX,"take"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_flagX]; -_vehiclesX pushBack _flagX; - -if (not(_markerX in destroyedCities)) then - { - if ((daytime > 8) and (daytime < 18)) then - { - _groupX = createGroup civilian; - _groups pushBack _groupX; - for "_i" from 1 to 4 do - { - if (spawner getVariable _markerX != 2) then - { - _civ = _groupX createUnit ["C_man_w_worker_F", _positionX, [],0, "NONE"]; - _nul = [_civ] spawn A3A_fnc_CIVinit; - _civs pushBack _civ; - _civ setVariable ["markerX",_markerX,true]; - sleep 0.5; - _civ addEventHandler ["Killed", - { - if (({alive _x} count units group (_this select 0)) == 0) then - { - _markerX = (_this select 0) getVariable "markerX"; - _nameX = [_markerX] call A3A_fnc_localizar; - destroyedCities pushBackUnique _markerX; - publicVariable "destroyedCities"; - ["TaskFailed", ["", format ["%1 Destroyed",_nameX]]] remoteExec ["BIS_fnc_showNotification",[teamPlayer,civilian]]; - }; - }]; - }; - }; - //_nul = [_markerX,_civs] spawn destroyCheck; - _nul = [leader _groupX, _markerX, "SAFE", "SPAWNED","NOFOLLOW", "NOSHARE","DORELAX","NOVEH2"] execVM "scripts\UPSMON.sqf"; - }; - }; - -_pos = _positionX findEmptyPosition [5,_size,"I_Truck_02_covered_F"];//donde pone 5 antes ponĆ­a 10 -if (count _pos > 0) then - { - _typeVehX = if (_sideX == Occupants) then - { - if (!_isFIA) then {vehNATOTrucks + vehNATOCargoTrucks} else {[vehFIATruck]}; - } - else - { - vehCSATTrucks - }; - _veh = createVehicle [selectRandom _typeVehX, _pos, [], 0, "NONE"]; - _veh setDir random 360; - _vehiclesX pushBack _veh; - _nul = [_veh] call A3A_fnc_AIVEHinit; - sleep 1; - }; - -_array = []; -_subArray = []; -_countX = 0; -_radiusX = _radiusX -1; -while {_countX <= _radiusX} do - { - _array pushBack (_garrison select [_countX,7]); - _countX = _countX + 8; - }; -for "_i" from 0 to (count _array - 1) do - { - _groupX = if (_i == 0) then {[_positionX,_sideX, (_array select _i),true,false] call A3A_fnc_spawnGroup} else {[_positionX,_sideX, (_array select _i),false,true] call A3A_fnc_spawnGroup}; - _groups pushBack _groupX; - {[_x,_markerX] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _groupX; - if (_i == 0) then {_nul = [leader _groupX, _markerX, "SAFE", "RANDOMUP","SPAWNED", "NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"} else {_nul = [leader _groupX, _markerX, "SAFE","SPAWNED", "RANDOM","NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"}; - }; - -waitUntil {sleep 1; (spawner getVariable _markerX == 2)}; - -deleteMarker _mrk; -{ -if (alive _x) then - { - deleteVehicle _x - }; -} forEach _soldiers; -//if (!isNull _periodista) then {deleteVehicle _periodista}; -{deleteGroup _x} forEach _groups; -{deleteVehicle _x} forEach _civs; -{if (!([distanceSPWN-_size,1,_x,teamPlayer] call A3A_fnc_distanceUnits)) then {deleteVehicle _x}} forEach _vehiclesX; diff --git a/A3-Antistasi/CREATE/groupDespawner.sqf b/A3-Antistasi/CREATE/groupDespawner.sqf deleted file mode 100644 index d73c504f69..0000000000 --- a/A3-Antistasi/CREATE/groupDespawner.sqf +++ /dev/null @@ -1,14 +0,0 @@ -private ["_groupX","_sideX","_eny1","_eny2"]; -_groupX = _this select 0; -_sideX = side _groupX; -_eny1 = Occupants; -_eny2 = Invaders; -if (_sideX == Occupants) then {_eny1 = teamPlayer} else {if (_sideX == Invaders) then {_eny2 = teamPlayer}}; - -{_unit = _x; -if (!([distanceSPWN,1,_unit,_eny1] call A3A_fnc_distanceUnits) and !([distanceSPWN,1,_unit,_eny2] call A3A_fnc_distanceUnits)) then {deleteVehicle _unit}} forEach units _groupX; - -{_unit = _x; -waitUntil {sleep 1;!([distanceSPWN,1,_unit,_eny1] call A3A_fnc_distanceUnits) and !([distanceSPWN,1,_unit,_eny2] call A3A_fnc_distanceUnits)};deleteVehicle _unit} forEach units _groupX; - -deleteGroup _groupX; \ No newline at end of file diff --git a/A3-Antistasi/CREATE/reinforcementsAI.sqf b/A3-Antistasi/CREATE/reinforcementsAI.sqf deleted file mode 100644 index 2745434a84..0000000000 --- a/A3-Antistasi/CREATE/reinforcementsAI.sqf +++ /dev/null @@ -1,67 +0,0 @@ -private ["_airportsX","_reinfPlaces","_airportX","_numberX","_numGarr","_numReal","_sideX","_potentials","_countX","_siteX","_positionX"]; -_airportsX = airportsX select {(sidesX getVariable [_x,sideUnknown] != teamPlayer) and (spawner getVariable _x == 2)}; -if (count _airportsX == 0) exitWith {}; -_reinfPlaces = []; -{ -_airportX = _x; -_numberX = 8; -_numGarr = [_airportX] call A3A_fnc_garrisonSize; -_numReal = count (garrison getVariable _airportX); -_sideX = sidesX getVariable [_airportX,sideUnknown]; -if (_numReal + 4 <= _numGarr) then - { - if (_numReal + 8 <= _numGarr) then - { - if (_sideX == Occupants) then {[selectRandom groupsNATOSquad,_sideX,_airportX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]} else {[selectRandom groupsCSATSquad,_sideX,_airportX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]}; - _numberX = 0; - } - else - { - if (_sideX == Occupants) then {[selectRandom groupsNATOmid,_sideX,_airportX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]} else {[selectRandom groupsCSATmid,_sideX,_airportX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]}; - _numberX = 4; - }; - }; -if ((_numberX >= 4) and (reinfPatrols <= 4)) then - { - _potentials = (outposts + seaports - _reinfPlaces - (killZones getVariable [_airportX,[]])) select {sidesX getVariable [_x,sideUnknown] == _sideX}; - if (_potentials isEqualTo []) then - { - _potentials = (resourcesX + factories - _reinfPlaces - (killZones getVariable [_airportX,[]])) select {sidesX getVariable [_x,sideUnknown] == _sideX}; - }; - _positionX = getMarkerPos _airportX; - _potentials = _potentials select {((getMarkerPos _x distance2D _positionX) < distanceForAirAttack) and !(_x in forcedSpawn)}; - if (count _potentials > 0) then - { - _countX = 0; - _siteX = ""; - { - _numGarr = [_x] call A3A_fnc_garrisonSize; - _numReal = count (garrison getVariable _x); - if (_numGarr - _numReal > _countX) then - { - _countX = _numGarr - _numReal; - _siteX = _x; - }; - } forEach _potentials; - if (_siteX != "") then - { - if ({(getMarkerPos _x distance2d getMarkerPos _siteX < distanceSPWN) and (sidesX getVariable [_x,sideUnknown] != _sideX)} count airportsX == 0) then - { - if ({(_x distance2D _positionX < (2*distanceSPWN)) or (_x distance2D (getMarkerPos _siteX) < (2*distanceSPWN))} count allPlayers == 0) then - { - _typeGroup = if (_sideX == Occupants) then {if (_numberX == 4) then {selectRandom groupsNATOmid} else {selectRandom groupsNATOSquad}} else {if (_numberX == 4) then {selectRandom groupsCSATmid} else {selectRandom groupsCSATSquad}}; - [_typeGroup,_sideX,_siteX,2] remoteExec ["A3A_fnc_garrisonUpdate",2]; - } - else - { - _reinfPlaces pushBack _siteX; - [[_siteX,_airportX,_numberX,_sideX],"A3A_fnc_patrolReinf"] call A3A_fnc_scheduler; - }; - }; - }; - }; - }; -if (count _reinfPlaces > 3) exitWith {}; -} forEach _airportsX; - -if ((count _reinfPlaces == 0) and (AAFpatrols <= 3)) then {[] spawn A3A_fnc_AAFroadPatrol}; \ No newline at end of file diff --git a/A3-Antistasi/Dialogs/difficultyMenu.sqf b/A3-Antistasi/Dialogs/difficultyMenu.sqf deleted file mode 100644 index 36623f6433..0000000000 --- a/A3-Antistasi/Dialogs/difficultyMenu.sqf +++ /dev/null @@ -1,54 +0,0 @@ -_nul=createDialog "diff_menu"; -waitUntil {dialog}; -hint "Choose a difficulty level"; -waitUntil {!dialog}; -if !(skillMult == 1) then - { - if (skillMult == 0.5) then - { - server setVariable ["hr",25,true]; - server setVariable ["resourcesFIA",5000,true]; - vehInGarage = [vehSDKTruck,vehSDKTruck,SDKMortar,SDKMGStatic,staticAAteamPlayer]; - minWeaps = 15; - _index = sniperRifle call jn_fnc_arsenal_itemType; - [_index,sniperRifle,-1] call jn_fnc_arsenal_addItem; - unlockedSN pushBack sniperRifle; - _magazine = (getArray (configFile / "CfgWeapons" / sniperRifle / "magazines") select 0); - if (!isNil "_magazine") then - { - unlockedMagazines pushBack _magazine; - _index = _magazine call jn_fnc_arsenal_itemType; - [_index,_magazine,-1] call jn_fnc_arsenal_addItem; - }; - unlockedWeapons pushBack sniperRifle; - if !(hasTFAR) then - { - _index = "ItemRadio" call jn_fnc_arsenal_itemType; - [_index,"ItemRadio",-1] call jn_fnc_arsenal_addItem; - unlockedItems pushBack "ItemRadio"; - haveRadio = true; - }; - } - else - { - server setVariable ["hr",0,true]; - server setVariable ["resourcesFIA",200,true]; - minWeaps = 40; - }; - [] call A3A_fnc_statistics; - }; -_nul= createDialog "gameMode_menu"; -waitUntil {dialog}; -hint "Choose a Game Mode"; -waitUntil {!dialog}; -if (gameMode != 1) then - { - Occupants setFriend [Invaders,1]; - Invaders setFriend [Occupants,1]; - if (gameMode == 3) then {"CSAT_carrier" setMarkerAlpha 0}; - if (gameMode == 4) then {"NATO_carrier" setMarkerAlpha 0}; - }; -hint "Map Init in progress"; -call compile preprocessFileLineNumbers "initGarrisons.sqf"; -hint "Map Init Done"; -_nul = [] spawn A3A_fnc_placementselection; \ No newline at end of file diff --git a/A3-Antistasi/FSMs/ConvoyTravel.fsm b/A3-Antistasi/FSMs/ConvoyTravel.fsm new file mode 100644 index 0000000000..c506fb63ee --- /dev/null +++ b/A3-Antistasi/FSMs/ConvoyTravel.fsm @@ -0,0 +1,288 @@ +/*%FSM*/ +/*%FSM*/ +/* +item0[] = {"Start",0,250,-258.071289,-342.907776,-168.071396,-292.907776,0.000000,"Start"}; +item1[] = {"End_and_Rejoin",1,4346,64.791161,-139.450836,154.791199,-89.450851,0.000000,"End and Rejoin"}; +item2[] = {"HasArrived",4,218,-256.153625,-77.311310,-166.153625,-27.311371,10.000000,"HasArrived"}; +item3[] = {"Abort",4,218,-91.228699,-251.971512,-1.228698,-201.971497,100.000000,"Abort"}; +item4[] = {"Head_to__Next_Po",2,250,-256.894318,-166.599014,-166.894302,-116.599007,0.000000,"Head to " \n "Next Pos"}; +item5[] = {"True",8,218,-257.487732,-253.817780,-167.487717,-203.817780,0.000000,"True"}; +item6[] = {"At_Next_Pos",4,218,-403.907898,-167.404144,-313.907928,-117.404137,5.000000,"At Next Pos"}; +item7[] = {"Veh_stuck",4,218,-92.573151,-109.810966,-2.573151,-59.810974,0.000000,"Veh stuck"}; +item8[] = {"Veh_or_Crew_Dead",4,218,-91.259125,-177.638184,-1.259125,-127.638184,20.000000,"Veh or Crew" \n "Dead"}; +item9[] = {"End_and_Unload",1,250,-256.463623,15.090240,-166.463593,65.090225,0.000000,"End and Unload"}; +item10[] = {"Hard_Abort",4,218,-92.573059,-344.041931,-2.573059,-294.041931,100.000000,"Hard Abort"}; +item11[] = {"End_and_Abort",1,250,66.121887,-341.269958,156.121918,-291.269989,0.000000,"End and Abort"}; +link0[] = {0,5}; +link1[] = {0,10}; +link2[] = {2,9}; +link3[] = {3,11}; +link4[] = {4,2}; +link5[] = {4,3}; +link6[] = {4,6}; +link7[] = {4,7}; +link8[] = {4,8}; +link9[] = {5,4}; +link10[] = {6,4}; +link11[] = {7,1}; +link12[] = {8,1}; +link13[] = {10,11}; +globals[] = {0.000000,0,0,0,0,640,480,1,52,6316128,1,-539.552429,231.053772,136.200928,-476.403259,1112,884,1}; +window[] = {2,-1,-1,-1,-1,889,130,1570,130,3,1130}; +*//*%FSM*/ +class FSM +{ + fsmName = "ConvoyTravel"; + class States + { + /*%FSM*/ + class Start + { + name = "Start"; + itemno = 0; + init = /*%FSM*/"// _markers is [origin, destination]" \n + "params [""_vehicle"", ""_route"", ""_markers"", ""_convoyType""];" \n + "" \n + "private _state = ""START"";" \n + "private _abort = false;" \n + "" \n + "// log some broken input errors" \n + "if (isNull _vehicle) exitWith { _abort = true; [1, ""Null vehicle input"", ""ConvoyTravel""] call A3A_fnc_log };" \n + "if (count _route == 0) exitWith { _abort = true; [1, ""No route specified"", ""ConvoyTravel""] call A3A_fnc_log };" \n + "if (driver _vehicle == objNull) exitWith { _abort = true; [1, ""No driver in vehicle"", ""ConvoyTravel""] call A3A_fnc_log };" \n + "if (!alive driver _vehicle) exitWith { _abort = true; [1, ""Dead driver in vehicle"", ""ConvoyTravel""] call A3A_fnc_log };" \n + "" \n + "// Make sure our driver doesn't give a shit about the whole 'being shot' thing" \n + "// Might need this for commander too?" \n + "private _splitCrew = [_vehicle] call A3A_fnc_splitVehicleCrewIntoOwnGroups;" \n + "(group driver _vehicle) setBehaviour ""CARELESS"";" \n + "(group driver _vehicle) setCombatMode ""BLUE"";" \n + "" \n + "private _cargoUnits = assignedCargo _vehicle;" \n + "private _cargoGroup = if (count _cargoUnits > 0) then {group (_cargoUnits # 0)} else {grpNull};" \n + "" \n + "private _destination = _route select (count _route - 1);" \n + "private _accuracy = 50; // Slows down too much at 20" \n + "private _currentNode = 0;"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + /*%FSM*/ + class Hard_Abort + { + itemno = 10; + priority = 100.000000; + to="End_and_Abort"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_abort;"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class True + { + itemno = 5; + priority = 0.000000; + to="Head_to__Next_Po"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/""/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + }; + }; + /*%FSM*/ + /*%FSM*/ + class End_and_Rejoin + { + name = "End_and_Rejoin"; + itemno = 1; + init = /*%FSM*/"_state = ""END"";" \n + "" \n + "if !(isNull _vehicle) then { _vehicle setVariable[""fsmresult"", -1] };" \n + "" \n + "private _crewGroup = _splitCrew call A3A_fnc_joinMultipleGroups;" \n + "if (_crewGroup == grpNull) exitwith {};" \n + "" \n + "{ unassignVehicle _x } forEach (crew _vehicle);" \n + "if (_cargoGroup != grpNull) then {" \n + " (units _cargoGroup) joinSilent _crewGroup;" \n + " deleteGroup _cargoGroup;" \n + "};" \n + "[_crewGroup] spawn A3A_fnc_groupDespawner;" \n + "" \n + "// Send back to base" \n + "private _wp3 = _crewGroup addWaypoint [getMarkerPos (_markers # 0), 100];" \n + "_wp3 setWaypointType ""MOVE"";" \n + "_wp3 setWaypointBehaviour ""SAFE"";" \n + "_crewGroup setCurrentWaypoint _wp3;" \n + "" \n + ""/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + }; + }; + /*%FSM*/ + /*%FSM*/ + class Head_to__Next_Po + { + name = "Head_to__Next_Po"; + itemno = 4; + init = /*%FSM*/"_state = ""FOLLOW"";" \n + "" \n + "private _nextPos = _route # _currentNode;" \n + "" \n + "//Move all of the groups, as we don't know who is in command." \n + "{" \n + " private _nextWaypoint = _x addWaypoint [AGLToASL _nextPos, -1];" \n + " _x setCurrentWaypoint _nextWaypoint;" \n + "} forEach (_splitCrew # 0);" \n + "" \n + "// to make sure that vehicles don't get stuck forever and never despawn" \n + "private _timeout = time + (_vehicle distance2d _nextPos);"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + /*%FSM*/ + class Abort + { + itemno = 3; + priority = 100.000000; + to="End_and_Abort"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_abort;"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Veh_or_Crew_Dead + { + itemno = 8; + priority = 20.000000; + to="End_and_Rejoin"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"!alive _vehicle || !canMove _vehicle || { driver _vehicle == objNull } || { !alive driver _vehicle };"/*%FSM*/; + action=/*%FSM*/"[2, ""Vehicle or driver died during travel, abandoning"", ""ConvoyTravel""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class HasArrived + { + itemno = 2; + priority = 10.000000; + to="End_and_Unload"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_vehicle distance _destination < 100;"/*%FSM*/; + action=/*%FSM*/"[3, ""Convoy vehicle arrived at destination"", ""ConvoyTravel""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class At_Next_Pos + { + itemno = 6; + priority = 5.000000; + to="Head_to__Next_Po"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_vehicle distance _nextPos < _accuracy;"/*%FSM*/; + action=/*%FSM*/"if (_currentNode < count _route) then {" \n + " _currentNode = _currentNode + 1;" \n + "};" \n + "" \n + ""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Veh_stuck + { + itemno = 7; + priority = 0.000000; + to="End_and_Rejoin"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"time > _timeout;"/*%FSM*/; + action=/*%FSM*/"[2, ""Vehicle stuck during travel, abandoning"", ""ConvoyTravel""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + }; + }; + /*%FSM*/ + /*%FSM*/ + class End_and_Unload + { + name = "End_and_Unload"; + itemno = 9; + init = /*%FSM*/"_state = ""END"";" \n + "" \n + "if !(isNull _vehicle) then { _vehicle setVariable[""fsmresult"", 1] };" \n + "" \n + "private _crewGroup = _splitCrew call A3A_fnc_joinMultipleGroups;" \n + "" \n + "// Don't force all vehicles to drive into the outpost" \n + "private _wp0 = _crewGroup addWaypoint [_destination, 50];" \n + "_wp0 setWaypointCompletionRadius 50;" \n + "_wp0 setWaypointType ""TR UNLOAD"";" \n + "_wp0 setWaypointStatements [""true"", ""{ unassignVehicle _x; } forEach (assignedCargo (vehicle this));""];" \n + "_crewGroup setCurrentWaypoint _wp0;" \n + "" \n + "if (_cargoGroup != grpNull) then {" \n + " // Move cargo group towards centre of outpost" \n + " private _wp2 = _cargoGroup addWaypoint [_destination, 10];" \n + " _wp2 setWaypointType ""MOVE"";" \n + " _wp2 setWaypointStatements [""true"", ""(group this) spawn A3A_fnc_attackDrillAI;""];" \n + " _cargoGroup setCurrentWaypoint _wp2;" \n + "};" \n + "" \n + "// Despawning before the unload is completed is fine. We've arrived." \n + "if (_convoyType isEqualTo ""reinforce"") then {" \n + "" \n + " // add units to garrison immediately, otherwise it'll keep sending them" \n + " private _garrison = [typeOf _vehicle, [], []];" \n + " { (_garrison # 1) pushBack (typeOf _x) } foreach units _crewGroup;" \n + " { (_garrison # 2) pushBack (typeOf _x) } foreach units _cargoGroup;" \n + " [_markers # 1, [_garrison]] call A3A_fnc_addGarrison;" \n + "" \n + " // synchronize despawning with the target marker" \n + " // remove this once addGarrison takes control of the units" \n + " [_crewGroup, _cargoGroup, _markers # 1] spawn {" \n + " params[""_crew"", ""_cargo"", ""_marker""];" \n + " waitUntil {sleep 5; (spawner getVariable _marker == 2)};" \n + " { deleteVehicle _x } forEach units _cargo;" \n + " { deleteVehicle _x } forEach units _crew;" \n + " deleteGroup _cargo;" \n + " deleteGroup _crew;" \n + " };" \n + "} else {" \n + " // otherwise just use the stock despawning" \n + " [_crewGroup] spawn A3A_fnc_groupDespawner;" \n + " [_cargoGroup] spawn A3A_fnc_groupDespawner;" \n + "};"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + }; + }; + /*%FSM*/ + /*%FSM*/ + class End_and_Abort + { + name = "End_and_Abort"; + itemno = 11; + init = /*%FSM*/"_state = ""END"";" \n + "" \n + "if !(isNull _vehicle) then { _vehicle setVariable[""fsmresult"", -2] };"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + }; + }; + /*%FSM*/ + }; + initState="Start"; + finalStates[] = + { + "End_and_Rejoin", + "End_and_Unload", + "End_and_Abort", + }; +}; +/*%FSM*/ \ No newline at end of file diff --git a/A3-Antistasi/FSMs/ConvoyTravelAir.fsm b/A3-Antistasi/FSMs/ConvoyTravelAir.fsm new file mode 100644 index 0000000000..7a66f3468a --- /dev/null +++ b/A3-Antistasi/FSMs/ConvoyTravelAir.fsm @@ -0,0 +1,410 @@ +/*%FSM*/ +/*%FSM*/ +/* +item0[] = {"Start",0,250,-298.857239,-326.554596,-208.857346,-276.554596,0.000000,"Start"}; +item1[] = {"End_and_Cleanup",1,250,-520.181091,90.358856,-430.181274,140.358841,0.000000,"End and" \n "Cleanup"}; +item2[] = {"HasArrived",4,218,-291.937164,-33.624756,-201.937164,16.375183,10.000000,"HasArrived"}; +item3[] = {"Abort",4,218,-153.526245,-30.271576,-63.526245,19.728432,100.000000,"Abort"}; +item4[] = {"Head_to__Target",2,250,-207.354156,-154.398788,-117.354134,-104.398773,0.000000,"Head to " \n "Target"}; +item5[] = {"Veh_Incapacitate",4,218,-436.459442,-36.922272,-346.459381,13.077728,20.000000,"Veh" \n "Incapacitated"}; +item6[] = {"Land_and_Unload",2,250,-290.550201,82.651550,-200.550171,132.651550,0.000000,"Land and" \n "Unload"}; +item7[] = {"Hard_Abort",4,218,-155.373779,-324.019623,-65.373779,-274.019623,100.000000,"Hard Abort"}; +item8[] = {"End_and_Abort",1,250,-38.607544,-190.627563,51.392487,-140.627609,0.000000,"End and Abort"}; +item9[] = {"HasUnloaded",4,218,-287.743927,178.504852,-197.743927,228.504852,0.000000,"HasUnloaded"}; +item10[] = {"Return__to_Base",1,4346,-286.589111,265.751678,-196.589081,315.751648,0.000000,"Return " \n "to Base"}; +item11[] = {"Follow_position",2,250,-380.936310,-148.474747,-290.936279,-98.474747,0.000000,"Follow" \n "position"}; +item12[] = {"Nothing_to_follo",4,218,-259.165253,-237.241608,-169.165253,-187.241623,5.000000,"Nothing to" \n "follow"}; +item13[] = {"Timed_position_u",4,218,-526.917358,-147.361725,-436.917297,-97.361679,1.000000,"Timed position" \n "update"}; +item14[] = {"True",8,218,-404.879303,-242.822372,-314.879303,-192.822388,0.000000,"True"}; +link0[] = {0,7}; +link1[] = {0,12}; +link2[] = {0,14}; +link3[] = {2,6}; +link4[] = {3,8}; +link5[] = {4,2}; +link6[] = {4,3}; +link7[] = {4,5}; +link8[] = {5,1}; +link9[] = {6,3}; +link10[] = {6,5}; +link11[] = {6,9}; +link12[] = {7,8}; +link13[] = {9,10}; +link14[] = {11,2}; +link15[] = {11,3}; +link16[] = {11,5}; +link17[] = {11,12}; +link18[] = {11,13}; +link19[] = {12,4}; +link20[] = {13,11}; +link21[] = {14,11}; +globals[] = {0.000000,0,0,0,0,640,480,1,70,6316128,1,-725.928467,294.090576,352.494415,-458.383972,1112,884,1}; +window[] = {2,-1,-1,-32000,-32000,889,130,1570,130,3,1130}; +*//*%FSM*/ +class FSM +{ + fsmName = "ConvoyTravelAir"; + class States + { + /*%FSM*/ + class Start + { + name = "Start"; + itemno = 0; + init = /*%FSM*/"// _offset is this vehicle's target offset from followpos" \n + "// _markers is [origin, destination]" \n + "params [""_vehicle"", ""_offset"", ""_markers"", ""_convoyType""];" \n + "" \n + "private _state = ""START"";" \n + "private _abort = false;" \n + "" \n + "// log some broken input errors" \n + "if (isNull _vehicle) exitWith { _abort = true; [1, ""Null vehicle input"", ""ConvoyTravelAir""] call A3A_fnc_log };" \n + "if (driver _vehicle == objNull) exitWith { _abort = true; [1, ""No driver in vehicle"", ""ConvoyTravelAir""] call A3A_fnc_log };" \n + "" \n + "//private _cargoGroup = getVariable [""cargoGroup"", grpNull];" \n + "private _cargo = assignedCargo _vehicle;" \n + "private _cargoGroup = if (_cargo isEqualTo []) then { grpNull } else { group (_cargo # 0) };" \n + "private _crewGroup = group driver _vehicle;" \n + "" \n + "private _destPos = getMarkerPos (_markers # 1);" \n + "private _originPos = getMarkerPos (_markers # 0);" \n + "" \n + ""/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + /*%FSM*/ + class Hard_Abort + { + itemno = 7; + priority = 100.000000; + to="End_and_Abort"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_abort;"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Nothing_to_follo + { + itemno = 12; + priority = 5.000000; + to="Head_to__Target"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"isNil {_vehicle getVariable ""followpos""};"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class True + { + itemno = 14; + priority = 0.000000; + to="Follow_position"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/""/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + }; + }; + /*%FSM*/ + /*%FSM*/ + class End_and_Cleanup + { + name = "End_and_Cleanup"; + itemno = 1; + init = /*%FSM*/"_state = ""END"";" \n + "" \n + "if !(isNull _vehicle) then { _vehicle setVariable[""fsmresult"", -1] };" \n + "" \n + "if !(isNil ""_landPad"") then { deleteVehicle _landPad };" \n + "" \n + "// Might be soft-landed somewhere, so clean up" \n + "{ unassignVehicle _x } forEach (crew _vehicle);" \n + "if (_cargoGroup != grpNull) then {" \n + " (units _cargoGroup) joinSilent _crewGroup;" \n + " deleteGroup _cargoGroup;" \n + "};" \n + "[_crewGroup] spawn A3A_fnc_groupDespawner;" \n + "" \n + "// Send back to base" \n + "private _wp3 = _crewGroup addWaypoint [_originPos, 100];" \n + "_wp3 setWaypointType ""MOVE"";" \n + "_wp3 setWaypointBehaviour ""SAFE"";" \n + "_crewGroup setCurrentWaypoint _wp3;"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + }; + }; + /*%FSM*/ + /*%FSM*/ + class Head_to__Target + { + name = "Head_to__Target"; + itemno = 4; + init = /*%FSM*/"_state = ""FLYTO"";" \n + "" \n + "private _wp0 = _crewGroup addWaypoint [_destPos vectorAdd [0,0,50], 100];" \n + "_wp0 setWaypointType ""MOVE"";" \n + "_crewGroup setCurrentWaypoint _wp0;" \n + ""/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + /*%FSM*/ + class Abort + { + itemno = 3; + priority = 100.000000; + to="End_and_Abort"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_abort;"/*%FSM*/; + action=/*%FSM*/"[3, ""Abort called on FSM"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Veh_Incapacitate + { + itemno = 5; + priority = 20.000000; + to="End_and_Cleanup"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"!alive _vehicle || !canMove _vehicle || driver _vehicle == objNull || !alive driver _vehicle;"/*%FSM*/; + action=/*%FSM*/"[2, ""Vehicle or driver died during travel, abandoning"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class HasArrived + { + itemno = 2; + priority = 10.000000; + to="Land_and_Unload"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_vehicle distance _destPos < 500;"/*%FSM*/; + action=/*%FSM*/"[3, ""Helicopter arrived at destination"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + }; + }; + /*%FSM*/ + /*%FSM*/ + class Land_and_Unload + { + name = "Land_and_Unload"; + itemno = 6; + init = /*%FSM*/"_state = ""LAND"";" \n + "" \n + "// trying this because of weird behaviour" \n + "//while {count (waypoints _crewGroup) > 0} do {" \n + "// deleteWaypoint ((waypoints _crewGroup) select 0);" \n + "//};" \n + "" \n + "private _landPos = [_destPos, 0, 300, 10, 0, 0.20, 0,[],[[0,0,0],[0,0,0]]] call BIS_fnc_findSafePos;" \n + "_landPos set [2, 0];" \n + "private _landPad = createVehicle [""Land_HelipadEmpty_F"", _landpos, [], 0, ""NONE""]; // cancollide?" \n + "" \n + "private _wp1 = _crewGroup addWaypoint [_landpos, 0];" \n + "_wp1 setWaypointType ""TR UNLOAD"";" \n + "_wp1 setWaypointStatements [""true"", ""(vehicle this) land 'GET OUT';""];" \n + "_wp1 setWaypointBehaviour ""CARELESS"";" \n + "_crewGroup setCurrentWaypoint _wp1; // otherwise it's still on the previous waypoint" \n + "" \n + "// Move cargo group towards centre of outpost" \n + "if (_cargoGroup != grpNull) then {" \n + " { unassignVehicle _x } forEach units _cargoGroup;" \n + " private _wp2 = _cargoGroup addWaypoint [_destPos, 10];" \n + " _wp2 setWaypointType ""MOVE"";" \n + " _wp2 setWaypointStatements [""true"", ""(group this) spawn A3A_fnc_attackDrillAI;""];" \n + " _cargoGroup setCurrentWaypoint _wp2;" \n + "};"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + /*%FSM*/ + class Abort + { + itemno = 3; + priority = 100.000000; + to="End_and_Abort"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_abort;"/*%FSM*/; + action=/*%FSM*/"[3, ""Abort called on FSM"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Veh_Incapacitate + { + itemno = 5; + priority = 20.000000; + to="End_and_Cleanup"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"!alive _vehicle || !canMove _vehicle || driver _vehicle == objNull || !alive driver _vehicle;"/*%FSM*/; + action=/*%FSM*/"[2, ""Vehicle or driver died during travel, abandoning"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class HasUnloaded + { + itemno = 9; + priority = 0.000000; + to="Return__to_Base"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"{ vehicle _x != _x } count units _cargoGroup == 0;" \n + ""/*%FSM*/; + action=/*%FSM*/"[3, ""Helicopter has unloaded cargo"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + }; + }; + /*%FSM*/ + /*%FSM*/ + class End_and_Abort + { + name = "End_and_Abort"; + itemno = 8; + init = /*%FSM*/"_state = ""END"";" \n + "" \n + "if !(isNull _vehicle) then { _vehicle setVariable[""fsmresult"", -2] };" \n + "" \n + "if !(isNil ""_landPad"") then { deleteVehicle _landPad };" \n + "" \n + ""/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + }; + }; + /*%FSM*/ + /*%FSM*/ + class Return__to_Base + { + name = "Return__to_Base"; + itemno = 10; + init = /*%FSM*/"_state = ""END"";" \n + "" \n + "if !(isNull _vehicle) then { _vehicle setVariable[""fsmresult"", 1] };" \n + "" \n + "if !(isNil ""_landPad"") then { deleteVehicle _landPad };" \n + "" \n + "// Transport vehicle returns home" \n + "_crewGroup deleteGroupWhenEmpty true;" \n + "private _wp3 = _crewGroup addWaypoint [_originPos vectorAdd [0,0,50], 100];" \n + "_wp3 setWaypointType ""MOVE"";" \n + "_wp3 setWaypointStatements [""true"", ""[3, """"heli return completed"""", """"ConvoyTravelAir""""] call A3A_fnc_log; deleteVehicle (vehicle this); {deleteVehicle _x} forEach thisList""];" \n + "_wp3 setWaypointBehaviour ""SAFE"";" \n + "" \n + "//_wp3 setWaypointCompletionRadius 200; // bugged, often causes waypoint non-termination" \n + "//_crewGroup setCurrentWaypoint _wp3; // bugged, prevents takeoff" \n + "" \n + "if (_cargoGroup == grpNull) exitWith {};" \n + "" \n + "if (_convoyType isEqualTo ""reinforce"") then {" \n + "" \n + " // add units to garrison immediately, otherwise it'll keep sending them" \n + " private _unitTypes = [];" \n + " { _unitTypes pushBack (typeOf _x) } foreach units _cargoGroup;" \n + " [_markers # 1, [["""", [], _unitTypes]]] call A3A_fnc_addGarrison;" \n + "" \n + " // synchronize despawning with the target marker" \n + " // remove this once addGarrison takes control of the units" \n + " [_cargoGroup, _markers # 1] spawn {" \n + " params[""_cargo"", ""_marker""];" \n + " [3, ""Entering garrison reinf despawn loop"", ""ConvoyTravelAir""] call A3A_fnc_log;" \n + " waitUntil {sleep 5; (spawner getVariable _marker == 2)};" \n + " { deleteVehicle _x } forEach units _cargo;" \n + " deleteGroup _cargo;" \n + " };" \n + "}" \n + "else { [_cargoGroup] spawn A3A_fnc_groupDespawner; };" \n + "" \n + ""/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + }; + }; + /*%FSM*/ + /*%FSM*/ + class Follow_position + { + name = "Follow_position"; + itemno = 11; + init = /*%FSM*/"private _followPos = _vehicle getVariable ""followpos"";" \n + "" \n + "_vehicle move (_followPos vectorAdd _offset);" \n + "" \n + "private _timeout = time + 2;"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + /*%FSM*/ + class Abort + { + itemno = 3; + priority = 100.000000; + to="End_and_Abort"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_abort;"/*%FSM*/; + action=/*%FSM*/"[3, ""Abort called on FSM"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Veh_Incapacitate + { + itemno = 5; + priority = 20.000000; + to="End_and_Cleanup"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"!alive _vehicle || !canMove _vehicle || driver _vehicle == objNull || !alive driver _vehicle;"/*%FSM*/; + action=/*%FSM*/"[2, ""Vehicle or driver died during travel, abandoning"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class HasArrived + { + itemno = 2; + priority = 10.000000; + to="Land_and_Unload"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_vehicle distance _destPos < 500;"/*%FSM*/; + action=/*%FSM*/"[3, ""Helicopter arrived at destination"", ""ConvoyTravelAir""] call A3A_fnc_log;"/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Nothing_to_follo + { + itemno = 12; + priority = 5.000000; + to="Head_to__Target"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"isNil {_vehicle getVariable ""followpos""};"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Timed_position_u + { + itemno = 13; + priority = 1.000000; + to="Follow_position"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"time >= _timeout;"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + }; + }; + /*%FSM*/ + }; + initState="Start"; + finalStates[] = + { + "End_and_Cleanup", + "End_and_Abort", + "Return__to_Base", + }; +}; +/*%FSM*/ \ No newline at end of file diff --git a/A3-Antistasi/FSMs/DriveAlongPath.fsm b/A3-Antistasi/FSMs/DriveAlongPath.fsm new file mode 100644 index 0000000000..89f205c9ec --- /dev/null +++ b/A3-Antistasi/FSMs/DriveAlongPath.fsm @@ -0,0 +1,235 @@ +/*%FSM*/ +/*%FSM*/ +/* +item0[] = {"Start",0,250,-258.071289,-342.907776,-168.071396,-292.907776,0.000000,"Start"}; +item1[] = {"_",-1,250,-162.790146,-180.814117,-73.255249,-177.907150,0.000000,""}; +item2[] = {"End_and_Rejoin",1,250,121.673431,-203.263062,211.673462,-153.263077,0.000000,"End and Rejoin"}; +item3[] = {"HasArrived",4,218,-87.535736,-114.861282,2.464264,-64.861282,10.000000,"HasArrived"}; +item4[] = {"Abort",4,218,-87.177856,-219.679779,2.822144,-169.679764,100.000000,"Abort"}; +item5[] = {"Head_to__Next_Po",2,250,-256.894318,-166.599014,-166.894302,-116.599007,0.000000,"Head to " \n "Next Pos"}; +item6[] = {"True",8,218,-257.487732,-253.817780,-167.487717,-203.817780,0.000000,"True"}; +item7[] = {"At_Next_Pos",4,218,-256.300751,-66.920471,-166.300781,-16.920471,5.000000,"At Next Pos"}; +item8[] = {"Fucked_Waypoint",4,218,-398.105469,-164.819061,-308.105469,-114.819061,0.000000,"Fucked" \n "Waypoint"}; +item9[] = {"Veh_or_Crew_Dead",4,218,-87.208313,-167.915009,2.791687,-117.915009,20.000000,"Veh or Crew" \n "Dead"}; +item10[] = {"Abort",1,250,116.100433,-342.075500,206.100464,-292.075500,0.000000,"Abort"}; +item11[] = {"Hard_Abort_",4,218,-86.479492,-341.346832,3.520508,-291.346832,100.000000,"Hard Abort?"}; +version=1; +class LayoutItems +{ + class Item1 + { + class ItemInfo + { + FontFace="Arial"; + FontHeight=10; + lStyle=1; + }; + }; +}; +link0[] = {0,6}; +link1[] = {0,11}; +link2[] = {3,2}; +link3[] = {4,2}; +link4[] = {5,3}; +link5[] = {5,4}; +link6[] = {5,7}; +link7[] = {5,8}; +link8[] = {5,9}; +link9[] = {6,5}; +link10[] = {7,5}; +link11[] = {8,5}; +link12[] = {9,2}; +link13[] = {11,10}; +globals[] = {0.000000,0,0,0,0,640,480,1,36,6316128,1,-559.409241,250.910950,151.986633,-492.188782,1112,884,1}; +window[] = {2,-1,-1,-1,-1,785,-1894,-454,26,3,1130}; +*//*%FSM*/ +class FSM +{ + fsmName = "DriveAlongPath"; + class States + { + /*%FSM*/ + class Start + { + name = "Start"; + itemno = 0; + init = /*%FSM*/"params [""_vehicle"", ""_route""];" \n + "" \n + "private _hardAbort = false;" \n + "private _state = ""START"";" \n + "" \n + "if (isNull _vehicle || count _route == 0) exitWith {};" \n + "" \n + "private _destination = _route select (count _route - 1);" \n + "private _accuracy = 20;" \n + "" \n + "private _splitCrew = [_vehicle] call A3A_fnc_splitVehicleCrewIntoOwnGroups;" \n + "if (_splitCrew select 0 isEqualTo []) exitWith {" \n + " _hardAbort = true;" \n + "};" \n + "" \n + "//Make sure our driver doesn't give a shit about the whole 'being shot' thing" \n + "(group driver _vehicle) setBehaviour ""CARELESS"";" \n + "(group driver _vehicle) setCombatMode ""BLUE"";" \n + "" \n + "private _currentNode = 0;"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + /*%FSM*/ + class Hard_Abort_ + { + itemno = 11; + priority = 100.000000; + to="Abort"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_hardAbort;"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class True + { + itemno = 6; + priority = 0.000000; + to="Head_to__Next_Po"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/""/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + }; + }; + /*%FSM*/ + /*%FSM*/ + class End_and_Rejoin + { + name = "End_and_Rejoin"; + itemno = 2; + init = /*%FSM*/"_state = ""END"";" \n + "" \n + "//Fresh group, to wipe out any lingering orders." \n + "_splitCrew call A3A_fnc_joinMultipleGroups;"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + }; + }; + /*%FSM*/ + /*%FSM*/ + class Head_to__Next_Po + { + name = "Head_to__Next_Po"; + itemno = 5; + init = /*%FSM*/"_state = ""FOLLOW"";" \n + "" \n + "private _nextPos = _route # _currentNode;" \n + "" \n + "//Move all of the groups, as we don't know who is in command." \n + "{" \n + " //while {count waypoints _x > 0} do {" \n + " // deleteWaypoint (waypoints _x select 0);" \n + " //};" \n + "" \n + " //_x addWaypoint [getPosASL _vehicle, -1];" \n + " private _nextWaypoint = _x addWaypoint [AGLToASL _nextPos, -1];" \n + "" \n + "" \n + " _x setCurrentWaypoint _nextWaypoint;" \n + "" \n + " //_x move _nextPos;" \n + "} forEach (_splitCrew # 0);"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + /*%FSM*/ + class Abort + { + itemno = 4; + priority = 100.000000; + to="End_and_Rejoin"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"!(isNil ""_abort"");"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Veh_or_Crew_Dead + { + itemno = 9; + priority = 20.000000; + to="End_and_Rejoin"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"!alive _vehicle || { driver _vehicle == objNull } || { !alive driver _vehicle };"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class HasArrived + { + itemno = 3; + priority = 10.000000; + to="End_and_Rejoin"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_vehicle distance _destination < _accuracy;"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class At_Next_Pos + { + itemno = 7; + priority = 5.000000; + to="Head_to__Next_Po"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"_vehicle distance _nextPos < _accuracy;"/*%FSM*/; + action=/*%FSM*/"if (_currentNode < count _route) then {" \n + " _currentNode = _currentNode + 1;" \n + "};" \n + "" \n + ""/*%FSM*/; + }; + /*%FSM*/ + /*%FSM*/ + class Fucked_Waypoint + { + itemno = 8; + priority = 0.000000; + to="Head_to__Next_Po"; + precondition = /*%FSM*/""/*%FSM*/; + condition=/*%FSM*/"private _result = false;" \n + "" \n + "{" \n + " if (currentWaypoint _x + 1 > count waypoints _x) then {" \n + " _result = true;" \n + " };" \n + "} forEach (_splitCrew # 0);" \n + "" \n + "_result;"/*%FSM*/; + action=/*%FSM*/""/*%FSM*/; + }; + /*%FSM*/ + }; + }; + /*%FSM*/ + /*%FSM*/ + class Abort + { + name = "Abort"; + itemno = 10; + init = /*%FSM*/"_state = ""END"";"/*%FSM*/; + precondition = /*%FSM*/""/*%FSM*/; + class Links + { + }; + }; + /*%FSM*/ + }; + initState="Start"; + finalStates[] = + { + "End_and_Rejoin", + "Abort", + }; +}; +/*%FSM*/ \ No newline at end of file diff --git a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal.sqf b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal.sqf index 349eb178fc..6c5559f2e6 100644 --- a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal.sqf +++ b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal.sqf @@ -100,7 +100,7 @@ _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL,[]];\ _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOTHROW,[/*"Grenade","SmokeShell"*/]];\ _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOPUT,[/*"Mine","MineBounding","MineDirectional"*/]];\ - _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMISC,["FirstAidKit","Medikit","MineDetector","Toolkit"]]; + _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMISC,["FirstAidKit","Medikit","MineDetector","ToolKit"]]; #define STATS_WEAPONS\ ["reloadtime","dispersion","maxzeroing","hit","mass","initSpeed"],\ @@ -1735,7 +1735,7 @@ switch _mode do { case IDC_RSCDISPLAYARSENAL_TAB_NVGS:{ _oldItem = hmd player; if (_oldItem != _item) then { - player removeweapon _oldItem; + player removeWeaponGlobal _oldItem; [_index, _oldItem] call jn_fnc_arsenal_addItem; if (_item != "") then{ player addweapon _item; @@ -1746,7 +1746,7 @@ switch _mode do { case IDC_RSCDISPLAYARSENAL_TAB_BINOCULARS: { _oldItem = binocular player; if (_oldItem != _item) then { - player removeweapon _oldItem; + player removeWeaponGlobal _oldItem; [_index,_oldItem] call jn_fnc_arsenal_addItem; if (_item != "") then{ player addweapon _item; @@ -1794,7 +1794,7 @@ switch _mode do { //remove weapon - player removeweapon _oldItem; + player removeWeaponGlobal _oldItem; [_index, _oldItem] call jn_fnc_arsenal_addItem; //add new weapon @@ -2617,22 +2617,13 @@ switch _mode do { // unifrom _itemsUnifrom = []; if(hasACEMedical)then{ - - //ACE Basic medical system - if (ace_medical_level == 1) then{ - _itemsUnifrom pushBack ["ACE_fieldDressing",4]; - _itemsUnifrom pushBack ["ACE_morphine",2]; - _itemsUnifrom pushBack ["ACE_epinephrine",1]; - }; - - //ACE Advanced medical system - if (ace_medical_level == 2) then{ - _itemsUnifrom pushBack ["ACE_elasticBandage",2]; - _itemsUnifrom pushBack ["ACE_packingBandage",2]; - _itemsUnifrom pushBack ["ACE_morphine",1]; - _itemsUnifrom pushBack ["ACE_epinephrine",1]; - _itemsUnifrom pushBack ["ACE_tourniquet",1]; - }; + _itemsUnifrom pushBack ["ACE_elasticBandage",2]; + _itemsUnifrom pushBack ["ACE_packingBandage",2]; + _itemsUnifrom pushBack ["ACE_morphine",1]; + _itemsUnifrom pushBack ["ACE_epinephrine",1]; + _itemsUnifrom pushBack ["ACE_adenosine", 1]; + _itemsUnifrom pushBack ["ACE_tourniquet",1]; + _itemsUnifrom pushBack ["ACE_splint", 1]; }else{ _itemsUnifrom pushBack ["FirstAidKit",2]; if(hasACE) then { @@ -2675,41 +2666,34 @@ switch _mode do { if([player] call A3A_fnc_isMedic)then{ if(hasACEMedical) then { //Medic equipment - - if (ace_medical_level == 1) then{ //ACE Basic medical system for medic - _itemsBackpack pushBack ["ACE_fieldDressing",20]; - _itemsBackpack pushBack ["ACE_morphine",10]; - _itemsBackpack pushBack ["ACE_epinephrine",10]; - _itemsBackpack pushBack ["ACE_bloodIV",6]; - }; - if (ace_medical_level == 2) then{ //ACE Advanced medical system for medic - _itemsBackpack pushBack ["ACE_elasticBandage",15]; - _itemsBackpack pushBack ["ACE_packingBandage",7]; - _itemsBackpack pushBack ["ACE_tourniquet",5]; - _itemsBackpack pushBack ["ACE_personalAidKit",1]; - }; - } else { //Vanilla Medikit for medic + _itemsBackpack pushBack ["ACE_elasticBandage",15]; + _itemsBackpack pushBack ["ACE_packingBandage",15]; + _itemsBackpack pushBack ["ACE_tourniquet",5]; + _itemsBackpack pushBack ["ACE_personalAidKit",1]; + _itemsBackpack pushBack ["ACE_adenosine", 10]; + _itemsBackpack pushBack ["ACE_morphine", 10]; + _itemsBackpack pushBack ["ACE_epinephrine", 10]; + } else { //Vanilla Medikit for medic _itemsBackpack pushBack ["Medikit",1]; _itemsBackpack pushBack ["FirstAidKit",1]; }; } else { if(hasACEMedical) then { - if (ace_medical_level == 1) then{ //ACE Basic medical system for soldiers - _itemsBackpack pushBack ["ACE_fieldDressing",10]; - _itemsBackpack pushBack ["ACE_morphine",3]; - _itemsBackpack pushBack ["ACE_epinephrine",2]; - }; - if (ace_medical_level == 2) then{ //ACE Advanced medical system for soldiers - _itemsBackpack pushBack ["ACE_elasticBandage",10]; - _itemsBackpack pushBack ["ACE_tourniquet",2]; - }; + _itemsBackpack pushBack ["ACE_fieldDressing",5]; + _itemsBackpack pushBack ["ACE_packingBandage",5]; + _itemsBackpack pushBack ["ACE_elasticBandage",5]; + _itemsBackpack pushBack ["ACE_morphine",3]; + _itemsBackpack pushBack ["ACE_epinephrine",2]; + _itemsBackpack pushBack ["ACE_adenosine", 2]; + _itemsBackpack pushBack ["ACE_tourniquet",2]; + _itemsBackpack pushBack ["ACE_splint", 2]; } else { //Vanilla FAK for soldiers _itemsBackpack pushBack ["FirstAidKit",5]; }; }; if(player getUnitTrait "Engineer")then { - _itemsBackpack pushback ["Toolkit",1]; + _itemsBackpack pushback ["ToolKit",1]; if(hasACE) then { _itemsbackpack pushback ["ACE_Clacker",1]; _itemsbackpack pushback ["ACE_SpraypaintRed",4]; diff --git a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_handleAction.sqf b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_handleAction.sqf new file mode 100644 index 0000000000..bd149874da --- /dev/null +++ b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_handleAction.sqf @@ -0,0 +1,63 @@ +/** + Handler for when the 'Arsenal' action is taken. + + Usage: + _thing addAction ["Action", JN_fnc_arsenal_handleAction]; + + Params: + Same as any 'addAction' handler +**/ + +if (!arsenalInit) exitWith {}; +//start loading screen +["jn_fnc_arsenal", "Loading Nutzā„¢ Arsenal"] call bis_fnc_startloadingscreen; +[] spawn { +uisleep 10; +private _ids = missionnamespace getvariable ["BIS_fnc_startLoadingScreen_ids",[]]; + if("jn_fnc_arsenal" in _ids)then{ + private _display = uiNamespace getVariable ["arsanalDisplay","No display"]; + titleText["ERROR DURING LOADING ARSENAL", "PLAIN"]; + _display closedisplay 2; + ["jn_fnc_arsenal"] call BIS_fnc_endLoadingScreen; + }; + + //TODO this is a temp fix for rhs because it freezes the loading screen if no primaryWeapon was equiped. This will be fix in rhs 0.4.9 +if("bis_fnc_arsenal" in _ids)then{ + private _display = uiNamespace getVariable ["arsanalDisplay","No display"]; + titleText["Non Fatal Error, RHS?", "PLAIN"]; + diag_log "JNA: Non Fatal Error, RHS?"; + ["bis_fnc_arsenal"] call BIS_fnc_endLoadingScreen; +}; +}; + +//save proper ammo because BIS arsenal rearms it, and I will over write it back again +missionNamespace setVariable ["jna_magazines_init", [ + magazinesAmmoCargo (uniformContainer player), + magazinesAmmoCargo (vestContainer player), + magazinesAmmoCargo (backpackContainer player) +]]; + +//Save attachments in containers, because BIS arsenal removes them +_attachmentsContainers = [[],[],[]]; +{ + _container = _x; + _weaponAtt = weaponsItemsCargo _x; + _attachments = []; + + if!(isNil "_weaponAtt")then{ + + { + _atts = [_x select 1,_x select 2,_x select 3,_x select 5]; + _atts = _atts - [""]; + _attachments = _attachments + _atts; + } forEach _weaponAtt; + _attachmentsContainers set [_foreachindex,_attachments]; + } +} forEach [uniformContainer player,vestContainer player,backpackContainer player]; +missionNamespace setVariable ["jna_containerCargo_init", _attachmentsContainers]; + +//set type +UINamespace setVariable ["jn_type","arsenal"]; + +//request server to open arsenal +[clientOwner] remoteExecCall ["jn_fnc_arsenal_requestOpen",2]; \ No newline at end of file diff --git a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_init.sqf b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_init.sqf index 5c7eff3339..eabe245613 100755 --- a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_init.sqf +++ b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_init.sqf @@ -2,8 +2,9 @@ #include "\A3\Ui_f\hpp\defineResinclDesign.inc" /////////////////////////////////////////////////////////////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | JNA Init Started.",servertime]; - +scriptName "fn_arsenal_init.sqf"; +private _fileName = "fn_arsenal_init.sqf"; +[2,"JNA init started",_fileName] call A3A_fnc_log; params [["_object",objNull,[objNull]]]; //check if it was already initialised @@ -50,7 +51,7 @@ jna_minItemMember = [24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24 //server if(isServer)then{ - diag_log format ["%1: [Antistasi] | INFO | JNA Server Detected.",servertime]; + [2,"JNA server detected",_fileName] call A3A_fnc_log; //load default if it was not loaded from savegame if(isnil "jna_dataList" )then{jna_dataList = [[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]];}; @@ -58,65 +59,12 @@ if(isServer)then{ //player if(hasInterface)then{ - diag_log format ["%1: [Antistasi] | INFO | JNA Loading Player Data.",servertime]; + [2,"JNA loading player data",_fileName] call A3A_fnc_log; //add arsenal button _object addaction [ localize "STR_A3_Arsenal", - { - //start loading screen - ["jn_fnc_arsenal", "Loading Nutzā„¢ Arsenal"] call bis_fnc_startloadingscreen; - [] spawn { - uisleep 5; - private _ids = missionnamespace getvariable ["BIS_fnc_startLoadingScreen_ids",[]]; - if("jn_fnc_arsenal" in _ids)then{ - private _display = uiNamespace getVariable ["arsanalDisplay","No display"]; - titleText["ERROR DURING LOADING ARSENAL", "PLAIN"]; - _display closedisplay 2; - ["jn_fnc_arsenal"] call BIS_fnc_endLoadingScreen; - }; - - //TODO this is a temp fix for rhs because it freezes the loading screen if no primaryWeapon was equiped. This will be fix in rhs 0.4.9 - if("bis_fnc_arsenal" in _ids)then{ - private _display = uiNamespace getVariable ["arsanalDisplay","No display"]; - titleText["Non Fatal Error, RHS?", "PLAIN"]; - diag_log "JNA: Non Fatal Error, RHS?"; - ["bis_fnc_arsenal"] call BIS_fnc_endLoadingScreen; - }; - }; - - //save proper ammo because BIS arsenal rearms it, and I will over write it back again - missionNamespace setVariable ["jna_magazines_init", [ - magazinesAmmoCargo (uniformContainer player), - magazinesAmmoCargo (vestContainer player), - magazinesAmmoCargo (backpackContainer player) - ]]; - - //Save attachments in containers, because BIS arsenal removes them - _attachmentsContainers = [[],[],[]]; - { - _container = _x; - _weaponAtt = weaponsItemsCargo _x; - _attachments = []; - - if!(isNil "_weaponAtt")then{ - - { - _atts = [_x select 1,_x select 2,_x select 3,_x select 5]; - _atts = _atts - [""]; - _attachments = _attachments + _atts; - } forEach _weaponAtt; - _attachmentsContainers set [_foreachindex,_attachments]; - } - } forEach [uniformContainer player,vestContainer player,backpackContainer player]; - missionNamespace setVariable ["jna_containerCargo_init", _attachmentsContainers]; - - //set type - UINamespace setVariable ["jn_type","arsenal"]; - - //request server to open arsenal - [clientOwner] remoteExecCall ["jn_fnc_arsenal_requestOpen",2]; - }, + JN_fnc_arsenal_handleAction, [], 6, true, @@ -166,5 +114,5 @@ if(hasInterface)then{ }; }] call BIS_fnc_addScriptedEventHandler; }; -diag_log format ["%1: [Antistasi] | INFO | JNA Completed.",servertime]; +[2,"JNA init completed",_fileName] call A3A_fnc_log; arsenalInit = true; diff --git a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_itemType.sqf b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_itemType.sqf index 85b4125eef..a52987ab7d 100644 --- a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_itemType.sqf +++ b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_itemType.sqf @@ -86,9 +86,9 @@ params ["_item"]; _return = -1; private ["_weaponType","_weaponTypeCategory"]; -/* - We're gonna use ACE's item detection code, but modified. - Thanks ACE! +/* + We're gonna use ACE's item detection code, but modified. + Thanks ACE! (https://github.com/acemod/ACE3, this code was authored by Alganthe and Dedmen) */ @@ -130,13 +130,13 @@ private _itemCategory = switch true do { case (_simulationType == "ItemGPS"): { "GPS" }; case (_itemInfoType == TYPE_UAV_TERMINAL): { "UAVTerminal" }; //Weapon, at the bottom to avoid adding binoculars - case (isClass (_weaponConfig >> "WeaponSlotsInfo") && _itemType != TYPE_BINOCULAR_AND_NVG): { + case (isClass (_weaponConfig >> "WeaponSlotsInfo") && _itemType != TYPE_BINOCULAR_AND_NVG): { (_item call BIS_fnc_itemType) select 1; }; //Community Base Addon Misc Items case (_itemInfoType in [TYPE_MUZZLE, TYPE_OPTICS, TYPE_FLASHLIGHT, TYPE_BIPOD] && _item isKindOf ["CBA_MiscItem", (_configCfgWeapons)]); //Base game misc items - case (_itemType in [TYPE_FIRST_AID_KIT, TYPE_MEDIKIT, TYPE_TOOLKIT] || _simulationType == "ItemMineDetector"): { + case (_itemInfoType in [TYPE_FIRST_AID_KIT, TYPE_MEDIKIT, TYPE_TOOLKIT] || _simulationType == "ItemMineDetector"): { "MiscItem"; }; default { @@ -178,7 +178,7 @@ private _itemCategory = switch true do { case (_item in _putList): { "Placeable"; }; - }; + }; }; case (isClass (configFile >> "CfgVehicles" >> _item)): { diff --git a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_loadInventory.sqf b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_loadInventory.sqf index f6835234eb..8bbbe3dfc7 100644 --- a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_loadInventory.sqf +++ b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_loadInventory.sqf @@ -68,7 +68,7 @@ _saveName = _this; _saveData = profilenamespace getvariable ["bis_fnc_saveInventory_data",[]]; _inventory = []; { - if(typename _x == "STRING" && {_x == _saveName})exitWith{ + if(_x isEqualType "STRING" && {_x == _saveName})exitWith{ _inventory = _saveData select (_foreachindex + 1); }; } forEach _saveData; @@ -93,14 +93,14 @@ _inventory = []; }foreach magazinesAmmoFull player; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// assinged items -_assignedItems_old = assignedItems player + [headgear player] + [goggles player] + [hmd player] + [binocular player]; +_assignedItems_old = assignedItems player + [headgear player] + [goggles player]; { _item = _x; _amount = 1; _index = _item call jn_fnc_arsenal_itemType; if (_item call _isItemBino) then { - player removeWeapon _item; + player removeWeaponGlobal _item; } else { player unlinkItem _item; }; @@ -123,7 +123,7 @@ _weapons = [primaryWeapon player, secondaryWeapon player, handgunWeapon player]; _item = _x; _amount = 1; _index = _foreachindex; - player removeWeapon _item; + player removeWeaponGlobal _item; [_arrayPlaced,_index,_item,_amount]call _addToArray; } forEach _weapons; @@ -312,7 +312,7 @@ _backpackItems = _inventory select 2 select 1; //add containers _containers = [_uniform,_vest,_backpack]; -private _removeContainerFuncs = [{removeUniform player;},{removeVest player;},{removeBackpackGlobal player;}]; +private _removeContainerFuncs = [{removeUniform player;},{removeVest player;},{removeBackpackGlobal player;}]; private _addContainerFuncs = [ {player forceAddUniform (_this select 0);}, {player addVest (_this select 0);}, diff --git a/A3-Antistasi/JeroenArsenal/JNA/fn_vehicleArsenal.sqf b/A3-Antistasi/JeroenArsenal/JNA/fn_vehicleArsenal.sqf index 32ecae9518..c5ba986d95 100644 --- a/A3-Antistasi/JeroenArsenal/JNA/fn_vehicleArsenal.sqf +++ b/A3-Antistasi/JeroenArsenal/JNA/fn_vehicleArsenal.sqf @@ -100,7 +100,7 @@ _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL,[]];\ _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOTHROW,[/*"Grenade","SmokeShell"*/]];\ _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOPUT,[/*"Mine","MineBounding","MineDirectional"*/]];\ - _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMISC,["FirstAidKit","Medikit","MineDetector","Toolkit"]]; + _types set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMISC,["FirstAidKit","Medikit","MineDetector","ToolKit"]]; #define STATS_WEAPONS\ ["reloadtime","dispersion","maxzeroing","hit","mass","initSpeed"],\ @@ -803,7 +803,7 @@ switch _mode do { jnva_loadout_mass = 0; diag_log jnva_loadout; - [jnva_loadout] remoteExecCall ["jn_fnc_arsenal_addItem",2]; + jnva_loadout remoteExecCall ["jn_fnc_arsenal_addItem",2]; jnva_loadout = ((vehicle player) call jn_fnc_arsenal_cargoToArray); diag_log jnva_loadout; diff --git a/A3-Antistasi/JeroenArsenal/JNL/Actions/fn_logistics_addActionLoad.sqf b/A3-Antistasi/JeroenArsenal/JNL/Actions/fn_logistics_addActionLoad.sqf index 7e9418481d..7a6b1747ae 100644 --- a/A3-Antistasi/JeroenArsenal/JNL/Actions/fn_logistics_addActionLoad.sqf +++ b/A3-Antistasi/JeroenArsenal/JNL/Actions/fn_logistics_addActionLoad.sqf @@ -8,6 +8,11 @@ if(!isnil "_loadActionID") then _object removeAction _loadActionID; }; +//We can be remote exec'd with this before JNL has initialised. If that's the case, initialise! +if (isNil "jnl_initCompleted") then { + [] call JN_fnc_logistics_init; +}; + //Check if this vehicle can be loaded with JNL if((_object call jn_fnc_logistics_getCargoType) == -1) exitWith {}; diff --git a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_init.sqf b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_init.sqf index eb965769ff..fd38c17ab6 100644 --- a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_init.sqf +++ b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_init.sqf @@ -110,8 +110,8 @@ jnl_vehicleHardpoints = [ //RHS Gaz-66 truck "rhs_gaz66_vdv" ["\rhsafrf\addons\rhs_gaz66\rhs_gaz66.p3d", [ [0, [0,-0.88974,-0.610707], []], //Weapon node - [1, [0,-0.135376,-0.610707], []], //Cargo node - [1, [0,-1.73634,-0.610707], []] + [1, [0,-0.135376,-0.610707], [12,3,13,4,5,2]], //Cargo node + [1, [0,-1.73634,-0.610707], [6,7,8,9,11,10]] ]], //RHS truck "rhsgref_nat_ural_open" @@ -132,6 +132,12 @@ jnl_vehicleHardpoints = [ [1, [0,-1.78506,-0.19277], [6,7,8,9,11,10]] ]], + //RHS Zil131 plain (eg. rhsgref_cdf_zil131) and open (eg. rhsgref_cdf_zil131_open) + ["rhsafrf\addons\rhs_zil131\rhs_zil131", [ + [1, [0,-0.1,-0.45], [10,11,2,3,4,5]], + [1, [0,-1.8,-0.45], [6,7,8,9]] // only 10 seats + ]], + //USAF Truck seats covered ["\rhsusf\addons\rhsusf_fmtv\M1078A1P2",[ [1,[-0.0065918,0.0195313,-0.48801],[12,3,13,4,5,2]], @@ -351,3 +357,5 @@ _defaultCrew = gettext (configfile >> "cfgvehicles" >> "all" >> "crew"); }; }; } foreach ("isclass _x && {getnumber (_x >> 'scope') == 2} && {gettext (_x >> 'crew') != _defaultCrew}" configclasses (configfile >> "cfgvehicles")); + +jnl_initCompleted = true; \ No newline at end of file diff --git a/A3-Antistasi/JeroenArsenal/functions.hpp b/A3-Antistasi/JeroenArsenal/functions.hpp index cb32a8c85e..043d0d515a 100644 --- a/A3-Antistasi/JeroenArsenal/functions.hpp +++ b/A3-Antistasi/JeroenArsenal/functions.hpp @@ -7,6 +7,7 @@ class JN { class arsenal_addToArray {}; class arsenal_cargoToArray {}; class arsenal_cargoToArsenal {}; + class arsenal_handleAction {}; class arsenal_init {}; class arsenal_inList {}; class arsenal_itemCount {}; diff --git a/A3-Antistasi/MissionDescription/CfgIdentities.hpp b/A3-Antistasi/MissionDescription/CfgIdentities.hpp new file mode 100644 index 0000000000..afcf165808 --- /dev/null +++ b/A3-Antistasi/MissionDescription/CfgIdentities.hpp @@ -0,0 +1,156 @@ +class CfgIdentities +{ + class protagonista + { + name = "Stavros"; + nameSound = "Stavrou"; + face="GreekHead_A3_01"; + glasses="None"; + speaker="Male01GRE"; + pitch=1.1; + }; + class friendlyX + { + name = "Petros"; + nameSound = "Petros"; + face="GreekHead_A3_01"; + glasses="None"; + speaker="Male01GRE"; + pitch=1.1; + }; + class Anthis + { + name = "Anthis"; + nameSound = "Anthis"; + face="GreekHead_A3_02"; + glasses="None"; + speaker="Male01GRE"; + pitch=1.1; + }; + class Costa + { + name = "Costa"; + nameSound = "Costa"; + face="GreekHead_A3_03"; + glasses="None"; + speaker="Male02GRE"; + pitch=1.1; + }; + class Dimitirou + { + name = "Dimitirou"; + nameSound = "Dimitirou"; + face="GreekHead_A3_04"; + glasses="None"; + speaker="Male03GRE"; + pitch=1.1; + }; + class Elias + { + name = "Elias"; + nameSound = "Elias"; + face="GreekHead_A3_05"; + glasses="None"; + speaker="Male04GRE"; + pitch=1.1; + }; + class Gekas + { + name = "Gekas"; + nameSound = "Gekas"; + face="GreekHead_A3_06"; + glasses="None"; + speaker="Male01GRE"; + pitch=1.1; + }; + class Kouris + { + name = "Kouris"; + nameSound = "Kouris"; + face="GreekHead_A3_07"; + glasses="None"; + speaker="Male02GRE"; + pitch=1.1; + }; + class Leventis + { + name = "Leventis"; + nameSound = "Leventis"; + face="GreekHead_A3_08"; + glasses="None"; + speaker="Male03GRE"; + pitch=1.1; + }; + class Markos + { + name = "Markos"; + nameSound = "Markos"; + face="GreekHead_A3_09"; + glasses="None"; + speaker="Male04GRE"; + pitch=1.1; + }; + class Nikas + { + name = "Nikas"; + nameSound = "Nikas"; + face="WhiteHead_02"; + glasses="None"; + speaker="Male01GRE"; + pitch=1.1; + }; + class Nicolo + { + name = "Nicolo"; + nameSound = "Nicolo"; + face="WhiteHead_03"; + glasses="None"; + speaker="Male02GRE"; + pitch=1.1; + }; + class Panas + { + name = "Panas"; + nameSound = "Panas"; + face="WhiteHead_04"; + glasses="None"; + speaker="Male03GRE"; + pitch=1.1; + }; + class Rosi + { + name = "Rosi"; + nameSound = "Rosi"; + face="WhiteHead_05"; + glasses="None"; + speaker="Male04GRE"; + pitch=1.1; + }; + class Samaras + { + name = "Samaras"; + nameSound = "Samaras"; + face="WhiteHead_06"; + glasses="None"; + speaker="Male01GRE"; + pitch=1.1; + }; + class Thanos + { + name = "Thanos"; + nameSound = "Thanos"; + face="WhiteHead_07"; + glasses="None"; + speaker="Male02GRE"; + pitch=1.1; + }; + class Vega + { + name = "Vega"; + nameSound = "Vega"; + face="WhiteHead_08"; + glasses="None"; + speaker="Male03GRE"; + pitch=1.1; + }; +}; \ No newline at end of file diff --git a/A3-Antistasi/MissionDescription/debug.hpp b/A3-Antistasi/MissionDescription/debug.hpp new file mode 100644 index 0000000000..f25ba7d8ae --- /dev/null +++ b/A3-Antistasi/MissionDescription/debug.hpp @@ -0,0 +1,2 @@ +allowFunctionsLog = 1; +enableDebugConsole[] = {"76561198034977762","76561198127254055","76561197981991967","76561198011383725","76561198304402577","76561197993874267","76561198075487693"}; diff --git a/A3-Antistasi/MissionDescription/gameSettings.hpp b/A3-Antistasi/MissionDescription/gameSettings.hpp new file mode 100644 index 0000000000..819cffd5ad --- /dev/null +++ b/A3-Antistasi/MissionDescription/gameSettings.hpp @@ -0,0 +1,25 @@ +respawn = "BASE"; +respawnDelay = 15; + +aiKills = 0; +disabledAI = 1; +Saving = 0; + +class Header +{ + gameType = CTI; + minplayers = 1; + maxplayers = 75; +}; + +class CfgTaskEnhancements +{ + enable = 1; + 3d = 1; + 3dDrawDist = 3500; + share = 1; + propagate = 1; +}; + +//If we have CBA for TFAR, then load the mission's settings. +cba_settings_hasSettingsFile = 1; \ No newline at end of file diff --git a/A3-Antistasi/MissionDescription/params.hpp b/A3-Antistasi/MissionDescription/params.hpp new file mode 100644 index 0000000000..ca67a7cb0c --- /dev/null +++ b/A3-Antistasi/MissionDescription/params.hpp @@ -0,0 +1,455 @@ +class Params +{ + class loadSave + { + title = "Load last Persistent Save"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 1; + }; + class gameMode + { + title = "Game Mode"; + values[] = {1,2,3,4}; + texts[] = {"Reb vs Gov vs Inv","Reb vs Gov & Inv","Reb vs Gov","Reb vs Inv"}; + default = 1; + }; + class autoSave + { + title = "Enable Autosave (every hour)"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 1; + }; + class membership + { + title = "Enable Server Membership"; + texts[] = {"Yes","No"}; + values[] = {1,0}; + default = 1; + }; + class switchComm + { + title = "Enable Commander Switch (highest ranked player)"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 1; + }; + class tkPunish + { + title = "Enable Teamkill Punish"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 1; + }; + class mRadius + { + title = "Distance from HQ for Sidemissions"; + values[] = {2000,4000,6000,8000,10000,12000}; + default = 4000; + }; + class allowPvP + { + title = "Allow PvP Slots"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 1; + }; + class pMarkers + { + title = "Allow Friendly Player Markers"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 1; + }; + class AISkill + { + title = "Mission Difficulty"; + values[] = {1,2,3}; + texts[] = {"Easy","Normal","Hard"}; + default = 2; + }; + class unlockItem + { + title = "Number of the same weapons required to unlock"; + values[] = {15,25,40}; + default = 25; + }; + class memberOnlyMagLimit + { + title = "Number of magazines needed for guests to be able to use them"; + values[] = {10,20,30,40,50,60}; + default = 40; + }; + class civTraffic + { + title = "Rate of Civ Traffic"; + values[] = {0,1,2,3}; + texts[] = {"None","Low","Medium","JAM"}; + default = 1; + }; + class memberSlots + { + title = "Percentage of Reserved Slots for Members"; + values[] = {0,20,40,60,80,100}; + texts[] = {"None","20%","40%","60%","80%","All"}; + default = 20; + }; + class memberDistance + { + title = "Max distance non members can be from the closest member or HQ (they will be teleported to HQ after some timeout)"; + values[] = {4000,5000,6000,7000,8000,16000}; + texts[] = {"4 Kmts","5 Kmts","6 Kmts","7 Kmts","8 Kmts","Unlimited"}; + default = 5000; + }; + class allowMembersFactionGarageAccess + { + title = "Allow members to access the faction garage"; + texts[] = {"Yes", "No"}; + values[] = {1,0}; + default = 1; + }; + class allowFT + { + title = "Limited Fast Travel"; + values[] = {0,1}; + texts[] = {"No","Yes"}; + default = 1; + }; + class napalmEnabled + { + title = "Enable Napalm Bombing for AI"; + values[] = {0,1}; + texts[] = {"No","Yes"}; + default = 0; + }; + class teamSwitchDelay + { + title = "Delay After Leaving Before a Player Can Join Another Team"; + values[] = {0, 900, 1800, 3600}; + texts[] = {"No delay","15 minutes","30 minutes","60 minutes"}; + default = 3600; + }; + class unlockedUnlimitedAmmo + { + title = "Do Unlocked Weapons Automatically Unlock Their Standard Magazine?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class allowGuidedLaunchers + { + title = "Should Guided Launchers become unlocked?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class allowUnlockedExplosives + { + title = "Should Explosives become unlocked?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Spacer10 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class Kart + { + title = "Allow Items and Vehicles from Karts DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Mark + { + title = "Allow Items and Vehicles from Marksman DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Heli + { + title = "Allow Items and Vehicles from Heli DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Expansion + { + title = "Allow Items and Vehicles from Apex DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Jets + { + title = "Allow Items and Vehicles from Jets DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Orange + { + title = "Allow Items and Vehicles from Laws of War DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Tanks + { + title = "Allow Items and Vehicles from Tanks DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class GlobMob + { + title = "Allow Items and Vehicles from Global Mobilization DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Enoch + { + title = "Allow Items and Vehicles from Contact DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class OfficialMod + { + title = "Allow ADR-97 DLC?"; + values[] = {1,0}; + texts[] = {"Yes","No"}; + default = 0; + }; + class Spacer0 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class AdvancedParams + { + title = "ADVANCED USERS ONLY"; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class LogLevel + { + title = "Logging Level (Amount of detail in .rpt file)"; + values[] = {1,2,3}; + texts[] = {"Error", "Info", "Debug"}; + default = 3; + }; + class CrateOptions + { + title = "LOOT CRATE OPTIONS"; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class truelyRandomCrates + { + title = "[Experimental] Truely Random Crates: Remove all balance checks from Crates"; + values[] = {0, 1}; + texts[] = {"False", "True"}; + default = 0; + }; + class cratePlayerScaling + { + title = "Decrease loot quantity as player count increases? (Yes is recommended for balance reasons)"; + values[] = {0, 1}; + texts[] = {"False", "True"}; + default = 1; + }; + class crateWepTypeMax + { + title = "Maximum Weapon Types in Crates"; + values[] = {0,2,4,6,8,12,16}; + texts[] = {"1","3","5","7","9","13","17"}; + default = 9; + }; + class crateWepNumMax + { + title = "Maximum Weapon Quantity in Crates"; + values[] = {0,1,3,5,8,10,15}; + texts[] = {"None","1","3","5","8","10","15"}; + default = 8; + }; + class Spacer1 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class crateItemTypeMax + { + title = "Maximum Item Types in Crates"; + values[] = {0,2,4,9}; + texts[] = {"1","3","5","10"}; + default = 4; + }; + class crateItemNumMax + { + title = "Maximum Item Quantity in Crates"; + values[] = {0,1,3,5,10,15}; + texts[] = {"None","1","3","5","10","15"}; + default = 5; + }; + class Spacer2 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class crateAmmoTypeMax + { + title = "Maximum Ammo Types in Crates"; + values[] = {0,2,4,6,9,14,19}; + texts[] = {"1","3","5","7","10","15","20"}; + default = 6; + }; + class crateAmmoNumMax + { + title = "Maximum Ammo Quantity in Crates"; + values[] = {0,1,3,5,10,15,20,25,30}; + texts[] = {"None","1","3","5","10","15","20","25","30"}; + default = 20; + }; + class Spacer3 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class crateExplosiveTypeMax + { + title = "Maximum Explosive Types in Crates"; + values[] = {0,2,4,9}; + texts[] = {"1","3","5","10"}; + default = 2; + }; + class crateExplosiveNumMax + { + title = "Maximum Explosive Quantity in Crates"; + values[] = {0,1,3,5,10,15}; + texts[] = {"None","1","3","5","10","15"}; + default = 5; + }; + class Spacer4 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class crateAttachmentTypeMax + { + title = "Maximum Attachment Types in Crates"; + values[] = {0,2,4,6,9,12,15,19}; + texts[] = {"1","3","5","7","10","13","16","20"}; + default = 6; + }; + class crateAttachmentNumMax + { + title = "Maximum Attachment Quantity in Crates"; + values[] = {0,1,3,5,7,10,15,20,30}; + texts[] = {"None","1","3","5","7","10","15","20","30"}; + default = 15; + }; + class Spacer5 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class crateBackpackTypeMax + { + title = "Maximum Backpack Types in Crates"; + values[] = {0,2,4,9}; + texts[] = {"1","3","5","10"}; + default = 0; + }; + class crateBackpackNumMax + { + title = "Maximum Backpack Quantity in Crates"; + values[] = {0,1,3,5,10,15}; + texts[] = {"None","1","3","5","10","15"}; + default = 3; + }; + class Spacer6 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class crateVestTypeMax + { + title = "Maximum Vest Types in Crates"; + values[] = {0,2,4,9}; + texts[] = {"1","3","5","10"}; + default = 0; + }; + class crateVestNumMax + { + title = "Maximum Vest Quantity in Crates"; + values[] = {0,1,3,5,10,15}; + texts[] = {"None","1","3","5","10","15"}; + default = 0; + }; + class Spacer7 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class crateHelmetTypeMax + { + title = "Maximum Helmet Types in Crates"; + values[] = {0,2,4,9}; + texts[] = {"1","3","5","10"}; + default = 0; + }; + class crateHelmetNumMax + { + title = "Maximum Helmet Quantity in Crates"; + values[] = {0,1,3,5,10,15}; + texts[] = {"None","1","3","5","10","15"}; + default = 0; + }; + class Spacer8 + { + title = ""; + values[] = {""}; + texts[] = {""}; + default = ""; + }; + class crateDeviceTypeMax + { + title = "Maximum Device Backpack Types in Crates"; + values[] = {0,2,4,9}; + texts[] = {"1","3","5","10"}; + default = 0; + }; + class crateDeviceNumMax + { + title = "Maximum Device Backpack Quantity in Crates"; + values[] = {0,1,3,5,10,15}; + texts[] = {"None","1","3","5","10","15"}; + default = 1; + }; +}; diff --git a/A3-Antistasi/NavGridTools/MapRoadHash/altisMapRoadHash.sqf b/A3-Antistasi/NavGridTools/MapRoadHash/altisMapRoadHash.sqf new file mode 100644 index 0000000000..4ce800dbc4 --- /dev/null +++ b/A3-Antistasi/NavGridTools/MapRoadHash/altisMapRoadHash.sqf @@ -0,0 +1,143 @@ +roadTypes = [ +[1894,5],[1896,5],[1898,5],[1900,3],[1902,3],[1904,3],[1906,5],[1908,5],[1910,5],[1912,5], +[1914,5],[1916,3],[1918,3],[1920,3],[1922,3],[1924,3],[1926,3],[1928,3],[1930,3],[1932,3], +[1934,3],[1936,3],[1938,3],[1940,3],[1942,3],[1944,3],[1946,5],[1000,4],[1002,4],[1004,4], +[1006,4],[1008,4],[1010,4],[1012,4],[1014,4],[1016,4],[1018,4],[1020,3],[1022,4],[1024,4], +[1026,4],[1028,4],[1030,4],[1032,4],[1034,3],[1036,3],[1038,3],[1040,3],[1042,3],[1044,3], +[1046,3],[1048,3],[1050,3],[1052,3],[1054,3],[1056,3],[1058,3],[1060,3],[1062,3],[1064,2], +[1066,3],[1068,3],[1070,1],[1072,3],[1074,4],[1076,4],[1078,4],[1080,4],[1082,4],[1084,4], +[1086,4],[1088,4],[1090,3],[1092,3],[1094,3],[1096,3],[1098,1],[1100,1],[1102,1],[1104,3], +[1106,4],[1108,4],[1110,3],[1112,3],[1114,2],[1116,2],[1118,3],[2172,3],[2174,3],[2176,3], +[2178,3],[2180,3],[2182,3],[2184,1],[2186,3],[2188,3],[2190,3],[2192,3],[2194,3],[2196,3], +[2198,3],[2200,3],[2202,3],[2204,3],[2206,3],[2208,3],[2210,3],[2212,2],[2214,2],[2216,2], +[2218,4],[2220,4],[2222,4],[2224,4],[2226,3],[2228,1],[2230,1],[2232,1],[2234,5],[2236,5], +[2238,2],[2240,5],[2242,5],[2244,5],[2246,5],[2248,5],[2250,5],[2252,5],[2254,5],[2256,5], +[2258,5],[2260,5],[2262,5],[2264,5],[2266,5],[2268,5],[2270,5],[2272,5],[2274,5],[2276,5], +[2278,5],[2280,4],[2282,4],[2284,4],[2286,3],[2288,3],[2290,3],[2292,3],[2294,3],[2296,4], +[2298,4],[2300,4],[2302,4],[2304,4],[2306,4],[2308,4],[2310,4],[2312,3],[2314,3],[2316,3], +[2318,3],[2320,3],[2322,3],[2324,3],[2326,3],[2328,3],[2330,3],[2332,3],[2334,3],[2336,3], +[2338,3],[2340,3],[2342,3],[2344,3],[2346,3],[2348,3],[2350,3],[2352,3],[2354,2],[2356,1], +[2358,1],[2360,3],[2362,3],[2364,4],[2366,3],[2368,2],[2370,2],[2372,2],[2374,4],[2376,4], +[2378,4],[2380,4],[2382,4],[2384,4],[2386,4],[2388,4],[2390,4],[2392,4],[2394,4],[2396,4], +[2398,4],[2400,4],[2402,4],[2404,4],[2406,4],[2408,1],[2410,3],[2412,3],[2414,3],[2416,3], +[2418,3],[2420,3],[2422,3],[2424,3],[2426,4],[2428,3],[2430,1],[2432,1],[2434,1],[2436,1], +[2438,1],[2440,1],[2442,1],[2444,2],[2446,2],[2448,1],[2450,1],[2452,1],[2454,1],[2456,1], +[2458,1],[2460,4],[2462,1],[2464,4],[2466,2],[2468,3],[2470,3],[2472,5],[3516,3],[3518,3], +[3520,3],[3522,3],[3524,3],[3526,3],[3528,3],[3530,3],[3532,3],[3534,3],[3536,1],[3538,3], +[3540,3],[3542,3],[3544,3],[3546,3],[3548,3],[3550,3],[3552,3],[3554,4],[3556,3],[3558,3], +[3560,3],[3562,3],[3564,3],[3566,3],[3568,3],[3570,3],[3572,3],[3574,3],[3576,3],[3578,3], +[3580,3],[3582,3],[3584,3],[3586,3],[3588,4],[3590,4],[3592,4],[3594,4],[3596,4],[3598,4], +[3600,4],[3602,4],[3604,4],[3606,4],[3608,4],[3610,4],[3612,4],[3614,3],[3616,3],[3618,3], +[3620,3],[3622,3],[3624,3],[3626,3],[3628,3],[3630,3],[3632,3],[3634,3],[3636,3],[3638,3], +[3640,3],[3642,3],[3644,3],[3646,3],[3648,3],[3650,3],[3652,3],[3654,3],[3656,3],[3658,3], +[3660,3],[3662,3],[3664,3],[3666,3],[3668,3],[3670,3],[3672,3],[3674,2],[3676,4],[3678,3], +[3680,3],[3682,3],[3684,3],[3686,4],[3688,3],[3690,4],[3692,4],[3694,4],[3696,4],[3698,3], +[3700,4],[3702,5],[3704,5],[3706,5],[3708,5],[3710,5],[3712,3],[3714,4],[3716,4],[3718,3], +[3720,3],[3722,3],[3724,1],[3726,1],[3728,2],[3730,2],[3732,2],[3734,3],[3736,3],[3738,3], +[3740,3],[3742,3],[3744,3],[3746,3],[3748,3],[3750,3],[3752,3],[3754,3],[3756,3],[3758,3], +[3760,3],[3762,3],[3764,3],[3766,1],[3768,3],[3770,3],[3772,3],[3774,3],[3776,3],[3778,3], +[3780,3],[3782,3],[3784,3],[3786,3],[3788,3],[3790,3],[3792,3],[3794,3],[3796,3],[3798,3], +[3800,3],[3802,3],[3804,3],[3806,3],[3808,3],[3810,3],[3812,3],[3814,3],[3816,3],[3818,3], +[3820,3],[3822,3],[3824,3],[3826,3],[1120,3],[1122,3],[1124,3],[1126,3],[1128,3],[1130,3], +[1132,3],[1134,3],[1136,3],[1138,3],[1140,4],[1142,3],[1144,3],[1146,2],[1148,1],[1150,1], +[1152,2],[1154,3],[1156,1],[1158,3],[1160,3],[1162,3],[1164,3],[1166,3],[1168,3],[1170,3], +[1172,2],[1174,2],[1176,3],[1178,3],[1180,3],[1182,3],[1184,3],[1186,3],[1188,2],[1190,2], +[1192,2],[1194,2],[1196,3],[1198,3],[1200,3],[1202,2],[1204,2],[1206,2],[1208,2],[1210,2], +[1212,2],[1214,2],[1216,2],[1218,2],[1220,2],[1222,4],[1224,2],[1226,3],[1228,4],[1230,4], +[1232,4],[1234,4],[1236,4],[1238,4],[1240,4],[1242,4],[1244,3],[1246,3],[1248,3],[1250,3], +[1252,3],[1254,2],[1256,2],[1258,2],[1260,2],[1262,2],[1264,2],[1266,2],[1268,2],[1270,2], +[1272,2],[1274,2],[1276,4],[1278,4],[1280,4],[1282,4],[1284,4],[1286,4],[1288,4],[1290,4], +[1292,4],[1294,4],[1296,4],[1298,4],[1300,4],[1302,4],[1304,4],[1306,4],[1308,4],[1310,4], +[1312,4],[1314,4],[1316,4],[1318,3],[1320,3],[1322,3],[1324,3],[1326,3],[1328,3],[1330,3], +[1332,3],[1334,3],[1336,3],[1338,3],[1340,3],[1342,3],[1344,3],[1346,3],[1348,3],[1350,3], +[1352,3],[1354,3],[1356,3],[1358,3],[1360,3],[1362,3],[1364,3],[1366,3],[1368,3],[1370,3], +[1372,3],[1374,3],[1376,2],[1378,3],[1380,3],[1382,3],[1384,2],[1386,3],[1388,2],[1390,3], +[1392,3],[1394,3],[1396,3],[1398,2],[1400,2],[1402,4],[1404,5],[1406,2],[1408,2],[1410,3], +[1412,3],[1414,3],[1416,3],[1418,3],[1420,3],[1422,3],[1424,3],[1426,3],[1428,3],[1430,3], +[1432,3],[1434,1],[1436,1],[1438,1],[1440,1],[1442,1],[1444,1],[1446,1],[1448,1],[1450,1], +[1452,2],[1454,2],[1456,2],[1458,2],[1460,2],[1462,2],[1464,2],[1466,2],[1468,2],[1470,2], +[1472,2],[1474,2],[1476,3],[1478,2],[1480,3],[1482,4],[1484,4],[1486,4],[1488,4],[1490,4], +[1492,4],[1494,4],[1496,4],[1498,4],[1500,4],[1502,4],[1504,4],[1506,4],[1508,4],[1510,4], +[1512,4],[1514,4],[1516,4],[1518,4],[1520,4],[1522,2],[1524,2],[1526,4],[1528,4],[1530,4], +[1532,4],[1534,3],[1536,3],[1538,3],[1540,3],[1542,3],[1544,3],[1546,3],[1548,2],[1550,2], +[1552,2],[1554,2],[1556,2],[1558,1],[1560,1],[1562,1],[1564,1],[1566,1],[1568,2],[1570,2], +[1572,1],[1574,2],[1576,2],[1578,3],[1580,3],[1582,4],[1584,4],[1586,1],[3202,3],[3204,3], +[3206,3],[3208,3],[3210,3],[3212,3],[3214,3],[3216,3],[3218,3],[3220,3],[3222,3],[3224,3], +[3226,3],[3228,3],[3230,3],[3232,3],[3234,3],[3236,3],[3238,3],[3240,3],[3242,3],[3244,3], +[3246,3],[3248,4],[3250,4],[3252,4],[3254,4],[3256,4],[3258,4],[3260,4],[3262,4],[3264,4], +[3266,4],[3268,4],[3270,4],[3272,4],[3274,4],[3276,4],[3278,4],[3280,4],[3282,4],[3284,4], +[3286,4],[3288,4],[3290,4],[3292,4],[3294,4],[3296,4],[3298,4],[3300,4],[3302,4],[3304,5], +[3306,3],[3308,3],[3310,3],[3312,3],[3314,3],[3316,3],[3318,3],[3320,5],[3322,5],[3324,3], +[3326,3],[3328,3],[3330,3],[3332,3],[3334,3],[3336,3],[3338,3],[3340,3],[3342,3],[3344,3], +[3346,3],[3348,3],[3350,3],[3352,3],[3354,3],[3356,3],[3358,3],[3360,3],[3362,3],[3364,3], +[3366,3],[3368,3],[3370,3],[3372,3],[3374,3],[3376,3],[3378,3],[3380,3],[3382,3],[3384,3], +[3386,3],[3388,3],[3390,3],[3392,3],[3394,3],[3396,3],[3398,3],[3400,3],[3402,3],[3404,3], +[3406,3],[3408,3],[3410,3],[3412,3],[3414,3],[3416,3],[3418,3],[3420,3],[3422,1],[3424,1], +[3426,4],[3428,4],[3430,4],[3432,4],[3434,3],[3436,3],[3438,3],[3440,3],[3442,2],[3444,3], +[3446,3],[3448,3],[3450,3],[3452,3],[3454,3],[3456,3],[3458,3],[3460,5],[3462,5],[3464,5], +[3466,3],[3468,3],[3470,3],[3472,3],[3474,3],[3476,3],[3478,3],[3480,3],[3482,3],[3484,3], +[3486,3],[3488,3],[3490,3],[3492,3],[3494,3],[3496,3],[3498,3],[3500,3],[3502,3],[3504,3], +[3506,3],[3508,3],[3510,3],[3512,5],[3514,5],[1588,3],[1590,3],[1592,3],[1594,2],[1596,3], +[1598,1],[1600,3],[1602,3],[1604,3],[1606,2],[1608,5],[1610,3],[1612,2],[1614,5],[1616,3], +[1618,3],[1620,3],[1622,2],[1624,3],[1626,3],[1628,3],[1630,3],[1632,3],[1634,3],[1636,3], +[1638,3],[1640,3],[1642,3],[1644,3],[1646,3],[1648,3],[1650,3],[1652,2],[1654,4],[1656,4], +[1658,4],[1660,4],[1662,4],[1664,4],[1666,4],[1668,4],[1670,4],[1672,4],[1674,4],[1676,4], +[1678,4],[1680,4],[1682,4],[1684,4],[1686,4],[1688,4],[1690,2],[1692,3],[1694,3],[1696,3], +[1698,3],[1700,3],[1702,4],[1704,4],[1706,4],[1708,4],[1710,4],[1712,4],[1714,3],[1716,4], +[1718,4],[1720,5],[1722,5],[1724,5],[1726,4],[1728,4],[1730,4],[1732,4],[1734,4],[1736,5], +[1738,4],[1740,4],[1742,4],[1744,4],[1746,4],[1748,2],[1750,3],[1752,3],[1754,3],[1756,3], +[1758,3],[1760,3],[1762,3],[1764,3],[1766,3],[1768,3],[1770,1],[1772,1],[1774,1],[1776,2], +[1778,2],[1780,2],[1782,2],[1784,3],[1786,3],[1788,3],[1790,4],[1792,4],[1794,4],[1796,4], +[1798,4],[1800,4],[1802,4],[1804,4],[1806,4],[1808,2],[1810,2],[1812,2],[1814,2],[1816,2], +[1818,2],[1820,2],[1822,2],[1824,3],[1826,3],[1828,5],[1830,3],[1832,3],[1834,2],[1836,2], +[1838,2],[1840,2],[1842,2],[1844,2],[1846,2],[1848,2],[1850,2],[1852,2],[1854,2],[1856,2], +[1858,2],[1860,1],[1862,5],[1864,5],[1866,5],[1868,5],[1870,5],[1872,5],[1874,5],[1876,3], +[1878,3],[1880,5],[1882,5],[1884,5],[1886,5],[1888,5],[1890,5],[1892,5],[2888,3],[2890,3], +[2892,3],[2894,3],[2896,3],[2898,3],[2900,3],[2902,3],[2904,3],[2906,3],[2908,3],[2910,3], +[2912,3],[2914,3],[2916,3],[2918,3],[2920,3],[2922,3],[2924,3],[2926,3],[2928,3],[2930,3], +[2932,3],[2934,3],[2936,3],[2938,4],[2940,4],[2942,4],[2944,4],[2946,4],[2948,4],[2950,4], +[2952,4],[2954,4],[2956,4],[2958,4],[2960,4],[2962,4],[2964,4],[2966,2],[2968,2],[2970,2], +[2972,2],[2974,5],[2976,5],[2978,3],[2980,3],[2982,3],[2984,3],[2986,3],[2988,3],[2990,3], +[2992,3],[2994,3],[2996,3],[2998,3],[3000,3],[3002,3],[3004,3],[3006,3],[3008,3],[3010,3], +[3012,3],[3014,3],[3016,3],[3018,3],[3020,3],[3022,3],[3024,3],[3026,3],[3028,3],[3030,3], +[3032,3],[3034,3],[3036,3],[3038,3],[3040,3],[3042,3],[3044,3],[3046,3],[3048,3],[3050,3], +[3052,3],[3054,3],[3056,3],[3058,3],[3060,3],[3062,3],[3064,3],[3066,2],[3068,2],[3070,2], +[3072,2],[3074,2],[3076,2],[3078,2],[3080,2],[3082,2],[3084,2],[3086,2],[3088,3],[3090,2], +[3092,5],[3094,3],[3096,5],[3098,3],[3100,5],[3102,3],[3104,3],[3106,3],[3108,3],[3110,3], +[3112,3],[3114,3],[3116,3],[3118,3],[3120,3],[3122,3],[3124,3],[3126,3],[3128,3],[3130,3], +[3132,2],[3134,2],[3136,2],[3138,2],[3140,2],[3142,2],[3144,4],[3146,4],[3148,4],[3150,5], +[3152,5],[3154,5],[3156,5],[3158,5],[3160,5],[3162,5],[3164,3],[3166,3],[3168,3],[3170,3], +[3172,3],[3174,2],[3176,2],[3178,2],[3180,2],[3182,2],[3184,2],[3186,2],[3188,2],[3190,3], +[3192,3],[3194,5],[3196,5],[3198,5],[3200,5],[1948,2],[1950,3],[1952,5],[1954,5],[1956,5], +[1958,3],[1960,3],[1962,3],[1964,3],[1966,3],[1968,3],[1970,3],[1972,3],[1974,3],[1976,3], +[1978,3],[1980,3],[1982,4],[1984,4],[1986,4],[1988,4],[1990,4],[1992,4],[1994,4],[1996,4], +[1998,4],[2000,4],[2002,4],[2004,4],[2006,4],[2008,4],[2010,4],[2012,4],[2014,5],[2016,3], +[2018,3],[2020,3],[2022,3],[2024,3],[2026,3],[2028,3],[2030,3],[2032,3],[2034,3],[2036,3], +[2038,3],[2040,3],[2042,3],[2044,3],[2046,3],[2048,4],[2050,4],[2052,4],[2054,4],[2056,4], +[2058,4],[2060,4],[2062,3],[2064,4],[2066,4],[2068,3],[2070,3],[2072,3],[2074,3],[2076,3], +[2078,3],[2080,3],[2082,3],[2084,3],[2086,3],[2088,3],[2090,3],[2092,3],[2094,3],[2096,3], +[2098,3],[2100,2],[2102,2],[2104,2],[2106,2],[2108,2],[2110,2],[2112,2],[2114,2],[2116,2], +[2118,2],[2120,2],[2122,2],[2124,2],[2126,2],[2128,2],[2130,2],[2132,2],[2134,2],[2136,2], +[2138,2],[2140,2],[2142,2],[2144,4],[2146,4],[2148,4],[2150,4],[2152,3],[2154,3],[2156,2], +[2158,3],[2160,2],[2162,2],[2164,2],[2166,2],[2168,2],[2170,2],[2474,3],[2476,3],[2478,3], +[2480,3],[2482,3],[2484,3],[2486,3],[2488,3],[2490,3],[2492,4],[2494,4],[2496,4],[2498,4], +[2500,3],[2502,2],[2504,2],[2506,2],[2508,4],[2510,4],[2512,4],[2514,4],[2516,3],[2518,3], +[2520,3],[2522,1],[2524,1],[2526,2],[2528,2],[2530,2],[2532,2],[2534,2],[2536,2],[2538,2], +[2540,2],[2542,2],[2544,3],[2546,3],[2548,3],[2550,3],[2552,3],[2554,3],[2556,3],[2558,3], +[2560,3],[2562,3],[2564,5],[2566,5],[2568,5],[2570,5],[2572,5],[2574,5],[2576,5],[2578,4], +[2580,4],[2582,3],[2584,3],[2586,4],[2588,4],[2590,4],[2592,4],[2594,4],[2596,4],[2598,4], +[2600,4],[2602,4],[2604,4],[2606,4],[2608,4],[2610,4],[2612,4],[2614,4],[2616,4],[2618,4], +[2620,4],[2622,4],[2624,4],[2626,4],[2628,4],[2630,4],[2632,4],[2634,4],[2636,4],[2638,4], +[2640,4],[2642,4],[2644,4],[2646,4],[2648,4],[2650,4],[2652,4],[2654,4],[2656,4],[2658,4], +[2660,4],[2662,4],[2664,4],[2666,4],[2668,2],[2670,3],[2672,4],[2674,3],[2676,3],[2678,3], +[2680,3],[2682,4],[2684,4],[2686,4],[2688,4],[2690,4],[2692,4],[2694,3],[2696,3],[2698,3], +[2700,3],[2702,3],[2704,3],[2706,3],[2708,3],[2710,3],[2712,3],[2714,3],[2716,2],[2718,2], +[2720,2],[2722,2],[2724,2],[2726,2],[2728,2],[2730,2],[2732,2],[2734,4],[2736,4],[2738,4], +[2740,4],[2742,4],[2744,1],[2746,1],[2748,1],[2750,1],[2752,1],[2754,1],[2756,1],[2758,1], +[2760,1],[2762,2],[2764,2],[2766,2],[2768,2],[2770,2],[2772,2],[2774,4],[2776,4],[2778,4], +[2780,4],[2782,4],[2784,4],[2786,4],[2788,4],[2790,4],[2792,4],[2794,4],[2796,4],[2798,2], +[2800,4],[2802,4],[2804,4],[2806,4],[2808,4],[2810,4],[2812,4],[2814,3],[2816,3],[2818,3], +[2820,3],[2822,3],[2824,4],[2826,5],[2828,3],[2830,5],[2832,2],[2834,3],[2836,5],[2838,5], +[2840,5],[2842,2],[2844,2],[2846,2],[2848,2],[2850,1],[2852,2],[2854,2],[2856,2],[2858,2], +[2860,2],[2862,4],[2864,4],[2866,1],[2868,1],[2870,4],[2872,4],[2874,4],[2876,4],[2878,4], +[2880,4],[2882,2],[2884,2],[2886,3]]; diff --git a/A3-Antistasi/NavGridTools/MapRoadHash/stratisMapRoadHash.sqf b/A3-Antistasi/NavGridTools/MapRoadHash/stratisMapRoadHash.sqf new file mode 100644 index 0000000000..597bd9998a --- /dev/null +++ b/A3-Antistasi/NavGridTools/MapRoadHash/stratisMapRoadHash.sqf @@ -0,0 +1,12 @@ +roadTypes = [ +[1100,3],[1102,3],[1104,3],[1106,3],[1108,3],[1110,3],[1112,3],[1114,3], +[1116,3],[1118,3],[1120,3],[1122,3],[1124,3],[1126,3],[1128,3],[1130,3], +[1132,3],[1134,3],[1136,3],[1138,3],[1140,3],[1142,3],[1144,3],[1146,3], +[1148,3],[1150,3],[1052,5],[1054,5],[1056,5],[1058,5],[1060,5],[1062,5], +[1064,5],[1066,5],[1068,5],[1070,5],[1072,5],[1074,5],[1076,5],[1078,5], +[1080,5],[1082,5],[1084,5],[1086,5],[1088,5],[1090,5],[1092,5],[1094,5], +[1096,5],[1098,5],[1000,4],[1002,4],[1004,4],[1006,3],[1008,2],[1010,2], +[1012,2],[1014,3],[1016,3],[1018,3],[1030,3],[1032,4],[1034,2],[1036,2], +[1038,2],[1040,4],[1042,4],[1044,5],[1120,4],[1122,4],[1124,4],[1126,4], +[1128,4] +]; diff --git a/A3-Antistasi/NavGridTools/createJunctionData.sqf b/A3-Antistasi/NavGridTools/createJunctionData.sqf new file mode 100644 index 0000000000..08549d341f --- /dev/null +++ b/A3-Antistasi/NavGridTools/createJunctionData.sqf @@ -0,0 +1,127 @@ +params ["_lastSegment", "_entryPoint"]; + +//_ignoredSegments = []; +_ignoredSegments = []; +if(!(isNil "_lastSegment") && {!(isNull _lastSegment)}) then +{ + _ignoredSegments pushBack _lastSegment; +}; + +_segmentsToSearch = [_entryPoint]; +_exitPoints = []; +_exits = []; +private _links = []; +//private _debugCounter = 0; + +while {count _segmentsToSearch > 0} do +{ + //_debugCounter = _debugCounter + 1; + _currentRoad = _segmentsToSearch deleteAt 0; + _connections = [_currentRoad] call findConnection; + + _connections = _connections select {(_x != _entryPoint) && {!(_x in _ignoredSegments) && {!(_x in _exits) && {!(_x in ignoredSegments)}}}}; + _connectionCount = count _connections; + + if(_connectionCount == 1) then + { + if((_connections select 0) in linkSegments) then + { + _links pushBack (_connections select 0); + _ignoredSegments pushBack (_connections select 0); + _ignoredSegments pushBack _currentRoad; + } + else + { + _exitPoints pushBackUnique [_connections select 0, _currentRoad]; + _exits pushBackUnique _currentRoad; + }; + } + else + { + _ignoredSegments pushBack _currentRoad; + { + if(_x in linkSegments) then + { + _links pushBack _x; + _ignoredSegments pushBack _x; + } + else + { + if(!(_x in _exits)) then + { + _segmentsToSearch pushBackUnique _x; + }; + }; + } forEach _connections; + }; +}; + +//sleep 1; + + + +if(!(isNil "_lastSegment") && {!(isNull _lastSegment)}) then +{ + _ignoredSegments = _ignoredSegments - [_lastSegment]; +}; + +_midOfJunction = [0,0,0]; +_exitCount = 0; +if(!(isNil "_lastSegment") && {!(isNull _lastSegment)}) then +{ + _midOfJunction = (getPos _lastSegment); + _exitCount = 1; +}; + +{ + _midOfJunction = _midOfJunction vectorAdd (getPos _x); + _exitCount = _exitCount + 1; +} forEach _links; + +_exitPointsCopy = []; +{ + _road = (_x select 1); + _connections = [_road] call findConnection; + _connections = _connections select {!(_x in _exits) && {!(_x in _ignoredSegments)}}; + if(count _connections > 0) then + { + _exitPointsCopy pushBack _x; + _midOfJunction = _midOfJunction vectorAdd (getPos _road); + _exitCount = _exitCount + 1; + } + else + { + _ignoredSegments pushBack _road; + }; +} forEach _exitPoints; + +_exitPoints = _exitPointsCopy; + + +_result = []; +if(_exitCount > 0) then +{ + _midOfJunction = _midOfJunction vectorMultiply (1 / _exitCount); + _midSegment = objNull; + _searchRadius = 0; + while {isNull _midSegment} do + { + _searchRadius = _searchRadius + 1; + _nearRoads = _midOfJunction nearRoads _searchRadius; + if(count _nearRoads > 0) then + { + { + if(!(_x in _exits)) then + { + _midSegment = _x; + }; + } forEach _nearRoads; + }; + }; + _result = [_exitPoints, _midOfJunction, _ignoredSegments, _midSegment, _links]; +}; + +//hint format ["Entry point was %1\nLast was %2\nResults are %3", _entryPoint, _lastSegment, str _exitPoints]; +//sleep 15; + +_result; diff --git a/A3-Antistasi/NavGridTools/createNavGrid.sqf b/A3-Antistasi/NavGridTools/createNavGrid.sqf new file mode 100644 index 0000000000..c97a0b73cf --- /dev/null +++ b/A3-Antistasi/NavGridTools/createNavGrid.sqf @@ -0,0 +1,499 @@ +#define EXIT_POINTS 0 +#define MID_POSITION 1 +#define IGNORED_JUNCTIONS 2 +#define MID_SEGMENT 3 +#define LINK_POINTS 4 + +_showText = true; +_showText = param [0, true]; +if(isNil "_showText") then +{ + _showText = true; +}; + +[_showText] spawn +{ + hint "Starting setup, please stand by!"; + + findConnection = compile preprocessFileLineNumbers "NavGridTools\findRoadConnections.sqf"; + publicVariable "findConnection"; + createJunction = compile preprocessFileLineNumbers "NavGridTools\createJunctionData.sqf"; + publicVariable "createJunction"; + getRoadName = compile preprocessFileLineNumbers "NavGridTools\getRoadName.sqf"; + publicVariable "getRoadName"; + createNavMarker = compile preprocessFileLineNumbers "NavGridTools\createNavMarker.sqf"; + publicVariable "createNavMarker"; + setNavPoint = compile preprocessFileLineNumbers "NavGridTools\setNavPoint.sqf"; + publicVariable "setNavPoint"; + setNavConnection = compile preprocessFileLineNumbers "NavGridTools\setNavConnection.sqf"; + publicVariable "setNavConnection"; + getRoadType = compile preprocessFileLineNumbers "NavGridTools\getRoadType.sqf"; + publicVariable "getRoadType"; + createNavText = compile preprocessFileLineNumbers "NavGridTools\createNavText.sqf"; + publicVariable "createNavText"; + createNavPoint = compile preprocessFileLineNumbers "NavGridTools\createNavPoint.sqf"; + publicVariable "createNavPoint"; + setLinkSegment = compile preprocessFileLineNumbers "NavGridTools\setLinkSegment.sqf"; + publicVariable "setLinkSegment"; + + + hintDone = false; publicVariable "hintDone"; + + + _worldName = worldName; + _firstLetter = _worldName select [0,1]; + _remaining = _worldName select [1]; + _firstLetter = toUpper _firstLetter; + _remaining = toLower _remaining; + _worldName = format ["%1%2", _firstLetter, _remaining]; + + //Needed for UI to function properly, don't know why + sleep 4; + + if((_this select 0)) then + { + "Welcome to Wurzels NavGrid creation script" hintC (parseText format + ["The needed scripts should have been prepared already, so if you not had an error, you managed to copy the folder correctly. The next step is to open an empty text file, and save this empty file as navGrid%1.sqf. Keep this file open, while this script is running! As the next step the script will check if the roadMarkers are placed correctly. As a reminder: Each UNCONNECTED ISLAND needs one marker on a junction. Especially for maps with only one island, or no island at all, is still one marker needed. Due to some problems regarding the road data, +not every junction is suitable, the script will tell you, if that case happens.
If you don't want to see this prompt again, execute [false] execVM 'NavGridTools\createNavGrid.sqf' instead of [] execVM ... .If you find a bug, join the Official Antistasi Discord and blame Wurzel0701 for delivering a free, but slightly bugged script. Or maybe just tell me there.

Also keep in mind, that this script takes a while to finish. This depends on hardware, map size and amount of roads, but is huge for most cases. Therefor the maps displays a visual representation of what the script is doing right now and how much is finished by now.
", _worldName]); + hintC_EH = findDisplay 72 displayAddEventHandler ["unload", + { + 0 = _this spawn + { + _this select 0 displayRemoveEventHandler ["unload", hintC_EH]; + hintSilent ""; + hintDone = true; + publicVariable "hintDone"; + }; + }]; + waitUntil {sleep 1; hintDone}; + hintDone = false; publicVariable "hintDone"; + }; + + + allMarker = []; + + _abort = false; + _roadMarker = []; + _mapMarker = allMapMarkers; + { + if((_x find "roadMarker") != -1) then + { + _roadMarker pushBack _x; + }; + } forEach _mapMarker; + + if(count _roadMarker == 0) then + { + "No roadMarkers found" hintC parseText "Every marker which marks a starting junction has to be named with roadMarker in it. No other rules. roadMarker_1 is fine, 1_roadMarker is fine too, xXx_420_69_roadMarker_69_420_xXx totally fine (whatever reason you have to call a marker like this...), whats not ok is road_1_Marker or something like this. Place one a marker or every piece of isolated land. This includes main islands or maps with no islands too. At least one marker has to be present on every maps. The script will abort. Set the marker, then try it again!"; + hintC_EH = findDisplay 72 displayAddEventHandler ["unload", + { + 0 = _this spawn + { + _this select 0 displayRemoveEventHandler ["unload", hintC_EH]; + hintSilent ""; + hintDone = true; + publicVariable "hintDone"; + }; + }]; + waitUntil {sleep 1; hintDone}; + hintDone = false; publicVariable "hintDone"; + _abort = true; + }; + if(_abort) exitWith {}; + hint format ["Found %1 marker as start points!", count _roadMarker]; + + openSearchSegments = []; + _notOnAJunction = []; + { + _startPos = getMarkerPos _x; + + _possibleStarts = _startPos nearRoads 50; + _startSegment = objNull; + { + _connected = roadsConnectedTo _x; + if(count _connected > 2) exitWith {_startSegment = _x}; + } forEach _possibleStarts; + + if(isNull _startSegment) then + { + _abort = true; + _notOnAJunction pushBack _x; + //diag_log "Could not find suitable start segment, segment has to be a junction!"; + //hint "No segment was a junction, try another position!"; + } + else + { + openSearchSegments pushBack [_startSegment, objNull, objNull]; + }; + } forEach _roadMarker; + + if(_abort) then + { + _markerErrors = ""; + { + _markerErrors = format ["%1%2
", _markerErrors, _x]; + } forEach _notOnAJunction; + "Marker not on juntions" hintC (parseText format ["The following markers are not on a junction
%1This can have two reasons: First one, you didn't put them on a junction. Second one, the script does not detects the junction as such. This can happen. In this case this specific junction will not work as a start. But it does not matters which one you take, so take another one. For both cases, the script will abort now and let you reconfigure the marker.
", _markerErrors]); + hintC_EH = findDisplay 72 displayAddEventHandler ["unload", + { + 0 = _this spawn + { + _this select 0 displayRemoveEventHandler ["unload", hintC_EH]; + hintSilent ""; + hintDone = true; + publicVariable "hintDone"; + }; + }]; + waitUntil {sleep 1; hintDone}; + hintDone = false; publicVariable "hintDone"; + }; + if(_abort) exitWith {}; + + hint "Setup completed, starting script now!"; + sleep 2; + openMap true; + + _startTime = time; + + navPointNames = []; + + linkSegments = []; + ignoredSegments = []; + + _segmentsTillNext = 5; + _segmentCount = 0; + + private ["_currentSegment", "_lastSegment", "_currentIgnored" ,"_connected", "_roadType", "_isStart", "_exitPoints", "_linkPoints"]; + + _roadType = 0; + _outerLoop = 0; + _innerLoop = 0; + _debugText = ""; + _isStart = true; + + _exit = false; + while {count openSearchSegments > 0} do + { + _outerLoop = _outerLoop + 1; + _currentIgnored = []; + _startData = openSearchSegments deleteAt 0; + _currentSegment = _startData select 0; + _lastSegment = _startData select 1; + _connectedNavPoint = _startData select 2; + + _navMarker = missionNamespace getVariable [format ["%1_m", [_currentSegment] call getRoadName], objNull]; + if(_navMarker isEqualType "") then {deleteMarker _navMarker}; + + _innerLoop = 0; + _segmentCount = 0; + while {!(isNull _currentSegment)} do + { + //Loop counter, only for debug + _innerLoop = _innerLoop + 1; + + //Counter for nav points + _segmentCount = _segmentCount + 1; + _currentIgnored pushBack _currentSegment; + + //Get all connected + _connected = [_currentSegment] call findConnection; + + //Sorting out my start navSegment and every ignored segment + _connected = _connected select {!(_x in _currentIgnored) && {!(_x in ignoredSegments)}}; + _connectedCount = count _connected; + + + + //No further conncetion found, end of road + if(_connectedCount == 0) then + { + //If no lastSegment something has gone wrong with the junction, ignore in this case + //That should not be happenening again + if(!(isNull _lastSegment)) then + { + if(_currentSegment in linkSegments) then + { + //Dirty fix I know + _currentName = [_currentSegment] call getRoadName; + _conNav = missionNamespace getVariable [format ["%1_c", _currentName], -1]; + [_conNav, _connectedNavPoint] call setNavConnection; + _currentSegment = objNull; + } + else + { + //Sets the navpoint + [_currentSegment, _connectedNavPoint] call createNavPoint; + + //Sets the marker + _marker = ["mil_triangle", getPos _currentSegment, "ColorBlue"] call createNavMarker; + _marker setMarkerText "End"; + }; + }; + _currentSegment = objNull; + }; + + + //Only one way to go, go further if the next node is not an navSegment + if(_connectedCount == 1) then + { + if(!((_connected select 0) in linkSegments)) then + { + //Given segment is not in linkSegments + if(_segmentCount > _segmentsTillNext) then + { + //Set up the nav point, as max distance is reached + _navPointName = [_currentSegment, _connectedNavPoint] call createNavPoint; + + //Sets the next node as open link + [(_connected select 0), _currentSegment, _navPointName, true] call setLinkSegment; + + //Sets the last node as closed link + [_lastSegment, objNull, _navPointName, false] call setLinkSegment; + + //Creates the marker + _marker = ["mil_dot", getPos _currentSegment, "ColorBlack"] call createNavMarker; + _marker setMarkerText "2"; + + //Sets current to objNull to start with next segment + _currentSegment = objNull; + } + else + { + //Mark the segment as currently active (green dot) and add the marker destroy code + _marker = ["mil_dot", getPos _currentSegment, "ColorGreen"] call createNavMarker; + _marker spawn + { + sleep 3; + deleteMarker _this; + }; + + //Select next segment + _lastSegment = _currentSegment; + _currentSegment = _connected select 0; + }; + } + else + { + //Given segment is a linkSegments + _next = (_connected select 0); + _nameNext = [_next] call getRoadName; + _conNav = missionNamespace getVariable [format ["%1_c", _nameNext], -1]; + [_conNav, _connectedNavPoint] call setNavConnection; + _currentSegment = objNull; + }; + }; + + //More than one connection, may be a junction or a fake junction + if(_connectedCount > 1) then + { + //Create junction data + private _debug = time; + private _result = [_lastSegment, _currentSegment] call createJunction; + if(_result isEqualTo []) exitWith + { + hint "Something went wrong, result is empty, please tell Wurzel that case happened!"; + sleep 15; + }; + + //Get exit points + _exitPoints = _result select EXIT_POINTS; + _linkPoints = _result select LINK_POINTS; + _debug = time - _debug; + + hintSilent format ["Junction data\nExits: %1\nLinks: %2\nTime: %3", count _exitPoints, count _linkPoints, _debug]; + //sleep 1; + + + if(count _exitPoints == 1) then + { + //Found two ways close by for the same exit, no junction! + if((count _linkPoints != 0) || {!((_exitPoints select 0) in linkSegments)}) then + { + if((count _linkPoints != 0) || {_segmentCount > _segmentsTillNext}) then + { + //Same steps as in only 1 connection case + _navPointName = [(_result select MID_SEGMENT), _connectedNavPoint] call createNavPoint; + _exit = _exitPoints select 0; + [(_exit select 0), (_exit select 1), _navPointName, true] call setLinkSegment; + ignoredSegments pushBack (_exit select 1); + + { + _linkName = [_x] call getRoadName; + _linkNav = missionNamespace getVariable [format ["%1_c", _linkName], -1]; + [_connectedNavPoint, _linkNav] call setNavConnection; + [_x, objNull, _navPointName, false] call setLinkSegment; + } forEach _linkPoints; + + [_lastSegment, objNull, _navPointName, false] call setLinkSegment; + + _marker = ["mil_triangle", getPos _currentSegment, "ColorBlack"] call createNavMarker; + _marker setMarkerText "2"; + + _currentSegment = objNull; + } + else + { + _marker = ["mil_dot", getPos _currentSegment, "ColorGreen"] call createNavMarker; + _marker spawn + { + sleep 3; + deleteMarker _this; + }; + + _lastSegment = _currentSegment; + _currentSegment = (_exitPoints select 0) select 0; + _currentIgnored = _currentIgnored + (_result select IGNORED_JUNCTIONS); + }; + } + else + { + _next = (_exitPoints select 0); + _nameNext = [_next] call getRoadName; + _conNav = missionNamespace getVariable (format ["%1_c", _nameNext]); + [_conNav, _connectedNavPoint] call setNavConnection; + _currentSegment = objNull; + }; + } + else + { + //Found a real junction! + + //Sets a new navPoint for the grid + _navPoint = _result select MID_SEGMENT; + _midOfJunction = _result select MID_POSITION; + + _navPointName = [_navPoint, _connectedNavPoint, _midOfJunction] call createNavPoint; + + _minus = if(_isStart) then {_isStart = false; 1} else {0}; + + //Set up linkSegments of junction + { + [_x select 0, _x select 1, _navPointName, true] call setLinkSegment; + ignoredSegments pushBack (_x select 1); + } forEach _exitPoints; + + { + _linkName = [_x] call getRoadName; + _linkNav = missionNamespace getVariable [format ["%1_c", _linkName], -1]; + [_connectedNavPoint, _linkNav] call setNavConnection; + [_x, objNull, _navPointName, false] call setLinkSegment; + } forEach _linkPoints; + + //Set up last segment as closed segment + [_lastSegment, objNull, _navPointName, false] call setLinkSegment; + + _marker = ["mil_box", _midOfJunction, "ColorBlack"] call createNavMarker; + _marker setMarkerText (str ((count _exitPoints) + (count _linkPoints) + 1 - _minus)); + + //Adding junction to ignoredSegments + ignoredSegments = ignoredSegments + (_result select IGNORED_JUNCTIONS); + + //Starting with new segment + _currentSegment = objNull; + }; + }; + hintSilent format ["Open segments: %1\n Inner Loop: %2\n Outer Loop: %3\n", str (count openSearchSegments), _innerLoop, _outerLoop]; + //sleep 0.1; + }; + }; + hint "Roads finished, writing data array now and deleting marker!"; + { + deleteMarker _x; + } forEach allMarker; + + + //Road grid finished, creating grid data now + _dataArray = []; + + _index = 0; + { + _navPointName = _x; + _navPointIndex = missionNamespace getVariable [format ["index_%1", _navPointName], -1]; + + if(_navPointIndex == -1) then + { + //Navpoint has not yet be given an index, choose smallest available + _navPointIndex = _index; + _index = _index + 1; + missionNamespace setVariable [format ["index_%1", _navPointName], _navPointIndex]; + }; + + _data = missionNamespace getVariable [_navPointName, "Not found"]; + if(_data isEqualType []) then + { + _connections = _data select 2; + _conTransform = []; + { + + _conType = 0; + + //Select type of connection + _conCount = count _connections; + _conNav = missionNamespace getVariable _x; + if(!(_conNav isEqualType [])) then + { + hint (str _conNav); + sleep 10; + } + else + { + _firstHasMore = _conCount > (count (_conNav select 2)); + if(_firstHasMore) then {_conType = (_conNav select 1)} else {_conType = _data select 1}; + + //Set id of connected point + _conIndex = missionNamespace getVariable [format ["index_%1", _x], -1]; + if(_conIndex == -1) then + { + _conIndex = _index; + _index = _index + 1; + missionNamespace setVariable [format ["index_%1", _x], _conIndex]; + }; + + //Set data + _conTransform pushBack [_conIndex, _conType]; + }; + } forEach _connections; + _savedData = [_navPointIndex, _data select 0, _conTransform]; + + //Use set to ensure correct position + _dataArray set [_navPointIndex, _savedData]; + }; + } forEach navPointNames; + + hint "Data prepared, setting up finished nav grid"; + + { + _data = _x; + _index = _data select 0; + _position = _data select 1; + _connections = _data select 2; + ["mil_box", _position, "ColorBlack"] call createNavMarker; + { + _conData = _x; + _conPartner = _conData select 0; + _conType = _conData select 1; + if(_conPartner > _index) then + { + _conPartnerData = _dataArray select _conPartner; + _conPartnerPos = _conPartnerData select 1; + _color = "ColorBlack"; + switch (_conType) do + { + case (1): {_color = "ColorRed";}; + case (2): {_color = "ColorYellow";}; + case (3): {_color = "ColorGreen";}; + }; + _midOfCon = _conPartnerPos vectorAdd _position; + _midOfCon = _midOfCon vectorMultiply (0.5); + ["mil_dot", _midOfCon, _color] call createNavMarker; + }; + } forEach _connections; + + } forEach _dataArray; + + _text = [_dataArray] call createNavText; + copyToClipboard _text; + + _timeDiff = time - _startTime; + "Finished navGrid creation!" hintC (parseText format ["Grid Creation finished, searched %1 start points and found %2 nav points in %3 seconds!

The navData is currently copied to your clipboard. Now switch over to the text file, we opened earlier and hit Ctrl + V to paste the nav data in there. Save the file again and you are good to go. You may want to double check if all islands and streets are connected as they should. If not, readjust the marker and do it again. If so, the navGrid is now ready for use. How to load and use it, is not handled in this folder.
", _outerLoop, count navPointNames, _timeDiff]); +}; diff --git a/A3-Antistasi/NavGridTools/createNavMarker.sqf b/A3-Antistasi/NavGridTools/createNavMarker.sqf new file mode 100644 index 0000000000..f9cedb9ee9 --- /dev/null +++ b/A3-Antistasi/NavGridTools/createNavMarker.sqf @@ -0,0 +1,11 @@ +params ["_type", "_pos", "_color"]; + +_marker = createMarker [format ["%1road%2", random 10000, random 10000], _pos]; +_marker setMarkerShape "ICON"; +_marker setMarkerType _type; +_marker setMarkerColor _color; +_marker setMarkerAlpha 1; + +allMarker pushBack _marker; + +_marker; diff --git a/A3-Antistasi/NavGridTools/createNavPoint.sqf b/A3-Antistasi/NavGridTools/createNavPoint.sqf new file mode 100644 index 0000000000..70f649c5e5 --- /dev/null +++ b/A3-Antistasi/NavGridTools/createNavPoint.sqf @@ -0,0 +1,17 @@ +params ["_currentSegment", "_connectedNavPoint", ["_navPointPos", objNull]]; +private ["_navPointName", "_roadType"]; + +ignoredSegments pushBack _currentSegment; +_navPointName = [_currentSegment] call getRoadName; +_roadType = 2;//[_currentSegment] call getRoadType; +if(!(_navPointPos isEqualType [])) then {_navPointPos = getPos _currentSegment;}; +[_navPointName, _navPointPos, [], _roadType] call setNavPoint; +navPointNames pushBack _navPointName; + +//Sets the link between the start and this navpoint +if(_connectedNavPoint isEqualType "") then +{ + [_connectedNavPoint, _navPointName] call setNavConnection; +}; + +_navPointName; diff --git a/A3-Antistasi/NavGridTools/createNavText.sqf b/A3-Antistasi/NavGridTools/createNavText.sqf new file mode 100644 index 0000000000..e95528e38c --- /dev/null +++ b/A3-Antistasi/NavGridTools/createNavText.sqf @@ -0,0 +1,23 @@ +params ["_navData"]; + +_br = toString [13,10]; +_text = "navGrid = ["; +_counter = 0; + +for "_i" from 0 to ((count _navData) - 2) do +{ + if(_counter < 5) then + { + _counter = _counter + 1; + _text = [_text, str (_navData select _i), ", "] joinString ""; + } + else + { + _counter = 0; + _text = [_text, str (_navData select _i), ", ", _br] joinString ""; + }; +}; + +_text = [_text, str (_navData select ((count _navData) - 1)), "];"] joinString ""; + +_text; diff --git a/A3-Antistasi/NavGridTools/extractRoadTypeData.sqf b/A3-Antistasi/NavGridTools/extractRoadTypeData.sqf new file mode 100644 index 0000000000..93cd39b2b4 --- /dev/null +++ b/A3-Antistasi/NavGridTools/extractRoadTypeData.sqf @@ -0,0 +1,84 @@ +#define MAIN_ROAD 1; +#define ROAD 2; +#define TRACK 3; +#define CITY 4; + +_lowerWorldName = toLower worldName; +_path = ""; + +//Some world does not follow the standard path, list this special worlds here +switch (_lowerWorldName) do +{ + case ("tanoa"): + { + _path = "A3\map_tanoabuka\data\roads\roadslib.cfg"; + }; + default { + _path = format ["A3\map_%1\data\roads\roadslib.cfg", _lowerWorldName]; + }; +}; + +_abort = false; +_content = ""; +try +{ + _content = loadFile _path; +} +catch +{ + hint "Error while loading the roadslib!"; + _abort = true; +}; + +if(_abort) exitWith {false}; + +_index = _content find "{"; +_contentString = _content select [_index + 1]; + +_debugString = ""; +_searchString = ""; +_index = 0; +_endIndex = 0; +_nextClass = _contentString find "class"; +while {_nextClass != -1} do +{ + //Get the road class number + _nextRoad = _contentString find "Road"; + _numberStart = _nextRoad + 4; + //hint _contentString select [_numberStart, 10]); + private _number = parseNumber (_contentString select [_numberStart, 10]); //Ten to be sure, number should be over before + + //Get the road class type + _index = _contentString find "{"; + _endIndex = _contentString find "}"; + _searchString = _contentString select [_index, _endIndex - _index]; + private _roadType = CITY; + if((_searchString find "main road") != -1) then + { + _roadType = MAIN_ROAD; + } + else + { + if((_searchString find "track") != -1) then + { + _roadType = TRACK; + } + else + { + _roadType = ROAD; + }; + }; + missionNamespace setVariable [format ["type_%1", _number], _roadType]; + + //Set debug string + _debugString = format ["%1Set road class %2 to type %3\n",_debugString, _number, _roadType]; + + //Cut class out of string + _contentString = _contentString select [_endIndex + 1]; + _nextClass = _contentString find "class"; +}; + +hint _debugString; +sleep 15; + +true; diff --git a/A3-Antistasi/NavGridTools/findOffset.sqf b/A3-Antistasi/NavGridTools/findOffset.sqf new file mode 100644 index 0000000000..29bf97e268 --- /dev/null +++ b/A3-Antistasi/NavGridTools/findOffset.sqf @@ -0,0 +1,58 @@ +[] call compile preprocessFileLineNumbers "NavGridTools\MapRoadHash\stratisMapRoadHash.sqf"; +_allRoads = []; +_allRoads = (getPos player) nearRoads 100000; + +_highestFileIndex = 0; +_lowestFileIndex = 999999; + +{ + if((_x select 0) > _highestFileIndex) then + { + _highestFileIndex = (_x select 0); + }; + if((_x select 0) < _lowestFileIndex) then + { + _lowestFileIndex = (_x select 0); + }; +} forEach roadTypes; + +hint format ["FileHigh: %1\nFileLow: %2", _highestFileIndex, _lowestFileIndex]; +sleep 5; + +_highestStreetIndex = 0; +_lowestStreetIndex = 999999; + +waitUntil {sleep 1; (count _allRoads > 0)}; + +{ + _roadNameFull = str _x; + _stringArray = _roadNameFull splitString ":"; + _result = _stringArray select 0; + + if(count _result == 6) then + { + _result = _result select [0,4]; + _number = parseNumber (_result); + + if(_number > _highestStreetIndex) then + { + _highestStreetIndex = _number; + //hint format ["Full: %3\nRes %1\nNumber: %2", _result, _number, _roadNameFull]; + //sleep 1; + }; + if(_number < _lowestStreetIndex) then + { + _lowestStreetIndex = _number; + //hint format ["Full: %3\nRes %1\nNumber: %2", _result, _number, _roadNameFull]; + //sleep 1; + }; + }; +} forEach _allRoads; + +hint format ["StreetHigh: %1\nStreetLow: %2", _highestStreetIndex, _lowestStreetIndex]; +sleep 15; + +_difHighest = _highestStreetIndex - _highestFileIndex; +_difLowest = _lowestStreetIndex - _lowestFileIndex; + +hint format ["High Offset: %1\nLow Offset: %2\nEqual: %3", _difHighest, _difLowest, str (_difHighest == _difLowest)]; diff --git a/A3-Antistasi/NavGridTools/findRoadConnections.sqf b/A3-Antistasi/NavGridTools/findRoadConnections.sqf new file mode 100644 index 0000000000..5ead51d3f7 --- /dev/null +++ b/A3-Antistasi/NavGridTools/findRoadConnections.sqf @@ -0,0 +1,38 @@ +params ["_currentRoad"]; +private ["_connected", "_relPos", "_road"]; +//Get all connected +_connected = roadsConnectedTo _currentRoad; + + + +for "_i" from 0 to 72 do +{ + _relPos = _currentRoad getRelPos [5, 5 * _i]; + _road = roadAt _relPos; + if(!(isNull _road) && {_road != _currentRoad}) then + { + _connected pushBackUnique _road; + }; + _relPos = _currentRoad getRelPos [7, (5 * _i) + (5 / 3)]; + _road = roadAt _relPos; + if(!(isNull _road) && {_road != _currentRoad}) then + { + _connected pushBackUnique _road; + }; + _relPos = _currentRoad getRelPos [10, (5 * _i) + ( 2 * 5 / 3)]; + _road = roadAt _relPos; + if(!(isNull _road) && {_road != _currentRoad}) then + { + _connected pushBackUnique _road; + }; +}; + +_nearRoads = (getPos _currentRoad) nearRoads 12; +{ + if(_x != _currentRoad) then + { + _connected pushBackUnique _x; + }; +} forEach _nearRoads; + +_connected; diff --git a/A3-Antistasi/NavGridTools/getRoadName.sqf b/A3-Antistasi/NavGridTools/getRoadName.sqf new file mode 100644 index 0000000000..54023ed03a --- /dev/null +++ b/A3-Antistasi/NavGridTools/getRoadName.sqf @@ -0,0 +1,7 @@ +params ["_road"]; + +_roadNameFull = str _road; +_stringArray = _roadNameFull splitString ":"; + + private _result = _stringArray select 0; +_result; diff --git a/A3-Antistasi/NavGridTools/getRoadType.sqf b/A3-Antistasi/NavGridTools/getRoadType.sqf new file mode 100644 index 0000000000..94a1e2795b --- /dev/null +++ b/A3-Antistasi/NavGridTools/getRoadType.sqf @@ -0,0 +1,8 @@ +params ["_road"]; + +//This does not work currently always return 2 +//TODO if anyone knows a way how to get the type, please tell me + +_roadType = 2; + +_roadType; diff --git a/A3-Antistasi/NavGridTools/manual.txt b/A3-Antistasi/NavGridTools/manual.txt new file mode 100644 index 0000000000..e77fd52767 --- /dev/null +++ b/A3-Antistasi/NavGridTools/manual.txt @@ -0,0 +1,107 @@ +============ Manual for the NavGrid Creation Script ============================ + +Antistasi Official Community +Discord : https://discord.gg/dcwKf3h +Website : https://a3antistasi.enjin.com/ + +The usage of this script is fairly easy, with only a few rules to follow. + +There are three reason you are looking at this file. The instructions depends on +why you are here. These three reasons are: + +- You are Spoffy and have to review this nightmare of a PR. I am sorry, I really + am. I am gonna review the next nightmare PR of yours, I promise. + +- You want to port Antistasi to another map. Great, we are always glad to see + people, who want to help us. Even if your doing it for yourself, then we are + glad, you are having enough fun with this mission to get yourself to port it. + We can't force you, but if you think the port you are doing haven't been done + before, we would like to have it (you will get the credits of course). + Send us a message on the official website or Discord, we will not waste your time. + You can just skip the next segment and jump direct to the instructions. + +- You want to do a pathfinding system for your own mission.Thats great but may + not be the think you really need. Nearly every moving object in Arma has a own + pathfinding algorithm and does not need help from the outside. Are you sure + you need a real pathfinding algorithm? If so, you can go to the instructions + and follow them. But for the pathfinding to work, you will have to send me a + message to get all the needed files. You could try to collect them out of the + files of the Antistasi code, but I guess, I would be the easier solution. + Getting in contact with me through the Official Antistasi Discord is the way + to go there. + +============================= Instructions ===================================== + + DO THIS ON AN EMPTY MAP, HAVING ANTISTASI OR OTHER SCRIPTS RUNNING IN THE + BACKGROUND WILL DRASTICALLY INCREASE RUNTIME !!! + This is no script to let run on the startup of a mission, an empty Altis + takes around five minutes to complete. + + Preparing the map: + + The script has to know where to start, so it needs a few markers. + Each map needs AT LEAST ONE marker. For maps with multiple island, + which are not connected with roads, it need a marker for every + island, which is not connected to an island with a marker. If you are + unsure, which island are connected or not, just set up marker for every + island. + + The marker has to be positioned on road junctions. It does not has to + be exactly on the junction. Putting the marker somewhere near it will + work to. I would recommand using empty markers. + + Last thing about the markers. Every marker has to be named with + 'roadMarker' in it. As long as 'roadMarker' is in it the script will + detect it. 1_roadMarker is fine, roadMarker_1 is fine too, you get + the concept. + + The map is prepared. Lets get the script running. + + Running the script: + + Start the preprared map in editor SP. Hit Esc to get the console open. + Put in the line + [] execVM "NavGridTools\createNavGrid.sqf" + and hit Local Execution. There will be a hint saying the setup started, + if not you will get an error. Double check the line in that case. + + A large hint will pop up. Read it! If you have not already open the + file as stated in the hint. Double check the file name (its important + for the load of the grid) and keep the text editor open. Once you done + that, click on continue. + + If there is an error with the markers, the script will tell you. Two + errors are possible. First is, you didn't place any marker or named + them wrong. Second, one or more marker are not placed on junctions. + The marker names are displayed, double check the marker. If you are + sure, that the marker is on a junction, but the script denies it, + choose a different junction. Some junctions can't be detected as such + in the start of the script. + + If any error occurs, the script will abort once you hit continue on + the hint. + + If no error occurs the game will switch to map view and you can have + a look how the algorithm is working. Oddly relaxing if you ask me. + + Saving the data: + + The script will tell you, once it has finished. All the collected + data is now saved in your clipboard. Switch over to the file we + opened earlier and hit Ctrl + V to paste the content. The content + already is correct sqf code. There is no need to add anything. + Save the file as "NavGrids/navGrid.sqf" as the hint told + you. Antistasi can now load this file whenever needed. + + Checking the map: + + Last thing you should do is check the maps. If you missed any island + or something, you can see it now. + +=========================== Known Problems ===================================== + + There is no data regarding the type of road. If there is please tell me + and I will add this feature. So long all roads are equal. + + Small paths through forest (mostly on Tanoa) are not recognized as roads. + These are rebels only paths :D diff --git a/A3-Antistasi/NavGridTools/setLinkSegment.sqf b/A3-Antistasi/NavGridTools/setLinkSegment.sqf new file mode 100644 index 0000000000..2b47cdc30f --- /dev/null +++ b/A3-Antistasi/NavGridTools/setLinkSegment.sqf @@ -0,0 +1,19 @@ +params ["_linkSegment", "_lastSegment", "_navPointName", "_isOpen"]; +private ["_nameLink", "_marker"]; + +if(isNull _linkSegment) exitWith {}; + +linkSegments pushBack _linkSegment; +_nameLink = [_linkSegment] call getRoadName; +//Sets origin of this segment +missionNamespace setVariable [format ["%1_c", _nameLink], _navPointName]; + +if(_isOpen) then +{ + //Creates and save the marker + _marker = ["mil_dot", getPos _linkSegment, "ColorRed"] call createNavMarker; + missionNamespace setVariable [format ["%1_m", _nameLink], _marker]; + + //Sets the exit as blocked and new start point + openSearchSegments pushBack [_linkSegment, _lastSegment, _navPointName]; +}; diff --git a/A3-Antistasi/NavGridTools/setNavConnection.sqf b/A3-Antistasi/NavGridTools/setNavConnection.sqf new file mode 100644 index 0000000000..a92d9c9d66 --- /dev/null +++ b/A3-Antistasi/NavGridTools/setNavConnection.sqf @@ -0,0 +1,19 @@ +params ["_firstName", "_secondName"]; + +_firstData = missionNamespace getVariable [_firstName, objNull]; +_secondData = missionNamespace getVariable [_secondName, objNull]; + +if(!(_firstData isEqualType []) || !(_secondData isEqualType [])) exitWith {}; + +_firstCon = _firstData select 2; +_secondCon = _secondData select 2; + +//Unique, just to be sure +_firstCon pushBackUnique _secondName; +_secondCon pushBackUnique _firstName; + +_firstData set [2, _firstCon]; +_secondData set [2, _secondCon]; + +missionNamespace setVariable [_firstName, _firstData]; +missionNamespace setVariable [_secondName, _secondData]; diff --git a/A3-Antistasi/NavGridTools/setNavPoint.sqf b/A3-Antistasi/NavGridTools/setNavPoint.sqf new file mode 100644 index 0000000000..bc5c83a07c --- /dev/null +++ b/A3-Antistasi/NavGridTools/setNavPoint.sqf @@ -0,0 +1,4 @@ +params ["_navPointName" , "_pos", "_connections", "_roadType"]; + +missionNamespace setVariable [format["%1_c", _navPointName], _navPointName]; +missionNamespace setVariable [_navPointName, [_pos, _roadType, _connections]]; diff --git a/A3-Antistasi/NavGrids/navGridAltis.sqf b/A3-Antistasi/NavGrids/navGridAltis.sqf new file mode 100644 index 0000000000..789c24e973 --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridAltis.sqf @@ -0,0 +1,870 @@ +navGrid = [[0,[26764.8,23040,0],[[1,2],[2,2],[3,2]]], [1,[26695.1,22885.1,0],[[0,2],[4,2]]], [2,[26624,23061.7,-1.90735e-006],[[0,2],[5,2]]], [3,[26831,23158.5,1.90735e-006],[[0,2],[6,2]]], [4,[26609.9,22716.8,0],[[1,2],[7,2]]], [5,[26494.5,23086.7,0],[[2,2],[8,2]]], +[6,[26936.7,23247.1,1.90735e-006],[[3,2],[9,2]]], [7,[26608.2,22696,1.27157e-006],[[4,2],[10,2],[11,2]]], [8,[26377.1,23043.1,0],[[5,2],[12,2]]], [9,[26987,23303.6,0],[[6,2],[13,2],[14,2],[15,2],[16,2],[17,2]]], [10,[26549.1,22533.5,0],[[7,2],[18,2]]], [11,[26696,22742.8,1.27157e-006],[[7,2],[19,2],[20,2]]], +[12,[26322,23031.5,-6.35783e-007],[[8,2],[21,2],[22,2]]], [13,[27056.9,23332.5,-6.35783e-007],[[9,2],[23,2],[24,2],[14,2],[16,2]]], [14,[27043.8,23250.4,0],[[9,2],[13,2],[24,2],[25,2],[17,2]]], [15,[26906.8,23420.7,0],[[9,2],[26,2],[27,2]]], [16,[27076.5,23415.5,7.15256e-007],[[9,2],[13,2],[28,2],[29,2]]], [17,[26999.9,23198.3,-6.35783e-007],[[14,2],[25,2],[9,2],[35,2]]], +[18,[26519.4,22386.6,-3.8147e-006],[[10,2],[30,2]]], [19,[26835,22854.1,0],[[11,2],[31,2]]], [20,[26750.7,22628.7,0],[[11,2],[20,2]]], [21,[26167.5,23037.9,-1.90735e-006],[[12,2],[32,2]]], [22,[26299.7,22909.2,-1.90735e-006],[[12,2],[33,2]]], [23,[27146.3,23348.8,0],[[13,2],[24,2],[25,2],[28,2],[34,2]]], +[24,[27091.5,23298.5,0],[[13,2],[14,2],[23,2],[25,2]]], [25,[27100.8,23206.4,9.53674e-007],[[14,2],[23,2],[24,2],[35,2],[17,2],[36,2],[34,2]]], [26,[26761.7,23384.7,0],[[15,2],[37,2]]], [27,[26920.6,23567.9,0],[[15,2],[38,2]]], [28,[27255.9,23486,0],[[16,2],[23,2],[39,2]]], [29,[27077.8,23563.7,0],[[16,2],[40,2]]], +[30,[26422.1,22279,0],[[18,2],[41,2]]], [31,[26961.7,22950.8,0],[[19,2],[42,2],[43,2]]], [32,[26086.8,23066.8,6.35783e-007],[[21,2],[44,2],[45,2]]], [33,[26208.4,22838.6,0],[[22,2],[46,2]]], [34,[27141.1,23247.6,0],[[25,2],[23,2]]], [35,[27035.8,23142.8,0],[[25,2],[17,2],[47,2],[42,2]]], +[36,[27167.6,23155,6.35783e-007],[[25,2],[48,2],[47,2]]], [37,[26619.1,23432.1,0],[[26,2],[49,2]]], [38,[26955.4,23722.8,0],[[27,2],[50,2]]], [39,[27329,23546.3,-6.35783e-007],[[28,2],[39,2],[51,2]]], [40,[27110.2,23669.6,0],[[29,2],[50,2]]], [41,[26348.2,22161.6,0],[[30,2],[52,2],[53,2]]], +[42,[27064.9,23048.4,0],[[31,2],[35,2],[47,2]]], [43,[27088.9,22821.6,6.35783e-007],[[84,2],[117,2],[31,2]]], [44,[25903.7,22989.4,0],[[32,2],[54,2]]], [45,[25988.4,23219.3,0],[[32,2],[55,2]]], [46,[26128,22708.9,0],[[33,2],[56,2]]], [47,[27086.5,23068.9,-9.53674e-007],[[35,2],[36,2],[42,2],[57,2]]], +[48,[27335.8,23233.1,0],[[36,2],[58,2],[59,2]]], [49,[26507.5,23536.8,0],[[37,2],[60,2]]], [50,[26970.1,23762,0],[[38,2],[40,2],[61,2],[50,2]]], [51,[27466.8,23585.8,4.76837e-007],[[39,2],[62,2]]], [52,[26300.7,22013.7,0],[[41,2],[63,2],[64,2]]], [53,[26321.8,22057.2,-3.8147e-006],[[64,2],[41,2]]], +[54,[25763.4,22955.1,-6.35783e-007],[[44,2],[65,2],[66,2]]], [55,[25901.3,23313.8,0],[[45,2],[67,2]]], [56,[26107.5,22629.8,0],[[46,2],[68,2]]], [57,[27214.4,22944.5,0],[[47,2],[69,2]]], [58,[27459,23379.9,0],[[48,2],[70,2],[62,2]]], [59,[27481.9,23270.7,9.53674e-007],[[48,2],[71,2]]], +[60,[26410.6,23646.9,1.90735e-006],[[49,2],[72,2]]], [61,[26972.7,23831.1,0],[[50,2],[73,2],[74,2]]], [62,[27608.5,23549.4,0],[[51,2],[58,2],[75,2],[76,2]]], [63,[26349.6,21870.6,0],[[52,2],[77,2]]], [64,[26358.5,22083.9,0],[[203,2],[53,2],[52,2]]], [65,[25606.9,22926.6,0],[[54,2],[78,2]]], +[66,[25640.2,23092.9,0],[[54,2],[79,2]]], [67,[25806.9,23415.2,0],[[55,2],[80,2]]], [68,[26050.3,22545.7,0],[[56,2],[81,2],[82,2]]], [69,[27307.1,22832.5,6.35783e-007],[[57,2],[83,2],[84,2]]], [70,[27565.2,23494.9,0],[[58,2],[85,2]]], [71,[27525.7,23268.8,0],[[59,2],[86,2],[71,2],[87,2]]], +[72,[26344.7,23708.4,9.53674e-007],[[60,2],[88,2],[72,2],[89,2]]], [73,[27047.7,23992.7,0],[[61,2],[90,2]]], [74,[26823.7,23915.1,0],[[61,2],[91,2]]], [75,[27776.5,23593.9,-4.76837e-007],[[62,2],[92,2]]], [76,[27579.2,23510.1,0],[[62,2]]], [77,[26269.2,21772.4,0],[[63,2],[93,2]]], +[78,[25523.5,22882.9,0],[[65,2],[94,2],[95,2]]], [79,[25545.6,23201,0],[[66,2],[96,2]]], [80,[25742,23487.9,-3.17891e-007],[[67,2],[97,2],[98,2]]], [81,[26006.8,22440.3,0],[[68,2],[99,2]]], [82,[26011.6,22567.1,0],[[68,2]]], [83,[27420.2,22765.4,0],[[69,2],[100,2]]], +[84,[27210.4,22725.2,-4.76837e-007],[[69,2],[101,2],[84,2],[43,2]]], [85,[27702.3,23403.8,0],[[70,2],[102,2]]], [86,[27509.1,23281.3,0],[[71,2]]], [87,[27666.8,23166,-9.53674e-007],[[71,2],[87,2]]], [88,[26363.4,23861.6,0],[[72,2],[103,2]]], [89,[26150,23673.2,0],[[72,2],[104,2]]], +[90,[27100,24106.3,0],[[73,2],[105,2],[90,2],[106,2]]], [91,[26688.8,23989,0],[[74,2],[107,2]]], [92,[27872.2,23635,0],[[75,2]]], [93,[26187.4,21679.2,1.90735e-006],[[77,2],[108,2]]], [94,[25426.8,22857,-4.76837e-007],[[78,2],[109,2],[110,2],[111,2]]], [95,[25473.6,22791.9,0],[[78,2],[112,2]]], +[96,[25438.7,23317.8,0],[[79,2]]], [97,[25689.1,23544.6,0],[[80,2]]], [98,[25859.7,23588.4,0],[[80,2],[104,2]]], [99,[25906.6,22354.3,0],[[81,2],[113,2]]], [100,[27523,22640.3,1.90735e-006],[[83,2],[114,2]]], [101,[27137.5,22607.8,0],[[84,2],[115,2],[116,2]]], +[102,[27729.3,23385.1,0],[[85,2]]], [103,[26437.1,23983.2,1.90735e-006],[[88,2],[107,2]]], [104,[25973.3,23641.7,0],[[89,2],[98,2]]], [105,[27194.6,24197.9,-2.38419e-007],[[90,2],[118,2],[105,2],[119,2]]], [106,[26967,24199.9,-1.90735e-006],[[90,2],[120,2]]], [107,[26531.2,24073.2,4.76837e-007],[[91,2],[103,2],[121,2],[122,2]]], +[108,[26177.1,21659.4,6.35783e-007],[[93,2],[123,2],[124,2]]], [109,[25273.4,22795.7,9.53674e-007],[[94,2],[125,2]]], [110,[25349.3,22985.8,0],[[94,2],[126,2]]], [111,[25466.9,22773.5,1.90735e-006],[[94,2]]], [112,[25395.1,22662.3,0],[[95,2],[127,2]]], [113,[25862.7,22237.6,0],[[99,2],[128,2]]], +[114,[27611.3,22544,0],[[100,2],[129,2],[130,2],[131,2]]], [115,[26989.5,22481.1,0],[[101,2],[132,2]]], [116,[27173.6,22473.7,0],[[101,2],[133,2]]], [117,[26994.3,22708.5,0],[[43,2],[134,2]]], [118,[27318.7,24314.5,0],[[105,2],[135,2]]], [119,[27209.9,24340.4,0],[[105,2],[136,2]]], +[120,[26826.8,24302,1.90735e-006],[[106,2],[137,2],[120,2]]], [121,[26377.2,24152.9,-9.53674e-007],[[107,2],[138,2]]], [122,[26626.6,24192,0],[[107,2],[137,2]]], [123,[26069,21643.4,0],[[108,2],[139,2]]], [124,[26298.7,21577.8,0],[[108,2],[140,2]]], [125,[25160.2,22725.3,0],[[109,2],[141,2]]], +[126,[25283.6,23103.4,0],[[110,2],[142,2]]], [127,[25454.5,22535.5,-1.90735e-006],[[112,2],[143,2]]], [128,[25847.1,22133.6,0],[[113,2],[128,2],[144,2]]], [129,[27704.3,22375.5,0],[[114,2],[145,2]]], [130,[27460.6,22474.2,0],[[114,2],[146,2]]], [131,[27736.9,22663.5,0],[[114,2],[147,2]]], +[132,[26901.6,22400.3,0],[[115,2],[148,2]]], [133,[27235.5,22366.7,0],[[116,2],[149,2],[146,2]]], [134,[26877.2,22610.1,0],[[117,2],[150,2]]], [135,[27390.2,24432.4,0],[[118,2],[151,2]]], [136,[27232.7,24478.1,0],[[119,2],[152,2]]], [137,[26773.3,24342.9,0],[[120,2],[122,2],[153,2]]], +[138,[26249.9,24191.8,-9.53674e-007],[[121,2],[138,2]]], [139,[25965.9,21552.7,0],[[123,2],[154,2],[155,2]]], [140,[26402,21638.8,0],[[124,2],[156,2]]], [141,[25031.4,22646.2,0],[[125,2],[157,2]]], [142,[25216.6,23224.4,0],[[126,2],[158,2]]], [143,[25476.3,22423,0],[[127,2],[159,2]]], +[144,[25837.5,22000.9,0],[[128,2],[160,2]]], [145,[27754.8,22287,-3.8147e-007],[[129,2],[161,2],[162,2],[145,2],[163,2]]], [146,[27352.4,22417.8,0],[[130,2],[133,2],[164,2]]], [147,[27849.5,22774.5,0],[[131,2],[165,2]]], [148,[26807.1,22312.5,0],[[132,2],[166,2]]], [149,[27296.7,22343.3,0],[[133,2],[167,2]]], +[150,[26746.8,22511,0],[[134,2],[168,2]]], [151,[27481.9,24521.3,0],[[135,2],[169,2]]], [152,[27174.6,24569.8,1.90735e-006],[[136,2],[170,2]]], [153,[26854.5,24462.4,-6.35783e-007],[[137,2],[171,2],[172,2]]], [154,[25830.6,21477.3,0],[[139,2],[173,2]]], [155,[26129.5,21492.2,1.90735e-006],[[139,2],[174,2]]], +[156,[26533.2,21679.4,-3.8147e-006],[[140,2],[175,2]]], [157,[25009.3,22632.1,0],[[141,2],[176,2],[177,2],[178,2]]], [158,[25148.1,23352.7,0],[[142,2],[179,2]]], [159,[25454.2,22263.1,-3.8147e-006],[[143,2],[180,2]]], [160,[25798.7,21904,0],[[144,2],[181,2]]], [161,[27762.6,22236.9,0],[[145,2]]], +[162,[27914.7,22316.1,0],[[145,2],[162,2]]], [163,[27613.6,22195.9,0],[[145,2],[182,2]]], [164,[27315.3,22368.6,0],[[146,2]]], [165,[27871.7,22796.3,0],[[147,2]]], [166,[26694.2,22207.3,-3.8147e-006],[[148,2],[183,2]]], [167,[27346.5,22198.4,0],[[149,2],[184,2]]], +[168,[26625.5,22409.2,0],[[150,2],[185,2]]], [169,[27559.7,24627.8,0],[[151,2],[186,2]]], [170,[27090.3,24660.1,0],[[152,2],[187,2]]], [171,[26973.5,24599,1.90735e-006],[[153,2],[187,2]]], [172,[26750.7,24546.6,0],[[153,2],[188,2]]], [173,[25797.3,21442.2,0],[[154,2],[189,2],[190,2],[191,2]]], +[174,[26251.5,21468.4,0],[[155,2],[192,2]]], [175,[26647.3,21725,0],[[156,2],[193,2],[194,2]]], [176,[24853.1,22539.6,-1.90735e-006],[[157,2],[195,2]]], [177,[24900.7,22767.8,0],[[157,2],[196,2]]], [178,[25104.8,22499,0],[[157,2],[197,2]]], [179,[25132.5,23372.2,-1.58946e-007],[[158,2],[198,2],[179,2]]], +[180,[25448.7,22155.7,2.54313e-006],[[159,2],[199,2],[200,2]]], [181,[25824,21787.4,3.8147e-006],[[160,2],[201,2]]], [182,[27505.7,22081.5,0],[[163,2],[202,2]]], [183,[26596.9,22115.8,1.27157e-006],[[166,2],[203,2],[204,2]]], [184,[27404.4,22063.3,0],[[167,2],[202,2]]], [185,[26525.1,22284.4,0],[[168,2],[203,2]]], +[186,[27639.8,24742.7,0],[[169,2],[205,2]]], [187,[27062.6,24692.6,0],[[170,2],[171,2],[206,2]]], [188,[26628,24649.3,0],[[172,2]]], [189,[25750.7,21407.7,0],[[173,2],[207,2],[208,2],[191,2],[209,2]]], [190,[25745.1,21547.5,1.90735e-006],[[173,2],[210,2]]], [191,[25824.3,21411.6,0],[[173,2],[189,2],[211,2],[191,2],[212,2],[207,2]]], +[192,[26371.9,21411.9,-1.90735e-006],[[174,2],[213,2]]], [193,[26667.7,21619.5,6.35783e-007],[[175,2],[214,2],[215,2]]], [194,[26750.1,21825.3,0],[[175,2],[216,2],[204,2]]], [195,[24736.9,22446.8,1.90735e-006],[[176,2],[217,2]]], [196,[24803.6,22860.4,0],[[177,2],[218,2]]], [197,[25199.5,22360.4,3.8147e-006],[[178,2],[219,2]]], +[198,[25023.7,23286.9,-4.76837e-007],[[179,2],[220,2]]], [199,[25508.9,22034.2,1.27157e-006],[[180,2],[221,2],[222,2]]], [200,[25404.8,22126.5,0],[[180,2],[223,2],[219,2]]], [201,[25776.6,21693.8,-1.90735e-006],[[181,2],[210,2]]], [202,[27435.4,21993.7,0],[[182,2],[184,2],[224,2]]], [203,[26469.5,22200.8,1.27157e-006],[[183,2],[185,2],[64,2]]], +[204,[26665.3,21944.6,-3.8147e-006],[[183,2],[194,2]]], [205,[27687.5,24857.5,0],[[186,2],[225,2]]], [206,[27145.7,24801.7,-1.90735e-006],[[187,2],[226,2]]], [207,[25712.9,21361.5,0],[[189,2],[191,2],[212,2],[227,2],[228,2]]], [208,[25776.6,21384.4,0],[[189,2]]], [209,[25699.9,21448.5,0],[[189,2]]], +[210,[25739.3,21608.9,0],[[190,2],[201,2],[229,2]]], [211,[25800.5,21299.3,0],[[191,2],[230,2],[212,2]]], [212,[25753.2,21345.4,0],[[191,2],[207,2],[211,2],[230,2]]], [213,[26484.8,21331.2,0],[[192,2],[231,2]]], [214,[26683.7,21435.6,0],[[193,2],[232,2]]], [215,[26794.9,21557.6,0],[[193,2],[233,2]]], +[216,[26912.4,21879.3,0],[[194,2],[234,2]]], [217,[24658.5,22366.6,0],[[195,2],[235,2],[236,2],[237,2]]], [218,[24780.4,22872.7,0],[[196,2],[238,2],[239,2]]], [219,[25291.9,22256.3,0],[[197,2],[200,2]]], [220,[24942.6,23191.8,0],[[198,2],[240,2]]], [221,[25616.1,21928.8,-3.8147e-006],[[199,2],[229,2]]], +[222,[25448.4,22019.8,0],[[199,2],[223,2],[222,2],[241,2]]], [223,[25318.1,22024.5,-9.53674e-007],[[200,2],[222,2],[242,2],[243,2]]], [224,[27455,21789.2,0],[[202,2],[244,2]]], [225,[27740.7,24942.5,-1.27157e-006],[[205,2],[245,2],[246,2]]], [226,[27224.5,24894.8,-1.90735e-006],[[206,2],[247,2]]], [227,[25622,21371.9,4.76837e-007],[[207,2],[248,2],[227,2],[228,2],[249,2]]], +[228,[25626.4,21269.8,4.76837e-007],[[207,2],[227,2],[248,2],[250,2],[251,2]]], [229,[25679.9,21762.3,0],[[210,2],[221,2]]], [230,[25774.9,21290.6,-4.76837e-007],[[211,2],[212,2],[252,2],[251,2],[230,2]]], [231,[26596.3,21252.5,0],[[213,2],[253,2]]], [232,[26677,21291.6,0],[[214,2],[253,2]]], [233,[26818.8,21557.9,0],[[215,2],[254,2],[233,2]]], +[234,[27036.8,21873.6,0],[[216,2],[255,2]]], [235,[24575.1,22501.7,0],[[217,2],[256,2]]], [236,[24507,22268.5,0],[[217,2],[257,2]]], [237,[24736.9,22196.9,0],[[217,2],[258,2]]], [238,[24717.8,22996,0],[[218,2],[259,2]]], [239,[24700.6,22759.8,0],[[218,2],[260,2]]], +[240,[24891.7,23177.1,0],[[220,2]]], [241,[25446.2,21931.5,0],[[222,2],[261,2]]], [242,[25150.7,22047.9,0],[[223,2],[262,2]]], [243,[25295.3,21920.6,0],[[223,2],[263,2]]], [244,[27455.7,21770.6,0],[[224,2],[264,2],[265,2]]], [245,[27855.6,25046.8,0],[[225,2],[266,2]]], +[246,[27626.9,25036.4,0],[[225,2],[267,2]]], [247,[27316.2,25003.6,0],[[226,2],[268,2]]], [248,[25581,21326,0],[[227,2],[228,2],[269,2]]], [249,[25557.9,21464,0],[[227,2],[270,2]]], [250,[25574.4,21225,4.76837e-007],[[228,2],[271,2],[272,2],[273,2]]], [251,[25693.6,21190.9,0],[[228,2],[230,2],[274,2],[275,2]]], +[252,[25739.8,21242.8,1.90735e-006],[[230,2],[276,2]]], [253,[26713,21221.1,2.38419e-007],[[231,2],[232,2],[277,2],[278,2]]], [254,[26922.8,21453.2,0],[[233,2],[279,2]]], [255,[27090.4,21798,0],[[234,2],[280,2]]], [256,[24547,22546.1,4.76837e-007],[[235,2],[281,2],[282,2],[260,2]]], [257,[24422.5,22232.7,0],[[236,2],[283,2],[284,2]]], +[258,[24836.7,22094.7,-9.53674e-007],[[237,2],[285,2],[258,2],[286,2],[262,2]]], [259,[24620.1,23055,0],[[238,2],[287,2],[288,2]]], [260,[24608.5,22627.9,0],[[239,2],[256,2]]], [261,[25495.6,21830.5,-3.8147e-006],[[241,2],[289,2]]], [262,[25021.3,22078,0],[[242,2],[258,2]]], [263,[25385.1,21850.5,7.62939e-006],[[243,2],[290,2]]], +[264,[27517.8,21739.6,0],[[244,2],[291,2],[292,2]]], [265,[27362.5,21664.7,0],[[244,2],[293,2]]], [266,[27889.5,25050.9,-6.35783e-007],[[245,2],[294,2],[295,2]]], [267,[27512.6,25128.9,0],[[246,2],[296,2]]], [268,[27409.2,25113.8,-3.8147e-006],[[247,2],[296,2]]], [269,[25434.4,21419.3,-1.90735e-006],[[248,2],[297,2]]], +[270,[25538.5,21570.6,0],[[249,2],[289,2]]], [271,[25420.3,21114.1,0],[[250,2],[298,2]]], [272,[25472,21249.4,0],[[250,2],[299,2]]], [273,[25540.2,21086.1,0],[[250,2],[300,2]]], [274,[25742.9,21113.2,2.38419e-007],[[251,2],[301,2],[300,2],[302,2]]], [275,[25731.7,21236.6,1.90735e-006],[[251,2]]], +[276,[25693.7,21276.4,-1.90735e-006],[[252,2]]], [277,[26836.5,21245.6,0],[[253,2],[303,2],[279,2]]], [278,[26642.5,21162.3,0],[[253,2],[304,2]]], [279,[26985.4,21392.9,4.76837e-007],[[254,2],[277,2],[305,2],[306,2]]], [280,[27236.8,21713.3,0],[[255,2],[293,2]]], [281,[24464.3,22610.8,6.35783e-007],[[256,2],[307,2],[308,2]]], +[282,[24475.3,22429.5,0],[[256,2],[283,2]]], [283,[24369.8,22265.4,-6.35783e-007],[[257,2],[282,2],[309,2]]], [284,[24442.9,22074.7,0],[[257,2],[310,2]]], [285,[24821.3,22092.2,0],[[258,2]]], [286,[24743.8,21990.3,0],[[258,2],[311,2]]], [287,[24461.6,23061.4,0],[[259,2],[312,2]]], +[288,[24673.8,23144.7,0],[[259,2],[313,2]]], [289,[25503.1,21718,0],[[261,2],[270,2]]], [290,[25345.7,21762.8,0],[[263,2],[314,2]]], [291,[27654,21814.9,0],[[264,2],[315,2]]], [292,[27581.3,21593.4,0],[[264,2],[316,2]]], [293,[27330.5,21639.5,4.76837e-007],[[265,2],[280,2],[317,2],[318,2],[293,2]]], +[294,[28042.7,25100.8,0],[[266,2],[319,2]]], [295,[27978.9,25164.4,0],[[266,2],[320,2]]], [296,[27473.1,25180.4,0],[[267,2],[268,2],[321,2]]], [297,[25449.6,21489.3,0],[[269,2]]], [298,[25346.8,21063.7,-4.76837e-007],[[271,2],[322,2],[323,2],[324,2],[299,2]]], [299,[25386.1,21162,0],[[272,2],[298,2],[324,2]]], +[300,[25535.1,21038.7,0],[[273,2],[274,2],[323,2],[325,2]]], [301,[25840.8,21089.6,0],[[274,2],[326,2]]], [302,[25872.3,20999.6,0],[[274,2],[327,2]]], [303,[26973.9,21141.5,-1.90735e-006],[[277,2],[328,2]]], [304,[26503.6,21125,9.53674e-007],[[278,2],[329,2]]], [305,[27085.9,21351.2,-1.90735e-006],[[279,2],[330,2]]], +[306,[27121.1,21502.8,0],[[279,2],[317,2]]], [307,[24383,22807.6,0],[[281,2],[331,2]]], [308,[24384.2,22647,-4.76837e-007],[[281,2],[332,2],[308,2],[333,2]]], [309,[24270.3,22132.4,3.8147e-006],[[283,2],[334,2]]], [310,[24429.8,21953.3,0],[[284,2],[335,2]]], [311,[24728.1,21872,0],[[286,2],[336,2]]], +[312,[24309.2,23048,0],[[287,2],[337,2]]], [313,[24781.8,23230.2,0],[[288,2],[338,2]]], [314,[25311.8,21783.6,7.62939e-006],[[290,2]]], [315,[27812.1,21896.5,0],[[291,2],[339,2]]], [316,[27586.3,21580.5,0],[[292,2],[316,2],[340,2],[341,2]]], [317,[27177.4,21537.8,1.90735e-006],[[293,2],[306,2]]], +[318,[27344.8,21632.3,0],[[293,2],[342,2],[341,2]]], [319,[28117.7,25212.8,0],[[294,2],[343,2]]], [320,[28014.8,25228.3,0],[[295,2],[320,2],[344,2]]], [321,[27615.9,25356.6,0],[[296,2],[345,2]]], [322,[25174,20931,0],[[298,2],[346,2]]], [323,[25400.1,20996.5,3.17891e-007],[[298,2],[300,2],[347,2]]], +[324,[25340.7,21123.1,-1.90735e-006],[[298,2],[299,2],[348,2]]], [325,[25587.6,20904.5,0],[[300,2],[349,2]]], [326,[25983.6,21083.7,0],[[301,2],[350,2]]], [327,[25919.3,20910.7,0],[[302,2],[351,2]]], [328,[27103,21069.5,-4.76837e-007],[[303,2],[352,2],[353,2],[328,2],[354,2]]], [329,[26359.1,21070.5,0],[[304,2],[355,2]]], +[330,[27249,21434.5,0],[[305,2],[342,2]]], [331,[24321.5,22933.9,0],[[307,2],[337,2]]], [332,[24279.2,22754.5,3.8147e-006],[[308,2],[356,2]]], [333,[24313.7,22506.2,0],[[308,2],[357,2]]], [334,[24162,22080.4,0],[[309,2],[358,2]]], [335,[24409.7,21857.6,0],[[310,2],[359,2]]], +[336,[24707.2,21781.8,0],[[311,2],[360,2]]], [337,[24235.5,23058.8,0],[[312,2],[331,2],[361,2]]], [338,[24872.3,23179.9,0],[[313,2],[338,2]]], [339,[27938.2,21952.6,0],[[315,2],[362,2]]], [340,[27767.2,21605.9,0],[[316,2],[363,2],[364,2]]], [341,[27428,21537.3,0],[[316,2],[318,2],[342,2]]], +[342,[27393.3,21528,0],[[318,2],[330,2],[341,2],[342,2],[365,2]]], [343,[28169.4,25356.7,-1.90735e-006],[[319,2],[366,2]]], [344,[27852,25359.7,0],[[320,2],[345,2]]], [345,[27726.9,25452.1,1.27157e-006],[[321,2],[344,2],[367,2]]], [346,[25042.9,20839.8,0],[[322,2],[368,2],[369,2]]], [347,[25464,20863.8,0],[[323,2],[370,2]]], +[348,[25215.2,21274.6,0],[[324,2],[371,2]]], [349,[25652.9,20759.8,0],[[325,2],[372,2]]], [350,[26168.9,21077.7,0],[[326,2],[355,2]]], [351,[26036.7,20837,0],[[327,2],[373,2]]], [352,[27232.7,21012,0],[[328,2],[374,2]]], [353,[27091.3,21068.3,6.35783e-007],[[328,2]]], +[354,[26995.9,20993.7,0],[[328,2],[375,2]]], [355,[26221.1,21069.9,0],[[329,2],[350,2]]], [356,[24176.1,22798.7,0],[[332,2],[376,2],[377,2]]], [357,[24243.6,22494.9,0],[[333,2]]], [358,[24041.8,22042.9,0],[[334,2],[378,2]]], [359,[24459.7,21769.4,0],[[335,2],[379,2]]], +[360,[24624.8,21664.9,0],[[336,2],[380,2]]], [361,[24160.3,23118.8,0],[[337,2],[381,2],[382,2]]], [362,[28058,22021.8,0],[[339,2]]], [363,[27844.7,21641.6,-1.90735e-006],[[340,2]]], [364,[27879.2,21493.7,0],[[340,2],[383,2]]], [365,[27443.8,21387.9,0],[[342,2],[384,2]]], +[366,[28215.1,25523.7,0],[[343,2],[385,2]]], [367,[27878.7,25520.4,0],[[345,2],[386,2]]], [368,[24867.9,20759.4,0],[[346,2],[387,2]]], [369,[25135.1,20685.6,0],[[346,2],[388,2]]], [370,[25488.3,20790,3.17891e-007],[[347,2],[370,2],[389,2]]], [371,[25177.6,21317.8,0],[[348,2],[390,2],[371,2],[391,2]]], +[372,[25701.9,20635.5,-9.53674e-007],[[349,2],[392,2]]], [373,[26094.9,20724,0],[[351,2],[393,2],[394,2]]], [374,[27286.7,20983.5,0],[[352,2],[395,2],[396,2]]], [375,[26958.4,20957.2,0],[[354,2],[397,2],[398,2]]], [376,[24103.1,22741.2,0],[[356,2],[399,2]]], [377,[24060.2,22876,0],[[356,2],[381,2]]], +[378,[23944.8,22006.9,0],[[358,2],[400,2]]], [379,[24414.7,21653.7,0],[[359,2],[401,2]]], [380,[24677.6,21585.9,0],[[360,2],[402,2]]], [381,[24094.3,23005.5,0],[[361,2],[377,2]]], [382,[24141.6,23281.5,-9.53674e-007],[[361,2],[403,2],[404,2],[405,2]]], [383,[27986.1,21366.6,9.53674e-007],[[364,2],[406,2]]], +[384,[27496.1,21262.6,0],[[365,2],[407,2]]], [385,[28212.9,25579.2,0],[[366,2],[386,2],[408,2]]], [386,[28010,25568.4,0],[[367,2],[385,2]]], [387,[24755,20705,0],[[368,2],[409,2],[410,2],[411,2]]], [388,[25231.3,20530.7,0],[[369,2],[412,2]]], [389,[25435.9,20612.9,0],[[370,2],[413,2]]], +[390,[25032.8,21391.4,0],[[371,2],[414,2]]], [391,[25020.5,21265.8,0],[[371,2],[415,2]]], [392,[25755.7,20533.1,-3.17891e-007],[[372,2],[416,2],[394,2]]], [393,[26226.9,20579.9,-3.17891e-007],[[373,2],[417,2],[418,2]]], [394,[25964.4,20649.9,0],[[373,2],[392,2]]], [395,[27166.9,20895,0],[[374,2],[398,2]]], +[396,[27395.4,20935.9,-2.38419e-007],[[374,2],[419,2],[396,2],[420,2]]], [397,[26767.5,20832.6,0],[[375,2],[421,2]]], [398,[27055.9,20819,0],[[375,2],[395,2],[422,2]]], [399,[24173,22657.7,0],[[376,2],[423,2]]], [400,[23891.9,21948.4,0],[[378,2],[424,2]]], [401,[24406.6,21560.3,0],[[379,2],[425,2]]], +[402,[24678.8,21571.9,-1.27157e-006],[[380,2],[426,2],[427,2]]], [403,[24033.7,23434,0],[[382,2],[428,2]]], [404,[23970.1,23218.4,0],[[382,2],[429,2]]], [405,[24208.6,23457.2,0],[[382,2],[430,2]]], [406,[28074.5,21244.8,0],[[383,2],[431,2]]], [407,[27545.7,21126.8,-1.90735e-006],[[384,2],[420,2]]], +[408,[28313.7,25696.4,0],[[385,2],[432,2]]], [409,[24809.8,20588.3,0],[[387,2],[433,2]]], [410,[24522.7,20589,0],[[387,2],[434,2]]], [411,[24678.4,20839,0],[[387,2],[435,2]]], [412,[25290.6,20430.5,0],[[388,2],[436,2]]], [413,[25397.8,20484.4,0],[[389,2],[436,2]]], +[414,[24898.6,21464.5,0],[[390,2],[427,2]]], [415,[24896.5,21197.2,0],[[391,2],[437,2]]], [416,[25841.9,20375,0],[[392,2],[438,2]]], [417,[26175.7,20434,0],[[393,2],[439,2]]], [418,[26321.8,20615.9,0],[[393,2],[440,2]]], [419,[27484,20852.3,0],[[396,2]]], +[420,[27560.3,21002.5,3.17891e-007],[[396,2],[407,2],[441,2]]], [421,[26623.1,20727.8,0],[[397,2],[442,2]]], [422,[27117.1,20729.6,0],[[398,2]]], [423,[24184.7,22604.9,3.8147e-006],[[399,2]]], [424,[23770.3,21868.1,0],[[400,2],[443,2]]], [425,[24398.3,21536.7,-1.27157e-006],[[401,2],[426,2],[444,2]]], +[426,[24512.8,21549.4,0],[[402,2],[425,2]]], [427,[24810.6,21510.6,0],[[402,2],[414,2]]], [428,[23956.2,23560.8,0],[[403,2],[445,2],[446,2]]], [429,[23837.8,23192.2,0],[[404,2],[447,2]]], [430,[24279.8,23538.6,0],[[405,2],[448,2]]], [431,[27973.3,21174.6,-2.38419e-007],[[406,2],[449,2]]], +[432,[28302.8,25768.2,-9.53674e-007],[[408,2]]], [433,[24870.4,20460.3,0],[[409,2],[450,2]]], [434,[24371.1,20515.1,0],[[410,2],[451,2]]], [435,[24592.4,20958,0],[[411,2],[452,2]]], [436,[25339,20347.1,2.38419e-007],[[412,2],[413,2],[453,2],[454,2]]], [437,[24757.7,21177.2,0],[[415,2],[455,2]]], +[438,[25917.2,20247.1,9.53674e-007],[[416,2],[456,2]]], [439,[26093.8,20308.5,0],[[417,2],[456,2]]], [440,[26404,20544.3,0],[[418,2],[442,2]]], [441,[27753.8,21045.6,0],[[420,2],[449,2]]], [442,[26570,20682,0],[[421,2],[440,2],[442,2],[457,2]]], [443,[23738.4,21851.8,-1.27157e-006],[[424,2],[458,2],[459,2]]], +[444,[24257.2,21533.5,0],[[425,2],[460,2]]], [445,[23870.8,23749.1,0],[[428,2],[461,2],[462,2],[463,2]]], [446,[23842.4,23578.4,-6.35783e-007],[[428,2],[464,2],[465,2]]], [447,[23731.5,23151.5,0],[[429,2],[466,2]]], [448,[24388.1,23600.5,0],[[430,2],[467,2]]], [449,[27881.8,21107.7,0],[[431,2],[441,2]]], +[450,[24930,20354.9,0],[[433,2],[468,2]]], [451,[24344.3,20501.8,-4.76837e-007],[[434,2],[469,2],[470,2],[471,2]]], [452,[24564.1,21049.4,1.27157e-006],[[435,2],[472,2],[455,2]]], [453,[25443.8,20192.6,0],[[436,2],[473,2]]], [454,[25347.5,20205,9.53674e-007],[[436,2],[474,2]]], [455,[24650.2,21122.8,0],[[437,2],[452,2]]], +[456,[25960.5,20181.7,-2.38419e-007],[[438,2],[439,2],[475,2],[476,2]]], [457,[26658.4,20564.1,0],[[442,2],[477,2]]], [458,[23725.4,21775.6,1.27157e-006],[[443,2],[478,2],[479,2]]], [459,[23667.4,21847,3.8147e-006],[[443,2],[480,2]]], [460,[24138.8,21513.5,0],[[444,2],[481,2]]], [461,[23956,23858.5,0],[[445,2],[482,2]]], +[462,[23790.6,23893.6,0],[[445,2],[483,2]]], [463,[23700.9,23713.9,0],[[445,2],[463,2]]], [464,[23718.4,23431.5,0],[[446,2],[484,2]]], [465,[23674.8,23588.8,0],[[446,2],[485,2]]], [466,[23665.6,23070.7,0],[[447,2],[486,2]]], [467,[24511.3,23698.4,0],[[448,2],[487,2]]], +[468,[24988.1,20239.1,0],[[450,2],[488,2]]], [469,[24196.7,20436.5,1.90735e-006],[[451,2],[489,2]]], [470,[24421.7,20364.2,0],[[451,2],[490,2]]], [471,[24287.6,20652.1,0],[[451,2],[491,2]]], [472,[24438.1,20937.7,0],[[452,2],[492,2]]], [473,[25507.2,20071.3,0],[[453,2],[493,2],[494,2]]], +[474,[25285.5,20069.1,0],[[454,2],[495,2]]], [475,[25811.2,20140.2,0],[[456,2],[493,2]]], [476,[25960.6,20073.8,0],[[456,2],[496,2]]], [477,[26668.3,20545.3,0],[[457,2]]], [478,[23628.3,21633.9,0],[[458,2],[497,2]]], [479,[23863.9,21659.9,-7.62939e-006],[[458,2],[481,2]]], +[480,[23609.8,21809.6,0],[[459,2],[498,2]]], [481,[23988.4,21545,7.62939e-006],[[460,2],[479,2]]], [482,[24047.9,23970.1,0],[[461,2],[499,2]]], [483,[23673.3,23981,0],[[462,2],[500,2]]], [484,[23648.9,23351,0],[[464,2]]], [485,[23615.9,23579.1,0],[[465,2]]], +[486,[23598.7,23103.4,0],[[466,2]]], [487,[24604.7,23744.9,0],[[467,2],[501,2]]], [488,[25061.7,20105.9,9.53674e-007],[[468,2],[502,2]]], [489,[24082.8,20335.6,0],[[469,2],[503,2]]], [490,[24443.4,20269.3,0],[[470,2],[504,2]]], [491,[24293.7,20783.5,0],[[471,2],[492,2]]], +[492,[24328.7,20920.7,-1.27157e-006],[[472,2],[491,2],[505,2]]], [493,[25669.7,20080.3,0],[[473,2],[475,2]]], [494,[25371.6,19966.9,0],[[473,2],[506,2]]], [495,[25238.6,19951.2,0],[[474,2],[507,2],[506,2],[502,2]]], [496,[26006.8,19954,0],[[476,2],[508,2]]], [497,[23539.7,21549.9,0],[[478,2],[509,2]]], +[498,[23486.2,21806.1,0],[[480,2],[510,2]]], [499,[24130,24074.9,0],[[482,2]]], [500,[23573.3,24087.3,0],[[483,2],[511,2]]], [501,[24700.6,23682.6,0],[[487,2],[512,2]]], [502,[25191.2,19980.1,0],[[488,2],[495,2],[507,2]]], [503,[23960.5,20228.1,0],[[489,2],[513,2]]], +[504,[24369.5,20137.5,-9.53674e-007],[[490,2],[514,2]]], [505,[24169.7,20909.4,0],[[492,2],[515,2]]], [506,[25276.4,19898.7,-2.38419e-007],[[494,2],[495,2],[516,2],[517,2],[507,2]]], [507,[25218.1,19929.4,0],[[495,2],[502,2],[506,2],[518,2],[519,2]]], [508,[26066,19844.3,-9.53674e-007],[[496,2],[520,2]]], [509,[23488.7,21533.5,-1.27157e-006],[[497,2],[521,2],[522,2]]], +[510,[23419.6,21794.9,0],[[498,2],[523,2]]], [511,[23471.9,24150,-4.76837e-007],[[500,2],[524,2]]], [512,[24763.2,23693.6,0],[[501,2]]], [513,[23906.5,20172.4,-2.38419e-007],[[503,2],[525,2],[526,2],[527,2]]], [514,[24283,20043.4,0],[[504,2],[528,2]]], [515,[24041.2,20893.2,-3.8147e-006],[[505,2],[529,2]]], +[516,[25352.7,19793.6,0],[[506,2],[530,2]]], [517,[25215.5,19859,0],[[506,2],[531,2]]], [518,[25187.9,19842.8,0],[[507,2]]], [519,[25057.7,19964.6,0],[[507,2],[532,2]]], [520,[26075.2,19725.4,0],[[508,2]]], [521,[23473.2,21665.3,0],[[509,2],[533,2]]], +[522,[23420.5,21354.1,0],[[509,2],[534,2]]], [523,[23264.5,21766.8,-9.53674e-007],[[510,2],[535,2],[523,2],[533,2]]], [524,[23404.2,24209.9,0],[[511,2],[536,2]]], [525,[23771.3,20065.7,0],[[513,2],[537,2]]], [526,[24003.4,20089.5,0],[[513,2],[538,2]]], [527,[23807.3,20269.3,0],[[513,2],[539,2]]], +[528,[24413.3,19917.1,0],[[514,2],[540,2]]], [529,[23972.6,20912,0],[[515,2],[541,2],[542,2]]], [530,[25428.5,19673.6,0],[[516,2],[543,2]]], [531,[25075.3,19694,9.53674e-007],[[517,2],[544,2]]], [532,[24922,19991.5,9.53674e-007],[[519,2],[545,2]]], [533,[23363,21725.3,0],[[521,2],[523,2]]], +[534,[23374,21270.5,1.90735e-006],[[522,2],[546,2],[547,2],[534,2],[548,2]]], [535,[23212.9,21789.2,0],[[523,2],[549,2],[535,2]]], [536,[23337.3,24253,-1.58946e-007],[[524,2],[536,2],[550,2]]], [537,[23665.1,19986,9.53674e-007],[[525,2],[551,2]]], [538,[24104.6,19976.3,9.53674e-007],[[526,2],[552,2]]], [539,[23712.2,20359.4,1.90735e-006],[[527,2],[553,2]]], +[540,[24425.4,19902.3,0],[[528,2],[554,2],[555,2]]], [541,[23787.2,20878.3,0],[[529,2],[556,2]]], [542,[23934.9,21035.2,0],[[529,2],[557,2]]], [543,[25403.1,19570,0],[[530,2],[558,2]]], [544,[25014.8,19559.2,0],[[531,2],[559,2]]], [545,[24769.8,19976.9,0],[[532,2],[554,2]]], +[546,[23219.1,21231.9,0],[[534,2],[560,2],[561,2]]], [547,[23379.7,21267.4,2.54313e-006],[[534,2]]], [548,[23358.6,21196.4,0],[[534,2],[562,2]]], [549,[23185.5,21774,0],[[535,2],[563,2]]], [550,[23383.2,24367.9,0],[[536,2]]], [551,[23557.3,19906.2,-9.53674e-007],[[537,2],[564,2]]], +[552,[24182.3,19879,0],[[538,2],[565,2],[555,2]]], [553,[23587.5,20455.4,0],[[539,2],[566,2]]], [554,[24592.6,19933,0],[[540,2],[545,2]]], [555,[24315,19816.7,0],[[540,2],[552,2],[565,2]]], [556,[23657.7,20876.1,0],[[541,2],[556,2]]], [557,[23821.2,21087.9,0],[[542,2],[567,2]]], +[558,[25391.3,19479.7,0],[[543,2],[568,2]]], [559,[24920.9,19422.3,0],[[544,2],[569,2]]], [560,[23080.9,21143.6,0],[[546,2],[570,2],[561,2]]], [561,[23192.6,21135.6,0],[[562,2],[583,2],[560,2],[546,2]]], [562,[23389.9,21140.4,-5.08626e-006],[[548,2],[571,2],[562,2],[561,2]]], [563,[22997.9,21744.3,0],[[549,2],[572,2]]], +[564,[23438,19818.4,0],[[551,2],[573,2]]], [565,[24276.4,19783,-4.76837e-007],[[552,2],[555,2],[574,2],[575,2]]], [566,[23496.5,20476.6,-4.76837e-007],[[553,2],[566,2],[576,2],[577,2]]], [567,[23726.3,21091.6,0],[[557,2]]], [568,[25331,19350.9,-6.35783e-007],[[558,2],[578,2],[579,2]]], [569,[24857,19307.2,0],[[559,2],[580,2]]], +[570,[23041.9,21127.2,0],[[560,2],[581,2],[582,2]]], [571,[23418.7,21136.2,0],[[562,2],[571,2]]], [572,[22846.6,21708.9,0],[[563,2],[584,2]]], [573,[23415.6,19795.1,2.38419e-007],[[564,2],[585,2],[586,2],[587,2]]], [574,[24333.7,19655.5,0],[[565,2],[588,2]]], [575,[24177.8,19685.8,0],[[565,2],[589,2]]], +[576,[23459.8,20574.7,-1.90735e-006],[[566,2],[590,2]]], [577,[23400.2,20392,0],[[566,2],[591,2]]], [578,[25253.2,19226.1,0],[[568,2],[592,2]]], [579,[25383.7,19324.8,0],[[568,2]]], [580,[24783.3,19177.8,0],[[569,2],[593,2]]], [581,[22922.8,21006.7,0],[[570,2],[594,2],[595,2]]], +[582,[22874.8,21154.1,-2.54313e-006],[[570,2],[596,2],[597,2]]], [583,[23161.5,21176.5,-1.27157e-006],[[561,2]]], [584,[22759,21632.2,0],[[572,2],[598,2]]], [585,[23300.3,19894,9.53674e-007],[[573,2],[599,2]]], [586,[23270.2,19693.1,0],[[573,2],[600,2]]], [587,[23459.8,19697.5,0],[[573,2],[601,2],[602,2]]], +[588,[24368.4,19581.2,0],[[574,2],[603,2]]], [589,[24076.7,19613.3,0],[[575,2],[604,2]]], [590,[23329.7,20681.7,-3.8147e-006],[[576,2],[605,2]]], [591,[23381.9,20282.1,0],[[577,2],[606,2]]], [592,[25140.6,19110,0],[[578,2],[607,2]]], [593,[24760.2,19152.1,0],[[580,2],[608,2],[609,2]]], +[594,[22770.5,20924.4,0],[[581,2],[610,2]]], [595,[23013.7,20883,0],[[581,2],[611,2]]], [596,[22779.9,21040.4,0],[[582,2],[610,2]]], [597,[22778.5,21278.3,0],[[582,2],[612,2]]], [598,[22638.3,21610,-6.35783e-007],[[584,2],[613,2],[614,2]]], [599,[23208.8,19955.7,-3.17891e-007],[[585,2],[615,2],[616,2]]], +[600,[23155.8,19594.8,-9.53674e-007],[[586,2],[617,2]]], [601,[23557.6,19603.7,0],[[587,2],[618,2]]], [602,[23337.1,19563.2,0],[[587,2],[619,2]]], [603,[24426.3,19461.8,-9.53674e-007],[[588,2],[620,2]]], [604,[23951.1,19544.8,0],[[589,2],[621,2]]], [605,[23221.2,20753.2,0],[[590,2],[611,2]]], +[606,[23366.2,20165.6,9.53674e-007],[[591,2],[616,2]]], [607,[25043.6,19006.3,0],[[592,2],[622,2]]], [608,[24719.3,19285.8,-4.76837e-007],[[593,2],[623,2]]], [609,[24841.2,19025.7,0],[[593,2],[622,2]]], [610,[22741.6,20914.7,-1.27157e-006],[[594,2],[596,2],[624,2]]], [611,[23101.9,20803.3,0],[[595,2],[605,2]]], +[612,[22648.9,21377.2,0],[[597,2],[614,2]]], [613,[22616.8,21644.9,0],[[598,2],[625,2],[626,2]]], [614,[22558,21446.9,0],[[598,2],[612,2],[627,2]]], [615,[23085,20065.7,0],[[599,2],[628,2]]], [616,[23327.3,20082.4,0],[[599,2],[606,2]]], [617,[23071.8,19490.8,9.53674e-007],[[600,2],[629,2]]], +[618,[23689.7,19498,0],[[601,2],[630,2]]], [619,[23258.2,19449.9,0],[[602,2],[631,2]]], [620,[24522.8,19406.7,-4.76837e-007],[[603,2],[632,2],[623,2]]], [621,[23916.8,19494.1,0],[[604,2],[630,2],[633,2]]], [622,[25020.7,18982.2,0],[[607,2],[609,2],[634,2]]], [623,[24658.5,19315.6,0],[[608,2],[620,2],[635,2]]], +[624,[22604.7,20828.2,3.8147e-006],[[610,2],[636,2]]], [625,[22458.9,21686.3,0],[[613,2],[637,2]]], [626,[22561.2,21762.8,0],[[613,2],[638,2]]], [627,[22491.3,21442.4,0],[[614,2]]], [628,[23017.1,20117.1,0],[[615,2],[639,2],[640,2]]], [629,[23023.2,19426.5,0],[[617,2],[641,2],[642,2]]], +[630,[23846.2,19494.8,0],[[618,2],[621,2]]], [631,[23213.8,19369.1,0],[[619,2],[642,2]]], [632,[24606.1,19337.8,4.76837e-007],[[620,2],[643,2]]], [633,[24051.5,19389.1,0],[[621,2],[644,2]]], [634,[25132.1,18872.2,-9.53674e-007],[[622,2],[634,2]]], [635,[24615.2,19333.3,0],[[623,2]]], +[636,[22515.9,20785.1,0],[[624,2],[645,2]]], [637,[22351.4,21724.7,0],[[625,2],[646,2]]], [638,[22419.8,21764.1,0],[[626,2],[647,2],[646,2]]], [639,[22932.9,20232.4,-1.90735e-006],[[628,2],[648,2]]], [640,[22882,20041.5,0],[[628,2],[649,2]]], [641,[22902,19279.1,0],[[629,2],[650,2]]], +[642,[23151.8,19377.9,0],[[629,2],[631,2]]], [643,[24426.4,19308.2,0],[[632,2],[651,2]]], [644,[24217.7,19361.4,0],[[633,2],[651,2]]], [645,[22504.3,20780.4,0],[[636,2],[652,2],[653,2]]], [646,[22343.8,21751.8,0],[[637,2],[638,2],[646,2],[654,2]]], [647,[22372.3,21792.8,-1.19209e-007],[[638,2]]], +[648,[22918.4,20255.1,-1.43051e-006],[[639,2],[655,2],[648,2],[656,2]]], [649,[22739.3,20036.2,0],[[640,2],[657,2]]], [650,[22823.3,19174,0],[[641,2],[658,2],[659,2]]], [651,[24300.8,19342.4,9.53674e-007],[[643,2],[644,2]]], [652,[22394.4,20887.4,3.8147e-006],[[645,2],[660,2]]], [653,[22538.2,20623.1,0],[[645,2],[661,2]]], +[654,[22350.3,21934.7,0],[[646,2],[662,2]]], [655,[22761.5,20351.9,-1.90735e-006],[[648,2],[663,2]]], [656,[22966.3,20385.1,0],[[648,2],[664,2]]], [657,[22609.5,19991.7,0],[[649,2],[665,2]]], [658,[22936.9,19051.6,0],[[650,2],[666,2]]], [659,[22757.2,19110.1,-6.35783e-007],[[650,2],[667,2],[668,2]]], +[660,[22233.2,20947.8,0],[[652,2],[669,2]]], [661,[22610.3,20481.7,0],[[653,2],[663,2]]], [662,[22261.8,22008.6,0],[[654,2]]], [663,[22647.5,20426.3,0],[[655,2],[661,2]]], [664,[23053,20461.5,0],[[656,2],[670,2]]], [665,[22484.2,20007.8,0],[[657,2],[671,2]]], +[666,[22867.8,18973.3,0],[[658,2],[672,2]]], [667,[22675.1,18963.8,0],[[659,2],[673,2]]], [668,[22639.7,19128.2,0],[[659,2],[674,2]]], [669,[22162,21065.5,0],[[660,2],[675,2]]], [670,[23148.1,20526.5,0],[[664,2],[676,2]]], [671,[22467.2,20000.8,0],[[665,2],[677,2],[678,2]]], +[672,[22842.8,18938.2,3.17891e-007],[[666,2],[679,2],[680,2]]], [673,[22617.9,18846.5,0],[[667,2],[681,2]]], [674,[22582.4,19118.8,4.76837e-007],[[668,2],[682,2],[683,2],[674,2]]], [675,[22146.1,21131.4,1.27157e-006],[[669,2],[684,2],[685,2]]], [676,[23235.6,20521.7,0],[[670,2],[686,2]]], [677,[22401.2,20042.5,0],[[671,2],[687,2],[677,2],[688,2]]], +[678,[22558.6,19819.8,1.90735e-006],[[671,2],[689,2]]], [679,[22738.6,18789.9,9.53674e-007],[[672,2],[690,2]]], [680,[22956.2,18866.4,4.76837e-007],[[672,2]]], [681,[22549,18731.5,-9.53674e-007],[[673,2],[691,2]]], [682,[22528.1,19187.7,-4.76837e-007],[[674,2],[692,2],[693,2],[694,2]]], [683,[22594,19112.5,3.17891e-007],[[674,2]]], +[684,[22027.8,21229.7,0],[[675,2],[695,2]]], [685,[22104.6,21137.9,0],[[675,2],[696,2],[685,2],[697,2]]], [686,[23312.4,20524.7,0],[[676,2]]], [687,[22266.3,20180.5,-9.53674e-007],[[677,2],[698,2]]], [688,[22235.8,19980,0],[[677,2],[699,2]]], [689,[22621.5,19690.9,0],[[678,2],[700,2]]], +[690,[22630.2,18668.6,0],[[679,2],[701,2]]], [691,[22467.2,18623.2,0],[[681,2],[702,2]]], [692,[22555.4,19316.3,0],[[682,2],[703,2]]], [693,[22454.5,19047.1,-9.53674e-007],[[682,2],[704,2]]], [694,[22430.6,19252.9,0],[[682,2],[705,2],[706,2]]], [695,[21897,21221.9,3.8147e-006],[[684,2],[707,2]]], +[696,[22121.6,21149.5,0],[[685,2]]], [697,[22016,21061.1,0],[[685,2]]], [698,[22182,20255.8,0],[[687,2],[708,2],[709,2]]], [699,[22090.9,19946.7,3.17891e-007],[[688,2],[710,2],[711,2]]], [700,[22573.9,19570.9,0],[[689,2],[712,2],[703,2]]], [701,[22520.7,18590.3,0],[[690,2],[702,2]]], +[702,[22432,18567.4,3.17891e-007],[[691,2],[701,2],[713,2]]], [703,[22576.3,19474.4,0],[[692,2],[700,2],[714,2]]], [704,[22366.6,18929.5,0],[[693,2],[715,2]]], [705,[22300.9,19307,0],[[694,2],[716,2]]], [706,[22296.1,19184.9,-1.90735e-006],[[694,2],[717,2]]], [707,[21733.3,21221.4,0],[[695,2],[718,2]]], +[708,[22051.9,20182.2,0],[[698,2],[719,2]]], [709,[22071.8,20360.6,0],[[698,2],[709,2]]], [710,[21947.4,19905.2,0],[[699,2],[720,2]]], [711,[22065.9,19823.6,0],[[699,2],[721,2]]], [712,[22572,19532,0],[[700,2],[722,2]]], [713,[22382.8,18526.3,0],[[702,2],[723,2],[724,2],[725,2]]], +[714,[22570.3,19519.4,0],[[703,2]]], [715,[22295.3,18819.2,-3.17891e-007],[[704,2],[724,2],[726,2]]], [716,[22218.6,19277.2,0],[[705,2],[717,2]]], [717,[22170.4,19154,0],[[706,2],[716,2],[727,2]]], [718,[21656.3,21209.6,0],[[707,2]]], [719,[22005.7,20187.1,0],[[708,2]]], +[720,[21826.5,19846.6,0],[[710,2],[728,2]]], [721,[22018.1,19683.5,1.90735e-006],[[711,2],[729,2]]], [722,[22485.9,19507.1,0],[[712,2],[730,2]]], [723,[22262.8,18415.7,0],[[713,2],[731,2],[732,2]]], [724,[22303.9,18637.5,0],[[713,2],[715,2]]], [725,[22306.7,18424.8,0],[[732,2],[713,2]]], +[726,[22159.5,18928.9,-9.53674e-007],[[715,2],[727,2]]], [727,[22070,19027.7,0],[[717,2],[726,2],[733,2],[734,2]]], [728,[21787.6,19894.6,0],[[720,2]]], [729,[21920.3,19578.4,0],[[721,2],[735,2]]], [730,[22390.9,19501.4,0],[[722,2],[736,2]]], [731,[22137.4,18369.6,0],[[723,2],[737,2]]], +[732,[22330.9,18368.5,0],[[884,2],[928,2],[725,2],[723,2]]], [733,[22023.8,19149.8,0],[[727,2],[738,2]]], [734,[21961.3,18921.4,0],[[727,2],[739,2]]], [735,[21909,19554,0],[[729,2],[740,2],[741,2]]], [736,[22349.8,19543.9,3.8147e-006],[[730,2],[742,2]]], [737,[22021.8,18257.7,0],[[731,2],[743,2]]], +[738,[21948.2,19243.5,1.90735e-006],[[733,2],[744,2]]], [739,[21876.5,18801.1,1.90735e-006],[[734,2],[745,2]]], [740,[21819.5,19544.4,0],[[735,2],[746,2]]], [741,[21834.8,19475.9,3.8147e-006],[[735,2],[747,2]]], [742,[22237.5,19571.8,0],[[736,2],[748,2]]], [743,[21906.9,18157.2,0],[[737,2],[749,2]]], +[744,[21816.3,19275.2,4.76837e-007],[[738,2],[750,2],[747,2],[751,2]]], [745,[21805.1,18662.6,0],[[739,2],[752,2]]], [746,[21722.8,19580.9,-3.8147e-006],[[740,2],[753,2]]], [747,[21857.9,19402.3,-1.90735e-006],[[741,2],[744,2]]], [748,[22108.1,19551.8,0],[[742,2],[754,2]]], [749,[21860.7,18117.6,-1.43051e-006],[[743,2],[755,2],[756,2],[757,2]]], +[750,[21611.1,19306.6,0],[[744,2],[758,2]]], [751,[21741.5,19202,0],[[744,2],[759,2]]], [752,[21691.5,18540.4,0],[[745,2],[760,2]]], [753,[21604.9,19612,0],[[746,2],[753,2]]], [754,[22070,19546.1,0],[[748,2]]], [755,[21772.6,17976.7,0],[[749,2],[761,2]]], +[756,[21789.4,18180.6,0],[[749,2],[762,2],[763,2]]], [757,[21943,18046.8,0],[[749,2],[764,2]]], [758,[21464.2,19299.7,1.90735e-006],[[750,2],[765,2]]], [759,[21667.9,19081.8,0],[[751,2],[766,2]]], [760,[21615.9,18482.6,-6.35783e-007],[[752,2],[767,2],[768,2]]], [761,[21737,17815.9,0],[[755,2],[769,2]]], +[762,[21671.5,18234.8,0],[[756,2],[770,2]]], [763,[21683.9,18094.3,0],[[756,2],[771,2]]], [764,[22003.8,17960.7,0],[[757,2],[772,2]]], [765,[21392.3,19246.6,0],[[758,2],[773,2]]], [766,[21650.6,18948.8,-1.90735e-006],[[759,2],[774,2]]], [767,[21504.6,18349.7,-9.53674e-007],[[760,2],[775,2],[770,2],[776,2]]], +[768,[21584.2,18605.6,1.90735e-006],[[760,2],[777,2]]], [769,[21718.3,17700.4,0],[[761,2],[778,2],[779,2]]], [770,[21604.4,18295.4,0],[[762,2],[767,2]]], [771,[21573.4,17985.4,0],[[763,2],[780,2]]], [772,[22085.4,17883.2,0],[[764,2],[781,2],[782,2]]], [773,[21291.4,19227.1,-9.53674e-007],[[765,2],[783,2]]], +[774,[21585.6,18846.3,0],[[766,2],[784,2],[777,2]]], [775,[21437.4,18203.9,0],[[767,2],[785,2]]], [776,[21332,18335.1,0],[[767,2],[786,2]]], [777,[21581.8,18746.3,1.90735e-006],[[768,2],[774,2]]], [778,[21679.1,17633.6,4.76837e-007],[[769,2],[787,2],[788,2],[789,2]]], [779,[21844.6,17798.7,0],[[769,2],[781,2]]], +[780,[21457.6,17876.9,0],[[771,2],[790,2]]], [781,[21985.1,17836.2,0],[[772,2],[779,2]]], [782,[22210.3,17830.3,0],[[772,2],[791,2]]], [783,[21206.2,19210.9,0],[[773,2],[792,2]]], [784,[21448.8,18746.3,0],[[774,2],[793,2]]], [785,[21401.5,18083.2,0],[[775,2],[794,2]]], +[786,[21220.8,18356.2,6.35783e-007],[[776,2],[795,2],[796,2]]], [787,[21570.1,17498.1,0],[[778,2],[797,2]]], [788,[21815.8,17500.9,0],[[778,2],[798,2]]], [789,[21568.1,17702.6,1.90735e-006],[[778,2],[799,2]]], [790,[21387.3,17772.3,0],[[780,2],[800,2]]], [791,[22226.5,17811,0],[[782,2],[801,2],[802,2]]], +[792,[21122.9,19246.6,0],[[783,2],[803,2]]], [793,[21284.9,18714.6,1.90735e-006],[[784,2],[804,2]]], [794,[21326.1,17953,1.90735e-006],[[785,2],[805,2]]], [795,[21108.1,18406.4,0],[[786,2],[806,2]]], [796,[21131.7,18258.8,3.8147e-006],[[786,2],[807,2]]], [797,[21473.9,17367.5,0],[[787,2],[808,2]]], +[798,[21843.4,17480.5,4.76837e-007],[[788,2],[809,2],[810,2],[811,2]]], [799,[21483.2,17718.4,0],[[789,2],[800,2]]], [800,[21368.9,17714.1,0],[[790,2],[799,2],[812,2],[813,2]]], [801,[22392.2,17789.5,-9.53674e-007],[[791,2],[814,2]]], [802,[22103.2,17694,0],[[791,2],[815,2]]], [803,[21022.4,19290.6,1.90735e-007],[[792,2],[816,2],[817,2],[818,2],[819,2]]], +[804,[21154.3,18697.5,0],[[793,2],[820,2]]], [805,[21304.6,17815.6,0],[[794,2],[813,2]]], [806,[20974.4,18453.2,-1.90735e-006],[[795,2],[821,2]]], [807,[21106.8,18164.2,0],[[796,2],[822,2]]], [808,[21432.6,17316.5,0],[[797,2],[823,2],[824,2]]], [809,[21734.1,17403.3,1.90735e-006],[[798,2],[825,2]]], +[810,[21875.5,17353.4,1.90735e-006],[[798,2],[826,2]]], [811,[21930.6,17508,0],[[798,2],[827,2]]], [812,[21279.2,17571.6,-1.90735e-006],[[800,2],[828,2]]], [813,[21311.4,17720.7,0],[[800,2],[805,2],[829,2]]], [814,[22446.7,17778.3,0],[[801,2],[830,2],[831,2],[832,2]]], [815,[22082.6,17671.6,0],[[802,2],[827,2],[833,2]]], +[816,[21027,19130.5,1.90735e-006],[[803,2],[834,2]]], [817,[20944.3,19253.1,0],[[803,2]]], [818,[20910.5,19376.7,0],[[803,2],[835,2]]], [819,[21027.2,19463.1,0],[[803,2],[836,2]]], [820,[20984.8,18674.1,0],[[804,2],[837,2]]], [821,[20929.2,18460.3,0],[[806,2],[837,2],[838,2],[839,2]]], +[822,[21030.9,18097.2,3.8147e-006],[[807,2],[840,2]]], [823,[21327.1,17223.6,0],[[808,2],[841,2],[842,2]]], [824,[21467.5,17298,-6.35783e-007],[[808,2],[843,2],[825,2]]], [825,[21610.3,17374.3,0],[[809,2],[824,2]]], [826,[21829.2,17271.4,-1.90735e-006],[[810,2],[844,2]]], [827,[21993.5,17602.4,0],[[811,2],[815,2]]], +[828,[21222.3,17416.8,0],[[812,2],[845,2],[842,2]]], [829,[21169.4,17650.9,-3.8147e-006],[[813,2],[846,2]]], [830,[22406.8,17948,0],[[814,2],[847,2]]], [831,[22458.5,17652.5,0],[[814,2],[848,2]]], [832,[22607.6,17794.7,0],[[814,2],[849,2]]], [833,[22179.5,17527.6,0],[[815,2],[850,2]]], +[834,[21035.4,18998.1,0],[[816,2],[851,2]]], [835,[20766.4,19370.5,0],[[818,2],[852,2]]], [836,[21031.6,19607.1,0],[[819,2],[853,2]]], [837,[20939.7,18657.9,0],[[820,2],[821,2],[854,2]]], [838,[20801.1,18476.6,0],[[821,2],[855,2]]], [839,[20888,18288.5,0],[[821,2],[856,2]]], +[840,[20956.9,18051.3,-3.8147e-006],[[822,2],[857,2]]], [841,[21191.6,17129.5,0],[[823,2],[858,2]]], [842,[21244.3,17321.5,-1.90735e-006],[[823,2],[828,2],[845,2]]], [843,[21543.3,17218.8,1.90735e-006],[[824,2],[859,2]]], [844,[21750.6,17146.7,0],[[826,2],[860,2]]], [845,[21203.8,17347,-4.76837e-007],[[828,2],[842,2],[861,2],[862,2]]], +[846,[21041.8,17572.9,0],[[829,2],[863,2]]], [847,[22385.4,18059.6,-9.53674e-007],[[830,2],[864,2]]], [848,[22490.8,17560.9,0],[[831,2],[865,2],[848,2]]], [849,[22752.2,17801.9,4.76837e-007],[[832,2],[866,2]]], [850,[22272.4,17443.1,-9.53674e-007],[[833,2],[867,2]]], [851,[20990.2,18896.6,-3.8147e-006],[[834,2],[854,2]]], +[852,[20642.9,19389.2,0],[[835,2],[868,2]]], [853,[21058,19752.1,-1.90735e-006],[[836,2],[869,2]]], [854,[20979.4,18827,0],[[837,2],[851,2]]], [855,[20712.1,18472.9,-1.43051e-006],[[838,2],[870,2],[871,2],[872,2]]], [856,[20853.3,18170.8,0],[[839,2],[857,2],[870,2]]], [857,[20931.1,17985.4,1.27157e-006],[[840,2],[856,2],[873,2]]], +[858,[21066.4,17057.5,0],[[841,2],[874,2],[875,2],[876,2]]], [859,[21457.1,17110.6,0],[[843,2],[877,2]]], [860,[21715.8,17113.3,0],[[844,2],[878,2],[877,2],[879,2]]], [861,[21062.5,17432,0],[[845,2],[880,2],[863,2]]], [862,[21152,17262.4,2.54313e-006],[[845,2],[862,2],[881,2]]], [863,[21026.3,17559.4,0],[[846,2],[861,2],[882,2],[883,2]]], +[864,[22324.6,18194.3,-9.53674e-007],[[847,2],[884,2]]], [865,[22480.1,17465.3,0],[[848,2],[885,2]]], [866,[22786.5,17805.9,-1.58946e-007],[[849,2],[886,2],[887,2]]], [867,[22369.3,17347.7,0],[[850,2],[888,2]]], [868,[20534.9,19422.7,0],[[852,2],[889,2]]], [869,[21134.4,19870.2,0],[[853,2],[890,2]]], +[870,[20779.1,18286.7,0],[[855,2],[856,2]]], [871,[20667.5,18638.9,0],[[855,2],[891,2]]], [872,[20592.8,18449.8,0],[[855,2],[892,2]]], [873,[21015.1,17849.7,0],[[857,2],[893,2]]], [874,[21129,16989.5,0],[[858,2],[894,2],[895,2]]], [875,[21000.6,17011,-2.54313e-006],[[858,2],[896,2],[895,2],[897,2],[876,2]]], +[876,[20960,17114.5,1.52588e-006],[[858,2],[875,2],[897,2],[898,2],[881,2],[899,2]]], [877,[21449.9,17094,-6.35783e-007],[[859,2],[860,2],[900,2],[878,2]]], [878,[21548.3,17090.8,0],[[860,2],[877,2],[901,2],[878,2],[902,2]]], [879,[21897.9,17123.7,0],[[860,2],[903,2]]], [880,[21021.5,17464,0],[[861,2],[899,2]]], [881,[21051.2,17168.3,0],[[862,2],[876,2]]], +[882,[21017.2,17589.8,-9.53674e-007],[[863,2],[893,2],[882,2],[904,2]]], [883,[21019.5,17480.1,0],[[863,2]]], [884,[22282.9,18289.2,0],[[864,2],[732,2]]], [885,[22593,17385.4,0],[[865,2],[905,2]]], [886,[22752.6,17950.7,4.76837e-007],[[866,2],[906,2]]], [887,[22852.8,17667.1,0],[[866,2],[907,2]]], +[888,[22446.7,17258,0],[[867,2],[908,2]]], [889,[20499.4,19398.3,0],[[868,2],[909,2],[910,2]]], [890,[21294.6,19922,0],[[869,2],[911,2]]], [891,[20634.4,18770.7,3.8147e-006],[[871,2],[912,2]]], [892,[20496,18453.6,3.8147e-006],[[872,2],[913,2]]], [893,[20991.7,17738.5,0],[[873,2],[882,2]]], +[894,[21164.4,16995.9,0],[[874,2],[914,2],[900,2],[915,2]]], [895,[21026.1,16904.9,9.53674e-007],[[874,2],[875,2],[896,2],[916,2],[917,2]]], [896,[20969.9,16964.5,-1.90735e-006],[[875,2],[895,2],[918,2],[916,2],[919,2],[897,2]]], [897,[20927.5,17042,0],[[875,2],[876,2],[896,2],[919,2],[920,2]]], [898,[20863.5,17163.8,1.27157e-006],[[876,2],[921,2],[922,2]]], [899,[20979.4,17252.3,-1.27157e-006],[[876,2],[880,2],[923,2],[899,2]]], +[900,[21297.8,17042.6,0],[[877,2],[894,2],[914,2]]], [901,[21567.8,17088.3,0],[[878,2]]], [902,[21614.2,17028.2,0],[[878,2],[924,2]]], [903,[21923.6,17108.3,0],[[879,2],[925,2],[926,2]]], [904,[20877,17549.9,3.8147e-006],[[882,2],[927,2]]], [905,[22672,17351.9,-9.53674e-007],[[885,2],[929,2]]], +[906,[22666.2,18057.3,0],[[886,2],[930,2]]], [907,[22857.1,17582.7,0],[[887,2],[931,2]]], [908,[22533.7,17222.6,0],[[888,2],[932,2]]], [909,[20367.1,19512.9,0],[[889,2],[933,2]]], [910,[20580.1,19241.2,0],[[889,2],[934,2]]], [911,[21432.3,19917.6,0],[[890,2],[935,2]]], +[912,[20599.8,18878.1,0],[[891,2],[936,2]]], [913,[20389.7,18445.6,-3.8147e-006],[[892,2],[937,2]]], [914,[21243.3,17026.3,-9.53674e-007],[[894,2],[900,2]]], [915,[21267.7,16871.3,-1.90735e-006],[[894,2],[938,2]]], [916,[20938.5,16872.5,0],[[895,2],[896,2],[939,2],[918,2]]], [917,[21098.2,16772.5,0],[[895,2],[940,2]]], +[918,[20928.5,16922.8,0],[[896,2],[916,2],[918,2],[941,2]]], [919,[20914.9,16978.4,0],[[896,2],[897,2],[942,2]]], [920,[20865.5,17072.8,0],[[897,2]]], [921,[20723.1,17068.6,9.53674e-007],[[898,2],[943,2],[921,2],[942,2]]], [922,[20849.1,17250.5,0],[[898,2],[944,2]]], [923,[20976.6,17237.2,-1.90735e-006],[[899,2]]], +[924,[21660.2,16946.9,0],[[902,2],[945,2]]], [925,[22111.4,17057.8,0],[[903,2],[946,2]]], [926,[21824.9,17030.7,0],[[903,2],[945,2]]], [927,[20736.1,17532.6,-3.8147e-006],[[904,2],[947,2]]], [928,[22437.7,18283.7,-9.53674e-007],[[732,2],[948,2]]], [929,[22727.7,17281.8,0],[[905,2],[949,2]]], +[930,[22580.1,18173.6,0],[[906,2],[948,2]]], [931,[22913.5,17472.1,0],[[907,2],[950,2]]], [932,[22558.3,17178.2,0],[[908,2],[951,2],[952,2]]], [933,[20215.4,19598.1,0],[[909,2],[953,2]]], [934,[20610.2,19088.3,0],[[910,2],[936,2]]], [935,[21543.2,19904.9,4.76837e-007],[[911,2]]], +[936,[20570.4,18932.4,9.53674e-007],[[912,2],[934,2],[954,2],[936,2]]], [937,[20227.3,18458.7,3.8147e-006],[[913,2],[955,2]]], [938,[21252.5,16786.1,0],[[915,2],[940,2]]], [939,[20857.6,16764.8,0],[[916,2],[956,2]]], [940,[21140,16716.5,-6.35783e-007],[[917,2],[938,2],[957,2]]], [941,[20814.9,16845.3,-1.27157e-006],[[918,2],[958,2],[942,2]]], +[942,[20819.5,16955.1,0],[[919,2],[921,2],[941,2]]], [943,[20583,17030.1,-9.53674e-007],[[921,2],[959,2],[943,2],[960,2]]], [944,[20800.8,17327.6,0],[[922,2],[961,2]]], [945,[21675.2,16904.8,-4.76837e-007],[[924,2],[926,2],[962,2],[963,2]]], [946,[22235.6,17064.3,0],[[925,2],[952,2]]], [947,[20719,17518.7,-1.90735e-006],[[927,2],[964,2],[947,2],[961,2]]], +[948,[22555.1,18243,0],[[928,2],[930,2]]], [949,[22729.2,17229.6,6.35783e-007],[[929,2],[965,2],[951,2]]], [950,[22933.9,17372.7,0],[[931,2],[966,2]]], [951,[22674,17211,0],[[932,2],[949,2]]], [952,[22457.1,17087.3,6.35783e-007],[[932,2],[946,2],[967,2]]], [953,[20181.7,19603.3,0],[[933,2],[968,2],[969,2]]], +[954,[20471.4,19026,-3.8147e-006],[[936,2],[970,2]]], [955,[20088.1,18440.1,3.8147e-006],[[937,2],[971,2]]], [956,[20787.1,16641.2,-3.8147e-006],[[939,2],[972,2]]], [957,[21260.1,16599.5,0],[[940,2],[973,2]]], [958,[20705.8,16758.4,3.8147e-006],[[941,2],[974,2]]], [959,[20432.4,16950,0],[[943,2],[975,2]]], +[960,[20522.7,17145.8,0],[[943,2],[976,2]]], [961,[20779.2,17424.8,0],[[944,2],[947,2]]], [962,[21559.6,16760.8,0],[[945,2],[977,2]]], [963,[21769.4,16821.7,0],[[945,2],[978,2]]], [964,[20542.9,17495.2,0],[[947,2],[979,2]]], [965,[22814.2,17225.3,4.76837e-007],[[949,2],[966,2]]], +[966,[22855.6,17272.4,0],[[950,2],[965,2]]], [967,[22545.2,17008.7,0],[[952,2],[980,2]]], [968,[20170.6,19663.7,-1.58946e-007],[[953,2],[968,2],[981,2]]], [969,[20078.5,19550.6,0],[[953,2]]], [970,[20388.8,19078.1,0],[[954,2],[982,2]]], [971,[19973.9,18362.3,-1.27157e-006],[[955,2],[983,2],[984,2]]], +[972,[20767.7,16630.6,-1.27157e-006],[[956,2],[974,2],[985,2]]], [973,[21351.6,16482.5,-1.90735e-006],[[957,2],[986,2]]], [974,[20632,16724.3,0],[[958,2],[972,2],[987,2]]], [975,[20362.3,16863.3,0],[[959,2],[988,2]]], [976,[20430.6,17240.6,0],[[960,2],[989,2]]], [977,[21546.7,16660.2,1.90735e-006],[[962,2],[990,2]]], +[978,[21846.5,16789.8,1.90735e-006],[[963,2],[991,2]]], [979,[20417.7,17467.4,0],[[964,2],[992,2]]], [980,[22635.5,16949.3,0],[[967,2],[993,2],[994,2],[980,2]]], [981,[20035.1,19764.9,0],[[968,2],[995,2]]], [982,[20314,19156.9,0],[[970,2],[996,2]]], [983,[20032.2,18253.7,0],[[971,2],[997,2]]], +[984,[19837.5,18295,3.8147e-006],[[971,2],[998,2]]], [985,[20660.4,16487.8,1.90735e-006],[[972,2],[999,2]]], [986,[21379.2,16419.7,0],[[973,2],[986,2],[1000,2],[1001,2],[1002,2],[1003,2]]], [987,[20471.3,16760.9,-3.8147e-006],[[974,2],[988,2]]], [988,[20335.3,16819.7,1.90735e-006],[[975,2],[987,2],[1004,2],[1005,2]]], [989,[20354,17335.8,0],[[976,2],[992,2]]], +[990,[21498.9,16558.2,1.90735e-006],[[977,2],[1001,2]]], [991,[21946.2,16772.6,0],[[978,2],[1006,2]]], [992,[20330.3,17456.5,0],[[979,2],[989,2],[1007,2]]], [993,[22765.9,16829.4,0],[[980,2],[1008,2]]], [994,[22620.4,16947.4,0],[[980,2],[1009,2]]], [995,[20078.1,19870.7,0],[[981,2],[1010,2]]], +[996,[20250,19226.7,0],[[982,2],[1011,2]]], [997,[20129,18153.4,3.8147e-006],[[983,2],[1012,2]]], [998,[19728.2,18243.1,0],[[984,2],[1013,2]]], [999,[20637.5,16449,3.8147e-007],[[985,2],[1014,2],[1015,2],[1016,2],[1017,2]]], [1000,[21459.7,16368.5,0],[[986,2],[1018,2]]], [1001,[21468.5,16491.4,-6.35783e-007],[[986,2],[990,2],[1019,2]]], +[1002,[21285.6,16321,4.76837e-007],[[986,2],[1020,2],[1003,2],[1021,2],[1022,2]]], [1003,[21380.9,16290.2,0],[[986,2],[1002,2],[1020,2]]], [1004,[20276.9,16895.6,3.8147e-006],[[988,2],[1023,2]]], [1005,[20170.1,16794.6,0],[[988,2],[1024,2]]], [1006,[22008.6,16678.6,0],[[991,2],[1025,2],[1026,2]]], [1007,[20311.1,17494.4,9.53674e-007],[[992,2],[1027,2],[1007,2],[1028,2]]], +[1008,[22844.7,16710.8,-4.76837e-007],[[993,2],[1029,2]]], [1009,[22511.4,16858.3,9.53674e-007],[[994,2],[1030,2]]], [1010,[20155.3,19935.8,0],[[995,2],[1031,2]]], [1011,[20151,19310.8,0],[[996,2],[1032,2]]], [1012,[20220.5,18053,0],[[997,2],[1033,2]]], [1013,[19603.9,18201.9,0],[[998,2],[1034,2]]], +[1014,[20457.6,16314.5,0],[[999,2],[1035,2]]], [1015,[20478.5,16445.3,-1.90735e-006],[[999,2],[1036,2]]], [1016,[20864.9,16419.8,-3.8147e-006],[[999,2],[1037,2]]], [1017,[20598.9,16308.3,0],[[999,2],[1038,2]]], [1018,[21484.9,16348.9,-6.35783e-007],[[1000,2],[1039,2],[1019,2],[1040,2]]], [1019,[21505.7,16414.5,0],[[1001,2],[1018,2],[1040,2],[1041,2]]], +[1020,[21354.7,16261.6,0],[[1002,2],[1003,2],[1022,2],[1042,2],[1020,2],[1043,2]]], [1021,[21223.8,16327.2,0],[[1002,2],[1037,2],[1022,2]]], [1022,[21259.8,16275,7.62939e-007],[[1002,2],[1020,2],[1021,2],[1044,2],[1045,2]]], [1023,[20199.6,17016.1,3.8147e-006],[[1004,2],[1046,2]]], [1024,[20041.8,16770.8,0],[[1005,2],[1047,2]]], [1025,[21873.3,16588.7,0],[[1006,2],[1048,2]]], +[1026,[22139.7,16688.4,-1.90735e-006],[[1006,2],[1049,2]]], [1027,[20276.6,17639.4,-1.27157e-006],[[1007,2],[1050,2],[1051,2]]], [1028,[20223.1,17467.6,0],[[1007,2],[1052,2]]], [1029,[22955.6,16713.6,0],[[1008,2],[1053,2]]], [1030,[22400.8,16774.3,0],[[1009,2],[1054,2]]], [1031,[20165.5,19946.8,-6.35783e-007],[[1010,2],[1055,2],[1056,2]]], +[1032,[20021.2,19312.4,0],[[1011,2],[1057,2]]], [1033,[20300.9,17925.8,0],[[1012,2],[1051,2]]], [1034,[19492.9,18106.7,0],[[1013,2],[1058,2]]], [1035,[20341.7,16224.9,0],[[1014,2],[1059,2]]], [1036,[20354.9,16456.3,0],[[1015,2],[1060,2]]], [1037,[21009.5,16374.2,0],[[1016,2],[1021,2]]], +[1038,[20619.6,16206.1,0],[[1017,2],[1061,2]]], [1039,[21507.9,16366.9,0],[[1018,2],[1062,2]]], [1040,[21524.5,16314.2,1.90735e-006],[[1018,2],[1019,2],[1063,2]]], [1041,[21624.1,16482.1,0],[[1019,2],[1048,2]]], [1042,[21375.2,16196.7,-1.43051e-006],[[1020,2],[1064,2],[1065,2]]], [1043,[21432.2,16223.5,6.35783e-007],[[1020,2],[1043,2],[1063,2]]], +[1044,[21189.9,16252.9,1.90735e-006],[[1044,2]]], [1045,[21258.5,16115.5,-1.90735e-006],[[1022,2],[1066,2]]], [1046,[20123,17104.1,0],[[1023,2],[1067,2]]], [1047,[19970.5,16770.8,0],[[1024,2],[1068,2]]], [1048,[21709.6,16517.6,0],[[1025,2],[1041,2]]], [1049,[22242.2,16662.1,0],[[1026,2],[1069,2]]], +[1050,[20169.2,17716.7,0],[[1027,2],[1070,2]]], [1051,[20345.9,17759.1,0],[[1027,2],[1033,2]]], [1052,[20156.8,17467.8,0],[[1028,2],[1071,2]]], [1053,[23058.5,16725.3,0],[[1029,2],[1072,2]]], [1054,[22320.7,16744.9,0],[[1030,2],[1069,2]]], [1055,[20206.8,19905.3,-6.35783e-007],[[1031,2],[1073,2],[1074,2]]], +[1056,[20119.6,20032.6,0],[[1031,2]]], [1057,[19893.9,19279,-1.90735e-006],[[1032,2],[1075,2]]], [1058,[19427.9,17981.3,0],[[1034,2],[1076,2]]], [1059,[20219.3,16123,-1.90735e-006],[[1035,2],[1077,2]]], [1060,[20219.9,16460.5,0],[[1036,2],[1078,2]]], [1061,[20625.9,16103.2,0],[[1038,2],[1079,2]]], +[1062,[21640.6,16377,0],[[1039,2],[1080,2]]], [1063,[21601,16140.8,0],[[1040,2],[1043,2],[1081,2],[1082,2]]], [1064,[21487.8,16036.9,0],[[1042,2],[1083,2]]], [1065,[21391.8,16046.1,0],[[1042,2],[1084,2]]], [1066,[21240.3,16080.9,-6.35783e-007],[[1045,2],[1087,2],[1088,2]]], [1067,[20039.8,17148.4,0],[[1046,2],[1089,2]]], +[1068,[19841.7,16738.5,0],[[1047,2],[1090,2]]], [1069,[22268.4,16663.4,0],[[1049,2],[1054,2],[1091,2]]], [1070,[20013.3,17703.9,0],[[1050,2],[1092,2]]], [1071,[20031.8,17448.4,3.8147e-006],[[1052,2],[1093,2]]], [1072,[23136.2,16716.7,0],[[1053,2],[1094,2],[1095,2]]], [1073,[20198.4,19808.8,0],[[1055,2]]], +[1074,[20291.4,20002.5,0],[[1055,2],[1096,2]]], [1075,[19767.8,19227.5,1.90735e-006],[[1057,2],[1097,2]]], [1076,[19357.1,17818.3,-3.8147e-006],[[1058,2],[1098,2]]], [1077,[20100.3,16069.6,0],[[1059,2],[1099,2]]], [1078,[20097.1,16442.6,0],[[1060,2],[1100,2]]], [1079,[20656.7,15966,1.90735e-006],[[1061,2],[1101,2]]], +[1080,[21778.6,16337.7,1.90735e-006],[[1062,2],[1102,2]]], [1081,[21667.4,15994.9,0],[[1063,2],[1103,2]]], [1082,[21744.3,16091.3,0],[[1063,2],[1104,2]]], [1083,[21596.4,15912.1,0],[[1064,2],[1105,2],[1103,2]]], [1084,[21424.8,15882.1,0],[[1065,2],[1106,2]]], [1085,[21046.3,16173,0],[[1044,2],[1086,2]]], +[1086,[20936.6,16082,0],[[1085,2],[1107,2]]], [1087,[21109.2,15944.6,0],[[1066,2],[1108,2]]], [1088,[21292.5,15941.4,9.53674e-007],[[1066,2],[1109,2]]], [1089,[19932.4,17208.5,-3.8147e-006],[[1067,2],[1110,2]]], [1090,[19688,16680.2,0],[[1068,2],[1111,2]]], [1091,[22410.7,16608,0],[[1069,2],[1112,2]]], +[1092,[19912.1,17752.5,0],[[1070,2],[1113,2]]], [1093,[19917.6,17409.8,0],[[1071,2],[1114,2]]], [1094,[23307.1,16768.4,0],[[1072,2],[1115,2]]], [1095,[23188.9,16601.7,-9.53674e-007],[[1072,2],[1116,2]]], [1096,[20394.7,20085.7,0],[[1074,2],[1117,2]]], [1097,[19657.7,19134.3,0],[[1075,2],[1118,2]]], +[1098,[19331,17701.9,0],[[1076,2],[1119,2]]], [1099,[19971.8,15974.8,1.90735e-006],[[1077,2],[1120,2]]], [1100,[19972.2,16432.3,0],[[1078,2],[1121,2]]], [1101,[20692.8,15897.5,0],[[1079,2],[1122,2],[1107,2]]], [1102,[21905.6,16325.8,0],[[1080,2],[1123,2]]], [1103,[21700.8,15847.8,0],[[1081,2],[1083,2],[1105,2]]], +[1104,[21885.4,16044.6,0],[[1082,2],[1124,2]]], [1105,[21711.4,15813,0],[[1083,2],[1103,2],[1125,2]]], [1106,[21480.2,15716.6,0],[[1084,2],[1126,2]]], [1107,[20830.6,15994.2,0],[[1086,2],[1101,2]]], [1108,[20985.2,15856.1,0],[[1087,2],[1127,2]]], [1109,[21348.9,15823.6,0],[[1088,2],[1128,2]]], +[1110,[19832.4,17252.7,0],[[1089,2],[1129,2]]], [1111,[19586.1,16603.1,-1.90735e-006],[[1090,2],[1130,2]]], [1112,[22505.9,16492.7,0],[[1091,2],[1131,2]]], [1113,[19883.6,17815.1,0],[[1092,2],[1132,2]]], [1114,[19816.9,17382.1,0],[[1093,2],[1129,2]]], [1115,[23437.9,16864.8,0],[[1094,2],[1133,2]]], +[1116,[23232,16472.1,0],[[1095,2],[1134,2]]], [1117,[20495.9,20148.1,1.90735e-006],[[1096,2],[1135,2]]], [1118,[19541,19030.9,0],[[1097,2],[1136,2]]], [1119,[19337.2,17655.2,0],[[1098,2],[1137,2],[1138,2]]], [1120,[19892.3,15853,0],[[1099,2],[1139,2]]], [1121,[19836.3,16472,0],[[1100,2],[1140,2]]], +[1122,[20598.1,15831,6.35783e-007],[[1101,2],[1141,2],[1142,2]]], [1123,[22040.8,16289.2,-9.53674e-007],[[1102,2],[1143,2]]], [1124,[22005.4,16015.1,0],[[1104,2],[1144,2]]], [1125,[21816.2,15638.2,0],[[1105,2],[1145,2]]], [1126,[21570.2,15560,0],[[1106,2],[1146,2]]], [1127,[20875.9,15766.7,0],[[1108,2],[1147,2]]], +[1128,[21302.6,15652.2,0],[[1109,2],[1148,2]]], [1129,[19722.4,17310.5,1.27157e-006],[[1110,2],[1114,2],[1149,2]]], [1130,[19550.6,16522.5,0],[[1111,2],[1150,2],[1140,2]]], [1131,[22539.6,16466,0],[[1112,2]]], [1132,[19793.8,17815.3,0],[[1113,2],[1151,2]]], [1133,[23568.1,16904.4,9.53674e-007],[[1115,2],[1152,2]]], +[1134,[23315.4,16342.9,0],[[1116,2],[1153,2]]], [1135,[20597,20244.5,0],[[1117,2],[1154,2]]], [1136,[19418.9,18893.9,0],[[1118,2],[1155,2]]], [1137,[19284.1,17619.4,-1.27157e-006],[[1119,2],[1156,2],[1157,2]]], [1138,[19487.3,17764.5,0],[[1119,2],[1158,2]]], [1139,[19845.4,15716,0],[[1120,2],[1159,2]]], +[1140,[19719.1,16516.2,0],[[1121,2],[1130,2]]], [1141,[20453.9,15773.5,0],[[1122,2],[1160,2]]], [1142,[20655.6,15732.6,0],[[1122,2],[1147,2]]], [1143,[22119.6,16252.6,0],[[1123,2],[1161,2]]], [1144,[22153.3,15970.9,-9.53674e-007],[[1124,2],[1162,2]]], [1145,[21886.1,15528.8,0],[[1125,2],[1163,2],[1164,2],[1165,2]]], +[1146,[21580.8,15542,0],[[1126,2],[1166,2],[1163,2]]], [1147,[20776.5,15654.2,4.76837e-007],[[1127,2],[1142,2],[1167,2],[1168,2]]], [1148,[21272.2,15505.4,0],[[1128,2],[1169,2]]], [1149,[19608,17207.7,0],[[1129,2],[1170,2]]], [1150,[19442.5,16556.8,0],[[1130,2],[1171,2]]], [1151,[19686.1,17798,0],[[1132,2],[1172,2]]], +[1152,[23682.4,17005.6,-9.53674e-007],[[1133,2],[1173,2]]], [1153,[23310.1,16192.3,0],[[1134,2],[1174,2]]], [1154,[20717.8,20352.1,0],[[1135,2],[1154,2]]], [1155,[19381.9,18768.9,0],[[1136,2],[1175,2]]], [1156,[19245,17726.5,0],[[1137,2],[1176,2]]], [1157,[19253.6,17495.5,0],[[1137,2],[1177,2]]], +[1158,[19570.3,17796.6,0],[[1138,2],[1172,2]]], [1159,[19745.1,15620.9,2.38419e-007],[[1139,2],[1178,2],[1179,2],[1180,2]]], [1160,[20339.5,15745.2,0],[[1141,2],[1181,2]]], [1161,[22242.6,16248.3,0],[[1143,2],[1182,2]]], [1162,[22307.7,15918.1,0],[[1144,2],[1183,2],[1184,2],[1185,2]]], [1163,[21750.7,15504.4,0],[[1145,2],[1146,2]]], +[1164,[22046.3,15390.6,0],[[1145,2],[1186,2]]], [1165,[21967,15649.9,9.53674e-007],[[1145,2],[1187,2]]], [1166,[21448,15473.4,0],[[1146,2],[1169,2]]], [1167,[20670.5,15544.2,0],[[1147,2],[1188,2]]], [1168,[20926.5,15578.6,0],[[1147,2],[1189,2]]], [1169,[21263.2,15486.5,-2.38419e-007],[[1148,2],[1166,2],[1190,2],[1191,2]]], +[1170,[19511.8,17134.8,0],[[1149,2],[1192,2]]], [1171,[19294.5,16565.4,-1.90735e-006],[[1150,2],[1193,2]]], [1172,[19596.5,17814.8,0],[[1151,2],[1158,2]]], [1173,[23728.5,17039.5,0],[[1152,2]]], [1174,[23178.6,16095,0],[[1153,2],[1194,2]]], [1175,[19401.1,18675.4,0],[[1155,2],[1195,2]]], +[1176,[19218.4,17855.5,3.8147e-006],[[1156,2],[1196,2]]], [1177,[19219.6,17395.1,0],[[1157,2],[1197,2]]], [1178,[19836.7,15593,0],[[1159,2],[1198,2]]], [1179,[19695.4,15707.2,0],[[1159,2],[1199,2]]], [1180,[19610.1,15489,0],[[1159,2],[1200,2]]], [1181,[20235.7,15701.1,0],[[1160,2],[1201,2]]], +[1182,[22382,16203.7,-3.17891e-007],[[1161,2],[1185,2],[1202,2]]], [1183,[22198.7,15784.8,0],[[1162,2],[1187,2]]], [1184,[22482.7,15843.9,9.53674e-007],[[1162,2],[1203,2]]], [1185,[22345.5,16090.8,0],[[1162,2],[1182,2]]], [1186,[22121.5,15269.7,0],[[1164,2],[1204,2]]], [1187,[22092.4,15724.1,0],[[1165,2],[1183,2]]], +[1188,[20572.2,15474.8,0],[[1167,2],[1205,2]]], [1189,[21035.3,15504.8,-9.53674e-007],[[1168,2],[1191,2]]], [1190,[21233.5,15422,0],[[1169,2]]], [1191,[21123.8,15482.2,0],[[1169,2],[1189,2]]], [1192,[19389,17085,-1.90735e-006],[[1170,2],[1206,2]]], [1193,[19173.1,16575.5,0],[[1171,2],[1207,2]]], +[1194,[23076,16055.9,-9.53674e-007],[[1174,2],[1208,2]]], [1195,[19379.5,18526.5,1.90735e-006],[[1175,2],[1209,2]]], [1196,[19233.4,18020.7,3.8147e-006],[[1176,2],[1210,2]]], [1197,[19196.2,17233.7,3.8147e-006],[[1177,2],[1211,2]]], [1198,[19945.4,15639.4,0],[[1178,2],[1201,2]]], [1199,[19632,15802.8,0],[[1179,2],[1212,2]]], +[1200,[19499.5,15411.6,0],[[1180,2],[1213,2],[1214,2]]], [1201,[20090.7,15665.2,-9.53674e-007],[[1181,2],[1198,2]]], [1202,[22466.4,16300.3,0],[[1182,2]]], [1203,[22612.1,15814.7,-2.38419e-007],[[1184,2],[1215,2],[1216,2],[1217,2]]], [1204,[22134.3,15259.3,0],[[1186,2],[1218,2],[1204,2],[1219,2]]], [1205,[20465.9,15389.3,9.53674e-007],[[1188,2],[1220,2]]], +[1206,[19266.4,17006.3,-1.90735e-006],[[1192,2],[1221,2]]], [1207,[19152.7,16577,0],[[1193,2],[1222,2],[1223,2]]], [1208,[22961.6,16056.5,-9.53674e-007],[[1194,2],[1224,2]]], [1209,[19360.3,18394.1,0],[[1195,2],[1225,2]]], [1210,[19266.4,18106.2,-3.8147e-006],[[1196,2],[1226,2]]], [1211,[19179.3,17090.5,0],[[1197,2],[1227,2]]], +[1212,[19503.1,15882.1,0],[[1199,2],[1228,2]]], [1213,[19385.2,15323.6,0],[[1200,2],[1229,2]]], [1214,[19585,15324.3,2.38419e-007],[[1200,2],[1230,2],[1214,2],[1231,2]]], [1215,[22613.8,15734,0],[[1203,2],[1232,2]]], [1216,[22775.6,15791.2,0],[[1203,2],[1233,2]]], [1217,[22699,15931.9,0],[[1203,2],[1224,2]]], +[1218,[22208.9,15259.1,0],[[1204,2],[1234,2],[1235,2]]], [1219,[22029.2,15157.9,0],[[1204,2],[1236,2]]], [1220,[20398.5,15293,0],[[1205,2],[1237,2]]], [1221,[19168.7,16924.9,1.90735e-006],[[1206,2],[1238,2],[1227,2]]], [1222,[19012.3,16630.4,0],[[1207,2],[1239,2]]], [1223,[19048.7,16501.5,1.90735e-006],[[1207,2],[1240,2]]], +[1224,[22833.3,16006.1,0],[[1208,2],[1217,2]]], [1225,[19345.2,18264.5,0],[[1209,2],[1226,2]]], [1226,[19306.6,18190.8,1.27157e-006],[[1210,2],[1225,2],[1241,2]]], [1227,[19120.7,16951.7,0],[[1211,2],[1221,2],[1238,2]]], [1228,[19416,15986.1,0],[[1212,2],[1242,2]]], [1229,[19372,15305.1,6.35783e-007],[[1213,2],[1243,2],[1244,2]]], +[1230,[19748.5,15318.9,0],[[1214,2],[1245,2]]], [1231,[19657.3,15163.6,0],[[1214,2],[1246,2]]], [1232,[22551.8,15637.8,0],[[1215,2],[1247,2]]], [1233,[22912,15798,0],[[1216,2],[1248,2]]], [1234,[22282.6,15167,0],[[1218,2],[1249,2]]], [1235,[22310,15350.3,-4.76837e-007],[[1218,2],[1250,2]]], +[1236,[21900.6,15084,0],[[1219,2],[1251,2]]], [1237,[20395.4,15267.4,0],[[1220,2],[1252,2],[1253,2]]], [1238,[19102.6,16904.9,-1.90735e-006],[[1221,2],[1227,2],[1254,2]]], [1239,[18925.8,16643.4,-6.35783e-007],[[1222,2],[1254,2],[1255,2]]], [1240,[18985.5,16468.4,-6.35783e-007],[[1223,2],[1256,2],[1257,2]]], [1241,[19232.3,18259,0],[[1226,2],[1258,2]]], +[1242,[19354.9,16094.3,0],[[1228,2],[1259,2]]], [1243,[19230.2,15201.3,0],[[1229,2],[1260,2]]], [1244,[19412.3,15206.3,0],[[1229,2],[1261,2]]], [1245,[19888.3,15319,9.53674e-007],[[1230,2],[1262,2]]], [1246,[19743.1,15054.5,0],[[1231,2],[1263,2],[1264,2]]], [1247,[22561.3,15524.9,1.19209e-007],[[1232,2],[1247,2],[1250,2],[1265,2]]], +[1248,[22966.5,15777.2,-7.94729e-008],[[1233,2],[1266,2],[1267,2]]], [1249,[22288,15026.2,-2.38419e-007],[[1234,2],[1268,2]]], [1250,[22422.7,15422.7,-4.76837e-007],[[1235,2],[1247,2]]], [1251,[21765.3,14969.4,0],[[1236,2],[1251,2]]], [1252,[20377.8,15110.7,0],[[1237,2],[1269,2]]], [1253,[20283.7,15277.8,0],[[1237,2],[1270,2]]], +[1254,[18987.8,16732.5,0],[[1238,2],[1239,2]]], [1255,[18839.5,16658.7,-6.35783e-007],[[1239,2],[1271,2],[1272,2]]], [1256,[19098.9,16371.4,0],[[1240,2],[1273,2]]], [1257,[18905,16511.1,-1.43051e-006],[[1240,2],[1257,2],[1272,2],[1274,2]]], [1258,[19137.3,18264.8,0],[[1241,2],[1275,2]]], [1259,[19258.8,16186.3,0],[[1242,2],[1273,2]]], +[1260,[19095.9,15127.8,0],[[1243,2],[1276,2]]], [1261,[19410.5,15094,0],[[1244,2],[1277,2]]], [1262,[20011,15325.3,0],[[1245,2],[1270,2]]], [1263,[19883.4,15015.6,0],[[1246,2],[1278,2]]], [1264,[19747.8,14862.6,0],[[1246,2],[1279,2]]], [1265,[22695.4,15627.2,0],[[1247,2],[1267,2]]], +[1266,[23152.2,15827.1,-2.38419e-007],[[1248,2],[1280,2]]], [1267,[22827.5,15702,2.38419e-007],[[1248,2],[1265,2]]], [1268,[22251.4,14883.3,0],[[1249,2],[1281,2]]], [1269,[20335.1,14968.4,9.53674e-007],[[1252,2],[1282,2]]], [1270,[20111.5,15304.1,0],[[1253,2],[1262,2]]], [1271,[18758.5,16841.7,0],[[1255,2],[1283,2]]], +[1272,[18820.2,16603.2,0],[[1255,2],[1257,2],[1274,2],[1284,2]]], [1273,[19204.3,16253.5,0],[[1256,2],[1259,2]]], [1274,[18811.9,16501.4,-4.76837e-007],[[1257,2],[1272,2],[1285,2],[1286,2]]], [1275,[19023.7,18284.8,0],[[1258,2],[1287,2]]], [1276,[18972.2,15060.7,0],[[1260,2],[1288,2]]], [1277,[19402.6,15026,0],[[1261,2],[1289,2]]], +[1278,[20012,15004.6,0],[[1263,2],[1290,2]]], [1279,[19718.6,14735.7,0],[[1264,2],[1291,2]]], [1280,[23295.7,15863.7,0],[[1266,2],[1292,2]]], [1281,[22246.8,14734.8,0],[[1268,2],[1293,2]]], [1282,[20300.5,14843,0],[[1269,2],[1294,2]]], [1283,[18722.5,16906.5,0],[[1271,2],[1295,2],[1296,2]]], +[1284,[18763.5,16654.4,0],[[1272,2],[1297,2],[1298,2],[1295,2]]], [1285,[18806.3,16304.7,0],[[1274,2],[1299,2]]], [1286,[18700.1,16575.9,0],[[1274,2],[1300,2],[1297,2]]], [1287,[18949.6,18159.1,0],[[1275,2],[1301,2]]], [1288,[18809.2,14966.2,0],[[1276,2],[1302,2]]], [1289,[19371.5,14944.4,1.90735e-006],[[1277,2],[1303,2]]], +[1290,[20065.9,14911.7,0],[[1278,2],[1304,2]]], [1291,[19748.8,14643.6,0],[[1279,2],[1305,2]]], [1292,[23436.6,15886.5,0],[[1280,2],[1306,2]]], [1293,[22250.6,14605.1,2.38419e-007],[[1281,2],[1307,2]]], [1294,[20279,14774.5,0],[[1282,2],[1308,2],[1309,2],[1304,2]]], [1295,[18666.4,16818.6,0],[[1283,2],[1284,2],[1310,2],[1298,2],[1311,2]]], +[1296,[18603.2,17081.6,0],[[1283,2],[1312,2]]], [1297,[18732.1,16624.6,9.53674e-007],[[1284,2],[1286,2],[1297,2],[1313,2],[1300,2]]], [1298,[18708.1,16745,0],[[1284,2],[1295,2],[1314,2],[1298,2]]], [1299,[18799.4,16169.2,-3.8147e-006],[[1285,2],[1315,2]]], [1300,[18675.9,16585.5,0],[[1286,2],[1297,2],[1316,2],[1317,2]]], [1301,[18916.7,18022.4,-1.90735e-006],[[1287,2],[1318,2]]], +[1302,[18680.2,14923,6.35783e-007],[[1288,2],[1319,2],[1320,2]]], [1303,[19346,14872.9,0],[[1289,2],[1321,2]]], [1304,[20124.9,14819.9,0],[[1290,2],[1294,2],[1322,2]]], [1305,[19690.2,14510.8,1.90735e-006],[[1291,2],[1323,2]]], [1306,[23577.3,15857.6,0],[[1292,2],[1324,2]]], [1307,[22244.4,14578.8,7.94729e-008],[[1293,2],[1325,2],[1326,2]]], +[1308,[20412.8,14670.5,0],[[1294,2],[1327,2]]], [1309,[20167.8,14789.8,0],[[1294,2],[1328,2]]], [1310,[18559.1,16976,0],[[1295,2],[1329,2]]], [1311,[18567.5,16831.4,0],[[1295,2],[1330,2]]], [1312,[18590.3,17097.8,1.27157e-006],[[1296,2],[1331,2],[1329,2]]], [1313,[18763.9,16587.3,1.90735e-006],[[1297,2]]], +[1314,[18717,16742.9,-9.53674e-007],[[1298,2],[1316,2]]], [1315,[18777.9,16023.8,3.8147e-006],[[1299,2],[1332,2]]], [1316,[18657.8,16626.1,0],[[1300,2],[1314,2],[1316,2]]], [1317,[18527.4,16516.2,0],[[1300,2],[1333,2]]], [1318,[18798.5,17948.5,0],[[1301,2],[1334,2]]], [1319,[18567.4,14843.5,0],[[1302,2],[1335,2]]], +[1320,[18533.7,15020.4,0],[[1302,2],[1336,2]]], [1321,[19312.7,14738.4,0],[[1303,2],[1337,2]]], [1322,[20143.6,14796.2,9.53674e-007],[[1304,2]]], [1323,[19616.8,14413.3,-1.90735e-006],[[1305,2],[1338,2]]], [1324,[23710,15850.2,0],[[1306,2],[1339,2],[1340,2]]], [1325,[22277.2,14403.5,0],[[1307,2],[1341,2]]], +[1326,[22179.9,14541.8,7.94729e-008],[[1307,2],[1342,2],[1343,2]]], [1327,[20489.7,14594.3,0],[[1308,2],[1344,2]]], [1328,[20222,14669.9,0],[[1309,2],[1345,2]]], [1329,[18514.9,17045.9,6.35783e-007],[[1310,2],[1312,2],[1346,2]]], [1330,[18471.7,16853.3,0],[[1311,2],[1347,2]]], [1331,[18457.7,17249,0],[[1312,2],[1348,2]]], +[1332,[18742.3,15889.7,0],[[1315,2],[1349,2]]], [1333,[18418.5,16459.7,-3.8147e-006],[[1317,2],[1350,2]]], [1334,[18659.2,17925.5,0],[[1318,2],[1351,2]]], [1335,[18498.9,14785.2,4.76837e-007],[[1319,2],[1352,2],[1353,2],[1354,2]]], [1336,[18415.7,15055.3,0],[[1320,2],[1355,2]]], [1337,[19354.4,14651.4,0],[[1321,2],[1356,2]]], +[1338,[19507.8,14343.1,0],[[1323,2],[1357,2]]], [1339,[23862.5,15902.1,0],[[1324,2],[1358,2]]], [1340,[23824.5,15725.8,0],[[1324,2],[1359,2]]], [1341,[22297.6,14313.5,-5.96046e-008],[[1325,2],[1360,2],[1341,2],[1361,2]]], [1342,[22108.8,14481.6,0],[[1326,2],[1343,2]]], [1343,[22169.6,14385.9,0],[[1326,2],[1342,2]]], +[1344,[20569.1,14508.6,0],[[1327,2],[1362,2]]], [1345,[20263.4,14572.4,9.53674e-007],[[1328,2],[1363,2]]], [1346,[18436.9,17171.4,0],[[1329,2],[1348,2]]], [1347,[18433.4,16851.7,0],[[1330,2]]], [1348,[18394.1,17299.1,0],[[1331,2],[1346,2],[1364,2]]], [1349,[18622.9,15786.2,0],[[1332,2],[1365,2]]], +[1350,[18295.5,16391.4,0],[[1333,2],[1366,2]]], [1351,[18519.4,17958.9,0],[[1334,2],[1367,2]]], [1352,[18338.6,14706.6,-1.90735e-006],[[1335,2],[1368,2]]], [1353,[18525.8,14645.6,0],[[1335,2],[1369,2]]], [1354,[18635.2,14732.1,0],[[1335,2],[1370,2]]], [1355,[18267.3,15103.4,1.90735e-006],[[1336,2],[1371,2]]], +[1356,[19333.5,14534.9,0],[[1337,2],[1372,2]]], [1357,[19416.7,14279.5,6.35783e-007],[[1338,2],[1373,2],[1374,2]]], [1358,[23945.6,15994.2,4.76837e-007],[[1339,2],[1375,2]]], [1359,[23907.3,15597,0],[[1340,2],[1376,2]]], [1360,[22354,14164.7,-2.38419e-007],[[1341,2],[1377,2]]], [1361,[22160.4,14291.5,0],[[1341,2],[1378,2]]], +[1362,[20642.4,14420.2,0],[[1344,2],[1379,2]]], [1363,[20344,14447.1,0],[[1345,2],[1380,2]]], [1364,[18274.3,17486.9,1.90735e-006],[[1348,2],[1381,2]]], [1365,[18550.7,15681.5,-3.8147e-006],[[1349,2],[1382,2]]], [1366,[18274.5,16380.1,1.27157e-006],[[1350,2],[1383,2],[1384,2]]], [1367,[18394.3,17967,0],[[1351,2],[1385,2]]], +[1368,[18229.1,14600.8,0],[[1352,2],[1386,2]]], [1369,[18637.5,14552.6,-3.8147e-006],[[1353,2],[1387,2]]], [1370,[18761.8,14663.2,0],[[1354,2],[1388,2]]], [1371,[18185.9,15109.1,4.76837e-007],[[1355,2],[1389,2],[1390,2],[1391,2]]], [1372,[19300.8,14429,0],[[1356,2],[1374,2]]], [1373,[19486,14191.3,0],[[1357,2],[1373,2],[1392,2]]], +[1374,[19281.1,14346.6,0],[[1357,2],[1372,2],[1393,2],[1394,2]]], [1375,[24008.3,16107.6,0],[[1358,2],[1395,2]]], [1376,[23992.2,15478.3,-9.53674e-007],[[1359,2],[1376,2]]], [1377,[22403.5,14029.4,0],[[1360,2],[1396,2]]], [1378,[22000.6,14280.3,0],[[1361,2],[1397,2]]], [1379,[20690.5,14308.7,-9.53674e-007],[[1362,2],[1398,2]]], +[1380,[20418.6,14311.6,0],[[1363,2],[1399,2]]], [1381,[18189.2,17608.4,0],[[1364,2],[1400,2]]], [1382,[18514.6,15604.1,0],[[1365,2],[1401,2],[1402,2]]], [1383,[18083.9,16309.1,0],[[1366,2],[1403,2]]], [1384,[18311.4,16261.8,0],[[1366,2],[1404,2]]], [1385,[18316.7,17868.4,0],[[1367,2],[1400,2]]], +[1386,[18189.8,14578.5,-7.62939e-007],[[1368,2],[1405,2],[1386,2],[1406,2],[1407,2]]], [1387,[18668.7,14466.5,0],[[1369,2],[1408,2]]], [1388,[18892.4,14553.2,0],[[1370,2],[1409,2]]], [1389,[18046.5,15126.8,0],[[1371,2],[1410,2],[1411,2]]], [1390,[18188,15223.5,-9.53674e-007],[[1371,2],[1412,2],[1410,2],[1413,2],[1414,2]]], [1391,[18170,14968.2,-1.90735e-006],[[1371,2],[1415,2]]], +[1392,[19507.6,14108,0],[[1373,2],[1416,2]]], [1393,[19318.1,14184.3,0],[[1374,2],[1417,2]]], [1394,[19166.3,14451,0],[[1374,2],[1409,2]]], [1395,[24111.1,16163.1,0],[[1375,2]]], [1396,[22450.1,13891.2,0],[[1377,2],[1418,2]]], [1397,[21864.9,14226.8,-9.53674e-007],[[1378,2],[1419,2]]], +[1398,[20792,14248.6,9.53674e-007],[[1379,2],[1420,2]]], [1399,[20476.7,14178.9,0],[[1380,2],[1421,2]]], [1400,[18096.1,17716.8,-4.76837e-007],[[1381,2],[1385,2],[1422,2],[1423,2]]], [1401,[18413.1,15487.9,0],[[1382,2],[1424,2]]], [1402,[18370.4,15641.7,0],[[1382,2],[1425,2]]], [1403,[17972.1,16257.1,0],[[1383,2],[1426,2]]], +[1404,[18425.1,16216.5,0],[[1384,2],[1427,2]]], [1405,[18032.5,14440.7,0],[[1386,2],[1428,2]]], [1406,[18143.8,14743,0],[[1386,2],[1415,2]]], [1407,[18223.6,14429.1,0],[[1386,2],[1429,2]]], [1408,[18743.5,14373.5,0],[[1387,2],[1430,2]]], [1409,[19001.4,14523.3,0],[[1388,2],[1394,2]]], +[1410,[18082.6,15189.8,0],[[1389,2],[1390,2],[1412,2],[1431,2]]], [1411,[17957.9,15084.1,-9.53674e-007],[[1389,2],[1432,2],[1433,2],[1434,2]]], [1412,[18142.3,15217.5,0],[[1390,2],[1410,2],[1431,2]]], [1413,[18161.4,15339.8,0],[[1390,2],[1435,2],[1436,2],[1413,2],[1414,2]]], [1414,[18264.8,15254.8,0],[[1390,2],[1413,2],[1437,2]]], [1415,[18124.9,14812.3,1.90735e-006],[[1391,2],[1406,2]]], +[1416,[19508.3,14065.3,6.35783e-007],[[1392,2],[1438,2],[1439,2]]], [1417,[19311.5,14028.5,0],[[1393,2],[1440,2]]], [1418,[22464.8,13841.2,0],[[1396,2],[1441,2],[1418,2],[1442,2]]], [1419,[21793.6,14101.4,0],[[1397,2],[1443,2]]], [1420,[20922.1,14217.1,9.53674e-007],[[1398,2],[1444,2]]], [1421,[20516.8,14057,0],[[1399,2],[1445,2]]], +[1422,[17930.1,17727.9,9.53674e-007],[[1400,2],[1446,2]]], [1423,[17988.4,17857.2,0],[[1400,2],[1447,2]]], [1424,[18397.3,15365.6,0],[[1401,2],[1437,2]]], [1425,[18239.6,15609.8,3.8147e-006],[[1402,2],[1448,2]]], [1426,[17832.8,16203.8,-1.90735e-006],[[1403,2],[1449,2]]], [1427,[18398,16139.7,3.8147e-006],[[1404,2],[1450,2]]], +[1428,[17967.3,14334.9,2.38419e-007],[[1405,2],[1451,2],[1452,2],[1453,2]]], [1429,[18180.7,14295,0],[[1407,2],[1454,2],[1452,2]]], [1430,[18749.3,14342.7,0],[[1408,2]]], [1431,[18107.3,15237.7,0],[[1410,2],[1412,2],[1435,2]]], [1432,[17964.4,15190.4,0],[[1411,2],[1455,2],[1435,2],[1456,2]]], [1433,[17907.8,14929.1,-9.53674e-007],[[1411,2],[1457,2]]], +[1434,[17763.8,15008.5,0],[[1411,2],[1458,2]]], [1435,[18096.3,15303.1,0],[[1413,2],[1431,2],[1432,2],[1459,2],[1460,2]]], [1436,[18125.8,15372.3,0],[[1413,2]]], [1437,[18303.1,15289.2,0],[[1414,2],[1424,2],[1461,2]]], [1438,[19641.4,14144.5,9.53674e-007],[[1416,2],[1462,2]]], [1439,[19487,13892.8,0],[[1416,2],[1463,2]]], +[1440,[19293.1,13895.1,1.90735e-006],[[1417,2],[1464,2]]], [1441,[22601.8,13733.4,0],[[1418,2],[1465,2]]], [1442,[22321.8,13825.2,0],[[1418,2],[1466,2]]], [1443,[21809.8,13994.1,0],[[1419,2],[1467,2],[1468,2]]], [1444,[21050.1,14295.2,0],[[1420,2],[1469,2]]], [1445,[20617.1,13954.7,1.90735e-006],[[1421,2],[1470,2]]], +[1446,[17795.9,17820.9,0],[[1422,2],[1471,2]]], [1447,[17910.1,17974.9,0],[[1423,2],[1472,2]]], [1448,[18168.1,15581,1.90735e-006],[[1425,2],[1473,2],[1448,2],[1474,2]]], [1449,[17717.8,16106.5,0],[[1426,2],[1475,2]]], [1450,[18331.4,16019.3,0],[[1427,2],[1476,2]]], [1451,[17883.2,14147.4,0],[[1428,2],[1477,2]]], +[1452,[18120.9,14226.5,0],[[1428,2],[1429,2],[1454,2]]], [1453,[17822.9,14397.2,0],[[1428,2],[1478,2]]], [1454,[18187.5,14202.3,-7.15256e-007],[[1429,2],[1452,2],[1479,2],[1480,2]]], [1455,[18016.6,15254,-4.76837e-007],[[1432,2],[1455,2],[1481,2]]], [1456,[17918.9,15278.1,0],[[1432,2]]], [1457,[17844.4,14828.6,0],[[1433,2],[1482,2]]], +[1458,[17586.6,14990.7,-1.90735e-006],[[1434,2],[1483,2]]], [1459,[18083,15383.7,2.54313e-006],[[1435,2],[1459,2],[1484,2]]], [1460,[18015.8,15308.5,0],[[1435,2]]], [1461,[18280.1,15332.4,0],[[1437,2]]], [1462,[19766.2,14170.8,0],[[1438,2],[1485,2]]], [1463,[19447,13753,-1.90735e-006],[[1439,2],[1486,2]]], +[1464,[19249.6,13755.4,0],[[1440,2],[1487,2]]], [1465,[22744.3,13763.7,0],[[1441,2],[1488,2]]], [1466,[22157.3,13832.9,0],[[1442,2],[1489,2]]], [1467,[21653.5,14021.5,-3.17891e-007],[[1443,2],[1490,2],[1491,2]]], [1468,[21942.7,13915.8,0],[[1443,2],[1489,2]]], [1469,[21197.3,14300.6,1.90735e-006],[[1444,2],[1492,2]]], +[1470,[20627.9,13938.8,1.27157e-006],[[1445,2],[1493,2],[1494,2]]], [1471,[17647.1,17856.1,0],[[1446,2],[1495,2]]], [1472,[17853.7,18099.6,0],[[1447,2],[1496,2]]], [1473,[18134.9,15552.5,0],[[1448,2],[1497,2],[1473,2],[1498,2]]], [1474,[18165.3,15644.9,0],[[1448,2],[1499,2]]], [1475,[17553,16083.8,0],[[1449,2],[1500,2]]], +[1476,[18226.3,15930.1,0],[[1450,2],[1501,2]]], [1477,[17830.7,14007.3,-9.53674e-007],[[1451,2],[1502,2]]], [1478,[17710.5,14410.7,0],[[1453,2],[1503,2]]], [1479,[18292.8,14089.3,0],[[1454,2],[1504,2]]], [1480,[18321.6,14248.4,-1.90735e-006],[[1454,2],[1505,2]]], [1481,[17972.3,15292.6,0],[[1455,2]]], +[1482,[17757.4,14733.3,-9.53674e-007],[[1457,2],[1506,2]]], [1483,[17438.7,15033.4,0],[[1458,2],[1507,2]]], [1484,[18023.5,15516.1,0],[[1459,2],[1508,2]]], [1485,[19920,14154.2,0],[[1462,2],[1509,2]]], [1486,[19440.4,13610.3,0],[[1463,2],[1510,2]]], [1487,[19254.4,13626.1,1.90735e-006],[[1464,2],[1511,2]]], +[1488,[22789.6,13790.1,0],[[1465,2]]], [1489,[22028.5,13876.2,0],[[1466,2],[1468,2]]], [1490,[21523.3,14036.8,0],[[1467,2],[1512,2]]], [1491,[21654.9,13859.8,0],[[1467,2],[1513,2]]], [1492,[21284.8,14267.5,0],[[1469,2],[1514,2]]], [1493,[20781.1,13981.3,0],[[1470,2],[1515,2]]], +[1494,[20499.7,13881.4,0],[[1470,2],[1516,2]]], [1495,[17482.5,17909.9,9.53674e-007],[[1471,2],[1517,2]]], [1496,[17832.6,18136.8,0],[[1472,2],[1518,2],[1519,2]]], [1497,[18147.4,15539.6,0],[[1473,2],[1497,2]]], [1498,[18100,15670,0],[[1473,2],[1499,2]]], [1499,[18186.7,15693.5,0],[[1474,2],[1498,2],[1501,2],[1499,2]]], +[1500,[17416.4,16120.4,0],[[1475,2],[1520,2]]], [1501,[18175.5,15811.7,0],[[1476,2],[1499,2]]], [1502,[17739.3,13908,0],[[1477,2],[1521,2]]], [1503,[17603.2,14452.4,0],[[1478,2],[1522,2]]], [1504,[18323.7,13982.6,-4.76837e-007],[[1479,2],[1523,2],[1504,2],[1524,2]]], [1505,[18447.1,14281.6,0],[[1480,2]]], +[1506,[17679.2,14602.9,0],[[1482,2],[1522,2]]], [1507,[17277.4,15081.9,1.90735e-006],[[1483,2],[1525,2]]], [1508,[17942.5,15558.9,0],[[1484,2],[1526,2]]], [1509,[20073.6,14095.6,0],[[1485,2],[1527,2]]], [1510,[19432.9,13463.3,0],[[1486,2],[1528,2]]], [1511,[19280.5,13498.7,1.90735e-006],[[1487,2],[1529,2]]], +[1512,[21450.5,14034.1,3.17891e-007],[[1490,2],[1530,2],[1531,2]]], [1513,[21643.9,13710.1,0],[[1491,2],[1532,2]]], [1514,[21378.6,14163.6,0],[[1492,2],[1531,2]]], [1515,[20937.6,13990.7,0],[[1493,2],[1533,2]]], [1516,[20363.1,13824.1,0],[[1494,2],[1534,2]]], [1517,[17442.5,17924.7,-3.17891e-007],[[1495,2],[1535,2],[1536,2]]], +[1518,[17737.3,18093.8,0],[[1496,2],[1536,2],[1537,2]]], [1519,[17867.7,18197.6,0],[[1496,2]]], [1520,[17251.5,16124.8,1.90735e-006],[[1500,2],[1538,2]]], [1521,[17603.7,13802.7,0],[[1502,2],[1539,2]]], [1522,[17586.1,14467.1,0],[[1503,2],[1506,2],[1540,2]]], [1523,[18429,13862.5,0],[[1504,2],[1541,2]]], +[1524,[18307,13869,0],[[1504,2],[1542,2]]], [1525,[17207.3,15181.6,0],[[1507,2],[1543,2],[1544,2]]], [1526,[17832.3,15555.4,0],[[1508,2],[1545,2]]], [1527,[20143.4,14020.6,0],[[1509,2],[1546,2]]], [1528,[19429.9,13358.1,0],[[1510,2],[1547,2],[1529,2]]], [1529,[19347.9,13355.1,0],[[1511,2],[1528,2],[1547,2]]], +[1530,[21293.3,14020.2,0],[[1512,2],[1548,2]]], [1531,[21423,14125.8,0],[[1512,2],[1514,2]]], [1532,[21630.9,13557.6,0],[[1513,2],[1549,2]]], [1533,[21100.5,14016.4,0],[[1515,2],[1548,2]]], [1534,[20324.9,13808,0],[[1516,2],[1550,2],[1551,2],[1552,2]]], [1535,[17248,17904.3,0],[[1517,2],[1553,2]]], +[1536,[17617.8,18006.2,0],[[1517,2],[1518,2]]], [1537,[17595.4,18174,0],[[1518,2],[1554,2]]], [1538,[17086.9,16122.8,0],[[1520,2],[1555,2]]], [1539,[17486.9,13736.3,0],[[1521,2],[1556,2]]], [1540,[17501.1,14378.9,0],[[1522,2],[1557,2],[1558,2]]], [1541,[18525.9,13729.6,0],[[1523,2],[1559,2]]], +[1542,[18317,13769.4,1.90735e-006],[[1524,2],[1560,2]]], [1543,[17148.2,15335.3,1.90735e-006],[[1525,2],[1561,2]]], [1544,[17299.9,15163.6,0],[[1525,2],[1562,2]]], [1545,[17732.7,15498.9,0],[[1526,2],[1563,2]]], [1546,[20207.3,13992.1,0],[[1527,2],[1550,2]]], [1547,[19365.9,13328.4,0],[[1528,2],[1529,2],[1564,2],[1565,2]]], +[1548,[21167.4,14026.5,0],[[1530,2],[1533,2]]], [1549,[21626.1,13415.5,-1.90735e-006],[[1532,2],[1566,2]]], [1550,[20245.8,13947.8,1.90735e-006],[[1534,2],[1546,2]]], [1551,[20496.7,13719,1.90735e-006],[[1534,2],[1567,2]]], [1552,[20086.3,13742.3,0],[[1534,2],[1568,2]]], [1553,[17104.6,17868.2,0],[[1535,2],[1569,2]]], +[1554,[17482.2,18284.5,-2.38419e-007],[[1537,2],[1570,2]]], [1555,[16953.7,16137.5,1.90735e-006],[[1538,2],[1571,2]]], [1556,[17421.6,13715.8,1.58946e-007],[[1539,2],[1572,2],[1573,2]]], [1557,[17453.8,14212,0],[[1540,2],[1574,2]]], [1558,[17413.5,14526.2,0],[[1540,2],[1575,2]]], [1559,[18623.4,13627.9,0],[[1541,2],[1576,2]]], +[1560,[18337.4,13646.8,0],[[1542,2],[1577,2],[1578,2]]], [1561,[17022.5,15377.1,0],[[1543,2],[1579,2]]], [1562,[17383.3,15246.3,3.8147e-006],[[1544,2],[1580,2]]], [1563,[17669.5,15412.5,0],[[1545,2],[1581,2]]], [1564,[19314.5,13316.7,0],[[1547,2],[1582,2],[1583,2],[1565,2]]], [1565,[19408.7,13251.6,1.90735e-006],[[1547,2],[1564,2],[1583,2],[1584,2],[1585,2]]], +[1566,[21651,13317.8,0],[[1549,2],[1586,2]]], [1567,[20603.3,13605.4,0],[[1551,2],[1587,2]]], [1568,[19927.6,13642.8,0],[[1552,2],[1588,2]]], [1569,[16944.1,17808.2,0],[[1553,2],[1589,2]]], [1570,[17387.8,18420,0],[[1554,2],[1590,2]]], [1571,[16859.8,16158.5,6.35783e-007],[[1555,2],[1591,2],[1592,2]]], +[1572,[17409.4,13883.6,0],[[1556,2],[1574,2]]], [1573,[17315.9,13555.2,0],[[1556,2],[1593,2]]], [1574,[17418.5,14078.3,0],[[1557,2],[1572,2]]], [1575,[17328.1,14623.7,0],[[1558,2],[1594,2]]], [1576,[18733.3,13543.2,0],[[1559,2],[1595,2]]], [1577,[18340.2,13518.2,0],[[1560,2],[1596,2],[1597,2]]], +[1578,[18309,13542.6,0],[[1597,2],[1560,2]]], [1579,[16909.7,15452.3,0],[[1561,2],[1598,2],[1599,2]]], [1580,[17422.6,15354.9,0],[[1562,2],[1600,2]]], [1581,[17637.1,15332.6,0],[[1563,2],[1600,2]]], [1582,[19234.9,13290.1,1.27157e-006],[[1564,2],[1601,2],[1602,2]]], [1583,[19369.3,13230,0],[[1564,2],[1565,2],[1603,2],[1601,2]]], +[1584,[19441.6,13139.6,9.53674e-007],[[1565,2],[1604,2],[1605,2],[1584,2]]], [1585,[19582.3,13389.6,0],[[1565,2],[1606,2]]], [1586,[21626.8,13247.8,0],[[1566,2],[1586,2],[1607,2]]], [1587,[20718.3,13594.5,1.90735e-006],[[1567,2],[1608,2]]], [1588,[19791.6,13539.2,-1.90735e-006],[[1568,2],[1606,2]]], [1589,[16802.3,17731.2,0],[[1569,2],[1609,2]]], +[1590,[17318.9,18533.1,0],[[1570,2],[1610,2]]], [1591,[16703.5,16058.1,0],[[1571,2],[1611,2]]], [1592,[16765,16204.5,0],[[1571,2],[1612,2],[1592,2],[1613,2]]], [1593,[17279.9,13444.9,-3.17891e-007],[[1573,2],[1614,2],[1615,2]]], [1594,[17216.2,14729.3,0],[[1575,2],[1616,2]]], [1595,[18852.1,13442.7,0],[[1576,2],[1617,2]]], +[1596,[18454.1,13504.8,0],[[1577,2],[1618,2]]], [1597,[18260.5,13526.4,0],[[1795,2],[1831,2],[1597,2],[1578,2],[1577,2]]], [1598,[16837.6,15567.3,0],[[1579,2],[1619,2],[1598,2],[1620,2]]], [1599,[16950.1,15271.8,0],[[1579,2],[1621,2]]], [1600,[17502.3,15332.1,0],[[1580,2],[1581,2]]], [1601,[19295,13211.6,3.8147e-006],[[1582,2],[1583,2],[1603,2]]], +[1602,[19059.9,13297.5,6.35783e-007],[[1582,2],[1622,2],[1617,2]]], [1603,[19307,13188,0],[[1583,2],[1601,2],[1623,2]]], [1604,[19511.5,13003.4,0],[[1584,2],[1624,2]]], [1605,[19430.3,13155.5,1.27157e-006],[[1584,2]]], [1606,[19710.2,13504.5,0],[[1585,2],[1588,2]]], [1607,[21502.4,13185.9,4.76837e-007],[[1586,2],[1625,2]]], +[1608,[20834,13590.4,0],[[1587,2],[1626,2]]], [1609,[16698.3,17665.5,0],[[1589,2],[1627,2]]], [1610,[17269.2,18652.3,0],[[1590,2],[1628,2]]], [1611,[16644.4,16046,0],[[1591,2],[1629,2],[1630,2],[1631,2],[1632,2],[1612,2]]], [1612,[16678,16106.3,-1.90735e-006],[[1592,2],[1611,2]]], [1613,[16748.2,16233.8,0],[[1592,2],[1633,2],[1634,2]]], +[1614,[17226.6,13244.4,0],[[1593,2],[1635,2]]], [1615,[17372.7,13344.8,0],[[1593,2],[1636,2]]], [1616,[17082.1,14820.8,0],[[1594,2],[1637,2]]], [1617,[18870.2,13423.6,0],[[1595,2],[1602,2],[1638,2]]], [1618,[18603.8,13468.3,1.90735e-006],[[1596,2],[1638,2]]], [1619,[16699.3,15672.1,5.28106],[[1598,2],[1639,2]]], +[1620,[16776.1,15713.4,1.78062],[[1598,2],[1620,2],[1630,2]]], [1621,[16962.1,15119,0],[[1599,2],[1637,2],[1640,2]]], [1622,[18997.6,13155.4,0],[[1602,2],[1641,2]]], [1623,[19178.9,13086.2,0],[[1603,2],[1642,2]]], [1624,[19462.9,12910,0],[[1604,2],[1643,2]]], [1625,[21434.7,13103.7,4.76837e-007],[[1607,2],[1644,2]]], +[1626,[20837.7,13496.5,0],[[1608,2],[1645,2]]], [1627,[16593.2,17580.9,0],[[1609,2],[1646,2]]], [1628,[17255.9,18783.3,7.94729e-008],[[1610,2],[1647,2],[1648,2]]], [1629,[16517.9,15918.6,0],[[1611,2],[1649,2],[1639,2]]], [1630,[16710.2,15852.4,0],[[1611,2],[1620,2]]], [1631,[16521.6,16036.4,3.17891e-007],[[1611,2],[1650,2],[1632,2],[1634,2],[1651,2]]], +[1632,[16538.7,16150.9,0],[[1611,2],[1631,2],[1632,2],[1652,2]]], [1633,[16748.1,16351,0],[[1613,2],[1653,2]]], [1634,[16651.7,16168.8,-1.90735e-006],[[1613,2],[1631,2],[1650,2]]], [1635,[17202.6,13116.7,1.27157e-006],[[1614,2],[1654,2],[1636,2]]], [1636,[17404.8,13300.6,2.38419e-007],[[1615,2],[1635,2],[1655,2],[1656,2]]], [1637,[17000,14958.7,0],[[1616,2],[1621,2]]], +[1638,[18695.3,13452.8,-1.90735e-006],[[1617,2],[1618,2]]], [1639,[16578.3,15768.4,0],[[1619,2],[1629,2],[1649,2]]], [1640,[16818.7,15080,1.90735e-006],[[1621,2],[1657,2]]], [1641,[18872.7,13081.1,0],[[1622,2],[1658,2]]], [1642,[19157.5,13060.7,0],[[1623,2],[1659,2],[1660,2]]], [1643,[19446.6,12803.4,-2.54313e-006],[[1624,2],[1661,2],[1660,2]]], +[1644,[21380.8,12982.5,0],[[1625,2],[1662,2]]], [1645,[20732.4,13404.7,0],[[1626,2],[1663,2]]], [1646,[16566.5,17558.9,0],[[1627,2],[1664,2],[1665,2]]], [1647,[17370,18859.4,0],[[1628,2],[1666,2]]], [1648,[17190.5,18646.4,0],[[1628,2],[1667,2]]], [1649,[16505,15825.5,0],[[1629,2],[1639,2],[1668,2],[1669,2]]], +[1650,[16587.3,16125.5,0],[[1631,2],[1634,2]]], [1651,[16344.4,16029.9,0],[[1631,2],[1670,2]]], [1652,[16422.5,16236.9,0],[[1632,2],[1671,2]]], [1653,[16751.9,16487,0],[[1633,2],[1672,2]]], [1654,[17085.4,12933.5,0],[[1635,2],[1673,2]]], [1655,[17522.6,13402.3,0],[[1636,2]]], +[1656,[17542.1,13165.5,9.53674e-007],[[1636,2],[1674,2]]], [1657,[16806.2,15034,1.90735e-006],[[1640,2]]], [1658,[18778.8,13013.5,-1.27157e-006],[[1641,2],[1675,2],[1676,2]]], [1659,[19016.6,13055.5,-3.8147e-006],[[1642,2],[1676,2]]], [1660,[19291.3,12963.1,0],[[1642,2],[1643,2]]], [1661,[19471,12761.5,2.54313e-006],[[1643,2],[1677,2],[1678,2]]], +[1662,[21357.3,12954,-1.58946e-007],[[1644,2],[1679,2],[1662,2]]], [1663,[20827.3,13318.2,3.8147e-006],[[1645,2],[1680,2]]], [1664,[16527.3,17490.2,0],[[1646,2],[1681,2],[1682,2]]], [1665,[16613.9,17722,-3.17891e-007],[[1646,2],[1683,2],[1684,2]]], [1666,[17449.3,18938.5,-1.58946e-007],[[1647,2],[1685,2],[1686,2]]], [1667,[17078.3,18513.2,0],[[1648,2],[1687,2]]], +[1668,[16356.3,15948.9,9.53674e-007],[[1649,2],[1670,2]]], [1669,[16411.7,15657.5,7.94729e-008],[[1649,2],[1688,2],[1689,2]]], [1670,[16277.1,16019.7,0],[[1651,2],[1668,2],[1690,2]]], [1671,[16304.9,16354.7,0],[[1652,2],[1691,2]]], [1672,[16759,16565.5,-1.90735e-006],[[1653,2],[1692,2]]], [1673,[16952.8,12843.8,0],[[1654,2],[1693,2],[1694,2],[1695,2]]], +[1674,[17567.5,13133.4,-2.38419e-007],[[1656,2],[1696,2],[1697,2],[1698,2]]], [1675,[18734.5,13006.7,0],[[1658,2],[1699,2],[1700,2]]], [1676,[18937.5,13041.4,-3.8147e-006],[[1658,2],[1659,2]]], [1677,[19592.5,12628.3,-7.62939e-006],[[1661,2],[1701,2]]], [1678,[19592.8,12794.1,7.62939e-006],[[1661,2],[1702,2]]], [1679,[21223.2,12926.8,0],[[1662,2],[1703,2],[1704,2]]], +[1680,[20915.3,13207.6,0],[[1663,2],[1705,2]]], [1681,[16391.6,17483.4,0],[[1664,2],[1706,2]]], [1682,[16533.8,17449.7,1.90735e-006],[[1664,2],[1707,2],[1708,2]]], [1683,[16482.7,17675.5,6.35783e-007],[[1665,2],[1709,2],[1710,2]]], [1684,[16666.4,17865.7,0],[[1665,2],[1711,2]]], [1685,[17387.5,19035,-9.53674e-007],[[1666,2],[1712,2]]], +[1686,[17585,18991.8,0],[[1666,2],[1713,2]]], [1687,[16990.5,18440.2,-3.17891e-007],[[1667,2],[1714,2],[1715,2]]], [1688,[16292,15698.3,0],[[1669,2]]], [1689,[16552,15552.3,-1.19209e-007],[[1669,2]]], [1690,[16093.7,16094.3,0],[[1670,2],[1716,2]]], [1691,[16185,16463.9,-1.90735e-006],[[1671,2],[1717,2]]], +[1692,[16671.4,16605.6,0],[[1672,2],[1718,2]]], [1693,[16885,12723.1,0],[[1673,2],[1719,2],[1720,2]]], [1694,[16972.9,13028.7,0],[[1673,2],[1721,2]]], [1695,[16883.8,12856.7,6.35783e-007],[[1673,2],[1722,2],[1723,2],[1719,2]]], [1696,[17422.5,12998.3,0],[[1674,2],[1724,2]]], [1697,[17663.9,13032.7,0],[[1674,2],[1725,2]]], +[1698,[17699.3,13249.6,0],[[1674,2],[1726,2]]], [1699,[18594.9,12967.4,0],[[1675,2],[1727,2]]], [1700,[18625.7,13127,0],[[1675,2],[1728,2]]], [1701,[19697.3,12532.2,0],[[1677,2],[1729,2]]], [1702,[19741.1,12812.1,0],[[1678,2],[1730,2]]], [1703,[21098.4,13027.1,-1.90735e-006],[[1679,2],[1705,2]]], +[1704,[21158.7,12795.5,0],[[1679,2],[1731,2]]], [1705,[20998.7,13115.6,0],[[1680,2],[1703,2]]], [1706,[16214.4,17462.1,1.90735e-006],[[1681,2],[1732,2]]], [1707,[16497.1,17290.6,-1.90735e-006],[[1682,2],[1733,2]]], [1708,[16683.8,17455.8,0],[[1682,2],[1734,2]]], [1709,[16330.3,17650,-6.35783e-007],[[1683,2],[1735,2],[1710,2],[1736,2]]], +[1710,[16428.4,17792.3,0],[[1683,2],[1709,2],[1735,2]]], [1711,[16732.7,18004.8,0],[[1684,2],[1737,2]]], [1712,[17268.5,19041.4,0],[[1685,2],[1738,2]]], [1713,[17714.8,19025,9.53674e-007],[[1686,2],[1739,2]]], [1714,[16941.9,18279.8,9.53674e-007],[[1687,2],[1737,2]]], [1715,[16860.2,18393.8,0],[[1687,2],[1740,2]]], +[1716,[15966.7,16138.7,-9.53674e-007],[[1690,2],[1741,2]]], [1717,[16114.7,16589.2,9.53674e-007],[[1691,2],[1742,2]]], [1718,[16637.3,16726.6,0],[[1692,2],[1743,2]]], [1719,[16823.6,12707.8,0],[[1693,2],[1695,2],[1719,2],[1744,2],[1745,2],[1746,2],[1747,2],[1748,2]]], [1720,[17024.3,12663,0],[[1693,2],[1720,2],[1749,2],[1750,2],[1751,2],[1752,2]]], [1721,[16949.8,13190.9,-4.76837e-007],[[1694,2],[1753,2]]], +[1722,[16826,12907.4,0],[[1695,2],[1754,2],[1755,2],[1756,2],[1723,2],[1748,2]]], [1723,[16847.1,12819,0],[[1695,2],[1722,2],[1756,2]]], [1724,[17317,12900.7,0],[[1696,2],[1757,2]]], [1725,[17690.4,12988.2,6.35783e-007],[[1697,2],[1758,2],[1759,2]]], [1726,[17811.8,13337.6,0],[[1698,2],[1760,2]]], [1727,[18475,12942.4,0],[[1699,2],[1761,2]]], +[1728,[18519.4,13241.9,0],[[1700,2],[1762,2]]], [1729,[19781.9,12416.5,0],[[1701,2],[1763,2]]], [1730,[19865.3,12827.9,7.62939e-006],[[1702,2],[1764,2]]], [1731,[21061.7,12716,0],[[1704,2],[1765,2]]], [1732,[16188.9,17401.4,0],[[1706,2],[1766,2],[1767,2]]], [1733,[16452.7,17241.6,4.76837e-007],[[1707,2],[1768,2],[1769,2],[1770,2]]], +[1734,[16814.9,17439.5,-3.8147e-006],[[1708,2],[1771,2]]], [1735,[16384.3,17826.6,0],[[1709,2],[1710,2],[1772,2],[1773,2]]], [1736,[16192.2,17564.8,-1.90735e-006],[[1709,2],[1767,2]]], [1737,[16847.5,18123.9,0],[[1711,2],[1714,2]]], [1738,[17162,18955.9,0],[[1712,2],[1774,2]]], [1739,[17840.7,19078,0],[[1713,2],[1775,2]]], +[1740,[16754,18317.9,0],[[1715,2],[1776,2]]], [1741,[15833.7,16231.3,0],[[1716,2],[1777,2]]], [1742,[16079.5,16720.4,0],[[1717,2],[1778,2]]], [1743,[16538.3,16848.2,0],[[1718,2],[1779,2]]], [1744,[16895.9,12598.7,-1.90735e-006],[[1719,2],[1751,2]]], [1745,[16786.6,12563.8,-4.76837e-007],[[1719,2],[1780,2],[1781,2],[1751,2]]], +[1746,[16693.1,12732,6.35783e-007],[[1719,2],[1748,2],[1782,2]]], [1747,[16829.6,12793.7,-1.90735e-006],[[1719,2]]], [1748,[16726.3,12792.5,9.53674e-007],[[1719,2],[1722,2],[1746,2],[1783,2],[1754,2],[1756,2],[1784,2]]], [1749,[17226,12648.3,0],[[1720,2],[1785,2]]], [1750,[17130,12759.8,0],[[1720,2],[1757,2]]], [1751,[16927.9,12544.3,-3.8147e-007],[[1720,2],[1744,2],[1745,2],[1752,2],[1786,2]]], +[1752,[17067.3,12613.4,0],[[1720,2],[1751,2],[1787,2]]], [1753,[17010.7,13301.6,0],[[1721,2],[1788,2]]], [1754,[16772.7,12940.7,-6.35783e-007],[[1722,2],[1748,2],[1789,2],[1783,2]]], [1755,[16859.3,12942.3,1.90735e-006],[[1722,2]]], [1756,[16788,12855.2,0],[[1722,2],[1723,2],[1748,2],[1783,2]]], [1757,[17183.5,12801.3,0],[[1724,2],[1750,2]]], +[1758,[17732,12956.3,6.35783e-007],[[1725,2],[1790,2],[1791,2]]], [1759,[17558.4,12862.9,0],[[1725,2],[1792,2]]], [1760,[17938.8,13410.2,5.19635],[[1726,2],[1793,2]]], [1761,[18360.7,12916.9,0],[[1727,2],[1794,2]]], [1762,[18407.2,13363.2,0],[[1728,2],[1795,2]]], [1763,[19836,12304.8,-7.62939e-006],[[1729,2],[1796,2]]], +[1764,[19993.8,12843.8,-7.62939e-006],[[1730,2],[1797,2]]], [1765,[21000.5,12604.3,0],[[1731,2],[1798,2]]], [1766,[16186.4,17366.9,0],[[1732,2],[1799,2],[1800,2],[1769,2]]], [1767,[16161.4,17435.4,0],[[1732,2],[1736,2],[1801,2]]], [1768,[16514.7,17169.9,0],[[1733,2],[1802,2],[1768,2]]], [1769,[16353.8,17272,0],[[1733,2],[1766,2],[1803,2],[1770,2]]], +[1770,[16309.8,17173.8,0],[[1733,2],[1769,2],[1804,2],[1770,2],[1802,2],[1805,2],[1806,2],[1807,2]]], [1771,[16934.6,17484.9,-3.8147e-006],[[1734,2],[1808,2]]], [1772,[16395.5,17961.9,0],[[1735,2],[1809,2],[1810,2]]], [1773,[16163.9,17835.4,0],[[1735,2],[1811,2]]], [1774,[17024.2,18925.3,0],[[1738,2],[1812,2]]], [1775,[17963.4,19130,0],[[1739,2],[1813,2]]], +[1776,[16626.2,18267.7,-1.90735e-006],[[1740,2],[1814,2]]], [1777,[15798.9,16285.2,-3.17891e-007],[[1741,2],[1815,2],[1816,2]]], [1778,[16094,16787.9,0],[[1742,2],[1817,2],[1818,2]]], [1779,[16458.5,16976.1,0],[[1743,2],[1819,2],[1802,2]]], [1780,[16661,12455.4,3.17891e-007],[[1745,2],[1820,2],[1821,2]]], [1781,[16806.6,12403.4,0],[[1745,2],[1822,2],[1821,2]]], +[1782,[16572.1,12775.3,0],[[1746,2]]], [1783,[16740.2,12895.5,0],[[1748,2],[1754,2],[1756,2]]], [1784,[16778.4,12844.4,0],[[1748,2]]], [1785,[17350.6,12632,0],[[1749,2],[1823,2]]], [1786,[16859.5,12339.5,-9.53674e-007],[[1751,2],[1824,2]]], [1787,[17193.5,12505,0],[[1752,2],[1825,2]]], +[1788,[16949.7,13393.4,1.35043],[[1753,2],[1826,2]]], [1789,[16633.2,13060.4,-4.76837e-007],[[1754,2],[1827,2]]], [1790,[17838.9,12824.7,6.35783e-007],[[1758,2],[1828,2],[1829,2]]], [1791,[17841.7,13046.2,-1.90735e-006],[[1758,2],[1830,2]]], [1792,[17446.4,12759.5,0],[[1759,2],[1823,2]]], [1793,[18025.5,13450.5,-1.27157e-006],[[1760,2],[1831,2],[1832,2]]], +[1794,[18238.3,12894.9,0],[[1761,2],[1833,2]]], [1795,[18309.9,13468.8,1.90735e-006],[[1762,2],[1597,2],[1831,2]]], [1796,[19831.4,12154.7,0],[[1763,2],[1834,2]]], [1797,[20090.3,12862.9,0],[[1764,2],[1835,2]]], [1798,[20979.4,12510.5,0],[[1765,2],[1836,2]]], [1799,[16122.9,17362.3,0],[[1766,2],[1837,2],[1838,2]]], +[1800,[16245.8,17334,0],[[1766,2],[1839,2],[1803,2]]], [1801,[16029.4,17595,-1.90735e-006],[[1767,2],[1840,2]]], [1802,[16488.4,17127.4,0],[[1768,2],[1770,2],[1779,2],[1841,2],[1842,2],[1819,2]]], [1803,[16269.1,17249.2,-1.90735e-006],[[1769,2],[1800,2],[1839,2]]], [1804,[16345.8,17174.8,0],[[1770,2]]], [1805,[16263.4,17245.8,0],[[1770,2]]], +[1806,[16139.4,17271,-1.90735e-006],[[1770,2],[1843,2],[1838,2]]], [1807,[16252.3,17052,-6.35783e-007],[[1770,2],[1844,2],[1817,2],[1845,2]]], [1808,[17062.2,17464.9,0],[[1771,2],[1846,2]]], [1809,[16416.7,18126.4,0],[[1772,2],[1847,2]]], [1810,[16445.4,18066.6,-1.90735e-006],[[1772,2],[1814,2]]], [1811,[16046.3,17795,-1.90735e-006],[[1773,2],[1848,2],[1840,2]]], +[1812,[16875.4,18894.6,0],[[1774,2],[1849,2]]], [1813,[18073.8,19178.8,1.90735e-006],[[1775,2]]], [1814,[16507.2,18150.2,0],[[1776,2],[1810,2]]], [1815,[15829.8,16469.8,0],[[1777,2],[1850,2]]], [1816,[15615.3,16259.9,0],[[1777,2],[1851,2]]], [1817,[16188,16942.7,0],[[1778,2],[1807,2],[1844,2]]], +[1818,[15950.7,16713.1,0],[[1778,2],[1852,2],[1850,2]]], [1819,[16471.3,17075.7,0],[[1779,2],[1802,2],[1845,2]]], [1820,[16616.5,12435.9,0],[[1780,2],[1853,2],[1854,2]]], [1821,[16775,12367.5,0],[[1780,2],[1781,2],[1822,2]]], [1822,[16814.4,12374.2,0],[[1781,2],[1821,2],[1824,2]]], [1823,[17375.8,12638,-6.35783e-007],[[1785,2],[1792,2],[1855,2]]], +[1824,[16858.6,12242.8,0],[[1786,2],[1822,2],[1856,2],[1857,2]]], [1825,[17306.1,12418.2,0],[[1787,2],[1858,2]]], [1826,[16835.2,13543.9,3.15276],[[1788,2],[1859,2]]], [1827,[16538.7,12994.5,0],[[1789,2],[1860,2]]], [1828,[17708.7,12742.3,0],[[1790,2],[1855,2]]], [1829,[17987.3,12853.7,0],[[1790,2],[1833,2]]], +[1830,[17979.9,13167.2,0],[[1791,2],[1861,2]]], [1831,[18216,13519.3,0],[[1793,2],[1795,2],[1597,2]]], [1832,[18131.6,13330.3,0],[[1793,2],[1862,2]]], [1833,[18105.5,12872.3,0],[[1794,2],[1829,2]]], [1834,[19817.9,11999.8,0],[[1796,2],[1863,2]]], [1835,[20202.1,12943.3,-7.62939e-006],[[1797,2],[1864,2]]], +[1836,[20950,12387.8,1.90735e-006],[[1798,2],[1865,2]]], [1837,[15971.4,17406.1,0],[[1799,2],[1866,2]]], [1838,[16131.8,17344.9,0],[[1799,2],[1806,2],[1838,2],[1843,2]]], [1839,[16206.5,17286.3,1.90735e-006],[[1800,2],[1803,2],[1867,2]]], [1840,[15964.7,17739.3,0],[[1801,2],[1811,2],[1848,2]]], [1841,[16377.5,17163.2,0],[[1802,2]]], +[1842,[16485.5,17083.2,0],[[1802,2],[1868,2],[1842,2]]], [1843,[16125.7,17299.7,0],[[1806,2],[1838,2]]], [1844,[16212.1,17009.8,-2.38419e-007],[[1807,2],[1817,2],[1869,2],[1870,2]]], [1845,[16370.3,17059.7,-1.90735e-006],[[1807,2],[1819,2]]], [1846,[17187.9,17490.8,0],[[1808,2],[1871,2]]], [1847,[16436.8,18281.3,0],[[1809,2],[1872,2]]], +[1848,[15948.6,17784.1,0],[[1811,2],[1840,2],[1873,2]]], [1849,[16759.6,18917.2,0],[[1812,2],[1874,2]]], [1850,[15872.3,16620.5,0],[[1815,2],[1818,2]]], [1851,[15484.4,16244.6,0],[[1816,2],[1875,2]]], [1852,[15964.2,16877.2,0],[[1818,2],[1876,2]]], [1853,[16554.9,12500.4,0],[[1820,2],[1877,2]]], +[1854,[16700.4,12321.1,2.38419e-007],[[1820,2],[1854,2]]], [1855,[17556.2,12655.4,1.90735e-006],[[1823,2],[1828,2]]], [1856,[16995.3,12131.7,0],[[1824,2],[1878,2]]], [1857,[16818.5,12072.3,-4.76837e-007],[[1824,2],[1879,2]]], [1858,[17402.4,12302.2,0],[[1825,2],[1880,2]]], [1859,[16781.2,13613,0],[[1826,2],[1881,2]]], +[1860,[16414.5,12887.7,0],[[1827,2],[1882,2]]], [1861,[18060,13240.6,0],[[1830,2]]], [1862,[18218.8,13237.7,0],[[1832,2],[1883,2]]], [1863,[19836.6,11897.7,0],[[1834,2],[1884,2]]], [1864,[20238,12958.9,0],[[1835,2]]], [1865,[20934,12284.8,-3.8147e-006],[[1836,2],[1885,2]]], +[1866,[15817.9,17410.7,0],[[1837,2],[1886,2],[1887,2]]], [1867,[16162.2,17305.9,0],[[1839,2]]], [1868,[16479.7,17070,-9.53674e-007],[[1842,2]]], [1869,[16131.9,16990.9,0],[[1844,2],[1888,2],[1889,2]]], [1870,[16184.5,17061.7,-3.17891e-007],[[1844,2],[1890,2],[1870,2]]], [1871,[17309.3,17415.2,0],[[1846,2],[1891,2]]], +[1872,[16447.6,18390.5,0],[[1847,2],[1892,2]]], [1873,[15894.3,17934.9,0],[[1848,2],[1893,2],[1894,2]]], [1874,[16646.6,19057.3,2.38419e-006],[[1849,2],[1895,2],[1896,2],[1897,2]]], [1875,[15362.8,16230.1,-3.17891e-007],[[1851,2],[1898,2],[1899,2]]], [1876,[15919.4,17001.3,0],[[1852,2],[1887,2],[1900,2],[1889,2]]], [1877,[16558.8,12549,0],[[1853,2],[1901,2],[1902,2],[1877,2]]], +[1878,[17059.1,12011.3,0],[[1856,2],[1903,2]]], [1879,[16814.4,11951.6,-4.76837e-007],[[1857,2],[1904,2]]], [1880,[17495.4,12195.5,6.35783e-007],[[1858,2],[1905,2],[1906,2]]], [1881,[16750.5,13638.5,0],[[1859,2]]], [1882,[16386.6,12760.8,4.76837e-007],[[1860,2],[1901,2]]], [1883,[18308.7,13142.5,0],[[1862,2]]], +[1884,[19872.6,11766.7,0],[[1863,2],[1907,2]]], [1885,[20825.3,12230.2,-3.8147e-006],[[1865,2],[1908,2]]], [1886,[15663.1,17475.2,-3.17891e-007],[[1866,2],[1909,2],[1910,2]]], [1887,[15844.7,17225.6,-9.53674e-007],[[1866,2],[1876,2]]], [1888,[16100.5,17032.3,0],[[1869,2],[1911,2],[1888,2],[1889,2]]], [1889,[16058.1,16981.9,0],[[1869,2],[1876,2],[1888,2],[1912,2],[1900,2]]], +[1890,[16107.3,17115.5,0],[[1870,2],[1913,2]]], [1891,[17338.1,17424.5,-7.62939e-006],[[1871,2]]], [1892,[16454.5,18521.8,1.90735e-006],[[1872,2],[1914,2]]], [1893,[15899.2,18011.4,0],[[1873,2],[1915,2],[1916,2]]], [1894,[15803.6,17791.5,0],[[1873,2],[1917,2]]], [1895,[16541.9,19190.7,-1.90735e-006],[[1874,2],[1918,2]]], +[1896,[16572.7,18992.3,0],[[1874,2],[1919,2],[1920,2]]], [1897,[16779.5,19163.2,0],[[1874,2],[1921,2]]], [1898,[15153,16205.5,9.53674e-007],[[1875,2],[1922,2]]], [1899,[15410.5,16099.5,4.76837e-007],[[1875,2],[1923,2]]], [1900,[15967.9,16994.9,0],[[1876,2],[1889,2],[1924,2],[1913,2]]], [1901,[16433.2,12696.4,0],[[1877,2],[1882,2]]], +[1902,[16570.7,12533.4,0],[[1877,2]]], [1903,[17084.3,11959.9,-9.53674e-007],[[1878,2],[1925,2],[1926,2],[1927,2]]], [1904,[16795.4,11868.8,-1.58946e-007],[[1879,2],[1928,2],[1929,2]]], [1905,[17623.8,12082.3,0],[[1880,2],[1930,2]]], [1906,[17360.7,12114,0],[[1880,2],[1927,2]]], [1907,[19900.2,11687.3,0],[[1884,2],[1931,2],[1932,2]]], +[1908,[20726.1,12161.2,0],[[1885,2],[1933,2]]], [1909,[15496.7,17498.4,0],[[1886,2],[1934,2]]], [1910,[15701.6,17623.4,0],[[1886,2],[1917,2]]], [1911,[16116.9,17027.4,0],[[1888,2]]], [1912,[16049.3,16876.5,-9.53674e-007],[[1889,2]]], [1913,[16051.2,17104.8,0],[[1890,2],[1900,2],[1935,2],[1936,2],[1913,2]]], +[1914,[16479.9,18666.8,0],[[1892,2],[1937,2]]], [1915,[15952.7,18162.1,0],[[1893,2],[1938,2]]], [1916,[15845.6,18091.3,0],[[1893,2],[1939,2]]], [1917,[15744.8,17769.2,0],[[1894,2],[1910,2],[1940,2]]], [1918,[16478.9,19284.6,0],[[1895,2],[1941,2]]], [1919,[16462.5,18907.5,0],[[1896,2],[1942,2]]], +[1920,[16562.4,18857.3,0],[[1896,2],[1937,2]]], [1921,[16930.2,19253.2,0],[[1897,2],[1943,2]]], [1922,[15025.2,16195.9,0],[[1898,2],[1944,2],[1945,2]]], [1923,[15457.3,15952,-4.76837e-007],[[1899,2],[1946,2]]], [1924,[15977.1,17055.5,0],[[1900,2],[1924,2]]], [1925,[17166.9,11814.2,0],[[1903,2],[1947,2]]], +[1926,[16939.9,11872.7,0],[[1903,2],[1929,2]]], [1927,[17229.4,12038.7,0],[[1903,2],[1906,2]]], [1928,[16635.2,11835.7,0],[[1904,2],[1948,2]]], [1929,[16808.6,11801.3,0],[[1904,2],[1926,2],[1949,2]]], [1930,[17757.3,12040.5,0],[[1905,2],[1950,2]]], [1931,[19961.5,11502.9,3.8147e-006],[[1907,2],[1951,2]]], +[1932,[20021.9,11667.8,0],[[1907,2],[1952,2],[1953,2]]], [1933,[20611.4,12079,0],[[1908,2],[1954,2]]], [1934,[15356.3,17544.7,0],[[1909,2],[1955,2]]], [1935,[15982.1,17061.2,0],[[1913,2]]], [1936,[16074.5,17114.1,4.76837e-007],[[1913,2]]], [1937,[16540.2,18797.5,0],[[1914,2],[1920,2]]], +[1938,[15999.9,18306.2,3.8147e-006],[[1915,2],[1956,2]]], [1939,[15765.5,18149.4,0],[[1916,2],[1957,2]]], [1940,[15647.2,17821.9,0],[[1917,2],[1958,2]]], [1941,[16464.8,19375.8,0],[[1918,2],[1959,2]]], [1942,[16342.5,18801.3,0],[[1919,2],[1960,2]]], [1943,[17093.7,19348.7,0],[[1921,2],[1961,2],[1962,2]]], +[1944,[14948.9,16284.5,0],[[1922,2],[1963,2],[1964,2]]], [1945,[14897,16151.1,0],[[1922,2],[1965,2]]], [1946,[15477,15890.1,0],[[1923,2]]], [1947,[17186,11779.3,3.8147e-006],[[1925,2]]], [1948,[16567.1,11799.5,1.56845],[[1928,2],[1948,2],[1966,2]]], [1949,[16819.6,11631.8,0],[[1929,2],[1967,2]]], +[1950,[17870.7,11966.3,3.8147e-006],[[1930,2],[1968,2]]], [1951,[20005.8,11426.1,0],[[1931,2],[1969,2],[1970,2],[1971,2]]], [1952,[20002.8,11620.2,0],[[1932,2]]], [1953,[20149.2,11719.3,-1.90735e-006],[[1932,2],[1972,2],[1973,2],[1974,2]]], [1954,[20513.3,12003.5,0],[[1933,2],[1975,2]]], [1955,[15308.8,17542.2,-4.76837e-007],[[1934,2],[1976,2],[1955,2],[1977,2]]], +[1956,[15978.6,18440.9,0],[[1938,2],[1978,2]]], [1957,[15639.8,18244.3,0],[[1939,2],[1979,2]]], [1958,[15523.3,17852.6,-1.90735e-006],[[1940,2],[1980,2]]], [1959,[16374.5,19477.8,0],[[1941,2],[1981,2]]], [1960,[16211.7,18724.8,0],[[1942,2],[1982,2]]], [1961,[17008.8,19459.8,0],[[1943,2],[1983,2]]], +[1962,[17248.6,19421,-9.53674e-007],[[1943,2],[1984,2]]], [1963,[14800.8,16144.8,0],[[1944,2],[1985,2]]], [1964,[15084.2,16431.5,0],[[1944,2],[1986,2]]], [1965,[14812.2,16115.5,1.90735e-006],[[1945,2],[1987,2]]], [1966,[16430,11697.2,0],[[1948,2],[1988,2]]], [1967,[16879.2,11488,0],[[1949,2],[1989,2]]], +[1968,[17964.9,11829.4,0],[[1950,2],[1990,2]]], [1969,[20087.4,11289.6,0],[[1951,2],[1991,2]]], [1970,[20155.8,11491.9,0],[[1951,2],[1992,2]]], [1971,[19897.4,11306.1,0],[[1951,2],[1993,2]]], [1972,[20269.6,11817.2,0],[[1953,2],[1994,2]]], [1973,[20164.7,11620.9,3.8147e-006],[[1953,2],[1995,2],[1992,2]]], +[1974,[20125.7,11777.7,0],[[1953,2]]], [1975,[20410.2,11913.8,0],[[1954,2],[1994,2]]], [1976,[15157.4,17547.9,9.53674e-007],[[1955,2],[1996,2]]], [1977,[15258.2,17474.2,6.35783e-007],[[1955,2],[1997,2],[1998,2]]], [1978,[16030.5,18552.4,0],[[1956,2],[1999,2],[1982,2]]], [1979,[15541.7,18359.1,3.8147e-006],[[1957,2],[2000,2]]], +[1980,[15394,17798.6,0],[[1958,2],[2001,2]]], [1981,[16352.1,19515.5,4.76837e-007],[[1959,2],[2002,2],[2003,2],[2004,2]]], [1982,[16099.6,18655.7,0],[[1960,2],[1978,2],[1999,2]]], [1983,[17009.3,19537.6,0],[[1961,2],[2005,2]]], [1984,[17373.3,19469.7,4.76837e-007],[[1962,2],[1984,2]]], [1985,[14681.6,16024.7,1.90735e-006],[[1963,2],[2006,2]]], +[1986,[15200.4,16549.5,0],[[1964,2],[2007,2]]], [1987,[14728.5,16030.4,0],[[1965,2],[2008,2]]], [1988,[16321.3,11609.2,0],[[1966,2],[2009,2]]], [1989,[16975.6,11379,0],[[1967,2],[2010,2]]], [1990,[18080,11757.1,0],[[1968,2],[2011,2]]], [1991,[20185.7,11177.4,0],[[1969,2],[2012,2]]], +[1992,[20165,11505.8,1.27157e-006],[[1970,2],[1973,2],[2013,2],[2014,2],[1995,2]]], [1993,[19838.2,11173.8,0],[[1971,2],[2015,2]]], [1994,[20338.8,11832.7,2.86102e-006],[[1972,2],[1975,2],[2016,2],[2017,2]]], [1995,[20177.4,11586.5,3.8147e-006],[[1973,2],[1992,2],[2018,2],[2016,2]]], [1996,[15136.4,17541,6.35783e-007],[[1976,2],[2019,2],[2020,2]]], [1997,[15129.9,17357.3,0],[[1977,2],[2021,2]]], +[1998,[15392.9,17343.8,0],[[1977,2],[2022,2]]], [1999,[16055.1,18624.2,-9.53674e-007],[[1978,2],[1982,2],[1999,2],[2023,2]]], [2000,[15419.1,18464.9,0],[[1979,2],[2024,2]]], [2001,[15255.8,17786.4,0],[[1980,2],[2025,2]]], [2002,[16240.8,19648.5,-1.90735e-006],[[1981,2],[2026,2]]], [2003,[16205.6,19432.4,0],[[1981,2],[2027,2]]], +[2004,[16491.7,19629.8,1.90735e-006],[[1981,2],[2028,2]]], [2005,[17061.5,19580.8,0],[[1983,2]]], [2006,[14588.5,15931.2,0],[[1985,2],[2029,2]]], [2007,[15324.2,16675.6,0],[[1986,2],[2030,2]]], [2008,[14710.3,15920.4,0],[[1987,2],[2031,2]]], [2009,[16224.5,11534,-2.38419e-007],[[1988,2],[2032,2]]], +[2010,[17053.5,11248.6,1.90735e-006],[[1989,2],[2033,2]]], [2011,[18125.4,11645.7,3.8147e-006],[[1990,2],[2034,2]]], [2012,[20334.4,11103.8,5.67571],[[1991,2],[2035,2]]], [2013,[20247.2,11422.3,-9.53674e-007],[[1992,2],[2036,2],[2013,2],[2037,2]]], [2014,[20162.9,11580.9,0],[[1992,2]]], [2015,[19805.5,11057.4,-3.8147e-006],[[1993,2],[2038,2]]], +[2016,[20316.5,11767.4,0],[[1994,2],[1995,2],[2039,2],[2017,2]]], [2017,[20389.2,11799,0],[[1994,2],[2016,2],[2040,2],[2017,2],[2041,2]]], [2018,[20268.5,11705.7,3.8147e-006],[[1995,2],[2042,2]]], [2019,[14996.3,17401.9,0],[[1996,2],[2043,2]]], [2020,[15024,17607.6,0],[[1996,2],[2044,2]]], [2021,[15019.2,17234.2,-6.35783e-007],[[1997,2],[2045,2],[2046,2]]], +[2022,[15493.1,17245.9,0],[[1998,2],[2047,2]]], [2023,[16088.3,18750.3,0],[[1999,2],[2048,2]]], [2024,[15301.9,18518.1,0],[[2000,2],[2049,2],[2050,2]]], [2025,[15113.3,17816.3,0],[[2001,2],[2051,2]]], [2026,[16147.9,19761.8,0],[[2002,2],[2052,2]]], [2027,[16087.9,19344.9,0],[[2003,2],[2053,2]]], +[2028,[16603.5,19706.4,0],[[2004,2],[2054,2]]], [2029,[14494,15829.7,0],[[2006,2],[2055,2]]], [2030,[15438,16791.6,-1.90735e-006],[[2007,2],[2056,2]]], [2031,[14640,15800.8,0],[[2008,2],[2057,2]]], [2032,[16089.9,11448.6,0],[[2009,2],[2058,2]]], [2033,[17084.9,11209.2,-4.76837e-007],[[2010,2],[2059,2],[2060,2],[2061,2]]], +[2034,[18203.3,11556.5,0],[[2011,2],[2062,2]]], [2035,[20372.8,11102.7,0],[[2012,2],[2063,2],[2036,2]]], [2036,[20336.3,11273.8,0],[[2013,2],[2035,2]]], [2037,[20311.4,11527.1,0],[[2013,2],[2042,2]]], [2038,[19772,10912.3,0],[[2015,2],[2064,2]]], [2039,[20275.1,11716.3,0],[[2016,2]]], +[2040,[20508.6,11673.3,0],[[2017,2],[2065,2]]], [2041,[20527.5,11890.2,0],[[2017,2],[2066,2]]], [2042,[20307.1,11671.7,1.27157e-006],[[2018,2],[2037,2],[2065,2]]], [2043,[14913.2,17317.1,0],[[2019,2],[2067,2]]], [2044,[14888.4,17648,0],[[2020,2],[2068,2]]], [2045,[15091.6,17164.6,0],[[2021,2]]], +[2046,[14919.7,17113.7,1.90735e-006],[[2021,2],[2069,2]]], [2047,[15598.3,17142.4,-1.90735e-006],[[2022,2],[2070,2]]], [2048,[16089.8,18795.6,0],[[2023,2],[2071,2],[2048,2]]], [2049,[15144.9,18527.2,0],[[2024,2],[2072,2]]], [2050,[15441.5,18578.1,0],[[2024,2],[2073,2]]], [2051,[14965.5,17806.9,0],[[2025,2],[2074,2]]], +[2052,[16075.7,19904.1,1.90735e-006],[[2026,2],[2075,2]]], [2053,[15976.2,19301.6,0],[[2027,2],[2076,2]]], [2054,[16701.9,19783.9,9.53674e-007],[[2028,2],[2077,2]]], [2055,[14380.4,15715.7,0],[[2029,2],[2078,2]]], [2056,[15556.8,16912.8,0],[[2030,2],[2070,2]]], [2057,[14527.4,15776.2,-9.53674e-007],[[2031,2],[2079,2]]], +[2058,[15961.1,11421.7,0],[[2032,2],[2080,2]]], [2059,[17086.2,11062.2,3.8147e-006],[[2033,2],[2081,2]]], [2060,[17068.9,11348.8,1.90735e-006],[[2033,2]]], [2061,[17140.4,11320.5,0],[[2033,2]]], [2062,[18307.4,11449.2,7.62939e-006],[[2034,2],[2082,2]]], [2063,[20444.4,11057.7,0],[[2035,2],[2083,2],[2084,2]]], +[2064,[19816.8,10763.3,0],[[2038,2],[2085,2]]], [2065,[20512.9,11653.7,9.53674e-007],[[2040,2],[2042,2],[2086,2],[2065,2]]], [2066,[20636.6,11843,0],[[2041,2],[2087,2]]], [2067,[14809.6,17211.6,0],[[2043,2],[2088,2]]], [2068,[14761.5,17727.7,0],[[2044,2],[2089,2]]], [2069,[14949.1,16962,0],[[2046,2],[2090,2]]], +[2070,[15669.9,17037.7,0],[[2047,2],[2056,2]]], [2071,[15990.8,18844.6,0],[[2048,2],[2091,2]]], [2072,[15115.5,18524.7,2.54313e-006],[[2049,2],[2092,2],[2093,2]]], [2073,[15608.9,18651,0],[[2050,2],[2094,2]]], [2074,[14806.5,17793.7,0],[[2051,2],[2089,2]]], [2075,[15991.3,20006.5,0],[[2052,2],[2095,2]]], +[2076,[15891.1,19386.8,0],[[2053,2],[2096,2]]], [2077,[16818.9,19869.7,0],[[2054,2],[2077,2]]], [2078,[14284.7,15628.9,0],[[2055,2],[2097,2]]], [2079,[14460.9,15670.7,0],[[2057,2],[2098,2]]], [2080,[15814.6,11407.3,-2.38419e-007],[[2058,2],[2099,2]]], [2081,[16973.3,10972.6,0],[[2059,2],[2100,2]]], +[2082,[18414.2,11349.7,0],[[2062,2],[2101,2]]], [2083,[20543.2,10882.2,0],[[2063,2],[2102,2]]], [2084,[20582.3,11216.2,0],[[2063,2],[2103,2]]], [2085,[19787.6,10623.3,0],[[2064,2],[2104,2]]], [2086,[20653.7,11544.4,0],[[2065,2],[2105,2]]], [2087,[20779.4,11828.2,0],[[2066,2],[2106,2]]], +[2088,[14689.4,17088.8,-9.53674e-007],[[2067,2],[2107,2]]], [2089,[14673.8,17790.8,3.17891e-007],[[2068,2],[2074,2],[2108,2],[2109,2],[2110,2],[2111,2]]], [2090,[14976.4,16807.8,-6.35783e-007],[[2069,2],[2112,2],[2113,2]]], [2091,[15876.7,18761.9,0],[[2071,2],[2094,2]]], [2092,[15026.1,18397.2,3.8147e-006],[[2072,2],[2114,2]]], [2093,[14944.6,18522.4,3.8147e-006],[[2072,2],[2115,2]]], +[2094,[15729.8,18704.6,0],[[2073,2],[2091,2]]], [2095,[15988.3,20019.1,6.35783e-007],[[2075,2],[2116,2],[2117,2]]], [2096,[15771.5,19336.2,0],[[2076,2],[2118,2]]], [2097,[14155,15645.4,0],[[2078,2],[2119,2]]], [2098,[14417,15551.4,0],[[2079,2],[2120,2]]], [2099,[15666.9,11412.2,0],[[2080,2],[2121,2]]], +[2100,[16908.6,10847.6,0],[[2081,2],[2122,2]]], [2101,[18476.3,11250.8,0],[[2082,2],[2123,2],[2101,2],[2124,2]]], [2102,[20567.9,10739.4,1.90735e-006],[[2083,2],[2125,2]]], [2103,[20673.1,11301.3,0],[[2084,2],[2126,2]]], [2104,[19708.9,10572.6,1.27157e-006],[[2085,2],[2127,2],[2128,2]]], [2105,[20675.7,11425.4,-3.8147e-006],[[2086,2],[2129,2],[2126,2]]], +[2106,[20886.4,11877.5,0],[[2087,2],[2130,2]]], [2107,[14601.6,17006.9,0],[[2088,2],[2131,2],[2132,2]]], [2108,[14551.5,17665.5,-6.35783e-007],[[2089,2],[2133,2],[2134,2]]], [2109,[14518.8,17745,0],[[2089,2],[2135,2],[2133,2]]], [2110,[14511.5,17892.3,0],[[2089,2],[2136,2]]], [2111,[14719.3,17954.7,0],[[2089,2],[2137,2]]], +[2112,[14929.9,16755.1,0],[[2090,2],[2112,2],[2138,2]]], [2113,[14998.8,16735.3,1.90735e-006],[[2090,2]]], [2114,[14909.2,18283.9,-3.8147e-006],[[2092,2],[2139,2]]], [2115,[14808.2,18521.6,0],[[2093,2],[2140,2]]], [2116,[15895.2,19892.2,0],[[2095,2],[2141,2]]], [2117,[16126.3,20119.5,0],[[2095,2],[2142,2]]], +[2118,[15603.5,19255.2,0],[[2096,2],[2143,2]]], [2119,[14048,15761.9,0],[[2097,2],[2144,2]]], [2120,[14298.6,15452.8,0],[[2098,2],[2145,2]]], [2121,[15519.7,11423.1,0],[[2099,2],[2146,2]]], [2122,[16870.2,10735.1,0],[[2100,2],[2147,2]]], [2123,[18482.7,11120,0],[[2101,2],[2148,2]]], +[2124,[18618.4,11161.4,0],[[2101,2],[2149,2]]], [2125,[20582.4,10613.7,1.638],[[2102,2],[2150,2],[2151,2]]], [2126,[20764.9,11298,-3.8147e-006],[[2103,2],[2105,2],[2129,2]]], [2127,[19557.1,10612.7,0],[[2104,2],[2152,2]]], [2128,[19877.2,10439.8,3.8147e-006],[[2104,2],[2153,2]]], [2129,[20785.3,11327.1,0],[[2105,2],[2126,2],[2154,2]]], +[2130,[21019.3,11911.8,0],[[2106,2],[2155,2]]], [2131,[14473.3,16867.6,0],[[2107,2],[2156,2]]], [2132,[14541.1,17126.5,0],[[2107,2],[2157,2]]], [2133,[14483.8,17674.3,4.76837e-007],[[2108,2],[2109,2],[2158,2],[2133,2],[2135,2]]], [2134,[14570.1,17630.3,6.35783e-007],[[2108,2],[2134,2],[2159,2]]], [2135,[14460.5,17718.8,0],[[2109,2],[2133,2],[2160,2],[2161,2],[2135,2],[2136,2]]], +[2136,[14397.5,17967.2,0],[[2110,2],[2135,2],[2162,2],[2163,2]]], [2137,[14805.1,18095.3,0],[[2111,2],[2139,2]]], [2138,[14813.9,16859.9,0],[[2112,2],[2164,2]]], [2139,[14835.3,18166.7,0],[[2114,2],[2137,2]]], [2140,[14656.3,18533.6,0],[[2115,2],[2165,2]]], [2141,[15857.1,19762.2,1.90735e-006],[[2116,2],[2166,2]]], +[2142,[16223.7,20178.7,0],[[2117,2],[2167,2],[2168,2]]], [2143,[15502.2,19231.2,-7.62939e-006],[[2118,2],[2169,2]]], [2144,[14044.2,15892.3,-1.90735e-006],[[2119,2],[2170,2]]], [2145,[14194,15364.6,-2.38419e-007],[[2120,2],[2171,2]]], [2146,[15397,11387.5,9.53674e-007],[[2121,2],[2172,2]]], [2147,[16831.2,10608.1,0],[[2122,2],[2173,2]]], +[2148,[18527.3,10970.3,7.62939e-006],[[2123,2],[2174,2]]], [2149,[18736.3,11087.8,0],[[2124,2],[2175,2]]], [2150,[20567.4,10546.1,1.638],[[2125,2],[2176,2],[2177,2]]], [2151,[20740.7,10646.1,0],[[2125,2],[2178,2]]], [2152,[19455.7,10708.8,0],[[2127,2],[2179,2]]], [2153,[19909.7,10318.4,-3.8147e-006],[[2128,2],[2180,2]]], +[2154,[20923.3,11230.2,-1.27157e-006],[[2129,2],[2181,2],[2182,2]]], [2155,[21142.7,11906.1,0],[[2130,2],[2183,2]]], [2156,[14366.8,16758.6,0],[[2131,2],[2184,2]]], [2157,[14527.8,17199.7,0],[[2132,2],[2185,2],[2186,2],[2157,2],[2187,2]]], [2158,[14436.9,17557.3,3.8147e-007],[[2133,2],[2160,2],[2188,2],[2159,2],[2189,2],[2185,2]]], [2159,[14547.8,17587.4,-6.35783e-007],[[2134,2],[2158,2],[2188,2],[2190,2]]], +[2160,[14337.2,17646.2,3.17891e-007],[[2135,2],[2158,2],[2191,2]]], [2161,[14464.8,17730.1,-6.35783e-007],[[2135,2]]], [2162,[14281.7,18167.9,0],[[2136,2],[2192,2]]], [2163,[14445.9,17766.9,0],[[2136,2]]], [2164,[14712.9,16871,0],[[2138,2],[2193,2]]], [2165,[14519,18562.2,0],[[2140,2],[2194,2]]], +[2166,[15746.6,19730.5,0],[[2141,2],[2195,2]]], [2167,[16148.8,20292.5,0],[[2142,2],[2196,2]]], [2168,[16380.9,20243.6,0],[[2142,2],[2197,2]]], [2169,[15362,19148.4,0],[[2143,2],[2198,2]]], [2170,[14074.4,16067.4,0],[[2144,2],[2199,2]]], [2171,[14054.3,15293.5,0],[[2145,2],[2200,2]]], +[2172,[15240.6,11318.6,-6.35783e-007],[[2146,2],[2201,2],[2202,2]]], [2173,[16811.8,10459.6,0],[[2147,2],[2203,2]]], [2174,[18499.3,10803.9,0],[[2148,2],[2204,2]]], [2175,[18902.2,11030.8,0],[[2149,2],[2205,2]]], [2176,[20473.3,10544.4,1.90735e-006],[[2150,2],[2206,2]]], [2177,[20627.3,10384.4,0],[[2150,2],[2207,2]]], +[2178,[20869.1,10705.8,0],[[2151,2],[2208,2]]], [2179,[19359.2,10778.9,0],[[2152,2],[2209,2]]], [2180,[20003.3,10216,0],[[2153,2],[2210,2]]], [2181,[21006.4,11321.7,1.90735e-006],[[2154,2],[2211,2]]], [2182,[21052.7,11121,0],[[2154,2],[2212,2]]], [2183,[21308.5,11879.1,1.58946e-007],[[2155,2],[2213,2],[2214,2]]], +[2184,[14269.1,16658.4,0],[[2156,2],[2215,2]]], [2185,[14467,17343.8,-6.35783e-007],[[2157,2],[2158,2],[2188,2]]], [2186,[14536.9,17195.6,0],[[2157,2]]], [2187,[14648.9,17303.7,0],[[2157,2],[2216,2]]], [2188,[14508.3,17526.1,6.35783e-007],[[2188,2]]], [2189,[14277.4,17388.1,1.90735e-006],[[2158,2],[2217,2]]], +[2190,[14681.6,17536.4,0],[[2159,2],[2218,2]]], [2191,[14178.6,17584.5,-9.53674e-007],[[2160,2],[2219,2]]], [2192,[14201.3,18307.8,0],[[2162,2],[2220,2]]], [2193,[14658,16814.4,0],[[2164,2]]], [2194,[14359,18581.3,-1.90735e-006],[[2165,2],[2221,2]]], [2195,[15592.9,19638.4,0],[[2166,2],[2222,2]]], +[2196,[16042.6,20403.4,0],[[2167,2],[2223,2]]], [2197,[16511.3,20306.4,0],[[2168,2],[2224,2]]], [2198,[15263.3,19128.9,0],[[2169,2],[2225,2]]], [2199,[14105.3,16233.6,0],[[2170,2],[2226,2]]], [2200,[13909.1,15241.4,0],[[2171,2],[2227,2]]], [2201,[15357.5,11279.6,0],[[2172,2],[2228,2]]], +[2202,[15107.2,11297.5,0],[[2172,2],[2229,2],[2230,2]]], [2203,[16820,10342.3,3.17891e-007],[[2173,2],[2231,2],[2232,2]]], [2204,[18461,10677.6,3.8147e-006],[[2174,2],[2233,2]]], [2205,[19029,11035.4,0],[[2175,2],[2234,2]]], [2206,[20383.3,10444.1,0],[[2176,2],[2235,2]]], [2207,[20676.6,10280.3,1.90735e-006],[[2177,2],[2236,2]]], +[2208,[20998.4,10768.2,-1.90735e-006],[[2178,2],[2237,2]]], [2209,[19254.1,10849,0],[[2179,2],[2234,2]]], [2210,[20034.7,10177.8,0],[[2180,2],[2238,2],[2239,2]]], [2211,[21120.7,11406.2,0],[[2181,2],[2240,2]]], [2212,[21204.2,11031.7,0],[[2182,2],[2241,2],[2242,2]]], [2213,[21463.5,11891.3,-1.19209e-007],[[2183,2]]], +[2214,[21350,11760.8,0],[[2183,2],[2243,2]]], [2215,[14166,16553.6,0],[[2184,2],[2244,2]]], [2216,[14757.3,17418.9,1.90735e-006],[[2187,2],[2218,2]]], [2217,[14156.8,17335.4,0],[[2189,2],[2245,2]]], [2218,[14801.1,17461.6,0],[[2190,2],[2216,2]]], [2219,[14052.3,17513.2,0],[[2191,2],[2246,2]]], +[2220,[14144.1,18408,0],[[2192,2],[2247,2]]], [2221,[14315.5,18582.9,-6.35783e-007],[[2194,2],[2221,2],[2248,2]]], [2222,[15456.4,19550.1,3.8147e-006],[[2195,2],[2249,2]]], [2223,[15945.2,20503.9,0],[[2196,2],[2250,2]]], [2224,[16627.8,20377.6,0],[[2197,2],[2251,2]]], [2225,[15169.9,19095.6,0],[[2198,2],[2252,2]]], +[2226,[14156,16319.7,-6.35783e-007],[[2199,2],[2253,2],[2254,2]]], [2227,[13787.4,15212.3,0],[[2200,2],[2255,2]]], [2228,[15472.1,11240.7,0],[[2201,2],[2256,2],[2257,2]]], [2229,[15023.3,11244.5,1.58946e-007],[[2202,2],[2258,2],[2259,2]]], [2230,[15043.2,11348.7,0],[[2202,2]]], [2231,[16979.2,10389.6,0],[[2203,2],[2260,2]]], +[2232,[16824.6,10274.4,-2.38419e-007],[[2203,2],[2261,2],[2232,2],[2262,2]]], [2233,[18326.9,10569.5,0],[[2204,2],[2263,2]]], [2234,[19113.9,10910,-7.62939e-006],[[2205,2],[2209,2]]], [2235,[20287,10347.4,-1.90735e-006],[[2206,2],[2264,2]]], [2236,[20595.1,10192.4,-3.8147e-006],[[2207,2],[2265,2]]], [2237,[21129.5,10815.6,0],[[2208,2],[2266,2]]], +[2238,[20127.3,10024.8,0],[[2210,2],[2267,2]]], [2239,[20149.2,10183.9,0],[[2210,2],[2264,2]]], [2240,[21175,11502.5,0],[[2211,2],[2243,2]]], [2241,[21339.9,10999,0],[[2212,2],[2268,2],[2269,2]]], [2242,[21270.5,10964.9,0],[[2266,2],[2269,2],[2212,2]]], [2243,[21276.5,11626.9,0],[[2214,2],[2240,2]]], +[2244,[14054.5,16436,0],[[2215,2],[2270,2],[2271,2]]], [2245,[14039.1,17350,-1.90735e-006],[[2217,2],[2272,2]]], [2246,[13946,17428.9,0],[[2219,2],[2273,2]]], [2247,[14069.4,18541,0],[[2220,2],[2274,2]]], [2248,[14151.6,18611.6,1.90735e-006],[[2221,2],[2275,2],[2274,2]]], [2249,[15337.9,19489.2,0],[[2222,2],[2276,2]]], +[2250,[15848,20604.5,0],[[2223,2],[2277,2]]], [2251,[16688.7,20479.6,0],[[2224,2],[2278,2]]], [2252,[15101.8,19172.1,0],[[2225,2],[2279,2]]], [2253,[14235.2,16404,0],[[2226,2],[2271,2],[2280,2]]], [2254,[14213.8,16272.4,0],[[2226,2]]], [2255,[13705.2,15235.7,0],[[2227,2],[2281,2]]], +[2256,[15595.1,11139.8,0],[[2228,2],[2282,2]]], [2257,[15377,11164.6,-2.54313e-006],[[2228,2],[2283,2],[2284,2]]], [2258,[14979.2,11169.5,-1.19209e-007],[[2229,2],[2285,2],[2286,2],[2287,2]]], [2259,[14992.3,11268.6,4.76837e-007],[[2229,2]]], [2260,[17122.5,10432.7,0],[[2231,2],[2288,2]]], [2261,[16867.9,10098,0],[[2232,2],[2289,2]]], +[2262,[16664.8,10161.5,0],[[2232,2],[2290,2]]], [2263,[18183.9,10538.7,0],[[2233,2],[2291,2]]], [2264,[20247,10266.9,0],[[2235,2],[2239,2]]], [2265,[20469.4,10088,0],[[2236,2],[2292,2]]], [2266,[21199.9,10871.2,0],[[2237,2],[2242,2],[2293,2]]], [2267,[20199.3,9875.83,3.8147e-006],[[2238,2],[2294,2]]], +[2268,[21504.6,10967.8,0],[[2241,2],[2295,2]]], [2269,[21241.1,11008.5,0],[[2242,2],[2241,2]]], [2270,[13914.5,16298.8,0],[[2244,2],[2296,2]]], [2271,[14126.2,16406.6,0],[[2244,2],[2253,2]]], [2272,[13926.4,17253,1.90735e-006],[[2245,2],[2297,2]]], [2273,[13913.4,17398.9,0],[[2246,2]]], +[2274,[14027.5,18560.4,4.76837e-007],[[2247,2],[2248,2],[2275,2],[2298,2],[2299,2]]], [2275,[14094.3,18621.5,0],[[2248,2],[2274,2],[2300,2],[2301,2]]], [2276,[15206.3,19407.9,0],[[2249,2],[2302,2]]], [2277,[15774.8,20711,0],[[2250,2],[2303,2],[2277,2]]], [2278,[16648.9,20601.7,0],[[2251,2],[2278,2]]], [2279,[14986.1,19192.5,0],[[2252,2],[2304,2]]], +[2280,[14403.2,16413.2,0],[[2253,2],[2305,2]]], [2281,[13618.4,15304.1,-9.53674e-007],[[2255,2],[2306,2]]], [2282,[15730.5,11023.8,0],[[2256,2],[2307,2]]], [2283,[15319.5,11192.7,0],[[2257,2],[2308,2],[2309,2],[2284,2]]], [2284,[15318.9,11037.4,6.35783e-007],[[2257,2],[2283,2],[2310,2],[2309,2]]], [2285,[14961.8,11120.3,-1.19209e-007],[[2258,2],[2311,2],[2285,2],[2312,2]]], +[2286,[15030.2,11124.9,0],[[2258,2]]], [2287,[14930.5,11188.2,0],[[2258,2]]], [2288,[17255.1,10471.7,0],[[2260,2],[2313,2]]], [2289,[16921.9,9950.7,0],[[2261,2],[2314,2],[2315,2]]], [2290,[16578.8,10088.3,0],[[2262,2],[2316,2]]], [2291,[18049.1,10499.6,3.8147e-006],[[2263,2],[2317,2]]], +[2292,[20367.6,10016.4,0],[[2265,2],[2318,2]]], [2293,[21258.2,10789,0],[[2266,2],[2319,2]]], [2294,[20222,9840.97,-1.27157e-006],[[2267,2],[2320,2],[2318,2]]], [2295,[21631.9,10990.1,0],[[2268,2],[2321,2]]], [2296,[13787.6,16170.5,0],[[2270,2],[2322,2]]], [2297,[13803.9,17133.6,0],[[2272,2],[2323,2]]], +[2298,[13854.9,18643.5,1.90735e-006],[[2274,2],[2324,2]]], [2299,[13973.3,18521,0],[[2274,2],[2325,2],[2326,2]]], [2300,[14035.8,18725.1,0],[[2275,2],[2327,2],[2328,2]]], [2301,[14137.4,18709.2,0],[[2275,2],[2329,2],[2327,2],[2330,2]]], [2302,[15143.7,19373.5,0],[[2276,2],[2331,2],[2332,2]]], [2303,[15767.1,20735.8,9.53674e-007],[[2277,2],[2333,2],[2334,2]]], +[2304,[14882.5,19138.8,0],[[2279,2],[2335,2]]], [2305,[14530.4,16402.5,1.90735e-006],[[2280,2],[2336,2]]], [2306,[13497.5,15268.1,0],[[2281,2],[2337,2]]], [2307,[15752.8,11011.9,0],[[2282,2],[2338,2],[2339,2]]], [2308,[15218.6,11197.4,4.76837e-007],[[2283,2],[2340,2],[2308,2],[2341,2],[2309,2]]], [2309,[15261.9,11043.6,3.17891e-007],[[2283,2],[2284,2],[2308,2],[2341,2],[2342,2],[2343,2],[2310,2],[2344,2]]], +[2310,[15253.6,10915.3,-3.17891e-007],[[2284,2],[2309,2],[2310,2],[2343,2]]], [2311,[14884.4,11049.2,0],[[2285,2],[2345,2]]], [2312,[14922.9,10982.5,-9.53674e-007],[[2285,2],[2346,2]]], [2313,[17412.8,10517.5,0],[[2288,2],[2347,2]]], [2314,[16941.5,9782.78,1.90735e-006],[[2289,2],[2348,2]]], [2315,[17036.9,10072.6,0],[[2499,2],[2565,2],[2289,2]]], +[2316,[16470.7,9970.06,0],[[2290,2],[2349,2]]], [2317,[17914.5,10433.8,0],[[2291,2],[2350,2]]], [2318,[20268.9,9918.29,0],[[2292,2],[2294,2]]], [2319,[21286.2,10630.5,0],[[2293,2],[2351,2]]], [2320,[20216.7,9798.02,0],[[2294,2],[2352,2],[2353,2]]], [2321,[21778.5,11059.8,0],[[2295,2],[2354,2]]], +[2322,[13690.5,16102.8,1.76482],[[2296,2],[2355,2],[2322,2]]], [2323,[13690.3,17067.4,0],[[2297,2],[2356,2]]], [2324,[13832.8,18647.4,6.35783e-007],[[2298,2],[2328,2],[2357,2]]], [2325,[14018.5,18471.2,0],[[2299,2]]], [2326,[13881.3,18572.2,0],[[2299,2]]], [2327,[14058.6,18768.6,4.76837e-007],[[2300,2],[2301,2],[2358,2],[2359,2],[2360,2]]], +[2328,[13935.5,18714.1,-4.76837e-007],[[2300,2],[2324,2],[2361,2],[2362,2]]], [2329,[14116.6,18736.5,0],[[2301,2],[2360,2]]], [2330,[14250,18830.2,3.8147e-006],[[2301,2],[2363,2]]], [2331,[15064.5,19464.9,0],[[2302,2],[2364,2]]], [2332,[14953.2,19324.4,0],[[2302,2],[2365,2]]], [2333,[15806.4,20786.5,1.27157e-006],[[2303,2],[2366,2],[2367,2]]], +[2334,[15660.5,20627.6,0],[[2303,2],[2368,2]]], [2335,[14752.5,19089.5,-3.8147e-006],[[2304,2],[2369,2]]], [2336,[14581.1,16393.9,9.53674e-007],[[2305,2],[2370,2],[2371,2],[2372,2]]], [2337,[13362.4,15238,0],[[2306,2],[2373,2]]], [2338,[15794.8,11078.8,-1.90735e-006],[[2307,2]]], [2339,[15640.3,10864,0],[[2307,2],[2374,2]]], +[2340,[15126.9,11111.8,-3.8147e-007],[[2340,2],[2341,2],[2375,2]]], [2341,[15219.3,11097.8,4.76837e-007],[[2308,2],[2309,2],[2340,2],[2376,2]]], [2342,[15201.7,11049.4,0],[[2309,2],[2375,2],[2344,2]]], [2343,[15222.3,10966.4,-4.76837e-007],[[2309,2],[2310,2]]], [2344,[15121,11004.9,0],[[2309,2],[2342,2],[2375,2]]], [2345,[14837.9,10964.5,0],[[2311,2],[2377,2],[2378,2]]], +[2346,[14906,10944.6,0],[[2312,2]]], [2347,[17537.3,10600.8,0],[[2313,2],[2379,2]]], [2348,[16975.1,9659.44,1.90735e-006],[[2314,2],[2380,2]]], [2349,[16428.9,9863.89,0],[[2316,2]]], [2350,[17791.2,10353,0],[[2317,2],[2381,2]]], [2351,[21282.4,10503.5,0],[[2319,2],[2382,2]]], +[2352,[20282.1,9633.64,0],[[2320,2],[2383,2]]], [2353,[20079.8,9831.24,7.62939e-006],[[2320,2],[2384,2]]], [2354,[21859.8,10973.6,0],[[2321,2],[2385,2]]], [2355,[13531.9,16043.9,0],[[2322,2],[2386,2]]], [2356,[13557.3,17015,1.90735e-006],[[2323,2],[2387,2]]], [2357,[13741.5,18619.2,-6.35783e-007],[[2324,2],[2388,2],[2389,2]]], +[2358,[14103.7,18736.9,0],[[2327,2]]], [2359,[14014.7,18796.1,1.27157e-006],[[2327,2],[2361,2],[2390,2]]], [2360,[14128,18857,-6.35783e-007],[[2327,2],[2329,2],[2391,2]]], [2361,[13908.8,18813.4,6.35783e-007],[[2328,2],[2359,2],[2392,2],[2393,2]]], [2362,[14028.7,18638,0],[[2328,2]]], [2363,[14388.3,18876.9,3.8147e-006],[[2330,2],[2394,2]]], +[2364,[14980.5,19555.3,0],[[2331,2],[2395,2]]], [2365,[14819.9,19260.1,0],[[2332,2],[2396,2]]], [2366,[15730.4,20860.5,0],[[2333,2],[2397,2]]], [2367,[15962.3,20891.2,0],[[2333,2],[2398,2]]], [2368,[15568.7,20546.7,0],[[2334,2],[2399,2]]], [2369,[14627.5,19098.5,0],[[2335,2],[2400,2]]], +[2370,[14490.9,16300.3,0],[[2336,2]]], [2371,[14639.2,16366.9,0],[[2336,2]]], [2372,[14666.3,16486.9,6.35783e-007],[[2336,2],[2372,2],[2401,2]]], [2373,[13266.1,15215.6,0],[[2337,2],[2402,2],[2403,2]]], [2374,[15590.8,10782.5,0],[[2339,2],[2404,2]]], [2375,[15108.9,11030.3,2.38419e-007],[[2342,2],[2344,2],[2340,2],[2375,2]]], +[2376,[15208.3,11056.6,0],[[2341,2]]], [2377,[14795.7,10887.1,-1.58946e-007],[[2345,2],[2405,2],[2406,2]]], [2378,[14879.4,10928.3,-4.76837e-007],[[2345,2]]], [2379,[17640.2,10572.8,0],[[2347,2]]], [2380,[16999.7,9534.1,0],[[2348,2],[2407,2]]], [2381,[17640.8,10387.1,0],[[2350,2],[2408,2]]], +[2382,[21299.2,10469.5,-4.76837e-007],[[2351,2]]], [2383,[20322.5,9508.25,-3.8147e-006],[[2352,2],[2409,2]]], [2384,[19968.2,9770.41,0],[[2353,2],[2410,2]]], [2385,[21867.5,10928.3,0],[[2354,2]]], [2386,[13381.9,15996.7,0],[[2355,2],[2411,2]]], [2387,[13455.7,17055.8,0],[[2356,2],[2412,2]]], +[2388,[13556.5,18667.3,1.90735e-006],[[2357,2],[2413,2]]], [2389,[13705.8,18562.1,6.35783e-007],[[2357,2],[2414,2],[2415,2]]], [2390,[14091.4,18938.7,1.90735e-006],[[2359,2],[2391,2]]], [2391,[14142.4,18976.3,-6.35783e-007],[[2360,2],[2390,2],[2416,2],[2417,2]]], [2392,[13874.4,18901.6,4.76837e-007],[[2361,2],[2418,2],[2419,2],[2420,2]]], [2393,[14008.9,18921.5,1.90735e-006],[[2361,2],[2393,2]]], +[2394,[14492.3,18982.6,0],[[2363,2],[2400,2]]], [2395,[14892.6,19615.3,0],[[2364,2],[2421,2]]], [2396,[14704.1,19185.2,0],[[2365,2],[2400,2]]], [2397,[15646,20866.8,0],[[2366,2],[2422,2]]], [2398,[16081.9,20999,1.90735e-006],[[2367,2],[2423,2]]], [2399,[15439.4,20435.6,-3.8147e-006],[[2368,2],[2424,2]]], +[2400,[14598.1,19117.6,9.53674e-007],[[2369,2],[2394,2],[2396,2],[2425,2]]], [2401,[14570.8,16583,0],[[2372,2],[2426,2]]], [2402,[13310.3,15101.8,0],[[2373,2],[2427,2],[2428,2]]], [2403,[13204.1,15202.4,0],[[2373,2],[2429,2],[2430,2]]], [2404,[15692.9,10678,-1.90735e-006],[[2374,2],[2431,2]]], [2405,[14727.5,10870.2,0],[[2377,2]]], +[2406,[14767.2,10761.7,4.76837e-007],[[2377,2],[2432,2]]], [2407,[17080.3,9417.44,3.8147e-006],[[2380,2],[2433,2]]], [2408,[17497.9,10391.6,0],[[2381,2],[2434,2]]], [2409,[20376.4,9359.64,0],[[2383,2],[2435,2]]], [2410,[19829.9,9664.1,0],[[2384,2],[2436,2]]], [2411,[13248.6,15972.5,0],[[2386,2],[2437,2]]], +[2412,[13420.1,17068.8,6.35783e-007],[[2387,2],[2438,2],[2439,2]]], [2413,[13392.3,18678.5,0],[[2388,2],[2440,2]]], [2414,[13576.4,18548.7,0],[[2389,2],[2441,2]]], [2415,[13630.1,18393.6,0],[[2389,2],[2442,2]]], [2416,[14218.2,19146.9,0],[[2391,2],[2443,2],[2444,2]]], [2417,[14205.8,19099.4,0],[[2444,2],[2391,2]]], +[2418,[13789.7,18955.2,0],[[2392,2],[2445,2]]], [2419,[13823.7,19047.8,0],[[2392,2],[2446,2]]], [2420,[13969.1,18983.8,0],[[2392,2]]], [2421,[14802.9,19677.2,0],[[2395,2],[2447,2],[2448,2]]], [2422,[15596.9,20924.6,-4.76837e-007],[[2397,2],[2449,2],[2450,2],[2451,2]]], [2423,[16204,21069.3,0],[[2398,2],[2452,2]]], +[2424,[15350.5,20356.2,0],[[2399,2],[2453,2],[2454,2]]], [2425,[14463.7,19204,3.8147e-006],[[2400,2],[2455,2]]], [2426,[14571.8,16686.1,0],[[2401,2],[2456,2]]], [2427,[13141.9,15009.4,0],[[2402,2],[2457,2]]], [2428,[13438,14999.5,-9.53674e-007],[[2402,2],[2458,2]]], [2429,[13068,15177.6,-6.35783e-007],[[2403,2],[2459,2],[2460,2]]], +[2430,[13114.9,15099.9,0],[[2403,2],[2461,2],[2457,2]]], [2431,[15732.8,10632.2,0],[[2404,2]]], [2432,[14794.1,10741.3,0],[[2406,2],[2462,2],[2463,2]]], [2433,[17192.4,9350.57,3.8147e-006],[[2407,2],[2464,2]]], [2434,[17377.7,10322.8,0],[[2408,2],[2465,2]]], [2435,[20447.1,9255.69,0],[[2409,2],[2466,2],[2467,2]]], +[2436,[19783.5,9531.67,0],[[2410,2],[2468,2]]], [2437,[13191.6,15961.7,3.17891e-007],[[2411,2],[2469,2],[2470,2]]], [2438,[13360.8,16933.5,0],[[2412,2],[2471,2]]], [2439,[13326.3,17092.3,-1.90735e-006],[[2412,2],[2472,2]]], [2440,[13241.8,18671.4,0],[[2413,2],[2473,2]]], [2441,[13424.7,18506.9,0],[[2414,2],[2474,2]]], +[2442,[13585,18276.1,-9.53674e-007],[[2415,2],[2475,2]]], [2443,[14247.7,19287.9,0],[[2416,2],[2476,2]]], [2444,[14271.4,19153.4,0],[[2455,2],[2417,2],[2416,2]]], [2445,[13684.6,19093.7,-1.90735e-006],[[2418,2],[2477,2]]], [2446,[13778.1,19173.9,0],[[2419,2],[2478,2]]], [2447,[14910.6,19811.4,0],[[2421,2],[2479,2]]], +[2448,[14646.9,19679.3,0],[[2421,2],[2480,2]]], [2449,[15525.1,21039.1,0],[[2422,2],[2481,2],[2482,2]]], [2450,[15759.2,21052.3,1.90735e-006],[[2422,2],[2483,2]]], [2451,[15445.5,20784.7,0],[[2422,2],[2484,2]]], [2452,[16222.4,21086.9,-4.76837e-007],[[2423,2],[2485,2],[2452,2],[2486,2]]], [2453,[15224.7,20434.3,0],[[2424,2],[2487,2]]], +[2454,[15251.8,20204.5,0],[[2424,2],[2488,2]]], [2455,[14356.7,19239.5,0],[[2425,2],[2444,2]]], [2456,[14596.4,16710.7,0],[[2426,2]]], [2457,[13130.8,15001.3,0],[[2427,2],[2430,2],[2461,2],[2489,2]]], [2458,[13514.7,14998.2,-4.76837e-007],[[2428,2],[2490,2]]], [2459,[13004.5,15142.2,3.8147e-007],[[2429,2],[2491,2],[2461,2],[2492,2],[2493,2],[2494,2]]], +[2460,[13110.2,15354.7,0],[[2429,2],[2495,2]]], [2461,[13077.7,15042.9,3.8147e-007],[[2430,2],[2457,2],[2459,2],[2496,2],[2491,2],[2461,2],[2497,2]]], [2462,[14775.7,10744.9,0],[[2432,2]]], [2463,[14863.5,10729.2,0],[[2432,2]]], [2464,[17247.4,9294.99,0],[[2433,2],[2498,2]]], [2465,[17257.2,10254,-1.90735e-006],[[2434,2],[2499,2]]], +[2466,[20563.8,9162.79,0],[[2435,2],[2500,2]]], [2467,[20478.8,9119.85,0],[[2435,2],[2501,2]]], [2468,[19741.9,9426.47,0],[[2436,2],[2502,2]]], [2469,[13181,15812.4,0],[[2437,2],[2503,2]]], [2470,[13030.1,15949.7,0],[[2437,2],[2504,2]]], [2471,[13305.1,16792.2,0],[[2438,2],[2505,2]]], +[2472,[13202.9,17136.1,0],[[2439,2],[2506,2]]], [2473,[13118.2,18682.3,0],[[2440,2],[2507,2]]], [2474,[13291.6,18440.9,-1.90735e-006],[[2441,2],[2508,2]]], [2475,[13487.2,18149.3,1.90735e-006],[[2442,2],[2509,2]]], [2476,[14311,19485,-1.27157e-006],[[2443,2],[2510,2],[2511,2]]], [2477,[13547.3,19159.3,0],[[2445,2],[2512,2]]], +[2478,[13770.9,19331.1,0],[[2446,2],[2513,2]]], [2479,[15025.9,19901.6,-3.8147e-006],[[2447,2],[2514,2]]], [2480,[14535.3,19668.1,0],[[2448,2],[2515,2],[2511,2]]], [2481,[15364.1,20988.3,0],[[2449,2],[2516,2]]], [2482,[15671.5,21128.7,0],[[2449,2],[2517,2]]], [2483,[15882.8,21159.2,0],[[2450,2],[2518,2]]], +[2484,[15308.8,20672.1,0],[[2451,2],[2519,2]]], [2485,[16357.8,21250.1,0],[[2452,2],[2520,2]]], [2486,[16116.1,21209.6,1.90735e-006],[[2452,2],[2521,2],[2518,2]]], [2487,[15104.8,20530.6,-9.53674e-007],[[2453,2],[2522,2],[2523,2],[2519,2]]], [2488,[15191.6,20087.6,0],[[2454,2],[2514,2]]], [2489,[13215.5,14876.1,0],[[2457,2],[2524,2]]], +[2490,[13594,14942.2,1.19209e-007],[[2458,2],[2525,2],[2526,2],[2527,2]]], [2491,[13034.2,15083.2,0],[[2459,2],[2461,2],[2528,2],[2497,2]]], [2492,[12952.8,15071.3,0],[[2459,2],[2494,2],[2529,2],[2528,2]]], [2493,[12917.1,15289.2,0],[[2459,2],[2530,2]]], [2494,[12912,15126.8,6.35783e-007],[[2459,2],[2492,2],[2531,2]]], [2495,[13110.5,15510.7,0],[[2460,2],[2503,2]]], +[2496,[13068.5,15057.5,6.35783e-007],[[2461,2]]], [2497,[13020.5,14987.1,-4.76837e-007],[[2461,2],[2491,2],[2532,2],[2533,2],[2528,2]]], [2498,[17379.5,9321.15,3.8147e-006],[[2464,2],[2534,2]]], [2499,[17149.5,10168.8,0],[[2465,2],[2315,2]]], [2500,[20669.3,9065.23,-3.8147e-006],[[2466,2],[2535,2]]], [2501,[20515.4,9013.99,-9.53674e-007],[[2467,2],[2536,2],[2501,2],[2537,2]]], +[2502,[19629.4,9361.28,0],[[2468,2],[2538,2]]], [2503,[13162.3,15720.5,0],[[2469,2],[2495,2],[2539,2]]], [2504,[12880.3,15931.5,0],[[2470,2],[2540,2]]], [2505,[13253.3,16676.3,0],[[2471,2],[2541,2]]], [2506,[13068.7,17113.8,-1.90735e-006],[[2472,2],[2542,2]]], [2507,[12999.6,18786.5,0],[[2473,2],[2543,2]]], +[2508,[13149.5,18378.4,0],[[2474,2],[2544,2]]], [2509,[13416.9,18032.7,-1.90735e-006],[[2475,2],[2545,2]]], [2510,[14317.5,19685.4,0],[[2476,2],[2546,2]]], [2511,[14463.8,19656.5,0],[[2476,2],[2480,2],[2547,2],[2515,2]]], [2512,[13422.1,19230.1,0],[[2477,2],[2548,2]]], [2513,[13735.7,19479.5,0],[[2478,2],[2549,2]]], +[2514,[15147.3,20003.3,0],[[2479,2],[2488,2]]], [2515,[14500.2,19693.5,0],[[2480,2],[2511,2],[2550,2]]], [2516,[15212.2,20920.5,0],[[2481,2],[2551,2]]], [2517,[15807.8,21208.6,0],[[2482,2],[2518,2]]], [2518,[15964.1,21249.9,-6.35783e-007],[[2483,2],[2486,2],[2517,2],[2521,2]]], [2519,[15190.3,20569.1,0],[[2484,2],[2487,2]]], +[2520,[16469.1,21398.3,0],[[2485,2],[2552,2]]], [2521,[16043.4,21294.1,0],[[2486,2],[2518,2],[2553,2]]], [2522,[14965.1,20399.8,0],[[2487,2],[2554,2]]], [2523,[14981.4,20602.5,0],[[2487,2],[2555,2]]], [2524,[13294.8,14813.5,0],[[2489,2],[2556,2],[2526,2]]], [2525,[13702.7,14962.3,-4.76837e-007],[[2490,2]]], +[2526,[13452,14909.4,-1.90735e-006],[[2490,2],[2524,2]]], [2527,[13560.3,14799.3,0],[[2490,2],[2557,2]]], [2528,[12984.4,15022.4,0],[[2491,2],[2492,2],[2497,2],[2558,2],[2532,2]]], [2529,[12944.1,15009.6,0],[[2492,2],[2559,2],[2558,2]]], [2530,[12783.6,15383,0],[[2493,2],[2560,2]]], [2531,[12843.1,15085.8,-4.76837e-007],[[2494,2],[2561,2],[2562,2],[2559,2]]], +[2532,[12881.3,14874.1,0],[[2497,2],[2528,2],[2563,2],[2558,2]]], [2533,[13112.4,14879.3,-1.90735e-006],[[2497,2],[2556,2]]], [2534,[17513.2,9376.94,0],[[2498,2],[2564,2]]], [2535,[20749.8,8973.63,-9.53674e-007],[[2500,2],[2566,2],[2567,2],[2536,2],[2568,2]]], [2536,[20579.2,8903.65,1.27157e-006],[[2501,2],[2535,2],[2569,2],[2570,2],[2537,2]]], [2537,[20523.5,8923.2,0],[[2501,2],[2536,2],[2570,2]]], +[2538,[19588,9315.25,-5.08626e-006],[[2502,2],[2571,2],[2572,2]]], [2539,[13001.6,15729.3,0],[[2503,2],[2573,2]]], [2540,[12737.2,15916,0],[[2504,2],[2574,2]]], [2541,[13143.3,16541,0],[[2505,2],[2575,2]]], [2542,[12920,17144.9,-1.90735e-006],[[2506,2],[2576,2]]], [2543,[12848.8,18809.1,0],[[2507,2],[2577,2]]], +[2544,[13007.8,18308.2,0],[[2508,2],[2578,2]]], [2545,[13348.6,17919.1,0],[[2509,2],[2579,2]]], [2546,[14338,19854.1,0],[[2510,2],[2580,2]]], [2547,[14490.9,19665.3,0],[[2511,2]]], [2548,[13306.2,19284.4,0],[[2512,2],[2581,2]]], [2549,[13686.8,19655.3,1.90735e-006],[[2513,2],[2582,2]]], +[2550,[14604.4,19874.5,-1.90735e-006],[[2515,2],[2583,2]]], [2551,[15066.6,20856,0],[[2516,2],[2584,2]]], [2552,[16551.3,21505.2,0],[[2520,2],[2585,2]]], [2553,[16159.3,21400.2,0],[[2521,2],[2586,2]]], [2554,[14907.7,20246.9,0],[[2522,2],[2587,2]]], [2555,[14864.5,20652.6,-3.8147e-006],[[2523,2],[2588,2]]], +[2556,[13244.6,14725.2,0],[[2524,2],[2533,2],[2589,2]]], [2557,[13491.3,14667.4,-4.76837e-007],[[2527,2],[2590,2]]], [2558,[12935.1,14981.3,0],[[2528,2],[2529,2],[2532,2],[2559,2]]], [2559,[12906.2,15011.6,4.76837e-007],[[2529,2],[2531,2],[2558,2],[2561,2]]], [2560,[12677.9,15458.2,0],[[2530,2],[2591,2]]], [2561,[12784.8,15001.8,0],[[2531,2],[2559,2],[2592,2]]], +[2562,[12762.4,15127.4,-3.8147e-006],[[2531,2]]], [2563,[12787.4,14745.2,4.76837e-007],[[2532,2],[2593,2],[2563,2],[2594,2]]], [2564,[17609.6,9339.56,0],[[2534,2],[2595,2]]], [2565,[16911,9964.9,1.90735e-006],[[2315,2],[2596,2]]], [2566,[20828.1,8776.94,-4.76837e-007],[[2535,2],[2569,2],[2597,2],[2598,2]]], [2567,[20630.4,8883.86,-3.8147e-006],[[2535,2],[2599,2],[2570,2]]], +[2568,[20855.7,9064.56,3.8147e-006],[[2535,2],[2600,2]]], [2569,[20756.5,8820.5,0],[[2536,2],[2566,2]]], [2570,[20548.9,8884.93,9.53674e-007],[[2536,2],[2537,2],[2567,2],[2601,2],[2599,2]]], [2571,[19619.6,9460.69,-7.62939e-006],[[2538,2],[2602,2]]], [2572,[19483.9,9207.9,0],[[2538,2],[2603,2]]], [2573,[12850.2,15722.6,0],[[2539,2],[2604,2]]], +[2574,[12595.6,15901,0],[[2540,2],[2605,2]]], [2575,[12996,16465.4,3.8147e-006],[[2541,2],[2606,2]]], [2576,[12789.8,17236,0],[[2542,2],[2607,2]]], [2577,[12730.8,18766.1,1.27157e-006],[[2543,2],[2608,2],[2609,2]]], [2578,[12838.8,18292.6,0],[[2544,2],[2610,2]]], [2579,[13230.8,17822,0],[[2545,2],[2611,2]]], +[2580,[14344.3,19983.4,0],[[2546,2],[2612,2]]], [2581,[13147.3,19393.1,0],[[2548,2],[2613,2]]], [2582,[13650.2,19815.9,0],[[2549,2],[2614,2]]], [2583,[14683.7,19985,0],[[2550,2],[2615,2]]], [2584,[14960.5,20812.3,3.8147e-006],[[2551,2],[2616,2]]], [2585,[16648.1,21589,0],[[2552,2],[2617,2]]], +[2586,[16128.3,21453.4,0],[[2553,2],[2618,2]]], [2587,[14838.7,20183,-9.53674e-007],[[2554,2],[2615,2],[2587,2],[2619,2]]], [2588,[14773.2,20693.5,0],[[2555,2],[2588,2],[2620,2]]], [2589,[13293.4,14584.8,-2.38419e-007],[[2556,2],[2621,2],[2590,2]]], [2590,[13389,14619.4,0],[[2557,2],[2589,2],[2621,2]]], [2591,[12541.3,15551.4,0],[[2560,2],[2622,2],[2623,2]]], +[2592,[12753.8,14925.1,0],[[2561,2]]], [2593,[12650.7,14685.6,0],[[2563,2],[2624,2]]], [2594,[12826,14617.3,0],[[2563,2],[2625,2]]], [2595,[17718.6,9244.83,0],[[2564,2],[2626,2]]], [2596,[16743.4,9920.74,-9.53674e-007],[[2565,2],[2627,2]]], [2597,[20957.7,8631.86,-1.90735e-006],[[2566,2],[2628,2]]], +[2598,[20703,8732.24,0],[[2566,2],[2629,2]]], [2599,[20586.4,8841.55,1.90735e-006],[[2567,2],[2570,2]]], [2600,[20988.1,9045.51,0],[[2568,2],[2630,2]]], [2601,[20484.6,8848.2,-9.53674e-007],[[2570,2],[2631,2],[2632,2],[2633,2]]], [2602,[19502.2,9459.87,0],[[2571,2],[2634,2]]], [2603,[19598.9,9150.3,0],[[2572,2],[2635,2]]], +[2604,[12709.9,15720.1,0],[[2573,2],[2636,2]]], [2605,[12439.5,15884.9,0],[[2574,2],[2622,2],[2637,2],[2638,2],[2639,2],[2640,2]]], [2606,[12866.3,16392.2,-3.8147e-006],[[2575,2],[2641,2]]], [2607,[12653.3,17331.1,0],[[2576,2],[2642,2]]], [2608,[12776.5,18909.1,0],[[2577,2],[2643,2]]], [2609,[12525.7,18770.9,0],[[2577,2],[2644,2]]], +[2610,[12669.2,18309.9,0],[[2578,2],[2645,2]]], [2611,[13095.2,17732,0],[[2579,2],[2646,2]]], [2612,[14362.2,20151.7,0],[[2580,2],[2647,2]]], [2613,[13024.7,19450.3,-4.76837e-007],[[2581,2],[2648,2],[2649,2],[2650,2]]], [2614,[13656.9,19943.2,0],[[2582,2],[2651,2],[2614,2],[2652,2],[2653,2]]], [2615,[14781.3,20114.2,3.8147e-006],[[2583,2],[2587,2]]], +[2616,[14893.3,20798.1,-1.27157e-006],[[2584,2],[2654,2],[2620,2],[2655,2]]], [2617,[16739.9,21679.7,0],[[2585,2],[2656,2]]], [2618,[16063.6,21551.6,-9.53674e-007],[[2586,2],[2657,2]]], [2619,[14734.9,20357.4,0],[[2587,2],[2658,2]]], [2620,[14651.3,20746.9,-7.62939e-007],[[2588,2],[2616,2],[2659,2],[2660,2],[2661,2],[2654,2],[2662,2]]], [2621,[13314.7,14574,-5.96046e-008],[[2589,2],[2590,2],[2663,2],[2664,2]]], +[2622,[12467.1,15682,-1.14441e-006],[[2591,2],[2605,2],[2665,2],[2636,2],[2640,2]]], [2623,[12457.3,15541.1,6.35783e-007],[[2591,2],[2666,2],[2665,2]]], [2624,[12623.3,14680.4,0],[[2593,2],[2667,2],[2668,2]]], [2625,[12796.9,14451.4,0],[[2594,2],[2669,2]]], [2626,[17790.2,9221.14,0],[[2595,2],[2670,2]]], [2627,[16618.9,9875.5,-9.53674e-007],[[2596,2],[2671,2]]], +[2628,[21058.5,8503.62,1.90735e-006],[[2597,2],[2672,2]]], [2629,[20575.9,8729.19,1.90735e-006],[[2598,2],[2633,2]]], [2630,[21136.6,9094.23,0],[[2600,2],[2673,2]]], [2631,[20351.2,8835.75,0],[[2601,2],[2674,2],[2675,2],[2676,2],[2677,2]]], [2632,[20465.4,8892.76,3.8147e-006],[[2601,2]]], [2633,[20514.2,8752.84,0],[[2601,2],[2629,2],[2678,2],[2679,2]]], +[2634,[19368.7,9521.74,0],[[2602,2],[2680,2]]], [2635,[19716.9,9073.86,7.62939e-006],[[2603,2],[2681,2]]], [2636,[12566.7,15703.4,1.90735e-006],[[2604,2],[2622,2]]], [2637,[12610.4,16061.3,0],[[2605,2],[2682,2]]], [2638,[12214.2,15850.1,0],[[2605,2],[2683,2],[2684,2],[2685,2]]], [2639,[12428.8,16004.4,0],[[2605,2],[2686,2]]], +[2640,[12356.9,15779.7,6.35783e-007],[[2605,2],[2622,2],[2687,2],[2665,2]]], [2641,[12776.9,16310.6,0],[[2606,2],[2688,2]]], [2642,[12616.2,17366.9,0],[[2607,2],[2689,2],[2690,2]]], [2643,[12810.8,19078.6,0],[[2608,2],[2691,2]]], [2644,[12373.8,18788.2,0],[[2609,2],[2692,2]]], [2645,[12525.2,18303.9,0],[[2610,2],[2693,2]]], +[2646,[12987.7,17649,0],[[2611,2],[2694,2]]], [2647,[14359.5,20180.6,0],[[2612,2],[2695,2],[2647,2],[2696,2]]], [2648,[12898.6,19541.4,0],[[2613,2],[2697,2]]], [2649,[12875,19381.3,0],[[2613,2],[2691,2]]], [2650,[13202.6,19538.4,0],[[2613,2],[2698,2]]], [2651,[13679.6,20138.3,1.90735e-006],[[2614,2],[2699,2]]], +[2652,[13835,20016.8,0],[[2614,2],[2700,2]]], [2653,[13564.2,19941.3,0],[[2614,2],[2701,2],[2653,2],[2702,2]]], [2654,[14733.3,20765.3,-3.8147e-006],[[2616,2],[2620,2],[2660,2]]], [2655,[15006.9,20959.2,3.8147e-006],[[2616,2],[2703,2]]], [2656,[16818.7,21808.6,0],[[2617,2],[2704,2]]], [2657,[16002.6,21673.7,-1.90735e-006],[[2618,2],[2705,2]]], +[2658,[14693.8,20506.2,0],[[2619,2],[2706,2],[2662,2]]], [2659,[14562.2,20737.9,-1.27157e-006],[[2620,2],[2707,2],[2660,2],[2708,2]]], [2660,[14638.7,20796,0],[[2620,2],[2654,2],[2659,2],[2709,2],[2710,2],[2660,2]]], [2661,[14741.9,20755.5,-2.54313e-006],[[2661,2]]], [2662,[14666.5,20609.3,0],[[2620,2],[2658,2],[2706,2]]], [2663,[13337.9,14529.6,0],[[2621,2]]], +[2664,[13162.4,14459.1,2.38419e-007],[[2621,2],[2711,2]]], [2665,[12427.9,15661.5,-6.35783e-007],[[2622,2],[2623,2],[2640,2],[2687,2]]], [2666,[12386.5,15530.8,0],[[2623,2],[2712,2],[2713,2],[2687,2]]], [2667,[12480.2,14604.1,0],[[2624,2],[2714,2],[2715,2]]], [2668,[12529,14808.7,0],[[2624,2],[2716,2]]], [2669,[12789.1,14425.5,0],[[2625,2],[2717,2],[2718,2]]], +[2670,[17812.5,9114.45,0],[[2626,2],[2719,2]]], [2671,[16522.4,9814.71,0],[[2627,2]]], [2672,[21133.2,8381.62,1.90735e-006],[[2628,2],[2720,2]]], [2673,[21290.2,9157.56,0],[[2630,2],[2721,2]]], [2674,[20315.1,8782.28,-1.27157e-006],[[2631,2],[2674,2],[2722,2]]], [2675,[20222.3,8944.27,0],[[2631,2]]], +[2676,[20182.8,8835.78,-1.27157e-006],[[2631,2],[2723,2],[2676,2],[2724,2]]], [2677,[20235.9,8829.22,0],[[2723,2],[2631,2]]], [2678,[20541.8,8619.58,1.90735e-006],[[2633,2],[2725,2]]], [2679,[20430.6,8687.91,0],[[2633,2],[2726,2],[2679,2],[2727,2]]], [2680,[19300.2,9658.2,1.52588e-005],[[2634,2],[2728,2]]], [2681,[19842.9,9003.83,7.62939e-006],[[2635,2],[2729,2]]], +[2682,[12691.1,16194.8,0],[[2637,2],[2688,2]]], [2683,[12036.1,15846.2,-1.90735e-006],[[2638,2],[2730,2]]], [2684,[12097.8,15946.4,0],[[2638,2],[2731,2]]], [2685,[12233.8,15719.1,0],[[2638,2],[2732,2]]], [2686,[12432.4,16135.7,0],[[2639,2],[2733,2]]], [2687,[12340.2,15681.6,-4.76837e-007],[[2640,2],[2665,2],[2666,2],[2732,2],[2713,2]]], +[2688,[12744.6,16280.2,0],[[2641,2],[2682,2],[2734,2]]], [2689,[12508.5,17497.8,0],[[2642,2],[2735,2]]], [2690,[12747.1,17470.6,0],[[2642,2],[2694,2]]], [2691,[12843.1,19232.4,0],[[2643,2],[2649,2]]], [2692,[12234.1,18804.3,0],[[2644,2],[2736,2]]], [2693,[12345.9,18327.8,0],[[2645,2],[2737,2]]], +[2694,[12864.4,17571.7,0],[[2646,2],[2690,2]]], [2695,[14419.3,20335.5,0],[[2647,2],[2738,2]]], [2696,[14254.3,20264.8,-1.27157e-006],[[2647,2],[2739,2],[2740,2]]], [2697,[12807.6,19642.7,0],[[2648,2],[2741,2]]], [2698,[13339.5,19612,-1.90735e-006],[[2650,2],[2742,2]]], [2699,[13664.8,20245.7,0],[[2651,2],[2743,2]]], +[2700,[13951.1,20091.3,0],[[2652,2],[2744,2]]], [2701,[13541.9,20054.1,1.90735e-006],[[2653,2]]], [2702,[13481.5,19785,0],[[2653,2],[2742,2]]], [2703,[15003.8,21042.8,-3.8147e-006],[[2655,2],[2745,2]]], [2704,[16907,21932.6,0],[[2656,2],[2746,2]]], [2705,[15854.9,21725.6,1.27157e-006],[[2657,2],[2747,2],[2748,2]]], +[2706,[14680.6,20554.9,0],[[2658,2],[2662,2]]], [2707,[14595.5,20833.6,0],[[2659,2],[2749,2]]], [2708,[14499.6,20547.3,0],[[2659,2],[2738,2]]], [2709,[14597.1,20848.5,-3.8147e-006],[[2660,2]]], [2710,[14647.8,20791.4,0],[[2660,2]]], [2711,[13045.6,14374.2,0],[[2664,2],[2750,2]]], +[2712,[12401.8,15400.8,0],[[2666,2],[2751,2]]], [2713,[12365.3,15592.6,4.76837e-007],[[2666,2],[2687,2],[2713,2],[2752,2]]], [2714,[12366.5,14524,3.17891e-007],[[2667,2],[2753,2],[2754,2]]], [2715,[12498.8,14526,0],[[2667,2],[2754,2],[2755,2],[2715,2]]], [2716,[12445.5,14869.6,0],[[2668,2],[2756,2]]], [2717,[12803.2,14291.2,-2.38419e-007],[[2669,2],[2757,2],[2750,2]]], +[2718,[12760.1,14437.4,0],[[2669,2],[2718,2],[2758,2]]], [2719,[17948.8,9073.41,0],[[2670,2],[2759,2]]], [2720,[21195.9,8269.66,0],[[2672,2],[2760,2]]], [2721,[21467.6,9222.94,-3.8147e-006],[[2673,2],[2761,2]]], [2722,[20172.4,8725.28,0],[[2674,2],[2762,2]]], [2723,[20204.1,8830.31,-3.8147e-006],[[2676,2],[2677,2],[2723,2]]], +[2724,[20015.1,8867.71,0],[[2676,2],[2729,2],[2724,2],[2763,2]]], [2725,[20568.3,8485.72,0],[[2678,2],[2764,2]]], [2726,[20445.1,8700,0],[[2679,2]]], [2727,[20254.1,8594.34,3.8147e-006],[[2679,2],[2765,2]]], [2728,[19222.5,9770.54,0],[[2680,2],[2766,2]]], [2729,[19940.8,8921.94,0],[[2681,2],[2724,2]]], +[2730,[11882.3,15850.9,0],[[2683,2],[2767,2]]], [2731,[11996,16045.5,0],[[2684,2],[2768,2]]], [2732,[12232.1,15704.4,0],[[2685,2],[2687,2],[2769,2]]], [2733,[12348.9,16250.8,-1.90735e-006],[[2686,2],[2770,2]]], [2734,[12712.7,16313.7,0],[[2688,2]]], [2735,[12426.9,17655.4,0],[[2689,2],[2771,2]]], +[2736,[12090.4,18793.1,9.53674e-007],[[2692,2],[2772,2],[2736,2],[2773,2]]], [2737,[12207.8,18282.3,-3.8147e-006],[[2693,2],[2774,2]]], [2738,[14475.4,20442.7,0],[[2695,2],[2708,2],[2775,2]]], [2739,[14177.9,20413.3,0],[[2696,2],[2776,2]]], [2740,[14146.7,20195.3,0],[[2696,2],[2744,2]]], [2741,[12745.4,19707.1,-1.27157e-006],[[2697,2],[2777,2],[2778,2]]], +[2742,[13431.7,19685.1,0],[[2698,2],[2702,2]]], [2743,[13563,20332.8,0],[[2699,2],[2779,2]]], [2744,[14083.7,20152,-3.8147e-006],[[2700,2],[2740,2]]], [2745,[14976.9,21145,0],[[2703,2],[2780,2]]], [2746,[17002.2,21985.5,-4.76837e-007],[[2704,2],[2781,2]]], [2747,[15952.9,21825.4,0],[[2705,2],[2782,2]]], +[2748,[15689.3,21681.8,0],[[2705,2],[2783,2]]], [2749,[14557.4,20933,0],[[2707,2],[2784,2],[2785,2]]], [2750,[12904.8,14308.9,4.76837e-007],[[2711,2],[2717,2]]], [2751,[12313.4,15356.4,0],[[2712,2],[2786,2]]], [2752,[12289.1,15583.9,6.35783e-007],[[2713,2],[2787,2],[2788,2]]], [2753,[12320.8,14496.3,3.17891e-007],[[2714,2],[2789,2],[2790,2]]], +[2754,[12393.2,14490.7,-6.35783e-007],[[2714,2],[2715,2],[2791,2]]], [2755,[12531.7,14474.6,-4.76837e-007],[[2715,2],[2791,2],[2792,2],[2793,2]]], [2756,[12384.2,14978.9,0],[[2716,2],[2794,2]]], [2757,[12762.6,14270.5,-7.94729e-008],[[2717,2],[2758,2],[2795,2]]], [2758,[12696.1,14406.5,0],[[2718,2],[2757,2],[2796,2],[2797,2],[2792,2]]], [2759,[18051.8,8963.94,0],[[2719,2],[2798,2]]], +[2760,[21312.4,8156.99,0],[[2720,2],[2799,2]]], [2761,[21584.4,9169.37,0],[[2721,2],[2800,2],[2801,2]]], [2762,[20062,8622.77,-3.8147e-006],[[2722,2],[2802,2]]], [2763,[19872.2,8850.4,0],[[2724,2],[2803,2]]], [2764,[20576.5,8320.48,0],[[2725,2],[2804,2]]], [2765,[20152,8532.2,0],[[2727,2],[2805,2]]], +[2766,[19089.2,9866.95,0],[[2728,2],[2806,2]]], [2767,[11722.5,15834.2,0],[[2730,2],[2807,2]]], [2768,[11922.6,16156.6,0],[[2731,2],[2808,2],[2809,2]]], [2769,[12153.9,15712,-4.76837e-007],[[2732,2],[2769,2],[2810,2],[2788,2]]], [2770,[12314.7,16327.6,0],[[2733,2],[2811,2],[2812,2]]], [2771,[12356.9,17784.6,0],[[2735,2],[2813,2]]], +[2772,[11919.1,18803.1,0],[[2736,2],[2814,2]]], [2773,[11981.1,18652.4,0],[[2736,2],[2815,2]]], [2774,[12057.5,18291.8,3.8147e-006],[[2737,2],[2816,2]]], [2775,[14571.7,20315.1,-1.90735e-006],[[2738,2],[2817,2]]], [2776,[14118.1,20538.3,0],[[2739,2],[2818,2]]], [2777,[12645.6,19858.1,0],[[2741,2],[2819,2]]], +[2778,[12870.1,19798.9,0],[[2741,2],[2820,2]]], [2779,[13530.3,20461.4,0],[[2743,2],[2821,2]]], [2780,[14957.2,21167.9,2.54313e-006],[[2745,2],[2822,2],[2823,2]]], [2781,[17033.4,21987.4,0],[[2746,2]]], [2782,[16046.3,21935.3,-1.90735e-006],[[2747,2],[2824,2]]], [2783,[15537.8,21640.7,3.8147e-006],[[2748,2],[2825,2]]], +[2784,[14483,21042.5,0],[[2749,2],[2826,2],[2827,2]]], [2785,[14629.5,21089.7,0],[[2749,2],[2828,2]]], [2786,[12237.2,15297.2,-1.90735e-006],[[2751,2],[2829,2]]], [2787,[12180.4,15510,-1.90735e-006],[[2752,2],[2830,2]]], [2788,[12164.8,15617.9,-4.76837e-007],[[2752,2],[2769,2],[2831,2],[2788,2],[2810,2]]], [2789,[12205.4,14424.3,1.90735e-007],[[2753,2],[2789,2],[2832,2],[2833,2],[2834,2]]], +[2790,[12371.8,14365.5,0],[[2753,2],[2835,2]]], [2791,[12425.2,14421.9,0],[[2754,2],[2755,2],[2836,2]]], [2792,[12546.7,14399.2,-2.38419e-007],[[2755,2],[2758,2],[2797,2],[2796,2],[2836,2]]], [2793,[12609.4,14571.9,0],[[2755,2],[2796,2],[2837,2]]], [2794,[12272.1,15051,-3.8147e-006],[[2756,2],[2829,2]]], [2795,[12664,14228.2,0],[[2757,2],[2838,2],[2797,2],[2839,2]]], +[2796,[12672.9,14451.8,-6.35783e-007],[[2758,2],[2792,2],[2793,2]]], [2797,[12578.4,14353.2,0],[[2758,2],[2792,2],[2795,2],[2838,2],[2840,2],[2836,2]]], [2798,[18185.6,8905.51,1.90735e-006],[[2759,2],[2841,2]]], [2799,[21460.7,8051.07,0],[[2760,2],[2842,2]]], [2800,[21507.5,8991.96,1.90735e-006],[[2761,2],[2843,2]]], [2801,[21587.3,9182.59,0],[[2761,2]]], +[2802,[19963.7,8555.47,-3.8147e-006],[[2762,2],[2844,2]]], [2803,[19711.4,8842.93,0],[[2763,2],[2845,2]]], [2804,[20572.5,8173.14,0],[[2764,2],[2846,2]]], [2805,[20009.4,8515.42,-3.8147e-006],[[2765,2],[2844,2]]], [2806,[18964.5,9975.97,0],[[2766,2],[2847,2]]], [2807,[11575.9,15792.8,0],[[2767,2],[2848,2]]], +[2808,[11827.2,16265.5,0],[[2768,2],[2849,2],[2850,2]]], [2809,[11915.1,16335.2,0],[[2853,2],[2850,2],[2768,2]]], [2810,[11987.2,15690.2,-6.35783e-007],[[2769,2],[2788,2],[2851,2]]], [2811,[12260.8,16509.4,-3.8147e-006],[[2770,2],[2852,2]]], [2812,[12168.9,16350.5,0],[[2770,2],[2853,2]]], [2813,[12247.4,17883.2,0],[[2771,2],[2854,2]]], +[2814,[11868.7,18813.8,-2.54313e-006],[[2772,2],[2855,2],[2856,2]]], [2815,[11894,18523.1,0],[[2773,2],[2857,2]]], [2816,[11910.1,18307.4,0],[[2774,2],[2858,2]]], [2817,[14588.6,20247.9,0],[[2775,2]]], [2818,[14042.9,20675.9,0],[[2776,2],[2859,2]]], [2819,[12577.5,19970,0],[[2777,2],[2860,2]]], +[2820,[12911,19927.4,-3.8147e-006],[[2778,2],[2861,2]]], [2821,[13440.1,20593,0],[[2779,2],[2862,2]]], [2822,[14887.3,21235.8,0],[[2780,2],[2863,2]]], [2823,[15064.2,21231.7,0],[[2780,2],[2864,2]]], [2824,[16105,22011.7,0],[[2782,2]]], [2825,[15391.9,21568.9,0],[[2783,2],[2865,2]]], +[2826,[14441.7,21205.7,0],[[2784,2],[2866,2]]], [2827,[14336.4,21048.9,0],[[2784,2],[2867,2]]], [2828,[14671.1,21164.1,2.54313e-006],[[2785,2],[2868,2],[2863,2]]], [2829,[12237.9,15228.8,-1.27157e-006],[[2786,2],[2794,2],[2869,2],[2829,2]]], [2830,[12101.5,15368.9,0],[[2787,2],[2870,2]]], [2831,[12200.5,15609.3,-9.53674e-007],[[2788,2]]], +[2832,[12094.6,14534.6,-9.53674e-007],[[2789,2],[2871,2]]], [2833,[12036.4,14343.6,9.53674e-007],[[2789,2],[2872,2]]], [2834,[12266,14264.1,-4.76837e-007],[[2789,2],[2835,2],[2873,2]]], [2835,[12415.6,14260.3,-2.98023e-008],[[2790,2],[2834,2],[2840,2],[2873,2],[2874,2],[2839,2],[2875,2]]], [2836,[12459.9,14356.2,-3.17891e-007],[[2791,2],[2792,2],[2797,2],[2840,2]]], [2837,[12661.9,14611.2,0],[[2793,2]]], +[2838,[12620.3,14318.8,0],[[2795,2],[2797,2]]], [2839,[12542.9,14168.9,0],[[2795,2],[2835,2],[2875,2],[2874,2]]], [2840,[12483.9,14316.1,-2.38419e-007],[[2797,2],[2835,2],[2836,2],[2840,2]]], [2841,[18335.1,8909.72,-1.90735e-006],[[2798,2],[2876,2]]], [2842,[21499.1,8023.51,-3.17891e-007],[[2799,2],[2877,2],[2878,2]]], [2843,[21449,8843.76,3.8147e-006],[[2800,2],[2879,2]]], +[2844,[19942.1,8540.8,-1.27157e-006],[[2802,2],[2805,2],[2880,2]]], [2845,[19607.5,8869.52,0],[[2803,2],[2881,2]]], [2846,[20539.6,8022.23,0],[[2804,2],[2882,2]]], [2847,[18832.2,10072.8,0],[[2806,2],[2883,2]]], [2848,[11471.9,15762.6,0],[[2807,2],[2884,2],[2885,2]]], [2849,[11774,16412.6,0],[[2808,2],[2886,2]]], +[2850,[11894.3,16219.6,0],[[2809,2],[2808,2]]], [2851,[11800.3,15625.6,0],[[2810,2],[2887,2]]], [2852,[12175.9,16625.8,0],[[2811,2],[2888,2]]], [2853,[12046,16400.3,0],[[2812,2],[2809,2]]], [2854,[12137.9,17931.4,0],[[2813,2],[2889,2]]], [2855,[11685.4,18837.1,0],[[2814,2],[2890,2]]], +[2856,[11837.4,18963.5,0],[[2814,2],[2891,2]]], [2857,[11821.2,18384.4,0],[[2815,2],[2892,2]]], [2858,[11800.1,18218.6,0],[[2816,2],[2893,2]]], [2859,[13980.8,20811.7,-3.8147e-006],[[2818,2],[2894,2]]], [2860,[12472.8,19994.1,0],[[2819,2],[2895,2]]], [2861,[12985.9,20055.8,0],[[2820,2],[2896,2]]], +[2862,[13394.9,20687.4,0],[[2821,2],[2897,2],[2862,2],[2898,2]]], [2863,[14792.9,21176.2,0],[[2822,2],[2828,2]]], [2864,[15188.2,21326.6,0],[[2823,2],[2865,2]]], [2865,[15310.6,21462.2,-3.8147e-006],[[2825,2],[2864,2]]], [2866,[14468.9,21368.6,0],[[2826,2],[2899,2]]], [2867,[14213.8,21090.1,0],[[2827,2],[2900,2],[2901,2]]], +[2868,[14652.8,21315.1,0],[[2828,2],[2902,2]]], [2869,[12233.3,15247.9,0],[[2829,2]]], [2870,[12058.4,15212.8,-1.90735e-006],[[2830,2],[2903,2]]], [2871,[11970.6,14651.6,0],[[2832,2],[2904,2]]], [2872,[11953.1,14312.1,0],[[2833,2],[2905,2],[2906,2]]], [2873,[12322.9,14188.2,0],[[2834,2],[2835,2],[2873,2],[2907,2]]], +[2874,[12514.3,14223.8,0],[[2835,2],[2839,2]]], [2875,[12474.2,14121.7,-2.38419e-007],[[2835,2],[2839,2],[2908,2]]], [2876,[18478.3,8831.18,-1.90735e-006],[[2841,2],[2909,2]]], [2877,[21564.4,7872.74,0],[[2842,2],[2910,2]]], [2878,[21500.5,8123.85,0],[[2842,2],[2911,2]]], [2879,[21440.7,8693.33,0],[[2843,2],[2912,2]]], +[2880,[19745.1,8476.1,0],[[2844,2],[2913,2]]], [2881,[19500.1,8868,0],[[2845,2],[2914,2]]], [2882,[20567.8,7935.85,0],[[2846,2],[2915,2],[2916,2]]], [2883,[18768.2,10192.5,0],[[2847,2],[2917,2]]], [2884,[11285.6,15724.6,0],[[2848,2],[2918,2]]], [2885,[11527.6,15664.1,0],[[2848,2],[2885,2],[2887,2]]], +[2886,[11734.9,16538.3,0],[[2849,2],[2919,2]]], [2887,[11649.5,15554.5,1.27157e-006],[[2851,2],[2885,2],[2920,2]]], [2888,[12080.4,16722.2,0],[[2852,2],[2921,2]]], [2889,[12020,17979.6,0],[[2854,2],[2922,2]]], [2890,[11534.6,18783.6,0],[[2855,2],[2923,2]]], [2891,[11800.6,19048.7,-3.8147e-006],[[2856,2],[2924,2]]], +[2892,[11748.2,18310.7,1.27157e-006],[[2857,2],[2893,2],[2925,2]]], [2893,[11759.9,18200.5,-1.27157e-006],[[2858,2],[2892,2],[2926,2]]], [2894,[13906.2,20946.8,0],[[2859,2],[2927,2]]], [2895,[12329.1,20026.9,0],[[2860,2],[2928,2]]], [2896,[13101.9,20137,3.8147e-006],[[2861,2],[2929,2]]], [2897,[13391.6,20874.6,0],[[2862,2],[2930,2]]], +[2898,[13290.4,20634.9,0],[[2862,2],[2931,2]]], [2899,[14433.3,21452.9,0],[[2866,2],[2932,2]]], [2900,[14043.8,21067.6,0],[[2867,2],[2927,2]]], [2901,[14212.1,21233.1,0],[[2867,2],[2933,2]]], [2902,[14747,21408.7,0],[[2868,2],[2934,2]]], [2903,[12005.6,15080.9,0],[[2870,2],[2935,2]]], +[2904,[11904.4,14771.7,-4.76837e-007],[[2871,2],[2935,2],[2904,2],[2936,2]]], [2905,[11838.5,14200.4,0],[[2872,2],[2937,2]]], [2906,[11819.9,14334.3,-1.90735e-006],[[2872,2],[2938,2]]], [2907,[12201.8,14124.4,-9.53674e-007],[[2873,2],[2939,2]]], [2908,[12408.9,14059,-2.38419e-007],[[2875,2]]], [2909,[18610.1,8786.85,0],[[2876,2],[2940,2]]], +[2910,[21609.7,7739.04,0],[[2877,2],[2941,2]]], [2911,[21516.9,8274.52,0],[[2878,2],[2942,2]]], [2912,[21454.4,8556.08,0],[[2879,2],[2942,2]]], [2913,[19569.3,8446.48,0],[[2880,2],[2943,2]]], [2914,[19359.5,8865.61,0],[[2881,2],[2944,2]]], [2915,[20599.6,7778.22,0],[[2882,2],[2945,2]]], +[2916,[20693.2,7983.81,0],[[2882,2],[2946,2]]], [2917,[18732,10215.9,0],[[2883,2]]], [2918,[11109.4,15684.6,0],[[2884,2],[2947,2]]], [2919,[11764.8,16666,0],[[2886,2],[2948,2]]], [2920,[11560.4,15422,0],[[2887,2],[2949,2]]], [2921,[12036.2,16841.3,-3.8147e-006],[[2888,2],[2950,2]]], +[2922,[11908.7,18040.3,0],[[2889,2],[2951,2]]], [2923,[11504.6,18784.2,0],[[2890,2],[2952,2],[2953,2]]], [2924,[11828.2,19099.9,1.27157e-006],[[2891,2],[2954,2],[2955,2]]], [2925,[11667.4,18398.6,0],[[2892,2],[2956,2]]], [2926,[11739.7,18138.6,0],[[2893,2],[2957,2],[2951,2]]], [2927,[13903.2,21084,0],[[2894,2],[2900,2],[2958,2]]], +[2928,[12203.4,20110.6,0],[[2895,2],[2959,2]]], [2929,[13068.9,20244.4,0],[[2896,2],[2960,2]]], [2930,[13432.3,21011.8,0],[[2897,2],[2961,2]]], [2931,[13212.9,20520.2,0],[[2898,2],[2962,2]]], [2932,[14371.9,21520.1,0],[[2899,2],[2963,2]]], [2933,[14176.2,21257.8,0],[[2901,2]]], +[2934,[14836,21475.4,0],[[2902,2],[2964,2]]], [2935,[11941.5,14963.3,0],[[2903,2],[2904,2]]], [2936,[11741.1,14785.7,0],[[2904,2],[2965,2]]], [2937,[11783.2,14068.8,0],[[2905,2],[2966,2]]], [2938,[11687.7,14330.2,9.53674e-007],[[2906,2],[2967,2]]], [2939,[12065.5,14067.8,-9.53674e-007],[[2907,2],[2968,2]]], +[2940,[18733.8,8676.55,0],[[2909,2],[2969,2]]], [2941,[21615.4,7711.51,0],[[2910,2],[2970,2],[2971,2]]], [2942,[21473.4,8442.41,0],[[2911,2],[2912,2]]], [2943,[19416.5,8420.88,0],[[2913,2],[2972,2]]], [2944,[19214.5,8811.9,0],[[2914,2],[2973,2]]], [2945,[20641.6,7638.32,0],[[2915,2],[2974,2]]], +[2946,[20803,7956.61,-1.90735e-006],[[2916,2],[2975,2]]], [2947,[11004.8,15678.5,0],[[2918,2],[2976,2],[2977,2]]], [2948,[11718.7,16781.8,0],[[2919,2]]], [2949,[11487.9,15430.9,0],[[2920,2],[2978,2]]], [2950,[12006.2,16952.4,0],[[2921,2],[2979,2]]], [2951,[11795.1,18111.7,3.8147e-006],[[2922,2],[2926,2]]], +[2952,[11544.5,18704.9,-7.62939e-006],[[2923,2],[2980,2]]], [2953,[11355.8,18889.1,0],[[2923,2],[2981,2]]], [2954,[11716.8,19193.9,0],[[2924,2],[2982,2]]], [2955,[11878.1,19209.7,0],[[2924,2],[2983,2]]], [2956,[11677.4,18510.2,0],[[2925,2],[2980,2]]], [2957,[11705.2,17976.7,3.8147e-006],[[2926,2],[2984,2]]], +[2958,[13762.9,21104.4,0],[[2927,2],[2985,2]]], [2959,[12114,20124.1,0],[[2928,2],[2986,2]]], [2960,[13121.9,20352.7,0],[[2929,2],[2962,2]]], [2961,[13356.3,21094.8,3.8147e-006],[[2930,2],[2987,2]]], [2962,[13139.1,20404.3,3.8147e-006],[[2931,2],[2960,2]]], [2963,[14313.3,21630.4,0],[[2932,2],[2988,2]]], +[2964,[14900.5,21573.8,3.8147e-006],[[2934,2],[2989,2]]], [2965,[11634.5,14831.6,6.35783e-007],[[2936,2],[2990,2],[2991,2]]], [2966,[11745.1,13934.3,0],[[2937,2],[2992,2]]], [2967,[11549.4,14337.8,-1.90735e-006],[[2938,2],[2993,2]]], [2968,[11977.2,13973.1,0],[[2939,2],[2994,2]]], [2969,[18865.4,8571.85,1.90735e-006],[[2940,2],[2995,2]]], +[2970,[21702.5,7575.31,0],[[2941,2],[2996,2]]], [2971,[21537,7588.98,-2.38419e-007],[[2941,2],[2997,2],[2998,2],[2999,2]]], [2972,[19263.5,8386.81,0],[[2943,2],[3000,2]]], [2973,[19103.1,8726.49,0],[[2944,2],[3001,2]]], [2974,[20662,7510.19,0],[[2945,2],[3002,2]]], [2975,[20935.1,7947.86,0],[[2946,2],[3003,2]]], +[2976,[10822.1,15753.8,7.62939e-006],[[2947,2],[3004,2]]], [2977,[11130.3,15567.2,0],[[2947,2],[3005,2]]], [2978,[11381.1,15433.1,0],[[2949,2],[3006,2]]], [2979,[11929,17034.2,0],[[2950,2],[3007,2]]], [2980,[11644.4,18596.4,7.62939e-006],[[2952,2],[2956,2]]], [2981,[11247,18948.1,7.62939e-006],[[2953,2],[3008,2]]], +[2982,[11568.5,19288.8,0],[[2954,2],[3009,2]]], [2983,[11818.1,19333.6,0],[[2955,2],[3010,2]]], [2984,[11600.3,17864.4,-3.8147e-006],[[2957,2],[3011,2]]], [2985,[13628.6,21117.9,0],[[2958,2],[3012,2]]], [2986,[12065.1,20211.1,-7.62939e-006],[[2959,2],[3013,2]]], [2987,[13286.3,21230.5,-7.62939e-006],[[2961,2],[3014,2]]], +[2988,[14291.4,21735.7,0],[[2963,2],[3015,2]]], [2989,[14957.2,21693.2,0],[[2964,2],[3016,2]]], [2990,[11465.7,14749.9,-1.90735e-006],[[2965,2],[3017,2]]], [2991,[11522.3,14986.8,0],[[2965,2],[3018,2]]], [2992,[11700,13794.2,2.38419e-007],[[2966,2],[3019,2],[3020,2],[3021,2]]], [2993,[11502.7,14336.2,-4.76837e-007],[[2967,2],[3022,2],[2993,2],[3023,2]]], +[2994,[11852.6,13889.6,0],[[2968,2],[3019,2]]], [2995,[18905.1,8537.76,0],[[2969,2],[3024,2],[3001,2]]], [2996,[21751.5,7515.36,-7.15256e-007],[[2970,2],[3025,2],[3026,2],[3027,2]]], [2997,[21418.1,7480.77,1.90735e-006],[[2971,2],[3028,2]]], [2998,[21651.3,7513.03,0],[[2971,2],[3029,2],[3027,2]]], [2999,[21415.9,7656.66,9.53674e-007],[[2971,2],[3030,2]]], +[3000,[19092.9,8339.93,1.90735e-006],[[2972,2],[3031,2]]], [3001,[18999.2,8628.05,0],[[2973,2],[2995,2]]], [3002,[20664.9,7395.24,0],[[2974,2],[3032,2]]], [3003,[21069.4,7894.42,0],[[2975,2],[3033,2]]], [3004,[10671.4,15844.7,-7.62939e-006],[[2976,2],[3034,2]]], [3005,[11222.7,15482.4,0],[[2977,2],[3006,2]]], +[3006,[11315,15384.6,0],[[2978,2],[3005,2],[3035,2]]], [3007,[11882,17156.6,0],[[2979,2],[3036,2]]], [3008,[11138.7,18992.8,0],[[2981,2],[3037,2]]], [3009,[11432.4,19382.1,0],[[2982,2],[3038,2]]], [3010,[11700.1,19429,0],[[2983,2],[3039,2]]], [3011,[11507.7,17728.2,-3.8147e-006],[[2984,2],[3040,2]]], +[3012,[13516.3,21182.7,0],[[2985,2],[3041,2]]], [3013,[12093,20327.3,0],[[2986,2],[3042,2]]], [3014,[13230.9,21301.8,0],[[2987,2],[3043,2],[3044,2]]], [3015,[14323.2,21800.9,-7.62939e-006],[[2988,2]]], [3016,[15010.3,21828.4,0],[[2989,2],[3045,2]]], [3017,[11369.4,14664.9,0],[[2990,2],[3046,2]]], +[3018,[11437.4,15106.9,3.8147e-006],[[2991,2],[3035,2]]], [3019,[11788.1,13829.3,0],[[2992,2],[2994,2],[3047,2]]], [3020,[11650.6,13708.3,3.17891e-007],[[2992,2],[3048,2],[3049,2]]], [3021,[11593.5,13884.9,-9.53674e-007],[[2992,2],[3050,2]]], [3022,[11315.4,14404.5,0],[[2993,2],[3051,2]]], [3023,[11450,14198.5,0],[[2993,2],[3052,2]]], +[3024,[19011.5,8423.49,0],[[2995,2],[3031,2]]], [3025,[21890,7411.79,0],[[2996,2],[3053,2]]], [3026,[21822.1,7570.42,3.17891e-007],[[2996,2],[3054,2],[3055,2]]], [3027,[21743.7,7436.17,-3.17891e-007],[[2996,2],[2998,2],[3029,2],[3056,2]]], [3028,[21350.1,7357.98,0],[[2997,2],[3057,2]]], [3029,[21672.8,7473.56,0],[[2998,2],[3027,2],[3029,2],[3058,2]]], +[3030,[21314.8,7775.3,0],[[2999,2],[3033,2]]], [3031,[19064.1,8333,0],[[3000,2],[3024,2],[3059,2],[3060,2]]], [3032,[20678.3,7266.76,0],[[3002,2],[3061,2]]], [3033,[21199,7846.58,0],[[3003,2],[3030,2]]], [3034,[10522.4,15908.8,7.62939e-006],[[3004,2],[3062,2]]], [3035,[11353.6,15249.9,0],[[3006,2],[3018,2]]], +[3036,[11855.9,17263.9,-3.8147e-006],[[3007,2],[3063,2]]], [3037,[10988.1,19016.9,0],[[3008,2],[3064,2]]], [3038,[11366.4,19502.8,0],[[3009,2],[3065,2]]], [3039,[11605.4,19517.6,0],[[3010,2]]], [3040,[11423,17645.9,0],[[3011,2],[3066,2]]], [3041,[13474.9,21233.1,-2.54313e-006],[[3012,2],[3067,2],[3068,2]]], +[3042,[11974.2,20436.9,-7.62939e-006],[[3013,2],[3069,2]]], [3043,[13053.8,21385.5,0],[[3014,2],[3070,2]]], [3044,[13332.1,21313.3,0],[[3014,2],[3067,2]]], [3045,[15081.5,21934.7,3.8147e-006],[[3016,2],[3071,2]]], [3046,[11242.9,14577.5,0],[[3017,2],[3072,2]]], [3047,[11795.9,13749.1,0],[[3019,2],[3049,2]]], +[3048,[11609.6,13649.7,-3.17891e-007],[[3020,2],[3073,2],[3074,2]]], [3049,[11725.4,13662.8,0],[[3020,2],[3047,2],[3075,2]]], [3050,[11488.7,13978,-1.90735e-006],[[3021,2],[3076,2]]], [3051,[11215.7,14481.6,-1.90735e-006],[[3022,2],[3077,2],[3072,2]]], [3052,[11408.8,14207.4,0],[[3023,2]]], [3053,[22012.1,7318.44,9.53674e-007],[[3025,2],[3078,2]]], +[3054,[21734.2,7654.84,-9.53674e-007],[[3026,2],[3079,2]]], [3055,[21950.9,7544.71,9.53674e-007],[[3026,2]]], [3056,[21826.9,7290.08,0],[[3027,2],[3080,2]]], [3057,[21295,7236.13,1.90735e-006],[[3028,2],[3081,2]]], [3058,[21640.7,7420.98,0],[[3029,2]]], [3059,[18898.3,8287.72,0],[[3031,2],[3082,2]]], +[3060,[19207.2,8204.88,0],[[3031,2],[3083,2]]], [3061,[20714.1,7214.08,0],[[3032,2],[3084,2],[3085,2]]], [3062,[10397.9,15913,0],[[3034,2],[3086,2]]], [3063,[11791.3,17360,0],[[3036,2],[3087,2]]], [3064,[10855.3,19023.1,0],[[3037,2],[3088,2]]], [3065,[11338.8,19526.3,7.62939e-006],[[3038,2]]], +[3066,[11320.4,17546.2,0],[[3040,2],[3089,2]]], [3067,[13392.1,21295.7,7.62939e-006],[[3041,2],[3044,2]]], [3068,[13578.1,21318.4,0],[[3041,2],[3090,2]]], [3069,[11891.6,20535.8,0],[[3042,2],[3091,2]]], [3070,[12924.8,21473.1,0],[[3043,2],[3092,2]]], [3071,[15180.9,22002.7,0],[[3045,2],[3093,2]]], +[3072,[11224.7,14562.5,0],[[3046,2],[3051,2],[3094,2],[3095,2]]], [3073,[11438.5,13613.5,0],[[3048,2],[3096,2]]], [3074,[11594.4,13550.8,3.17891e-007],[[3048,2],[3097,2],[3098,2]]], [3075,[11776,13554.9,0],[[3049,2],[3099,2]]], [3076,[11360.8,14078.4,0],[[3050,2],[3100,2]]], [3077,[11193.9,14502.6,0],[[3051,2],[3101,2]]], +[3078,[22148.2,7231.61,0],[[3053,2],[3102,2]]], [3079,[21784.3,7748.07,0],[[3054,2],[3103,2]]], [3080,[21826,7164.05,0],[[3056,2],[3104,2]]], [3081,[21184.9,7086.34,-1.90735e-006],[[3057,2],[3105,2]]], [3082,[18744.7,8225.78,0],[[3059,2],[3106,2]]], [3083,[19329,8131.58,0],[[3060,2],[3107,2]]], +[3084,[20756.4,7060.46,0],[[3061,2],[3108,2]]], [3085,[20781.2,7257.48,0],[[3061,2]]], [3086,[10268.5,15864.3,0],[[3062,2],[3109,2]]], [3087,[11713.3,17473.3,3.8147e-006],[[3063,2],[3110,2]]], [3088,[10815.7,19006,0],[[3064,2],[3111,2],[3112,2]]], [3089,[11288.4,17507.8,0],[[3066,2],[3113,2],[3114,2],[3115,2]]], +[3090,[13699.1,21389.3,0],[[3068,2],[3116,2]]], [3091,[11807.1,20612.4,0],[[3069,2],[3117,2]]], [3092,[12886.4,21565,0],[[3070,2],[3118,2]]], [3093,[15242.3,22140.6,0],[[3071,2],[3119,2]]], [3094,[11188.2,14509.3,-3.8147e-006],[[3072,2]]], [3095,[11195.6,14581.8,0],[[3072,2],[3120,2],[3121,2],[3101,2]]], +[3096,[11321.5,13603.3,0],[[3073,2],[3122,2]]], [3097,[11463.3,13392.2,0],[[3074,2],[3123,2]]], [3098,[11684.8,13410.3,9.53674e-007],[[3074,2],[3124,2],[3099,2]]], [3099,[11726.6,13408,0],[[3075,2],[3098,2],[3124,2]]], [3100,[11251.1,14190.5,0],[[3076,2],[3125,2]]], [3101,[11136.6,14475.5,-1.43051e-006],[[3077,2],[3095,2],[3126,2],[3127,2],[3121,2],[3125,2]]], +[3102,[22264.9,7139.54,9.53674e-007],[[3078,2],[3128,2]]], [3103,[21858.9,7896.03,0],[[3079,2],[3129,2]]], [3104,[21815.1,7006.13,0],[[3080,2],[3130,2]]], [3105,[21055.7,6991.3,0],[[3081,2],[3131,2]]], [3106,[18589.6,8170.54,0],[[3082,2],[3132,2]]], [3107,[19433.9,8007.31,0],[[3083,2],[3133,2]]], +[3108,[20780.1,6908.82,0],[[3084,2],[3134,2]]], [3109,[10126.1,15906.1,0],[[3086,2],[3135,2]]], [3110,[11611.4,17522.1,0],[[3087,2],[3114,2]]], [3111,[10697.5,18954.1,0],[[3088,2],[3136,2]]], [3112,[10822.7,18880.6,0],[[3088,2],[3137,2]]], [3113,[11169.8,17577.9,-7.62939e-006],[[3089,2],[3138,2]]], +[3114,[11457,17579.7,0],[[3089,2],[3110,2]]], [3115,[11197.6,17370.3,0],[[3089,2],[3139,2]]], [3116,[13800,21475.9,7.62939e-006],[[3090,2],[3140,2]]], [3117,[11695.9,20688.7,0],[[3091,2],[3141,2]]], [3118,[12776.6,21650.4,-7.62939e-006],[[3092,2],[3142,2]]], [3119,[15304.5,22280.8,-1.90735e-006],[[3093,2],[3143,2]]], +[3120,[11130.3,14629.6,9.53674e-007],[[3095,2],[3144,2],[3121,2],[3145,2]]], [3121,[11132.8,14556.9,-3.8147e-006],[[3095,2],[3101,2],[3120,2],[3127,2]]], [3122,[11211.6,13578.6,0],[[3096,2],[3146,2]]], [3123,[11378.7,13286.3,0],[[3097,2],[3147,2]]], [3124,[11711.6,13372.2,9.53674e-007],[[3098,2],[3099,2],[3148,2]]], [3125,[11196.4,14321.7,0],[[3100,2],[3101,2]]], +[3126,[11133.7,14534.1,0],[[3101,2]]], [3127,[11070.5,14550.2,0],[[3101,2],[3121,2],[3149,2],[3144,2]]], [3128,[22404.2,7067.35,0],[[3102,2],[3150,2]]], [3129,[21906.2,8029.57,-9.53674e-007],[[3103,2],[3151,2]]], [3130,[21808.9,6920.78,0],[[3104,2],[3152,2],[3153,2]]], [3131,[20916.1,6881.93,0],[[3105,2],[3154,2]]], +[3132,[18455.2,8119.17,0],[[3106,2],[3132,2]]], [3133,[19545.9,7870.18,0],[[3107,2],[3155,2]]], [3134,[20792.8,6820.07,0],[[3108,2],[3156,2]]], [3135,[10007.7,15944.3,-7.62939e-006],[[3109,2],[3157,2]]], [3136,[10594.3,18996.7,-7.62939e-006],[[3111,2],[3158,2]]], [3137,[10832.1,18746.3,0],[[3112,2],[3159,2]]], +[3138,[11110.7,17699.1,-7.62939e-006],[[3113,2],[3160,2]]], [3139,[11139.5,17229.9,0],[[3115,2],[3161,2]]], [3140,[13881.1,21609.5,0],[[3116,2],[3162,2]]], [3141,[11594.1,20757.9,-5.08626e-006],[[3117,2],[3163,2],[3164,2]]], [3142,[12788.9,21748.4,0],[[3118,2],[3165,2]]], [3143,[15282.7,22433.8,0],[[3119,2],[3166,2]]], +[3144,[11051.2,14624.4,0],[[3120,2],[3127,2],[3167,2],[3149,2]]], [3145,[11131.5,14573,0],[[3145,2]]], [3146,[11090.6,13507.8,0],[[3122,2],[3168,2]]], [3147,[11298.7,13181.2,0],[[3123,2],[3169,2]]], [3148,[11835.6,13251.9,0],[[3124,2],[3170,2],[3171,2]]], [3149,[10906.4,14636.7,0],[[3127,2],[3144,2],[3172,2],[3167,2]]], +[3150,[22524.6,6993.62,0],[[3128,2],[3173,2]]], [3151,[21987.2,8140.02,0],[[3129,2],[3174,2]]], [3152,[21867.5,6745.91,0],[[3130,2],[3175,2]]], [3153,[21738.4,6816.49,0],[[3130,2],[3176,2]]], [3154,[20902.4,6866.85,-9.53674e-007],[[3131,2],[3156,2],[3154,2],[3177,2]]], [3155,[19627.2,7783.35,-3.8147e-006],[[3133,2],[3178,2]]], +[3156,[20808.7,6810.49,0],[[3134,2],[3154,2],[3179,2]]], [3157,[9855.91,15985.4,0],[[3135,2],[3180,2]]], [3158,[10457.7,18994.7,0],[[3136,2],[3181,2]]], [3159,[10821.7,18586.6,0],[[3137,2],[3182,2]]], [3160,[11050.5,17813,0],[[3138,2],[3183,2]]], [3161,[11045.5,17101.1,0],[[3139,2],[3184,2]]], +[3162,[14016.8,21638.1,0],[[3140,2],[3185,2]]], [3163,[11499.3,20664.5,0],[[3141,2],[3186,2]]], [3164,[11653.5,20846.7,7.62939e-006],[[3141,2],[3187,2]]], [3165,[12831.1,21808,7.62939e-006],[[3142,2],[3188,2]]], [3166,[15249,22524.3,0],[[3143,2],[3189,2]]], [3167,[10903.1,14659.3,0],[[3144,2],[3149,2],[3172,2]]], +[3168,[11018.3,13482.9,9.53674e-007],[[3146,2],[3190,2],[3191,2],[3192,2]]], [3169,[11265.1,13157.3,2.38419e-007],[[3147,2],[3193,2],[3194,2],[3195,2]]], [3170,[12007.4,13238.4,0],[[3148,2],[3196,2]]], [3171,[11879.4,13132.6,0],[[3148,2],[3197,2]]], [3172,[10857.5,14676.4,3.8147e-006],[[3149,2],[3167,2],[3198,2]]], [3173,[22620.3,6940.77,0],[[3150,2],[3199,2]]], +[3174,[22030.4,8267.96,0],[[3151,2],[3200,2]]], [3175,[21883.7,6598.53,0],[[3152,2],[3201,2]]], [3176,[21661.3,6671.94,0],[[3153,2],[3202,2]]], [3177,[20910.4,6837.31,0],[[3154,2],[3177,2],[3203,2]]], [3178,[19639.9,7759.94,-1.27157e-006],[[3155,2],[3204,2],[3205,2]]], [3179,[20796.8,6777.18,-1.90735e-006],[[3156,2],[3206,2],[3179,2],[3207,2]]], +[3180,[9716.21,15925.3,0],[[3157,2],[3208,2]]], [3181,[10396.3,19021,-1.90735e-006],[[3158,2],[3209,2],[3210,2],[3211,2]]], [3182,[10834,18459.5,0],[[3159,2],[3212,2]]], [3183,[11004.7,17956,0],[[3160,2],[3213,2]]], [3184,[10949.2,16982.3,0],[[3161,2],[3214,2]]], [3185,[14167.3,21697.4,0],[[3162,2],[3215,2]]], +[3186,[11403.4,20602.6,0],[[3163,2],[3216,2]]], [3187,[11708.3,20915.6,0],[[3164,2],[3217,2]]], [3188,[12960.3,21880.5,0],[[3165,2],[3218,2]]], [3189,[15123.4,22569.8,0],[[3166,2],[3219,2]]], [3190,[10950.1,13468.3,9.53674e-007],[[3168,2],[3191,2],[3220,2],[3221,2],[3222,2],[3223,2]]], [3191,[10978.8,13513.9,0],[[3168,2],[3190,2],[3224,2]]], +[3192,[11122.4,13383.4,0],[[3168,2],[3225,2],[3194,2]]], [3193,[11432.2,13047.7,0],[[3169,2],[3226,2]]], [3194,[11138.5,13294.2,0],[[3169,2],[3192,2],[3225,2]]], [3195,[11136,13070.7,1.90735e-006],[[3169,2],[3227,2]]], [3196,[12135.2,13206.5,0],[[3170,2],[3228,2]]], [3197,[11963.5,12992.2,0],[[3171,2],[3229,2],[3230,2]]], +[3198,[10687.6,14724,0],[[3172,2],[3231,2]]], [3199,[22735.8,6964.1,0],[[3173,2],[3232,2],[3199,2],[3233,2]]], [3200,[22086.6,8398.57,0],[[3174,2],[3234,2]]], [3201,[21931.7,6471.55,-9.53674e-007],[[3175,2]]], [3202,[21570.9,6586.5,0],[[3176,2],[3235,2]]], [3203,[20840.5,6734.23,-3.8147e-006],[[3177,2],[3236,2],[3206,2]]], +[3204,[19782,7628.86,0],[[3178,2],[3237,2]]], [3205,[19565.3,7683.54,0],[[3178,2],[3238,2]]], [3206,[20789.8,6680.83,-9.53674e-007],[[3179,2],[3203,2],[3239,2],[3240,2],[3241,2]]], [3207,[20709.4,6835.37,9.53674e-007],[[3179,2],[3207,2],[3242,2],[3243,2]]], [3208,[9692.63,15924.5,0],[[3180,2],[3244,2],[3208,2],[3245,2]]], [3209,[10306.4,19002.7,0],[[3181,2],[3246,2],[3211,2],[3247,2]]], +[3210,[10405.8,19091.8,0],[[3181,2],[3248,2],[3249,2],[3211,2]]], [3211,[10332.1,19059.6,0],[[3181,2],[3209,2],[3210,2],[3249,2]]], [3212,[10814.5,18344.1,3.8147e-006],[[3182,2],[3250,2]]], [3213,[10875.3,18056.7,0],[[3183,2],[3251,2]]], [3214,[10848.1,16881.3,0],[[3184,2],[3252,2]]], [3215,[14265.3,21792.3,0],[[3185,2],[3253,2]]], +[3216,[11308.4,20647.1,0],[[3186,2],[3254,2]]], [3217,[11813.6,20958.8,0],[[3187,2],[3255,2]]], [3218,[13025,22018,-7.62939e-006],[[3188,2],[3256,2]]], [3219,[14981.6,22640.1,0],[[3189,2],[3257,2]]], [3220,[10975.7,13506.2,0],[[3190,2]]], [3221,[10882.4,13490.8,6.35783e-007],[[3190,2],[3258,2],[3259,2],[3222,2]]], +[3222,[10898.4,13386.5,-4.76837e-007],[[3190,2],[3221,2],[3260,2],[3261,2],[3259,2]]], [3223,[11032.1,13398,0],[[3190,2],[3225,2]]], [3224,[10965.9,13586.6,0],[[3191,2]]], [3225,[11108.8,13323,4.76837e-007],[[3192,2],[3194,2],[3223,2],[3262,2],[3261,2]]], [3226,[11528.5,12974.7,0],[[3193,2],[3263,2]]], [3227,[11033.2,12971.6,0],[[3195,2],[3264,2]]], +[3228,[12249.2,13154.5,1.90735e-006],[[3196,2],[3265,2]]], [3229,[12110.8,12910.7,1.90735e-006],[[3197,2],[3266,2]]], [3230,[11862.1,12876.9,0],[[3197,2],[3267,2]]], [3231,[10563.5,14780,0],[[3198,2],[3268,2]]], [3232,[22714.9,6947.8,0],[[3199,2]]], [3233,[22887.7,7130.94,-3.8147e-006],[[3199,2],[3269,2]]], +[3234,[22187.5,8480.46,0],[[3200,2],[3234,2]]], [3235,[21515,6487.02,0],[[3202,2],[3270,2]]], [3236,[20852.2,6698.27,0],[[3203,2],[3271,2]]], [3237,[19897.9,7548.45,0],[[3204,2],[3272,2]]], [3238,[19497.3,7595.85,0],[[3205,2],[3273,2]]], [3239,[20725.6,6663.2,0],[[3206,2],[3242,2],[3274,2]]], +[3240,[20824.2,6597.91,0],[[3206,2],[3275,2]]], [3241,[20823.4,6700.11,0],[[3206,2]]], [3242,[20728,6752.96,3.8147e-006],[[3207,2],[3239,2]]], [3243,[20615.8,6982.15,-3.8147e-006],[[3207,2],[3276,2]]], [3244,[9521.38,15927.3,0],[[3208,2],[3277,2]]], [3245,[9555.56,15973.4,0],[[3208,2],[3278,2]]], +[3246,[10229.8,19083.9,7.62939e-006],[[3209,2],[3249,2]]], [3247,[10296.3,18834.7,0],[[3209,2],[3279,2]]], [3248,[10453.1,19111.7,0],[[3210,2]]], [3249,[10298.5,19117.4,0],[[3210,2],[3211,2],[3246,2],[3280,2]]], [3250,[10856.7,18227.6,0],[[3212,2],[3251,2]]], [3251,[10876,18162,0],[[3213,2],[3250,2]]], +[3252,[10742.5,16803,0],[[3214,2],[3281,2]]], [3253,[14301.7,21817.5,0],[[3215,2]]], [3254,[11203.5,20665.2,1.52588e-005],[[3216,2],[3282,2]]], [3255,[11904.6,21031.5,0],[[3217,2],[3283,2]]], [3256,[13031.3,22147.5,0],[[3218,2],[3284,2]]], [3257,[14894.1,22762.2,-9.53674e-007],[[3219,2],[3285,2]]], +[3258,[10761.1,13491.6,1.27157e-006],[[3221,2],[3259,2],[3286,2]]], [3259,[10854.6,13416.7,9.53674e-007],[[3221,2],[3222,2],[3258,2],[3287,2]]], [3260,[10783,13275.9,0],[[3222,2],[3288,2]]], [3261,[11001.7,13301.5,6.35783e-007],[[3222,2],[3225,2],[3289,2]]], [3262,[11070.4,13279.8,0],[[3225,2],[3290,2]]], [3263,[11609.5,12834.4,0],[[3226,2],[3291,2]]], +[3264,[10998.8,12940.3,0],[[3227,2],[3289,2],[3292,2]]], [3265,[12410.1,13160.5,0],[[3228,2],[3293,2]]], [3266,[12219.5,12910.2,6.35783e-007],[[3229,2],[3294,2]]], [3267,[11754.9,12818.9,0],[[3230,2],[3295,2],[3291,2]]], [3268,[10519.8,14937.2,0],[[3231,2],[3296,2]]], [3269,[22852,7246.67,0],[[3233,2],[3297,2]]], +[3270,[21447,6404.37,0],[[3235,2],[3298,2],[3299,2]]], [3271,[21016.7,6634.36,0],[[3236,2],[3300,2]]], [3272,[20000.3,7439.3,0],[[3237,2],[3301,2]]], [3273,[19416,7489.42,3.8147e-006],[[3238,2],[3302,2]]], [3274,[20615.2,6527.63,-3.8147e-006],[[3239,2],[3303,2]]], [3275,[20861.8,6558.26,3.8147e-006],[[3240,2]]], +[3276,[20498.9,7083.74,0],[[3243,2],[3304,2]]], [3277,[9389.21,15895.2,0],[[3244,2],[3305,2]]], [3278,[9454.52,16010.9,0],[[3245,2],[3306,2],[3307,2],[3278,2],[3308,2]]], [3279,[10245.2,18714.2,0],[[3247,2],[3309,2]]], [3280,[10361.2,19256.3,1.52588e-005],[[3249,2],[3310,2]]], [3281,[10599.7,16723,0],[[3252,2],[3311,2]]], +[3282,[11106.7,20734.7,5.08626e-006],[[3254,2],[3312,2],[3313,2]]], [3283,[11947.8,21093.9,0],[[3255,2],[3314,2]]], [3284,[13008,22261.4,0],[[3256,2],[3315,2]]], [3285,[14793.8,22815.3,0],[[3257,2],[3316,2]]], [3286,[10648.1,13490.2,3.8147e-006],[[3258,2],[3317,2]]], [3287,[10816.4,13342.9,0],[[3259,2]]], +[3288,[10677.7,13256.7,-3.8147e-006],[[3260,2],[3318,2]]], [3289,[11010.2,13151.7,0],[[3261,2],[3264,2]]], [3290,[11147,13221.1,0],[[3262,2]]], [3291,[11610.5,12811.3,0],[[3263,2],[3267,2],[3319,2],[3320,2]]], [3292,[10952.4,12757.2,-1.90735e-006],[[3264,2],[3321,2]]], [3293,[12560.1,13224.1,0],[[3265,2],[3322,2]]], +[3294,[12327.4,12897,3.17891e-007],[[3266,2],[3323,2]]], [3295,[11671.3,12793.5,0],[[3267,2],[3324,2]]], [3296,[10385.1,15002.1,0],[[3268,2],[3325,2]]], [3297,[22832.2,7370.48,0],[[3269,2],[3326,2]]], [3298,[21300.7,6458.65,0],[[3270,2],[3327,2]]], [3299,[21590.6,6285.26,0],[[3270,2],[3328,2]]], +[3300,[21044,6621.45,-6.35783e-007],[[3271,2],[3300,2],[3327,2]]], [3301,[20068.7,7322.57,0],[[3272,2],[3329,2]]], [3302,[19453,7382.93,-3.8147e-006],[[3273,2],[3330,2]]], [3303,[20539.9,6419.21,3.8147e-006],[[3274,2],[3331,2]]], [3304,[20363.4,7168.96,0],[[3276,2],[3329,2]]], [3305,[9292.11,15858.8,1.90735e-006],[[3277,2],[3306,2],[3332,2],[3333,2]]], +[3306,[9354.82,15961.4,-2.54313e-006],[[3278,2],[3305,2],[3307,2]]], [3307,[9386.77,15928.3,7.62939e-006],[[3278,2],[3306,2]]], [3308,[9491.41,16041,0],[[3278,2],[3334,2],[3335,2]]], [3309,[10117.7,18688.9,0],[[3279,2],[3336,2],[3337,2]]], [3310,[10413.9,19382.7,0],[[3280,2],[3338,2]]], [3311,[10476.1,16663.8,3.8147e-006],[[3281,2],[3339,2]]], +[3312,[11125.7,20864.1,-1.52588e-005],[[3282,2],[3340,2]]], [3313,[10995.5,20661.8,0],[[3282,2],[3341,2]]], [3314,[12046,21186.7,1.52588e-005],[[3283,2],[3342,2]]], [3315,[13007.8,22336.2,0],[[3284,2],[3343,2],[3344,2]]], [3316,[14672.6,22879.5,0],[[3285,2],[3345,2]]], [3317,[10589,13405.5,-3.8147e-006],[[3286,2],[3318,2]]], +[3318,[10639.6,13249.1,-1.27157e-006],[[3288,2],[3317,2],[3346,2]]], [3319,[11659,12789,0],[[3291,2]]], [3320,[11583.1,12663.7,0],[[3291,2],[3347,2]]], [3321,[10885.2,12619.9,1.90735e-006],[[3292,2],[3348,2]]], [3322,[12655.7,13304.8,0],[[3293,2],[3349,2]]], [3323,[12459.1,12773.4,0],[[3294,2],[3350,2]]], +[3324,[11827.4,12709.5,1.90735e-006],[[3295,2],[3351,2]]], [3325,[10241.2,15104.8,7.62939e-006],[[3296,2],[3352,2]]], [3326,[22779.7,7490.64,-3.8147e-006],[[3297,2],[3353,2]]], [3327,[21173.1,6532.86,0],[[3298,2],[3300,2]]], [3328,[21685.9,6170.73,0],[[3299,2],[3354,2]]], [3329,[20199.6,7265.06,0],[[3301,2],[3304,2]]], +[3330,[19434.8,7272.48,0],[[3302,2],[3355,2]]], [3331,[20424.7,6356.15,1.90735e-006],[[3303,2],[3356,2],[3331,2],[3357,2]]], [3332,[9224.25,15841.7,0],[[3305,2],[3358,2],[3359,2]]], [3333,[9331.33,15766.5,1.01725e-005],[[3305,2],[3333,2],[3360,2]]], [3334,[9449.33,16116,0],[[3308,2],[3361,2],[3334,2],[3362,2]]], [3335,[9583.94,16059.2,-2.54313e-006],[[3308,2],[3363,2],[3335,2],[3364,2]]], +[3336,[9928.14,18643.5,0],[[3309,2],[3365,2]]], [3337,[10046.4,18797.7,0],[[3309,2],[3366,2]]], [3338,[10413.9,19436.4,-5.08626e-006],[[3310,2],[3367,2],[3368,2]]], [3339,[10333.7,16656.3,0],[[3311,2],[3369,2]]], [3340,[11142.8,20985.7,0],[[3312,2],[3370,2]]], [3341,[10976.1,20539,1.52588e-005],[[3313,2],[3371,2]]], +[3342,[12096.9,21298.3,-7.62939e-006],[[3314,2],[3372,2]]], [3343,[12868.2,22374.4,0],[[3315,2],[3373,2]]], [3344,[13123.9,22422.9,7.62939e-006],[[3315,2],[3374,2]]], [3345,[14635,23008,9.53674e-007],[[3316,2],[3375,2]]], [3346,[10480.9,13180.2,0],[[3318,2],[3376,2]]], [3347,[11478.5,12577.5,0],[[3320,2],[3377,2]]], +[3348,[10815.1,12496.8,0],[[3321,2],[3378,2]]], [3349,[12736.2,13394.6,-1.90735e-006],[[3322,2],[3379,2]]], [3350,[12473.6,12626.4,0],[[3323,2],[3380,2]]], [3351,[11925,12631.3,1.90735e-006],[[3324,2],[3381,2]]], [3352,[10114.5,15207.3,0],[[3325,2],[3382,2]]], [3353,[22792.5,7607.69,0],[[3326,2],[3383,2]]], +[3354,[21791.5,6034.98,4.76837e-007],[[3328,2],[3354,2]]], [3355,[19453.2,7143.81,3.8147e-006],[[3330,2],[3384,2]]], [3356,[20361,6256.84,0],[[3331,2],[3385,2]]], [3357,[20266.7,6373.85,0],[[3331,2],[3386,2]]], [3358,[9203.96,15916,0],[[3332,2],[3387,2],[3388,2]]], [3359,[9183.21,15817.1,0],[[3332,2],[3389,2],[3390,2],[3391,2],[3359,2]]], +[3360,[9420.35,15727.8,0],[[3333,2],[3392,2]]], [3361,[9466.83,16093.8,0],[[3334,2]]], [3362,[9366.47,16260.8,0],[[3334,2],[3393,2]]], [3363,[9567.96,16044.7,-3.8147e-006],[[3335,2]]], [3364,[9705.87,16186.8,0],[[3335,2],[3394,2]]], [3365,[9842.37,18571.4,0],[[3336,2],[3395,2],[3396,2]]], +[3366,[9944.77,18828,7.62939e-006],[[3337,2],[3397,2]]], [3367,[10388.1,19582.4,1.52588e-005],[[3338,2],[3398,2]]], [3368,[10322.2,19340.6,-1.52588e-005],[[3338,2],[3399,2]]], [3369,[10202.7,16604,-3.8147e-006],[[3339,2],[3400,2]]], [3370,[11247.9,21026.2,0],[[3340,2],[3401,2]]], [3371,[10949.9,20445.2,0],[[3341,2],[3402,2]]], +[3372,[12130.5,21435.6,0],[[3342,2],[3403,2]]], [3373,[12751.8,22368.7,0],[[3343,2],[3404,2]]], [3374,[13275.1,22489,0],[[3344,2],[3405,2]]], [3375,[14537.3,23058.7,0],[[3345,2],[3406,2]]], [3376,[10358.5,13115.7,0],[[3346,2],[3407,2]]], [3377,[11445.2,12481.3,0],[[3347,2],[3408,2]]], +[3378,[10741.8,12347.3,-4.76837e-007],[[3348,2],[3409,2],[3378,2],[3410,2],[3411,2]]], [3379,[12855.2,13434.3,0],[[3349,2],[3412,2]]], [3380,[12417.3,12511.4,0],[[3350,2],[3413,2]]], [3381,[12016.1,12587.9,0],[[3351,2],[3414,2]]], [3382,[9974.74,15284.1,7.62939e-006],[[3352,2],[3415,2]]], [3383,[22723.7,7731.52,-3.8147e-006],[[3353,2],[3416,2]]], +[3384,[19480,7030.43,0],[[3355,2],[3417,2]]], [3385,[20423.8,6150.71,0],[[3356,2],[3418,2]]], [3386,[20145,6443.04,0],[[3357,2],[3419,2]]], [3387,[9099.98,16015.8,0],[[3358,2],[3420,2]]], [3388,[9211.16,15987.7,0],[[3358,2]]], [3389,[9133.09,15789.7,-2.54313e-006],[[3359,2],[3421,2],[3422,2]]], +[3390,[9231.9,15705.3,0],[[3359,2],[3423,2]]], [3391,[9133.21,15846.3,0],[[3359,2],[3424,2],[3421,2]]], [3392,[9447.39,15669.1,3.8147e-006],[[3360,2],[3425,2],[3426,2],[3427,2]]], [3393,[9324.21,16374.2,2.54313e-006],[[3362,2],[3428,2],[3429,2]]], [3394,[9768.56,16319.4,7.62939e-006],[[3364,2],[3430,2]]], [3395,[9819.71,18690.5,0],[[3365,2],[3431,2]]], +[3396,[9727.16,18453.1,7.62939e-006],[[3365,2],[3432,2]]], [3397,[9911.05,18781.2,2.54313e-006],[[3366,2],[3397,2],[3433,2]]], [3398,[10260.3,19628.4,0],[[3367,2],[3434,2]]], [3399,[10249.7,19316,-1.52588e-005],[[3368,2]]], [3400,[10069.6,16550.5,-3.8147e-006],[[3369,2],[3435,2]]], [3401,[11245.9,21047.7,-2.54313e-006],[[3370,2],[3436,2],[3437,2]]], +[3402,[10909.1,20312,0],[[3371,2],[3438,2]]], [3403,[12199.3,21569.3,0],[[3372,2],[3439,2]]], [3404,[12602.4,22393,-3.8147e-006],[[3373,2],[3440,2]]], [3405,[13389.8,22589.2,-7.62939e-006],[[3374,2],[3441,2]]], [3406,[14397.1,23055.1,0],[[3375,2],[3442,2]]], [3407,[10208.8,13033.5,0],[[3376,2],[3443,2]]], +[3408,[11394.7,12337.5,0],[[3377,2],[3444,2]]], [3409,[10762.6,12375.5,0],[[3378,2]]], [3410,[10647.1,12385.8,-9.53674e-007],[[3378,2],[3445,2]]], [3411,[10674.1,12268.1,0],[[3378,2],[3446,2],[3447,2],[3411,2],[3448,2]]], [3412,[13021.3,13425.3,0],[[3379,2],[3449,2]]], [3413,[12280.5,12472.2,-4.76837e-007],[[3380,2],[3450,2]]], +[3414,[12041.7,12464.1,0],[[3381,2],[3451,2],[3450,2]]], [3415,[9853.27,15321.4,0],[[3382,2],[3452,2]]], [3416,[22663.9,7799.01,7.62939e-006],[[3383,2]]], [3417,[19442.6,6938.86,0],[[3384,2],[3453,2]]], [3418,[20526.3,6085.42,7.62939e-006],[[3385,2],[3454,2]]], [3419,[20049.2,6532.8,0],[[3386,2],[3455,2]]], +[3420,[9051.34,16124.6,-1.52588e-005],[[3387,2],[3456,2]]], [3421,[9090.02,15776.5,-5.08626e-006],[[3389,2],[3391,2],[3457,2],[3424,2]]], [3422,[9151.27,15669.8,0],[[3389,2],[3458,2]]], [3423,[9342.82,15623.8,0],[[3390,2],[3459,2]]], [3424,[9076.98,15817.5,0],[[3391,2],[3421,2],[3424,2]]], [3425,[9404.18,15672.9,0],[[3392,2]]], +[3426,[9564.81,15653.3,0],[[3392,2]]], [3427,[9514.15,15483.3,0],[[3392,2],[3460,2]]], [3428,[9294.57,16419.8,0],[[3393,2]]], [3429,[9178.86,16375.4,0],[[3393,2],[3461,2],[3456,2],[3462,2],[3429,2]]], [3430,[9838.1,16425.6,0],[[3394,2],[3435,2]]], [3431,[9796.02,18713.6,0],[[3395,2]]], +[3432,[9593,18400.4,0],[[3396,2],[3463,2]]], [3433,[9761.51,18839.2,0],[[3397,2],[3433,2]]], [3434,[10206.7,19687,0],[[3398,2],[3464,2],[3465,2]]], [3435,[9929.12,16491.1,0],[[3400,2],[3430,2]]], [3436,[11398.1,21118,7.62939e-006],[[3401,2],[3466,2]]], [3437,[11149.6,21159.5,0],[[3401,2],[3467,2]]], +[3438,[10799,20249.5,0],[[3402,2],[3468,2]]], [3439,[12160.8,21699,0],[[3403,2],[3469,2]]], [3440,[12464.3,22397.5,0],[[3404,2],[3470,2]]], [3441,[13494,22629.9,0],[[3405,2],[3471,2]]], [3442,[14298.5,23129.8,3.8147e-006],[[3406,2],[3472,2]]], [3443,[10117.3,12955.9,0],[[3407,2],[3473,2]]], +[3444,[11313.6,12187.9,0],[[3408,2],[3474,2]]], [3445,[10603.5,12403.9,-4.76837e-007],[[3410,2],[3475,2],[3445,2],[3476,2],[3477,2]]], [3446,[10611.2,12209.7,0],[[3411,2],[3476,2],[3478,2]]], [3447,[10690.4,12263.7,0],[[3411,2],[3479,2]]], [3448,[10591.4,12314.8,0],[[3411,2],[3477,2],[3476,2]]], [3449,[13146.5,13363.1,0],[[3412,2],[3480,2]]], +[3450,[12150.4,12415.4,0],[[3413,2],[3414,2],[3451,2]]], [3451,[12091.2,12416.3,0],[[3414,2],[3450,2],[3451,2],[3481,2]]], [3452,[9713.67,15402.3,0],[[3415,2],[3460,2]]], [3453,[19457.2,6915.81,0],[[3417,2],[3482,2],[3483,2]]], [3454,[20627.5,6004.78,0],[[3418,2],[3484,2]]], [3455,[19934,6569.89,-7.62939e-006],[[3419,2],[3485,2]]], +[3456,[9013.28,16267.3,0],[[3420,2],[3429,2],[3461,2]]], [3457,[8921.84,15761.2,0],[[3421,2],[3486,2]]], [3458,[9122.06,15582.4,5.08626e-006],[[3422,2],[3487,2],[3488,2]]], [3459,[9440.75,15551.1,0],[[3423,2],[3460,2]]], [3460,[9508.39,15463.1,-1.52588e-006],[[3427,2],[3452,2],[3459,2],[3489,2],[3490,2]]], [3461,[9007.84,16348.9,0],[[3429,2],[3456,2],[3491,2],[3492,2]]], +[3462,[9202.73,16386.9,0],[[3429,2],[3462,2]]], [3463,[9430.53,18430,0],[[3432,2],[3493,2]]], [3464,[10027.2,19691.2,-1.52588e-005],[[3434,2],[3494,2]]], [3465,[10256.6,19781.1,-1.52588e-005],[[3434,2],[3495,2]]], [3466,[11502.6,21221.5,0],[[3436,2],[3496,2]]], [3467,[11092.7,21279.5,0],[[3437,2],[3497,2]]], +[3468,[10694.4,20213.7,0],[[3438,2],[3498,2]]], [3469,[12127.6,21809.2,0],[[3439,2],[3499,2]]], [3470,[12319.4,22423.2,0],[[3440,2],[3500,2]]], [3471,[13599.4,22685.4,0],[[3441,2],[3501,2]]], [3472,[14125.5,23134.1,0],[[3442,2],[3502,2],[3503,2]]], [3473,[10087.2,12892.6,1.34568],[[3443,2],[3473,2],[3504,2],[3505,2]]], +[3474,[11307.3,12171.4,-6.35783e-007],[[3444,2],[3506,2],[3507,2]]], [3475,[10435.5,12395.1,9.53674e-007],[[3445,2],[3508,2]]], [3476,[10535.6,12298.1,0],[[3445,2],[3446,2],[3448,2],[3509,2],[3508,2]]], [3477,[10576.4,12323.9,0],[[3448,2],[3445,2]]], [3478,[10488.1,12095.8,9.53674e-007],[[3446,2],[3510,2]]], [3479,[10729,12231,0],[[3447,2],[3511,2],[3512,2]]], +[3480,[13287.3,13312,9.53674e-007],[[3449,2],[3513,2]]], [3481,[12041.7,12345.4,0],[[3451,2]]], [3482,[19281.8,6885.96,0],[[3453,2],[3514,2]]], [3483,[19596.4,6865.31,7.62939e-006],[[3453,2],[3515,2]]], [3484,[20744,5939.38,-7.62939e-006],[[3454,2],[3516,2]]], [3485,[19801.2,6621.03,0],[[3455,2],[3517,2]]], +[3486,[8792.09,15788.6,0],[[3457,2],[3518,2]]], [3487,[9145.34,15410,0],[[3458,2],[3519,2]]], [3488,[8984.79,15530.9,0],[[3458,2],[3488,2]]], [3489,[9530.86,15284.1,0],[[3460,2]]], [3490,[9427.75,15340.3,0],[[3460,2],[3520,2]]], [3491,[8866.03,16384.1,0],[[3461,2],[3521,2]]], +[3492,[8939.09,16530.3,0],[[3461,2],[3522,2]]], [3493,[9341,18520.6,0],[[3463,2],[3523,2]]], [3494,[9952.42,19707.8,0],[[3464,2],[3524,2]]], [3495,[10380.8,19831,0],[[3465,2],[3525,2]]], [3496,[11522,21316,0],[[3466,2],[3526,2]]], [3497,[11026.7,21404.4,0],[[3467,2],[3527,2]]], +[3498,[10634.9,20084.2,-1.52588e-005],[[3468,2],[3528,2]]], [3499,[12165.4,21910.6,0],[[3469,2],[3529,2]]], [3500,[12213,22466,0],[[3470,2],[3530,2]]], [3501,[13734.3,22754.9,0],[[3471,2],[3531,2]]], [3502,[13974.3,23157.7,0],[[3472,2],[3532,2]]], [3503,[14084.7,23020,0],[[3586,2],[3472,2]]], +[3504,[9974.09,12781.7,0],[[3473,2],[3533,2]]], [3505,[10139.2,12724.2,0],[[3473,2],[3534,2],[3535,2]]], [3506,[11112.4,12160.1,0],[[3474,2],[3536,2]]], [3507,[11456.1,12134.8,0],[[3474,2],[3537,2]]], [3508,[10419.2,12383,0],[[3475,2],[3476,2],[3538,2],[3539,2]]], [3509,[10440.9,12186.9,0],[[3476,2],[3540,2]]], +[3510,[10436,11980.3,0],[[3478,2],[3541,2],[3542,2]]], [3511,[10837.8,12150.9,-6.35783e-007],[[3479,2],[3543,2],[3536,2]]], [3512,[10662.4,12153,0],[[3479,2]]], [3513,[13415.5,13238.3,0],[[3480,2],[3544,2]]], [3514,[19144,6824.4,0],[[3482,2],[3545,2]]], [3515,[19712.1,6856.96,0],[[3483,2],[3517,2]]], +[3516,[20884.6,5869,0],[[3484,2],[3546,2]]], [3517,[19783.8,6720.25,0],[[3485,2],[3515,2]]], [3518,[8725.75,15862.5,-7.62939e-006],[[3486,2],[3547,2]]], [3519,[9133.41,15276.6,-7.62939e-006],[[3487,2],[3548,2]]], [3520,[9439.08,15169.7,7.62939e-006],[[3490,2],[3549,2]]], [3521,[8766.54,16401,1.52588e-005],[[3491,2],[3550,2]]], +[3522,[8916.56,16665.8,0],[[3492,2],[3551,2]]], [3523,[9224.31,18569,0],[[3493,2],[3552,2]]], [3524,[9874.19,19810.3,0],[[3494,2],[3553,2]]], [3525,[10509.9,19890.7,0],[[3495,2],[3528,2]]], [3526,[11594.4,21438.2,3.8147e-006],[[3496,2],[3554,2]]], [3527,[10971.7,21435.6,0],[[3497,2],[3555,2],[3556,2]]], +[3528,[10566.9,19977.3,0],[[3498,2],[3525,2]]], [3529,[12193.2,22020.8,0],[[3499,2],[3557,2]]], [3530,[12069.2,22450.3,0],[[3500,2],[3558,2]]], [3531,[13830.5,22769.5,7.62939e-006],[[3501,2],[3559,2]]], [3532,[13924.7,23114.7,0],[[3502,2]]], [3533,[9931.77,12760.7,3.17891e-007],[[3504,2],[3560,2],[3561,2]]], +[3534,[10216.8,12589.7,0],[[3505,2],[3538,2],[3562,2]]], [3535,[10029.6,12626.7,0],[[3505,2],[3563,2]]], [3536,[10933.6,12146.4,-1.90735e-006],[[3506,2],[3511,2]]], [3537,[11580.5,12091.2,0],[[3507,2],[3564,2]]], [3538,[10317.8,12479.4,0],[[3508,2],[3534,2],[3565,2]]], [3539,[10306.9,12272.1,0],[[3508,2],[3566,2]]], +[3540,[10309.9,12074.5,0],[[3509,2],[3567,2]]], [3541,[10309.6,11875.6,0],[[3510,2],[3568,2]]], [3542,[10506.4,11848.4,3.17891e-007],[[3510,2],[3569,2],[3570,2]]], [3543,[10949,12015.2,0],[[3511,2],[3571,2]]], [3544,[13515.7,13133.4,0],[[3513,2],[3572,2]]], [3545,[18993.8,6801.43,0],[[3514,2],[3573,2]]], +[3546,[21014.6,5745.54,0],[[3516,2],[3574,2]]], [3547,[8689.43,15921.7,-7.62939e-006],[[3518,2],[3575,2]]], [3548,[9094.25,15138.9,-3.8147e-006],[[3519,2],[3576,2]]], [3549,[9510.39,15069.9,0],[[3520,2],[3577,2]]], [3550,[8752.56,16495.9,0],[[3521,2]]], [3551,[8941.37,16801.6,0],[[3522,2],[3578,2]]], +[3552,[9153.92,18563,0],[[3523,2],[3579,2]]], [3553,[9796.18,19905.5,0],[[3524,2],[3580,2]]], [3554,[11664.8,21529.3,0],[[3526,2],[3581,2]]], [3555,[10898.3,21554.6,7.62939e-006],[[3527,2],[3582,2]]], [3556,[11050.8,21520.1,0],[[3527,2],[3583,2]]], [3557,[12109.8,22111.4,0],[[3529,2],[3584,2]]], +[3558,[11956.9,22395.7,0],[[3530,2],[3585,2]]], [3559,[13964,22815.8,0],[[3531,2],[3586,2]]], [3560,[9814.83,12667.3,0],[[3533,2],[3587,2]]], [3561,[9771.7,12861.2,0],[[3533,2],[3588,2]]], [3562,[10140.9,12510.6,0],[[3534,2],[3589,2]]], [3563,[9911.22,12523.2,-9.53674e-007],[[3535,2],[3590,2]]], +[3564,[11689.2,11976.2,0],[[3537,2],[3591,2]]], [3565,[10201.2,12374.3,-9.53674e-007],[[3538,2],[3592,2]]], [3566,[10166.7,12148.2,-9.53674e-007],[[3539,2],[3593,2]]], [3567,[10202.5,11979.7,0],[[3540,2],[3594,2],[3568,2]]], [3568,[10217.9,11798.7,2.38419e-007],[[3541,2],[3567,2],[3595,2],[3596,2],[3570,2],[3594,2]]], [3569,[10583.2,11696.9,0],[[3542,2],[3597,2]]], +[3570,[10360,11715.6,0],[[3542,2],[3568,2],[3596,2]]], [3571,[10982.8,11932.1,9.53674e-007],[[3571,2],[3598,2]]], [3572,[13656.7,13093.7,0],[[3544,2],[3599,2]]], [3573,[18894.9,6728.71,0],[[3545,2],[3600,2]]], [3574,[21140.5,5651.5,0],[[3546,2],[3601,2]]], [3575,[8608.62,15801.6,0],[[3547,2],[3602,2]]], +[3576,[9029.8,15030.2,0],[[3548,2],[3603,2]]], [3577,[9550.06,15017.4,-1.90735e-006],[[3549,2],[3577,2],[3604,2]]], [3578,[9008.84,16939.6,0],[[3551,2],[3605,2]]], [3579,[9029.09,18555.3,0],[[3552,2],[3606,2]]], [3580,[9742.7,19922.8,5.08626e-006],[[3553,2],[3607,2],[3608,2]]], [3581,[11686.3,21574.3,1.27157e-006],[[3554,2],[3609,2],[3610,2]]], +[3582,[10856.1,21600.3,2.54313e-006],[[3555,2],[3611,2],[3612,2]]], [3583,[11151.1,21626.1,0],[[3556,2],[3613,2]]], [3584,[12011.9,22016.1,0],[[3557,2],[3614,2]]], [3585,[11876,22378.6,0],[[3558,2],[3615,2],[3616,2]]], [3586,[13999,22923.7,0],[[3559,2],[3503,2]]], [3587,[9701.54,12564.6,0],[[3560,2],[3617,2]]], +[3588,[9658.32,12931.5,0],[[3561,2],[3618,2]]], [3589,[10048.3,12441.6,0],[[3562,2],[3619,2]]], [3590,[9781.62,12409.9,0],[[3563,2],[3620,2]]], [3591,[11760.6,11893.8,0],[[3564,2]]], [3592,[10100.2,12284.7,0],[[3565,2],[3621,2]]], [3593,[10063.4,12057.5,9.53674e-007],[[3566,2],[3622,2]]], +[3594,[10129.8,11898.7,2.38419e-007],[[3567,2],[3568,2],[3622,2],[3623,2]]], [3595,[10107.9,11698.2,-9.53674e-007],[[3568,2],[3624,2]]], [3596,[10324.6,11685.1,0],[[3568,2],[3570,2],[3625,2]]], [3597,[10639.4,11590.7,9.53674e-007],[[3569,2],[3626,2]]], [3598,[11035.3,11720.2,1.90735e-006],[[3571,2],[3627,2]]], [3599,[13780.3,13021.7,0],[[3572,2],[3628,2]]], +[3600,[18793.1,6609.14,0],[[3573,2],[3629,2]]], [3601,[21271.5,5575.89,0],[[3574,2],[3630,2]]], [3602,[8461.73,15752.3,0],[[3575,2],[3631,2]]], [3603,[8984.97,14909.7,-3.8147e-006],[[3576,2],[3632,2]]], [3604,[9492.96,14964.1,0],[[3577,2]]], [3605,[8956.57,17031.6,-1.52588e-005],[[3578,2],[3633,2]]], +[3606,[8912.15,18581.6,0],[[3579,2],[3634,2]]], [3607,[9622.98,20023.9,0],[[3580,2],[3635,2]]], [3608,[9795.34,19818.8,0],[[3580,2],[3636,2]]], [3609,[11562,21596.8,0],[[3581,2],[3637,2]]], [3610,[11788.2,21710,0],[[3581,2],[3638,2]]], [3611,[10766.8,21718.1,0],[[3582,2],[3639,2]]], +[3612,[10913.7,21703.2,0],[[3582,2],[3640,2]]], [3613,[11263.7,21633.8,0],[[3583,2],[3641,2]]], [3614,[11903.2,21934.7,0],[[3584,2],[3642,2]]], [3615,[11906.8,22513.6,0],[[3585,2],[3643,2]]], [3616,[11867.1,22173.4,0],[[3585,2],[3644,2]]], [3617,[9627.53,12469.7,0],[[3587,2],[3645,2],[3620,2]]], +[3618,[9628.57,13066.5,-3.8147e-006],[[3588,2],[3646,2]]], [3619,[9948.51,12354.8,0],[[3589,2],[3647,2]]], [3620,[9727.09,12358.1,0],[[3590,2],[3617,2],[3648,2],[3649,2]]], [3621,[9952.12,12159.2,0],[[3592,2],[3650,2]]], [3622,[10022.6,12023,0],[[3593,2],[3594,2],[3650,2],[3651,2]]], [3623,[9990.77,11794.6,0],[[3594,2],[3652,2]]], +[3624,[10003.5,11605.8,0],[[3595,2],[3653,2]]], [3625,[10302.1,11572,-9.53674e-007],[[3596,2],[3654,2]]], [3626,[10724.6,11481.7,9.53674e-007],[[3597,2],[3655,2]]], [3627,[11065.9,11598.9,0],[[3598,2],[3656,2]]], [3628,[13922.3,12991.2,0],[[3599,2],[3657,2]]], [3629,[18717.3,6491.28,0],[[3600,2],[3658,2]]], +[3630,[21403.3,5499.97,7.62939e-006],[[3601,2],[3659,2]]], [3631,[8419.6,15747.7,0],[[3602,2],[3660,2],[3661,2]]], [3632,[8910.52,14773.2,0],[[3603,2],[3662,2]]], [3633,[8890.18,17051,0],[[3605,2],[3663,2]]], [3634,[8799.52,18591.2,1.52588e-005],[[3606,2],[3664,2]]], [3635,[9547.69,20143.3,0],[[3607,2],[3665,2]]], +[3636,[9783.21,19662.5,0],[[3608,2],[3666,2]]], [3637,[11445,21564.1,7.62939e-006],[[3609,2],[3641,2]]], [3638,[11786,21842.9,0],[[3610,2],[3667,2]]], [3639,[10734.7,21832.5,0],[[3611,2],[3668,2]]], [3640,[10882,21761.2,0],[[3612,2],[3669,2]]], [3641,[11288.7,21560.9,0],[[3613,2],[3637,2]]], +[3642,[11872.4,21980.2,0],[[3614,2],[3670,2],[3644,2],[3667,2]]], [3643,[11968.2,22640,0],[[3615,2],[3671,2]]], [3644,[11841.5,22035.3,0],[[3616,2],[3642,2],[3670,2]]], [3645,[9466.88,12334.1,0],[[3617,2],[3672,2]]], [3646,[9541.53,13164,0],[[3618,2],[3673,2]]], [3647,[9898.14,12258.7,0],[[3619,2],[3649,2]]], +[3648,[9606.92,12256.8,9.53674e-007],[[3620,2],[3674,2]]], [3649,[9829.58,12239.9,-2.38419e-007],[[3620,2],[3647,2],[3650,2],[3675,2]]], [3650,[9924.69,12131.5,0],[[3621,2],[3622,2],[3649,2],[3676,2]]], [3651,[9865.88,11883.9,0],[[3622,2],[3677,2]]], [3652,[9862.01,11681.8,9.53674e-007],[[3623,2],[3678,2]]], [3653,[9985.88,11586.3,-2.38419e-007],[[3624,2],[3679,2],[3678,2],[3680,2]]], +[3654,[10241.7,11483.9,0],[[3625,2],[3681,2]]], [3655,[10720,11347.2,0],[[3626,2],[3682,2]]], [3656,[11167.2,11443.5,-1.90735e-006],[[3627,2],[3656,2]]], [3657,[14051.6,12980.2,0],[[3628,2],[3683,2]]], [3658,[18641,6380.5,9.53674e-007],[[3629,2],[3684,2]]], [3659,[21524.1,5390.13,0],[[3630,2],[3685,2]]], +[3660,[8283.91,15814.8,0],[[3631,2],[3686,2],[3687,2]]], [3661,[8533.2,15637.3,7.62939e-006],[[3631,2],[3688,2]]], [3662,[8895.29,14726.4,0],[[3632,2],[3689,2],[3690,2],[3691,2]]], [3663,[8847.14,17174.9,0],[[3633,2],[3692,2]]], [3664,[8686.98,18459.3,0],[[3634,2],[3693,2]]], [3665,[9518.58,20263.3,0],[[3635,2],[3694,2]]], +[3666,[9751.02,19534.7,0],[[3636,2],[3695,2]]], [3667,[11779.3,21966.6,-1.90735e-006],[[3638,2],[3642,2],[3670,2]]], [3668,[10728.4,21995.5,-3.8147e-006],[[3639,2],[3696,2]]], [3669,[10881.1,21847.8,0],[[3640,2],[3697,2]]], [3670,[11820.4,22002,6.35783e-007],[[3642,2],[3644,2],[3667,2]]], [3671,[11981.7,22718.6,0],[[3643,2],[3698,2]]], +[3672,[9421.53,12298.8,1.76169],[[3645,2],[3699,2],[3700,2]]], [3673,[9440.97,13300.7,0],[[3646,2],[3701,2]]], [3674,[9554.61,12214.5,-9.53674e-007],[[3648,2]]], [3675,[9703.58,12139.7,0],[[3649,2],[3702,2]]], [3676,[9821.71,12056,0],[[3650,2],[3676,2],[3703,2]]], [3677,[9736.66,11771.7,0],[[3651,2],[3704,2],[3678,2]]], +[3678,[9800.2,11623.7,-3.17891e-007],[[3652,2],[3653,2],[3677,2],[3705,2],[3704,2]]], [3679,[10167,11497.9,0],[[3653,2],[3706,2],[3681,2]]], [3680,[9951.37,11550.5,-2.38419e-007],[[3653,2],[3707,2],[3680,2],[3708,2]]], [3681,[10244.9,11438.9,0],[[3654,2],[3679,2],[3706,2],[3709,2],[3710,2]]], [3682,[10764.2,11226.6,0],[[3655,2],[3711,2]]], [3683,[14185.1,12974.7,1.90735e-006],[[3657,2],[3712,2]]], +[3684,[18519.1,6298.01,0],[[3658,2]]], [3685,[21592,5296.71,0],[[3659,2],[3713,2]]], [3686,[8139.63,15902.3,0],[[3660,2],[3714,2]]], [3687,[8288.09,15677.8,0],[[3660,2],[3715,2]]], [3688,[8606.81,15561.8,-7.62939e-006],[[3661,2],[3716,2]]], [3689,[8707.13,14690.4,3.8147e-006],[[3662,2],[3717,2]]], +[3690,[8958.28,14559.1,0],[[3662,2],[3718,2]]], [3691,[8781.62,14846.1,0],[[3662,2],[3719,2]]], [3692,[8852.16,17323.8,-1.52588e-005],[[3663,2],[3720,2]]], [3693,[8655.48,18438,7.62939e-006],[[3664,2],[3721,2],[3722,2],[3723,2]]], [3694,[9521.57,20340.7,0],[[3665,2],[3724,2],[3725,2]]], [3695,[9658.73,19453.8,0],[[3666,2],[3726,2]]], +[3696,[10727.8,22103.7,0],[[3668,2],[3727,2]]], [3697,[10960.9,21964.3,0],[[3669,2],[3728,2]]], [3698,[12093.3,22784.4,-9.53674e-007],[[3671,2],[3729,2]]], [3699,[9341.37,12376.8,0],[[3672,2],[3730,2]]], [3700,[9305.79,12195.7,0],[[3672,2],[3731,2]]], [3701,[9341.08,13412.4,0],[[3673,2],[3732,2]]], +[3702,[9676.13,12115,0],[[3675,2]]], [3703,[9718.96,12029.5,0],[[3676,2],[3733,2]]], [3704,[9726.77,11681.8,9.53674e-007],[[3677,2],[3678,2],[3734,2]]], [3705,[9727.69,11700.6,0],[[3678,2]]], [3706,[10188.2,11487.8,0],[[3679,2],[3681,2],[3735,2]]], [3707,[9823.17,11449,0],[[3680,2]]], +[3708,[9967.13,11436.9,9.53674e-007],[[3680,2],[3736,2]]], [3709,[10203.9,11329.9,0],[[3681,2],[3737,2]]], [3710,[10382,11356.5,0],[[3681,2],[3738,2]]], [3711,[10761,11118.3,0],[[3682,2],[3739,2],[3740,2]]], [3712,[14246.2,12998,0],[[3683,2]]], [3713,[21706.5,5200.24,0],[[3685,2],[3741,2]]], +[3714,[7990.77,15984.3,0],[[3686,2],[3742,2]]], [3715,[8294.46,15527.3,7.62939e-006],[[3687,2],[3743,2]]], [3716,[8633.98,15496.3,0],[[3688,2],[3744,2]]], [3717,[8551.95,14738,0],[[3689,2],[3745,2]]], [3718,[9002.33,14404.3,0],[[3690,2],[3746,2]]], [3719,[8691.15,14973.8,0],[[3691,2],[3747,2]]], +[3720,[8817.2,17445.3,0],[[3692,2],[3748,2]]], [3721,[8655.51,18567.7,0],[[3693,2],[3749,2]]], [3722,[8591.77,18388.8,3.8147e-006],[[3693,2],[3750,2],[3722,2],[3751,2],[3723,2]]], [3723,[8682.79,18318.3,0],[[3693,2],[3722,2],[3751,2]]], [3724,[9442.26,20304,1.90735e-006],[[3694,2],[3752,2],[3753,2]]], [3725,[9550.13,20463.4,1.01725e-005],[[3694,2],[3754,2],[3755,2]]], +[3726,[9529.08,19450.1,0],[[3695,2],[3756,2]]], [3727,[10674.2,22241.6,0],[[3696,2],[3757,2]]], [3728,[10943,22095.3,0],[[3697,2],[3758,2]]], [3729,[12128.8,22871.2,0],[[3698,2],[3759,2]]], [3730,[9373.13,12484.8,0],[[3699,2],[3760,2]]], [3731,[9222.2,12143.7,-6.35783e-007],[[3700,2],[3761,2],[3762,2]]], +[3732,[9325.22,13429.6,-4.76837e-007],[[3701,2],[3763,2],[3732,2],[3764,2]]], [3733,[9709.79,11948.9,0],[[3703,2],[3765,2]]], [3734,[9590.48,11689.1,0],[[3704,2],[3766,2]]], [3735,[10098.9,11332.2,0],[[3706,2],[3767,2]]], [3736,[10022.3,11295.3,0],[[3708,2],[3737,2]]], [3737,[10075.8,11253.7,0],[[3709,2],[3736,2]]], +[3738,[10413.3,11329.4,1.64999],[[3710,2],[3738,2],[3768,2]]], [3739,[10618.2,11131.2,0],[[3711,2],[3768,2]]], [3740,[10760.3,11030.2,0],[[3711,2],[3769,2],[3740,2]]], [3741,[21815,5107.38,0],[[3713,2],[3770,2]]], [3742,[7863.81,16059.5,0],[[3714,2],[3771,2]]], [3743,[8361.56,15416.8,0],[[3715,2],[3772,2]]], +[3744,[8622.73,15459.3,0],[[3716,2]]], [3745,[8396.71,14784.8,0],[[3717,2],[3773,2]]], [3746,[9056.56,14276.6,3.8147e-006],[[3718,2],[3774,2]]], [3747,[8594.78,15072.1,0],[[3719,2],[3775,2]]], [3748,[8805.43,17599.7,0],[[3720,2],[3776,2]]], [3749,[8712.4,18678.7,1.52588e-005],[[3721,2],[3777,2]]], +[3750,[8530.99,18279.5,0],[[3722,2],[3778,2]]], [3751,[8637.74,18288.6,0],[[3722,2],[3723,2],[3779,2],[3778,2],[3780,2]]], [3752,[9453.06,20262.2,-7.62939e-006],[[3724,2]]], [3753,[9413.24,20296.6,0],[[3724,2],[3781,2],[3782,2]]], [3754,[9589.02,20554.8,1.52588e-005],[[3725,2],[3783,2]]], [3755,[9438.46,20478.5,0],[[3725,2],[3784,2]]], +[3756,[9483.48,19360.2,0],[[3726,2],[3785,2]]], [3757,[10659.4,22250.2,0],[[3727,2],[3786,2],[3787,2]]], [3758,[11023.6,22207.2,3.8147e-006],[[3728,2],[3788,2]]], [3759,[12205.4,22936.5,0],[[3729,2]]], [3760,[9238.86,12554.6,0],[[3730,2],[3789,2]]], [3761,[9116.13,12088.1,0],[[3731,2],[3790,2],[3791,2]]], +[3762,[9220.06,12286.5,0],[[3731,2],[3792,2]]], [3763,[9319.28,13476.5,-6.35783e-007],[[3732,2],[3793,2],[3794,2]]], [3764,[9276.28,13341.1,0],[[3732,2],[3795,2]]], [3765,[9642.73,11890.2,-9.53674e-007],[[3733,2]]], [3766,[9468.75,11645.6,0],[[3734,2],[3796,2],[3797,2],[3798,2],[3799,2]]], [3767,[10042.2,11334.4,1.90735e-006],[[3735,2]]], +[3768,[10514.6,11214.2,-4.76837e-007],[[3738,2],[3739,2]]], [3769,[10770.6,10823.6,0],[[3740,2],[3800,2]]], [3770,[21943.5,5016.18,1.90735e-006],[[3741,2],[3801,2]]], [3771,[7813.84,16102.8,0],[[3742,2],[3802,2],[3803,2]]], [3772,[8395.52,15300.5,0],[[3743,2],[3775,2]]], [3773,[8253.85,14837.9,0],[[3745,2],[3804,2]]], +[3774,[9179.39,14206.6,3.8147e-006],[[3746,2],[3805,2]]], [3775,[8498.48,15198.1,0],[[3747,2],[3772,2]]], [3776,[8818.57,17736.1,0],[[3748,2],[3806,2]]], [3777,[8720.79,18708.8,0],[[3749,2],[3807,2],[3808,2]]], [3778,[8514.59,18260.5,0],[[3750,2],[3751,2],[3809,2],[3779,2]]], [3779,[8575.06,18238,0],[[3751,2],[3778,2],[3809,2],[3810,2]]], +[3780,[8677.64,18208,0],[[3751,2],[3811,2],[3810,2],[3812,2]]], [3781,[9328.35,20260.7,0],[[3753,2]]], [3782,[9445.65,20156.9,-7.62939e-006],[[3753,2],[3813,2]]], [3783,[9628.38,20691.4,0],[[3754,2],[3814,2]]], [3784,[9369.6,20530.9,0],[[3755,2],[3815,2]]], [3785,[9427.65,19318.8,0],[[3756,2],[3816,2]]], +[3786,[10585.7,22122.7,1.90735e-006],[[3757,2]]], [3787,[10698.3,22350.5,-1.58946e-007],[[3757,2],[3817,2],[3818,2]]], [3788,[11016.3,22329.1,-1.27157e-006],[[3758,2],[3817,2],[3819,2]]], [3789,[9149.3,12634.5,-1.90735e-006],[[3760,2],[3820,2]]], [3790,[9100.9,12032,0],[[3761,2],[3790,2],[3821,2]]], [3791,[9032,12103.7,0],[[3761,2],[3791,2],[3822,2],[3821,2],[3823,2]]], +[3792,[9101.98,12344.7,-1.90735e-006],[[3762,2],[3824,2]]], [3793,[9253.11,13626.7,0],[[3763,2],[3825,2]]], [3794,[9421,13539.1,0],[[3763,2],[3826,2]]], [3795,[9202.08,13291.3,0],[[3764,2],[3827,2]]], [3796,[9434.22,11838.3,0],[[3766,2],[3828,2],[3798,2]]], [3797,[9502.99,11567.1,0],[[3766,2]]], +[3798,[9399.48,11794,0],[[3766,2],[3796,2],[3828,2]]], [3799,[9499.01,11445.7,0],[[3766,2],[3829,2]]], [3800,[10800.7,10637.4,0],[[3769,2],[3830,2]]], [3801,[22099.1,5042.24,0],[[3770,2],[3831,2]]], [3802,[7663.53,16185.7,0],[[3771,2],[3832,2]]], [3803,[7705.79,16011.6,0],[[3771,2],[3833,2]]], +[3804,[8132.67,14872.1,0],[[3773,2],[3834,2]]], [3805,[9308.9,14149.9,0],[[3774,2],[3835,2]]], [3806,[8858.25,17894.2,0],[[3776,2],[3836,2]]], [3807,[8727.12,18839.1,0],[[3777,2],[3837,2]]], [3808,[8761.16,18840.8,0],[[3777,2],[3838,2]]], [3809,[8466.02,18234.4,0],[[3778,2],[3779,2],[3839,2]]], +[3810,[8603.64,18114.6,0],[[3779,2],[3780,2],[3840,2],[3811,2]]], [3811,[8663.25,18151.8,7.62939e-006],[[3780,2],[3810,2]]], [3812,[8722.44,18232,0],[[3780,2],[3812,2],[3841,2]]], [3813,[9452.06,20136.4,-5.08626e-006],[[3782,2],[3813,2],[3842,2]]], [3814,[9727.31,20657.7,7.62939e-006],[[3783,2],[3843,2]]], [3815,[9360.43,20613.3,0],[[3784,2],[3844,2]]], +[3816,[9278.8,19345.5,0],[[3785,2],[3845,2]]], [3817,[10921.4,22351.5,0],[[3787,2],[3788,2]]], [3818,[10524.2,22404,0],[[3787,2],[3846,2]]], [3819,[11049.3,22519.2,0],[[3788,2],[3847,2]]], [3820,[9133.28,12752.8,0],[[3789,2],[3848,2]]], [3821,[9052.97,11961.6,0],[[3790,2],[3791,2],[3822,2],[3849,2],[3850,2]]], +[3822,[8975.65,11979.4,-1.90735e-006],[[3791,2],[3821,2],[3851,2]]], [3823,[8882.36,12105.6,0],[[3791,2],[3852,2],[3853,2],[3851,2]]], [3824,[9084,12355.1,-9.53674e-007],[[3792,2],[3854,2],[3824,2],[3855,2]]], [3825,[9205.76,13523.6,0],[[3793,2],[3856,2]]], [3826,[9449.79,13680.5,0],[[3794,2],[3857,2]]], [3827,[9176.81,13105.1,0],[[3795,2],[3858,2]]], +[3828,[9377.72,11873,0],[[3796,2],[3798,2],[3828,2],[3859,2],[3850,2],[3860,2]]], [3829,[9465.79,11307.5,0],[[3799,2],[3861,2]]], [3830,[10794.8,10535.4,0],[[3800,2],[3862,2],[3830,2],[3863,2]]], [3831,[22227.3,5116.05,0],[[3801,2],[3864,2]]], [3832,[7560.13,16207.8,0],[[3802,2],[3865,2],[3866,2]]], [3833,[7609.43,15921.7,-7.62939e-006],[[3803,2],[3867,2]]], +[3834,[7999.97,14942.8,1.52588e-005],[[3804,2],[3868,2]]], [3835,[9448.03,14100.2,0],[[3805,2],[3869,2]]], [3836,[8774.72,17951.2,0],[[3806,2],[3840,2]]], [3837,[8630.27,18907.7,0],[[3807,2],[3870,2]]], [3838,[8808.83,18947.9,0],[[3808,2],[3871,2]]], [3839,[8271.4,18123.7,1.52588e-005],[[3809,2],[3872,2]]], +[3840,[8715.26,17958.3,0],[[3810,2],[3836,2]]], [3841,[8749.47,18199.6,0],[[3812,2]]], [3842,[9459.32,20021.3,0],[[3813,2],[3873,2]]], [3843,[9880.76,20628.6,0],[[3814,2],[3874,2]]], [3844,[9360.26,20717.8,0],[[3815,2],[3875,2]]], [3845,[9210.33,19283.8,0],[[3816,2]]], +[3846,[10399,22484.3,0],[[3818,2],[3876,2]]], [3847,[11075.8,22591.3,1.27157e-006],[[3819,2],[3877,2],[3847,2]]], [3848,[9149.05,12887,-1.90735e-006],[[3820,2],[3858,2]]], [3849,[9076.21,11853.9,6.35783e-007],[[3821,2],[3850,2],[3878,2]]], [3850,[9190.92,11919.9,6.35783e-007],[[3821,2],[3828,2],[3849,2],[3859,2]]], [3851,[8906.75,12000.6,0],[[3822,2],[3823,2],[3879,2]]], +[3852,[8870.14,12225.2,-9.53674e-007],[[3823,2],[3853,2],[3880,2],[3854,2]]], [3853,[8789.56,12050.4,1.27157e-006],[[3823,2],[3852,2],[3881,2],[3879,2]]], [3854,[8970.38,12362.3,6.35783e-007],[[3824,2],[3852,2],[3882,2],[3880,2]]], [3855,[9005.91,12481.3,0],[[3824,2],[3883,2]]], [3856,[9138.99,13481.4,0],[[3825,2],[3884,2]]], [3857,[9450.53,13823.5,0],[[3826,2],[3885,2]]], +[3858,[9156.55,12966.2,0],[[3827,2],[3848,2]]], [3859,[9283.12,11910.4,0],[[3828,2],[3850,2],[3886,2]]], [3860,[9374.48,11911.8,0],[[3828,2],[3887,2]]], [3861,[9436.88,11254.9,0],[[3829,2],[3888,2],[3889,2]]], [3862,[10736.2,10379,0],[[3830,2],[3890,2],[3891,2]]], [3863,[10690.8,10414.9,-9.53674e-007],[[3830,2],[3892,2]]], +[3864,[22274.3,5107.8,0],[[3831,2]]], [3865,[7394.47,16156.4,-7.62939e-006],[[3832,2],[3893,2]]], [3866,[7418.34,16249.6,0],[[3832,2],[3894,2]]], [3867,[7494.09,15862.7,0],[[3833,2],[3895,2]]], [3868,[7868.83,15026.3,0],[[3834,2],[3896,2]]], [3869,[9517.79,14024.1,0],[[3835,2],[3885,2]]], +[3870,[8650.45,18992,0],[[3837,2],[3897,2]]], [3871,[8858.06,19076.8,0],[[3838,2],[3898,2]]], [3872,[8172.75,18010.1,0],[[3839,2],[3899,2]]], [3873,[9414.4,19949.5,0],[[3842,2],[3900,2]]], [3874,[9988.43,20671.3,0],[[3843,2],[3901,2]]], [3875,[9434.01,20849.7,0],[[3844,2],[3902,2]]], +[3876,[10242.9,22412,0],[[3846,2],[3903,2]]], [3877,[11098.7,22691.9,-9.53674e-007],[[3847,2]]], [3878,[8967.91,11720,6.35783e-007],[[3849,2],[3904,2],[3905,2]]], [3879,[8833.85,11995.6,-4.76837e-007],[[3851,2],[3853,2],[3881,2],[3879,2],[3906,2]]], [3880,[8901.55,12454.6,1.90735e-006],[[3852,2],[3854,2],[3882,2]]], [3881,[8770.35,11986,0],[[3853,2],[3879,2],[3907,2]]], +[3882,[8912.6,12482.8,0],[[3854,2],[3880,2],[3908,2]]], [3883,[8941.05,12580.5,0],[[3855,2],[3909,2],[3908,2]]], [3884,[9085.98,13330.3,0],[[3856,2],[3910,2]]], [3885,[9508.01,13939.3,0],[[3857,2],[3869,2]]], [3886,[9355.93,11916.7,-9.53674e-007],[[3859,2]]], [3887,[9483.02,11915.1,9.53674e-007],[[3860,2]]], +[3888,[9399.81,11065,0],[[3861,2],[3911,2]]], [3889,[9316.41,11180.5,0],[[3861,2],[3912,2]]], [3890,[10715.8,10191.2,0],[[3862,2],[3913,2]]], [3891,[10857.9,10282.8,0],[[3862,2],[3914,2]]], [3892,[10614.4,10296.3,0],[[3863,2],[3915,2]]], [3893,[7268.05,16101.8,0],[[3865,2],[3916,2]]], +[3894,[7309.28,16250.2,0],[[3866,2],[3917,2]]], [3895,[7370.16,15752.3,0],[[3867,2],[3918,2]]], [3896,[7807.59,15101.7,0],[[3868,2],[3919,2]]], [3897,[8621.27,19092.8,0],[[3870,2],[3920,2]]], [3898,[8816.56,19194.1,0],[[3871,2],[3921,2]]], [3899,[8090.46,17907.1,0],[[3872,2],[3922,2]]], +[3900,[9351.38,19892.2,-7.62939e-006],[[3873,2],[3923,2]]], [3901,[10086.2,20603.1,0],[[3874,2],[3924,2]]], [3902,[9481.83,21003,0],[[3875,2],[3925,2]]], [3903,[10140.7,22303.2,0],[[3876,2],[3926,2]]], [3904,[8848,11584.5,6.35783e-007],[[3878,2],[3927,2],[3928,2]]], [3905,[8873.09,11762.8,0],[[3878,2],[3906,2]]], +[3906,[8804.78,11866.9,1.90735e-006],[[3879,2],[3905,2]]], [3907,[8719.75,11827.8,0],[[3881,2],[3929,2]]], [3908,[8912.61,12567.9,0],[[3882,2],[3883,2],[3909,2],[3930,2]]], [3909,[8928.77,12599.1,1.90735e-006],[[3883,2],[3908,2],[3931,2]]], [3910,[9030.34,13199.5,0],[[3884,2],[3932,2]]], [3911,[9352.64,10944.4,0],[[3888,2],[3933,2]]], +[3912,[9198.31,11098.7,0],[[3889,2],[3934,2]]], [3913,[10726.2,10031.8,0],[[3890,2],[3935,2]]], [3914,[10993.9,10186.1,0],[[3891,2],[3936,2]]], [3915,[10530.8,10183.2,0],[[3892,2],[3937,2]]], [3916,[7125.89,16046.8,0],[[3893,2],[3938,2]]], [3917,[7237.14,16365.7,0],[[3894,2],[3939,2],[3940,2],[3941,2]]], +[3918,[7338.46,15637.1,-7.62939e-006],[[3895,2],[3942,2]]], [3919,[7766.77,15177.3,0],[[3896,2],[3943,2]]], [3920,[8628.52,19172.6,0],[[3897,2],[3944,2]]], [3921,[8735.33,19274.1,1.52588e-005],[[3898,2],[3945,2]]], [3922,[8012.38,17813.8,0],[[3899,2],[3946,2]]], [3923,[9360.46,19800.6,0],[[3900,2],[3947,2]]], +[3924,[10094.8,20718.4,7.62939e-006],[[3901,2],[3948,2]]], [3925,[9417.47,21102.3,-3.8147e-006],[[3902,2],[3949,2]]], [3926,[10075.3,22197.6,0],[[3903,2],[3950,2]]], [3927,[8939.11,11433.2,-3.8147e-006],[[3904,2],[3951,2]]], [3928,[8676.91,11492.1,0],[[3904,2],[3952,2]]], [3929,[8690.86,11660.6,0],[[3907,2],[3952,2]]], +[3930,[8771.93,12546.2,0],[[3908,2],[3953,2]]], [3931,[8943.97,12735.1,0],[[3909,2],[3954,2]]], [3932,[8981.2,13082.9,0],[[3910,2],[3955,2]]], [3933,[9257.66,10895.9,4.76837e-007],[[3911,2]]], [3934,[9064.57,11053.6,0],[[3912,2],[3956,2]]], [3935,[10750,9902.67,0],[[3913,2],[3957,2]]], +[3936,[11111.1,10097,0],[[3914,2],[3958,2]]], [3937,[10476.6,10141.7,3.17891e-007],[[3915,2],[3959,2],[3960,2]]], [3938,[7012.27,16042,2.22701],[[3916,2],[3961,2],[3962,2]]], [3939,[7106.06,16436.5,2.54313e-006],[[3917,2],[3963,2],[3964,2]]], [3940,[7117.19,16266.2,0],[[3917,2],[3962,2]]], [3941,[7239.23,16489.8,0],[[3917,2],[3964,2]]], +[3942,[7310,15546.5,0],[[3918,2],[3965,2]]], [3943,[7809.25,15197,-5.08626e-006],[[3919,2],[3966,2],[3967,2],[3943,2]]], [3944,[8574.71,19318.8,0],[[3920,2],[3968,2]]], [3945,[8658.64,19445.9,-1.52588e-005],[[3921,2],[3969,2]]], [3946,[7881.5,17749.1,-1.52588e-005],[[3922,2],[3970,2]]], [3947,[9360.05,19692.4,0],[[3923,2],[3971,2]]], +[3948,[10129.5,20832.6,7.62939e-006],[[3924,2],[3972,2]]], [3949,[9355.63,21234.3,0],[[3925,2],[3973,2]]], [3950,[10042.2,22176.4,0],[[3926,2],[3974,2],[3950,2],[3975,2]]], [3951,[8942.41,11365.8,0],[[3927,2],[3976,2],[3977,2]]], [3952,[8654.12,11484.5,-6.35783e-007],[[3928,2],[3929,2],[3978,2]]], [3953,[8613.89,12486,-3.8147e-006],[[3930,2],[3979,2]]], +[3954,[8955.49,12888.5,0],[[3931,2],[3955,2]]], [3955,[8936.72,12957.5,1.90735e-006],[[3932,2],[3954,2]]], [3956,[8969.04,11029,0],[[3934,2],[3980,2]]], [3957,[10729.9,9740.27,3.8147e-006],[[3935,2],[3981,2]]], [3958,[11243.6,9999.54,0],[[3936,2],[3982,2]]], [3959,[10368.2,10017.5,-9.53674e-007],[[3937,2],[3983,2]]], +[3960,[10319.7,10081.3,0],[[3937,2],[3984,2],[3985,2]]], [3961,[6883.39,16010,1.65272],[[3938,2],[3986,2],[3987,2]]], [3962,[7056.49,16199.2,7.62939e-006],[[3938,2],[3940,2]]], [3963,[6956.94,16367.1,0],[[3939,2],[3988,2]]], [3964,[7123.61,16560.2,-5.08626e-006],[[3939,2],[3941,2],[3989,2]]], [3965,[7318.32,15475.9,0],[[3942,2],[3990,2],[3991,2]]], +[3966,[7795.73,15315,0],[[3943,2],[3992,2]]], [3967,[7791.49,15192.8,-3.8147e-006],[[3943,2]]], [3968,[8515.95,19410,0],[[3944,2],[3993,2]]], [3969,[8681.04,19591.5,0],[[3945,2],[3994,2]]], [3970,[7813.08,17664.5,1.52588e-005],[[3946,2],[3995,2]]], [3971,[9263.05,19674.6,0],[[3947,2],[3996,2]]], +[3972,[10083.9,20906.4,-7.62939e-006],[[3948,2],[3997,2]]], [3973,[9316.62,21355.9,0],[[3949,2],[3998,2]]], [3974,[9885.66,22208.3,0],[[3950,2],[3999,2]]], [3975,[10031.5,22042.5,0],[[3950,2],[4000,2]]], [3976,[8758.42,11350.6,-3.8147e-006],[[3951,2],[3978,2]]], [3977,[9076.42,11330.4,0],[[3951,2],[4001,2]]], +[3978,[8575.17,11313.8,9.53674e-007],[[3952,2],[3976,2],[4002,2],[3978,2]]], [3979,[8507.79,12416.1,0],[[3953,2],[4003,2]]], [3980,[8948.57,10880.2,0],[[3956,2],[4004,2]]], [3981,[10672.6,9602.48,0],[[3957,2],[4005,2]]], [3982,[11354.4,9915.78,0],[[3958,2],[4006,2]]], [3983,[10249.4,9914.99,0],[[3959,2],[4007,2]]], +[3984,[10260.3,10220,0],[[3960,2],[4008,2]]], [3985,[10187.4,9990.92,0],[[3960,2],[4009,2]]], [3986,[6789.9,15888.9,0],[[3961,2],[4010,2]]], [3987,[6824.91,16076.7,0],[[3961,2],[4011,2],[4012,2]]], [3988,[6920.1,16342.2,1.90735e-006],[[3963,2],[4013,2],[4011,2],[4014,2]]], [3989,[7131.31,16711.5,0],[[3964,2],[4015,2],[4016,2]]], +[3990,[7188.09,15495.1,0],[[3965,2],[4017,2]]], [3991,[7357.44,15441.5,1.27157e-006],[[3965,2],[4018,2],[4019,2]]], [3992,[7672.01,15388.5,0],[[3966,2],[4020,2]]], [3993,[8493.84,19495,0],[[3968,2],[4021,2]]], [3994,[8735.58,19673.2,0],[[3969,2],[4022,2]]], [3995,[7712.72,17562.6,1.52588e-005],[[3970,2],[4023,2]]], +[3996,[9138.01,19676.9,0],[[3971,2],[4024,2]]], [3997,[10084.8,21031.8,0],[[3972,2],[4025,2]]], [3998,[9322.56,21491.9,0],[[3973,2],[4026,2]]], [3999,[9712.85,22266.3,0],[[3974,2],[4027,2]]], [4000,[10048.1,21954.3,0],[[3975,2],[4028,2]]], [4001,[9197.73,11410.2,0],[[3977,2],[4029,2]]], +[4002,[8440.91,11161.3,0],[[3978,2],[4030,2]]], [4003,[8342.48,12413.3,0],[[3979,2],[4031,2]]], [4004,[8964.58,10736.8,0],[[3980,2],[4032,2]]], [4005,[10668,9460.99,0],[[3981,2],[4033,2]]], [4006,[11448.4,9858.56,0],[[3982,2],[4034,2]]], [4007,[10162.2,9795.17,0],[[3983,2],[4035,2]]], +[4008,[10241.7,10337.9,0],[[3984,2],[4036,2]]], [4009,[10086.6,9871.79,0],[[3985,2],[4037,2]]], [4010,[6777.03,15731.2,3.8147e-006],[[3986,2],[4038,2]]], [4011,[6764.95,16222.8,2.54313e-006],[[3987,2],[3988,2],[4039,2]]], [4012,[6714.71,15977.1,0],[[3987,2],[4040,2]]], [4013,[7028.06,16285.5,0],[[3988,2],[4013,2]]], +[4014,[6808.84,16398,-7.62939e-006],[[3988,2],[4041,2]]], [4015,[6982.21,16699,1.52588e-005],[[3989,2],[4042,2]]], [4016,[7107.76,16807.9,0],[[3989,2],[4043,2]]], [4017,[7025.75,15466.8,0],[[3990,2],[4044,2]]], [4018,[7451.88,15420.8,1.27157e-006],[[3991,2],[4045,2],[4018,2],[4020,2]]], [4019,[7383.73,15338.5,0],[[3991,2],[4046,2]]], +[4020,[7550.72,15411,-7.62939e-006],[[3992,2],[4018,2]]], [4021,[8480.73,19605.2,0],[[3993,2],[4047,2]]], [4022,[8778.01,19766.7,0],[[3994,2],[4048,2]]], [4023,[7710.72,17452.4,0],[[3995,2],[4049,2]]], [4024,[9061.27,19615.7,0],[[3996,2],[4050,2]]], [4025,[10059.8,21145.2,0],[[3997,2],[4051,2]]], +[4026,[9329.64,21556.5,7.15256e-007],[[3998,2],[4052,2],[4053,2],[4054,2]]], [4027,[9559.28,22245.5,0],[[3999,2],[4055,2]]], [4028,[10133.6,21872.8,0],[[4000,2],[4056,2]]], [4029,[9210.66,11482.1,0],[[4001,2]]], [4030,[8312.64,11078.4,0],[[4002,2],[4057,2]]], [4031,[8218.45,12365.8,0],[[4003,2],[4058,2]]], +[4032,[8910.15,10616.8,0],[[4004,2],[4059,2]]], [4033,[10710.7,9308.27,0],[[4005,2],[4060,2]]], [4034,[11471.4,9870.5,0],[[4006,2],[4061,2],[4062,2]]], [4035,[10072.1,9644.44,-9.53674e-007],[[4007,2],[4063,2]]], [4036,[10111.5,10275.1,0],[[4008,2],[4064,2]]], [4037,[9972.01,9789.22,0],[[4009,2],[4065,2]]], +[4038,[6780.62,15543.6,0],[[4010,2],[4066,2]]], [4039,[6600.59,16169.7,0],[[4011,2],[4067,2]]], [4040,[6630.64,15893.4,0],[[4012,2],[4068,2]]], [4041,[6904.73,16459.6,0],[[4014,2],[4042,2]]], [4042,[6896.43,16603.8,0],[[4015,2],[4041,2]]], [4043,[7158.56,16930.5,0],[[4016,2],[4069,2]]], +[4044,[6850.66,15454.6,-3.8147e-006],[[4017,2],[4070,2],[4066,2]]], [4045,[7430.92,15419.2,1.90735e-006],[[4018,2]]], [4046,[7368.27,15227.3,0],[[4019,2],[4071,2]]], [4047,[8466.03,19751.3,-7.62939e-006],[[4021,2],[4072,2]]], [4048,[8872.79,19715.1,0],[[4022,2],[4050,2]]], [4049,[7600.6,17329.3,0],[[4023,2],[4073,2]]], +[4050,[8957.47,19687,0],[[4024,2],[4048,2]]], [4051,[9960.66,21193.6,0],[[4025,2],[4051,2]]], [4052,[9216.71,21467.2,0],[[4026,2],[4074,2]]], [4053,[9435.18,21712.9,0],[[4026,2],[4075,2]]], [4054,[9236.71,21659.7,-9.53674e-007],[[4026,2],[4076,2]]], [4055,[9514.52,22129.4,0],[[4027,2],[4077,2]]], +[4056,[10193,21785.9,0],[[4028,2],[4078,2]]], [4057,[8285.17,11059.1,0],[[4030,2],[4079,2],[4057,2],[4080,2]]], [4058,[8105.57,12360.8,0],[[4031,2],[4081,2]]], [4059,[8851.08,10475.5,0],[[4032,2],[4082,2]]], [4060,[10694,9134.13,3.8147e-006],[[4033,2],[4083,2]]], [4061,[11597.5,9946.49,0],[[4034,2],[4084,2]]], +[4062,[11533.6,9768.11,-9.53674e-007],[[4034,2],[4085,2]]], [4063,[10026.9,9594.07,-6.35783e-007],[[4035,2],[4086,2],[4065,2]]], [4064,[10076.5,10223.4,0],[[4036,2]]], [4065,[9890.41,9706.99,-1.58946e-007],[[4037,2],[4063,2],[4087,2]]], [4066,[6773.58,15512.9,0],[[4038,2],[4044,2],[4070,2],[4088,2]]], [4067,[6534.61,16158.8,0],[[4039,2],[4089,2],[4090,2]]], +[4068,[6566.89,15812.4,0],[[4040,2],[4091,2]]], [4069,[7231.11,17062.7,0],[[4043,2],[4092,2]]], [4070,[6789.23,15436.8,0],[[4044,2],[4066,2],[4093,2]]], [4071,[7391.24,15117.2,0],[[4046,2],[4094,2]]], [4072,[8509.02,19856.3,0],[[4047,2],[4095,2]]], [4073,[7490.59,17226,1.52588e-005],[[4049,2],[4096,2],[4092,2]]], +[4074,[9082.79,21366.8,0],[[4052,2],[4097,2]]], [4075,[9459.72,21840.1,0],[[4053,2],[4077,2]]], [4076,[9166.08,21764,0],[[4054,2],[4098,2]]], [4077,[9482.88,21968.6,0],[[4055,2],[4075,2]]], [4078,[10215.3,21671.2,0],[[4056,2],[4099,2]]], [4079,[8106.93,10989,-1.90735e-006],[[4057,2],[4100,2]]], +[4080,[8276.63,10907.8,0],[[4057,2],[4101,2]]], [4081,[7996.69,12387.6,0],[[4058,2],[4102,2]]], [4082,[8751.41,10390.6,-3.8147e-006],[[4059,2],[4103,2]]], [4083,[10629.9,9025.4,0],[[4060,2],[4104,2]]], [4084,[11725.1,10023.8,0],[[4061,2],[4105,2]]], [4085,[11587,9680.6,0],[[4062,2],[4106,2],[4107,2]]], +[4086,[9970.67,9429.65,0],[[4063,2],[4108,2]]], [4087,[9778.45,9669.73,0],[[4065,2],[4087,2]]], [4088,[6656.77,15540.4,0],[[4066,2],[4109,2]]], [4089,[6445.87,16057.6,0],[[4067,2],[4110,2]]], [4090,[6455.06,16200.2,1.95802],[[4067,2],[4090,2],[4111,2]]], [4091,[6480.38,15709.2,0],[[4068,2],[4112,2]]], +[4092,[7383.53,17108.9,0],[[4069,2],[4073,2],[4096,2]]], [4093,[6673.21,15365.7,3.8147e-006],[[4070,2],[4113,2]]], [4094,[7451.33,14960.6,0],[[4071,2],[4114,2]]], [4095,[8556.3,19975.9,7.62939e-006],[[4072,2],[4115,2]]], [4096,[7424.43,17135,0],[[4073,2],[4092,2],[4116,2]]], [4097,[8945.6,21264.9,-1.90735e-006],[[4074,2],[4117,2]]], +[4098,[9124.57,21903.1,-9.53674e-007],[[4076,2],[4118,2]]], [4099,[10284.6,21590.6,0],[[4078,2],[4119,2]]], [4100,[7952.48,10970.1,-1.90735e-006],[[4079,2],[4120,2]]], [4101,[8280.32,10764.8,0],[[4080,2],[4121,2]]], [4102,[7882.82,12317.2,0],[[4081,2],[4122,2]]], [4103,[8659.83,10361.4,0],[[4082,2],[4123,2]]], +[4104,[10680.5,8911.91,0],[[4083,2],[4124,2]]], [4105,[11784.8,10129.8,0],[[4084,2],[4125,2]]], [4106,[11504,9592.43,1.90735e-006],[[4085,2],[4126,2]]], [4107,[11638.5,9699.94,0],[[4085,2],[4127,2],[4128,2]]], [4108,[9973.5,9310.74,0],[[4086,2],[4129,2]]], [4109,[6575.74,15596.8,3.8147e-006],[[4088,2],[4130,2]]], +[4110,[6340.9,15925.4,0],[[4089,2],[4131,2]]], [4111,[6271.32,16185,0],[[4090,2],[4132,2]]], [4112,[6400.43,15605.4,-3.8147e-006],[[4091,2],[4133,2]]], [4113,[6547.52,15293.4,0],[[4093,2],[4134,2]]], [4114,[7491.56,14854,0],[[4094,2],[4135,2]]], [4115,[8625.73,20090.9,0],[[4095,2],[4136,2]]], +[4116,[7299.69,17214.5,0],[[4096,2],[4137,2]]], [4117,[8818.26,21222.5,1.90735e-006],[[4097,2],[4138,2]]], [4118,[9107.98,22042.7,0],[[4098,2],[4139,2]]], [4119,[10397.2,21532.7,0],[[4099,2],[4140,2]]], [4120,[7808.15,10974.1,0],[[4100,2],[4141,2]]], [4121,[8237.71,10617.6,0],[[4101,2],[4142,2]]], +[4122,[7826.33,12249.1,0],[[4102,2],[4143,2]]], [4123,[8538.34,10271.3,0],[[4103,2],[4144,2]]], [4124,[10647.6,8797.4,0],[[4104,2],[4145,2]]], [4125,[11855.8,10271.6,9.53674e-007],[[4105,2],[4146,2]]], [4126,[11564.2,9441.75,1.90735e-006],[[4106,2],[4147,2]]], [4127,[11720.5,9570.5,0],[[4107,2],[4148,2]]], +[4128,[11793.7,9774.36,0],[[4107,2],[4149,2]]], [4129,[9950.26,9246.7,-1.90735e-006],[[4108,2],[4150,2]]], [4130,[6480.41,15486.5,0],[[4109,2],[4151,2]]], [4131,[6305.32,15825,0],[[4110,2],[4152,2]]], [4132,[6182.19,16184.7,0],[[4111,2],[4153,2],[4154,2]]], [4133,[6301.61,15531.9,-6.35783e-007],[[4112,2],[4155,2],[4151,2],[4156,2]]], +[4134,[6461.32,15235.9,2.54313e-006],[[4113,2],[4157,2],[4158,2]]], [4135,[7528.13,14745.5,0],[[4114,2],[4159,2]]], [4136,[8649.6,20193.7,0],[[4115,2],[4160,2]]], [4137,[7273.44,17300.2,1.52588e-005],[[4116,2],[4161,2]]], [4138,[8700.96,21158.2,0],[[4117,2],[4162,2]]], [4139,[9137.11,22083.5,0],[[4118,2],[4163,2],[4139,2],[4164,2]]], +[4140,[10523.2,21496.6,0],[[4119,2],[4165,2]]], [4141,[7669.13,10977.6,0],[[4120,2],[4166,2]]], [4142,[8216.51,10501.7,0],[[4121,2],[4167,2]]], [4143,[7754.52,12144,-3.8147e-006],[[4122,2],[4168,2]]], [4144,[8428.62,10156.1,0],[[4123,2],[4169,2]]], [4145,[10624,8681.18,3.8147e-006],[[4124,2],[4170,2]]], +[4146,[11962.9,10288.4,0],[[4125,2],[4171,2]]], [4147,[11640.4,9318.32,0],[[4126,2],[4172,2]]], [4148,[11811.8,9500.47,0],[[4127,2],[4173,2]]], [4149,[11862.1,9694.3,0],[[4128,2],[4149,2],[4174,2]]], [4150,[9824.31,9166.79,-1.90735e-006],[[4129,2],[4175,2]]], [4151,[6396.27,15406.6,-1.90735e-006],[[4130,2],[4133,2],[4156,2],[4151,2]]], +[4152,[6191.13,15695.5,0],[[4131,2],[4176,2],[4155,2]]], [4153,[6014.71,16176.4,0],[[4132,2],[4177,2]]], [4154,[6177.52,16243.3,0],[[4132,2],[4178,2],[4179,2]]], [4155,[6198.9,15643.6,1.90735e-006],[[4133,2],[4152,2],[4176,2]]], [4156,[6389.56,15410.9,0],[[4151,2],[4133,2]]], [4157,[6317.14,15146.3,0],[[4134,2],[4180,2]]], +[4158,[6394.76,15122.8,-3.8147e-006],[[4134,2],[4181,2]]], [4159,[7536.89,14654.2,-7.62939e-006],[[4135,2],[4182,2]]], [4160,[8609.75,20320.9,0],[[4136,2],[4183,2]]], [4161,[7236.04,17380.1,1.52588e-005],[[4137,2],[4184,2]]], [4162,[8597.43,21086,0],[[4138,2],[4185,2]]], [4163,[9238.61,22241.2,1.90735e-006],[[4139,2],[4186,2]]], +[4164,[9058.35,22197.8,-1.90735e-006],[[4139,2],[4187,2]]], [4165,[10543,21518.4,0],[[4140,2]]], [4166,[7525.39,10964.4,0],[[4141,2],[4188,2],[4189,2]]], [4167,[8119.79,10517.7,0],[[4142,2],[4190,2]]], [4168,[7689.23,12053.1,0],[[4143,2],[4191,2]]], [4169,[8311.48,10092.3,0],[[4144,2],[4192,2]]], +[4170,[10593.3,8545.4,0],[[4145,2],[4193,2]]], [4171,[12053.7,10389.5,0],[[4146,2],[4194,2]]], [4172,[11706.6,9208.9,0],[[4147,2],[4195,2]]], [4173,[11854.4,9468.87,9.53674e-007],[[4148,2]]], [4174,[11926.7,9672.37,-3.17891e-007],[[4149,2],[4196,2],[4197,2]]], [4175,[9728.28,9040.24,0],[[4150,2],[4198,2]]], +[4176,[6170.61,15679.2,0],[[4152,2],[4155,2],[4199,2]]], [4177,[5958.96,16187.8,0],[[4153,2],[4200,2],[4201,2]]], [4178,[6170.6,16308.2,-3.8147e-006],[[4154,2]]], [4179,[6275.13,16243.5,0],[[4154,2]]], [4180,[6202.84,15065.8,0],[[4157,2],[4202,2]]], [4181,[6343.06,14983.3,1.90735e-006],[[4158,2],[4203,2]]], +[4182,[7584.83,14508.6,0],[[4159,2],[4204,2]]], [4183,[8646.82,20427.8,3.8147e-006],[[4160,2],[4205,2]]], [4184,[7284.73,17479.8,0],[[4161,2],[4206,2]]], [4185,[8517.4,20979.6,0],[[4162,2],[4207,2]]], [4186,[9310.3,22369.7,0],[[4163,2],[4208,2]]], [4187,[8971.54,22271.5,0],[[4164,2],[4209,2]]], +[4188,[7366.65,11000.9,-4.76837e-007],[[4166,2],[4210,2]]], [4189,[7495.87,10840.9,0],[[4166,2]]], [4190,[8012.39,10412,0],[[4167,2],[4211,2]]], [4191,[7607.15,11987.9,0],[[4168,2],[4212,2]]], [4192,[8279.28,10071.4,0],[[4169,2]]], [4193,[10590.3,8438.7,0],[[4170,2],[4213,2]]], +[4194,[12092.9,10472.9,0],[[4171,2]]], [4195,[11731.7,9067.2,0],[[4172,2],[4214,2]]], [4196,[12041.5,9718.83,-1.90735e-006],[[4174,2],[4215,2]]], [4197,[12086.3,9617.42,0],[[4174,2],[4216,2]]], [4198,[9707.04,8889.22,0],[[4175,2],[4217,2]]], [4199,[6091.31,15603.9,6.35783e-007],[[4176,2],[4218,2],[4219,2]]], +[4200,[5880.51,16149.9,7.62939e-007],[[4177,2],[4220,2],[4221,2],[4200,2],[4222,2]]], [4201,[6015.28,16345,0],[[4177,2],[4223,2]]], [4202,[6079.61,14958.2,-1.90735e-006],[[4180,2],[4224,2]]], [4203,[6282.05,14856.9,3.8147e-006],[[4181,2],[4225,2]]], [4204,[7612.26,14384.2,0],[[4182,2],[4226,2],[4227,2]]], [4205,[8613.72,20498.1,0],[[4183,2],[4228,2]]], +[4206,[7262.7,17612.4,0],[[4184,2],[4229,2]]], [4207,[8429.38,20872.8,0],[[4185,2],[4230,2]]], [4208,[9310.13,22485.9,0],[[4186,2],[4231,2]]], [4209,[8852.15,22317.7,0],[[4187,2],[4232,2]]], [4210,[7227.99,11038.1,1.85407],[[4188,2],[4233,2],[4234,2]]], [4211,[7933.55,10391.9,0],[[4190,2]]], +[4212,[7507.29,11973.9,-6.35783e-007],[[4191,2],[4235,2],[4236,2]]], [4213,[10646,8289.75,0],[[4193,2],[4237,2]]], [4214,[11781.2,8941.05,0],[[4195,2],[4238,2]]], [4215,[12162.2,9748.23,0],[[4196,2],[4239,2]]], [4216,[12202.4,9565.27,0],[[4197,2],[4240,2]]], [4217,[9631.07,8773.44,0],[[4198,2],[4241,2]]], +[4218,[6014.34,15471.2,-1.90735e-006],[[4199,2],[4242,2]]], [4219,[6052.72,15754.5,0],[[4199,2],[4243,2]]], [4220,[5839.49,16230.5,0],[[4200,2],[4244,2]]], [4221,[5665.34,16156.5,0],[[4200,2],[4245,2]]], [4222,[5970.38,16009.6,0],[[4200,2],[4243,2]]], [4223,[6062.82,16437.1,0],[[4201,2],[4246,2]]], +[4224,[6044.17,14923.3,0],[[4202,2],[4247,2],[4248,2]]], [4225,[6258.02,14772.7,-1.27157e-006],[[4203,2],[4248,2],[4249,2]]], [4226,[7740.46,14320.2,0],[[4204,2],[4250,2]]], [4227,[7612.97,14185.2,0],[[4204,2],[4251,2]]], [4228,[8552.09,20591.6,0],[[4205,2],[4252,2]]], [4229,[7258.2,17757.3,0],[[4206,2],[4253,2]]], +[4230,[8408.41,20824.5,0],[[4207,2],[4254,2],[4252,2]]], [4231,[9177.93,22511.6,-1.90735e-006],[[4208,2],[4255,2]]], [4232,[8695.9,22334.5,-3.8147e-006],[[4209,2],[4256,2]]], [4233,[7265.48,11175.7,0],[[4210,2],[4257,2]]], [4234,[7056.51,11074.4,0],[[4210,2],[4258,2]]], [4235,[7514.17,12085.9,-1.90735e-006],[[4212,2],[4259,2]]], +[4236,[7480.95,11833,1.90735e-006],[[4212,2],[4260,2]]], [4237,[10639.5,8167.62,0],[[4213,2],[4261,2],[4262,2]]], [4238,[11775.4,8802.92,0],[[4214,2],[4263,2]]], [4239,[12279.3,9745.23,0],[[4215,2],[4264,2]]], [4240,[12336.3,9495.61,0],[[4216,2],[4265,2]]], [4241,[9571.14,8605.8,0],[[4217,2],[4266,2]]], +[4242,[5919.89,15362.3,0],[[4218,2],[4267,2]]], [4243,[6018.86,15886.8,0],[[4219,2],[4222,2]]], [4244,[5720,16266,0],[[4220,2],[4268,2]]], [4245,[5580.69,16096.3,0],[[4221,2],[4269,2]]], [4246,[6061.44,16576.3,0],[[4223,2],[4270,2]]], [4247,[5910.35,14816.9,0],[[4224,2],[4271,2]]], +[4248,[6157.7,14829.6,0],[[4224,2],[4225,2]]], [4249,[6361.27,14680.1,0],[[4225,2],[4272,2]]], [4250,[7838.09,14391,0],[[4226,2],[4273,2]]], [4251,[7619.05,14037.4,0],[[4227,2],[4274,2]]], [4252,[8461.06,20693.7,0],[[4228,2],[4230,2]]], [4253,[7226.32,17912.6,0],[[4229,2],[4275,2]]], +[4254,[8255.38,20923.8,-3.8147e-006],[[4230,2],[4276,2]]], [4255,[9033.06,22519.9,-1.90735e-006],[[4231,2],[4277,2]]], [4256,[8571.65,22328.4,-3.8147e-006],[[4232,2],[4278,2]]], [4257,[7324.29,11301,9.53674e-007],[[4233,2],[4279,2]]], [4258,[6903.79,11113,9.53674e-007],[[4234,2],[4280,2]]], [4259,[7488.74,12171.7,0],[[4235,2],[4281,2]]], +[4260,[7452.88,11704.2,-1.90735e-006],[[4236,2],[4282,2]]], [4261,[10529.2,8057.88,7.62939e-006],[[4237,2],[4283,2]]], [4262,[10664,8151.35,0],[[4509,2],[4237,2]]], [4263,[11736.5,8676.33,0],[[4238,2],[4284,2]]], [4264,[12413.2,9665.69,0],[[4239,2],[4285,2]]], [4265,[12473.4,9414.92,0],[[4240,2],[4286,2]]], +[4266,[9494.3,8443.8,0],[[4241,2],[4287,2]]], [4267,[5830.01,15266.5,0],[[4242,2],[4288,2]]], [4268,[5616.06,16307.2,0],[[4244,2],[4289,2]]], [4269,[5472.16,16156.1,0],[[4245,2],[4290,2]]], [4270,[6053.79,16696,0],[[4246,2],[4291,2]]], [4271,[5760.18,14780.3,0],[[4247,2],[4292,2]]], +[4272,[6422.89,14583,0],[[4249,2],[4272,2]]], [4273,[7964.92,14430.5,-1.52588e-005],[[4250,2],[4293,2]]], [4274,[7610.5,13879.6,0],[[4251,2],[4294,2]]], [4275,[7174.6,18054.9,0],[[4253,2],[4295,2]]], [4276,[8109.18,21026.4,0],[[4254,2],[4296,2]]], [4277,[9042.95,22626.2,1.90735e-006],[[4255,2],[4297,2]]], +[4278,[8441.96,22332,0],[[4256,2],[4298,2]]], [4279,[7333.68,11438.5,0],[[4257,2],[4282,2],[4279,2],[4299,2]]], [4280,[6777.89,11101.6,0],[[4258,2],[4300,2]]], [4281,[7413.92,12268.2,0],[[4259,2],[4301,2]]], [4282,[7439.76,11566.4,-9.53674e-007],[[4260,2],[4279,2]]], [4283,[10413,8114.16,0],[[4261,2],[4302,2]]], +[4284,[11750.8,8607.25,-7.62939e-006],[[4263,2],[4303,2]]], [4285,[12525.1,9624.51,0],[[4264,2],[4304,2]]], [4286,[12522.8,9298.75,0],[[4265,2],[4305,2]]], [4287,[9471.43,8310.37,0],[[4266,2],[4306,2]]], [4288,[5711.44,15149.3,0],[[4267,2],[4307,2]]], [4289,[5490.86,16354.5,0],[[4268,2],[4308,2]]], +[4290,[5328.34,16153.8,-7.62939e-006],[[4269,2],[4309,2]]], [4291,[6169.94,16824.7,0],[[4270,2],[4310,2]]], [4292,[5591.19,14712.6,0],[[4271,2],[4311,2]]], [4293,[8068.01,14435.6,1.52588e-005],[[4273,2]]], [4294,[7505.32,13810.7,0],[[4274,2],[4312,2]]], [4295,[7181.85,18088.1,0],[[4275,2],[4313,2],[4314,2]]], +[4296,[7996.29,21161.5,0],[[4276,2],[4315,2]]], [4297,[9124.7,22707.9,1.90735e-006],[[4277,2],[4316,2]]], [4298,[8321.68,22366.9,0],[[4278,2],[4317,2]]], [4299,[7213.1,11520,0],[[4279,2],[4318,2]]], [4300,[6657.52,11038.3,0],[[4280,2],[4319,2]]], [4301,[7343.86,12365.7,0],[[4281,2],[4320,2]]], +[4302,[10271.2,8114.99,3.8147e-006],[[4283,2],[4321,2]]], [4303,[11905.8,8576.51,-1.90735e-006],[[4284,2],[4322,2],[4323,2],[4324,2]]], [4304,[12660.5,9683.2,0],[[4285,2],[4325,2]]], [4305,[12508.2,9147.96,0],[[4286,2],[4326,2]]], [4306,[9374.07,8190.82,0],[[4287,2],[4327,2]]], [4307,[5606.97,15021.4,0],[[4288,2],[4328,2]]], +[4308,[5389.28,16373.6,0],[[4289,2],[4329,2]]], [4309,[5247.67,16116.7,0],[[4290,2],[4330,2],[4331,2]]], [4310,[6260.18,16864.7,-7.62939e-006],[[4291,2]]], [4311,[5475.17,14614.7,0],[[4292,2],[4332,2]]], [4312,[7436.08,13849.9,1.52588e-005],[[4294,2],[4333,2]]], [4313,[7197.06,18211.3,0],[[4295,2],[4334,2]]], +[4314,[7341.89,18093.9,0],[[4295,2],[4335,2]]], [4315,[7946.45,21276.1,0],[[4296,2],[4336,2]]], [4316,[9139.41,22814.3,1.90735e-006],[[4297,2],[4337,2]]], [4317,[8315.78,22467.2,0],[[4298,2],[4338,2]]], [4318,[7103.9,11553.3,0],[[4299,2],[4339,2]]], [4319,[6521.39,10984.9,0],[[4300,2],[4340,2]]], +[4320,[7252.66,12445.2,0],[[4301,2],[4341,2]]], [4321,[10215.2,8008.09,0],[[4302,2],[4342,2]]], [4322,[11709.4,8481.6,-7.62939e-006],[[4303,2],[4343,2]]], [4323,[11908.5,8431.93,-7.62939e-006],[[4303,2],[4344,2]]], [4324,[12064.8,8647.15,-7.62939e-006],[[4303,2],[4345,2]]], [4325,[12803.3,9771.14,0],[[4304,2],[4346,2]]], +[4326,[12559.1,9017.98,0],[[4305,2],[4347,2]]], [4327,[9342.85,8131.55,0],[[4306,2],[4348,2],[4349,2]]], [4328,[5507.24,14913.3,0],[[4307,2],[4350,2]]], [4329,[5319.36,16351.4,-6.35783e-007],[[4308,2],[4351,2],[4352,2]]], [4330,[5122.22,16146.5,0],[[4309,2],[4353,2]]], [4331,[5219.9,15961.8,0],[[4309,2],[4354,2]]], +[4332,[5343.81,14513.2,0],[[4311,2],[4355,2]]], [4333,[7362.7,13960.7,0],[[4312,2],[4356,2]]], [4334,[7079.92,18251.4,-1.52588e-005],[[4313,2],[4357,2]]], [4335,[7466.51,18184.9,1.52588e-005],[[4314,2],[4358,2]]], [4336,[7950.23,21421.3,0],[[4315,2],[4359,2]]], [4337,[9028.04,22879.6,0],[[4316,2],[4360,2]]], +[4338,[8230.74,22542.7,0],[[4317,2],[4338,2]]], [4339,[6979.35,11572.1,-1.90735e-006],[[4318,2],[4361,2]]], [4340,[6383.74,10914.4,0],[[4319,2],[4362,2]]], [4341,[7153.84,12493,3.8147e-006],[[4320,2],[4363,2]]], [4342,[10140.9,7901.47,0],[[4321,2],[4364,2]]], [4343,[11568.2,8441.52,0],[[4322,2],[4365,2]]], +[4344,[11956.8,8396.39,0],[[4323,2],[4366,2]]], [4345,[12175.3,8700.4,0],[[4324,2],[4367,2]]], [4346,[12887.2,9833.02,0],[[4325,2]]], [4347,[12571.6,8844.45,0],[[4326,2],[4368,2]]], [4348,[9406.87,8013.35,0],[[4327,2],[4369,2]]], [4349,[9262.02,8063.1,-3.8147e-006],[[4327,2]]], +[4350,[5416.42,14802.7,0],[[4328,2],[4370,2]]], [4351,[5223.63,16289.1,0],[[4329,2]]], [4352,[5255.35,16457.3,-1.90735e-006],[[4329,2],[4371,2]]], [4353,[5050.82,16149.8,2.54313e-006],[[4330,2],[4372,2],[4373,2]]], [4354,[5193.13,15828.5,0],[[4331,2],[4374,2]]], [4355,[5246.21,14495.7,6.35783e-007],[[4332,2],[4375,2],[4376,2]]], +[4356,[7292.84,13955.3,1.52588e-005],[[4333,2]]], [4357,[7036.35,18369.9,0],[[4334,2],[4377,2]]], [4358,[7423.24,18281.4,1.52588e-005],[[4335,2],[4378,2]]], [4359,[7924.51,21565.6,0],[[4336,2],[4379,2]]], [4360,[9042.44,22959.8,0],[[4337,2],[4380,2]]], [4361,[6855.93,11538.1,0],[[4339,2],[4381,2]]], +[4362,[6279.6,10820.3,0],[[4340,2],[4382,2]]], [4363,[7054.67,12578.9,0],[[4341,2],[4383,2]]], [4364,[10146.3,7757.71,7.62939e-006],[[4342,2],[4384,2]]], [4365,[11449.7,8348.2,0],[[4343,2],[4385,2]]], [4366,[12117.1,8432.04,6.35783e-007],[[4344,2],[4366,2],[4386,2]]], [4367,[12329.7,8757.43,0],[[4345,2],[4387,2]]], +[4368,[12624.2,8711.76,0],[[4347,2],[4388,2]]], [4369,[9460.89,7934.95,0],[[4348,2],[4389,2]]], [4370,[5358.8,14737.2,0],[[4350,2],[4390,2],[4375,2]]], [4371,[5183.77,16529.4,1.90735e-006],[[4352,2],[4391,2]]], [4372,[4984.87,16234.9,0],[[4353,2],[4392,2]]], [4373,[4897.15,16144.7,7.62939e-006],[[4353,2],[4393,2]]], +[4374,[5149.56,15775.2,0],[[4354,2],[4394,2]]], [4375,[5297.23,14647.9,0],[[4355,2],[4370,2]]], [4376,[5178.97,14479.8,1.27157e-006],[[4355,2],[4395,2],[4396,2]]], [4377,[7081.02,18465.6,0],[[4357,2],[4397,2]]], [4378,[7509.49,18362.4,0],[[4358,2],[4398,2]]], [4379,[7823.51,21577.4,-7.62939e-006],[[4359,2],[4399,2]]], +[4380,[9118.13,23090.3,-1.90735e-006],[[4360,2],[4400,2]]], [4381,[6767.37,11530.9,0],[[4361,2],[4401,2]]], [4382,[6233.1,10926.9,0],[[4362,2],[4402,2]]], [4383,[6959.38,12611.3,0],[[4363,2],[4403,2]]], [4384,[10216.1,7619.61,0],[[4364,2],[4404,2]]], [4385,[11356.1,8248.44,0],[[4365,2],[4405,2]]], +[4386,[12269.8,8453.91,1.90735e-006],[[4366,2],[4406,2]]], [4387,[12490.8,8791.4,0],[[4367,2],[4407,2]]], [4388,[12591.5,8606.13,-4.76837e-007],[[4368,2],[4408,2],[4407,2]]], [4389,[9316.33,7983.38,0],[[4369,2],[4409,2]]], [4390,[5234.24,14773.1,0],[[4370,2],[4410,2]]], [4391,[5105,16624.4,6.35783e-007],[[4371,2],[4411,2],[4412,2]]], +[4392,[4909.12,16309.4,-3.8147e-006],[[4372,2],[4413,2]]], [4393,[4767.72,16155.6,0],[[4373,2],[4414,2]]], [4394,[5125.55,15737.1,0],[[4374,2]]], [4395,[5006.58,14447.2,0],[[4376,2],[4415,2]]], [4396,[5158.88,14365.7,0],[[4376,2],[4416,2]]], [4397,[7066.55,18597.4,0],[[4377,2],[4417,2]]], +[4398,[7567.26,18359.6,0],[[4378,2]]], [4399,[7668.2,21645.6,0],[[4379,2],[4418,2]]], [4400,[9088.97,23193.3,1.90735e-006],[[4380,2],[4419,2]]], [4401,[6652.73,11544.5,0],[[4381,2],[4420,2]]], [4402,[6148.89,10970.9,3.8147e-006],[[4382,2],[4421,2]]], [4403,[6842.32,12633.1,0],[[4383,2],[4422,2]]], +[4404,[10310.2,7492.08,7.62939e-006],[[4384,2],[4423,2]]], [4405,[11236.5,8163.81,0],[[4385,2],[4424,2]]], [4406,[12414.1,8476.22,0],[[4386,2],[4408,2]]], [4407,[12557.4,8727.58,0],[[4387,2],[4388,2]]], [4408,[12560.1,8474.17,0],[[4388,2],[4406,2],[4425,2]]], [4409,[9229.89,7891.47,0],[[4389,2],[4426,2]]], +[4410,[5110.76,14765.5,-1.90735e-006],[[4390,2],[4427,2]]], [4411,[5042.49,16747.6,0],[[4391,2],[4428,2]]], [4412,[5122.71,16784.9,3.8147e-006],[[4391,2],[4429,2]]], [4413,[4836.68,16380.6,0],[[4392,2],[4430,2]]], [4414,[4625.09,16129.1,7.62939e-006],[[4393,2],[4431,2]]], [4415,[4921.93,14410.5,0],[[4395,2],[4432,2],[4433,2]]], +[4416,[5168.86,14231.1,0],[[4396,2],[4434,2],[4416,2],[4435,2]]], [4417,[6987.18,18636,0],[[4397,2],[4436,2]]], [4418,[7587.47,21713.7,0],[[4399,2],[4437,2]]], [4419,[8967.91,23251.1,0],[[4400,2],[4438,2]]], [4420,[6589.18,11541.5,0],[[4401,2],[4439,2]]], [4421,[6066.94,10912.3,0],[[4402,2],[4440,2],[4441,2]]], +[4422,[6738.1,12626.6,0],[[4403,2],[4442,2]]], [4423,[10478.3,7465.67,0],[[4404,2],[4443,2]]], [4424,[11141.9,8093.45,0],[[4405,2],[4444,2]]], [4425,[12622.5,8313.16,0],[[4408,2],[4445,2]]], [4426,[9186.26,7831.68,1.90735e-006],[[4409,2],[4446,2]]], [4427,[4997.92,14700,0],[[4410,2],[4447,2]]], +[4428,[4919.98,16854.6,-1.90735e-006],[[4411,2],[4448,2]]], [4429,[5065.79,16937.7,0],[[4412,2],[4449,2]]], [4430,[4796.58,16430.3,1.78477],[[4413,2],[4450,2],[4451,2]]], [4431,[4502.17,16083,0],[[4414,2],[4452,2]]], [4432,[4808.64,14327.1,0],[[4415,2],[4453,2]]], [4433,[4912.06,14479.5,-1.90735e-006],[[4415,2],[4454,2]]], +[4434,[5112.46,14037.6,-1.90735e-006],[[4416,2],[4455,2]]], [4435,[5254.28,14132.6,0],[[4416,2],[4456,2]]], [4436,[6940.52,18726.7,1.52588e-005],[[4417,2],[4457,2]]], [4437,[7461.64,21767.6,7.62939e-006],[[4418,2],[4458,2]]], [4438,[8908.73,23368.4,-3.8147e-006],[[4419,2],[4459,2]]], [4439,[6499.85,11544.2,0],[[4420,2],[4460,2]]], +[4440,[5980.55,10992.1,3.8147e-006],[[4421,2],[4461,2]]], [4441,[6085.87,10834.5,3.8147e-006],[[4421,2],[4462,2]]], [4442,[6629.72,12608.7,7.62939e-006],[[4422,2],[4463,2]]], [4443,[10572.8,7360.5,0],[[4423,2],[4464,2]]], [4444,[11076.6,7996.75,1.52588e-005],[[4424,2],[4465,2]]], [4445,[12694.9,8279.01,0],[[4425,2],[4466,2]]], +[4446,[9115.44,7712.96,0],[[4426,2],[4467,2]]], [4447,[4861.03,14676.8,3.8147e-006],[[4427,2],[4468,2]]], [4448,[4886.88,16958.4,0],[[4428,2],[4469,2],[4448,2],[4470,2]]], [4449,[5131.04,17082.3,0],[[4429,2],[4471,2]]], [4450,[4662.84,16485.3,0],[[4430,2],[4472,2]]], [4451,[4652.87,16389.5,0],[[4430,2],[4473,2]]], +[4452,[4387.42,16033.1,2.54313e-006],[[4431,2],[4474,2],[4475,2]]], [4453,[4699,14210.1,0],[[4432,2],[4476,2]]], [4454,[4887.11,14598.6,1.90735e-006],[[4433,2],[4468,2]]], [4455,[5100.4,13892.7,0],[[4434,2],[4477,2]]], [4456,[5292.85,13989.2,0],[[4435,2],[4478,2]]], [4457,[6929.99,18878.7,-5.08626e-006],[[4436,2],[4479,2],[4480,2]]], +[4458,[7393.38,21828.4,0],[[4437,2],[4481,2]]], [4459,[8849.5,23442.6,-7.62939e-006],[[4438,2],[4459,2]]], [4460,[6435.96,11602.8,0],[[4439,2],[4482,2]]], [4461,[5896.65,10975.2,0],[[4440,2],[4483,2]]], [4462,[6159.71,10787.4,0],[[4441,2],[4484,2]]], [4463,[6571.88,12679.7,0],[[4442,2],[4485,2]]], +[4464,[10652.5,7322.52,0],[[4443,2],[4486,2]]], [4465,[10954.1,7973.72,0],[[4444,2],[4487,2]]], [4466,[12729.9,8232.91,0],[[4445,2],[4466,2],[4488,2]]], [4467,[9007.02,7700.35,-3.8147e-006],[[4446,2],[4489,2]]], [4468,[4817.91,14665.4,0],[[4447,2],[4454,2],[4490,2]]], [4469,[4880.32,17051.1,0],[[4448,2]]], +[4470,[4777.96,17071.1,0],[[4448,2],[4491,2],[4492,2]]], [4471,[5247.23,17141.8,0],[[4449,2],[4493,2]]], [4472,[4521.26,16523.4,0],[[4450,2],[4494,2]]], [4473,[4547.11,16282.6,0],[[4451,2],[4495,2]]], [4474,[4329.6,15943.9,-7.62939e-006],[[4452,2],[4496,2]]], [4475,[4267.48,16126.3,-3.8147e-006],[[4452,2],[4497,2]]], +[4476,[4555.78,14087.1,0],[[4453,2],[4498,2]]], [4477,[5035.81,13747.5,0],[[4455,2],[4499,2]]], [4478,[5409.61,13936.8,0],[[4456,2],[4500,2]]], [4479,[7024.95,18957.5,0],[[4457,2],[4501,2]]], [4480,[6769.28,18881.5,1.52588e-005],[[4457,2],[4502,2]]], [4481,[7306.75,21908.9,0],[[4458,2],[4503,2]]], +[4482,[6406.28,11742.1,0],[[4460,2],[4504,2]]], [4483,[5762.96,11011.2,0],[[4461,2],[4505,2]]], [4484,[6157.58,10648.2,0],[[4462,2],[4506,2]]], [4485,[6493.39,12746.2,-7.62939e-006],[[4463,2],[4507,2]]], [4486,[10785,7293.5,-1.52588e-005],[[4464,2],[4508,2]]], [4487,[10840,7930.89,0],[[4465,2],[4509,2]]], +[4488,[12768.3,8161.77,0],[[4466,2],[4510,2]]], [4489,[8967.37,7681.86,0],[[4467,2],[4511,2],[4489,2],[4512,2]]], [4490,[4632.21,14731.8,0],[[4468,2],[4513,2]]], [4491,[4673.62,17145.1,2.54313e-006],[[4470,2],[4492,2],[4514,2]]], [4492,[4702.86,17134.6,0],[[4491,2],[4470,2]]], [4493,[5355.76,17149.6,0],[[4471,2],[4515,2]]], +[4494,[4386.35,16566.8,6.35783e-007],[[4472,2],[4516,2],[4517,2]]], [4495,[4476.44,16169.1,0],[[4473,2],[4497,2]]], [4496,[4263.49,15844.9,-7.62939e-006],[[4474,2],[4518,2]]], [4497,[4370.02,16181.3,3.8147e-006],[[4475,2],[4495,2]]], [4498,[4501.66,14036.1,0],[[4476,2],[4519,2],[4498,2],[4520,2]]], [4499,[5014.76,13692.6,6.35783e-007],[[4477,2],[4521,2],[4522,2]]], +[4500,[5494.73,13903.8,3.8147e-006],[[4478,2],[4523,2]]], [4501,[7023.16,18979.6,0],[[4479,2],[4524,2],[4525,2]]], [4502,[6657.53,18783.5,-1.52588e-005],[[4480,2],[4526,2]]], [4503,[7190.8,21964.2,0],[[4481,2],[4527,2]]], [4504,[6370,11838.3,0],[[4482,2],[4528,2]]], [4505,[5706.15,11084.9,0],[[4483,2],[4529,2]]], +[4506,[6144.23,10586.5,0],[[4484,2]]], [4507,[6402.98,12776.4,0],[[4485,2],[4530,2]]], [4508,[10827.1,7178.59,0],[[4486,2],[4531,2]]], [4509,[10753.7,8030.77,-7.62939e-006],[[4487,2],[4262,2]]], [4510,[12805.9,8083.33,0],[[4488,2],[4532,2]]], [4511,[8914.93,7520.92,0],[[4489,2],[4511,2]]], +[4512,[8839.14,7616.1,0],[[4489,2],[4533,2]]], [4513,[4514.65,14806.9,0],[[4490,2],[4534,2]]], [4514,[4597.87,17174.3,0],[[4491,2],[4535,2],[4514,2],[4536,2]]], [4515,[5394.56,17300,0],[[4493,2],[4537,2]]], [4516,[4299.8,16582.9,-7.94729e-008],[[4494,2],[4538,2],[4539,2]]], [4517,[4392.45,16683.4,1.90735e-006],[[4494,2],[4540,2]]], +[4518,[4228.16,15773.9,1.90735e-006],[[4496,2],[4541,2],[4542,2],[4518,2],[4543,2]]], [4519,[4458.39,14018.8,0],[[4498,2],[4544,2],[4545,2]]], [4520,[4557.26,13890.5,0],[[4498,2],[4546,2]]], [4521,[4963.54,13531.8,3.8147e-006],[[4499,2],[4547,2]]], [4522,[4883.49,13682.8,0],[[4499,2],[4548,2]]], [4523,[5588.94,13859.8,0],[[4500,2],[4549,2]]], +[4524,[6934.35,19091.3,-1.52588e-005],[[4501,2],[4550,2]]], [4525,[7115.6,18904.5,-1.52588e-005],[[4501,2]]], [4526,[6526.96,18739.2,0],[[4502,2],[4551,2]]], [4527,[7097.46,21953.5,0],[[4503,2],[4552,2]]], [4528,[6269.23,11894.8,0],[[4504,2],[4553,2]]], [4529,[5646.38,10992,-3.8147e-006],[[4505,2],[4554,2]]], +[4530,[6366.43,12718.1,0],[[4507,2],[4555,2]]], [4531,[10924.3,7133.17,0],[[4508,2],[4556,2]]], [4532,[12816.8,8001.21,0],[[4510,2],[4557,2]]], [4533,[8741.73,7511.53,0],[[4512,2],[4558,2]]], [4534,[4460.73,14881.2,0],[[4513,2],[4559,2]]], [4535,[4595.29,17246.2,-7.62939e-006],[[4514,2]]], +[4536,[4484.66,17063.3,0],[[4514,2],[4560,2]]], [4537,[5416.91,17330.8,0],[[4515,2],[4561,2],[4562,2]]], [4538,[4255.26,16722.8,0],[[4516,2],[4563,2]]], [4539,[4250.29,16450.1,2.38419e-007],[[4516,2],[4564,2]]], [4540,[4378.13,16828.5,0],[[4517,2],[4560,2]]], [4541,[4122.8,15655.3,0],[[4518,2],[4565,2]]], +[4542,[4238.78,15777.7,0],[[4518,2]]], [4543,[4349.73,15827.3,0],[[4518,2],[4566,2]]], [4544,[4294.39,13930.9,0],[[4519,2],[4567,2]]], [4545,[4417.63,14147.1,0],[[4519,2],[4568,2]]], [4546,[4594.94,13845.4,0],[[4520,2],[4569,2],[4570,2]]], [4547,[4828.71,13478.4,0],[[4521,2],[4571,2]]], +[4548,[4833.97,13709.4,0],[[4522,2],[4572,2]]], [4549,[5682.63,13778.1,0],[[4523,2],[4573,2]]], [4550,[6979.54,19170.8,0],[[4524,2],[4574,2]]], [4551,[6485.3,18634,1.52588e-005],[[4526,2],[4575,2]]], [4552,[7040.95,21996.8,-1.52588e-005],[[4527,2],[4576,2]]], [4553,[6146.71,11958.9,3.8147e-006],[[4528,2],[4577,2]]], +[4554,[5542.16,10915.8,2.54313e-006],[[4529,2],[4578,2],[4579,2]]], [4555,[6224.17,12740.6,0],[[4530,2],[4580,2]]], [4556,[11018.7,7217.34,0],[[4531,2],[4581,2]]], [4557,[12851.7,7946.74,-9.53674e-007],[[4532,2],[4582,2]]], [4558,[8636.7,7404.96,0],[[4533,2],[4583,2]]], [4559,[4360.11,14943,0],[[4534,2],[4584,2]]], +[4560,[4362.98,16979.5,0],[[4536,2],[4540,2]]], [4561,[5528.23,17427.5,0],[[4537,2],[4585,2]]], [4562,[5420.09,17373.3,0],[[4537,2],[4562,2],[4586,2]]], [4563,[4209.71,16837.6,0],[[4538,2],[4587,2]]], [4564,[4239.01,16436.9,0],[[4539,2]]], [4565,[4084.14,15525.3,0],[[4541,2],[4588,2]]], +[4566,[4433.07,15842,-2.54313e-006],[[4543,2],[4566,2],[4589,2]]], [4567,[4221.75,13900.3,4.76837e-007],[[4544,2],[4590,2],[4567,2],[4591,2]]], [4568,[4340.2,14258.9,0],[[4545,2],[4592,2]]], [4569,[4501.03,13804.2,0],[[4546,2],[4593,2]]], [4570,[4700.88,13790.7,3.8147e-006],[[4546,2],[4572,2]]], [4571,[4715.12,13388.2,0],[[4547,2],[4594,2]]], +[4572,[4751.06,13746.5,0],[[4548,2],[4570,2]]], [4573,[5776.78,13770.3,0],[[4549,2],[4595,2]]], [4574,[6922.03,19249.9,0],[[4550,2],[4596,2]]], [4575,[6419.19,18563.6,1.52588e-005],[[4551,2],[4597,2]]], [4576,[6939.54,22059.1,0],[[4552,2],[4598,2]]], [4577,[6077.5,12016.1,0],[[4553,2],[4599,2]]], +[4578,[5384.88,10931.4,7.62939e-006],[[4554,2],[4600,2]]], [4579,[5694.27,10865.3,0],[[4554,2],[4601,2]]], [4580,[6100.03,12757.2,0],[[4555,2],[4602,2]]], [4581,[11159.4,7190.37,0],[[4556,2],[4603,2]]], [4582,[12908.8,7870.24,0],[[4557,2],[4604,2]]], [4583,[8567.98,7347.81,0],[[4558,2]]], +[4584,[4297.92,15060.3,0],[[4559,2],[4605,2]]], [4585,[5624.89,17524.5,7.62939e-006],[[4561,2],[4606,2]]], [4586,[5337.22,17405.4,7.62939e-006],[[4562,2],[4607,2]]], [4587,[4179.29,16936,0],[[4563,2],[4608,2]]], [4588,[4027.96,15415.7,0],[[4565,2],[4609,2]]], [4589,[4557.23,15939.5,0],[[4566,2],[4610,2]]], +[4590,[4092.94,13760.1,0],[[4567,2],[4611,2]]], [4591,[4112.76,13897.2,1.90735e-006],[[4567,2],[4612,2]]], [4592,[4316.81,14395.5,0],[[4568,2],[4613,2]]], [4593,[4373.21,13754.6,0],[[4569,2],[4614,2]]], [4594,[4636.46,13257.8,0],[[4571,2],[4615,2]]], [4595,[5890.9,13798.1,-3.8147e-006],[[4573,2],[4616,2]]], +[4596,[6914.34,19371.4,0],[[4574,2],[4617,2]]], [4597,[6284.38,18543.9,7.62939e-006],[[4575,2],[4618,2]]], [4598,[6865.1,22097.5,0],[[4576,2],[4619,2]]], [4599,[6037.88,12141.6,0],[[4577,2],[4620,2]]], [4600,[5291.03,11017.5,1.27157e-006],[[4578,2],[4621,2],[4622,2]]], [4601,[5806.27,10839.3,0],[[4579,2],[4623,2]]], +[4602,[6037.51,12773.8,0],[[4580,2],[4624,2],[4625,2]]], [4603,[11267.4,7114.84,0],[[4581,2],[4626,2]]], [4604,[13016.2,7848.61,0],[[4582,2],[4627,2]]], [4605,[4200.33,15107.4,0],[[4584,2],[4628,2]]], [4606,[5631.81,17621.2,0],[[4585,2],[4629,2]]], [4607,[5344.68,17423.8,-2.54313e-006],[[4586,2],[4607,2],[4630,2]]], +[4608,[4116.09,17002.5,-4.76837e-007],[[4587,2],[4631,2]]], [4609,[3903.02,15323.9,0],[[4588,2],[4632,2]]], [4610,[4675.72,15966.3,-1.52588e-005],[[4589,2],[4633,2]]], [4611,[4039.11,13669.1,6.35783e-007],[[4590,2],[4634,2],[4635,2]]], [4612,[4070.01,13888.7,1.27157e-006],[[4591,2],[4636,2],[4637,2]]], [4613,[4336.17,14476.4,0],[[4592,2]]], +[4614,[4287.99,13713.9,0],[[4593,2],[4638,2],[4635,2]]], [4615,[4581.16,13089.4,0],[[4594,2],[4639,2]]], [4616,[6009.97,13767,0],[[4595,2],[4640,2]]], [4617,[6810.87,19465.9,0],[[4596,2],[4641,2]]], [4618,[6153.49,18536.9,7.62939e-006],[[4597,2],[4642,2]]], [4619,[6855.73,22147.4,5.08626e-006],[[4598,2],[4643,2],[4644,2]]], +[4620,[5975.81,12243.3,-7.62939e-006],[[4599,2],[4645,2]]], [4621,[5211.24,11118.1,3.8147e-006],[[4600,2],[4646,2]]], [4622,[5211.51,10975,3.8147e-006],[[4600,2],[4647,2]]], [4623,[5823.9,10793.4,-1.27157e-006],[[4601,2],[4623,2],[4648,2]]], [4624,[5877.03,12914.3,0],[[4602,2],[4649,2]]], [4625,[5979.78,12634,0],[[4602,2],[4650,2]]], +[4626,[11387.3,7060.91,0],[[4603,2],[4651,2]]], [4627,[13081.8,7774.56,0],[[4604,2],[4652,2]]], [4628,[4159.32,15113,-6.35783e-007],[[4605,2],[4653,2],[4654,2]]], [4629,[5515.35,17618.4,0],[[4606,2],[4655,2]]], [4630,[5213.88,17384.9,3.8147e-006],[[4607,2],[4656,2]]], [4631,[4035.14,17104.1,0],[[4608,2],[4657,2]]], +[4632,[3978.96,15222.4,0],[[4609,2],[4654,2]]], [4633,[4794.08,15981.7,1.52588e-005],[[4610,2],[4658,2]]], [4634,[3978.8,13605.7,0],[[4611,2],[4659,2],[4660,2],[4661,2]]], [4635,[4148.81,13637.8,0],[[4611,2],[4614,2],[4662,2]]], [4636,[3950.09,13874.3,3.8147e-006],[[4612,2],[4663,2]]], [4637,[3974.72,13795.9,0],[[4612,2],[4664,2]]], +[4638,[4194.82,13638.9,0],[[4614,2],[4665,2],[4661,2]]], [4639,[4612.89,12965.3,0],[[4615,2],[4666,2]]], [4640,[6150.95,13717.5,-7.62939e-006],[[4616,2],[4667,2]]], [4641,[6724.04,19586.7,0],[[4617,2],[4668,2]]], [4642,[6040.7,18507.6,7.62939e-006],[[4618,2],[4669,2]]], [4643,[6821.38,22265.6,-7.62939e-006],[[4619,2],[4670,2]]], +[4644,[6735.27,22103.2,0],[[4619,2],[4671,2]]], [4645,[5931.23,12308.8,0],[[4620,2],[4672,2]]], [4646,[5155.48,11170.9,1.90735e-006],[[4621,2],[4673,2],[4674,2],[4675,2]]], [4647,[5200.69,10957.7,0],[[4622,2]]], [4648,[5846.96,10600.5,0],[[4623,2],[4676,2]]], [4649,[5737.66,12966,0],[[4624,2],[4677,2]]], +[4650,[5942.53,12528,0],[[4625,2],[4672,2]]], [4651,[11458.3,7068.11,0],[[4626,2],[4678,2]]], [4652,[13145.7,7654.54,0],[[4627,2],[4679,2]]], [4653,[4115.44,14960.6,-4.76837e-007],[[4653,2],[4680,2]]], [4654,[4095.07,15230.8,0],[[4628,2],[4632,2]]], [4655,[5429.42,17683.6,-7.62939e-006],[[4629,2],[4681,2]]], +[4656,[5202.94,17351.3,-3.8147e-006],[[4630,2]]], [4657,[3943.81,17190.1,0],[[4631,2],[4682,2]]], [4658,[4885.28,15927.9,1.52588e-005],[[4633,2],[4683,2]]], [4659,[3834.4,13492.4,9.53674e-007],[[4634,2],[4684,2]]], [4660,[3925.51,13626.2,0],[[4634,2],[4685,2],[4686,2]]], [4661,[4057.96,13518.2,0],[[4634,2],[4638,2],[4665,2]]], +[4662,[4181.13,13638.4,0],[[4635,2]]], [4663,[3866.26,13878.9,3.8147e-006],[[4636,2],[4687,2]]], [4664,[3918.22,13746.7,0],[[4637,2],[4688,2],[4685,2]]], [4665,[4092.58,13512.9,-9.53674e-007],[[4638,2],[4661,2],[4689,2],[4665,2]]], [4666,[4672.8,12856.4,-4.76837e-007],[[4639,2],[4690,2],[4691,2],[4692,2]]], [4667,[6264.12,13688.9,0],[[4640,2],[4693,2]]], +[4668,[6624.76,19672.4,0],[[4641,2],[4694,2]]], [4669,[5948.91,18377.2,0],[[4642,2],[4695,2]]], [4670,[6801.47,22363.5,7.62939e-006],[[4643,2],[4696,2]]], [4671,[6677.12,22110.3,0],[[4644,2],[4697,2]]], [4672,[5972.61,12432.1,0],[[4645,2],[4650,2]]], [4673,[5117.45,11088.3,0],[[4646,2],[4698,2]]], +[4674,[5098,11235.5,-1.27157e-006],[[4646,2],[4699,2],[4700,2],[4698,2]]], [4675,[5146.51,11305.6,0],[[4646,2],[4701,2]]], [4676,[5855.38,10538.4,0],[[4648,2]]], [4677,[5617.21,13005,0],[[4649,2],[4702,2]]], [4678,[11526,7115.13,-7.62939e-006],[[4651,2],[4703,2]]], [4679,[13196.4,7582.6,0],[[4652,2],[4704,2]]], +[4680,[3993.21,14847,9.53674e-007],[[4653,2],[4732,2]]], [4681,[5442.76,17827.3,-7.62939e-006],[[4655,2],[4705,2]]], [4682,[3916.07,17323,0],[[4657,2],[4706,2]]], [4683,[4986.49,15909.6,1.52588e-005],[[4658,2],[4707,2]]], [4684,[3758.03,13414.4,6.35783e-007],[[4659,2],[4708,2],[4709,2]]], [4685,[3822.69,13692.3,0],[[4660,2],[4664,2],[4688,2],[4710,2]]], +[4686,[3809.97,13550.3,0],[[4660,2],[4711,2],[4709,2]]], [4687,[3769.36,13847.7,-6.35783e-007],[[4663,2],[4688,2],[4712,2]]], [4688,[3869.44,13738.7,0],[[4664,2],[4685,2],[4687,2]]], [4689,[4048.45,13391.3,3.8147e-006],[[4665,2],[4713,2]]], [4690,[4614.51,12717.2,0],[[4666,2],[4714,2]]], [4691,[4870.68,12894.7,0],[[4666,2],[4715,2]]], +[4692,[4483.46,12862.9,0],[[4666,2],[4716,2]]], [4693,[6370.4,13742.2,0],[[4667,2],[4717,2]]], [4694,[6535.51,19691.4,0],[[4668,2],[4718,2],[4719,2]]], [4695,[5864.34,18228.5,0],[[4669,2],[4720,2]]], [4696,[6701.11,22441.4,0],[[4670,2],[4721,2]]], [4697,[6599.3,22183,0],[[4671,2],[4722,2]]], +[4698,[5102.54,11052.8,2.54313e-006],[[4673,2],[4674,2],[4700,2],[4723,2]]], [4699,[5022.46,11349.3,0],[[4674,2],[4724,2],[4725,2],[4726,2]]], [4700,[5051.68,11142.6,9.53674e-007],[[4674,2],[4698,2],[4727,2],[4728,2]]], [4701,[5134.32,11423.7,0],[[4675,2],[4701,2],[4724,2],[4729,2]]], [4702,[5491.18,13034.2,0],[[4677,2],[4730,2]]], [4703,[11531.9,7080.05,0],[[4678,2]]], +[4704,[13197.9,7463.93,0],[[4679,2],[4731,2]]], [4705,[5456.98,17927,5.08626e-006],[[4681,2],[4733,2],[4705,2]]], [4706,[3883.14,17450.9,-1.90735e-006],[[4682,2],[4734,2]]], [4707,[4930.06,15836.1,0],[[4683,2],[4735,2]]], [4708,[3673.83,13293.4,5.54493],[[4684,2],[4736,2]]], [4709,[3735.94,13454.5,-3.17891e-007],[[4684,2],[4686,2],[4711,2],[4737,2]]], +[4710,[3774.34,13647.4,0],[[4685,2],[4738,2],[4711,2],[4739,2]]], [4711,[3746.93,13516.8,0],[[4686,2],[4709,2],[4710,2],[4738,2],[4737,2]]], [4712,[3645.61,13918.4,-3.17891e-007],[[4687,2],[4740,2],[4741,2]]], [4713,[3985.16,13299.6,0],[[4689,2],[4742,2]]], [4714,[4507.49,12613.3,3.8147e-006],[[4690,2],[4743,2]]], [4715,[4959.71,12994.3,0],[[4691,2],[4744,2]]], +[4716,[4333.17,12920.1,0],[[4692,2],[4745,2]]], [4717,[6447.68,13772.9,0],[[4693,2]]], [4718,[6622.26,19812.6,1.52588e-005],[[4694,2],[4746,2]]], [4719,[6466.18,19758.6,5.08626e-006],[[4694,2],[4747,2],[4748,2]]], [4720,[5742.17,18098.8,0],[[4695,2],[4733,2]]], [4721,[6714.07,22543.1,0],[[4696,2],[4749,2],[4750,2],[4721,2]]], +[4722,[6472.41,22205.3,0],[[4697,2],[4751,2]]], [4723,[5074.6,10950.9,-4.76837e-007],[[4698,2],[4752,2],[4723,2],[4753,2]]], [4724,[5076.25,11423,0],[[4699,2],[4701,2]]], [4725,[4989.9,11284.2,0],[[4699,2],[4728,2]]], [4726,[4905.5,11485.9,0],[[4699,2],[4754,2]]], [4727,[4999.33,11098.6,0],[[4700,2],[4755,2],[4727,2]]], +[4728,[5005.61,11203.6,1.27157e-006],[[4700,2],[4725,2],[4756,2]]], [4729,[5220.12,11493.1,0],[[4701,2],[4757,2]]], [4730,[5358.1,13021,0],[[4702,2],[4758,2]]], [4731,[13241.8,7406.24,0],[[4704,2],[4759,2]]], [4732,[3890.81,14781,0],[[4680,2],[4760,2]]], [4733,[5604.11,17973.8,0],[[4705,2],[4720,2]]], +[4734,[3794.26,17538.8,9.53674e-007],[[4706,2],[4761,2]]], [4735,[4802.87,15803.4,0],[[4707,2],[4762,2]]], [4736,[3655.73,13264.3,1.38623],[[4708,2],[4763,2],[4764,2],[4765,2]]], [4737,[3701.67,13472.1,0],[[4709,2],[4711,2],[4737,2],[4766,2]]], [4738,[3755.91,13573.4,0],[[4710,2],[4711,2],[4767,2]]], [4739,[3658.5,13716.1,-9.53674e-007],[[4710,2],[4768,2],[4740,2]]], +[4740,[3620.8,13758.9,0],[[4712,2],[4739,2],[4768,2]]], [4741,[3655.69,14093,0],[[4712,2],[4769,2]]], [4742,[3872,13205.9,1.90735e-006],[[4713,2],[4770,2]]], [4743,[4449.68,12488.4,-1.27157e-006],[[4714,2],[4771,2],[4772,2],[4743,2]]], [4744,[5070.95,13041.4,0],[[4715,2],[4773,2]]], [4745,[4210.55,12940.2,0],[[4716,2],[4774,2]]], +[4746,[6621.66,19940.7,1.52588e-005],[[4718,2],[4775,2]]], [4747,[6363.32,19631,0],[[4719,2],[4776,2]]], [4748,[6342.44,19897.6,0],[[4719,2],[4777,2]]], [4749,[6585.97,22656.4,0],[[4721,2],[4749,2]]], [4750,[6731.69,22531.3,0],[[4721,2]]], [4751,[6361.32,22179.4,0],[[4722,2],[4778,2]]], +[4752,[4976.34,10822.1,0],[[4723,2],[4779,2]]], [4753,[5097.42,10829.6,0],[[4723,2]]], [4754,[4839.45,11589.1,0],[[4726,2],[4780,2]]], [4755,[4862.42,11026.8,0],[[4727,2],[4781,2]]], [4756,[4908.11,11153.9,0],[[4728,2],[4782,2]]], [4757,[5266.87,11507.7,0],[[4729,2]]], +[4758,[5242.84,13016,0],[[4730,2],[4773,2]]], [4759,[13325.8,7376.81,-9.53674e-007],[[4731,2],[4783,2]]], [4760,[3823.95,14664.5,0],[[4732,2],[4784,2]]], [4761,[3717.48,17667.9,0],[[4734,2],[4785,2]]], [4762,[4689,15744.6,0],[[4735,2],[4786,2]]], [4763,[3730.99,13220.9,3.17891e-007],[[4736,2],[4763,2],[4787,2]]], +[4764,[3624.76,13122,-1.90735e-007],[[4736,2],[4788,2],[4789,2],[4787,2],[4790,2],[4791,2]]], [4765,[3621.61,13268.2,0],[[4736,2],[4765,2],[4792,2],[4793,2]]], [4766,[3606.51,13378.1,4.76837e-007],[[4737,2],[4793,2]]], [4767,[3613.64,13615.5,7.94729e-008],[[4738,2],[4768,2],[4794,2]]], [4768,[3622.11,13728.3,-4.76837e-007],[[4739,2],[4740,2],[4767,2]]], [4769,[3639.12,14185.4,6.35783e-007],[[4741,2],[4795,2],[4796,2]]], +[4770,[3826.15,13161,1.77003],[[4742,2],[4797,2],[4789,2]]], [4771,[4325.66,12383.3,0],[[4743,2],[4798,2]]], [4772,[4464.09,12486.5,3.8147e-006],[[4743,2],[4799,2]]], [4773,[5189.36,13003.6,-7.62939e-006],[[4744,2],[4758,2]]], [4774,[4164.62,12929.2,0],[[4745,2],[4800,2],[4801,2],[4774,2]]], [4775,[6555.05,19983.6,0],[[4746,2],[4802,2]]], +[4776,[6280.07,19536.9,0],[[4747,2],[4803,2]]], [4777,[6189.96,19866.9,0],[[4748,2],[4804,2]]], [4778,[6293.41,22063.5,0],[[4751,2],[4805,2]]], [4779,[4922.61,10710.6,0],[[4752,2],[4806,2]]], [4780,[4763.08,11644.8,0],[[4754,2],[4807,2]]], [4781,[4795.91,10939.5,0],[[4755,2],[4808,2]]], +[4782,[4860.28,11122.7,-1.27157e-006],[[4756,2],[4782,2],[4809,2]]], [4783,[13403.7,7339.51,0],[[4759,2],[4810,2]]], [4784,[3759.15,14581.9,0],[[4760,2],[4811,2]]], [4785,[3673.7,17748.3,0],[[4761,2],[4812,2]]], [4786,[4612.53,15692.3,0],[[4762,2],[4813,2]]], [4787,[3750,13186.7,-3.17891e-007],[[4763,2],[4764,2],[4787,2],[4789,2]]], +[4788,[3549.67,13125.3,0],[[4764,2],[4814,2],[4788,2],[4791,2]]], [4789,[3753.32,13133.4,0],[[4764,2],[4770,2],[4787,2],[4789,2],[4815,2]]], [4790,[3613.76,13039.9,-2.38419e-007],[[4764,2],[4791,2],[4816,2],[4815,2]]], [4791,[3576.17,13088.8,0],[[4764,2],[4788,2],[4790,2],[4817,2]]], [4792,[3576.1,13221.7,1.58946e-007],[[4765,2],[4818,2],[4814,2],[4793,2]]], [4793,[3523.3,13289.4,-3.97364e-008],[[4765,2],[4766,2],[4792,2],[4819,2],[4820,2],[4821,2]]], +[4794,[3545.15,13440.5,0],[[4767,2],[4819,2]]], [4795,[3622.47,14347.3,0],[[4769,2],[4822,2],[4811,2]]], [4796,[3586.23,14140.7,0],[[4769,2],[4823,2]]], [4797,[3928.59,13109.2,1.90735e-006],[[4770,2],[4824,2]]], [4798,[4242.58,12286,0],[[4771,2],[4825,2]]], [4799,[4580.99,12512.2,-3.8147e-006],[[4772,2],[4826,2]]], +[4800,[4070.49,12893.2,6.35783e-007],[[4774,2],[4827,2],[4828,2]]], [4801,[4084.41,12987,-1.90735e-006],[[4774,2],[4824,2]]], [4802,[6531.78,19993.2,-1.52588e-005],[[4775,2]]], [4803,[6254.43,19392.1,-1.52588e-005],[[4776,2],[4829,2]]], [4804,[6071.77,19840.7,0],[[4777,2],[4830,2]]], [4805,[6251.54,22083.1,0],[[4778,2],[4831,2],[4832,2]]], +[4806,[4932.19,10569.9,0],[[4779,2],[4833,2]]], [4807,[4712.25,11763.9,0],[[4780,2],[4834,2]]], [4808,[4733.39,10808.8,0],[[4781,2],[4835,2]]], [4809,[4815.81,11135.6,0],[[4782,2]]], [4810,[13464.7,7300.77,0],[[4783,2],[4836,2]]], [4811,[3699,14511,-1.90735e-006],[[4784,2],[4795,2]]], +[4812,[3616.23,17820.4,2.18216],[[4785,2],[4812,2],[4837,2]]], [4813,[4609.77,15589.6,1.52588e-005],[[4786,2],[4838,2]]], [4814,[3543.46,13123.1,0],[[4788,2],[4792,2],[4818,2]]], [4815,[3716.65,13003.7,-6.35783e-007],[[4789,2],[4790,2],[4839,2]]], [4816,[3611.11,12964,5.72205e-007],[[4790,2],[4840,2],[4841,2],[4839,2],[4842,2],[4843,2]]], [4817,[3535.93,13120.3,0],[[4791,2]]], +[4818,[3515.09,13151.9,2.38419e-007],[[4792,2],[4814,2],[4844,2],[4840,2],[4845,2],[4821,2]]], [4819,[3490.29,13352.5,0],[[4793,2],[4794,2],[4846,2]]], [4820,[3441.1,13209.9,7.94729e-008],[[4793,2],[4847,2],[4845,2],[4848,2]]], [4821,[3527.79,13251.2,0],[[4793,2],[4818,2],[4845,2]]], [4822,[3529.92,14356.7,0],[[4795,2],[4849,2]]], [4823,[3500.44,14124.2,0],[[4796,2],[4850,2]]], +[4824,[3995.45,13018.5,0],[[4797,2],[4801,2]]], [4825,[4205.26,12247.8,9.53674e-007],[[4798,2],[4851,2],[4852,2],[4853,2]]], [4826,[4680.38,12538,0],[[4799,2],[4854,2]]], [4827,[4023.13,12883,1.90735e-006],[[4800,2],[4827,2],[4855,2]]], [4828,[4029.78,12812.3,0],[[4800,2],[4856,2]]], [4829,[6193.39,19315.7,-1.52588e-005],[[4803,2]]], +[4830,[5987.7,19863.3,0],[[4804,2],[4857,2]]], [4831,[6120.39,22160.3,0],[[4805,2],[4858,2]]], [4832,[6211.54,22266.8,7.62939e-006],[[4805,2],[4859,2]]], [4833,[4891.37,10425.5,0],[[4806,2],[4860,2]]], [4834,[4627.1,11713.4,-7.62939e-006],[[4807,2],[4861,2]]], [4835,[4678.11,10700.5,6.35783e-007],[[4808,2],[4862,2],[4863,2],[4835,2]]], +[4836,[13528.4,7256.43,0],[[4810,2],[4864,2]]], [4837,[3594.1,17935,0],[[4812,2],[4865,2]]], [4838,[4610.82,15488.6,0],[[4813,2],[4866,2]]], [4839,[3719.44,12964.2,0],[[4815,2],[4816,2],[4841,2],[4867,2]]], [4840,[3514.97,13070.7,0],[[4816,2],[4818,2],[4844,2]]], [4841,[3669.99,12930,0],[[4816,2],[4839,2],[4841,2],[4868,2]]], +[4842,[3585.55,12910.9,3.17891e-007],[[4816,2],[4869,2],[4870,2]]], [4843,[3518.62,12975.7,-3.17891e-007],[[4816,2],[4871,2],[4872,2],[4869,2]]], [4844,[3475.18,13108.3,1.19209e-007],[[4818,2],[4840,2],[4873,2],[4848,2],[4847,2],[4874,2],[4871,2]]], [4845,[3499.75,13195.8,-5.96046e-008],[[4818,2],[4820,2],[4821,2],[4847,2]]], [4846,[3452.58,13299.8,0],[[4819,2],[4875,2]]], [4847,[3460.06,13191.4,-2.38419e-007],[[4820,2],[4844,2],[4845,2],[4873,2]]], +[4848,[3406.44,13176.3,7.94729e-008],[[4820,2],[4844,2],[4873,2],[4876,2]]], [4849,[3424.25,14359.1,-1.90735e-006],[[4822,2],[4877,2]]], [4850,[3458.02,14184.6,0],[[4823,2],[4878,2]]], [4851,[4077.71,12200.3,3.8147e-006],[[4825,2],[4879,2]]], [4852,[4271.54,12119.6,0],[[4825,2],[4880,2]]], [4853,[4184.6,12403.7,-3.8147e-006],[[4825,2],[4881,2]]], +[4854,[4774.37,12416.3,0],[[4826,2],[4882,2]]], [4855,[3903.07,12844.7,0],[[4827,2],[4883,2]]], [4856,[4020.01,12768.6,-6.35783e-007],[[4828,2],[4884,2],[4885,2]]], [4857,[5963.57,19864.4,5.08626e-006],[[4830,2],[4886,2],[4887,2]]], [4858,[5975.84,22162.6,0],[[4831,2],[4888,2]]], [4859,[6180.39,22391.3,0],[[4832,2],[4889,2]]], +[4860,[4859.88,10350.8,-2.38419e-007],[[4833,2],[4890,2],[4891,2],[4892,2]]], [4861,[4583.22,11745.5,0],[[4834,2],[4893,2]]], [4862,[4583.56,10592.9,0],[[4835,2],[4894,2]]], [4863,[4690.17,10695.9,0],[[4835,2],[4895,2]]], [4864,[13593.1,7194.9,0],[[4836,2],[4896,2]]], [4865,[3496.74,18032.6,0],[[4837,2],[4897,2]]], +[4866,[4566.2,15448.6,0],[[4838,2],[4898,2]]], [4867,[3831.55,12931.6,1.90735e-006],[[4839,2],[4883,2]]], [4868,[3664.93,12881.1,-6.35783e-007],[[4841,2],[4868,2],[4899,2]]], [4869,[3556.77,12900.9,0],[[4842,2],[4843,2],[4900,2],[4872,2]]], [4870,[3629.26,12864.9,0],[[4842,2],[4870,2],[4899,2]]], [4871,[3398.79,12984,3.97364e-008],[[4843,2],[4844,2],[4901,2],[4874,2],[4902,2],[4876,2],[4903,2],[4904,2]]], +[4872,[3515.9,12935,-2.38419e-007],[[4843,2],[4869,2],[4905,2],[4900,2],[4901,2]]], [4873,[3441.89,13154,0],[[4844,2],[4847,2],[4848,2]]], [4874,[3410.5,13070.4,-1.19209e-007],[[4844,2],[4871,2],[4902,2],[4874,2]]], [4875,[3329.91,13194.7,2.38419e-007],[[4846,2],[4906,2],[4876,2]]], [4876,[3358.94,13118.3,2.38419e-007],[[4848,2],[4871,2],[4875,2],[4906,2],[4907,2],[4903,2],[4902,2]]], [4877,[3374.76,14341.8,0],[[4849,2],[4878,2],[4908,2]]], +[4878,[3402.87,14307.9,0],[[4850,2],[4877,2]]], [4879,[3927.61,12211.7,0],[[4851,2],[4909,2]]], [4880,[4348.6,12028.5,-2.54313e-006],[[4852,2],[4910,2],[4911,2],[4912,2]]], [4881,[4101.94,12509.8,0],[[4853,2],[4913,2]]], [4882,[4845.98,12378.2,0],[[4854,2],[4914,2]]], [4883,[3865.16,12830.4,0],[[4855,2],[4867,2],[4915,2],[4884,2],[4899,2]]], +[4884,[3925.66,12705.6,6.35783e-007],[[4856,2],[4883,2],[4916,2],[4915,2],[4917,2]]], [4885,[4024.89,12786,-6.35783e-007],[[4856,2]]], [4886,[5862.21,19758.3,0],[[4857,2],[4918,2]]], [4887,[5946.41,19999.5,0],[[4857,2],[4919,2]]], [4888,[5850.1,22211.5,0],[[4858,2],[4920,2]]], [4889,[6091.91,22465.1,0],[[4859,2],[4921,2]]], +[4890,[4931.6,10219.9,-9.53674e-007],[[4860,2],[4922,2]]], [4891,[4730.55,10426.2,-3.17891e-007],[[4860,2],[4923,2],[4895,2]]], [4892,[4815.52,10207.4,0],[[4860,2],[4924,2]]], [4893,[4509.83,11781.4,0],[[4861,2],[4925,2]]], [4894,[4577.15,10574.6,-1.90735e-006],[[4862,2]]], [4895,[4746.15,10598.3,0],[[4863,2],[4891,2]]], +[4896,[13632.5,7129.54,-2.38419e-007],[[4864,2],[4926,2]]], [4897,[3373.27,18109.9,1.90735e-006],[[4865,2],[4927,2]]], [4898,[4544.08,15407.9,0],[[4866,2]]], [4899,[3671.42,12805.3,5.72205e-007],[[4868,2],[4870,2],[4883,2],[4928,2],[4929,2]]], [4900,[3536.68,12869,0],[[4869,2],[4872,2],[4930,2],[4905,2]]], [4901,[3431.29,12939.1,0],[[4871,2],[4872,2],[4904,2]]], +[4902,[3375.36,13075.7,1.58946e-007],[[4871,2],[4874,2],[4876,2]]], [4903,[3279.05,13043.9,0],[[4871,2],[4876,2],[4907,2]]], [4904,[3407.43,12925.8,0],[[4871,2],[4901,2],[4904,2],[4931,2]]], [4905,[3503.76,12889.6,0],[[4872,2],[4900,2],[4932,2],[4905,2]]], [4906,[3330.87,13162,0],[[4875,2],[4876,2]]], [4907,[3279.13,13068.1,-4.76837e-007],[[4876,2],[4903,2]]], +[4908,[3309.22,14235.4,0],[[4877,2],[4933,2]]], [4909,[3901.19,12205.8,-9.53674e-007],[[4879,2],[4934,2],[4935,2],[4936,2]]], [4910,[4350,11928.9,0],[[4910,2],[4937,2],[4912,2]]], [4911,[4508.14,11969.6,7.62939e-006],[[4880,2],[4925,2]]], [4912,[4343.96,11947.8,0],[[4910,2],[4880,2]]], [4913,[4067.78,12524.9,6.35783e-007],[[4881,2],[4917,2],[4938,2]]], +[4914,[4916.75,12441.2,0],[[4882,2],[4939,2]]], [4915,[3858.8,12734.6,0],[[4883,2],[4884,2],[4940,2],[4928,2],[4917,2]]], [4916,[3864.13,12733.8,0],[[4884,2],[4916,2]]], [4917,[3910.39,12645.9,9.53674e-007],[[4884,2],[4913,2],[4915,2],[4940,2],[4941,2]]], [4918,[5763.36,19639.6,0],[[4886,2],[4942,2]]], [4919,[5873.52,20080.6,0],[[4887,2],[4943,2]]], +[4920,[5741.65,22109.2,0],[[4888,2],[4944,2]]], [4921,[6039.4,22531.3,0],[[4889,2],[4945,2]]], [4922,[4970.78,10127.5,0],[[4890,2],[4946,2]]], [4923,[4673.78,10320.3,0],[[4891,2],[4947,2]]], [4924,[4744.55,10117.9,0],[[4892,2],[4948,2]]], [4925,[4533.3,11886,-7.62939e-006],[[4893,2],[4911,2]]], +[4926,[13639.9,7036.87,0],[[4896,2],[4949,2]]], [4927,[3253.44,18192.1,0],[[4897,2],[4950,2],[4927,2],[4951,2]]], [4928,[3762.17,12730.1,0],[[4899,2],[4915,2],[4940,2],[4929,2]]], [4929,[3594.22,12755,-4.76837e-007],[[4899,2],[4928,2],[4952,2],[4953,2]]], [4930,[3514.74,12813.8,2.38419e-007],[[4900,2],[4954,2],[4952,2],[4931,2]]], [4931,[3433.2,12871.6,5.96046e-008],[[4904,2],[4930,2],[4955,2],[4932,2],[4956,2],[4954,2]]], +[4932,[3482.66,12880.9,0],[[4905,2],[4931,2],[4955,2]]], [4933,[3279.42,14131.3,0],[[4908,2],[4933,2]]], [4934,[3911.91,12127,0],[[4909,2],[4934,2],[4957,2]]], [4935,[3862.16,12257,3.8147e-006],[[4909,2],[4958,2]]], [4936,[3790.76,12093.9,0],[[4909,2],[4959,2]]], [4937,[4294.31,11835.5,0],[[4910,2],[4960,2]]], +[4938,[3950.81,12460,-3.8147e-006],[[4913,2],[4961,2]]], [4939,[5071.69,12403.9,0],[[4914,2],[4962,2]]], [4940,[3837.74,12697.1,6.35783e-007],[[4915,2],[4917,2],[4928,2]]], [4941,[3934.43,12526.5,0],[[4917,2],[4961,2]]], [4942,[5637.79,19545.1,0],[[4918,2]]], [4943,[5740.91,20099.5,0],[[4919,2],[4963,2]]], +[4944,[5778.28,21977.8,0],[[4920,2],[4964,2]]], [4945,[6023.38,22555,0],[[4921,2]]], [4946,[5000.37,10006.8,0],[[4922,2],[4965,2]]], [4947,[4601.02,10312.1,0],[[4923,2]]], [4948,[4760.87,9993.74,9.53674e-007],[[4924,2],[4966,2]]], [4949,[13634.4,6922.77,0],[[4926,2],[4967,2]]], +[4950,[3193.04,18331.8,0],[[4927,2],[4968,2]]], [4951,[3148.48,18129.6,0],[[4927,2],[4969,2]]], [4952,[3554.51,12758.3,0],[[4929,2],[4930,2],[4970,2],[4954,2]]], [4953,[3586.79,12700.4,-3.17891e-007],[[4929,2],[4953,2],[4971,2],[4970,2]]], [4954,[3470.25,12736.1,-1.19209e-007],[[4930,2],[4931,2],[4952,2],[4956,2],[4972,2],[4970,2]]], [4955,[3439.56,12887.1,0],[[4931,2],[4932,2],[4955,2]]], +[4956,[3455.7,12765,-2.38419e-007],[[4931,2],[4954,2]]], [4957,[3848.58,11999.1,-3.8147e-006],[[4934,2],[4973,2]]], [4958,[3914.6,12295.7,0],[[4935,2],[4958,2],[4961,2]]], [4959,[3756.33,12011.7,-4.76837e-007],[[4936,2],[4974,2],[4975,2],[4976,2]]], [4960,[4217.76,11789.6,0],[[4937,2],[4977,2],[4978,2]]], [4961,[3921.22,12437.6,-9.53674e-007],[[4938,2],[4941,2],[4958,2],[4979,2]]], +[4962,[5167.09,12436.6,0],[[4939,2],[4980,2]]], [4963,[5630.42,20039,0],[[4943,2],[4981,2],[4982,2]]], [4964,[5808.19,21831.3,3.05176e-005],[[4944,2],[4983,2]]], [4965,[5078.09,9968.86,0],[[4946,2]]], [4966,[4727.94,9964.09,0],[[4948,2]]], [4967,[13554.9,6796.95,0],[[4949,2],[4984,2]]], +[4968,[3200.99,18441.2,-4.76837e-007],[[4950,2],[4968,2],[4985,2],[4986,2]]], [4969,[3049.61,18174.4,0],[[4951,2]]], [4970,[3511.72,12694.8,0],[[4952,2],[4953,2],[4954,2],[4987,2],[4972,2],[4971,2]]], [4971,[3564.83,12671.4,0],[[4953,2],[4970,2],[4988,2],[4971,2]]], [4972,[3437.93,12676.4,0],[[4954,2],[4970,2],[4989,2],[4987,2]]], [4973,[3880.24,11980.8,0],[[4957,2]]], +[4974,[3672.53,11967.4,0],[[4959,2],[4990,2],[4991,2],[4992,2]]], [4975,[3775.95,11931.3,0],[[4959,2],[4993,2]]], [4976,[3745.79,12055,0],[[4959,2],[4994,2],[4976,2]]], [4977,[4172.41,11794.5,0],[[4960,2],[4995,2],[4996,2]]], [4978,[4220.15,11716.4,0],[[4960,2],[4997,2]]], [4979,[3799.28,12297.4,0],[[4961,2],[4998,2]]], +[4980,[5275.07,12479.1,0],[[4962,2],[4999,2]]], [4981,[5524.89,20202.5,1.52588e-005],[[4963,2],[5000,2]]], [4982,[5560.89,19839.9,0],[[4963,2],[5001,2]]], [4983,[5663.1,21770.8,0],[[4964,2],[5002,2]]], [4984,[13479.4,6645.28,0],[[4967,2],[5003,2]]], [4985,[3042.13,18458.7,0],[[4968,2],[4985,2]]], +[4986,[3217.33,18599.4,0],[[4968,2],[5004,2]]], [4987,[3481.81,12648.4,0],[[4970,2],[4972,2],[5005,2],[4989,2],[5006,2],[4988,2]]], [4988,[3558.78,12663.2,0],[[4971,2],[4987,2],[5006,2]]], [4989,[3403.96,12602.5,4.76837e-007],[[4972,2],[4987,2],[5007,2],[5005,2]]], [4990,[3621.1,11956,0],[[4974,2],[5008,2],[4990,2],[5009,2]]], [4991,[3689.77,12101,0],[[4974,2],[4998,2],[5010,2],[4994,2]]], +[4992,[3690.48,11833,0],[[4974,2],[5011,2]]], [4993,[3874.11,11833.8,1.90735e-006],[[4975,2],[5012,2]]], [4994,[3735.16,12142.4,1.90735e-006],[[4976,2],[5013,2],[4991,2],[4998,2]]], [4995,[4140.21,11730.2,0],[[4977,2],[5014,2],[5015,2],[5016,2]]], [4996,[4093.38,11771.2,3.8147e-006],[[4977,2],[5014,2]]], [4997,[4240.43,11665,0],[[4978,2],[5017,2],[5016,2]]], +[4998,[3742.36,12193,0],[[4979,2],[4991,2],[4994,2],[5013,2]]], [4999,[5362.46,12483.5,7.62939e-006],[[4980,2],[5018,2]]], [5000,[5441.3,20308.8,0],[[4981,2],[5019,2]]], [5001,[5517.1,19776.8,0],[[4982,2]]], [5002,[5491.44,21753.6,0],[[4983,2],[5020,2]]], [5003,[13488.8,6522.45,-3.8147e-006],[[4984,2],[5021,2]]], +[5004,[3241,18728.8,0],[[4986,2],[5022,2]]], [5005,[3461.51,12600.3,0],[[4987,2],[4989,2],[5005,2],[5023,2],[5006,2]]], [5006,[3534.81,12623.8,0],[[4988,2],[5005,2],[5023,2]]], [5007,[3259.71,12508.7,0],[[4989,2],[5024,2]]], [5008,[3447.98,11957.2,0],[[4990,2],[5025,2]]], [5009,[3497.34,11879.7,3.17891e-007],[[4990,2],[5026,2],[5027,2]]], +[5010,[3639.02,12191.2,0],[[4991,2],[5028,2]]], [5011,[3686.46,11772.8,-3.17891e-007],[[4992,2],[5029,2],[5030,2]]], [5012,[3927.13,11831.6,3.17891e-007],[[4993,2],[5012,2],[5031,2]]], [5013,[3728.86,12153.1,6.35783e-007],[[4994,2],[4998,2]]], [5014,[4069.49,11734.6,0],[[4995,2],[4996,2],[5032,2]]], [5015,[3983.21,11617.7,0],[[4995,2],[5033,2]]], +[5016,[4206.07,11651,-3.8147e-006],[[4995,2],[4997,2],[5017,2]]], [5017,[4237.87,11630.6,0],[[4997,2],[5016,2],[5034,2]]], [5018,[5473.39,12545.3,0],[[4999,2],[5035,2]]], [5019,[5319.79,20351.2,0],[[5000,2],[5036,2]]], [5020,[5371.95,21834.6,0],[[5002,2],[5037,2]]], [5021,[13526.6,6441.8,3.8147e-006],[[5003,2],[5038,2]]], +[5022,[3356.88,18839.5,-3.8147e-006],[[5004,2],[5039,2]]], [5023,[3520.18,12556.3,0],[[5005,2],[5006,2],[5040,2]]], [5024,[3140.08,12451.3,0],[[5007,2],[5041,2]]], [5025,[3288.4,11888,0],[[5008,2],[5042,2]]], [5026,[3522.7,11829.6,0],[[5009,2],[5026,2],[5043,2]]], [5027,[3399.23,11852.6,-6.35783e-007],[[5009,2],[5044,2],[5045,2]]], +[5028,[3607.89,12306.2,0],[[5010,2],[5046,2]]], [5029,[3779.03,11652.2,-2.38419e-007],[[5011,2],[5047,2],[5048,2],[5049,2]]], [5030,[3620.09,11748.8,-2.38419e-007],[[5011,2],[5030,2],[5050,2],[5043,2]]], [5031,[3982.81,11837.3,0],[[5012,2],[5051,2],[5031,2],[5052,2]]], [5032,[3922.65,11696.6,0],[[5014,2],[5049,2]]], [5033,[3946.47,11547.9,4.76837e-007],[[5015,2],[5048,2],[5033,2],[5053,2]]], +[5034,[4281.45,11510.5,-3.8147e-006],[[5017,2],[5054,2]]], [5035,[5552.68,12553,0],[[5018,2],[5055,2]]], [5036,[5190.47,20363.1,3.8147e-006],[[5019,2],[5036,2],[5056,2],[5057,2]]], [5037,[5266.59,21855.2,0],[[5020,2],[5058,2]]], [5038,[13682,6400.34,0],[[5021,2],[5059,2]]], [5039,[3319.46,18984,0],[[5022,2],[5060,2]]], +[5040,[3548.3,12455,0],[[5023,2],[5061,2]]], [5041,[3081.66,12391.6,-3.17891e-007],[[5024,2],[5062,2],[5063,2]]], [5042,[3162.75,11864.9,1.90735e-006],[[5025,2],[5064,2]]], [5043,[3547.06,11824.2,0],[[5026,2],[5030,2],[5043,2]]], [5044,[3266.96,11815.2,0],[[5027,2],[5065,2]]], [5045,[3425.89,11722.9,0],[[5027,2]]], +[5046,[3556.67,12386.9,0],[[5028,2],[5066,2],[5061,2]]], [5047,[3717.56,11634.3,0],[[5029,2],[5067,2]]], [5048,[3828.33,11523.2,0],[[5029,2],[5033,2],[5068,2]]], [5049,[3817.48,11683.5,0],[[5029,2],[5032,2],[5069,2]]], [5050,[3493.73,11643.6,0],[[5030,2],[5050,2]]], [5051,[3968.88,11829.5,0],[[5031,2]]], +[5052,[4036.62,11856.6,0],[[5031,2],[5052,2],[5070,2]]], [5053,[3965.91,11449.9,-9.53674e-007],[[5033,2],[5071,2]]], [5054,[4292.68,11426.6,0],[[5034,2],[5072,2]]], [5055,[5568.34,12556.4,0],[[5035,2]]], [5056,[5096.99,20250.9,0],[[5036,2],[5073,2]]], [5057,[5098.11,20476.5,0],[[5036,2],[5074,2]]], +[5058,[5144.17,21828.8,0],[[5037,2],[5075,2]]], [5059,[13783.2,6378.61,0],[[5038,2]]], [5060,[3360.6,19137.5,0],[[5039,2],[5076,2]]], [5061,[3468.83,12438.3,0],[[5040,2],[5046,2],[5066,2]]], [5062,[3025.01,12509.7,0],[[5041,2],[5062,2]]], [5063,[3083.75,12207.9,0],[[5041,2],[5077,2]]], +[5064,[3085.96,11951.6,0],[[5042,2],[5077,2]]], [5065,[3128.86,11834.2,0],[[5044,2],[5078,2]]], [5066,[3471.35,12422,0],[[5046,2],[5061,2]]], [5067,[3615.16,11533.8,0],[[5047,2]]], [5068,[3819.98,11462.7,3.17891e-007],[[5048,2],[5079,2],[5080,2]]], [5069,[3840.42,11771,0],[[5049,2]]], +[5070,[4040.18,11830.9,-1.90735e-006],[[5052,2]]], [5071,[3957.42,11377.5,0],[[5053,2],[5079,2],[5081,2]]], [5072,[4275.88,11405.6,0],[[5054,2]]], [5073,[5021.45,20124.3,0],[[5056,2],[5082,2]]], [5074,[5030.11,20532.6,0],[[5057,2],[5083,2]]], [5075,[5007.44,21838.8,0],[[5058,2],[5084,2]]], +[5076,[3360.34,19279.4,0],[[5060,2],[5085,2]]], [5077,[3113.37,12072.4,0],[[5063,2],[5064,2]]], [5078,[3126.76,11776.7,0],[[5065,2]]], [5079,[3811.69,11369.3,-1.58946e-007],[[5068,2],[5071,2],[5086,2]]], [5080,[3767.53,11466.2,-1.58946e-007],[[5068,2],[5080,2],[5087,2]]], [5081,[4021.08,11363.8,6.35783e-007],[[5071,2],[5081,2],[5088,2]]], +[5082,[5035.07,19991.6,0],[[5073,2],[5089,2]]], [5083,[4894.12,20519.6,1.52588e-005],[[5074,2],[5090,2]]], [5084,[4957.9,21840.8,-1.01725e-005],[[5075,2],[5091,2],[5092,2]]], [5085,[3433.15,19443.7,7.62939e-006],[[5076,2],[5093,2]]], [5086,[3794.14,11198.5,0],[[5079,2],[5094,2]]], [5087,[3706.94,11422.3,0],[[5080,2]]], +[5088,[4087.44,11283.7,1.90735e-006],[[5081,2],[5095,2]]], [5089,[5133.32,19910.6,-1.52588e-005],[[5082,2],[5096,2]]], [5090,[4766.85,20524.1,0],[[5083,2],[5097,2]]], [5091,[4926.02,21895.4,-3.05176e-005],[[5084,2]]], [5092,[4805.51,21856.6,0],[[5084,2],[5098,2]]], [5093,[3565.13,19552.5,1.52588e-005],[[5085,2],[5099,2]]], +[5094,[3784.42,11138.8,0],[[5086,2],[5100,2],[5101,2]]], [5095,[4131.47,11278,0],[[5088,2]]], [5096,[5170.46,19789,0],[[5089,2],[5102,2]]], [5097,[4746.05,20528.7,5.08626e-006],[[5090,2],[5103,2],[5104,2]]], [5098,[4690.68,21827.1,0],[[5092,2],[5105,2]]], [5099,[3559.96,19697.3,0],[[5093,2],[5106,2]]], +[5100,[3794.58,11105.2,4.76837e-007],[[5094,2]]], [5101,[3750.61,10992.7,0],[[5094,2],[5107,2]]], [5102,[5102.93,19686.5,0],[[5096,2],[5108,2]]], [5103,[4664.12,20598.5,0],[[5097,2],[5109,2],[5110,2]]], [5104,[4696.04,20385.4,0],[[5097,2],[5111,2]]], [5105,[4575.18,21860.6,0],[[5098,2],[5112,2]]], +[5106,[3604.58,19815.9,0],[[5099,2],[5113,2]]], [5107,[3742.27,10884,9.53674e-007],[[5101,2],[5114,2]]], [5108,[5019.07,19603.1,0],[[5102,2],[5115,2]]], [5109,[4513.54,20612.6,0],[[5103,2],[5116,2]]], [5110,[4653.33,20651,1.01725e-005],[[5103,2],[5117,2],[5118,2]]], [5111,[4744.11,20228.7,0],[[5104,2],[5119,2]]], +[5112,[4563.59,21853,0],[[5105,2],[5120,2],[5112,2],[5121,2]]], [5113,[3708.3,19924.3,-1.52588e-005],[[5106,2],[5122,2]]], [5114,[3740.18,10766.3,0],[[5107,2],[5123,2]]], [5115,[4952.56,19474.9,0],[[5108,2],[5124,2]]], [5116,[4354.57,20566.2,0],[[5109,2],[5125,2]]], [5117,[4747.9,20776.8,0],[[5110,2],[5126,2]]], +[5118,[4528.96,20760.5,0],[[5110,2],[5127,2]]], [5119,[4786.89,20091.7,1.52588e-005],[[5111,2],[5128,2]]], [5120,[4610.34,21722.8,3.05176e-005],[[5112,2],[5129,2]]], [5121,[4415.64,21881.6,3.05176e-005],[[5112,2],[5130,2]]], [5122,[3755.58,20065.2,0],[[5113,2],[5131,2],[5132,2]]], [5123,[3749.78,10639.2,6.35783e-007],[[5114,2],[5133,2],[5134,2]]], +[5124,[4918.95,19457.6,-1.52588e-005],[[5115,2]]], [5125,[4230.47,20508.7,0],[[5116,2],[5135,2]]], [5126,[4843.42,20879.3,3.05176e-005],[[5117,2],[5136,2]]], [5127,[4435.01,20819.4,-1.01725e-005],[[5118,2],[5137,2],[5138,2]]], [5128,[4733.58,19973.8,0],[[5119,2]]], [5129,[4616.01,21674.8,3.05176e-005],[[5120,2],[5139,2],[5140,2]]], +[5130,[4512.74,21935.4,0],[[5121,2],[5141,2]]], [5131,[3864.14,20236,0],[[5122,2],[5142,2]]], [5132,[3612.82,19970.4,0],[[5122,2],[5143,2]]], [5133,[3871.74,10687.3,0],[[5123,2],[5144,2]]], [5134,[3730.47,10569.8,0],[[5123,2],[5145,2],[5146,2],[5147,2]]], [5135,[4116.8,20403.9,-3.05176e-005],[[5125,2],[5142,2]]], +[5136,[4991.38,20934.3,0],[[5126,2],[5148,2]]], [5137,[4251.73,20783.4,-3.05176e-005],[[5127,2],[5149,2]]], [5138,[4383.48,20978.7,0],[[5127,2],[5150,2]]], [5139,[4611.4,21525.9,0],[[5129,2],[5151,2]]], [5140,[4511.86,21520.2,0],[[5129,2],[5152,2],[5151,2]]], [5141,[4585.68,22012.8,0],[[5130,2],[5153,2]]], +[5142,[3970.75,20336.5,0],[[5131,2],[5135,2]]], [5143,[3537.18,19981.7,0],[[5132,2]]], [5144,[3885.17,10814.2,0],[[5133,2],[5154,2]]], [5145,[3666.12,10465.4,-1.90735e-006],[[5134,2],[5155,2]]], [5146,[3856.29,10519.7,0],[[5134,2],[5156,2]]], [5147,[3616.11,10651.7,0],[[5134,2],[5157,2]]], +[5148,[5108.92,20988,0],[[5136,2],[5158,2]]], [5149,[4091.59,20778.3,0],[[5137,2],[5159,2]]], [5150,[4365.57,21111.5,0],[[5138,2],[5160,2]]], [5151,[4578.77,21465.9,1.01725e-005],[[5139,2],[5140,2],[5161,2],[5152,2]]], [5152,[4527.02,21440.7,0],[[5140,2],[5151,2],[5162,2],[5163,2]]], [5153,[4645.12,22117.1,1.52588e-005],[[5141,2],[5164,2]]], +[5154,[3922.51,10963.1,0],[[5144,2],[5165,2]]], [5155,[3622.25,10360.1,0],[[5145,2],[5155,2],[5166,2],[5167,2]]], [5156,[3920.16,10420.2,0],[[5146,2],[5168,2]]], [5157,[3594.89,10671.5,0],[[5147,2]]], [5158,[5142.49,21046.6,0],[[5148,2]]], [5159,[3953.82,20806.5,0],[[5149,2],[5169,2]]], +[5160,[4359.16,21255.1,0],[[5150,2],[5170,2]]], [5161,[4588.79,21424.9,0],[[5151,2],[5171,2],[5163,2]]], [5162,[4529.67,21331,3.05176e-005],[[5152,2]]], [5163,[4559.06,21417.3,-1.52588e-005],[[5161,2],[5163,2]]], [5164,[4656.4,22277.5,-1.52588e-005],[[5153,2],[5172,2]]], [5165,[3970.76,11017,0],[[5154,2]]], +[5166,[3662.38,10245.9,0],[[5155,2],[5173,2]]], [5167,[3516.55,10278.5,6.35783e-007],[[5155,2],[5167,2],[5174,2]]], [5168,[3928.52,10349.5,1.27157e-006],[[5156,2],[5175,2],[5176,2]]], [5169,[3821.46,20875.4,0],[[5159,2],[5177,2]]], [5170,[4382.46,21302.4,0],[[5160,2],[5178,2],[5179,2]]], [5171,[4654.83,21339.9,0],[[5161,2],[5180,2]]], +[5172,[4665.88,22313.1,0],[[5164,2]]], [5173,[3789.21,10240.6,0],[[5166,2],[5175,2]]], [5174,[3486.2,10166.3,0],[[5167,2],[5181,2]]], [5175,[3889.47,10252.5,0],[[5168,2],[5173,2]]], [5176,[3988.74,10205.8,0],[[5168,2],[5182,2]]], [5177,[3676.12,20883.1,0],[[5169,2],[5183,2]]], +[5178,[4253.48,21348.4,0],[[5170,2],[5184,2]]], [5179,[4475.44,21298.1,3.05176e-005],[[5170,2],[5180,2]]], [5180,[4554.64,21273.2,0],[[5171,2],[5179,2]]], [5181,[3365.34,10159.3,3.8147e-006],[[5174,2],[5185,2]]], [5182,[4085.67,10195.9,0],[[5176,2],[5186,2]]], [5183,[3524.2,20856.9,0],[[5177,2],[5187,2]]], +[5184,[4119.52,21350.5,0],[[5178,2],[5188,2]]], [5185,[3244.55,10146.8,0],[[5181,2],[5189,2]]], [5186,[4125.42,10277.2,0],[[5182,2],[5190,2]]], [5187,[3390.98,20902.3,1.52588e-005],[[5183,2],[5191,2]]], [5188,[4086.1,21447.6,0],[[5184,2],[5192,2]]], [5189,[3118.85,10162.1,-3.8147e-006],[[5185,2],[5193,2]]], +[5190,[4210.26,10322.9,0],[[5186,2],[5194,2]]], [5191,[3258.81,20898.6,0],[[5187,2],[5195,2]]], [5192,[4030.73,21531.4,-1.52588e-005],[[5188,2],[5196,2]]], [5193,[3005.49,10113.9,-3.8147e-006],[[5189,2],[5197,2]]], [5194,[4237.22,10354.4,0],[[5190,2]]], [5195,[3247.66,21053.2,0],[[5191,2],[5198,2]]], +[5196,[3909.39,21510.2,0],[[5192,2],[5199,2]]], [5197,[2952.53,10037.6,0],[[5193,2],[5200,2]]], [5198,[3380.12,21094.4,-7.62939e-006],[[5195,2],[5201,2]]], [5199,[3815.33,21502.2,0],[[5196,2]]], [5200,[2856.74,9947.15,0],[[5197,2],[5202,2]]], [5201,[3481.38,21205.1,0],[[5198,2],[5203,2]]], +[5202,[2808.84,9883.68,0],[[5200,2],[5204,2]]], [5203,[3422.86,21334,0],[[5201,2],[5205,2]]], [5204,[2739.28,9831.81,2.38419e-007],[[5202,2],[5206,2]]], [5205,[3300.36,21393.4,0],[[5203,2],[5207,2]]], [5206,[2668.77,9833.3,0],[[5204,2]]], [5207,[3255.45,21507,0],[[5205,2],[5208,2]]], +[5208,[3178.85,21574.2,7.62939e-006],[[5207,2],[5209,2]]], [5209,[3044.89,21621.6,0],[[5208,2],[5210,2]]], [5210,[2931.82,21690.5,0],[[5209,2],[5211,2]]], [5211,[2852.05,21808.8,0],[[5210,2],[5212,2]]], [5212,[2796.64,21898,-6.35783e-007],[[5211,2],[5213,2],[5214,2]]], [5213,[2742.76,22043.1,0],[[5212,2],[5215,2]]], +[5214,[2876.03,22018.3,0],[[5212,2],[5216,2]]], [5215,[2717.07,22074.6,0],[[5213,2]]], [5216,[3000.95,21993.4,0],[[5214,2],[5217,2]]], [5217,[3118.71,21945.8,0],[[5216,2],[5218,2]]], [5218,[3176.26,21819,0],[[5217,2],[5219,2]]], [5219,[3173.26,21709.9,0],[[5218,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridBornholm.sqf b/A3-Antistasi/NavGrids/navGridBornholm.sqf new file mode 100644 index 0000000000..d9acb2fbb5 --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridBornholm.sqf @@ -0,0 +1,1640 @@ +navGrid = [[0,[3589.35,14689.5,0],[[1,2],[2,2],[3,2]]], [1,[3739.88,14703,-7.62939e-006],[[0,2],[36,2]]], [2,[3554.99,14792.1,0],[[0,2],[37,2]]], [3,[3539.07,14581.5,0],[[0,2],[38,2]]], [4,[5271.24,13182.7,0],[[4,2],[5,2],[6,2]]], [5,[5282.48,13234.9,0],[[4,2],[39,2],[40,2]]], +[6,[5290.23,13045,-7.62939e-006],[[4,2],[41,2]]], [7,[11065.4,11777.7,0],[[7,2],[8,2],[9,2]]], [8,[11106,11794.1,-3.8147e-006],[[7,2],[42,2],[43,2],[44,2]]], [9,[10908.4,11684.9,1.90735e-006],[[7,2],[45,2],[9,2],[46,2],[47,2]]], [10,[17194.2,7424.65,1.90735e-006],[[11,2],[12,2],[13,2],[14,2]]], [11,[17021,7355.08,0],[[10,2],[48,2]]], +[12,[17113.2,7570.42,0],[[10,2],[49,2]]], [13,[17270.3,7281.13,0],[[10,2],[50,2]]], [14,[17378.7,7484.74,0],[[10,2],[51,2]]], [15,[15483.2,5036.89,1.27157e-006],[[16,2],[17,2],[18,2]]], [16,[15404.8,5004.88,0],[[15,2],[52,2],[53,2]]], [17,[15619.5,5085.29,-1.27157e-006],[[15,2],[17,2],[54,2]]], +[18,[15488,5132.79,0],[[15,2],[55,2]]], [19,[10975.4,2849.51,-1.27157e-006],[[20,2],[21,2],[22,2]]], [20,[10987.9,3020.98,0],[[19,2],[56,2],[20,2],[57,2]]], [21,[11134.5,2834.53,0],[[19,2],[58,2]]], [22,[10895.6,2839.97,1.27157e-006],[[19,2],[59,2],[60,2]]], [23,[7110.51,5926.74,0],[[24,2],[25,2],[26,2]]], +[24,[7263.55,5918.26,0],[[23,2],[61,2]]], [25,[7049.47,5911.66,0],[[23,2],[62,2],[25,2],[63,2]]], [26,[7135.59,6021.81,1.27157e-006],[[23,2],[64,2],[65,2]]], [27,[2406,6999.13,0],[[28,2],[29,2],[30,2]]], [28,[2585.42,6912.86,0],[[27,2],[66,2]]], [29,[2374.76,6895.67,0],[[27,2],[67,2]]], +[30,[2308.42,7045.32,-4.76837e-007],[[27,2],[68,2],[69,2],[70,2]]], [31,[1697.82,7617.4,0],[[32,2],[33,2],[34,2],[35,2]]], [32,[1602.08,7596.76,-9.53674e-007],[[31,2],[71,2],[32,2],[72,2]]], [33,[1799.61,7653.48,0],[[31,2],[73,2],[74,2],[75,2]]], [34,[1729.96,7479.05,0],[[31,2],[76,2]]], [35,[1629.55,7749.39,-1.90735e-007],[[31,2],[77,2],[73,2],[78,2],[79,2],[72,2],[80,2]]], +[36,[3791.5,14709.9,-5.08626e-006],[[1,2],[81,2],[82,2]]], [37,[3550.49,14802.4,0],[[2,2]]], [38,[3392.22,14486.5,2.54313e-006],[[3,2],[83,2],[84,2]]], [39,[5322.69,13259.1,0],[[5,2],[85,2],[86,2]]], [40,[5243.65,13404.8,0],[[5,2],[87,2],[88,2],[89,2]]], [41,[5309.55,12935,1.90735e-006],[[6,2],[90,2],[91,2],[92,2]]], +[42,[11171,11678.1,0],[[8,2],[42,2]]], [43,[11153.2,11816.2,1.90735e-006],[[8,2],[93,2],[43,2],[94,2]]], [44,[11067.6,11963.9,0],[[8,2],[95,2]]], [45,[10912.1,11706.6,0],[[9,2],[96,2]]], [46,[10982,11570.6,7.62939e-006],[[9,2],[97,2]]], [47,[10861.7,11673.1,0],[[9,2],[98,2],[99,2]]], +[48,[16896.1,7254.52,0],[[11,2],[100,2]]], [49,[17043,7698.93,-7.62939e-006],[[12,2],[101,2]]], [50,[17328.3,7160.38,-3.8147e-006],[[13,2],[102,2]]], [51,[17437.6,7512.28,0],[[14,2],[103,2],[104,2]]], [52,[15522.4,4889.29,-9.53674e-007],[[16,2],[52,2],[105,2]]], [53,[15306.6,4982.29,0],[[16,2],[106,2],[107,2]]], +[54,[15788.4,5108.13,0],[[17,2],[108,2]]], [55,[15501.9,5151.81,1.27157e-006],[[18,2],[55,2],[109,2]]], [56,[11000.7,3158.4,0],[[20,2],[110,2],[111,2],[112,2]]], [57,[10850.5,3044.93,1.27157e-006],[[20,2],[57,2],[113,2]]], [58,[11286.7,2792.9,2.54313e-006],[[21,2],[114,2],[115,2]]], [59,[10873.2,2681.32,-1.90735e-006],[[22,2],[116,2]]], +[60,[10746.8,2841.66,0],[[22,2],[117,2]]], [61,[7390.93,5937.71,0],[[24,2],[118,2],[119,2]]], [62,[7004.88,5750.55,-3.8147e-006],[[25,2],[120,2]]], [63,[6945.42,5916.27,0],[[25,2],[121,2],[122,2]]], [64,[7191.92,6158.79,-7.62939e-006],[[26,2],[123,2]]], [65,[6974.92,6106.33,0],[[26,2],[124,2]]], +[66,[2692.55,6838.15,0],[[28,2],[125,2]]], [67,[2363.65,6793.27,0],[[29,2],[126,2]]], [68,[2310.62,7216.45,0],[[30,2],[127,2]]], [69,[2267.19,6838.33,0],[[30,2],[128,2],[126,2]]], [70,[2169.5,7116.07,0],[[30,2],[129,2]]], [71,[1522.7,7571.65,0],[[32,2],[130,2],[131,2],[132,2]]], +[72,[1643.2,7642.96,0],[[32,2],[35,2],[79,2]]], [73,[1785.74,7716.81,-6.35783e-007],[[33,2],[35,2],[133,2],[134,2]]], [74,[1892.22,7559.83,0],[[33,2],[135,2]]], [75,[1950.6,7654.34,0],[[33,2],[136,2]]], [76,[1722.79,7388.94,3.8147e-007],[[34,2],[137,2],[135,2],[138,2],[130,2],[139,2],[140,2]]], [77,[1728.47,7812.83,0],[[35,2],[141,2]]], +[78,[1609.32,7817.18,0],[[35,2],[142,2],[143,2]]], [79,[1630.97,7685.05,0],[[35,2],[72,2],[144,2]]], [80,[1463.89,7708.13,-4.76837e-007],[[35,2],[131,2],[145,2],[146,2],[142,2]]], [81,[3729.55,14561.8,0],[[36,2],[147,2]]], [82,[3880.88,14849.8,0],[[36,2],[148,2]]], [83,[3254.14,14429.7,-7.62939e-006],[[38,2],[149,2]]], +[84,[3365.99,14320.7,7.62939e-006],[[38,2],[150,2]]], [85,[5439,13362.9,0],[[39,2],[151,2]]], [86,[5363.07,13213.7,0],[[39,2]]], [87,[5302.8,13448.8,-3.8147e-006],[[40,2],[87,2],[152,2]]], [88,[5070.93,13357.3,0],[[40,2],[153,2]]], [89,[5190.54,13571.6,0],[[40,2],[154,2]]], +[90,[5421.21,12862.5,-7.62939e-006],[[41,2],[155,2]]], [91,[5240.77,12759.8,-7.62939e-006],[[41,2],[156,2]]], [92,[5416.58,13018.8,0],[[41,2],[157,2]]], [93,[11118.1,11911,-7.62939e-006],[[43,2]]], [94,[11251.9,11805.2,1.27157e-006],[[43,2],[158,2],[159,2],[160,2],[161,2],[162,2]]], [95,[11033.3,12116.5,0],[[44,2],[163,2]]], +[96,[10866.9,11753.6,0],[[45,2],[98,2]]], [97,[11067.7,11465.9,2.54313e-006],[[46,2],[164,2],[165,2]]], [98,[10816.9,11720.5,5.08626e-006],[[47,2],[96,2],[166,2]]], [99,[10722.1,11591.3,0],[[47,2],[167,2]]], [100,[16783.6,7144.36,2.54313e-006],[[48,2],[168,2],[169,2]]], [101,[17026.4,7726.33,-3.05176e-006],[[49,2],[101,2],[170,2],[171,2],[172,2]]], +[102,[17336.6,7122.34,0],[[50,2],[173,2],[174,2]]], [103,[17607.4,7514.54,0],[[51,2],[175,2]]], [104,[17425.6,7655.65,0],[[51,2],[176,2]]], [105,[15583.7,4812.84,0],[[52,2],[177,2],[178,2]]], [106,[15247.2,4853.55,0],[[53,2],[179,2]]], [107,[15215.8,4979.37,0],[[53,2],[180,2],[181,2]]], +[108,[15939.3,5114.95,-3.8147e-006],[[54,2],[182,2]]], [109,[15634.6,5242.77,0],[[55,2],[183,2]]], [110,[10912.9,3287.78,0],[[56,2],[184,2]]], [111,[11175.3,3133.3,0],[[56,2],[185,2]]], [112,[11037.4,3290.95,3.8147e-006],[[56,2],[186,2]]], [113,[10795.4,3150.65,0],[[57,2],[187,2]]], +[114,[11345,2787.12,1.27157e-006],[[58,2],[188,2],[189,2]]], [115,[11273.9,2654.94,3.8147e-006],[[58,2],[190,2]]], [116,[10868.4,2502.07,0],[[59,2],[191,2]]], [117,[10720.5,2846.04,0],[[60,2],[192,2],[193,2]]], [118,[7377.5,5871.93,0],[[61,2]]], [119,[7464.35,5963.81,-9.53674e-007],[[61,2],[194,2],[195,2],[196,2]]], +[120,[7013.14,5727.43,0],[[62,2],[197,2],[198,2]]], [121,[6908.69,5803.08,0],[[63,2]]], [122,[6844.59,5923.64,0],[[63,2],[199,2]]], [123,[7238.91,6243.63,2.54313e-006],[[64,2],[200,2],[201,2]]], [124,[6896.57,6127.07,-1.90735e-006],[[65,2],[202,2],[124,2],[203,2],[204,2]]], [125,[2797.42,6751.5,0],[[66,2],[205,2]]], +[126,[2293.61,6748.45,0],[[67,2],[69,2],[128,2]]], [127,[2332.8,7317.63,0],[[68,2],[206,2],[127,2],[207,2]]], [128,[2247.25,6741.57,7.62939e-007],[[69,2],[126,2],[208,2],[209,2],[210,2]]], [129,[2041.54,7193.7,0],[[70,2],[211,2]]], [130,[1521.94,7506.71,0],[[71,2],[76,2],[138,2],[212,2],[132,2],[213,2]]], [131,[1505.26,7626.02,6.35783e-007],[[71,2],[80,2],[131,2]]], +[132,[1373.36,7577.68,-4.76837e-007],[[71,2],[130,2],[214,2],[132,2],[145,2],[212,2]]], [133,[1870.98,7838.49,0],[[73,2]]], [134,[1737.55,7817.38,0],[[73,2]]], [135,[1910.26,7551.13,0],[[74,2],[76,2],[137,2],[136,2],[215,2]]], [136,[1983.19,7664.04,6.35783e-007],[[75,2],[135,2],[215,2],[216,2]]], [137,[1862.61,7497.05,0],[[76,2],[135,2],[137,2],[217,2]]], +[138,[1607.02,7485.02,0],[[76,2],[130,2],[218,2]]], [139,[1865.07,7283.21,0],[[76,2],[219,2],[211,2]]], [140,[1689.47,7345.83,0],[[76,2],[213,2],[220,2],[221,2]]], [141,[1711.53,7904.96,0],[[77,2],[222,2],[143,2],[223,2]]], [142,[1482.21,7790.71,0],[[78,2],[80,2],[146,2]]], [143,[1578.03,7905.54,-2.38419e-007],[[78,2],[141,2],[224,2],[225,2]]], +[144,[1572.05,7679.38,0],[[79,2]]], [145,[1363.19,7706.13,-3.8147e-007],[[80,2],[132,2],[226,2],[146,2],[145,2],[227,2]]], [146,[1444.99,7779.38,4.76837e-007],[[80,2],[142,2],[145,2],[146,2],[226,2]]], [147,[3771.85,14411.3,0],[[81,2],[228,2],[229,2]]], [148,[3956.16,14951.4,0],[[82,2],[230,2],[231,2],[232,2],[233,2]]], [149,[3123.06,14435.6,0],[[83,2],[234,2]]], +[150,[3342.3,14158.5,0],[[84,2],[235,2]]], [151,[5464.73,13373.6,0],[[85,2],[236,2],[151,2]]], [152,[5296.59,13535.1,0],[[87,2]]], [153,[4927.46,13301.7,-7.62939e-006],[[88,2],[237,2]]], [154,[5173.38,13612,0],[[89,2],[238,2],[239,2]]], [155,[5447.65,12861.2,-5.08626e-006],[[90,2],[155,2],[240,2]]], +[156,[5217.13,12714.9,0],[[91,2],[241,2],[242,2]]], [157,[5531.53,13103.7,7.62939e-006],[[92,2],[243,2]]], [158,[11355.6,11798.9,2.54313e-006],[[94,2],[159,2],[244,2]]], [159,[11356.3,11756,0],[[94,2],[158,2],[245,2]]], [160,[11291.4,11663.1,0],[[94,2],[165,2],[246,2],[245,2]]], [161,[11316.7,11875.1,0],[[94,2],[247,2],[248,2]]], +[162,[11170.4,12002.8,0],[[94,2],[249,2]]], [163,[11006.6,12223.3,-1.90735e-006],[[95,2],[250,2],[251,2],[252,2]]], [164,[10941.2,11360.2,0],[[97,2],[253,2]]], [165,[11151.1,11577.3,0],[[97,2],[160,2]]], [166,[10667.1,11862.9,-7.62939e-006],[[98,2],[254,2]]], [167,[10648.1,11541.7,-2.54313e-006],[[99,2],[255,2],[256,2]]], +[168,[16698,7083.4,2.54313e-006],[[100,2],[257,2],[258,2]]], [169,[16955.2,7088.74,-7.62939e-006],[[100,2],[259,2]]], [170,[17128.5,7736.01,0],[[101,2]]], [171,[16917.5,7702.22,0],[[101,2],[260,2],[261,2]]], [172,[16927.4,7846.24,-2.54313e-006],[[101,2],[262,2],[263,2]]], [173,[17243.6,7108.53,0],[[102,2],[264,2]]], +[174,[17371.4,7041.69,0],[[102,2],[265,2],[266,2]]], [175,[17771.5,7513.29,0],[[103,2],[267,2]]], [176,[17494.5,7746.51,3.8147e-006],[[104,2],[268,2]]], [177,[15541.9,4697.48,0],[[105,2],[177,2]]], [178,[15741.8,4667.37,0],[[105,2],[269,2]]], [179,[15193,4750.99,-3.8147e-006],[[106,2],[270,2]]], +[180,[15021.6,4965.66,0],[[107,2],[271,2]]], [181,[15204.6,5121.48,0],[[107,2],[272,2]]], [182,[16005.3,5107.75,1.27157e-006],[[108,2],[273,2],[274,2]]], [183,[15713.6,5371.83,0],[[109,2],[275,2]]], [184,[10824.8,3391.95,0],[[110,2],[276,2]]], [185,[11340.9,3124.17,0],[[111,2],[277,2]]], +[186,[11085.4,3424.36,0],[[112,2],[278,2]]], [187,[10718.5,3212.53,0],[[113,2],[279,2]]], [188,[11481.2,2738.89,0],[[114,2],[280,2],[281,2]]], [189,[11356.2,2829.62,3.8147e-006],[[114,2]]], [190,[11242.3,2537.08,0],[[115,2],[282,2]]], [191,[10824.1,2359.47,-1.90735e-006],[[116,2],[283,2]]], +[192,[10726.6,2897.72,1.90735e-006],[[117,2]]], [193,[10561.1,2829.71,0],[[117,2],[284,2]]], [194,[7646.63,6006.82,0],[[119,2],[285,2]]], [195,[7450.18,5810.17,0],[[119,2],[286,2]]], [196,[7484.68,6163.97,0],[[119,2],[287,2]]], [197,[7022.71,5533.81,3.8147e-006],[[120,2],[288,2]]], +[198,[7165.64,5728.8,0],[[120,2]]], [199,[6777.07,5915.29,1.27157e-006],[[122,2],[289,2],[290,2]]], [200,[7298.28,6222.7,-7.62939e-006],[[123,2]]], [201,[7294.73,6369.57,0],[[123,2],[291,2]]], [202,[6933.15,6136.2,-3.8147e-006],[[124,2]]], [203,[6829.96,6090.99,0],[[124,2],[292,2],[293,2]]], +[204,[6791.96,6183.28,0],[[124,2],[294,2]]], [205,[2823.43,6728.88,0],[[125,2],[295,2],[296,2]]], [206,[2306.08,7320.84,0],[[127,2],[206,2]]], [207,[2403.46,7353.13,0],[[127,2],[297,2],[298,2]]], [208,[2289.41,6599.36,0],[[128,2],[299,2]]], [209,[2182.5,6607.57,9.53674e-007],[[128,2],[300,2],[301,2],[302,2]]], +[210,[2116.03,6822.59,1.90735e-006],[[128,2],[303,2]]], [211,[2016.65,7207.9,6.35783e-007],[[129,2],[139,2],[219,2],[304,2]]], [212,[1366.19,7537.65,0],[[130,2],[132,2],[305,2]]], [213,[1514.05,7361.24,4.76837e-007],[[130,2],[140,2],[306,2],[221,2],[307,2]]], [214,[1405.78,7577.98,0],[[132,2]]], [215,[2016.42,7636.74,0],[[136,2],[308,2],[135,2]]], +[216,[1999.4,7787.04,0],[[136,2],[309,2]]], [217,[2002.2,7507.69,0],[[137,2],[217,2],[310,2]]], [218,[1644.93,7539.89,0],[[138,2]]], [219,[1964.22,7234.05,0],[[139,2],[211,2],[311,2]]], [220,[1654.22,7282.7,0],[[140,2],[312,2]]], [221,[1570.42,7372.4,0],[[213,2],[140,2],[422,2]]], +[222,[1656.42,8067.17,0],[[141,2],[313,2]]], [223,[1832.02,7964.12,0],[[141,2],[314,2]]], [224,[1469.44,7902.78,0],[[143,2],[226,2],[315,2]]], [225,[1501.86,8006.56,2.38419e-007],[[143,2],[315,2],[316,2],[317,2]]], [226,[1382.46,7780.54,0],[[145,2],[146,2],[224,2],[315,2]]], [227,[1259.33,7756.5,0],[[145,2],[227,2],[318,2],[319,2]]], +[228,[3908.94,14452.9,0],[[147,2]]], [229,[3767.56,14352.8,5.08626e-006],[[147,2],[320,2],[321,2]]], [230,[4039.43,15139.7,0],[[148,2],[322,2],[323,2],[324,2]]], [231,[3833.25,14968.9,-7.62939e-006],[[148,2]]], [232,[3992.88,14894.6,0],[[148,2]]], [233,[4132.73,14886.8,0],[[148,2],[233,2]]], +[234,[3097.19,14435.2,0],[[149,2],[325,2],[326,2]]], [235,[3344.16,14148.1,0],[[150,2],[327,2],[328,2]]], [236,[5594.8,13490.2,0],[[151,2],[329,2]]], [237,[4899.36,13327.3,0],[[153,2],[237,2],[330,2]]], [238,[4997.44,13518.6,0],[[154,2],[330,2],[331,2]]], [239,[5181.21,13709.7,0],[[154,2],[332,2],[333,2]]], +[240,[5523.28,12764.3,-1.90735e-006],[[155,2],[334,2],[335,2],[336,2]]], [241,[5153.67,12851.9,0],[[156,2],[337,2]]], [242,[5210.63,12660.2,-2.54313e-006],[[156,2],[338,2],[242,2]]], [243,[5582.53,13138.5,0],[[157,2],[339,2],[340,2]]], [244,[11526.2,11792.7,-3.8147e-006],[[158,2],[341,2],[342,2],[343,2]]], [245,[11365.9,11729.4,-2.54313e-006],[[159,2],[160,2],[344,2],[246,2]]], +[246,[11359.9,11685.4,7.62939e-006],[[160,2],[245,2],[345,2]]], [247,[11459.2,12017.3,0],[[161,2],[346,2],[347,2]]], [248,[11384.1,11858.4,0],[[161,2]]], [249,[11210.3,12140.2,0],[[162,2],[348,2]]], [250,[10914.8,12199.9,-2.54313e-006],[[163,2],[349,2],[350,2]]], [251,[10990.2,12334.3,-2.54313e-006],[[163,2],[351,2],[352,2]]], +[252,[11077.9,12247,0],[[163,2],[348,2],[353,2]]], [253,[10928.7,11339,-1.90735e-006],[[164,2],[354,2],[355,2],[356,2]]], [254,[10530.7,11995.2,7.62939e-006],[[166,2],[357,2]]], [255,[10584.9,11528.7,2.54313e-006],[[167,2],[358,2],[359,2]]], [256,[10766.3,11409.7,7.62939e-006],[[167,2],[360,2]]], [257,[16652.3,7061.5,0],[[168,2],[361,2],[362,2]]], +[258,[16710.3,7033.97,1.90735e-006],[[168,2],[258,2],[363,2],[364,2]]], [259,[17089.7,7106.95,0],[[169,2],[264,2]]], [260,[16918.3,7640.32,0],[[171,2]]], [261,[16837,7696.37,0],[[171,2],[365,2],[366,2],[262,2]]], [262,[16822.6,7778.01,0],[[172,2],[261,2],[366,2]]], [263,[16838.5,7985.28,0],[[172,2],[367,2]]], +[264,[17189.6,7054.5,-1.27157e-006],[[173,2],[259,2],[264,2]]], [265,[17465.6,7076.82,0],[[174,2],[368,2]]], [266,[17420.3,6909.17,2.54313e-006],[[174,2],[369,2],[370,2]]], [267,[17856.8,7503.54,-6.35783e-007],[[175,2],[371,2],[372,2]]], [268,[17586.5,7797.06,3.8147e-006],[[176,2],[373,2]]], [269,[15807.1,4541.78,0],[[178,2],[374,2]]], +[270,[15109.9,4630.05,-3.8147e-006],[[179,2],[375,2]]], [271,[14905.6,4952.45,0],[[180,2],[376,2],[377,2]]], [272,[15300,5205.98,0],[[181,2],[378,2]]], [273,[16118.9,5134.08,0],[[182,2],[379,2],[380,2]]], [274,[16006.3,4948.29,0],[[182,2],[381,2]]], [275,[15688.6,5498.71,0],[[183,2],[382,2],[383,2],[384,2]]], +[276,[10726,3512.91,0],[[184,2],[385,2]]], [277,[11512.7,3112.77,-3.8147e-006],[[185,2],[386,2]]], [278,[11181.6,3484.18,0],[[186,2],[387,2]]], [279,[10620.8,3255.34,0],[[187,2],[388,2]]], [280,[11600.8,2710.69,0],[[188,2],[389,2],[390,2],[391,2]]], [281,[11460.4,2592.55,0],[[188,2],[392,2]]], +[282,[11243.6,2476.18,0],[[190,2]]], [283,[10718.1,2430.69,0],[[191,2]]], [284,[10435.7,2816.9,0],[[193,2],[393,2],[394,2]]], [285,[7693.3,6020.04,0],[[194,2],[395,2],[396,2]]], [286,[7434.86,5732.24,0],[[195,2],[397,2],[398,2]]], [287,[7501.22,6351.59,-7.62939e-006],[[196,2],[399,2]]], +[288,[7039.54,5469.82,0],[[197,2],[288,2],[400,2],[401,2],[402,2]]], [289,[6638.7,5841.56,0],[[199,2],[403,2]]], [290,[6806.28,6024.52,0],[[199,2]]], [291,[7341.43,6484.32,-7.62939e-006],[[201,2],[404,2]]], [292,[6675.28,6036.32,0],[[203,2],[405,2]]], [293,[6909.26,6103.47,0],[[203,2]]], +[294,[6726.91,6203.26,0],[[204,2],[406,2]]], [295,[2921.75,6659.97,-9.53674e-007],[[205,2],[407,2],[408,2],[409,2]]], [296,[2856.53,6601.21,0],[[205,2],[410,2]]], [297,[2521.93,7269.49,1.90735e-006],[[207,2],[411,2]]], [298,[2324.52,7466.71,0],[[207,2],[412,2]]], [299,[2356.97,6450.84,-1.90735e-006],[[208,2],[413,2]]], +[300,[2066.03,6591.77,0],[[209,2],[414,2]]], [301,[2217.04,6555.2,0],[[209,2]]], [302,[2114.17,6543.64,0],[[209,2]]], [303,[2074.65,6848.41,-6.35783e-007],[[210,2],[415,2],[416,2]]], [304,[1970.85,7227.79,0],[[211,2]]], [305,[1276.2,7533.06,0],[[212,2],[417,2],[305,2],[418,2],[419,2],[318,2]]], +[306,[1515.73,7286.04,0],[[213,2],[420,2],[421,2]]], [307,[1335.25,7351.65,9.53674e-007],[[213,2],[423,2]]], [308,[2148.52,7701.81,6.35783e-007],[[215,2],[424,2],[425,2]]], [309,[2025.02,7818.95,-1.27157e-006],[[216,2],[425,2],[426,2]]], [310,[2117.12,7536.5,-1.90735e-006],[[217,2],[427,2]]], [311,[2005.11,7112.15,0],[[219,2],[428,2]]], +[312,[1611.67,7257.71,0],[[220,2],[429,2],[421,2]]], [313,[1634.87,8154.8,0],[[222,2],[430,2],[316,2],[431,2],[432,2]]], [314,[1878.04,7991.05,0],[[223,2],[426,2],[433,2]]], [315,[1379.3,7911.62,-2.38419e-007],[[224,2],[225,2],[226,2],[319,2]]], [316,[1564.06,8063.91,3.17891e-007],[[225,2],[313,2],[430,2]]], [317,[1397.49,8151.97,0],[[225,2],[434,2]]], +[318,[1205.72,7648.75,0],[[227,2],[305,2],[419,2]]], [319,[1275.48,7892.79,0],[[227,2],[315,2],[435,2],[436,2]]], [320,[3714.04,14337.8,0],[[229,2]]], [321,[3813.95,14235.7,0],[[229,2],[437,2]]], [322,[4111.23,15250.2,-2.54313e-006],[[230,2],[438,2],[439,2]]], [323,[4141.86,15091.7,0],[[230,2],[440,2]]], +[324,[3907.88,15216.6,0],[[230,2],[441,2]]], [325,[3049.66,14429.9,-2.54313e-006],[[234,2],[442,2],[443,2]]], [326,[3106.42,14414.7,0],[[234,2]]], [327,[3398.67,14149.9,0],[[235,2]]], [328,[3325.13,14097.9,0],[[235,2]]], [329,[5712.16,13586.4,0],[[236,2],[444,2]]], +[330,[4861.08,13433.1,0],[[237,2],[238,2],[330,2],[445,2]]], [331,[4915.48,13674.2,0],[[238,2],[446,2]]], [332,[5164.36,13782.7,-2.54313e-006],[[239,2],[447,2],[448,2]]], [333,[5246.9,13678.9,7.62939e-006],[[239,2]]], [334,[5390.52,12681.6,0],[[240,2],[449,2]]], [335,[5623.94,12680.4,-1.52588e-006],[[240,2],[450,2],[451,2],[452,2],[453,2]]], +[336,[5643.48,12864.6,0],[[240,2],[454,2]]], [337,[5141.02,12870.1,0],[[241,2],[455,2],[337,2],[456,2]]], [338,[5177.96,12572.2,5.08626e-006],[[242,2],[457,2],[458,2],[449,2]]], [339,[5726.54,13236.8,0],[[243,2],[459,2]]], [340,[5567.52,13201,0],[[243,2]]], [341,[11570,11609.8,0],[[244,2],[460,2]]], +[342,[11478.8,11856.1,0],[[244,2]]], [343,[11749.2,11774.4,-7.62939e-006],[[244,2],[461,2]]], [344,[11416.8,11724.2,7.62939e-006],[[245,2]]], [345,[11370.9,11518,0],[[246,2],[462,2]]], [346,[11610.3,12181.5,0],[[247,2],[463,2]]], [347,[11485.5,11987.4,0],[[247,2]]], +[348,[11234.5,12220.5,0],[[249,2],[252,2],[464,2],[465,2]]], [349,[10919.3,12172.1,0],[[250,2]]], [350,[10738.4,12150.8,0],[[250,2],[466,2]]], [351,[10951.4,12489.1,0],[[251,2],[467,2]]], [352,[11104.9,12378.9,0],[[251,2],[352,2],[468,2]]], [353,[11117,12285.5,7.62939e-006],[[252,2],[353,2]]], +[354,[10899.1,11360.7,-5.08626e-006],[[253,2],[354,2],[469,2]]], [355,[10805.8,11236.1,-7.62939e-006],[[253,2],[470,2]]], [356,[11023.6,11249.3,0],[[253,2]]], [357,[10508.7,12017.4,0],[[254,2],[466,2],[471,2],[472,2]]], [358,[10530.9,11643,0],[[255,2]]], [359,[10503.1,11489.2,3.93207e-005],[[255,2],[359,2],[473,2],[474,2],[475,2],[476,2],[477,2],[478,2]]], +[360,[10781,11382.6,0],[[256,2],[479,2],[469,2]]], [361,[16546.2,7038.02,5.08626e-006],[[257,2],[480,2],[481,2]]], [362,[16625.5,6919.21,0],[[257,2],[482,2]]], [363,[16688.3,6986.4,2.54313e-006],[[258,2],[363,2],[483,2]]], [364,[16737.5,6983.77,0],[[258,2]]], [365,[16685.6,7653.78,-7.62939e-006],[[261,2],[484,2]]], +[366,[16809.1,7758.62,0],[[261,2],[262,2]]], [367,[16815.1,8015.78,0],[[263,2],[485,2],[486,2]]], [368,[17555.5,7123.56,-3.8147e-006],[[265,2],[487,2]]], [369,[17552.6,6938.61,0],[[369,2]]], [370,[17460.4,6758.08,0],[[266,2],[488,2]]], [371,[17828,7320.33,-3.8147e-006],[[267,2],[489,2]]], +[372,[17960.6,7665.65,1.90735e-006],[[267,2],[490,2]]], [373,[17537.2,7886.02,0],[[268,2],[491,2]]], [374,[15810.2,4505.57,-6.35783e-007],[[269,2],[492,2],[493,2]]], [375,[15004.1,4512.06,0],[[270,2],[494,2],[495,2]]], [376,[14924.5,4790.9,0],[[271,2],[376,2]]], [377,[14698.9,4939.96,0],[[271,2],[496,2],[497,2]]], +[378,[15254.6,5328.79,-1.27157e-006],[[272,2],[498,2],[499,2]]], [379,[16146.8,5307.48,3.8147e-006],[[273,2],[500,2]]], [380,[16275.4,5131.95,0],[[273,2],[501,2]]], [381,[16051.8,4774.45,0],[[274,2],[502,2]]], [382,[15664.1,5649.82,2.54313e-006],[[275,2],[503,2],[504,2]]], [383,[15731.7,5531.16,0],[[275,2]]], +[384,[15634,5497.64,-7.62939e-006],[[275,2]]], [385,[10678.2,3566.01,0],[[276,2],[505,2],[506,2],[388,2]]], [386,[11522.7,3112.73,0],[[277,2],[507,2],[508,2]]], [387,[11190.4,3613.54,0],[[278,2],[509,2]]], [388,[10654.9,3387.03,3.8147e-006],[[279,2],[385,2]]], [389,[11605.1,2677.27,2.54313e-006],[[280,2],[510,2],[511,2]]], +[390,[11562.4,2849.4,0],[[280,2],[508,2]]], [391,[11757.7,2820.22,-3.8147e-006],[[280,2],[512,2]]], [392,[11453.8,2539.41,0],[[281,2]]], [393,[10405.1,2631.52,0],[[284,2],[513,2]]], [394,[10303.7,2859.74,-6.35783e-007],[[284,2],[514,2],[515,2]]], [395,[7729.76,6172.93,0],[[285,2],[516,2]]], +[396,[7747.89,6017.48,-3.8147e-006],[[285,2],[517,2],[518,2]]], [397,[7500.25,5607.13,0],[[286,2],[519,2]]], [398,[7369.6,5737,3.8147e-006],[[286,2]]], [399,[7512.92,6472.33,0],[[287,2],[520,2]]], [400,[6941.62,5450.37,0],[[288,2],[521,2],[522,2]]], [401,[7148.03,5352.9,0],[[288,2],[523,2]]], +[402,[7141.7,5512.36,0],[[288,2],[524,2]]], [403,[6618.49,5836.05,0],[[289,2],[525,2],[526,2]]], [404,[7379.93,6607.11,0],[[291,2],[527,2]]], [405,[6564.89,5991.55,0],[[292,2],[528,2]]], [406,[6621.49,6123.04,0],[[294,2],[529,2]]], [407,[3008.42,6564.7,1.27157e-006],[[295,2],[408,2],[530,2]]], +[408,[3061.55,6557.59,0],[[295,2],[407,2],[531,2],[532,2],[533,2]]], [409,[3014.8,6783.87,0],[[295,2],[534,2]]], [410,[2852.26,6506.92,0],[[296,2],[535,2]]], [411,[2609.24,7269.85,0],[[297,2],[536,2]]], [412,[2279.7,7510.39,0],[[298,2],[537,2],[424,2],[427,2]]], [413,[2455.79,6319.82,0],[[299,2],[538,2],[539,2]]], +[414,[2117.39,6627.95,0],[[300,2],[540,2]]], [415,[2050.6,6876.06,0],[[303,2],[541,2],[428,2],[542,2]]], [416,[1976.08,6755.51,-4.76837e-007],[[303,2],[543,2],[540,2],[544,2]]], [417,[1102.42,7476.08,-9.53674e-008],[[305,2],[545,2],[546,2],[547,2],[548,2]]], [418,[1294.87,7434.45,0],[[305,2],[423,2]]], [419,[1204.79,7620.37,0],[[305,2],[318,2],[549,2]]], +[420,[1435.32,7227.16,2.38419e-007],[[306,2],[550,2],[420,2],[551,2],[421,2],[552,2]]], [421,[1530.05,7241.53,0],[[306,2],[312,2],[420,2],[429,2],[551,2]]], [422,[1583.98,7447.03,0],[[221,2]]], [423,[1312.01,7345.17,-2.38419e-007],[[307,2],[418,2],[423,2],[552,2]]], [424,[2265.19,7577.16,1.90735e-006],[[308,2],[412,2],[537,2]]], [425,[2162.14,7723.95,1.27157e-006],[[308,2],[309,2],[553,2]]], +[426,[1926.24,7933.11,0],[[309,2],[314,2]]], [427,[2207.36,7549.58,0],[[310,2],[412,2]]], [428,[2045.66,6987.43,-1.90735e-006],[[311,2],[415,2],[541,2]]], [429,[1582.94,7246.32,1.90735e-006],[[312,2],[421,2],[554,2]]], [430,[1602.4,8116.31,0],[[313,2],[316,2],[430,2]]], [431,[1561.2,8248.51,-9.53674e-007],[[313,2],[555,2]]], +[432,[1688.6,8191.12,0],[[313,2],[432,2],[556,2]]], [433,[2018.54,8061.24,0],[[314,2]]], [434,[1363.91,8174.47,0],[[317,2],[557,2],[436,2]]], [435,[1237.57,7865.24,2.38419e-007],[[319,2],[558,2],[435,2],[559,2]]], [436,[1309.63,8066.75,0],[[319,2],[434,2],[560,2]]], [437,[3754.06,14090.7,0],[[321,2],[561,2]]], +[438,[4164.35,15233.3,0],[[322,2]]], [439,[4152.26,15388.1,-2.54313e-006],[[322,2],[562,2],[563,2]]], [440,[4200.4,15043.9,0],[[323,2],[564,2]]], [441,[3795.18,15281.5,-3.8147e-006],[[324,2],[563,2],[565,2],[566,2]]], [442,[3050.06,14522.2,0],[[325,2],[567,2],[568,2]]], [443,[3006.47,14292.1,-2.54313e-006],[[325,2],[569,2],[570,2]]], +[444,[5747.15,13625.2,0],[[329,2],[571,2],[572,2]]], [445,[4662.74,13315.3,0],[[330,2],[573,2]]], [446,[4840.42,13814.7,0],[[331,2],[574,2]]], [447,[5179.56,13969,0],[[332,2],[575,2]]], [448,[5076.09,13788.9,2.54313e-006],[[332,2],[576,2],[577,2]]], [449,[5311.09,12561.6,-7.62939e-006],[[334,2],[338,2],[458,2]]], +[450,[5478.09,12586.4,2.54313e-006],[[335,2],[578,2],[579,2]]], [451,[5702.43,12563.3,-7.62939e-006],[[335,2],[580,2]]], [452,[5623.34,12759.7,0],[[335,2]]], [453,[5787.67,12768.1,-2.54313e-006],[[335,2],[581,2],[582,2]]], [454,[5748.27,12943.1,0],[[336,2],[583,2]]], [455,[5034.21,12998.3,0],[[337,2],[584,2]]], +[456,[5034.51,12830.9,-7.62939e-006],[[337,2],[585,2]]], [457,[5140.5,12486.3,0],[[338,2],[458,2],[586,2]]], [458,[5244.81,12505.3,1.27157e-006],[[338,2],[449,2],[457,2],[587,2],[458,2],[588,2],[579,2]]], [459,[5849.83,13300.9,0],[[339,2],[459,2]]], [460,[11652.8,11461.7,2.54313e-006],[[341,2],[589,2],[590,2]]], [461,[11762.7,11767.6,-5.08626e-006],[[343,2],[591,2],[592,2]]], +[462,[11368.6,11418.4,0],[[345,2],[593,2],[594,2],[595,2]]], [463,[11637.8,12206.2,-1.90735e-006],[[346,2],[596,2],[597,2],[598,2]]], [464,[11353.7,12392.7,0],[[348,2],[599,2]]], [465,[11267,12225.8,0],[[348,2]]], [466,[10673.4,12131.3,0],[[350,2],[357,2],[600,2]]], [467,[10954.6,12508,0],[[351,2],[601,2],[602,2]]], +[468,[11270.1,12464.8,2.54313e-006],[[352,2],[603,2],[604,2],[468,2]]], [469,[10851.8,11339.1,0],[[354,2],[360,2],[469,2]]], [470,[10674,11142.3,-7.62939e-006],[[355,2],[605,2]]], [471,[10385.1,12134.7,0],[[357,2],[606,2]]], [472,[10372.3,11918.2,0],[[357,2],[607,2]]], [473,[10518.3,11480.1,-6.86646e-005],[[359,2]]], +[474,[10499.4,11518.1,0],[[359,2]]], [475,[10476.9,11519.1,-2.28882e-005],[[359,2]]], [476,[10419,11517,4.42505e-005],[[359,2],[608,2],[476,2],[609,2],[478,2]]], [477,[10388,11405.8,2.54313e-006],[[359,2],[610,2],[611,2]]], [478,[10425.5,11472.8,2.54313e-006],[[359,2],[476,2],[478,2],[609,2]]], [479,[10769.4,11308.8,0],[[360,2]]], +[480,[16519.5,7049.48,0],[[361,2],[612,2],[480,2],[613,2]]], [481,[16482.6,6944.17,0],[[361,2],[614,2]]], [482,[16592.4,6759.49,7.62939e-006],[[362,2],[615,2]]], [483,[16647.7,6858.81,0],[[363,2],[616,2]]], [484,[16659,7643.4,1.90735e-006],[[365,2],[617,2],[618,2],[619,2]]], [485,[16764.8,8179.17,0],[[367,2],[620,2],[621,2]]], +[486,[16642.5,7947.22,-5.08626e-006],[[367,2],[622,2],[617,2]]], [487,[17604,7145.66,0],[[368,2]]], [488,[17468,6729.05,9.53674e-007],[[370,2],[623,2],[624,2],[625,2]]], [489,[17877.4,7183.88,0],[[371,2],[626,2]]], [490,[17992.1,7688.18,4.76837e-007],[[372,2],[627,2],[628,2],[629,2]]], [491,[17549.6,7924.29,1.27157e-006],[[373,2],[630,2],[491,2]]], +[492,[15779.1,4505.69,0],[[374,2]]], [493,[15824.9,4375.82,6.35783e-007],[[374,2],[631,2],[632,2]]], [494,[14916.3,4437.29,0],[[375,2],[633,2],[634,2]]], [495,[15117.4,4428.46,0],[[375,2],[635,2]]], [496,[14714.5,4809.12,9.53674e-007],[[377,2],[636,2],[637,2],[638,2]]], [497,[14521.4,4935.27,0],[[377,2],[639,2]]], +[498,[15109.4,5381.51,0],[[378,2],[640,2]]], [499,[15258.6,5441.84,-1.27157e-006],[[378,2],[641,2],[642,2]]], [500,[16157.3,5412.97,1.27157e-006],[[379,2],[500,2],[643,2]]], [501,[16345.7,5136.74,6.35783e-007],[[380,2],[644,2],[645,2]]], [502,[16126.4,4652.61,0],[[381,2],[646,2]]], [503,[15630.9,5809.57,-2.54313e-006],[[382,2],[647,2],[648,2]]], +[504,[15735.2,5635.05,0],[[382,2],[504,2]]], [505,[10751.8,3669.21,0],[[385,2],[649,2]]], [506,[10583.9,3673.03,0],[[385,2],[650,2],[651,2]]], [507,[11549.1,3277.37,-3.8147e-006],[[386,2],[652,2]]], [508,[11536.3,3030.85,0],[[386,2],[390,2],[508,2]]], [509,[11190.2,3757.71,0],[[387,2],[653,2]]], +[510,[11725.4,2645.86,0],[[389,2],[654,2]]], [511,[11577,2523.49,-3.8147e-006],[[389,2],[655,2]]], [512,[11877.2,2887.03,0],[[391,2],[656,2],[512,2]]], [513,[10351,2551.63,0],[[393,2],[657,2]]], [514,[10122,2910.21,-6.35783e-007],[[394,2],[658,2],[659,2]]], [515,[10341.3,3016.32,0],[[394,2],[660,2]]], +[516,[7740.11,6218.69,0],[[395,2]]], [517,[7953.62,6028.86,0],[[396,2],[661,2]]], [518,[7748.57,5923.47,-1.27157e-006],[[396,2],[518,2],[662,2]]], [519,[7541.54,5480.68,0],[[397,2],[663,2]]], [520,[7501.11,6504.25,-2.54313e-006],[[399,2],[664,2],[520,2],[665,2],[527,2]]], [521,[6877.28,5292.61,0],[[400,2],[666,2]]], +[522,[6771.08,5483.05,0],[[400,2],[667,2]]], [523,[7147.63,5293.68,0],[[401,2]]], [524,[7245.49,5483.3,0],[[402,2],[668,2]]], [525,[6546.08,5791.21,0],[[403,2],[669,2],[670,2]]], [526,[6650.8,5920.6,0],[[403,2]]], [527,[7383.66,6618.6,5.08626e-006],[[404,2],[520,2],[665,2],[671,2]]], +[528,[6410.09,5931.49,0],[[405,2],[672,2],[670,2]]], [529,[6673.58,6106.8,0],[[406,2],[529,2]]], [530,[2887.78,6455.79,-1.27157e-006],[[407,2],[673,2],[674,2]]], [531,[3146.73,6598.49,0],[[408,2],[675,2],[676,2]]], [532,[3157.72,6554.6,0],[[408,2],[677,2]]], [533,[3162.28,6407.66,0],[[408,2],[678,2]]], +[534,[3029.41,6808.72,0],[[409,2],[679,2],[680,2]]], [535,[2769.46,6537.48,-3.8147e-006],[[410,2],[681,2]]], [536,[2721.42,7226.36,3.8147e-006],[[411,2],[682,2],[536,2]]], [537,[2288.36,7536.7,0],[[412,2],[424,2],[683,2]]], [538,[2559.62,6200.84,0],[[413,2],[684,2]]], [539,[2373.91,6270.88,0],[[413,2],[685,2]]], +[540,[2053.69,6685.36,0],[[414,2],[416,2]]], [541,[2056.94,6938.74,0],[[415,2],[428,2]]], [542,[1947.29,6919.03,0],[[415,2],[686,2]]], [543,[1929.46,6687.01,0],[[416,2],[543,2],[687,2]]], [544,[1911.37,6797.84,0],[[416,2],[544,2],[688,2]]], [545,[1088.66,7517.69,3.17891e-007],[[417,2],[545,2],[689,2],[549,2]]], +[546,[1170.76,7327.1,0],[[417,2],[690,2]]], [547,[971.678,7409.9,0],[[417,2]]], [548,[991.303,7549.99,0],[[417,2],[548,2],[691,2]]], [549,[1068.1,7632.56,0],[[419,2],[545,2],[692,2],[693,2],[691,2]]], [550,[1427.04,7260.27,0],[[420,2],[550,2]]], [551,[1483.58,7221.58,0],[[420,2],[421,2],[694,2]]], +[552,[1344,7198.39,0],[[420,2],[423,2],[695,2],[696,2],[697,2],[690,2]]], [553,[2313.42,7778.19,0],[[425,2],[698,2]]], [554,[1638.78,7144.56,0],[[429,2],[699,2]]], [555,[1539.17,8282.18,-3.17891e-007],[[431,2],[700,2],[557,2]]], [556,[1846.84,8228.72,0],[[432,2],[701,2]]], [557,[1382.65,8266.34,-2.38419e-007],[[434,2],[555,2],[702,2],[703,2],[704,2]]], +[558,[1114.14,7818.31,0],[[435,2],[693,2]]], [559,[1200.51,7745.05,2.38419e-007],[[435,2],[559,2],[705,2],[693,2]]], [560,[1285.42,8104.16,-9.53674e-007],[[436,2]]], [561,[3702.69,13967.3,0],[[437,2],[706,2]]], [562,[4328.98,15444.1,0],[[439,2],[707,2]]], [563,[4032.29,15361.1,-1.90735e-006],[[439,2],[441,2],[708,2],[709,2]]], +[564,[4231.23,14945,0],[[440,2]]], [565,[3761.35,15420.2,0],[[441,2],[565,2]]], [566,[3593.49,15251,-7.62939e-006],[[441,2],[710,2]]], [567,[3005.5,14515.7,0],[[442,2]]], [568,[3079.18,14639.2,-2.54313e-006],[[442,2],[711,2],[712,2]]], [569,[2889.38,14146,1.90735e-006],[[443,2],[569,2],[713,2],[714,2]]], +[570,[3085.38,14283.7,0],[[443,2]]], [571,[5662.31,13769,0],[[444,2],[715,2]]], [572,[5915.56,13717.6,0],[[444,2],[716,2],[717,2]]], [573,[4643.68,13309.5,3.8147e-006],[[445,2],[718,2],[573,2],[719,2]]], [574,[4814.55,13832.2,0],[[446,2],[720,2],[574,2]]], [575,[5175.67,14051.3,-2.54313e-006],[[447,2],[721,2],[722,2]]], +[576,[5025.15,13715.1,0],[[448,2]]], [577,[5059.97,13831.1,-7.62939e-006],[[448,2]]], [578,[5462.36,12638.8,-5.91278e-005],[[450,2],[723,2],[724,2],[578,2]]], [579,[5438,12539.3,-2.54313e-006],[[450,2],[458,2],[725,2],[588,2],[726,2]]], [580,[5733.15,12550.2,0],[[451,2],[727,2],[728,2]]], [581,[5820.12,12801.7,1.90735e-006],[[453,2],[729,2],[581,2],[730,2]]], +[582,[5867.78,12656.8,0],[[453,2]]], [583,[5880.54,13050.4,0],[[454,2],[731,2]]], [584,[4947.98,12973.9,-7.62939e-006],[[455,2]]], [585,[5029.86,12812.7,0],[[456,2]]], [586,[5096.01,12459.7,0],[[457,2],[732,2],[733,2]]], [587,[5251.27,12453.8,0],[[458,2],[734,2],[735,2]]], +[588,[5360.15,12507.8,0],[[458,2],[579,2],[736,2],[735,2]]], [589,[11706.2,11454.9,-7.62939e-006],[[460,2]]], [590,[11681.5,11330.7,7.62939e-006],[[460,2],[737,2]]], [591,[11764.4,11630.1,0],[[461,2],[738,2]]], [592,[11811.8,11774.7,-5.08626e-006],[[461,2],[739,2],[592,2]]], [593,[11477.8,11496.9,0],[[462,2]]], +[594,[11368.4,11287.4,0],[[462,2],[594,2],[740,2],[741,2],[742,2]]], [595,[11311.3,11429.5,0],[[462,2],[595,2],[743,2]]], [596,[11531.7,12321.7,0],[[463,2],[744,2]]], [597,[11780.3,12074.8,0],[[463,2],[745,2]]], [598,[11701.7,12272,0],[[463,2],[746,2],[747,2]]], [599,[11395.9,12496.6,0],[[464,2],[748,2],[603,2]]], +[600,[10649.9,12167,0],[[466,2]]], [601,[10945.4,12564.7,0],[[467,2],[749,2],[750,2]]], [602,[11095.4,12585.5,0],[[467,2],[602,2]]], [603,[11334.5,12539.3,1.90735e-006],[[468,2],[599,2],[603,2],[751,2]]], [604,[11254.6,12445,0],[[468,2]]], [605,[10641.3,11062.1,-2.54313e-006],[[470,2],[752,2],[753,2]]], +[606,[10373.5,12157.7,-2.54313e-006],[[471,2],[754,2],[755,2]]], [607,[10270.6,11807.3,0],[[472,2],[756,2]]], [608,[10387.1,11533.8,-1.52588e-005],[[476,2]]], [609,[10417.3,11496.4,5.08626e-006],[[476,2],[478,2]]], [610,[10318.8,11397,0],[[477,2],[757,2],[758,2]]], [611,[10515.6,11240.6,7.62939e-006],[[477,2],[752,2]]], +[612,[16417.6,6965.87,0],[[480,2],[759,2]]], [613,[16431.3,7126.91,-7.62939e-006],[[480,2],[760,2]]], [614,[16448.7,6780.71,-7.62939e-006],[[481,2],[761,2]]], [615,[16599.5,6614.83,0],[[482,2],[762,2]]], [616,[16759.8,6817.72,0],[[483,2],[763,2]]], [617,[16648.8,7783.64,0],[[484,2],[486,2]]], +[618,[16539.3,7631.99,-2.54313e-006],[[484,2],[764,2],[765,2]]], [619,[16645.8,7490.25,0],[[484,2],[766,2],[767,2]]], [620,[16712,8348.27,0],[[485,2],[768,2],[769,2]]], [621,[16913.2,8196.27,0],[[485,2],[770,2]]], [622,[16521.8,8008.37,-7.62939e-006],[[486,2],[771,2]]], [623,[17530.4,6535.12,0],[[488,2],[772,2]]], +[624,[17568.1,6660.9,0],[[488,2],[773,2]]], [625,[17315.2,6637.87,0],[[488,2],[774,2],[775,2]]], [626,[17960.2,7071.67,-1.90735e-006],[[489,2],[776,2]]], [627,[17974.9,7743.88,0],[[490,2],[777,2],[627,2],[778,2],[629,2]]], [628,[18057.6,7512.51,9.53674e-007],[[490,2],[779,2]]], [629,[18014.1,7777.05,0],[[490,2],[627,2],[778,2]]], +[630,[17536.3,7955.83,0],[[491,2],[630,2],[780,2]]], [631,[15661.8,4351.96,0],[[493,2],[781,2]]], [632,[15883,4305.24,0],[[493,2],[782,2],[783,2]]], [633,[14814.1,4411.94,2.54313e-006],[[494,2],[638,2],[784,2]]], [634,[14901.7,4287.1,0],[[494,2],[785,2]]], [635,[15229.1,4351.23,0],[[495,2],[786,2]]], +[636,[14762.2,4835.53,0],[[496,2]]], [637,[14629.2,4781.47,0],[[496,2]]], [638,[14766.6,4601.04,0],[[496,2],[633,2]]], [639,[14502.3,4940.46,-1.27157e-006],[[497,2],[787,2],[788,2]]], [640,[15050.2,5475.91,-1.27157e-006],[[498,2],[789,2],[790,2]]], [641,[15252.7,5561.13,0],[[499,2],[791,2]]], +[642,[15405.2,5487.46,0],[[499,2],[792,2]]], [643,[16000.8,5446.04,0],[[500,2],[793,2]]], [644,[16378.6,5280.87,1.90735e-006],[[501,2],[794,2]]], [645,[16498.4,5117.8,0],[[501,2],[795,2]]], [646,[16213.9,4547.37,0],[[502,2],[796,2]]], [647,[15587,5984.65,0],[[503,2],[797,2]]], +[648,[15688.3,5826.8,0],[[503,2]]], [649,[10813.3,3664.16,0],[[505,2]]], [650,[10531.1,3742.09,1.27157e-006],[[506,2],[798,2],[799,2]]], [651,[10492.6,3545.01,0],[[506,2],[800,2],[801,2]]], [652,[11579.2,3423.34,0],[[507,2],[802,2]]], [653,[11225.6,3913.67,0],[[509,2],[803,2]]], +[654,[11744.8,2637.46,1.27157e-006],[[510,2],[804,2],[805,2]]], [655,[11565.9,2375.23,-3.8147e-006],[[511,2],[806,2]]], [656,[11967.7,2892.54,1.27157e-006],[[512,2],[807,2],[808,2]]], [657,[10236.7,2536.76,0],[[513,2],[809,2]]], [658,[10095.8,2767.15,0],[[514,2],[810,2]]], [659,[9926.73,2972.41,0],[[514,2],[811,2]]], +[660,[10378.9,3137.99,0],[[515,2],[812,2],[813,2]]], [661,[8042.9,6027.28,0],[[517,2],[814,2],[815,2]]], [662,[7778.27,5905.51,0],[[518,2],[662,2],[816,2]]], [663,[7517.8,5384.19,1.27157e-006],[[519,2],[817,2],[818,2]]], [664,[7507.24,6494.78,-3.8147e-006],[[520,2]]], [665,[7428.8,6596.8,-3.8147e-006],[[520,2],[527,2]]], +[666,[6839.46,5203.2,1.27157e-006],[[521,2],[819,2],[820,2]]], [667,[6683.63,5516.69,0],[[522,2],[821,2],[667,2],[822,2]]], [668,[7376.08,5419.94,0],[[524,2],[818,2]]], [669,[6446.77,5718.31,0],[[525,2],[823,2]]], [670,[6421.93,5840.55,0],[[525,2],[528,2],[672,2],[824,2]]], [671,[7322.13,6690.8,0],[[527,2],[825,2],[826,2]]], +[672,[6370.04,5911.56,-3.17891e-006],[[528,2],[670,2],[827,2],[828,2],[829,2],[830,2]]], [673,[2822.42,6398.13,0],[[530,2],[831,2],[832,2]]], [674,[2993.99,6334.12,0],[[530,2],[833,2]]], [675,[3352.39,6627.95,7.62939e-007],[[531,2],[834,2],[835,2],[836,2],[837,2]]], [676,[3145.3,6703.13,0],[[531,2],[838,2]]], [677,[3238.24,6512.12,0],[[532,2],[839,2]]], +[678,[3210.04,6347.49,0],[[533,2],[840,2],[841,2]]], [679,[3040.61,6949.39,3.8147e-006],[[534,2],[842,2]]], [680,[3111.31,6837.34,0],[[534,2]]], [681,[2684.41,6435.58,0],[[535,2],[831,2]]], [682,[2762.76,7225.7,0],[[536,2],[843,2],[682,2]]], [683,[2431.88,7456.82,0],[[537,2],[844,2]]], +[684,[2573.17,6193.76,0],[[538,2],[845,2],[831,2],[846,2]]], [685,[2233.34,6270.06,0],[[539,2],[847,2]]], [686,[1852.45,6972.56,0],[[542,2],[848,2]]], [687,[1831.63,6585.99,0],[[543,2],[849,2]]], [688,[1881.7,6811.15,0],[[544,2],[850,2],[688,2]]], [689,[1065.33,7559.91,-9.53674e-007],[[545,2],[689,2]]], +[690,[1187.06,7312.5,0],[[546,2],[552,2],[851,2],[696,2],[697,2]]], [691,[920.92,7595.25,0],[[548,2],[549,2],[852,2],[853,2]]], [692,[1065.58,7570.13,0],[[549,2]]], [693,[1097.44,7739.66,-3.17891e-007],[[549,2],[558,2],[559,2],[693,2]]], [694,[1498.93,7168.15,0],[[551,2],[694,2],[854,2],[695,2]]], [695,[1370.81,7136.81,-3.17891e-007],[[552,2],[694,2],[855,2]]], +[696,[1201.53,7181.17,-2.38419e-007],[[552,2],[690,2],[856,2],[851,2],[857,2]]], [697,[1236.11,7341.26,4.76837e-007],[[552,2],[690,2]]], [698,[2332.21,7782.44,0],[[553,2],[858,2],[859,2],[860,2],[698,2]]], [699,[1670.29,7108.13,6.35783e-007],[[554,2],[861,2],[848,2],[862,2]]], [700,[1654.04,8377.77,0],[[555,2],[863,2]]], [701,[1911.28,8251.03,0],[[556,2],[864,2]]], +[702,[1305.12,8233.6,3.17891e-007],[[557,2],[865,2],[866,2]]], [703,[1410.05,8419.18,-3.17891e-007],[[557,2],[867,2],[868,2]]], [704,[1477.92,8282.82,0],[[557,2]]], [705,[1193.79,7750.24,3.17891e-007],[[559,2]]], [706,[3681.3,13904.7,-2.54313e-006],[[561,2],[869,2],[870,2]]], [707,[4371.48,15466.3,0],[[562,2],[871,2],[872,2]]], +[708,[4042.72,15497.4,0],[[563,2],[873,2]]], [709,[3877.8,15440.8,0],[[563,2],[874,2]]], [710,[3485.33,15236.1,0],[[566,2],[875,2],[876,2],[877,2]]], [711,[3128.31,14777,-2.54313e-006],[[568,2],[878,2],[879,2]]], [712,[3212.38,14628.7,0],[[568,2]]], [713,[2886.91,14033.3,-2.54313e-006],[[569,2],[880,2],[881,2]]], +[714,[2727.39,14140.5,0],[[569,2]]], [715,[5651.06,13811.2,0],[[571,2]]], [716,[6010.07,13886,-7.62939e-006],[[572,2],[882,2]]], [717,[6054.13,13676.9,0],[[572,2]]], [718,[4515.15,13234.1,0],[[573,2],[883,2],[884,2],[885,2]]], [719,[4540.58,13452.5,0],[[573,2],[886,2]]], +[720,[4782.24,13956.4,0],[[574,2],[720,2]]], [721,[5155.99,14128.9,2.54313e-006],[[575,2],[721,2],[887,2]]], [722,[5336.63,14078,0],[[575,2],[888,2]]], [723,[5415.13,12631.7,7.62939e-006],[[578,2]]], [724,[5466.26,12667.2,0.000335693],[[578,2]]], [725,[5364.98,12522,-7.62939e-006],[[579,2],[725,2]]], +[726,[5502.99,12473.4,0],[[579,2]]], [727,[5907.03,12488.7,0],[[580,2],[889,2]]], [728,[5764.2,12458.6,0],[[580,2]]], [729,[5883.27,12810.1,-2.54313e-006],[[581,2],[890,2],[891,2]]], [730,[5777.6,12865.2,-2.54313e-006],[[581,2],[730,2],[892,2]]], [731,[6007.12,13147.4,0],[[583,2],[893,2]]], +[732,[5060.42,12538.6,0],[[586,2],[894,2]]], [733,[5075.67,12318,-7.62939e-006],[[586,2],[895,2]]], [734,[5162.12,12396.2,0],[[587,2],[896,2],[734,2],[897,2]]], [735,[5288.25,12418,-1.90735e-006],[[587,2],[588,2],[735,2],[736,2],[898,2]]], [736,[5352.69,12458.7,-1.90735e-006],[[588,2],[735,2],[736,2],[899,2]]], [737,[11678.5,11302.8,2.54313e-006],[[590,2],[742,2],[900,2]]], +[738,[11749.8,11621,0],[[591,2],[901,2],[738,2],[902,2]]], [739,[11885.9,11742.7,0],[[592,2],[903,2],[904,2]]], [740,[11261.8,11317.7,7.62939e-006],[[594,2]]], [741,[11316.4,11109,-1.90735e-006],[[594,2],[905,2],[906,2],[907,2]]], [742,[11508.7,11270.5,0],[[594,2],[737,2]]], [743,[11287.1,11422.5,0],[[595,2]]], +[744,[11477.2,12404.7,1.90735e-006],[[596,2],[908,2],[909,2],[744,2]]], [745,[11818.9,12044.1,0],[[597,2],[910,2],[911,2]]], [746,[11834.6,12390.1,-7.62939e-006],[[598,2],[912,2]]], [747,[11748.7,12253.6,0],[[598,2]]], [748,[11504.4,12635.2,0],[[599,2],[913,2]]], [749,[10910.4,12583.8,2.54313e-006],[[601,2],[749,2],[914,2]]], +[750,[10980.9,12814.6,0],[[601,2],[915,2],[914,2],[916,2],[917,2],[750,2]]], [751,[11343.1,12586.6,0],[[603,2],[751,2],[918,2]]], [752,[10551,11186.3,0],[[605,2],[611,2]]], [753,[10624.5,10999.6,2.54313e-006],[[605,2],[919,2],[920,2]]], [754,[10289,12232,0],[[606,2],[921,2],[754,2]]], [755,[10436.1,12197,0],[[606,2]]], +[756,[10230.2,11756.5,0],[[607,2],[922,2],[923,2]]], [757,[10228.6,11534.3,5.08626e-006],[[610,2],[924,2],[923,2]]], [758,[10255.8,11346.7,2.54313e-006],[[610,2],[925,2],[926,2]]], [759,[16285.3,6970.19,-7.62939e-006],[[612,2],[927,2]]], [760,[16440,7271.02,0],[[613,2],[928,2]]], [761,[16430.3,6725.05,2.54313e-006],[[614,2],[929,2],[930,2]]], +[762,[16524.1,6589.16,0],[[615,2],[931,2],[929,2]]], [763,[16883.6,6758.64,-7.62939e-006],[[616,2],[932,2]]], [764,[16563.7,7666.16,0],[[618,2],[764,2],[933,2]]], [765,[16390.9,7660.23,0],[[618,2],[934,2],[935,2]]], [766,[16755,7469.17,0],[[619,2],[936,2]]], [767,[16630,7353.36,0],[[619,2],[767,2]]], +[768,[16668.2,8490.2,-1.27157e-006],[[620,2],[937,2],[938,2]]], [769,[16565.3,8295.68,0],[[620,2],[939,2],[940,2],[941,2]]], [770,[17061.3,8232.71,0],[[621,2],[942,2],[943,2]]], [771,[16374.4,8080.56,0],[[622,2],[944,2]]], [772,[17558.1,6371.5,0],[[623,2],[945,2]]], [773,[17633.7,6568.99,0],[[624,2]]], +[774,[17126.1,6502.38,0],[[625,2],[946,2]]], [775,[17171.2,6668.32,0],[[625,2],[947,2]]], [776,[18010.1,6996.45,0],[[626,2],[948,2]]], [777,[17889.9,7897.06,0],[[627,2],[949,2]]], [778,[18005.8,7800.14,4.76837e-007],[[627,2],[629,2],[950,2],[951,2]]], [779,[18117.8,7364.38,0],[[628,2],[952,2]]], +[780,[17499.6,8005.13,-1.27157e-006],[[630,2],[953,2],[780,2],[954,2]]], [781,[15626.3,4344.38,-6.35783e-007],[[631,2],[955,2],[956,2]]], [782,[16047.8,4343.46,9.53674e-007],[[632,2],[957,2]]], [783,[15912.4,4154.82,0],[[632,2],[958,2]]], [784,[14657.7,4368.63,0],[[633,2],[959,2]]], [785,[14888.9,4158.31,0],[[634,2],[960,2]]], +[786,[15337.8,4282.75,0],[[635,2],[961,2]]], [787,[14485.8,5047.77,-9.53674e-007],[[639,2],[962,2],[963,2],[964,2]]], [788,[14473.4,4921.84,-1.27157e-006],[[639,2],[965,2],[966,2]]], [789,[15053.6,5602.67,0],[[640,2],[967,2]]], [790,[14895.3,5448.73,0],[[640,2],[968,2]]], [791,[15438.5,5598.15,3.8147e-006],[[641,2],[969,2]]], +[792,[15520.2,5513.52,-7.62939e-006],[[642,2]]], [793,[15991,5458.24,0],[[643,2],[793,2],[970,2]]], [794,[16465.5,5414.28,1.90735e-006],[[644,2],[971,2]]], [795,[16617.2,5102.44,-6.35783e-007],[[645,2],[972,2],[973,2]]], [796,[16265.5,4495.54,0],[[646,2],[974,2],[975,2],[957,2]]], [797,[15573.3,6066.58,0],[[647,2],[976,2],[977,2]]], +[798,[10397.5,3743.23,0],[[650,2]]], [799,[10428,3875.56,0],[[650,2],[978,2]]], [800,[10400.6,3388.58,0],[[651,2],[813,2]]], [801,[10352.2,3546.52,-3.8147e-006],[[651,2]]], [802,[11574.7,3448.43,0],[[652,2],[979,2],[980,2],[981,2]]], [803,[11258.2,4065.09,0],[[653,2],[982,2],[983,2],[984,2]]], +[804,[11799.3,2509.32,0],[[654,2]]], [805,[11904.5,2647.35,0],[[654,2],[985,2]]], [806,[11558.2,2282.77,-1.27157e-006],[[655,2],[986,2],[987,2]]], [807,[11972.9,3051.39,0],[[656,2],[988,2]]], [808,[12033.8,2891.54,0],[[656,2],[989,2],[990,2]]], [809,[10311.5,2474,0],[[657,2],[991,2]]], +[810,[10077.3,2631.08,0],[[658,2],[992,2]]], [811,[9841.55,3017.8,0],[[659,2],[993,2],[994,2]]], [812,[10536.5,3133.16,-3.8147e-006],[[660,2],[995,2],[996,2]]], [813,[10375.3,3303.62,0],[[660,2],[800,2]]], [814,[8119.89,6032.9,-2.54313e-006],[[661,2],[997,2],[998,2]]], [815,[8017.6,5883.89,0],[[661,2],[999,2]]], +[816,[7810.63,5861.08,-1.27157e-006],[[662,2],[816,2],[1000,2]]], [817,[7587.07,5365.44,0],[[663,2],[1001,2],[817,2],[1002,2]]], [818,[7448.74,5386.32,-1.27157e-006],[[663,2],[668,2],[1003,2]]], [819,[6755.27,4993.35,0],[[666,2],[1004,2],[819,2],[1005,2]]], [820,[6968.62,5174.56,0],[[666,2]]], [821,[6542.84,5560.75,0],[[667,2],[1006,2]]], +[822,[6714.2,5592.6,0],[[667,2]]], [823,[6408.73,5696.7,-2.54313e-006],[[669,2],[1006,2],[1007,2],[830,2]]], [824,[6450.65,5876.84,-1.27157e-006],[[670,2],[1008,2],[824,2]]], [825,[7336.49,6847.8,0],[[671,2],[1009,2]]], [826,[7278.48,6711.47,2.54313e-006],[[671,2],[1010,2],[1011,2]]], [827,[6309.65,5889.53,0],[[672,2],[1012,2],[1013,2]]], +[828,[6424.03,5965.5,0],[[672,2]]], [829,[6364.75,6135.61,0],[[672,2],[829,2],[1014,2],[1015,2]]], [830,[6356.22,5714.31,3.8147e-006],[[672,2],[823,2],[1007,2]]], [831,[2767.4,6349.88,-4.76837e-007],[[673,2],[681,2],[684,2],[845,2],[1016,2]]], [832,[2926.83,6314.09,0],[[673,2],[1017,2]]], [833,[3052.31,6286.13,-6.35783e-007],[[674,2],[1018,2],[841,2],[1019,2],[833,2]]], +[834,[3383.87,6780.59,3.8147e-006],[[675,2]]], [835,[3528.93,6712.35,3.8147e-006],[[675,2],[1020,2]]], [836,[3541.32,6663.61,-3.8147e-006],[[675,2],[1021,2]]], [837,[3418.93,6519.78,3.8147e-006],[[675,2],[1022,2]]], [838,[3202.52,6742.46,-3.8147e-006],[[676,2],[838,2]]], [839,[3307.63,6409.29,0],[[677,2],[1023,2]]], +[840,[3354.69,6232.44,0],[[678,2],[1024,2]]], [841,[3148.53,6224.52,1.90735e-006],[[678,2],[833,2],[1018,2]]], [842,[3029.29,7050.62,0],[[679,2],[1025,2]]], [843,[2814.81,7320.87,0],[[682,2],[1026,2],[1027,2]]], [844,[2532.39,7421.44,0],[[683,2],[1028,2]]], [845,[2687.29,6290.72,0],[[684,2],[831,2],[1029,2]]], +[846,[2707.62,6022.38,-1.90735e-006],[[684,2],[1030,2]]], [847,[2092.67,6288.21,0],[[685,2],[1031,2]]], [848,[1763.83,7013.87,0],[[686,2],[699,2],[861,2]]], [849,[1794.77,6561.67,3.17891e-007],[[687,2],[1032,2],[1033,2],[1034,2]]], [850,[1854.06,6817.67,6.35783e-007],[[688,2],[850,2],[1035,2]]], [851,[1190.71,7261.29,0],[[690,2],[696,2],[851,2]]], +[852,[928.926,7671.62,0],[[691,2],[1036,2]]], [853,[851.695,7590.24,0],[[691,2],[1037,2],[1038,2],[1039,2]]], [854,[1544.41,7066.8,6.35783e-007],[[694,2],[1040,2],[862,2]]], [855,[1360.52,7098.93,0],[[695,2],[1041,2],[1042,2]]], [856,[1156.81,7025.95,0],[[696,2],[1043,2]]], [857,[1147.41,7096.64,-7.94729e-008],[[696,2],[1044,2],[1045,2],[1046,2]]], +[858,[2503.26,7841.16,0],[[698,2],[1047,2],[1048,2],[1049,2]]], [859,[2286.04,7928.03,-9.53674e-007],[[698,2],[1050,2]]], [860,[2408.75,7796.58,3.8147e-007],[[698,2],[1051,2],[1052,2]]], [861,[1727.26,7048.05,-9.53674e-007],[[699,2],[848,2]]], [862,[1664.69,7094.66,-6.35783e-007],[[699,2],[854,2],[862,2]]], [863,[1686.46,8518.95,0],[[700,2],[1053,2]]], +[864,[2064.11,8295.35,0],[[701,2],[1054,2]]], [865,[1251.56,8104.85,0],[[702,2],[1055,2]]], [866,[1298.01,8259.64,0],[[702,2]]], [867,[1353.79,8442.03,-9.53674e-007],[[703,2]]], [868,[1443.23,8537.75,0],[[868,2],[1056,2]]], [869,[3826.68,13941.5,0],[[706,2],[1057,2]]], +[870,[3579.58,13776,5.08626e-006],[[706,2],[1058,2],[1059,2]]], [871,[4332.79,15555.4,-2.54313e-006],[[707,2],[1060,2],[1061,2]]], [872,[4451.25,15374.7,0],[[707,2],[1062,2],[872,2]]], [873,[4042.76,15551.4,0],[[708,2]]], [874,[3852.05,15571.1,0],[[709,2],[1063,2]]], [875,[3485.44,15388.2,7.62939e-006],[[710,2],[1064,2]]], +[876,[3331.5,15177.9,0],[[710,2],[1065,2],[1066,2]]], [877,[3487.07,15186,0],[[710,2]]], [878,[3142.68,14825.5,-5.08626e-006],[[711,2],[1067,2],[1068,2]]], [879,[3263.72,14798.8,-7.62939e-006],[[711,2],[1069,2]]], [880,[2899.79,13996.6,0],[[713,2],[1070,2],[1071,2]]], [881,[2833.85,14027.9,0],[[713,2]]], +[882,[6028.98,13911.2,-2.54313e-006],[[716,2],[1072,2],[1073,2]]], [883,[4577.53,13115.4,0],[[718,2],[883,2]]], [884,[4334.88,13135.4,0],[[718,2],[1074,2],[1075,2]]], [885,[4431.67,13342.6,7.62939e-006],[[718,2],[1076,2]]], [886,[4530.69,13598.1,0],[[719,2],[1077,2]]], [887,[5083.84,14295.9,0],[[721,2],[1078,2]]], +[888,[5477.9,14103.5,-7.62939e-006],[[722,2],[1079,2]]], [889,[6000.23,12406.6,0],[[727,2],[1080,2]]], [890,[5922.58,12669.7,7.62939e-006],[[729,2],[1081,2]]], [891,[5969.38,12836.6,0],[[729,2],[1082,2],[1083,2]]], [892,[5792.22,12892.2,0],[[730,2]]], [893,[6138.48,13274.7,0],[[731,2],[1084,2]]], +[894,[4993.79,12572.5,0],[[732,2],[1085,2]]], [895,[5063.26,12254.7,0],[[733,2],[1086,2],[1087,2]]], [896,[5110.11,12383.7,0],[[734,2]]], [897,[5164.71,12360.8,0],[[734,2],[1088,2],[1089,2],[897,2]]], [898,[5336.82,12340.1,2.54313e-006],[[735,2],[1090,2],[1089,2],[1091,2]]], [899,[5380.26,12397.8,0],[[736,2],[1092,2],[1091,2]]], +[900,[11733.4,11262.6,2.54313e-006],[[737,2],[1093,2],[1094,2],[900,2]]], [901,[11687.5,11599.3,7.62939e-006],[[738,2]]], [902,[11775.8,11562.5,0],[[738,2]]], [903,[11894.1,11761.5,2.54313e-006],[[739,2],[910,2],[1095,2]]], [904,[12055,11664.3,-7.62939e-006],[[739,2],[1096,2]]], [905,[11433.5,11118,-7.62939e-006],[[741,2]]], +[906,[11344,11009.7,2.54313e-006],[[741,2],[1097,2],[1098,2]]], [907,[11220.5,11060.4,0],[[741,2],[1099,2]]], [908,[11509.5,12492.1,0],[[744,2]]], [909,[11477.3,12386.8,2.54313e-006],[[744,2]]], [910,[11845.3,11868.2,0],[[745,2],[903,2]]], [911,[11971.7,12147.3,0],[[745,2],[1100,2]]], +[912,[11851.4,12408.9,-2.54313e-006],[[746,2],[1101,2],[1102,2]]], [913,[11536,12737.1,7.62939e-006],[[748,2],[1103,2]]], [914,[10839.7,12634.2,0],[[749,2],[750,2],[1104,2],[1105,2],[1106,2],[1107,2]]], [915,[10904.2,12752.2,7.62939e-006],[[750,2],[915,2]]], [916,[10961.1,12939.6,-1.90735e-006],[[750,2],[916,2],[1108,2],[1109,2]]], [917,[11146.6,12902.6,-2.54313e-006],[[750,2],[1110,2],[1111,2]]], +[918,[11466,12721.2,0],[[751,2],[1112,2],[918,2]]], [919,[10679.5,10865.2,7.62939e-006],[[753,2],[1113,2]]], [920,[10502.7,10898.4,7.62939e-006],[[753,2],[1114,2]]], [921,[10244.3,12266.4,2.54313e-006],[[754,2],[1115,2],[1116,2]]], [922,[10293.7,11647.5,0],[[756,2]]], [923,[10162.5,11690.9,0],[[756,2],[757,2],[1117,2]]], +[924,[10205.1,11525.3,0],[[757,2]]], [925,[10091.3,11290.2,0],[[758,2],[1118,2]]], [926,[10199.7,11230.2,7.62939e-006],[[758,2],[1119,2]]], [927,[16155.2,7024.57,0],[[759,2],[1120,2]]], [928,[16375.7,7323.68,0],[[760,2],[1121,2]]], [929,[16420.5,6548.24,-7.62939e-006],[[761,2],[762,2],[931,2]]], +[930,[16343.1,6701.67,0],[[761,2],[1122,2],[930,2],[1123,2]]], [931,[16426.1,6525.15,0],[[762,2],[929,2],[1124,2],[931,2]]], [932,[16929.4,6684.46,0],[[763,2],[1125,2],[932,2]]], [933,[16561.6,7683.08,7.62939e-006],[[764,2]]], [934,[16320.3,7697.12,5.08626e-006],[[765,2],[1126,2],[1127,2]]], [935,[16360.2,7626.18,0],[[765,2]]], +[936,[16774.8,7395.78,0],[[766,2]]], [937,[16589.2,8632.98,0],[[768,2],[1128,2]]], [938,[16703.6,8500.84,0],[[768,2]]], [939,[16563.5,8146.6,0],[[769,2]]], [940,[16389.5,8219.5,-7.62939e-006],[[769,2],[1129,2],[944,2]]], [941,[16525,8326.98,7.62939e-006],[[769,2]]], +[942,[17149.8,8228.79,1.27157e-006],[[770,2],[1130,2],[1131,2]]], [943,[17101.9,8330.02,0],[[770,2]]], [944,[16331.5,8100.65,2.54313e-006],[[771,2],[940,2],[1129,2],[1132,2]]], [945,[17556.3,6223.51,0],[[772,2],[1133,2],[945,2],[1134,2],[1135,2]]], [946,[16988,6405.5,0],[[774,2],[1136,2]]], [947,[17121.6,6692.14,0],[[775,2],[1137,2]]], +[948,[17998.6,6907.4,6.35783e-007],[[776,2],[1138,2],[1139,2]]], [949,[17877,7913.57,0],[[777,2],[1140,2],[1141,2]]], [950,[18043.6,7833.5,0],[[778,2],[1142,2],[1143,2],[951,2]]], [951,[18014.1,7890.93,0],[[778,2],[950,2],[1143,2],[1144,2]]], [952,[18157,7271.4,0],[[779,2],[1145,2],[1146,2]]], [953,[17497.3,7981.97,0],[[780,2]]], +[954,[17527.4,8190.6,0],[[780,2],[1147,2]]], [955,[15639.5,4296.09,0],[[781,2]]], [956,[15448.2,4293.63,6.35783e-007],[[781,2],[1148,2],[961,2]]], [957,[16172.8,4401.9,0],[[782,2],[796,2],[975,2]]], [958,[15873.2,3994.15,0],[[783,2],[1149,2]]], [959,[14518.1,4334.97,0],[[784,2],[1150,2]]], +[960,[14875.9,4027.17,0],[[785,2],[1151,2]]], [961,[15391,4240.09,0],[[786,2],[956,2],[1152,2]]], [962,[14466.8,5147.66,-2.86102e-006],[[787,2],[1153,2],[963,2],[1154,2]]], [963,[14484.4,5099.07,-5.59489e-005],[[787,2],[962,2],[963,2]]], [964,[14523.9,5061.51,3.8147e-006],[[787,2],[964,2],[1155,2]]], [965,[14339.3,4931.76,-9.53674e-007],[[788,2],[1156,2],[1157,2],[1158,2]]], +[966,[14487,4808.22,0],[[788,2]]], [967,[15043.5,5615.94,0],[[789,2],[1159,2],[1160,2]]], [968,[14816.6,5448.46,0],[[790,2]]], [969,[15471.7,5604.82,0],[[791,2]]], [970,[15991,5515.41,0],[[793,2],[970,2],[1161,2]]], [971,[16484.7,5453.14,6.35783e-007],[[794,2],[1162,2],[1163,2]]], +[972,[16626.1,5130.08,0],[[795,2],[972,2],[1164,2]]], [973,[16801.4,5039.47,-9.53674e-007],[[795,2],[1165,2]]], [974,[16390.9,4603.83,0],[[796,2],[1166,2]]], [975,[16212.2,4438.67,0],[[796,2],[957,2],[1167,2]]], [976,[15547.7,6145.31,0],[[797,2],[1168,2],[1169,2]]], [977,[15599.8,6076.31,1.27157e-006],[[797,2],[1170,2],[1171,2]]], +[978,[10347.6,3974.07,0],[[799,2],[1172,2]]], [979,[11700.5,3414.39,3.8147e-006],[[802,2],[1173,2]]], [980,[11510.6,3447.03,0],[[802,2]]], [981,[11571.5,3622.23,-3.8147e-006],[[802,2],[1174,2]]], [982,[11448.6,3976.12,0],[[803,2],[1175,2]]], [983,[11137,4088.61,0],[[803,2],[1176,2]]], +[984,[11269.5,4129.61,0],[[803,2]]], [985,[12075.9,2652.01,0],[[805,2],[1177,2]]], [986,[11640.5,2291.91,0],[[806,2]]], [987,[11539,2094.9,3.8147e-006],[[806,2],[1178,2]]], [988,[11964.9,3184.98,0],[[807,2],[1179,2]]], [989,[12031.6,2863.43,0],[[808,2]]], +[990,[12238,2896.58,0],[[808,2],[1180,2]]], [991,[10442.6,2406.88,0],[[809,2],[1181,2]]], [992,[10069.9,2540.15,0],[[810,2],[1182,2],[1183,2]]], [993,[9780.64,2896.74,0],[[811,2],[1184,2]]], [994,[9762.98,3077.04,4.76837e-007],[[811,2],[1185,2],[1186,2],[1187,2]]], [995,[10609.3,3078.18,-3.8147e-006],[[812,2],[996,2]]], +[996,[10599,3079.74,3.8147e-006],[[995,2],[812,2]]], [997,[8271.26,6048.45,0],[[814,2],[1188,2],[1189,2]]], [998,[8107.16,5906.61,0],[[814,2],[1190,2]]], [999,[7961.83,5732.69,0],[[815,2],[1191,2]]], [1000,[7850.22,5888.4,0],[[816,2]]], [1001,[7730.61,5294.99,0],[[817,2],[1001,2],[1192,2],[1193,2]]], +[1002,[7617.05,5543.35,-3.8147e-006],[[817,2],[1194,2]]], [1003,[7396,5294.28,3.8147e-006],[[818,2]]], [1004,[6709.22,4825.27,0],[[819,2],[1195,2]]], [1005,[6851.36,4970.92,3.8147e-006],[[819,2]]], [1006,[6436.29,5627.84,0],[[821,2],[823,2]]], [1007,[6362.19,5698.55,-1.90735e-006],[[830,2],[1196,2]]], +[1008,[6473.92,5874.14,0],[[824,2]]], [1009,[7350.08,6925.28,0],[[825,2],[1197,2]]], [1010,[7164.31,6840.16,-7.62939e-006],[[826,2],[1198,2]]], [1011,[7219.05,6558.26,0],[[826,2],[1199,2]]], [1012,[6194.26,5882.48,0],[[827,2],[1200,2],[1201,2]]], [1013,[6323.8,5787.73,3.8147e-006],[[827,2]]], +[1014,[6236.44,6179.39,-2.54313e-006],[[829,2],[1014,2],[1202,2]]], [1015,[6487.94,6290.91,7.62939e-006],[[829,2],[1203,2]]], [1016,[2902.43,6205.35,0],[[831,2],[1204,2],[1018,2]]], [1017,[2955.89,6301.78,0],[[832,2]]], [1018,[3078.49,6195.55,0],[[833,2],[841,2],[1016,2],[1205,2],[1206,2]]], [1019,[3043.81,6278.66,0],[[833,2],[1019,2]]], +[1020,[3556.91,6729.45,0],[[835,2],[1020,2],[1207,2]]], [1021,[3713.53,6702.62,0],[[836,2],[1208,2]]], [1022,[3533.85,6592.28,0],[[837,2],[1209,2]]], [1023,[3452.5,6321.83,-3.8147e-006],[[839,2],[1210,2]]], [1024,[3411.64,6214.06,4.76837e-007],[[840,2],[1024,2],[1211,2]]], [1025,[3050.19,7135.87,3.8147e-006],[[842,2],[1212,2]]], +[1026,[2808.96,7391.75,-3.8147e-006],[[843,2]]], [1027,[2985.51,7343.54,0],[[843,2],[1213,2]]], [1028,[2543.87,7431.46,0],[[844,2],[1214,2],[1215,2]]], [1029,[2729.47,6243.65,0],[[845,2]]], [1030,[2724.1,5993.82,-6.35783e-007],[[846,2],[1216,2],[1217,2]]], [1031,[2073.34,6284.99,0],[[847,2],[1218,2],[1031,2],[1219,2]]], +[1032,[1734.02,6458.78,0],[[849,2],[1034,2],[1032,2],[1218,2]]], [1033,[1721.4,6621.73,0],[[849,2],[1033,2],[1220,2]]], [1034,[1737.82,6479.63,0],[[1032,2],[1034,2],[849,2]]], [1035,[1823.07,6844.66,0],[[850,2]]], [1036,[953.632,7705.63,-1.19209e-007],[[852,2],[1221,2],[1036,2],[1222,2]]], [1037,[778.128,7596.15,0],[[853,2],[1223,2],[1224,2]]], +[1038,[881.949,7413.03,2.38419e-007],[[853,2],[1225,2]]], [1039,[872.723,7679.42,0],[[853,2],[1221,2]]], [1040,[1588.68,6941.25,0],[[854,2],[1226,2]]], [1041,[1299,7043.53,6.35783e-007],[[855,2],[1227,2],[1228,2]]], [1042,[1389.99,7021.92,0],[[855,2],[1229,2],[1042,2]]], [1043,[1212.39,6924.09,0],[[856,2],[1227,2],[1230,2]]], +[1044,[1076.94,7172,0],[[857,2],[1231,2],[1046,2],[1044,2]]], [1045,[1073.98,6968.58,0],[[857,2],[1232,2]]], [1046,[1099.13,7155.92,0],[[1044,2],[1449,2],[1046,2],[857,2]]], [1047,[2532.55,7712.89,0],[[858,2],[1233,2]]], [1048,[2629.33,7739.84,0],[[858,2],[1234,2]]], [1049,[2670.68,7943.56,0],[[858,2],[1235,2]]], +[1050,[2252.52,8016.73,-4.76837e-007],[[859,2],[1236,2]]], [1051,[2447.05,7726.16,3.8147e-006],[[860,2],[1237,2]]], [1052,[2403.29,7687.71,-1.90735e-006],[[860,2],[1238,2]]], [1053,[1713.78,8671.82,-9.53674e-007],[[863,2],[1239,2]]], [1054,[2170.96,8348.82,0],[[864,2],[1240,2]]], [1055,[1206.34,7957.31,4.76837e-007],[[865,2],[1222,2]]], +[1056,[1444.68,8604.08,0],[[868,2],[1460,2],[1461,2]]], [1057,[3964.93,13980.5,7.62939e-006],[[869,2],[1241,2]]], [1058,[3637.02,13697.5,0],[[870,2]]], [1059,[3469.25,13664.5,0],[[870,2],[1242,2],[1243,2]]], [1060,[4375.75,15726.9,7.62939e-006],[[871,2],[1244,2]]], [1061,[4229,15647.5,7.62939e-006],[[871,2]]], +[1062,[4517.76,15241.3,0],[[872,2],[1245,2],[1246,2]]], [1063,[3849.13,15636.3,0],[[874,2]]], [1064,[3466.81,15490.7,0],[[875,2],[1247,2]]], [1065,[3239.16,15145.6,-5.08626e-006],[[876,2],[1248,2],[1249,2]]], [1066,[3340.66,15262.4,0],[[876,2]]], [1067,[3056.55,14858.6,5.08626e-006],[[878,2],[1067,2],[1250,2]]], +[1068,[3338.22,14854.2,-7.62939e-006],[[878,2],[1068,2]]], [1069,[3290.34,14797.2,0],[[879,2]]], [1070,[3054.28,14038.4,0],[[880,2],[1251,2]]], [1071,[2889.59,13926.8,-2.54313e-006],[[880,2],[1252,2],[1253,2]]], [1072,[6131.09,13810.7,0],[[882,2],[1254,2]]], [1073,[6110.51,14035.6,2.54313e-006],[[882,2],[1255,2],[1256,2]]], +[1074,[4339.45,12980.4,-7.62939e-006],[[884,2],[1257,2]]], [1075,[4303.2,13204.8,0],[[884,2],[1258,2],[1259,2]]], [1076,[4413.41,13388.5,0],[[885,2]]], [1077,[4491.25,13712,0],[[886,2],[1260,2]]], [1078,[5005.89,14406.9,-1.90735e-006],[[887,2],[1261,2],[1262,2],[1263,2]]], [1079,[5508.05,14108.9,-1.90735e-006],[[888,2],[1264,2],[1079,2],[1265,2],[1266,2]]], +[1080,[6114.83,12380.6,0],[[889,2],[1267,2]]], [1081,[5946.96,12602.5,0],[[890,2]]], [1082,[6118.83,12877,0],[[891,2],[1268,2]]], [1083,[5968.64,12871.3,0],[[891,2]]], [1084,[6233.68,13378.6,0],[[893,2],[1269,2]]], [1085,[4794.69,12601.8,0],[[894,2],[1270,2]]], +[1086,[5079.75,12226.6,-2.54313e-006],[[895,2],[1271,2],[1272,2]]], [1087,[4994.15,12233.8,3.8147e-006],[[895,2],[1273,2],[1274,2],[1275,2]]], [1088,[5228.72,12377.7,7.62939e-006],[[897,2]]], [1089,[5158.59,12297.2,-1.90735e-006],[[897,2],[898,2],[1276,2],[1089,2]]], [1090,[5289.21,12328.6,0],[[898,2],[1277,2]]], [1091,[5386.57,12294.5,0],[[898,2],[899,2],[1092,2],[1278,2]]], +[1092,[5411.52,12318.3,7.62939e-006],[[899,2],[1091,2],[1279,2],[1092,2]]], [1093,[11841.2,11205.6,-7.62939e-006],[[900,2],[1280,2]]], [1094,[11729.1,11289.5,7.62939e-006],[[900,2],[1094,2]]], [1095,[12060.8,11852.5,0],[[903,2],[1281,2]]], [1096,[12192.8,11596.6,0],[[904,2],[1282,2]]], [1097,[11348.3,10827.8,0],[[906,2],[1283,2]]], +[1098,[11397.3,11046.3,0],[[906,2]]], [1099,[11223.9,10955.1,0],[[907,2],[1284,2]]], [1100,[12098.7,12210.4,-2.54313e-006],[[911,2],[1100,2],[1285,2]]], [1101,[12004.6,12504.8,0],[[912,2],[1286,2],[1287,2],[1288,2]]], [1102,[11800.2,12521.9,0],[[912,2],[1289,2]]], [1103,[11537.7,12874,-2.54313e-006],[[913,2],[1290,2],[1103,2],[1291,2]]], +[1104,[10863.7,12460.4,0],[[914,2],[1104,2],[1292,2],[1293,2],[1294,2]]], [1105,[10883.8,12728.2,7.62939e-006],[[914,2]]], [1106,[10768.2,12720.6,0],[[914,2],[1295,2],[1296,2],[1107,2]]], [1107,[10744,12611.6,0],[[914,2],[1106,2],[1107,2],[1296,2]]], [1108,[10978.2,13111.1,0],[[916,2],[1297,2]]], [1109,[10847.6,13065.1,0],[[916,2],[1298,2]]], +[1110,[11250.4,12929.7,0],[[917,2],[1299,2],[1291,2],[1300,2]]], [1111,[11129.3,12941.9,0],[[917,2]]], [1112,[11492.3,12767.9,0],[[918,2]]], [1113,[10774.3,10777.6,-1.52588e-006],[[919,2],[1301,2],[1302,2],[1303,2],[1304,2]]], [1114,[10401.7,10790.3,2.54313e-006],[[920,2],[1305,2],[1306,2]]], [1115,[10105.2,12158.9,0],[[921,2],[1307,2]]], +[1116,[10157.8,12350.7,1.90735e-006],[[921,2],[1308,2],[1309,2],[1310,2]]], [1117,[10051.1,11771,-2.54313e-006],[[923,2],[1311,2],[1312,2]]], [1118,[9962.25,11244.2,0],[[925,2],[1313,2]]], [1119,[10118.6,11108.3,0],[[926,2],[1314,2],[1315,2]]], [1120,[16027,6992.36,0],[[927,2],[1316,2],[1317,2]]], [1121,[16317.6,7448.48,-2.54313e-006],[[928,2],[1318,2],[1319,2]]], +[1122,[16265.7,6729.34,0],[[930,2],[1320,2]]], [1123,[16261.3,6608.46,7.62939e-006],[[930,2],[1321,2]]], [1124,[16411.7,6499.12,0],[[931,2],[1322,2]]], [1125,[16801.2,6670.92,7.62939e-006],[[932,2],[1323,2]]], [1126,[16154.4,7800.92,0],[[934,2],[1324,2]]], [1127,[16316.5,7654.45,-7.62939e-006],[[934,2]]], +[1128,[16592.3,8656.51,7.62939e-007],[[937,2],[1325,2],[1326,2],[1327,2],[1328,2]]], [1129,[16350.8,8152.89,0],[[940,2],[944,2],[1329,2]]], [1130,[17338.9,8256.1,0],[[942,2],[1147,2],[1330,2]]], [1131,[17125.4,8116.17,-1.27157e-006],[[942,2],[1131,2]]], [1132,[16261,8040.63,0],[[944,2],[1331,2]]], [1133,[17576.5,6257.02,3.8147e-006],[[945,2],[1332,2]]], +[1134,[17418.2,6217.94,0],[[945,2],[1333,2]]], [1135,[17528.4,5987.5,0],[[945,2],[1334,2]]], [1136,[16862.6,6297.07,-3.8147e-006],[[946,2],[1335,2]]], [1137,[17088.6,6750.05,0],[[947,2],[1336,2]]], [1138,[18158.6,6885.55,-1.90735e-006],[[948,2],[1337,2]]], [1139,[17971.6,6718.99,0],[[948,2],[1338,2]]], +[1140,[17876.3,8021.74,0],[[949,2],[1339,2],[1340,2],[1341,2]]], [1141,[17814.6,7891.04,0],[[949,2]]], [1142,[18051.7,7738.72,0],[[950,2],[1342,2]]], [1143,[18070.8,7892,-3.57628e-007],[[950,2],[951,2],[1343,2],[1344,2],[1144,2]]], [1144,[18013.3,7952.49,-1.58946e-007],[[951,2],[1143,2],[1345,2],[1346,2]]], [1145,[18098.2,7193.67,-1.90735e-006],[[952,2]]], +[1146,[18233.5,7093.88,0],[[952,2],[1347,2]]], [1147,[17515.8,8222.93,1.27157e-006],[[954,2],[1130,2],[1348,2],[1330,2]]], [1148,[15437.5,4329.8,-1.90735e-006],[[956,2]]], [1149,[15862.6,3830.89,0],[[958,2],[1349,2]]], [1150,[14501.1,4337.42,0],[[959,2],[1350,2],[1351,2]]], [1151,[14862,3872.32,6.35783e-007],[[960,2],[1352,2],[1353,2]]], +[1152,[15369.1,4078.08,0],[[961,2],[1354,2]]], [1153,[14412.6,5316.98,9.53674e-007],[[962,2],[1355,2],[1356,2],[1357,2]]], [1154,[14508,5173.33,0],[[962,2],[1358,2],[1359,2]]], [1155,[14571.4,5101.26,9.63211e-005],[[964,2],[1360,2],[1155,2],[1361,2],[1362,2]]], [1156,[14372.6,4808.14,0],[[965,2]]], [1157,[14214.6,4954.04,0],[[965,2],[1363,2],[1364,2]]], +[1158,[14300.5,4988.64,0],[[965,2]]], [1159,[15094.9,5791,0],[[967,2],[1365,2],[1366,2]]], [1160,[14875.2,5600.99,0],[[967,2],[1367,2]]], [1161,[16005.9,5683.16,0],[[970,2],[1368,2],[1161,2]]], [1162,[16416.9,5499.03,0],[[971,2]]], [1163,[16588.6,5609.89,0],[[971,2],[1369,2]]], +[1164,[16785.6,5149.92,0],[[972,2],[1370,2]]], [1165,[16859.3,5018.17,0],[[973,2],[1370,2],[1371,2],[1372,2]]], [1166,[16449.4,4655.41,0],[[974,2],[1373,2],[1374,2]]], [1167,[16229.4,4396.39,9.53674e-007],[[975,2]]], [1168,[15525.5,6283.31,0],[[976,2],[1375,2],[1376,2]]], [1169,[15396.5,6128.52,0],[[976,2],[1377,2],[1378,2]]], +[1170,[15601.8,6218.01,0],[[977,2],[1379,2]]], [1171,[15746.2,6053.71,0],[[977,2],[1380,2],[1381,2]]], [1172,[10310.3,4008.21,-2.54313e-006],[[978,2],[1382,2],[1383,2]]], [1173,[11826.5,3403.9,-3.8147e-006],[[979,2],[1384,2]]], [1174,[11562.3,3777.53,-1.27157e-006],[[981,2],[1175,2],[1385,2]]], [1175,[11533.3,3955.45,1.27157e-006],[[982,2],[1174,2],[1386,2]]], +[1176,[11081.3,4093.57,-1.27157e-006],[[983,2],[1387,2],[1388,2]]], [1177,[12241.6,2635.44,9.53674e-007],[[985,2],[1180,2],[1389,2],[1390,2]]], [1178,[11556.8,1955.99,0],[[987,2],[1391,2]]], [1179,[11934.2,3187.21,-3.8147e-006],[[988,2]]], [1180,[12263.8,2896.74,-9.53674e-007],[[990,2],[1177,2],[1392,2],[1393,2]]], [1181,[10520.3,2346.51,-1.90735e-006],[[991,2]]], +[1182,[10011.5,2400.5,0],[[992,2],[1394,2]]], [1183,[9962.3,2517.46,-1.90735e-006],[[992,2],[1395,2]]], [1184,[9726.93,2717.8,0],[[993,2],[1396,2]]], [1185,[9844.42,3226.24,1.90735e-006],[[994,2],[1397,2]]], [1186,[9609.03,3167.2,0],[[994,2],[1398,2]]], [1187,[9685.3,2903.59,1.90735e-006],[[994,2],[1399,2]]], +[1188,[8448.4,6058.86,-2.54313e-006],[[997,2],[1400,2],[1401,2]]], [1189,[8283.38,6129.33,0],[[997,2],[1402,2]]], [1190,[8155.67,5806.8,0],[[998,2],[1403,2]]], [1191,[8009.67,5682.61,0],[[999,2]]], [1192,[7637.79,5182.74,0],[[1001,2],[1404,2],[1192,2]]], [1193,[7862.43,5279.2,-3.8147e-006],[[1001,2],[1405,2]]], +[1194,[7679.5,5556.63,0],[[1002,2]]], [1195,[6682,4730,0],[[1004,2],[1406,2],[1407,2]]], [1196,[6288.85,5664.54,0],[[1007,2],[1408,2],[1409,2],[1196,2],[1410,2]]], [1197,[7411.09,7033.55,0],[[1009,2],[1411,2]]], [1198,[7125.71,6850.65,5.08626e-006],[[1010,2],[1412,2],[1413,2]]], [1199,[7205.17,6524.35,0],[[1011,2]]], +[1200,[6125.01,5877.09,0],[[1012,2],[1414,2],[1201,2],[1415,2]]], [1201,[6139.32,5905.15,0],[[1012,2],[1200,2],[1416,2],[1417,2]]], [1202,[6144.56,6242.12,2.54313e-006],[[1014,2],[1418,2],[1419,2]]], [1203,[6503.96,6327.57,1.90735e-006],[[1015,2],[1420,2],[1421,2],[1422,2]]], [1204,[2968.53,6141.78,0],[[1016,2],[1423,2]]], [1205,[2993.39,6153.55,0],[[1018,2]]], +[1206,[3182.61,6080.81,0],[[1018,2],[1424,2]]], [1207,[3602.62,6868.24,0],[[1020,2],[1425,2],[1426,2]]], [1208,[3875.44,6734.36,-9.53674e-007],[[1021,2],[1427,2],[1208,2],[1428,2]]], [1209,[3657.26,6611.57,0],[[1022,2],[1429,2]]], [1210,[3601.73,6267.24,0],[[1023,2],[1430,2]]], [1211,[3519.31,6159.67,0],[[1024,2],[1431,2],[1432,2]]], +[1212,[3103.23,7286.79,3.8147e-006],[[1025,2],[1433,2],[1213,2]]], [1213,[3092.43,7371.5,0],[[1027,2],[1212,2],[1433,2]]], [1214,[2591.82,7372.52,0],[[1028,2],[1214,2]]], [1215,[2518.41,7502.29,6.35783e-007],[[1028,2],[1434,2],[1233,2],[1215,2]]], [1216,[2853.46,5852.92,0],[[1030,2],[1435,2]]], [1217,[2706.53,5896.77,6.35783e-007],[[1030,2],[1436,2],[1437,2]]], +[1218,[1870.13,6335.55,0],[[1031,2],[1032,2]]], [1219,[2108.4,6210.65,0],[[1031,2]]], [1220,[1610.3,6719.79,6.35783e-007],[[1033,2],[1438,2],[1439,2],[1220,2]]], [1221,[901.27,7736.16,0],[[1036,2],[1039,2],[1440,2],[1441,2]]], [1222,[1089.37,7826.54,0],[[1036,2],[1055,2]]], [1223,[834.183,7727.01,0],[[1037,2]]], +[1224,[741.422,7570.4,0],[[1037,2],[1442,2],[1443,2]]], [1225,[892.462,7403.39,0],[[1038,2]]], [1226,[1608.42,6893.3,6.35783e-007],[[1040,2],[1444,2],[1445,2],[1438,2]]], [1227,[1285.65,6964.76,-3.17891e-007],[[1041,2],[1043,2],[1446,2],[1230,2]]], [1228,[1184.64,7042.81,0],[[1041,2]]], [1229,[1414.72,7014.39,-3.17891e-007],[[1042,2],[1229,2],[1447,2]]], +[1230,[1291.26,6791.62,-6.35783e-007],[[1043,2],[1227,2],[1446,2],[1448,2]]], [1231,[999.114,7228.37,0],[[1044,2]]], [1232,[1049.25,6941.56,0],[[1045,2],[1450,2],[1451,2]]], [1233,[2570.18,7636.52,0],[[1047,2],[1215,2],[1234,2],[1434,2]]], [1234,[2639.23,7723.22,0],[[1048,2],[1233,2],[1452,2]]], [1235,[2705.03,7963.63,1.27157e-006],[[1049,2],[1453,2],[1454,2]]], +[1236,[2214.83,8080.67,6.35783e-007],[[1050,2],[1236,2],[1455,2]]], [1237,[2493.07,7644.09,0],[[1051,2],[1456,2],[1434,2]]], [1238,[2442.33,7644.63,0],[[1052,2],[1456,2]]], [1239,[1744.62,8829.65,0],[[1053,2],[1457,2]]], [1240,[2185.34,8377.12,1.90735e-007],[[1054,2],[1240,2],[1455,2],[1458,2],[1459,2]]], [1241,[4015.78,13991.3,-2.54313e-006],[[1057,2],[1462,2],[1463,2]]], +[1242,[3445,13708.5,0],[[1059,2]]], [1243,[3393.52,13561.1,0],[[1059,2],[1464,2],[1465,2]]], [1244,[4468.53,15841.9,0],[[1060,2],[1466,2],[1467,2]]], [1245,[4544.7,15218.7,0],[[1062,2],[1468,2],[1469,2]]], [1246,[4446.58,15055.5,0],[[1062,2],[1470,2]]], [1247,[3460.12,15613.4,0],[[1064,2],[1471,2]]], +[1248,[3278.88,15325.1,2.54313e-006],[[1065,2],[1472,2],[1473,2]]], [1249,[3186.26,15116.9,0],[[1065,2],[1474,2],[1475,2]]], [1250,[3009.58,14904.5,0],[[1067,2],[1476,2],[1474,2],[1477,2],[1478,2]]], [1251,[3095.7,14053.6,-7.62939e-006],[[1070,2]]], [1252,[2751.66,13907.3,0],[[1071,2],[1479,2]]], [1253,[2888.46,13791.5,0],[[1071,2],[1480,2],[1481,2]]], +[1254,[6151.79,13800,0],[[1072,2],[1482,2],[1254,2],[1483,2]]], [1255,[6182.83,14124.7,1.90735e-006],[[1073,2],[1484,2],[1485,2],[1486,2]]], [1256,[6065.98,14087.1,0],[[1073,2],[1256,2],[1487,2]]], [1257,[4361.47,12912.6,0],[[1074,2],[1488,2],[1489,2]]], [1258,[4152.36,13187.3,7.62939e-006],[[1075,2],[1490,2]]], [1259,[4275.75,13353.1,0],[[1075,2],[1491,2]]], +[1260,[4355.71,13703.1,0],[[1077,2],[1492,2]]], [1261,[5157.58,14488.8,-7.62939e-006],[[1078,2],[1493,2]]], [1262,[4897.67,14567,0],[[1078,2],[1494,2]]], [1263,[4866.79,14300.2,0],[[1078,2],[1495,2]]], [1264,[5499.17,14178.6,0],[[1079,2],[1496,2],[1264,2]]], [1265,[5545.79,14049,0],[[1079,2]]], +[1266,[5683.73,14146.8,2.54313e-006],[[1079,2],[1497,2],[1498,2]]], [1267,[6258.54,12413.5,-7.62939e-006],[[1080,2],[1499,2]]], [1268,[6164.32,12895.8,-2.54313e-006],[[1082,2],[1500,2],[1501,2]]], [1269,[6302.52,13436.7,0],[[1084,2],[1502,2],[1503,2],[1504,2],[1505,2]]], [1270,[4665.39,12615.1,0],[[1085,2],[1506,2]]], [1271,[5064.68,12094.5,-2.54313e-006],[[1086,2],[1507,2],[1508,2]]], +[1272,[5164.07,12203.2,0],[[1086,2]]], [1273,[4922.02,12206.6,2.54313e-006],[[1087,2],[1509,2],[1510,2]]], [1274,[5023.59,12119.6,0],[[1087,2]]], [1275,[5006.62,12282.9,0],[[1087,2]]], [1276,[5239.99,12323.6,7.62939e-006],[[1089,2]]], [1277,[5319.28,12258.2,0],[[1090,2]]], +[1278,[5491.53,12159.3,7.62939e-006],[[1091,2],[1511,2]]], [1279,[5423.75,12344.7,0],[[1092,2]]], [1280,[11820.7,11076.5,-7.62939e-006],[[1093,2],[1512,2]]], [1281,[12176.6,11934.7,0],[[1095,2],[1513,2]]], [1282,[12212.4,11578.4,2.54313e-006],[[1096,2],[1514,2],[1515,2]]], [1283,[11349.3,10798.4,0],[[1097,2],[1516,2],[1517,2]]], +[1284,[11119.2,10900.1,0],[[1099,2],[1518,2]]], [1285,[12168.1,12271.4,0],[[1100,2],[1519,2],[1288,2],[1520,2]]], [1286,[11988.5,12630.9,-7.62939e-006],[[1101,2],[1521,2]]], [1287,[12108,12576.7,-2.54313e-006],[[1101,2],[1522,2],[1523,2]]], [1288,[12109.4,12381.8,0],[[1101,2],[1285,2],[1524,2],[1519,2]]], [1289,[11834.2,12581.3,0],[[1102,2]]], +[1290,[11553.3,12861.9,-7.62939e-006],[[1103,2],[1525,2]]], [1291,[11411.9,12970.2,0],[[1103,2],[1110,2],[1299,2]]], [1292,[10894.6,12466.7,-7.62939e-006],[[1104,2],[1526,2],[1294,2]]], [1293,[10857.3,12391.1,3.05176e-006],[[1104,2],[1293,2],[1527,2]]], [1294,[10888.2,12464.7,0],[[1104,2],[1528,2],[1292,2]]], [1295,[10655.4,12880.6,7.62939e-006],[[1106,2],[1529,2]]], +[1296,[10697.1,12654.9,0],[[1106,2],[1107,2],[1530,2]]], [1297,[10974.9,13274.5,0],[[1108,2],[1531,2]]], [1298,[10798.2,13104.5,0],[[1109,2]]], [1299,[11380.2,13004.1,0],[[1110,2],[1291,2],[1532,2]]], [1300,[11230.4,12849.7,0],[[1110,2],[1533,2]]], [1301,[10696.3,10718.3,0],[[1113,2]]], +[1302,[10916.1,10702.7,0],[[1113,2],[1534,2]]], [1303,[10739.7,10628.1,0],[[1113,2],[1535,2]]], [1304,[10892.9,10863.1,0],[[1113,2],[1536,2],[1518,2],[1537,2],[1304,2]]], [1305,[10316,10945.4,0],[[1114,2],[1315,2]]], [1306,[10420.1,10629.3,2.54313e-006],[[1114,2],[1538,2],[1539,2]]], [1307,[10026.4,12092.7,0],[[1115,2]]], +[1308,[10014.9,12253.4,7.62939e-006],[[1116,2],[1540,2]]], [1309,[10031,12473.9,7.62939e-006],[[1116,2],[1541,2]]], [1310,[10205.2,12398.8,0],[[1116,2],[1542,2],[1543,2]]], [1311,[9897.98,11786.3,0],[[1117,2],[1311,2]]], [1312,[9956.7,11709.3,7.62939e-006],[[1117,2]]], [1313,[9841.81,11201.4,-7.62939e-006],[[1118,2],[1544,2]]], +[1314,[10027,10960.6,0],[[1119,2],[1545,2]]], [1315,[10248.1,11008.1,0],[[1119,2],[1305,2]]], [1316,[15976.4,6913.21,0],[[1120,2],[1546,2],[1547,2]]], [1317,[15999.7,7049.72,0],[[1120,2],[1317,2],[1548,2]]], [1318,[16210.1,7389.27,0],[[1121,2],[1549,2]]], [1319,[16262.8,7524.59,0],[[1121,2],[1550,2]]], +[1320,[16200.3,6752.99,-1.52588e-005],[[1122,2],[1551,2]]], [1321,[16261.9,6501.07,0],[[1123,2],[1322,2],[1552,2]]], [1322,[16384.4,6387.38,0],[[1124,2],[1321,2],[1553,2]]], [1323,[16823,6592.28,-7.62939e-006],[[1125,2],[1554,2]]], [1324,[16137.5,7800.91,0],[[1126,2],[1555,2],[1556,2]]], [1325,[16515.6,8609.69,0],[[1128,2],[1325,2],[1557,2]]], +[1326,[16533.4,8730.62,2.54313e-006],[[1128,2],[1558,2],[1557,2]]], [1327,[16754.2,8608.41,0],[[1128,2],[1559,2]]], [1328,[16784.8,8758.32,3.8147e-006],[[1128,2],[1560,2]]], [1329,[16184.2,8201.62,0],[[1129,2],[1561,2]]], [1330,[17453.9,8241.51,0],[[1147,2],[1130,2],[1580,2]]], [1331,[16145.2,8093.22,0],[[1132,2],[1562,2]]], +[1332,[17729.9,6291.49,3.8147e-006],[[1133,2],[1563,2]]], [1333,[17293.9,6247.34,3.8147e-006],[[1134,2],[1564,2]]], [1334,[17527.1,5858.31,0],[[1135,2],[1565,2]]], [1335,[16766.9,6171.76,0],[[1136,2],[1566,2]]], [1336,[17033.7,6776.74,0],[[1137,2]]], [1337,[18213.4,6864.92,6.35783e-007],[[1138,2],[1567,2],[1347,2],[1568,2]]], +[1338,[17956.6,6607.55,3.8147e-006],[[1139,2],[1569,2]]], [1339,[17857.3,8179.77,0],[[1140,2],[1570,2],[1348,2],[1571,2]]], [1340,[17937.4,8065.38,0],[[1140,2],[1572,2]]], [1341,[17900,7986.84,0],[[1140,2],[1573,2],[1574,2],[1346,2]]], [1342,[18101.1,7615.38,0],[[1142,2],[1575,2]]], [1343,[18138.5,7983.96,7.94729e-008],[[1143,2],[1576,2]]], +[1344,[18065,7951.33,0],[[1143,2],[1577,2],[1576,2]]], [1345,[18064.1,7963.05,0],[[1144,2]]], [1346,[17994.4,8039.84,0],[[1144,2],[1341,2],[1578,2],[1576,2],[1577,2],[1579,2],[1570,2],[1574,2]]], [1347,[18266.7,6928.37,0],[[1146,2],[1337,2],[1567,2]]], [1348,[17669.5,8199.37,0],[[1147,2],[1339,2]]], [1349,[15853.7,3709.08,0],[[1149,2],[1581,2]]], +[1350,[14483.2,4476.82,1.27157e-006],[[1150,2],[1582,2],[1583,2]]], [1351,[14379.2,4298.99,0],[[1150,2],[1584,2],[1585,2]]], [1352,[14910.1,3869.34,0],[[1151,2]]], [1353,[14865.8,3772.24,0],[[1151,2],[1586,2],[1587,2],[1588,2]]], [1354,[15346.9,3937.74,0],[[1152,2],[1589,2]]], [1355,[14466.6,5338.81,0],[[1153,2]]], +[1356,[14323.9,5271.62,0],[[1153,2]]], [1357,[14404.7,5413.88,1.27157e-006],[[1153,2],[1590,2],[1357,2]]], [1358,[14552.4,5162.01,3.8147e-006],[[1154,2],[1591,2]]], [1359,[14506.1,5208.43,0],[[1154,2]]], [1360,[14566.6,5079.11,9.15527e-005],[[1155,2],[1592,2]]], [1361,[14562.6,5066.31,1.90735e-005],[[1155,2]]], +[1362,[14595.6,5121.71,-1.14441e-005],[[1155,2]]], [1363,[14204.3,4865.15,0],[[1157,2],[1593,2]]], [1364,[14112.4,4989.85,0],[[1157,2],[1594,2],[1595,2]]], [1365,[15021.6,5918.35,0],[[1159,2],[1596,2]]], [1366,[15156.9,5852.43,0],[[1159,2],[1597,2],[1598,2]]], [1367,[14726.2,5642.11,3.8147e-006],[[1160,2],[1599,2]]], +[1368,[15958.6,5693.94,9.53674e-007],[[1161,2],[1600,2],[1601,2]]], [1369,[16675,5665.37,0],[[1163,2],[1602,2],[1369,2]]], [1370,[16879.4,5126.93,-3.17891e-007],[[1164,2],[1165,2],[1603,2]]], [1371,[17008.9,4949.22,-9.53674e-007],[[1165,2],[1604,2]]], [1372,[16908.9,4917.77,0],[[1165,2],[1605,2]]], [1373,[16598.8,4751.11,0],[[1166,2],[1606,2]]], +[1374,[16551.1,4544.57,0],[[1166,2],[1374,2]]], [1375,[15475.3,6280.62,-3.8147e-006],[[1168,2]]], [1376,[15476.3,6403.69,-1.27157e-006],[[1168,2],[1607,2],[1608,2]]], [1377,[15215.1,6153.07,0],[[1169,2],[1609,2],[1597,2],[1610,2],[1611,2]]], [1378,[15363.5,6014.66,0],[[1169,2],[1597,2],[1611,2]]], [1379,[15619.5,6342.47,-3.8147e-006],[[1170,2]]], +[1380,[15927.6,6032.86,0],[[1171,2],[1612,2]]], [1381,[15773.7,6212.19,-7.62939e-006],[[1171,2],[1613,2]]], [1382,[10231.6,4115.82,0],[[1172,2],[1614,2]]], [1383,[10265.9,3914.39,0],[[1172,2]]], [1384,[11907.3,3424.12,0],[[1173,2],[1615,2],[1384,2]]], [1385,[11682.2,3769.58,0],[[1174,2],[1616,2]]], +[1386,[11536.5,4144.68,0],[[1175,2],[1617,2]]], [1387,[10931.2,4110.34,-2.54313e-006],[[1176,2],[1387,2],[1618,2]]], [1388,[11092.6,4273.92,0],[[1176,2],[1619,2]]], [1389,[12356.2,2618.38,-3.8147e-006],[[1177,2],[1620,2],[1621,2]]], [1390,[12326.7,2508.04,0],[[1177,2],[1622,2]]], [1391,[11569.6,1898.63,0],[[1178,2],[1623,2],[1624,2]]], +[1392,[12328.5,2936.99,-1.27157e-006],[[1180,2],[1625,2],[1626,2]]], [1393,[12262.1,2950.11,-1.27157e-006],[[1180,2],[1627,2],[1626,2],[1628,2]]], [1394,[9938.88,2255.6,0],[[1182,2],[1629,2]]], [1395,[9875.67,2552.04,6.35783e-007],[[1183,2],[1630,2],[1631,2]]], [1396,[9719.14,2600.71,0],[[1184,2]]], [1397,[9929.01,3380.21,0],[[1185,2],[1632,2]]], +[1398,[9550.64,3189.61,-6.35783e-007],[[1186,2],[1633,2],[1634,2]]], [1399,[9628.93,2762.14,0],[[1187,2],[1635,2]]], [1400,[8587.39,6060.07,-7.62939e-006],[[1188,2],[1636,2]]], [1401,[8515.73,6202.62,-7.62939e-006],[[1188,2],[1637,2]]], [1402,[8290.09,6208.65,3.8147e-006],[[1189,2],[1638,2],[1639,2],[1640,2]]], [1403,[8218.11,5799.21,0],[[1190,2]]], +[1404,[7495.09,5043.83,0],[[1192,2],[1641,2]]], [1405,[7958.32,5265.73,0],[[1193,2],[1642,2]]], [1406,[6831.26,4713.35,0],[[1195,2],[1643,2]]], [1407,[6587.78,4693.11,0],[[1195,2],[1644,2],[1407,2],[1645,2]]], [1408,[6207.38,5649.69,0],[[1196,2],[1646,2],[1414,2],[1647,2],[1648,2]]], [1409,[6297.73,5658.97,0],[[1196,2]]], +[1410,[6289.57,5524.9,3.8147e-006],[[1196,2],[1649,2]]], [1411,[7463.77,7118.3,0],[[1197,2],[1650,2],[1651,2]]], [1412,[7067.44,6710.01,0],[[1198,2],[1652,2]]], [1413,[7079.06,6885.08,2.54313e-006],[[1198,2],[1653,2],[1654,2]]], [1414,[6196.62,5764.9,9.53674e-007],[[1200,2],[1408,2],[1646,2],[1414,2]]], [1415,[5965.97,5865.62,-3.8147e-006],[[1200,2],[1655,2]]], +[1416,[6177.18,5977.78,0],[[1201,2],[1656,2],[1657,2]]], [1417,[6033.67,5980.18,-1.90735e-006],[[1201,2],[1658,2],[1419,2],[1417,2],[1659,2]]], [1418,[6180.63,6264.63,2.54313e-006],[[1202,2],[1660,2],[1418,2]]], [1419,[6091.81,6237.69,-5.08626e-006],[[1202,2],[1417,2],[1661,2],[1419,2],[1658,2]]], [1420,[6529.8,6499.36,0],[[1203,2],[1662,2]]], [1421,[6583.61,6255.5,0],[[1203,2]]], +[1422,[6436.16,6390.55,3.8147e-006],[[1203,2],[1422,2],[1663,2]]], [1423,[2951.57,6059.33,-1.90735e-006],[[1204,2],[1664,2]]], [1424,[3253.54,6024.57,1.27157e-006],[[1206,2],[1432,2],[1665,2]]], [1425,[3631.94,7006.42,0],[[1207,2],[1666,2],[1667,2]]], [1426,[3749.71,6931.31,2.54313e-006],[[1207,2],[1668,2],[1669,2]]], [1427,[3921.66,6757.07,0],[[1208,2],[1670,2],[1671,2],[1668,2]]], +[1428,[3848.55,6587.66,3.8147e-006],[[1208,2],[1429,2]]], [1429,[3748.51,6520.28,1.27157e-006],[[1209,2],[1428,2],[1672,2]]], [1430,[3769.67,6212.54,0],[[1210,2],[1673,2]]], [1431,[3642.59,6125.79,0],[[1211,2],[1674,2],[1675,2]]], [1432,[3432.68,6083.37,0],[[1211,2],[1424,2]]], [1433,[3129.56,7379.17,0],[[1212,2],[1213,2],[1676,2],[1677,2],[1678,2]]], +[1434,[2543.93,7603.99,-9.53674e-007],[[1215,2],[1233,2],[1237,2],[1456,2],[1679,2]]], [1435,[2951.83,5781.1,3.17891e-007],[[1216,2],[1680,2],[1681,2]]], [1436,[2671.91,5903.63,0],[[1217,2],[1682,2],[1683,2]]], [1437,[2740.57,5732.84,0],[[1217,2],[1684,2]]], [1438,[1524.99,6803.95,0],[[1220,2],[1226,2],[1445,2]]], [1439,[1623.67,6709.07,0],[[1220,2]]], +[1440,[981.317,7825.34,1.19209e-007],[[1221,2]]], [1441,[776.703,7746.73,0],[[1221,2],[1685,2]]], [1442,[659.916,7615.63,0],[[1224,2],[1442,2],[1685,2]]], [1443,[726.533,7448.06,0],[[1224,2],[1686,2],[1687,2]]], [1444,[1696.79,6929.64,1.90735e-006],[[1226,2],[1688,2]]], [1445,[1512.12,6830.56,0],[[1226,2],[1438,2],[1445,2],[1447,2]]], +[1446,[1293.15,6833.2,0],[[1227,2],[1230,2]]], [1447,[1464.08,6916.19,0],[[1229,2],[1445,2]]], [1448,[1387.42,6673.01,0],[[1230,2],[1689,2]]], [1449,[1111.16,7142.64,0],[[1046,2]]], [1450,[983.396,6991.24,-5.96046e-008],[[1232,2],[1690,2],[1450,2],[1691,2]]], [1451,[1012.44,6877.04,0],[[1232,2]]], +[1452,[2700.11,7697.28,2.54313e-006],[[1234,2],[1692,2],[1693,2],[1694,2]]], [1453,[2773.81,8009.42,0],[[1235,2],[1695,2],[1696,2]]], [1454,[2758.02,7838.49,0],[[1235,2],[1693,2]]], [1455,[2195.16,8223.3,0],[[1236,2],[1240,2]]], [1456,[2517.5,7616.83,3.8147e-006],[[1237,2],[1238,2],[1434,2]]], [1457,[1768.78,8921.3,0],[[1239,2],[1697,2],[1698,2],[1699,2]]], +[1458,[2214.38,8468.49,0],[[1240,2],[1700,2],[1701,2]]], [1459,[2152.7,8492.39,0],[[1240,2],[1702,2]]], [1460,[1319.02,8640.67,0],[[1056,2]]], [1461,[1447.22,8659.34,0],[[1056,2],[1703,2],[1704,2]]], [1462,[4056.65,14135.5,0],[[1241,2],[1705,2]]], [1463,[4066.9,13930.9,1.90735e-006],[[1241,2],[1706,2],[1707,2],[1708,2]]], +[1464,[3260.24,13434.2,0],[[1243,2],[1709,2]]], [1465,[3454.93,13381.2,0],[[1243,2],[1710,2]]], [1466,[4565.06,15977.5,3.8147e-006],[[1244,2],[1711,2],[1712,2],[1713,2]]], [1467,[4613.36,15831.1,-7.62939e-006],[[1244,2]]], [1468,[4666.15,15077.1,0],[[1245,2],[1714,2]]], [1469,[4634.34,15297.3,0],[[1245,2],[1715,2]]], +[1470,[4379.91,14926.9,0],[[1246,2],[1470,2]]], [1471,[3466.22,15751.5,2.54313e-006],[[1247,2],[1716,2],[1717,2]]], [1472,[3307.48,15428.6,0],[[1248,2]]], [1473,[3250.86,15339.2,0],[[1248,2]]], [1474,[3088.97,15012.3,-7.62939e-006],[[1249,2],[1250,2]]], [1475,[3135.28,15187.8,0],[[1249,2],[1718,2]]], +[1476,[2891.06,14764.2,-7.62939e-006],[[1250,2],[1719,2]]], [1477,[2912.78,15021.9,0],[[1250,2],[1478,2]]], [1478,[2916.13,15014.7,0],[[1477,2],[1250,2]]], [1479,[2608.4,13885.5,0],[[1252,2],[1720,2],[1721,2]]], [1480,[2851.34,13784.3,0],[[1253,2]]], [1481,[2897.92,13720.5,-2.54313e-006],[[1253,2],[1722,2],[1723,2]]], +[1482,[6206.98,13722.4,-7.62939e-006],[[1254,2],[1724,2],[1725,2]]], [1483,[6238.96,13902.6,0],[[1254,2]]], [1484,[6105.86,14252,0],[[1255,2],[1726,2],[1727,2]]], [1485,[6296.37,14214.6,0],[[1255,2],[1728,2]]], [1486,[6232.74,14053.5,0],[[1255,2]]], [1487,[6069.79,14110.2,-7.62939e-006],[[1256,2]]], +[1488,[4390.74,12697,0],[[1257,2],[1729,2]]], [1489,[4534.55,12964.7,0],[[1257,2],[1730,2]]], [1490,[4021.61,13143.8,0],[[1258,2],[1731,2]]], [1491,[4241.38,13496.7,0],[[1259,2],[1732,2]]], [1492,[4301.73,13771,0],[[1260,2],[1733,2]]], [1493,[5304.05,14565.9,1.52588e-006],[[1261,2],[1734,2],[1735,2],[1736,2],[1737,2]]], +[1494,[4883.96,14603.9,0],[[1262,2],[1738,2],[1739,2]]], [1495,[4741.88,14247.6,0],[[1263,2],[1740,2]]], [1496,[5492.3,14270.1,0],[[1264,2]]], [1497,[5804.12,14177,2.54313e-006],[[1266,2],[1741,2],[1497,2]]], [1498,[5642.33,14204.5,7.62939e-006],[[1266,2],[1742,2]]], [1499,[6311.49,12350.8,0],[[1267,2],[1743,2],[1744,2]]], +[1500,[6321.62,12960.9,0],[[1268,2],[1745,2]]], [1501,[6121.64,13043,0],[[1268,2],[1746,2]]], [1502,[6456.38,13538,7.62939e-006],[[1269,2],[1747,2]]], [1503,[6360.04,13353.5,2.54313e-006],[[1269,2],[1748,2],[1749,2]]], [1504,[6150.79,13392.2,0],[[1269,2],[1750,2]]], [1505,[6357.87,13567.7,-7.62939e-006],[[1269,2],[1751,2],[1725,2]]], +[1506,[4525.21,12637.9,0],[[1270,2],[1752,2],[1729,2]]], [1507,[5156.97,11992.9,7.62939e-006],[[1271,2],[1753,2]]], [1508,[4986.93,11935.8,0],[[1271,2],[1754,2]]], [1509,[4906.88,12162.5,0],[[1273,2]]], [1510,[4884.5,12202.4,-2.54313e-006],[[1273,2],[1755,2],[1756,2]]], [1511,[5617.25,12027.8,0],[[1278,2],[1757,2]]], +[1512,[11729.4,10974.9,0],[[1280,2],[1758,2]]], [1513,[12238.5,11981.7,-5.08626e-006],[[1281,2],[1520,2],[1759,2]]], [1514,[12089.1,11466.2,0],[[1282,2],[1760,2]]], [1515,[12369.4,11471.6,0],[[1282,2],[1761,2]]], [1516,[11468.1,10805.9,1.90735e-006],[[1283,2],[1762,2],[1763,2],[1516,2]]], [1517,[11275,10660.1,0],[[1283,2],[1764,2]]], +[1518,[11003.5,10918.6,0],[[1284,2],[1304,2],[1536,2]]], [1519,[12104.8,12334.6,0],[[1285,2],[1288,2],[1765,2]]], [1520,[12315.1,12150.1,-5.08626e-006],[[1285,2],[1513,2],[1766,2]]], [1521,[11968.7,12688.3,-7.62939e-006],[[1286,2]]], [1522,[12193.4,12651.6,2.54313e-006],[[1287,2],[1767,2],[1768,2]]], [1523,[12174,12501.6,0],[[1287,2]]], +[1524,[12106.8,12329.7,7.62939e-006],[[1288,2],[1769,2]]], [1525,[11622.5,12819.8,0],[[1290,2],[1770,2]]], [1526,[10916.2,12486.7,-7.62939e-006],[[1292,2]]], [1527,[10815.9,12374.5,0],[[1293,2],[1771,2],[1527,2]]], [1528,[10897.4,12460.1,0],[[1294,2]]], [1529,[10508.3,12956.7,0],[[1295,2],[1772,2]]], +[1530,[10592.6,12574.3,2.54313e-006],[[1296,2],[1773,2],[1774,2]]], [1531,[10972.8,13395.7,0],[[1297,2],[1775,2],[1776,2]]], [1532,[11494.2,13099.6,-7.62939e-006],[[1299,2],[1777,2]]], [1533,[11176.4,12849.6,0],[[1300,2]]], [1534,[11021,10631.8,0],[[1302,2],[1778,2]]], [1535,[10674.7,10504.9,7.62939e-006],[[1303,2],[1779,2]]], +[1536,[10973.1,10905.6,0],[[1304,2],[1518,2],[1780,2],[1536,2],[1781,2]]], [1537,[10874.1,10862.6,0],[[1304,2]]], [1538,[10496.8,10521.8,0],[[1306,2],[1538,2]]], [1539,[10336.6,10528.2,0],[[1306,2],[1782,2]]], [1540,[9876.1,12170,0],[[1308,2],[1783,2]]], [1541,[9933.15,12572,2.54313e-006],[[1309,2],[1784,2],[1785,2]]], +[1542,[10307.3,12323.5,0],[[1310,2],[1786,2]]], [1543,[10327.8,12460.4,0],[[1310,2],[1787,2],[1773,2],[1788,2]]], [1544,[9771.78,11171.4,0],[[1313,2],[1789,2],[1790,2],[1791,2]]], [1545,[9994.6,10912.2,-2.54313e-006],[[1314,2],[1792,2],[1793,2]]], [1546,[15875.6,6978,7.62939e-006],[[1316,2],[1794,2]]], [1547,[15904.6,6783.94,7.62939e-006],[[1316,2],[1795,2]]], +[1548,[15973.4,7079.84,2.54313e-006],[[1317,2],[1548,2],[1796,2]]], [1549,[16105.7,7431.25,0],[[1318,2],[1797,2],[1798,2],[1549,2]]], [1550,[16188.5,7449.04,0],[[1319,2],[1798,2]]], [1551,[16118.1,6744.91,0],[[1320,2],[1799,2]]], [1552,[16223.7,6366,0],[[1321,2],[1800,2]]], [1553,[16392.4,6264.06,0],[[1322,2],[1801,2],[1802,2]]], +[1554,[16719.3,6561.65,0],[[1323,2],[1803,2]]], [1555,[16049.3,7857.75,0],[[1324,2],[1804,2],[1805,2]]], [1556,[16128.3,7786.59,0],[[1324,2]]], [1557,[16490.9,8678.69,2.54313e-006],[[1325,2],[1326,2],[1806,2]]], [1558,[16447.3,8869.44,0],[[1326,2],[1807,2],[1808,2]]], [1559,[16918.1,8565.48,0],[[1327,2],[1809,2]]], +[1560,[16912.7,8855.41,0],[[1328,2],[1810,2],[1811,2]]], [1561,[16142.6,8307.58,0],[[1329,2],[1812,2]]], [1562,[16032.8,8016.42,0],[[1331,2],[1805,2]]], [1563,[17816.7,6304.21,9.53674e-007],[[1332,2],[1813,2],[1563,2],[1814,2]]], [1564,[17177.4,6210.23,0],[[1333,2],[1815,2]]], [1565,[17531.7,5731.4,3.17891e-007],[[1334,2],[1816,2],[1817,2]]], +[1566,[16695.1,6074.03,0],[[1335,2],[1818,2]]], [1567,[18266,6870.72,9.53674e-007],[[1337,2],[1347,2],[1819,2],[1820,2]]], [1568,[18199.4,6657.69,0],[[1337,2],[1821,2]]], [1569,[17947.8,6578.96,1.27157e-006],[[1338,2],[1569,2],[1813,2]]], [1570,[17926.8,8168.04,-3.17891e-007],[[1339,2],[1346,2],[1579,2],[1822,2]]], [1571,[17927.5,8347.45,0],[[1339,2],[1823,2]]], +[1572,[17941.6,8040.51,0],[[1340,2]]], [1573,[17935.8,7878.68,6.35783e-007],[[1341,2],[1574,2],[1573,2]]], [1574,[17987.2,7977.12,0],[[1341,2],[1346,2],[1573,2]]], [1575,[18112.6,7497.44,0],[[1342,2],[1824,2]]], [1576,[18118.8,8005.01,0],[[1343,2],[1344,2],[1346,2],[1577,2],[1578,2]]], [1577,[18077.9,7987.24,4.76837e-007],[[1344,2],[1346,2],[1576,2],[1578,2]]], +[1578,[18071,8015.12,1.58946e-007],[[1346,2],[1576,2],[1577,2]]], [1579,[17978.8,8128.98,0],[[1346,2],[1570,2],[1822,2]]], [1580,[17505.8,8328.53,0],[[1330,2],[1825,2]]], [1581,[15842,3552.15,-9.53674e-007],[[1349,2],[1826,2]]], [1582,[14463.9,4558.94,0],[[1350,2]]], [1583,[14595.3,4536.64,0],[[1350,2],[1827,2]]], +[1584,[14397.4,4152.03,3.8147e-006],[[1351,2],[1828,2]]], [1585,[14304.6,4318.82,0],[[1351,2],[1829,2],[1585,2],[1830,2]]], [1586,[14684.3,3787.09,0],[[1353,2],[1831,2]]], [1587,[14942.6,3766.1,0],[[1353,2],[1832,2],[1833,2]]], [1588,[14925.5,3737.01,0],[[1353,2],[1834,2],[1588,2]]], [1589,[15324.7,3794.75,-9.53674e-007],[[1354,2],[1835,2]]], +[1590,[14449.5,5507.89,1.27157e-006],[[1357,2],[1836,2],[1590,2]]], [1591,[14581,5168.68,0],[[1358,2]]], [1592,[14551.2,5081.11,6.10352e-005],[[1360,2]]], [1593,[14247.6,4732.94,0],[[1363,2],[1837,2]]], [1594,[14097.5,5061.53,0],[[1364,2]]], [1595,[14039.7,4996.06,0],[[1364,2],[1838,2],[1839,2]]], +[1596,[14903.4,5945.19,7.62939e-006],[[1365,2],[1840,2]]], [1597,[15205.6,6006.52,0],[[1366,2],[1377,2],[1378,2],[1611,2]]], [1598,[15020.3,5958.31,-7.62939e-006],[[1366,2],[1841,2]]], [1599,[14610.1,5633.55,0],[[1367,2],[1836,2]]], [1600,[16000.6,5866.11,0],[[1368,2],[1842,2]]], [1601,[15851.7,5693.63,0],[[1368,2]]], +[1602,[16709.1,5728.43,0],[[1369,2],[1602,2],[1843,2]]], [1603,[17047,5092.52,0],[[1370,2],[1604,2],[1844,2]]], [1604,[17032.2,4953.13,3.17891e-007],[[1371,2],[1603,2],[1845,2]]], [1605,[17026.4,4843.58,2.38419e-007],[[1372,2],[1846,2],[1845,2],[1847,2]]], [1606,[16749.2,4755.73,0],[[1373,2],[1846,2]]], [1607,[15502.1,6490.15,-2.54313e-006],[[1376,2],[1607,2],[1848,2]]], +[1608,[15362.4,6486.9,0],[[1376,2],[1849,2]]], [1609,[15225.1,6210.24,0],[[1377,2]]], [1610,[15073.1,6281,0],[[1377,2],[1850,2]]], [1611,[15212.7,6021.5,0],[[1597,2],[1378,2],[1377,2]]], [1612,[16070.4,6066.41,0],[[1380,2],[1851,2]]], [1613,[15778.2,6243.31,0],[[1381,2]]], +[1614,[10124.4,4236.51,0],[[1382,2],[1852,2],[1853,2]]], [1615,[11919.4,3485.62,0],[[1384,2]]], [1616,[11694.1,3763.91,-1.27157e-006],[[1385,2],[1616,2],[1854,2]]], [1617,[11533.8,4166.47,1.27157e-006],[[1386,2],[1855,2],[1856,2]]], [1618,[10768.5,4193.26,0],[[1387,2],[1857,2]]], [1619,[11108.4,4392.58,0],[[1388,2],[1858,2],[1859,2]]], +[1620,[12411.1,2574.65,0],[[1389,2],[1860,2],[1620,2],[1861,2]]], [1621,[12389.6,2684.69,0],[[1389,2]]], [1622,[12321.7,2348.78,0],[[1390,2],[1862,2]]], [1623,[11733.7,1862.75,0],[[1391,2],[1863,2]]], [1624,[11509.4,1760,-4.76837e-007],[[1391,2],[1864,2],[1865,2],[1866,2]]], [1625,[12390.5,2950.47,1.27157e-006],[[1392,2],[1867,2],[1868,2]]], +[1626,[12320,3001.34,-1.27157e-006],[[1392,2],[1393,2],[1869,2],[1627,2]]], [1627,[12268.8,2994.2,-3.8147e-006],[[1393,2],[1626,2],[1870,2]]], [1628,[12233.5,2964.4,0],[[1393,2]]], [1629,[9910.85,2209.29,6.35783e-007],[[1394,2],[1871,2],[1872,2]]], [1630,[9733.92,2539.25,0],[[1395,2],[1873,2]]], [1631,[9752.95,2453.23,0],[[1395,2],[1874,2]]], +[1632,[9947.95,3411.77,1.27157e-006],[[1397,2],[1875,2],[1876,2]]], [1633,[9590.66,3273.05,0],[[1398,2]]], [1634,[9413.99,3223.73,4.76837e-007],[[1398,2],[1877,2],[1634,2],[1878,2]]], [1635,[9581.02,2665.69,6.35783e-007],[[1399,2],[1635,2],[1879,2]]], [1636,[8698.54,6036.33,-7.62939e-006],[[1400,2],[1880,2]]], [1637,[8543.16,6245.78,0],[[1401,2],[1637,2],[1881,2]]], +[1638,[8260.02,6329.42,7.62939e-006],[[1402,2],[1882,2]]], [1639,[8257.48,6207.55,7.62939e-006],[[1402,2]]], [1640,[8335.78,6243.52,0],[[1402,2]]], [1641,[7392.39,5026.03,0],[[1404,2],[1883,2]]], [1642,[8066.91,5245.74,0],[[1405,2],[1884,2],[1885,2],[1886,2]]], [1643,[6954.04,4682.26,0],[[1406,2],[1887,2]]], +[1644,[6571.31,4592.89,-1.27157e-006],[[1407,2],[1888,2],[1889,2],[1890,2]]], [1645,[6464.57,4836.11,0],[[1407,2],[1891,2]]], [1646,[6201.51,5716.55,0],[[1408,2],[1414,2],[1892,2]]], [1647,[6179.9,5518.43,0],[[1408,2]]], [1648,[6035.32,5579.79,0],[[1408,2],[1893,2]]], [1649,[6291.2,5380.7,3.8147e-006],[[1410,2],[1894,2]]], +[1650,[7319.17,7218.82,7.62939e-006],[[1411,2],[1895,2]]], [1651,[7503.41,7112.25,0],[[1411,2],[1896,2],[1897,2]]], [1652,[7009.73,6584.45,0],[[1412,2],[1898,2]]], [1653,[6936.92,6905.91,1.90735e-006],[[1413,2],[1899,2],[1900,2],[1901,2]]], [1654,[7123.02,6958.66,0],[[1413,2]]], [1655,[5861.33,5844.99,1.27157e-006],[[1415,2],[1902,2],[1903,2]]], +[1656,[6172.45,5952.28,0],[[1416,2]]], [1657,[6184.7,6039.39,0],[[1416,2]]], [1658,[6068.5,6170.56,-1.90735e-006],[[1417,2],[1419,2],[1904,2],[1658,2],[1905,2]]], [1659,[6084.61,6125.41,7.62939e-006],[[1904,2],[1417,2]]], [1660,[6238.88,6270.75,0],[[1418,2]]], [1661,[6101.74,6251.49,-3.8147e-006],[[1419,2]]], +[1662,[6542.09,6656.44,0],[[1420,2],[1906,2]]], [1663,[6321.57,6432.86,2.54313e-006],[[1422,2],[1663,2]]], [1664,[3052.86,6083.49,0],[[1423,2],[1665,2]]], [1665,[3201.86,5982.05,9.53674e-007],[[1424,2],[1664,2],[1907,2],[1908,2],[1681,2]]], [1666,[3784.68,7077.55,0],[[1425,2],[1909,2],[1668,2]]], [1667,[3538.38,7088.36,0],[[1425,2],[1910,2]]], +[1668,[3852.19,6971.86,-1.90735e-006],[[1426,2],[1427,2],[1666,2],[1911,2],[1671,2]]], [1669,[3804.58,6848.36,0],[[1426,2],[1671,2]]], [1670,[4008.3,6764.14,0],[[1427,2],[1912,2],[1913,2]]], [1671,[3877.32,6865.27,3.8147e-006],[[1427,2],[1668,2],[1669,2]]], [1672,[3789.11,6426.01,0],[[1429,2],[1914,2],[1915,2]]], [1673,[3942.74,6154.37,0],[[1430,2],[1916,2]]], +[1674,[3804.95,6065.74,0],[[1431,2],[1917,2]]], [1675,[3674.26,6188.31,0],[[1431,2]]], [1676,[3248.62,7306.97,0],[[1433,2],[1918,2],[1919,2]]], [1677,[3162.68,7578.23,0],[[1433,2],[1920,2],[1677,2],[1921,2],[1922,2]]], [1678,[3172.98,7523.99,-3.8147e-006],[[1920,2],[1433,2]]], [1679,[2521.16,7619.15,0],[[1434,2],[1679,2]]], +[1680,[2979.55,5750.38,3.17891e-007],[[1435,2],[1923,2],[1924,2]]], [1681,[3088.96,5873.72,0],[[1435,2],[1665,2],[1925,2],[1908,2],[1926,2],[1927,2]]], [1682,[2529.51,5905.52,1.90735e-006],[[1436,2],[1928,2]]], [1683,[2516.99,5833.52,0],[[1436,2],[1683,2]]], [1684,[2744.63,5701.3,-4.76837e-007],[[1437,2],[1929,2],[1930,2],[1931,2]]], [1685,[714.802,7715,0],[[1441,2],[1442,2]]], +[1686,[751.607,7432.66,-7.94729e-008],[[1443,2],[1932,2],[1687,2]]], [1687,[746.461,7358.43,0],[[1443,2],[1686,2],[1933,2]]], [1688,[1730.3,6931.85,0],[[1444,2]]], [1689,[1460.88,6686.81,0],[[1448,2]]], [1690,[1045.92,7067.28,-3.97364e-008],[[1450,2],[1934,2],[1690,2]]], [1691,[923.448,7045.47,0],[[1450,2],[1935,2],[1936,2]]], +[1692,[2670.91,7630.55,0],[[1452,2],[1937,2],[1694,2],[1692,2]]], [1693,[2796.11,7689,-9.53674e-007],[[1452,2],[1454,2],[1938,2],[1939,2]]], [1694,[2686.31,7653.3,0],[[1692,2],[2213,2],[1452,2],[1694,2]]], [1695,[2909.45,8091.56,3.8147e-006],[[1453,2],[1940,2]]], [1696,[2717.76,8145.55,0],[[1453,2],[1941,2]]], [1697,[1817.38,8874.39,6.35783e-007],[[1457,2],[1942,2],[1943,2],[1944,2]]], +[1698,[1640.67,9009.27,0],[[1457,2],[1945,2]]], [1699,[1812.65,9051.63,0],[[1457,2],[1946,2],[1947,2],[1699,2],[1948,2]]], [1700,[2226.28,8582.97,9.53674e-007],[[1458,2],[1949,2],[1950,2],[1951,2],[1952,2]]], [1701,[2282.43,8459.81,0],[[1458,2],[1701,2],[1953,2]]], [1702,[2121.49,8523.34,0],[[1459,2],[1702,2],[1954,2]]], [1703,[1330.53,8694.79,-9.53674e-007],[[1461,2],[1703,2]]], +[1704,[1467.56,8727.04,9.53674e-007],[[1461,2],[1955,2]]], [1705,[4167.89,14170.1,0],[[1462,2],[1956,2],[1957,2]]], [1706,[4121.42,13775.3,0],[[1463,2],[1958,2]]], [1707,[4021.92,13868.4,0],[[1463,2]]], [1708,[4176.22,14001.9,7.62939e-006],[[1463,2],[1959,2]]], [1709,[3223.38,13298.7,0],[[1464,2],[1960,2]]], +[1710,[3483.61,13266.2,-7.62939e-006],[[1465,2],[1961,2],[1962,2]]], [1711,[4487.57,16017.4,-2.54313e-006],[[1466,2],[1963,2],[1711,2]]], [1712,[4719.21,15897.6,0],[[1466,2],[1964,2]]], [1713,[4611.12,16040.9,0],[[1466,2],[1965,2],[1966,2]]], [1714,[4696.86,15042.6,-2.54313e-006],[[1468,2],[1967,2],[1968,2]]], [1715,[4750.24,15380.5,0],[[1469,2],[1969,2]]], +[1716,[3429.24,15793.7,0],[[1471,2],[1970,2],[1971,2]]], [1717,[3538.58,15798,2.54313e-006],[[1471,2],[1972,2],[1973,2]]], [1718,[3116.98,15208.8,0],[[1475,2],[1974,2],[1975,2]]], [1719,[2837.73,14695,0],[[1476,2],[1976,2],[1977,2],[1978,2]]], [1720,[2431.28,13861.7,0],[[1479,2],[1979,2]]], [1721,[2627.76,13821.5,0],[[1479,2]]], +[1722,[3043.74,13683.9,7.62939e-006],[[1481,2],[1980,2]]], [1723,[2890.09,13554.5,0],[[1481,2],[1981,2]]], [1724,[6353.46,13782.6,-7.62939e-006],[[1482,2],[1982,2]]], [1725,[6283.25,13608.1,0],[[1482,2],[1505,2],[1983,2],[1751,2]]], [1726,[6060.81,14341.7,-5.08626e-006],[[1484,2],[1984,2],[1741,2]]], [1727,[6022.77,14196.5,0],[[1484,2]]], +[1728,[6406.42,14293.3,7.62939e-006],[[1485,2],[1985,2]]], [1729,[4388.68,12683.9,2.54313e-006],[[1488,2],[1506,2],[1986,2],[1987,2]]], [1730,[4550.55,12959.9,0],[[1489,2]]], [1731,[3974.97,13115.1,-7.62939e-006],[[1490,2]]], [1732,[4224.43,13530.6,2.54313e-006],[[1491,2],[1988,2],[1958,2]]], [1733,[4349.61,13904.5,0],[[1492,2],[1959,2]]], +[1734,[5349.26,14419,0],[[1493,2],[1989,2]]], [1735,[5249.44,14644.2,-7.62939e-006],[[1493,2]]], [1736,[5361.2,14751.8,0],[[1493,2],[1990,2]]], [1737,[5380.96,14596,0],[[1493,2],[1991,2],[1992,2]]], [1738,[4986.55,14659.7,0],[[1494,2],[1993,2]]], [1739,[4838.62,14701.8,0],[[1494,2],[1994,2],[1995,2],[1996,2],[1968,2]]], +[1740,[4661.63,14230.2,2.54313e-006],[[1495,2],[1956,2],[1997,2]]], [1741,[5947.3,14277.3,7.62939e-006],[[1497,2],[1726,2]]], [1742,[5645.61,14217.9,0],[[1498,2]]], [1743,[6379.7,12370.5,1.90735e-006],[[1499,2],[1998,2],[1999,2],[2000,2]]], [1744,[6141.5,12263,0],[[1499,2],[2001,2]]], [1745,[6422.97,13052.6,0],[[1500,2],[2002,2]]], +[1746,[6117.25,13110.7,2.54313e-006],[[1501,2],[1746,2],[2003,2]]], [1747,[6612.36,13641,0],[[1502,2],[2004,2]]], [1748,[6288.38,13256.4,0],[[1503,2],[2005,2],[2003,2],[2006,2]]], [1749,[6468.85,13190.6,0],[[1503,2],[2007,2],[2002,2]]], [1750,[6119.43,13377.1,0],[[1504,2]]], [1751,[6322.21,13620.9,-7.62939e-006],[[1505,2],[1725,2],[2008,2]]], +[1752,[4483.52,12649.4,0],[[1506,2],[2009,2]]], [1753,[5220.54,11868.5,7.62939e-006],[[1507,2],[2010,2]]], [1754,[4897.91,11837.7,0],[[1508,2],[2011,2]]], [1755,[4769.09,12216.7,0],[[1510,2],[2012,2]]], [1756,[4830.27,12094.5,0],[[1510,2],[1756,2],[2013,2]]], [1757,[5641.96,12012.8,2.54313e-006],[[1511,2],[2014,2],[2015,2]]], +[1758,[11623.7,11003.5,0],[[1512,2],[2016,2],[1762,2]]], [1759,[12376.5,11875.7,0],[[1513,2],[2017,2]]], [1760,[12069.5,11393.2,0],[[1514,2],[2018,2]]], [1761,[12415.8,11417,1.90735e-006],[[1515,2],[2019,2],[2020,2],[2021,2]]], [1762,[11495.5,10876.9,2.54313e-006],[[1516,2],[1758,2],[2016,2],[1762,2]]], [1763,[11454,10793.8,0],[[1516,2]]], +[1764,[11241.7,10618.4,-2.54313e-006],[[1517,2],[1778,2],[2022,2]]], [1765,[12041,12302.7,0],[[1519,2]]], [1766,[12492.9,12223.2,0],[[1520,2],[2023,2]]], [1767,[12327.9,12639.7,0],[[1522,2],[2024,2]]], [1768,[12120.6,12758.9,1.90735e-006],[[1522,2],[2025,2],[2026,2],[2027,2]]], [1769,[12085.4,12338.6,0],[[1524,2]]], +[1770,[11691.2,12871.5,0],[[1525,2],[2028,2]]], [1771,[10806.4,12385.2,-2.54313e-006],[[1527,2]]], [1772,[10466.1,12989.8,0],[[1529,2],[2029,2],[2030,2]]], [1773,[10486,12497.3,1.90735e-006],[[1530,2],[1543,2],[2031,2],[1773,2],[2032,2],[1787,2]]], [1774,[10558.9,12617.8,0],[[1530,2]]], [1775,[10948.3,13558,0],[[1531,2],[2033,2]]], +[1776,[11059.2,13419.3,0],[[1531,2]]], [1777,[11585,13231.9,3.8147e-006],[[1532,2],[2034,2]]], [1778,[11065.9,10624.8,0],[[1534,2],[1764,2],[2035,2]]], [1779,[10637.9,10445.9,0],[[1535,2]]], [1780,[10953.7,10869.4,0],[[1536,2],[2036,2],[1780,2]]], [1781,[11007,10963.8,0],[[1536,2]]], +[1782,[10281,10383.3,0],[[1539,2],[2037,2]]], [1783,[9829.46,12141.9,-1.90735e-006],[[1540,2],[1783,2],[2038,2],[2039,2]]], [1784,[9853.23,12674.3,0],[[1541,2],[2040,2],[2041,2]]], [1785,[9800.94,12541.6,0],[[1541,2],[2042,2]]], [1786,[10329.9,12327.8,0],[[1542,2]]], [1787,[10375.2,12477.8,7.62939e-006],[[1543,2],[1773,2],[2043,2]]], +[1788,[10313.4,12505.9,0],[[1543,2]]], [1789,[9723.8,11309.8,0],[[1544,2],[2044,2]]], [1790,[9794.62,11106.7,0],[[1544,2]]], [1791,[9577.03,11105.3,0],[[1544,2],[2045,2]]], [1792,[9962.83,10941.9,0],[[1545,2]]], [1793,[9904.19,10735.9,7.62939e-006],[[1545,2],[2046,2]]], +[1794,[15777.4,6951.09,0],[[1546,2],[2047,2],[2048,2],[2049,2]]], [1795,[15898.8,6732.55,0],[[1547,2]]], [1796,[15914.9,7105.9,-2.54313e-006],[[1548,2],[2050,2],[1796,2]]], [1797,[15971.1,7456.02,-7.62939e-006],[[1549,2],[2051,2]]], [1798,[16131.6,7441.67,0],[[1549,2],[1550,2]]], [1799,[16081.2,6727.56,-5.72205e-006],[[1551,2],[2052,2],[1799,2]]], +[1800,[16232,6217.44,0],[[1552,2],[1851,2],[2053,2]]], [1801,[16367.8,6130.72,0],[[1553,2],[2054,2],[1851,2],[2053,2]]], [1802,[16528.8,6389.33,0],[[1553,2],[2055,2]]], [1803,[16629.3,6493.06,-7.62939e-006],[[1554,2],[2056,2]]], [1804,[15981.8,7735.03,0],[[1555,2],[1804,2]]], [1805,[15917.9,7931.33,2.54313e-006],[[1555,2],[1562,2],[2057,2]]], +[1806,[16297.2,8696.89,0],[[1557,2],[2058,2]]], [1807,[16285.2,8966.11,0],[[1558,2],[2059,2]]], [1808,[16594.8,8997.27,-3.8147e-006],[[1558,2],[2060,2]]], [1809,[16932.3,8552.32,0],[[1559,2],[2061,2],[2062,2]]], [1810,[17063.5,8857.76,0],[[1560,2],[2063,2]]], [1811,[17062.3,9001.81,0],[[1560,2],[2064,2],[2065,2]]], +[1812,[16122.7,8447.59,-7.62939e-006],[[1561,2],[2066,2],[2058,2]]], [1813,[17939.2,6318.75,-1.27157e-006],[[1563,2],[1569,2],[2067,2]]], [1814,[17833.9,6199.55,0],[[1563,2],[2068,2],[1814,2]]], [1815,[17127.7,6080.31,0],[[1564,2],[2069,2]]], [1816,[17498.9,5721.21,0],[[1565,2],[1816,2],[2070,2],[2071,2]]], [1817,[17543.8,5503.94,7.94729e-008],[[1565,2],[2072,2],[2073,2],[2074,2],[2075,2],[2076,2]]], +[1818,[16633.8,6001.33,0],[[1566,2],[1843,2],[2054,2],[2077,2]]], [1819,[18293.7,6669.47,0],[[1567,2],[2078,2]]], [1820,[18348.6,6851.64,1.58946e-007],[[1567,2],[2079,2],[2080,2]]], [1821,[18149,6475.1,0],[[1568,2],[2081,2],[2067,2]]], [1822,[17961.5,8206.37,-2.38419e-007],[[1570,2],[1579,2],[2082,2],[2083,2]]], [1823,[17944.3,8395.16,4.76837e-008],[[1571,2],[2082,2],[2084,2],[2085,2],[2086,2]]], +[1824,[18153.6,7413.9,0],[[1575,2],[2087,2]]], [1825,[17497.5,8383.7,0],[[1580,2],[2088,2],[2089,2]]], [1826,[15838,3502.61,0],[[1581,2],[2090,2],[2091,2]]], [1827,[14585.8,4575.58,-3.8147e-006],[[1583,2]]], [1828,[14377.1,4020.15,0],[[1584,2],[2092,2]]], [1829,[14146,4343.07,-3.8147e-006],[[1585,2],[2093,2]]], +[1830,[14300.1,4451.17,0],[[1585,2],[2094,2]]], [1831,[14539.9,3800.86,0],[[1586,2],[2095,2],[2092,2]]], [1832,[15131.6,3768.08,0],[[1587,2],[1835,2]]], [1833,[14938.2,3622.45,0],[[1587,2],[2096,2]]], [1834,[14890.8,3738.87,1.90735e-006],[[1588,2],[1834,2]]], [1835,[15311.1,3761.72,-3.17891e-007],[[1589,2],[1832,2],[2097,2]]], +[1836,[14508,5556.88,-2.54313e-006],[[1590,2],[1599,2],[2098,2]]], [1837,[14241.9,4703.1,0],[[1593,2]]], [1838,[14036.9,5088.66,0],[[1595,2],[1838,2],[2099,2]]], [1839,[13844.5,5031.69,0],[[1595,2],[2100,2]]], [1840,[14768.5,5983.65,7.62939e-006],[[1596,2],[2101,2]]], [1841,[14924.7,6055.89,0],[[1598,2],[2102,2]]], +[1842,[16135.3,5895.54,0],[[1600,2],[2103,2]]], [1843,[16793.6,5868.21,0],[[1602,2],[1818,2],[2077,2]]], [1844,[17185.7,5084.1,0],[[1603,2],[2104,2],[2105,2],[2106,2],[2107,2],[2108,2]]], [1845,[17082,4914,2.38419e-007],[[1604,2],[1605,2],[2109,2],[2105,2],[2110,2]]], [1846,[16971.1,4776.24,-2.38419e-007],[[1605,2],[1606,2],[2111,2],[1846,2],[2112,2]]], [1847,[17105.6,4805.43,0],[[1605,2],[2113,2],[2110,2]]], +[1848,[15542.3,6508.06,-7.62939e-006],[[1607,2]]], [1849,[15313.7,6511.88,2.54313e-006],[[1608,2],[2114,2],[2115,2]]], [1850,[15004.1,6410.82,0],[[1610,2],[2116,2],[2117,2],[2118,2],[2119,2]]], [1851,[16214.7,6104.51,3.8147e-006],[[1612,2],[1800,2],[1801,2],[2053,2]]], [1852,[10068.7,4161.36,-1.27157e-006],[[1614,2],[2120,2],[2121,2]]], [1853,[10077.6,4315.73,1.27157e-006],[[1614,2],[2122,2],[2123,2]]], +[1854,[11735.3,3718.51,0],[[1616,2]]], [1855,[11555.1,4225.2,9.53674e-007],[[1617,2],[2124,2],[2125,2],[2126,2]]], [1856,[11427,4184.31,0],[[1617,2]]], [1857,[10648,4213.4,0],[[1618,2],[2127,2]]], [1858,[11203.6,4395.56,0],[[1619,2],[2128,2],[1858,2],[2129,2]]], [1859,[10924.8,4444.41,0],[[1619,2],[2130,2]]], +[1860,[12494.9,2455.93,0],[[1620,2],[1860,2],[2131,2]]], [1861,[12494.6,2564.78,0],[[1620,2],[2132,2]]], [1862,[12325,2314.44,-6.35783e-007],[[1622,2],[2133,2],[2134,2]]], [1863,[11818.2,1779.51,0],[[1623,2],[2135,2]]], [1864,[11438.3,1600.03,0],[[1624,2],[2136,2]]], [1865,[11380.5,1797.22,0],[[1624,2],[2137,2],[1865,2],[2138,2]]], +[1866,[11618.8,1688.5,-1.90735e-006],[[1624,2],[2139,2]]], [1867,[12379.7,2858.43,0],[[1625,2]]], [1868,[12442.5,2966.87,1.90735e-006],[[1625,2],[2140,2],[2141,2],[2142,2]]], [1869,[12452.9,3033.06,0],[[1626,2],[2143,2],[1869,2]]], [1870,[12278.8,3046.03,1.27157e-006],[[1627,2],[2144,2],[2145,2]]], [1871,[9877.05,2055.91,9.53674e-007],[[1629,2],[2146,2]]], +[1872,[9786.6,2246.42,0],[[1629,2],[2147,2],[1874,2]]], [1873,[9612.03,2539.85,1.90735e-006],[[1630,2],[2148,2]]], [1874,[9736.77,2314.18,-1.90735e-006],[[1631,2],[1872,2],[2147,2]]], [1875,[9952.95,3488.62,0],[[1632,2],[2149,2],[2150,2]]], [1876,[10064.9,3356.6,-1.90735e-006],[[1632,2],[2151,2]]], [1877,[9355.47,3094.53,-9.53674e-007],[[1634,2],[2152,2],[2153,2],[1877,2]]], +[1878,[9370.25,3262.14,-6.35783e-007],[[1634,2],[2154,2],[2155,2]]], [1879,[9428.07,2673.34,-6.35783e-007],[[1635,2],[1879,2],[2156,2]]], [1880,[8729.69,6027.27,0],[[1636,2],[2157,2],[2158,2]]], [1881,[8676.63,6344.38,-7.62939e-006],[[1637,2],[2159,2]]], [1882,[8207.02,6478.39,0],[[1638,2],[2160,2]]], [1883,[7314.93,4999.15,-3.8147e-006],[[1641,2],[2161,2]]], +[1884,[8108.68,5406.92,0],[[1642,2],[2162,2]]], [1885,[8033.17,5129.8,-1.27157e-006],[[1642,2],[2163,2],[2164,2]]], [1886,[8225.99,5207.22,0],[[1642,2],[2165,2]]], [1887,[7059.3,4604.93,1.27157e-006],[[1643,2],[2166,2],[2167,2]]], [1888,[6423.32,4549.75,1.27157e-006],[[1644,2],[2168,2],[1888,2]]], [1889,[6607.9,4492.49,2.54313e-006],[[1644,2],[2169,2],[1890,2],[1889,2]]], +[1890,[6579.3,4493.47,3.8147e-006],[[1889,2],[2443,2],[1890,2],[1644,2]]], [1891,[6433.86,4859.42,1.27157e-006],[[1645,2],[2170,2],[2171,2]]], [1892,[6121.66,5694.63,0],[[1646,2]]], [1893,[5983.01,5562.86,1.27157e-006],[[1648,2],[2172,2],[2173,2]]], [1894,[6305.07,5350.67,1.27157e-006],[[1649,2],[2174,2],[2175,2]]], [1895,[7245.44,7264.58,2.54313e-006],[[1650,2],[2176,2],[2177,2]]], +[1896,[7621.29,7023.04,-7.62939e-006],[[1651,2],[2178,2]]], [1897,[7596.18,7211.83,-1.90735e-006],[[1651,2],[1897,2],[2179,2],[2180,2]]], [1898,[7002.13,6571.45,0],[[1652,2]]], [1899,[6977.89,6988.35,0],[[1653,2]]], [1900,[6884.57,6755.37,0],[[1653,2],[2181,2],[2182,2]]], [1901,[6864.83,6998.19,0],[[1653,2],[2183,2]]], +[1902,[5782.12,5947.9,0],[[1655,2],[2184,2],[2185,2]]], [1903,[5694.66,5789.16,0],[[1655,2],[2186,2]]], [1904,[6091.39,6152.89,7.62939e-006],[[1658,2],[1659,2],[1904,2]]], [1905,[5955,6250.21,0],[[1658,2],[2187,2],[2188,2]]], [1906,[6558.8,6782.24,0],[[1662,2],[2189,2]]], [1907,[3298.47,5912.99,6.35783e-007],[[1665,2],[2190,2],[2191,2]]], +[1908,[3151.87,5915.2,0],[[1665,2],[1681,2],[2192,2]]], [1909,[3894.51,7132.63,-1.27157e-006],[[1666,2],[2193,2],[2194,2]]], [1910,[3468.1,7098.63,0],[[1667,2],[2195,2]]], [1911,[4018.5,7052.75,0],[[1668,2],[2196,2]]], [1912,[4161.57,6804.58,0],[[1670,2],[2197,2]]], [1913,[4019.16,6632.33,0],[[1670,2],[1913,2],[2198,2],[2199,2],[1914,2]]], +[1914,[3906.42,6495.53,0],[[1672,2],[1913,2]]], [1915,[3770.49,6339.77,0],[[1672,2],[2200,2]]], [1916,[4030.23,6131.86,-1.90735e-006],[[1673,2],[2201,2],[2202,2],[1917,2],[2203,2]]], [1917,[3930.33,6009.51,0],[[1674,2],[1916,2],[2202,2]]], [1918,[3237.69,7246.64,0],[[1676,2]]], [1919,[3282.56,7272.99,0],[[1676,2],[2195,2],[1919,2]]], +[1920,[3177.86,7552,0],[[1677,2],[1678,2],[1920,2]]], [1921,[3157.74,7693.56,0],[[1677,2],[2204,2]]], [1922,[2997.61,7588,0],[[1677,2],[1938,2]]], [1923,[3101.93,5677.09,0],[[1680,2],[2205,2],[1927,2]]], [1924,[2945.78,5636.63,3.17891e-007],[[1680,2],[1931,2],[2206,2]]], [1925,[3131.76,5916.74,-1.90735e-006],[[1681,2],[1925,2]]], +[1926,[2943.18,5972.17,0],[[1681,2],[2207,2]]], [1927,[3151.97,5805.87,-6.35783e-007],[[1681,2],[1923,2],[2192,2]]], [1928,[2464.48,5819.41,-3.17891e-007],[[1682,2],[1929,2],[1928,2]]], [1929,[2592.73,5758.89,0],[[1684,2],[1928,2]]], [1930,[2735.45,5638.14,3.17891e-007],[[1684,2],[2208,2],[2209,2],[1930,2]]], [1931,[2832.01,5674.47,-3.17891e-007],[[1684,2],[1924,2],[2210,2]]], +[1932,[773.386,7514.39,0],[[1686,2]]], [1933,[791.704,7319.46,-2.38419e-007],[[1687,2]]], [1934,[975.956,7062.21,0],[[1690,2]]], [1935,[899.69,7020.59,0],[[1691,2]]], [1936,[881.598,7075.47,3.97364e-008],[[1691,2],[2211,2],[2212,2]]], [1937,[2641.3,7564.95,0],[[1692,2]]], +[1938,[2864.28,7587.09,1.27157e-006],[[1693,2],[1922,2],[2214,2],[1938,2]]], [1939,[2871.25,7737.66,0],[[1693,2],[2215,2]]], [1940,[2964.22,8116.18,0],[[1695,2],[2216,2],[2217,2]]], [1941,[2687.69,8223.59,0],[[1696,2],[2218,2]]], [1942,[1892.54,8960.24,6.35783e-007],[[1697,2],[2219,2],[1946,2],[2220,2]]], [1943,[1939.1,8796.18,-6.35783e-007],[[1697,2],[2221,2],[1944,2],[1943,2]]], +[1944,[1928.81,8790.52,0],[[1943,2],[2501,2],[1944,2],[1697,2]]], [1945,[1605.23,9015.29,-6.35783e-007],[[1698,2],[2222,2],[2223,2]]], [1946,[1848.08,9117.77,0],[[1699,2],[1942,2],[2224,2],[2222,2],[2225,2],[2226,2]]], [1947,[1802.55,9042.32,-6.35783e-007],[[1699,2]]], [1948,[1739.58,9108.59,0],[[1699,2],[2227,2],[2222,2]]], [1949,[2378.2,8690.55,0],[[1700,2],[2228,2]]], +[1950,[2169.32,8733.55,0],[[1700,2],[2229,2]]], [1951,[2193.04,8534.34,0],[[1700,2],[1952,2]]], [1952,[2198.19,8541.15,3.8147e-006],[[1951,2],[2507,2],[1700,2]]], [1953,[2490.54,8502.29,0],[[1701,2],[2230,2],[2231,2]]], [1954,[2116.11,8531.58,0],[[1702,2]]], [1955,[1479.25,8755.3,6.35783e-007],[[1704,2],[2223,2],[2232,2]]], +[1956,[4374.8,14204.8,7.62939e-006],[[1705,2],[1740,2]]], [1957,[4179.34,14251.6,7.62939e-006],[[1705,2]]], [1958,[4138.88,13665.6,0],[[1706,2],[1732,2],[2233,2]]], [1959,[4281.99,13987.6,0],[[1708,2],[1733,2]]], [1960,[3178.33,13162.9,0],[[1709,2],[2234,2]]], [1961,[3545.3,13091.6,0],[[1710,2],[2235,2],[2236,2]]], +[1962,[3539.02,13277.2,0],[[1710,2]]], [1963,[4377.62,16109.9,0],[[1711,2],[2237,2]]], [1964,[4759.08,15870.2,0],[[1712,2],[2238,2],[2239,2]]], [1965,[4693.19,16138.3,0],[[1713,2],[2240,2],[2241,2]]], [1966,[4577.38,16072.6,0],[[1713,2]]], [1967,[4798.97,15165.1,0],[[1714,2],[1967,2]]], +[1968,[4766.9,14896.6,2.54313e-006],[[1714,2],[1739,2],[2242,2],[1996,2]]], [1969,[4844.04,15462.1,0],[[1715,2],[2243,2]]], [1970,[3390.94,15805.3,0],[[1716,2],[2244,2],[2245,2],[1970,2]]], [1971,[3388.63,15776.2,0],[[1716,2]]], [1972,[3679.89,15882.9,2.54313e-006],[[1717,2],[2246,2],[2247,2]]], [1973,[3514.68,15858.6,0],[[1717,2]]], +[1974,[3094.2,15328.4,0],[[1718,2],[2248,2],[2249,2]]], [1975,[3011.96,15172.9,0],[[1718,2],[2250,2],[2251,2]]], [1976,[2782.29,14832.4,0],[[1719,2],[1976,2]]], [1977,[2766.24,14634.9,-2.54313e-006],[[1719,2],[2252,2],[2253,2]]], [1978,[2851.83,14677.4,0],[[1719,2]]], [1979,[2369.06,13863.8,-2.54313e-006],[[1720,2],[2254,2],[2255,2]]], +[1980,[3065.94,13674.2,0],[[1722,2]]], [1981,[2799.14,13506.7,0],[[1723,2],[2256,2],[2257,2]]], [1982,[6372.84,13833.1,0],[[1724,2]]], [1983,[6308.29,13605.2,-7.62939e-006],[[1725,2],[1983,2]]], [1984,[6005.99,14444.2,1.90735e-006],[[1726,2],[2258,2],[2259,2],[2260,2]]], [1985,[6527.18,14379.6,-7.62939e-006],[[1728,2],[2261,2]]], +[1986,[4458.95,12656.5,0],[[1729,2]]], [1987,[4298.22,12698.4,-2.54313e-006],[[1729,2],[2262,2],[2263,2]]], [1988,[4065.87,13463,7.62939e-006],[[1732,2],[2264,2]]], [1989,[5358.2,14402.4,0],[[1734,2]]], [1990,[5430.96,14871.4,2.54313e-006],[[1736,2],[2265,2],[2266,2]]], [1991,[5449.23,14515.6,2.54313e-006],[[1737,2],[1991,2],[2267,2]]], +[1992,[5470.86,14639.8,0],[[1737,2]]], [1993,[5085.16,14722.3,0],[[1738,2],[2268,2]]], [1994,[4986.05,14783.9,-7.62939e-006],[[1739,2],[2269,2]]], [1995,[4709,14618.1,0],[[1739,2],[2270,2]]], [1996,[4783.21,14840.8,0],[[1739,2],[1968,2],[2271,2]]], [1997,[4546.37,14355.9,0],[[1740,2],[2272,2]]], +[1998,[6365.06,12199.7,0],[[1743,2],[2273,2]]], [1999,[6412.27,12619.9,2.54313e-006],[[1743,2],[2274,2],[2275,2]]], [2000,[6575.87,12429,5.08626e-006],[[1743,2],[2276,2],[2277,2]]], [2001,[5993.5,12150.5,0],[[1744,2],[2278,2]]], [2002,[6464.1,13081.1,-2.54313e-006],[[1745,2],[1749,2],[2007,2],[2279,2]]], [2003,[6215.92,13185.4,0],[[2003,2]]], +[2004,[6733.48,13723.1,0],[[1747,2],[2280,2]]], [2005,[6232.71,13211.8,0],[[1748,2],[2281,2],[2005,2]]], [2006,[6243.82,13238.8,0],[[2281,2],[1748,2]]], [2007,[6498.63,13126.2,7.62939e-006],[[1749,2],[2002,2],[2282,2]]], [2008,[6396.4,13607.1,0],[[1751,2]]], [2009,[4519.42,12541.1,0],[[1752,2],[2283,2]]], +[2010,[5243.43,11807.9,-2.54313e-006],[[1753,2],[2284,2],[2285,2]]], [2011,[4782.06,11708,-7.62939e-006],[[1754,2],[2286,2]]], [2012,[4601.84,12248.4,-7.62939e-006],[[1755,2],[2287,2]]], [2013,[4671.33,12056.7,0],[[1756,2],[2288,2]]], [2014,[5767.32,11898.5,0],[[1757,2],[2289,2]]], [2015,[5692.19,12025.4,0],[[1757,2]]], +[2016,[11550.9,10960.3,-1.90735e-006],[[1758,2],[1762,2],[2016,2]]], [2017,[12477.6,11794.9,-7.62939e-006],[[1759,2]]], [2018,[12064.2,11366.2,0],[[1760,2]]], [2019,[12315.3,11406.8,0],[[1761,2]]], [2020,[12490.8,11265.7,0],[[1761,2],[2290,2]]], [2021,[12578.6,11368.6,0],[[1761,2],[2291,2]]], +[2022,[11231.4,10422.2,0],[[1764,2],[2292,2]]], [2023,[12610.7,12273.1,7.62939e-006],[[1766,2],[2293,2]]], [2024,[12463.4,12693.2,0],[[1767,2],[2294,2]]], [2025,[12024.4,12885.8,0],[[1768,2],[2295,2]]], [2026,[12157.7,12793,0],[[1768,2]]], [2027,[12074.2,12741.3,0],[[1768,2]]], +[2028,[11766,12953.4,0],[[1770,2],[2296,2]]], [2029,[10344.4,12895.8,0],[[1772,2],[2297,2]]], [2030,[10407.5,13142.3,0],[[1772,2],[2298,2],[2299,2]]], [2031,[10520.4,12513.3,0],[[1773,2]]], [2032,[10466.2,12449.1,2.54313e-006],[[1773,2],[2032,2],[2300,2]]], [2033,[10929.4,13663.6,-2.54313e-006],[[1775,2],[2301,2],[2302,2]]], +[2034,[11624.3,13326.1,-3.8147e-006],[[1777,2],[2303,2]]], [2035,[11053.2,10431.4,0],[[1778,2],[2304,2]]], [2036,[10949.1,10867,2.54313e-006],[[1780,2]]], [2037,[10266.7,10347.9,-2.54313e-006],[[1782,2],[2305,2],[2306,2]]], [2038,[9636.88,12075,0],[[1783,2],[2307,2]]], [2039,[9807.83,12019.9,2.54313e-006],[[1783,2],[2308,2],[2309,2]]], +[2040,[9987,12784.8,7.62939e-006],[[1784,2],[2310,2]]], [2041,[9802.2,12720.8,-2.54313e-006],[[1784,2],[2311,2],[2312,2]]], [2042,[9713.77,12518,-2.54313e-006],[[1785,2],[2042,2],[2313,2]]], [2043,[10335.8,12590.3,0],[[1787,2],[2314,2]]], [2044,[9670.2,11445.7,0],[[1789,2],[2315,2]]], [2045,[9430.03,11060.3,0],[[1791,2],[2316,2],[2317,2]]], +[2046,[9857.25,10616.2,-5.08626e-006],[[1793,2],[2318,2],[2046,2],[2319,2]]], [2047,[15809.5,7018.9,0],[[1794,2],[2320,2]]], [2048,[15694.6,6824.38,-7.62939e-006],[[1794,2],[2321,2],[2048,2]]], [2049,[15646.4,6834.06,0],[[1794,2],[2322,2]]], [2050,[15850.8,7102.46,0],[[1796,2],[2320,2]]], [2051,[15889.2,7402.87,7.62939e-006],[[1797,2],[2323,2]]], +[2052,[16013.5,6701.55,-2.54313e-006],[[1799,2],[2324,2]]], [2053,[16244.2,6116.22,9.53674e-007],[[1851,2],[2103,2],[1801,2],[2396,2],[1800,2]]], [2054,[16510.6,6076.1,0],[[1801,2],[1818,2]]], [2055,[16471.6,6462.01,7.62939e-006],[[1802,2],[2056,2]]], [2056,[16560.9,6494.13,0],[[1803,2],[2055,2]]], [2057,[15842.6,7956.43,5.08626e-006],[[1805,2],[2325,2],[2326,2]]], +[2058,[16182.5,8596.62,-3.05176e-006],[[1806,2],[1812,2],[2066,2],[2327,2],[2058,2],[2328,2]]], [2059,[16177.3,9016.05,0],[[1807,2],[2329,2]]], [2060,[16739.7,9122.81,0],[[1808,2],[2330,2]]], [2061,[17099.5,8557.65,0],[[1809,2],[2331,2]]], [2062,[16971.3,8439.4,0],[[1809,2]]], [2063,[17205.5,8857.62,0],[[1810,2],[2332,2]]], +[2064,[17182.7,9110.63,0],[[1811,2],[2333,2]]], [2065,[17001.8,9051.56,0],[[1811,2]]], [2066,[16109.2,8535.36,-7.62939e-006],[[1812,2],[2058,2],[2334,2]]], [2067,[18090.4,6308.52,0],[[1813,2],[1821,2],[2335,2]]], [2068,[17801.8,6060.68,0],[[1814,2],[2336,2]]], [2069,[17061.8,6097.41,0],[[1815,2]]], +[2070,[17490.6,5772.87,0],[[1816,2],[2337,2]]], [2071,[17419,5635.08,3.17891e-007],[[1816,2],[2338,2],[2339,2]]], [2072,[17508.1,5552.41,0],[[1817,2],[2072,2],[2340,2],[2075,2],[2339,2]]], [2073,[17673.2,5612.6,0],[[1817,2],[2341,2]]], [2074,[17638,5363.51,-5.29819e-008],[[1817,2],[2342,2],[2074,2],[2343,2],[2076,2],[2344,2],[2345,2],[2346,2]]], [2075,[17448.8,5488.16,0],[[1817,2],[2072,2],[2347,2],[2340,2]]], +[2076,[17489.3,5406.56,0],[[1817,2],[2074,2],[2348,2],[2343,2],[2076,2]]], [2077,[16796.3,5884.94,4.76837e-007],[[1843,2],[1818,2],[2374,2],[2375,2]]], [2078,[18304.4,6499.89,0],[[1819,2],[2349,2]]], [2079,[18332.4,6776.72,0],[[1820,2],[2350,2],[2079,2]]], [2080,[18417.3,6936.64,0],[[1820,2],[2351,2]]], [2081,[18134.7,6322.63,0],[[1821,2],[2352,2]]], +[2082,[17971.7,8290.62,0],[[1822,2],[1823,2],[2353,2]]], [2083,[17914.7,8218.67,0],[[1822,2],[2083,2],[2353,2]]], [2084,[17891.9,8413.87,0],[[1823,2]]], [2085,[17990.8,8508.33,0],[[1823,2],[2354,2],[2355,2]]], [2086,[17767.4,8378.15,0],[[1823,2],[2356,2]]], [2087,[18186.6,7322.76,-4.76837e-007],[[1824,2],[2357,2]]], +[2088,[17332.6,8417.47,0],[[1825,2],[2358,2]]], [2089,[17512.5,8415.36,0],[[1825,2],[2359,2],[2356,2]]], [2090,[16024.2,3490.07,-9.53674e-007],[[1826,2],[2360,2]]], [2091,[15748.9,3481.8,0],[[1826,2],[2361,2],[2362,2]]], [2092,[14352,3871.75,0],[[1828,2],[1831,2],[2095,2]]], [2093,[14017.3,4366.51,0],[[1829,2],[2363,2]]], +[2094,[14326.3,4551.67,-3.8147e-006],[[1830,2]]], [2095,[14368.5,3822.83,0],[[1831,2],[2092,2],[2364,2],[2365,2]]], [2096,[14929.4,3481.86,0],[[1833,2],[2366,2]]], [2097,[15293.2,3598.77,0],[[1835,2],[2367,2]]], [2098,[14506,5688.23,0],[[1836,2],[2368,2]]], [2099,[14027.6,5223.36,2.54313e-006],[[1838,2],[2369,2],[2370,2]]], +[2100,[13694.5,5061.75,-3.8147e-006],[[1839,2],[2371,2]]], [2101,[14718,6060.6,0],[[1840,2],[2372,2]]], [2102,[14876.3,6129.79,0],[[1841,2]]], [2103,[16251.7,5965.18,0],[[1842,2],[2373,2],[2053,2]]], [2104,[17155.4,5168.27,2.38419e-007],[[1844,2],[2376,2],[2377,2],[2104,2],[2378,2]]], [2105,[17152.6,5050.43,0],[[1844,2],[1845,2],[2379,2],[2380,2]]], +[2106,[17218.3,5035.92,0],[[1844,2],[2381,2],[2382,2],[2106,2]]], [2107,[17382.5,5121.75,6.81196e-008],[[1844,2],[2383,2],[2108,2],[2384,2],[2385,2],[2107,2],[2386,2],[2387,2]]], [2108,[17271.9,5191.15,-3.17891e-007],[[1844,2],[2107,2],[2388,2],[2384,2]]], [2109,[17131.4,4981,0],[[1845,2],[2389,2]]], [2110,[17141.7,4878.8,0],[[1845,2],[1847,2],[2390,2]]], [2111,[16978.1,4798.28,0],[[1846,2],[2391,2],[2111,2]]], +[2112,[17107.1,4686.44,1.58946e-007],[[1846,2],[2113,2],[2392,2]]], [2113,[17180.5,4747.84,1.58946e-007],[[1847,2],[2112,2],[2390,2]]], [2114,[15389.6,6615.65,0],[[1849,2],[2393,2]]], [2115,[15153.3,6578.53,0],[[1849,2],[2394,2],[2118,2]]], [2116,[15035,6393.52,7.62939e-006],[[1850,2]]], [2117,[15022.4,6428.19,-7.62939e-006],[[1850,2]]], +[2118,[14995.5,6589.55,0],[[1850,2],[2115,2],[2394,2]]], [2119,[14825.5,6497.35,0],[[1850,2],[2395,2]]], [2120,[10083.8,4125.88,-9.53674e-007],[[1852,2],[2397,2],[2120,2],[2398,2]]], [2121,[9954.61,4174.36,0],[[1852,2]]], [2122,[10029.1,4413.09,0],[[1853,2],[2399,2],[2400,2]]], [2123,[9986.26,4295.27,0],[[1853,2]]], +[2124,[11611.5,4427.37,0],[[1855,2],[2401,2]]], [2125,[11727.3,4288.33,0],[[1855,2],[2402,2]]], [2126,[11437.1,4317.26,3.8147e-006],[[1855,2],[2128,2]]], [2127,[10635.6,4222.21,-1.27157e-006],[[1857,2],[2403,2],[2127,2],[2404,2]]], [2128,[11315.3,4372.56,0],[[1858,2],[2126,2],[2405,2],[2406,2]]], [2129,[11209.1,4447.87,0],[[1858,2]]], +[2130,[10770.9,4443.66,0],[[1859,2],[2407,2]]], [2131,[12593.2,2351.35,0],[[1860,2],[2408,2],[2409,2]]], [2132,[12628.8,2547.81,0],[[1861,2],[2410,2]]], [2133,[12291.7,2129.52,-1.90735e-006],[[1862,2],[2411,2]]], [2134,[12380.5,2307.64,0],[[1862,2]]], [2135,[11935.4,1694.77,0],[[1863,2],[2412,2]]], +[2136,[11437.8,1574.01,0],[[1864,2],[2413,2],[2414,2]]], [2137,[11310.9,1795.78,0],[[1865,2],[2415,2],[2416,2]]], [2138,[11329.7,1904.25,3.8147e-006],[[1865,2]]], [2139,[11621.7,1568.86,0],[[1866,2],[2417,2],[2413,2]]], [2140,[12541.2,3076.87,0],[[1868,2],[2418,2]]], [2141,[12448.8,2837.69,-3.8147e-006],[[1868,2],[2141,2]]], +[2142,[12544.7,2949.89,1.27157e-006],[[1868,2],[2142,2],[2419,2]]], [2143,[12456.2,3040.78,-3.8147e-006],[[1869,2],[2144,2]]], [2144,[12434.3,3066.56,-3.8147e-006],[[1870,2],[2143,2],[2420,2]]], [2145,[12272.5,3223.3,0],[[1870,2],[2421,2]]], [2146,[9828.81,1947.49,0],[[1871,2],[2146,2]]], [2147,[9732.12,2255.77,0],[[1872,2],[1874,2],[2422,2]]], +[2148,[9501.75,2565.29,0],[[1873,2],[2156,2]]], [2149,[9890.85,3521.57,0],[[1875,2],[2423,2],[2424,2]]], [2150,[9971.44,3471.68,0],[[1875,2]]], [2151,[10143.2,3331.96,1.90735e-006],[[1876,2]]], [2152,[9290.17,3118.44,0],[[1877,2]]], [2153,[9256.22,2920.15,-6.35783e-007],[[1877,2],[2425,2],[2426,2]]], +[2154,[9204.2,3285.69,0],[[1878,2],[2427,2]]], [2155,[9387.1,3375.73,6.35783e-007],[[1878,2],[2428,2],[2429,2]]], [2156,[9380.72,2579.64,6.35783e-007],[[1879,2],[2148,2],[2430,2]]], [2157,[8885.81,5925.1,0],[[1880,2],[2431,2]]], [2158,[8774.91,6126.08,0],[[1880,2],[2432,2]]], [2159,[8707.93,6367.61,7.62939e-006],[[1881,2]]], +[2160,[8214.2,6491.66,0],[[1882,2],[2433,2],[2434,2]]], [2161,[7287.04,5000.45,-3.8147e-006],[[1883,2]]], [2162,[8084.83,5488.65,0],[[1884,2],[2435,2]]], [2163,[7980.38,5139.5,0],[[1885,2]]], [2164,[8140.69,5005.95,0],[[1885,2],[2436,2]]], [2165,[8342.74,5155.7,3.8147e-006],[[1886,2],[2437,2]]], +[2166,[7184.81,4527.8,9.53674e-007],[[1887,2],[2438,2],[2166,2],[2439,2]]], [2167,[7040.71,4539.67,0],[[1887,2]]], [2168,[6378.37,4435.89,-2.54313e-006],[[1888,2],[2440,2],[2441,2]]], [2169,[6785.31,4477.53,0],[[1889,2],[2442,2]]], [2170,[6360.65,4948.47,-1.27157e-006],[[1891,2],[2444,2],[2445,2]]], [2171,[6267.37,4803.85,0],[[1891,2],[2446,2]]], +[2172,[5984.17,5719.62,0],[[2172,2]]], [2173,[5870.36,5519.69,1.27157e-006],[[1893,2],[2447,2],[2448,2]]], [2174,[6349.45,5192.72,0],[[1894,2],[2449,2],[2445,2]]], [2175,[6424.64,5340.18,0],[[1894,2]]], [2176,[7156.02,7291.71,2.54313e-006],[[1895,2],[2450,2],[2451,2]]], [2177,[7309.53,7387.33,2.54313e-006],[[1895,2],[2452,2],[2453,2]]], +[2178,[7757.81,6947.55,0],[[1896,2],[2454,2]]], [2179,[7743.37,7267.33,0],[[1897,2],[2455,2]]], [2180,[7565.37,7227.62,0],[[1897,2]]], [2181,[6841.7,6647.87,0],[[1900,2],[2182,2],[2181,2]]], [2182,[6852.86,6652.97,-7.62939e-006],[[2181,2],[1900,2]]], [2183,[6801.94,7042.37,0],[[1901,2],[2456,2]]], +[2184,[5740.79,5972.19,-9.53674e-007],[[1902,2],[2457,2],[2184,2]]], [2185,[5841.43,5950.27,0],[[1902,2],[2458,2]]], [2186,[5552.86,5753.08,0],[[1903,2],[2459,2]]], [2187,[5778.59,6353.67,0],[[1905,2],[2460,2]]], [2188,[5985.57,6352.92,2.54313e-006],[[1905,2],[2461,2],[2188,2],[2462,2]]], [2189,[6597.14,6870.89,0],[[1906,2],[2463,2]]], +[2190,[3324.25,5884.71,6.35783e-007],[[1907,2],[2190,2],[2464,2],[2192,2]]], [2191,[3395.01,5975.74,0],[[1907,2],[2465,2]]], [2192,[3284.3,5821.29,0],[[1908,2],[1927,2],[2190,2],[2466,2],[2464,2]]], [2193,[4018.78,7175.54,0],[[1909,2],[2467,2],[2196,2]]], [2194,[3872.12,7244.47,0],[[1909,2],[2468,2]]], [2195,[3440.24,7128.22,0],[[1910,2],[1919,2],[2469,2],[2195,2]]], +[2196,[4079.1,7072.37,9.53674e-007],[[1911,2],[2193,2],[2470,2],[2471,2]]], [2197,[4283.24,6831.74,0],[[1912,2],[2472,2]]], [2198,[4101.86,6604.42,3.8147e-006],[[1913,2]]], [2199,[4006.21,6456.45,0],[[1913,2],[2200,2],[2473,2]]], [2200,[3901.19,6406.67,3.8147e-006],[[1915,2],[2199,2]]], [2201,[4192.41,6079.6,0],[[1916,2],[2474,2]]], +[2202,[3945.4,6001.91,0],[[1916,2],[1917,2],[2475,2],[2202,2],[2476,2]]], [2203,[4085.16,6258.46,0],[[1916,2],[2473,2],[2477,2]]], [2204,[3181.7,7765.5,-1.27157e-006],[[1921,2],[2478,2],[2479,2]]], [2205,[3139.25,5637.98,-3.17891e-007],[[1923,2],[2480,2],[2481,2]]], [2206,[2929.1,5544.67,0],[[1924,2],[2482,2],[2483,2],[2208,2],[2484,2],[2485,2],[2480,2]]], [2207,[2859.93,6070.74,-1.90735e-006],[[1926,2],[2207,2]]], +[2208,[2721.13,5563.92,1.90735e-007],[[1930,2],[2206,2],[2486,2],[2487,2],[2488,2],[2489,2]]], [2209,[2742.36,5660.68,0],[[1930,2]]], [2210,[2855.63,5729.44,0],[[1931,2]]], [2211,[840.729,7072.39,7.94729e-008],[[1936,2],[2490,2]]], [2212,[868.528,7104.65,0],[[1936,2],[2491,2]]], [2213,[2691.1,7666.77,0],[[1694,2]]], +[2214,[2846.44,7589.92,1.90735e-006],[[1938,2]]], [2215,[2860.64,7829.19,0],[[1939,2],[2492,2]]], [2216,[3080.38,7977.69,0],[[1940,2],[2493,2],[2479,2]]], [2217,[3058.43,8155.66,0],[[1940,2],[2494,2]]], [2218,[2683.31,8260.95,0],[[1941,2],[2495,2],[2496,2]]], [2219,[1905.15,9103.89,0],[[1942,2],[2497,2]]], +[2220,[1976.55,8918.44,0],[[1942,2],[2498,2],[2499,2]]], [2221,[2008.7,8808.03,-4.76837e-007],[[1943,2],[2221,2],[2500,2],[2229,2]]], [2222,[1670.13,9136.49,0],[[1945,2],[1946,2],[1948,2],[2502,2],[2226,2],[2227,2]]], [2223,[1537.33,8892.83,0],[[1945,2],[1955,2],[2503,2],[2232,2]]], [2224,[1906.03,9113.07,1.90735e-006],[[1946,2]]], [2225,[1937.16,9292.73,0],[[1946,2],[2504,2]]], +[2226,[1713.28,9131.06,0],[[2222,2],[2227,2],[1946,2]]], [2227,[1701.53,9120.29,0],[[1948,2],[2222,2],[2226,2]]], [2228,[2495.62,8745.52,0],[[1949,2],[2505,2]]], [2229,[2122.03,8846.22,0],[[1950,2],[2221,2],[2506,2]]], [2230,[2613.45,8522.25,1.90735e-006],[[1953,2],[2231,2],[2230,2],[2496,2],[2508,2]]], [2231,[2578.85,8511.49,3.8147e-006],[[2230,2],[1953,2]]], +[2232,[1415.87,8830.79,0],[[1955,2],[2223,2],[2503,2]]], [2233,[4034.92,13590.7,0],[[1958,2],[2233,2],[2509,2]]], [2234,[3078.65,13031.4,-7.62939e-006],[[1960,2],[2510,2]]], [2235,[3645.87,13130,7.62939e-006],[[1961,2]]], [2236,[3638.51,12935.3,-2.54313e-006],[[1961,2],[2511,2],[2512,2]]], [2237,[4341.68,16122.5,0],[[1963,2]]], +[2238,[4741.61,15801.6,0],[[1964,2]]], [2239,[4892.84,15835.5,0],[[1964,2],[2513,2]]], [2240,[4745.34,16191.8,2.54313e-006],[[1965,2],[2514,2],[2515,2]]], [2241,[4620.88,16207.9,0],[[1965,2]]], [2242,[4903.33,14982.4,0],[[1968,2],[2516,2]]], [2243,[4894.25,15541.1,-7.62939e-006],[[1969,2],[2517,2]]], +[2244,[3282.8,15737.2,5.08626e-006],[[1970,2],[2518,2],[2519,2]]], [2245,[3412.52,15815.6,0],[[1970,2]]], [2246,[3786.99,15947.9,0],[[1972,2],[2520,2],[2521,2]]], [2247,[3649.37,15949.8,7.62939e-006],[[1972,2]]], [2248,[3039.8,15462.6,-7.62939e-006],[[1974,2],[2522,2]]], [2249,[3137.74,15368.2,0],[[1974,2]]], +[2250,[3001.66,15211.1,-7.62939e-006],[[1975,2]]], [2251,[2822.34,15096.1,0],[[1975,2],[2523,2]]], [2252,[2626.64,14694.7,0],[[1977,2],[2252,2],[2524,2]]], [2253,[2672.81,14508.1,7.62939e-006],[[1977,2],[2525,2]]], [2254,[2319.83,13816.2,2.54313e-006],[[1979,2],[2526,2],[2527,2]]], [2255,[2435.13,14016.8,0],[[1979,2],[2528,2]]], +[2256,[2776.85,13535.8,0],[[1981,2]]], [2257,[2645.94,13430.3,0],[[1981,2],[2529,2]]], [2258,[6132.97,14511.6,0],[[1984,2],[2530,2]]], [2259,[5966.82,14491,0],[[1984,2],[2531,2],[2532,2]]], [2260,[5901.33,14418.5,0],[[1984,2]]], [2261,[6603.7,14433.3,3.8147e-006],[[1985,2],[2533,2],[2534,2],[2535,2]]], +[2262,[4090.23,12743.3,7.62939e-006],[[1987,2],[2536,2]]], [2263,[4269.3,12617,0],[[1987,2],[2537,2],[2538,2]]], [2264,[4004.42,13437.9,0],[[1988,2]]], [2265,[5560.12,14971.4,0],[[1990,2],[2539,2],[2540,2]]], [2266,[5386.58,14935.8,2.54313e-006],[[1990,2],[2541,2],[2542,2],[2266,2]]], [2267,[5464.88,14515.9,0],[[1991,2]]], +[2268,[5190.39,14798.5,-7.62939e-006],[[1993,2]]], [2269,[5124.93,14872.2,0],[[1994,2],[2543,2]]], [2270,[4610.81,14531.9,0],[[1995,2]]], [2271,[4620.04,14757.7,0],[[1996,2],[2544,2]]], [2272,[4461.15,14476.9,0],[[1997,2],[2545,2]]], [2273,[6354.03,12070.5,0],[[1998,2],[2546,2]]], +[2274,[6421.83,12781,0],[[1999,2],[2279,2]]], [2275,[6580.58,12639.1,0],[[1999,2],[2547,2]]], [2276,[6599.13,12492.3,7.62939e-006],[[2000,2]]], [2277,[6762.2,12486.4,0],[[2000,2],[2277,2],[2548,2],[2549,2]]], [2278,[5937.14,12013.7,0],[[2001,2],[2289,2]]], [2279,[6461.78,12929.4,-7.62939e-006],[[2002,2],[2274,2]]], +[2280,[6849.65,13789.7,0],[[2004,2],[2550,2]]], [2281,[6226.51,13231.7,0],[[2005,2],[2006,2],[2281,2]]], [2282,[6615.98,13201.8,0],[[2007,2],[2551,2]]], [2283,[4483.19,12466.3,0],[[2009,2],[2552,2]]], [2284,[5310.22,11650,0],[[2010,2],[2553,2]]], [2285,[5315.31,11898.1,0],[[2010,2]]], +[2286,[4706.31,11587.5,-7.62939e-006],[[2011,2],[2554,2]]], [2287,[4524.65,12261.4,-7.62939e-006],[[2012,2]]], [2288,[4548.49,11989.3,0],[[2013,2],[2555,2]]], [2289,[5793.1,11873,1.90735e-006],[[2014,2],[2278,2],[2556,2],[2557,2]]], [2290,[12566.7,11105.2,0],[[2020,2],[2558,2]]], [2291,[12704.6,11320.3,7.62939e-006],[[2021,2],[2559,2]]], +[2292,[11239.7,10378.1,2.54313e-006],[[2022,2],[2560,2],[2561,2]]], [2293,[12637.1,12277.8,2.54313e-006],[[2023,2],[2562,2],[2563,2]]], [2294,[12512.5,12714.3,0],[[2024,2],[2564,2],[2565,2]]], [2295,[11940,12993.1,-7.62939e-006],[[2025,2],[2566,2]]], [2296,[11818.8,13063,-6.35783e-007],[[2028,2],[2567,2],[2296,2]]], [2297,[10309.9,12876.9,0],[[2029,2]]], +[2298,[10495.5,13159,0],[[2030,2],[2568,2]]], [2299,[10373,13289.1,0],[[2030,2],[2569,2],[2570,2]]], [2300,[10479.4,12460.9,0],[[2032,2],[2571,2],[2300,2]]], [2301,[11055.2,13740.4,0],[[2033,2],[2572,2]]], [2302,[10875.7,13832.8,0],[[2033,2],[2573,2]]], [2303,[11544.7,13466.7,0],[[2034,2],[2574,2]]], +[2304,[11039.1,10378.8,0],[[2035,2]]], [2305,[10158.9,10252.1,-2.54313e-006],[[2037,2],[2575,2],[2576,2]]], [2306,[10385.9,10266.2,0],[[2037,2],[2577,2]]], [2307,[9498.14,12006.2,0],[[2038,2],[2578,2]]], [2308,[9723.1,11891.4,0],[[2039,2],[2579,2],[2580,2]]], [2309,[9945.55,12024.5,0],[[2039,2]]], +[2310,[10046.5,12839.7,0],[[2040,2],[2581,2],[2310,2],[2582,2]]], [2311,[9694.86,12864.2,-7.62939e-006],[[2041,2],[2583,2]]], [2312,[9648.4,12694,0],[[2041,2]]], [2313,[9562.66,12493.9,7.62939e-006],[[2042,2],[2584,2]]], [2314,[10416.3,12652.3,7.62939e-006],[[2043,2],[2585,2]]], [2315,[9645.36,11585.3,0],[[2044,2],[2586,2],[2579,2]]], +[2316,[9406.02,11041.9,-2.54313e-006],[[2045,2],[2587,2],[2588,2]]], [2317,[9388.66,11201.8,0],[[2045,2],[2317,2],[2589,2]]], [2318,[9869.87,10617.6,0],[[2046,2],[2590,2]]], [2319,[9800.38,10458.5,0],[[2046,2],[2591,2]]], [2320,[15845.1,7080.55,7.62939e-006],[[2047,2],[2050,2]]], [2321,[15680.4,6810.43,0],[[2048,2],[2592,2]]], +[2322,[15525.9,6881.64,0],[[2049,2],[2593,2]]], [2323,[15892.2,7375.37,7.62939e-006],[[2051,2]]], [2324,[15922,6658.64,7.62939e-006],[[2052,2],[2594,2]]], [2325,[15742.1,7984.79,0],[[2057,2],[2595,2],[2596,2]]], [2326,[15901.6,8079.81,-1.90735e-006],[[2057,2],[2326,2],[2597,2],[2598,2]]], [2327,[16071.8,8641.46,0],[[2058,2],[2327,2],[2599,2]]], +[2328,[16263.2,8530.46,0],[[2058,2]]], [2329,[16099.2,9059.38,-1.27157e-006],[[2059,2],[2600,2],[2601,2]]], [2330,[16798.7,9184.58,2.54313e-006],[[2060,2],[2602,2],[2603,2]]], [2331,[17181.6,8488.99,3.8147e-006],[[2061,2],[2358,2]]], [2332,[17350.5,8857.48,0],[[2063,2],[2604,2]]], [2333,[17278.7,9199.37,-3.8147e-006],[[2064,2],[2605,2]]], +[2334,[15956.7,8408.84,7.62939e-006],[[2066,2],[2606,2]]], [2335,[18131.1,6309.62,0],[[2067,2]]], [2336,[17782,5918.72,0],[[2068,2],[2607,2]]], [2337,[17379.7,5728.68,6.35783e-007],[[2070,2],[2608,2]]], [2338,[17432.8,5620.6,0],[[2071,2]]], [2339,[17349.1,5534.36,0],[[2071,2],[2072,2],[2609,2],[2340,2],[2610,2],[2611,2],[2612,2]]], +[2340,[17432.5,5535.88,0],[[2075,2],[2339,2],[2613,2],[2614,2],[2340,2]]], [2341,[17711.6,5623.7,0],[[2073,2],[2615,2],[2616,2],[2617,2]]], [2342,[17635.7,5439.15,0],[[2074,2],[2618,2],[2346,2]]], [2343,[17578.8,5319.11,7.94729e-008],[[2074,2],[2076,2],[2619,2],[2620,2],[2621,2]]], [2344,[17666.2,5171.92,0],[[2074,2],[2622,2]]], [2345,[17701.9,5317.78,0],[[2074,2],[2623,2],[2624,2],[2618,2]]], +[2346,[17702.2,5458.67,0],[[2074,2],[2342,2],[2618,2]]], [2347,[17402.7,5473.18,0],[[2075,2]]], [2348,[17417.8,5324.38,0],[[2076,2],[2612,2],[2619,2],[2625,2],[2384,2],[2626,2],[2385,2]]], [2349,[18301.1,6346.51,0],[[2078,2],[2627,2]]], [2350,[18389.2,6699.93,0],[[2079,2],[2628,2]]], [2351,[18392.6,7018.88,0],[[2080,2],[2629,2]]], +[2352,[18179,6216.59,0],[[2081,2],[2630,2],[2627,2]]], [2353,[17933.8,8288.63,0],[[2082,2],[2083,2],[2353,2]]], [2354,[18016,8507.42,0],[[2354,2],[2631,2]]], [2355,[18004.8,8655.93,0],[[2085,2],[2632,2],[2631,2],[2633,2],[2634,2]]], [2356,[17643.4,8401.36,-3.8147e-006],[[2086,2],[2089,2]]], [2357,[18226,7248.76,0],[[2087,2],[2635,2]]], +[2358,[17197.8,8444.4,0],[[2088,2],[2331,2]]], [2359,[17544.1,8566.78,0],[[2089,2],[2636,2]]], [2360,[16059.5,3486.3,0],[[2090,2],[2637,2],[2638,2]]], [2361,[15769.9,3300.45,0],[[2091,2],[2639,2],[2361,2]]], [2362,[15556.9,3488.5,0],[[2091,2],[2640,2]]], [2363,[13983.3,4373,-1.27157e-006],[[2093,2],[2641,2],[2642,2]]], +[2364,[14383.6,3774.57,0],[[2095,2]]], [2365,[14192.8,3840.16,0],[[2095,2],[2643,2]]], [2366,[14920.6,3441.1,-6.35783e-007],[[2096,2],[2644,2],[2645,2]]], [2367,[15274.1,3455.43,0],[[2097,2],[2646,2],[2647,2],[2648,2]]], [2368,[14547.2,5772.29,-7.62939e-006],[[2098,2],[2649,2]]], [2369,[14032.2,5419.85,0],[[2099,2],[2650,2]]], +[2370,[13968.3,5246.24,0],[[2099,2]]], [2371,[13565.9,5097.82,-7.62939e-006],[[2100,2],[2651,2]]], [2372,[14693,6105.96,-2.54313e-006],[[2101,2],[2372,2],[2652,2]]], [2373,[16250.9,6037.65,-3.8147e-006],[[2103,2],[2373,2]]], [2374,[16951.5,5880.15,0],[[2077,2],[2653,2]]], [2375,[16946.2,5786.44,0],[[2077,2],[2654,2]]], +[2376,[17193.2,5208.34,3.17891e-007],[[2104,2],[2376,2],[2655,2],[2388,2]]], [2377,[17147.2,5165.33,6.35783e-007],[[2104,2]]], [2378,[17102.6,5203.45,0],[[2104,2]]], [2379,[17138,4991.57,-9.53674e-007],[[2105,2]]], [2380,[17090.6,5048.21,0],[[2105,2]]], [2381,[17277.3,4978.65,1.58946e-007],[[2106,2],[2656,2],[2657,2]]], +[2382,[17200,5051.97,0],[[2106,2]]], [2383,[17324.8,5138.97,0],[[2107,2],[2383,2],[2384,2]]], [2384,[17383.2,5207.61,0],[[2107,2],[2108,2],[2348,2],[2658,2],[2383,2],[2625,2],[2386,2]]], [2385,[17485.3,5123.34,-5.29819e-008],[[2107,2],[2659,2],[2385,2],[2620,2],[2660,2],[2661,2],[2348,2],[2619,2],[2662,2],[2663,2],[2664,2]]], [2386,[17429.7,5210.14,0],[[2107,2],[2384,2]]], [2387,[17371.3,5066.72,0],[[2107,2],[2656,2],[2665,2]]], +[2388,[17263.5,5245.18,3.17891e-007],[[2108,2],[2376,2],[2666,2],[2626,2],[2655,2]]], [2389,[17208.3,4907.54,0],[[2109,2],[2667,2],[2657,2]]], [2390,[17259.9,4828.46,0],[[2110,2],[2113,2],[2668,2],[2669,2]]], [2391,[16982.8,4802.75,0],[[2111,2]]], [2392,[17104,4649.24,7.94729e-008],[[2112,2],[2670,2],[2671,2]]], [2393,[15413.7,6746.98,0],[[2114,2],[2593,2]]], +[2394,[15006.9,6650.2,-2.86102e-006],[[2115,2],[2118,2],[2672,2],[2673,2]]], [2395,[14781.8,6507.67,0],[[2119,2],[2674,2],[2675,2]]], [2396,[16252.7,6070.91,0],[[2053,2]]], [2397,[10030.8,3994.47,-3.8147e-006],[[2120,2],[2676,2]]], [2398,[10148,4100.17,0],[[2120,2]]], [2399,[9967.4,4400.5,0],[[2122,2]]], +[2400,[10012.9,4545.66,9.53674e-007],[[2122,2],[2677,2],[2678,2],[2679,2]]], [2401,[11631,4551.66,0],[[2124,2],[2680,2]]], [2402,[11860.7,4337.31,-3.8147e-006],[[2125,2],[2681,2]]], [2403,[10648.1,4286.13,0],[[2403,2],[2682,2]]], [2404,[10477.7,4310.56,0],[[2127,2],[2683,2]]], [2405,[11300.6,4342.13,3.8147e-006],[[2128,2]]], +[2406,[11375.7,4366.85,0],[[2128,2],[2684,2]]], [2407,[10629.4,4542.41,0],[[2130,2],[2685,2]]], [2408,[12729.2,2264.1,0],[[2131,2],[2686,2],[2409,2]]], [2409,[12675.6,2315.46,0],[[5168,2],[5914,2],[2131,2],[2408,2]]], [2410,[12781.8,2532.71,-6.35783e-007],[[2132,2],[2687,2],[2688,2]]], [2411,[12293.7,2095.19,-1.27157e-006],[[2133,2],[2689,2],[2690,2]]], +[2412,[12045,1651.72,0],[[2135,2],[2691,2],[2692,2],[2693,2]]], [2413,[11565,1536.58,-2.38419e-007],[[2136,2],[2139,2],[2694,2],[2417,2],[2413,2]]], [2414,[11400.1,1459.19,0],[[2136,2],[2695,2],[2696,2]]], [2415,[11256.2,1813.65,0],[[2137,2],[2697,2],[2415,2]]], [2416,[11272.5,1689.4,-6.35783e-007],[[2137,2],[2416,2],[2698,2]]], [2417,[11616.1,1524.91,0],[[2139,2],[2413,2],[2699,2]]], +[2418,[12573.5,3110.8,1.27157e-006],[[2140,2],[2700,2],[2420,2]]], [2419,[12529.4,2807.99,0],[[2142,2]]], [2420,[12457.4,3070.08,3.8147e-006],[[2144,2],[2418,2]]], [2421,[12279.5,3391.31,-1.27157e-006],[[2145,2],[2701,2],[2702,2]]], [2422,[9732.47,2112.65,0],[[2147,2],[2703,2]]], [2423,[9950.27,3687.9,0],[[2149,2],[2676,2]]], +[2424,[9809.15,3398.56,1.90735e-006],[[2149,2],[2704,2]]], [2425,[9115.53,2968.65,0],[[2153,2],[2705,2]]], [2426,[9190.07,2766.69,-1.27157e-006],[[2153,2],[2706,2],[2707,2]]], [2427,[9098,3312.9,6.35783e-007],[[2154,2],[2708,2],[2709,2]]], [2428,[9391.33,3537.51,0],[[2155,2],[2710,2]]], [2429,[9514.18,3366.2,0],[[2155,2]]], +[2430,[9325.23,2502.09,-9.53674e-007],[[2156,2],[2711,2],[2712,2],[2713,2]]], [2431,[8912.69,5908.36,1.90735e-006],[[2157,2],[2714,2],[2715,2],[2716,2]]], [2432,[8801.52,6172.51,0],[[2158,2]]], [2433,[8177.78,6571.92,-2.54313e-006],[[2160,2],[2717,2],[2718,2]]], [2434,[8395.88,6457.93,0],[[2160,2],[2719,2]]], [2435,[8090.66,5520.68,0],[[2162,2]]], +[2436,[8156.57,4971.72,1.27157e-006],[[2164,2],[2720,2],[2721,2]]], [2437,[8483.48,5096.47,-3.8147e-006],[[2165,2],[2722,2]]], [2438,[7316.23,4446.3,0],[[2166,2],[2723,2],[2724,2]]], [2439,[7139.33,4394.48,0],[[2166,2],[2725,2]]], [2440,[6528.78,4370.5,0],[[2168,2],[2726,2]]], [2441,[6303.44,4246.6,0],[[2168,2],[2727,2]]], +[2442,[6807.64,4474.2,0],[[2169,2]]], [2443,[6573.73,4513.87,1.27157e-006],[[1890,2]]], [2444,[6286.24,4874.34,-2.54313e-006],[[2170,2],[2444,2],[2728,2]]], [2445,[6354.02,5085.82,0],[[2170,2],[2174,2],[2729,2]]], [2446,[6245.72,4703.79,0],[[2446,2]]], [2447,[5722.24,5524.53,0],[[2173,2],[2730,2]]], +[2448,[5838.77,5398.74,0],[[2173,2],[2731,2],[2732,2]]], [2449,[6352.06,5137.11,0],[[2174,2],[2733,2]]], [2450,[7137.62,7253.03,0],[[2176,2]]], [2451,[7014.54,7375.06,0],[[2176,2],[2734,2],[2451,2],[2735,2]]], [2452,[7362.21,7543.76,0],[[2177,2],[2736,2]]], [2453,[7237.86,7415.95,0],[[2177,2]]], +[2454,[7825.03,6901.42,0],[[2178,2],[2737,2],[2738,2]]], [2455,[7777.38,7337.4,0],[[2179,2],[2739,2],[2740,2]]], [2456,[6723.47,7089.44,0],[[2183,2],[2463,2],[2741,2]]], [2457,[5628.86,5951.82,0],[[2184,2],[2742,2]]], [2458,[5878.48,5959.52,-3.8147e-006],[[2185,2]]], [2459,[5512.44,5753.29,0],[[2186,2],[2743,2],[2744,2],[2745,2]]], +[2460,[5691.73,6406.25,-1.90735e-006],[[2187,2],[2746,2],[2460,2],[2747,2]]], [2461,[5983.98,6336.67,3.8147e-006],[[2188,2]]], [2462,[5996.24,6445.36,-2.54313e-006],[[2188,2],[2748,2],[2462,2],[2749,2]]], [2463,[6659.57,6991.87,0],[[2189,2],[2456,2]]], [2464,[3353.09,5841.48,0],[[2190,2],[2192,2]]], [2465,[3423.52,5952.96,0],[[2191,2]]], +[2466,[3329.79,5850.28,9.53674e-007],[[2192,2]]], [2467,[4158.77,7249.01,0],[[2193,2],[2750,2],[2751,2]]], [2468,[3864.9,7317.48,3.8147e-006],[[2194,2],[2752,2]]], [2469,[3448.15,7114.05,0],[[2195,2]]], [2470,[4220.09,7143.44,0],[[2196,2],[2753,2],[2754,2]]], [2471,[4137.79,6977.17,0],[[2196,2]]], +[2472,[4399.95,6861.43,-1.90735e-006],[[2197,2],[2755,2],[2756,2],[2753,2]]], [2473,[4017.55,6300.05,-1.27157e-006],[[2199,2],[2203,2],[2473,2]]], [2474,[4321.9,6052.79,0],[[2201,2],[2757,2],[2758,2],[2474,2]]], [2475,[4118.63,5922.63,0],[[2202,2],[2759,2]]], [2476,[3928.43,5970.75,0],[[2202,2]]], [2477,[4095.8,6271.54,0],[[2203,2]]], +[2478,[3333.06,7738.83,0],[[2204,2],[2760,2]]], [2479,[3165.67,7914.48,0],[[2204,2],[2216,2],[2493,2]]], [2480,[3107.22,5552.33,9.53674e-008],[[2205,2],[2206,2],[2761,2],[2480,2],[2484,2],[2762,2],[2481,2],[2485,2],[2763,2],[2764,2]]], [2481,[3191.19,5606.01,-7.62939e-007],[[2205,2],[2480,2],[2481,2],[2765,2],[2762,2],[2766,2]]], [2482,[2898.71,5459.13,2.38419e-007],[[2206,2],[2482,2],[2767,2],[2768,2]]], [2483,[2829.05,5532.67,0],[[2206,2],[2769,2],[2483,2]]], +[2484,[2989.61,5704.24,0],[[2206,2],[2480,2]]], [2485,[3014.54,5529.71,0],[[2206,2],[2480,2]]], [2486,[2607.55,5656.46,0],[[2208,2],[2770,2]]], [2487,[2809.17,5542.27,-9.53674e-007],[[2208,2]]], [2488,[2691.04,5488.39,3.17891e-007],[[2208,2],[2771,2],[2772,2],[2768,2]]], [2489,[2820.31,5497.14,0],[[2208,2],[2773,2]]], +[2490,[790.048,7139.68,0],[[2211,2]]], [2491,[895.144,7209.41,-2.38419e-007],[[2212,2]]], [2492,[2886,7877.53,0],[[2215,2],[2492,2]]], [2493,[3162.86,7959.92,0],[[2479,2],[2774,2],[2775,2],[2493,2],[2776,2]]], [2494,[3190.24,8178.11,0],[[2217,2],[2777,2]]], [2495,[2856.4,8307.8,0],[[2218,2],[2778,2]]], +[2496,[2663.67,8325,1.27157e-006],[[2218,2],[2230,2],[2779,2]]], [2497,[2049.61,9112.5,-6.35783e-007],[[2219,2],[2780,2],[2781,2]]], [2498,[1996.1,8904.39,-6.35783e-007],[[2220,2],[2782,2],[2781,2]]], [2499,[1985.35,9037.71,1.90735e-006],[[2220,2]]], [2500,[2032.66,8673.84,0],[[2221,2],[2783,2]]], [2501,[1902.95,8805.61,0],[[1944,2]]], +[2502,[1688.32,9185.44,0],[[2222,2],[2784,2],[2785,2]]], [2503,[1436.74,8910.46,0],[[2223,2],[2232,2],[2786,2],[2787,2]]], [2504,[2010.99,9409.73,1.90735e-006],[[2225,2],[2788,2]]], [2505,[2517.41,8752.71,-9.53674e-007],[[2228,2],[2789,2],[2508,2],[2790,2]]], [2506,[2193.4,8890.02,0],[[2229,2],[2506,2],[2791,2]]], [2507,[2202.05,8559.25,0],[[1952,2]]], +[2508,[2594.58,8625.12,0],[[2230,2],[2505,2]]], [2509,[3963.19,13515.8,7.62939e-006],[[2233,2]]], [2510,[3064.65,12934.4,2.54313e-006],[[2234,2],[2792,2],[2793,2]]], [2511,[3699.11,13015.5,-7.62939e-006],[[2236,2]]], [2512,[3540.39,12893.7,0],[[2236,2],[2794,2],[2795,2]]], [2513,[4946.88,15799.3,0],[[2239,2],[2796,2]]], +[2514,[4690.17,16285.7,0],[[2240,2]]], [2515,[4868.55,16355.7,0],[[2240,2],[2797,2]]], [2516,[5002.36,15071,0],[[2242,2],[2798,2]]], [2517,[4959.43,15646.8,0],[[2243,2],[2796,2]]], [2518,[3327.65,15663.8,0],[[2244,2]]], [2519,[3172.77,15700.2,0],[[2244,2],[2799,2],[2800,2],[2519,2]]], +[2520,[3758.54,15994.1,0],[[2246,2]]], [2521,[3872.26,15999.4,0],[[2246,2],[2801,2],[2802,2]]], [2522,[3029.27,15475.5,-7.62939e-006],[[2248,2],[2803,2],[2804,2]]], [2523,[2641.99,15027.8,0],[[2251,2],[2805,2]]], [2524,[2607.73,14816,0],[[2252,2],[2805,2],[2806,2]]], [2525,[2590.86,14404.5,0],[[2253,2],[2807,2]]], +[2526,[2215.86,13771,-2.54313e-006],[[2254,2],[2808,2],[2809,2]]], [2527,[2384.91,13692,-7.62939e-006],[[2254,2],[2810,2]]], [2528,[2496.05,14147.1,0],[[2255,2],[2807,2],[2811,2]]], [2529,[2544.05,13332,0],[[2257,2],[2812,2]]], [2530,[6180.09,14549.1,-2.54313e-006],[[2258,2],[2813,2],[2814,2]]], [2531,[5917.76,14602.7,-2.54313e-006],[[2259,2],[2815,2],[2531,2]]], +[2532,[5860.44,14465,0],[[2259,2]]], [2533,[6722.21,14274.1,0],[[2261,2],[2816,2]]], [2534,[6667.46,14472.5,-1.90735e-006],[[2261,2],[2817,2],[2534,2],[2818,2]]], [2535,[6533.88,14534.6,0],[[2261,2],[2819,2]]], [2536,[3916.22,12716.8,0],[[2262,2],[2820,2]]], [2537,[4098.31,12490,-7.62939e-006],[[2263,2],[2821,2]]], +[2538,[4320.79,12639.6,0],[[2263,2]]], [2539,[5548.51,15148.9,2.54313e-006],[[2265,2],[2822,2],[2539,2]]], [2540,[5667.66,15019,0],[[2265,2],[2823,2],[2824,2]]], [2541,[5334.03,15057.6,7.62939e-006],[[2266,2],[2825,2]]], [2542,[5384.11,14917.5,-7.62939e-006],[[2266,2],[2542,2]]], [2543,[5193.42,14936.1,0],[[2269,2]]], +[2544,[4471.14,14746.1,0],[[2271,2],[2544,2],[2826,2],[2827,2]]], [2545,[4371.75,14481,0],[[2272,2],[2545,2]]], [2546,[6333.58,11949.4,3.8147e-006],[[2273,2],[2828,2],[2829,2],[2830,2]]], [2547,[6613.38,12641.9,0],[[2275,2]]], [2548,[6857.6,12401.3,7.62939e-006],[[2277,2],[2831,2]]], [2549,[6850.01,12642.3,0],[[2277,2],[2832,2]]], +[2550,[6908.8,13810.4,1.90735e-006],[[2280,2],[2833,2],[2550,2],[2834,2]]], [2551,[6657.2,13210.9,0],[[2282,2],[2835,2],[2836,2],[2837,2]]], [2552,[4484.7,12419.8,0],[[2283,2]]], [2553,[5329.65,11572.2,0],[[2284,2],[2838,2],[2839,2],[2840,2]]], [2554,[4670.35,11486.6,-1.90735e-006],[[2286,2],[2554,2],[2841,2],[2842,2]]], [2555,[4474.58,11852.4,7.62939e-006],[[2288,2],[2843,2]]], +[2556,[5640.37,11742.9,0],[[2289,2],[2839,2]]], [2557,[5902.54,11791.6,0],[[2289,2],[2844,2]]], [2558,[12618.9,10987.1,0],[[2290,2],[2845,2],[2558,2],[2846,2],[2847,2]]], [2559,[12736.9,11306.1,-2.54313e-006],[[2291,2],[2848,2],[2849,2]]], [2560,[11396.1,10410.9,0],[[2292,2],[2850,2]]], [2561,[11250.8,10219.6,0],[[2292,2],[2851,2],[2852,2],[2853,2]]], +[2562,[12779.4,12351,-3.8147e-006],[[2293,2],[2854,2]]], [2563,[12684.4,12188.5,0],[[2293,2]]], [2564,[12551.6,12808.7,0],[[2294,2],[2564,2]]], [2565,[12656,12702.1,0],[[2294,2],[2855,2]]], [2566,[11984.5,13092.4,0],[[2295,2],[2856,2]]], [2567,[11892.2,13202.4,0],[[2296,2],[2857,2]]], +[2568,[10507.5,13167.6,0],[[2298,2]]], [2569,[10368.5,13350.5,0],[[2299,2],[2858,2],[2859,2]]], [2570,[10333.5,13299.2,0],[[2299,2]]], [2571,[10475.7,12463.3,0],[[2300,2]]], [2572,[11089.8,13768.6,0],[[2301,2],[2860,2],[2861,2]]], [2573,[10839.2,13975.3,0],[[2302,2],[2862,2]]], +[2574,[11534.2,13540.6,-1.27157e-006],[[2303,2],[2574,2],[2863,2]]], [2575,[10108.6,10111.9,0],[[2305,2],[2864,2]]], [2576,[10041.6,10287.7,0],[[2305,2],[2865,2],[2866,2]]], [2577,[10421.2,10225,2.54313e-006],[[2306,2],[2577,2],[2867,2]]], [2578,[9348.38,12017.9,0],[[2307,2],[2868,2],[2869,2]]], [2579,[9645.94,11723.4,2.54313e-006],[[2308,2],[2315,2],[2870,2],[2871,2]]], +[2580,[9691.13,11951.5,-7.62939e-006],[[2308,2]]], [2581,[10099,12937.4,0],[[2310,2],[2582,2],[2581,2],[2872,2]]], [2582,[10085.5,12917,0],[[2581,2],[3155,2],[2582,2],[2310,2]]], [2583,[9656.68,13007.9,0],[[2311,2],[2873,2]]], [2584,[9421.09,12496.3,0],[[2313,2],[2874,2]]], [2585,[10418.6,12680.1,0],[[2314,2],[2585,2],[2875,2]]], +[2586,[9634.42,11641.2,0],[[2315,2],[2876,2]]], [2587,[9364.38,10902.1,0],[[2316,2],[2877,2]]], [2588,[9187.67,11005,0],[[2316,2],[2878,2]]], [2589,[9284.52,11329.9,7.62939e-006],[[2317,2],[2879,2]]], [2590,[10025.8,10607.7,-7.62939e-006],[[2318,2],[2880,2]]], [2591,[9770.69,10369.3,0],[[2319,2],[2865,2],[2881,2],[2882,2]]], +[2592,[15684.1,6664.9,-7.62939e-006],[[2321,2],[2883,2]]], [2593,[15496.2,6902.91,-2.54313e-006],[[2322,2],[2393,2],[2884,2]]], [2594,[15857.8,6612.39,0],[[2324,2],[2594,2],[2885,2]]], [2595,[15708.6,8013.86,0],[[2325,2],[2886,2],[2595,2],[2887,2]]], [2596,[15630.3,7873.6,2.54313e-006],[[2325,2],[2888,2],[2889,2]]], [2597,[15902.6,8112.55,0],[[2326,2]]], +[2598,[15935.6,8098.82,0],[[2326,2]]], [2599,[16021.3,8692.29,0],[[2327,2],[2890,2]]], [2600,[16127.3,9124.69,0],[[2329,2]]], [2601,[16038.7,9075.13,-1.27157e-006],[[2329,2],[2891,2],[2892,2]]], [2602,[16675.7,9273.91,0],[[2330,2],[2893,2]]], [2603,[16849.6,9334.35,2.54313e-006],[[2330,2],[2894,2],[2895,2]]], +[2604,[17489.7,8857.35,3.8147e-006],[[2332,2],[2896,2]]], [2605,[17296.3,9224.96,-1.27157e-006],[[2333,2],[2897,2],[2898,2]]], [2606,[15908.4,8376.46,-1.27157e-006],[[2334,2],[2899,2],[2900,2]]], [2607,[17815,5805.2,0],[[2336,2],[2901,2]]], [2608,[17234.8,5827.77,0],[[2337,2],[2653,2]]], [2609,[17250.9,5577.35,0],[[2339,2],[2609,2],[2654,2],[2902,2],[2903,2]]], +[2610,[17282.8,5529.77,0],[[2339,2],[2611,2]]], [2611,[17294.4,5479.84,0],[[2339,2],[2610,2],[2904,2],[2626,2]]], [2612,[17357.7,5468.79,0],[[2339,2],[2348,2],[2905,2]]], [2613,[17426.9,5550.51,0],[[2340,2]]], [2614,[17410.4,5533.81,0],[[2340,2],[2911,2]]], [2615,[17723,5564.05,-2.38419e-007],[[2341,2]]], +[2616,[17770.1,5652.86,-4.76837e-007],[[2341,2]]], [2617,[17758.6,5596.57,2.38419e-007],[[2341,2]]], [2618,[17718.4,5477.41,0],[[2342,2],[2345,2],[2346,2],[2624,2],[2906,2]]], [2619,[17517.4,5264.04,0],[[2343,2],[2348,2],[2385,2],[2620,2],[2661,2]]], [2620,[17574.4,5233.59,-9.53674e-008],[[2343,2],[2385,2],[2619,2],[2907,2],[2622,2],[2659,2],[2662,2],[2660,2],[2908,2],[2621,2]]], [2621,[17639.7,5276.33,0],[[2343,2],[2620,2],[2908,2]]], +[2622,[17646,5148.28,-1.43051e-007],[[2344,2],[2620,2],[2909,2],[2910,2],[2662,2],[2663,2],[2908,2],[2907,2]]], [2623,[17719.5,5141.19,0],[[2345,2]]], [2624,[17748.3,5427.19,0],[[2345,2],[2618,2]]], [2625,[17389.9,5274.77,0],[[2348,2],[2384,2],[2912,2],[2666,2]]], [2626,[17286.2,5347.92,0],[[2348,2],[2388,2],[2611,2],[2913,2],[2904,2],[2903,2],[2666,2]]], [2627,[18274.1,6269.02,4.76837e-007],[[2349,2],[2352,2],[2914,2],[2915,2],[2916,2]]], +[2628,[18422.6,6630.28,0],[[2350,2],[2917,2]]], [2629,[18349.1,7053.85,0],[[2351,2],[2629,2],[2918,2]]], [2630,[18253,6201.67,0],[[2352,2],[2919,2]]], [2631,[18037.5,8608.61,0],[[2354,2],[2355,2],[2920,2]]], [2632,[18045.9,8629.43,-4.76837e-007],[[2355,2],[2921,2]]], [2633,[17881.8,8714.75,0],[[2355,2],[2922,2]]], +[2634,[18017.7,8730.64,1.58946e-007],[[2355,2],[2923,2],[2924,2],[2921,2]]], [2635,[18249.4,7192.18,0],[[2357,2],[2918,2]]], [2636,[17555.2,8728.69,0],[[2359,2],[2896,2]]], [2637,[16041.8,3336.15,0],[[2360,2],[2925,2]]], [2638,[16239.4,3557.51,-9.53674e-007],[[2360,2],[2926,2]]], [2639,[15780.8,3256.52,2.38419e-007],[[2361,2],[2927,2],[2639,2]]], +[2640,[15540.8,3488.77,0],[[2362,2],[2928,2],[2648,2],[2929,2]]], [2641,[13801.4,4347.33,0],[[2363,2],[2930,2]]], [2642,[13979.3,4489.74,0],[[2363,2]]], [2643,[14056.2,3849.35,0],[[2365,2],[2931,2],[2932,2]]], [2644,[14966.6,3434.11,6.35783e-007],[[2366,2],[2646,2],[2933,2]]], [2645,[14727,3426.24,1.90735e-006],[[2366,2],[2934,2]]], +[2646,[15121.1,3453.91,0],[[2367,2],[2644,2]]], [2647,[15238,3269.19,0],[[2367,2],[2935,2]]], [2648,[15441.5,3487.71,0],[[2367,2],[2640,2]]], [2649,[14445,5862.8,0],[[2368,2],[2649,2],[2936,2]]], [2650,[14048.9,5498.99,0],[[2369,2],[2937,2],[2938,2]]], [2651,[13479.7,5135.27,0],[[2371,2],[2939,2],[2940,2],[2941,2]]], +[2652,[14638.3,6069.47,-7.62939e-006],[[2372,2]]], [2653,[17078.7,5855.81,0],[[2374,2],[2608,2]]], [2654,[17108.2,5675.13,1.90735e-006],[[2375,2],[2609,2]]], [2655,[17206,5251,0],[[2376,2],[2388,2],[2942,2]]], [2656,[17326.5,4949.54,1.19209e-007],[[2381,2],[2387,2],[2657,2],[2943,2],[2664,2],[2668,2]]], [2657,[17265.7,4941.5,-1.58946e-007],[[2381,2],[2389,2],[2656,2],[2944,2]]], +[2658,[17318.1,5166.82,0],[[2384,2]]], [2659,[17524.5,5173.22,0],[[2385,2],[2620,2],[2907,2]]], [2660,[17526,5191.84,4.76837e-007],[[2385,2],[2620,2],[2660,2]]], [2661,[17466.7,5234.65,-1.58946e-007],[[2385,2],[2619,2]]], [2662,[17560,5118.49,0],[[2385,2],[2620,2],[2622,2],[2945,2],[2910,2],[2662,2],[2907,2]]], [2663,[17513.5,5042.4,0],[[2385,2],[2622,2],[2945,2],[2946,2],[2664,2],[2910,2]]], +[2664,[17419.8,4969.93,0],[[2385,2],[2656,2],[2663,2],[2943,2],[2947,2],[2946,2]]], [2665,[17316.1,5040.26,0],[[2387,2]]], [2666,[17282.9,5294.78,7.15256e-007],[[2388,2],[2625,2],[2626,2],[2912,2],[2948,2]]], [2667,[17220.7,4901.71,0],[[2389,2],[2944,2],[2667,2]]], [2668,[17317.4,4872.11,0],[[2390,2],[2656,2],[2949,2],[2943,2],[2950,2]]], [2669,[17322.8,4779.89,-1.58946e-007],[[2390,2],[2669,2],[2951,2]]], +[2670,[17222.7,4564.02,0],[[2392,2],[2952,2]]], [2671,[17073.5,4627.15,0],[[2392,2],[2953,2],[2954,2]]], [2672,[14925,6711.28,1.90735e-006],[[2394,2],[2955,2],[2672,2],[2956,2]]], [2673,[15051.2,6885.76,0],[[2394,2],[2957,2]]], [2674,[14725,6631.24,0],[[2395,2]]], [2675,[14654.9,6382.07,0],[[2395,2],[2958,2]]], +[2676,[10001,3828.28,0],[[2397,2],[2423,2]]], [2677,[10104.2,4549.75,1.27157e-006],[[2400,2],[2959,2],[2960,2]]], [2678,[9997.71,4632.5,0],[[2400,2],[2961,2],[2962,2]]], [2679,[9860.8,4517.57,3.8147e-006],[[2400,2],[2963,2]]], [2680,[11624.7,4568.62,0],[[2401,2],[2964,2],[2965,2]]], [2681,[11910.7,4254.76,-3.8147e-006],[[2402,2],[2966,2]]], +[2682,[10642.3,4321,0],[[2403,2]]], [2683,[10359.9,4440.82,-1.27157e-006],[[2404,2],[2967,2],[2968,2],[2969,2],[2970,2],[2959,2]]], [2684,[11373.5,4427.32,3.8147e-006],[[2406,2]]], [2685,[10508.1,4613.9,0],[[2407,2],[2970,2],[2971,2]]], [2686,[12771.3,2240.83,-6.35783e-007],[[2408,2],[2972,2],[2973,2]]], [2687,[12793,2492.24,-1.90735e-006],[[2410,2]]], +[2688,[12914.9,2554.97,0],[[2410,2],[2974,2]]], [2689,[12258,1943.15,1.90735e-006],[[2411,2],[2975,2]]], [2690,[12407,2035.2,0],[[2411,2],[2976,2]]], [2691,[12045.4,1801.35,0],[[2412,2]]], [2692,[12114.4,1622.64,0],[[2412,2],[2977,2],[2978,2]]], [2693,[12019,1575.47,0],[[2412,2]]], +[2694,[11523.7,1394.39,0],[[2413,2],[2979,2]]], [2695,[11391.9,1311.21,0],[[2414,2],[2980,2]]], [2696,[11347.6,1435.99,2.38419e-007],[[2414,2],[2981,2],[2696,2],[2982,2]]], [2697,[11069.1,1835.84,1.90735e-006],[[2415,2],[2983,2]]], [2698,[11253.9,1618.26,0],[[2416,2],[2981,2],[2984,2]]], [2699,[11696.5,1501.54,0],[[2417,2],[2985,2],[2986,2],[2987,2]]], +[2700,[12677.7,3207.19,-1.90735e-006],[[2418,2],[2988,2],[2989,2],[2990,2]]], [2701,[12440.6,3413.39,0],[[2421,2],[2991,2]]], [2702,[12304.2,3554.22,9.53674e-007],[[2421,2],[2992,2],[2993,2],[2994,2]]], [2703,[9746,1987.35,0],[[2422,2],[2995,2]]], [2704,[9791.13,3362.3,0],[[2424,2]]], [2705,[9037.89,2975.06,0],[[2425,2],[2996,2],[2705,2],[2997,2]]], +[2706,[9064.78,2640.04,0],[[2426,2],[2998,2]]], [2707,[9261.78,2726.09,1.90735e-006],[[2426,2]]], [2708,[9070.32,3389.68,0],[[2427,2]]], [2709,[8962.58,3333.17,0],[[2427,2],[2999,2]]], [2710,[9400.32,3660.44,0],[[2428,2],[3000,2]]], [2711,[9238.57,2492.03,3.17891e-007],[[2430,2],[3001,2],[3002,2]]], +[2712,[9254.16,2462.65,0],[[2430,2],[3003,2]]], [2713,[9330.35,2398.52,0],[[2430,2],[3004,2]]], [2714,[8970.84,5953.93,2.54313e-006],[[2431,2],[3005,2],[2714,2],[3006,2]]], [2715,[8836.6,5740.42,0],[[2431,2],[3007,2]]], [2716,[9059.52,5835.85,-1.90735e-006],[[2431,2],[3008,2],[3009,2],[3010,2]]], [2717,[8077.65,6694.95,0],[[2433,2],[2737,2]]], +[2718,[8214.07,6601.84,0],[[2433,2],[3011,2],[2718,2]]], [2719,[8444.74,6448.7,0],[[2434,2]]], [2720,[8024.92,4998.52,0],[[2436,2],[3012,2]]], [2721,[8220.03,4941.77,0],[[2436,2],[3013,2],[3014,2]]], [2722,[8547.39,5077.03,0],[[2437,2],[3015,2],[3016,2]]], [2723,[7268.98,4298.99,-3.8147e-006],[[2438,2],[3017,2]]], +[2724,[7443.56,4389.42,0],[[2438,2],[3018,2]]], [2725,[7072.46,4274.52,-3.8147e-006],[[2439,2],[3019,2]]], [2726,[6634.01,4294.81,-3.8147e-006],[[2440,2]]], [2727,[6290.65,4086.64,0],[[2441,2],[3020,2]]], [2728,[6200.15,4832.34,0],[[2444,2],[2728,2]]], [2729,[6349.83,5127.46,0],[[2445,2]]], +[2730,[5638.46,5546.46,0],[[2447,2],[3021,2]]], [2731,[5989.17,5333.15,-3.8147e-006],[[2448,2],[3022,2]]], [2732,[5802.1,5291.78,0],[[2448,2],[3023,2]]], [2733,[6173.73,5214.99,0],[[2449,2],[3024,2],[3022,2]]], [2734,[6890.62,7427.27,0],[[2451,2],[3025,2],[3026,2]]], [2735,[7063.7,7541.37,0],[[2451,2],[3027,2]]], +[2736,[7358.55,7560.16,2.54313e-006],[[2452,2],[3028,2],[3029,2]]], [2737,[7944.44,6823.51,0],[[2454,2],[2717,2],[3030,2]]], [2738,[7818.33,6849.58,0],[[2454,2]]], [2739,[7814.09,7314.18,7.62939e-006],[[2455,2]]], [2740,[7852.41,7516.35,7.62939e-006],[[2455,2],[3031,2]]], [2741,[6662.19,7140.65,-2.54313e-006],[[2456,2],[3032,2],[3033,2],[3026,2]]], +[2742,[5577.54,5903.49,0],[[2457,2],[2744,2],[3034,2]]], [2743,[5493.29,5672.64,0],[[2459,2],[3035,2],[3036,2],[3021,2]]], [2744,[5554.53,5835.14,-3.8147e-006],[[2459,2],[2742,2]]], [2745,[5379.95,5782.67,0],[[2459,2],[3037,2],[3035,2]]], [2746,[5721.27,6555.2,0],[[2460,2],[3038,2],[3039,2]]], [2747,[5666.16,6350.37,1.90735e-006],[[2460,2],[3040,2],[3041,2],[3042,2]]], +[2748,[5996.3,6429.63,-3.8147e-006],[[2462,2]]], [2749,[5993.47,6515.61,0],[[2462,2],[3043,2],[2749,2]]], [2750,[4134.53,7332.76,0],[[2467,2]]], [2751,[4306.54,7306.3,0],[[2467,2],[3044,2]]], [2752,[3855.69,7353.24,1.27157e-006],[[2468,2],[3045,2],[2752,2],[3046,2]]], [2753,[4315.89,7034.34,0],[[2470,2],[2472,2]]], +[2754,[4192.02,7226.75,0],[[2470,2]]], [2755,[4488,6877.41,0],[[2472,2],[3047,2],[3048,2]]], [2756,[4414.15,6808.11,0],[[2472,2]]], [2757,[4344.2,6237.09,0],[[2474,2],[3049,2]]], [2758,[4483.04,6041.85,0],[[2474,2],[3050,2]]], [2759,[4181.5,5906.58,1.27157e-006],[[2475,2],[3051,2],[3052,2]]], +[2760,[3402.86,7685.08,0],[[2478,2],[3053,2]]], [2761,[3133.06,5565.82,-9.53674e-007],[[2480,2],[2762,2]]], [2762,[3150.04,5545.77,1.90735e-007],[[2480,2],[2481,2],[2761,2]]], [2763,[3165.8,5496.44,0],[[2480,2],[2764,2],[2763,2],[3054,2]]], [2764,[3154.9,5472.39,0],[[2763,2],[2764,2],[2480,2]]], [2765,[3250.62,5704.58,0],[[2481,2],[2765,2],[3055,2]]], +[2766,[3343.94,5504.71,0],[[2481,2],[3056,2]]], [2767,[2913.47,5431.99,0],[[2482,2]]], [2768,[2819.92,5453.69,0],[[2482,2],[2488,2],[2772,2]]], [2769,[2858,5522.11,0],[[2483,2]]], [2770,[2530.78,5702.16,0],[[2486,2],[2770,2]]], [2771,[2622.62,5488.46,0],[[2488,2],[3057,2],[3058,2],[2771,2]]], +[2772,[2757.85,5456.59,0],[[2488,2],[2768,2]]], [2773,[2821.61,5473.69,0],[[2489,2]]], [2774,[3220.05,7994.88,3.8147e-006],[[2493,2],[2776,2],[2774,2],[3059,2],[2777,2]]], [2775,[3160.78,7961.64,3.8147e-006],[[2775,2],[2493,2]]], [2776,[3215.75,7970.49,0],[[2774,2],[3350,2],[2493,2],[2776,2]]], [2777,[3207.73,8173.3,0],[[2494,2],[2774,2],[2777,2],[3060,2]]], +[2778,[2888.9,8315.5,-3.8147e-006],[[2495,2]]], [2779,[2595.39,8304.41,0],[[2496,2],[2779,2],[3061,2]]], [2780,[2188.04,9144.75,0],[[2497,2],[3062,2],[3063,2]]], [2781,[2088.95,8964.24,0],[[2497,2],[2498,2],[3064,2],[2791,2]]], [2782,[1982.86,8859.47,0],[[2498,2]]], [2783,[2042.65,8665.29,0],[[2500,2]]], +[2784,[1773.67,9328.29,0],[[2502,2],[3065,2],[3066,2]]], [2785,[1641.83,9204.57,4.76837e-007],[[2502,2],[3067,2],[3066,2],[2786,2]]], [2786,[1512.94,9097.87,0],[[2503,2],[2785,2]]], [2787,[1354.59,8979.5,0],[[2503,2],[3068,2]]], [2788,[2091.64,9525.69,1.90735e-006],[[2504,2],[3069,2]]], [2789,[2464.82,8849.09,-1.27157e-006],[[2505,2],[3070,2],[3071,2],[3072,2]]], +[2790,[2643.02,8816.62,-1.27157e-006],[[2505,2],[3073,2],[3074,2]]], [2791,[2186.59,8933.72,0],[[2506,2],[2781,2],[3075,2]]], [2792,[2906.51,12890.9,0],[[2510,2],[3076,2],[3077,2]]], [2793,[3252.85,12923.7,0],[[2510,2],[3078,2]]], [2794,[3666.19,12787.8,0],[[2512,2],[2820,2]]], [2795,[3466.29,12903.3,-5.08626e-006],[[2512,2],[3079,2],[3080,2],[3078,2]]], +[2796,[4995.05,15724.9,0],[[2513,2],[2517,2]]], [2797,[4938.84,16502.3,0],[[2515,2],[3081,2]]], [2798,[5051.87,15110.3,-2.54313e-006],[[2516,2],[3082,2],[3083,2]]], [2799,[3106.47,15745.7,-5.08626e-006],[[2519,2],[3084,2],[3085,2]]], [2800,[3186.8,15693.8,0],[[2519,2]]], [2801,[3918.66,16154.4,0],[[2521,2],[3086,2]]], +[2802,[4036.93,15993.6,7.62939e-006],[[2521,2],[3087,2],[3088,2]]], [2803,[2984.06,15601.6,-2.54313e-006],[[2522,2],[3089,2],[3085,2]]], [2804,[2999.39,15473.2,0],[[2522,2]]], [2805,[2602.44,15002.9,0],[[2523,2],[2524,2],[3090,2],[2806,2]]], [2806,[2593.31,14942.2,-5.08626e-006],[[2805,2],[2524,2],[3383,2]]], [2807,[2569.87,14379.1,-2.54313e-006],[[2525,2],[2528,2],[3091,2],[2811,2]]], +[2808,[2203.63,13845.7,0],[[2526,2],[3092,2],[3093,2]]], [2809,[2151.44,13723.6,0],[[2526,2],[3094,2],[3095,2]]], [2810,[2428.06,13569.5,0],[[2527,2],[3096,2]]], [2811,[2545.59,14314.8,2.54313e-006],[[2807,2],[2528,2],[3385,2]]], [2812,[2444.48,13236.2,2.54313e-006],[[2529,2],[3096,2],[3097,2]]], [2813,[6245.67,14584.9,0],[[2530,2],[2813,2],[3098,2]]], +[2814,[6155.22,14603.9,0],[[2530,2]]], [2815,[5879.99,14673.8,-5.08626e-006],[[2531,2],[3099,2],[3100,2]]], [2816,[6815.03,14157.9,0],[[2533,2],[3101,2]]], [2817,[6722.79,14527.3,0],[[2534,2],[3102,2],[2819,2]]], [2818,[6765.26,14353.7,0],[[2534,2],[3103,2]]], [2819,[6594,14628.1,1.90735e-006],[[2535,2],[2817,2],[3104,2]]], +[2820,[3756.1,12729.7,0],[[2536,2],[2794,2]]], [2821,[4001.9,12378.1,0],[[2537,2],[3105,2]]], [2822,[5552.2,15299,0],[[2539,2],[3106,2]]], [2823,[5717.51,15076.6,2.54313e-006],[[2540,2],[3107,2],[3108,2]]], [2824,[5721.45,14952.1,2.54313e-006],[[2540,2],[3109,2],[3099,2],[3110,2]]], [2825,[5334.2,15183.9,7.62939e-006],[[2541,2],[3111,2]]], +[2826,[4390.52,14854,0],[[2544,2]]], [2827,[4366.85,14732,0],[[2544,2]]], [2828,[6484.19,11970.6,0],[[2546,2],[3112,2]]], [2829,[6210.53,11924.4,0],[[2546,2]]], [2830,[6361.4,11798,0],[[2546,2],[3113,2]]], [2831,[6852.09,12373.3,0],[[2548,2]]], +[2832,[6971.66,12752.6,0],[[2549,2],[3114,2]]], [2833,[7044.95,13896.6,0],[[2550,2],[3115,2]]], [2834,[6995.72,13703,-7.62939e-006],[[2550,2],[3116,2]]], [2835,[6714.66,13073.9,0],[[2551,2],[3117,2]]], [2836,[6781.4,13254.2,0],[[2551,2],[3118,2],[3119,2]]], [2837,[6615.58,13306.7,7.62939e-006],[[2551,2]]], +[2838,[5151.08,11502.9,0],[[2553,2],[3120,2]]], [2839,[5507.83,11619.7,7.62939e-006],[[2553,2],[2556,2]]], [2840,[5374.02,11471.7,-2.54313e-006],[[2553,2],[3121,2],[3122,2]]], [2841,[4629.21,11494.4,7.62939e-006],[[2554,2]]], [2842,[4636.51,11344.1,0],[[2554,2],[3123,2],[3124,2],[3125,2]]], [2843,[4372.25,11862.2,-2.54313e-006],[[2555,2],[3126,2],[3127,2]]], +[2844,[5917.46,11771.9,0],[[2557,2],[3128,2],[3129,2]]], [2845,[12625.2,11011.2,0],[[2558,2],[3130,2],[2849,2]]], [2846,[12446.5,10987.2,0],[[2558,2],[3131,2]]], [2847,[12677,10848.7,0],[[2558,2],[3132,2],[3133,2]]], [2848,[12832,11354.6,2.54313e-006],[[2559,2],[3134,2],[3135,2]]], [2849,[12675.7,11166.2,0],[[2559,2],[2845,2],[3130,2]]], +[2850,[11547,10442.1,0],[[2560,2],[3136,2]]], [2851,[11308.8,10254.7,0],[[2561,2]]], [2852,[11148.4,10208.9,0],[[2561,2]]], [2853,[11265.2,10029,0],[[2561,2],[3137,2]]], [2854,[12908.9,12436,0],[[2562,2],[3138,2]]], [2855,[12752.8,12728.8,0],[[2565,2]]], +[2856,[12093.9,13162.4,0],[[2566,2],[3139,2]]], [2857,[11886.9,13240.3,-6.35783e-007],[[2567,2],[2857,2],[3140,2]]], [2858,[10532.2,13387,0],[[2569,2],[3141,2]]], [2859,[10347.7,13408.1,0],[[2569,2],[3142,2],[3143,2]]], [2860,[11147.6,13690.5,-7.62939e-006],[[2572,2]]], [2861,[11071.3,13866.5,0],[[2572,2]]], +[2862,[10825,14084.8,-3.8147e-006],[[2573,2],[3144,2],[3145,2]]], [2863,[11585.3,13583.6,1.27157e-006],[[2574,2],[3146,2],[3147,2]]], [2864,[10065.1,9997.71,0],[[2575,2],[3148,2],[3149,2],[3150,2]]], [2865,[9881.39,10329.5,0],[[2576,2],[2591,2]]], [2866,[10078,10334.1,-2.54313e-006],[[2576,2],[3151,2],[2866,2]]], [2867,[10555.7,10111.7,0],[[2577,2],[3152,2]]], +[2868,[9187.8,12031.8,7.62939e-006],[[2578,2],[3153,2]]], [2869,[9342.51,12123.5,0],[[2578,2],[3154,2]]], [2870,[9635.42,11651.8,-7.62939e-006],[[2579,2]]], [2871,[9748.13,11730.6,0],[[2579,2]]], [2872,[10149.8,13017.8,-7.62939e-006],[[2581,2],[3156,2]]], [2873,[9582.25,13123.6,-2.54313e-006],[[2583,2],[3157,2],[3158,2]]], +[2874,[9279.55,12497.8,0],[[2584,2],[3159,2]]], [2875,[10467.6,12728,0],[[2585,2]]], [2876,[9495.36,11606.8,0],[[2586,2]]], [2877,[9286.32,10767.4,0],[[2587,2],[3160,2]]], [2878,[9092.74,10992.6,2.54313e-006],[[2588,2],[3161,2],[3162,2]]], [2879,[9262.97,11389.5,0],[[2589,2],[2879,2],[3163,2]]], +[2880,[10038.6,10611.9,0],[[2590,2]]], [2881,[9631.84,10414.9,0],[[2591,2],[3164,2],[3165,2]]], [2882,[9699.01,10182.7,0],[[2591,2],[3166,2],[3167,2],[3168,2]]], [2883,[15661.1,6601.44,0],[[2592,2],[3169,2]]], [2884,[15439.3,6976.14,1.90735e-006],[[2593,2],[3170,2],[3171,2],[3172,2]]], [2885,[15803.2,6508.14,0],[[2594,2],[3173,2]]], +[2886,[15529.9,8081.72,7.62939e-006],[[2595,2],[3174,2]]], [2887,[15641.1,8148.94,0],[[2595,2],[3175,2]]], [2888,[15477.5,7912.68,0],[[2596,2]]], [2889,[15609.1,7810.5,5.08626e-006],[[2596,2],[3176,2],[3177,2]]], [2890,[15911.1,8690.64,0],[[2599,2],[3178,2]]], [2891,[15880.2,9156.49,-3.8147e-006],[[2601,2],[3179,2]]], +[2892,[16017.7,9053.17,1.27157e-006],[[2601,2],[2892,2],[3180,2]]], [2893,[16568.3,9357.49,0],[[2602,2],[3181,2]]], [2894,[16728.9,9374.6,0],[[2603,2],[3182,2]]], [2895,[16859.1,9390.74,1.27157e-006],[[2603,2],[3183,2],[3184,2],[3185,2]]], [2896,[17538.3,8859.22,9.53674e-007],[[2604,2],[2636,2],[3186,2],[3187,2],[2922,2]]], [2897,[17364.4,9294.46,-1.90735e-006],[[2605,2],[3188,2],[3189,2],[3190,2]]], +[2898,[17288,9252.31,0],[[2605,2]]], [2899,[15816.7,8321.94,2.54313e-006],[[2606,2],[3191,2],[3175,2],[3192,2]]], [2900,[15782.1,8505.86,0],[[2606,2],[3193,2]]], [2901,[17875.5,5718.56,0],[[2607,2],[3194,2]]], [2902,[17288.9,5550.1,0],[[2609,2]]], [2903,[17181.4,5431.31,-6.35783e-007],[[2609,2],[2626,2],[2903,2],[3195,2],[2904,2]]], +[2904,[17290.6,5414.31,0],[[2611,2],[2626,2],[2903,2]]], [2905,[17323.8,5394.42,0],[[2612,2]]], [2906,[17830.3,5621.64,0],[[2618,2],[3194,2]]], [2907,[17576.3,5167.47,-1.19209e-007],[[2620,2],[2622,2],[2659,2],[2662,2]]], [2908,[17636.7,5215.19,0],[[2620,2],[2621,2],[2622,2]]], [2909,[17642.2,5085.48,-7.94729e-008],[[2622,2],[3196,2],[3197,2]]], +[2910,[17582,5081.64,-4.76837e-007],[[2622,2],[2662,2],[2663,2],[3198,2],[3197,2],[2945,2]]], [2911,[17437.5,5532.98,0],[[2614,2],[2911,2]]], [2912,[17325.4,5274.46,9.53674e-007],[[2625,2],[2666,2],[2912,2]]], [2913,[17293,5407.6,0],[[2626,2],[2913,2]]], [2914,[18237.6,6276.25,0],[[2627,2]]], [2915,[18260.9,6218.73,0],[[2627,2]]], +[2916,[18351.7,6229.45,0],[[2627,2],[3199,2]]], [2917,[18412.1,6545.06,0],[[2628,2],[3200,2]]], [2918,[18301.1,7119.44,0],[[2629,2],[2635,2]]], [2919,[18151.5,6051.89,0],[[2630,2],[3201,2]]], [2920,[18044.1,8627.29,0],[[2631,2],[2920,2]]], [2921,[18083.6,8681.73,0],[[2632,2],[2634,2],[2924,2],[2921,2]]], +[2922,[17767.3,8777.79,0],[[2633,2],[2896,2],[3187,2]]], [2923,[18041.9,8931.79,0],[[2634,2],[3202,2]]], [2924,[18072.1,8731.34,0],[[2634,2],[2921,2],[2924,2],[3203,2]]], [2925,[16039.2,3307.68,3.8147e-007],[[2637,2],[3204,2],[2925,2],[3205,2],[3206,2]]], [2926,[16277.6,3581.62,0],[[2638,2],[3207,2],[3208,2]]], [2927,[15840.8,3105.09,0],[[2639,2],[3205,2]]], +[2928,[15543.7,3407.85,0],[[2640,2]]], [2929,[15525.4,3591.98,0],[[2640,2]]], [2930,[13774.5,4339.85,0],[[2641,2],[3209,2],[3210,2]]], [2931,[13862.8,3870.82,3.8147e-006],[[2643,2],[3211,2]]], [2932,[14040.8,3696.96,-3.8147e-006],[[2643,2],[3212,2]]], [2933,[14994.4,3271.33,0],[[2644,2],[3213,2]]], +[2934,[14708.1,3395.03,1.27157e-006],[[2645,2],[2934,2],[3214,2]]], [2935,[15244.8,3201.58,0],[[2647,2],[3215,2],[2935,2]]], [2936,[14431.5,5914.77,-2.54313e-006],[[2649,2],[3216,2],[3217,2]]], [2937,[14061.8,5637.27,0],[[2650,2],[3218,2],[3219,2]]], [2938,[14123,5495.24,2.54313e-006],[[2650,2],[2938,2],[3220,2]]], [2939,[13458.1,4963.91,0],[[2651,2],[3221,2]]], +[2940,[13347.3,5189.88,-7.62939e-006],[[2651,2],[3222,2]]], [2941,[13513.3,5346.38,0],[[2651,2],[3223,2]]], [2942,[17091.4,5275.93,0],[[2655,2]]], [2943,[17361.7,4919.56,0],[[2949,2]]], [2944,[17230.5,4892.37,0],[[2667,2]]], [2945,[17595.6,5101.4,0],[[2662,2],[2663,2],[3224,2],[2910,2]]], +[2946,[17468.1,4998.62,0],[[2663,2],[2664,2],[3225,2],[2947,2]]], [2947,[17506.5,4928.79,-5.96046e-008],[[2664,2],[2946,2],[3225,2],[3226,2],[3227,2]]], [2948,[17324,5290.25,2.38419e-007],[[2666,2]]], [2949,[17345.5,4905.2,-4.76837e-007],[[2668,2],[2943,2],[2949,2]]], [2950,[17356.8,4827.29,0],[[2668,2]]], [2951,[17397.9,4725.46,4.76837e-008],[[2669,2],[3228,2],[3226,2],[3229,2],[3230,2],[3231,2],[3232,2]]], +[2952,[17201.6,4491.61,-3.97364e-008],[[2670,2],[3233,2],[2953,2]]], [2953,[17049.5,4452.97,-5.96046e-008],[[2671,2],[2952,2],[3234,2],[3235,2]]], [2954,[16910.7,4607.89,0],[[2671,2],[3236,2]]], [2955,[14766.7,6818.41,0],[[2672,2],[3237,2]]], [2956,[14905.9,6825.6,0],[[2672,2],[3238,2]]], [2957,[15084,7060.5,7.62939e-006],[[2673,2],[3239,2]]], +[2958,[14561.1,6286.84,0],[[2675,2],[3240,2]]], [2959,[10266.8,4509.25,-3.8147e-006],[[2677,2],[2683,2]]], [2960,[10133.8,4674.92,0],[[2677,2]]], [2961,[9983.69,4828.59,0],[[2678,2],[3241,2],[3242,2]]], [2962,[9834.17,4635.23,0],[[2678,2],[3243,2]]], [2963,[9707.12,4459.84,-3.8147e-006],[[2679,2],[3244,2]]], +[2964,[11457.6,4588.72,0],[[2680,2],[2964,2]]], [2965,[11647.8,4627.7,1.27157e-006],[[2680,2],[3245,2],[3246,2]]], [2966,[11945.5,4125.82,3.8147e-006],[[2681,2],[3247,2]]], [2967,[10339.6,4328.25,0],[[2683,2]]], [2968,[10464.9,4460.93,0],[[2683,2],[2969,2],[3248,2]]], [2969,[10405.1,4535.78,-3.8147e-006],[[2683,2],[2968,2]]], +[2970,[10383.8,4555.82,0],[[2683,2],[2685,2],[3249,2]]], [2971,[10548.6,4779.24,3.8147e-006],[[2685,2],[3250,2]]], [2972,[12892,2229.27,0],[[2686,2],[3251,2],[3252,2]]], [2973,[12762.1,2202.79,0],[[2686,2]]], [2974,[12965.2,2624.1,-1.27157e-006],[[2688,2],[3253,2],[3254,2]]], [2975,[12236.1,1802.05,0],[[2689,2],[3255,2]]], +[2976,[12452.4,1981.15,0],[[2690,2]]], [2977,[12091,1559.98,3.17891e-007],[[2692,2],[3256,2],[3257,2]]], [2978,[12207.1,1585.12,0],[[2692,2],[3258,2],[3259,2]]], [2979,[11484.7,1249.09,0],[[2694,2],[3260,2]]], [2980,[11405.6,1281.65,0],[[2695,2],[3261,2],[3260,2]]], [2981,[11218.6,1404.66,0],[[2696,2],[2698,2],[3262,2]]], +[2982,[11320.7,1287.02,0],[[2696,2],[3263,2]]], [2983,[11036.8,1843.22,4.76837e-007],[[2697,2],[3264,2],[3265,2],[3266,2]]], [2984,[11215.6,1618.44,0],[[2698,2],[3267,2],[3268,2]]], [2985,[11702.1,1628.45,0],[[2699,2]]], [2986,[11793.1,1481.51,0],[[2699,2],[3269,2],[3270,2]]], [2987,[11671.7,1358.98,0],[[2699,2],[3271,2]]], +[2988,[12646.4,3243.06,0],[[2700,2]]], [2989,[12631.3,3393.55,0],[[2989,2]]], [2990,[12795.6,3342.46,0],[[2700,2],[3272,2],[3273,2]]], [2991,[12476.6,3418.7,3.8147e-006],[[2701,2]]], [2992,[12394.7,3510.84,0],[[2702,2]]], [2993,[12321.3,3728.34,0],[[2702,2],[3274,2]]], +[2994,[12120.5,3550.81,-3.8147e-006],[[2702,2],[2994,2]]], [2995,[9717.41,1956.91,0],[[2703,2]]], [2996,[9042.86,2994.43,0],[[2705,2],[2996,2]]], [2997,[8968.94,2897.15,0],[[2705,2]]], [2998,[9030.35,2541.93,0],[[2706,2],[2998,2],[3275,2],[3001,2]]], [2999,[8937.5,3336.59,6.35783e-007],[[2709,2],[3276,2],[3277,2]]], +[3000,[9406.78,3673.12,-1.27157e-006],[[2710,2],[3278,2],[3279,2]]], [3001,[9085.15,2493.29,1.90735e-006],[[2711,2],[2998,2],[3275,2]]], [3002,[9241.99,2468.43,-1.90735e-006],[[2711,2]]], [3003,[9238.16,2424.32,-1.58946e-007],[[2712,2],[3280,2],[3281,2]]], [3004,[9380.8,2323.73,4.76837e-007],[[2713,2],[3282,2]]], [3005,[8952.64,5961.46,0],[[2714,2]]], +[3006,[9020.47,5995.83,0],[[2714,2]]], [3007,[8783.44,5623.51,0],[[2715,2],[3283,2]]], [3008,[9060.42,5916.94,0],[[2716,2]]], [3009,[9177.07,5758.11,0],[[2716,2],[3284,2],[3285,2]]], [3010,[9159.95,5887.36,0],[[2716,2],[3286,2]]], [3011,[8297.04,6730.98,0],[[2718,2],[3287,2]]], +[3012,[7950.96,4910.98,3.8147e-006],[[2720,2],[3288,2]]], [3013,[8390.95,4941.62,-3.8147e-006],[[2721,2],[3015,2]]], [3014,[8185.29,4848.08,1.27157e-006],[[2721,2],[3289,2],[3290,2]]], [3015,[8519.19,4916.42,0],[[2722,2],[3013,2],[3291,2]]], [3016,[8581.17,5151.37,0],[[2722,2],[3292,2],[3293,2]]], [3017,[7276.04,4271.25,-2.54313e-006],[[2723,2],[3294,2],[3017,2]]], +[3018,[7474.6,4376.58,2.54313e-006],[[2724,2],[3295,2],[3296,2]]], [3019,[6985.19,4144.78,0],[[2725,2],[3297,2]]], [3020,[6282.07,4028.01,-2.38419e-007],[[2727,2],[3298,2],[3299,2],[3300,2]]], [3021,[5542.38,5573.46,-1.27157e-006],[[2730,2],[2743,2],[3301,2],[3302,2]]], [3022,[6064.57,5288.34,-3.8147e-006],[[2731,2],[2733,2],[3303,2],[3024,2]]], [3023,[5771.61,5209.3,0],[[2732,2],[3304,2]]], +[3024,[6104.12,5234.75,0],[[2733,2],[3022,2],[3305,2],[3306,2]]], [3025,[6725.03,7516.69,-2.54313e-006],[[2734,2],[3307,2],[3308,2]]], [3026,[6795.51,7324.16,0],[[2734,2],[2741,2],[3033,2],[3309,2]]], [3027,[7031.17,7576.78,0],[[2735,2]]], [3028,[7202.56,7615.43,0],[[2736,2],[3310,2]]], [3029,[7379.07,7640.08,5.08626e-006],[[2736,2],[3311,2],[3312,2]]], +[3030,[8005.64,6893.86,-2.54313e-006],[[2737,2],[3030,2],[3313,2]]], [3031,[7879.83,7595.86,-1.90735e-006],[[2740,2],[3314,2],[3315,2],[3316,2]]], [3032,[6582.42,7183.35,2.54313e-006],[[2741,2],[3317,2],[3318,2]]], [3033,[6737.11,7248.99,-7.62939e-006],[[2741,2],[3026,2],[3319,2]]], [3034,[5549.59,6012.98,0],[[2742,2],[3320,2]]], [3035,[5370.56,5714.48,0],[[2743,2],[2745,2],[3035,2],[3321,2]]], +[3036,[5479.28,5612.96,0],[[2743,2],[3322,2]]], [3037,[5306.91,5819.86,0],[[2745,2],[3323,2],[3324,2],[3321,2]]], [3038,[5770.58,6729.55,-2.54313e-006],[[2746,2],[3325,2],[3326,2]]], [3039,[5557.69,6610.05,0],[[2746,2],[3327,2]]], [3040,[5511.59,6506.42,-7.62939e-006],[[2747,2],[3327,2]]], [3041,[5629.62,6258.9,0],[[2747,2],[3328,2]]], +[3042,[5744.15,6281.05,0],[[2747,2]]], [3043,[5991.19,6563.36,0],[[2749,2]]], [3044,[4300.98,7359.08,0],[[2751,2],[3329,2],[3044,2],[3330,2],[3331,2]]], [3045,[3860,7341.41,1.90735e-006],[[2752,2]]], [3046,[3792.94,7454.23,-1.90735e-006],[[2752,2],[3332,2],[3333,2],[3046,2]]], [3047,[4625.99,6907.77,0],[[2755,2],[3334,2],[3335,2],[3336,2]]], +[3048,[4431.21,6988.39,0],[[2755,2],[3337,2]]], [3049,[4364.1,6383.23,0],[[2757,2],[3338,2]]], [3050,[4574.97,6025.31,0],[[2758,2],[3339,2],[3340,2],[3341,2]]], [3051,[4306.21,5852.47,-1.27157e-006],[[2759,2],[3342,2],[3343,2]]], [3052,[4191.18,5941.37,0],[[2759,2]]], [3053,[3475.97,7638.75,0],[[2760,2],[3344,2]]], +[3054,[3207.54,5549.61,0],[[2763,2],[3345,2],[3054,2]]], [3055,[3224.68,5734.99,0],[[2765,2]]], [3056,[3385.05,5468.79,0],[[2766,2],[3346,2],[3347,2],[3348,2]]], [3057,[2665.42,5416.19,9.53674e-007],[[2771,2],[3349,2]]], [3058,[2631.29,5494.04,0],[[2771,2]]], [3059,[3278.77,7980.77,0],[[2774,2],[3351,2],[3059,2],[3352,2]]], +[3060,[3242.73,8199.01,0],[[2777,2],[3353,2],[3354,2]]], [3061,[2585.1,8300.55,0],[[2779,2]]], [3062,[2319.3,9067.09,-3.8147e-006],[[2780,2],[3355,2],[3070,2],[3075,2]]], [3063,[2310.77,9191.53,0],[[2780,2],[3356,2]]], [3064,[2197.96,9042.08,0],[[2781,2]]], [3065,[1886.77,9490.42,0],[[2784,2],[3357,2]]], +[3066,[1723.01,9341,-9.53674e-007],[[2784,2],[2785,2],[3358,2],[3359,2]]], [3067,[1578.6,9214.24,0],[[2785,2],[3360,2],[3361,2]]], [3068,[1331.98,9112.22,0],[[2787,2],[3362,2]]], [3069,[2166.03,9632.87,1.90735e-006],[[2788,2],[3363,2]]], [3070,[2387.38,8962.44,0],[[2789,2],[3062,2],[3355,2]]], [3071,[2518.25,8898.77,-1.27157e-006],[[2789,2],[3072,2],[3071,2],[3364,2]]], +[3072,[2521.4,8876.29,0],[[3071,2],[3659,2],[2789,2],[3072,2]]], [3073,[2651.59,8944.86,0],[[2790,2]]], [3074,[2790.27,8817.51,0],[[2790,2],[3365,2]]], [3075,[2319.76,9012.69,0],[[2791,2],[3062,2],[3355,2]]], [3076,[2749.51,12797.7,0],[[2792,2],[3366,2]]], [3077,[2962.31,12751.3,-3.8147e-006],[[2792,2],[3367,2]]], +[3078,[3291.64,12916.9,2.54313e-006],[[2793,2],[2795,2],[3080,2],[3368,2]]], [3079,[3456.06,12745.5,0],[[2795,2],[3369,2]]], [3080,[3364.49,12917.4,-7.62939e-006],[[2795,2],[3078,2],[3370,2]]], [3081,[4945.45,16515.2,-2.54313e-006],[[2797,2],[3371,2],[3372,2]]], [3082,[5085.12,15228.3,0],[[2798,2],[3373,2]]], [3083,[5076.89,15099.6,0],[[2798,2],[3083,2]]], +[3084,[3202.36,15840.2,5.08626e-006],[[2799,2],[3374,2],[3375,2]]], [3085,[3009.26,15736.2,0],[[2799,2],[2803,2],[3085,2],[3376,2]]], [3086,[3926.29,16188.3,0],[[2801,2],[3377,2],[3378,2]]], [3087,[4143.25,16105.3,0],[[2802,2],[3379,2]]], [3088,[4132.8,15884.9,0],[[2802,2],[3380,2]]], [3089,[2933.05,15593.2,0],[[2803,2]]], +[3090,[2577.76,15154.1,2.54313e-006],[[2805,2],[3381,2],[3382,2]]], [3091,[2464.85,14476.8,0],[[2807,2],[3384,2]]], [3092,[2195.53,13849.6,0],[[2808,2]]], [3093,[2168.78,13965.2,2.54313e-006],[[2808,2],[3386,2],[3387,2]]], [3094,[2001.56,13615.9,0],[[2809,2],[3388,2]]], [3095,[2175.09,13641.9,0],[[2809,2]]], +[3096,[2441.66,13458.8,0],[[2810,2],[2812,2],[3389,2]]], [3097,[2424.22,13061.6,1.27157e-006],[[2812,2],[3390,2],[3391,2]]], [3098,[6240.74,14623.1,0],[[2813,2],[3392,2],[3393,2]]], [3099,[5796.79,14794.6,0],[[2815,2],[2824,2],[3109,2],[3394,2]]], [3100,[5921.29,14705.3,0],[[2815,2]]], [3101,[6831.24,14146.7,0],[[2816,2],[3395,2],[3101,2],[3396,2],[3103,2]]], +[3102,[6802.29,14557,2.54313e-006],[[2817,2],[3102,2],[3397,2]]], [3103,[6864.02,14221.8,0],[[2818,2],[3101,2],[3396,2]]], [3104,[6549.79,14668.2,7.62939e-006],[[2819,2]]], [3105,[3928.62,12212.4,0],[[2821,2],[3398,2]]], [3106,[5540.94,15438.5,0],[[2822,2],[3399,2]]], [3107,[5675.72,15108.1,0],[[2823,2]]], +[3108,[5829.69,15187.2,7.62939e-006],[[2823,2],[3400,2]]], [3109,[5758.75,14874.6,0],[[2824,2],[3099,2],[3401,2]]], [3110,[5766.18,14976.2,0],[[2824,2]]], [3111,[5341.21,15330.1,0],[[2825,2],[3402,2]]], [3112,[6608,12019.2,0],[[2828,2],[3403,2]]], [3113,[6299.66,11643.1,0],[[2830,2],[3404,2]]], +[3114,[7059.75,12804.5,-5.08626e-006],[[2832,2],[3405,2],[3406,2]]], [3115,[7159.55,13960.2,0],[[2833,2],[3407,2]]], [3116,[7016.24,13670.7,-2.54313e-006],[[2834,2],[3408,2],[3409,2]]], [3117,[6785.5,12933.1,7.62939e-006],[[2835,2],[3410,2]]], [3118,[6952.72,13342.3,0],[[2836,2],[3411,2],[3412,2]]], [3119,[6700.54,13407.2,0],[[2836,2],[3413,2]]], +[3120,[5108.6,11484.3,0],[[2838,2],[3414,2],[3415,2]]], [3121,[5480.8,11480.3,0],[[2840,2]]], [3122,[5353.35,11289.5,0],[[2840,2],[3416,2]]], [3123,[4552.88,11498,-7.62939e-006],[[2842,2],[3417,2]]], [3124,[4552.68,11185.1,0],[[2842,2],[3418,2],[3419,2]]], [3125,[4810.21,11362.6,0],[[2842,2],[3125,2]]], +[3126,[4454.32,11742.1,0],[[2843,2],[3417,2]]], [3127,[4336.42,11883,0],[[2843,2]]], [3128,[6068.19,11659.5,-7.62939e-006],[[2844,2],[3404,2]]], [3129,[5882.69,11735.1,-7.62939e-006],[[2844,2]]], [3130,[12660.2,11113.9,-7.62939e-006],[[2845,2],[2849,2],[3420,2]]], [3131,[12256.6,11018.6,0],[[2846,2],[3421,2]]], +[3132,[12575.8,10849.6,5.08626e-006],[[2847,2],[3132,2],[3422,2]]], [3133,[12735.9,10667.8,0],[[2847,2],[3423,2]]], [3134,[12851.9,11490.5,0],[[2848,2],[3424,2]]], [3135,[13007.7,11321.3,0],[[2848,2],[3425,2],[3426,2],[3427,2]]], [3136,[11617.2,10445.6,2.54313e-006],[[2850,2],[3428,2],[3429,2]]], [3137,[11274.9,9924.78,0],[[2853,2],[3430,2],[3431,2],[3432,2]]], +[3138,[13012.6,12532.4,0],[[2854,2],[3433,2]]], [3139,[12158.5,13229.1,1.27157e-006],[[2856,2],[3434,2],[3435,2]]], [3140,[11828.7,13321.3,0],[[2857,2],[3436,2]]], [3141,[10674.4,13418.4,-7.62939e-006],[[2858,2],[3437,2]]], [3142,[10187.6,13393,0],[[2859,2],[3438,2]]], [3143,[10310.2,13590.6,0],[[2859,2],[3439,2]]], +[3144,[10897.2,14211.4,0],[[2862,2],[3440,2],[3144,2]]], [3145,[10699.1,14157.7,0],[[2862,2],[3441,2]]], [3146,[11742.4,13661,0],[[2863,2],[3442,2]]], [3147,[11476.6,13676.5,-3.8147e-006],[[2863,2],[3443,2]]], [3148,[10043.8,9941.34,0],[[2864,2],[3444,2],[3445,2],[3446,2]]], [3149,[9915.17,10050.3,7.62939e-006],[[2864,2],[3447,2]]], +[3150,[10215.7,9922.94,0],[[2864,2],[3448,2]]], [3151,[10073.1,10380.8,0],[[2866,2]]], [3152,[10596.5,10102,0],[[2867,2],[3449,2],[3152,2]]], [3153,[9056.04,12043.7,-7.62939e-006],[[2868,2],[3450,2]]], [3154,[9356.45,12174.4,0],[[2869,2]]], [3155,[10076.6,12896.1,-2.54313e-006],[[2582,2]]], +[3156,[10156.6,13060.9,0],[[2872,2]]], [3157,[9536.62,13168.4,-2.54313e-006],[[2873,2],[3451,2],[3452,2]]], [3158,[9710.58,13191.4,0],[[2873,2],[3453,2]]], [3159,[9245.56,12464.4,0],[[2874,2],[3454,2],[3455,2]]], [3160,[9294.56,10666.5,7.62939e-006],[[2877,2],[3456,2]]], [3161,[8923.91,10962.2,0],[[2878,2],[3457,2]]], +[3162,[9042.64,11122.9,0],[[2878,2],[3458,2]]], [3163,[9288.03,11511.5,0],[[2879,2],[3459,2]]], [3164,[9622.44,10529.7,0],[[2881,2],[3460,2]]], [3165,[9434.81,10350,5.08626e-006],[[2881,2],[3461,2],[3462,2]]], [3166,[9641.94,10228,0],[[2882,2],[3463,2],[3464,2],[3166,2]]], [3167,[9567.66,10210.5,-7.62939e-006],[[2882,2],[3465,2]]], +[3168,[9689.71,10114.5,-5.08626e-006],[[2882,2],[3466,2],[3447,2]]], [3169,[15669.6,6531.55,0],[[2883,2],[3173,2]]], [3170,[15378.3,6821.2,0],[[2884,2]]], [3171,[15299.8,7154.01,7.62939e-006],[[2884,2],[3467,2]]], [3172,[15520.5,7158.65,7.62939e-006],[[2884,2],[3468,2]]], [3173,[15742.3,6485.42,0],[[2885,2],[3169,2],[3469,2],[3173,2],[3470,2]]], +[3174,[15391.7,8141.37,0],[[2886,2],[3471,2]]], [3175,[15686.6,8279.75,0],[[2887,2],[2899,2],[3191,2]]], [3176,[15428.4,7773.15,0],[[2889,2],[3472,2]]], [3177,[15649.9,7745.24,0],[[2889,2]]], [3178,[15795.1,8674.07,0],[[2890,2],[3473,2]]], [3179,[15871.3,9168.58,-2.54313e-006],[[2891,2],[3474,2],[3475,2]]], +[3180,[16007,9028.79,0],[[2892,2]]], [3181,[16510.2,9413.57,-1.27157e-006],[[2893,2],[3476,2],[3477,2],[3478,2]]], [3182,[16640.4,9404.34,3.8147e-006],[[2894,2],[3477,2]]], [3183,[16883.4,9545.44,1.27157e-006],[[2895,2],[3479,2],[3480,2]]], [3184,[16955.3,9347.2,0],[[2895,2],[3481,2],[3185,2],[3184,2]]], [3185,[16936.2,9344.88,0],[[3184,2],[3787,2],[3185,2],[2895,2]]], +[3186,[17532.9,8930.63,0],[[2896,2]]], [3187,[17713.6,8807.35,0],[[2896,2],[2922,2],[3482,2]]], [3188,[17501.8,9446.21,0],[[2897,2],[3483,2]]], [3189,[17257.6,9351.15,0],[[2897,2]]], [3190,[17496.4,9262.08,0],[[2897,2],[3484,2]]], [3191,[15704.1,8300.67,0],[[2899,2],[3175,2],[3485,2]]], +[3192,[15801.2,8370.31,0],[[2899,2]]], [3193,[15761.2,8511.32,-2.54313e-006],[[2900,2],[3473,2],[3486,2]]], [3194,[17889.8,5722.19,-1.58946e-007],[[2901,2],[2906,2],[3487,2]]], [3195,[17135.9,5444.24,1.90735e-006],[[2903,2]]], [3196,[17645.1,5023.17,-1.19209e-007],[[2909,2],[3196,2],[3197,2],[3488,2]]], [3197,[17617.2,5030.83,0],[[2909,2],[2910,2],[3196,2],[3489,2],[3490,2],[3198,2],[3227,2]]], +[3198,[17580.4,5038.62,0],[[2910,2],[3197,2],[3490,2]]], [3199,[18389.1,6221.84,0],[[2916,2],[3491,2],[3492,2]]], [3200,[18428.2,6454.99,0],[[2917,2],[3493,2]]], [3201,[18104.4,5971.65,0],[[2919,2],[3494,2],[3495,2]]], [3202,[18053.2,8968.53,0],[[2923,2],[3496,2],[3497,2],[3498,2]]], [3203,[18084.6,8785.07,-1.58946e-007],[[2924,2],[3499,2],[3203,2]]], +[3204,[16199.5,3301.16,0],[[2925,2],[3500,2]]], [3205,[15912.3,3224.82,0],[[2925,2],[2927,2]]], [3206,[16027.6,3085.57,0],[[2925,2],[3501,2]]], [3207,[16319.6,3591.87,0],[[2926,2],[3502,2],[3503,2]]], [3208,[16258.1,3730.15,0],[[2926,2],[3208,2]]], [3209,[13728.3,4343.55,0],[[2930,2],[3504,2],[3505,2]]], +[3210,[13792.1,4179.22,-3.8147e-006],[[2930,2],[3506,2]]], [3211,[13796.3,3868.5,-1.27157e-006],[[2931,2],[3507,2],[3508,2]]], [3212,[14058.7,3556.84,0],[[2932,2],[3509,2]]], [3213,[15006.3,3111.66,0],[[2933,2],[3510,2]]], [3214,[14612,3386.48,0],[[2934,2],[3511,2],[3512,2]]], [3215,[15358,3184.38,0],[[2935,2]]], +[3216,[14308.6,6042.38,0],[[2936,2],[3513,2],[3514,2],[3515,2]]], [3217,[14508,5938.34,0],[[2936,2],[3516,2],[3217,2]]], [3218,[13995.6,5799.12,7.62939e-006],[[2937,2],[3517,2]]], [3219,[14192.5,5689.61,0],[[2937,2],[3518,2]]], [3220,[14153.9,5527.13,0],[[2938,2],[3220,2],[3519,2]]], [3221,[13456.4,4818.37,0],[[2939,2],[3520,2]]], +[3222,[13325.4,5196.26,0],[[2940,2],[3521,2],[3522,2]]], [3223,[13508.5,5361.15,-2.54313e-006],[[2941,2],[3523,2],[3524,2]]], [3224,[17574.6,5079.6,2.38419e-007],[[2945,2]]], [3225,[17503.2,4965.92,0],[[2946,2],[2947,2],[3225,2],[3490,2]]], [3226,[17503.2,4845.27,0],[[2947,2],[2951,2],[3228,2],[3231,2],[3525,2],[3227,2]]], [3227,[17583.7,4915.03,0],[[2947,2],[3197,2],[3226,2],[3490,2],[3526,2]]], +[3228,[17457.3,4837.22,0],[[2951,2],[3229,2],[3226,2]]], [3229,[17446.1,4871.87,0],[[2943,2],[2951,2],[3228,2]]], [3230,[17291.1,4551.1,-2.38419e-007],[[2951,2],[3233,2]]], [3231,[17518.9,4777.39,0],[[2951,2],[3226,2],[3527,2]]], [3232,[17462.8,4690.98,0],[[2951,2],[3528,2],[3529,2]]], [3233,[17232.6,4468.39,0],[[2952,2],[3230,2],[3233,2],[3530,2],[3235,2]]], +[3234,[16885.7,4439.69,0],[[2953,2],[3531,2]]], [3235,[17091.5,4305.16,0],[[2953,2],[3233,2],[3235,2],[3532,2]]], [3236,[16884.9,4597.4,-3.17891e-007],[[2954,2],[3531,2],[3533,2]]], [3237,[14640,6907.86,-7.62939e-006],[[2955,2],[3534,2]]], [3238,[14875.3,6955.1,-7.62939e-006],[[2956,2],[3535,2]]], [3239,[15103.6,7192.61,0],[[2957,2],[3536,2]]], +[3240,[14525.4,6257.6,0],[[2958,2],[3513,2],[3240,2],[3537,2]]], [3241,[10125.6,4827.2,0],[[2961,2],[3538,2]]], [3242,[9958.06,4917.73,2.54313e-006],[[2961,2],[3539,2],[3540,2]]], [3243,[9787.22,4614.54,0],[[2962,2]]], [3244,[9556.82,4395.39,-2.54313e-006],[[2963,2],[3541,2],[3542,2]]], [3245,[11641.5,4781.41,-1.27157e-006],[[2965,2],[3543,2],[3544,2]]], +[3246,[11711,4627.15,0],[[2965,2]]], [3247,[12024.1,4079.24,0],[[2966,2],[3545,2],[3546,2]]], [3248,[10539,4412.03,0],[[2968,2]]], [3249,[10346.2,4587.81,0],[[2970,2],[3249,2],[3547,2]]], [3250,[10627.9,4911.71,0],[[2971,2],[3548,2]]], [3251,[13000.5,2258.83,0],[[2972,2],[3549,2],[3550,2]]], +[3252,[12913.3,2077.44,-1.90735e-006],[[2972,2],[3551,2]]], [3253,[13154.8,2621.01,3.8147e-006],[[2974,2],[3552,2]]], [3254,[12954.3,2630.06,-1.90735e-006],[[2974,2]]], [3255,[12254,1654.89,9.53674e-007],[[2975,2],[3258,2]]], [3256,[12053.5,1494.69,0],[[2977,2],[3553,2],[3554,2]]], [3257,[12133.2,1536.45,0],[[2977,2],[3555,2],[3556,2]]], +[3258,[12265.7,1551.26,0],[[2978,2],[3255,2],[3557,2],[3558,2]]], [3259,[12196,1516.88,-9.53674e-007],[[2978,2]]], [3260,[11470.4,1241.98,0],[[2979,2],[2980,2],[3559,2],[3271,2]]], [3261,[11407.4,1226.23,0],[[2980,2]]], [3262,[11179.5,1238.32,0],[[2981,2],[3262,2]]], [3263,[11317.5,1278.46,0],[[2982,2]]], +[3264,[11029.7,1785.96,0],[[2983,2]]], [3265,[11068.9,1922.27,-1.90735e-006],[[2983,2]]], [3266,[10949,1879.46,-4.76837e-007],[[2983,2],[3560,2],[3561,2],[3562,2]]], [3267,[11188.3,1590.31,0],[[2984,2]]], [3268,[11159.7,1640.38,0],[[2984,2],[3563,2],[3564,2],[3565,2]]], [3269,[11839.4,1497.91,-1.27157e-006],[[2986,2],[3553,2],[3566,2]]], +[3270,[11803.8,1448.65,0],[[2986,2],[3567,2],[3568,2]]], [3271,[11597.3,1245.67,-9.53674e-007],[[2987,2],[3260,2],[3569,2],[3559,2]]], [3272,[12884.2,3430.71,3.8147e-006],[[2990,2],[3570,2]]], [3273,[12883.9,3258.6,0],[[2990,2],[3571,2]]], [3274,[12315.3,3744.57,0],[[2993,2],[3572,2],[3573,2]]], [3275,[9054.47,2492.14,1.19209e-007],[[2998,2],[3001,2],[3574,2],[3575,2]]], +[3276,[8840.8,3352.55,0],[[2999,2],[3576,2],[3577,2]]], [3277,[8956.75,3182.97,0],[[2999,2],[3277,2]]], [3278,[9553.61,3623.5,0],[[3000,2]]], [3279,[9418.94,3813.66,-1.27157e-006],[[3000,2],[3578,2],[3579,2]]], [3280,[9148.02,2427.37,0],[[3003,2],[3580,2],[3575,2]]], [3281,[9235.08,2392.07,0],[[3003,2]]], +[3282,[9431.09,2296.19,0],[[3004,2],[3282,2],[3581,2]]], [3283,[8753.33,5570.93,-2.54313e-006],[[3007,2],[3582,2],[3583,2]]], [3284,[9229.17,5711.39,-2.54313e-006],[[3009,2],[3584,2],[3585,2]]], [3285,[9193.04,5794.81,0],[[3009,2],[3285,2],[3586,2],[3587,2]]], [3286,[9201.42,5956.17,0],[[3010,2],[3588,2]]], [3287,[8327.13,6788.23,0],[[3011,2],[3589,2],[3590,2]]], +[3288,[7931.68,4818.56,0],[[3012,2],[3591,2]]], [3289,[8117.92,4875.25,-3.8147e-006],[[3014,2]]], [3290,[8289.55,4766.67,0],[[3014,2],[3592,2]]], [3291,[8520.91,4883.82,0],[[3015,2],[3291,2],[3593,2]]], [3292,[8639.12,5311.84,-3.8147e-006],[[3016,2],[3583,2]]], [3293,[8694.17,5114.56,0],[[3016,2],[3594,2],[3595,2]]], +[3294,[7188.01,4197.22,-3.8147e-006],[[3017,2],[3294,2]]], [3295,[7500.79,4298.95,0],[[3018,2]]], [3296,[7614.27,4362.79,0],[[3018,2],[3596,2]]], [3297,[6974.25,4033.39,0],[[3019,2],[3597,2]]], [3298,[6284.62,3884.77,-6.35783e-007],[[3020,2],[3598,2],[3599,2]]], [3299,[6495.88,3973.82,0],[[3020,2],[3600,2]]], +[3300,[6088.97,4070.85,0],[[3020,2],[3601,2]]], [3301,[5521.66,5466.53,3.8147e-006],[[3021,2]]], [3302,[5476.67,5604.64,0],[[3021,2]]], [3303,[6107.94,5244.92,0],[[3022,2],[3602,2],[3303,2]]], [3304,[5750.47,5130.57,0],[[3023,2],[3304,2],[3603,2],[3604,2]]], [3305,[6059.07,5112.98,0],[[3024,2],[3306,2]]], +[3306,[6059.28,5119.18,0],[[3305,2],[3024,2]]], [3307,[6819.34,7657.26,-7.62939e-006],[[3025,2],[3605,2]]], [3308,[6552.13,7593.03,0],[[3025,2],[3606,2]]], [3309,[6782.78,7329.86,0],[[3026,2]]], [3310,[7188.35,7627.86,0],[[3028,2]]], [3311,[7281.7,7689.6,2.54313e-006],[[3029,2],[3311,2],[3607,2]]], +[3312,[7398.43,7689.15,0],[[3029,2],[3608,2],[3609,2]]], [3313,[8026.89,6957.02,-2.54313e-006],[[3030,2],[3610,2],[3611,2]]], [3314,[7745.09,7634.4,0],[[3031,2]]], [3315,[8016.91,7559.13,0],[[3031,2]]], [3316,[7922.37,7664.31,-1.90735e-006],[[3031,2],[3612,2],[3613,2],[3614,2]]], [3317,[6491.49,7269.45,0],[[3032,2],[3615,2],[3317,2]]], +[3318,[6500.89,7169.95,0],[[3032,2],[3616,2],[3617,2]]], [3319,[6667.65,7305.69,0],[[3033,2]]], [3320,[5555.21,6075.78,-1.27157e-006],[[3034,2],[3618,2],[3328,2]]], [3321,[5345.17,5724.88,0],[[3035,2],[3037,2],[3321,2],[3324,2]]], [3322,[5413.26,5616.41,0],[[3036,2],[3619,2],[3324,2],[3322,2],[3620,2]]], [3323,[5243.74,5845.99,-9.53674e-007],[[3037,2],[3621,2],[3619,2],[3622,2],[3623,2],[3324,2]]], +[3324,[5299.51,5756.65,-7.62939e-007],[[3037,2],[3321,2],[3322,2],[3324,2],[3619,2],[3624,2],[3323,2],[3621,2]]], [3325,[5807.69,6808.96,0],[[3038,2],[3625,2],[3626,2]]], [3326,[5705.2,6754.49,0],[[3038,2]]], [3327,[5494.32,6626.29,2.54313e-006],[[3039,2],[3040,2],[3627,2]]], [3328,[5603.89,6147.93,0],[[3041,2],[3320,2]]], [3329,[4316.59,7321.97,0],[[3044,2],[3628,2],[3329,2]]], +[3330,[4233.86,7556.35,7.62939e-006],[[3044,2],[3629,2]]], [3331,[4249.5,7365.93,0],[[3044,2]]], [3332,[3781.86,7510.15,0],[[3332,2],[3630,2]]], [3333,[3795.68,7438.95,-1.27157e-006],[[3046,2]]], [3334,[4627.92,6781.68,0],[[3047,2],[3631,2],[3334,2]]], [3335,[4718.39,6928.79,0],[[3047,2],[3632,2],[3633,2],[3634,2]]], +[3336,[4560.78,7059.27,0],[[3047,2],[3336,2]]], [3337,[4434.63,7047.81,0],[[3048,2]]], [3338,[4372.48,6438.43,0],[[3049,2]]], [3339,[4639.85,6172.06,0],[[3050,2],[3635,2]]], [3340,[4697.9,6022.09,-3.8147e-006],[[3050,2],[3636,2]]], [3341,[4552.82,5945.7,9.53674e-007],[[3050,2],[3637,2],[3342,2],[3341,2],[3638,2]]], +[3342,[4430.62,5850.07,1.27157e-006],[[3051,2],[3341,2],[3639,2],[3640,2]]], [3343,[4274.39,5727.63,0],[[3051,2],[3641,2]]], [3344,[3600.68,7638.58,0],[[3053,2],[3642,2],[3630,2]]], [3345,[3253.14,5514.06,0],[[3054,2],[3643,2],[3345,2],[3348,2]]], [3346,[3551.7,5380.13,0],[[3056,2],[3644,2]]], [3347,[3530.1,5367.49,-9.53674e-007],[[3056,2],[3645,2]]], +[3348,[3277.13,5460.06,9.53674e-007],[[3056,2],[3345,2]]], [3349,[2751.45,5373.39,0],[[3057,2],[3646,2]]], [3350,[3201.51,7966.84,2.54313e-006],[[2776,2]]], [3351,[3270.22,7994.56,2.54313e-006],[[3059,2]]], [3352,[3294.09,7908.36,-7.62939e-006],[[3059,2],[3352,2]]], [3353,[3338.29,8228.22,0],[[3060,2],[3647,2],[3648,2]]], +[3354,[3248.82,8259.38,0],[[3060,2],[3649,2],[3648,2]]], [3355,[2347.15,9022.26,1.27157e-006],[[3062,2],[3070,2],[3075,2]]], [3356,[2377.77,9215.79,0],[[3063,2],[3650,2],[3651,2]]], [3357,[1977.49,9621,0],[[3065,2],[3652,2]]], [3358,[1814.88,9488.72,1.90735e-006],[[3066,2],[3653,2]]], [3359,[1607.2,9339.03,0],[[3066,2],[3654,2],[3655,2],[3360,2]]], +[3360,[1554.8,9265.57,-3.17891e-007],[[3067,2],[3359,2],[3656,2]]], [3361,[1523.18,9207.93,-3.17891e-007],[[3067,2],[3657,2],[3362,2]]], [3362,[1431.26,9133.34,0],[[3068,2],[3361,2]]], [3363,[2259.61,9743.59,1.90735e-006],[[3069,2],[3658,2]]], [3364,[2521.07,9023.37,0],[[3071,2],[3364,2]]], [3365,[2878.73,8817.07,0],[[3074,2],[3660,2]]], +[3366,[2626.21,12721.6,0],[[3076,2],[3661,2]]], [3367,[2965.94,12720.4,-7.62939e-006],[[3077,2]]], [3368,[3327.44,12776.3,-7.62939e-006],[[3078,2],[3662,2]]], [3369,[3486.2,12624.6,-7.62939e-006],[[3079,2],[3663,2]]], [3370,[3344.51,12960.1,0],[[3080,2]]], [3371,[4933.86,16697.1,0],[[3081,2],[3664,2]]], +[3372,[5041.57,16518.2,0],[[3081,2],[3665,2],[3666,2]]], [3373,[5105.3,15309.8,0],[[3082,2],[3667,2]]], [3374,[3230.53,15964.3,0],[[3084,2],[3668,2]]], [3375,[3310.74,15893.6,0],[[3084,2],[3669,2],[3375,2],[3670,2]]], [3376,[2943.11,15916.2,-3.8147e-006],[[3085,2],[3671,2],[3672,2],[3673,2]]], [3377,[3864.75,16219.2,-7.62939e-006],[[3086,2]]], +[3378,[3998.78,16306,2.54313e-006],[[3086,2],[3674,2],[3675,2]]], [3379,[4234.43,16182.8,0],[[3087,2],[3676,2]]], [3380,[4196.37,15735.8,-7.62939e-006],[[3088,2],[3677,2]]], [3381,[2555.34,15302.7,0],[[3090,2],[3678,2]]], [3382,[2516.29,15165.1,0],[[3090,2]]], [3383,[2427,14963.3,0],[[2806,2],[3679,2]]], +[3384,[2355.28,14568.7,0],[[3091,2],[3680,2]]], [3385,[2394.32,14291.7,0],[[2811,2],[3681,2]]], [3386,[2053.32,13977.7,0],[[3093,2],[3682,2]]], [3387,[2152.66,14125.5,0],[[3093,2],[3683,2]]], [3388,[1961.59,13592.7,0],[[3094,2],[3684,2],[3685,2]]], [3389,[2357.38,13445.4,-7.62939e-006],[[3096,2],[3686,2]]], +[3390,[2369.31,12878.5,3.8147e-006],[[3097,2],[3687,2]]], [3391,[2576.37,13134.3,0],[[3097,2],[3688,2]]], [3392,[6138.67,14721,0],[[3098,2],[3689,2]]], [3393,[6314.16,14674.6,0],[[3098,2]]], [3394,[5740.72,14781.6,7.62939e-006],[[3099,2]]], [3395,[6881.19,14079.6,1.90735e-006],[[3101,2],[3690,2],[3691,2],[3692,2],[3396,2]]], +[3396,[6886.13,14191.3,0],[[3101,2],[3103,2],[3395,2],[3693,2],[3694,2]]], [3397,[6926.77,14612.8,0],[[3102,2],[3695,2],[3696,2]]], [3398,[3880.46,12116.8,5.08626e-006],[[3105,2],[3697,2],[3698,2]]], [3399,[5563.19,15571.5,0],[[3106,2],[3699,2]]], [3400,[5945.31,15305.8,7.62939e-006],[[3108,2],[3700,2]]], [3401,[5809.77,14915.8,0],[[3109,2]]], +[3402,[5395.68,15463.6,0],[[3111,2],[3701,2]]], [3403,[6743.41,12079.3,0],[[3112,2],[3702,2]]], [3404,[6224.12,11523.7,-1.90735e-006],[[3113,2],[3128,2],[3703,2],[3704,2]]], [3405,[7171.88,12687.4,-7.62939e-006],[[3114,2],[3705,2]]], [3406,[7216.58,12877.9,0],[[3114,2],[3706,2],[3707,2]]], [3407,[7262.36,14008.4,0],[[3115,2],[3708,2],[3709,2]]], +[3408,[7061.82,13624.6,1.90735e-006],[[3116,2],[3710,2],[3711,2],[3712,2]]], [3409,[6992.66,13648,0],[[3116,2]]], [3410,[6861.05,12956.9,7.62939e-006],[[3117,2]]], [3411,[6876.27,13453,-7.62939e-006],[[3118,2]]], [3412,[7093.91,13436.4,7.62939e-006],[[3118,2],[3712,2]]], [3413,[6654.33,13525,0],[[3119,2]]], +[3414,[4955.85,11352.8,0],[[3120,2],[3713,2]]], [3415,[5114.43,11616.5,0],[[3120,2],[3714,2]]], [3416,[5327.86,11148.7,2.54313e-006],[[3122,2],[3715,2],[3716,2]]], [3417,[4496.93,11628,0],[[3123,2],[3126,2]]], [3418,[4672.99,11160.1,0],[[3124,2],[3717,2]]], [3419,[4461.51,11027.5,0],[[3124,2],[3718,2]]], +[3420,[12841.8,11112.7,-7.62939e-006],[[3130,2],[3719,2],[3426,2]]], [3421,[12175.7,11028.3,-2.54313e-006],[[3131,2],[3720,2],[3721,2]]], [3422,[12555.2,10801.1,-7.62939e-006],[[3132,2]]], [3423,[12813.9,10538.9,-1.90735e-006],[[3133,2],[3722,2],[3723,2],[3724,2]]], [3424,[12829.1,11598.5,0],[[3134,2],[3725,2],[3726,2],[3727,2]]], [3425,[13059.1,11407.9,0],[[3135,2],[3728,2]]], +[3426,[12966.4,11154.5,0],[[3135,2],[3420,2],[3729,2],[3719,2]]], [3427,[13189.7,11284.9,0],[[3135,2],[3730,2]]], [3428,[11690.8,10434.9,0],[[3136,2],[3731,2],[3732,2]]], [3429,[11627,10510.4,0],[[3136,2]]], [3430,[11108.1,9847.41,0],[[3137,2],[3733,2]]], [3431,[11336.6,9752.18,-5.08626e-006],[[3137,2],[3734,2],[3735,2]]], +[3432,[11408.5,9962.92,0],[[3137,2]]], [3433,[13048.1,12597.1,0],[[3138,2],[3736,2],[3737,2]]], [3434,[12289,13336.7,-3.8147e-006],[[3139,2],[3738,2]]], [3435,[12149.4,13280.3,0],[[3139,2]]], [3436,[11879.9,13381.4,0],[[3140,2],[3436,2],[3739,2]]], [3437,[10736,13461.2,0],[[3141,2],[3740,2]]], +[3438,[10059.4,13349.5,0],[[3142,2],[3741,2]]], [3439,[10298.9,13711.5,0],[[3143,2],[3742,2]]], [3440,[11013.3,14314.5,0],[[3144,2],[3743,2],[3744,2]]], [3441,[10607.6,14175.3,0],[[3145,2],[3745,2]]], [3442,[11839.4,13729.1,0],[[3146,2],[3746,2]]], [3443,[11441.1,13835.4,0],[[3147,2],[3747,2]]], +[3444,[10012.8,9888.38,2.54313e-006],[[3148,2],[3748,2],[3749,2]]], [3445,[9964.07,9963.42,0],[[3148,2]]], [3446,[10171.4,9912.27,-2.54313e-006],[[3148,2],[3750,2],[3749,2],[3751,2]]], [3447,[9771.44,10096,0],[[3149,2],[3168,2]]], [3448,[10264.9,9815.42,0],[[3448,2],[3749,2],[3751,2],[3752,2]]], [3449,[10740.2,10021.8,0],[[3152,2],[3753,2]]], +[3450,[9041.7,12050.8,0],[[3153,2],[3754,2],[3755,2]]], [3451,[9421.27,13323.6,-7.62939e-006],[[3157,2],[3756,2]]], [3452,[9462.4,13027,0],[[3157,2],[3757,2]]], [3453,[9726.63,13288,0],[[3158,2],[3758,2]]], [3454,[9224.82,12506.9,-2.54313e-006],[[3159,2],[3759,2],[3760,2]]], [3455,[9222.73,12373.4,2.54313e-006],[[3159,2],[3761,2],[3762,2]]], +[3456,[9335.02,10541.5,0],[[3160,2],[3461,2]]], [3457,[8754.04,10982.3,0],[[3161,2],[3763,2]]], [3458,[8962.18,11191.6,7.62939e-006],[[3162,2],[3764,2]]], [3459,[9238.29,11571.7,0],[[3163,2],[3765,2],[3766,2]]], [3460,[9590.9,10614.4,0],[[3164,2],[3767,2]]], [3461,[9362.58,10472.7,0],[[3165,2],[3456,2]]], +[3462,[9304.59,10319.7,0],[[3165,2],[3768,2]]], [3463,[9582.59,10262.7,7.62939e-006],[[3166,2]]], [3464,[9656.18,10221.1,2.54313e-006],[[3166,2]]], [3465,[9501.78,10221.3,0],[[3167,2],[3769,2]]], [3466,[9663.03,10056.1,-2.54313e-006],[[3168,2],[3770,2],[3748,2]]], [3467,[15194,7283.25,0],[[3171,2],[3536,2]]], +[3468,[15593,7316.07,0],[[3172,2],[3771,2]]], [3469,[15758,6478.37,0],[[3173,2]]], [3470,[15690.7,6512.33,0],[[3173,2],[3772,2],[3470,2]]], [3471,[15361.9,8145.88,1.90735e-006],[[3174,2],[3773,2],[3774,2],[3775,2]]], [3472,[15278.2,7745.62,0],[[3176,2],[3776,2]]], [3473,[15700.7,8600.5,0],[[3178,2],[3193,2],[3777,2]]], +[3474,[15777.9,9214.57,1.27157e-006],[[3179,2],[3778,2],[3779,2]]], [3475,[15972.3,9316.03,0],[[3179,2],[3780,2]]], [3476,[16427.6,9446.89,1.27157e-006],[[3181,2],[3781,2],[3478,2],[3476,2]]], [3477,[16561.1,9450.74,-1.27157e-006],[[3181,2],[3182,2],[3782,2],[3783,2]]], [3478,[16447.8,9440.78,3.8147e-006],[[3476,2],[4099,2],[3478,2],[3181,2]]], [3479,[16997.9,9549.25,0],[[3183,2]]], +[3480,[16897.5,9628.28,-1.27157e-006],[[3183,2],[3784,2],[3785,2]]], [3481,[17078.4,9389.57,0],[[3184,2],[3786,2]]], [3482,[17766.9,8922.19,0],[[3187,2],[3788,2]]], [3483,[17573.9,9572.55,0],[[3188,2],[3789,2]]], [3484,[17681.5,9241.05,3.8147e-006],[[3190,2],[3790,2]]], [3485,[15490.5,8271.17,0],[[3191,2],[3791,2],[3773,2]]], +[3486,[15728.4,8484.86,7.62939e-006],[[3193,2]]], [3487,[17955.5,5869.44,0],[[3194,2],[3494,2]]], [3488,[17671.9,4883.94,1.19209e-007],[[3196,2],[3792,2]]], [3489,[17587.5,5029.62,0],[[3197,2]]], [3490,[17600,4967,0],[[3197,2],[3198,2],[3225,2],[3227,2],[3527,2]]], [3491,[18342.4,6147.22,-1.58946e-007],[[3199,2],[3793,2],[3794,2],[3491,2]]], +[3492,[18423.3,6285.41,-4.76837e-007],[[3199,2],[3795,2]]], [3493,[18455.8,6391.03,0],[[3200,2],[3795,2]]], [3494,[18068,5930.49,0],[[3201,2],[3487,2],[3796,2]]], [3495,[18169.1,6013.8,0],[[3201,2],[3797,2]]], [3496,[17865.3,9005.92,0],[[3202,2],[3798,2]]], [3497,[18089.7,9077.37,0],[[3202,2],[3799,2],[3800,2]]], +[3498,[18143.6,8945.39,0],[[3202,2],[3498,2],[3801,2]]], [3499,[18107.9,8850.96,0],[[3203,2],[3801,2],[3499,2]]], [3500,[16216.3,3245.83,0],[[3204,2]]], [3501,[16047.8,2955.39,0],[[3206,2],[3802,2],[3501,2]]], [3502,[16432.6,3602.49,-1.58946e-007],[[3207,2],[3803,2],[3804,2]]], [3503,[16345.7,3514.6,0],[[3207,2]]], +[3504,[13581.1,4249.69,0],[[3209,2],[3805,2]]], [3505,[13670.3,4517.22,0],[[3209,2],[3806,2]]], [3506,[13812.8,4127.23,0],[[3210,2],[3508,2],[3807,2]]], [3507,[13782.9,3695.96,0],[[3211,2],[3808,2]]], [3508,[13805.7,4027.35,0],[[3211,2],[3506,2]]], [3509,[14068.9,3514.05,1.27157e-006],[[3212,2],[3809,2],[3810,2]]], +[3510,[14939.6,3015.01,0],[[3213,2],[3811,2]]], [3511,[14436.8,3358.78,0],[[3214,2],[3812,2]]], [3512,[14620.6,3450.39,0],[[3214,2]]], [3513,[14379.6,6111.83,0],[[3216,2],[3240,2],[3537,2]]], [3514,[14177.9,5974.2,0],[[3216,2],[3517,2],[3514,2],[3515,2]]], [3515,[14206.8,6075.73,0],[[3216,2],[3514,2],[3813,2],[3814,2]]], +[3516,[14561.7,5984.15,0],[[3217,2],[3815,2]]], [3517,[13976.9,5849,-3.8147e-006],[[3218,2],[3514,2],[3816,2],[3817,2]]], [3518,[14226.6,5695.19,2.54313e-006],[[3219,2],[3818,2],[3819,2]]], [3519,[14261.9,5531.75,-2.54313e-006],[[3220,2],[3519,2],[3820,2]]], [3520,[13455.4,4689.25,-3.8147e-006],[[3221,2],[3821,2]]], [3521,[13146.1,5215.83,0],[[3222,2],[3822,2]]], +[3522,[13322.2,5067.81,0],[[3222,2],[3823,2]]], [3523,[13527.3,5497.49,-7.62939e-006],[[3223,2],[3824,2]]], [3524,[13410.7,5402.11,0],[[3223,2],[3825,2]]], [3525,[17582,4850.45,0],[[3226,2],[3826,2],[3527,2]]], [3526,[17588,4858.59,2.38419e-007],[[3227,2]]], [3527,[17574.5,4819.59,0],[[3231,2],[3490,2],[3525,2]]], +[3528,[17612,4635.79,1.19209e-007],[[3232,2],[3827,2]]], [3529,[17564.8,4750.56,0],[[3232,2],[3828,2],[3792,2]]], [3530,[17197.4,4301.79,1.58946e-007],[[3233,2],[3829,2],[3530,2]]], [3531,[16874.9,4506.54,0],[[3234,2],[3236,2]]], [3532,[17048.6,4243.47,1.58946e-007],[[3235,2],[3830,2],[3831,2]]], [3533,[16819.4,4608.6,-9.53674e-007],[[3236,2]]], +[3534,[14595.7,6962.19,0],[[3237,2],[3832,2],[3833,2]]], [3535,[14845.6,7032.55,0],[[3238,2],[3834,2]]], [3536,[15125.1,7334.71,1.90735e-006],[[3239,2],[3467,2],[3835,2],[3836,2]]], [3537,[14468.3,6273.01,-2.54313e-006],[[3240,2],[3513,2],[3837,2]]], [3538,[10247.2,4791.18,0],[[3241,2],[3838,2]]], [3539,[9812.47,4949.43,0],[[3242,2],[3839,2]]], +[3540,[9936.42,5020.68,0],[[3242,2],[3840,2],[3841,2]]], [3541,[9471.87,4244.15,0],[[3244,2],[3842,2]]], [3542,[9422.25,4450.66,0],[[3244,2],[3843,2]]], [3543,[11555.9,4926.85,0],[[3245,2],[3844,2],[3845,2],[3543,2]]], [3544,[11812.3,4756.88,0],[[3245,2],[3846,2]]], [3545,[12027,4240.22,0],[[3247,2],[3847,2]]], +[3546,[12060.9,4055.48,0],[[3247,2],[3848,2],[3849,2]]], [3547,[10352.2,4685.42,0],[[3249,2]]], [3548,[10650.9,4966.38,1.27157e-006],[[3250,2],[3850,2],[3851,2]]], [3549,[13183.1,2297.53,3.8147e-006],[[3251,2],[3852,2]]], [3550,[13010.2,2330.54,0],[[3251,2],[3853,2]]], [3551,[12922.9,1970.27,-6.35783e-007],[[3252,2],[3854,2],[3855,2]]], +[3552,[13208.7,2674.92,2.54313e-006],[[3253,2],[3856,2],[3857,2]]], [3553,[12000.7,1499.07,3.17891e-007],[[3256,2],[3269,2],[3858,2],[3568,2]]], [3554,[12058.4,1286,-3.17891e-007],[[3256,2],[3859,2],[3860,2]]], [3555,[12168.2,1580.84,0],[[3257,2]]], [3556,[12114.8,1480.83,0],[[3257,2]]], [3557,[12376.5,1503.66,0],[[3258,2],[3861,2],[3862,2]]], +[3558,[12241.5,1371.6,0],[[3258,2],[3863,2]]], [3559,[11568.6,1186.75,0],[[3260,2],[3271,2],[3864,2]]], [3560,[10832.6,1892.77,0],[[3266,2],[3865,2],[3866,2],[3867,2]]], [3561,[10951.3,1983.33,0],[[3266,2]]], [3562,[10923.2,1713.69,0],[[3266,2],[3868,2]]], [3563,[11179.3,1689.26,6.35783e-007],[[3268,2],[3563,2],[3565,2]]], +[3564,[11122.3,1472.69,0],[[3268,2],[3869,2]]], [3565,[11095,1645.08,3.17891e-007],[[3268,2],[3563,2],[3870,2],[3868,2]]], [3566,[11843.1,1564.33,-1.27157e-006],[[3269,2],[3871,2],[3872,2]]], [3567,[11782,1345.06,0],[[3270,2],[3873,2],[3567,2]]], [3568,[11916.7,1436.65,0],[[3270,2],[3553,2],[3874,2],[3858,2]]], [3569,[11563.2,1191.3,-7.15256e-007],[[3271,2],[3569,2]]], +[3570,[12971.7,3458.61,0],[[3272,2],[3875,2],[3876,2]]], [3571,[12941.3,3184.33,2.54313e-006],[[3273,2],[3877,2],[3878,2]]], [3572,[12161.4,3718.69,0],[[3274,2],[3879,2]]], [3573,[12327.8,3813.95,0],[[3274,2],[3880,2],[3881,2]]], [3574,[8970.14,2446.4,0],[[3275,2],[3882,2]]], [3575,[9079.96,2461.38,0],[[3275,2],[3280,2],[3580,2]]], +[3576,[8824.83,3175.52,0],[[3276,2],[3883,2]]], [3577,[8701.83,3403.24,6.35783e-007],[[3276,2],[3884,2],[3885,2]]], [3578,[9427.25,3953.95,6.35783e-007],[[3279,2],[3886,2],[3887,2],[3842,2]]], [3579,[9561.04,3779.66,0],[[3279,2]]], [3580,[9122.81,2442.16,0],[[3280,2],[3575,2],[3888,2],[3580,2]]], [3581,[9451.19,2295.73,0],[[3282,2]]], +[3582,[8602.41,5627.53,0],[[3283,2],[3889,2]]], [3583,[8679.63,5399.09,0],[[3283,2],[3292,2]]], [3584,[9307,5665.68,0],[[3284,2],[3890,2],[3891,2]]], [3585,[9227.89,5682.5,0],[[3284,2]]], [3586,[9258.64,5916.29,0],[[3285,2],[3892,2]]], [3587,[9272.79,5757.94,0],[[3285,2]]], +[3588,[9216.14,6030.57,0],[[3286,2],[3893,2],[3894,2],[3895,2]]], [3589,[8380.24,6953.86,0],[[3287,2],[3896,2],[3897,2]]], [3590,[8373.53,6772.21,0],[[3287,2]]], [3591,[7958.35,4788.47,1.27157e-006],[[3288,2],[3898,2],[3899,2]]], [3592,[8287.65,4643.68,-3.8147e-006],[[3290,2],[3900,2]]], [3593,[8546.17,4809,0],[[3291,2],[3901,2],[3902,2]]], +[3594,[8688.09,5058.46,3.8147e-006],[[3293,2]]], [3595,[8768.59,5100.33,-1.27157e-006],[[3293,2],[3903,2],[3904,2]]], [3596,[7753.45,4340.9,0],[[3296,2],[3905,2]]], [3597,[6930.32,3984.97,-9.53674e-007],[[3297,2],[3906,2],[3907,2],[3908,2]]], [3598,[6255.9,3719.37,0],[[3298,2],[3909,2]]], [3599,[6435.47,3852.86,0],[[3298,2],[3910,2]]], +[3600,[6540.44,3969.4,0],[[3299,2],[3911,2],[3912,2]]], [3601,[5968.79,4108.11,-1.90735e-006],[[3300,2],[3913,2]]], [3602,[6108.47,5252.21,-2.54313e-006],[[3303,2]]], [3603,[5640.49,5148.09,0],[[3304,2],[3914,2]]], [3604,[5770.88,5012.5,0],[[3304,2],[3915,2]]], [3605,[6827.56,7689.65,0],[[3307,2],[3916,2],[3917,2]]], +[3606,[6504.11,7616.05,-2.54313e-006],[[3308,2],[3918,2],[3919,2]]], [3607,[7245.5,7715.7,-7.62939e-006],[[3311,2]]], [3608,[7504.34,7647.69,0],[[3312,2]]], [3609,[7431.11,7826.03,-3.8147e-006],[[3312,2],[3920,2],[3921,2],[3922,2]]], [3610,[7985.04,6972.66,0],[[3313,2]]], [3611,[8054.33,7050.91,1.90735e-006],[[3313,2],[3923,2],[3924,2],[3925,2]]], +[3612,[7807.99,7705.91,0],[[3316,2],[3926,2]]], [3613,[8071.47,7634.89,0],[[3316,2],[3927,2]]], [3614,[7985.69,7760.98,0],[[3316,2],[3928,2],[3929,2]]], [3615,[6405.28,7367.46,2.54313e-006],[[3317,2],[3930,2],[3931,2],[3932,2]]], [3616,[6513.9,7104.32,0],[[3616,2]]], [3617,[6331.3,7146.46,-2.54313e-006],[[3318,2],[3933,2],[3934,2]]], +[3618,[5480.64,6120.81,0],[[3320,2],[3935,2],[3936,2]]], [3619,[5266.28,5676.89,0],[[3322,2],[3323,2],[3324,2],[3621,2]]], [3620,[5375.73,5564.14,-1.27157e-006],[[3322,2],[3937,2],[3620,2]]], [3621,[5194.32,5701.93,-3.8147e-006],[[3323,2],[3324,2],[3619,2],[3938,2]]], [3622,[5263.28,5895.58,-3.8147e-006],[[3323,2]]], [3623,[5074.65,5913.7,0],[[3323,2],[3939,2]]], +[3624,[5218.44,5760.81,0],[[3324,2]]], [3625,[5837.69,6956.06,-7.62939e-006],[[3325,2],[3940,2]]], [3626,[5876.69,6798.01,0],[[3325,2],[3626,2],[3941,2]]], [3627,[5426.54,6662.42,2.54313e-006],[[3327,2],[3942,2],[3627,2]]], [3628,[4316.04,7317.21,0],[[3329,2]]], [3629,[4203.78,7616.47,2.54313e-006],[[3330,2],[3943,2],[3944,2]]], +[3630,[3734.64,7633.36,-1.27157e-006],[[3332,2],[3344,2],[3945,2]]], [3631,[4629.27,6778.01,-2.54313e-006],[[3631,2],[3334,2]]], [3632,[4655.26,7072.9,7.62939e-006],[[3335,2],[3946,2]]], [3633,[4783.18,6786.02,-7.62939e-006],[[3335,2],[3947,2]]], [3634,[4912.84,6973.07,0],[[3335,2],[3948,2]]], [3635,[4691.94,6279.4,1.27157e-006],[[3339,2],[3949,2],[3950,2]]], +[3636,[4856.96,5992.8,0],[[3340,2],[3939,2]]], [3637,[4523.18,5847.5,0],[[3341,2],[3951,2]]], [3638,[4595.7,5926.17,-3.8147e-006],[[3341,2]]], [3639,[4451.99,5925.45,0],[[3342,2]]], [3640,[4512.01,5844.4,0],[[3342,2]]], [3641,[4206.31,5669.27,0],[[3343,2],[3952,2],[3641,2]]], +[3642,[3634.11,7517.75,3.8147e-006],[[3344,2],[3953,2]]], [3643,[3246.99,5528.08,0],[[3345,2]]], [3644,[3673.3,5279.46,0],[[3346,2],[3954,2]]], [3645,[3635.82,5272.87,0],[[3347,2],[3955,2]]], [3646,[2813.93,5323.8,0],[[3349,2],[3956,2]]], [3647,[3530.38,8287.49,-2.54313e-006],[[3353,2],[3957,2],[3958,2]]], +[3648,[3328.67,8293.12,-5.72205e-006],[[3353,2],[3354,2],[3959,2],[3960,2]]], [3649,[3255.67,8404.45,7.62939e-006],[[3354,2],[3961,2]]], [3650,[2429.73,9363.39,0],[[3356,2],[3962,2]]], [3651,[2534.54,9237.42,-1.90735e-006],[[3356,2],[3963,2]]], [3652,[2069.57,9723.22,0],[[3357,2],[3964,2]]], [3653,[1810.97,9602.49,4.76837e-007],[[3358,2],[3965,2],[3966,2],[3967,2]]], +[3654,[1564.11,9349.95,2.38419e-007],[[3359,2],[3654,2],[3968,2],[3969,2]]], [3655,[1635.36,9488.15,0],[[3359,2],[3966,2]]], [3656,[1406.51,9268.53,0],[[3360,2],[3657,2]]], [3657,[1479.58,9223.21,-2.38419e-007],[[3361,2],[3656,2],[3970,2],[3657,2]]], [3658,[2394.36,9841.08,0],[[3363,2],[3971,2]]], [3659,[2504.03,8864.78,0],[[3072,2]]], +[3660,[3023.91,8798.56,0],[[3365,2],[3972,2]]], [3661,[2475.92,12611.7,1.27157e-006],[[3366,2],[3973,2],[3974,2]]], [3662,[3354.73,12693.5,0],[[3368,2],[3975,2],[3662,2],[3976,2]]], [3663,[3491.81,12584.1,0],[[3369,2]]], [3664,[4923.45,16738.8,-1.90735e-006],[[3371,2],[3977,2],[3978,2],[3666,2]]], [3665,[5088.75,16505.5,0],[[3372,2],[3979,2],[3980,2]]], +[3666,[4984.96,16664.9,0],[[3372,2],[3664,2]]], [3667,[5145.3,15359.9,0],[[3373,2],[3981,2]]], [3668,[3332.24,16091.7,7.62939e-006],[[3374,2],[3982,2]]], [3669,[3287.68,15875.3,5.08626e-006],[[3375,2]]], [3670,[3381.44,15931.2,0],[[3670,2]]], [3671,[2913.31,16007.1,0],[[3376,2],[3983,2],[3984,2]]], +[3672,[2908.44,15892.6,0],[[3376,2]]], [3673,[3015.87,15985.7,0],[[3376,2]]], [3674,[4063.6,16274.6,0],[[3378,2]]], [3675,[4002.84,16344.8,0],[[3378,2],[3985,2],[3675,2],[3986,2]]], [3676,[4274.03,16284.4,0],[[3379,2],[3987,2]]], [3677,[4207.56,15699.4,0],[[3380,2]]], +[3678,[2548.43,15323.3,-5.08626e-006],[[3381,2],[3988,2],[3989,2]]], [3679,[2335.82,14992.8,2.54313e-006],[[3383,2],[3990,2],[3679,2],[3991,2]]], [3680,[2272.65,14588.6,0],[[3384,2],[3992,2]]], [3681,[2310.44,14262.2,0],[[3385,2]]], [3682,[1984.08,14006.1,0],[[3682,2],[3993,2],[3386,2]]], [3683,[2134.48,14183.7,0],[[3387,2],[3683,2],[3994,2]]], +[3684,[1911.3,13655.6,-2.54313e-006],[[3388,2],[3995,2],[3684,2],[3996,2]]], [3685,[1837.61,13493.5,0],[[3388,2],[3997,2]]], [3686,[2278.75,13396.8,-7.62939e-006],[[3389,2],[3998,2]]], [3687,[2332.2,12753,0],[[3390,2],[3999,2]]], [3688,[2702.67,13259.6,0],[[3391,2],[4000,2]]], [3689,[6121.14,14755.4,2.54313e-006],[[3392,2],[3689,2],[4001,2]]], +[3690,[6922.32,14018.5,0],[[3395,2]]], [3691,[6828.14,14034.3,0],[[3395,2]]], [3692,[6945.36,14129.3,7.62939e-006],[[3395,2],[4002,2]]], [3693,[6932.34,14163.4,0],[[3396,2],[3693,2],[3694,2]]], [3694,[6957.85,14238.6,-1.90735e-006],[[3396,2],[3693,2],[4003,2],[3694,2],[4004,2]]], [3695,[7090.64,14603.8,0],[[3397,2],[4005,2]]], +[3696,[6902.29,14720.3,-2.54313e-006],[[3397,2],[4006,2],[4007,2]]], [3697,[3845.12,11967.2,0],[[3398,2],[4008,2]]], [3698,[3689.22,12073.1,0],[[3398,2],[4009,2]]], [3699,[5570.95,15710.1,0],[[3399,2],[4010,2]]], [3700,[5988.58,15375.7,0],[[3400,2],[4011,2],[4012,2]]], [3701,[5390.23,15551.5,0],[[3402,2],[4013,2]]], +[3702,[6905.32,12113.1,0],[[3403,2],[4014,2]]], [3703,[6084.46,11398.7,0],[[3404,2],[4015,2]]], [3704,[6333,11449.3,0],[[3404,2],[4016,2],[4017,2]]], [3705,[7230.96,12654.4,7.62939e-006],[[3405,2]]], [3706,[7306.32,12792.2,0],[[3406,2]]], [3707,[7370.85,12971.8,0],[[3406,2],[4018,2]]], +[3708,[7386.47,13912.7,7.62939e-006],[[3407,2],[4019,2]]], [3709,[7430.89,14078.9,0],[[3407,2],[4020,2]]], [3710,[7020.94,13595,0],[[3408,2]]], [3711,[7113.24,13665.4,0],[[3408,2]]], [3712,[7181.42,13497.7,-1.90735e-006],[[3408,2],[3412,2],[4021,2],[4022,2]]], [3713,[4918.71,11322,0],[[3414,2],[3717,2],[4023,2]]], +[3714,[5103.91,11655.1,0],[[3415,2]]], [3715,[5189.18,11164.7,-7.62939e-006],[[3416,2],[4024,2],[4025,2]]], [3716,[5321.77,10948.1,-7.62939e-006],[[3416,2],[4026,2]]], [3717,[4723.35,11170.6,1.90735e-006],[[3418,2],[3713,2],[3717,2],[4027,2]]], [3718,[4443.06,10990.3,0],[[3419,2],[4028,2],[4029,2]]], [3719,[12953,11128.7,0],[[3420,2],[3426,2]]], +[3720,[12137.3,11177.4,7.62939e-006],[[3421,2],[4030,2]]], [3721,[12096.8,10955.7,0],[[3421,2],[4031,2],[3721,2],[4032,2]]], [3722,[12603.7,10505.6,0],[[3423,2],[4033,2]]], [3723,[12910.6,10380.6,0],[[3423,2],[4034,2],[4035,2]]], [3724,[12857.9,10597.3,0],[[3423,2]]], [3725,[12949.9,11603.7,0],[[3424,2],[4036,2]]], +[3726,[12823.3,11763.6,2.54313e-006],[[3424,2],[4037,2],[4038,2]]], [3727,[12681.1,11568.4,0],[[3424,2],[4039,2]]], [3728,[13074.7,11442.2,0],[[3425,2]]], [3729,[12960.8,11128.4,0],[[3426,2],[4040,2]]], [3730,[13340.6,11255.6,-3.8147e-006],[[3427,2],[4041,2],[4042,2],[4043,2]]], [3731,[11790.2,10452.3,0],[[3428,2],[4044,2],[4045,2]]], +[3732,[11649.5,10323.5,0],[[3428,2],[4046,2],[4047,2]]], [3733,[10950.7,9894.17,0],[[3430,2],[3753,2]]], [3734,[11235.3,9721.56,0],[[3431,2]]], [3735,[11427.7,9623.41,-7.62939e-006],[[3431,2],[4048,2]]], [3736,[12989.5,12659,1.90735e-006],[[3433,2]]], [3737,[13162.6,12738.3,0],[[3433,2],[4049,2]]], +[3738,[12393.7,13431,0],[[3434,2],[4050,2]]], [3739,[11955.9,13413.2,9.53674e-007],[[3436,2],[4051,2]]], [3740,[10724.5,13597.5,0],[[3437,2]]], [3741,[9992.51,13329.4,0],[[3438,2],[4052,2],[3758,2]]], [3742,[10236.7,13764.7,0],[[3439,2],[4053,2]]], [3743,[11126.7,14385.7,0],[[3440,2],[4054,2],[4055,2],[4056,2]]], +[3744,[10921.9,14440.8,0],[[3440,2],[4057,2]]], [3745,[10540,14171.9,2.54313e-006],[[3441,2],[4058,2],[4059,2]]], [3746,[11972.1,13788.4,-1.90735e-006],[[3442,2],[4060,2]]], [3747,[11436.1,13978.3,1.27157e-006],[[3443,2],[4061,2],[4062,2]]], [3748,[9842.31,9980.7,7.62939e-006],[[3444,2],[3466,2]]], [3749,[10143.1,9822.6,0],[[3444,2],[3446,2],[3751,2],[3448,2]]], +[3750,[10119.1,9943.39,0],[[3446,2]]], [3751,[10182.3,9818.15,-1.90735e-006],[[3749,2],[3448,2],[3446,2],[4386,2]]], [3752,[10454.3,9736.22,7.62939e-006],[[3448,2],[4387,2]]], [3753,[10755.4,10019.9,-2.54313e-006],[[3449,2],[3733,2],[4063,2]]], [3754,[9110.16,12199.1,0],[[3450,2],[3761,2]]], [3755,[8916.75,12068.6,-3.05176e-006],[[3450,2],[4064,2],[4065,2],[4066,2],[4067,2]]], +[3756,[9381.46,13362.8,-3.8147e-006],[[3451,2],[4068,2],[4069,2],[4070,2]]], [3757,[9396.64,12889.8,-7.62939e-006],[[3452,2],[4071,2]]], [3758,[9872.8,13352.4,0],[[3453,2],[3741,2],[4072,2],[3758,2],[4073,2],[4052,2]]], [3759,[9290.38,12664,0],[[3454,2],[4071,2]]], [3760,[9146.08,12556.8,0],[[3454,2],[4074,2],[4075,2]]], [3761,[9165.6,12287.9,-2.54313e-006],[[3455,2],[3754,2],[4076,2]]], +[3762,[9383.81,12345,0],[[3455,2],[4077,2]]], [3763,[8741.46,10991.2,5.08626e-006],[[3457,2],[4078,2],[4079,2]]], [3764,[8932.66,11192.1,-7.62939e-006],[[3458,2]]], [3765,[9300.02,11700,0],[[3459,2],[3765,2]]], [3766,[9036.51,11587.4,0],[[3459,2],[4080,2]]], [3767,[9532.77,10689.7,0],[[3460,2],[4081,2]]], +[3768,[9222.34,10348.6,1.90735e-006],[[3462,2],[4082,2],[4083,2],[4084,2]]], [3769,[9460.72,10215.3,2.54313e-006],[[3465,2],[3769,2],[4085,2]]], [3770,[9588.78,9885.8,0],[[3466,2],[4086,2]]], [3771,[15613.6,7360.91,0],[[3468,2]]], [3772,[15688.6,6515.83,0],[[3470,2]]], [3773,[15399,8262.18,3.8147e-006],[[3471,2],[3485,2],[3791,2],[4087,2],[4088,2]]], +[3774,[15244.3,7942.72,0],[[3471,2],[3776,2]]], [3775,[15291.4,8165.86,0],[[3471,2],[4089,2],[4090,2]]], [3776,[15210,7732.31,3.8147e-006],[[3472,2],[3774,2],[4091,2],[4092,2]]], [3777,[15644.1,8655.34,0],[[3473,2],[4093,2],[4094,2]]], [3778,[15643.5,9132.3,0],[[3474,2],[4095,2]]], [3779,[15633.9,9353.14,0],[[3474,2],[4096,2]]], +[3780,[16021.2,9442.69,0],[[3475,2],[4097,2]]], [3781,[16341.5,9492.91,0],[[3476,2],[4098,2]]], [3782,[16513.3,9484.98,-2.54313e-006],[[3477,2],[4100,2],[4101,2]]], [3783,[16627.1,9419.32,-1.90735e-006],[[3477,2]]], [3784,[16916.4,9771.18,0],[[3480,2],[4102,2],[4103,2]]], [3785,[17020.8,9615.89,-3.8147e-006],[[3480,2],[4104,2]]], +[3786,[17190.6,9452.98,3.8147e-006],[[3481,2],[4105,2]]], [3787,[16917.7,9356.06,0],[[3185,2]]], [3788,[17806.6,9068.17,1.90735e-006],[[3482,2],[4106,2]]], [3789,[17678.2,9679.42,3.8147e-006],[[3483,2],[4107,2]]], [3790,[17850.3,9219.27,0],[[3484,2],[4108,2],[4106,2]]], [3791,[15465.8,8267.72,0],[[3485,2],[3773,2],[4109,2]]], +[3792,[17608.5,4781.61,0],[[3488,2],[3529,2],[4110,2]]], [3793,[18304.9,6048.71,0],[[3491,2],[4111,2]]], [3794,[18350.9,6156.09,0],[[3491,2]]], [3795,[18446.6,6310.96,7.94729e-008],[[3492,2],[3493,2],[3795,2]]], [3796,[18173.7,5901.42,0],[[3494,2],[3796,2],[4112,2],[4111,2]]], [3797,[18233.5,6054.25,0],[[3495,2],[4111,2]]], +[3798,[17822.4,9014.88,0],[[3496,2]]], [3799,[18133.4,9059.93,6.35783e-007],[[3497,2],[4113,2],[4114,2]]], [3800,[18110.4,9227.15,0],[[3497,2],[4115,2],[4116,2]]], [3801,[18154,8920.55,0],[[3498,2],[3499,2],[4117,2]]], [3802,[16082,2894.42,0],[[3501,2],[4118,2],[4119,2]]], [3803,[16454.1,3660.45,-3.17891e-007],[[3502,2],[4120,2],[4121,2]]], +[3804,[16426.2,3412.92,-2.38419e-007],[[3502,2],[4122,2]]], [3805,[13501.7,4203.82,0],[[3504,2],[4123,2],[4124,2]]], [3806,[13604.3,4609.31,0],[[3505,2],[3821,2]]], [3807,[13876.8,4127.41,0],[[3506,2],[3807,2],[4125,2]]], [3808,[13812.9,3546.08,3.8147e-006],[[3507,2],[4126,2]]], [3809,[14214.1,3561.59,0],[[3509,2],[4127,2]]], +[3810,[14085.8,3391.97,-9.53674e-007],[[3509,2],[3810,2],[4128,2],[3812,2]]], [3811,[14890.1,2984.11,0],[[3510,2],[4129,2],[4130,2]]], [3812,[14284.1,3344.94,0],[[3511,2],[3810,2]]], [3813,[14096.2,6163.61,0],[[3515,2],[4131,2],[3814,2],[4132,2]]], [3814,[14245.2,6236.89,0],[[3515,2],[3813,2],[4133,2]]], [3815,[14616.2,6023.09,0],[[3516,2]]], +[3816,[13949.2,6000.99,0],[[3517,2],[4131,2]]], [3817,[13795.9,5758.37,0],[[3517,2],[4134,2],[4135,2]]], [3818,[14233.6,5745.06,0],[[3518,2],[4136,2],[4137,2]]], [3819,[14274.7,5680.63,-7.62939e-006],[[3518,2]]], [3820,[14277.8,5524.69,-7.62939e-006],[[3519,2]]], [3821,[13464.5,4671.75,-1.27157e-006],[[3520,2],[3806,2],[4138,2]]], +[3822,[13008.4,5245.36,0],[[3521,2],[4139,2]]], [3823,[13308.6,4935.13,-3.8147e-006],[[3522,2],[4140,2]]], [3824,[13454,5568.43,0],[[3523,2],[4141,2]]], [3825,[13414.7,5425.17,0],[[3524,2]]], [3826,[17567.1,4806.11,0],[[3525,2]]], [3827,[17646.1,4651.71,3.97364e-008],[[3528,2],[4142,2],[3828,2],[4143,2]]], +[3828,[17581.4,4760.79,0],[[3529,2],[3827,2],[4142,2]]], [3829,[17182.8,4146.27,0],[[3530,2],[4144,2]]], [3830,[16925.2,4142.86,0],[[3532,2],[4145,2]]], [3831,[17073.8,4077.9,0],[[3532,2],[4146,2]]], [3832,[14551.5,7161.06,0],[[3534,2],[4147,2]]], [3833,[14424.9,6983.92,-1.90735e-006],[[3534,2],[4148,2],[3833,2],[4149,2]]], +[3834,[14840.2,7115.85,0],[[3535,2],[4150,2]]], [3835,[15023.7,7310.38,0],[[3536,2]]], [3836,[15154.8,7507.15,7.62939e-006],[[3536,2],[4091,2]]], [3837,[14517.6,6377.28,0],[[3537,2]]], [3838,[10233.1,4738.49,0],[[3538,2]]], [3839,[9702.14,4968.64,0],[[3539,2],[4151,2]]], +[3840,[10087,5023.58,0],[[3540,2],[4152,2]]], [3841,[9902.39,5078.73,0],[[3540,2],[4153,2],[4154,2]]], [3842,[9439.43,4179.22,0],[[3541,2],[3578,2],[3887,2]]], [3843,[9284.92,4496.68,0],[[3542,2],[4155,2]]], [3844,[11583.8,4998.12,0],[[3543,2],[4156,2],[4157,2]]], [3845,[11479.5,4936.69,0],[[3543,2]]], +[3846,[11914.5,4727.18,0],[[3544,2]]], [3847,[12040,4259.83,0],[[3545,2]]], [3848,[12223.7,4010.03,0],[[3546,2],[3880,2]]], [3849,[12037.9,3965.65,-1.27157e-006],[[3546,2],[4158,2],[4159,2]]], [3850,[10822.4,4942.78,0],[[3548,2],[4160,2],[4161,2]]], [3851,[10600.2,4998.54,0],[[3548,2],[4162,2],[4163,2]]], +[3852,[13348.4,2331.29,0],[[3549,2],[4164,2]]], [3853,[13010.2,2397.73,3.8147e-006],[[3550,2],[4165,2]]], [3854,[12945.8,1803.65,0],[[3551,2],[4166,2]]], [3855,[13054.4,1982.27,0],[[3551,2]]], [3856,[13344.5,2702.84,0],[[3552,2],[4167,2]]], [3857,[13085,2682.49,0],[[3552,2],[4168,2]]], +[3858,[11996.9,1439.92,0],[[3553,2],[3568,2],[4169,2]]], [3859,[12125.6,1226.4,0],[[3554,2]]], [3860,[12047.9,1218.27,-6.35783e-007],[[3554,2],[4170,2],[4171,2]]], [3861,[12440.4,1451.88,3.17891e-007],[[3557,2],[4172,2],[4173,2]]], [3862,[12360.8,1674.74,0],[[3557,2],[4174,2]]], [3863,[12243.6,1358.38,-3.17891e-007],[[3558,2],[4175,2],[4176,2]]], +[3864,[11662.5,1153.18,-9.53674e-007],[[3559,2],[4177,2],[4178,2]]], [3865,[10808.9,1736.16,0],[[3560,2],[4179,2]]], [3866,[10895.4,2025.54,-1.90735e-006],[[3560,2],[4180,2]]], [3867,[10736.1,1895.18,0],[[3560,2],[4181,2],[4182,2]]], [3868,[10922.6,1577.59,0],[[3562,2],[3565,2],[4183,2],[4184,2]]], [3869,[11110.3,1410.31,0],[[3564,2]]], +[3870,[11020.3,1561.75,0],[[3565,2],[4185,2]]], [3871,[11935.6,1570.61,0],[[3566,2]]], [3872,[11917.8,1635.03,-1.90735e-006],[[3566,2]]], [3873,[11757.8,1229.75,0],[[3567,2],[4186,2],[4187,2]]], [3874,[11917.9,1375.96,0],[[3568,2],[3874,2],[4188,2],[4186,2]]], [3875,[13036.1,3310.65,0],[[3570,2],[3877,2]]], +[3876,[12971.5,3543.1,-1.27157e-006],[[3570,2],[4189,2],[4190,2]]], [3877,[13064.4,3231.45,1.27157e-006],[[3571,2],[3875,2],[3877,2]]], [3878,[12987.2,3106.41,-1.27157e-006],[[3571,2],[4191,2],[4192,2]]], [3879,[12129.9,3713.33,0],[[3572,2]]], [3880,[12315.6,4000.72,1.90735e-006],[[3573,2],[3848,2],[4193,2],[3880,2],[4194,2]]], [3881,[12429.1,3828.07,0],[[3573,2],[3881,2]]], +[3882,[8859.33,2506.84,0],[[3574,2],[4195,2]]], [3883,[8803.44,3011.74,1.90735e-006],[[3576,2],[4196,2]]], [3884,[8661.89,3255.87,1.90735e-006],[[3577,2],[4197,2]]], [3885,[8550.97,3470.21,3.8147e-006],[[3577,2],[4198,2]]], [3886,[9585.63,3900.03,0],[[3578,2],[4199,2]]], [3887,[9433.15,4114.78,0],[[3578,2],[3842,2],[4200,2]]], +[3888,[9120.5,2439.21,-3.17891e-007],[[3580,2]]], [3889,[8488.53,5657.36,0],[[3582,2],[4201,2],[4202,2]]], [3890,[9345.67,5723.17,-3.8147e-006],[[3584,2],[4203,2],[3890,2],[4204,2]]], [3891,[9358.08,5612.01,0],[[3584,2],[4205,2],[4206,2]]], [3892,[9319.12,5966.6,-3.8147e-006],[[3586,2],[4207,2],[4208,2],[4209,2]]], [3893,[9125.79,6041.68,0],[[3588,2],[3893,2]]], +[3894,[9287.53,6120.93,2.54313e-006],[[3588,2],[3895,2],[3894,2],[4210,2]]], [3895,[9261.17,6127.74,0],[[3894,2],[4531,2],[3588,2],[3895,2]]], [3896,[8414.61,7068.6,0],[[3589,2],[4211,2],[4212,2],[4213,2]]], [3897,[8371.82,6964.71,0],[[3589,2]]], [3898,[7952.35,4647.38,0],[[3591,2],[4214,2]]], [3899,[8080.16,4787.77,0],[[3591,2],[3899,2]]], +[3900,[8240.67,4611.96,0],[[3592,2],[4215,2]]], [3901,[8583.74,4770.18,1.90735e-006],[[3593,2],[4216,2],[4217,2],[4218,2]]], [3902,[8490.91,4783.5,0],[[3593,2]]], [3903,[8806.13,5079.88,-1.27157e-006],[[3595,2],[4219,2],[4220,2]]], [3904,[8790.73,5205.79,0],[[3595,2],[4221,2]]], [3905,[7764.66,4330,0],[[3596,2],[4222,2],[4223,2]]], +[3906,[7150.35,3950.31,0],[[3597,2],[4224,2]]], [3907,[6845.08,3868.02,0],[[3597,2],[4225,2]]], [3908,[6857.63,3986.01,0],[[3597,2],[4226,2],[3912,2]]], [3909,[6239.53,3693.72,0],[[3598,2],[4227,2],[4228,2]]], [3910,[6540.6,3814.68,0],[[3599,2],[4229,2]]], [3911,[6541.81,3887.57,-9.53674e-007],[[3600,2]]], +[3912,[6699.52,3989.47,0],[[3600,2],[3908,2]]], [3913,[5828.1,4153.53,0],[[3601,2],[4230,2]]], [3914,[5613.28,5188.81,0],[[3603,2],[4231,2],[4232,2]]], [3915,[5757.8,4947.81,-1.27157e-006],[[3604,2],[4233,2],[4234,2]]], [3916,[6950.37,7796.79,7.62939e-006],[[3605,2],[4235,2]]], [3917,[6806.03,7773.57,0],[[3605,2],[4236,2]]], +[3918,[6463.73,7664.56,-2.54313e-006],[[3606,2],[4237,2],[4238,2]]], [3919,[6542.84,7484.19,0],[[3606,2]]], [3920,[7591.25,7764.17,0],[[3609,2],[3926,2]]], [3921,[7299.58,7875.79,0],[[3609,2],[4239,2]]], [3922,[7457.44,8028.44,0],[[3609,2],[4240,2],[4241,2]]], [3923,[8120.46,7122.12,0],[[3611,2],[4242,2],[4211,2]]], +[3924,[7979.05,7073.55,0],[[3611,2]]], [3925,[8102.19,7056.8,0],[[3611,2]]], [3926,[7666.37,7762.73,7.62939e-006],[[3612,2],[3920,2]]], [3927,[8233.95,7691.28,0],[[3613,2],[4243,2]]], [3928,[8176.54,7730.55,-7.62939e-006],[[3614,2],[4243,2]]], [3929,[8026.56,7897.04,2.54313e-006],[[3614,2],[4244,2],[4245,2]]], +[3930,[6318.54,7358.31,0],[[3615,2],[4246,2],[3932,2],[3930,2]]], [3931,[6279.25,7536.81,7.62939e-006],[[3615,2],[4247,2],[4248,2]]], [3932,[6339.32,7365.91,0],[[3930,2],[4562,2],[3932,2],[3615,2]]], [3933,[6248.64,7143.31,0],[[3617,2],[4250,2]]], [3934,[6263.14,7000.95,7.62939e-006],[[3617,2],[4251,2]]], [3935,[5292.91,6207.04,0],[[3618,2],[4252,2]]], +[3936,[5491.44,6187.01,-7.62939e-006],[[3618,2]]], [3937,[5305.35,5411.03,-3.8147e-006],[[3620,2],[4253,2]]], [3938,[5080.14,5729.02,0],[[3621,2],[4254,2],[4255,2]]], [3939,[4990.76,5944.49,0],[[3623,2],[3636,2],[4256,2],[4255,2]]], [3940,[5852.45,7067.92,2.54313e-006],[[3625,2],[4257,2],[4258,2]]], [3941,[5927.03,6866.69,2.54313e-006],[[3626,2],[4259,2],[4260,2]]], +[3942,[5308.38,6783.02,0],[[3627,2],[4261,2]]], [3943,[4381.21,7656.52,2.54313e-006],[[3629,2],[4262,2],[4263,2]]], [3944,[4086.71,7597.64,0],[[3629,2],[4264,2]]], [3945,[3915.75,7616.03,-3.8147e-006],[[3630,2],[4264,2]]], [3946,[4568.86,7260.79,0],[[3632,2],[4265,2]]], [3947,[4834.97,6671.12,-7.62939e-006],[[3633,2],[4266,2]]], +[3948,[5056.89,6997.81,0],[[3634,2],[4267,2],[4268,2],[4261,2]]], [3949,[4733.15,6235.85,1.27157e-006],[[3635,2],[3949,2],[4269,2]]], [3950,[4723.69,6324.74,0],[[3635,2],[4270,2],[4271,2]]], [3951,[4675.84,5835.6,-2.54313e-006],[[3637,2],[4272,2],[4273,2]]], [3952,[4144.89,5636.97,0],[[3641,2],[4274,2],[4275,2]]], [3953,[3669.71,7384.67,0],[[3642,2],[4276,2]]], +[3954,[3812.26,5164.78,0],[[3644,2],[4277,2]]], [3955,[3659.48,5224.14,3.17891e-007],[[3645,2],[4278,2],[3955,2]]], [3956,[2883.03,5228.49,0],[[3646,2],[4279,2]]], [3957,[3550.98,8245.09,0],[[3647,2]]], [3958,[3583.57,8321.38,-2.54313e-006],[[3647,2],[4280,2],[4281,2]]], [3959,[3457.15,8332.23,0],[[3648,2]]], +[3960,[3324.92,8375.36,0],[[3648,2]]], [3961,[3255.72,8561.15,0],[[3649,2],[4282,2],[4283,2]]], [3962,[2448.19,9378.2,-6.35783e-007],[[3650,2],[4284,2],[4285,2]]], [3963,[2641.94,9213.65,0],[[3651,2],[4286,2],[4287,2]]], [3964,[2091.84,9757.01,-6.35783e-007],[[3652,2],[4288,2],[4289,2]]], [3965,[1806.58,9738.67,-4.76837e-007],[[3653,2],[4290,2],[4291,2],[4292,2]]], +[3966,[1721.26,9589.51,0],[[3653,2],[3655,2],[4293,2]]], [3967,[1844.62,9606.42,0],[[3653,2]]], [3968,[1591.11,9508.89,0],[[3654,2],[3968,2]]], [3969,[1463.96,9342.86,0],[[3654,2]]], [3970,[1392.88,9222.55,4.76837e-007],[[3657,2]]], [3971,[2536.79,9897.6,0],[[3658,2],[4294,2]]], +[3972,[3151.06,8782.65,-3.8147e-006],[[3660,2],[4295,2],[4282,2]]], [3973,[2429.11,12634.4,-6.35783e-007],[[3661,2],[4296,2],[4297,2],[3999,2]]], [3974,[2561.41,12496.3,0],[[3661,2],[4298,2]]], [3975,[3348.2,12722.2,0],[[3662,2],[4299,2]]], [3976,[3367.02,12605.9,-5.08626e-006],[[3662,2],[3976,2],[4300,2]]], [3977,[4849.44,16694.2,0],[[3664,2],[4301,2]]], +[3978,[4928.28,16796.1,0],[[3664,2],[4302,2],[4303,2]]], [3979,[5091.57,16475.2,2.54313e-006],[[3665,2],[3979,2],[4304,2]]], [3980,[5199.85,16649.3,0],[[3665,2],[4305,2]]], [3981,[5162.17,15384.3,-2.54313e-006],[[3667,2],[4306,2],[4307,2]]], [3982,[3377.26,16132.8,1.90735e-006],[[3668,2],[4308,2],[4309,2],[4310,2],[4311,2]]], [3983,[2847.88,16194.8,-7.62939e-006],[[3671,2],[4312,2]]], +[3984,[2897.17,15991.6,7.62939e-006],[[3671,2]]], [3985,[4113.63,16477.9,0],[[3675,2],[4313,2]]], [3986,[3857.55,16313.4,0],[[3675,2],[4314,2]]], [3987,[4261.77,16443.8,3.05176e-005],[[3676,2],[4315,2]]], [3988,[2481.65,15392.5,0],[[3678,2],[3988,2],[4316,2]]], [3989,[2634.01,15335.8,0],[[3678,2]]], +[3990,[2292.5,14959.1,0],[[3679,2],[4317,2],[3990,2]]], [3991,[2323.73,15079.3,-2.54313e-006],[[3679,2],[3991,2]]], [3992,[2159.35,14612.3,0],[[3680,2],[4318,2],[4319,2]]], [3993,[2000.94,13995.3,-1.27157e-006],[[3682,2]]], [3994,[2064.17,14191.5,0],[[3683,2]]], [3995,[1917.82,13626.7,-1.27157e-006],[[3684,2]]], +[3996,[1927.75,13771.2,-3.8147e-006],[[3684,2],[4320,2]]], [3997,[1719.06,13425.5,0],[[3685,2],[4321,2]]], [3998,[2276.81,13382.8,7.62939e-006],[[3686,2]]], [3999,[2320.25,12721.4,0],[[3687,2],[3973,2],[4322,2],[4297,2]]], [4000,[2740.02,13336.5,2.54313e-006],[[3688,2],[4000,2],[4323,2]]], [4001,[6163.09,14793.9,0],[[3689,2]]], +[4002,[7075.34,14098.6,0],[[3692,2],[4003,2]]], [4003,[6980.15,14197.8,5.72205e-006],[[3694,2],[4002,2],[4003,2]]], [4004,[7032.89,14305.1,0],[[3694,2]]], [4005,[7149.24,14604.4,1.90735e-006],[[3695,2],[4324,2],[4325,2],[4326,2]]], [4006,[6892.38,14722.4,0],[[3696,2]]], [4007,[6912.96,14884.6,7.62939e-006],[[3696,2],[4327,2]]], +[4008,[3798.84,11832.4,7.62939e-006],[[3697,2],[4328,2]]], [4009,[3549.45,12052.2,0],[[3698,2],[4329,2]]], [4010,[5582.29,15859.7,0],[[3699,2],[4330,2]]], [4011,[6015.03,15436.9,2.54313e-006],[[3700,2],[4331,2],[4332,2]]], [4012,[6031.37,15351.4,0],[[3700,2]]], [4013,[5396.92,15648.1,0],[[3701,2],[4333,2]]], +[4014,[7014.58,12148.6,0],[[3702,2],[4334,2],[4335,2]]], [4015,[5961.66,11287.7,-7.62939e-006],[[3703,2],[4336,2]]], [4016,[6465.94,11542.5,0],[[3704,2],[4337,2]]], [4017,[6430.12,11353.6,0],[[3704,2],[4338,2],[4339,2]]], [4018,[7408.82,12975.2,0],[[3707,2],[4340,2],[4341,2]]], [4019,[7464.24,13825.2,0],[[3708,2],[4342,2]]], +[4020,[7463.37,14104.6,0],[[3709,2],[4343,2]]], [4021,[7257.05,13344.8,0],[[3712,2],[4344,2]]], [4022,[7345.38,13607.8,0],[[3712,2],[4345,2],[4342,2]]], [4023,[4887.27,11379.7,0],[[3713,2]]], [4024,[5169.71,11090.5,-7.62939e-006],[[3715,2],[4025,2]]], [4025,[5177.81,11097.1,7.62939e-006],[[4024,2],[3715,2]]], +[4026,[5305.93,10831.9,-2.54313e-006],[[3716,2],[4346,2],[4347,2]]], [4027,[4803.4,11004.6,7.62939e-006],[[3717,2],[4348,2]]], [4028,[4404.6,10947.4,0],[[3718,2],[4349,2],[4028,2],[4350,2]]], [4029,[4481.68,10859.9,-7.62939e-006],[[3718,2],[4351,2]]], [4030,[12144.1,11193.1,0],[[3720,2]]], [4031,[12072.4,10850.5,0],[[3721,2],[4352,2],[4353,2]]], +[4032,[11978.2,10977.5,0],[[3721,2]]], [4033,[12472.3,10433.8,0],[[3722,2],[4354,2]]], [4034,[12951.7,10306.4,0],[[3723,2],[4355,2],[4356,2]]], [4035,[12956.1,10394.1,0],[[3723,2]]], [4036,[13085.4,11615.3,-7.62939e-006],[[3725,2],[4357,2]]], [4037,[12917.2,11913.9,0],[[3726,2],[4358,2]]], +[4038,[12756,11751.9,0],[[3726,2]]], [4039,[12578.8,11614.1,0],[[3727,2],[4359,2]]], [4040,[12947.6,11036.1,0],[[3729,2]]], [4041,[13320.8,11105.6,0],[[3730,2],[4360,2]]], [4042,[13396.6,11408.6,7.62939e-006],[[3730,2],[4361,2]]], [4043,[13494,11142.6,0],[[3730,2],[4362,2],[4363,2]]], +[4044,[11770.1,10590.2,0],[[3731,2]]], [4045,[11877.4,10458.2,0],[[3731,2],[4364,2],[4365,2]]], [4046,[11594.6,10224.8,0],[[3732,2]]], [4047,[11691.6,10308.2,0],[[3732,2]]], [4048,[11426.8,9608.43,-2.54313e-006],[[3735,2],[4366,2],[4367,2]]], [4049,[13170.2,12758.8,-1.58946e-007],[[3737,2],[4368,2],[4369,2]]], +[4050,[12421.2,13452.1,0],[[3738,2],[4370,2],[4371,2]]], [4051,[11979.5,13427,0],[[3739,2],[4372,2],[4051,2]]], [4052,[9942.26,13329.1,-7.62939e-006],[[3741,2],[3758,2],[4373,2]]], [4053,[10221.4,13762.1,0],[[3742,2],[4374,2],[4375,2]]], [4054,[11188.5,14263.2,0],[[3743,2]]], [4055,[11238.6,14450.9,0],[[3743,2],[4376,2],[4377,2]]], +[4056,[11129,14434.2,-2.54313e-006],[[3743,2],[4056,2],[4378,2]]], [4057,[10899.8,14460.9,2.54313e-006],[[3744,2],[4379,2],[4380,2]]], [4058,[10370,14089.9,0],[[3745,2],[4381,2]]], [4059,[10461.1,14313.9,0],[[3745,2],[4382,2]]], [4060,[12041.6,13824.2,0],[[3746,2],[4383,2],[4384,2]]], [4061,[11342.8,13945,0],[[3747,2],[4061,2]]], +[4062,[11601,14066.5,0],[[3747,2],[4385,2]]], [4063,[10774.7,10081.3,0],[[3753,2]]], [4064,[8858.47,11913.8,0],[[3755,2],[4388,2]]], [4065,[8717.44,12096.1,0],[[3755,2],[4389,2]]], [4066,[8950.36,12214.1,0],[[3755,2],[4390,2]]], [4067,[8868.99,12165.3,-7.62939e-006],[[3755,2],[4391,2],[4390,2]]], +[4068,[9319.71,13314.9,0],[[3756,2],[4392,2],[4393,2]]], [4069,[9257.25,13483.6,0],[[3756,2],[4394,2]]], [4070,[9508.49,13483.2,0],[[3756,2],[4395,2],[4396,2]]], [4071,[9329.95,12741.1,0],[[3757,2],[3759,2],[4397,2]]], [4072,[9857.03,13350.5,0],[[3758,2]]], [4073,[9948.68,13333.1,0],[[3758,2]]], +[4074,[9231.77,12711.3,0],[[3760,2],[4398,2]]], [4075,[9052.11,12600.1,0],[[3760,2],[4399,2],[4400,2]]], [4076,[9271.69,12260.6,0],[[3761,2]]], [4077,[9410.47,12339.3,0],[[3762,2]]], [4078,[8544.71,11005.7,0],[[3763,2],[4401,2]]], [4079,[8754.4,11114.6,0],[[3763,2]]], +[4080,[9006.47,11545,0],[[3766,2]]], [4081,[9498.83,10712.8,0],[[3767,2]]], [4082,[9044.16,10414.8,0],[[3768,2],[4082,2],[4402,2],[4403,2],[4404,2]]], [4083,[9159.64,10214.6,0],[[3768,2],[4403,2],[4405,2]]], [4084,[9197.79,10381.6,0],[[3768,2],[4406,2],[4407,2]]], [4085,[9410.61,10187.3,0],[[3769,2],[4408,2]]], +[4086,[9525.75,9791.09,-1.90735e-006],[[3770,2],[4409,2],[4410,2],[4411,2]]], [4087,[15323.4,8294.65,0],[[3773,2]]], [4088,[15494.7,8428.8,0],[[3773,2],[4093,2]]], [4089,[15148.9,8164.48,0],[[3775,2],[4412,2],[4413,2]]], [4090,[15273.2,8085.96,0],[[3775,2]]], [4091,[15171.3,7619.47,-2.54313e-006],[[3776,2],[3836,2],[4414,2]]], +[4092,[15371.9,7645.7,7.62939e-006],[[3776,2],[4415,2]]], [4093,[15611.7,8616.52,0],[[3777,2],[4088,2],[4416,2]]], [4094,[15692.4,8796.83,0],[[3777,2],[4417,2]]], [4095,[15590.9,9141.05,-1.90735e-006],[[3778,2],[4418,2],[4417,2],[4419,2],[4420,2]]], [4096,[15535.4,9460.57,0],[[3779,2],[4421,2]]], [4097,[16128.6,9510.99,0],[[3780,2],[4422,2]]], +[4098,[16329.4,9513.44,1.27157e-006],[[3781,2],[4422,2],[4423,2],[4101,2]]], [4099,[16468.9,9432.76,1.27157e-006],[[3478,2]]], [4100,[16589.8,9551.84,0],[[3782,2],[4424,2]]], [4101,[16404.1,9580.35,3.8147e-006],[[3782,2],[4098,2],[4423,2]]], [4102,[16784.1,9792.92,-3.8147e-006],[[3784,2]]], [4103,[16951.9,9915.64,3.8147e-006],[[3784,2],[4425,2]]], +[4104,[17035.4,9591.17,3.8147e-006],[[3785,2]]], [4105,[17295.6,9519.77,0],[[3786,2],[4426,2]]], [4106,[17862.2,9144.56,-1.90735e-006],[[3788,2],[3790,2],[4108,2]]], [4107,[17738.2,9726.82,0],[[3789,2],[4427,2],[4428,2],[4429,2]]], [4108,[17862.7,9206.36,9.53674e-007],[[3790,2],[4106,2],[4430,2],[4115,2],[4108,2]]], [4109,[15457,8222.02,0],[[3791,2]]], +[4110,[17590.8,4762.61,2.38419e-007],[[3792,2]]], [4111,[18282.7,5999.56,0],[[3793,2],[3796,2],[3797,2],[4112,2]]], [4112,[18232.6,5934.74,0],[[3796,2],[4111,2]]], [4113,[18154.3,9105.86,2.38419e-007],[[3799,2],[4431,2],[4432,2],[4113,2]]], [4114,[18251.6,8985.03,0],[[3799,2],[4433,2],[4117,2]]], [4115,[17922.7,9242.83,0],[[3800,2],[4108,2],[4430,2]]], +[4116,[18128.3,9317.55,1.27157e-006],[[3800,2],[4434,2],[4435,2]]], [4117,[18185.1,8935.59,-7.94729e-008],[[3801,2],[4114,2],[4117,2]]], [4118,[16161.2,2720.96,-9.53674e-007],[[3802,2],[4436,2]]], [4119,[15934.3,2839.19,0],[[3802,2],[4437,2]]], [4120,[16512.4,3617.09,0],[[3803,2],[4438,2],[4439,2]]], [4121,[16481.8,3772.5,-2.38419e-007],[[3803,2],[4440,2],[4441,2],[4442,2]]], +[4122,[16445.6,3309.72,0],[[3804,2],[4443,2],[4444,2]]], [4123,[13438,4300.11,3.8147e-006],[[3805,2],[4445,2]]], [4124,[13432.3,4097.96,0],[[3805,2],[4446,2]]], [4125,[13968.6,4122.46,0],[[3807,2]]], [4126,[13823.9,3484.74,-1.27157e-006],[[3808,2],[4447,2],[4448,2]]], [4127,[14335.2,3617.41,0],[[3809,2],[4127,2]]], +[4128,[13928.2,3377.12,0],[[3810,2],[4448,2]]], [4129,[14954.5,2818.43,0],[[3811,2],[4449,2]]], [4130,[14825.6,2990.43,-1.90735e-006],[[3811,2]]], [4131,[13950.7,6084.89,0],[[3813,2],[3816,2],[4450,2]]], [4132,[14077.6,6274.59,3.8147e-006],[[3813,2],[4451,2],[4452,2],[4453,2]]], [4133,[14409.4,6348.15,-7.62939e-006],[[3814,2],[4454,2]]], +[4134,[13622.3,5654.67,0],[[3817,2],[4455,2]]], [4135,[13757,5919.96,0],[[3817,2],[4456,2]]], [4136,[14262.3,5754.9,0],[[3818,2]]], [4137,[14248.8,5833.93,7.62939e-006],[[3818,2]]], [4138,[13456.2,4588.86,0],[[3821,2]]], [4139,[12876.9,5270.4,-2.54313e-006],[[3822,2],[4457,2],[4458,2]]], +[4140,[13378.2,4808.61,0],[[3823,2],[4459,2]]], [4141,[13442.9,5581.31,-1.90735e-006],[[3824,2],[4460,2],[4461,2],[4455,2]]], [4142,[17638.3,4735.9,0],[[3827,2],[3828,2],[4142,2]]], [4143,[17784.4,4713.21,0],[[3827,2],[4462,2]]], [4144,[17190.9,4016.47,0],[[3829,2],[4463,2]]], [4145,[16878.4,4106.61,0],[[3830,2],[4464,2],[4465,2],[4466,2]]], +[4146,[17052.3,3918.61,0],[[3831,2],[4467,2]]], [4147,[14518.3,7331.59,0],[[3832,2],[4468,2]]], [4148,[14269.9,6996.35,0],[[3833,2],[4469,2]]], [4149,[14375.8,6809.88,0],[[3833,2],[4470,2]]], [4150,[14739.4,7167.68,7.62939e-006],[[3834,2],[4471,2]]], [4151,[9661.28,4969.74,-2.54313e-006],[[3839,2],[4151,2],[4472,2]]], +[4152,[10197.7,5063.06,0],[[3840,2],[4473,2]]], [4153,[9847.07,5063.89,0],[[3841,2],[4474,2],[4475,2],[4153,2]]], [4154,[9819.63,5217.19,2.54313e-006],[[3841,2],[4476,2],[4477,2]]], [4155,[9240.7,4518.78,0],[[3843,2],[4478,2],[4479,2]]], [4156,[11746.3,4975.37,3.8147e-006],[[3844,2],[4480,2]]], [4157,[11564.8,5204.63,0],[[3844,2],[4481,2]]], +[4158,[12000.5,3918.84,3.8147e-006],[[3849,2]]], [4159,[12020.5,3897.75,0],[[3849,2]]], [4160,[10815,4780.55,0],[[3850,2],[4482,2]]], [4161,[10996.4,4940.06,0],[[3850,2],[4483,2]]], [4162,[10461.1,5035.32,0],[[3851,2],[4484,2],[4485,2]]], [4163,[10684.3,5140.99,0],[[3851,2],[4486,2]]], +[4164,[13517.4,2358.29,0],[[3852,2],[4487,2]]], [4165,[12968.7,2454.64,0],[[3853,2],[4488,2]]], [4166,[12983.1,1671.03,-1.90735e-006],[[3854,2],[4489,2]]], [4167,[13459.2,2756.83,-2.54313e-006],[[3856,2],[4490,2],[4491,2]]], [4168,[13068.9,2682.31,1.27157e-006],[[3857,2],[4168,2],[4492,2]]], [4169,[11966.1,1308.94,-9.53674e-007],[[3858,2]]], +[4170,[12031.5,1171.74,0],[[3860,2],[4493,2],[4494,2]]], [4171,[12085,1223.23,0],[[3860,2]]], [4172,[12496.2,1287.85,0],[[3861,2],[4495,2]]], [4173,[12514.6,1476.48,0],[[3861,2]]], [4174,[12369.9,1806.25,0],[[3862,2],[4496,2]]], [4175,[12185.3,1234.26,0],[[3863,2]]], +[4176,[12293.8,1275.12,-2.38419e-007],[[3863,2],[4176,2],[4497,2]]], [4177,[11726.3,1128.29,-3.17891e-007],[[3864,2],[4178,2],[4177,2],[4498,2]]], [4178,[11719.8,1134.52,9.53674e-007],[[4177,2],[4828,2],[4178,2],[3864,2]]], [4179,[10786.2,1603.16,0],[[3865,2]]], [4180,[10908.2,2093.46,0],[[3866,2]]], [4181,[10680.8,1778.97,0],[[3867,2],[4181,2]]], +[4182,[10555.5,1974.34,0],[[3867,2],[4499,2]]], [4183,[10904.6,1372.79,4.76837e-007],[[3868,2],[4500,2]]], [4184,[10989.3,1555.49,0],[[3868,2]]], [4185,[11027,1407.82,-4.76837e-007],[[3870,2],[4501,2]]], [4186,[11885.2,1213.9,3.17891e-007],[[3873,2],[3874,2],[4502,2],[4503,2]]], [4187,[11780.2,1135.64,0],[[3873,2]]], +[4188,[11902.1,1283.19,0],[[3874,2],[4504,2]]], [4189,[12849.4,3572.46,0],[[3876,2],[4505,2]]], [4190,[13101.1,3610.69,0],[[3876,2],[4506,2]]], [4191,[13127.8,3053.28,-1.90735e-006],[[3878,2],[4507,2]]], [4192,[12988.2,2968.56,0],[[3878,2],[4508,2]]], [4193,[12265.7,3991.53,0],[[3880,2],[4509,2]]], +[4194,[12321.3,4212.82,0],[[3880,2],[4510,2]]], [4195,[8825.18,2552.48,0],[[3882,2],[4511,2]]], [4196,[8797.69,2926.35,0],[[3883,2],[4512,2],[4513,2]]], [4197,[8623.85,3097.4,1.90735e-006],[[3884,2],[4514,2]]], [4198,[8495.89,3487.52,0],[[3885,2],[4515,2],[4516,2]]], [4199,[9610.36,3862.62,-1.27157e-006],[[3886,2],[4517,2],[4199,2],[4518,2]]], +[4200,[9269.03,4116.83,0],[[3887,2],[4519,2],[4520,2]]], [4201,[8326.1,5716.88,-3.8147e-006],[[3889,2],[4521,2]]], [4202,[8405.16,5459.25,0],[[3889,2],[4522,2]]], [4203,[9363.17,5805.27,2.54313e-006],[[3890,2],[4207,2],[4523,2],[4204,2]]], [4204,[9451.24,5745.65,-2.54313e-006],[[3890,2],[4203,2],[4523,2],[4524,2]]], [4205,[9325.14,5548.57,2.54313e-006],[[3891,2],[4525,2],[4206,2],[4526,2]]], +[4206,[9396.48,5580.33,-1.90735e-006],[[3891,2],[4205,2],[4527,2],[4525,2],[4528,2]]], [4207,[9388.93,5949.64,1.90735e-006],[[3892,2],[4203,2],[4529,2],[4530,2]]], [4208,[9329.93,6021.27,0],[[3892,2]]], [4209,[9322.28,5945.84,-7.62939e-006],[[3892,2]]], [4210,[9355.57,6170.87,-2.54313e-006],[[3894,2],[4529,2],[4532,2]]], [4211,[8255.24,7110.85,-2.54313e-006],[[3896,2],[3923,2],[4242,2],[4533,2],[4211,2]]], +[4212,[8592.3,7016.35,0],[[3896,2],[4534,2]]], [4213,[8451.06,7144.29,7.62939e-006],[[3896,2]]], [4214,[7948.48,4502.38,0],[[3898,2],[4535,2]]], [4215,[8290.12,4510.04,0],[[3900,2],[4536,2]]], [4216,[8723.5,4863.21,0],[[3901,2],[4537,2]]], [4217,[8443.99,4639.6,0],[[3901,2],[4536,2]]], +[4218,[8732.71,4738.28,3.8147e-006],[[3901,2],[4538,2]]], [4219,[8923.12,5026.95,0],[[3903,2],[4539,2],[4537,2]]], [4220,[8775.45,5027.72,0],[[3903,2]]], [4221,[8804.08,5235.73,-3.8147e-006],[[3904,2]]], [4222,[7773.21,4374.74,0],[[3905,2],[4540,2],[4541,2]]], [4223,[7763.2,4123.93,3.8147e-006],[[3905,2],[4542,2]]], +[4224,[7281.95,3914.14,0],[[3906,2],[4543,2]]], [4225,[6746.35,3735.99,0],[[3907,2],[4544,2]]], [4226,[6765.71,3877.54,0],[[3908,2]]], [4227,[6148.14,3689.27,0],[[3909,2],[4545,2]]], [4228,[6215.23,3647.93,0],[[3909,2]]], [4229,[6610.03,3792.08,4.76837e-007],[[3910,2]]], +[4230,[5774.74,4181.26,0],[[3913,2],[4546,2],[4547,2]]], [4231,[5615.64,5176.98,-2.54313e-006],[[3914,2],[4231,2],[4548,2]]], [4232,[5572.98,5243.66,-2.54313e-006],[[3914,2],[4549,2],[4232,2],[4550,2]]], [4233,[5710.72,4769.8,0],[[3915,2],[4551,2]]], [4234,[5695.17,4941.94,-3.8147e-006],[[3915,2]]], [4235,[7007.1,7944.93,0],[[3916,2],[4552,2]]], +[4236,[6798.26,7824.08,0],[[3917,2]]], [4237,[6364.82,7744.2,0],[[3918,2],[4553,2]]], [4238,[6494.42,7727.36,-2.54313e-006],[[3918,2],[4238,2],[4554,2]]], [4239,[7180.72,7917.21,7.62939e-006],[[3921,2],[4555,2]]], [4240,[7515.19,8213.56,0],[[3922,2],[4556,2]]], [4241,[7628.14,8001.26,0],[[3922,2],[4557,2]]], +[4242,[8208.97,7127.74,0],[[3923,2],[4211,2],[4558,2]]], [4243,[8270.4,7736.82,0],[[3927,2],[3928,2],[4559,2]]], [4244,[8060.16,7973.92,0],[[3929,2],[4560,2],[4561,2]]], [4245,[7906.24,7935.71,0],[[3929,2],[4557,2]]], [4246,[6279.2,7346.06,0],[[3930,2]]], [4247,[6217.54,7640.84,0],[[3931,2],[4248,2],[4247,2],[4563,2],[4553,2]]], +[4248,[6219.98,7613.56,0],[[4247,2],[3931,2]]], [4249,[6489.48,7057.9,7.62939e-006],[[3616,2]]], [4250,[6213.91,7151.55,0],[[3933,2],[4564,2],[4250,2]]], [4251,[6227.72,6865.7,0],[[3934,2],[4565,2]]], [4252,[5189.14,6261.45,0],[[3935,2],[4566,2]]], [4253,[5306.22,5396.62,-1.90735e-006],[[3937,2],[4567,2],[4253,2],[4568,2]]], +[4254,[5024.49,5592.62,0],[[3938,2],[4569,2]]], [4255,[4962.3,5783.3,0],[[3938,2],[3939,2],[4273,2]]], [4256,[5019.2,6013.45,0],[[3939,2]]], [4257,[5890.41,7196.25,7.62939e-006],[[3940,2],[4570,2]]], [4258,[5808.64,7073.26,0],[[3940,2]]], [4259,[5981.56,6976.47,0],[[3941,2],[4571,2],[4572,2]]], +[4260,[5970.1,6852.7,0],[[3941,2]]], [4261,[5219.09,6868.15,-1.90735e-006],[[3942,2],[3948,2],[4268,2],[4261,2],[4573,2]]], [4262,[4314,7821.14,0],[[3943,2],[4574,2]]], [4263,[4465.34,7489.83,-2.54313e-006],[[3943,2],[4575,2],[4265,2]]], [4264,[4053.39,7603.75,0],[[3944,2],[3945,2],[4576,2]]], [4265,[4529.79,7364.77,0],[[3946,2],[4263,2],[4577,2]]], +[4266,[4850.25,6546.88,0],[[3947,2],[4578,2]]], [4267,[5170.35,7042.29,0],[[3948,2],[4579,2]]], [4268,[5175.77,6911.48,0],[[3948,2],[4261,2],[4268,2]]], [4269,[4774.34,6203.96,-1.27157e-006],[[3949,2],[4580,2],[4269,2]]], [4270,[4808.4,6327.46,0],[[3950,2],[4578,2],[4581,2]]], [4271,[4666.47,6439.06,0],[[3950,2],[4582,2],[4583,2],[4271,2]]], +[4272,[4665.81,5704.73,0],[[3951,2],[4584,2]]], [4273,[4846.33,5814.45,0],[[3951,2],[4255,2]]], [4274,[4021.06,5634.49,0],[[3952,2],[4585,2]]], [4275,[4130.2,5584.37,0],[[3952,2]]], [4276,[3693.56,7339.11,0],[[3953,2],[4586,2],[4276,2],[4587,2]]], [4277,[3872.69,5121.97,6.35783e-007],[[3954,2],[4588,2],[4589,2]]], +[4278,[3608.66,5129.97,0],[[3955,2],[4590,2],[4591,2],[4592,2]]], [4279,[2955.44,5166.03,0],[[3956,2],[4593,2]]], [4280,[3656.03,8333.1,1.90735e-006],[[3958,2],[4280,2],[4594,2],[4595,2]]], [4281,[3588.8,8482.09,0],[[3958,2],[4596,2]]], [4282,[3272.62,8630.38,1.27157e-006],[[3961,2],[3972,2],[4597,2],[4598,2]]], [4283,[3188.99,8561.26,0],[[3961,2]]], +[4284,[2492.03,9354.89,6.35783e-007],[[3962,2],[4284,2]]], [4285,[2499.03,9479.26,-4.76837e-007],[[3962,2],[4285,2],[4599,2],[4600,2]]], [4286,[2702.51,9181.53,1.27157e-006],[[3963,2],[4601,2],[4286,2],[4602,2]]], [4287,[2645.83,9177.24,-1.27157e-006],[[3963,2],[4287,2],[4603,2]]], [4288,[2166.98,9874.91,1.90735e-006],[[3964,2],[4604,2]]], [4289,[2051.53,9900.13,0],[[3964,2],[4605,2],[4606,2],[4607,2]]], +[4290,[1857.68,9894.3,1.90735e-006],[[3965,2],[4608,2]]], [4291,[1916.44,9810.4,0],[[3965,2],[4606,2]]], [4292,[1755.16,9768.44,-6.35783e-007],[[3965,2],[4293,2],[4609,2]]], [4293,[1666.83,9693.04,0],[[3966,2],[4292,2],[4610,2]]], [4294,[2617.92,9913.25,0],[[3971,2],[4611,2],[4612,2],[4613,2]]], [4295,[3272.57,8750.26,0],[[3972,2],[4614,2]]], +[4296,[2310.26,12536.9,0],[[3973,2],[4615,2]]], [4297,[2379.11,12686.6,1.43051e-006],[[3973,2],[3999,2],[4297,2],[4616,2]]], [4298,[2620.86,12379.9,-1.90735e-006],[[3974,2],[4617,2]]], [4299,[3357.76,12719.5,0],[[3975,2]]], [4300,[3395.28,12521.3,5.08626e-006],[[3976,2],[4300,2],[4618,2]]], [4301,[4724.34,16618.2,0],[[3977,2],[4619,2]]], +[4302,[4908.79,16906.1,2.54313e-006],[[3978,2],[4620,2],[4621,2]]], [4303,[5028.89,16788.6,0],[[3978,2],[4622,2]]], [4304,[5030.85,16421.7,0],[[3979,2],[4304,2],[4623,2]]], [4305,[5241.42,16698.9,0],[[3980,2],[4624,2],[4625,2],[4622,2]]], [4306,[5154.98,15371.3,-3.8147e-006],[[3981,2]]], [4307,[5194.94,15515.3,0],[[3981,2],[4307,2]]], +[4308,[3457.03,16093.9,0],[[3982,2],[4626,2]]], [4309,[3274.35,16182.3,0],[[3982,2],[4627,2],[4628,2]]], [4310,[3476.41,16188.4,0],[[3982,2],[4629,2]]], [4311,[3321.44,16160.4,7.62939e-006],[[4943,2],[3982,2]]], [4312,[2805.41,16340.1,0],[[3983,2],[4630,2],[4631,2],[4312,2],[4632,2],[4633,2]]], [4313,[4195.45,16603.4,-7.62939e-006],[[3985,2],[4634,2],[4313,2]]], +[4314,[3844.78,16367.1,0],[[3986,2],[4635,2]]], [4315,[4276.56,16559.6,0],[[3987,2],[4636,2],[4634,2]]], [4316,[2411.81,15443.3,-2.54313e-006],[[3988,2],[4637,2],[4638,2]]], [4317,[2234.42,14975.3,-7.62939e-006],[[3990,2]]], [4318,[2089.19,14577.4,-5.08626e-006],[[3992,2],[4639,2],[4640,2]]], [4319,[2097.58,14770.4,0],[[3992,2],[4641,2]]], +[4320,[1897.66,13800.7,-1.27157e-006],[[3996,2],[4320,2],[4642,2]]], [4321,[1618.46,13372.2,4.76837e-007],[[3997,2],[4643,2],[4644,2],[4645,2]]], [4322,[2277.42,12723,0],[[3999,2],[4646,2],[4322,2]]], [4323,[2801.46,13360.7,0],[[4000,2],[4323,2]]], [4324,[7295.77,14694.5,7.62939e-006],[[4005,2],[4647,2]]], [4325,[7291.65,14476.9,0],[[4005,2],[4648,2]]], +[4326,[7150.1,14715.2,0],[[4005,2]]], [4327,[6917.13,14957.5,2.54313e-006],[[4007,2],[4649,2],[4650,2]]], [4328,[3735.06,11705.5,2.54313e-006],[[4008,2],[4651,2],[4652,2]]], [4329,[3413.93,12081.8,0],[[4009,2],[4653,2],[4654,2]]], [4330,[5583.28,16004.9,0],[[4010,2],[4655,2],[4656,2]]], [4331,[5976.77,15463.6,0],[[4011,2],[4331,2],[4657,2]]], +[4332,[6170.48,15526.7,-2.54313e-006],[[4011,2],[4658,2],[4659,2]]], [4333,[5319.89,15738.6,0],[[4013,2],[4660,2]]], [4334,[7127.5,12266.2,7.62939e-006],[[4014,2],[4661,2]]], [4335,[7111.38,12055.8,0],[[4014,2],[4662,2]]], [4336,[5929.88,11247.7,0],[[4015,2],[4663,2],[4336,2]]], [4337,[6592.41,11618.1,0],[[4016,2],[4664,2]]], +[4338,[6273.57,11276.7,0],[[4017,2],[4665,2]]], [4339,[6594.44,11223.3,-7.62939e-006],[[4017,2],[4666,2]]], [4340,[7349.24,13128.7,0],[[4018,2],[4344,2]]], [4341,[7460.15,12865.6,0],[[4018,2],[4667,2],[4668,2]]], [4342,[7445.91,13695.1,0],[[4019,2],[4022,2],[4345,2]]], [4343,[7517.44,14267.1,-1.90735e-006],[[4020,2],[4669,2],[4670,2]]], +[4344,[7290.63,13291.4,0],[[4021,2],[4340,2],[4671,2]]], [4345,[7434.81,13661.2,0],[[4022,2],[4342,2],[4345,2],[4672,2],[4673,2],[4674,2]]], [4346,[5453.82,10837.8,0],[[4026,2],[4675,2]]], [4347,[5274.76,10819.7,0],[[4026,2],[4676,2],[4677,2]]], [4348,[4966.01,11012.8,-7.62939e-006],[[4027,2],[4678,2]]], [4349,[4330.92,10790.8,-7.62939e-006],[[4028,2],[4679,2]]], +[4350,[4334.49,11076.5,0],[[4028,2],[4680,2]]], [4351,[4502.69,10748.4,0],[[4029,2],[4681,2],[4682,2]]], [4352,[11972.8,10667.2,0],[[4031,2],[4365,2]]], [4353,[12115.4,10824.9,0],[[4031,2]]], [4354,[12343.1,10437.4,0],[[4033,2],[4683,2]]], [4355,[12889.5,10233.2,0],[[4034,2],[4684,2],[4685,2]]], +[4356,[12976.9,10292.3,0],[[4034,2],[4686,2],[4687,2]]], [4357,[13176.9,11602.1,0],[[4036,2],[4688,2]]], [4358,[12974.6,11980,-2.54313e-006],[[4037,2],[4689,2],[4690,2]]], [4359,[12550.6,11643.9,0],[[4039,2]]], [4360,[13252.6,11024.5,0],[[4041,2]]], [4361,[13442.4,11564.3,0],[[4042,2],[4691,2]]], +[4362,[13644.4,11211.8,0],[[4043,2],[4692,2]]], [4363,[13435.3,10985.3,0],[[4043,2],[4693,2]]], [4364,[11954.5,10303.8,0],[[4045,2],[4694,2]]], [4365,[11944,10603.9,0],[[4045,2],[4352,2]]], [4366,[11577.1,9644.46,0],[[4048,2],[4695,2],[4696,2]]], [4367,[11260.5,9539.85,0],[[4048,2],[4697,2]]], +[4368,[13281.1,12651.3,0],[[4049,2],[4698,2]]], [4369,[13037.7,12863,0],[[4049,2],[4699,2]]], [4370,[12316.7,13552.4,0],[[4050,2],[4700,2]]], [4371,[12566,13341.8,-9.53674e-007],[[4050,2],[4701,2]]], [4372,[12023.9,13523.3,6.35783e-007],[[4051,2],[4702,2],[4372,2]]], [4373,[9977.15,13234.4,0],[[4052,2],[4703,2]]], +[4374,[10194.7,13688.3,-2.54313e-006],[[4053,2],[4704,2],[4374,2]]], [4375,[10122.7,13911.8,0],[[4053,2],[4705,2],[4706,2]]], [4376,[11354.6,14563.2,-3.8147e-006],[[4055,2],[4707,2]]], [4377,[11259.6,14415.2,0],[[4055,2]]], [4378,[11122.5,14452.1,0],[[4056,2]]], [4379,[10806.7,14569.7,0],[[4057,2],[4708,2],[4709,2]]], +[4380,[10859.3,14437.9,0],[[4057,2]]], [4381,[10349.7,14076.7,5.08626e-006],[[4058,2],[4705,2],[4710,2]]], [4382,[10435.6,14427.8,0],[[4059,2],[4711,2]]], [4383,[12116,13741,1.58946e-007],[[4060,2],[4700,2],[4702,2]]], [4384,[11983.6,13957.2,-6.35783e-007],[[4060,2],[4712,2],[4713,2]]], [4385,[11715.1,14135.8,0],[[4062,2],[4714,2]]], +[4386,[10163.8,9741.24,2.54313e-006],[[3751,2],[4715,2],[4716,2]]], [4387,[10631.8,9669.02,0],[[3752,2],[4717,2]]], [4388,[8795.56,11779.3,0],[[4064,2],[4718,2]]], [4389,[8554.5,12122.7,0],[[4065,2],[4719,2]]], [4390,[8938.7,12267.7,2.54313e-006],[[4066,2],[4067,2],[4390,2],[4391,2],[4720,2],[4721,2],[4722,2]]], [4391,[8882.92,12222.1,3.8147e-006],[[4067,2],[4390,2],[4721,2],[4723,2]]], +[4392,[9123.19,13351.5,0],[[4068,2],[4724,2]]], [4393,[9301.3,13287.3,2.54313e-006],[[4068,2],[4725,2],[4726,2]]], [4394,[9271.24,13612.5,0],[[4069,2],[4727,2]]], [4395,[9638.96,13613.6,0],[[4070,2],[4728,2]]], [4396,[9563.1,13429.8,7.62939e-006],[[4070,2]]], [4397,[9323.75,12717,3.8147e-006],[[4071,2],[4397,2],[4729,2]]], +[4398,[9105.71,12791.2,0],[[4074,2],[4730,2]]], [4399,[9003.84,12624.3,2.54313e-006],[[4075,2],[4731,2],[4732,2]]], [4400,[9155.68,12665.9,0],[[4075,2],[4733,2]]], [4401,[8432.77,10957.1,-1.90735e-006],[[4078,2],[4734,2],[4735,2],[4736,2]]], [4402,[9108.06,10531.8,0],[[4082,2]]], [4403,[8967.5,10285.1,0],[[4082,2],[4083,2],[4737,2]]], +[4404,[8993.63,10461,0],[[4082,2],[4738,2],[4739,2]]], [4405,[9287.65,10144.2,7.62939e-006],[[4083,2],[4740,2]]], [4406,[9239.71,10460,0],[[4084,2]]], [4407,[9198.27,10497.2,-7.62939e-006],[[4084,2]]], [4408,[9376.01,10144.5,0],[[4085,2],[4740,2]]], [4409,[9708.77,9718.88,0],[[4086,2],[4741,2]]], +[4410,[9434.02,9668.1,-7.62939e-006],[[4086,2],[4742,2]]], [4411,[9444.91,9822.31,0],[[4086,2],[4743,2],[4744,2]]], [4412,[15162.9,8037.07,7.62939e-006],[[4089,2]]], [4413,[15056.9,8158.22,-2.54313e-006],[[4089,2],[4745,2],[4746,2]]], [4414,[15088.6,7616.41,1.90735e-006],[[4091,2],[4414,2],[4747,2]]], [4415,[15487.6,7592.83,0],[[4092,2],[4748,2]]], +[4416,[15556.3,8630.51,0],[[4093,2]]], [4417,[15649,8938.6,0],[[4094,2],[4095,2],[4418,2]]], [4418,[15633.4,8990.87,1.90735e-006],[[4095,2],[4417,2]]], [4419,[15527.9,9345.65,0],[[4095,2],[4421,2]]], [4420,[15432.2,9136.03,0],[[4095,2],[4749,2]]], [4421,[15477.3,9542.13,7.62939e-007],[[4096,2],[4419,2],[4750,2],[4751,2],[4752,2]]], +[4422,[16179.5,9655.82,0],[[4097,2],[4098,2],[4753,2]]], [4423,[16388.4,9585.89,0],[[4098,2],[4101,2],[4424,2]]], [4424,[16510.4,9609.82,-3.8147e-006],[[4100,2],[4423,2]]], [4425,[16972.8,9998.11,0],[[4103,2],[4754,2],[4425,2],[4755,2]]], [4426,[17350,9639.6,1.90735e-006],[[4105,2],[4756,2]]], [4427,[17741.2,9899.18,0],[[4107,2],[4757,2]]], +[4428,[17884.1,9817.04,1.27157e-006],[[4107,2],[4758,2],[4759,2]]], [4429,[17790.6,9623.86,3.8147e-006],[[4107,2],[4760,2]]], [4430,[17877.9,9246.55,0],[[4108,2],[4115,2],[4761,2]]], [4431,[18286.4,9124.75,0],[[4113,2]]], [4432,[18145.3,9100.12,3.17891e-007],[[4113,2]]], [4433,[18316.6,9026.85,0],[[4114,2],[4762,2]]], +[4434,[18139,9448.92,0],[[4116,2],[4763,2],[4764,2]]], [4435,[18218.6,9304.44,0],[[4116,2]]], [4436,[16204,2578.99,0],[[4118,2],[4765,2]]], [4437,[15788.8,2818.65,0],[[4119,2],[4766,2]]], [4438,[16459.4,3493.33,0],[[4120,2],[4767,2]]], [4439,[16603.3,3555.48,0],[[4120,2],[4439,2],[4768,2]]], +[4440,[16625.2,3865.44,0],[[4121,2],[4769,2]]], [4441,[16438.4,3808.44,0],[[4121,2]]], [4442,[16430.1,3930.47,0],[[4121,2],[4442,2]]], [4443,[16348.2,3245.46,0],[[4122,2],[4770,2]]], [4444,[16524.1,3149.16,0],[[4122,2],[4771,2]]], [4445,[13354.7,4279,0],[[4123,2],[4772,2],[4773,2]]], +[4446,[13406.4,4021.86,0],[[4124,2],[4774,2]]], [4447,[13712.8,3491.48,1.27157e-006],[[4126,2],[4775,2],[4776,2]]], [4448,[13852.4,3380.08,0],[[4126,2],[4128,2],[4777,2]]], [4449,[14973.2,2763.27,6.35783e-007],[[4129,2],[4778,2],[4779,2]]], [4450,[13937.4,6066.34,-1.90735e-006],[[4131,2],[4780,2],[4781,2],[4453,2]]], [4451,[14175.3,6386.08,0],[[4132,2]]], +[4452,[14109.6,6398.3,0],[[4132,2],[4782,2]]], [4453,[13938.6,6150.45,0],[[4132,2],[4450,2],[4781,2]]], [4454,[14435.7,6448.91,0],[[4133,2],[4783,2],[4782,2]]], [4455,[13596.5,5645.12,-2.54313e-006],[[4134,2],[4141,2],[4784,2]]], [4456,[13748.9,5967.93,-1.90735e-006],[[4135,2],[4785,2],[4786,2],[4781,2],[4780,2]]], [4457,[12691.7,5327.45,0],[[4139,2],[4787,2],[4788,2],[4789,2],[4790,2]]], +[4458,[12852.7,5102.05,7.62939e-006],[[4139,2],[4791,2]]], [4459,[13389.4,4749.63,0],[[4140,2]]], [4460,[13424,5767.55,-7.62939e-006],[[4141,2],[4792,2]]], [4461,[13257.3,5516.85,0],[[4141,2],[4793,2]]], [4462,[17771.5,4814,0],[[4143,2],[4794,2]]], [4463,[17101.2,3902.96,0],[[4144,2],[4467,2]]], +[4464,[16917.2,4085.4,0],[[4145,2]]], [4465,[16757.1,3987.31,0],[[4145,2],[4769,2]]], [4466,[16830.8,4117.26,0],[[4145,2]]], [4467,[16976,3802.02,-2.38419e-007],[[4146,2],[4463,2],[4795,2]]], [4468,[14492.9,7445.19,2.54313e-006],[[4147,2],[4796,2],[4797,2]]], [4469,[14187,6992.33,2.54313e-006],[[4148,2],[4798,2],[4799,2]]], +[4470,[14349.2,6726.76,0],[[4149,2]]], [4471,[14795,7229.13,0],[[4150,2],[4800,2]]], [4472,[9598.49,4959.6,-2.54313e-006],[[4151,2],[4801,2],[4802,2]]], [4473,[10226.1,5109.93,1.27157e-006],[[4152,2],[4484,2],[4803,2]]], [4474,[9796.44,5065.17,1.27157e-006],[[4153,2],[4804,2],[4805,2]]], [4475,[9872.42,5063.29,1.27157e-006],[[4153,2]]], +[4476,[9737.91,5347.58,-1.90735e-006],[[4154,2],[4806,2],[4807,2],[4476,2]]], [4477,[9780.87,5202.02,2.54313e-006],[[4154,2],[4805,2],[4808,2]]], [4478,[9263.83,4572.92,0],[[4155,2]]], [4479,[9095.67,4561.22,2.54313e-006],[[4155,2],[4809,2],[4810,2]]], [4480,[11788.1,4969.13,0],[[4156,2]]], [4481,[11563.9,5272.94,0],[[4157,2],[4811,2],[4812,2]]], +[4482,[10870.2,4665.3,0],[[4160,2],[4813,2]]], [4483,[11142.1,4933.64,0],[[4161,2],[4814,2]]], [4484,[10302,5087.69,0],[[4162,2],[4473,2]]], [4485,[10431.9,4935.94,3.8147e-006],[[4162,2]]], [4486,[10766.6,5268.85,1.27157e-006],[[4163,2],[4815,2],[4816,2]]], [4487,[13661.3,2381.81,0],[[4164,2],[4817,2]]], +[4488,[12849.8,2380.22,-1.90735e-006],[[4165,2],[4818,2]]], [4489,[12985.2,1542.21,0],[[4166,2],[4819,2]]], [4490,[13632.1,2668.92,0],[[4167,2],[4820,2]]], [4491,[13396.4,2941.77,3.8147e-006],[[4167,2],[4821,2]]], [4492,[12987.4,2692.76,0],[[4168,2],[4822,2]]], [4493,[12036.4,1139.49,2.38419e-007],[[4170,2],[4503,2],[4823,2],[4824,2]]], +[4494,[11977.2,1190.22,-9.53674e-007],[[4170,2]]], [4495,[12516.2,1148.96,9.53674e-007],[[4172,2],[4825,2]]], [4496,[12375.2,1844.2,0],[[4174,2]]], [4497,[12282.9,1191.18,0],[[4176,2],[4826,2],[4827,2]]], [4498,[11793.6,1097,0],[[4177,2],[4498,2],[4829,2],[4503,2]]], [4499,[10497.2,2035.53,3.17891e-007],[[4182,2],[4499,2],[4830,2]]], +[4500,[10903,1342.07,0],[[4183,2]]], [4501,[11029.9,1288.83,0],[[4185,2]]], [4502,[11897.2,1274.49,0],[[4186,2]]], [4503,[11881,1164.95,-3.17891e-007],[[4186,2],[4493,2],[4498,2],[4829,2]]], [4504,[11853.4,1281.07,-9.53674e-007],[[4188,2]]], [4505,[12827.7,3673.35,-3.8147e-006],[[4189,2],[4831,2]]], +[4506,[13171.5,3719.79,0],[[4190,2],[4832,2],[4833,2]]], [4507,[13254.6,3030.08,3.8147e-006],[[4191,2],[4821,2]]], [4508,[13043.8,2879.92,-1.90735e-006],[[4192,2],[4508,2]]], [4509,[12238.9,3889.84,0],[[4193,2]]], [4510,[12322.1,4242.92,1.27157e-006],[[4194,2],[4834,2],[4835,2]]], [4511,[8786.15,2677.22,0],[[4195,2],[4513,2]]], +[4512,[8842.3,2914.09,-1.90735e-006],[[4196,2]]], [4513,[8776.07,2780.91,-6.35783e-007],[[4196,2],[4511,2],[4513,2]]], [4514,[8590.85,2959.9,0],[[4197,2],[4836,2]]], [4515,[8466.94,3338.44,0],[[4198,2],[4837,2]]], [4516,[8390.76,3542.67,0],[[4198,2],[4838,2],[4839,2]]], [4517,[9607.06,3878.25,0],[[4199,2]]], +[4518,[9625.45,3817.35,-1.27157e-006],[[4199,2],[4518,2],[4840,2]]], [4519,[9275.38,4171.72,0],[[4200,2]]], [4520,[9198.62,4037.19,0],[[4200,2]]], [4521,[8249.95,5715.61,0],[[4201,2]]], [4522,[8347.72,5325.15,0],[[4202,2],[4841,2]]], [4523,[9445.16,5818.55,1.90735e-006],[[4203,2],[4204,2],[4530,2],[4842,2]]], +[4524,[9474.22,5678.31,-1.90735e-006],[[4204,2],[4524,2],[4843,2],[4527,2]]], [4525,[9358.42,5550.4,0],[[4205,2],[4206,2],[4525,2]]], [4526,[9304.16,5508.44,-2.54313e-006],[[4205,2],[4844,2],[4845,2]]], [4527,[9469.64,5561.9,1.52588e-006],[[4206,2],[4524,2],[4846,2],[4844,2],[4847,2]]], [4528,[9368.48,5547.62,0],[[4206,2]]], [4529,[9389.38,6051.71,0],[[4207,2],[4210,2]]], +[4530,[9451.61,5930.51,1.90735e-006],[[4207,2],[4523,2],[4848,2],[4849,2]]], [4531,[9252.65,6110.03,2.54313e-006],[[3895,2]]], [4532,[9361.46,6225.63,5.08626e-006],[[4210,2],[4850,2],[4851,2]]], [4533,[8261.49,7107.13,0],[[4211,2],[4852,2]]], [4534,[8765.37,6966.99,7.62939e-006],[[4212,2],[4853,2]]], [4535,[7941.66,4489.36,0],[[4214,2],[4854,2],[4540,2]]], +[4536,[8319.52,4505.41,-1.90735e-006],[[4215,2],[4217,2],[4536,2],[4855,2]]], [4537,[8864.82,4941.29,0],[[4216,2],[4219,2]]], [4538,[8845.11,4708.37,0],[[4218,2],[4809,2]]], [4539,[8953.65,5039.66,1.27157e-006],[[4219,2],[4539,2],[4856,2]]], [4540,[7788.73,4490.5,9.53674e-007],[[4222,2],[4535,2],[4540,2],[4857,2]]], [4541,[7909.7,4347.83,0],[[4222,2],[4858,2]]], +[4542,[7724.34,3997.63,-3.8147e-006],[[4223,2],[4859,2]]], [4543,[7373.19,3880.61,0],[[4224,2],[4860,2],[4861,2]]], [4544,[6812.2,3670.04,0],[[4225,2],[4862,2]]], [4545,[6030.12,3768.45,0],[[4227,2],[4863,2]]], [4546,[5647.32,4232.95,0],[[4230,2],[4864,2],[4865,2]]], [4547,[5801.96,4205.84,6.35783e-007],[[4230,2],[4866,2],[4547,2],[4867,2]]], +[4548,[5625.17,5163.47,-3.8147e-006],[[4231,2],[4548,2]]], [4549,[5578.85,5231.48,0],[[4232,2],[4549,2]]], [4550,[5486.41,5278.53,-1.27157e-006],[[4232,2],[4868,2],[4550,2],[4869,2]]], [4551,[5669.04,4635.44,0],[[4233,2],[4870,2]]], [4552,[7022.08,7959.14,0],[[4235,2],[4871,2],[4555,2]]], [4553,[6229.07,7809.74,-1.90735e-006],[[4237,2],[4247,2],[4872,2],[4873,2],[4563,2]]], +[4554,[6526.9,7766.47,0],[[4238,2],[4874,2],[4875,2]]], [4555,[7101.84,7939.5,0],[[4239,2],[4552,2],[4876,2],[4555,2]]], [4556,[7582.1,8318.2,0],[[4240,2],[4877,2]]], [4557,[7669.22,7998.63,0],[[4241,2],[4245,2],[4878,2]]], [4558,[8216.71,7290.69,0],[[4242,2],[4558,2]]], [4559,[8388.42,7808,0],[[4243,2],[4879,2],[4880,2]]], +[4560,[8209.44,7982.62,-1.52588e-005],[[4244,2],[4881,2]]], [4561,[8067.48,8139.7,5.08626e-006],[[4244,2],[4882,2],[4883,2]]], [4562,[6358.39,7366.14,0],[[3932,2]]], [4563,[6204.94,7785.36,0],[[4247,2],[4553,2]]], [4564,[6174.48,7168.82,-2.54313e-006],[[4250,2],[4884,2],[4885,2],[4572,2]]], [4565,[6211.76,6790.82,-1.90735e-006],[[4251,2],[4565,2],[4886,2],[4887,2]]], +[4566,[5094.18,6279.23,0],[[4252,2],[4888,2],[4581,2]]], [4567,[5259.89,5250.12,0],[[4253,2],[4889,2]]], [4568,[5374.94,5401.37,0],[[4253,2],[4568,2],[4869,2]]], [4569,[4980.89,5452.91,0],[[4254,2],[4890,2]]], [4570,[5873.94,7318.1,-2.54313e-006],[[4257,2],[4891,2],[4892,2]]], [4571,[5964.02,6951.13,-2.54313e-006],[[4259,2]]], +[4572,[6072.78,7079.62,0],[[4259,2],[4564,2],[4885,2]]], [4573,[5190.38,6860.74,7.62939e-006],[[4261,2]]], [4574,[4305.67,7861.55,2.54313e-006],[[4262,2],[4893,2],[4574,2]]], [4575,[4498.27,7501.87,7.62939e-006],[[4263,2]]], [4576,[4050.25,7665.91,-3.8147e-006],[[4264,2]]], [4577,[4690.51,7437.27,-7.62939e-006],[[4265,2],[4894,2]]], +[4578,[4834.58,6400.77,0],[[4266,2],[4270,2]]], [4579,[5290.13,7060.7,-7.62939e-006],[[4267,2],[4895,2]]], [4580,[4750.32,6207,0],[[4269,2]]], [4581,[4977.58,6297.71,0],[[4270,2],[4566,2],[4888,2]]], [4582,[4674.64,6510.39,-3.8147e-006],[[4271,2]]], [4583,[4667.48,6421.85,0],[[4271,2]]], +[4584,[4652.23,5667.35,0],[[4272,2],[4896,2],[4897,2]]], [4585,[3972.48,5633.79,0],[[4274,2],[4898,2],[4899,2]]], [4586,[3692.88,7354.23,0],[[4276,2],[4900,2],[4586,2]]], [4587,[3718.11,7248.89,0],[[4276,2]]], [4588,[3888.6,5176.81,0],[[4277,2],[4901,2],[4588,2],[4902,2]]], [4589,[3986.86,5030.88,0],[[4277,2],[4903,2]]], +[4590,[3467.5,5253.93,0],[[4278,2],[4904,2]]], [4591,[3584.68,5078.35,9.53674e-007],[[4278,2]]], [4592,[3776.34,5044.91,0],[[4278,2],[4905,2]]], [4593,[3033.21,5150.92,0],[[4279,2],[4906,2]]], [4594,[3744.88,8249.79,0],[[4280,2],[4907,2]]], [4595,[3770.34,8413.2,0],[[4280,2],[4908,2]]], +[4596,[3587.72,8641.47,0],[[4281,2],[4909,2]]], [4597,[3270.94,8715.8,0],[[4282,2]]], [4598,[3322.36,8631.06,0],[[4282,2]]], [4599,[2621.69,9427.97,0],[[4285,2],[4910,2]]], [4600,[2503.9,9640.3,9.53674e-007],[[4285,2],[4911,2],[4600,2],[4910,2],[4612,2]]], [4601,[2694.62,9203.07,3.8147e-006],[[4286,2],[4912,2]]], +[4602,[2897,9149.26,0],[[4286,2],[4913,2]]], [4603,[2544.59,9137.63,3.8147e-006],[[4287,2],[4914,2]]], [4604,[2177.59,9904.43,0],[[4288,2],[4915,2],[4916,2]]], [4605,[1970.97,10033.6,0],[[4289,2],[4917,2]]], [4606,[1975.09,9834.12,1.27157e-006],[[4289,2],[4291,2],[4608,2]]], [4607,[2044.58,10034.4,3.8147e-006],[[4289,2],[4918,2]]], +[4608,[1876.34,10008.6,4.76837e-007],[[4290,2],[4606,2],[4919,2],[4920,2],[4609,2]]], [4609,[1761.71,9942.06,0],[[4292,2],[4608,2],[4920,2]]], [4610,[1590.44,9609.63,0],[[4293,2],[4921,2]]], [4611,[2786.48,9927.39,0],[[4294,2],[4922,2]]], [4612,[2580.14,9813.44,-9.53674e-007],[[4294,2],[4600,2],[4923,2],[4924,2]]], [4613,[2617.97,9947,-1.27157e-006],[[4294,2],[4925,2],[4926,2]]], +[4614,[3280.02,8901.85,0],[[4295,2],[4927,2]]], [4615,[2283.08,12523.9,0],[[4296,2],[4615,2],[4928,2]]], [4616,[2402.47,12720,-2.54313e-006],[[4297,2],[4616,2],[4929,2]]], [4617,[2634.95,12354.3,-6.35783e-007],[[4298,2],[4930,2],[4931,2]]], [4618,[3251.43,12482.9,0],[[4300,2],[4932,2]]], [4619,[4576.55,16630.8,0],[[4301,2],[4933,2]]], +[4620,[4834.99,16944.1,0],[[4302,2],[4620,2],[4934,2]]], [4621,[4912.35,17086.8,0],[[4302,2],[4935,2]]], [4622,[5103.37,16794,0],[[4303,2],[4305,2],[4622,2],[4936,2],[4937,2]]], [4623,[5012.79,16336.4,0],[[4304,2],[4938,2]]], [4624,[5368.79,16564.9,0],[[4305,2],[4939,2]]], [4625,[5184.4,16746.2,-7.62939e-006],[[4305,2],[4940,2]]], +[4626,[3469.13,16085.8,0],[[4308,2]]], [4627,[3194.89,16279.6,-1.90735e-006],[[4309,2],[4627,2],[4941,2],[4942,2]]], [4628,[3280.13,16162.6,2.54313e-006],[[4309,2],[4628,2],[4943,2]]], [4629,[3556.42,16223.6,0],[[4310,2],[4944,2]]], [4630,[2877.16,16343.1,0],[[4312,2]]], [4631,[2781.29,16325,-3.8147e-006],[[4312,2]]], +[4632,[2698.59,16205.5,-7.62939e-006],[[4312,2],[4945,2]]], [4633,[2820.28,16421.8,0],[[4312,2],[4946,2],[4947,2],[4948,2]]], [4634,[4239.16,16666.7,0],[[4313,2],[4315,2],[4949,2],[4950,2],[4634,2]]], [4635,[3879.02,16474.7,0],[[4314,2],[4951,2]]], [4636,[4320.93,16641,0],[[4315,2],[4952,2],[4933,2]]], [4637,[2342.15,15498.4,2.54313e-006],[[4316,2],[4953,2],[4954,2]]], +[4638,[2450,15477.3,0],[[4316,2]]], [4639,[2115.59,14487.2,0],[[4318,2],[4955,2]]], [4640,[2011.03,14556.1,-2.54313e-006],[[4318,2],[4956,2],[4957,2]]], [4641,[2075.86,14824.5,0],[[4319,2]]], [4642,[1884.25,13905.7,0],[[4320,2]]], [4643,[1708.73,13194.9,0],[[4321,2],[4958,2]]], +[4644,[1494.37,13270.2,3.17891e-007],[[4321,2],[4959,2],[4644,2],[4960,2],[4961,2],[4962,2]]], [4645,[1536.64,13428.6,-6.35783e-007],[[4321,2],[4963,2],[4964,2]]], [4646,[2098.7,12826.1,0],[[4322,2],[4965,2]]], [4647,[7311.8,14725.6,0],[[4324,2],[4966,2],[4967,2]]], [4648,[7301.35,14459.7,0],[[4325,2],[4968,2],[4669,2]]], [4649,[6816.63,14957.3,2.54313e-006],[[4327,2],[4969,2],[4970,2]]], +[4650,[6936.8,15001.7,0],[[4327,2],[4971,2],[4972,2]]], [4651,[3898.88,11625.1,-7.62939e-006],[[4328,2],[4973,2]]], [4652,[3581.3,11762.9,0],[[4328,2],[4974,2]]], [4653,[3417.83,12160.7,2.54313e-006],[[4329,2],[4653,2],[4975,2]]], [4654,[3192.86,12068.2,0],[[4329,2],[4976,2]]], [4655,[5420.84,15961.3,0],[[4330,2],[4977,2]]], +[4656,[5589.71,16112.5,2.54313e-006],[[4330,2],[4978,2],[4979,2]]], [4657,[5915.35,15531.6,0],[[4331,2],[4980,2]]], [4658,[6277.28,15395.1,0],[[4332,2],[4981,2]]], [4659,[6214.39,15606.4,-2.54313e-006],[[4332,2],[4982,2],[4983,2]]], [4660,[5327.62,15868.7,0],[[4333,2],[4977,2]]], [4661,[7171.33,12307.8,2.54313e-006],[[4334,2],[4984,2],[4985,2]]], +[4662,[7191.52,11919.2,0],[[4335,2],[4662,2]]], [4663,[5849.21,11175.9,0],[[4336,2],[4986,2],[4987,2]]], [4664,[6723.62,11671.5,0],[[4337,2],[4664,2]]], [4665,[6242.87,11261.7,0],[[4338,2]]], [4666,[6668.55,11168,1.52588e-006],[[4339,2],[4988,2],[4666,2],[4989,2],[4990,2]]], [4667,[7424.03,12848.2,0],[[4341,2]]], +[4668,[7509.85,12790.6,-2.54313e-006],[[4341,2],[4991,2],[4992,2]]], [4669,[7414.85,14382.5,0],[[4343,2],[4648,2],[4993,2]]], [4670,[7586.34,14442,7.62939e-006],[[4343,2],[4994,2]]], [4671,[7361.96,13488.2,0],[[4344,2],[4672,2]]], [4672,[7404.56,13557.2,-7.62939e-006],[[4345,2],[4671,2]]], [4673,[7591.96,13775.6,-7.62939e-006],[[4345,2],[4995,2]]], +[4674,[7587.06,13591.6,0],[[4345,2],[4996,2]]], [4675,[5561.51,10925,0],[[4346,2],[4987,2],[4997,2]]], [4676,[5193.76,10850.5,0],[[4347,2]]], [4677,[5279.06,10653.2,0],[[4347,2],[4998,2],[4999,2]]], [4678,[5023.33,11026.7,7.62939e-006],[[4348,2]]], [4679,[4308.57,10749,0],[[4349,2],[5000,2],[4682,2]]], +[4680,[4293.5,11192,2.54313e-006],[[4350,2],[5001,2],[4680,2],[5002,2]]], [4681,[4616.84,10651.8,-7.62939e-006],[[4351,2],[5003,2]]], [4682,[4450.72,10747.5,0],[[4351,2],[4679,2],[5004,2]]], [4683,[12252.5,10457.3,-2.54313e-006],[[4354,2],[4683,2],[5005,2]]], [4684,[12875.3,10121.2,-7.62939e-006],[[4355,2],[5006,2],[4685,2]]], [4685,[12910.8,10189.9,2.54313e-006],[[4355,2],[4684,2],[5006,2],[5007,2],[4686,2]]], +[4686,[13018.3,10241.2,1.90735e-006],[[4356,2],[4685,2],[5007,2],[5008,2],[5009,2],[4687,2]]], [4687,[13016.1,10316,-3.8147e-006],[[4356,2],[4686,2],[5010,2],[5011,2],[5012,2]]], [4688,[13337.6,11637.2,0],[[4357,2],[4691,2]]], [4689,[12994,12019.1,-1.90735e-006],[[4358,2],[4689,2],[5013,2],[5014,2]]], [4690,[13088,11887.5,0],[[4358,2]]], [4691,[13455.7,11614.2,0],[[4361,2],[4688,2],[5015,2]]], +[4692,[13668.7,11231,0],[[4362,2],[5016,2],[5017,2]]], [4693,[13413.8,10837,1.52588e-006],[[4363,2],[5018,2],[5019,2],[5020,2],[5021,2]]], [4694,[11992.2,10227.6,4.57764e-006],[[4364,2],[5022,2],[5023,2],[5024,2],[5025,2]]], [4695,[11639.4,9679.73,-2.54313e-006],[[4366,2],[5026,2],[5027,2]]], [4696,[11617.3,9460.99,2.54313e-006],[[4366,2],[5028,2],[5029,2]]], [4697,[11126.7,9492.12,0],[[4367,2],[5030,2]]], +[4698,[13377.2,12517.6,3.17891e-007],[[4368,2],[5031,2],[5032,2]]], [4699,[12938.5,13010.4,0],[[4369,2],[5033,2]]], [4700,[12188.9,13660,0],[[4370,2],[4383,2]]], [4701,[12699.1,13264.3,0],[[4371,2],[5034,2]]], [4702,[12026.1,13603.9,1.58946e-007],[[4372,2],[4383,2],[4702,2]]], [4703,[9988.51,13207.5,0],[[4373,2]]], +[4704,[10144.4,13590.3,-7.62939e-006],[[4374,2]]], [4705,[10254.7,14008.4,0],[[4375,2],[4381,2]]], [4706,[10035.9,13873.5,0],[[4375,2],[5035,2],[5036,2]]], [4707,[11389.8,14585.1,0],[[4376,2],[5037,2],[5038,2],[5039,2]]], [4708,[10750.5,14524.7,7.62939e-006],[[4379,2]]], [4709,[10742.5,14696.2,0],[[4379,2],[5040,2]]], +[4710,[10318.5,14134.6,-2.54313e-006],[[4381,2],[4710,2],[5041,2]]], [4711,[10420.9,14551.7,-3.8147e-006],[[4382,2],[5042,2]]], [4712,[11840.2,13879.8,3.8147e-006],[[4384,2],[5043,2]]], [4713,[11916.2,14106.9,0],[[4384,2],[5044,2]]], [4714,[11754.9,14156.7,6.35783e-007],[[4385,2],[5045,2],[5046,2],[5044,2]]], [4715,[10093.9,9550.62,0],[[4386,2],[5047,2]]], +[4716,[10110.4,9753.05,0],[[4386,2],[5048,2],[4716,2]]], [4717,[10764.5,9618.3,0],[[4387,2],[5049,2]]], [4718,[8765.59,11717,-5.08626e-006],[[4388,2],[5050,2],[5051,2]]], [4719,[8498.16,12137,-1.90735e-006],[[4389,2],[5052,2],[5053,2],[5054,2]]], [4720,[8930.05,12325.1,0],[[4390,2],[5055,2]]], [4721,[8879.67,12276.6,0],[[4390,2],[4391,2],[5055,2]]], +[4722,[9015.25,12303.6,0],[[4390,2]]], [4723,[8827.48,12145.6,0],[[4391,2]]], [4724,[8997.38,13370.2,5.08626e-006],[[4392,2],[5056,2],[5057,2]]], [4725,[9218.74,13201.3,0],[[4393,2],[5058,2],[5059,2]]], [4726,[9150.32,13298.5,7.62939e-006],[[4393,2],[5060,2]]], [4727,[9286.26,13726.8,0],[[4394,2],[5061,2],[5062,2],[5063,2]]], +[4728,[9727.4,13697.7,0],[[4395,2],[5036,2],[5064,2]]], [4729,[9375.09,12691.8,-2.54313e-006],[[4397,2],[5065,2],[4729,2]]], [4730,[9081.94,12792.9,0],[[4398,2],[5066,2],[4731,2]]], [4731,[8945.7,12657.9,1.52588e-006],[[4399,2],[4730,2],[5067,2],[5068,2],[5066,2]]], [4732,[9106.61,12682.1,0],[[4399,2],[5069,2]]], [4733,[9194.69,12701.1,0],[[4400,2]]], +[4734,[8561.9,10909.8,-7.62939e-006],[[4401,2],[5070,2]]], [4735,[8316.26,10882.2,0],[[4401,2],[5071,2]]], [4736,[8481.02,11088.9,0],[[4401,2],[5072,2]]], [4737,[8926.85,10264.2,-5.08626e-006],[[4403,2],[5073,2],[5074,2]]], [4738,[8855.82,10546.3,0],[[4404,2],[5075,2],[5076,2]]], [4739,[9056.3,10575,-7.62939e-006],[[4404,2]]], +[4740,[9327.07,10130.1,0],[[4405,2],[4408,2],[5077,2]]], [4741,[9870.25,9664.04,0],[[4409,2],[5048,2],[5078,2]]], [4742,[9388.24,9581.71,2.54313e-006],[[4410,2],[5079,2],[5080,2]]], [4743,[9430.41,9986.04,0],[[4411,2],[5077,2]]], [4744,[9349.3,9856.91,0],[[4411,2],[5081,2]]], [4745,[14966.8,8248.23,0],[[4413,2],[5082,2]]], +[4746,[14989.8,8121.56,0],[[4413,2],[5083,2],[5084,2]]], [4747,[15015,7544.94,0],[[4414,2],[5085,2]]], [4748,[15611.4,7536.21,0],[[4415,2],[5086,2]]], [4749,[15357.5,9116.18,-3.8147e-006],[[4420,2],[5087,2],[5088,2],[5089,2]]], [4750,[15351.5,9660.75,0],[[4421,2],[5090,2]]], [4751,[15623.5,9583.68,3.8147e-006],[[4421,2],[5091,2]]], +[4752,[15425,9737.52,0],[[4421,2],[5092,2]]], [4753,[16189.2,9719.85,0],[[4422,2],[5093,2],[5094,2]]], [4754,[16910,10003.9,0],[[4425,2],[5095,2],[5096,2]]], [4755,[17056.6,9997.44,-1.27157e-006],[[4425,2],[5097,2],[5098,2]]], [4756,[17394.1,9742.72,0],[[4426,2],[5099,2]]], [4757,[17734.3,9941.12,9.53674e-007],[[4427,2],[5100,2],[5101,2],[5102,2]]], +[4758,[17931.3,9826.46,0],[[4428,2],[5103,2],[5104,2],[5100,2]]], [4759,[17850.8,9883.71,0],[[4428,2],[5104,2],[5100,2]]], [4760,[17825,9546.75,1.27157e-006],[[4429,2],[4760,2],[5105,2]]], [4761,[17869.3,9397.6,0],[[4430,2],[5105,2]]], [4762,[18346.4,9054.21,-1.58946e-007],[[4433,2],[5106,2],[4762,2]]], [4763,[18202.8,9459.06,-3.17891e-007],[[4434,2],[5107,2],[5108,2]]], +[4764,[18118.6,9514.72,-3.17891e-007],[[4434,2],[5109,2],[5110,2]]], [4765,[16213.2,2529.68,-2.38419e-007],[[4436,2],[5111,2],[5112,2],[5113,2]]], [4766,[15751.3,2810.84,0],[[4437,2],[5114,2],[5115,2]]], [4767,[16478.1,3470.11,0],[[4438,2],[5116,2],[4768,2]]], [4768,[16650.4,3537.99,0],[[4439,2],[4767,2],[4768,2],[5117,2]]], [4769,[16687.6,3928.89,-7.94729e-008],[[4440,2],[4465,2],[5118,2],[4769,2],[5119,2],[5120,2]]], +[4770,[16312,3177.25,4.76837e-007],[[4443,2]]], [4771,[16554.4,3096.25,0],[[4444,2],[5121,2],[5122,2]]], [4772,[13337.6,4336.13,0],[[4445,2]]], [4773,[13176.3,4210.08,0],[[4445,2],[5123,2]]], [4774,[13430.1,3927.81,0],[[4446,2],[5124,2]]], [4775,[13619.2,3450.37,0],[[4447,2],[5125,2]]], +[4776,[13704.9,3545.57,0],[[4447,2]]], [4777,[13867.8,3210.13,-3.8147e-006],[[4448,2],[5126,2]]], [4778,[15145.6,2820.14,1.90735e-006],[[4449,2],[5127,2]]], [4779,[14803.1,2682.45,1.90735e-006],[[4449,2],[5128,2]]], [4780,[13872.8,6044.16,-2.54313e-006],[[4450,2],[4456,2],[5129,2]]], [4781,[13908.1,6155.77,1.90735e-006],[[4450,2],[4453,2],[4456,2],[5130,2],[4786,2]]], +[4782,[14284.7,6430.58,0],[[4452,2],[4454,2]]], [4783,[14434.2,6501.4,2.54313e-006],[[4454,2],[5131,2],[5132,2]]], [4784,[13564.6,5783.65,0],[[4455,2],[5133,2],[4785,2]]], [4785,[13593.3,5877.57,-7.62939e-006],[[4456,2],[4784,2],[5133,2]]], [4786,[13761.6,6136.32,1.90735e-006],[[4456,2],[4781,2],[5134,2],[5135,2]]], [4787,[12815.6,5428.83,0],[[4457,2],[5136,2],[4787,2]]], +[4788,[12744.1,5417.94,0],[[4457,2]]], [4789,[12625.6,5201.01,-7.62939e-006],[[4457,2],[5137,2]]], [4790,[12581.4,5360.95,0],[[4457,2],[5138,2],[5139,2]]], [4791,[12845.2,4970.1,0],[[4458,2],[5140,2]]], [4792,[13403.4,5858.85,1.90735e-006],[[4460,2],[5141,2],[4792,2],[5142,2]]], [4793,[13209.9,5517.34,0],[[4461,2]]], +[4794,[17757.1,4883.2,-8.9407e-008],[[4462,2],[5143,2],[5144,2],[4794,2]]], [4795,[16845.9,3688.63,0],[[4467,2],[5145,2]]], [4796,[14467.9,7600.46,7.62939e-006],[[4468,2],[5146,2]]], [4797,[14327.8,7421.34,0],[[4468,2],[5147,2]]], [4798,[14139.6,6829.49,0],[[4469,2],[5148,2]]], [4799,[14110.5,6993.23,0],[[4469,2],[5149,2],[5150,2]]], +[4800,[14872,7332.33,7.62939e-006],[[4471,2],[5085,2]]], [4801,[9602.71,5000.58,-7.62939e-006],[[4472,2],[5151,2],[4805,2],[5152,2]]], [4802,[9531.37,4845.87,0],[[4472,2],[4802,2]]], [4803,[10100.3,5240,7.62939e-006],[[4473,2],[5153,2]]], [4804,[9786.79,5006.3,0],[[4474,2]]], [4805,[9708.51,5115.92,0],[[4474,2],[4477,2],[4801,2],[5151,2],[5154,2]]], +[4806,[9788.51,5433.3,-2.54313e-006],[[4476,2],[5155,2],[5156,2]]], [4807,[9682.95,5405.77,0],[[4476,2],[5157,2],[5158,2],[5155,2]]], [4808,[9712.73,5234.3,7.62939e-006],[[4477,2]]], [4809,[9019.05,4602.11,9.53674e-007],[[4479,2],[4538,2],[5159,2],[5160,2]]], [4810,[9120.79,4612.16,0],[[4479,2]]], [4811,[11439.4,5258.53,0],[[4481,2],[5161,2]]], +[4812,[11585.4,5469.32,-2.54313e-006],[[4481,2],[5162,2],[5163,2]]], [4813,[10925.9,4680.74,0],[[4482,2]]], [4814,[11257.3,4887.31,-3.8147e-006],[[4483,2],[5164,2]]], [4815,[10827.3,5358.82,-1.27157e-006],[[4486,2],[5165,2],[5166,2]]], [4816,[10827.5,5183.27,0],[[4486,2],[4816,2]]], [4817,[13800.3,2404.25,0],[[4487,2],[5167,2]]], +[4818,[12755.8,2336.03,0],[[4488,2],[5168,2]]], [4819,[12982.8,1483.5,0],[[4489,2],[5169,2],[5170,2]]], [4820,[13732.7,2615.96,-1.90735e-006],[[4490,2],[5171,2]]], [4821,[13375,3019.82,0],[[4491,2],[4507,2],[5172,2]]], [4822,[12929.4,2704.88,3.8147e-006],[[4492,2]]], [4823,[12027.8,1098.6,0],[[4493,2],[4829,2],[5173,2],[4824,2]]], +[4824,[12110.3,1125.78,0],[[4493,2],[4823,2],[5174,2],[4827,2]]], [4825,[12576.9,1074.35,6.35783e-007],[[4495,2],[5175,2],[5176,2]]], [4826,[12362,1181.64,-9.53674e-007],[[4497,2]]], [4827,[12262.8,1108.4,-2.38419e-007],[[4497,2],[4824,2],[5177,2],[5178,2]]], [4828,[11697.8,1140.48,0],[[4178,2]]], [4829,[11842.7,1103.49,0],[[4498,2],[4503,2],[4823,2],[5179,2]]], +[4830,[10395.5,1887.08,0],[[4499,2],[5180,2]]], [4831,[12820.3,3740.39,0],[[4505,2]]], [4832,[13295.4,3775.94,0],[[4506,2],[5181,2],[5124,2]]], [4833,[13094.6,3830.89,0],[[4506,2],[5182,2]]], [4834,[12493.1,4209.86,0],[[4510,2],[5183,2]]], [4835,[12255,4397,0],[[4510,2],[5184,2]]], +[4836,[8559.02,2827.45,0],[[4514,2]]], [4837,[8489.51,3238.93,0],[[4515,2],[5185,2]]], [4838,[8340.01,3544,2.54313e-006],[[4516,2],[5186,2],[5187,2]]], [4839,[8462.47,3698.28,-3.8147e-006],[[4516,2],[5188,2]]], [4840,[9608.43,3748.82,0],[[4518,2]]], [4841,[8324.77,5273.1,-3.8147e-006],[[4522,2]]], +[4842,[9512.08,5813.29,0],[[4523,2],[5189,2],[4843,2]]], [4843,[9517.13,5682.15,0],[[4524,2],[4842,2],[5190,2]]], [4844,[9381.06,5459.89,1.90735e-006],[[4526,2],[4527,2],[5191,2],[5192,2],[5193,2]]], [4845,[9214.48,5513.51,2.54313e-006],[[4526,2],[4845,2],[5194,2]]], [4846,[9448.12,5642.59,0],[[4527,2]]], [4847,[9573.06,5548.07,-3.05176e-006],[[4527,2],[5190,2],[5195,2],[5196,2],[5158,2],[5157,2],[5197,2]]], +[4848,[9507.52,5913.82,0],[[4530,2]]], [4849,[9478.75,5969.37,0],[[4530,2]]], [4850,[9453.25,6340.41,0],[[4532,2],[5198,2]]], [4851,[9313.51,6383.69,0],[[4532,2],[5199,2]]], [4852,[8245.4,7081.67,5.08626e-006],[[4533,2],[4852,2],[5200,2]]], [4853,[8806.75,6947.38,0],[[4534,2],[5201,2],[5202,2]]], +[4854,[8102.51,4475.68,0],[[4535,2],[4855,2]]], [4855,[8311.11,4469.25,-2.54313e-006],[[4536,2],[4854,2],[5203,2]]], [4856,[9042.22,5037.59,0],[[4539,2],[5204,2],[5205,2]]], [4857,[7817.4,4644.6,0],[[4540,2],[5206,2]]], [4858,[8074.24,4302.42,0],[[4541,2],[5207,2]]], [4859,[7673.72,3871.19,0],[[4542,2],[5208,2]]], +[4860,[7497.43,3832.39,0],[[4543,2],[5208,2],[5209,2]]], [4861,[7339.99,3740.55,0],[[4543,2],[5210,2]]], [4862,[6944.56,3602.5,-4.76837e-007],[[4544,2],[5211,2]]], [4863,[5893.6,3851.7,0],[[4545,2],[5212,2]]], [4864,[5593.64,4138.27,0],[[4546,2],[5213,2]]], [4865,[5589.05,4242.23,0],[[4546,2],[5214,2],[5215,2],[5216,2],[5217,2]]], +[4866,[5794.49,4195.05,0],[[4547,2]]], [4867,[5853.34,4331.8,0],[[4547,2],[5218,2]]], [4868,[5504.08,5261.74,-2.54313e-006],[[4550,2]]], [4869,[5441.46,5352.64,0],[[4550,2],[4568,2],[5219,2],[4869,2]]], [4870,[5635.91,4534.09,0],[[4551,2],[5220,2],[5215,2]]], [4871,[7015.62,8000.45,0],[[4552,2],[5221,2],[5222,2]]], +[4872,[6334.88,7913.54,-7.62939e-006],[[4553,2],[5223,2]]], [4873,[6113.57,7849.41,0],[[4553,2],[5224,2],[5225,2]]], [4874,[6564.16,7881.25,0],[[4554,2],[5226,2]]], [4875,[6555.92,7764.14,0],[[4554,2],[4875,2],[5227,2]]], [4876,[7112.55,7938.12,0],[[4555,2]]], [4877,[7655.29,8435.01,-1.52588e-005],[[4556,2],[5228,2]]], +[4878,[7727.91,8133.84,0],[[4557,2],[5229,2]]], [4879,[8390.11,7945.78,0],[[4559,2],[4881,2],[5230,2]]], [4880,[8522.66,7893.33,0],[[4559,2],[5231,2]]], [4881,[8279.44,8005.76,0],[[4560,2],[4879,2],[5232,2]]], [4882,[8057.86,8247.01,1.01725e-005],[[4561,2],[5233,2],[5234,2]]], [4883,[8215.04,8186.62,-1.52588e-005],[[4561,2],[5235,2],[5232,2]]], +[4884,[6145.81,7246.2,0],[[4564,2],[5236,2],[4891,2]]], [4885,[6114.44,7126.58,0],[[4564,2],[4572,2],[4885,2]]], [4886,[6246.81,6771.19,0],[[4565,2]]], [4887,[6199.17,6784.05,0],[[4565,2]]], [4888,[5025.33,6290.05,3.8147e-006],[[4566,2],[4581,2],[5237,2]]], [4889,[5242.8,5175.27,-1.27157e-006],[[4567,2],[5238,2],[5239,2]]], +[4890,[4953.94,5341.51,0],[[4569,2]]], [4891,[6047.04,7281.96,-5.08626e-006],[[4570,2],[4884,2],[5240,2]]], [4892,[5858.89,7481.24,0],[[4570,2],[5241,2]]], [4893,[4288.39,8035.72,0],[[4574,2],[5242,2]]], [4894,[4820.68,7490.11,7.62939e-006],[[4577,2],[5243,2]]], [4895,[5366.15,7097.99,0],[[4579,2],[4895,2]]], +[4896,[4556.98,5693.41,0],[[4584,2]]], [4897,[4553.51,5533.98,0],[[4584,2],[5244,2]]], [4898,[3919.38,5530.9,6.35783e-007],[[4585,2],[5245,2],[5246,2]]], [4899,[3884.46,5647.18,-6.35783e-007],[[4585,2],[4899,2],[5247,2]]], [4900,[3686.32,7359.07,0],[[4586,2]]], [4901,[3887.21,5155.28,0],[[4588,2]]], +[4902,[3897.44,5264.5,0],[[4588,2],[5245,2],[5248,2],[4902,2]]], [4903,[4119.95,4971.33,0],[[4589,2],[5249,2]]], [4904,[3437.28,5291.79,9.53674e-007],[[4590,2]]], [4905,[3874.67,5015.58,0],[[4592,2],[5250,2],[4905,2],[5251,2],[5252,2]]], [4906,[3070.92,5154.82,0],[[4593,2],[4906,2],[5253,2]]], [4907,[3756.76,8242.13,-2.54313e-006],[[4594,2],[4907,2],[5254,2]]], +[4908,[3874.58,8528.47,0],[[4595,2],[5255,2]]], [4909,[3625.15,8750.35,0],[[4596,2]]], [4910,[2626.65,9546.76,0],[[4599,2],[4600,2]]], [4911,[2484.54,9619.7,0],[[4600,2],[5256,2],[4911,2]]], [4912,[2686.86,9210.77,1.90735e-006],[[4601,2]]], [4913,[3031.48,9138.29,0],[[4602,2],[5257,2]]], +[4914,[2519.93,9072.79,0],[[4603,2]]], [4915,[2229.99,10014.6,0],[[4604,2],[5258,2],[5259,2]]], [4916,[2130.07,10027.1,0],[[4604,2],[5260,2]]], [4917,[1877.73,10163.6,0],[[4605,2],[5261,2],[4919,2]]], [4918,[1985.98,10159.6,0],[[4607,2],[5262,2],[5260,2],[4918,2]]], [4919,[1843.47,10157.4,0],[[4608,2],[4917,2],[5263,2],[5261,2]]], +[4920,[1777.56,9993.74,0],[[4608,2],[4609,2],[5264,2]]], [4921,[1526.57,9626.66,0],[[4610,2]]], [4922,[2929.83,9936.04,0],[[4611,2],[5265,2]]], [4923,[2504.96,9805.46,0],[[4612,2],[5266,2],[5267,2],[4923,2]]], [4924,[2729.88,9754.49,0],[[4612,2],[5268,2],[4924,2],[5269,2]]], [4925,[2765,10011.4,-1.27157e-006],[[4613,2],[5270,2],[5271,2]]], +[4926,[2445.67,9998.3,-7.62939e-006],[[4613,2],[5259,2]]], [4927,[3283.42,8922.94,0],[[4614,2],[5272,2],[5273,2],[5274,2]]], [4928,[2185.17,12452.5,-6.35783e-007],[[4615,2],[5275,2],[5276,2]]], [4929,[2429.65,12750.5,0],[[4616,2],[5277,2],[5278,2]]], [4930,[2711.97,12196.4,0],[[4617,2],[5279,2]]], [4931,[2755.69,12409.1,0],[[4617,2],[5280,2]]], +[4932,[3248.97,12334,2.54313e-006],[[4618,2],[5281,2],[5282,2],[4975,2]]], [4933,[4420.63,16626.8,0],[[4619,2],[4636,2],[5283,2]]], [4934,[4763.25,17046.3,0],[[4620,2],[5284,2],[4934,2],[5285,2]]], [4935,[4920.4,17101.3,0],[[4621,2],[5286,2],[5287,2]]], [4936,[5094.21,16831.6,-2.54313e-006],[[4622,2],[4936,2],[5288,2]]], [4937,[5155.66,16764.2,0],[[4622,2]]], +[4938,[4984.79,16191.8,7.62939e-006],[[4623,2],[5289,2]]], [4939,[5408.08,16572.6,2.54313e-006],[[4624,2],[5290,2],[5291,2]]], [4940,[5298.26,16827.9,0],[[4625,2],[5292,2]]], [4941,[3138.47,16252.8,0],[[4627,2]]], [4942,[3163.41,16385.3,0],[[4627,2],[5293,2]]], [4943,[3302.68,16164.2,0],[[4628,2],[4311,2],[4943,2]]], +[4944,[3619.56,16240.4,0],[[4629,2],[4944,2]]], [4945,[2655.59,16146.5,-3.8147e-006],[[4632,2],[5294,2],[4945,2],[5295,2]]], [4946,[2744.46,16429,0],[[4633,2],[4946,2],[5296,2]]], [4947,[2907.53,16571.9,0],[[4633,2],[5297,2]]], [4948,[2869.32,16406.9,0],[[4633,2],[4948,2],[5298,2]]], [4949,[4165.67,16825.8,0],[[4634,2],[5299,2],[4949,2],[5300,2]]], +[4950,[4323.15,16652.3,0],[[4634,2]]], [4951,[3972.31,16587.2,7.62939e-006],[[4635,2],[5301,2]]], [4952,[4382.46,16636.4,7.62939e-006],[[4636,2],[5302,2]]], [4953,[2264.75,15344.1,0],[[4637,2],[5303,2]]], [4954,[2406.46,15678.9,0],[[4637,2],[5304,2]]], [4955,[2141.64,14420.1,0],[[4639,2],[4955,2]]], +[4956,[2009.94,14574,0],[[4640,2]]], [4957,[1848.49,14518.9,0],[[4640,2],[5305,2]]], [4958,[1723.85,13162.1,0],[[4643,2],[5306,2],[5307,2],[5308,2]]], [4959,[1480.17,13329.2,0],[[4644,2],[4963,2]]], [4960,[1470.9,13200.3,6.35783e-007],[[4644,2],[5309,2],[5310,2]]], [4961,[1442.17,13227.1,0],[[4644,2],[4961,2],[5309,2]]], +[4962,[1542.91,13186.7,0],[[4644,2],[5311,2],[5312,2],[5313,2],[5308,2]]], [4963,[1440.34,13421,0],[[4645,2],[4959,2],[5314,2],[5315,2]]], [4964,[1531.94,13455.5,0],[[4645,2],[4964,2],[5316,2],[5314,2]]], [4965,[2039.62,12863.2,4.76837e-007],[[4646,2],[4965,2],[5317,2],[5318,2]]], [4966,[7190.57,14806.3,0],[[4647,2],[5319,2]]], [4967,[7416.03,14860.9,0],[[4647,2],[5320,2]]], +[4968,[7266.13,14398.7,0],[[4648,2]]], [4969,[6792.78,14843.1,0],[[4649,2],[5321,2]]], [4970,[6703.99,15061.7,-3.05176e-005],[[4649,2],[5322,2]]], [4971,[7043.95,14990.6,0],[[4650,2],[5323,2]]], [4972,[6941.94,15169,0],[[4650,2],[5324,2]]], [4973,[4033.2,11566.4,0],[[4651,2],[5325,2]]], +[4974,[3466.42,11794.8,0],[[4652,2],[5326,2]]], [4975,[3381.53,12237.3,2.54313e-006],[[4653,2],[4932,2],[4975,2],[5327,2],[5282,2]]], [4976,[3060.03,12043.4,3.8147e-006],[[4654,2],[5328,2]]], [4977,[5317.51,15892.2,7.62939e-006],[[4655,2],[4660,2],[5329,2]]], [4978,[5646.6,16183.6,0],[[4656,2],[5330,2],[5331,2]]], [4979,[5475.44,16094.5,0],[[4656,2]]], +[4980,[5920.71,15565.8,0],[[4657,2]]], [4981,[6357.8,15326.5,2.54313e-006],[[4658,2],[5332,2],[5333,2]]], [4982,[6358.54,15735.1,0],[[4659,2],[5334,2]]], [4983,[6172.97,15761.6,0],[[4659,2],[5335,2]]], [4984,[7254.11,12375,-2.54313e-006],[[4661,2],[5336,2],[5337,2]]], [4985,[7111.59,12369.4,0],[[4661,2],[4985,2],[5338,2]]], +[4986,[5798.61,11279.6,0],[[4663,2]]], [4987,[5697.02,11035.6,0],[[4663,2],[4675,2],[4997,2]]], [4988,[6534,11094.7,0],[[4666,2],[5339,2]]], [4989,[6825.17,11269.5,0],[[4666,2],[5340,2]]], [4990,[6837.99,11062.3,0],[[4666,2],[5341,2]]], [4991,[7559.34,12603.9,0],[[4668,2],[5342,2]]], +[4992,[7668.87,12902.5,0],[[4668,2],[5343,2]]], [4993,[7406.58,14360.2,-7.62939e-006],[[4669,2]]], [4994,[7698.75,14499.6,3.8147e-006],[[4670,2],[5344,2],[5345,2],[4994,2],[5346,2]]], [4995,[7682.31,13840.1,-5.72205e-006],[[4673,2],[5347,2],[5348,2],[4995,2],[5349,2]]], [4996,[7705.4,13541.2,0],[[4674,2],[5350,2]]], [4997,[5677.81,11018.4,0],[[4987,2],[4675,2],[5712,2]]], +[4998,[5346.16,10654.8,0],[[4677,2]]], [4999,[5280.44,10558.1,0],[[4677,2],[5351,2],[5352,2]]], [5000,[4258.54,10715.8,0],[[4679,2],[5353,2],[5000,2],[5354,2]]], [5001,[4293.08,11176.5,3.8147e-006],[[4680,2]]], [5002,[4274.79,11265.4,1.90735e-006],[[4680,2],[5355,2],[5002,2],[5356,2],[5357,2]]], [5003,[4705.31,10645.2,-2.54313e-006],[[4681,2],[5358,2],[5359,2]]], +[5004,[4450.69,10798.6,0],[[4682,2]]], [5005,[12156.6,10333.1,-7.62939e-006],[[4683,2],[5024,2]]], [5006,[12905.1,10105.5,-1.52588e-006],[[4684,2],[4685,2],[5360,2],[5361,2],[5362,2],[5007,2]]], [5007,[12973.3,10206.4,0],[[4685,2],[4686,2],[5006,2],[5362,2]]], [5008,[13093.1,10159.7,1.90735e-006],[[4686,2],[5363,2],[5009,2],[5364,2],[5362,2]]], [5009,[13056.4,10266.3,7.62939e-006],[[4686,2],[5008,2],[5363,2]]], +[5010,[13022.5,10378.4,2.54313e-006],[[4687,2],[5365,2],[5011,2]]], [5011,[13105.3,10386.2,0],[[4687,2],[5010,2],[5011,2],[5366,2]]], [5012,[13047.8,10275.4,0],[[4687,2]]], [5013,[13090.1,12149.6,0],[[4689,2],[5367,2]]], [5014,[13051.9,11992.8,0],[[4689,2]]], [5015,[13474.8,11689.8,-2.54313e-006],[[4691,2],[5368,2],[5369,2]]], +[5016,[13728.2,11334.7,-1.90735e-006],[[4692,2],[5370,2],[5371,2],[5372,2]]], [5017,[13805.3,11180.7,0],[[4692,2],[5373,2]]], [5018,[13591,10913.2,0],[[4693,2],[5018,2]]], [5019,[13528.8,10814.1,0],[[4693,2],[5374,2]]], [5020,[13365,10586.5,0],[[4693,2],[5375,2]]], [5021,[13245.4,10821.1,0],[[4693,2],[5376,2]]], +[5022,[11882,10223.5,0],[[4694,2]]], [5023,[11854.2,10048.3,-7.62939e-006],[[4694,2],[5377,2]]], [5024,[12141.9,10218.5,3.8147e-006],[[4694,2],[5005,2],[5378,2],[5024,2]]], [5025,[12020.8,10274.2,0],[[4694,2]]], [5026,[11676.6,9799.42,0],[[4695,2],[5377,2],[5379,2]]], [5027,[11797.8,9724.46,2.54313e-006],[[4695,2],[5380,2],[5381,2]]], +[5028,[11699.8,9432.38,0],[[4696,2],[5382,2],[5383,2],[5384,2]]], [5029,[11571.3,9309.25,7.62939e-006],[[4696,2],[5385,2]]], [5030,[11033.1,9474.63,-2.54313e-006],[[4697,2],[5386,2],[5049,2]]], [5031,[13269.2,12451.1,1.90735e-006],[[4698,2],[5387,2]]], [5032,[13443.9,12458.8,0],[[4698,2],[5388,2],[5032,2],[5389,2],[5390,2]]], [5033,[12919.3,13018.2,0],[[4699,2],[5034,2],[5391,2]]], +[5034,[12798.7,13141,0],[[4701,2],[5033,2]]], [5035,[9921.71,13992,0],[[4706,2],[5392,2]]], [5036,[9919.46,13824.4,-2.54313e-006],[[4706,2],[4728,2],[5393,2]]], [5037,[11411.4,14563.6,2.54313e-006],[[4707,2],[5039,2],[5394,2]]], [5038,[11375.4,14631.5,9.53674e-007],[[4707,2],[5395,2],[5396,2],[5397,2]]], [5039,[11431.8,14595.5,9.53674e-007],[[4707,2],[5037,2],[5398,2],[5039,2]]], +[5040,[10732.3,14706.1,0],[[4709,2],[5399,2],[5400,2]]], [5041,[10297.9,14169.7,-2.54313e-006],[[4710,2],[5401,2],[5402,2],[5041,2]]], [5042,[10425.1,14590.6,0],[[4711,2],[5403,2],[5400,2],[5404,2]]], [5043,[11787.9,13854.6,0],[[4712,2]]], [5044,[11896.5,14143.1,0],[[4713,2],[4714,2],[5405,2],[5044,2],[5046,2]]], [5045,[11728.4,14189.2,-1.90735e-006],[[4714,2]]], +[5046,[11824.1,14217.5,-2.38419e-007],[[4714,2],[5044,2],[5406,2],[5407,2]]], [5047,[10081.6,9535.63,0],[[4715,2],[5078,2],[5408,2],[5409,2]]], [5048,[10004.9,9806.75,-1.90735e-006],[[4716,2],[4741,2],[5048,2]]], [5049,[10881.1,9572,0],[[4717,2],[5030,2],[5410,2],[5411,2]]], [5050,[8676.64,11512.5,0],[[4718,2],[5412,2]]], [5051,[8638.44,11746.2,0],[[4718,2]]], +[5052,[8372.04,11995,-7.62939e-006],[[4719,2],[5413,2]]], [5053,[8434.8,12236.6,0],[[4719,2],[5414,2],[5415,2]]], [5054,[8592.85,12288.2,0],[[4719,2],[5416,2],[5415,2]]], [5055,[8917.91,12366.8,1.90735e-006],[[4720,2],[4721,2],[5417,2]]], [5056,[8827.6,13361.1,0],[[4724,2],[5418,2]]], [5057,[8805.57,13240.9,0],[[4724,2],[5419,2]]], +[5058,[9106.21,13085.3,0],[[4725,2],[5420,2],[5421,2]]], [5059,[9093.63,13230.7,0],[[4725,2],[5422,2]]], [5060,[9098.97,13309.6,-7.62939e-006],[[4726,2]]], [5061,[9281.77,13806.5,0],[[4727,2],[5423,2],[5424,2]]], [5062,[9195.27,13667.5,-7.62939e-006],[[4727,2]]], [5063,[9386.5,13749.8,7.62939e-006],[[4727,2]]], +[5064,[9684.85,13767.1,0],[[4728,2]]], [5065,[9358.2,12704,-3.8147e-006],[[4729,2]]], [5066,[9024.31,12841.2,0],[[4730,2],[4731,2],[5420,2]]], [5067,[8779.98,12685.5,0],[[4731,2],[5425,2]]], [5068,[8813.02,12546.3,2.54313e-006],[[4731,2],[5426,2],[5417,2]]], [5069,[9163.98,12736.8,0],[[4732,2]]], +[5070,[8640.87,10795.2,0],[[4734,2],[5075,2]]], [5071,[8184.05,10790,0],[[4735,2],[5427,2],[5428,2]]], [5072,[8536.05,11207.7,0],[[4736,2],[5429,2]]], [5073,[8830.4,10141,7.62939e-006],[[4737,2],[5430,2]]], [5074,[8819.71,10349.4,0],[[4737,2],[5431,2]]], [5075,[8745.52,10650.5,0],[[4738,2],[5070,2],[5075,2],[5432,2]]], +[5076,[8767.85,10424.2,-2.54313e-006],[[4738,2],[5433,2],[5434,2],[5432,2]]], [5077,[9319,10051.9,-2.54313e-006],[[4740,2],[4743,2],[5081,2]]], [5078,[9965.95,9560.19,7.62939e-006],[[4741,2],[5047,2]]], [5079,[9340.87,9510.15,-2.54313e-006],[[4742,2],[5435,2],[5436,2]]], [5080,[9552.43,9524,0],[[4742,2],[5437,2]]], [5081,[9246,9892.06,1.90735e-006],[[4744,2],[5077,2],[5438,2],[5439,2]]], +[5082,[14921.2,8276.62,0],[[4745,2],[5440,2],[5441,2]]], [5083,[14981.4,8009.43,0],[[4746,2]]], [5084,[14844,8062.38,0],[[4746,2],[5442,2]]], [5085,[14922.3,7489.55,0],[[4747,2],[4800,2]]], [5086,[15663.7,7512.32,0],[[4748,2]]], [5087,[15395,8947.7,0],[[4749,2],[5087,2]]], +[5088,[15246.1,9122.8,2.54313e-006],[[4749,2],[5443,2],[5444,2]]], [5089,[15330.2,8967.28,0],[[5089,2]]], [5090,[15337.7,9665.22,0],[[4750,2],[5445,2],[5446,2]]], [5091,[15785.3,9659.47,0],[[4751,2],[5447,2]]], [5092,[15411.3,9800.42,0],[[4752,2]]], [5093,[16185.1,9904.76,0],[[4753,2],[5448,2],[5449,2]]], +[5094,[16222,9706.05,-3.8147e-006],[[4753,2]]], [5095,[16912.6,10034.5,0],[[4754,2]]], [5096,[16754.9,9988.8,0],[[4754,2],[5450,2],[5451,2]]], [5097,[17211.6,9961.53,-6.35783e-007],[[4755,2],[5452,2],[5453,2]]], [5098,[17067.2,10024.4,0],[[4755,2],[5098,2],[5454,2]]], [5099,[17482.3,9814.89,0],[[4756,2],[5455,2]]], +[5100,[17798.9,9957.35,0],[[4757,2],[4758,2],[4759,2],[5456,2],[5457,2],[5104,2]]], [5101,[17680.3,9940.14,0],[[4757,2],[5458,2],[5459,2],[5455,2],[5460,2]]], [5102,[17713.5,9971.01,1.90735e-006],[[4757,2],[5461,2]]], [5103,[17997.1,9773.29,2.72478e-007],[[4758,2],[5103,2],[5462,2],[5463,2],[5464,2],[5465,2]]], [5104,[17897.3,9911.78,0],[[4758,2],[4759,2],[5100,2],[5466,2],[5467,2],[5457,2]]], [5105,[17897.3,9545.9,0],[[4760,2],[4761,2],[5468,2],[5109,2]]], +[5106,[18350.7,9158.43,1.58946e-007],[[4762,2],[5469,2],[5106,2],[5470,2]]], [5107,[18215.9,9500.29,-3.17891e-007],[[4763,2],[5471,2],[5472,2]]], [5108,[18276.8,9462.15,-1.58946e-007],[[4763,2],[5473,2],[5470,2],[5474,2]]], [5109,[18025.3,9564.04,-6.35783e-007],[[4764,2],[5105,2],[5468,2],[5475,2],[5110,2]]], [5110,[18098.3,9576.55,-2.38419e-007],[[4764,2],[5109,2],[5476,2],[5471,2],[5477,2],[5478,2]]], [5111,[16393.5,2577.12,0],[[4765,2],[5479,2]]], +[5112,[16247.5,2442.58,0],[[4765,2],[5480,2],[5481,2]]], [5113,[16054.7,2476.71,0],[[4765,2],[5482,2]]], [5114,[15729.7,2728.65,0],[[5114,2],[5483,2],[5484,2]]], [5115,[15664.9,2823.37,-3.17891e-007],[[4766,2],[5485,2],[5486,2]]], [5116,[16555.3,3365.61,-7.94729e-008],[[4767,2],[5487,2],[5488,2]]], [5117,[16711.4,3567.47,0],[[4768,2],[5489,2],[5145,2]]], +[5118,[16626.6,4045.57,0],[[4769,2]]], [5119,[16574.4,4013.92,4.76837e-007],[[4769,2],[5490,2]]], [5120,[16747.7,3801.98,0],[[4769,2],[5491,2],[5145,2]]], [5121,[16583.6,3011.3,0],[[4771,2],[5492,2],[5493,2]]], [5122,[16672.5,3126.88,0],[[4771,2],[5494,2]]], [5123,[13107.8,4186.63,-1.27157e-006],[[4773,2],[5495,2],[5496,2]]], +[5124,[13435.4,3862.57,0],[[4774,2],[4832,2],[5181,2],[5497,2]]], [5125,[13521.8,3443.71,0],[[4775,2],[5498,2],[5499,2]]], [5126,[13888.4,3060.32,9.53674e-007],[[4777,2],[5500,2],[5501,2],[5502,2]]], [5127,[15284.8,2833.23,0],[[4778,2],[5503,2]]], [5128,[14689.2,2675.75,0],[[4779,2],[5504,2],[5505,2]]], [5129,[13850,6154.43,0],[[4780,2]]], +[5130,[13890.8,6311.94,0],[[4781,2],[5506,2]]], [5131,[14598.2,6563.85,0],[[4783,2],[5131,2]]], [5132,[14286,6481.14,0],[[4783,2],[5507,2]]], [5133,[13559.4,5857.99,0],[[4784,2],[4785,2],[5508,2]]], [5134,[13558.7,6101.23,0],[[4786,2],[5509,2],[5508,2]]], [5135,[13752.6,6335.5,0],[[4786,2],[5510,2]]], +[5136,[12887.7,5524.95,-5.08626e-006],[[4787,2],[5136,2],[5511,2]]], [5137,[12604.3,5067.3,0],[[4789,2],[5512,2]]], [5138,[12523.1,5365.96,1.90735e-006],[[4790,2],[5513,2],[5514,2],[5515,2]]], [5139,[12606.3,5411.75,0],[[4790,2]]], [5140,[12876.8,4932.09,0],[[4791,2],[5140,2],[5516,2]]], [5141,[13381.6,6034.67,0],[[4792,2],[5517,2]]], +[5142,[13250.1,5829.77,0],[[4792,2],[5518,2]]], [5143,[17728.6,5051.35,0],[[4794,2]]], [5144,[17764.1,4861.94,-3.97364e-008],[[4794,2]]], [5145,[16806.6,3658.12,7.94729e-008],[[4795,2],[5117,2],[5120,2],[5491,2]]], [5146,[14456.7,7709.41,-2.54313e-006],[[4796,2],[5519,2],[5520,2]]], [5147,[14246.3,7287.93,0],[[4797,2],[5521,2]]], +[5148,[14105.2,6724.56,0],[[4798,2]]], [5149,[13929.7,7014.99,-7.62939e-006],[[4799,2],[5522,2]]], [5150,[14057.7,6851.16,7.62939e-006],[[4799,2],[5150,2]]], [5151,[9677.94,5064.36,0],[[4801,2],[4805,2],[5151,2],[5523,2]]], [5152,[9579.65,5034.76,-2.54313e-006],[[4801,2],[5154,2],[5524,2]]], [5153,[9983.27,5340.62,0],[[4803,2],[5156,2]]], +[5154,[9610.29,5187.05,-1.90735e-006],[[4805,2],[5152,2],[5525,2],[5526,2]]], [5155,[9791.39,5512.61,0],[[4806,2],[4807,2],[5158,2],[5527,2],[5528,2]]], [5156,[9921.2,5375.62,7.62939e-006],[[4806,2],[5153,2]]], [5157,[9643.44,5441.5,0],[[4807,2],[4847,2],[5525,2],[5197,2],[5196,2]]], [5158,[9714.75,5505.18,1.90735e-006],[[4807,2],[4847,2],[5155,2],[5196,2],[5528,2]]], [5159,[8981.25,4481.9,0],[[4809,2],[5529,2]]], +[5160,[8987.59,4800.21,0],[[4809,2],[5530,2],[5205,2],[5531,2]]], [5161,[11425,5298.58,0],[[4811,2]]], [5162,[11706.7,5492.77,2.54313e-006],[[4812,2],[5532,2],[5533,2]]], [5163,[11446.5,5490.37,0],[[4812,2],[5534,2]]], [5164,[11303.4,4879.68,0],[[4814,2]]], [5165,[10865.6,5508.81,-1.27157e-006],[[4815,2],[5535,2],[5536,2]]], +[5166,[11012,5331.77,0],[[4815,2],[5537,2]]], [5167,[13932.5,2418.68,6.35783e-007],[[4817,2],[5538,2],[5539,2]]], [5168,[12684.1,2315.12,0],[[4818,2],[2409,2],[5168,2]]], [5169,[13108.5,1484.61,1.90735e-006],[[4819,2],[5540,2]]], [5170,[12967.2,1291.86,0],[[4819,2],[5541,2]]], [5171,[13889.4,2596.02,0],[[4820,2],[5542,2]]], +[5172,[13488.9,3033.89,1.27157e-006],[[4821,2],[5501,2],[5543,2]]], [5173,[12010.5,1006.37,0],[[4823,2],[5544,2],[5545,2],[5546,2]]], [5174,[12115.6,1175.22,0],[[4824,2]]], [5175,[12710.1,1047.74,9.53674e-007],[[4825,2],[5547,2]]], [5176,[12529.5,994.316,0],[[4825,2],[5548,2]]], [5177,[12363.2,1060.14,0],[[4827,2],[5549,2]]], +[5178,[12226.1,1014.9,-2.38419e-007],[[4827,2],[5550,2],[5545,2],[5549,2],[5551,2]]], [5179,[11900.1,1043.4,0],[[4829,2],[5546,2]]], [5180,[10338.4,1821.52,0],[[4830,2]]], [5181,[13374.7,3820.31,0],[[4832,2],[5124,2],[5552,2]]], [5182,[13062.1,3844.24,0],[[4833,2]]], [5183,[12648.3,4194.77,3.8147e-006],[[4834,2],[5553,2]]], +[5184,[12247,4415.67,1.27157e-006],[[4835,2],[5554,2],[5555,2]]], [5185,[8440.27,3138.13,-1.90735e-006],[[4837,2],[5556,2]]], [5186,[8160.49,3618.72,0],[[4838,2],[5557,2]]], [5187,[8278.94,3385.41,0],[[4838,2],[5558,2]]], [5188,[8525.23,3838.95,-3.8147e-006],[[4839,2],[5559,2]]], [5189,[9603.03,5796.56,0],[[4842,2],[5190,2],[5560,2],[5561,2],[5562,2]]], +[5190,[9557.61,5674.09,0],[[4843,2],[4847,2],[5189,2],[5563,2]]], [5191,[9422.59,5499.56,7.62939e-006],[[4844,2],[5195,2]]], [5192,[9490.46,5379.19,-2.54313e-006],[[4844,2],[5192,2],[5564,2]]], [5193,[9321.75,5398.11,0],[[4844,2],[5565,2],[5566,2],[5567,2]]], [5194,[9184.72,5518.95,1.90735e-006],[[4845,2],[5194,2],[5567,2],[5568,2]]], [5195,[9539.16,5503.64,0],[[4847,2],[5191,2],[5564,2]]], +[5196,[9657.74,5516.49,7.62939e-006],[[4847,2],[5157,2],[5158,2],[5196,2]]], [5197,[9603.19,5488.67,0],[[4847,2],[5157,2],[5197,2]]], [5198,[9525.78,6463.4,7.62939e-006],[[4850,2],[5569,2]]], [5199,[9301.65,6406.91,-1.90735e-006],[[4851,2],[5570,2],[5199,2],[5571,2]]], [5200,[8236.38,7063.1,0],[[4852,2]]], [5201,[8986.25,6927.29,0],[[4853,2],[5572,2]]], +[5202,[8781.8,6887.05,0],[[4853,2],[5573,2],[5574,2]]], [5203,[8341.54,4319.91,0],[[4855,2],[5575,2],[5576,2]]], [5204,[9064.09,5082.35,0],[[4856,2],[5577,2],[5578,2]]], [5205,[9039.22,4999.98,0],[[4856,2],[5160,2],[5530,2],[5579,2]]], [5206,[7813.96,4696.92,-3.8147e-006],[[4857,2]]], [5207,[8171.87,4261.55,-3.8147e-006],[[4858,2]]], +[5208,[7652.64,3800.17,0],[[4859,2],[4860,2],[5580,2]]], [5209,[7409.6,3720.56,0],[[4860,2],[5581,2]]], [5210,[7302.98,3687.41,0],[[4861,2]]], [5211,[7089.01,3567.84,-1.90735e-006],[[4862,2],[5582,2]]], [5212,[5797.52,3917.09,0],[[4863,2],[5583,2]]], [5213,[5606.69,4033.45,0],[[4864,2],[5583,2]]], +[5214,[5429.8,4284.83,0],[[4865,2],[5584,2]]], [5215,[5606.36,4420.53,-1.90735e-006],[[4865,2],[4870,2],[5220,2]]], [5216,[5580.15,4172.05,-6.35783e-007],[[4865,2],[5216,2],[5585,2]]], [5217,[5520.61,4201.22,0],[[4865,2],[5586,2],[5217,2],[5587,2]]], [5218,[5860.05,4364.44,0],[[4867,2]]], [5219,[5462.92,5335.96,0],[[4869,2]]], +[5220,[5612.44,4442.74,0],[[5220,2]]], [5221,[7059.66,8166.21,0],[[4871,2],[5588,2]]], [5222,[6903.8,8050.89,2.54313e-006],[[4871,2],[5589,2],[5590,2]]], [5223,[6394.31,7962.48,7.62939e-006],[[4872,2]]], [5224,[5965.87,7922.23,0],[[4873,2],[5591,2]]], [5225,[6102.97,7734.47,0],[[4873,2]]], +[5226,[6597.98,7954.14,0],[[4874,2],[5592,2],[5593,2],[5590,2]]], [5227,[6620.13,7755.59,0],[[4875,2],[5594,2]]], [5228,[7813.02,8475.72,2.54313e-006],[[4877,2],[5595,2],[5596,2],[5597,2],[5229,2],[5598,2]]], [5229,[7778.28,8262.98,0],[[4878,2],[5228,2],[5233,2]]], [5230,[8515.27,8011.15,3.8147e-006],[[4879,2],[5231,2],[5599,2],[5600,2]]], [5231,[8594.41,7975.95,1.52588e-006],[[4880,2],[5230,2],[5231,2],[5601,2],[5602,2]]], +[5232,[8287.92,8160,1.52588e-005],[[4881,2],[4883,2],[5235,2]]], [5233,[7918.01,8273.61,0],[[4882,2],[5229,2],[5603,2]]], [5234,[8083.81,8345.55,0],[[4882,2],[5604,2],[5605,2],[5606,2]]], [5235,[8307.25,8194.54,1.52588e-005],[[4883,2],[5232,2],[5607,2]]], [5236,[6163.21,7340.94,0],[[4884,2]]], [5237,[5028.97,6448.14,0],[[4888,2],[5608,2]]], +[5238,[5362.3,5092.84,0],[[4889,2],[5238,2],[5609,2]]], [5239,[5120.86,5132.33,0],[[4889,2],[5610,2]]], [5240,[6067.26,7377.17,0],[[4891,2]]], [5241,[5859.35,7586.74,0],[[4892,2],[5611,2]]], [5242,[4291.14,8045.73,2.54313e-006],[[4893,2],[5612,2],[5613,2]]], [5243,[4859.62,7497.94,0],[[4894,2],[5614,2],[5615,2]]], +[5244,[4517.26,5485.01,-9.53674e-007],[[4897,2],[5616,2],[5617,2],[5618,2]]], [5245,[3879.75,5427.26,1.90735e-006],[[4898,2],[4902,2]]], [5246,[3874.89,5518.8,0],[[4898,2]]], [5247,[3755.85,5711.44,3.8147e-006],[[4899,2],[5619,2]]], [5248,[3812.61,5359.44,0],[[4902,2],[5620,2]]], [5249,[4199.85,4934.03,-3.17891e-007],[[4903,2],[5621,2],[5622,2]]], +[5250,[3865.47,5008.93,0],[[4905,2]]], [5251,[3854.81,4958.87,9.53674e-007],[[4905,2]]], [5252,[4027.63,4966.4,0],[[4905,2],[5623,2]]], [5253,[3145.31,5123.33,0],[[4906,2],[5624,2]]], [5254,[3898.65,8176.46,0],[[4907,2],[5625,2],[5626,2]]], [5255,[3967.54,8601.65,0],[[4908,2],[5627,2]]], +[5256,[2487.23,9616,6.35783e-007],[[4911,2]]], [5257,[3089.97,9146.7,0],[[4913,2],[5628,2],[5257,2],[5274,2]]], [5258,[2320.6,10177.2,1.90735e-006],[[4915,2],[5629,2]]], [5259,[2352.18,10007,0],[[4915,2],[4926,2]]], [5260,[2067.13,10156.1,-9.53674e-007],[[4916,2],[4918,2],[5262,2]]], [5261,[1832.4,10241.7,0],[[4917,2],[4919,2],[5630,2]]], +[5262,[2003.17,10206,0],[[4918,2],[5260,2],[5631,2]]], [5263,[1827.63,10223.2,0],[[4919,2],[5632,2]]], [5264,[1625.96,9975.22,3.17891e-007],[[4920,2],[5633,2],[5634,2]]], [5265,[3057.46,9948.17,3.8147e-006],[[4922,2],[5635,2]]], [5266,[2350.8,9719.11,0],[[4923,2]]], [5267,[2521.07,9814.68,0],[[4923,2]]], +[5268,[2727.52,9782.96,0],[[4924,2],[5268,2]]], [5269,[2786.5,9711.79,-1.90735e-006],[[4924,2],[5636,2],[5637,2],[5638,2]]], [5270,[2952.08,10108.6,0],[[4925,2],[5639,2],[5640,2]]], [5271,[2776.61,10119.3,0],[[4925,2]]], [5272,[3288.57,9094.96,0],[[4927,2],[5641,2]]], [5273,[3406.32,8913.07,0],[[4927,2]]], +[5274,[3157.37,8955.85,0],[[4927,2],[5257,2],[5642,2]]], [5275,[2238.79,12314.2,0],[[4928,2],[5643,2]]], [5276,[2118.02,12533.4,0],[[4928,2],[5644,2]]], [5277,[2407.58,12809.2,0],[[4929,2]]], [5278,[2474.51,12796,-3.8147e-006],[[4929,2]]], [5279,[2774.25,12072.3,0],[[4930,2],[5645,2]]], +[5280,[2837.39,12437.6,-3.8147e-006],[[4931,2],[5646,2]]], [5281,[3130.63,12357.2,0],[[4932,2],[5647,2],[5281,2],[5648,2]]], [5282,[3363.73,12293.6,0],[[4932,2],[4975,2],[5649,2]]], [5283,[4396.16,16636.7,7.62939e-006],[[4933,2]]], [5284,[4775.08,17022.1,7.62939e-006],[[4934,2],[5284,2]]], [5285,[4689.83,17110.2,0],[[4934,2],[5650,2]]], +[5286,[4910.8,17207.5,0],[[4935,2],[5651,2],[5652,2]]], [5287,[4982,17109.4,2.54313e-006],[[4935,2],[5653,2],[5654,2]]], [5288,[5120.29,16854.4,2.54313e-006],[[4936,2],[5655,2],[5288,2]]], [5289,[4997,16161,-2.54313e-006],[[4938,2],[5656,2],[5289,2]]], [5290,[5557.32,16581.8,0],[[4939,2],[5657,2]]], [5291,[5414.13,16529.8,0],[[4939,2],[5658,2],[5659,2]]], +[5292,[5339.91,16862.9,0],[[4940,2],[5660,2]]], [5293,[3142.59,16545.8,0],[[4942,2],[5661,2]]], [5294,[2621.03,16075.4,0],[[4945,2],[5662,2],[5663,2]]], [5295,[2606.71,16258.8,7.62939e-006],[[4945,2],[5664,2]]], [5296,[2636.57,16381.2,0],[[4946,2],[5665,2]]], [5297,[2930.81,16628.6,-1.90735e-006],[[4947,2],[5666,2],[5667,2],[5668,2]]], +[5298,[2945.85,16433,0],[[4948,2]]], [5299,[4035.27,16787.9,3.8147e-006],[[4949,2],[5669,2],[5670,2],[5301,2]]], [5300,[4230.84,16984.8,0],[[4949,2],[5671,2]]], [5301,[4048.11,16698.4,0],[[4951,2],[5299,2]]], [5302,[4394.47,16712.5,0],[[4952,2]]], [5303,[2163.59,15234.5,0],[[4953,2],[5672,2]]], +[5304,[2489.86,15825.1,0],[[4954,2],[5662,2]]], [5305,[1786.61,14499.1,0],[[4957,2],[5673,2],[5674,2],[5675,2]]], [5306,[1769.52,13066.9,0],[[4958,2],[5676,2],[5677,2]]], [5307,[1770.67,13190.9,2.54313e-006],[[4958,2],[5307,2]]], [5308,[1691.16,13135.8,0],[[4958,2],[4962,2],[5313,2],[5676,2]]], [5309,[1449.24,13162,0],[[4960,2],[4961,2],[5678,2],[5309,2],[5679,2]]], +[5310,[1500.45,13213.4,0],[[4960,2]]], [5311,[1503.85,13115.8,0],[[4962,2],[5680,2]]], [5312,[1613.89,13234.4,0],[[4962,2],[5681,2]]], [5313,[1598.51,13114.6,-3.8147e-007],[[4962,2],[5308,2],[5680,2],[5682,2],[5683,2]]], [5314,[1440.47,13482.9,0],[[4963,2],[4964,2],[5684,2],[5316,2]]], [5315,[1406.26,13338.2,0],[[4963,2],[5685,2]]], +[5316,[1493.9,13499.5,0],[[4964,2],[5314,2],[5316,2]]], [5317,[1946.5,12869.2,0],[[4965,2],[5686,2],[5677,2],[5687,2]]], [5318,[2173.13,12955.7,0],[[4965,2],[5688,2]]], [5319,[7222.72,14914.7,0],[[4966,2],[5689,2]]], [5320,[7490.34,14956,0],[[4967,2],[5690,2],[5691,2]]], [5321,[6678.65,14890.8,0],[[4969,2],[5692,2]]], +[5322,[6586.72,15118.2,1.52588e-005],[[4970,2],[5693,2]]], [5323,[7069.54,15024.9,7.62939e-006],[[4971,2]]], [5324,[6942.48,15196.2,0],[[4972,2],[5694,2],[5695,2]]], [5325,[4057.26,11554.9,0],[[4973,2],[5696,2],[5697,2],[5356,2],[5698,2],[5699,2]]], [5326,[3318.14,11807.8,0],[[4974,2],[5700,2]]], [5327,[3359.13,12290.6,-9.53674e-007],[[4975,2],[5327,2]]], +[5328,[2914.71,12012.8,0],[[4976,2],[5645,2]]], [5329,[5310.35,15874,0],[[4977,2],[5701,2]]], [5330,[5553.81,16236.4,2.54313e-006],[[4978,2],[5330,2],[5702,2]]], [5331,[5756.2,16299.6,5.08626e-006],[[4978,2],[5703,2],[5704,2]]], [5332,[6486.66,15287.8,0],[[4981,2],[5705,2],[5693,2]]], [5333,[6311.49,15235.9,0],[[4981,2]]], +[5334,[6514.54,15801.8,0],[[4982,2],[5706,2]]], [5335,[6094.71,15872.1,0],[[4983,2],[5707,2]]], [5336,[7315.41,12398.4,0],[[4984,2],[5708,2],[5709,2]]], [5337,[7232.91,12410.1,0],[[4984,2]]], [5338,[7081.96,12401.7,0],[[4985,2],[5710,2],[5711,2],[5338,2]]], [5339,[6375.02,11033.2,0],[[4988,2],[5713,2]]], +[5340,[6959.4,11365.8,0],[[4989,2],[5714,2]]], [5341,[6940.46,11003.8,0],[[4990,2],[5715,2],[5716,2],[5717,2]]], [5342,[7569.82,12568.6,0],[[4991,2],[5718,2],[5708,2],[5719,2]]], [5343,[7735.27,12969.1,0],[[4992,2],[5720,2],[5721,2]]], [5344,[7848.56,14581.1,0],[[4994,2],[5722,2]]], [5345,[7689.26,14500.4,2.54313e-006],[[4994,2]]], +[5346,[7735.02,14605.5,0],[[4994,2],[5723,2]]], [5347,[7766.98,13887,0],[[4995,2],[5724,2],[5725,2]]], [5348,[7672.05,13840.4,-5.08626e-006],[[4995,2]]], [5349,[7684.52,13950.4,0],[[4995,2],[5726,2]]], [5350,[7717.26,13434.2,0],[[4996,2],[5727,2],[5728,2]]], [5351,[5120.27,10580,2.54313e-006],[[4999,2],[5729,2],[5730,2]]], +[5352,[5358.65,10508.9,0],[[4999,2],[5731,2],[5732,2]]], [5353,[4140.46,10661.5,2.54313e-006],[[5000,2],[5733,2],[5734,2]]], [5354,[4280.77,10553.9,-7.62939e-006],[[5000,2],[5735,2]]], [5355,[4282.25,11242.8,0],[[5002,2]]], [5356,[4249.67,11431.1,7.62939e-006],[[5002,2],[5325,2],[5697,2]]], [5357,[4133.21,11213.8,-7.62939e-006],[[5002,2],[5736,2]]], +[5358,[4888.93,10620.6,0],[[5003,2],[5737,2],[5729,2]]], [5359,[4725.03,10507.8,0],[[5003,2],[5738,2]]], [5360,[12833.9,10072.3,0],[[5006,2],[5739,2],[5740,2]]], [5361,[12968.8,10047.5,-7.62939e-006],[[5006,2]]], [5362,[12992.6,10140.7,-7.62939e-006],[[5006,2],[5007,2],[5008,2]]], [5363,[13106.6,10217,-1.90735e-006],[[5008,2],[5009,2],[5741,2],[5742,2]]], +[5364,[13177.8,10098,2.54313e-006],[[5008,2],[5364,2],[5743,2]]], [5365,[13059.1,10552,0],[[5010,2],[5744,2]]], [5366,[13201.5,10442.3,-2.54313e-006],[[5011,2],[5375,2],[5745,2]]], [5367,[13106.1,12174.6,0],[[5013,2],[5746,2],[5747,2]]], [5368,[13505.6,11760.6,0],[[5015,2],[5748,2],[5749,2]]], [5369,[13464.4,11756.3,0],[[5015,2],[5369,2]]], +[5370,[13837.6,11299.3,7.62939e-006],[[5016,2],[5750,2]]], [5371,[13624.6,11300.6,0],[[5016,2],[5371,2]]], [5372,[13769.7,11490.5,0],[[5016,2],[5751,2],[5752,2]]], [5373,[13889.1,11091.6,0],[[5017,2],[5753,2],[5754,2]]], [5374,[13660.7,10846.4,0],[[5019,2],[5755,2]]], [5375,[13351.6,10466.8,0],[[5020,2],[5366,2],[5756,2]]], +[5376,[13158.7,10843.3,0],[[5021,2],[5757,2],[5758,2]]], [5377,[11747.9,9980.16,0],[[5023,2],[5026,2]]], [5378,[12283.1,10194.7,0],[[5024,2],[5759,2],[5760,2]]], [5379,[11588.2,9816.5,0],[[5026,2]]], [5380,[11963.3,9790.04,0],[[5027,2],[5761,2]]], [5381,[11792,9602.77,0],[[5027,2]]], +[5382,[11688.7,9463.58,0],[[5028,2]]], [5383,[11781.2,9297.62,0],[[5028,2],[5762,2]]], [5384,[11897.4,9429.39,0],[[5028,2],[5763,2]]], [5385,[11560,9264.59,0],[[5029,2],[5764,2],[5385,2],[5765,2]]], [5386,[10881.1,9455.68,0],[[5030,2],[5766,2],[5767,2]]], [5387,[13256.3,12427.9,1.90735e-006],[[5031,2],[5768,2],[5769,2]]], +[5388,[13521.8,12311.6,1.27157e-006],[[5032,2],[5770,2],[5771,2]]], [5389,[13534,12423.7,0],[[5032,2],[5390,2],[5389,2],[5772,2]]], [5390,[13506.1,12430.2,0],[[5389,2],[6131,2],[5390,2],[5032,2]]], [5391,[12802.8,12897.8,0],[[5033,2],[5773,2]]], [5392,[9830.62,14089,0],[[5035,2],[5774,2]]], [5393,[9970.87,13698,-7.62939e-006],[[5036,2],[5775,2]]], +[5394,[11410.4,14538.2,0],[[5037,2]]], [5395,[11339.2,14638.1,1.27157e-006],[[5038,2],[5395,2],[5776,2]]], [5396,[11438.7,14758.2,0],[[5038,2],[5777,2],[5398,2],[5778,2],[5397,2],[5779,2]]], [5397,[11371.6,14759.9,-1.27157e-006],[[5038,2],[5396,2],[5778,2],[5780,2]]], [5398,[11470,14611.5,-1.27157e-006],[[5039,2],[5396,2],[5781,2],[5777,2]]], [5399,[10833.7,14763.8,0],[[5040,2],[5782,2],[5783,2]]], +[5400,[10593.3,14636.4,0],[[5040,2],[5042,2]]], [5401,[10243.6,14241,0],[[5041,2]]], [5402,[10306.2,14157.8,-3.8147e-006],[[5041,2]]], [5403,[10252.3,14650.1,1.27157e-006],[[5042,2],[5784,2],[5785,2]]], [5404,[10464.6,14658.7,3.17891e-007],[[5042,2],[5786,2],[5404,2],[5787,2]]], [5405,[11921.4,14167.5,0],[[5044,2],[5405,2],[5407,2]]], +[5406,[11751.5,14321.6,-3.17891e-007],[[5046,2],[5788,2],[5789,2]]], [5407,[11886.6,14294.1,0],[[5046,2],[5405,2],[5790,2],[5789,2],[5791,2]]], [5408,[10265.2,9577.31,0],[[5047,2],[5792,2]]], [5409,[10054.1,9345.6,0],[[5047,2],[5793,2]]], [5410,[11067.4,9623.12,0],[[5049,2],[5794,2]]], [5411,[10708.7,9528.75,0],[[5049,2],[5795,2]]], +[5412,[8667.38,11489.6,0],[[5050,2],[5429,2],[5796,2]]], [5413,[8263.42,11868.4,0],[[5052,2],[5797,2]]], [5414,[8296.8,12218.9,7.62939e-006],[[5053,2],[5798,2]]], [5415,[8538.32,12341.9,7.62939e-006],[[5053,2],[5054,2],[5799,2]]], [5416,[8598.63,12323,0],[[5054,2],[5426,2]]], [5417,[8891.67,12420.8,0],[[5055,2],[5068,2],[5800,2]]], +[5418,[8778.28,13358.6,0],[[5056,2],[5801,2],[5802,2]]], [5419,[8783.31,13233.3,0],[[5057,2],[5803,2],[5804,2]]], [5420,[9041.13,12979.7,0],[[5058,2],[5066,2],[5805,2]]], [5421,[9005.53,13100.1,0],[[5058,2],[5806,2]]], [5422,[9062.06,13165.7,7.62939e-006],[[5059,2]]], [5423,[9380.26,13844.5,0],[[5061,2]]], +[5424,[9237.85,13903.1,2.54313e-006],[[5061,2],[5807,2],[5808,2]]], [5425,[8746.22,12661.9,0],[[5067,2],[5809,2],[5810,2]]], [5426,[8684.3,12426.3,0],[[5068,2],[5416,2],[5811,2]]], [5427,[8136.11,10915.7,0],[[5071,2],[5812,2]]], [5428,[8017.45,10697.9,-2.54313e-006],[[5071,2],[5813,2],[5814,2]]], [5429,[8573.14,11305.7,-2.54313e-006],[[5072,2],[5412,2],[5815,2]]], +[5430,[8807.31,10004.3,0],[[5073,2],[5816,2]]], [5431,[8744.63,10230.8,7.62939e-006],[[5074,2],[5817,2]]], [5432,[8678.4,10541.5,0],[[5075,2],[5076,2],[5818,2]]], [5433,[8683.41,10282.4,-7.62939e-006],[[5076,2],[5819,2]]], [5434,[8655.42,10494.3,0],[[5076,2],[5820,2]]], [5435,[9258.02,9332.82,0],[[5079,2],[5821,2]]], +[5436,[9247.62,9534.01,0],[[5079,2],[5822,2]]], [5437,[9617.38,9482.68,0],[[5080,2],[5823,2],[5824,2]]], [5438,[9222.14,9841.51,0],[[5081,2],[5825,2],[5826,2]]], [5439,[9090.79,9974.31,0],[[5081,2],[5827,2]]], [5440,[14816.9,8276.13,0],[[5082,2],[5828,2],[5829,2]]], [5441,[14925.1,8340.64,0],[[5082,2]]], +[5442,[14731.8,7948.82,0],[[5084,2],[5830,2]]], [5443,[15063.8,9119.33,0],[[5088,2],[5831,2],[5832,2]]], [5444,[15248.6,8942.09,-7.62939e-006],[[5088,2],[5833,2]]], [5445,[15215.6,9613.6,-3.8147e-006],[[5090,2],[5445,2]]], [5446,[15242.9,9781,0],[[5090,2],[5834,2]]], [5447,[15909.9,9718.86,0],[[5091,2],[5835,2]]], +[5448,[16192.1,9961.94,0],[[5093,2],[5836,2],[5837,2]]], [5449,[16099.6,9911.37,0],[[5093,2]]], [5450,[16625.6,9961.68,0],[[5096,2],[5838,2],[5839,2]]], [5451,[16827.1,10142.3,0],[[5096,2],[5840,2]]], [5452,[17277.9,9964.49,1.27157e-006],[[5097,2],[5841,2],[5842,2]]], [5453,[17205.8,9931.18,0],[[5097,2]]], +[5454,[17083.1,10005,0],[[5098,2]]], [5455,[17561.8,9911.41,0],[[5099,2],[5101,2],[5459,2]]], [5456,[17762.3,10003.9,-3.17891e-007],[[5100,2],[5456,2],[5843,2],[5457,2]]], [5457,[17849.2,10005.8,-1.58946e-007],[[5100,2],[5104,2],[5456,2],[5844,2],[5457,2],[5845,2],[5843,2]]], [5458,[17703.1,9852.82,1.90735e-006],[[5101,2]]], [5459,[17589.6,9930.07,0],[[5101,2],[5455,2],[5842,2]]], +[5460,[17628.8,9998.04,0],[[5101,2]]], [5461,[17711.8,9995.75,6.35783e-007],[[5102,2],[5846,2],[5847,2]]], [5462,[17981.7,9737.46,4.76837e-007],[[5103,2],[5848,2],[5849,2],[5468,2],[5475,2]]], [5463,[18022.7,9844.66,0],[[5103,2],[5463,2],[5850,2],[5466,2],[5465,2]]], [5464,[18046.6,9727.84,-1.19209e-007],[[5103,2],[5464,2],[5851,2],[5478,2]]], [5465,[18046.7,9778.64,-3.17891e-007],[[5103,2],[5463,2],[5852,2]]], +[5466,[17958.9,9881.86,4.76837e-007],[[5104,2],[5463,2],[5853,2]]], [5467,[17953,9928.05,0],[[5104,2],[5854,2],[5850,2]]], [5468,[17952.5,9621.63,0],[[5105,2],[5109,2],[5462,2],[5855,2],[5849,2]]], [5469,[18365,9100.63,0],[[5106,2]]], [5470,[18306.6,9285.17,-3.57628e-007],[[5106,2],[5108,2],[5470,2],[5473,2]]], [5471,[18182.7,9529.05,0],[[5107,2],[5110,2],[5856,2],[5471,2],[5476,2]]], +[5472,[18238.8,9532.95,-3.17891e-007],[[5107,2],[5472,2],[5857,2]]], [5473,[18286.1,9370.65,0],[[5108,2],[5470,2]]], [5474,[18300.2,9510.05,-1.58946e-007],[[5108,2],[5474,2],[5858,2],[5857,2]]], [5475,[18040.1,9579.47,0],[[5109,2],[5462,2],[5855,2]]], [5476,[18147.3,9589.29,-2.38419e-007],[[5110,2],[5471,2],[5852,2],[5857,2]]], [5477,[18055.2,9578.63,-1.90735e-006],[[5110,2]]], +[5478,[18077.8,9622.6,3.17891e-007],[[5110,2],[5464,2],[5859,2],[5851,2],[5849,2]]], [5479,[16501.7,2608.57,0],[[5111,2],[5860,2]]], [5480,[16428.7,2470.74,0],[[5112,2],[5861,2]]], [5481,[16222.1,2281.01,0],[[5112,2],[5862,2]]], [5482,[15915.8,2434.18,0],[[5113,2],[5863,2]]], [5483,[15735.9,2525.45,0],[[5114,2],[5864,2],[5863,2]]], +[5484,[15696.4,2726,0],[[5114,2]]], [5485,[15505.1,2799.93,0],[[5115,2],[5503,2]]], [5486,[15648.1,2889.66,0],[[5115,2]]], [5487,[16612.4,3264.19,0],[[5116,2],[5494,2]]], [5488,[16521,3340.86,0],[[5116,2]]], [5489,[16685.2,3597.48,1.58946e-007],[[5117,2],[5489,2]]], +[5490,[16534,4075.22,0],[[5119,2]]], [5491,[16764.9,3744.01,0],[[5120,2],[5145,2],[5865,2],[5866,2]]], [5492,[16530.1,2994.71,4.76837e-007],[[5121,2],[5867,2],[5868,2]]], [5493,[16655.4,2877.07,0],[[5121,2],[5869,2]]], [5494,[16687.7,3122.39,7.94729e-008],[[5122,2],[5487,2],[5870,2]]], [5495,[12952.2,4249.13,-3.8147e-006],[[5123,2],[5871,2]]], +[5496,[13151.6,4038.32,0],[[5123,2],[5872,2]]], [5497,[13396.4,3832.15,0],[[5124,2]]], [5498,[13455.6,3525.8,0],[[5125,2]]], [5499,[13495.5,3405.36,0],[[5125,2]]], [5500,[14065.8,3086.74,0],[[5126,2],[5873,2]]], [5501,[13723.1,3037.31,0],[[5126,2],[5172,2]]], +[5502,[13928.5,2874.08,0],[[5126,2],[5874,2]]], [5503,[15413.2,2808.02,0],[[5127,2],[5485,2]]], [5504,[14526.1,2697.47,-4.76837e-007],[[5128,2],[5875,2],[5504,2],[5876,2]]], [5505,[14725,2513.57,0],[[5128,2],[5877,2]]], [5506,[13891.9,6338.91,0],[[5130,2],[5878,2],[5879,2]]], [5507,[14144.9,6445.92,0],[[5132,2],[5880,2]]], +[5508,[13515.8,6077.18,0],[[5133,2],[5134,2],[5509,2]]], [5509,[13501.2,6090.47,7.62939e-006],[[5134,2],[5508,2],[5517,2]]], [5510,[13634.3,6312.24,7.62939e-006],[[5135,2],[5881,2]]], [5511,[12966.7,5578.62,0],[[5136,2],[5882,2]]], [5512,[12557.8,4927.56,0],[[5137,2],[5883,2]]], [5513,[12458.9,5186.16,0],[[5138,2],[5884,2]]], +[5514,[12599.7,5544.51,0],[[5138,2],[5885,2]]], [5515,[12367.2,5423.08,0],[[5138,2],[5886,2]]], [5516,[13054.1,4917.22,0],[[5140,2],[5887,2]]], [5517,[13382.1,6073.05,-1.90735e-006],[[5141,2],[5509,2],[5888,2],[5889,2]]], [5518,[13154.1,5794.27,5.08626e-006],[[5142,2],[5890,2],[5891,2]]], [5519,[14519.1,7730.02,-2.54313e-006],[[5146,2],[5892,2],[5893,2],[5830,2]]], +[5520,[14315.2,7694.99,0],[[5146,2],[5894,2]]], [5521,[14156.2,7177.8,0],[[5147,2],[5895,2]]], [5522,[13769.7,7025.02,0],[[5149,2],[5896,2]]], [5523,[9709.21,5027.26,0],[[5151,2]]], [5524,[9495.75,5035.38,0],[[5152,2],[5897,2],[5898,2]]], [5525,[9635.83,5266.74,-2.54313e-006],[[5154,2],[5157,2],[5525,2]]], +[5526,[9543.04,5214.8,0],[[5154,2],[5526,2],[5899,2],[5564,2]]], [5527,[9821.22,5609.16,0],[[5155,2],[5900,2],[5901,2],[5528,2]]], [5528,[9728.23,5554.3,0],[[5155,2],[5158,2],[5527,2],[5901,2]]], [5529,[8906.63,4374.16,0],[[5159,2],[5902,2]]], [5530,[9008.95,4928.54,-3.8147e-006],[[5160,2],[5205,2],[5903,2]]], [5531,[8909.15,4809.97,3.8147e-006],[[5160,2]]], +[5532,[11716.9,5666.83,0],[[5162,2],[5904,2]]], [5533,[11864.6,5499.36,-7.62939e-006],[[5162,2],[5905,2]]], [5534,[11304.9,5500.2,1.90735e-006],[[5163,2],[5906,2],[5907,2],[5908,2]]], [5535,[11038.7,5506.58,0],[[5165,2],[5909,2],[5907,2]]], [5536,[10726.4,5523.89,0],[[5165,2],[5910,2],[5911,2]]], [5537,[11044.5,5326.58,0],[[5166,2]]], +[5538,[14047.6,2444.07,0],[[5167,2],[5538,2],[5912,2]]], [5539,[13961.4,2239.86,0],[[5167,2],[5913,2]]], [5540,[13149.3,1510.11,0],[[5169,2],[5915,2],[5916,2]]], [5541,[12966.8,1270.09,3.17891e-007],[[5170,2],[5917,2],[5918,2]]], [5542,[14040.7,2585.02,0],[[5171,2],[5919,2]]], [5543,[13484.4,3163.07,0],[[5172,2]]], +[5544,[12075.2,1018.4,0],[[5173,2]]], [5545,[12103.8,955.225,0],[[5173,2],[5178,2],[5920,2]]], [5546,[11925.4,1023.37,0],[[5173,2],[5179,2]]], [5547,[12870.9,1060.61,0],[[5175,2],[5921,2],[5917,2]]], [5548,[12503,987.954,0],[[5176,2],[5549,2],[5922,2]]], [5549,[12377.5,1004.72,2.38419e-007],[[5177,2],[5178,2],[5548,2],[5923,2]]], +[5550,[12156.5,963.178,0],[[5178,2],[5550,2]]], [5551,[12117.2,1003.15,0],[[5178,2],[5551,2]]], [5552,[13395.7,3732.88,-3.8147e-006],[[5181,2]]], [5553,[12692.3,4182.89,-1.27157e-006],[[5183,2],[5924,2],[5871,2],[5925,2]]], [5554,[12377.8,4433,-3.8147e-006],[[5184,2]]], [5555,[12196,4575.04,0],[[5184,2],[5926,2]]], +[5556,[8376.2,3063.5,0],[[5185,2]]], [5557,[7997.66,3672.97,0],[[5186,2],[5927,2],[5580,2]]], [5558,[8232.05,3246.85,0],[[5187,2],[5928,2]]], [5559,[8536.19,3861.43,0],[[5188,2],[5929,2],[5930,2]]], [5560,[9612.52,5884.36,2.54313e-006],[[5189,2],[5931,2],[5932,2]]], [5561,[9624.91,5708.69,0],[[5189,2],[5933,2],[5934,2],[5563,2]]], +[5562,[9695.26,5743.33,1.90735e-006],[[5189,2],[5935,2],[5562,2],[5936,2],[5934,2]]], [5563,[9562.06,5653.12,7.62939e-006],[[5190,2],[5561,2],[5934,2]]], [5564,[9539.51,5383,-2.54313e-006],[[5192,2],[5195,2],[5526,2],[5937,2]]], [5565,[9346.93,5339.67,0],[[5193,2],[5938,2],[5939,2]]], [5566,[9233.54,5355.48,2.54313e-006],[[5193,2],[5940,2],[5941,2],[5567,2]]], [5567,[9174,5434.57,0],[[5193,2],[5194,2],[5566,2],[5941,2]]], +[5568,[9118.17,5531.25,0],[[5194,2],[5942,2]]], [5569,[9613.22,6563.18,0],[[5198,2],[5943,2]]], [5570,[9327.63,6601.96,0],[[5199,2],[5944,2],[5945,2]]], [5571,[9160.11,6427.72,-7.62939e-006],[[5199,2]]], [5572,[9160.41,6890.29,0],[[5201,2],[5946,2]]], [5573,[8810.53,6800.34,7.62939e-006],[[5202,2],[5947,2]]], +[5574,[8693.79,6904.35,7.62939e-006],[[5202,2]]], [5575,[8390.64,4317.74,0],[[5203,2]]], [5576,[8332.07,4235.69,0],[[5203,2],[5948,2],[5949,2]]], [5577,[8976.1,5140.19,0],[[5204,2]]], [5578,[9117.11,5136.31,-5.08626e-006],[[5204,2],[5950,2],[5940,2]]], [5579,[9171.02,4919.65,0],[[5205,2],[5951,2]]], +[5580,[7810.19,3735.66,0],[[5208,2],[5557,2],[5952,2]]], [5581,[7365.75,3616.78,0],[[5209,2],[5953,2]]], [5582,[7205.21,3534.4,0],[[5211,2],[5954,2]]], [5583,[5686.92,3997.31,0],[[5212,2],[5213,2]]], [5584,[5356.95,4298.11,0],[[5214,2],[5955,2]]], [5585,[5557.69,4151.03,-6.35783e-007],[[5216,2],[5585,2],[5956,2]]], +[5586,[5534.69,4203.8,0],[[5217,2],[5586,2]]], [5587,[5487.93,4191.33,0],[[5217,2]]], [5588,[7069.71,8210.59,-2.54313e-006],[[5221,2],[5959,2],[5960,2]]], [5589,[6947.97,8128.8,2.54313e-006],[[5222,2],[5589,2],[5961,2]]], [5590,[6751.11,8137.17,-2.54313e-006],[[5222,2],[5226,2],[5962,2],[5963,2]]], [5591,[5924.28,7922.47,1.52588e-006],[[5224,2],[5964,2],[5965,2],[5966,2],[5967,2]]], +[5592,[6620.43,7933.62,0],[[5226,2]]], [5593,[6664.26,8132.72,7.62939e-006],[[5226,2],[5968,2]]], [5594,[6629.38,7752.86,0],[[5227,2]]], [5595,[7808.94,8525.48,0],[[5228,2],[5969,2],[5970,2]]], [5596,[7756.58,8347.59,0],[[5228,2],[5597,2]]], [5597,[7785.18,8318.46,0],[[5228,2],[5596,2]]], +[5598,[7941.81,8425.36,0],[[5228,2],[5971,2]]], [5599,[8513.1,8188.42,0],[[5230,2],[5972,2]]], [5600,[8655.62,8096.8,0],[[5230,2],[5973,2]]], [5601,[8717,8068.61,0],[[5231,2],[5974,2]]], [5602,[8685.2,7977.18,0],[[5231,2],[5975,2]]], [5603,[7793.89,8294.55,0],[[5233,2]]], +[5604,[8045.45,8551.74,1.52588e-005],[[5234,2],[5976,2]]], [5605,[8232.12,8416.37,0],[[5234,2],[5605,2]]], [5606,[8204.08,8452.61,0],[[5234,2],[5977,2]]], [5607,[8408.08,8297.13,3.8147e-006],[[5235,2],[5978,2],[5972,2],[5979,2]]], [5608,[5038.57,6485.4,0],[[5237,2],[5608,2],[5980,2]]], [5609,[5321.82,4985.75,0],[[5238,2]]], +[5610,[5076.26,5102.59,2.54313e-006],[[5239,2],[5981,2],[5982,2]]], [5611,[5887.02,7691.86,0],[[5241,2],[5967,2]]], [5612,[4342.53,8058.79,0],[[5242,2],[5983,2],[5984,2]]], [5613,[4137.71,8091.19,0],[[5242,2],[5985,2],[5625,2]]], [5614,[4981.25,7563.58,0],[[5243,2],[5986,2],[5987,2]]], [5615,[4916.92,7407.8,-7.62939e-006],[[5243,2]]], +[5616,[4673.96,5416.91,3.8147e-006],[[5244,2],[5988,2],[5989,2]]], [5617,[4491.12,5492.67,0],[[5244,2]]], [5618,[4459.81,5406.13,0],[[5244,2],[5990,2]]], [5619,[3717.11,5727.25,-6.35783e-007],[[5247,2],[5991,2],[5992,2]]], [5620,[3812.64,5378.44,-1.90735e-006],[[5248,2]]], [5621,[4343.7,4846.88,9.53674e-007],[[5249,2],[5993,2]]], +[5622,[4226,5026.35,0],[[5249,2],[5994,2]]], [5623,[4188.63,4889.81,0],[[5252,2],[5995,2]]], [5624,[3220.8,5071.39,0],[[5253,2],[5996,2]]], [5625,[4049.89,8122.41,7.62939e-006],[[5254,2],[5613,2],[5997,2],[5985,2]]], [5626,[3903.3,8097,0],[[5254,2]]], [5627,[4076.78,8671.48,0],[[5255,2],[5998,2]]], +[5628,[3076.87,9154.39,0],[[5257,2]]], [5629,[2320.66,10194.4,6.35783e-007],[[5258,2],[5999,2],[6000,2]]], [5630,[1743.36,10358.7,0],[[5261,2],[6001,2],[6002,2]]], [5631,[1884.92,10289.5,-9.53674e-007],[[5262,2],[6003,2]]], [5632,[1811.42,10276.7,0],[[5263,2],[5632,2]]], [5633,[1700.81,10091.4,0],[[5264,2],[6004,2]]], +[5634,[1528.05,9977.17,0],[[5264,2]]], [5635,[3153.85,9965.98,0],[[5265,2],[6005,2],[6006,2]]], [5636,[2784.6,9555.44,0],[[5269,2],[6007,2]]], [5637,[2809.05,9750.76,3.8147e-006],[[5269,2]]], [5638,[2955.36,9700,0],[[5269,2],[6008,2]]], [5639,[3148.67,10146.3,0],[[5270,2],[6009,2]]], +[5640,[2947.35,10136.5,0],[[5270,2],[5640,2],[6010,2]]], [5641,[3296.38,9195.18,0],[[5272,2],[5641,2],[6011,2]]], [5642,[3130.06,8961.19,0],[[5274,2]]], [5643,[2214.09,12278.1,0],[[5275,2],[6012,2],[6013,2],[5643,2]]], [5644,[2081.12,12568.9,0],[[5276,2],[6014,2],[5687,2],[6015,2]]], [5645,[2813.5,11991.1,6.35783e-007],[[5279,2],[5328,2],[6016,2]]], +[5646,[2895.51,12302.7,0],[[5280,2],[6017,2],[5648,2]]], [5647,[3153.45,12355.8,0],[[5281,2]]], [5648,[2943.45,12300.2,0],[[5281,2],[5646,2],[6017,2]]], [5649,[3389.06,12309.6,0],[[5282,2]]], [5650,[4619.91,17139.4,-2.54313e-006],[[5285,2],[6018,2],[5650,2]]], [5651,[4896.98,17266.3,-2.54313e-006],[[5286,2],[6019,2],[6020,2]]], +[5652,[5013.63,17275,-7.62939e-006],[[5286,2],[6021,2]]], [5653,[5009.17,17043.8,7.62939e-006],[[5287,2]]], [5654,[5117.34,17200.4,0],[[5287,2],[6022,2]]], [5655,[5234.21,16904.6,0],[[5288,2],[6023,2],[6024,2]]], [5656,[5073.31,16113,0],[[5289,2]]], [5657,[5618.89,16584.2,0],[[5290,2],[6025,2],[6026,2]]], +[5658,[5530.99,16452.4,0],[[5291,2],[6027,2],[5704,2]]], [5659,[5344.37,16465.2,0],[[5291,2],[6028,2]]], [5660,[5386.82,16888.7,7.62939e-006],[[5292,2],[6029,2]]], [5661,[3134.89,16596.8,0],[[5293,2],[6030,2],[6031,2],[5667,2]]], [5662,[2579.83,15975.9,0],[[5294,2],[5304,2],[6032,2]]], [5663,[2479.5,16092.4,7.62939e-006],[[5294,2],[6033,2]]], +[5664,[2506.99,16320.7,7.62939e-006],[[5295,2],[6034,2]]], [5665,[2611.8,16378.3,7.62939e-006],[[5296,2]]], [5666,[2997.74,16772.6,0],[[5297,2],[6035,2],[6036,2]]], [5667,[3038.71,16595.6,0],[[5297,2],[5661,2],[6031,2]]], [5668,[2882.73,16776.3,0],[[5297,2],[6037,2]]], [5669,[3914.55,16713.2,0],[[5299,2],[6038,2]]], +[5670,[4048.59,16888.9,0],[[5299,2]]], [5671,[4263.75,17082.8,0],[[5300,2],[5671,2],[6039,2],[6040,2]]], [5672,[2137.9,15192,0],[[5303,2],[6041,2],[6042,2]]], [5673,[1791.68,14682.3,3.8147e-006],[[5305,2],[6043,2]]], [5674,[1618.87,14494.9,0],[[5305,2],[5674,2]]], [5675,[1748.15,14330.2,3.8147e-006],[[5305,2],[6044,2]]], +[5676,[1716.13,13051.1,-6.35783e-007],[[5306,2],[5308,2],[5682,2]]], [5677,[1804.08,12992.8,0],[[5306,2],[5317,2],[6045,2],[5686,2],[6046,2]]], [5678,[1411.67,13167.3,0],[[5309,2],[6047,2],[5685,2],[6048,2],[5679,2]]], [5679,[1452.33,13114,2.38419e-007],[[5309,2],[5678,2],[5680,2],[6049,2],[6048,2]]], [5680,[1511.75,13074.9,-3.8147e-007],[[5311,2],[5313,2],[5679,2],[6050,2],[5682,2],[6049,2]]], [5681,[1630.81,13265.4,1.90735e-006],[[5312,2]]], +[5682,[1606.14,13036.6,-4.76837e-007],[[5313,2],[5676,2],[5680,2],[6050,2],[6051,2]]], [5683,[1602.68,13159.1,0],[[5313,2]]], [5684,[1423.93,13519.6,0],[[5314,2],[6052,2],[5684,2],[6053,2]]], [5685,[1402.93,13274.2,0],[[5315,2],[5678,2],[5685,2],[6047,2]]], [5686,[1835.12,12904.6,6.35783e-007],[[5317,2],[5677,2],[6054,2],[6055,2],[6045,2]]], [5687,[1978.45,12756.4,0],[[5317,2],[5644,2],[6015,2],[6056,2]]], +[5688,[2208.17,12968.9,3.8147e-006],[[5318,2]]], [5689,[7294.62,15017.2,0],[[5319,2]]], [5690,[7585.88,15103.7,0],[[5320,2],[6057,2]]], [5691,[7638.67,14900.2,0],[[5320,2],[5691,2]]], [5692,[6552.15,14964.9,0],[[5321,2],[6058,2]]], [5693,[6560.56,15122.9,2.54313e-006],[[5322,2],[5332,2],[5705,2],[6058,2]]], +[5694,[6965.41,15333.8,2.54313e-006],[[5324,2],[6059,2],[6060,2]]], [5695,[6831.67,15207,7.62939e-006],[[5324,2],[6061,2]]], [5696,[4015.14,11466,0],[[5325,2],[5698,2],[5696,2],[6062,2]]], [5697,[4242.68,11476.2,0],[[5325,2],[5356,2],[6063,2],[5697,2]]], [5698,[4011.58,11480.9,0],[[5696,2],[6427,2],[5698,2],[5325,2]]], [5699,[4212.55,11530.7,-7.62939e-006],[[6063,2],[5325,2]]], +[5700,[3154.36,11811.5,3.8147e-006],[[5326,2],[6064,2]]], [5701,[5218.28,15797.5,0],[[5329,2],[6065,2]]], [5702,[5519.29,16220.6,0],[[5330,2]]], [5703,[5868.79,16208.3,0],[[5331,2],[6066,2]]], [5704,[5613.21,16379.4,0],[[5331,2],[5658,2],[6027,2]]], [5705,[6576.61,15234.7,0],[[5332,2],[5693,2],[6061,2],[6067,2]]], +[5706,[6603.22,15904.3,-7.62939e-006],[[5334,2],[6068,2]]], [5707,[6081.66,15880.5,2.54313e-006],[[5335,2],[6066,2],[6069,2]]], [5708,[7399.22,12457.7,0],[[5336,2],[5342,2],[6070,2]]], [5709,[7332.31,12337.3,0],[[5336,2]]], [5710,[7084.05,12491.5,0],[[5338,2]]], [5711,[7080.27,12379.4,0],[[5338,2]]], +[5712,[5765.79,10924.8,0],[[4997,2],[6071,2]]], [5713,[6365.55,11021.6,0],[[5339,2],[6072,2],[5713,2]]], [5714,[6986.6,11395.1,0],[[5340,2],[5714,2],[6073,2]]], [5715,[6825.69,10912.5,0],[[5341,2],[6074,2]]], [5716,[7099.18,10895.7,0],[[5341,2],[6075,2]]], [5717,[7125.28,11084.2,0],[[5341,2],[6076,2]]], +[5718,[7686.34,12662.2,0],[[5342,2],[5718,2]]], [5719,[7641.1,12369.1,2.54313e-006],[[5342,2],[6077,2],[6078,2]]], [5720,[7722.84,13138.7,0],[[5343,2],[6079,2],[5727,2]]], [5721,[7812.4,13010.4,0],[[5343,2],[6080,2],[6081,2],[6079,2]]], [5722,[7960.59,14659.1,0],[[5344,2],[6082,2]]], [5723,[7814.87,14755.5,0],[[5346,2],[6083,2]]], +[5724,[7845.92,13974,2.54313e-006],[[5347,2],[6084,2],[6085,2]]], [5725,[7783.42,13721.1,0],[[5347,2],[6086,2],[6087,2]]], [5726,[7575.11,13990.7,0],[[5349,2],[6088,2]]], [5727,[7724.35,13297.3,-3.8147e-006],[[5350,2],[5720,2],[6079,2],[5727,2],[6089,2]]], [5728,[7867.56,13409.9,0],[[5350,2],[6090,2]]], [5729,[4977.78,10577.7,0],[[5351,2],[5358,2],[5737,2]]], +[5730,[5085.24,10398.3,7.62939e-006],[[5351,2],[6091,2]]], [5731,[5527.49,10498.1,-7.62939e-006],[[5352,2],[6092,2]]], [5732,[5375.88,10376.3,7.62939e-006],[[5352,2],[6093,2]]], [5733,[4140,10781.1,0],[[5353,2]]], [5734,[4021.92,10594.6,0],[[5353,2],[6094,2]]], [5735,[4286.17,10394.7,0],[[5354,2],[6095,2]]], +[5736,[4120.83,11203.4,-2.54313e-006],[[5357,2],[6096,2],[6097,2]]], [5737,[4916.63,10608.2,-7.62939e-006],[[5358,2],[5729,2],[6098,2]]], [5738,[4744.71,10365.1,0],[[5359,2],[6099,2]]], [5739,[12859.1,9972.37,0],[[5360,2]]], [5740,[12690.7,10050.3,0],[[5360,2],[6100,2],[5740,2],[6101,2]]], [5741,[13213.8,10192.9,0],[[5363,2]]], +[5742,[13182,10229.8,0],[[5363,2]]], [5743,[13214.9,10043.3,-1.90735e-006],[[5364,2],[6102,2],[6103,2],[6104,2]]], [5744,[13060.6,10590.8,0],[[5365,2]]], [5745,[13200.1,10517.1,0],[[5366,2]]], [5746,[13252.4,12213.8,-9.53674e-007],[[5367,2],[5768,2],[6105,2],[6106,2]]], [5747,[13074.1,12247,0],[[5367,2],[5747,2],[6107,2]]], +[5748,[13631.4,11840.7,-7.62939e-006],[[5368,2],[6108,2]]], [5749,[13473.5,11758.6,0],[[5368,2]]], [5750,[13967.1,11320,0],[[5370,2],[6109,2]]], [5751,[13790.7,11671.6,0],[[5372,2],[6110,2]]], [5752,[13660.6,11505.5,7.62939e-006],[[5372,2]]], [5753,[13769.2,10988.1,-7.62939e-006],[[5373,2],[5755,2]]], +[5754,[14032.4,11093.6,-2.54313e-006],[[5373,2],[6111,2],[6112,2]]], [5755,[13724.4,10851.8,-1.90735e-006],[[5374,2],[5753,2],[6113,2],[5755,2]]], [5756,[13559.3,10442.9,2.54313e-006],[[5375,2],[6114,2],[6115,2]]], [5757,[13074.2,10842.8,0],[[5376,2]]], [5758,[13175.6,10898.1,0],[[5376,2]]], [5759,[12448.5,10159.1,0],[[5378,2],[6101,2]]], +[5760,[12297,10242.8,0],[[5378,2]]], [5761,[12008,9809.62,1.90735e-006],[[5380,2],[6116,2],[6117,2],[6118,2]]], [5762,[11837.9,9210.05,0],[[5383,2],[6119,2],[6120,2]]], [5763,[12018.2,9430.38,0],[[5384,2],[6121,2]]], [5764,[11510.1,9144.37,-1.90735e-006],[[5385,2],[6122,2],[6123,2],[6124,2]]], [5765,[11708.4,9219.89,0],[[5385,2]]], +[5766,[10762.1,9446.32,0],[[5386,2],[6125,2],[6126,2],[5767,2]]], [5767,[10885.4,9406.16,2.54313e-006],[[5386,2],[5766,2],[6126,2],[6127,2]]], [5768,[13263.9,12381.9,1.27157e-006],[[5387,2],[5746,2],[6128,2]]], [5769,[13182.2,12390.7,0],[[5387,2]]], [5770,[13435.8,12300.8,3.8147e-006],[[5388,2]]], [5771,[13589.6,12213.2,1.27157e-006],[[5388,2],[6129,2],[6130,2]]], +[5772,[13664.5,12382.5,1.27157e-006],[[5389,2],[6132,2],[6133,2],[6130,2]]], [5773,[12712.7,12832,0],[[5391,2]]], [5774,[9746.24,14178.9,-1.90735e-006],[[5392,2],[6134,2],[6135,2],[6136,2]]], [5775,[9983.89,13673.9,-2.54313e-006],[[5393,2],[5775,2],[6137,2]]], [5776,[11256.2,14584,-7.62939e-006],[[5395,2]]], [5777,[11509.3,14723.6,0],[[5396,2],[5398,2],[6138,2],[5779,2],[5777,2],[6139,2],[5781,2],[6140,2]]], +[5778,[11385.4,14815.7,-9.53674e-007],[[5396,2],[5397,2],[6141,2],[6142,2]]], [5779,[11467.4,14795.8,0],[[5396,2],[5777,2],[6143,2],[6140,2],[6142,2],[6138,2]]], [5780,[11315.6,14690.6,0],[[5397,2]]], [5781,[11506.5,14600.6,0],[[5398,2],[5777,2],[6144,2],[6145,2],[6139,2]]], [5782,[10987,14858.2,0],[[5399,2],[6146,2]]], [5783,[10893.9,14685.7,0],[[5399,2]]], +[5784,[10125.6,14540.1,0],[[5403,2],[6147,2]]], [5785,[10142.6,14761.5,0],[[5403,2],[6148,2],[6149,2],[5785,2]]], [5786,[10445.1,14633.2,0],[[5404,2]]], [5787,[10496.5,14734.7,-3.17891e-007],[[5404,2],[5787,2],[6150,2]]], [5788,[11704.5,14374.3,6.35783e-007],[[5406,2],[6151,2],[6152,2],[5788,2]]], [5789,[11792.6,14341,-3.17891e-007],[[5406,2],[5407,2],[5790,2],[6153,2]]], +[5790,[11831.4,14329,0],[[5407,2],[5789,2],[6154,2],[5790,2]]], [5791,[11909.2,14376.9,-2.38419e-007],[[5407,2],[6155,2]]], [5792,[10383.4,9540.25,0],[[5408,2],[6156,2]]], [5793,[10077.4,9314.46,1.52588e-006],[[5409,2],[6157,2],[6158,2],[6156,2],[6159,2],[6160,2]]], [5794,[11134.2,9638.56,0],[[5410,2]]], [5795,[10575.7,9498.05,0],[[5411,2],[6156,2]]], +[5796,[8780.25,11436.5,0],[[5412,2],[6161,2]]], [5797,[8170.93,11762.7,0],[[5413,2],[6162,2]]], [5798,[8177.56,12232.4,0],[[5414,2],[6163,2]]], [5799,[8570.05,12329.8,0],[[5415,2]]], [5800,[8990.27,12543.6,0],[[5417,2],[5800,2]]], [5801,[8662.94,13373.5,-2.54313e-006],[[5418,2],[6164,2],[6165,2]]], +[5802,[8773.83,13340.3,1.90735e-006],[[5418,2],[6165,2],[5802,2]]], [5803,[8665.07,13180.9,0],[[5419,2],[6166,2],[6167,2],[6165,2],[5804,2]]], [5804,[8813.92,13304.7,0],[[5419,2],[5803,2]]], [5805,[8975.43,12990.5,7.62939e-006],[[5420,2],[6168,2]]], [5806,[8956.64,13054.2,0],[[5421,2]]], [5807,[9167.04,14006.9,0],[[5424,2],[6169,2]]], +[5808,[9267.12,13920.8,0],[[5424,2]]], [5809,[8737.14,12715.6,2.54313e-006],[[5425,2],[6170,2],[5809,2],[6171,2]]], [5810,[8644.44,12523.1,0],[[5425,2],[6172,2]]], [5811,[8696.44,12544.4,0],[[5426,2],[6173,2]]], [5812,[8097.16,11026.1,2.54313e-006],[[5427,2],[6174,2],[6175,2]]], [5813,[7961.14,10656.3,1.90735e-006],[[5428,2],[6176,2],[5813,2],[6177,2]]], +[5814,[8020.35,10763.2,7.62939e-006],[[5428,2]]], [5815,[8514.22,11317.9,0],[[5429,2],[6178,2],[6179,2]]], [5816,[8721.98,9917.07,0],[[5430,2],[6180,2]]], [5817,[8664.44,10104.4,0],[[5431,2],[6181,2]]], [5818,[8644.79,10502,-7.62939e-006],[[5432,2]]], [5819,[8606.95,10164.8,-7.62939e-006],[[5433,2],[6181,2]]], +[5820,[8510.86,10455.2,-2.54313e-006],[[5434,2],[6182,2],[6183,2]]], [5821,[9270.77,9162.35,-7.62939e-006],[[5435,2],[6184,2]]], [5822,[9236.54,9638.88,0],[[5436,2],[5825,2]]], [5823,[9756.2,9441.76,-7.62939e-006],[[5437,2],[6185,2]]], [5824,[9588.4,9301.62,0],[[5437,2],[6186,2]]], [5825,[9193.13,9680.77,0],[[5438,2],[5822,2]]], +[5826,[9119.28,9874.99,0],[[5438,2],[6187,2]]], [5827,[8979.84,9946.24,-7.62939e-006],[[5439,2],[6188,2]]], [5828,[14668.9,8322.67,0],[[5440,2],[6189,2]]], [5829,[14797.9,8209.77,0],[[5440,2]]], [5830,[14651.1,7854.69,2.54313e-006],[[5442,2],[5519,2],[5893,2],[6190,2]]], [5831,[14891.4,9182.17,0],[[5443,2],[6191,2]]], +[5832,[15059.9,8986.35,2.54313e-006],[[5443,2],[6192,2],[5832,2]]], [5833,[15247.7,8913.68,0],[[5444,2],[6193,2],[5833,2],[6194,2]]], [5834,[15228.9,9788.8,-1.27157e-006],[[5446,2],[6195,2],[6196,2]]], [5835,[15969.6,9767.48,0],[[5447,2],[6197,2],[6198,2]]], [5836,[16273.3,9975.17,0],[[5448,2],[6199,2],[5839,2],[6200,2]]], [5837,[16145.8,9979.03,0],[[5448,2],[6201,2],[6202,2],[6198,2]]], +[5838,[16625.8,10087.3,0],[[5450,2],[6203,2]]], [5839,[16440.5,9960.77,0],[[5450,2],[5836,2],[6199,2]]], [5840,[16867.7,10265.3,-1.90735e-006],[[5451,2],[6204,2]]], [5841,[17295.3,10016.3,1.27157e-006],[[5452,2],[6205,2],[6206,2]]], [5842,[17435.4,9947.62,6.35783e-007],[[5452,2],[5459,2],[6207,2]]], [5843,[17769.8,10027.4,2.38419e-007],[[5456,2],[5457,2],[6208,2],[6209,2]]], +[5844,[17857.7,10048.4,0],[[5457,2],[5844,2],[5845,2],[6210,2]]], [5845,[17914.6,10017,2.38419e-007],[[5457,2],[5844,2],[6211,2],[6212,2],[6210,2]]], [5846,[17739.3,10005.8,0],[[5461,2]]], [5847,[17675.1,10034.9,0],[[5461,2],[5847,2],[6213,2]]], [5848,[17956.9,9700.18,0],[[5462,2]]], [5849,[17988.7,9643.83,0],[[5462,2],[5468,2],[5478,2],[5859,2]]], +[5850,[18005.1,9881.17,-4.76837e-007],[[5463,2],[5467,2],[6214,2]]], [5851,[18075.4,9662.25,-9.53674e-007],[[5464,2],[5478,2],[5852,2]]], [5852,[18116.3,9713.42,-2.38419e-007],[[5465,2],[5476,2],[5851,2],[6215,2],[5852,2],[6216,2],[6217,2]]], [5853,[17962.4,9924.25,-4.76837e-007],[[5466,2]]], [5854,[17997.4,9923.82,0],[[5467,2],[6218,2],[6211,2]]], [5855,[17988.1,9624.13,0],[[5468,2],[5475,2]]], +[5856,[18197.4,9524.86,-9.53674e-007],[[5471,2],[6219,2],[5856,2]]], [5857,[18262.9,9609.82,-1.19209e-007],[[5472,2],[5474,2],[5476,2],[6220,2],[6221,2],[5858,2]]], [5858,[18305.8,9592.42,0],[[5474,2],[5857,2],[6220,2],[6221,2]]], [5859,[18039.4,9640.12,0],[[5478,2],[5849,2]]], [5860,[16656.3,2646.53,0],[[5479,2],[6222,2],[5869,2]]], [5861,[16527.7,2486,0],[[5480,2],[6223,2],[6224,2],[6225,2]]], +[5862,[16217.3,2246.11,-3.17891e-007],[[5481,2],[6226,2],[6227,2]]], [5863,[15786.4,2404.64,0],[[5482,2],[5483,2],[5864,2]]], [5864,[15768.9,2416.49,0],[[5483,2],[5863,2],[6228,2]]], [5865,[16799.5,3771.82,0],[[5491,2]]], [5866,[16693.7,3676.53,0],[[5491,2],[6229,2]]], [5867,[16614.3,2822.68,1.58946e-007],[[5492,2],[5869,2],[6230,2]]], +[5868,[16383.6,3078.84,0],[[5492,2],[5868,2],[6231,2]]], [5869,[16697.5,2750.26,-5.96046e-008],[[5493,2],[5860,2],[5867,2],[6232,2],[6222,2]]], [5870,[16791.8,2977.56,0],[[5494,2],[6233,2]]], [5871,[12784.8,4198.08,0],[[5495,2],[5553,2],[6234,2]]], [5872,[13162.6,4024.12,0],[[5496,2]]], [5873,[14197.8,3099.09,0],[[5500,2],[6235,2]]], +[5874,[13958.3,2755.61,0],[[5502,2],[6236,2]]], [5875,[14342.8,2723.06,0],[[5504,2],[6237,2]]], [5876,[14524.2,2882.85,0],[[5504,2],[6238,2]]], [5877,[14728.5,2463.9,0],[[5505,2],[6239,2],[6240,2],[6241,2]]], [5878,[13953.1,6473.04,0],[[5506,2],[6242,2]]], [5879,[13939.9,6368.03,0],[[5506,2]]], +[5880,[14059.6,6424.37,0],[[5507,2]]], [5881,[13561.8,6287.22,3.8147e-006],[[5510,2],[5881,2],[6243,2],[5888,2]]], [5882,[13028.8,5598.62,0],[[5511,2],[6244,2]]], [5883,[12552,4910.8,-2.54313e-006],[[5512,2],[6245,2],[6246,2]]], [5884,[12381.7,5069.01,0],[[5513,2],[6247,2],[6245,2]]], [5885,[12608.1,5598.65,0],[[5514,2],[6248,2],[6249,2]]], +[5886,[12262.4,5442.46,0],[[5515,2],[6250,2],[6251,2],[6252,2]]], [5887,[13124,4923.89,0],[[5516,2]]], [5888,[13408.8,6197.09,7.62939e-006],[[5517,2],[5881,2]]], [5889,[13507.4,6147.82,7.62939e-006],[[5517,2],[6253,2]]], [5890,[13092.2,5788.11,0],[[5518,2]]], [5891,[13185.9,5630.64,0],[[5518,2],[6254,2]]], +[5892,[14511.9,7792.8,0],[[5519,2]]], [5893,[14632.7,7804.54,-1.90735e-006],[[5519,2],[5830,2],[5893,2],[6255,2]]], [5894,[14209.4,7672.59,1.52588e-006],[[5520,2],[5894,2],[6256,2],[6257,2],[6258,2]]], [5895,[14123.3,7121.25,7.62939e-006],[[5521,2]]], [5896,[13717.4,7030.83,2.54313e-006],[[5522,2],[6259,2],[6260,2]]], [5897,[9395.79,5071.13,0],[[5524,2],[6261,2],[6262,2]]], +[5898,[9480.28,5001.68,0],[[5524,2]]], [5899,[9539.9,5270.5,0],[[5526,2],[6263,2]]], [5900,[9872.4,5666.51,-1.52588e-006],[[5527,2],[6264,2],[6265,2],[5900,2],[5935,2],[6266,2]]], [5901,[9739.12,5604.01,0],[[5527,2],[5528,2],[6267,2],[5936,2]]], [5902,[8823.5,4256.72,1.27157e-006],[[5529,2],[6268,2],[6269,2]]], [5903,[9049.71,4927.62,3.8147e-006],[[5530,2]]], +[5904,[11698.6,5828.25,0],[[5532,2],[6270,2]]], [5905,[11963.2,5487.37,2.54313e-006],[[5533,2],[6271,2],[6272,2]]], [5906,[11355.9,5649.63,0],[[5534,2],[6273,2]]], [5907,[11141.7,5506.4,0],[[5534,2],[5535,2],[5909,2]]], [5908,[11272,5391.77,0],[[5534,2],[6274,2],[6275,2]]], [5909,[11110.9,5511.49,0],[[5535,2],[5907,2],[6276,2]]], +[5910,[10708.9,5433.16,0],[[5536,2]]], [5911,[10643,5529.69,0],[[5536,2],[6277,2],[6278,2]]], [5912,[14137.4,2455.06,0],[[5538,2],[5919,2],[6279,2],[6280,2]]], [5913,[13956.8,2224.3,0],[[5539,2],[6281,2],[6282,2]]], [5914,[12663.2,2309.87,-6.35783e-007],[[2409,2]]], [5915,[13263.3,1475.03,0],[[5540,2],[6283,2]]], +[5916,[13175.5,1705.08,0],[[5540,2],[6284,2]]], [5917,[12952.1,1080.59,9.53674e-007],[[5541,2],[5547,2],[6285,2]]], [5918,[13066.5,1271.58,0],[[5541,2]]], [5919,[14055.6,2584.5,6.35783e-007],[[5542,2],[5912,2],[6236,2]]], [5920,[12147.4,962.153,0],[[5545,2]]], [5921,[12943.5,1066.31,0],[[5547,2],[6286,2]]], +[5922,[12481.9,898.485,-7.94729e-008],[[5548,2],[6287,2],[6288,2]]], [5923,[12419.2,925.453,0],[[5549,2],[6289,2]]], [5924,[12730.6,4190.87,0],[[5553,2],[6290,2]]], [5925,[12683.5,4044.15,0],[[5553,2],[6291,2]]], [5926,[12184.7,4647.22,1.27157e-006],[[5555,2],[6292,2],[6293,2]]], [5927,[7882.53,3706.8,-3.8147e-006],[[5557,2],[6294,2],[5952,2]]], +[5928,[8192.43,3182.73,0],[[5558,2]]], [5929,[8580.16,3975.96,0],[[5559,2],[6268,2],[6295,2]]], [5930,[8628.21,3847.67,-1.27157e-006],[[5559,2],[6296,2],[6297,2]]], [5931,[9590.43,5894.64,2.54313e-006],[[5560,2],[5932,2],[6298,2]]], [5932,[9606.28,5965.6,0],[[5560,2],[5931,2],[6299,2]]], [5933,[9654.43,5737.57,0],[[5561,2]]], +[5934,[9628.04,5656.96,3.8147e-006],[[5561,2],[5562,2],[5563,2],[5936,2],[6300,2]]], [5935,[9749.32,5720.09,0],[[5562,2],[5900,2],[5935,2],[6301,2]]], [5936,[9693.68,5641.15,7.62939e-006],[[5562,2],[5901,2],[5934,2],[6267,2]]], [5937,[9541.56,5294.63,0],[[5564,2]]], [5938,[9314.11,5336.72,0],[[5565,2]]], [5939,[9376.68,5319.69,2.54313e-006],[[5565,2],[5939,2],[6302,2],[6263,2]]], +[5940,[9183.9,5250.69,7.62939e-006],[[5566,2],[5578,2]]], [5941,[9150.31,5377.59,0],[[5566,2],[5567,2],[6303,2]]], [5942,[9058.94,5513.32,1.90735e-006],[[5568,2],[6303,2],[5942,2],[6304,2]]], [5943,[9665.29,6703.5,0],[[5569,2],[6305,2]]], [5944,[9217.42,6666.58,7.62939e-006],[[5570,2],[6306,2]]], [5945,[9356.79,6749.79,0],[[5570,2],[6307,2],[6308,2]]], +[5946,[9244.85,6894.43,0],[[5572,2],[6309,2],[6310,2],[6307,2]]], [5947,[8765.15,6656.6,0],[[5573,2]]], [5948,[8221.09,4261.73,3.8147e-006],[[5576,2]]], [5949,[8352.72,4089.37,0],[[5576,2],[6311,2],[6295,2]]], [5950,[9192.99,5110.65,0],[[5578,2],[6262,2]]], [5951,[9165.02,4875.16,0],[[5579,2]]], +[5952,[7823.96,3737.6,0],[[5580,2],[6312,2],[5927,2],[5952,2],[6313,2]]], [5953,[7334.98,3567.31,0],[[5581,2]]], [5954,[7310.58,3495.47,0],[[5582,2],[6314,2]]], [5955,[5293.91,4324.09,6.35783e-007],[[5584,2],[6315,2],[6316,2]]], [5956,[5534.92,4146.4,0],[[5585,2]]], [5957,[5671.44,4438.58,-6.35783e-007],[[5220,2],[5958,2],[5957,2]]], +[5958,[5708.61,4420.48,-1.90735e-006],[[5957,2]]], [5959,[7083.54,8387.31,7.62939e-006],[[5588,2],[6317,2]]], [5960,[7246.8,8185.38,0],[[5588,2],[6318,2],[6319,2]]], [5961,[6904.12,8155.58,7.62939e-006],[[5589,2]]], [5962,[6686.98,8154.79,0],[[5590,2]]], [5963,[6787.96,8257.19,0],[[5590,2],[5963,2]]], +[5964,[5976.14,8110.59,0],[[5591,2],[6320,2]]], [5965,[5840.96,7980.44,-1.90735e-006],[[5591,2],[6321,2],[6322,2],[6323,2]]], [5966,[5830.41,7852.65,0],[[5591,2],[6324,2]]], [5967,[5909.23,7774.81,0],[[5591,2],[5611,2]]], [5968,[6648.38,8221.48,0],[[5593,2],[6325,2]]], [5969,[7845.08,8531.16,0],[[5595,2],[6326,2]]], +[5970,[7815.32,8678.85,0],[[5595,2],[6327,2]]], [5971,[7986.24,8492.47,0],[[5598,2],[5976,2]]], [5972,[8516.62,8247.53,-5.08626e-006],[[5599,2],[5607,2],[6328,2]]], [5973,[8753.67,8207.48,0],[[5600,2],[6329,2]]], [5974,[8787.02,8148.91,0],[[5601,2],[6330,2]]], [5975,[8774.08,8067.36,-7.62939e-006],[[5602,2],[6331,2]]], +[5976,[8040.1,8588.04,3.8147e-006],[[5604,2],[5971,2],[6332,2],[6333,2]]], [5977,[8338.15,8523.49,0],[[5606,2],[6334,2]]], [5978,[8492,8439.59,0],[[5607,2],[6335,2]]], [5979,[8518.29,8339.87,1.52588e-005],[[5607,2],[6336,2]]], [5980,[5058.13,6550.24,-2.54313e-006],[[5608,2],[5980,2],[6337,2]]], [5981,[5038.29,5107.85,0],[[5610,2]]], +[5982,[4952.57,5003.23,-1.27157e-006],[[5610,2],[6338,2],[5982,2],[6339,2]]], [5983,[4538.43,8059.87,0],[[5612,2],[6340,2]]], [5984,[4342.46,8152.19,0],[[5612,2],[6341,2]]], [5985,[4106.35,8118.17,0],[[5613,2],[5625,2],[6342,2]]], [5986,[4976.97,7590.73,-7.62939e-006],[[5614,2]]], [5987,[5081.89,7538.24,-1.90735e-006],[[5614,2],[6343,2],[5987,2],[6344,2],[6345,2]]], +[5988,[4791.36,5373.23,3.8147e-006],[[5616,2],[5989,2]]], [5989,[4791.29,5387.73,0],[[5988,2],[5616,2]]], [5990,[4430.73,5395.17,-6.35783e-007],[[5618,2],[6346,2],[6347,2]]], [5991,[3671.94,5755.08,1.90735e-006],[[5619,2]]], [5992,[3634.18,5732.24,0],[[5619,2],[6348,2]]], [5993,[4426.71,4793.17,0],[[5621,2],[6349,2],[6350,2]]], +[5994,[4283.11,5139.61,1.90735e-006],[[5622,2],[6351,2]]], [5995,[4217.45,4853.11,0],[[5623,2],[6352,2],[5995,2],[6353,2],[6349,2],[6354,2]]], [5996,[3276.68,5056.88,0],[[5624,2],[6355,2],[6356,2]]], [5997,[4108.22,8104.17,0],[[5625,2],[5997,2]]], [5998,[4191.08,8756.39,0],[[5627,2],[6357,2],[6358,2]]], [5999,[2416.77,10320.5,0],[[5629,2],[6359,2]]], +[6000,[2171.92,10281,1.90735e-006],[[5629,2],[6360,2]]], [6001,[1789.8,10449.6,0],[[5630,2],[6361,2]]], [6002,[1698.7,10280.7,9.53674e-007],[[5630,2],[6004,2]]], [6003,[1843.74,10350.2,-4.76837e-007],[[5631,2],[6361,2]]], [6004,[1628.23,10155.3,0],[[5633,2],[6002,2],[6362,2]]], [6005,[3276.86,9966.64,1.27157e-006],[[5635,2],[6363,2],[6006,2],[6009,2],[6364,2]]], +[6006,[3157.43,10022.2,-2.54313e-006],[[5635,2],[6005,2],[6006,2],[6363,2]]], [6007,[2787.06,9382.48,-3.8147e-006],[[5636,2],[6365,2]]], [6008,[3110.55,9694.79,-3.8147e-006],[[5638,2],[6366,2]]], [6009,[3268.32,10155.1,-7.62939e-007],[[5639,2],[6005,2],[6367,2],[6368,2],[6363,2],[6369,2]]], [6010,[2902.51,10159.5,0],[[5640,2]]], [6011,[3258.6,9286.16,0],[[5641,2],[6370,2]]], +[6012,[2059.93,12182.6,3.8147e-007],[[5643,2],[6012,2],[6371,2],[6372,2],[6373,2]]], [6013,[2241,12291,0],[[5643,2],[6013,2]]], [6014,[1911.95,12557.8,-6.35783e-007],[[5644,2],[6374,2],[6375,2]]], [6015,[2012.74,12698.8,-6.35783e-007],[[5687,2],[5644,2],[6421,2],[6374,2]]], [6016,[2811.23,11941.6,0],[[5645,2],[6376,2],[6377,2]]], [6017,[2909.9,12297.4,0],[[5646,2],[5648,2]]], +[6018,[4489.06,17238.3,0],[[5650,2],[6378,2]]], [6019,[4896.82,17408.5,-2.54313e-006],[[5651,2],[6379,2],[6380,2]]], [6020,[4830.16,17233.6,0],[[5651,2]]], [6021,[5140.46,17384.4,7.62939e-006],[[5652,2],[6381,2]]], [6022,[5196.86,17296,0],[[5654,2],[6382,2]]], [6023,[5210.26,16993.8,-2.54313e-006],[[5655,2],[6023,2],[6383,2]]], +[6024,[5416.36,16978.3,7.62939e-006],[[5655,2],[6384,2]]], [6025,[5680.89,16722.9,-7.62939e-006],[[5657,2],[6385,2]]], [6026,[5819.15,16517.4,0],[[5657,2],[6386,2]]], [6027,[5579.45,16405.5,-7.62939e-006],[[5658,2],[5704,2],[6387,2]]], [6028,[5326.36,16396.9,0],[[5659,2],[6388,2]]], [6029,[5445.57,16887.5,0],[[5660,2],[6389,2]]], +[6030,[3256.83,16634.8,-2.54313e-006],[[5661,2],[6390,2],[6391,2]]], [6031,[3055.7,16587.5,0],[[5661,2],[5667,2]]], [6032,[2579.07,15848.7,7.62939e-006],[[5662,2],[6392,2]]], [6033,[2429.25,16093.6,-5.08626e-006],[[5663,2],[6393,2],[6394,2]]], [6034,[2472.01,16369.2,0],[[5664,2],[6395,2],[6396,2]]], [6035,[2938.36,16838.9,0],[[5666,2],[6397,2]]], +[6036,[3066.77,16915.3,0],[[5666,2],[6398,2]]], [6037,[2872.81,16811.8,-7.62939e-006],[[5668,2]]], [6038,[3883.85,16715,2.54313e-006],[[5669,2],[6399,2],[6400,2],[6038,2]]], [6039,[4304.26,17195.3,-2.54313e-006],[[5671,2],[6401,2],[6402,2],[6039,2]]], [6040,[4267.51,17165.9,0],[[6402,2],[5671,2]]], [6041,[2012.17,15066.7,0],[[5672,2],[6403,2],[6041,2],[6404,2]]], +[6042,[2167.36,15194.5,0],[[5672,2]]], [6043,[1795.42,14704.7,0],[[5673,2],[6405,2],[6406,2]]], [6044,[1679.85,14194.8,0],[[5675,2],[6407,2]]], [6045,[1718.04,12925.3,-9.53674e-007],[[5677,2],[5686,2],[6045,2],[6051,2]]], [6046,[1917.38,13049.9,0],[[5677,2]]], [6047,[1380.08,13186.7,4.76837e-007],[[5678,2],[5685,2],[6408,2],[6048,2]]], +[6048,[1381.61,13094.5,-3.97364e-008],[[5678,2],[5679,2],[6047,2],[6409,2],[6410,2],[6411,2],[6408,2]]], [6049,[1492.41,13024.4,0],[[5679,2],[5680,2],[6049,2],[6412,2],[6409,2],[6413,2],[6050,2]]], [6050,[1555.77,13025,0],[[5680,2],[5682,2],[6049,2],[6051,2]]], [6051,[1604.29,12974.2,0],[[5682,2],[6045,2],[6050,2],[6414,2],[6413,2],[6415,2]]], [6052,[1434.89,13730,-1.90735e-006],[[5684,2],[6416,2]]], [6053,[1398.9,13532.6,-6.35783e-007],[[5684,2],[6417,2],[6053,2],[6418,2]]], +[6054,[1881.61,12953.6,0],[[5686,2]]], [6055,[1798.71,12867.3,0],[[5686,2],[6419,2],[6420,2]]], [6056,[1895.17,12728.9,9.53674e-007],[[5687,2],[6421,2],[6422,2],[6420,2],[6423,2],[6374,2]]], [6057,[7658.45,15211.2,0],[[5690,2],[6424,2]]], [6058,[6456.14,15044.5,7.62939e-006],[[5692,2],[5693,2]]], [6059,[7078.5,15391.6,7.62939e-006],[[5694,2],[6425,2]]], +[6060,[6940.32,15498.3,0],[[5694,2],[6426,2]]], [6061,[6712.51,15200.1,0],[[5695,2],[5705,2]]], [6062,[3995.09,11422.4,2.54313e-006],[[5696,2],[6062,2],[6428,2]]], [6063,[4234.44,11521.2,-7.62939e-006],[[5697,2],[5699,2],[6063,2]]], [6064,[3028.1,11801.2,0],[[5700,2],[6429,2]]], [6065,[5203.13,15693.4,0],[[5701,2]]], +[6066,[5943.19,16084,0],[[5703,2],[5707,2],[6430,2],[6431,2]]], [6067,[6628.06,15392.1,0],[[5705,2],[6432,2]]], [6068,[6635.28,15938.9,-3.8147e-006],[[5706,2],[6433,2],[6434,2],[6435,2]]], [6069,[6029.07,15807,-5.08626e-006],[[5707,2],[6436,2],[6437,2]]], [6070,[7364.48,12506.7,0],[[5708,2]]], [6071,[5792.32,10867,2.54313e-006],[[5712,2],[6071,2],[6438,2]]], +[6072,[6396.9,10859.1,0],[[5713,2],[6072,2],[6439,2]]], [6073,[6988.51,11424,0],[[5714,2],[6073,2],[6440,2]]], [6074,[6780.79,10796.9,0],[[5715,2],[6441,2]]], [6075,[7138.83,10863.9,2.54313e-006],[[5716,2],[6442,2],[6443,2]]], [6076,[7255,11162.8,0],[[5717,2],[6444,2]]], [6077,[7683.27,12391.6,0],[[5719,2]]], +[6078,[7680.3,12254.6,2.54313e-006],[[5719,2],[6445,2],[6446,2]]], [6079,[7748.59,13201,0],[[5720,2],[5721,2],[5727,2],[6447,2]]], [6080,[7832.57,12841.3,0],[[5721,2],[6448,2]]], [6081,[7883.39,13021.7,0],[[5721,2],[6449,2],[6447,2]]], [6082,[8102.71,14741.7,0],[[5722,2],[6450,2]]], [6083,[7883.61,14852.2,0],[[5723,2],[6451,2]]], +[6084,[7916.83,14047.1,2.54313e-006],[[5724,2],[6452,2],[6453,2]]], [6085,[7771.28,14052.5,0],[[5724,2],[6085,2]]], [6086,[7783.71,13657,0],[[5725,2],[6454,2],[6455,2]]], [6087,[7836.35,13727.7,-7.62939e-006],[[5725,2]]], [6088,[7597.54,14107.7,0],[[5726,2],[6088,2]]], [6089,[7894.95,13289.1,0],[[5727,2],[6456,2]]], +[6090,[7919.61,13410.2,0],[[5728,2],[6457,2],[6458,2]]], [6091,[5048.44,10252.5,0],[[5730,2],[6459,2]]], [6092,[5674.18,10488.5,0],[[5731,2],[6460,2],[6461,2]]], [6093,[5400.32,10275.1,-2.54313e-006],[[5732,2],[6462,2],[6463,2]]], [6094,[3999.19,10577.3,-1.27157e-006],[[5734,2],[6464,2],[6465,2]]], [6095,[4279.18,10253.4,0],[[5735,2],[6466,2]]], +[6096,[4122.14,11140.4,7.62939e-006],[[5736,2]]], [6097,[4016.83,11170.1,0],[[5736,2],[6467,2]]], [6098,[4912.1,10759,0],[[5737,2],[6468,2]]], [6099,[4732.57,10241.6,-2.54313e-006],[[5738,2],[6469,2],[6470,2]]], [6100,[12608.6,10018.4,0],[[5740,2],[6471,2],[6472,2]]], [6101,[12540.1,10141.1,0],[[5740,2],[5759,2]]], +[6102,[13298.2,10050,0],[[5743,2],[6473,2]]], [6103,[13164.6,10036,7.62939e-006],[[5743,2]]], [6104,[13249.4,9903.18,7.62939e-006],[[5743,2],[6474,2]]], [6105,[13305,12137.3,0],[[5746,2]]], [6106,[13323.5,12209.8,0],[[5746,2]]], [6107,[13023.8,12241.1,-3.8147e-006],[[5747,2]]], +[6108,[13695,11842.6,0],[[5748,2],[6475,2],[6110,2]]], [6109,[14049.1,11322.9,-7.62939e-006],[[5750,2],[6476,2],[6111,2]]], [6110,[13787.7,11743,-2.54313e-006],[[5751,2],[6108,2],[6475,2],[6110,2]]], [6111,[14097.2,11274.6,7.62939e-006],[[5754,2],[6109,2],[6476,2]]], [6112,[14178.6,11024.2,7.62939e-006],[[5754,2],[6477,2]]], [6113,[13821.1,10756.7,-7.62939e-006],[[5755,2],[6478,2]]], +[6114,[13624,10435.4,0],[[5756,2],[6479,2],[6480,2]]], [6115,[13550.4,10389.5,0],[[5756,2]]], [6116,[12047.8,9955.52,-2.54313e-006],[[5761,2],[6116,2],[6481,2]]], [6117,[12001.8,9647.75,0],[[5761,2],[6482,2]]], [6118,[12137.9,9852.89,0],[[5761,2],[6483,2],[6484,2],[6485,2]]], [6119,[11889.5,9089.07,-1.90735e-006],[[5762,2],[6486,2],[6119,2],[6487,2]]], +[6120,[11917,9204.63,0],[[5762,2]]], [6121,[12126.2,9431.9,-1.90735e-006],[[5763,2],[6488,2],[6489,2],[6485,2],[6490,2]]], [6122,[11440.8,8944.23,0],[[5764,2],[6491,2]]], [6123,[11594.4,9127.16,0],[[5764,2],[6492,2],[6493,2]]], [6124,[11322.4,9158.7,0],[[5764,2],[6494,2]]], [6125,[10636.1,9442.13,0],[[5766,2],[6156,2],[6495,2]]], +[6126,[10878.6,9351.53,0],[[5766,2],[5767,2],[6496,2],[6497,2]]], [6127,[11040.1,9374.61,0],[[5767,2],[6498,2]]], [6128,[13361.7,12365.9,0],[[5768,2]]], [6129,[13654.4,12069.1,1.27157e-006],[[5771,2],[6499,2],[6129,2]]], [6130,[13623.8,12218.8,1.27157e-006],[[5771,2],[5772,2],[6133,2]]], [6131,[13485.1,12444.8,0],[[5390,2]]], +[6132,[13756.8,12341.9,9.53674e-007],[[5772,2],[6500,2]]], [6133,[13647.2,12266.1,0],[[6130,2],[6501,2],[6502,2],[6133,2]]], [6134,[9802.93,14231.9,2.54313e-006],[[5774,2],[6503,2],[6504,2]]], [6135,[9684.56,14074.5,0],[[5774,2],[6505,2]]], [6136,[9604.24,14323.5,0],[[5774,2],[6506,2]]], [6137,[10017.9,13616.2,0],[[5775,2],[6507,2],[6137,2]]], +[6138,[11485.5,14758.2,2.54313e-006],[[5777,2],[5779,2]]], [6139,[11528.6,14631.1,0],[[5777,2],[5781,2],[6508,2],[6151,2]]], [6140,[11543.1,14800.7,5.44957e-007],[[5777,2],[5779,2],[6509,2],[6510,2],[6511,2],[6512,2],[6143,2]]], [6141,[11318,14887.5,0],[[5778,2],[6513,2],[6514,2],[6515,2],[6142,2],[6141,2],[6516,2]]], [6142,[11409,14850.8,4.76837e-007],[[5778,2],[5779,2],[6141,2],[6143,2],[6517,2],[6518,2]]], [6143,[11463,14837.4,3.8147e-007],[[5779,2],[6140,2],[6142,2],[6143,2],[6519,2]]], +[6144,[11462.7,14511.7,0],[[5781,2],[6520,2]]], [6145,[11527,14624,1.27157e-006],[[5781,2]]], [6146,[11023.3,14877.4,9.53674e-007],[[5782,2],[6521,2],[6514,2],[6522,2]]], [6147,[10076,14493,1.90735e-006],[[5784,2],[6523,2],[6524,2],[6525,2],[6504,2]]], [6148,[10053.9,14857.7,1.27157e-006],[[5785,2],[6148,2],[6526,2]]], [6149,[10170.2,14732.9,0],[[5785,2],[6149,2]]], +[6150,[10391.5,14768.9,0],[[5787,2],[6527,2]]], [6151,[11598.4,14529.6,-2.54313e-006],[[5788,2],[6139,2],[6528,2],[6508,2]]], [6152,[11700.4,14362.9,0],[[5788,2],[6529,2]]], [6153,[11815.3,14373.6,-3.17891e-007],[[5789,2],[6155,2],[6530,2]]], [6154,[11853.1,14321.7,0],[[5790,2]]], [6155,[11861.8,14412.9,2.38419e-007],[[5791,2],[6153,2],[6531,2],[6530,2]]], +[6156,[10397.2,9443.47,-2.54313e-006],[[5792,2],[5793,2],[5795,2],[6125,2],[6158,2],[6532,2]]], [6157,[9901.28,9254.95,0],[[5793,2],[6533,2]]], [6158,[10301,9405.17,0],[[5793,2],[6156,2]]], [6159,[9893.49,9215.07,-7.62939e-006],[[5793,2],[6534,2]]], [6160,[10109.7,9126.45,0],[[5793,2],[6535,2]]], [6161,[8831.18,11402.2,0],[[5796,2]]], +[6162,[8145.96,11711.5,-1.90735e-006],[[5797,2],[6536,2],[6537,2],[6538,2]]], [6163,[8152.48,12261.5,0],[[5798,2],[6539,2],[6540,2]]], [6164,[8723.29,13544.4,0],[[5801,2],[6541,2]]], [6165,[8646.8,13285,-1.52588e-006],[[5801,2],[5802,2],[5803,2],[6165,2]]], [6166,[8497.4,13122,0],[[5803,2],[6542,2]]], [6167,[8588.47,13122.2,0],[[5803,2],[6543,2]]], +[6168,[8916.63,12874.1,0],[[5805,2],[6171,2]]], [6169,[9072.96,13995.1,2.54313e-006],[[5807,2],[6544,2],[6545,2]]], [6170,[8709.14,12697.7,0],[[5809,2],[6170,2]]], [6171,[8850.4,12828.8,0],[[5809,2],[6168,2]]], [6172,[8623.54,12505.8,-2.54313e-006],[[5810,2],[6546,2],[6547,2]]], [6173,[8733.37,12568.3,0],[[5811,2]]], +[6174,[8059.7,11013,0],[[5812,2]]], [6175,[8035.13,11211.9,0],[[5812,2],[6548,2]]], [6176,[7813.03,10541.4,0],[[5813,2],[6549,2]]], [6177,[7899.85,10780.9,0],[[5813,2],[6550,2]]], [6178,[8563.82,11474,0],[[5815,2],[6551,2]]], [6179,[8327.52,11345.4,0],[[5815,2],[6552,2]]], +[6180,[8713.17,9878.99,-1.90735e-006],[[5816,2],[6553,2],[6554,2],[6180,2]]], [6181,[8551.99,10074.8,-2.54313e-006],[[5817,2],[5819,2],[6555,2]]], [6182,[8400,10279.7,0],[[5820,2],[6556,2],[6557,2]]], [6183,[8372.13,10440.6,0],[[5820,2],[6558,2]]], [6184,[9281.88,9152.11,-2.54313e-006],[[5821,2],[6559,2],[6560,2]]], [6185,[9800.23,9345.02,0],[[5823,2],[6533,2]]], +[6186,[9641.8,9197.72,0],[[5824,2],[6561,2],[6533,2]]], [6187,[9011.64,9931.69,0],[[5826,2],[6188,2]]], [6188,[8959,9897,-3.8147e-006],[[5827,2],[6187,2],[6188,2],[6562,2]]], [6189,[14549.7,8373.11,0],[[5828,2],[6563,2],[6564,2]]], [6190,[14565.4,7870.6,0],[[5830,2]]], [6191,[14731.9,9228.66,7.62939e-006],[[5831,2],[6565,2]]], +[6192,[15028.6,8978.64,0],[[5832,2]]], [6193,[15245.3,8768.7,0],[[5833,2],[6566,2],[6194,2],[6193,2]]], [6194,[15244.8,8802.05,-7.62939e-006],[[6193,2],[6924,2],[6194,2],[5833,2]]], [6195,[15151.6,9959.83,-3.8147e-006],[[5834,2],[6567,2]]], [6196,[15106.8,9693.01,-3.8147e-006],[[5834,2],[6568,2]]], [6197,[15951.6,9739.67,5.08626e-006],[[5835,2]]], +[6198,[15990.4,9943.08,7.62939e-006],[[5835,2],[5837,2],[6202,2]]], [6199,[16399.5,9958.9,-3.8147e-006],[[5836,2],[5839,2],[6569,2]]], [6200,[16292.3,10142.8,3.8147e-006],[[5836,2],[6570,2],[6571,2]]], [6201,[16153.5,10045.2,0],[[5837,2]]], [6202,[15993.6,9990.17,0],[[5837,2],[6198,2],[6572,2]]], [6203,[16608.8,10138.6,0],[[5838,2]]], +[6204,[16886.6,10304,-9.53674e-007],[[5840,2],[6573,2],[6574,2],[6575,2]]], [6205,[17316.4,10149.9,0],[[5841,2],[6576,2]]], [6206,[17346.1,10029.5,6.35783e-007],[[5841,2],[6206,2],[6576,2]]], [6207,[17459.1,10002.5,0],[[5842,2]]], [6208,[17733.9,10081.4,6.35783e-007],[[5843,2],[6577,2],[6578,2],[6213,2]]], [6209,[17807.5,10125.7,0],[[5843,2],[6579,2],[6580,2],[6209,2]]], +[6210,[17906.3,10079.6,0],[[5844,2],[5845,2],[6212,2],[6581,2]]], [6211,[17987.1,9989.49,-2.38419e-007],[[5845,2],[5854,2],[6212,2],[6582,2],[6583,2]]], [6212,[17965,10042.3,0],[[5845,2],[6210,2],[6211,2],[6581,2],[6582,2]]], [6213,[17666.1,10080.5,-6.35783e-007],[[5847,2],[6208,2],[6213,2],[6584,2],[6578,2]]], [6214,[18007.8,9915.69,0],[[5850,2],[6214,2]]], [6215,[18081.9,9739.98,-1.19209e-007],[[5852,2],[6215,2]]], +[6216,[18210.4,9668.69,9.53674e-007],[[5852,2]]], [6217,[18134.4,9655.05,-3.17891e-007],[[5852,2]]], [6218,[18020.1,9957.17,0],[[5854,2],[6582,2]]], [6219,[18203.6,9518.44,-4.76837e-007],[[5856,2]]], [6220,[18329.8,9624.47,2.38419e-007],[[5857,2],[5858,2]]], [6221,[18301.3,9588.38,0],[[6221,2],[5858,2]]], +[6222,[16705.3,2641.28,4.76837e-008],[[5860,2],[5869,2],[6585,2],[6232,2],[6223,2],[6586,2]]], [6223,[16591,2587.72,-3.17891e-007],[[5861,2],[6222,2],[6587,2]]], [6224,[16602.2,2374.32,-4.76837e-007],[[5861,2],[6588,2]]], [6225,[16706.5,2475.61,0],[[5861,2],[6586,2]]], [6226,[16068.6,2240.57,0],[[5862,2],[6589,2]]], [6227,[16208.6,2072.73,0],[[5862,2],[6590,2]]], +[6228,[15728.4,2381.97,0],[[5864,2],[6591,2],[6592,2]]], [6229,[16648.9,3666.66,0],[[5866,2]]], [6230,[16483.7,2795.9,0],[[5867,2],[6593,2]]], [6231,[16317.4,3046,4.76837e-007],[[5868,2],[6594,2]]], [6232,[16747.4,2725.89,1.19209e-007],[[5869,2],[6222,2],[6595,2],[6585,2],[6596,2]]], [6233,[16876.4,2864.76,5.96046e-008],[[5870,2],[6597,2],[6598,2],[6599,2],[6595,2]]], +[6234,[12740.7,4187.34,0],[[5871,2]]], [6235,[14340.9,3105.5,0],[[5873,2],[6600,2]]], [6236,[14063.4,2722.13,-6.35783e-007],[[5874,2],[5919,2],[6237,2]]], [6237,[14161.8,2724.4,0],[[5875,2],[6236,2]]], [6238,[14479.8,2948.91,0],[[5876,2],[6600,2]]], [6239,[14874.2,2437.79,0],[[5877,2],[6601,2]]], +[6240,[14567.8,2494.14,0],[[5877,2],[6602,2]]], [6241,[14721.3,2417.37,0],[[5877,2],[6603,2],[6604,2]]], [6242,[14104.1,6560.37,0],[[5878,2],[6605,2]]], [6243,[13574.5,6457.63,0],[[5881,2],[6606,2]]], [6244,[13093.4,5589.54,0],[[5882,2]]], [6245,[12365.1,4973.48,0],[[5883,2],[5884,2],[6247,2]]], +[6246,[12558,4744.99,0],[[5883,2],[6607,2]]], [6247,[12318.3,4971.09,0],[[5884,2],[6245,2],[6608,2]]], [6248,[12650.9,5709.82,0],[[5885,2],[6609,2],[6248,2]]], [6249,[12513.8,5645.4,0],[[5885,2]]], [6250,[12224.7,5282.36,2.54313e-006],[[5886,2],[6250,2],[6610,2]]], [6251,[12308.1,5608.08,-7.62939e-006],[[5886,2],[6611,2]]], +[6252,[12183.9,5453.9,2.54313e-006],[[5886,2],[6612,2],[6613,2]]], [6253,[13620.1,6207.47,0],[[5889,2],[6614,2]]], [6254,[13151,5523.64,0],[[5891,2],[6254,2]]], [6255,[14663.7,7642.33,0],[[5893,2],[6615,2]]], [6256,[14175.6,7551.73,0],[[5894,2],[6616,2]]], [6257,[14033.8,7653.69,0],[[5894,2],[6617,2],[6618,2]]], +[6258,[14194.5,7730.62,7.62939e-006],[[5894,2]]], [6259,[13797,7228.21,0],[[5896,2],[6619,2]]], [6260,[13681.8,6975.94,0],[[5896,2],[6620,2],[6621,2]]], [6261,[9392.93,5170.39,0],[[5897,2],[6622,2],[6263,2]]], [6262,[9283.12,5097.71,-2.54313e-006],[[5897,2],[5950,2],[6262,2]]], [6263,[9452.95,5271.76,0],[[5899,2],[5939,2],[6261,2],[6622,2],[6302,2]]], +[6264,[9938.86,5654.35,0],[[5900,2],[6623,2],[6624,2]]], [6265,[9875.27,5701.97,7.62939e-006],[[5900,2],[6301,2]]], [6266,[9920.83,5824.78,0],[[5900,2],[6625,2]]], [6267,[9698.8,5615.85,0],[[5901,2],[5936,2]]], [6268,[8709.96,4093.27,-4.76837e-007],[[5902,2],[5929,2],[6626,2],[6627,2]]], [6269,[8710.28,4321.48,0],[[5902,2],[6628,2]]], +[6270,[11703.5,5916.11,0],[[5904,2],[6270,2],[6629,2],[6630,2]]], [6271,[11995.7,5493.02,0],[[5905,2],[6612,2],[6631,2]]], [6272,[11940.7,5342.51,0],[[5905,2],[6632,2]]], [6273,[11380,5736.46,-2.54313e-006],[[5906,2],[6633,2],[6634,2]]], [6274,[11191.6,5272.97,-3.8147e-006],[[5908,2],[6635,2]]], [6275,[11351,5373.27,3.8147e-006],[[5908,2]]], +[6276,[11120.7,5672.9,7.62939e-006],[[5909,2]]], [6277,[10617.2,5465.68,7.62939e-006],[[5911,2]]], [6278,[10504,5555.07,0],[[5911,2],[6636,2]]], [6279,[14349,2490.62,-1.90735e-006],[[5912,2],[6602,2]]], [6280,[14151.4,2384.5,-6.35783e-007],[[5912,2],[6637,2],[6281,2]]], [6281,[14083.1,2209.32,0],[[5913,2],[6280,2],[6638,2]]], +[6282,[13841.9,2206.83,0],[[5913,2],[6639,2],[6640,2]]], [6283,[13307.1,1467.81,3.17891e-007],[[5915,2],[6641,2],[6642,2]]], [6284,[13189.6,1847.78,1.90735e-006],[[5916,2],[6643,2]]], [6285,[12952.9,958.138,0],[[5917,2],[6644,2],[6645,2],[6646,2]]], [6286,[13109.6,1079.63,0],[[5921,2],[6647,2],[6648,2],[6645,2]]], [6287,[12616.3,856.485,0],[[5922,2],[6649,2]]], +[6288,[12433.2,861.309,0],[[5922,2]]], [6289,[12427.8,902.766,0],[[5923,2]]], [6290,[12727.3,4220.18,0],[[5924,2],[6650,2],[6651,2]]], [6291,[12682.8,3980.67,0],[[5925,2]]], [6292,[12218.6,4769.67,0],[[5926,2],[6608,2]]], [6293,[12084.9,4641.89,3.8147e-006],[[5926,2]]], +[6294,[7844.5,3529.92,1.90735e-006],[[5927,2],[6652,2]]], [6295,[8469.09,4059.25,0],[[5929,2],[5949,2]]], [6296,[8795.52,3806.11,0],[[5930,2],[6653,2]]], [6297,[8664.6,3884.38,0],[[5930,2]]], [6298,[9603.28,5947.79,0],[[5931,2]]], [6299,[9609.73,6020.22,0],[[5932,2],[6654,2],[6655,2]]], +[6300,[9622.83,5618.92,5.08626e-006],[[5934,2],[6300,2]]], [6301,[9794.4,5790.79,0],[[5935,2],[6265,2],[6656,2],[6657,2]]], [6302,[9401.91,5309.55,0],[[6302,2],[5939,2]]], [6303,[9047.57,5400.02,0],[[5941,2],[5942,2],[6303,2],[6658,2],[6659,2]]], [6304,[9005.67,5517.21,0],[[5942,2],[6304,2]]], [6305,[9725.02,6881.1,1.90735e-006],[[5943,2],[6660,2],[6661,2],[6662,2]]], +[6306,[9126.72,6678.18,0],[[5944,2],[6663,2]]], [6307,[9376.78,6856.25,0],[[5945,2],[5946,2],[6664,2],[6310,2]]], [6308,[9287.55,6776.16,0],[[5945,2]]], [6309,[9240.39,6842.78,0],[[5946,2]]], [6310,[9351.17,6975.8,0],[[5946,2],[6307,2],[6665,2],[6666,2],[6667,2]]], [6311,[8210.72,4026.58,0],[[5949,2]]], +[6312,[7890.82,3708.71,1.90735e-006],[[5952,2]]], [6313,[7883.81,3861.97,0],[[5952,2],[6668,2]]], [6314,[7420.42,3443.53,0],[[5954,2],[6669,2]]], [6315,[5318.59,4466.93,0],[[6315,2]]], [6316,[5149.26,4391.11,0],[[5955,2],[6670,2]]], [6317,[7094.25,8531.2,-2.54313e-006],[[5959,2],[6671,2],[6672,2]]], +[6318,[7400.9,8210.94,7.62939e-006],[[5960,2],[6673,2]]], [6319,[7269.21,8296.57,0],[[5960,2],[6674,2]]], [6320,[5974.24,8126.85,-1.90735e-006],[[5964,2],[6320,2],[6675,2],[6676,2]]], [6321,[5877.25,8005.59,-2.54313e-006],[[5965,2],[6321,2],[6677,2],[6676,2]]], [6322,[5753.23,8030.09,-2.54313e-006],[[5965,2],[6678,2],[6679,2]]], [6323,[5844.81,8026.26,7.62939e-006],[[5965,2]]], +[6324,[5676.2,7788.24,0],[[5966,2],[6680,2]]], [6325,[6611.88,8276.08,0],[[5968,2]]], [6326,[7891.74,8673.46,0],[[5969,2],[6333,2]]], [6327,[7802.71,8748.85,7.62939e-006],[[5970,2],[6681,2],[6327,2],[6682,2]]], [6328,[8689.83,8267.1,0],[[5972,2],[6329,2]]], [6329,[8781.45,8268.64,0],[[5973,2],[6328,2],[6683,2],[6684,2],[6330,2]]], +[6330,[8798.02,8184.44,0],[[5974,2],[6329,2],[6685,2],[6330,2],[6684,2]]], [6331,[8816.93,8113.41,2.54313e-006],[[5975,2],[6684,2],[6686,2]]], [6332,[8144.15,8677.63,-1.52588e-005],[[5976,2],[6687,2]]], [6333,[7989.6,8751.23,-5.08626e-006],[[5976,2],[6326,2],[6688,2]]], [6334,[8443.74,8603.88,0],[[5977,2],[6689,2],[6690,2],[6335,2]]], [6335,[8545.99,8518.8,0],[[5978,2],[6334,2],[6691,2],[6692,2]]], +[6336,[8549.23,8473.61,-1.52588e-005],[[5979,2],[6693,2]]], [6337,[5218.85,6539.67,0],[[5980,2],[6694,2]]], [6338,[4978.7,4997.48,0],[[5982,2]]], [6339,[4855.77,4933.11,-6.35783e-007],[[5982,2],[6695,2],[6696,2]]], [6340,[4582.55,8060.69,0],[[5983,2],[6340,2],[6697,2],[6698,2]]], [6341,[4356.22,8226.42,0],[[5984,2],[6699,2]]], +[6342,[4112.73,8200.39,0],[[5985,2],[6700,2],[6701,2]]], [6343,[5028.88,7567.11,-2.54313e-006],[[5987,2]]], [6344,[5161.29,7462.8,0],[[5987,2]]], [6345,[5186.5,7660.95,0],[[5987,2],[6702,2]]], [6346,[4426.26,5446.4,0],[[5990,2],[6346,2],[6703,2]]], [6347,[4352.91,5261.07,0],[[5990,2],[6351,2]]], +[6348,[3565.28,5765.66,0],[[5992,2]]], [6349,[4375.73,4712.57,3.17891e-007],[[5993,2],[5995,2],[6353,2],[6704,2]]], [6350,[4492.98,4765.42,0],[[5993,2],[6705,2],[6706,2]]], [6351,[4288.91,5164.28,6.35783e-007],[[5994,2],[6347,2],[6707,2]]], [6352,[4213.5,4872.13,0],[[5995,2],[6352,2]]], [6353,[4346.53,4734.77,-2.38419e-007],[[5995,2],[6349,2],[6708,2],[6709,2],[6353,2]]], +[6354,[4337.13,4772.72,0],[[6709,2],[5995,2]]], [6355,[3305.81,5014.71,3.17891e-007],[[5996,2],[6355,2],[6710,2]]], [6356,[3435.21,4998.54,9.53674e-007],[[5996,2],[6711,2]]], [6357,[4287.5,8767.79,-1.27157e-006],[[5998,2],[6712,2],[6713,2]]], [6358,[4135.71,8899.65,0],[[5998,2],[6714,2]]], [6359,[2459.18,10457.9,0],[[5999,2],[6715,2]]], +[6360,[2193.77,10431.8,0],[[6000,2],[6360,2]]], [6361,[1863.35,10496.4,0],[[6001,2],[6003,2],[6716,2],[6717,2]]], [6362,[1514.15,10147.3,4.76837e-007],[[6004,2]]], [6363,[3268.61,10056.8,0],[[6005,2],[6006,2],[6009,2],[6369,2],[6363,2],[6718,2],[6364,2],[6719,2]]], [6364,[3391.4,9984.9,0],[[6005,2],[6363,2],[6720,2],[6721,2],[6722,2],[6718,2]]], [6365,[2825.71,9344.36,0],[[6007,2]]], +[6366,[3239.55,9690.29,0],[[6008,2],[6723,2]]], [6367,[3290.13,10282.5,0],[[6009,2],[6724,2],[6368,2]]], [6368,[3374.42,10180.4,-9.53674e-007],[[6009,2],[6367,2],[6725,2],[6724,2],[6726,2],[6718,2]]], [6369,[3303.69,10125,0],[[6009,2],[6363,2],[6726,2]]], [6370,[3251.84,9350.5,0],[[6011,2],[6727,2]]], [6371,[1961.97,12336.2,-1.90735e-006],[[6012,2],[6728,2]]], +[6372,[1922.34,12092.8,0],[[6012,2],[6729,2]]], [6373,[2012.43,12063,-1.90735e-006],[[6012,2],[6730,2]]], [6374,[1870.94,12621.2,1.14441e-006],[[6014,2],[6015,2],[6056,2],[6374,2],[6731,2],[6732,2]]], [6375,[1880.9,12509.2,0],[[6014,2]]], [6376,[2836.83,11795.4,-1.90735e-006],[[6016,2],[6733,2],[6429,2]]], [6377,[2677.76,11886.3,-1.90735e-006],[[6016,2],[6734,2]]], +[6378,[4444.82,17323.8,0],[[6018,2],[6735,2],[6736,2],[6401,2]]], [6379,[4856.41,17540.9,2.54313e-006],[[6019,2],[6737,2],[6738,2]]], [6380,[5070.86,17499.3,-7.62939e-006],[[6019,2],[6739,2]]], [6381,[5183.91,17415.6,0],[[6021,2],[6740,2],[6381,2],[6741,2],[6382,2],[6742,2],[6739,2]]], [6382,[5223.38,17350.6,-2.54313e-006],[[6022,2],[6381,2],[6382,2],[6741,2]]], [6383,[5317,17121,7.62939e-006],[[6023,2],[6743,2]]], +[6384,[5467.7,17013.3,0],[[6024,2],[6389,2],[6743,2]]], [6385,[5699.19,16754.7,-5.08626e-006],[[6025,2],[6744,2],[6745,2]]], [6386,[5966.49,16490.3,0],[[6026,2],[6746,2],[6747,2]]], [6387,[5578.66,16322.7,2.54313e-006],[[6027,2],[6387,2],[6748,2]]], [6388,[5334.63,16327.5,-5.72205e-006],[[6028,2],[6749,2],[6748,2],[6388,2],[6750,2]]], [6389,[5505.8,16908.7,-2.54313e-006],[[6029,2],[6384,2],[6745,2]]], +[6390,[3334.64,16583.9,0],[[6030,2],[6751,2]]], [6391,[3316.71,16736.4,-7.62939e-006],[[6030,2],[6752,2]]], [6392,[2595.06,15763.2,0],[[6032,2]]], [6393,[2426.23,16057.9,0],[[6033,2]]], [6394,[2357.49,16111.3,0],[[6033,2],[6753,2],[6754,2]]], [6395,[2495.08,16511.2,0],[[6034,2],[6755,2]]], +[6396,[2364.56,16375,9.53674e-007],[[6034,2],[6756,2],[6757,2],[6758,2]]], [6397,[2882.62,16976.4,0],[[6035,2],[6759,2],[6760,2]]], [6398,[3121,17033.2,-7.62939e-006],[[6036,2],[6761,2],[6762,2]]], [6399,[3769.28,16714.1,-2.54313e-006],[[6038,2],[6763,2],[6764,2]]], [6400,[3894.55,16711.7,3.8147e-006],[[6038,2]]], [6401,[4374.71,17277.7,0],[[6039,2],[6378,2],[6736,2]]], +[6402,[4273.72,17190.8,0],[[6039,2],[6040,2],[6402,2]]], [6403,[1895.09,14888.6,0],[[6041,2],[6405,2],[6765,2]]], [6404,[1928.97,15189.2,0],[[6041,2]]], [6405,[1852.05,14827.5,-3.8147e-006],[[6043,2],[6403,2]]], [6406,[1660.96,14741.8,0],[[6043,2],[6766,2]]], [6407,[1681.48,14174.3,-1.27157e-006],[[6044,2],[6767,2],[6768,2]]], +[6408,[1364.2,13155.9,-2.38419e-007],[[6047,2],[6048,2]]], [6409,[1410.31,13002.1,0],[[6048,2],[6049,2],[6769,2],[6412,2],[6770,2],[6410,2]]], [6410,[1346.87,13057.9,0],[[6048,2],[6409,2],[6770,2],[6771,2]]], [6411,[1325.9,13094,0],[[6048,2],[6772,2]]], [6412,[1463.28,12987.2,-2.38419e-007],[[6049,2],[6409,2],[6413,2],[6769,2]]], [6413,[1535.03,12966.1,0],[[6049,2],[6051,2],[6412,2],[6773,2]]], +[6414,[1618.89,12930.6,0],[[6051,2],[6774,2]]], [6415,[1545.06,12992.7,0],[[6051,2]]], [6416,[1491.53,13875.4,0],[[6052,2],[6775,2],[6767,2]]], [6417,[1400.14,13520.2,-9.53674e-007],[[6053,2]]], [6418,[1388.07,13581,0],[[6053,2],[6418,2],[6776,2]]], [6419,[1789.29,12829.2,6.35783e-007],[[6055,2],[6777,2],[6423,2]]], +[6420,[1876.36,12814.2,0],[[6055,2],[6056,2],[6778,2],[6422,2]]], [6421,[1930.54,12663.3,0],[[6015,2],[6056,2]]], [6422,[1882.94,12783,0],[[6056,2],[6420,2],[6779,2]]], [6423,[1836.62,12707.4,0],[[6056,2],[6419,2],[6731,2]]], [6424,[7705.29,15346.6,7.62939e-006],[[6057,2],[6780,2]]], [6425,[7138.24,15405.5,0],[[6059,2]]], +[6426,[6925.49,15527.8,2.54313e-006],[[6060,2],[6781,2],[6782,2]]], [6427,[4021.31,11503,0],[[5698,2]]], [6428,[3917.84,11387.8,0],[[6062,2],[6783,2],[6428,2],[6784,2]]], [6429,[2870.34,11786.4,0],[[6064,2],[6376,2],[6733,2]]], [6430,[6028.86,16104.6,0],[[6066,2],[6430,2]]], [6431,[5919.88,15964.5,0],[[6066,2],[6785,2]]], +[6432,[6515.4,15451.2,0],[[6067,2],[6786,2]]], [6433,[6682.87,15877.9,0],[[6068,2]]], [6434,[6570.78,16026.1,7.62939e-006],[[6068,2],[6787,2]]], [6435,[6746.87,16065.2,0],[[6068,2],[6788,2]]], [6436,[6014.98,15760.6,0],[[6069,2]]], [6437,[5962.26,15773.3,0],[[6069,2]]], +[6438,[5885.93,10808.1,0],[[6071,2],[6789,2]]], [6439,[6272.52,10764.6,3.8147e-006],[[6072,2],[6439,2],[6790,2],[6791,2]]], [6440,[7068.41,11529.7,0],[[6073,2],[6792,2],[6440,2],[6793,2]]], [6441,[6768.36,10779.1,0],[[6074,2],[6794,2],[6441,2],[6795,2]]], [6442,[7264.51,10911.3,-7.62939e-006],[[6075,2],[6796,2]]], [6443,[7249.11,10724.2,0],[[6075,2],[6797,2]]], +[6444,[7279.17,11194.8,2.54313e-006],[[6076,2],[6798,2],[6799,2]]], [6445,[7754.25,12036.4,7.62939e-006],[[6078,2],[6800,2]]], [6446,[7788.21,12304.9,0],[[6078,2],[6801,2]]], [6447,[7826.08,13204.8,2.54313e-006],[[6079,2],[6081,2],[6802,2]]], [6448,[7869.01,12707.2,0],[[6080,2],[6803,2]]], [6449,[8049.73,13020.8,0],[[6081,2],[6804,2]]], +[6450,[8238.28,14826.5,-7.62939e-006],[[6082,2],[6805,2]]], [6451,[7983.42,14963.3,-7.62939e-006],[[6083,2],[6806,2]]], [6452,[8023.69,14150,0],[[6084,2],[6807,2],[6808,2]]], [6453,[7820.04,14172,-7.62939e-006],[[6084,2],[6809,2]]], [6454,[7828.98,13642.2,0],[[6086,2]]], [6455,[7879.56,13592.2,0],[[6086,2],[6810,2]]], +[6456,[7925.94,13326.2,0],[[6089,2]]], [6457,[8022.95,13373.5,3.05176e-006],[[6090,2],[6458,2],[6802,2],[6811,2],[6812,2]]], [6458,[7992.98,13478.2,0],[[6090,2],[6457,2],[6812,2],[6458,2]]], [6459,[4960.5,10125.7,0],[[6091,2],[6813,2]]], [6460,[5663.23,10618.6,0],[[6092,2]]], [6461,[5872.67,10485.4,7.62939e-006],[[6092,2],[6814,2]]], +[6462,[5421.68,10125.3,0],[[6093,2],[6815,2]]], [6463,[5559.93,10267,7.62939e-006],[[6093,2],[6816,2]]], [6464,[3961.44,10607.7,-1.27157e-006],[[6094,2],[6817,2],[6818,2]]], [6465,[3893.62,10457.9,-3.8147e-006],[[6094,2],[6819,2]]], [6466,[4271.02,10197.2,2.54313e-006],[[6095,2],[6820,2],[6821,2]]], [6467,[3941.72,11123.9,2.54313e-006],[[6097,2],[6822,2],[6823,2]]], +[6468,[4916.14,10775.4,5.08626e-006],[[6098,2],[6468,2]]], [6469,[4601.13,10236.9,0],[[6099,2],[6820,2]]], [6470,[4746.49,10047.2,2.54313e-006],[[6099,2],[6824,2],[6825,2]]], [6471,[12623.7,9887.16,0],[[6100,2],[6826,2]]], [6472,[12473.3,9970.17,0],[[6100,2],[6827,2],[6484,2],[6828,2]]], [6473,[13443.1,10068.3,0],[[6102,2],[6829,2]]], +[6474,[13272,9862.67,-2.54313e-006],[[6104,2],[6830,2],[6831,2]]], [6475,[13754.2,11831.3,-1.52588e-006],[[6475,2]]], [6476,[14090.2,11308.7,-3.8147e-006],[[6109,2],[6111,2]]], [6477,[14323.5,10943.9,7.62939e-006],[[6112,2],[6832,2]]], [6478,[13757.9,10660.1,0],[[6113,2],[6833,2]]], [6479,[13707,10417.6,1.90735e-006],[[6114,2],[6834,2],[6835,2],[6833,2]]], +[6480,[13656,10488.3,7.62939e-006],[[6114,2]]], [6481,[12036.2,9978.29,0],[[6116,2]]], [6482,[11983.3,9564.71,5.08626e-006],[[6117,2],[6482,2],[6836,2]]], [6483,[12125.7,9907.32,0],[[6118,2]]], [6484,[12326.3,9921.33,7.62939e-006],[[6118,2],[6472,2],[6837,2]]], [6485,[12148.6,9659.94,7.62939e-006],[[6118,2],[6121,2]]], +[6486,[11968.7,8958.19,0],[[6119,2],[6838,2]]], [6487,[11749.3,9004.33,0],[[6119,2],[6839,2],[6493,2]]], [6488,[12265.8,9374.18,0],[[6121,2],[6840,2]]], [6489,[12118.3,9299.89,-7.62939e-006],[[6121,2],[6490,2]]], [6490,[12121.9,9309.53,1.90735e-006],[[6489,2],[6490,2],[6121,2]]], [6491,[11423.9,8875.29,0],[[6122,2],[6841,2],[6842,2]]], +[6492,[11637.5,9203.94,0],[[6123,2],[6843,2]]], [6493,[11649,8967.54,0],[[6123,2],[6487,2],[6839,2]]], [6494,[11262.4,9171.79,1.90735e-006],[[6124,2],[6844,2],[6494,2],[6845,2]]], [6495,[10618.3,9303.67,-7.62939e-006],[[6125,2],[6846,2]]], [6496,[10968.1,9327.72,-7.62939e-006],[[6126,2]]], [6497,[10862.9,9317.41,0],[[6126,2],[6847,2],[6848,2],[6844,2]]], +[6498,[11116.7,9319.08,0],[[6127,2],[6845,2],[6844,2]]], [6499,[13779.2,11953.6,0],[[6129,2],[6475,2],[6849,2],[6850,2]]], [6500,[13789.1,12332.2,-9.53674e-007],[[6132,2],[6851,2],[6852,2],[6500,2]]], [6501,[13696.5,12259.5,0],[[6133,2]]], [6502,[13641.4,12271,-6.35783e-007],[[6133,2]]], [6503,[9843.38,14181.6,-7.62939e-006],[[6134,2]]], +[6504,[9905.33,14323.3,-2.54313e-006],[[6134,2],[6147,2],[6525,2],[6853,2]]], [6505,[9710.22,14051.1,7.62939e-006],[[6135,2]]], [6506,[9484.41,14448.9,0],[[6136,2],[6854,2]]], [6507,[10067.3,13571.6,0],[[6137,2]]], [6508,[11556.4,14582,0],[[6139,2],[6151,2],[6855,2],[6528,2]]], [6509,[11612.9,14714.5,9.53674e-007],[[6140,2],[6856,2],[6855,2],[6857,2],[6509,2]]], +[6510,[11568.7,14881.6,-1.90735e-006],[[6140,2],[6511,2]]], [6511,[11647.5,14832.8,0],[[6140,2],[6510,2],[6511,2],[6858,2],[6859,2],[6860,2]]], [6512,[11521.9,14899.4,7.62939e-007],[[6140,2],[6861,2],[6512,2],[6858,2],[6862,2],[6519,2]]], [6513,[11216.7,14849.8,3.8147e-006],[[6141,2]]], [6514,[11154.7,14935.3,0],[[6141,2],[6146,2]]], [6515,[11368.4,14895.6,3.8147e-006],[[6141,2],[6863,2],[6515,2]]], +[6516,[11341.7,14950,-1.90735e-006],[[6141,2],[6864,2],[6516,2],[6865,2]]], [6517,[11378.4,14890.5,0],[[6142,2]]], [6518,[11414.5,14901.5,-6.35783e-007],[[6142,2],[6518,2],[6866,2],[6519,2]]], [6519,[11466.2,14900,-1.58946e-007],[[6143,2],[6512,2],[6518,2],[6866,2],[6862,2]]], [6520,[11454.8,14473.6,3.8147e-006],[[6144,2]]], [6521,[11063.8,14773.4,0],[[6146,2]]], +[6522,[11121.3,14986.8,0],[[6146,2],[6867,2]]], [6523,[10032.4,14570.9,0],[[6147,2],[6868,2]]], [6524,[10120.2,14407.2,0],[[6147,2],[6869,2]]], [6525,[9955.2,14387.3,0],[[6147,2],[6504,2],[6525,2],[6870,2]]], [6526,[9951.86,14995.8,0],[[6148,2],[6871,2]]], [6527,[10256.8,14828.4,0],[[6150,2],[6872,2]]], +[6528,[11661,14561.9,-6.35783e-007],[[6151,2],[6508,2],[6873,2],[6856,2],[6855,2]]], [6529,[11628.4,14356.8,0],[[6152,2],[6874,2],[6875,2],[6876,2],[6877,2],[6878,2]]], [6530,[11819.8,14414.2,0],[[6153,2],[6155,2],[6531,2]]], [6531,[11799.6,14503.1,0],[[6155,2],[6530,2],[6879,2],[6880,2],[6873,2]]], [6532,[10445.6,9343.89,-2.54313e-006],[[6156,2],[6846,2],[6881,2]]], [6533,[9766.98,9197.8,2.54313e-006],[[6157,2],[6185,2],[6186,2],[6561,2]]], +[6534,[9750.16,9139.91,2.54313e-006],[[6159,2],[6882,2],[6561,2],[6883,2]]], [6535,[10091.5,8989.43,7.62939e-006],[[6160,2],[6884,2]]], [6536,[7993.09,11736.4,-2.54313e-006],[[6162,2],[6885,2],[6886,2]]], [6537,[8118.37,11631.8,2.54313e-006],[[6162,2],[6887,2],[6888,2],[6886,2]]], [6538,[8268.36,11685.2,7.62939e-006],[[6162,2],[6889,2],[6890,2]]], [6539,[8232.58,12321.2,0],[[6163,2],[6891,2],[6539,2],[6892,2]]], +[6540,[8055.95,12325.1,-2.54313e-006],[[6163,2],[6893,2],[6892,2]]], [6541,[8701.18,13605.3,0],[[6164,2],[6894,2]]], [6542,[8367.05,13078.4,0],[[6166,2],[6895,2],[6804,2]]], [6543,[8463.63,13057.5,0],[[6167,2],[6895,2]]], [6544,[9046.35,14051.4,5.08626e-006],[[6169,2],[6896,2],[6897,2]]], [6545,[9042.74,13931.8,0],[[6169,2]]], +[6546,[8556.9,12443.7,-2.54313e-006],[[6172,2],[6546,2],[6898,2]]], [6547,[8562.37,12632.4,0],[[6172,2],[6899,2]]], [6548,[7995.2,11346.4,0],[[6175,2],[6900,2],[6901,2],[6902,2],[6887,2]]], [6549,[7741.76,10490.9,-2.54313e-006],[[6176,2],[6903,2],[6904,2]]], [6550,[7896.74,10869.2,0],[[6177,2]]], [6551,[8603.92,11624.4,0],[[6178,2],[6551,2],[6889,2]]], +[6552,[8273.57,11359,-5.08626e-006],[[6179,2],[6905,2],[6902,2]]], [6553,[8615.5,9894.87,0],[[6180,2],[6555,2],[6906,2]]], [6554,[8769.79,9861.83,0],[[6180,2],[6907,2],[6908,2],[6562,2]]], [6555,[8460.23,9972.57,0],[[6181,2],[6553,2],[6909,2]]], [6556,[8293.3,10117.4,0],[[6182,2],[6910,2],[6911,2]]], [6557,[8445.14,10204.7,0],[[7510,2],[7217,2],[6911,2],[6182,2]]], +[6558,[8328.29,10367.3,7.62939e-006],[[6183,2],[6912,2]]], [6559,[9213.75,9108.51,0],[[6184,2],[6913,2],[6914,2]]], [6560,[9460.71,9162.83,7.62939e-006],[[6184,2],[6915,2]]], [6561,[9646.29,9172.62,0],[[6186,2],[6533,2],[6534,2],[6915,2],[6882,2],[6916,2]]], [6562,[8939.3,9833.56,-2.54313e-006],[[6188,2],[6554,2],[6917,2]]], [6563,[14518.8,8213.13,-7.62939e-006],[[6189,2],[6918,2]]], +[6564,[14450.8,8438.93,2.54313e-006],[[6189,2],[6919,2],[6920,2]]], [6565,[14715.7,9226.51,2.54313e-006],[[6191,2],[6921,2],[6922,2]]], [6566,[15232.1,8642.19,0],[[6193,2],[6566,2],[6923,2]]], [6567,[15098.6,10097.6,9.53674e-007],[[6195,2],[6925,2],[6926,2],[6927,2]]], [6568,[15041.5,9641.7,0],[[6196,2],[6928,2],[6929,2]]], [6569,[16377.4,9889.34,0],[[6199,2]]], +[6570,[16328.7,10263.4,1.90735e-006],[[6200,2],[6930,2],[6931,2],[6932,2]]], [6571,[16332.1,10143.6,0],[[6200,2]]], [6572,[15921.1,10026,5.08626e-006],[[6202,2],[6933,2],[6934,2]]], [6573,[16890.6,10382.4,0],[[6204,2],[6575,2],[6935,2],[6936,2]]], [6574,[16760.7,10332.8,0],[[6204,2]]], [6575,[16959.9,10343.9,1.19209e-007],[[6204,2],[6573,2],[6937,2],[6938,2],[6935,2]]], +[6576,[17336.9,10105.8,0],[[6205,2],[6206,2]]], [6577,[17728,10146.5,0],[[6208,2],[6584,2],[6939,2]]], [6578,[17687.2,10129.9,-1.90735e-006],[[6208,2],[6213,2],[6940,2]]], [6579,[17792.8,10195.7,0],[[6209,2],[6941,2],[6942,2],[6579,2]]], [6580,[17804.2,10108.3,1.58946e-007],[[6209,2]]], [6581,[17971.5,10115.3,-1.19209e-007],[[6210,2],[6212,2],[6943,2],[6944,2]]], +[6582,[18038.7,10047.1,0],[[6211,2],[6212,2],[6218,2],[6944,2]]], [6583,[18026.9,9965.56,-4.76837e-007],[[6211,2]]], [6584,[17687,10125.7,0],[[6213,2],[6577,2],[6945,2],[6584,2]]], [6585,[16753.4,2656.15,0],[[6222,2],[6232,2],[6596,2]]], [6586,[16788,2495.06,0],[[6222,2],[6225,2],[6946,2],[6947,2]]], [6587,[16623.3,2525.97,0],[[6223,2]]], +[6588,[16603.4,2242.73,0],[[6224,2],[6948,2]]], [6589,[15935.4,2228.12,0],[[6226,2],[6949,2]]], [6590,[16200.7,1945.49,-9.53674e-007],[[6227,2],[6950,2]]], [6591,[15591,2378.06,9.53674e-007],[[6228,2],[6951,2]]], [6592,[15727.5,2291.47,4.76837e-007],[[6228,2],[6952,2],[6953,2],[6954,2]]], [6593,[16383.2,2769.33,1.19209e-007],[[6230,2],[6955,2]]], +[6594,[16272,2998.72,0],[[6231,2],[6956,2]]], [6595,[16856.1,2773.44,0],[[6232,2],[6233,2],[6599,2],[6595,2]]], [6596,[16847.1,2662.22,1.19209e-007],[[6232,2],[6585,2],[6957,2]]], [6597,[16913.1,2891.54,0],[[6233,2]]], [6598,[16797.6,2842.84,0],[[6233,2]]], [6599,[16913.4,2794.26,0],[[6233,2],[6595,2],[6958,2],[6957,2]]], +[6600,[14407.3,3066.25,6.35783e-007],[[6235,2],[6238,2],[6959,2],[6600,2]]], [6601,[15005.1,2408.34,-1.90735e-006],[[6239,2],[6960,2]]], [6602,[14485.5,2491.74,0],[[6240,2],[6279,2],[6961,2],[6603,2]]], [6603,[14560.9,2432.11,0],[[6241,2],[6602,2],[6961,2]]], [6604,[14701,2269.8,-1.27157e-006],[[6241,2],[6962,2],[6963,2]]], [6605,[14204,6622.06,0],[[6242,2],[6964,2]]], +[6606,[13532.3,6574.37,0],[[6243,2],[6965,2]]], [6607,[12565.9,4587.98,0],[[6246,2],[6966,2]]], [6608,[12256.4,4864.65,1.27157e-006],[[6247,2],[6292,2],[6967,2]]], [6609,[12691,5868.73,0],[[6248,2],[6968,2]]], [6610,[12116.5,5252.89,0],[[6250,2]]], [6611,[12353.9,5696.68,0],[[6251,2]]], +[6612,[12129.7,5472.87,-2.54313e-006],[[6252,2],[6271,2],[6969,2]]], [6613,[12186.3,5408.4,0],[[6252,2]]], [6614,[13713,6259.81,0],[[6253,2]]], [6615,[14673.4,7571.5,7.62939e-006],[[6255,2]]], [6616,[14016,7521.75,0],[[6256,2],[6970,2]]], [6617,[14050,7715.91,7.62939e-006],[[6257,2]]], +[6618,[13903.1,7643.63,0],[[6257,2],[6971,2],[6970,2]]], [6619,[13814.4,7256.66,2.54313e-006],[[6259,2],[6970,2],[6972,2]]], [6620,[13549.3,7089.1,0],[[6260,2],[6973,2]]], [6621,[13668.9,6930.34,-2.54313e-006],[[6260,2],[6974,2],[6975,2]]], [6622,[9398.25,5224.8,0],[[6261,2],[6263,2]]], [6623,[10066,5727.6,0],[[6264,2],[6976,2],[6977,2]]], +[6624,[10100,5599.77,0],[[6264,2],[6978,2]]], [6625,[9967.87,5951.45,0],[[6266,2],[6979,2],[6980,2],[6656,2]]], [6626,[8821.11,4046.26,1.90735e-006],[[6268,2],[6981,2]]], [6627,[8621.76,4138.46,1.90735e-006],[[6268,2],[6982,2]]], [6628,[8605.99,4369.01,0],[[6269,2],[6628,2]]], [6629,[11759,5916.86,0],[[6629,2]]], +[6630,[11732.2,6076.83,0],[[6270,2],[6983,2]]], [6631,[12050.5,5619.1,0],[[6271,2],[6984,2]]], [6632,[11927.9,5226.12,0],[[6272,2],[6985,2]]], [6633,[11448.7,5854.64,0],[[6273,2],[6986,2]]], [6634,[11333.6,5769.11,1.90735e-006],[[6273,2],[6634,2],[6987,2],[6988,2]]], [6635,[11194.1,5248.24,-9.53674e-007],[[6274,2],[6989,2],[6635,2],[6990,2]]], +[6636,[10469.7,5564.82,-1.27157e-006],[[6278,2],[6991,2],[6992,2]]], [6637,[14226.8,2308.5,-1.90735e-006],[[6280,2],[6637,2]]], [6638,[14081.6,2027.7,0],[[6281,2],[6993,2]]], [6639,[13772,2048.94,0],[[6282,2],[6994,2]]], [6640,[13710.1,2211.21,0],[[6282,2],[6995,2]]], [6641,[13396.9,1573.93,0],[[6283,2],[6996,2]]], +[6642,[13309.4,1277.22,9.53674e-007],[[6283,2],[6997,2]]], [6643,[13223,1889,0],[[6284,2],[6643,2],[6998,2]]], [6644,[12908,797.705,0],[[6285,2],[6649,2]]], [6645,[13039.7,964.334,-4.76837e-007],[[6285,2],[6286,2],[6645,2],[6999,2],[6648,2]]], [6646,[12855.5,915.655,0],[[6285,2]]], [6647,[13271.8,1102.46,0],[[6286,2],[6997,2]]], +[6648,[13118,982.075,0],[[6286,2],[6645,2],[7000,2],[7001,2]]], [6649,[12765.5,815.988,-4.76837e-007],[[6287,2],[6644,2]]], [6650,[12587,4252.31,0],[[6290,2],[7002,2]]], [6651,[12736.8,4382.63,-3.8147e-006],[[6290,2]]], [6652,[7814.42,3387.89,0],[[6294,2],[7003,2]]], [6653,[8834.9,3831.78,0],[[6296,2]]], +[6654,[9644.54,6069.15,-2.54313e-006],[[6299,2],[7004,2],[7005,2]]], [6655,[9559,6043.41,7.62939e-006],[[6299,2]]], [6656,[9888.65,5891.85,0],[[6301,2],[6625,2],[6980,2]]], [6657,[9707.79,5826.5,0],[[6301,2],[6657,2]]], [6658,[9040.21,5352.49,0],[[6303,2]]], [6659,[8926.67,5432.61,0],[[6303,2]]], +[6660,[9887.66,6822.58,-7.62939e-006],[[6305,2],[7006,2]]], [6661,[9763.63,7001.86,0],[[6305,2],[7007,2],[6661,2]]], [6662,[9575.71,6937.88,0],[[6305,2],[6667,2]]], [6663,[9057.41,6676.53,0],[[6306,2],[7008,2]]], [6664,[9464.69,6825.84,0],[[6307,2]]], [6665,[9282.99,7142.93,0],[[6310,2],[7009,2],[7010,2]]], +[6666,[9390.95,7145.06,0],[[6310,2],[7011,2]]], [6667,[9484.31,6970.36,0],[[6310,2],[6662,2]]], [6668,[7901.1,3895.29,0],[[6313,2]]], [6669,[7508.37,3388.7,0],[[6314,2],[7012,2]]], [6670,[5025.7,4458.73,1.90735e-006],[[6316,2],[7013,2]]], [6671,[7068.82,8531.26,0],[[6317,2]]], +[6672,[7119.82,8737.44,-7.62939e-006],[[6317,2],[7014,2]]], [6673,[7488.05,8315.07,0],[[6318,2],[7015,2]]], [6674,[7416.32,8315.07,0],[[6319,2],[7015,2]]], [6675,[6062.41,8237.05,0],[[6320,2],[7016,2]]], [6676,[5926.95,8165.68,-1.90735e-006],[[6320,2],[6321,2],[7017,2],[6676,2],[7018,2],[7019,2]]], [6677,[5906.64,8091.16,-1.90735e-006],[[6321,2],[6677,2],[7020,2]]], +[6678,[5804.49,8108.8,0],[[6322,2],[6678,2],[7019,2]]], [6679,[5615.47,8119.31,7.62939e-006],[[6322,2],[7021,2]]], [6680,[5547.7,7766.77,0],[[6324,2],[7022,2],[7023,2]]], [6681,[7886.94,8876.93,0],[[6327,2],[6688,2]]], [6682,[7680.63,8772.69,0],[[6327,2],[7024,2]]], [6683,[8839.68,8358.5,0],[[6329,2],[6691,2],[7025,2],[6684,2]]], +[6684,[8827.85,8231.86,0],[[6329,2],[6330,2],[6331,2],[6683,2],[7026,2]]], [6685,[8794.33,8171.95,-3.8147e-006],[[6330,2]]], [6686,[8922.21,8201.57,0],[[6331,2],[7027,2]]], [6687,[8204.73,8748.67,0],[[6332,2],[7028,2]]], [6688,[7979.15,8906.74,0],[[6333,2],[6681,2],[7028,2],[7029,2],[7030,2]]], [6689,[8301.97,8717.71,0],[[6334,2],[7031,2]]], +[6690,[8507.71,8765.37,0],[[6334,2],[7032,2]]], [6691,[8684.77,8488.7,0],[[6335,2],[6683,2]]], [6692,[8662.39,8642.29,-1.52588e-005],[[6335,2],[7033,2]]], [6693,[8649.02,8467.6,-1.52588e-005],[[6336,2],[7034,2]]], [6694,[5323.4,6541.13,-7.62939e-006],[[6337,2]]], [6695,[4863.26,4875.62,0],[[6339,2],[6695,2],[7035,2]]], +[6696,[4725.24,4964.53,0],[[6339,2],[7036,2]]], [6697,[4581.8,8218.88,0],[[6340,2]]], [6698,[4705.51,8032.31,0],[[6340,2],[7037,2],[7038,2],[7039,2]]], [6699,[4387.26,8344.05,0],[[6341,2],[7040,2],[7041,2],[6699,2]]], [6700,[4114.55,8295.17,0],[[6342,2],[6701,2]]], [6701,[4103.27,8285.83,0],[[6700,2],[6342,2]]], +[6702,[5241.51,7763.1,0],[[6345,2],[7042,2],[7043,2],[6702,2]]], [6703,[4419.62,5425.97,-4.76837e-007],[[6703,2],[6346,2]]], [6704,[4309.87,4600.84,9.53674e-007],[[6349,2],[7044,2]]], [6705,[4643.83,4671.72,0],[[6350,2],[7045,2]]], [6706,[4592.34,4822.64,0],[[6350,2],[7036,2]]], [6707,[4243.49,5200.49,0],[[6351,2]]], +[6708,[4308.74,4695,3.17891e-007],[[6353,2],[7046,2],[6708,2]]], [6709,[4353.9,4757.24,9.53674e-007],[[6353,2],[6354,2],[6709,2]]], [6710,[3395.47,4970.08,-9.53674e-007],[[6355,2],[7047,2]]], [6711,[3570.49,5017.09,0],[[6356,2],[6711,2],[7048,2]]], [6712,[4329.93,8589.25,0],[[6357,2],[7040,2]]], [6713,[4431.44,8801.07,1.27157e-006],[[6357,2],[7049,2],[7050,2]]], +[6714,[4092,9015.1,0],[[6358,2],[7051,2]]], [6715,[2475.54,10490.3,0],[[6359,2],[7052,2],[7053,2]]], [6716,[1880.93,10644.4,0],[[6361,2],[7054,2],[7055,2]]], [6717,[1968.95,10524.7,0],[[6717,2],[7056,2],[7057,2],[6361,2]]], [6718,[3373.66,10047.3,-3.8147e-006],[[6363,2],[6364,2],[6368,2],[6726,2]]], [6719,[3211.57,10105.3,0],[[6363,2]]], +[6720,[3520.75,10041.9,0],[[6364,2],[7058,2],[6725,2]]], [6721,[3392.65,9835.3,0],[[6364,2],[7059,2],[6723,2]]], [6722,[3440.51,10031.8,3.8147e-006],[[6364,2],[6722,2]]], [6723,[3393.74,9663.52,9.53674e-007],[[6366,2],[6721,2],[7060,2],[7061,2],[7062,2]]], [6724,[3399.73,10245.6,-9.53674e-007],[[6367,2],[6368,2],[7063,2],[6724,2]]], [6725,[3517.27,10162.8,-1.27157e-006],[[6368,2],[6720,2],[7064,2]]], +[6726,[3377.2,10117.7,0],[[6368,2],[6369,2],[6718,2]]], [6727,[3259.89,9404.79,0],[[6370,2],[7065,2],[7060,2]]], [6728,[1876.78,12435.2,-1.90735e-006],[[6371,2],[6731,2]]], [6729,[1840.64,12080.7,6.35783e-007],[[6372,2],[7066,2],[7067,2]]], [6730,[1976.53,11969,-6.35783e-007],[[6373,2],[6730,2],[7068,2]]], [6731,[1826.2,12572.8,4.76837e-007],[[6374,2],[6728,2],[6423,2],[7069,2],[7070,2]]], +[6732,[1921.83,12656.1,0],[[6374,2]]], [6733,[2841.46,11781.3,0],[[6376,2],[6429,2],[7071,2]]], [6734,[2541.68,11847.3,0],[[6377,2],[7072,2]]], [6735,[4614.33,17400.8,0],[[6378,2],[6737,2]]], [6736,[4375.14,17319.9,0],[[6378,2],[6401,2],[7073,2]]], [6737,[4752.08,17435,0],[[6379,2],[6735,2]]], +[6738,[4873.02,17626.9,2.54313e-006],[[6379,2],[7074,2],[7075,2]]], [6739,[5122.95,17536.1,0],[[6380,2],[6381,2],[6742,2],[6739,2],[7076,2]]], [6740,[5186.39,17403.9,0],[[6381,2]]], [6741,[5215.1,17382.8,-3.8147e-006],[[6381,2],[6382,2]]], [6742,[5150.95,17486.6,0],[[6381,2],[6739,2],[7077,2],[6742,2]]], [6743,[5389.49,17202.6,0],[[6383,2],[6384,2],[7078,2]]], +[6744,[5801.71,16831.2,0],[[6385,2],[7079,2],[7080,2]]], [6745,[5614.1,16911.5,-7.62939e-006],[[6385,2],[6389,2],[7081,2]]], [6746,[5917.22,16414.7,0],[[6386,2]]], [6747,[6161.75,16510.7,7.62939e-006],[[6386,2],[7082,2]]], [6748,[5462.59,16306.1,0],[[6387,2],[6388,2],[6749,2]]], [6749,[5433.58,16285.8,3.8147e-006],[[6388,2],[6748,2]]], +[6750,[5276.2,16240.2,0],[[6388,2],[7083,2]]], [6751,[3441.59,16583.8,0],[[6390,2],[7084,2]]], [6752,[3350.23,16860.6,0],[[6391,2],[6752,2],[7085,2]]], [6753,[2239.9,16146,0],[[6394,2],[7086,2]]], [6754,[2352.38,16141.5,-5.08626e-006],[[6394,2],[6754,2],[7087,2]]], [6755,[2439.69,16574.7,0],[[6395,2],[7088,2]]], +[6756,[2453.78,16272.7,0],[[6396,2],[7087,2]]], [6757,[2287.66,16497.6,0],[[6396,2],[7089,2]]], [6758,[2284.17,16371.8,1.27157e-006],[[6396,2],[6758,2],[7090,2]]], [6759,[2860.86,17052.9,2.54313e-006],[[6397,2],[7091,2],[7092,2]]], [6760,[2781.59,17003.7,-7.62939e-006],[[6397,2],[7093,2]]], [6761,[3195.43,17173.2,0],[[6398,2],[7094,2],[7095,2]]], +[6762,[3096.55,17084.4,0],[[7091,2],[7095,2],[6398,2]]], [6763,[3778.25,16685.8,-7.62939e-006],[[6399,2]]], [6764,[3702.19,16686.5,0],[[6399,2],[7084,2],[7096,2],[7097,2]]], [6765,[1707.87,14896.7,-1.27157e-006],[[7407,2],[7973,2],[6403,2],[7974,2]]], [6766,[1539.93,14767.3,-6.35783e-007],[[6406,2],[6766,2],[7098,2]]], [6767,[1559.12,13985.7,0],[[6407,2],[6416,2],[6775,2]]], +[6768,[1727.85,14170.4,0],[[6407,2]]], [6769,[1433.82,12933.1,0],[[6409,2],[6412,2],[7099,2],[6770,2],[7100,2],[7101,2]]], [6770,[1359.57,12997.3,0],[[6409,2],[6410,2],[6769,2],[7099,2]]], [6771,[1324.93,13051.7,0],[[6410,2],[6771,2],[7102,2]]], [6772,[1311.83,13202.2,0],[[6411,2]]], [6773,[1588.14,12940,1.90735e-006],[[6413,2]]], +[6774,[1646.31,12852.4,3.8147e-007],[[6414,2],[7103,2],[7101,2],[6777,2],[7104,2],[7105,2]]], [6775,[1530.39,13951.5,0],[[6416,2],[6767,2],[7106,2]]], [6776,[1344.66,13672.4,-9.53674e-007],[[6418,2],[7107,2]]], [6777,[1732.69,12818.8,0],[[6419,2],[6774,2],[7104,2]]], [6778,[1880.7,12776.4,0],[[6420,2]]], [6779,[1944.64,12802.3,0],[[6422,2]]], +[6780,[7794.56,15454.9,-7.62939e-006],[[6424,2],[7108,2]]], [6781,[6864.01,15484.8,0],[[6426,2],[7109,2],[7110,2]]], [6782,[6888.22,15691.4,0],[[6426,2],[7111,2]]], [6783,[3833.33,11310.5,0],[[6428,2],[7112,2],[6783,2]]], [6784,[3951.27,11409.6,2.54313e-006],[[6428,2]]], [6785,[5874.07,15958.3,0],[[6431,2]]], +[6786,[6434.26,15542.7,7.62939e-006],[[6432,2],[7113,2]]], [6787,[6508.25,16104.2,0],[[6434,2],[7114,2],[7115,2]]], [6788,[6767.94,16114.4,0],[[6435,2],[7116,2],[7117,2]]], [6789,[5949.71,10785.7,0],[[6438,2]]], [6790,[6205.94,10836.6,0],[[6439,2],[6790,2]]], [6791,[6261.02,10573.5,0],[[6439,2],[7118,2]]], +[6792,[7051.83,11516,0],[[6440,2]]], [6793,[7205.54,11623.7,0],[[6440,2],[7119,2]]], [6794,[6713.37,10615.6,0],[[6441,2],[7120,2]]], [6795,[6727.82,10775.8,0],[[6441,2]]], [6796,[7419.77,10939.4,0],[[6442,2],[6796,2]]], [6797,[7283.54,10672,0],[[6443,2],[7121,2],[7122,2]]], +[6798,[7411.57,11239.6,0],[[6444,2],[7123,2]]], [6799,[7322.06,11301.9,1.90735e-006],[[6444,2],[6799,2],[7124,2]]], [6800,[7756.07,12015.5,1.90735e-006],[[6445,2],[7125,2],[6800,2],[7126,2]]], [6801,[7847.86,12339.7,7.62939e-006],[[6446,2],[7127,2],[6893,2],[7128,2]]], [6802,[7987.25,13197.4,0],[[6447,2],[6457,2]]], [6803,[7884.08,12624.4,-2.54313e-006],[[6448,2],[7129,2],[7130,2]]], +[6804,[8223.15,13022.3,0],[[6449,2],[6542,2],[6895,2]]], [6805,[8298.77,14856.1,0],[[6450,2],[7131,2],[7132,2]]], [6806,[8065.24,15076,0],[[6451,2],[7133,2]]], [6807,[8135.85,14222.4,-2.54313e-006],[[6452,2],[7134,2],[7135,2]]], [6808,[7946.37,14238.7,0],[[6452,2],[7136,2]]], [6809,[7780.7,14267.3,0],[[6453,2]]], +[6810,[8032.15,13571.1,0],[[6455,2],[7137,2],[7138,2]]], [6811,[8130.7,13352.7,0],[[6457,2],[7139,2],[7140,2]]], [6812,[8065.31,13489.1,0],[[6457,2],[6458,2],[7140,2]]], [6813,[5009.82,10108.8,0],[[6459,2],[7141,2],[6824,2]]], [6814,[6005.05,10478.1,0],[[6461,2],[7142,2]]], [6815,[5410.25,10053,0],[[6462,2],[7143,2],[7144,2]]], +[6816,[5612.58,10256.5,0],[[6463,2],[7145,2],[7146,2]]], [6817,[3993.21,10717.3,0],[[6464,2],[7147,2]]], [6818,[3813.15,10662.2,0],[[6464,2],[7148,2]]], [6819,[3831.88,10321.1,0],[[6465,2],[7149,2],[7150,2]]], [6820,[4445.44,10224.7,0],[[6466,2],[6469,2]]], [6821,[4091.46,10163.1,0],[[6466,2],[7151,2]]], +[6822,[3903.91,11110.6,1.52588e-006],[[6467,2],[6822,2],[7112,2],[7152,2],[7153,2]]], [6823,[3993.45,10919.3,0],[[6467,2],[7147,2]]], [6824,[4901.08,10060.3,0],[[6470,2],[6813,2]]], [6825,[4826.29,9834.36,0],[[6470,2],[7154,2],[7155,2]]], [6826,[12641.3,9815.09,0],[[6471,2]]], [6827,[12395.3,9945.62,0],[[6472,2],[7156,2]]], +[6828,[12547.2,9804.92,7.62939e-006],[[6472,2],[7157,2]]], [6829,[13609.7,10089.8,0],[[6473,2],[7158,2],[7159,2],[7160,2],[6834,2]]], [6830,[13179.2,9840.8,0],[[6474,2],[7161,2],[6830,2]]], [6831,[13392.5,9694.16,-7.62939e-006],[[6474,2],[7162,2]]], [6832,[14378.7,10824.6,0],[[6477,2],[7164,2]]], [6833,[13727.6,10503.7,7.62939e-006],[[6478,2],[6479,2]]], +[6834,[13696.2,10340.7,0],[[6479,2],[6829,2],[7165,2]]], [6835,[13860.8,10379.3,0],[[6479,2],[7166,2],[7167,2]]], [6836,[11923.9,9551.81,7.62939e-006],[[6482,2]]], [6837,[12370.1,9936.94,0],[[6484,2]]], [6838,[12027.1,8849.73,0],[[6486,2],[7168,2]]], [6839,[11675.8,8939.06,-7.62939e-006],[[6487,2],[6493,2],[7169,2],[6842,2]]], +[6840,[12272.6,9283.99,-2.54313e-006],[[6488,2],[7170,2],[7171,2]]], [6841,[11390.3,8806.72,-1.90735e-006],[[6491,2],[7172,2],[7173,2],[7174,2]]], [6842,[11607.7,8850.9,0],[[6491,2],[6839,2],[7169,2]]], [6843,[11587.9,9217.83,0],[[6492,2]]], [6844,[11067.7,9203.42,-1.90735e-006],[[6494,2],[6497,2],[6498,2],[6844,2]]], [6845,[11250.6,9280.2,2.54313e-006],[[6494,2],[6498,2],[7175,2]]], +[6846,[10597,9265.39,5.08626e-006],[[6495,2],[6532,2],[7176,2]]], [6847,[10774.8,9186.63,0],[[6497,2],[6847,2]]], [6848,[10841.5,9134.45,0],[[6497,2],[7177,2]]], [6849,[13816.4,11909,0],[[6475,2],[6499,2],[7163,2]]], [6850,[13799.2,12096.2,0],[[6499,2],[7178,2],[6850,2],[7179,2],[6851,2]]], [6851,[13835,12317.5,-6.35783e-007],[[6500,2],[6850,2],[7180,2],[7179,2],[7181,2]]], +[6852,[13775.6,12332.7,-4.76837e-007],[[6500,2]]], [6853,[9967.1,14277.7,7.62939e-006],[[6504,2]]], [6854,[9371.47,14569.8,0],[[6506,2],[7182,2]]], [6855,[11639.2,14596.9,-4.76837e-007],[[6508,2],[6509,2],[6528,2],[6856,2]]], [6856,[11691.2,14636.2,0],[[6509,2],[6528,2],[6855,2],[6873,2]]], [6857,[11659,14741.9,0],[[6509,2]]], +[6858,[11633.8,14898.9,3.17891e-007],[[6511,2],[6512,2],[6858,2]]], [6859,[11702.1,14743.3,0],[[6511,2],[6873,2],[6860,2],[6859,2]]], [6860,[11706.3,14770.1,7.15256e-007],[[6859,2],[6860,2],[6511,2]]], [6861,[11511.5,14870.9,1.27157e-006],[[6512,2]]], [6862,[11491.8,14944.9,0],[[6512,2],[6519,2],[6862,2],[7183,2],[6866,2]]], [6863,[11364.3,14892.9,-1.27157e-006],[[6515,2]]], +[6864,[11409.1,15019.1,-1.36239e-007],[[6516,2],[6866,2],[6865,2],[7184,2],[6864,2],[7185,2],[7183,2],[7186,2]]], [6865,[11355,15020.3,0],[[6516,2],[6864,2],[7187,2]]], [6866,[11439.6,14940.6,0],[[6518,2],[6519,2],[6862,2],[6864,2],[7183,2]]], [6867,[11210.7,15004.2,0],[[6522,2],[7188,2]]], [6868,[9985.73,14592.6,0],[[6523,2],[6868,2]]], [6869,[10135.6,14395.4,-7.62939e-006],[[6524,2]]], +[6870,[9860.91,14474.2,7.62939e-006],[[6525,2]]], [6871,[9844.95,15125.7,1.90735e-006],[[6526,2],[7189,2]]], [6872,[10127.9,14904,-4.76837e-007],[[6527,2],[7190,2]]], [6873,[11735.6,14605.4,0],[[6528,2],[6531,2],[6856,2],[6859,2]]], [6874,[11672.3,14287.1,0],[[6529,2]]], [6875,[11549.9,14324.6,-1.90735e-006],[[6529,2]]], +[6876,[11565.6,14404.6,0],[[6529,2],[6876,2],[7191,2]]], [6877,[11625.3,14409,1.90735e-006],[[6529,2]]], [6878,[11665.7,14370,0],[[6529,2]]], [6879,[11733.4,14452.9,-9.53674e-007],[[6531,2]]], [6880,[11740.2,14500,0],[[6531,2]]], [6881,[10414.3,9371.29,0],[[6532,2]]], +[6882,[9684.53,9125.01,0],[[6534,2],[6561,2],[6916,2]]], [6883,[9824.49,9010.99,0],[[6534,2],[7192,2]]], [6884,[10098.2,8960.6,2.54313e-006],[[6535,2],[7193,2],[7194,2]]], [6885,[7867.44,11708.2,0],[[6536,2],[7125,2],[7195,2],[7196,2]]], [6886,[8028.52,11652.5,7.62939e-006],[[6536,2],[6537,2],[6888,2]]], [6887,[8062.26,11464.5,0],[[6537,2],[6548,2],[6902,2],[6887,2],[7197,2],[6901,2]]], +[6888,[8043.42,11641.5,0],[[6537,2],[6886,2],[7197,2]]], [6889,[8413.35,11664.3,-1.52588e-005],[[6538,2],[6551,2]]], [6890,[8295.61,11546.4,0],[[6538,2],[6905,2]]], [6891,[8375.04,12448.6,7.62939e-006],[[6539,2],[6898,2]]], [6892,[8177.05,12432.2,0],[[6539,2],[6540,2]]], [6893,[8003.16,12343.8,-2.54313e-006],[[6540,2],[6801,2],[7198,2],[7199,2],[7127,2]]], +[6894,[8692.56,13658.5,-2.54313e-006],[[6541,2],[7200,2],[6894,2]]], [6895,[8278.83,13002.4,0],[[6542,2],[6543,2],[6804,2],[7201,2],[7202,2]]], [6896,[8957.86,14214.3,-7.62939e-006],[[6544,2],[7203,2]]], [6897,[8963.26,13922.7,7.62939e-006],[[6544,2],[6897,2]]], [6898,[8413.16,12565.8,0],[[6546,2],[6891,2],[7204,2],[6899,2]]], [6899,[8527.9,12722.9,0],[[6547,2],[6898,2],[7205,2]]], +[6900,[7856.12,11304.8,0],[[6548,2],[7206,2],[7207,2]]], [6901,[7970.6,11431.3,2.54313e-006],[[6548,2],[6887,2],[7196,2],[7208,2]]], [6902,[8049.82,11393,5.72205e-006],[[6548,2],[6552,2],[6887,2],[6902,2]]], [6903,[7610.96,10462.9,2.54313e-006],[[6549,2],[7209,2],[7210,2]]], [6904,[7814.97,10404.1,7.62939e-006],[[6549,2],[7211,2]]], [6905,[8282.78,11492.6,0],[[6552,2],[6890,2]]], +[6906,[8530.56,9771.55,0],[[6553,2],[7212,2]]], [6907,[8710.22,9704.71,1.52588e-005],[[6554,2],[7213,2]]], [6908,[8831.62,9782.8,0],[[6554,2],[7214,2]]], [6909,[8405.15,9993.83,-2.54313e-006],[[6555,2],[7215,2],[6910,2],[7216,2]]], [6910,[8284.29,10093.8,0],[[6556,2],[6909,2],[7215,2],[7217,2]]], [6911,[8370.43,10230,0],[[6557,2],[6556,2]]], +[6912,[8280.23,10361,0],[[6558,2]]], [6913,[9068.57,9086.68,0],[[6559,2],[7218,2]]], [6914,[9213.64,9070.19,0],[[6559,2],[7219,2],[7220,2],[7221,2]]], [6915,[9499.25,9166.45,4.57764e-006],[[6560,2],[6561,2],[7222,2],[7223,2],[7224,2]]], [6916,[9621.21,9093.53,0],[[6561,2],[6882,2],[7222,2]]], [6917,[8976.36,9660.17,0],[[6562,2],[7225,2]]], +[6918,[14552.3,8153.01,0],[[6563,2]]], [6919,[14504.5,8606.28,0],[[6564,2],[7226,2]]], [6920,[14370.9,8462,-2.54313e-006],[[6564,2],[7227,2],[7228,2]]], [6921,[14672.8,9075.29,2.54313e-006],[[6565,2],[7229,2],[7230,2]]], [6922,[14641,9249.23,3.8147e-006],[[6565,2],[7231,2],[6922,2],[7232,2]]], [6923,[15243.8,8653.13,2.54313e-006],[[6566,2]]], +[6924,[15246.3,8829.97,-2.54313e-006],[[6194,2]]], [6925,[15271.4,10113.1,-3.8147e-006],[[6567,2],[7233,2]]], [6926,[15087.9,10217.9,0],[[6567,2],[7234,2]]], [6927,[14988.9,10106,0],[[6567,2],[7235,2],[7236,2]]], [6928,[15070.5,9531.47,-3.8147e-006],[[6568,2]]], [6929,[14888.8,9686.7,7.62939e-007],[[6568,2],[6929,2],[7237,2],[7238,2],[7239,2]]], +[6930,[16207.1,10302.2,0],[[6570,2],[7240,2],[7241,2]]], [6931,[16453.8,10261.8,-3.8147e-006],[[6570,2]]], [6932,[16476.2,10403.6,3.8147e-006],[[6570,2],[7242,2]]], [6933,[15872.9,9975.42,-7.62939e-006],[[6572,2]]], [6934,[15794.2,10077.1,0],[[6572,2],[7243,2]]], [6935,[16905,10417.9,3.17891e-007],[[6573,2],[6575,2],[7244,2],[7245,2],[6936,2]]], +[6936,[16829.8,10418.1,0],[[6573,2],[6935,2],[7245,2],[7246,2],[7247,2]]], [6937,[17007.8,10336.1,1.58946e-007],[[6575,2],[7248,2],[7249,2],[6938,2]]], [6938,[16963.4,10374.9,0],[[6575,2],[6937,2],[7249,2]]], [6939,[17710.3,10214.8,0],[[6577,2]]], [6940,[17652.6,10189,0],[[6578,2],[7250,2],[7251,2],[7252,2]]], [6941,[17747.5,10310.7,0],[[6579,2],[7253,2],[7254,2]]], +[6942,[17803.5,10180.7,0],[[6579,2]]], [6943,[17970.5,10160.4,0],[[6581,2]]], [6944,[18011.8,10109.8,0],[[6581,2],[6582,2],[6944,2]]], [6945,[17693.3,10131.4,0],[[6584,2]]], [6946,[16891.7,2530.24,2.38419e-007],[[6586,2],[7255,2],[7256,2],[6957,2]]], [6947,[16796.3,2451.61,0],[[6586,2],[7257,2],[7258,2]]], +[6948,[16588.6,2162.52,0],[[6588,2],[7259,2]]], [6949,[15861.4,2209.48,3.17891e-007],[[6589,2],[6953,2],[7260,2]]], [6950,[16190.4,1756.22,9.53674e-007],[[6590,2],[7261,2]]], [6951,[15457.5,2363.84,-1.90735e-006],[[6591,2],[7262,2]]], [6952,[15764.2,2297.68,0],[[6592,2]]], [6953,[15731.2,2217.05,0],[[6592,2],[6949,2],[6953,2],[7263,2]]], +[6954,[15651.2,2276.65,9.53674e-007],[[6592,2]]], [6955,[16352.3,2766.08,0],[[6593,2],[6955,2],[7264,2]]], [6956,[16242.1,2953.21,0],[[6594,2],[7265,2],[7264,2],[6956,2]]], [6957,[16940.3,2662.43,0],[[6596,2],[6599,2],[6946,2],[7266,2],[7267,2],[7255,2],[7268,2]]], [6958,[16975.7,2797.95,-2.38419e-007],[[6599,2]]], [6959,[14406.6,3091.82,9.53674e-007],[[6600,2]]], +[6960,[15044.8,2390.6,0],[[6601,2],[7269,2],[7270,2]]], [6961,[14514.2,2440.88,0],[[6602,2],[6603,2],[6961,2],[6962,2]]], [6962,[14541.2,2264.91,0],[[6604,2],[6961,2]]], [6963,[14691.3,2102.45,0],[[6604,2],[7271,2]]], [6964,[14180.2,6697.89,7.62939e-006],[[6605,2]]], [6965,[13567.8,6673.08,0],[[6606,2],[7272,2],[6974,2]]], +[6966,[12557.2,4454.78,0],[[6607,2],[7002,2]]], [6967,[12168.2,4876.89,1.27157e-006],[[6608,2],[6967,2]]], [6968,[12725.3,5958.46,0],[[6609,2],[7273,2],[7274,2]]], [6969,[12150,5565.69,0],[[6612,2],[6969,2]]], [6970,[13926.5,7497.13,0],[[6616,2],[6618,2],[6619,2]]], [6971,[13707.9,7641.7,0],[[6618,2],[7275,2]]], +[6972,[13955,7219.69,0],[[6619,2],[7276,2]]], [6973,[13499.1,7135.06,0],[[6620,2]]], [6974,[13615.9,6755.62,0],[[6621,2],[6965,2],[7277,2]]], [6975,[13514.6,6971.71,0],[[6621,2],[6975,2]]], [6976,[10101.6,5802,0],[[6623,2],[6977,2]]], [6977,[10093.6,5795.26,0],[[6976,2],[6623,2]]], +[6978,[10208,5583.98,0],[[6624,2],[7278,2],[6992,2],[7279,2]]], [6979,[10073.8,6060.96,-7.62939e-006],[[6625,2],[7280,2]]], [6980,[9906.26,5913.96,0],[[6625,2],[6656,2]]], [6981,[8911.7,3966.73,0],[[6626,2],[7281,2]]], [6982,[8583,4143.15,0],[[6627,2]]], [6983,[11764.1,6247.1,0],[[6630,2],[7284,2],[7285,2]]], +[6984,[12088.3,5726.44,0],[[6631,2]]], [6985,[11930.8,5194.5,0],[[6632,2]]], [6986,[11454.4,6036.07,0],[[6633,2],[7286,2]]], [6987,[11210.6,5828.49,0],[[6634,2],[7287,2]]], [6988,[11361.3,5873.09,0],[[6634,2],[7288,2]]], [6989,[11173.3,5166.51,0],[[6635,2]]], +[6990,[11266.5,5080.55,0],[[6635,2],[7289,2]]], [6991,[10485.3,5744.86,0],[[6636,2],[7290,2]]], [6992,[10308.7,5575.99,0],[[6636,2],[6978,2],[7278,2]]], [6993,[14075.5,1900.83,0],[[6638,2],[7291,2]]], [6994,[13702.3,1915.06,0],[[6639,2],[7292,2]]], [6995,[13605.8,2128.88,0],[[6640,2],[7293,2]]], +[6996,[13443.1,1696.17,0],[[6641,2],[7294,2]]], [6997,[13305.9,1121.37,-9.53674e-007],[[6642,2],[6647,2],[7295,2]]], [6998,[13205.9,1890.57,0],[[6643,2]]], [6999,[13052.1,872.205,0],[[6645,2],[7000,2],[7296,2]]], [7000,[13123.3,875.385,6.35783e-007],[[6648,2],[6999,2],[7297,2]]], [7001,[13200.6,978.024,3.17891e-007],[[6648,2],[7001,2],[7298,2]]], +[7002,[12541.4,4347.86,0],[[6650,2],[6966,2]]], [7003,[7797.57,3347.83,1.90735e-006],[[6652,2]]], [7004,[9715.51,6140.31,0],[[6654,2],[7299,2]]], [7005,[9654.87,6199.37,0],[[6654,2]]], [7006,[9975.15,6776.23,-5.08626e-006],[[6660,2],[7300,2],[7301,2]]], [7007,[9848.74,7180.21,-7.62939e-006],[[6661,2],[7302,2]]], +[7008,[9028.54,6647.2,0],[[6663,2]]], [7009,[9236.43,7294.11,0],[[6665,2],[7303,2]]], [7010,[9238.78,7080.08,7.62939e-006],[[6665,2],[7304,2]]], [7011,[9450.14,7272.24,0],[[6666,2],[7305,2]]], [7012,[7588.9,3337.53,9.53674e-007],[[6669,2]]], [7013,[5014.11,4471.64,6.35783e-007],[[6670,2],[7306,2],[7307,2]]], +[7014,[7135.63,8882.9,0],[[6672,2],[7308,2]]], [7015,[7493.88,8422.02,0],[[6673,2],[6674,2]]], [7016,[6089.22,8272.15,0],[[6675,2],[7309,2],[7310,2]]], [7017,[5931.29,8175.65,0],[[6676,2]]], [7018,[5974.38,8274.23,0],[[6676,2],[7311,2]]], [7019,[5904.95,8124.74,0],[[6676,2],[6678,2],[7019,2]]], +[7020,[5938.89,8075.52,-7.62939e-006],[[6677,2]]], [7021,[5607.75,8133.64,2.54313e-006],[[6679,2],[7312,2],[7021,2],[7313,2]]], [7022,[5456.6,7759.09,0],[[6680,2],[7314,2],[7023,2],[7022,2]]], [7023,[5469.36,7756.7,0],[[7022,2],[7609,2],[7023,2],[6680,2]]], [7024,[7615.07,8620.74,0],[[6682,2],[7315,2]]], [7025,[8899.27,8441.59,2.54313e-006],[[6683,2],[7316,2],[7317,2]]], +[7026,[8931.36,8289.53,-7.62939e-006],[[6684,2]]], [7027,[8995.97,8234.57,1.90735e-006],[[6686,2],[7318,2],[7319,2],[7320,2]]], [7028,[8096.77,8813.44,0],[[6687,2],[6688,2]]], [7029,[7767.51,8953.13,-3.8147e-006],[[6688,2],[7029,2],[7321,2],[7322,2]]], [7030,[8169.23,8925,0],[[6688,2],[7323,2],[7324,2],[7325,2],[7031,2]]], [7031,[8212.31,8821.83,0],[[6689,2],[7030,2]]], +[7032,[8501.18,8785.84,0],[[6690,2],[7326,2],[7324,2]]], [7033,[8669.02,8685.44,0],[[6692,2],[7327,2],[7328,2]]], [7034,[8692.44,8383.34,0],[[6693,2],[7329,2]]], [7035,[4885.29,4749.41,0],[[6695,2],[7330,2]]], [7036,[4693.92,4963.9,0],[[6696,2],[6706,2],[7331,2]]], [7037,[4681.82,8200.32,5.08626e-006],[[6698,2],[7037,2],[7332,2]]], +[7038,[4819.86,8027.89,0],[[6698,2],[7333,2]]], [7039,[4724.99,7835.47,0],[[6698,2],[7334,2]]], [7040,[4361.48,8456.06,0],[[6699,2],[6712,2],[7040,2]]], [7041,[4388.98,8322.87,-1.27157e-006],[[6699,2]]], [7042,[5297.76,7764.63,0],[[6702,2],[7335,2],[7042,2],[7336,2],[7314,2]]], [7043,[5232.05,7756.2,0],[[6702,2]]], +[7044,[4260.51,4550.19,2.72478e-007],[[6704,2],[7337,2],[7338,2],[7339,2],[7340,2],[7341,2],[7342,2]]], [7045,[4659.72,4653.52,-3.17891e-007],[[6705,2],[7343,2],[7307,2],[7344,2]]], [7046,[4134.92,4759.16,0],[[6708,2],[7345,2]]], [7047,[3495.86,4875.46,9.53674e-007],[[6710,2],[7346,2]]], [7048,[3623.33,4986.25,-1.27157e-006],[[6711,2],[7347,2],[7346,2]]], [7049,[4555.37,8893.57,-9.53674e-007],[[6713,2],[7348,2],[7349,2],[7350,2]]], +[7050,[4605.93,8753,0],[[6713,2],[7351,2]]], [7051,[4069.75,9128.88,0],[[6714,2],[7352,2]]], [7052,[2629.69,10445.2,0],[[6715,2],[7353,2]]], [7053,[2511.73,10645.9,0],[[6715,2],[7354,2]]], [7054,[1949.25,10668.9,3.17891e-007],[[6716,2],[7056,2],[7355,2]]], [7055,[1880.61,10797.6,0],[[6716,2],[7356,2],[7355,2],[7357,2]]], +[7056,[2048.99,10641.1,6.35783e-007],[[6717,2],[7054,2],[7056,2]]], [7057,[1945.14,10497.6,0],[[6717,2],[7057,2]]], [7058,[3637.4,10122.2,0],[[6720,2],[7358,2],[7064,2]]], [7059,[3344.1,9813.11,0],[[6721,2]]], [7060,[3296.8,9477.04,0],[[6723,2],[6727,2],[7359,2],[7065,2]]], [7061,[3542.58,9584.46,0],[[6723,2],[7062,2],[7061,2],[7360,2]]], +[7062,[3523.01,9586.93,0],[[7061,2],[7646,2],[7062,2],[6723,2]]], [7063,[3460.33,10375,1.27157e-006],[[6724,2],[7361,2],[7362,2]]], [7064,[3565.49,10160.7,-1.27157e-006],[[6725,2],[7058,2],[7358,2],[7363,2]]], [7065,[3261.51,9433.26,0],[[6727,2],[7060,2],[7364,2]]], [7066,[1849.61,12156.6,-1.58946e-007],[[6729,2],[7365,2],[7067,2],[7366,2],[7066,2],[7367,2],[7368,2]]], [7067,[1745.39,12103.5,-1.90735e-007],[[6729,2],[7066,2],[7369,2],[7067,2],[7370,2],[7371,2]]], +[7068,[1934.65,11941,0],[[6730,2]]], [7069,[1781.51,12589,6.35783e-007],[[6731,2],[7372,2],[7373,2]]], [7070,[1827.36,12505.2,0],[[6731,2],[7374,2]]], [7071,[2842.42,11683.3,6.35783e-007],[[6733,2],[7375,2],[7376,2]]], [7072,[2388.79,11803.8,0],[[6734,2],[7377,2]]], [7073,[4339.35,17414.4,-2.54313e-006],[[6736,2],[7378,2],[7379,2]]], +[7074,[4866.19,17784,7.62939e-006],[[6738,2],[7380,2]]], [7075,[4986.44,17667.7,0],[[6738,2],[7381,2]]], [7076,[5108.3,17644.5,0],[[6739,2],[7382,2],[7381,2]]], [7077,[5152.89,17502.2,-7.62939e-006],[[6742,2],[7383,2]]], [7078,[5487.33,17314.4,0],[[6743,2],[7384,2]]], [7079,[5902.92,16914,0],[[6744,2],[7079,2],[7385,2],[7386,2],[7387,2]]], +[7080,[5783.56,16844.2,0],[[6744,2]]], [7081,[5563.84,16936.8,3.8147e-006],[[6745,2]]], [7082,[6232.38,16521.6,-9.53674e-007],[[6747,2],[7388,2],[7389,2],[7390,2]]], [7083,[5271.85,16223.5,0],[[6750,2],[7391,2],[7392,2]]], [7084,[3563.41,16602.8,7.62939e-006],[[6751,2],[6764,2]]], [7085,[3371.84,17012.4,-1.90735e-006],[[6752,2],[7393,2],[7085,2],[7394,2]]], +[7086,[2149.92,16158.8,3.8147e-006],[[6753,2],[7395,2]]], [7087,[2412.4,16217.5,0],[[6754,2],[6756,2]]], [7088,[2454.26,16645.9,0],[[6755,2],[7396,2]]], [7089,[2335.14,16609.9,-2.54313e-006],[[6757,2],[7397,2],[7398,2]]], [7090,[2231.92,16395.4,0],[[6758,2],[7090,2],[7399,2]]], [7091,[2923.3,17089.7,-2.54313e-006],[[6759,2],[7091,2],[6762,2]]], +[7092,[2809.17,17136.8,-2.54313e-006],[[6759,2],[7400,2],[7401,2]]], [7093,[2739.46,17045.3,0],[[6760,2]]], [7094,[3230.44,17223.3,0],[[6761,2],[7402,2],[7403,2],[7404,2]]], [7095,[3133.86,17076.4,0],[[6762,2],[6761,2]]], [7096,[3678.22,16772.8,0],[[6764,2],[7405,2],[7096,2],[7406,2]]], [7097,[3683.28,16737.7,0],[[7405,2],[6764,2]]], +[7098,[1549.79,14846.9,0],[[6766,2],[7407,2],[7408,2]]], [7099,[1361.58,12932,0],[[6769,2],[6770,2],[7100,2]]], [7100,[1374.99,12888.2,-9.53674e-007],[[6769,2],[7099,2],[7409,2]]], [7101,[1502.12,12800.2,0],[[6769,2],[6774,2],[7409,2],[7103,2],[7105,2],[7410,2],[7372,2],[7411,2]]], [7102,[1319,13094,-2.38419e-007],[[6771,2]]], [7103,[1554.13,12841.4,0],[[6774,2],[7101,2],[7412,2]]], +[7104,[1677.72,12784.6,-9.53674e-007],[[6774,2],[6777,2],[7105,2],[7413,2]]], [7105,[1585.62,12800.5,-4.76837e-007],[[6774,2],[7101,2],[7104,2],[7105,2]]], [7106,[1432.57,14079,0],[[6775,2],[7414,2]]], [7107,[1321.76,13735.2,0],[[6776,2],[7415,2]]], [7108,[7801.46,15470.5,0],[[6780,2],[7416,2],[7417,2]]], [7109,[6872.42,15439.1,0],[[6781,2]]], +[7110,[6871.24,15502.6,0],[[6781,2]]], [7111,[6883.14,15721.5,2.54313e-006],[[6782,2],[7418,2],[7419,2]]], [7112,[3840.19,11217.8,2.54313e-006],[[6783,2],[6822,2],[7420,2]]], [7113,[6394.45,15573.1,0],[[6786,2]]], [7114,[6588.22,16233.8,-7.62939e-006],[[6787,2],[7421,2]]], [7115,[6444.78,16106.8,2.54313e-006],[[6787,2],[7422,2],[7115,2],[7423,2]]], +[7116,[6896.67,16057.2,0],[[6788,2],[7424,2],[7425,2]]], [7117,[6731.61,16165.8,0],[[6788,2],[7426,2],[7421,2]]], [7118,[6264.04,10559.9,0],[[6791,2],[7142,2],[7427,2]]], [7119,[7254.59,11651.4,-2.54313e-006],[[6793,2],[7428,2],[7429,2]]], [7120,[6568.79,10594.5,0],[[6794,2],[7430,2],[7427,2]]], [7121,[7421.08,10577.5,0],[[6797,2],[7210,2]]], +[7122,[7146.49,10599.9,0],[[6797,2],[7431,2]]], [7123,[7529.13,11239.4,-7.62939e-006],[[6798,2],[7206,2]]], [7124,[7433.99,11379.9,0],[[6799,2],[7432,2]]], [7125,[7816.1,11855.8,0],[[6800,2],[6885,2]]], [7126,[7628.99,11973.7,0],[[6800,2],[7433,2]]], [7127,[7920.28,12350,0],[[6801,2],[6893,2],[7434,2]]], +[7128,[7886.47,12422.3,-7.62939e-006],[[6801,2],[7129,2]]], [7129,[7898.62,12563.7,0],[[6803,2],[7128,2],[7435,2],[7198,2],[7436,2]]], [7130,[7791.2,12582.9,0],[[6803,2]]], [7131,[8425.62,14938.1,0],[[6805,2],[7437,2]]], [7132,[8443.64,14895.9,0],[[6805,2],[7438,2],[7437,2]]], [7133,[8152.21,15178.1,0],[[6806,2],[7439,2]]], +[7134,[8176.65,14275.4,0],[[6807,2],[7134,2],[7440,2]]], [7135,[8244.43,14100.3,0],[[6807,2],[7441,2]]], [7136,[7906.42,14300,0],[[6808,2]]], [7137,[8078.9,13658.2,0],[[6810,2]]], [7138,[8183.74,13536.6,7.62939e-006],[[6810,2],[7442,2]]], [7139,[8153.18,13204.7,7.62939e-006],[[6811,2],[7443,2]]], +[7140,[8176.69,13425,0],[[6811,2],[6812,2],[7442,2],[7140,2]]], [7141,[5142.01,10103.1,0],[[6813,2],[7444,2]]], [7142,[6123.56,10522,0],[[6814,2],[7118,2]]], [7143,[5383.17,9900.68,0],[[6815,2],[7445,2]]], [7144,[5259.63,10002.4,0],[[6815,2],[7446,2]]], [7145,[5694.86,10265.3,0],[[6816,2]]], +[7146,[5677.39,10117.9,0],[[6816,2],[7447,2]]], [7147,[3978.36,10822.9,3.8147e-006],[[6817,2],[6823,2]]], [7148,[3799.4,10666.3,-3.8147e-006],[[6818,2]]], [7149,[3747.12,10336.3,0],[[6819,2]]], [7150,[3812.75,10164.7,0],[[6819,2],[7448,2],[7358,2]]], [7151,[3946.48,10152.8,0],[[6821,2],[7448,2]]], +[7152,[3925.74,11053.9,-7.62939e-006],[[6822,2]]], [7153,[3741.66,11030.2,0],[[6822,2],[7449,2]]], [7154,[4995.21,9831.09,0],[[6825,2],[7450,2]]], [7155,[4882.38,9681.25,0],[[6825,2],[7451,2]]], [7156,[12412.9,9841.32,0],[[6827,2]]], [7157,[12573.2,9743,0],[[6828,2]]], +[7158,[13565.5,10147,0],[[6829,2]]], [7159,[13593.3,9992.42,7.62939e-006],[[6829,2]]], [7160,[13727.1,10093.1,0],[[6829,2],[7452,2],[7453,2]]], [7161,[13089.8,9783.24,0],[[6830,2],[7454,2],[7455,2]]], [7162,[13465,9567.1,0],[[6831,2],[7456,2],[7457,2]]], [7163,[13944,11798,-1.90735e-006],[[6849,2],[7458,2],[7459,2],[7163,2],[7460,2]]], +[7164,[14494.6,10809.6,0],[[6832,2],[7461,2]]], [7165,[13759.9,10339.5,7.62939e-006],[[6834,2]]], [7166,[13864.7,10233.7,7.62939e-006],[[6835,2],[7452,2]]], [7167,[13874.3,10417.2,0],[[6835,2]]], [7168,[12114.8,8690.05,0],[[6838,2],[7462,2]]], [7169,[11627.6,8848.88,0],[[6839,2],[6842,2],[7463,2]]], +[7170,[12250,9122.82,0],[[6840,2],[7464,2],[7465,2]]], [7171,[12409.4,9325.13,-2.54313e-006],[[6840,2],[7466,2],[7467,2]]], [7172,[11255.7,8939.63,0],[[6841,2],[7468,2]]], [7173,[11345.5,8694.92,1.90735e-006],[[6841,2],[7469,2],[7470,2],[7471,2]]], [7174,[11503.8,8754.7,-7.62939e-006],[[6841,2]]], [7175,[11304.7,9433.03,0],[[6845,2],[7472,2]]], +[7176,[10556.3,9111.71,0],[[6846,2],[7473,2]]], [7177,[10799.7,9014.61,0],[[6848,2],[7474,2]]], [7178,[13790,12071.2,0],[[6850,2]]], [7179,[13831.2,12256.2,0],[[6850,2],[6851,2]]], [7180,[13966,12293.3,0],[[6851,2],[7475,2],[7180,2],[7476,2]]], [7181,[13928.3,12290,0],[[7475,2],[6851,2]]], +[7182,[9260.64,14647.8,0],[[6854,2],[7477,2],[7478,2]]], [7183,[11477.7,14960.2,0],[[6862,2],[6864,2],[6866,2],[7183,2]]], [7184,[11396.1,15067.2,-9.53674e-008],[[6864,2],[7479,2],[7187,2],[7184,2],[7480,2],[7186,2]]], [7185,[11455,14986.1,0],[[6864,2]]], [7186,[11432.3,15051.5,1.19209e-007],[[6864,2],[7184,2]]], [7187,[11304,15064,0],[[6865,2],[7184,2],[7481,2],[7482,2]]], +[7188,[11246.1,15007.1,-6.35783e-007],[[6867,2],[7483,2],[7481,2],[7188,2]]], [7189,[9742.7,15226.2,0],[[6871,2],[7484,2]]], [7190,[10036.7,15009.2,0],[[6872,2],[7485,2]]], [7191,[11547,14400.5,0],[[6876,2]]], [7192,[9787.7,8900.05,-2.54313e-006],[[6883,2],[7486,2],[7487,2]]], [7193,[9970.05,8865.23,0],[[6884,2],[7487,2],[7488,2]]], +[7194,[10255,8845.39,0],[[6884,2],[7489,2]]], [7195,[7829.06,11707.4,-2.54313e-006],[[6885,2],[7490,2],[7195,2]]], [7196,[7927.39,11528.8,0],[[6885,2],[6901,2]]], [7197,[7999.8,11483.2,7.62939e-006],[[6887,2],[6888,2]]], [7198,[8011.09,12542.9,-7.62939e-006],[[6893,2],[7129,2],[7435,2]]], [7199,[7909.05,12336.7,0],[[6893,2],[7491,2],[7199,2]]], +[7200,[8689.73,13800.6,0],[[6894,2],[7492,2],[7200,2],[7493,2]]], [7201,[8199.05,12847.5,0],[[6895,2],[7494,2]]], [7202,[8335.48,12964.8,-2.54313e-006],[[6895,2],[7495,2],[7496,2]]], [7203,[8870.52,14326.4,0],[[6896,2],[7497,2],[7498,2]]], [7204,[8276.16,12551.4,0],[[6898,2],[7499,2],[7500,2]]], [7205,[8627.33,12791,-5.08626e-006],[[6899,2],[7501,2],[7502,2]]], +[7206,[7713.38,11265.4,2.54313e-006],[[6900,2],[7123,2],[7503,2]]], [7207,[7859.64,11345,0],[[6900,2]]], [7208,[7992.02,11485,0],[[6901,2]]], [7209,[7473.94,10350.8,7.62939e-006],[[6903,2],[7504,2]]], [7210,[7524.75,10527,0],[[6903,2],[7121,2]]], [7211,[7921.88,10314.9,0],[[6904,2],[7505,2]]], +[7212,[8412.76,9680.13,0],[[6906,2],[7506,2]]], [7213,[8648.08,9596.18,-1.52588e-005],[[6907,2],[7507,2]]], [7214,[8893.61,9781.63,0],[[6908,2]]], [7215,[8280.81,10030.3,0],[[6909,2],[6910,2],[7508,2],[7509,2]]], [7216,[8484.21,10116.4,0],[[6909,2],[7510,2]]], [7217,[8393.49,10131.3,0],[[6910,2],[7510,2],[6557,2]]], +[7218,[8972.45,9102.04,-2.54313e-006],[[6913,2],[7511,2],[7512,2]]], [7219,[9113.06,8984.17,-2.54313e-006],[[6914,2],[7513,2],[7514,2]]], [7220,[9358.75,9072.39,-7.62939e-006],[[6914,2],[7222,2]]], [7221,[9187.47,8906.46,0],[[6914,2],[7515,2]]], [7222,[9493.54,9105.75,0],[[6915,2],[6916,2],[7220,2]]], [7223,[9559.64,9296.8,0],[[6915,2],[7224,2]]], +[7224,[9500.52,9292.19,0],[[6915,2],[7223,2]]], [7225,[8980.63,9531.4,0],[[6917,2],[7516,2]]], [7226,[14526,8764.77,0],[[6919,2],[7517,2],[7230,2]]], [7227,[14214.4,8548.2,0],[[6920,2],[7518,2]]], [7228,[14335.4,8403.42,-7.62939e-006],[[6920,2]]], [7229,[14599.8,9122.09,0],[[6921,2],[7519,2],[7229,2]]], +[7230,[14649.2,8908.64,0],[[6921,2],[7226,2],[7520,2],[7521,2]]], [7231,[14517,9315.47,-3.8147e-006],[[6922,2],[7522,2],[7231,2],[7523,2]]], [7232,[14622.6,9191.7,0],[[6922,2]]], [7233,[15411.7,10123.9,0],[[6925,2],[7524,2]]], [7234,[15128.6,10311.6,0],[[6926,2],[7525,2],[7526,2]]], [7235,[14975.9,10174.2,0],[[6927,2]]], +[7236,[14858.3,10091.6,9.53674e-007],[[6927,2],[7527,2],[7528,2],[7529,2]]], [7237,[14915.8,9617.14,-3.8147e-006],[[6929,2],[7530,2]]], [7238,[14690,9677.09,0],[[6929,2],[7531,2],[7532,2]]], [7239,[14867.1,9748.1,1.27157e-006],[[6929,2],[7239,2],[7533,2]]], [7240,[16209,10387.8,-1.27157e-006],[[6930,2],[7534,2],[7535,2]]], [7241,[16096.4,10299.3,-3.8147e-006],[[6930,2]]], +[7242,[16621.8,10478.2,0],[[6932,2],[7536,2],[7247,2]]], [7243,[15773.7,10092.6,0],[[6934,2],[7537,2],[7538,2]]], [7244,[16970.3,10391.6,0],[[6935,2]]], [7245,[16864.6,10471.7,0],[[6935,2],[6936,2],[7539,2],[7247,2]]], [7246,[16856.3,10360.8,0],[[6936,2]]], [7247,[16755.1,10461.4,-2.38419e-007],[[6936,2],[7242,2],[7245,2],[7539,2],[7540,2],[7536,2]]], +[7248,[17076.4,10296.6,0],[[6937,2],[7541,2],[7542,2]]], [7249,[17022.6,10370.2,0],[[6937,2],[6938,2],[7543,2]]], [7250,[17596.3,10283.4,-1.90735e-006],[[6940,2],[7544,2]]], [7251,[17630.9,10167.9,-6.35783e-007],[[6940,2],[7251,2],[7545,2]]], [7252,[17564.5,10239.1,0],[[6940,2],[7546,2]]], [7253,[17725.2,10371.3,0],[[6941,2],[7253,2],[7547,2]]], +[7254,[17734,10345.2,0],[[6941,2]]], [7255,[16984.3,2562.93,7.94729e-008],[[6946,2],[6957,2],[7268,2]]], [7256,[16909.9,2472.57,0],[[6946,2],[7256,2],[7548,2],[7549,2],[7550,2]]], [7257,[16863.8,2484.32,0],[[6947,2]]], [7258,[16718.1,2299.34,0],[[6947,2],[7551,2]]], [7259,[16524.8,2039.34,4.76837e-007],[[6948,2],[7552,2]]], +[7260,[15851.7,2164.6,3.17891e-007],[[6949,2],[7553,2],[7554,2]]], [7261,[16180,1627.57,-4.76837e-007],[[6950,2],[7555,2],[7556,2],[7557,2]]], [7262,[15415.4,2351.41,0],[[6951,2],[7558,2],[7559,2]]], [7263,[15685.9,2200.04,3.17891e-007],[[6953,2],[7263,2],[7560,2]]], [7264,[16275.7,2834.52,0],[[6955,2],[6956,2],[7265,2]]], [7265,[16254.8,2871.89,4.17233e-007],[[6956,2],[7264,2]]], +[7266,[16925.8,2713.72,0],[[6957,2],[7561,2],[7268,2]]], [7267,[16973.6,2613.22,0],[[6957,2],[7268,2]]], [7268,[17050.8,2644.06,-4.76837e-008],[[6957,2],[7255,2],[7266,2],[7267,2],[7562,2],[7563,2]]], [7269,[15137.9,2380.52,-6.35783e-007],[[6960,2],[7564,2],[7559,2]]], [7270,[15027,2236.95,0],[[6960,2],[7565,2]]], [7271,[14685.7,1986.86,4.76837e-007],[[6963,2],[7566,2],[7567,2],[7568,2]]], +[7272,[13580,6708.56,0],[[6965,2],[7569,2]]], [7273,[12792.2,6100.29,-2.54313e-006],[[6968,2],[7570,2],[7571,2]]], [7274,[12597.5,6038.21,7.62939e-006],[[6968,2],[7572,2]]], [7275,[13563.5,7639.02,0],[[6971,2],[7573,2]]], [7276,[13974.6,7208.05,-7.62939e-006],[[6972,2]]], [7277,[13593.4,6718.69,0],[[6974,2]]], +[7278,[10278.4,5574.74,0],[[6978,2],[6992,2],[7278,2]]], [7279,[10254.3,5715.97,0],[[6978,2],[7574,2]]], [7280,[10114.5,6118.59,0],[[6979,2],[7575,2]]], [7281,[8884.29,3931.8,0],[[6981,2]]], [7282,[11883.4,5920.02,0],[[6629,2],[7283,2]]], [7283,[11945.8,5908.76,7.62939e-006],[[7282,2]]], +[7284,[11797.7,6334.9,0],[[6983,2],[7576,2],[7577,2]]], [7285,[11884.9,6226.8,7.62939e-006],[[6983,2],[7578,2]]], [7286,[11486,6176.89,0],[[6986,2],[7579,2]]], [7287,[11070.2,5899.06,0],[[6987,2],[7580,2]]], [7288,[11359.9,5975.04,0],[[6988,2]]], [7289,[11287.2,5046.83,0],[[6990,2]]], +[7290,[10491.2,5866.7,1.27157e-006],[[6991,2],[7581,2],[7582,2]]], [7291,[14069.1,1770.86,0],[[6993,2],[7583,2]]], [7292,[13649.7,1813.32,1.90735e-006],[[6994,2],[7584,2]]], [7293,[13534.7,2069.38,-1.90735e-006],[[6995,2]]], [7294,[13522.3,1760.81,0],[[6996,2],[7584,2]]], [7295,[13305.6,1108.91,0],[[6997,2],[7585,2]]], +[7296,[13043.1,817.386,0],[[6999,2]]], [7297,[13237,859.727,9.53674e-007],[[7000,2],[7586,2]]], [7298,[13206.7,949.297,0],[[7001,2]]], [7299,[9756.28,6258.39,7.62939e-006],[[7004,2],[7587,2]]], [7300,[10118.1,6715.57,-2.54313e-006],[[7006,2],[7588,2],[7589,2]]], [7301,[9901.43,6606.74,0],[[7006,2],[7590,2]]], +[7302,[9865,7210.87,0],[[7007,2],[7591,2],[7592,2]]], [7303,[9181.34,7446.95,7.62939e-006],[[7009,2],[7593,2]]], [7304,[9237.22,7048.06,2.54313e-006],[[7010,2],[7304,2],[7594,2]]], [7305,[9516.86,7428.02,0],[[7011,2],[7595,2]]], [7306,[5058.07,4594.43,-1.90735e-006],[[7013,2],[7596,2],[7597,2]]], [7307,[4862.04,4547.42,0],[[7013,2],[7045,2],[7343,2]]], +[7308,[7154.37,8927.98,3.8147e-006],[[7014,2],[7598,2],[7599,2],[7600,2]]], [7309,[6204.4,8209.21,0],[[7016,2]]], [7310,[6127.83,8383.25,-2.54313e-006],[[7016,2],[7601,2],[7602,2]]], [7311,[5962.39,8302.99,0],[[7018,2],[7603,2],[7604,2],[7311,2]]], [7312,[5673.94,8200.49,-7.62939e-006],[[7021,2],[7605,2]]], [7313,[5539.86,8164.32,2.54313e-006],[[7021,2],[7606,2],[7607,2]]], +[7314,[5406.94,7759.11,0],[[7022,2],[7042,2],[7336,2],[7608,2],[7314,2]]], [7315,[7563.19,8517.99,0],[[7024,2],[7610,2]]], [7316,[8964.87,8584.19,0],[[7025,2],[7611,2],[7317,2]]], [7317,[8989.43,8420.1,1.90735e-006],[[7025,2],[7316,2],[7612,2],[7613,2]]], [7318,[9018.32,8272.73,2.54313e-006],[[7027,2],[7318,2],[7612,2]]], [7319,[8958.12,8168.91,-7.62939e-006],[[7027,2]]], +[7320,[9153.67,8219.11,0],[[7027,2],[7614,2]]], [7321,[7755.76,9089.63,0],[[7029,2],[7615,2]]], [7322,[7545.45,8953.97,-1.52588e-005],[[7029,2],[7599,2]]], [7323,[8247.17,9028.48,1.01725e-005],[[7030,2],[7616,2],[7617,2]]], [7324,[8351.91,8885.99,0],[[7030,2],[7032,2]]], [7325,[8328.03,8926.99,0],[[7030,2],[7618,2]]], +[7326,[8586.24,8794.98,0],[[7032,2],[7619,2],[7618,2]]], [7327,[8696.93,8783.17,0],[[7033,2],[7620,2]]], [7328,[8822.15,8729.46,0],[[7033,2],[7621,2]]], [7329,[8703.24,8371.29,5.08626e-006],[[7034,2],[7329,2]]], [7330,[4897.45,4695.55,-4.76837e-007],[[7035,2],[7330,2],[7343,2],[7622,2],[7596,2]]], [7331,[4677.15,4979,0],[[7036,2]]], +[7332,[4683.18,8267.22,-1.27157e-006],[[7037,2],[7623,2],[7332,2]]], [7333,[4966.75,8051.8,0],[[7038,2],[7624,2],[7625,2]]], [7334,[4741.66,7783.3,0],[[7039,2],[7334,2],[7626,2]]], [7335,[5278.38,7769.26,0],[[7042,2]]], [7336,[5355.88,7753.09,0],[[7042,2],[7314,2]]], [7337,[4371.44,4548.31,-6.35783e-007],[[7044,2],[7627,2],[7628,2]]], +[7338,[4268.4,4588.1,0],[[7044,2]]], [7339,[4296.59,4531.21,-9.53674e-007],[[7044,2]]], [7340,[4183.43,4536.98,-3.17891e-007],[[7044,2],[7340,2],[7341,2]]], [7341,[4170.84,4499.85,-2.38419e-007],[[7044,2],[7340,2],[7629,2],[7630,2]]], [7342,[4208.96,4463.51,6.35783e-007],[[7044,2],[7631,2],[7632,2]]], [7343,[4818.92,4574.92,0],[[7045,2],[7307,2],[7330,2]]], +[7344,[4632.01,4587.23,0],[[7045,2]]], [7345,[4042.95,4791.77,0],[[7046,2],[7633,2]]], [7346,[3571.31,4887.21,9.53674e-007],[[7047,2],[7048,2],[7346,2]]], [7347,[3778.66,4917.36,0],[[7048,2],[7633,2]]], [7348,[4693.23,9024.99,-3.8147e-006],[[7049,2],[7634,2]]], [7349,[4486.83,8941.83,0],[[7049,2]]], +[7350,[4697.38,8882.05,0],[[7049,2]]], [7351,[4729.4,8704.82,-3.8147e-006],[[7050,2],[7635,2]]], [7352,[4041.62,9287.89,3.8147e-006],[[7051,2],[7636,2]]], [7353,[2664.95,10434.3,0],[[7052,2]]], [7354,[2558.04,10760.8,0],[[7053,2],[7637,2]]], [7355,[1958,10776.3,9.53674e-007],[[7054,2],[7055,2],[7638,2],[7355,2]]], +[7356,[1694.73,10745.9,-4.76837e-007],[[7055,2],[7639,2],[7640,2],[7641,2]]], [7357,[1886.45,10893.1,-3.17891e-007],[[7055,2],[7642,2],[7643,2]]], [7358,[3660.05,10158.1,0],[[7058,2],[7064,2],[7150,2],[7644,2]]], [7359,[3271.95,9435.6,-3.8147e-006],[[7060,2],[7645,2]]], [7360,[3718.27,9553.26,3.8147e-006],[[7061,2],[7647,2]]], [7361,[3517.74,10355.9,-1.27157e-006],[[7063,2],[7644,2],[7648,2]]], +[7362,[3345.54,10474.3,0],[[7063,2],[7649,2]]], [7363,[3569.13,10115.8,3.8147e-006],[[7064,2]]], [7364,[3229.86,9388.91,0],[[7065,2]]], [7365,[1960.5,12147.1,6.35783e-007],[[7066,2],[7365,2],[7650,2]]], [7366,[1805.94,12180.1,0],[[7066,2],[7651,2],[7370,2]]], [7367,[1889.88,12246.7,6.35783e-007],[[7066,2],[7650,2],[7652,2]]], +[7368,[1816.96,12186.7,9.53674e-007],[[7066,2],[7653,2],[7368,2]]], [7369,[1723,12032.8,0],[[7067,2],[7654,2],[7655,2]]], [7370,[1677.78,12210,0],[[7067,2],[7366,2],[7651,2],[7656,2],[7657,2]]], [7371,[1796.72,12128.6,0],[[7067,2],[7651,2]]], [7372,[1622.58,12617.4,0],[[7069,2],[7101,2],[7410,2]]], [7373,[1795,12636.2,0],[[7069,2]]], +[7374,[1767.32,12396.9,0],[[7070,2],[7658,2]]], [7375,[2796.44,11676.2,-1.90735e-006],[[7071,2]]], [7376,[2849.45,11578.3,0],[[7071,2],[7659,2],[7660,2]]], [7377,[2278.63,11740.3,0],[[7072,2],[7661,2]]], [7378,[4229.65,17358.3,0],[[7073,2],[7662,2]]], [7379,[4330.59,17547.8,0],[[7073,2],[7663,2],[7664,2]]], +[7380,[4873.67,17846.3,2.54313e-006],[[7074,2],[7665,2],[7666,2]]], [7381,[5088.17,17701.8,0],[[7075,2],[7076,2],[7667,2],[7382,2]]], [7382,[5108.09,17707.2,-7.62939e-006],[[7076,2],[7381,2],[7668,2],[7667,2]]], [7383,[5241.04,17583.8,0],[[7077,2],[7669,2],[7383,2]]], [7384,[5537.55,17368.2,0],[[7078,2],[7670,2],[7671,2]]], [7385,[5857.04,16938.4,0],[[7079,2]]], +[7386,[6057.47,17003.2,1.27157e-006],[[7079,2],[7672,2],[7673,2]]], [7387,[6060.67,16857,0],[[7079,2],[7674,2]]], [7388,[6242.24,16431.9,0],[[7082,2]]], [7389,[6214.36,16715.6,1.27157e-006],[[7082,2],[7675,2],[7674,2]]], [7390,[6393.6,16504.6,0],[[7082,2],[7676,2]]], [7391,[5340.89,16171.5,0],[[7083,2]]], +[7392,[5192.34,16135.3,0],[[7083,2],[7677,2]]], [7393,[3484.05,16997.2,0],[[7085,2]]], [7394,[3331.24,17026.5,-2.54313e-006],[[7085,2],[7403,2],[7678,2]]], [7395,[2001.41,16127.5,0],[[7086,2],[7679,2]]], [7396,[2521.05,16696.8,7.62939e-006],[[7088,2],[7680,2]]], [7397,[2416.02,16770.9,0],[[7089,2],[7681,2]]], +[7398,[2292.29,16622.1,0],[[7089,2],[7682,2],[7398,2],[7683,2]]], [7399,[2136.68,16443.2,0],[[7090,2],[7399,2],[7684,2]]], [7400,[2834.74,17181.9,2.54313e-006],[[7092,2],[7685,2],[7686,2]]], [7401,[2766.89,17240.3,0],[[7092,2],[7687,2]]], [7402,[3327.98,17340.3,0],[[7094,2],[7688,2],[7689,2],[7404,2],[7690,2]]], [7403,[3316.61,17182.7,0],[[7094,2],[7394,2]]], +[7404,[3177.19,17331.6,0],[[8681,2],[9019,2],[7094,2],[7402,2],[9020,2]]], [7405,[3673.24,16754.7,7.62939e-006],[[7096,2],[7097,2],[7405,2]]], [7406,[3709.38,16903.2,0],[[7096,2],[7691,2]]], [7407,[1625.8,14893,-2.54313e-006],[[7098,2],[7692,2],[6765,2]]], [7408,[1504.63,14845.4,0],[[7098,2],[7693,2],[7694,2]]], [7409,[1383.57,12814.1,1.58946e-007],[[7100,2],[7101,2],[7409,2],[7411,2],[7695,2]]], +[7410,[1577.2,12606.9,4.76837e-007],[[7101,2],[7372,2],[7696,2],[7697,2]]], [7411,[1423.73,12683.3,1.90735e-007],[[7101,2],[7409,2],[7698,2],[7699,2],[7697,2],[7695,2]]], [7412,[1529.83,12896.5,1.09673e-005],[[7103,2],[7412,2],[7700,2],[7701,2]]], [7413,[1709.94,12713.1,-1.90735e-006],[[7104,2]]], [7414,[1393.16,14179.6,0],[[7106,2],[7702,2]]], [7415,[1323.44,13834.8,0],[[7107,2],[7703,2]]], +[7416,[7883.79,15332.9,7.62939e-006],[[7108,2],[7704,2]]], [7417,[7772.07,15509,1.52588e-006],[[7108,2],[7705,2],[7417,2],[7706,2],[7707,2]]], [7418,[6774.04,15806.8,7.62939e-006],[[7111,2],[7708,2]]], [7419,[6994.17,15790.9,0],[[7111,2],[7709,2]]], [7420,[3808.38,11197.6,0],[[7112,2]]], [7421,[6620.15,16279.5,-2.54313e-006],[[7114,2],[7117,2],[7710,2]]], +[7422,[6456.17,16084.4,7.62939e-006],[[7115,2],[7422,2]]], [7423,[6299.28,16058.1,0],[[7115,2],[7711,2]]], [7424,[6984.97,15986.9,-2.54313e-006],[[7116,2],[7712,2],[7713,2]]], [7425,[6941.19,16158.2,0],[[7116,2],[7714,2]]], [7426,[6832.07,16250.1,0],[[7117,2],[7715,2]]], [7427,[6455.82,10573.4,-7.62939e-006],[[7118,2],[7120,2],[7430,2]]], +[7428,[7396.66,11741.7,-7.62939e-006],[[7119,2],[7716,2]]], [7429,[7237.01,11727.2,0],[[7119,2],[7429,2]]], [7430,[6504.4,10584.3,7.62939e-006],[[7120,2],[7427,2],[7717,2]]], [7431,[7050.07,10547.5,2.54313e-006],[[7122,2],[7718,2],[7719,2]]], [7432,[7434.29,11419.7,0],[[7124,2]]], [7433,[7632.08,11892.2,0],[[7126,2],[7720,2]]], +[7434,[7892.01,12433.8,0],[[7127,2]]], [7435,[8024.09,12583.6,0],[[7129,2],[7198,2],[7494,2],[7721,2],[7499,2],[7722,2]]], [7436,[7833.1,12544.8,0],[[7129,2]]], [7437,[8455.61,14982.3,3.05176e-006],[[7131,2],[7132,2],[7723,2],[7724,2],[7438,2],[7725,2],[7437,2]]], [7438,[8523.45,14933,0],[[7132,2],[7437,2],[7726,2]]], [7439,[8158.41,15187.2,0],[[7133,2],[7727,2],[7728,2]]], +[7440,[8323.4,14387,-7.62939e-006],[[7134,2],[7729,2]]], [7441,[8267.77,14028.5,0],[[7135,2]]], [7442,[8234.32,13526.2,0],[[7138,2],[7140,2],[7730,2]]], [7443,[8183.16,13105.8,-7.62939e-006],[[7139,2]]], [7444,[5161.44,10108.7,0],[[7141,2]]], [7445,[5405.75,9773.04,-7.62939e-006],[[7143,2],[7731,2]]], +[7446,[5230.48,9989.26,-7.62939e-006],[[7144,2]]], [7447,[5737.93,9972.47,0],[[7146,2],[7732,2]]], [7448,[3845.14,10105.3,1.27157e-006],[[7150,2],[7151,2],[7733,2]]], [7449,[3677.36,11005.6,-1.27157e-006],[[7153,2],[7734,2],[7735,2]]], [7450,[5074.63,9826.96,7.62939e-006],[[7154,2]]], [7451,[4926.65,9588.07,-9.53674e-007],[[7155,2],[7736,2],[7737,2],[7738,2]]], +[7452,[13869.7,10121,1.90735e-006],[[7160,2],[7166,2],[7739,2],[7452,2]]], [7453,[13753,9911.3,0],[[7160,2],[7740,2]]], [7454,[13028.5,9795.37,-7.62939e-006],[[7161,2]]], [7455,[13024.8,9683.41,-1.90735e-006],[[7161,2],[7741,2],[7455,2],[7742,2]]], [7456,[13520.4,9568.38,0],[[7162,2]]], [7457,[13495.6,9460.22,0],[[7162,2],[7743,2],[7744,2]]], +[7458,[14063.9,11684.1,0],[[7163,2],[7745,2]]], [7459,[13939.8,11809.3,0],[[7163,2]]], [7460,[13988.5,11874.5,0],[[7163,2],[7746,2]]], [7461,[14627.2,10837.7,-7.62939e-007],[[7164,2],[7461,2],[7747,2],[7748,2],[7749,2]]], [7462,[12131.9,8650.9,-2.54313e-006],[[7168,2],[7750,2],[7751,2]]], [7463,[11629.3,8695.86,0],[[7169,2],[7752,2]]], +[7464,[12185.8,9112.91,7.62939e-006],[[7170,2]]], [7465,[12278.6,8976.41,0],[[7170,2],[7753,2],[7750,2],[7754,2]]], [7466,[12562.5,9362.63,0],[[7171,2],[7755,2]]], [7467,[12419.6,9453.87,0],[[7171,2],[7756,2]]], [7468,[11206.9,8956.91,0],[[7172,2],[7757,2],[7758,2]]], [7469,[11500.3,8636.17,-7.62939e-006],[[7173,2],[7752,2]]], +[7470,[11302.8,8578.72,0],[[7173,2],[7759,2],[7760,2]]], [7471,[11151.8,8748.44,0],[[7173,2],[7761,2],[7758,2]]], [7472,[11302.2,9497.13,0],[[7175,2]]], [7473,[10512.5,8960.29,0],[[7176,2],[7762,2]]], [7474,[10755.9,8882.2,0],[[7177,2],[7763,2],[7764,2]]], [7475,[13948.9,12287.9,0],[[7180,2],[7181,2],[7475,2]]], +[7476,[14045.3,12282.3,6.35783e-007],[[7180,2],[7476,2],[7765,2]]], [7477,[9232.39,14576.1,0],[[7182,2],[7477,2],[7766,2]]], [7478,[9142.39,14707.5,0],[[7182,2],[7767,2],[7768,2]]], [7479,[11350.7,15101,-4.76837e-007],[[7184,2],[7769,2],[7479,2]]], [7480,[11391.4,15101.1,3.17891e-007],[[7184,2],[7480,2],[7770,2]]], [7481,[11229.7,15047.3,0],[[7187,2],[7188,2],[7483,2]]], +[7482,[11338.6,15101.6,0],[[7187,2]]], [7483,[11212.9,15042.2,0],[[7188,2],[7481,2]]], [7484,[9721.19,15248.2,0],[[7189,2],[7771,2],[7772,2],[7773,2],[7774,2]]], [7485,[9939.34,15081.6,0],[[7190,2],[7775,2]]], [7486,[9676.54,8823.93,0],[[7192,2],[7776,2],[7777,2]]], [7487,[9841.61,8791.77,-1.90735e-006],[[7192,2],[7193,2],[7778,2],[7779,2]]], +[7488,[10056,8728.77,0],[[7193,2],[7780,2]]], [7489,[10416.4,8748.05,0],[[7194,2],[7781,2]]], [7490,[7699.98,11717,0],[[7195,2],[7782,2]]], [7491,[7913.28,12336.4,0],[[7199,2]]], [7492,[8661.49,13819.9,2.54313e-006],[[7200,2],[7783,2],[7784,2]]], [7493,[8751.51,13858,0],[[7200,2]]], +[7494,[8109.4,12729.1,0],[[7201,2],[7435,2]]], [7495,[8380.88,12936.7,0],[[7202,2],[7502,2],[7495,2],[7785,2],[7786,2]]], [7496,[8285.54,12790.4,0],[[7202,2],[7787,2],[7499,2]]], [7497,[8791.17,14444.3,-2.54313e-006],[[7203,2],[7788,2],[7789,2]]], [7498,[8836.97,14265.7,0],[[7203,2]]], [7499,[8218.38,12569.3,0],[[7204,2],[7435,2],[7496,2],[7790,2],[7721,2],[7787,2]]], +[7500,[8303.45,12665.5,7.62939e-006],[[7204,2],[7791,2]]], [7501,[8733.04,12835.2,0],[[7205,2],[7792,2]]], [7502,[8497.47,12926.9,1.52588e-006],[[7205,2],[7495,2],[7502,2],[7793,2],[7785,2]]], [7503,[7658.53,11375.1,0],[[7206,2],[7794,2]]], [7504,[7349.04,10241.7,0],[[7209,2],[7795,2]]], [7505,[7954.74,10277.3,-2.54313e-006],[[7211,2],[7796,2],[7797,2]]], +[7506,[8375.76,9539.47,1.52588e-005],[[7212,2],[7798,2]]], [7507,[8612.17,9525.36,5.08626e-006],[[7213,2],[7799,2],[7800,2]]], [7508,[8227.77,9847.11,-1.52588e-005],[[7215,2],[7801,2]]], [7509,[8109.53,10155.1,0],[[7215,2],[7802,2],[7796,2]]], [7510,[8470.44,10214.4,0],[[7216,2],[7217,2],[6557,2]]], [7511,[8940.17,8999.16,0],[[7218,2],[7803,2],[7804,2],[7805,2],[7513,2]]], +[7512,[8956.63,9137.7,0],[[7218,2],[7806,2],[7807,2]]], [7513,[8959.88,8952.42,0],[[7219,2],[7511,2],[7805,2]]], [7514,[9067.51,8796.42,0],[[7219,2],[7808,2],[7611,2]]], [7515,[9165.52,8758.37,0],[[7221,2],[7809,2]]], [7516,[8982.8,9464.47,0],[[7225,2],[7800,2],[7806,2]]], [7517,[14534.1,8890.88,7.62939e-006],[[7226,2],[7810,2]]], +[7518,[14196.9,8548.85,0],[[7227,2],[7811,2],[7812,2]]], [7519,[14601.2,9125.64,0],[[7229,2]]], [7520,[14517.6,8895.25,0],[[7230,2]]], [7521,[14783.5,8829.76,0],[[7230,2],[7813,2],[7814,2]]], [7522,[14453.3,9365.08,-2.54313e-006],[[7231,2],[7815,2],[7816,2]]], [7523,[14605,9435.16,0],[[7231,2],[7817,2]]], +[7524,[15449.1,10128,-1.27157e-006],[[7233,2],[7818,2],[7819,2]]], [7525,[15198.1,10423.3,9.53674e-007],[[7234,2],[7820,2],[7821,2],[7822,2]]], [7526,[14984.8,10340.8,0],[[7234,2],[7823,2]]], [7527,[14855.5,10190.2,0],[[7236,2]]], [7528,[14825.3,10046.6,0],[[7236,2]]], [7529,[14686.1,10092.9,-1.52588e-006],[[7236,2],[7529,2],[7824,2],[7825,2],[7826,2]]], +[7530,[14846.9,9579.06,0],[[7237,2],[7827,2]]], [7531,[14550.8,9720.18,0],[[7238,2],[7828,2]]], [7532,[14671.9,9589.68,7.62939e-006],[[7238,2]]], [7533,[14984.2,9780.12,0],[[7239,2],[7829,2]]], [7534,[16071.8,10447.7,0],[[7240,2],[7830,2]]], [7535,[16275,10510.6,-1.27157e-006],[[7240,2],[7831,2],[7832,2]]], +[7536,[16695.6,10484.5,0],[[7242,2],[7247,2],[7833,2],[7539,2]]], [7537,[15615.2,10130.9,-3.8147e-006],[[7243,2],[7819,2]]], [7538,[15825.7,10209.1,0],[[7243,2],[7834,2]]], [7539,[16763.1,10519.5,-1.19209e-007],[[7245,2],[7247,2],[7536,2],[7835,2],[7833,2]]], [7540,[16734.2,10436.4,-1.90735e-006],[[7247,2]]], [7541,[17251.9,10290.3,9.53674e-007],[[7248,2],[7836,2]]], +[7542,[17004.8,10232.5,0],[[7248,2],[7837,2]]], [7543,[17189.6,10376.6,2.38419e-007],[[7249,2],[7838,2]]], [7544,[17521.9,10334,-9.53674e-007],[[7250,2],[7839,2]]], [7545,[17577.8,10198.3,0],[[7251,2]]], [7546,[17460.4,10252.3,3.17891e-007],[[7252,2],[7836,2],[7840,2]]], [7547,[17675,10398.9,0],[[7253,2],[7547,2],[7841,2]]], +[7548,[16992.5,2476.19,0],[[7256,2]]], [7549,[16901.4,2268.13,0],[[7256,2],[7842,2]]], [7550,[16958,2436.29,0],[[7256,2]]], [7551,[16720.5,2285.41,1.58946e-007],[[7258,2],[7843,2],[7844,2]]], [7552,[16501.9,1933.37,1.58946e-007],[[7259,2],[7845,2],[7846,2]]], [7553,[15816.8,2162.06,0],[[7260,2]]], +[7554,[15861.6,2083.21,0],[[7260,2],[7847,2],[7848,2]]], [7555,[16364.3,1615.74,0],[[7261,2],[7849,2]]], [7556,[16155.2,1573.03,3.17891e-007],[[7261,2],[7850,2],[7851,2]]], [7557,[16011.2,1683.42,0],[[7261,2],[7852,2]]], [7558,[15445.4,2147.18,0],[[7262,2],[7853,2]]], [7559,[15260,2355.44,0],[[7262,2],[7269,2]]], +[7560,[15663.4,2158.33,-9.53674e-007],[[7263,2]]], [7561,[17047.8,2741.5,-2.38419e-007],[[7266,2],[7854,2]]], [7562,[17052.8,2731.46,0],[[7268,2]]], [7563,[17120.4,2618.29,0],[[7268,2]]], [7564,[15146.4,2521.87,0],[[7269,2],[7564,2]]], [7565,[14954.6,2188,0],[[7270,2],[7565,2]]], +[7566,[14511.9,1940.81,0],[[7271,2],[7566,2]]], [7567,[14705,1794.68,6.35783e-007],[[7271,2],[7855,2],[7856,2]]], [7568,[14834.2,1980.1,0],[[7271,2],[7857,2]]], [7569,[13384.2,6765.51,0],[[7272,2],[7858,2]]], [7570,[12769.9,6253.95,0],[[7273,2],[7859,2]]], [7571,[12945.2,6173.64,7.62939e-006],[[7273,2],[7860,2]]], +[7572,[12449.6,6117.58,0],[[7274,2],[7861,2]]], [7573,[13507.5,7643.82,0],[[7275,2],[7862,2],[7863,2]]], [7574,[10260.9,5748.21,0],[[7279,2]]], [7575,[10184.2,6243.45,0],[[7280,2],[7864,2]]], [7576,[11838.4,6375.47,5.08626e-006],[[7284,2],[7865,2],[7866,2]]], [7577,[11655.7,6416.38,0],[[7284,2],[7867,2]]], +[7578,[11908.1,6219.86,-2.54313e-006],[[7285,2],[7578,2],[7868,2]]], [7579,[11493.1,6204.3,2.54313e-006],[[7286,2],[7869,2],[7870,2]]], [7580,[11005.5,5905.84,0],[[7287,2]]], [7581,[10554.7,5865.59,0],[[7290,2],[7871,2],[7872,2]]], [7582,[10421.2,5946.37,0],[[7290,2],[7582,2]]], [7583,[14065.8,1715.28,0],[[7291,2],[7873,2],[7874,2]]], +[7584,[13545.2,1836.36,0],[[7292,2],[7294,2],[7584,2]]], [7585,[13463,1099.23,0],[[7295,2],[7875,2],[7876,2]]], [7586,[13282.1,854.895,0],[[7297,2],[7877,2],[7878,2]]], [7587,[9805.82,6421.91,-7.62939e-006],[[7299,2],[7590,2]]], [7588,[10302.8,6644.03,0],[[7300,2],[7879,2]]], [7589,[10090.7,6613.26,0],[[7300,2]]], +[7590,[9845.71,6496.98,0],[[7301,2],[7587,2]]], [7591,[9842.88,7363.15,0],[[7302,2],[7880,2]]], [7592,[10052.2,7207.56,-7.62939e-006],[[7302,2],[7881,2]]], [7593,[9160.2,7528.24,0],[[7303,2],[7882,2],[7883,2]]], [7594,[9154.92,7042.92,7.62939e-006],[[7304,2]]], [7595,[9582.87,7577.93,0],[[7305,2],[7884,2]]], +[7596,[5035.28,4675.21,0],[[7306,2],[7330,2],[7597,2],[7596,2],[7622,2]]], [7597,[5073.84,4666.45,0],[[7596,2],[8159,2],[7306,2],[7597,2]]], [7598,[6966.76,8871.02,1.90735e-006],[[7308,2],[7598,2],[7885,2],[7886,2]]], [7599,[7329.09,8966.81,5.08626e-006],[[7308,2],[7322,2],[7887,2]]], [7600,[7174.01,9018.81,-1.52588e-005],[[7308,2]]], [7601,[6251.6,8375.16,7.62939e-006],[[7310,2],[7888,2]]], +[7602,[6125.05,8555.5,-7.62939e-006],[[7310,2],[7889,2]]], [7603,[5872.68,8356.17,2.54313e-006],[[7311,2],[7890,2],[7605,2]]], [7604,[5980.35,8292.54,0],[[7311,2],[7891,2],[7604,2]]], [7605,[5833.88,8318.51,0],[[7312,2],[7603,2],[7892,2]]], [7606,[5403.18,8277.05,0],[[7313,2],[7893,2]]], [7607,[5479.74,7986.5,0],[[7313,2],[7894,2]]], +[7608,[5419.11,7762.2,0],[[7314,2]]], [7609,[5492.79,7759.28,0],[[7023,2]]], [7610,[7548.3,8474.43,0],[[7315,2]]], [7611,[8987.61,8676.64,-2.54313e-006],[[7316,2],[7514,2],[7808,2],[7895,2]]], [7612,[9021.23,8353.63,0],[[7317,2],[7318,2],[7896,2]]], [7613,[9052.41,8561.93,7.62939e-006],[[7317,2],[7897,2],[7613,2],[7808,2]]], +[7614,[9234.38,8222.59,0],[[7320,2],[7898,2],[7899,2],[7900,2]]], [7615,[7663,9188.24,0],[[7321,2],[7901,2]]], [7616,[8389.49,9173.33,0],[[7323,2],[7902,2]]], [7617,[8155.64,9133.33,-1.52588e-005],[[7323,2],[7903,2]]], [7618,[8450.88,8884.36,0],[[7325,2],[7326,2],[7904,2],[7905,2]]], [7619,[8642.85,8803.8,-2.54313e-006],[[7326,2],[7906,2],[7804,2],[7620,2]]], +[7620,[8714.04,8792.68,-2.54313e-006],[[7327,2],[7619,2],[7621,2],[7907,2]]], [7621,[8856.89,8788.02,0],[[7328,2],[7620,2],[7907,2],[7895,2]]], [7622,[4952.74,4697.79,0],[[7330,2],[7596,2]]], [7623,[4729.54,8371.13,0],[[7332,2],[7908,2]]], [7624,[5076.5,8088.69,0],[[7333,2],[7909,2],[7624,2],[7910,2]]], [7625,[5048.48,8067.91,7.62939e-006],[[7909,2],[7333,2]]], +[7626,[4818.33,7792.23,0],[[7334,2]]], [7627,[4323.89,4501.4,0],[[7337,2]]], [7628,[4472.65,4549.07,0],[[7337,2]]], [7629,[4135.64,4555.99,0],[[7341,2]]], [7630,[4143.08,4430.97,0],[[7341,2]]], [7631,[4221.9,4459.22,9.53674e-007],[[7342,2]]], +[7632,[4199.85,4420.24,0],[[7342,2]]], [7633,[3923.16,4847.45,0],[[7345,2],[7347,2]]], [7634,[4806.99,9097.34,-3.8147e-006],[[7348,2],[7911,2]]], [7635,[4782.99,8673.48,-1.27157e-006],[[7351,2],[7912,2],[7908,2],[7913,2]]], [7636,[4023.96,9361.19,9.53674e-007],[[7352,2],[7636,2],[7914,2],[7915,2]]], [7637,[2606.32,10893.1,0],[[7354,2],[7916,2],[7917,2],[7918,2]]], +[7638,[1945.4,10812.1,0],[[7355,2],[7919,2],[7642,2]]], [7639,[1679.82,10622.4,0],[[7356,2]]], [7640,[1571.06,10719,0],[[7356,2],[7920,2],[7921,2],[7922,2]]], [7641,[1687.95,10827.8,0],[[7356,2],[7923,2],[7922,2]]], [7642,[1954.05,10894.4,0],[[7357,2],[7638,2],[7924,2],[7925,2],[7919,2]]], [7643,[1868.47,10955.3,0],[[7357,2],[7926,2],[7923,2]]], +[7644,[3634.58,10226.2,0],[[7358,2],[7361,2]]], [7645,[3250.24,9429.94,0],[[7359,2]]], [7646,[3497.37,9598.33,0],[[7062,2]]], [7647,[3810.83,9549.18,0],[[7360,2],[7915,2]]], [7648,[3592.09,10450.5,0],[[7361,2],[7648,2]]], [7649,[3295.74,10521.8,0],[[7362,2],[7927,2],[7928,2]]], +[7650,[1977.48,12184.2,6.35783e-007],[[7365,2],[7367,2],[7650,2]]], [7651,[1768.7,12198.6,-2.38419e-007],[[7366,2],[7370,2],[7371,2],[7658,2]]], [7652,[1865.12,12329.2,0],[[7367,2]]], [7653,[1812.74,12179.3,4.76837e-007],[[7368,2]]], [7654,[1630.29,12017.3,3.17891e-007],[[7369,2],[7929,2],[7654,2]]], [7655,[1750.15,11972.4,0],[[7369,2],[7930,2],[7931,2]]], +[7656,[1528.08,12225.7,0],[[7370,2],[7932,2],[7929,2],[7933,2]]], [7657,[1638.4,12369.3,0],[[7370,2],[7696,2]]], [7658,[1774.29,12327.7,0],[[7374,2],[7651,2]]], [7659,[2783.57,11575.3,0],[[7376,2]]], [7660,[2868.77,11513.3,0],[[7376,2],[7934,2],[7935,2]]], [7661,[2127.87,11654.1,-6.35783e-007],[[7377,2],[7936,2],[7937,2]]], +[7662,[4188.94,17346.3,2.54313e-006],[[7378,2],[7938,2],[7939,2],[7940,2]]], [7663,[4298.81,17588.8,1.90735e-006],[[7379,2],[7663,2],[7941,2],[7942,2]]], [7664,[4363.61,17573,0],[[7379,2]]], [7665,[4997.39,17887.7,0],[[7380,2],[7943,2]]], [7666,[4847.25,17877.8,1.90735e-006],[[7380,2],[7944,2],[7945,2],[7946,2]]], [7667,[5106.3,17699.7,0],[[7667,2],[7382,2]]], +[7668,[5112.84,17809,0],[[7382,2],[7943,2]]], [7669,[5382.18,17699.7,0],[[7383,2],[7947,2]]], [7670,[5680.1,17434,-3.8147e-006],[[7384,2],[7948,2]]], [7671,[5500.31,17535.3,0],[[7384,2],[7949,2]]], [7672,[6162.81,17075.6,6.35783e-007],[[7386,2],[7950,2],[7951,2]]], [7673,[6078.59,16965.7,0],[[7386,2]]], +[7674,[6153.24,16799.9,-3.8147e-006],[[7387,2],[7389,2]]], [7675,[6257.87,16865.6,0],[[7389,2],[7952,2]]], [7676,[6434.13,16490.5,-2.54313e-006],[[7390,2],[7710,2],[7953,2]]], [7677,[5101.35,16027.5,0],[[7392,2],[7677,2]]], [7678,[3293.19,17023.1,0],[[7394,2]]], [7679,[1981.13,16112,0],[[7395,2],[7954,2],[7955,2]]], +[7680,[2541.97,16765.4,0],[[7396,2],[7681,2],[7956,2],[7957,2]]], [7681,[2425.75,16780.1,-5.08626e-006],[[7397,2],[7680,2],[7681,2]]], [7682,[2307.88,16621.2,0],[[7398,2]]], [7683,[2212.21,16645,-2.54313e-006],[[7398,2],[7683,2],[7958,2]]], [7684,[2075.31,16468.3,0],[[7399,2],[7959,2],[7960,2]]], [7685,[2899.85,17209.1,1.90735e-006],[[7400,2],[7961,2],[7685,2],[7962,2]]], +[7686,[2827.1,17234.5,2.54313e-006],[[7400,2],[7963,2],[7964,2]]], [7687,[2748.62,17245.7,-9.53674e-007],[[7401,2],[7965,2],[7966,2],[7967,2],[7968,2]]], [7688,[3427.6,17476.2,0],[[7402,2],[7969,2],[7970,2],[7690,2]]], [7689,[3475.9,17307.1,0],[[7402,2],[7971,2]]], [7690,[3222.82,17447.7,0],[[9020,2],[7690,2],[9241,2],[9242,2],[7688,2],[7402,2]]], [7691,[3603.6,16918.1,0],[[7406,2],[7972,2]]], +[7692,[1606.82,14892.3,-1.27157e-006],[[7407,2]]], [7693,[1528.62,14950.4,4.76837e-007],[[7408,2],[7975,2]]], [7694,[1470.23,14717.2,0],[[7408,2],[7976,2]]], [7695,[1364.28,12631.8,0],[[7409,2],[7411,2],[7977,2]]], [7696,[1609.07,12489.8,0],[[7410,2],[7657,2],[7696,2],[7978,2]]], [7697,[1483.86,12564.7,-9.53674e-007],[[7410,2],[7411,2],[7699,2]]], +[7698,[1513.72,12711.4,0],[[7411,2]]], [7699,[1460.46,12539.4,3.17891e-007],[[7411,2],[7697,2],[7979,2],[7932,2],[7699,2],[7980,2]]], [7700,[1512.5,12889,0],[[7412,2]]], [7701,[1500.21,12910,0],[[7412,2]]], [7702,[1392.13,14207.7,3.17891e-007],[[7414,2],[7981,2],[7982,2]]], [7703,[1307.63,13899.5,0],[[7415,2],[7983,2]]], +[7704,[7903.24,15265.3,0],[[7416,2],[7727,2],[7984,2]]], [7705,[7829.24,15580.6,-7.62939e-006],[[7417,2]]], [7706,[7580.62,15551.1,0],[[7417,2],[7985,2]]], [7707,[7826.97,15648.1,0],[[7417,2],[7986,2]]], [7708,[6741.78,15709.8,7.62939e-006],[[7418,2],[7987,2]]], [7709,[7044.71,15849.1,-7.62939e-006],[[7419,2],[7712,2]]], +[7710,[6537.02,16370.4,-2.54313e-006],[[7421,2],[7676,2],[7988,2]]], [7711,[6304.62,16159.3,0],[[7423,2],[7989,2]]], [7712,[7125.75,15907.1,-3.8147e-006],[[7424,2],[7709,2],[7990,2],[7991,2]]], [7713,[7041.67,16054.3,0],[[7424,2],[7992,2]]], [7714,[6988.1,16208.5,0],[[7425,2],[7993,2]]], [7715,[6940.77,16354.7,0],[[7426,2],[7994,2]]], +[7716,[7514.33,11791.7,0],[[7428,2],[7720,2]]], [7717,[6467.35,10418.9,0],[[7430,2],[7995,2]]], [7718,[6983.16,10531.6,-7.62939e-006],[[7431,2]]], [7719,[7116.03,10440.8,0],[[7431,2],[7719,2]]], [7720,[7626.21,11832.4,0],[[7433,2],[7716,2],[7720,2]]], [7721,[8140.72,12580.5,0],[[7435,2],[7499,2],[7996,2],[7722,2]]], +[7722,[8144.7,12702.8,0],[[7435,2],[7721,2],[7996,2]]], [7723,[8339,15077.9,0],[[7437,2],[7723,2],[7997,2],[7728,2]]], [7724,[8505.75,14939.6,0],[[7437,2]]], [7725,[8517.02,15040.4,0],[[7437,2],[7726,2],[7998,2]]], [7726,[8569.45,14922.8,0],[[7438,2],[7725,2],[7999,2]]], [7727,[8081.49,15230.4,2.54313e-006],[[7439,2],[7704,2],[8000,2]]], +[7728,[8195.1,15181,0],[[7439,2],[7723,2],[8001,2],[8002,2]]], [7729,[8377.72,14438.5,5.08626e-006],[[7440,2],[8003,2],[8004,2]]], [7730,[8337.97,13646.9,0],[[7442,2],[8005,2]]], [7731,[5323.43,9656.58,0],[[7445,2],[8006,2]]], [7732,[5747.35,9945.46,0],[[7447,2],[8007,2],[7732,2],[8008,2]]], [7733,[3929.57,9974.99,0],[[7448,2],[8009,2]]], +[7734,[3665.72,11070.3,3.8147e-006],[[7449,2]]], [7735,[3570.54,10964.4,-1.27157e-006],[[7449,2],[8010,2],[8011,2]]], [7736,[4747.56,9610.53,0],[[7451,2],[8012,2]]], [7737,[5018.59,9625.17,0],[[7451,2]]], [7738,[5036.56,9429.73,0],[[7451,2],[8013,2]]], [7739,[13974.7,10133.9,1.90735e-006],[[7452,2],[8014,2],[7739,2],[8015,2]]], +[7740,[13763.2,9893.01,0],[[7453,2],[8016,2],[7740,2],[8017,2]]], [7741,[12927.3,9575.39,-7.62939e-006],[[7455,2],[8018,2]]], [7742,[13047,9584.39,0],[[7455,2]]], [7743,[13543.8,9459.31,0],[[7457,2]]], [7744,[13496.2,9417.23,-2.54313e-006],[[7457,2],[8019,2],[8020,2]]], [7745,[14100.4,11656.6,0],[[7458,2],[8021,2],[8022,2]]], +[7746,[14042.1,11882.7,1.27157e-006],[[7460,2],[8023,2],[8024,2]]], [7747,[14675.8,10712.5,0],[[7461,2],[8025,2]]], [7748,[14617.1,11030.8,0],[[7461,2],[8026,2]]], [7749,[14698.8,10885.9,0],[[7461,2]]], [7750,[12232.2,8781.28,0],[[7462,2],[7465,2],[7753,2]]], [7751,[12110.8,8599.13,-2.54313e-006],[[7462,2],[8027,2],[8028,2]]], +[7752,[11589.6,8609.66,0],[[7463,2],[7469,2],[8029,2]]], [7753,[12270.4,8825.64,0],[[7465,2],[7750,2],[7753,2],[8030,2]]], [7754,[12335.8,8996.68,0],[[7465,2]]], [7755,[12690.2,9422.13,0],[[7466,2],[8018,2]]], [7756,[12423.4,9489.37,2.54313e-006],[[7467,2],[7756,2]]], [7757,[11111.6,9017.4,0],[[7468,2]]], +[7758,[11146.1,8800.04,0],[[7468,2],[7471,2],[7761,2]]], [7759,[11439.4,8535.08,0],[[7470,2],[8029,2]]], [7760,[11229.3,8364.81,0],[[7470,2],[8031,2]]], [7761,[11129,8757.47,0],[[7471,2],[7758,2],[8032,2],[8033,2]]], [7762,[10503.9,8943.97,0],[[7473,2],[8034,2],[7762,2],[8035,2]]], [7763,[10886.5,8836.19,0],[[7474,2],[8032,2]]], +[7764,[10685.3,8738.65,7.62939e-006],[[7474,2],[8036,2]]], [7765,[14069.7,12234.1,6.35783e-007],[[7476,2],[8037,2],[8038,2]]], [7766,[9258.36,14424,0],[[7477,2],[8039,2]]], [7767,[9002.08,14740.8,-2.54313e-006],[[7478,2],[8040,2],[8041,2]]], [7768,[9270.49,14784.2,0],[[7478,2],[8042,2]]], [7769,[11354.2,15096.4,-1.58946e-007],[[7479,2]]], +[7770,[11343.6,15141.4,0],[[7480,2]]], [7771,[9805.3,15255.2,0],[[7484,2],[7771,2],[8043,2]]], [7772,[9567.35,15313.9,0],[[7484,2],[8044,2]]], [7773,[9675.63,15310,0],[[7484,2],[8045,2]]], [7774,[9652.58,15099.6,0],[[7484,2],[8046,2]]], [7775,[9876.51,15152.9,0],[[7485,2],[8043,2]]], +[7776,[9629.91,8826.04,-7.62939e-006],[[7486,2]]], [7777,[9545.21,8744.34,0],[[7486,2],[8047,2]]], [7778,[9672.8,8670.78,-7.62939e-006],[[7487,2],[8048,2]]], [7779,[9914.46,8627,7.62939e-006],[[7487,2],[8049,2]]], [7780,[10133.4,8599.25,-2.54313e-006],[[7488,2],[8050,2],[8051,2]]], [7781,[10486.4,8712.65,0],[[7489,2],[8036,2],[8034,2]]], +[7782,[7652.12,11678.4,0],[[7490,2]]], [7783,[8576.84,13730.7,0],[[7492,2]]], [7784,[8666.46,13983.6,0],[[7492,2],[8052,2]]], [7785,[8516.78,13041.7,0],[[7495,2],[7502,2],[7793,2]]], [7786,[8352.65,12782,0],[[7495,2],[8053,2]]], [7787,[8233.84,12649.2,0],[[7496,2],[7499,2],[7996,2]]], +[7788,[8712.93,14600.4,0],[[7497,2],[8054,2]]], [7789,[8714.05,14313,0],[[7497,2],[8055,2]]], [7790,[8127.89,12570.5,3.8147e-006],[[7499,2]]], [7791,[8364.45,12714.1,-7.62939e-006],[[7500,2]]], [7792,[8827.42,12932,2.54313e-006],[[7501,2],[8056,2],[7792,2]]], [7793,[8536.65,13011,0],[[7502,2],[7785,2]]], +[7794,[7614.05,11449.5,0],[[7503,2]]], [7795,[7254.97,10160.6,0],[[7504,2],[8057,2],[8058,2]]], [7796,[8068.58,10216.5,1.90735e-006],[[7505,2],[7509,2],[7802,2],[8059,2],[7796,2]]], [7797,[7881.23,10211.9,2.54313e-006],[[7505,2],[8060,2],[8061,2]]], [7798,[8294.4,9390.04,0],[[7506,2],[8062,2]]], [7799,[8531.6,9406.71,0],[[7507,2],[8063,2],[7902,2],[8064,2]]], +[7800,[8787.12,9479.12,-7.62939e-006],[[7507,2],[7516,2]]], [7801,[8156,9701.41,0],[[7508,2],[8065,2]]], [7802,[8093.56,10159.1,0],[[7509,2],[7796,2],[7802,2],[8066,2]]], [7803,[8848.37,9025.47,0],[[7511,2],[8067,2]]], [7804,[8857.74,8891.97,1.90735e-006],[[7511,2],[7619,2],[7804,2],[7906,2],[8068,2],[7907,2]]], [7805,[8965.45,8914.69,-1.27157e-006],[[7511,2],[7513,2],[7895,2],[8069,2]]], +[7806,[8996.2,9290.5,0],[[7512,2],[7516,2]]], [7807,[8920.2,9166.36,0],[[7512,2],[8070,2],[8071,2]]], [7808,[9026.45,8696.99,0],[[7514,2],[7611,2],[7613,2],[8072,2],[7897,2],[7895,2]]], [7809,[9143.89,8614.02,0],[[7515,2],[8073,2],[7900,2],[8072,2]]], [7810,[14358.1,8822.67,0],[[7517,2],[8074,2]]], [7811,[14213.3,8603.12,0],[[7518,2],[8074,2],[8075,2]]], +[7812,[14066.7,8355.34,0],[[7518,2],[8076,2],[8077,2]]], [7813,[14932.5,8735.46,0],[[7521,2],[7813,2]]], [7814,[14796.5,8693.89,0],[[7521,2],[8078,2]]], [7815,[14494.3,9412.58,0],[[7522,2]]], [7816,[14415.6,9413.49,1.90735e-006],[[7522,2],[8079,2],[7816,2],[8080,2]]], [7817,[14617.2,9442.79,0],[[7523,2],[7817,2],[8081,2]]], +[7818,[15436.1,10193.2,-1.27157e-006],[[7524,2],[7818,2],[8082,2]]], [7819,[15522.6,10138.3,0],[[7524,2],[7537,2],[8083,2]]], [7820,[15091.3,10518.1,0],[[7525,2],[8084,2]]], [7821,[15301.3,10617.6,0],[[7525,2],[8085,2]]], [7822,[15375.6,10455.7,0],[[7525,2],[8086,2]]], [7823,[14944.7,10356.1,0],[[7526,2],[8087,2],[8088,2],[7823,2]]], +[7824,[14705.2,10169.8,0],[[7529,2],[8089,2],[8090,2],[7824,2]]], [7825,[14645.5,10047.9,2.54313e-006],[[7529,2],[8091,2],[8092,2]]], [7826,[14522.9,10145.2,0],[[7529,2],[8093,2]]], [7827,[14764.1,9515.66,0],[[7530,2],[8094,2],[7827,2]]], [7828,[14529.8,9723.57,0],[[7531,2],[8095,2],[8091,2],[8096,2]]], [7829,[15062.9,9834.63,0],[[7533,2],[8097,2]]], +[7830,[16042.6,10467.3,-1.27157e-006],[[7534,2],[7834,2],[8098,2]]], [7831,[16335.5,10661.9,0],[[7535,2],[8099,2]]], [7832,[16199.5,10546.9,0],[[7535,2]]], [7833,[16706.1,10532.1,4.76837e-007],[[7536,2],[7539,2],[8100,2],[7835,2],[8101,2]]], [7834,[15907,10309.4,0],[[7538,2],[7830,2]]], [7835,[16714.7,10539,-5.96046e-008],[[7539,2],[7835,2],[7833,2]]], +[7836,[17367.1,10286.1,0],[[7541,2],[7546,2]]], [7837,[16975.6,10175.7,0],[[7542,2],[8102,2]]], [7838,[17322,10379.9,0],[[7543,2],[8103,2]]], [7839,[17444.1,10377.4,0],[[7544,2],[8104,2],[8103,2]]], [7840,[17436.8,10212.8,-6.35783e-007],[[7546,2],[8105,2],[7840,2]]], [7841,[17622.2,10400,1.58946e-007],[[7547,2],[7841,2],[8106,2]]], +[7842,[16896,2244.81,0],[[7549,2],[8107,2],[8108,2]]], [7843,[16746.1,2271.48,0],[[7551,2],[7843,2],[8109,2]]], [7844,[16696.8,2142.69,4.76837e-007],[[7551,2],[8110,2]]], [7845,[16576.6,1954.16,-2.38419e-007],[[7552,2]]], [7846,[16513.2,1816.97,0],[[7552,2],[8111,2],[8112,2]]], [7847,[15889.5,2083.22,0],[[7554,2]]], +[7848,[15837.3,1946.75,9.53674e-007],[[7554,2],[8113,2]]], [7849,[16416.8,1596.7,-1.19209e-007],[[7555,2],[8114,2],[8115,2],[8116,2]]], [7850,[16194.2,1557.07,0],[[7556,2]]], [7851,[16059.4,1449.06,0],[[7556,2],[8117,2]]], [7852,[15913.5,1744.06,0],[[7557,2],[8118,2]]], [7853,[15472.7,1964.53,0],[[7558,2],[8119,2]]], +[7854,[17042,2782.04,0],[[7561,2]]], [7855,[14697.4,1759.89,0],[[7567,2],[8120,2],[8121,2]]], [7856,[14844.7,1799.02,0],[[7567,2],[8122,2]]], [7857,[14953.1,1972.64,0],[[7568,2],[8123,2],[8124,2]]], [7858,[13255.9,6800.64,3.8147e-006],[[7569,2],[8125,2],[8126,2],[8127,2]]], [7859,[12752.7,6388.8,2.54313e-006],[[7570,2],[8128,2],[8129,2]]], +[7860,[13064,6232.18,0],[[7571,2]]], [7861,[12427.5,6136.68,2.54313e-006],[[7572,2],[8130,2],[8131,2]]], [7862,[13579.7,7782.96,0],[[7573,2],[8132,2]]], [7863,[13349.3,7584.44,0],[[7573,2],[8133,2]]], [7864,[10240.6,6322.68,0],[[7575,2],[8134,2]]], [7865,[12005.1,6331.51,0],[[7576,2],[8135,2]]], +[7866,[11929.8,6535.16,2.54313e-006],[[7576,2],[8136,2],[8137,2]]], [7867,[11597.2,6440.62,2.54313e-006],[[7577,2],[8138,2],[8139,2],[7869,2]]], [7868,[11919.1,6192.02,0],[[7578,2]]], [7869,[11516.3,6319.11,-7.62939e-006],[[7579,2],[7867,2],[8139,2]]], [7870,[11413,6226.39,0],[[7579,2],[8140,2],[8141,2]]], [7871,[10592.7,5991.37,0],[[7581,2],[8142,2]]], +[7872,[10724.6,5851.46,-7.62939e-006],[[7581,2],[8143,2]]], [7873,[14065.2,1592.77,0],[[7583,2],[8144,2],[8145,2],[7873,2]]], [7874,[13953.1,1713.5,1.90735e-006],[[7583,2]]], [7875,[13454.4,1021.6,2.38419e-007],[[7585,2],[8146,2],[8147,2],[8148,2]]], [7876,[13659.2,1112.46,0],[[7585,2],[8149,2]]], [7877,[13283,875.916,0],[[7586,2]]], +[7878,[13342.5,857.326,0],[[7586,2],[8150,2],[8148,2],[8147,2]]], [7879,[10400.8,6542.11,0],[[7588,2],[8151,2],[8134,2],[8152,2]]], [7880,[9834.37,7411.08,0],[[7591,2],[8153,2],[8154,2]]], [7881,[10141.3,7210.65,0],[[7592,2]]], [7882,[9007.3,7517,-7.62939e-006],[[7593,2],[8155,2]]], [7883,[9174.1,7722.74,0],[[7593,2],[8156,2]]], +[7884,[9624.33,7647.69,0],[[7595,2],[8157,2],[8158,2]]], [7885,[6985.06,8946.47,0],[[7598,2]]], [7886,[6774.62,8810.12,7.62939e-006],[[7598,2],[8160,2]]], [7887,[7362.31,9114.54,0],[[7599,2],[8161,2]]], [7888,[6322.69,8425.94,0],[[7601,2]]], [7889,[6096.85,8673.41,-1.90735e-006],[[7602,2],[8162,2],[8163,2],[8164,2]]], +[7890,[5825.59,8425.5,0],[[7603,2]]], [7891,[5979.86,8289.85,2.54313e-006],[[7604,2]]], [7892,[5841.94,8327.41,3.8147e-006],[[7605,2]]], [7893,[5387.03,8296.01,2.54313e-006],[[7606,2],[8165,2],[8166,2]]], [7894,[5467.49,7974.62,-7.62939e-006],[[7607,2]]], [7895,[8982.09,8754.45,-3.05176e-006],[[7611,2],[7621,2],[7805,2],[7808,2]]], +[7896,[9092.46,8431.28,2.54313e-006],[[7612,2],[7896,2],[8072,2]]], [7897,[9039.67,8585.67,5.08626e-006],[[7613,2],[7808,2]]], [7898,[9272.67,8276.54,-2.54313e-006],[[7614,2],[8167,2],[8168,2]]], [7899,[9165.96,8034.3,0],[[7614,2],[8156,2]]], [7900,[9209.25,8410.05,0],[[7614,2],[7809,2],[8073,2]]], [7901,[7569.52,9293.01,5.08626e-006],[[7615,2],[8169,2],[8170,2]]], +[7902,[8449.29,9305.43,0],[[7616,2],[7799,2],[8063,2]]], [7903,[8152.83,9254.93,0],[[7617,2],[8062,2]]], [7904,[8473.51,8991.87,0],[[7618,2],[8171,2]]], [7905,[8648.62,8902.23,0],[[7618,2],[8172,2],[7906,2]]], [7906,[8775.21,8858.42,0],[[7619,2],[7804,2],[7905,2],[8068,2],[8172,2]]], [7907,[8839.88,8811.53,2.54313e-006],[[7621,2],[7804,2],[7620,2],[8068,2]]], +[7908,[4735.45,8528.51,-3.8147e-006],[[7623,2],[7635,2],[7913,2]]], [7909,[5064.7,8073.37,0],[[7624,2],[7625,2],[7909,2]]], [7910,[5197.13,8224.33,7.62939e-006],[[7624,2],[8166,2]]], [7911,[4932.58,9171.67,0],[[7634,2],[8173,2]]], [7912,[4956.23,8624.33,-1.90735e-006],[[7635,2],[8174,2],[8175,2],[8176,2]]], [7913,[4737.23,8543.21,0],[[7908,2],[7913,2],[7635,2]]], +[7914,[3971.77,9385.2,0],[[7636,2]]], [7915,[4015.03,9545.29,0],[[7636,2],[7647,2],[8177,2]]], [7916,[2493.23,10896.7,0],[[7637,2],[8178,2]]], [7917,[2743.94,10844.2,0],[[7637,2],[8179,2]]], [7918,[2687.69,11081.3,0],[[7637,2],[8180,2]]], [7919,[1959.16,10868.3,0],[[7638,2],[7642,2],[8181,2]]], +[7920,[1429.5,10703.4,0],[[7640,2],[8182,2]]], [7921,[1618.31,10603.1,0],[[7640,2],[8183,2]]], [7922,[1578.42,10856.2,0],[[7640,2],[7641,2]]], [7923,[1716.54,10954.3,0],[[7641,2],[7643,2],[8184,2],[7923,2]]], [7924,[2082.83,10906.1,3.17891e-007],[[7642,2],[8185,2],[8186,2],[8178,2]]], [7925,[1949.7,10868.2,0],[[7642,2]]], +[7926,[1898.93,11077.7,4.76837e-007],[[7643,2],[8187,2],[7926,2],[8188,2],[8189,2]]], [7927,[3313.01,10564.7,1.27157e-006],[[7649,2],[7927,2],[8190,2]]], [7928,[3189.11,10590.1,-1.27157e-006],[[7649,2],[8191,2],[8192,2]]], [7929,[1581.25,11991.7,-3.8147e-007],[[7654,2],[7656,2],[8193,2],[8194,2]]], [7930,[1820.28,11858.5,0],[[7655,2],[8195,2]]], [7931,[1734.31,11847,0],[[7655,2],[8196,2]]], +[7932,[1490.73,12376.5,0],[[7656,2],[7699,2],[7979,2]]], [7933,[1473.42,12232.4,-1.58946e-007],[[7656,2],[8197,2],[8198,2]]], [7934,[2827.15,11412.4,6.35783e-007],[[7660,2],[8199,2],[8200,2]]], [7935,[3047.7,11519.9,0],[[7660,2],[7935,2]]], [7936,[2064.2,11789.9,0],[[7661,2],[8201,2],[8202,2]]], [7937,[2051.82,11606.8,3.17891e-007],[[7661,2],[8202,2],[8203,2]]], +[7938,[4129.79,17380.3,0],[[7662,2],[8204,2],[7940,2],[7938,2]]], [7939,[4162.81,17332.7,0],[[7662,2]]], [7940,[4135.55,17361.3,-7.62939e-006],[[7938,2],[8449,2],[7940,2],[7662,2]]], [7941,[4209.98,17667.8,0],[[7663,2],[8205,2]]], [7942,[4267.9,17592.3,7.62939e-006],[[7663,2]]], [7943,[5089.01,17985,0],[[7665,2],[7668,2],[8206,2]]], +[7944,[4880.87,18055.4,-7.62939e-006],[[7666,2],[8207,2]]], [7945,[4730.95,18017.8,7.62939e-006],[[7666,2],[8208,2]]], [7946,[4788.92,17738.3,0],[[7666,2],[7946,2]]], [7947,[5471.16,17755.1,1.27157e-006],[[7669,2],[8209,2],[7949,2]]], [7948,[5782.93,17482.4,0],[[7670,2],[7948,2],[8210,2]]], [7949,[5472.3,17673.5,3.8147e-006],[[7671,2],[7947,2]]], +[7950,[6298.31,17152.2,0],[[7672,2],[8211,2],[7950,2],[8212,2],[8213,2],[8214,2],[8215,2]]], [7951,[6212.26,17151.4,0],[[7672,2],[7951,2]]], [7952,[6302.06,17010.7,0],[[7675,2],[8211,2]]], [7953,[6443.5,16586.1,0],[[7676,2]]], [7954,[2028.41,16282.5,-1.27157e-006],[[7679,2],[7954,2],[7960,2]]], [7955,[1890.93,16023.7,-9.53674e-007],[[7679,2],[8216,2]]], +[7956,[2598.86,16919.2,0],[[7680,2],[8217,2]]], [7957,[2623.93,16931.2,0],[[7680,2],[8218,2],[7965,2],[8217,2]]], [7958,[2183.92,16648.9,5.08626e-006],[[7683,2],[7959,2],[8219,2]]], [7959,[2116.21,16563.3,-3.8147e-006],[[7684,2],[7958,2]]], [7960,[2039.1,16431.3,0],[[7960,2]]], [7961,[2948.68,17176.3,-7.62939e-006],[[7685,2]]], +[7962,[2927.84,17229.5,0],[[7685,2]]], [7963,[2854.48,17291.9,7.62939e-006],[[7686,2]]], [7964,[2852.5,17342.3,0],[[7686,2],[8220,2]]], [7965,[2689.72,17109.2,1.27157e-006],[[7687,2],[7957,2],[8221,2],[8218,2]]], [7966,[2750.03,17332,-1.27157e-006],[[7687,2],[7968,2],[7966,2],[8222,2]]], [7967,[2653.51,17293.7,0],[[7687,2],[8223,2]]], +[7968,[2746.02,17317.3,0],[[7966,2],[8472,2],[7687,2],[7968,2]]], [7969,[3521.63,17621.7,-7.62939e-006],[[7688,2],[8224,2]]], [7970,[3523.27,17425.5,0],[[7688,2],[8225,2],[7970,2],[8226,2]]], [7971,[3506.77,17300.1,3.8147e-006],[[7689,2],[8227,2],[7971,2],[8228,2]]], [7972,[3588.04,16998.5,0],[[7691,2],[8229,2]]], [7973,[1874.27,14884.5,0],[[6765,2],[7973,2]]], +[7974,[1712.65,15054.3,0],[[6765,2],[8230,2]]], [7975,[1571.28,15090.1,-4.76837e-007],[[7693,2],[8231,2]]], [7976,[1478.77,14593.6,0],[[7694,2],[8232,2]]], [7977,[1410.51,12481.5,0],[[7695,2],[8233,2],[8198,2]]], [7978,[1564.8,12477,-3.17891e-007],[[7696,2],[7979,2],[7978,2]]], [7979,[1475.4,12443.7,-2.38419e-007],[[7699,2],[7932,2],[7978,2],[8233,2]]], +[7980,[1541.91,12529.1,0],[[7699,2]]], [7981,[1344.63,14092,0],[[7702,2],[7983,2]]], [7982,[1444.61,14392.3,-4.76837e-007],[[7702,2],[8232,2]]], [7983,[1305.13,13965.4,0],[[7703,2],[7981,2]]], [7984,[7875.15,15225.6,-7.62939e-006],[[7704,2]]], [7985,[7423.18,15589,0],[[7706,2],[8234,2]]], +[7986,[7895.33,15788.5,0],[[7707,2],[8235,2]]], [7987,[6747.08,15556.9,0],[[7708,2],[8236,2]]], [7988,[6656.34,16493.7,-7.62939e-006],[[7710,2],[8237,2]]], [7989,[6303.91,16261.6,0],[[7711,2],[7989,2]]], [7990,[7263.44,15971.1,7.62939e-006],[[7712,2],[8238,2]]], [7991,[7270.84,15783.8,7.62939e-006],[[7712,2],[8234,2]]], +[7992,[7136.51,16138.9,0],[[7713,2],[8239,2]]], [7993,[7080.01,16298,0],[[7714,2],[7993,2]]], [7994,[7013.72,16417.5,-1.27157e-006],[[7715,2],[8240,2],[8241,2]]], [7995,[6408.05,10288.3,0],[[7717,2],[8242,2]]], [7996,[8177.82,12694.7,7.62939e-006],[[7721,2],[7722,2],[7787,2]]], [7997,[8254.14,15135.6,7.62939e-006],[[7723,2],[8243,2]]], +[7998,[8547.8,15110.7,0],[[7725,2],[8244,2],[8245,2]]], [7999,[8606.24,14872.8,0],[[7726,2],[8246,2],[8247,2],[7999,2],[8248,2]]], [8000,[8116.8,15390.5,0],[[7727,2]]], [8001,[8174.35,15334.5,0],[[7728,2],[8249,2]]], [8002,[8250.09,15144.2,0],[[7728,2]]], [8003,[8341.3,14472.3,0],[[7729,2]]], +[8004,[8449.81,14487.5,0],[[7729,2],[8250,2],[8251,2]]], [8005,[8417.51,13759.2,0],[[7730,2],[8252,2]]], [8006,[5299.68,9573.78,2.54313e-006],[[7731,2],[8253,2],[8254,2]]], [8007,[5739.9,9942.46,0],[[7732,2]]], [8008,[5625.46,9862.5,0],[[7732,2],[8255,2]]], [8009,[3969.82,9862.34,0],[[7733,2],[8256,2]]], +[8010,[3506.04,10942.3,0],[[8010,2],[8257,2]]], [8011,[3608.91,10831.4,0],[[7735,2]]], [8012,[4619.93,9586.4,3.8147e-006],[[7736,2],[8258,2]]], [8013,[5025.28,9323.46,0],[[7738,2],[8173,2]]], [8014,[14118.2,10141.4,0],[[7739,2],[8259,2],[8260,2]]], [8015,[14034.1,10204.3,0],[[7739,2]]], +[8016,[13860.7,9868.12,-2.54313e-006],[[7740,2],[8261,2],[8262,2]]], [8017,[13760.9,9736.58,-7.62939e-006],[[7740,2],[8263,2]]], [8018,[12892.7,9488.36,0],[[7741,2],[7755,2],[8018,2],[8264,2]]], [8019,[13322.9,9429.53,0],[[7744,2],[8265,2]]], [8020,[13563.7,9240.39,0],[[7744,2],[8266,2]]], [8021,[14158.5,11761.5,0],[[7745,2],[8021,2],[8024,2]]], +[8022,[14173.9,11570.6,0],[[7745,2],[8267,2],[8268,2]]], [8023,[14075.9,12010.1,0],[[7746,2],[8269,2]]], [8024,[14111.8,11839.7,-3.8147e-006],[[7746,2],[8021,2]]], [8025,[14666.1,10653.4,0],[[7747,2],[8270,2],[8271,2]]], [8026,[14599.2,11112.5,0],[[7748,2],[8272,2],[8273,2]]], [8027,[12055.5,8466.56,0],[[7751,2],[8274,2],[8275,2],[8027,2],[8276,2]]], +[8028,[12025.3,8598.29,0],[[7751,2]]], [8029,[11546.1,8487.13,0],[[7752,2],[7759,2],[8277,2],[8278,2]]], [8030,[12342.2,8805.15,0],[[7753,2]]], [8031,[11194.8,8261.59,1.90735e-006],[[7760,2],[8279,2],[8280,2],[8281,2]]], [8032,[10965.7,8811.17,0],[[7761,2],[7763,2]]], [8033,[11072.8,8581.95,0],[[7761,2],[8282,2]]], +[8034,[10531.4,8807.21,7.62939e-006],[[7762,2],[7781,2]]], [8035,[10419.6,9036.02,0],[[7762,2],[8283,2]]], [8036,[10604.1,8637.31,1.90735e-006],[[7764,2],[7781,2],[8284,2],[8285,2]]], [8037,[14079.5,12131.1,-3.8147e-006],[[7765,2],[8269,2]]], [8038,[14136.3,12173.5,0],[[7765,2],[8286,2]]], [8039,[9272.86,14403.4,0],[[7766,2]]], +[8040,[9062.18,14881.7,7.62939e-006],[[7767,2],[8287,2]]], [8041,[8829.67,14713.7,0],[[7767,2],[8288,2],[8054,2]]], [8042,[9403.23,14870.6,-7.62939e-006],[[7768,2],[8289,2],[8046,2]]], [8043,[9843.14,15154.9,-1.90735e-006],[[7771,2],[7775,2]]], [8044,[9443.73,15369.2,-1.27157e-006],[[7772,2],[8290,2],[8291,2]]], [8045,[9608.13,15407.1,0],[[7773,2],[8292,2]]], +[8046,[9601.88,15024.3,0],[[7774,2],[8042,2],[8293,2],[8294,2],[8295,2]]], [8047,[9420.01,8671.34,0],[[7777,2],[8296,2]]], [8048,[9564.5,8596.73,-7.62939e-006],[[7778,2],[8297,2]]], [8049,[9921.29,8589.15,0],[[7779,2],[8298,2],[8299,2]]], [8050,[10201.1,8501.22,-2.54313e-006],[[7780,2],[8300,2],[8301,2]]], [8051,[10029.6,8521.14,0],[[7780,2],[8302,2],[8301,2]]], +[8052,[8615.75,14050.7,-2.54313e-006],[[7784,2],[8303,2],[8304,2]]], [8053,[8354.05,12763.3,0],[[7786,2]]], [8054,[8680.53,14675.9,0],[[7788,2],[8041,2],[8305,2],[8306,2],[8307,2],[8246,2]]], [8055,[8700.11,14281.6,-2.54313e-006],[[7789,2],[8308,2],[8303,2]]], [8056,[8763.68,13034.4,0],[[7792,2]]], [8057,[7323.7,10039.3,0],[[7795,2],[8309,2]]], +[8058,[7082.82,10103,7.62939e-006],[[7795,2],[8310,2]]], [8059,[8100.94,10292.6,0],[[7796,2]]], [8060,[7795.26,10159.4,0],[[7797,2],[8060,2],[8311,2]]], [8061,[7961.77,10121.4,0],[[7797,2],[8312,2]]], [8062,[8292.53,9358.85,5.08626e-006],[[7798,2],[7903,2],[8063,2]]], [8063,[8467.96,9361.25,0],[[7799,2],[7902,2],[8062,2]]], +[8064,[8600.4,9293.6,-3.05176e-006],[[7799,2],[8313,2],[8314,2],[8315,2],[8316,2]]], [8065,[8151.55,9583.94,0],[[7801,2],[8317,2]]], [8066,[8050.69,10016.4,0],[[7802,2],[8318,2],[8319,2]]], [8067,[8838.88,9059.72,-2.54313e-006],[[7803,2],[8067,2],[8320,2],[8070,2]]], [8068,[8838.82,8849.6,0],[[7804,2],[7906,2],[7907,2]]], [8069,[9028.69,8942.04,-7.62939e-006],[[7805,2]]], +[8070,[8847.73,9143.33,-7.62939e-006],[[7807,2],[8067,2],[8321,2],[8320,2]]], [8071,[8891.46,9265.37,7.62939e-006],[[7807,2],[8313,2]]], [8072,[9091.41,8604.48,0],[[7808,2],[7809,2],[7896,2],[8072,2],[8073,2]]], [8073,[9170.77,8489.71,0],[[7900,2],[8072,2],[8322,2],[8073,2]]], [8074,[14292,8717.05,0],[[7810,2],[7811,2]]], [8075,[14070.1,8704.39,0],[[7811,2],[8323,2]]], +[8076,[13934.7,8396.71,0],[[7812,2],[8324,2]]], [8077,[13984.8,8189.9,-2.54313e-006],[[7812,2],[8325,2],[8326,2]]], [8078,[14815.3,8688.77,-7.62939e-006],[[7814,2]]], [8079,[14362.1,9443.83,2.54313e-006],[[7816,2],[8327,2],[8328,2]]], [8080,[14500,9523.93,0],[[7816,2]]], [8081,[14712.9,9452.32,0],[[7817,2],[8094,2]]], +[8082,[15441.5,10229.6,3.8147e-006],[[7818,2]]], [8083,[15543.6,10286,0],[[7819,2],[8329,2]]], [8084,[14989.6,10624.7,-3.8147e-006],[[7820,2],[8330,2],[8271,2]]], [8085,[15354.8,10717.7,3.8147e-006],[[7821,2],[8331,2]]], [8086,[15484.1,10477.3,0],[[7822,2]]], [8087,[14834.3,10378.2,0],[[7823,2],[8332,2]]], +[8088,[14966.1,10353.6,0],[[7823,2],[8088,2]]], [8089,[14741.5,10272.3,0],[[7824,2],[8333,2]]], [8090,[14706.4,10148.7,0],[[7824,2]]], [8091,[14581.2,9880.71,0],[[7825,2],[7828,2],[8095,2]]], [8092,[14571.3,10054.7,0],[[7825,2]]], [8093,[14483.9,10157.1,0],[[7826,2],[8334,2],[8259,2]]], +[8094,[14763.5,9509.34,7.62939e-006],[[7827,2],[8081,2]]], [8095,[14565.3,9832.59,0],[[7828,2],[8091,2],[8335,2]]], [8096,[14427.6,9707.11,0],[[7828,2],[8336,2],[8096,2]]], [8097,[15088.1,9866,0],[[7829,2]]], [8098,[16022.7,10563.3,0],[[7830,2],[8337,2],[8338,2]]], [8099,[16341.7,10678.3,0],[[7831,2],[8339,2],[8099,2],[8340,2]]], +[8100,[16591.3,10580.9,0],[[7833,2],[8339,2],[8341,2],[8101,2]]], [8101,[16596.2,10567.7,0],[[8100,2],[7833,2]]], [8102,[16904.4,10154.6,0],[[7837,2],[8102,2]]], [8103,[17392.8,10386.6,0],[[8103,2],[8104,2],[8342,2],[7838,2]]], [8104,[17438.3,10388.2,-2.38419e-007],[[7839,2],[8103,2],[8343,2],[8106,2]]], [8105,[17447.5,10168.1,-4.76837e-007],[[7840,2],[8344,2],[8105,2],[8345,2]]], +[8106,[17551.7,10406.6,2.38419e-007],[[7841,2],[8104,2],[8346,2],[8106,2],[8343,2]]], [8107,[16909.2,2192.2,0],[[7842,2],[8107,2],[8347,2],[8348,2]]], [8108,[16839.7,2233.67,0],[[7842,2]]], [8109,[16759.8,2250.25,-1.58946e-007],[[7843,2],[8109,2]]], [8110,[16717.4,2055.75,-1.58946e-007],[[7844,2],[8348,2],[8349,2]]], [8111,[16513.8,1745.11,0],[[7846,2]]], +[8112,[16666.2,1839.34,7.94729e-008],[[7846,2],[8350,2],[8349,2]]], [8113,[15826.4,1923.92,3.17891e-007],[[7848,2],[8118,2],[8351,2]]], [8114,[16323.7,1476.97,4.76837e-007],[[7849,2],[8352,2]]], [8115,[16475.3,1617.38,1.19209e-007],[[7849,2],[8353,2],[8115,2],[8354,2]]], [8116,[16516.2,1517.61,0],[[7849,2]]], [8117,[16056.5,1433.8,0],[[7851,2],[8355,2],[8356,2]]], +[8118,[15856.4,1846.98,9.53674e-007],[[7852,2],[8113,2]]], [8119,[15475.5,1923.58,1.90735e-007],[[7853,2],[8119,2],[8351,2],[8357,2],[8358,2]]], [8120,[14537.9,1758.27,0],[[7855,2]]], [8121,[14718.1,1601.37,0],[[7855,2],[8359,2]]], [8122,[14931.5,1775.25,0],[[7856,2],[8360,2],[8124,2]]], [8123,[15107.4,1963.46,-1.90735e-006],[[7857,2],[8361,2]]], +[8124,[14978.4,1857.43,6.35783e-007],[[7857,2],[8122,2],[8362,2],[8360,2]]], [8125,[13282.4,6639.08,0],[[7858,2],[8363,2]]], [8126,[13091.4,6753.61,7.62939e-006],[[7858,2],[8364,2]]], [8127,[13224.7,6949.56,0],[[7858,2],[8365,2]]], [8128,[12906.6,6457.31,0],[[7859,2],[8366,2]]], [8129,[12716.6,6578.3,-1.90735e-006],[[7859,2],[8367,2],[8368,2],[8369,2]]], +[8130,[12447.4,6183.45,0],[[7861,2]]], [8131,[12250.1,6232.58,0],[[7861,2],[8370,2],[8135,2]]], [8132,[13661,7926.39,2.54313e-006],[[7862,2],[8371,2],[8372,2],[8325,2],[8373,2]]], [8133,[13324.6,7573.49,2.54313e-006],[[7863,2],[8374,2],[8375,2]]], [8134,[10315.3,6409.45,0],[[7864,2],[7879,2]]], [8135,[12138.7,6300.33,0],[[7865,2],[8131,2],[8370,2]]], +[8136,[11942,6588.22,0],[[7866,2],[8376,2],[8377,2]]], [8137,[12110.2,6615.41,7.62939e-006],[[7866,2],[8378,2]]], [8138,[11487.8,6504.51,0],[[7867,2],[8379,2],[8138,2],[8380,2]]], [8139,[11545.6,6371.46,0],[[7867,2],[7869,2],[8381,2]]], [8140,[11416.4,6272.18,0],[[7870,2]]], [8141,[11279.5,6292.55,2.54313e-006],[[7870,2],[8382,2],[8383,2]]], +[8142,[10634,6130.14,7.62939e-006],[[7871,2],[8384,2]]], [8143,[10775.7,5971.23,0],[[7872,2],[8385,2]]], [8144,[14074.7,1525.4,0],[[7873,2],[8386,2],[8387,2]]], [8145,[14074.4,1601.09,-1.90735e-006],[[7873,2],[8388,2]]], [8146,[13547.5,1015.9,6.35783e-007],[[7875,2],[8389,2],[8390,2]]], [8147,[13355,969.605,0],[[7875,2],[7878,2]]], +[8148,[13446.6,881.771,3.17891e-007],[[7875,2],[7878,2],[8391,2]]], [8149,[13804.4,1145.27,-9.53674e-007],[[7876,2],[8392,2]]], [8150,[13328.7,686.072,0],[[7878,2],[8393,2]]], [8151,[10534.1,6457.83,0],[[7879,2],[8394,2]]], [8152,[10530.1,6704.43,-1.90735e-006],[[7879,2],[8395,2],[8396,2],[8397,2]]], [8153,[9840.41,7479.17,0],[[7880,2],[8153,2],[8398,2],[8399,2]]], +[8154,[9788.61,7434.2,0],[[7880,2]]], [8155,[8905.66,7507.36,-2.54313e-006],[[7882,2],[8400,2],[8155,2]]], [8156,[9177.48,7862.2,1.90735e-006],[[7883,2],[7899,2],[8156,2],[8401,2]]], [8157,[9665.31,7724.71,0],[[7884,2],[8402,2],[8403,2],[8404,2]]], [8158,[9718.44,7647.06,7.62939e-006],[[7884,2],[8158,2]]], [8159,[5070.84,4647.33,6.35783e-007],[[7597,2]]], +[8160,[6725.24,8793.48,0],[[7886,2],[8405,2],[8160,2],[8406,2]]], [8161,[7390.15,9263.68,0],[[7887,2],[8170,2]]], [8162,[6236.58,8681.23,0],[[7889,2],[8407,2]]], [8163,[5958.02,8668.92,0],[[7889,2],[8408,2]]], [8164,[5959.02,8707.35,0],[[7889,2],[8409,2]]], [8165,[5494.03,8347.85,-2.54313e-006],[[7893,2],[8410,2],[8411,2]]], +[8166,[5298.9,8348.21,-1.90735e-006],[[7893,2],[7910,2],[8176,2],[8166,2],[8412,2]]], [8167,[9398.76,8313.92,-2.54313e-006],[[7898,2],[8413,2],[8414,2]]], [8168,[9285.51,8420.22,2.54313e-006],[[7898,2],[8297,2],[8296,2]]], [8169,[7610.25,9351.15,0],[[7901,2]]], [8170,[7442.65,9423.31,0],[[7901,2],[8161,2],[8415,2]]], [8171,[8476.57,9040.39,0],[[7904,2],[8416,2],[8417,2]]], +[8172,[8718.43,8890.83,0],[[7905,2],[7906,2],[8418,2]]], [8173,[5038.04,9241.91,1.27157e-006],[[7911,2],[8013,2],[8419,2]]], [8174,[5126.55,8618.1,0],[[7912,2],[8420,2]]], [8175,[4982.05,8719.27,3.8147e-006],[[7912,2]]], [8176,[5104.35,8498.26,0],[[7912,2],[8166,2],[8412,2]]], [8177,[4025.26,9611.78,0],[[7915,2],[8421,2],[8256,2]]], +[8178,[2349.81,10902.1,0],[[7916,2],[7924,2],[8422,2]]], [8179,[2829.68,10802.1,6.35783e-007],[[7917,2],[8423,2],[8424,2]]], [8180,[2717.84,11136.9,-6.35783e-007],[[7918,2],[8425,2],[8199,2],[8426,2]]], [8181,[1922.98,10869.3,0],[[7919,2]]], [8182,[1459.07,10826.2,0],[[7920,2],[8427,2]]], [8183,[1573.48,10465.8,0],[[7921,2],[8428,2]]], +[8184,[1588.79,11042.9,-4.76837e-007],[[7923,2],[8429,2]]], [8185,[2037.82,10840.9,0],[[7924,2]]], [8186,[2275.21,10905,0],[[7924,2],[8430,2]]], [8187,[1960.66,11085.6,0],[[7926,2],[8431,2],[8189,2]]], [8188,[1864.16,11186.1,3.17891e-007],[[7926,2],[8432,2],[8433,2]]], [8189,[1932.75,11121.3,0],[[7926,2],[8187,2],[8189,2],[8434,2],[8431,2]]], +[8190,[3384.43,10693.1,0],[[7927,2],[8435,2]]], [8191,[3120.8,10631.3,0],[[7928,2],[8423,2],[8191,2]]], [8192,[3215.45,10662.2,-3.8147e-006],[[7928,2],[8436,2],[8437,2]]], [8193,[1556.32,11833,9.53674e-007],[[7929,2],[8438,2]]], [8194,[1626.11,11874.5,3.17891e-007],[[7929,2],[8439,2],[8196,2]]], [8195,[1824.35,11846.4,6.35783e-007],[[7930,2],[8195,2],[8440,2]]], +[8196,[1717.75,11800.9,-6.35783e-007],[[7931,2],[8194,2],[8441,2]]], [8197,[1496.25,12099.5,0],[[7933,2],[8442,2]]], [8198,[1446.34,12377.3,-4.76837e-007],[[7933,2],[7977,2],[8233,2]]], [8199,[2762.52,11240.5,0],[[7934,2],[8180,2],[8425,2]]], [8200,[2650.61,11384.7,0],[[7934,2],[8443,2],[8444,2]]], [8201,[2074.06,11830.6,0],[[7936,2]]], +[8202,[1983.87,11802.2,-4.76837e-007],[[7936,2],[7937,2],[8445,2],[8202,2],[8446,2]]], [8203,[1877.79,11562.3,0],[[7937,2],[8447,2]]], [8204,[4105.11,17417.6,2.54313e-006],[[7938,2],[8448,2],[8204,2]]], [8205,[4144.86,17762,0],[[7941,2],[8450,2],[8451,2]]], [8206,[5055.69,18098,0],[[7943,2],[8452,2]]], [8207,[4921.78,18178.1,0],[[7944,2],[8453,2]]], +[8208,[4698.01,18035.9,0],[[7945,2],[8454,2],[8455,2]]], [8209,[5438.38,17932.3,0],[[7947,2],[8456,2],[8457,2]]], [8210,[5806.51,17475.1,6.35783e-007],[[7948,2],[8458,2],[8210,2]]], [8211,[6304.87,17110.4,0],[[7950,2],[7952,2],[8459,2]]], [8212,[6226.2,17227.1,0],[[7950,2],[8460,2],[8461,2],[8214,2]]], [8213,[6369.16,17152.4,0],[[7950,2],[8462,2],[8215,2],[8213,2]]], +[8214,[6269.43,17238.4,9.53674e-007],[[7950,2],[8212,2],[8463,2]]], [8215,[6411.6,17237.2,0],[[7950,2],[8213,2],[8462,2],[8464,2],[8465,2]]], [8216,[1837,15915.6,4.76837e-007],[[7955,2],[8466,2]]], [8217,[2611.19,17012.8,0],[[7956,2],[7957,2],[8218,2],[8467,2]]], [8218,[2660.46,17026.1,-2.54313e-006],[[7957,2],[7965,2],[8217,2]]], [8219,[2225.01,16710.4,0],[[7958,2],[8468,2]]], +[8220,[2903.74,17381.1,7.62939e-006],[[7964,2],[8469,2]]], [8221,[2668.15,17223.4,-1.27157e-006],[[7965,2],[8470,2],[8471,2],[8221,2]]], [8222,[2757.83,17378.8,0],[[7966,2],[8222,2],[8473,2],[8474,2]]], [8223,[2689.68,17373.9,0],[[7967,2],[8475,2],[8474,2]]], [8224,[3591.72,17757,0],[[7969,2],[8476,2]]], [8225,[3497.28,17425,0],[[7970,2]]], +[8226,[3629.4,17432,0],[[7970,2],[8477,2],[8478,2]]], [8227,[3560.36,17300.6,0],[[7971,2]]], [8228,[3602.91,17201,0],[[7971,2],[8479,2]]], [8229,[3685.58,17001.1,0],[[7972,2],[8480,2]]], [8230,[1726.03,15117.5,1.27157e-006],[[7974,2],[8481,2],[8230,2]]], [8231,[1614.69,15243.4,0],[[7975,2],[8482,2]]], +[8232,[1461.48,14481.3,-4.76837e-007],[[7976,2],[7982,2]]], [8233,[1437.33,12432.5,3.17891e-007],[[7977,2],[7979,2],[8198,2]]], [8234,[7349.6,15653.6,1.90735e-006],[[7985,2],[7991,2],[8483,2],[8484,2]]], [8235,[7966.44,15898.8,-3.8147e-006],[[7986,2],[8485,2]]], [8236,[6671.97,15469.6,0],[[7987,2],[8486,2]]], [8237,[6694.63,16549.5,2.54313e-006],[[7988,2],[8487,2],[8488,2],[8237,2]]], +[8238,[7369.75,16034.2,7.62939e-006],[[7990,2],[8489,2]]], [8239,[7252.39,16247.3,0],[[7992,2],[8490,2]]], [8240,[7072.1,16486.6,0],[[7994,2],[8491,2],[8492,2]]], [8241,[6956.57,16490.1,0],[[7994,2]]], [8242,[6370.89,10218.5,0],[[7995,2],[8493,2],[8494,2]]], [8243,[8369.41,15237.2,0],[[7997,2]]], +[8244,[8602.53,15307.9,0],[[7998,2],[8495,2]]], [8245,[8589.28,15085.3,5.72205e-006],[[7998,2],[8496,2],[8497,2],[8498,2],[8248,2]]], [8246,[8650.34,14750.6,7.62939e-006],[[7999,2],[8054,2],[8307,2]]], [8247,[8608.4,14880.5,0],[[7999,2]]], [8248,[8698.12,14943.1,2.54313e-006],[[7999,2],[8245,2],[8499,2],[8498,2]]], [8249,[8177.71,15384.7,-7.62939e-006],[[8001,2]]], +[8250,[8494.9,14528,2.54313e-006],[[8004,2],[8306,2],[8500,2]]], [8251,[8528.81,14391.5,0],[[8004,2],[8251,2]]], [8252,[8480.65,13882.9,7.62939e-006],[[8005,2],[8304,2]]], [8253,[5379.21,9443.67,0],[[8006,2],[8501,2],[8502,2]]], [8254,[5209.23,9552.04,0],[[8006,2]]], [8255,[5691.88,9740.24,-7.62939e-006],[[8008,2],[8503,2]]], +[8256,[4009.59,9734.88,0],[[8009,2],[8177,2]]], [8257,[3390.95,10876.5,-1.90735e-006],[[8010,2],[8504,2],[8505,2],[8436,2]]], [8258,[4499.04,9537.16,0],[[8012,2],[8506,2]]], [8259,[14230.6,10166,-5.08626e-006],[[8014,2],[8093,2],[8507,2]]], [8260,[14099.6,10070.4,0],[[8014,2]]], [8261,[13945,9817.51,2.54313e-006],[[8016,2],[8508,2],[8509,2]]], +[8262,[13983.4,9902.45,0],[[8016,2]]], [8263,[13812.9,9733.7,-7.62939e-006],[[8017,2]]], [8264,[12900.8,9291.13,0],[[8018,2],[8510,2]]], [8265,[13219,9360.39,7.62939e-006],[[8019,2],[8511,2]]], [8266,[13587.5,9131.86,0],[[8020,2],[8512,2],[8513,2]]], [8267,[14166.2,11530.8,7.62939e-006],[[8022,2]]], +[8268,[14252,11506.8,2.54313e-006],[[8022,2],[8514,2],[8515,2]]], [8269,[14081.9,12096.6,0],[[8023,2],[8037,2]]], [8270,[14583.4,10474,1.27157e-006],[[8025,2],[8334,2],[8516,2]]], [8271,[14837,10641.2,-3.8147e-006],[[8025,2],[8084,2],[8517,2]]], [8272,[14731.2,11193.5,0],[[8026,2],[8518,2]]], [8273,[14524.7,11232.4,3.8147e-006],[[8026,2],[8519,2]]], +[8274,[12012.9,8380.12,0],[[8027,2],[8274,2],[8520,2],[8521,2],[8522,2]]], [8275,[12066.3,8474.22,2.54313e-006],[[8027,2]]], [8276,[12098.9,8466.31,7.62939e-006],[[8027,2]]], [8277,[11501.9,8354.61,1.90735e-006],[[8029,2],[8523,2],[8524,2],[8525,2]]], [8278,[11648.4,8454.32,2.54313e-006],[[8029,2],[8526,2],[8527,2]]], [8279,[11036.9,8362.34,0],[[8031,2],[8528,2]]], +[8280,[11114.5,8129.47,0],[[8031,2],[8529,2]]], [8281,[11342,8160.55,5.08626e-006],[[8031,2],[8530,2],[8523,2],[8531,2]]], [8282,[10909.1,8594.97,0],[[8033,2],[8282,2]]], [8283,[10457.7,9051.08,0],[[8035,2]]], [8284,[10741.3,8546.97,0],[[8036,2],[8532,2]]], [8285,[10498.6,8555.85,-7.62939e-006],[[8036,2],[8533,2]]], +[8286,[14206.9,12103.2,0],[[8038,2],[8534,2]]], [8287,[9160.18,15009.5,0],[[8040,2],[8535,2]]], [8288,[8773.07,14702.4,0],[[8041,2],[8536,2]]], [8289,[9542.6,14947.6,0],[[8042,2],[8537,2]]], [8290,[9498.13,15416,0],[[8044,2]]], [8291,[9278.9,15425.5,0],[[8044,2],[8538,2]]], +[8292,[9487.89,15443.1,0],[[8045,2],[8539,2]]], [8293,[9457.55,15136.2,0],[[8046,2],[8540,2],[8541,2]]], [8294,[9693.29,14996.1,0],[[8046,2]]], [8295,[9567.73,14963.4,-7.62939e-006],[[8046,2]]], [8296,[9278.09,8563.03,0],[[8047,2],[8168,2]]], [8297,[9447.3,8521.47,0],[[8048,2],[8168,2]]], +[8298,[9762.6,8578.37,0],[[8049,2],[8542,2]]], [8299,[9938.33,8410.09,-2.54313e-006],[[8049,2],[8543,2],[8544,2]]], [8300,[10253.7,8417.52,-1.27157e-006],[[8050,2],[8300,2],[8545,2],[8533,2],[8546,2],[8547,2]]], [8301,[10064.2,8408,0],[[8050,2],[8051,2],[8302,2]]], [8302,[10049.9,8409.61,0],[[8051,2],[8301,2],[8548,2]]], [8303,[8626.81,14095.6,0],[[8052,2],[8055,2],[8303,2]]], +[8304,[8529.49,13984.1,0],[[8052,2],[8252,2],[8549,2]]], [8305,[8744.46,14696.8,-7.62939e-006],[[8054,2]]], [8306,[8642.26,14667.1,0],[[8054,2],[8250,2],[8307,2]]], [8307,[8653.9,14709.1,0],[[8054,2],[8246,2],[8306,2]]], [8308,[8727.33,14244.2,-7.62939e-006],[[8055,2]]], [8309,[7430.81,9982.76,0],[[8057,2]]], +[8310,[6978.58,10071.5,-2.54313e-006],[[8058,2],[8550,2],[8551,2]]], [8311,[7779.26,10106.7,0],[[8311,2],[8552,2],[8553,2],[8060,2]]], [8312,[7966.71,10145.8,0],[[8061,2]]], [8313,[8795.86,9291.35,0],[[8064,2],[8071,2]]], [8314,[8612.91,9253.28,-5.08626e-006],[[8064,2],[8554,2],[8315,2]]], [8315,[8574.49,9252.18,0],[[8064,2],[8314,2],[8416,2]]], +[8316,[8490.21,9247.45,1.52588e-005],[[8064,2],[8417,2]]], [8317,[8077.03,9495.04,0],[[8065,2],[8555,2]]], [8318,[7998.93,9910.63,0],[[8066,2],[8556,2],[8319,2],[8318,2]]], [8319,[8015.72,9910.5,3.8147e-006],[[8318,2],[8319,2],[8066,2]]], [8320,[8817.31,9103.07,0],[[8067,2],[8070,2],[8557,2]]], [8321,[8833.04,9105.88,0],[[8070,2],[8321,2]]], +[8322,[9117.95,8307.21,7.62939e-006],[[8073,2]]], [8323,[13957.3,8775.91,0],[[8075,2],[8558,2]]], [8324,[13927.4,8454.09,0],[[8076,2]]], [8325,[13889.7,8133,-2.54313e-006],[[8077,2],[8132,2],[8559,2],[8560,2]]], [8326,[14101.6,8137.75,0],[[8077,2],[8561,2],[8562,2]]], [8327,[14182.8,9410.73,0],[[8079,2],[8563,2]]], +[8328,[14280.7,9562.01,0],[[8079,2],[8336,2]]], [8329,[15566,10422.1,0],[[8083,2]]], [8330,[14910.4,10637.5,0],[[8084,2],[8564,2]]], [8331,[15435.5,10858.7,0],[[8085,2],[8565,2],[8566,2],[8567,2]]], [8332,[14753.3,10369.7,1.27157e-006],[[8087,2],[8516,2],[8568,2],[8333,2],[8332,2]]], [8333,[14745,10332.6,3.8147e-006],[[8089,2],[8332,2],[8568,2]]], +[8334,[14524.1,10284.6,0],[[8093,2],[8270,2],[8569,2]]], [8335,[14732.8,9802.37,0],[[8095,2],[8570,2]]], [8336,[14276.8,9680.89,2.54313e-006],[[8096,2],[8328,2],[8508,2]]], [8337,[16061.6,10619,0],[[8098,2]]], [8338,[15970.7,10663.3,6.35783e-007],[[8098,2],[8571,2],[8338,2]]], [8339,[16404.7,10674.2,0],[[8099,2],[8100,2],[8339,2]]], +[8340,[16192.7,10742.4,0],[[8099,2],[8571,2]]], [8341,[16576.7,10611.2,-3.17891e-007],[[8100,2],[8341,2],[8572,2]]], [8342,[17369.6,10386.4,1.58946e-007],[[8103,2]]], [8343,[17488.9,10414.6,-1.19209e-007],[[8104,2],[8106,2]]], [8344,[17395.9,10162.5,1.90735e-006],[[8105,2]]], [8345,[17424.7,10066.3,0],[[8105,2]]], +[8346,[17576.8,10401.9,1.58946e-007],[[8106,2]]], [8347,[16811.1,2175.52,0],[[8107,2]]], [8348,[16910.5,2058.66,0],[[8107,2],[8110,2],[8573,2],[8574,2],[8575,2]]], [8349,[16750.1,1898.58,0],[[8110,2],[8112,2],[8576,2]]], [8350,[16713.7,1758.94,1.58946e-007],[[8112,2],[8577,2],[8353,2]]], [8351,[15648.7,1918.49,9.53674e-007],[[8113,2],[8119,2]]], +[8352,[16388.7,1449.56,0],[[8114,2],[8578,2],[8579,2]]], [8353,[16549,1660.09,-3.17891e-007],[[8115,2],[8350,2],[8580,2]]], [8354,[16427.3,1696.7,-4.76837e-007],[[8115,2]]], [8355,[16154.7,1307.52,0],[[8117,2],[8581,2]]], [8356,[15946.6,1319.65,-9.53674e-007],[[8117,2],[8582,2]]], [8357,[15294,1931.76,0],[[8119,2],[8361,2]]], +[8358,[15502.9,1746.9,3.17891e-007],[[8119,2],[8583,2],[8584,2]]], [8359,[14730.5,1565.87,-1.27157e-006],[[8121,2],[8585,2],[8586,2]]], [8360,[14985.3,1814.93,0],[[8122,2],[8124,2],[8587,2]]], [8361,[15264.3,1957.9,0],[[8123,2],[8357,2]]], [8362,[15030.7,1839.8,0],[[8124,2],[8362,2]]], [8363,[13159.1,6567.91,0],[[8125,2],[8366,2]]], +[8364,[13006.3,6715.74,0],[[8126,2],[8368,2],[8588,2]]], [8365,[13104.8,7064.95,7.62939e-006],[[8127,2],[8589,2]]], [8366,[13053.4,6521.54,-7.62939e-006],[[8128,2],[8363,2]]], [8367,[12570.7,6515.43,-7.62939e-006],[[8129,2],[8590,2]]], [8368,[12863.9,6648.69,0],[[8129,2],[8364,2]]], [8369,[12697.2,6694.08,0],[[8129,2],[8591,2],[8592,2]]], +[8370,[12171.6,6287.22,0],[[8131,2],[8135,2],[8593,2]]], [8371,[13573.7,7975.36,-7.62939e-006],[[8132,2],[8373,2]]], [8372,[13777,8081.35,-7.62939e-006],[[8132,2],[8594,2]]], [8373,[13580.9,7975.39,0],[[8371,2],[8373,2],[8132,2]]], [8374,[13240.4,7560.57,0],[[8133,2],[8595,2],[8596,2]]], [8375,[13351.3,7439.01,0],[[8133,2],[8597,2]]], +[8376,[11854.8,6631.88,0],[[8136,2]]], [8377,[12014.3,6743.44,0],[[8136,2],[8598,2],[8377,2],[8599,2]]], [8378,[12142,6627.79,2.54313e-006],[[8137,2],[8600,2],[8601,2]]], [8379,[11343.6,6570.98,0],[[8138,2],[8602,2]]], [8380,[11555.8,6637.27,0],[[8138,2],[8603,2]]], [8381,[11501.2,6369.46,0],[[8139,2]]], +[8382,[11308.4,6376.89,0],[[8141,2]]], [8383,[11090.6,6349.05,0],[[8141,2],[8604,2]]], [8384,[10650,6183.73,0],[[8142,2]]], [8385,[10838.6,6054.49,0],[[8143,2],[8605,2],[8606,2]]], [8386,[14030.6,1333.37,0],[[8144,2],[8392,2],[8607,2]]], [8387,[14228.4,1524.26,1.90735e-006],[[8144,2],[8608,2]]], +[8388,[14196.1,1604.47,0],[[8145,2]]], [8389,[13616.8,1004.82,0],[[8146,2],[8389,2],[8609,2],[8610,2]]], [8390,[13544.5,937.735,-9.53674e-007],[[8146,2]]], [8391,[13653,851.026,9.53674e-007],[[8148,2],[8611,2]]], [8392,[13960.1,1168.45,0],[[8149,2],[8386,2],[8607,2]]], [8393,[13325.3,654.285,4.76837e-007],[[8150,2]]], +[8394,[10666.4,6418.95,0],[[8151,2],[8394,2]]], [8395,[10670.3,6615.57,0],[[8152,2],[8612,2]]], [8396,[10605.5,6774.09,0],[[8152,2],[8613,2],[8614,2]]], [8397,[10379.5,6737.01,-7.62939e-006],[[8152,2]]], [8398,[9979.83,7427.49,0],[[8153,2],[8615,2]]], [8399,[9880.39,7633.13,-7.62939e-006],[[8153,2],[8616,2]]], +[8400,[8880.28,7678.68,0],[[8155,2],[8617,2]]], [8401,[9304.52,7852.65,0],[[8156,2],[8618,2]]], [8402,[9536.98,7713.45,0],[[8157,2]]], [8403,[9800.22,7813.11,2.54313e-006],[[8157,2],[8619,2],[8616,2]]], [8404,[9670.55,7827.2,0],[[8157,2]]], [8405,[6557.86,8757.51,0],[[8160,2],[8407,2]]], +[8406,[6821.24,8714.86,0],[[8160,2],[8620,2]]], [8407,[6377.89,8720.18,-2.54313e-006],[[8162,2],[8405,2],[8621,2]]], [8408,[5808.2,8654.48,2.54313e-006],[[8163,2],[8622,2],[8623,2]]], [8409,[5774.82,8774.33,-1.52588e-005],[[8164,2],[8624,2]]], [8410,[5607.32,8420.41,-7.62939e-006],[[8165,2]]], [8411,[5515.76,8326.38,0],[[8165,2]]], +[8412,[5124.54,8487.57,1.27157e-006],[[8176,2],[8420,2],[8166,2]]], [8413,[9506.72,8425.91,0],[[8167,2],[8625,2]]], [8414,[9424.2,8232.89,0],[[8167,2],[8626,2]]], [8415,[7323.25,9571.82,0],[[8170,2],[8627,2]]], [8416,[8503.01,9191.74,0],[[8171,2],[8315,2]]], [8417,[8470.25,9175.58,0],[[8171,2],[8316,2]]], +[8418,[8723.15,9017.96,0],[[8172,2],[8557,2]]], [8419,[5178.22,9309.82,-1.27157e-006],[[8173,2],[8628,2],[8501,2]]], [8420,[5164.39,8610.85,-1.27157e-006],[[8174,2],[8629,2],[8412,2]]], [8421,[4196.5,9569.15,0],[[8177,2],[8506,2]]], [8422,[2293.75,10904.1,0],[[8178,2]]], [8423,[2953.44,10731.5,6.35783e-007],[[8179,2],[8191,2],[8630,2]]], +[8424,[2852.17,10844.1,0],[[8179,2]]], [8425,[2741.55,11204.4,0],[[8180,2],[8199,2],[8631,2]]], [8426,[2858.49,11123.8,1.90735e-006],[[8180,2],[8632,2]]], [8427,[1431.72,10959.4,0],[[8182,2],[8633,2],[8429,2]]], [8428,[1581.55,10412.3,1.58946e-007],[[8183,2],[8634,2],[8635,2]]], [8429,[1547.65,11070.1,-7.94729e-008],[[8184,2],[8427,2],[8636,2],[8633,2]]], +[8430,[2222.69,11029.5,0],[[8186,2],[8637,2]]], [8431,[2074.94,11148,0],[[8187,2],[8189,2],[8434,2]]], [8432,[1810.17,11249.4,-4.76837e-007],[[8188,2],[8638,2],[8432,2],[8639,2]]], [8433,[1984.11,11213,3.17891e-007],[[8188,2],[8640,2],[8434,2],[8641,2]]], [8434,[2064.99,11173.9,0],[[8189,2],[8431,2],[8433,2],[8642,2]]], [8435,[3423.52,10805,0],[[8190,2],[8643,2]]], +[8436,[3273.09,10753.8,-6.35783e-007],[[8192,2],[8257,2],[8437,2],[8436,2],[8505,2]]], [8437,[3258.2,10747.9,0],[[8436,2],[8831,2],[8437,2],[8192,2]]], [8438,[1550.61,11717.1,-9.53674e-007],[[8193,2],[8644,2]]], [8439,[1659.22,11689.9,0],[[8194,2],[8645,2],[8644,2]]], [8440,[1837.34,11776.3,0],[[8195,2],[8646,2],[8441,2]]], [8441,[1788.86,11758.5,0],[[8196,2],[8440,2],[8646,2]]], +[8442,[1520.19,11989.4,-9.53674e-007],[[8197,2]]], [8443,[2599.76,11490.5,0],[[8200,2],[8647,2],[8444,2]]], [8444,[2629.69,11484.5,0],[[8443,2],[8200,2]]], [8445,[2006.4,11817.3,-9.53674e-007],[[8202,2]]], [8446,[1938.11,11817.4,-3.17891e-007],[[8202,2],[8648,2],[8649,2]]], [8447,[1830.97,11555.1,2.38419e-007],[[8203,2],[8650,2],[8646,2],[8651,2]]], +[8448,[4037.12,17445.9,0],[[8204,2],[8652,2],[8653,2],[8448,2]]], [8449,[4152.71,17357.7,0],[[7940,2]]], [8450,[4133.16,17825.3,2.54313e-006],[[8205,2],[8654,2],[8655,2]]], [8451,[4049.85,17744,0],[[8205,2],[8656,2]]], [8452,[5027.95,18194.1,0],[[8206,2],[8452,2],[8453,2]]], [8453,[4936.67,18216,1.90735e-006],[[8207,2],[8452,2],[8657,2],[8658,2]]], +[8454,[4574.36,17975.2,0],[[8208,2],[8659,2],[8660,2]]], [8455,[4665.22,18128.1,0],[[8208,2],[8455,2]]], [8456,[5414.78,18017.8,0],[[8209,2],[8661,2],[8662,2]]], [8457,[5458.54,17956.5,0],[[8209,2],[8663,2],[8457,2]]], [8458,[5855.67,17531.2,2.38419e-007],[[8210,2],[8664,2],[8665,2],[8666,2]]], [8459,[6345.58,17104.7,1.90735e-006],[[8211,2]]], +[8460,[6169.64,17226.6,6.35783e-007],[[8212,2],[8667,2],[8668,2],[8461,2]]], [8461,[6164.51,17336.8,0],[[8212,2],[8460,2],[8669,2],[8668,2],[8670,2],[8463,2]]], [8462,[6404.78,17183.1,4.76837e-007],[[8213,2],[8215,2],[8462,2],[8671,2]]], [8463,[6256.95,17327.9,0],[[8214,2],[8461,2],[8672,2],[8673,2]]], [8464,[6441.37,17280.9,0],[[8215,2],[8673,2],[8674,2]]], [8465,[6534.82,17218.5,-6.35783e-007],[[8215,2],[8675,2],[8674,2],[8676,2]]], +[8466,[1788.06,15808.5,0],[[8216,2],[8677,2]]], [8467,[2550.3,17104.2,0],[[8217,2],[8467,2],[8678,2]]], [8468,[2233.65,16746.1,0],[[8219,2],[8468,2],[8679,2]]], [8469,[2920.78,17389.4,3.05176e-006],[[8220,2],[8680,2],[8681,2],[8682,2],[8683,2]]], [8470,[2602.24,17257.7,-6.35783e-007],[[8221,2],[8684,2],[8685,2]]], [8471,[2686.98,17215.7,-1.90735e-006],[[8221,2]]], +[8472,[2746.42,17301.8,0],[[7968,2]]], [8473,[2815.56,17379,3.8147e-006],[[8222,2]]], [8474,[2740.28,17419.3,0],[[8222,2],[8223,2],[8686,2],[8687,2]]], [8475,[2693.97,17390.1,1.90735e-006],[[8223,2],[8685,2]]], [8476,[3593.7,17809,1.52588e-006],[[8224,2],[8688,2],[8476,2],[8689,2],[8690,2]]], [8477,[3702.92,17458.1,0],[[8226,2],[8691,2]]], +[8478,[3682.98,17389.8,0],[[8226,2],[8692,2],[8693,2]]], [8479,[3769.94,17217.9,0],[[8228,2],[8694,2]]], [8480,[3714.42,17075.2,0],[[8229,2],[8695,2]]], [8481,[1720.49,15256.5,0],[[8230,2],[8696,2]]], [8482,[1654.9,15401.8,0],[[8231,2],[8697,2]]], [8483,[7455.22,15794.1,-7.62939e-006],[[8234,2]]], +[8484,[7252.1,15593.7,0],[[8234,2],[8698,2],[8484,2]]], [8485,[7994.09,15952.5,0],[[8235,2],[8699,2],[8700,2]]], [8486,[6739.77,15382.4,0],[[8236,2],[8701,2]]], [8487,[6760.18,16598.2,0],[[8237,2]]], [8488,[6680.01,16532.3,0],[[8237,2],[8702,2],[8488,2]]], [8489,[7404.62,16056.2,0],[[8238,2]]], +[8490,[7292.16,16283.9,3.8147e-006],[[8239,2]]], [8491,[7080.5,16460.8,0],[[8240,2],[8491,2]]], [8492,[7168.35,16596.6,0],[[8240,2],[8703,2]]], [8493,[6240.24,10235.5,0],[[8242,2],[8704,2]]], [8494,[6377.64,10108.7,2.54313e-006],[[8242,2],[8705,2],[8706,2]]], [8495,[8578.4,15429.2,0],[[8244,2],[8707,2],[8708,2]]], +[8496,[8583.28,15024.4,0],[[8245,2]]], [8497,[8697.03,15195.5,0],[[8245,2],[8709,2],[8710,2]]], [8498,[8647.71,14990.3,3.05176e-006],[[8245,2],[8248,2],[8498,2]]], [8499,[8823.2,15024.5,0],[[8248,2],[8711,2]]], [8500,[8446.91,14640,7.62939e-006],[[8250,2],[8712,2]]], [8501,[5234.79,9350.94,0],[[8253,2],[8419,2]]], +[8502,[5533.26,9516.16,0],[[8253,2],[8713,2]]], [8503,[5694.2,9627.18,0],[[8255,2],[8714,2]]], [8504,[3333.44,10916.4,0],[[8257,2],[8715,2],[8716,2],[8504,2]]], [8505,[3348.25,10791.5,0],[[8257,2],[8436,2]]], [8506,[4347.3,9545.93,1.27157e-006],[[8258,2],[8421,2],[8717,2]]], [8507,[14231.3,10285.1,0],[[8259,2]]], +[8508,[14119.5,9762.66,-1.90735e-006],[[8261,2],[8336,2],[8718,2],[8508,2]]], [8509,[13946,9787,2.54313e-006],[[8261,2],[8509,2],[8719,2]]], [8510,[12851,9180.34,0],[[8264,2],[8510,2]]], [8511,[13207.2,9346.3,0],[[8265,2]]], [8512,[13656.4,9128.17,-2.54313e-006],[[8266,2],[8720,2],[8721,2]]], [8513,[13426.3,9060.14,0],[[8266,2],[8722,2]]], +[8514,[14343.9,11603.8,0],[[8268,2],[8723,2]]], [8515,[14372.3,11391.4,0],[[8268,2],[8519,2]]], [8516,[14670.8,10404.4,-3.8147e-006],[[8270,2],[8332,2]]], [8517,[14898.1,10635.8,0],[[8271,2]]], [8518,[14825.2,11278.6,-4.76837e-007],[[8272,2],[8724,2],[8725,2],[8726,2]]], [8519,[14469.3,11306.7,0],[[8273,2],[8515,2],[8724,2]]], +[8520,[12057.4,8327.87,0],[[8274,2]]], [8521,[11947.5,8394.55,0],[[8274,2]]], [8522,[11930.8,8209.95,0],[[8274,2],[8727,2]]], [8523,[11425.7,8167.62,0],[[8277,2],[8281,2],[8728,2]]], [8524,[11422.7,8269.23,-7.62939e-006],[[8277,2],[8524,2]]], [8525,[11635.9,8295.31,0],[[8277,2],[8526,2]]], +[8526,[11693.7,8348.21,0],[[8278,2],[8525,2]]], [8527,[11626.1,8430.35,-7.62939e-006],[[8278,2]]], [8528,[10928.8,8428.27,0],[[8279,2],[8532,2]]], [8529,[11088.4,8097.9,-3.8147e-006],[[8280,2],[8729,2],[8531,2],[8730,2]]], [8530,[11394.6,8132.65,7.62939e-006],[[8281,2],[8731,2]]], [8531,[11245,8010.5,0],[[8281,2],[8529,2]]], +[8532,[10844.1,8480.46,0],[[8284,2],[8528,2]]], [8533,[10350.5,8456.94,0],[[8285,2],[8300,2]]], [8534,[14286.8,12015.7,1.90735e-006],[[8286,2],[8732,2]]], [8535,[9302.25,15123.1,0],[[8287,2],[8541,2]]], [8536,[8874.42,14596.6,0],[[8288,2],[8733,2]]], [8537,[9622.38,14852.6,0],[[8289,2],[8734,2]]], +[8538,[9200.45,15435.3,0],[[8291,2],[8538,2],[8735,2],[8736,2]]], [8539,[9377.42,15482.2,0],[[8292,2],[8737,2]]], [8540,[9483.5,15186.7,0],[[8293,2]]], [8541,[9375.63,15188.5,0],[[8293,2],[8535,2],[8738,2]]], [8542,[9632.18,8538.72,0],[[8298,2],[8625,2]]], [8543,[9825.61,8416.37,0],[[8299,2]]], +[8544,[9914.71,8200.76,0],[[8299,2],[8739,2]]], [8545,[10106.6,8340.86,0],[[8300,2],[8740,2]]], [8546,[10085.6,8277.79,0],[[8300,2],[8741,2]]], [8547,[10418.6,8312.77,0],[[8300,2],[8742,2]]], [8548,[10037.1,8338.68,0],[[8302,2]]], [8549,[8495.09,14072.7,0],[[8304,2]]], +[8550,[7033.15,9953.08,0],[[8310,2],[8743,2]]], [8551,[6841.97,10012.2,-7.62939e-006],[[8310,2],[8744,2]]], [8552,[7700.56,9989.43,0],[[8311,2],[8745,2]]], [8553,[7783.38,10123.8,-2.54313e-006],[[8311,2]]], [8554,[8719.34,9162.35,1.52588e-005],[[8314,2],[8557,2]]], [8555,[8001.12,9432.48,1.52588e-005],[[8317,2],[8746,2]]], +[8556,[7916.64,9896.75,5.08626e-006],[[8318,2],[8556,2],[8747,2]]], [8557,[8768.8,9105.03,-5.08626e-006],[[8320,2],[8418,2],[8554,2]]], [8558,[13829.1,8824.48,1.52588e-006],[[8323,2],[8748,2],[8721,2],[8749,2],[8750,2]]], [8559,[13801.8,8093.41,0],[[8325,2]]], [8560,[13879,8004.19,0],[[8325,2],[8560,2]]], [8561,[14073.2,8008.25,0],[[8326,2]]], +[8562,[14268.2,8087.82,0],[[8326,2],[8562,2]]], [8563,[14092.9,9360.45,0],[[8327,2],[8751,2],[8752,2],[8753,2]]], [8564,[14957.7,10788.7,0],[[8330,2],[8754,2]]], [8565,[15498.6,11021.1,9.53674e-007],[[8331,2],[8755,2],[8756,2]]], [8566,[15557.4,10834.6,0],[[8331,2],[8757,2],[8567,2],[8566,2]]], [8567,[15527.3,10841.6,0],[[8566,2],[8927,2],[8567,2],[8331,2]]], +[8568,[14758.8,10359.5,1.27157e-006],[[8332,2],[8333,2]]], [8569,[14586,10286.8,0],[[8334,2]]], [8570,[14764.6,9796.63,0],[[8335,2]]], [8571,[16049.2,10789.2,4.76837e-007],[[8338,2],[8340,2],[8758,2]]], [8572,[16569.7,10643.1,0],[[8341,2]]], [8573,[16980.1,2078.51,0],[[8348,2]]], +[8574,[16984.2,2034.25,0],[[8348,2]]], [8575,[16899.1,1991.91,-1.58946e-007],[[8348,2],[8759,2],[8760,2]]], [8576,[16775.5,1834.73,0],[[8349,2]]], [8577,[16883.9,1789.53,-4.76837e-007],[[8350,2],[8761,2],[8760,2]]], [8578,[16378.7,1321.76,0],[[8352,2],[8762,2]]], [8579,[16429.1,1457.56,0],[[8352,2]]], +[8580,[16565.6,1614.92,-9.53674e-007],[[8353,2]]], [8581,[16212.7,1200,5.96046e-008],[[8355,2],[8581,2],[8762,2],[8763,2]]], [8582,[15885.3,1268.92,-6.35783e-007],[[8356,2],[8764,2],[8765,2]]], [8583,[15537.5,1555.47,0],[[8358,2],[8766,2]]], [8584,[15581.5,1750.29,9.53674e-007],[[8358,2]]], [8585,[14720,1505.73,-1.27157e-006],[[8359,2],[8767,2],[8768,2]]], +[8586,[14895.3,1537.05,0],[[8359,2],[8769,2]]], [8587,[15013.4,1814.87,0],[[8360,2]]], [8588,[12981,6860.4,0],[[8364,2],[8770,2]]], [8589,[13000.6,7131.18,0],[[8365,2],[8771,2]]], [8590,[12423.9,6453.25,7.62939e-006],[[8367,2],[8772,2]]], [8591,[12724.8,6854.89,0],[[8369,2],[8773,2]]], +[8592,[12658,6852.45,0],[[8369,2],[8774,2],[8773,2],[8775,2]]], [8593,[12091.8,6150.96,0],[[8370,2],[8776,2]]], [8594,[13691,8150.05,0],[[8372,2]]], [8595,[13242.9,7707.89,-7.62939e-006],[[8374,2],[8777,2]]], [8596,[13194.5,7554.66,2.54313e-006],[[8374,2],[8778,2],[8779,2]]], [8597,[13455.5,7335.23,0],[[8375,2],[8780,2]]], +[8598,[12062.2,6840.33,0],[[8377,2],[8781,2],[8598,2],[8782,2]]], [8599,[11839.4,6812.62,-1.90735e-006],[[8377,2],[8783,2],[8784,2],[8782,2],[8785,2]]], [8600,[12323.7,6707.43,1.52588e-005],[[8378,2],[8786,2]]], [8601,[12196.6,6484.6,0],[[8378,2],[8787,2]]], [8602,[11214.6,6632.63,1.90735e-006],[[8379,2],[8604,2],[8788,2],[8789,2]]], [8603,[11604.3,6749.68,0],[[8380,2],[8790,2],[8791,2]]], +[8604,[11084.4,6362.12,1.90735e-006],[[8383,2],[8602,2],[8792,2],[8793,2]]], [8605,[10881.7,6046.56,0],[[8385,2],[8794,2],[8795,2]]], [8606,[10852.4,6103.81,0],[[8385,2]]], [8607,[13994,1169.44,0],[[8392,2],[8800,2],[8386,2],[8801,2]]], [8608,[14363.6,1524.83,-6.35783e-007],[[8387,2],[8767,2],[8796,2]]], [8609,[13604.5,914.846,0],[[8389,2]]], +[8610,[13672,998.96,3.17891e-007],[[8389,2],[8797,2],[8798,2]]], [8611,[13812.7,840.153,0],[[8391,2],[8799,2]]], [8612,[10752.4,6563.75,0],[[8395,2]]], [8613,[10766.3,6859.38,0],[[8396,2],[8802,2]]], [8614,[10618.9,6932.3,-7.62939e-006],[[8396,2],[8803,2]]], [8615,[10098.6,7384.33,0],[[8398,2],[8804,2]]], +[8616,[9885.26,7754.01,-7.62939e-006],[[8399,2],[8403,2]]], [8617,[8881.39,7818.89,7.62939e-006],[[8400,2],[8805,2]]], [8618,[9330.79,7896.77,-2.54313e-006],[[8401,2],[8806,2],[8807,2]]], [8619,[9813.62,7871.68,2.54313e-006],[[8403,2],[8808,2],[8809,2]]], [8620,[6904.7,8697.9,0],[[8620,2]]], [8621,[6385.93,8781.27,-1.90735e-006],[[8407,2],[8810,2],[8621,2],[8811,2]]], +[8622,[5630.99,8649.31,-7.62939e-006],[[8408,2],[8812,2]]], [8623,[5770.45,8565.04,0],[[8408,2]]], [8624,[5614.29,8815.37,0],[[8409,2],[8813,2]]], [8625,[9561.94,8475.85,0],[[8413,2],[8542,2],[8814,2]]], [8626,[9429.12,8110.81,-7.62939e-006],[[8414,2],[8815,2]]], [8627,[7287.67,9654.31,1.90735e-006],[[8415,2],[8816,2],[8817,2],[8818,2]]], +[8628,[5170.3,9178.24,0],[[8419,2],[8819,2]]], [8629,[5237.86,8628.67,-1.27157e-006],[[8420,2],[8820,2],[8821,2]]], [8630,[2981.73,10793.4,0],[[8423,2]]], [8631,[2623.22,11223.8,-1.90735e-006],[[8425,2],[8822,2]]], [8632,[3021.5,11115,-1.90735e-006],[[8426,2],[8823,2]]], [8633,[1476.53,11079.9,0],[[8427,2],[8429,2],[8824,2]]], +[8634,[1675,10393.1,4.76837e-007],[[8428,2]]], [8635,[1514.23,10287.2,0],[[8428,2]]], [8636,[1552.34,11181.7,0],[[8429,2],[8824,2]]], [8637,[2226.06,11113.2,0],[[8430,2],[8825,2],[8637,2],[8826,2]]], [8638,[1788.88,11329.8,3.17891e-007],[[8432,2],[8651,2],[8650,2]]], [8639,[1713.43,11148.2,9.53674e-007],[[8432,2],[8827,2]]], +[8640,[2059.47,11221.2,0],[[8433,2],[8828,2]]], [8641,[2023.97,11282.5,-3.17891e-007],[[8433,2],[8829,2],[8830,2],[8828,2]]], [8642,[2053.29,11212.8,0],[[8434,2]]], [8643,[3475.45,10781.3,-3.8147e-006],[[8435,2]]], [8644,[1629.9,11628,0],[[8438,2],[8439,2],[8645,2]]], [8645,[1674.78,11630.9,-9.53674e-007],[[8439,2],[8644,2],[8651,2]]], +[8646,[1819.8,11748.4,0],[[8440,2],[8441,2],[8447,2]]], [8647,[2540.32,11484.3,0],[[8443,2],[8832,2],[8647,2]]], [8648,[1968.34,11836.5,0],[[8446,2]]], [8649,[1907.64,11779,0],[[8446,2],[8833,2],[8649,2]]], [8650,[1817.25,11457.3,0],[[8447,2],[8638,2]]], [8651,[1704.67,11527.8,0],[[8447,2],[8638,2],[8645,2],[8834,2]]], +[8652,[4003.81,17476.1,2.54313e-006],[[8448,2],[8835,2],[8836,2]]], [8653,[4055.94,17436.8,0],[[8448,2]]], [8654,[3989.25,17824.5,0],[[8450,2],[8837,2],[8654,2]]], [8655,[4256.79,17956.4,7.62939e-006],[[8450,2],[8838,2]]], [8656,[4025.35,17706.3,0],[[8451,2],[8839,2],[8656,2],[8840,2],[8835,2]]], [8657,[4830.17,18234.3,0],[[8453,2]]], +[8658,[5007.18,18394.1,0],[[8453,2],[8841,2]]], [8659,[4573.44,18008.5,0],[[8454,2]]], [8660,[4470.91,17856.6,0],[[8454,2],[8842,2]]], [8661,[5381.6,18164.3,0],[[8456,2],[8843,2]]], [8662,[5505.62,18113.2,0],[[8456,2],[8844,2],[8845,2],[8846,2]]], [8663,[5467.73,17990.7,-1.27157e-006],[[8457,2],[8663,2],[8844,2]]], +[8664,[5998.12,17446.4,3.17891e-007],[[8458,2],[8664,2],[8847,2],[8848,2],[8669,2],[8849,2]]], [8665,[5806.31,17577.6,0],[[8458,2]]], [8666,[5901.19,17603.5,3.17891e-007],[[8458,2],[8847,2],[8850,2]]], [8667,[6164.05,17195.5,-1.90735e-006],[[8460,2]]], [8668,[6135.58,17296.3,-1.90735e-006],[[8460,2],[8461,2],[8669,2]]], [8669,[6109.04,17377.7,-6.35783e-007],[[8461,2],[8664,2],[8668,2]]], +[8670,[6198.01,17370.8,4.76837e-007],[[8461,2],[8851,2],[8849,2],[8847,2]]], [8671,[6483.24,17098.7,-1.90735e-006],[[8462,2],[8852,2]]], [8672,[6202.69,17371.8,-4.76837e-007],[[8463,2]]], [8673,[6301.27,17325.6,0],[[8463,2],[8464,2],[8853,2]]], [8674,[6509.97,17283.6,1.19209e-007],[[8464,2],[8465,2],[8675,2],[8854,2],[8674,2]]], [8675,[6561.78,17237.1,0],[[8465,2],[8674,2],[8855,2]]], +[8676,[6585.11,17126,0],[[8465,2],[8856,2]]], [8677,[1713.2,15695.1,-4.76837e-007],[[8466,2],[8857,2],[8697,2]]], [8678,[2459.33,17105.9,0],[[8467,2],[8858,2],[8859,2],[8860,2]]], [8679,[2309.53,16843.2,-3.8147e-006],[[8468,2],[8861,2]]], [8680,[2951.06,17468.5,0],[[8469,2],[8862,2]]], [8681,[2989.39,17359.5,0],[[8469,2],[8863,2],[8681,2],[7404,2]]], +[8682,[2902.6,17341.2,0],[[8469,2]]], [8683,[2872.22,17421,0],[[8469,2]]], [8684,[2561.55,17180.1,0],[[8470,2],[8859,2]]], [8685,[2600.67,17333.5,0],[[8470,2],[8475,2],[8864,2]]], [8686,[2693.55,17403.5,-1.90735e-006],[[8474,2]]], [8687,[2760.01,17495.2,-6.35783e-007],[[8474,2],[8865,2],[8866,2]]], +[8688,[3635.3,17976.7,0],[[8476,2],[8867,2]]], [8689,[3525.01,17858.4,0],[[8476,2],[8689,2]]], [8690,[3558.53,17784.4,5.08626e-006],[[8476,2],[8868,2],[8690,2]]], [8691,[3703.75,17443.5,0],[[8477,2]]], [8692,[3674.37,17404.4,0],[[8478,2]]], [8693,[3717.82,17315.2,0],[[8478,2],[8869,2]]], +[8694,[3878.89,17296.1,0],[[8479,2],[8870,2]]], [8695,[3764.62,17147.1,7.62939e-006],[[8480,2],[8871,2]]], [8696,[1725.09,15301.3,0],[[8481,2],[8872,2],[8873,2]]], [8697,[1668.07,15551.8,0],[[8482,2],[8677,2],[8857,2]]], [8698,[7227.59,15579.8,0],[[8484,2],[8698,2]]], [8699,[7955.36,15991.5,0],[[8485,2]]], +[8700,[8034.74,16049.8,-3.8147e-006],[[8485,2],[8874,2]]], [8701,[6779.08,15330.4,0],[[8486,2]]], [8702,[6674.84,16535.9,0],[[8488,2],[8702,2]]], [8703,[7182.59,16624.3,0],[[8492,2],[8875,2],[8703,2]]], [8704,[6101.88,10238.4,0],[[8493,2],[8876,2]]], [8705,[6400.22,9957.75,0],[[8494,2],[8877,2]]], +[8706,[6509.6,10123,-7.62939e-006],[[8494,2],[8706,2]]], [8707,[8547.71,15620.6,1.27157e-006],[[8495,2],[8878,2],[8879,2],[8880,2],[8881,2],[8882,2]]], [8708,[8523.77,15412.7,0],[[8495,2]]], [8709,[8817.5,15358.3,0],[[8497,2],[8883,2]]], [8710,[8860.79,15218,0],[[8497,2],[8884,2]]], [8711,[8843.65,15062.4,0],[[8499,2]]], +[8712,[8470.37,14674.1,0],[[8500,2]]], [8713,[5621.3,9552.83,-2.54313e-006],[[8502,2],[8885,2],[8714,2]]], [8714,[5700.88,9614.72,5.08626e-006],[[8503,2],[8713,2],[8886,2]]], [8715,[3282.4,10920,0],[[8504,2],[8715,2],[8887,2]]], [8716,[3357.21,10915.4,0],[[8504,2]]], [8717,[4316.38,9574.81,0],[[8506,2]]], +[8718,[14103.2,9678.36,0],[[8508,2]]], [8719,[13948.5,9749.54,0],[[8509,2]]], [8720,[13739,9261.59,7.62939e-006],[[8512,2],[8888,2]]], [8721,[13763.3,8998.67,-1.90735e-006],[[8512,2],[8558,2],[8721,2],[8889,2]]], [8722,[13408.8,9041.29,0],[[8513,2],[8890,2],[8891,2]]], [8723,[14415.8,11650.6,2.54313e-006],[[8514,2],[8723,2],[8892,2]]], +[8724,[14656.3,11281.4,0],[[8518,2],[8519,2]]], [8725,[14916.4,11277.3,-6.35783e-007],[[8518,2],[8893,2],[8894,2]]], [8726,[14848.5,11434.1,-9.53674e-007],[[8518,2],[8895,2]]], [8727,[11876.3,8085.6,0],[[8522,2],[8896,2],[8897,2]]], [8728,[11406.7,8128.37,0],[[8523,2]]], [8729,[10996,7947.88,0],[[8529,2],[8898,2],[8899,2]]], +[8730,[10959.7,8184.1,0],[[8529,2],[8900,2]]], [8731,[11481.2,8070.87,0],[[8530,2],[8901,2],[8902,2]]], [8732,[14333.1,11962.5,0],[[8534,2],[8903,2]]], [8733,[8965.8,14502.2,0],[[8536,2],[8904,2]]], [8734,[9693.08,14785.3,0],[[8537,2],[8905,2]]], [8735,[9067.08,15506.4,0],[[8538,2],[8906,2]]], +[8736,[9131.22,15366.8,-9.53674e-007],[[8538,2],[8884,2],[8738,2],[8907,2]]], [8737,[9290.25,15466,0],[[8539,2],[8908,2]]], [8738,[9273.31,15257.8,-9.53674e-007],[[8541,2],[8736,2],[8738,2]]], [8739,[9915.21,8170.7,0],[[8544,2],[8809,2],[8741,2]]], [8740,[10084.5,8324.37,0],[[8545,2]]], [8741,[10052.3,8247.4,-2.54313e-006],[[8546,2],[8739,2],[8909,2]]], +[8742,[10565.3,8217.96,-7.62939e-006],[[8547,2],[8910,2],[8911,2]]], [8743,[7103.19,9898.17,-7.62939e-006],[[8550,2],[8912,2]]], [8744,[6712.32,9925.44,0],[[8551,2],[8913,2],[8914,2]]], [8745,[7689.56,9946.2,0],[[8552,2],[8747,2],[8915,2]]], [8746,[7992.33,9380.35,0],[[8555,2]]], [8747,[7875.42,9870.71,2.54313e-006],[[8556,2],[8745,2],[8916,2],[8747,2]]], +[8748,[13941.5,8870.48,0],[[8558,2],[8917,2],[8918,2]]], [8749,[13710.2,8751.51,0],[[8558,2],[8919,2]]], [8750,[13821.5,8717.51,0],[[8558,2]]], [8751,[14028.6,9315.33,-5.08626e-006],[[8563,2],[8920,2],[8921,2]]], [8752,[14140.2,9244.11,7.62939e-006],[[8563,2],[8752,2]]], [8753,[14053.5,9466.88,0],[[8563,2],[8922,2]]], +[8754,[14988.4,10922.1,-3.8147e-006],[[8564,2],[8923,2]]], [8755,[15517.8,11055.9,3.17891e-007],[[8565,2],[8924,2],[8925,2]]], [8756,[15412.2,11070.8,-1.90735e-006],[[8565,2]]], [8757,[15678.3,10913.3,0],[[8566,2],[8926,2],[8924,2]]], [8758,[15893.2,10850.4,0],[[8571,2],[8928,2]]], [8759,[16816.1,1989.42,-4.76837e-007],[[8575,2]]], +[8760,[16898.1,1921.92,-2.38419e-007],[[8575,2],[8577,2],[8929,2],[8930,2],[8761,2]]], [8761,[16906.1,1831.19,0],[[8577,2],[8760,2],[8931,2],[8932,2],[8761,2]]], [8762,[16285.5,1237.18,2.38419e-007],[[8578,2],[8581,2]]], [8763,[16191.8,1111.45,-4.76837e-007],[[8581,2],[8933,2]]], [8764,[15839.7,1245.71,2.38419e-007],[[8582,2],[8934,2],[8935,2],[8936,2]]], [8765,[15940.5,1157.17,0],[[8582,2],[8937,2]]], +[8766,[15536.9,1534.48,0],[[8583,2],[8938,2],[8939,2]]], [8767,[14560.7,1515.4,0],[[8585,2],[8608,2]]], [8768,[14736.1,1406.88,0],[[8585,2],[8940,2],[8941,2],[8942,2],[8943,2]]], [8769,[14910.6,1440.5,0],[[8586,2]]], [8770,[12952.4,6991.06,-7.62939e-006],[[8588,2],[8770,2]]], [8771,[12937.3,7162.17,0],[[8589,2],[8773,2],[8944,2],[8945,2]]], +[8772,[12295.8,6435.58,0],[[8590,2],[8946,2],[8787,2]]], [8773,[12769.2,6965.38,0],[[8591,2],[8592,2],[8771,2]]], [8774,[12535.7,6798.31,0],[[8592,2],[8786,2]]], [8775,[12561.5,7026.26,0],[[8592,2],[8947,2]]], [8776,[12041.4,6145.99,0],[[8593,2]]], [8777,[13175.3,7796.58,-2.54313e-006],[[8595,2],[8948,2],[8778,2]]], +[8778,[13175.7,7715.17,-7.62939e-006],[[8596,2],[8777,2]]], [8779,[13116.4,7372,0],[[8596,2],[8944,2]]], [8780,[13473.2,7263.9,0],[[8597,2],[8949,2]]], [8781,[12121,6940.69,3.8147e-006],[[8598,2],[8950,2],[8951,2],[8952,2]]], [8782,[11928.3,6901.98,0],[[8598,2],[8599,2],[8784,2]]], [8783,[11720,6757.81,0],[[8599,2],[8790,2]]], +[8784,[11891.3,6910.67,-1.90735e-006],[[8599,2],[8782,2],[8953,2],[8950,2],[8954,2]]], [8785,[11682.9,6897.49,0],[[8785,2],[8790,2],[8954,2],[8955,2]]], [8786,[12345.3,6722.24,5.08626e-006],[[8600,2],[8774,2],[8956,2]]], [8787,[12272.7,6450.65,0],[[8601,2],[8772,2],[8946,2]]], [8788,[11249.9,6711.87,0],[[8602,2],[8957,2],[8958,2]]], [8789,[11092.5,6698.38,0],[[8602,2],[8959,2]]], +[8790,[11636.1,6791.4,0],[[8603,2],[8783,2],[8785,2]]], [8791,[11472.5,6801.14,0],[[8603,2],[8958,2]]], [8792,[11036,6194.59,0],[[8604,2],[8794,2]]], [8793,[11032.6,6416.51,-7.62939e-006],[[8604,2]]], [8794,[11009.9,6046.05,0],[[8605,2],[8792,2]]], [8795,[10900.8,6115.33,0],[[8605,2]]], +[8796,[14365.7,1605.1,-1.90735e-006],[[8608,2]]], [8797,[13735.1,975.427,3.17891e-007],[[8610,2],[8960,2],[8961,2]]], [8798,[13668.9,912.604,0],[[8610,2]]], [8799,[13895.4,840.55,-1.58946e-007],[[8611,2],[8961,2],[8962,2]]], [8800,[13997.3,1033.69,0],[[8607,2],[8963,2],[8962,2]]], [8801,[14158.5,1136.5,0],[[8607,2],[8964,2]]], +[8802,[10785.9,6854.12,3.8147e-006],[[8613,2],[8965,2],[8959,2],[8802,2],[8966,2]]], [8803,[10628.1,6954.17,-2.54313e-006],[[8614,2],[8967,2],[8968,2]]], [8804,[10215.9,7341.74,0],[[8615,2],[8969,2]]], [8805,[8752.47,7854.02,0],[[8617,2]]], [8806,[9454.08,7849.72,0],[[8618,2]]], [8807,[9399.72,8022.06,0],[[8618,2],[8815,2]]], +[8808,[9775.11,7880.62,-7.62939e-006],[[8619,2]]], [8809,[9847.91,7964.4,-3.8147e-006],[[8619,2],[8739,2],[8970,2],[8809,2]]], [8810,[6363.36,8923.63,-2.54313e-006],[[8621,2],[8971,2],[8972,2]]], [8811,[6493.26,8883.32,0],[[8621,2],[8973,2]]], [8812,[5498.59,8641.06,0],[[8622,2],[8821,2]]], [8813,[5510.29,8835.29,0],[[8624,2],[8974,2],[8975,2]]], +[8814,[9617,8440.81,7.62939e-006],[[8625,2],[8976,2]]], [8815,[9436.63,8093.8,-5.08626e-006],[[8626,2],[8807,2],[8977,2]]], [8816,[7182,9614.45,0],[[8627,2],[8978,2],[8979,2]]], [8817,[7446.02,9718.34,-7.62939e-006],[[8627,2],[8980,2]]], [8818,[7223.38,9819.74,0],[[8627,2],[8912,2]]], [8819,[5174.71,9061.94,-1.27157e-006],[[8628,2],[8981,2],[8982,2]]], +[8820,[5335.94,8726.46,0],[[8629,2],[8975,2]]], [8821,[5412.93,8635.71,0],[[8629,2],[8812,2]]], [8822,[2477.73,11243.2,0],[[8631,2],[8983,2],[8826,2]]], [8823,[3170.56,11124.3,-6.35783e-007],[[8632,2],[8984,2],[8985,2]]], [8824,[1477.59,11141.5,0],[[8633,2],[8636,2],[8986,2]]], [8825,[2220.75,11104.7,0],[[8637,2]]], +[8826,[2293.19,11226.5,0],[[8637,2],[8822,2],[8983,2]]], [8827,[1659.38,11232.5,0],[[8639,2],[8987,2]]], [8828,[2097.26,11250.5,-3.17891e-007],[[8640,2],[8641,2],[8988,2],[8989,2]]], [8829,[2008.39,11317.6,0],[[8641,2]]], [8830,[2067.66,11301.4,9.53674e-007],[[8641,2],[8990,2],[8988,2]]], [8831,[3242.5,10722.1,0],[[8437,2]]], +[8832,[2493.55,11469.9,-3.17891e-007],[[8647,2],[8832,2],[8991,2]]], [8833,[1893.67,11711.6,0],[[8649,2]]], [8834,[1531.6,11532.1,-9.53674e-007],[[8651,2],[8992,2]]], [8835,[4018.78,17619.6,0],[[8652,2],[8656,2],[8840,2]]], [8836,[3870.61,17432.3,0],[[8652,2],[8993,2]]], [8837,[3915.74,17906.6,2.54313e-006],[[8654,2],[8994,2],[8995,2]]], +[8838,[4324.06,18010.3,-2.54313e-006],[[8655,2],[8996,2],[8842,2]]], [8839,[4028.11,17726.4,2.54313e-006],[[8656,2]]], [8840,[4024.38,17640.2,0],[[8840,2]]], [8841,[5033.53,18541.3,0],[[8658,2],[8997,2]]], [8842,[4424.53,17832.7,2.54313e-006],[[8660,2],[8838,2],[8998,2]]], [8843,[5377.06,18221.1,1.27157e-006],[[8661,2],[8843,2],[8999,2],[8846,2]]], +[8844,[5510.22,18062.3,6.35783e-007],[[8662,2],[8663,2],[9000,2]]], [8845,[5602.16,18069.4,0],[[8662,2],[9001,2],[9002,2]]], [8846,[5419.37,18244.7,0],[[8662,2],[8843,2],[8999,2]]], [8847,[6024.96,17523,0],[[8664,2],[8666,2],[8670,2],[9003,2],[8851,2]]], [8848,[5986.86,17403.7,0],[[8664,2],[8848,2],[9004,2]]], [8849,[6091.62,17447.1,0],[[8664,2],[8670,2],[9003,2]]], +[8850,[5871.24,17661.8,2.38419e-007],[[8666,2],[9005,2],[9006,2],[9007,2]]], [8851,[6104.71,17472.5,9.53674e-007],[[8670,2],[8847,2],[9008,2]]], [8852,[6526.64,17000.9,0],[[8671,2],[9009,2]]], [8853,[6264.49,17383.1,0],[[8673,2],[9008,2],[8853,2]]], [8854,[6584.78,17263.4,0],[[8674,2]]], [8855,[6656.35,17234.6,0],[[8675,2],[9010,2],[9011,2]]], +[8856,[6657.65,17071.2,9.53674e-007],[[8676,2],[9012,2],[9013,2],[9010,2]]], [8857,[1687.05,15607.3,0],[[8677,2],[8697,2],[9014,2],[9015,2]]], [8858,[2492.54,17203.8,0],[[8678,2],[8864,2]]], [8859,[2523.51,17153.7,0],[[8678,2],[8684,2],[9016,2]]], [8860,[2401.15,16987.8,0],[[8678,2],[8861,2]]], [8861,[2366.99,16950,0],[[8679,2],[8860,2]]], +[8862,[2972.43,17491.7,2.54313e-006],[[8680,2],[9017,2],[8862,2],[9018,2]]], [8863,[2970.24,17365.5,0],[[8681,2]]], [8864,[2570.09,17317.4,0],[[8864,2],[8858,2]]], [8865,[2866.3,17551.7,0],[[8687,2],[9021,2]]], [8866,[2800.29,17587.2,6.35783e-007],[[8687,2],[9022,2],[8866,2]]], [8867,[3662.74,18091.9,0],[[8688,2],[9023,2],[9024,2]]], +[8868,[3533.36,17737.6,0],[[8690,2]]], [8869,[3727.95,17267.3,0],[[8693,2]]], [8870,[3941.35,17289.4,5.08626e-006],[[8694,2],[9025,2],[9026,2]]], [8871,[3833.09,17161.3,7.62939e-006],[[8695,2],[9027,2]]], [8872,[1750.6,15474,0],[[8696,2],[9028,2],[9014,2]]], [8873,[1768.89,15322.8,-3.8147e-006],[[8696,2]]], +[8874,[7987.9,16108.1,0],[[8700,2],[9029,2],[9030,2]]], [8875,[7133.95,16768.1,0],[[8703,2],[9031,2]]], [8876,[6036.51,10232.2,0],[[8704,2]]], [8877,[6456.75,9797.97,0],[[8705,2],[9032,2]]], [8878,[8688.26,15552.2,-1.27157e-006],[[8707,2],[9033,2],[9034,2]]], [8879,[8407.52,15766.7,0],[[8707,2],[9035,2]]], +[8880,[8494.71,15615,0],[[8707,2]]], [8881,[8576.26,15796.6,-6.35783e-007],[[8707,2],[9036,2],[9037,2],[9038,2]]], [8882,[8594.15,15625.7,0],[[8707,2]]], [8883,[8838.83,15385.3,0],[[8709,2]]], [8884,[8983.78,15264.9,0],[[8710,2],[8736,2]]], [8885,[5700.71,9424.89,0],[[8713,2],[9039,2]]], +[8886,[5831.24,9669.73,0],[[8714,2],[9040,2]]], [8887,[3260.88,10987.3,0],[[8715,2],[9041,2],[9042,2],[8984,2]]], [8888,[13759.6,9293.51,2.54313e-006],[[8720,2],[8920,2],[9043,2]]], [8889,[13812.4,8988.99,0],[[8721,2]]], [8890,[13308.5,8917.75,7.62939e-006],[[8722,2],[9044,2]]], [8891,[13317.3,9084.66,0],[[8722,2],[9045,2]]], +[8892,[14382,11776.5,0],[[8723,2],[9046,2]]], [8893,[15088.7,11311.9,1.90735e-006],[[8725,2],[9047,2]]], [8894,[15007,11426.6,9.53674e-007],[[8725,2],[9048,2]]], [8895,[14865.6,11456,-3.17891e-007],[[8726,2],[9049,2],[9050,2]]], [8896,[12039.2,8059.57,-7.62939e-006],[[8727,2],[9051,2]]], [8897,[11790.6,7903.1,-7.62939e-006],[[8727,2],[9052,2]]], +[8898,[10869,8031.52,0],[[8729,2],[8910,2]]], [8899,[10893.1,7786.68,0],[[8729,2],[9053,2]]], [8900,[10811.4,8235.09,0],[[8730,2],[9054,2]]], [8901,[11629.7,7986.31,0],[[8731,2],[9052,2]]], [8902,[11487.8,7930.67,7.62939e-006],[[8731,2],[9055,2]]], [8903,[14399.3,11909.5,0],[[8732,2],[9046,2]]], +[8904,[9058.35,14408.3,0],[[8733,2]]], [8905,[9728.15,14732.1,0],[[8734,2]]], [8906,[8941.69,15540.1,-3.8147e-006],[[8735,2],[9034,2]]], [8907,[9110.91,15294.9,-3.8147e-006],[[8736,2]]], [8908,[9186.87,15518.6,0],[[8737,2],[9056,2]]], [8909,[10194,8153.72,0],[[8741,2],[9057,2]]], +[8910,[10715.8,8123.85,0],[[8742,2],[8898,2],[9054,2]]], [8911,[10685.8,8148.44,-7.62939e-006],[[9054,2],[8742,2]]], [8912,[7187.7,9862.43,-7.62939e-006],[[8743,2],[8818,2]]], [8913,[6745.97,9874.02,0],[[8744,2]]], [8914,[6548.81,9834.3,0],[[8744,2],[9032,2]]], [8915,[7602.84,9795.78,0],[[8745,2],[9058,2],[8980,2]]], +[8916,[7895.44,9875.15,5.08626e-006],[[8747,2]]], [8917,[14091,8871.62,0],[[8748,2]]], [8918,[14039.3,8974.92,-2.54313e-006],[[8748,2],[9059,2],[9060,2],[8918,2]]], [8919,[13655.6,8641.73,0],[[8749,2],[9061,2]]], [8920,[13850.1,9337.17,0],[[8751,2],[8888,2]]], [8921,[14018.2,9169.18,0],[[8751,2],[9062,2]]], +[8922,[14084.3,9523.56,0],[[8753,2]]], [8923,[15064.7,11054.8,3.8147e-006],[[8754,2],[9063,2],[9047,2]]], [8924,[15692.4,10996.2,0],[[8755,2],[8757,2],[8926,2]]], [8925,[15432.4,11122.8,0],[[8755,2],[8925,2],[9064,2],[9065,2],[9066,2]]], [8926,[15721.2,10975.9,0],[[8757,2],[8924,2],[8928,2]]], [8927,[15507.2,10851.8,-6.35783e-007],[[8567,2]]], +[8928,[15870.8,10873.1,0],[[8758,2],[8926,2],[9067,2]]], [8929,[16824.9,1926.85,0],[[8760,2]]], [8930,[17072.9,1926.18,0],[[8760,2],[8930,2]]], [8931,[16972,1846.9,-4.76837e-007],[[8761,2]]], [8932,[16904.2,1805.48,0],[[8761,2]]], [8933,[16151.1,1038.86,0],[[8763,2],[9068,2],[8937,2]]], +[8934,[15801.6,1396.95,1.90735e-006],[[8764,2],[8934,2]]], [8935,[15694.5,1165.6,-9.53674e-007],[[8764,2],[9069,2]]], [8936,[15867.5,1155.3,3.17891e-007],[[8764,2],[9070,2],[9071,2]]], [8937,[15977.3,1012.87,0],[[8765,2],[8933,2],[9068,2],[9072,2],[9073,2],[9070,2]]], [8938,[15584.4,1385.33,-1.90735e-006],[[8766,2],[9069,2]]], [8939,[15360.4,1523.99,0],[[8766,2],[9074,2]]], +[8940,[14762.4,1441.77,0],[[8768,2]]], [8941,[14873.3,1380.15,0],[[8768,2],[8943,2]]], [8942,[14738.4,1198.31,0],[[8768,2],[9075,2]]], [8943,[14868.2,1368.06,9.53674e-007],[[8941,2],[8768,2]]], [8944,[13068,7310.65,0],[[8771,2],[8779,2]]], [8945,[12855.7,7223.05,0],[[8771,2],[9076,2],[9077,2]]], +[8946,[12288.3,6444.09,0],[[8772,2],[8787,2]]], [8947,[12529.9,7089.72,0],[[8775,2],[9078,2],[9079,2],[9076,2]]], [8948,[13163.5,7997.79,0],[[8777,2],[9080,2]]], [8949,[13460.1,7183.68,0],[[8780,2]]], [8950,[11972.7,7004.77,0],[[8781,2],[8784,2],[8953,2]]], [8951,[12221.2,6977.29,2.54313e-006],[[8781,2],[9078,2],[8956,2]]], +[8952,[12154.8,7025.36,0],[[8781,2],[9081,2],[9082,2]]], [8953,[11946,7025.16,-1.90735e-006],[[8784,2],[8950,2],[9083,2],[9084,2],[9082,2]]], [8954,[11747,6987.99,0],[[8784,2],[8955,2],[8785,2]]], [8955,[11724.5,6991.29,0],[[8954,2],[8785,2],[9084,2],[9200,2]]], [8956,[12270.9,6891.78,0],[[8786,2],[8951,2]]], [8957,[11305.3,6858.48,7.62939e-006],[[8788,2],[9085,2]]], +[8958,[11387.1,6659.36,0],[[8788,2],[8791,2]]], [8959,[10973,6759.74,0],[[8789,2],[8802,2],[9086,2]]], [8960,[13737.8,921.102,0],[[8797,2]]], [8961,[13814.6,952.599,0],[[8797,2],[8799,2],[8961,2]]], [8962,[14021.1,795.617,-1.19209e-007],[[8799,2],[8800,2],[8963,2],[9087,2],[9088,2]]], [8963,[14043,899.579,0],[[8800,2],[8962,2],[8963,2],[9089,2]]], +[8964,[14300.2,1100.85,0],[[8801,2],[9090,2]]], [8965,[10894.8,6798.11,0],[[8802,2],[9091,2]]], [8966,[10941.1,6953.81,0],[[8802,2],[9092,2]]], [8967,[10647.6,7109.85,0],[[8803,2],[9093,2],[9094,2]]], [8968,[10788.9,6927.82,7.62939e-006],[[8803,2],[9095,2]]], [8969,[10351.2,7294.81,2.54313e-006],[[8804,2],[9096,2],[9097,2]]], +[8970,[9976.17,7858.12,-7.62939e-006],[[8809,2],[9098,2]]], [8971,[6347.52,9090.46,0],[[8810,2],[9099,2]]], [8972,[6285.01,8908.07,7.62939e-006],[[8810,2]]], [8973,[6514.64,8904.31,0],[[8811,2],[9100,2],[9101,2]]], [8974,[5528.28,8963.93,0],[[8813,2],[9102,2]]], [8975,[5330.6,8815.16,-1.27157e-006],[[8813,2],[8820,2],[9103,2],[8982,2]]], +[8976,[9673.81,8435.73,0],[[8814,2]]], [8977,[9473.44,8092.93,0],[[8815,2]]], [8978,[7172.42,9666.09,0],[[8816,2]]], [8979,[7050.94,9484.03,-7.62939e-006],[[8816,2],[9104,2]]], [8980,[7565.18,9764.32,0],[[8817,2],[8915,2],[9105,2]]], [8981,[5115.34,9052.25,0],[[8819,2]]], +[8982,[5217.97,8933.04,0],[[8819,2],[8975,2],[9103,2]]], [8983,[2325.81,11258.3,0],[[8822,2],[8826,2],[9106,2],[8988,2]]], [8984,[3227.24,11136.9,1.90735e-006],[[8823,2],[8887,2],[9107,2],[9108,2],[9042,2]]], [8985,[3175.25,11092.2,0],[[8823,2]]], [8986,[1440.3,11282.5,0],[[8824,2],[9109,2]]], [8987,[1624.82,11265.3,0],[[8827,2]]], +[8988,[2157.15,11286.5,0],[[8828,2],[8830,2],[8983,2],[8990,2]]], [8989,[2077.44,11306.3,9.53674e-007],[[8828,2]]], [8990,[2126.05,11331.3,2.38419e-007],[[8830,2],[8988,2],[9110,2],[8990,2]]], [8991,[2418.4,11455.5,0],[[8832,2],[9111,2],[9112,2],[9106,2]]], [8992,[1442.88,11530,2.38419e-007],[[8834,2],[8992,2],[9113,2],[9109,2]]], [8993,[3849.22,17436.3,0],[[8836,2],[9114,2],[9026,2],[9115,2]]], +[8994,[3878.22,17795.1,0],[[8837,2],[9116,2]]], [8995,[3865.87,18081.8,0],[[8837,2],[9117,2]]], [8996,[4259.19,18165.1,0],[[8838,2],[9118,2],[9119,2]]], [8997,[5018.19,18652.9,0],[[8841,2],[9120,2],[9121,2]]], [8998,[4385.29,17767.5,0],[[8842,2],[9122,2],[9123,2]]], [8999,[5407.28,18256.9,-6.35783e-007],[[8843,2],[8846,2],[8999,2],[9124,2],[9125,2]]], +[9000,[5561.25,17998.7,0],[[8844,2],[9000,2],[9126,2]]], [9001,[5691.78,17906.2,0],[[8845,2],[9127,2],[9005,2]]], [9002,[5647.38,18055.2,0],[[8845,2],[9002,2],[9128,2]]], [9003,[6106.52,17464.6,0],[[8847,2],[8849,2],[9003,2]]], [9004,[5945.8,17412,6.35783e-007],[[8848,2],[9004,2],[9129,2]]], [9005,[5745.89,17818.3,2.38419e-007],[[8850,2],[9001,2],[9127,2],[9130,2],[9005,2],[9131,2]]], +[9006,[5976.22,17583.8,0],[[8850,2],[9132,2]]], [9007,[5835.74,17761.8,0],[[8850,2],[9131,2],[9007,2]]], [9008,[6149.48,17480.4,1.58946e-007],[[8851,2],[8853,2],[9132,2]]], [9009,[6567.66,16850.4,0],[[8852,2],[9133,2]]], [9010,[6797.61,17158.6,-3.17891e-007],[[8855,2],[8856,2],[9134,2]]], [9011,[6688.3,17184.5,0],[[8855,2]]], +[9012,[6556.82,17043,0],[[8856,2],[9135,2]]], [9013,[6785.32,17005.6,-1.90735e-006],[[8856,2],[9134,2]]], [9014,[1751.88,15646.8,6.35783e-007],[[8857,2],[8872,2],[9015,2],[9014,2],[9028,2]]], [9015,[1747.14,15670.8,0],[[9014,2],[9240,2],[9015,2],[8857,2]]], [9016,[2541.64,17164.5,0],[[8859,2],[9016,2]]], [9017,[2963,17480.8,0],[[8862,2]]], +[9018,[2992.51,17535.2,0],[[8862,2]]], [9019,[3268.4,17294.5,0],[[7404,2],[9136,2],[9019,2]]], [9020,[3199.82,17401.2,-1.90735e-006],[[7404,2],[7690,2],[9020,2],[9137,2]]], [9021,[2918.12,17623.1,0],[[8865,2],[9138,2]]], [9022,[2822.85,17632.4,0],[[8866,2],[9138,2],[9022,2]]], [9023,[3685.77,18149.7,0],[[8867,2],[9139,2],[9023,2],[9140,2],[9117,2],[9141,2]]], +[9024,[3598.27,18127.8,7.62939e-006],[[8867,2],[9142,2]]], [9025,[3972.72,17182.5,0],[[8870,2],[9143,2]]], [9026,[3909.41,17398.3,0],[[8870,2],[8993,2]]], [9027,[3918.77,17045.4,0],[[8871,2],[9144,2],[9143,2]]], [9028,[1787.71,15591.6,0],[[8872,2],[9014,2],[9145,2],[9028,2],[9146,2]]], [9029,[8114.08,16017.6,0],[[8874,2],[9147,2],[9148,2]]], +[9030,[7920.91,16274.2,-1.90735e-006],[[8874,2],[9149,2]]], [9031,[7142.94,16842.6,0],[[8875,2],[9150,2],[9151,2]]], [9032,[6458.33,9786.69,0],[[8877,2],[8914,2],[9152,2]]], [9033,[8712.38,15672.3,0],[[8878,2],[9153,2]]], [9034,[8856.71,15544.9,0],[[8878,2],[8906,2]]], [9035,[8324.46,15858.5,0],[[8879,2],[9147,2]]], +[9036,[8669.65,15767.9,0],[[8881,2],[9153,2],[9038,2],[9036,2]]], [9037,[8433.74,15880.8,0],[[8881,2],[9154,2]]], [9038,[8642.73,15776.8,0],[[9036,2],[9259,2],[9038,2],[8881,2]]], [9039,[5709.88,9376.67,0],[[8885,2]]], [9040,[5846.27,9666.66,0],[[8886,2],[9155,2],[9156,2]]], [9041,[3214.53,10983.2,-1.90735e-006],[[8887,2]]], +[9042,[3270.71,11102.3,0],[[8887,2],[8984,2],[9108,2]]], [9043,[13653.9,9407.22,0],[[8888,2],[9043,2]]], [9044,[13279.3,8872.89,0],[[8890,2],[9157,2],[9044,2],[9158,2]]], [9045,[13175,9082.73,0],[[8891,2],[9159,2],[9160,2]]], [9046,[14475.2,11840.3,0],[[8892,2],[8903,2],[9161,2]]], [9047,[15228.3,11235.4,4.76837e-007],[[8893,2],[8923,2],[9162,2],[9063,2],[9163,2],[9064,2],[9164,2]]], +[9048,[15002.8,11446.3,3.17891e-007],[[8894,2],[9165,2],[9050,2]]], [9049,[14857.1,11489.9,0],[[8895,2],[9166,2],[9167,2]]], [9050,[14892.8,11468.8,-4.76837e-007],[[8895,2],[9048,2]]], [9051,[12207.7,8030.65,0],[[8896,2],[9168,2]]], [9052,[11785,7891.9,-1.90735e-006],[[8897,2],[8901,2],[9169,2],[9170,2]]], [9053,[10861.6,7738.07,0],[[8899,2],[9171,2],[9172,2],[9173,2]]], +[9054,[10769.3,8186.92,0],[[8900,2],[8911,2],[8910,2]]], [9055,[11391.9,7830.41,0],[[8902,2],[9174,2],[9175,2]]], [9056,[9111.71,15537.4,0],[[8908,2],[9176,2]]], [9057,[10230.4,8128.27,-2.54313e-006],[[8909,2],[9177,2],[9178,2]]], [9058,[7592.47,9778.14,-7.62939e-006],[[8915,2],[9179,2]]], [9059,[14113.5,8983.46,0],[[8918,2]]], +[9060,[14019.6,8974.64,-3.8147e-006],[[8918,2]]], [9061,[13617.3,8573.28,-2.54313e-006],[[8919,2],[9180,2],[9181,2]]], [9062,[14013.1,9134.53,7.62939e-006],[[8921,2]]], [9063,[15168.8,11201.5,1.90735e-006],[[8923,2],[9047,2],[9063,2]]], [9064,[15345.8,11129.7,0],[[8925,2],[9047,2],[9163,2],[9064,2]]], [9065,[15383.6,11176.2,0],[[8925,2],[9163,2]]], +[9066,[15471.9,11127.1,0],[[8925,2],[9066,2],[9182,2],[9183,2]]], [9067,[15854.7,10925.4,-1.58946e-007],[[8928,2],[9067,2],[9184,2]]], [9068,[16023,946.046,0],[[8933,2],[8937,2],[9185,2],[9186,2]]], [9069,[15667.2,1119.38,0],[[8935,2],[8938,2],[9187,2],[9188,2],[9189,2]]], [9070,[15900.8,1085.13,3.17891e-007],[[8936,2],[8937,2],[9190,2],[9071,2],[9189,2]]], [9071,[15774.9,1068.05,0],[[8936,2],[9070,2],[9190,2]]], +[9072,[16113,1085.55,-4.76837e-007],[[8937,2],[9072,2]]], [9073,[15878,919.815,0],[[8937,2]]], [9074,[15235.9,1519.54,0],[[8939,2]]], [9075,[14738.3,1075.89,9.53674e-007],[[8942,2],[9191,2]]], [9076,[12721.8,7167.3,0],[[8945,2],[8947,2]]], [9077,[12699.8,7320.27,7.62939e-006],[[8945,2],[9192,2]]], +[9078,[12343,7026.47,0],[[8947,2],[8951,2]]], [9079,[12432.2,7248.8,-7.62939e-006],[[8947,2],[9193,2]]], [9080,[13155.6,8053.11,0],[[8948,2],[9194,2],[9195,2],[9196,2]]], [9081,[12198.1,7125.32,-2.54313e-006],[[8952,2],[9197,2],[9083,2],[9198,2]]], [9082,[12030.9,7094.37,7.62939e-006],[[8952,2],[9199,2],[8953,2]]], [9083,[12031,7198.58,0],[[8953,2],[9081,2],[9197,2],[9199,2]]], +[9084,[11805.3,7084.14,0],[[8953,2],[9200,2],[9084,2],[8955,2]]], [9085,[11357.8,6970.44,0],[[8957,2],[9201,2]]], [9086,[10920.4,6785.63,0],[[8959,2]]], [9087,[14004.3,640.465,0],[[8962,2]]], [9088,[14115.9,772.869,1.58946e-007],[[8962,2],[9202,2],[9203,2],[9089,2]]], [9089,[14141.3,911.035,0],[[8963,2],[9088,2],[9204,2],[9205,2]]], +[9090,[14450.1,1069.6,0],[[8964,2],[9206,2]]], [9091,[11039.7,6892.83,0],[[8965,2],[9207,2]]], [9092,[10983.1,6990.15,0],[[8966,2],[9094,2],[9208,2]]], [9093,[10656.6,7181.93,2.54313e-006],[[8967,2],[9209,2],[9210,2]]], [9094,[10815,7081.54,0],[[8967,2],[9092,2]]], [9095,[10821.3,6918.56,0],[[8968,2]]], +[9096,[10376.8,7364.67,0],[[8969,2]]], [9097,[10494.5,7236.45,0],[[8969,2],[9211,2]]], [9098,[10092.2,7787.89,0],[[8970,2],[9212,2]]], [9099,[6363.02,9261.65,0],[[8971,2],[9213,2]]], [9100,[6509.57,8994.17,0],[[8973,2],[9100,2]]], [9101,[6638.63,8994.6,0],[[8973,2],[9214,2]]], +[9102,[5521.32,9118.2,0],[[8974,2],[9215,2]]], [9103,[5235.69,8892,-3.8147e-006],[[8975,2],[8982,2],[9216,2]]], [9104,[6952.56,9400.24,0],[[8979,2],[9217,2]]], [9105,[7585.48,9777.29,0],[[8980,2],[9105,2]]], [9106,[2344.85,11382.6,0],[[8983,2],[8991,2],[9112,2]]], [9107,[3266.74,11190.4,0],[[8984,2],[9218,2],[9219,2],[9107,2],[9220,2]]], +[9108,[3265.43,11113.2,3.8147e-006],[[8984,2],[9042,2]]], [9109,[1415.58,11422.4,2.38419e-007],[[8986,2],[8992,2]]], [9110,[2115.73,11335.1,0],[[8990,2]]], [9111,[2414.98,11487,0],[[8991,2]]], [9112,[2346.18,11426.7,4.76837e-007],[[8991,2],[9106,2]]], [9113,[1456.86,11683.6,1.58946e-007],[[8992,2],[9221,2],[9113,2]]], +[9114,[3781.9,17511.5,-7.62939e-006],[[8993,2],[9222,2]]], [9115,[3931.06,17545.7,0],[[8993,2],[9223,2]]], [9116,[3824.59,17775.1,-2.54313e-006],[[8994,2],[9224,2],[9225,2],[9222,2]]], [9117,[3744.14,18150.2,0],[[8995,2],[9023,2],[9140,2]]], [9118,[4285.66,18333.8,0],[[8996,2],[9226,2]]], [9119,[4141.4,18046,-7.62939e-006],[[8996,2],[9227,2]]], +[9120,[4949.96,18816.3,0],[[8997,2],[9228,2],[9229,2]]], [9121,[5095.17,18725.3,9.53674e-007],[[8997,2],[9230,2],[9231,2],[9121,2],[9232,2]]], [9122,[4333.46,17700.9,-7.62939e-006],[[8998,2]]], [9123,[4386.59,17784.3,-2.54313e-006],[[8998,2]]], [9124,[5374.34,18355.9,-2.28882e-006],[[8999,2],[9233,2],[9124,2],[9234,2]]], [9125,[5526.26,18275.3,0],[[8999,2]]], +[9126,[5567.91,17930.9,0],[[9000,2],[9235,2]]], [9127,[5709.8,17895.5,0],[[9001,2],[9005,2],[9236,2],[9237,2],[9131,2],[9238,2],[9128,2]]], [9128,[5661.68,18030.5,-7.94729e-008],[[9002,2],[9127,2],[9128,2],[9238,2]]], [9129,[5906.49,17377.5,0],[[9004,2]]], [9130,[5755.98,17813.4,3.17891e-007],[[9005,2]]], [9131,[5770.8,17832.4,7.94729e-008],[[9005,2],[9007,2],[9127,2],[9237,2]]], +[9132,[6056.27,17555.7,0],[[9006,2],[9008,2]]], [9133,[6579.1,16802.3,3.8147e-006],[[9009,2]]], [9134,[6849.13,17058,0],[[9010,2],[9013,2],[9239,2]]], [9135,[6547.61,17056.3,0],[[9012,2]]], [9136,[3280.29,17296.3,-2.54313e-006],[[9019,2]]], [9137,[3249.93,17424,0],[[9020,2]]], +[9138,[2896.14,17673.2,0],[[9021,2],[9022,2],[9243,2],[9244,2]]], [9139,[3769.25,18289.7,0],[[9023,2],[9245,2]]], [9140,[3719.41,18126.3,0],[[9023,2],[9117,2],[9140,2],[9246,2]]], [9141,[3666.04,18267.3,0],[[9023,2],[9247,2]]], [9142,[3497.4,18132.1,7.62939e-006],[[9024,2],[9248,2]]], [9143,[3978.72,17041.2,0],[[9025,2],[9027,2],[9249,2]]], +[9144,[3947.43,17030.1,7.62939e-006],[[9027,2],[9250,2]]], [9145,[1781.66,15554.2,0],[[9028,2]]], [9146,[1828.26,15693,0],[[9028,2]]], [9147,[8203.89,15943.7,-3.17891e-007],[[9029,2],[9035,2],[9251,2],[9252,2]]], [9148,[8177.86,15960.7,2.38419e-007],[[9252,2],[9148,2],[9029,2]]], [9149,[7879.74,16378.9,0],[[9030,2],[9253,2],[9254,2]]], +[9150,[7338.15,16794.1,0],[[9031,2],[9255,2]]], [9151,[7014.16,16928.1,0],[[9031,2],[9239,2]]], [9152,[6359.21,9736.19,2.54313e-006],[[9032,2],[9256,2],[9257,2]]], [9153,[8725.74,15711.7,-6.35783e-007],[[9033,2],[9036,2],[9258,2]]], [9154,[8399.62,15888.9,0],[[9037,2]]], [9155,[5955.45,9698.4,0],[[9040,2],[9260,2],[9261,2]]], +[9156,[5856.05,9595.69,0],[[9040,2]]], [9157,[13185.8,8716.03,0],[[9044,2],[9262,2],[9263,2]]], [9158,[13119.1,8879.6,0],[[9044,2],[9264,2]]], [9159,[13155.1,9212.94,0],[[9045,2]]], [9160,[13074.5,9069.14,0],[[9045,2]]], [9161,[14552.5,11792.2,0],[[9046,2],[9265,2]]], +[9162,[15163.9,11188.6,0],[[9047,2],[9266,2]]], [9163,[15315.6,11172.7,0],[[9064,2],[9065,2],[9267,2],[9163,2]]], [9164,[15156.4,11326.8,0],[[9047,2],[9268,2],[9165,2]]], [9165,[15099.8,11389.6,-9.53674e-007],[[9048,2],[9164,2],[9268,2]]], [9166,[14906.3,11474.1,0],[[9049,2]]], [9167,[14758.4,11593.9,0],[[9049,2],[9269,2]]], +[9168,[12353,8064.63,0],[[9051,2],[9270,2],[9271,2]]], [9169,[11726.9,7765.42,0],[[9052,2],[9272,2]]], [9170,[11929.4,7800.04,0],[[9052,2],[9273,2]]], [9171,[10978.4,7655.48,5.08626e-006],[[9053,2],[9274,2],[9275,2]]], [9172,[10716.1,7820.32,0],[[9053,2],[9276,2],[9277,2]]], [9173,[10765.2,7587.94,0],[[9053,2],[9278,2]]], +[9174,[11271.9,7710.98,0],[[9055,2],[9275,2]]], [9175,[11258.6,7786.74,0],[[9055,2],[9279,2]]], [9176,[9026.89,15586.6,3.8147e-006],[[9056,2],[9280,2]]], [9177,[10346.4,8061.03,0],[[9057,2],[9281,2]]], [9178,[10264.1,8008.34,0],[[9057,2],[9282,2]]], [9179,[7644.52,9744.75,0],[[9058,2]]], +[9180,[13628.7,8433.87,-7.62939e-006],[[9180,2],[9283,2]]], [9181,[13536.7,8536.02,0],[[9061,2]]], [9182,[15546.4,11113.3,-7.94729e-008],[[9066,2],[9183,2],[9182,2],[9284,2]]], [9183,[15530.9,11125.2,0],[[9182,2],[9366,2],[9183,2],[9066,2]]], [9184,[15806.4,10973.6,4.76837e-007],[[9067,2],[9285,2]]], [9185,[15934.1,796.156,0],[[9068,2],[9286,2]]], +[9186,[15978.2,906.588,0],[[9068,2]]], [9187,[15480.4,1063.41,0],[[9069,2],[9287,2]]], [9188,[15725.4,1081.16,0],[[9069,2]]], [9189,[15710.8,994.904,-2.38419e-007],[[9069,2],[9070,2],[9288,2],[9289,2],[9290,2],[9286,2]]], [9190,[15790,1013.7,9.53674e-007],[[9070,2],[9071,2],[9291,2]]], [9191,[14737.5,1017.55,-3.17891e-007],[[9075,2],[9292,2],[9206,2]]], +[9192,[12592.4,7386.46,0],[[9077,2],[9293,2]]], [9193,[12364,7366.33,0],[[9079,2],[9294,2],[9198,2]]], [9194,[12990,8032.03,0],[[9080,2],[9295,2]]], [9195,[13321.6,8072.01,2.54313e-006],[[9080,2],[9195,2]]], [9196,[13157,8290.41,0],[[9080,2],[9296,2]]], [9197,[12043.3,7209.2,0],[[9081,2],[9083,2],[9297,2]]], +[9198,[12294.2,7315.3,0],[[9081,2],[9193,2],[9294,2]]], [9199,[11985.4,7109.39,0],[[9082,2],[9083,2],[9298,2]]], [9200,[11777.5,7096.61,0],[[9084,2],[8955,2],[9299,2],[9298,2]]], [9201,[11370.3,6986.62,-1.90735e-006],[[9085,2],[9300,2],[9201,2],[9301,2]]], [9202,[14269,735.379,0],[[9088,2],[9302,2]]], [9203,[14135.9,852.952,0],[[9088,2],[9303,2]]], +[9204,[14138.8,869.544,0],[[9089,2]]], [9205,[14255.9,912.872,0],[[9089,2],[9304,2],[9303,2]]], [9206,[14574.4,1044.85,-9.53674e-007],[[9090,2],[9191,2]]], [9207,[11137.5,6928.79,0],[[9091,2],[9305,2]]], [9208,[11122.1,7001.44,-7.62939e-006],[[9092,2],[9306,2]]], [9209,[10659,7259.26,0],[[9093,2],[9307,2],[9211,2]]], +[9210,[10803.8,7160.84,7.62939e-006],[[9093,2],[9308,2]]], [9211,[10576.5,7299.59,-7.62939e-006],[[9097,2],[9209,2],[9309,2]]], [9212,[10228.5,7705.14,-7.62939e-006],[[9098,2],[9310,2]]], [9213,[6349.96,9345.86,0],[[9099,2],[9311,2],[9312,2]]], [9214,[6709.72,9103.01,7.62939e-006],[[9101,2],[9313,2]]], [9215,[5528.32,9185.31,0],[[9102,2]]], +[9216,[5167.76,8887.88,0],[[9103,2]]], [9217,[6898.74,9345.15,2.54313e-006],[[9104,2],[9314,2],[9313,2],[9315,2],[9316,2]]], [9218,[3359.4,11275.9,0],[[9107,2],[9317,2],[9220,2],[9218,2]]], [9219,[3242.42,11182.3,0],[[9107,2],[9219,2]]], [9220,[3369.33,11238.9,9.53674e-007],[[9218,2],[9220,2],[9107,2]]], [9221,[1461.62,11707.8,-1.58946e-007],[[9113,2],[9221,2]]], +[9222,[3756.63,17628.8,0],[[9114,2],[9318,2],[9225,2],[9116,2]]], [9223,[3930.89,17662.1,0],[[9115,2],[9225,2]]], [9224,[3735.74,17865.9,0],[[9116,2],[9246,2]]], [9225,[3903.18,17704.2,7.62939e-006],[[9116,2],[9222,2],[9223,2]]], [9226,[4275.09,18447.8,0],[[9118,2],[9319,2],[9320,2]]], [9227,[4087.41,18067,-7.62939e-006],[[9119,2]]], +[9228,[4984.06,18943.3,-7.62939e-007],[[9120,2],[9321,2],[9322,2],[9323,2],[9324,2]]], [9229,[4854.98,18755.3,0],[[9120,2],[9325,2],[9326,2],[9229,2]]], [9230,[5110.5,18764.4,-9.53674e-007],[[9121,2],[9327,2],[9321,2],[9328,2],[9230,2]]], [9231,[5096.51,18715.6,1.27157e-006],[[9121,2]]], [9232,[5110.55,18700.7,0],[[9121,2],[9329,2],[9327,2],[9232,2]]], [9233,[5351.49,18444.1,0],[[9124,2],[9330,2],[9331,2],[9332,2]]], +[9234,[5454.43,18365.8,0],[[9124,2]]], [9235,[5565.79,17892.7,1.27157e-006],[[9126,2],[9333,2],[9334,2]]], [9236,[5667.73,17845.1,0],[[9127,2],[9335,2],[9336,2]]], [9237,[5748.72,17873,0],[[9127,2],[9131,2]]], [9238,[5673.36,18003.1,0],[[9127,2],[9128,2]]], [9239,[6941.84,16964.4,0],[[9134,2],[9151,2]]], +[9240,[1731.27,15657.6,0],[[9015,2]]], [9241,[3205.27,17608.3,0],[[7690,2],[9241,2]]], [9242,[3374.15,17434.8,0],[[7690,2]]], [9243,[3049.09,17749.5,0],[[9138,2],[9337,2]]], [9244,[2889.39,17731.1,0],[[9138,2],[9338,2],[9339,2]]], [9245,[3880.49,18351.4,0],[[9139,2],[9340,2]]], +[9246,[3737.85,18026.1,0],[[9140,2],[9224,2]]], [9247,[3648.8,18292.5,2.54313e-006],[[9141,2],[9341,2],[9342,2],[9247,2]]], [9248,[3486.72,18107.6,-7.62939e-006],[[9142,2]]], [9249,[3965.35,17023.9,0],[[9143,2]]], [9250,[3854.5,16980.2,7.62939e-006],[[9144,2]]], [9251,[8185.4,15881.1,3.17891e-007],[[9147,2],[9343,2],[9344,2]]], +[9252,[8130.12,15904.3,0],[[9343,2],[9148,2],[9147,2]]], [9253,[7819.41,16513,0],[[9149,2],[9345,2]]], [9254,[7884.89,16437.5,4.76837e-007],[[9149,2]]], [9255,[7509.55,16760.5,0],[[9150,2],[9346,2]]], [9256,[6429.09,9603.88,0],[[9152,2]]], [9257,[6282.45,9721.28,0],[[9152,2],[9312,2],[9261,2]]], +[9258,[8783.65,15686,0],[[9258,2],[9347,2]]], [9259,[8626.49,15787.7,0],[[9038,2]]], [9260,[5925.08,9785.58,0],[[9155,2]]], [9261,[6116.84,9710.21,0],[[9155,2],[9257,2]]], [9262,[13157,8621.35,0],[[9157,2],[9348,2],[9349,2],[9296,2]]], [9263,[13021.9,8664.97,0],[[9157,2],[9350,2]]], +[9264,[12968,8857.48,0],[[9158,2],[9351,2]]], [9265,[14636.1,11704.7,0],[[9161,2],[9269,2]]], [9266,[15144.6,11209.8,0],[[9162,2]]], [9267,[15320.9,11189,0],[[9163,2],[9365,2],[9267,2]]], [9268,[15120.4,11366.2,0],[[9164,2],[9165,2]]], [9269,[14666.9,11661.8,0],[[9167,2],[9265,2],[9352,2]]], +[9270,[12435.8,8113.26,5.08626e-006],[[9168,2],[9353,2],[9354,2]]], [9271,[12343.4,7924.22,0],[[9168,2],[9355,2]]], [9272,[11718.1,7730.06,0],[[9169,2],[9356,2],[9357,2]]], [9273,[12034.3,7732.79,0],[[9170,2],[9358,2]]], [9274,[10882.5,7511.9,7.62939e-006],[[9171,2],[9359,2]]], [9275,[11103.9,7603.15,0],[[9171,2],[9174,2],[9360,2],[9361,2]]], +[9276,[10538.4,7938.09,0],[[9172,2],[9281,2]]], [9277,[10630.1,7723.16,0],[[9172,2],[9362,2]]], [9278,[10757.5,7572.04,0],[[9173,2],[9363,2],[9278,2],[9359,2]]], [9279,[11131,7790.56,0],[[9175,2],[9279,2]]], [9280,[8927.81,15621,0],[[9176,2],[9347,2]]], [9281,[10443,8000.24,-7.62939e-006],[[9177,2],[9276,2]]], +[9282,[10346.6,7913.46,7.62939e-006],[[9178,2],[9364,2]]], [9283,[13550.5,8338.27,0],[[9180,2],[9443,2]]], [9284,[15595.6,11064.3,0],[[9182,2],[9284,2],[9367,2]]], [9285,[15738,11005,0],[[9184,2],[9367,2]]], [9286,[15875.4,781.942,-3.17891e-007],[[9185,2],[9189,2],[9291,2],[9290,2]]], [9287,[15383.4,1029.98,6.35783e-007],[[9187,2],[9368,2],[9369,2]]], +[9288,[15646.4,974.794,0],[[9189,2],[9370,2],[9371,2]]], [9289,[15787.8,1004.68,0],[[9189,2]]], [9290,[15805.8,771.131,0],[[9189,2],[9286,2],[9372,2],[9370,2],[9373,2]]], [9291,[15835.1,852.56,0],[[9190,2],[9286,2]]], [9292,[14893,1014.51,-9.53674e-007],[[9191,2],[9374,2]]], [9293,[12485.5,7452.35,0],[[9192,2],[9375,2]]], +[9294,[12314,7350.52,7.62939e-006],[[9193,2],[9198,2],[9376,2]]], [9295,[12923.7,8055.67,0],[[9194,2],[9377,2],[9295,2],[9378,2]]], [9296,[13152.4,8474.83,0],[[9196,2],[9262,2],[9349,2]]], [9297,[11900.2,7278.22,0],[[9197,2],[9379,2]]], [9298,[11835.8,7184.04,0],[[9199,2],[9200,2],[9299,2]]], [9299,[11815.3,7181.84,7.62939e-006],[[9200,2],[9298,2],[9379,2]]], +[9300,[11390.2,7053.86,-2.54313e-006],[[9201,2],[9380,2],[9381,2]]], [9301,[11459.5,6941.04,0],[[9201,2]]], [9302,[14311.5,712.967,1.19209e-007],[[9202,2],[9382,2],[9383,2],[9384,2]]], [9303,[14249.5,824.999,-1.19209e-007],[[9203,2],[9205,2],[9303,2]]], [9304,[14340.8,924.067,-2.38419e-007],[[9205,2],[9304,2],[9382,2],[9385,2]]], [9305,[11108.1,6854.3,0],[[9207,2]]], +[9306,[11203.2,6937.97,-5.08626e-006],[[9208,2],[9306,2],[9386,2]]], [9307,[10689.3,7278.86,0],[[9209,2],[9387,2],[9388,2]]], [9308,[10919.1,7141.55,0],[[9210,2],[9389,2]]], [9309,[10619,7273.31,0],[[9211,2],[9309,2]]], [9310,[10379.7,7613.42,0],[[9212,2],[9390,2]]], [9311,[6223.43,9319.15,0],[[9213,2],[9391,2]]], +[9312,[6273.21,9496.65,0],[[9213,2],[9257,2]]], [9313,[6789.3,9216.5,0],[[9214,2],[9217,2],[9314,2]]], [9314,[6831.18,9264.97,0],[[9217,2],[9313,2],[9392,2]]], [9315,[6834.2,9452.33,0],[[9217,2],[9393,2],[9315,2]]], [9316,[6838.43,9415.31,0],[[9393,2],[9217,2]]], [9317,[3322.08,11348,0],[[9218,2]]], +[9318,[3828.54,17710.4,-2.54313e-006],[[9222,2]]], [9319,[4429.18,18526.9,0],[[9226,2],[9394,2]]], [9320,[4098.7,18408.8,0],[[9226,2],[9395,2],[9340,2]]], [9321,[5027.74,18868.6,6.35783e-007],[[9228,2],[9230,2],[9396,2],[9328,2]]], [9322,[5055.05,18962.1,0],[[9228,2],[9397,2],[9324,2],[9398,2],[9328,2]]], [9323,[4932.46,18961.1,1.52588e-006],[[9228,2],[9399,2],[9323,2],[9400,2],[9401,2],[9402,2]]], +[9324,[4998.73,19043,0],[[9228,2],[9322,2],[9324,2],[9403,2],[9404,2],[9405,2]]], [9325,[4720.42,18672.6,9.53674e-007],[[9229,2],[9394,2],[9325,2],[9406,2]]], [9326,[4839.47,18807,0],[[9229,2],[9407,2]]], [9327,[5145.29,18713.5,-1.43051e-006],[[9230,2],[9232,2],[9331,2],[9329,2],[9408,2]]], [9328,[5127.04,18847,2.72478e-007],[[9230,2],[9321,2],[9322,2],[9408,2],[9398,2],[9397,2],[9409,2]]], [9329,[5132.77,18673.3,0],[[9232,2],[9327,2],[9410,2]]], +[9330,[5366.38,18470.1,0],[[9233,2],[9411,2],[9412,2]]], [9331,[5250.72,18597.7,-7.62939e-007],[[9233,2],[9327,2],[9413,2],[9414,2],[9415,2]]], [9332,[5433.49,18460.1,0],[[9233,2]]], [9333,[5520.56,17836.5,0],[[9235,2]]], [9334,[5578.76,17863.7,0],[[9235,2]]], [9335,[5637.66,17859.1,0],[[9236,2]]], +[9336,[5638.57,17792.6,0],[[9236,2],[9416,2],[9417,2],[9336,2]]], [9337,[3122.41,17895.7,0],[[9243,2],[9418,2]]], [9338,[2906.31,17813,3.8147e-006],[[9244,2],[9419,2]]], [9339,[2919.59,17741.9,1.27157e-006],[[9244,2],[9339,2],[9420,2]]], [9340,[3962.32,18380.4,-2.54313e-006],[[9245,2],[9320,2],[9395,2],[9340,2]]], [9341,[3597.45,18351.7,0],[[9247,2],[9421,2],[9341,2],[9422,2],[9423,2]]], +[9342,[3657.66,18284.6,3.8147e-006],[[9247,2]]], [9343,[8084.65,15843,-4.76837e-007],[[9251,2],[9424,2],[9425,2],[9343,2],[9252,2]]], [9344,[8155.32,15768.8,0],[[9251,2],[9426,2]]], [9345,[7768.82,16616.3,0],[[9253,2],[9346,2]]], [9346,[7643.78,16696.6,0],[[9255,2],[9345,2]]], [9347,[8864.39,15667.6,-1.90735e-006],[[9280,2],[9258,2]]], +[9348,[13313.7,8605.54,0],[[9262,2],[9348,2]]], [9349,[13150.3,8539.4,7.62939e-006],[[9262,2],[9296,2],[9427,2]]], [9350,[12931.9,8612.65,0],[[9263,2],[9428,2]]], [9351,[12792.1,8804.82,7.62939e-006],[[9264,2],[9429,2]]], [9352,[14613.8,11619.1,0],[[9269,2]]], [9353,[12541.8,8171.37,1.90735e-006],[[9270,2],[9430,2],[9431,2],[9432,2]]], +[9354,[12480.6,8024.1,0],[[9270,2]]], [9355,[12356.6,7909.44,0],[[9271,2]]], [9356,[11905.3,7638.83,7.62939e-006],[[9272,2],[9433,2]]], [9357,[11664.7,7642.53,0],[[9272,2],[9434,2],[9435,2]]], [9358,[12066.6,7710.99,0],[[9273,2],[9433,2],[9436,2]]], [9359,[10873.1,7501.87,5.08626e-006],[[9274,2],[9278,2],[9437,2],[9361,2]]], +[9360,[11203.4,7573.75,-1.90735e-006],[[9275,2],[9438,2],[9439,2],[9440,2]]], [9361,[11020.7,7488.73,7.62939e-006],[[9275,2],[9359,2],[9441,2]]], [9362,[10597.4,7793.33,-2.54313e-006],[[9277,2],[9442,2],[9364,2]]], [9363,[10637,7448.09,0],[[9278,2],[9387,2],[9390,2]]], [9364,[10474.3,7875.45,-7.62939e-006],[[9282,2],[9362,2]]], [9365,[15326.7,11199,0],[[9267,2]]], +[9366,[15511,11127.5,0],[[9183,2]]], [9367,[15675,11045,-1.58946e-007],[[9284,2],[9285,2],[9367,2]]], [9368,[15190.7,1031.11,9.53674e-007],[[9287,2],[9374,2],[9444,2]]], [9369,[15393.3,958.615,0],[[9287,2],[9445,2],[9369,2],[9446,2],[9444,2]]], [9370,[15680.1,817.909,0],[[9288,2],[9290,2],[9372,2]]], [9371,[15545,893.913,0],[[9288,2],[9447,2]]], +[9372,[15700.9,764.192,0],[[9290,2],[9370,2],[9448,2],[9449,2],[9447,2]]], [9373,[15864.9,608.864,-3.97364e-008],[[9290,2],[9450,2],[9451,2]]], [9374,[14946.1,1013.57,6.35783e-007],[[9292,2],[9368,2],[9452,2]]], [9375,[12383.5,7510.35,-1.90735e-006],[[9293,2],[9436,2],[9375,2],[9376,2]]], [9376,[12336,7434.42,2.54313e-006],[[9294,2],[9375,2],[9453,2]]], [9377,[12892.4,7999.08,0],[[9295,2],[9454,2],[9377,2],[9455,2]]], +[9378,[12903,8233.73,0],[[9295,2],[9456,2]]], [9379,[11877.2,7282.6,0],[[9297,2],[9299,2],[9457,2],[9458,2]]], [9380,[11343.7,7072.08,0],[[9300,2]]], [9381,[11419.4,7120.53,-2.54313e-006],[[9300,2],[9459,2],[9460,2]]], [9382,[14335.7,830.966,0],[[9302,2],[9304,2]]], [9383,[14439.2,779.937,1.58946e-007],[[9302,2],[9461,2],[9462,2]]], +[9384,[14290.3,559.893,0],[[9302,2]]], [9385,[14483.3,924.306,0],[[9304,2],[9461,2]]], [9386,[11208.9,6946.5,-3.8147e-006],[[9306,2]]], [9387,[10713.8,7306.92,-2.54313e-006],[[9307,2],[9363,2],[9463,2]]], [9388,[10814.1,7327.73,0],[[9307,2],[9463,2]]], [9389,[11020.6,7226.52,-2.54313e-006],[[9308,2],[9464,2],[9463,2]]], +[9390,[10516.8,7530.29,0],[[9310,2],[9363,2]]], [9391,[6200.39,9320.78,1.90735e-006],[[9311,2],[9465,2],[9391,2],[9466,2]]], [9392,[6757.44,9324.51,-2.54313e-006],[[9314,2],[9392,2],[9467,2]]], [9393,[6828.62,9430.83,0],[[9315,2],[9316,2],[9393,2]]], [9394,[4591.45,18613.4,0],[[9319,2],[9325,2]]], [9395,[4063.44,18410.1,-1.90735e-006],[[9320,2],[9340,2],[9395,2],[9468,2]]], +[9396,[5011.38,18844.5,0],[[9321,2]]], [9397,[5116.81,18990.1,0],[[9322,2],[9328,2],[9469,2],[9470,2]]], [9398,[5088.65,18887.5,0],[[9322,2],[9328,2],[9471,2]]], [9399,[4892.55,18945.1,0],[[9323,2],[9472,2]]], [9400,[4902.35,19121,0],[[9323,2],[9473,2]]], [9401,[4878.35,19077,1.27157e-006],[[9323,2],[9402,2],[9473,2]]], +[9402,[4854.42,19041.8,0],[[9323,2],[9401,2]]], [9403,[4921.84,19156.8,0],[[9324,2],[9474,2],[9473,2]]], [9404,[5006.93,19094.4,1.27157e-006],[[9324,2],[9475,2],[9476,2],[9405,2]]], [9405,[5079.58,19170.4,0],[[9324,2],[9404,2],[9477,2],[9470,2],[9478,2],[9479,2],[9480,2],[9405,2],[9476,2],[9481,2],[9482,2]]], [9406,[4800.55,18549.3,-3.8147e-006],[[9325,2],[9483,2]]], [9407,[4791.74,18786.2,0],[[9326,2]]], +[9408,[5209.1,18810.7,0],[[9327,2],[9328,2]]], [9409,[5230.27,18919.3,-3.17891e-007],[[9328,2],[9469,2],[9484,2]]], [9410,[5110.33,18615.5,0],[[9329,2]]], [9411,[5356.12,18488.7,0],[[9330,2]]], [9412,[5452.54,18527.7,6.35783e-007],[[9330,2],[9485,2],[9412,2]]], [9413,[5312.96,18603.7,-2.54313e-006],[[9331,2],[9486,2],[9414,2],[9413,2],[9487,2]]], +[9414,[5288.27,18659.7,0],[[9331,2],[9413,2],[9486,2],[9488,2],[9484,2]]], [9415,[5193.65,18486.1,0],[[9331,2],[9489,2]]], [9416,[5620.26,17819.5,1.90735e-006],[[9336,2]]], [9417,[5635.95,17741.5,3.8147e-006],[[9336,2],[9490,2]]], [9418,[3214.09,17990.4,7.62939e-006],[[9337,2],[9491,2]]], [9419,[2918.5,17837.2,0],[[9338,2],[9492,2],[9419,2]]], +[9420,[2949.29,17784.5,-1.27157e-006],[[9339,2],[9493,2],[9420,2],[9494,2]]], [9421,[3531.74,18323.1,-5.08626e-006],[[9341,2],[9495,2],[9496,2]]], [9422,[3559.62,18387.7,0],[[9341,2],[9497,2]]], [9423,[3709.2,18476.1,0],[[9341,2],[9498,2]]], [9424,[8010.42,15696.5,1.90735e-006],[[9343,2]]], [9425,[8094.39,15851,0],[[9343,2]]], +[9426,[8075.5,15664.7,0],[[9344,2],[9499,2]]], [9427,[13040,8486.88,0],[[9349,2],[9500,2],[9456,2]]], [9428,[12890,8599.81,0],[[9350,2]]], [9429,[12766,8785.11,0],[[9351,2]]], [9430,[12470.8,8298.35,0],[[9353,2],[9501,2]]], [9431,[12610.6,8072.67,-7.62939e-006],[[9353,2]]], +[9432,[12702.2,8265.27,7.62939e-006],[[9353,2],[9500,2]]], [9433,[12006.9,7582.96,0],[[9356,2],[9358,2],[9457,2],[9453,2]]], [9434,[11645.9,7604.46,0],[[9357,2],[9502,2],[9434,2],[9503,2],[9435,2]]], [9435,[11549.2,7675.41,0],[[9357,2],[9434,2],[9435,2],[9504,2]]], [9436,[12237.5,7604.92,0],[[9358,2],[9375,2]]], [9437,[10968.4,7471.07,0],[[9359,2],[9463,2]]], +[9438,[11384.4,7492.06,0],[[9360,2]]], [9439,[11157.1,7470.37,0],[[9360,2]]], [9440,[11327.7,7656.97,0],[[9360,2],[9503,2]]], [9441,[10980.5,7469.76,0],[[9361,2]]], [9442,[10596.2,7860.03,0],[[9362,2]]], [9443,[13540.1,8319.99,0],[[9283,2]]], +[9444,[15221.7,944.108,1.90735e-007],[[9368,2],[9369,2],[9505,2],[9506,2],[9507,2],[9446,2],[9508,2]]], [9445,[15439,813.866,3.17891e-007],[[9369,2],[9509,2],[9510,2]]], [9446,[15320.6,928.794,-9.53674e-007],[[9369,2],[9444,2],[9511,2]]], [9447,[15575.2,727.466,0],[[9371,2],[9372,2],[9449,2],[9512,2],[9509,2]]], [9448,[15715.7,674.209,0],[[9372,2]]], [9449,[15649.5,738.996,0],[[9372,2],[9447,2],[9513,2],[9450,2],[9514,2]]], +[9450,[15694.4,557.391,0],[[9373,2],[9449,2],[9514,2]]], [9451,[15904.3,576.855,2.38419e-007],[[9373,2]]], [9452,[14947,947.434,0],[[9374,2],[9515,2],[9516,2],[9517,2],[9506,2]]], [9453,[12134,7527.58,0],[[9376,2],[9433,2]]], [9454,[12852,7992.48,0],[[9377,2]]], [9455,[12849.3,7864.59,7.62939e-006],[[9377,2]]], +[9456,[12928.8,8367.25,0],[[9378,2],[9427,2],[9500,2]]], [9457,[11942.4,7444.21,0],[[9379,2],[9433,2]]], [9458,[11833.9,7257.89,0],[[9379,2],[9518,2]]], [9459,[11244.8,7188.35,7.62939e-006],[[9381,2],[9519,2],[9464,2]]], [9460,[11496,7267.11,0],[[9381,2],[9520,2],[9502,2]]], [9461,[14528,867.466,1.58946e-007],[[9383,2],[9385,2],[9521,2]]], +[9462,[14524.3,738.249,-4.76837e-007],[[9383,2],[9522,2]]], [9463,[10828.1,7370.88,0],[[9387,2],[9388,2],[9389,2],[9437,2]]], [9464,[11189.8,7211.37,0],[[9389,2],[9459,2],[9519,2]]], [9465,[6058.33,9244.2,0],[[9391,2],[9465,2]]], [9466,[6189.61,9377.37,0],[[9391,2]]], [9467,[6752.75,9334.12,0],[[9392,2]]], +[9468,[3919.22,18564.5,0],[[9395,2],[9523,2]]], [9469,[5214.49,19002.9,0],[[9397,2],[9409,2],[9478,2]]], [9470,[5119.06,19044.8,9.53674e-007],[[9397,2],[9405,2],[9524,2],[9470,2]]], [9471,[5063.32,18861.9,-1.90735e-006],[[9398,2]]], [9472,[4919.89,18912.8,0],[[9399,2],[9525,2]]], [9473,[4841.36,19182.4,0],[[9400,2],[9401,2],[9403,2],[9526,2],[9474,2],[9527,2],[9528,2]]], +[9474,[4918.96,19189.8,0],[[9403,2],[9473,2],[9529,2],[9481,2]]], [9475,[4976.99,19116.1,1.90735e-006],[[9404,2]]], [9476,[5030.22,19131.6,0],[[9404,2],[9405,2]]], [9477,[5114.59,19114,-9.53674e-007],[[9405,2],[9478,2]]], [9478,[5165.72,19123.6,9.53674e-008],[[9405,2],[9469,2],[9477,2],[9530,2]]], [9479,[5100.96,19251.5,1.90735e-007],[[9405,2],[9530,2],[9531,2],[9532,2],[9482,2]]], +[9480,[5071.19,19225.3,0],[[9405,2],[9533,2],[9481,2]]], [9481,[5007.89,19199.8,0],[[9405,2],[9474,2],[9480,2],[9534,2],[9535,2]]], [9482,[5065.63,19226.3,0],[[9405,2],[9479,2]]], [9483,[4805.34,18522.8,0],[[9406,2]]], [9484,[5282,18804.8,6.35783e-007],[[9409,2],[9414,2],[9484,2],[9488,2]]], [9485,[5391.6,18599.9,0],[[9412,2]]], +[9486,[5305.49,18623.6,-1.27157e-006],[[9413,2],[9414,2]]], [9487,[5317.77,18522.8,0],[[9413,2]]], [9488,[5293.28,18748,3.8147e-007],[[9414,2],[9484,2],[9536,2],[9537,2],[9538,2]]], [9489,[5193.3,18386.7,0],[[9415,2]]], [9490,[5588.84,17694.1,0],[[9417,2]]], [9491,[3268.02,18130.2,0],[[9418,2],[9539,2]]], +[9492,[2966.71,17972.7,3.8147e-006],[[9419,2],[9540,2]]], [9493,[2937.3,17766.6,-1.90735e-006],[[9420,2]]], [9494,[3011.4,17857.6,0],[[9420,2],[9541,2]]], [9495,[3550.72,18405.7,7.62939e-006],[[9421,2]]], [9496,[3403.92,18256.5,-7.62939e-006],[[9421,2],[9539,2]]], [9497,[3609.74,18519.6,0],[[9422,2],[9542,2]]], +[9498,[3747.58,18573.5,0],[[9423,2],[9543,2]]], [9499,[7989.05,15574.3,0],[[9426,2],[9544,2]]], [9500,[12914.2,8404.89,-1.90735e-006],[[9427,2],[9432,2],[9456,2],[9545,2]]], [9501,[12444.8,8314.4,0],[[9430,2],[9501,2],[9546,2]]], [9502,[11576.2,7440.11,7.62939e-006],[[9434,2],[9460,2],[9547,2]]], [9503,[11538.3,7641.31,7.62939e-006],[[9434,2],[9440,2]]], +[9504,[11537.9,7640.61,0],[[9435,2]]], [9505,[15205.8,780.301,0],[[9444,2],[9548,2]]], [9506,[15099.4,935.898,0],[[9444,2],[9452,2],[9517,2],[9549,2],[9506,2]]], [9507,[15304,945.716,0],[[9444,2],[9507,2]]], [9508,[15273.5,799.573,0],[[9444,2],[9550,2]]], [9509,[15468.1,692.206,0],[[9445,2],[9447,2],[9512,2],[9551,2],[9552,2]]], +[9510,[15495.5,851.116,-9.53674e-007],[[9445,2]]], [9511,[15356,739.155,0],[[9446,2],[9551,2]]], [9512,[15526.3,704.741,0],[[9447,2],[9509,2],[9553,2]]], [9513,[15624.9,820.751,0],[[9449,2]]], [9514,[15670,550.302,0],[[9450,2],[9554,2],[9552,2],[9449,2]]], [9515,[14900,929.352,-9.53674e-007],[[9452,2],[9555,2]]], +[9516,[14955.6,790.618,0],[[9452,2],[9556,2],[9548,2]]], [9517,[15047.2,927.87,0],[[9452,2],[9506,2],[9517,2],[9557,2]]], [9518,[11678.9,7331.03,0],[[9458,2],[9520,2]]], [9519,[11225.3,7196.13,7.62939e-006],[[9459,2],[9464,2],[9558,2]]], [9520,[11554.4,7386.01,-7.62939e-006],[[9460,2],[9518,2]]], [9521,[14613.6,911.463,2.38419e-007],[[9461,2],[9521,2],[9559,2],[9560,2]]], +[9522,[14549.4,761.244,0],[[9462,2]]], [9523,[3891.92,18585.2,2.54313e-006],[[9468,2],[9561,2],[9523,2],[9562,2]]], [9524,[5128.69,19110.6,0],[[9470,2]]], [9525,[4910.8,18903.6,0],[[9472,2]]], [9526,[4832.96,19255.1,0],[[9473,2],[9563,2],[9564,2]]], [9527,[4750.32,19206.4,0],[[9473,2],[9565,2],[9564,2],[9566,2]]], +[9528,[4760.26,19134.7,0],[[9473,2]]], [9529,[4949.8,19196.7,-1.90735e-006],[[9474,2],[9567,2]]], [9530,[5174.5,19193.8,5.96046e-008],[[9478,2],[9479,2],[9531,2]]], [9531,[5122.26,19274,0],[[9479,2],[9530,2],[9568,2],[9569,2]]], [9532,[5057.99,19304.8,1.58946e-007],[[9479,2],[9570,2],[9571,2],[9533,2]]], [9533,[5054.57,19252.7,0],[[9480,2],[9532,2],[9572,2],[9571,2]]], +[9534,[4958.46,19201,0],[[9481,2]]], [9535,[4952.64,19316.4,0],[[9481,2],[9573,2]]], [9536,[5353.36,18689.4,0],[[9488,2]]], [9537,[5336.46,18813.3,0],[[9488,2]]], [9538,[5236.23,18752.3,0],[[9488,2]]], [9539,[3277.71,18145.2,0],[[9491,2],[9496,2],[9539,2],[9574,2]]], +[9540,[2999.25,18088.6,-3.8147e-006],[[9492,2],[9575,2]]], [9541,[3026.96,17892.7,0],[[9494,2],[9541,2],[9576,2]]], [9542,[3638.75,18549.5,-7.62939e-006],[[9497,2],[9577,2]]], [9543,[3826.15,18656.9,0],[[9498,2],[9562,2]]], [9544,[8015.51,15551.7,0],[[9499,2]]], [9545,[12875.3,8482.25,7.62939e-006],[[9500,2]]], +[9546,[12454,8316.02,0],[[9501,2]]], [9547,[11556.4,7397.5,0],[[9502,2]]], [9548,[15129.2,776.23,2.38419e-007],[[9505,2],[9516,2],[9548,2],[9578,2]]], [9549,[15108.3,927.587,0],[[9506,2],[9578,2]]], [9550,[15288.2,678.223,0],[[9508,2],[9579,2],[9551,2]]], [9551,[15375.3,657.84,0],[[9509,2],[9511,2],[9550,2],[9580,2],[9581,2]]], +[9552,[15511.5,510.206,-2.38419e-007],[[9509,2],[9514,2],[9582,2]]], [9553,[15539.9,648.483,4.76837e-007],[[9512,2]]], [9554,[15522.8,498.877,-2.38419e-007],[[9514,2],[9583,2]]], [9555,[14841.3,914.268,0],[[9515,2],[9584,2]]], [9556,[14911.5,745.719,0],[[9516,2],[9585,2]]], [9557,[15051.9,863.051,-3.17891e-007],[[9517,2],[9557,2]]], +[9558,[11269.5,7310.96,0],[[9519,2]]], [9559,[14699.7,910.783,-3.17891e-007],[[9521,2],[9584,2],[9586,2]]], [9560,[14608.3,742.005,0],[[9521,2],[9587,2]]], [9561,[3894.04,18573.4,3.8147e-006],[[9523,2]]], [9562,[3907.36,18663.1,-5.08626e-006],[[9523,2],[9543,2],[9588,2]]], [9563,[4884.02,19263.9,0],[[9526,2],[9567,2],[9589,2],[9563,2]]], +[9564,[4763.47,19351.1,0],[[9526,2],[9527,2],[9590,2],[9565,2],[9591,2],[9592,2],[9593,2],[9594,2]]], [9565,[4729.23,19275.7,-3.8147e-006],[[9527,2],[9564,2],[9591,2]]], [9566,[4725.48,19199.6,0],[[9527,2],[9566,2],[9595,2]]], [9567,[4949.76,19241.2,-6.35783e-007],[[9529,2],[9563,2],[9567,2]]], [9568,[5080.23,19330.5,0],[[9531,2]]], [9569,[5133.17,19301.1,0],[[9531,2]]], +[9570,[5014,19380.2,0],[[9532,2],[9596,2],[9573,2],[9593,2],[9570,2]]], [9571,[5029.87,19284.4,0],[[9532,2],[9533,2],[9573,2]]], [9572,[5043.4,19277.4,0],[[9533,2]]], [9573,[4963.2,19356.6,-2.38419e-007],[[9535,2],[9570,2],[9571,2],[9597,2],[9596,2]]], [9574,[3200,18160.3,0],[[9539,2],[9598,2],[9599,2]]], [9575,[3021.46,18179.3,0],[[9540,2],[9600,2]]], +[9576,[3069.59,17979.4,0],[[9541,2],[9601,2]]], [9577,[3614.4,18692.6,0],[[9542,2],[9602,2]]], [9578,[15116,869.814,0],[[9548,2],[9549,2]]], [9579,[15290.4,659.533,0],[[9550,2],[9603,2]]], [9580,[15381,526.856,-4.76837e-007],[[9551,2]]], [9581,[15295,651.115,-4.76837e-007],[[9551,2]]], +[9582,[15554.1,374.011,0],[[9552,2],[9604,2]]], [9583,[15362.1,445.263,9.53674e-007],[[9554,2],[9605,2]]], [9584,[14783.9,896.663,3.17891e-007],[[9555,2],[9559,2],[9606,2]]], [9585,[14862.5,734.796,0],[[9556,2],[9607,2],[9606,2]]], [9586,[14706,849.726,0],[[9559,2],[9608,2]]], [9587,[14611,691.938,-1.19209e-007],[[9560,2],[9609,2],[9610,2],[9606,2],[9608,2]]], +[9588,[3940.77,18747.8,0],[[9562,2],[9611,2],[9588,2]]], [9589,[4865.22,19261.6,0],[[9563,2]]], [9590,[4815.65,19336.7,0],[[9564,2],[9612,2],[9596,2],[9590,2]]], [9591,[4692.06,19307.7,0],[[9564,2],[9565,2]]], [9592,[4661.58,19500.1,-4.76837e-007],[[9564,2],[9613,2],[9592,2],[9614,2]]], [9593,[4832.82,19475.5,-5.72205e-007],[[9564,2],[9570,2],[9615,2],[9616,2],[9617,2],[9596,2]]], +[9594,[4686.42,19386.1,0],[[9564,2]]], [9595,[4583.46,19107.4,0],[[9566,2],[9618,2]]], [9596,[4943.45,19428.5,9.53674e-008],[[9570,2],[9573,2],[9590,2],[9593,2],[9619,2],[9617,2],[9612,2]]], [9597,[4937.44,19361.2,0],[[9573,2]]], [9598,[3268.25,18231.3,0],[[9574,2],[9620,2],[9598,2]]], [9599,[3110.7,18067.9,0],[[9574,2],[9601,2]]], +[9600,[3068.83,18249.7,-1.27157e-006],[[9575,2],[9621,2],[9600,2]]], [9601,[3093.27,18033.8,0],[[9576,2],[9599,2]]], [9602,[3617.36,18771.8,-3.8147e-006],[[9577,2],[9622,2],[9602,2],[9623,2]]], [9603,[15300.5,558.955,4.76837e-007],[[9579,2]]], [9604,[15609.5,250.101,0],[[9582,2],[9624,2]]], [9605,[15370.4,401.6,0],[[9583,2]]], +[9606,[14787,728.605,3.17891e-007],[[9584,2],[9585,2],[9587,2],[9610,2]]], [9607,[14865.1,792.688,0],[[9585,2]]], [9608,[14708.9,752.797,0],[[9586,2],[9587,2],[9610,2]]], [9609,[14552.5,580.479,4.76837e-007],[[9587,2]]], [9610,[14703.7,710.971,0],[[9587,2],[9606,2],[9608,2]]], [9611,[4052.41,18842,0],[[9588,2],[9625,2]]], +[9612,[4891.88,19401,0],[[9590,2],[9596,2]]], [9613,[4611.15,19584.9,-4.76837e-007],[[9592,2],[9626,2],[9627,2],[9613,2],[9628,2]]], [9614,[4569.31,19439.7,0],[[9592,2]]], [9615,[4766.32,19512,-2.38419e-007],[[9593,2],[9629,2],[9615,2],[9630,2]]], [9616,[4789.65,19543,-9.53674e-007],[[9593,2],[9631,2],[9629,2]]], [9617,[4981.78,19456.7,0],[[9593,2],[9596,2],[9619,2]]], +[9618,[4545.05,19073.6,0],[[9595,2],[9632,2],[9633,2]]], [9619,[4996.18,19437.3,9.53674e-008],[[9596,2],[9617,2],[9634,2],[9619,2],[9635,2]]], [9620,[3278.72,18251,0],[[9598,2],[9636,2]]], [9621,[3134.21,18341.9,0],[[9600,2],[9637,2]]], [9622,[3596.25,18911.7,0],[[9602,2],[9638,2]]], [9623,[3731.99,18836.8,0],[[9602,2],[9623,2]]], +[9624,[15627.6,213.863,-2.38419e-007],[[9604,2]]], [9625,[4082.3,18896.5,-2.54313e-006],[[9611,2],[9639,2],[9640,2]]], [9626,[4518.09,19746.3,6.35783e-007],[[9613,2],[9641,2],[9629,2],[9642,2]]], [9627,[4611.56,19576.9,0],[[9613,2]]], [9628,[4590.62,19574.8,0],[[9613,2]]], [9629,[4708.12,19592.1,9.53674e-007],[[9615,2],[9616,2],[9626,2],[9631,2],[9643,2],[9641,2]]], +[9630,[4779.96,19547.3,0],[[9615,2]]], [9631,[4735.29,19620.3,0],[[9616,2],[9629,2],[9644,2],[9641,2],[9631,2]]], [9632,[4497.38,19197.5,0],[[9618,2],[9645,2],[9632,2],[9646,2]]], [9633,[4528.57,18997,1.27157e-006],[[9618,2],[9647,2],[9648,2]]], [9634,[5049.65,19388.1,0],[[9619,2]]], [9635,[4988.73,19484.9,0],[[9619,2]]], +[9636,[3315.76,18374.4,0],[[9620,2],[9649,2]]], [9637,[3195.71,18426.3,2.54313e-006],[[9621,2],[9650,2],[9637,2],[9651,2]]], [9638,[3548.2,18998.6,9.53674e-007],[[9622,2],[9652,2],[9653,2],[9654,2]]], [9639,[4090.14,18963.7,-7.62939e-006],[[9625,2]]], [9640,[4157.35,18990.4,-3.05176e-006],[[9625,2],[9655,2],[9656,2],[9657,2],[9640,2]]], [9641,[4635.64,19675.4,0],[[9626,2],[9629,2],[9631,2],[9658,2]]], +[9642,[4403.05,19863.2,0],[[9626,2],[9659,2],[9660,2]]], [9643,[4622.4,19675.4,0],[[9629,2],[9643,2]]], [9644,[4694.87,19684.4,9.53674e-007],[[9631,2],[9661,2]]], [9645,[4509.14,19259.5,0],[[9632,2],[9662,2]]], [9646,[4349.55,19165.6,0],[[9632,2],[9655,2]]], [9647,[4512.5,18909.3,0],[[9633,2],[9663,2]]], +[9648,[4375.67,18961.5,0],[[9633,2],[9664,2]]], [9649,[3358.99,18460.7,7.62939e-006],[[9636,2],[9665,2]]], [9650,[3179.95,18410,1.90735e-006],[[9637,2]]], [9651,[3235.43,18521.6,0],[[9637,2],[9666,2]]], [9652,[3547.71,19090.3,-9.53674e-007],[[9638,2],[9652,2],[9667,2],[9653,2]]], [9653,[3513.44,19047,0],[[9638,2],[9652,2],[9668,2],[9654,2]]], +[9654,[3479.87,18981.5,-9.53674e-007],[[9638,2],[9653,2],[9669,2],[9654,2]]], [9655,[4273.41,19100.4,-3.8147e-006],[[9640,2],[9646,2]]], [9656,[4211.86,18926.4,0],[[9640,2],[9656,2],[9670,2],[9664,2],[9671,2]]], [9657,[4002.69,19094.4,-7.62939e-006],[[9640,2],[9672,2]]], [9658,[4683.4,19697.6,0],[[9641,2]]], [9659,[4286.41,19890.6,6.35783e-007],[[9642,2],[9659,2],[9673,2],[9674,2],[9675,2]]], +[9660,[4416.71,19915.3,-2.38419e-007],[[9642,2],[9676,2],[9677,2],[9678,2]]], [9661,[4658.76,19749.9,-1.90735e-007],[[9644,2],[9679,2],[9680,2],[9681,2],[9682,2]]], [9662,[4487.11,19327.1,0],[[9645,2],[9683,2]]], [9663,[4505.92,18895.5,0],[[9647,2]]], [9664,[4257.24,18899.4,0],[[9648,2],[9656,2],[9670,2]]], [9665,[3443.34,18517.2,0],[[9649,2],[9684,2]]], +[9666,[3234.53,18579,0],[[9651,2],[9685,2]]], [9667,[3616.41,19207.1,0],[[9652,2],[9686,2]]], [9668,[3446.76,19181,0],[[9653,2],[9687,2]]], [9669,[3403.16,18922,0],[[9654,2],[9688,2],[9689,2],[9690,2]]], [9670,[4232.54,18891.8,3.8147e-006],[[9664,2],[9670,2]]], [9671,[4186.77,18909.6,0],[[9656,2],[9671,2],[9691,2]]], +[9672,[3904.98,19199.7,0],[[9657,2],[9692,2]]], [9673,[4247.76,19934.1,0],[[9659,2],[9678,2],[9693,2],[9694,2]]], [9674,[4201.45,19848.1,3.17891e-007],[[9659,2],[9674,2],[9695,2]]], [9675,[4327,19790.1,-9.53674e-007],[[9659,2],[9696,2],[9697,2],[9698,2]]], [9676,[4525.81,19870.6,0],[[9660,2],[9681,2],[9699,2]]], [9677,[4415.42,19948.8,0],[[9660,2]]], +[9678,[4319.88,19979.7,-1.58946e-007],[[9660,2],[9673,2],[9700,2],[9701,2],[9694,2],[9702,2]]], [9679,[4725.1,19763.5,0],[[9661,2]]], [9680,[4634.93,19757.3,0],[[9661,2]]], [9681,[4586.48,19855.5,0],[[9661,2],[9676,2]]], [9682,[4684.98,19788,0],[[9661,2]]], [9683,[4422.4,19404.1,0],[[9662,2],[9703,2]]], +[9684,[3489.71,18557.2,0],[[9665,2],[9704,2]]], [9685,[3241.25,18666.3,0],[[9666,2],[9705,2],[9685,2]]], [9686,[3617.63,19227.3,0],[[9667,2],[9706,2],[9707,2],[9687,2]]], [9687,[3449,19205.1,1.27157e-006],[[9668,2],[9686,2],[9708,2]]], [9688,[3435.97,18882.2,-4.76837e-007],[[9669,2],[9688,2],[9709,2],[9710,2]]], [9689,[3324.03,18974.3,0],[[9669,2],[9711,2],[9712,2]]], +[9690,[3313.63,18902.9,0],[[9669,2]]], [9691,[4176.16,18873.6,0],[[9671,2]]], [9692,[3848.71,19246.5,0],[[9672,2],[9713,2],[9714,2],[9706,2]]], [9693,[4131.53,19895.7,1.27157e-006],[[9673,2],[9715,2],[9716,2]]], [9694,[4215.32,19997.3,0],[[9673,2],[9678,2],[9716,2],[9694,2],[9702,2],[9717,2],[9718,2]]], [9695,[4222.6,19789.4,0],[[9674,2]]], +[9696,[4204.77,19741.9,0],[[9675,2],[9719,2]]], [9697,[4375.88,19667.7,3.8147e-006],[[9675,2],[9720,2]]], [9698,[4385.67,19800.1,6.35783e-007],[[9675,2],[9698,2],[9721,2]]], [9699,[4519.36,19837.4,6.35783e-007],[[9676,2],[9699,2],[9722,2]]], [9700,[4350.9,20001.7,0],[[9678,2],[9700,2],[9701,2]]], [9701,[4323.68,20015.3,0],[[9678,2],[9700,2],[9717,2],[9702,2]]], +[9702,[4258.13,20022.2,0],[[9678,2],[9694,2],[9717,2],[9723,2],[9701,2]]], [9703,[4399.95,19522.7,0],[[9683,2],[9720,2]]], [9704,[3491.76,18578.8,2.54313e-006],[[9684,2],[9724,2],[9704,2],[9725,2]]], [9705,[3251.04,18713.3,3.17891e-007],[[9685,2],[9705,2],[9726,2],[9709,2],[9727,2]]], [9706,[3747.78,19215.5,0],[[9686,2],[9692,2],[9714,2]]], [9707,[3649.88,19302.1,0],[[9686,2],[9728,2],[9729,2]]], +[9708,[3462.82,19265.9,9.53674e-007],[[9687,2],[9730,2],[9708,2],[9731,2]]], [9709,[3344.4,18756.4,0],[[9688,2],[9705,2],[9726,2]]], [9710,[3496.22,18796.5,0],[[9688,2],[9732,2],[9733,2]]], [9711,[3291.13,19027.5,-6.35783e-007],[[9689,2],[9712,2],[9734,2]]], [9712,[3265.27,18941.1,0],[[9689,2],[9711,2],[9727,2]]], [9713,[3943.23,19343.3,-7.62939e-006],[[9692,2],[9735,2]]], +[9714,[3778.57,19238.5,0],[[9692,2],[9706,2],[9714,2],[9736,2]]], [9715,[4017.66,19764.6,0],[[9693,2],[9737,2]]], [9716,[4085.67,19920.1,0],[[9693,2],[9694,2],[9718,2],[9738,2]]], [9717,[4205.48,20052.7,0],[[9694,2],[9701,2],[9702,2],[9739,2],[9718,2]]], [9718,[4094.94,20018.3,0],[[9694,2],[9716,2],[9717,2],[9740,2],[9738,2],[9739,2],[9741,2],[9742,2],[9743,2],[9744,2]]], [9719,[4157,19738.9,0],[[9696,2]]], +[9720,[4386.62,19649.5,1.27157e-006],[[9697,2],[9703,2],[9745,2]]], [9721,[4389.65,19823.9,0],[[9698,2]]], [9722,[4477.16,19811.8,0],[[9699,2]]], [9723,[4270.12,20041.3,0],[[9702,2]]], [9724,[3483.87,18627.7,0],[[9704,2],[9746,2],[9725,2],[9724,2]]], [9725,[3469.38,18626.8,-7.62939e-006],[[9724,2],[9761,2],[9704,2]]], +[9726,[3289.93,18737.3,6.35783e-007],[[9705,2],[9709,2]]], [9727,[3247.37,18851,0],[[9705,2],[9712,2]]], [9728,[3729.69,19435.4,1.27157e-006],[[9707,2],[9747,2],[9736,2]]], [9729,[3502.44,19365.7,0],[[9707,2],[9748,2],[9730,2]]], [9730,[3408.77,19361.8,0],[[9708,2],[9729,2],[9748,2],[9749,2],[9750,2]]], [9731,[3517.93,19266.5,3.8147e-006],[[9708,2]]], +[9732,[3528.06,18748.9,0],[[9710,2],[9751,2],[9746,2]]], [9733,[3571.09,18799.1,0],[[9710,2]]], [9734,[3311.61,19116.5,0],[[9711,2],[9750,2]]], [9735,[3994.35,19329.3,0],[[9713,2]]], [9736,[3783.03,19362.1,3.8147e-006],[[9714,2],[9728,2]]], [9737,[3913.77,19683,0],[[9715,2],[9747,2]]], +[9738,[4003.36,19869,0],[[9716,2],[9718,2],[9752,2],[9753,2]]], [9739,[4162.07,20060.3,-1.19209e-007],[[9717,2],[9718,2],[9754,2],[9755,2]]], [9740,[3986.41,19894.4,0],[[9718,2],[9756,2]]], [9741,[4092.61,20194.7,0],[[9718,2],[9757,2],[9758,2]]], [9742,[4030.26,19968.3,0],[[9718,2]]], [9743,[4024.52,20014.4,0],[[9718,2]]], +[9744,[4061.11,20126,0],[[9718,2],[9744,2],[9759,2]]], [9745,[4454.78,19699,0],[[9720,2],[9760,2]]], [9746,[3525.91,18643.5,0],[[9746,2]]], [9747,[3819.93,19589.2,1.27157e-006],[[9728,2],[9737,2],[9762,2]]], [9748,[3478.93,19414.8,0],[[9729,2],[9730,2],[9748,2],[9763,2],[9764,2],[9749,2]]], [9749,[3357.35,19396.9,1.58946e-007],[[9730,2],[9748,2],[9764,2],[9765,2]]], +[9750,[3346.36,19179.9,0],[[9730,2],[9734,2]]], [9751,[3580.55,18657.4,0],[[9732,2],[9746,2],[9751,2]]], [9752,[3918.09,19821.5,0],[[9738,2],[9753,2],[9766,2],[9767,2],[9756,2]]], [9753,[3944.83,19809.3,0],[[9738,2],[9752,2],[9762,2]]], [9754,[4154.3,20109.4,0],[[9739,2]]], [9755,[4131.69,20092.1,0],[[9739,2]]], +[9756,[3910.21,19861.9,9.53674e-007],[[9740,2],[9752,2],[9768,2]]], [9757,[4135.01,20288.3,0],[[9741,2],[9769,2]]], [9758,[4039.99,20257.5,1.27157e-006],[[9741,2],[9770,2],[9771,2]]], [9759,[4020.28,20139.5,-6.35783e-007],[[9744,2],[9772,2],[9773,2]]], [9760,[4454.17,19724.8,0],[[9745,2],[9774,2],[9760,2]]], [9761,[3468.24,18613.9,0],[[9725,2]]], +[9762,[3899.69,19741.7,0],[[9747,2],[9753,2]]], [9763,[3504.3,19480,0],[[9748,2],[9775,2],[9776,2],[9777,2],[9764,2]]], [9764,[3415.19,19453.1,-1.90735e-007],[[9748,2],[9749,2],[9763,2],[9776,2],[9765,2]]], [9765,[3312.18,19465.5,0],[[9749,2],[9764,2],[9778,2]]], [9766,[3803.26,19662.5,0],[[9752,2],[9775,2]]], [9767,[3861.68,19829.6,0],[[9752,2],[9779,2]]], +[9768,[3880.98,19839.8,0],[[9756,2]]], [9769,[4164.26,20394.5,0],[[9757,2],[9780,2]]], [9770,[3914.35,20229.7,0],[[9758,2],[9781,2]]], [9771,[3994.09,20327.9,0],[[9758,2],[9782,2],[9783,2]]], [9772,[3891.29,20099.3,0],[[9759,2],[9784,2],[9781,2]]], [9773,[3909.03,19998.3,0],[[9759,2],[9785,2]]], +[9774,[4443.5,19763.3,0],[[9760,2]]], [9775,[3647.56,19506.8,0],[[9763,2],[9766,2]]], [9776,[3529.49,19559.4,0],[[9763,2],[9764,2],[9786,2],[9787,2],[9788,2]]], [9777,[3459.67,19474,0],[[9763,2]]], [9778,[3314.71,19511.7,0],[[9765,2],[9789,2],[9790,2]]], [9779,[3798.53,19792.2,4.76837e-007],[[9767,2],[9779,2],[9791,2],[9792,2]]], +[9780,[4139.46,20509.4,0],[[9769,2],[9793,2]]], [9781,[3881.75,20164,-1.27157e-006],[[9770,2],[9772,2],[9784,2]]], [9782,[3920.16,20447.2,0],[[9771,2],[9794,2]]], [9783,[3853.03,20297.6,0],[[9771,2],[9795,2]]], [9784,[3861.58,20111.4,0],[[9772,2],[9781,2],[9796,2]]], [9785,[3815.22,19973.3,-3.8147e-006],[[9773,2],[9797,2]]], +[9786,[3474.57,19508.2,-1.90735e-006],[[9776,2]]], [9787,[3489.04,19664.6,-3.17891e-007],[[9776,2],[9787,2],[9798,2]]], [9788,[3598.85,19638.8,0],[[9776,2],[9799,2],[9798,2],[9792,2]]], [9789,[3235.21,19582.8,0],[[9778,2],[9800,2]]], [9790,[3393.98,19602.9,0],[[9778,2],[9801,2]]], [9791,[3685.56,19884.3,1.27157e-006],[[9779,2],[9802,2],[9791,2]]], +[9792,[3694.22,19705.6,9.53674e-007],[[9779,2],[9788,2]]], [9793,[4048.99,20604,0],[[9780,2],[9803,2]]], [9794,[3919.8,20553.3,0],[[9782,2],[9804,2]]], [9795,[3751.7,20325.3,0],[[9783,2],[9805,2],[9806,2]]], [9796,[3792.21,20064.7,0],[[9784,2],[9807,2]]], [9797,[3678.55,19940.1,0],[[9785,2],[9808,2],[9802,2]]], +[9798,[3531.76,19702.8,0],[[9787,2],[9788,2],[9809,2],[9798,2],[9799,2]]], [9799,[3573.5,19695.2,0],[[9798,2],[9810,2],[9799,2]]], [9800,[3218.39,19663,0],[[9789,2],[9811,2]]], [9801,[3431.21,19711.1,0],[[9790,2],[9812,2]]], [9802,[3580.55,19906.7,0],[[9791,2],[9797,2],[9808,2],[9813,2],[9814,2],[9810,2]]], [9803,[3989.11,20654.7,0],[[9793,2],[9815,2]]], +[9804,[3934.75,20604.7,0],[[9794,2],[9815,2]]], [9805,[3677.5,20312.1,0],[[9795,2],[9816,2],[9806,2]]], [9806,[3662.65,20367.2,-2.38419e-007],[[9795,2],[9805,2],[9817,2],[9816,2],[9818,2]]], [9807,[3732.33,20038.9,0],[[9796,2],[9819,2]]], [9808,[3648.84,19947.7,9.53674e-007],[[9797,2],[9802,2],[9819,2],[9820,2],[9813,2]]], [9809,[3518.97,19696.8,0],[[9798,2]]], +[9810,[3550.34,19752.6,0],[[9799,2],[9802,2],[9821,2]]], [9811,[3200.93,19774.1,0],[[9800,2],[9822,2]]], [9812,[3453.58,19765.3,7.62939e-006],[[9801,2],[9823,2],[9821,2]]], [9813,[3552.58,19966.2,0],[[9802,2],[9808,2],[9824,2],[9820,2]]], [9814,[3472.32,19878.9,1.90735e-006],[[9802,2],[9825,2],[9826,2],[9823,2]]], [9815,[3956.22,20643,0],[[9803,2],[9804,2],[9827,2]]], +[9816,[3624.64,20308.4,0],[[9805,2],[9806,2],[9828,2]]], [9817,[3645.04,20334.8,1.19209e-007],[[9806,2]]], [9818,[3756.15,20502.8,0],[[9806,2],[9827,2]]], [9819,[3698.1,19969.2,-3.8147e-006],[[9807,2],[9808,2]]], [9820,[3594.32,19982.6,0],[[9808,2],[9813,2]]], [9821,[3490.34,19743,-2.54313e-006],[[9810,2],[9812,2],[9829,2],[9823,2]]], +[9822,[3237.19,19910.6,0],[[9811,2],[9830,2],[9826,2]]], [9823,[3458.93,19785.4,7.62939e-006],[[9812,2],[9814,2],[9821,2]]], [9824,[3526.58,20068,6.35783e-007],[[9813,2],[9828,2],[9831,2]]], [9825,[3433.28,19942.1,2.54313e-006],[[9814,2],[9826,2],[9832,2]]], [9826,[3327.9,19938.5,1.27157e-006],[[9814,2],[9822,2],[9825,2],[9830,2]]], [9827,[3875.72,20596.4,0],[[9815,2],[9818,2]]], +[9828,[3576.84,20238.2,1.58946e-007],[[9816,2],[9824,2],[9831,2]]], [9829,[3491.08,19731.7,0],[[9821,2]]], [9830,[3262.14,19957.3,9.53674e-007],[[9822,2],[9826,2],[9833,2],[9830,2]]], [9831,[3509.79,20126.5,0],[[9824,2],[9828,2],[9834,2]]], [9832,[3375.84,20075.5,0],[[9825,2],[9835,2],[9834,2]]], [9833,[3315.51,20064,9.53674e-007],[[9830,2],[9836,2],[9833,2],[9835,2]]], +[9834,[3401.62,20104.2,0],[[9831,2],[9832,2],[9837,2]]], [9835,[3370.18,20085.8,-1.90735e-006],[[9832,2],[9833,2],[9836,2]]], [9836,[3320.38,20065.2,3.17891e-007],[[9833,2],[9835,2]]], [9837,[3367.27,20095.8,0],[[9834,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridKunduz.sqf b/A3-Antistasi/NavGrids/navGridKunduz.sqf new file mode 100644 index 0000000000..922167d124 --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridKunduz.sqf @@ -0,0 +1,85 @@ +navGrid = [[0,[1354.37,2876.79,0],[[1,2],[2,2],[3,2]]], [1,[1363.79,2797.88,0],[[0,2],[8,2],[9,2],[1,2]]], [2,[1334.52,3047.16,3.8147e-006],[[0,2],[10,2]]], [3,[1477.39,2930.22,-3.8147e-006],[[0,2],[11,2]]], [4,[4262.34,3288.06,0],[[5,2],[6,2],[7,2]]], [5,[4283.26,3204.89,0],[[4,2],[12,2],[13,2]]], +[6,[4190.08,3479.4,0],[[4,2],[14,2]]], [7,[4412.1,3334.8,0],[[4,2],[15,2]]], [8,[1370.2,2720.19,0],[[1,2],[16,2],[17,2]]], [9,[1371.5,2805.78,0],[[1,2],[18,2]]], [10,[1309.21,3236.91,-3.8147e-006],[[2,2],[19,2]]], [11,[1636.16,2945.6,0],[[3,2],[20,2]]], +[12,[4341.61,3051.83,9.53674e-007],[[5,2],[21,2]]], [13,[4230.67,3174.71,0],[[5,2],[22,2]]], [14,[4133.18,3645.36,0],[[6,2],[23,2]]], [15,[4567.84,3394.66,0],[[7,2],[24,2]]], [16,[1408.15,2561.04,-4.76837e-007],[[8,2],[25,2],[26,2],[27,2]]], [17,[1253.65,2695.47,0],[[8,2],[28,2]]], +[18,[1538.33,2810.03,0],[[9,2],[29,2]]], [19,[1300.14,3348.76,-1.90735e-006],[[10,2],[30,2],[31,2],[32,2]]], [20,[1779.9,2957.8,0],[[11,2],[33,2]]], [21,[4392.9,2908.7,0],[[12,2],[34,2]]], [22,[4171.23,3134.66,-4.76837e-007],[[13,2],[35,2]]], [23,[4081.22,3792.24,1.19209e-007],[[14,2],[36,2],[37,2],[38,2]]], +[24,[4721.32,3451.67,0],[[15,2],[39,2]]], [25,[1436.07,2399.37,0],[[16,2],[40,2],[25,2],[41,2],[26,2]]], [26,[1550.89,2488.81,0],[[16,2],[25,2],[41,2]]], [27,[1225.06,2555.32,0],[[16,2],[42,2],[28,2]]], [28,[1174.87,2645.48,-1.90735e-006],[[17,2],[27,2],[42,2]]], [29,[1602.35,2711.61,0],[[18,2],[43,2]]], +[30,[1276.48,3574.52,-3.8147e-006],[[19,2],[44,2]]], [31,[1195.07,3186.81,0],[[19,2],[45,2]]], [32,[1445.14,3477.32,0],[[19,2],[46,2]]], [33,[1937.79,2935.35,0],[[20,2],[47,2]]], [34,[4436.11,2784.52,0],[[21,2],[48,2]]], [35,[4090.81,3097.34,-4.76837e-007],[[22,2],[49,2]]], +[36,[4028,3947.23,0],[[23,2],[50,2]]], [37,[3925,3811.45,0],[[23,2],[51,2]]], [38,[4199.16,3810.87,0],[[23,2],[52,2]]], [39,[4782.74,3463.65,0],[[24,2],[53,2],[54,2]]], [40,[1428.4,2218.53,0],[[25,2],[55,2]]], [41,[1543.55,2465.74,9.53674e-007],[[25,2],[26,2]]], +[42,[1189.15,2597.37,-1.90735e-006],[[27,2],[28,2],[56,2],[42,2]]], [43,[1550.27,2602.92,0],[[29,2],[57,2]]], [44,[1261.17,3666.68,-1.27157e-006],[[30,2],[58,2],[59,2]]], [45,[1059.44,3100.2,0],[[31,2],[60,2]]], [46,[1468.83,3495.38,9.53674e-007],[[32,2],[61,2],[62,2],[63,2]]], [47,[1966.94,2927.56,-3.17891e-007],[[33,2],[64,2],[65,2]]], +[48,[4454.83,2718.06,1.19209e-007],[[34,2],[66,2],[67,2],[68,2]]], [49,[4012.33,3060.02,0],[[35,2],[69,2]]], [50,[4004.88,4007.3,0],[[36,2],[70,2],[71,2]]], [51,[3783.48,3815.56,0],[[37,2],[72,2]]], [52,[4294.16,3820.17,0],[[38,2],[73,2]]], [53,[4895.81,3568.28,0],[[39,2],[74,2]]], +[54,[4859.7,3320.64,9.53674e-007],[[39,2],[75,2]]], [55,[1363.83,2113.42,0],[[40,2],[76,2]]], [56,[1195.14,2559.32,0],[[42,2],[56,2]]], [57,[1666.84,2584.53,0],[[43,2],[77,2]]], [58,[1288.68,3663.36,9.53674e-007],[[44,2],[58,2],[63,2],[78,2]]], [59,[1139.39,3766.51,3.8147e-006],[[44,2],[79,2]]], +[60,[929.422,3059.2,1.90735e-006],[[45,2],[80,2]]], [61,[1551.63,3315.66,0],[[46,2],[81,2]]], [62,[1573.93,3651.36,1.90735e-006],[[46,2],[82,2]]], [63,[1389.13,3586.21,0],[[46,2],[58,2],[83,2]]], [64,[2150.48,2946.49,0],[[47,2],[84,2]]], [65,[1877.48,2848.54,0],[[47,2],[85,2]]], +[66,[4522.28,2535.35,9.53674e-007],[[48,2],[86,2]]], [67,[4590.96,2774.5,0],[[48,2],[87,2]]], [68,[4316.59,2658.18,0],[[48,2],[88,2]]], [69,[3966.8,3031.1,-4.76837e-007],[[49,2],[89,2]]], [70,[3941.61,4198.31,0],[[50,2],[90,2]]], [71,[3932.8,3991.36,0],[[50,2],[91,2]]], +[72,[3691.95,3826.48,0],[[51,2],[92,2],[93,2]]], [73,[4374.98,3893.35,-4.76837e-007],[[52,2],[94,2]]], [74,[4978.79,3683.7,0],[[53,2],[95,2]]], [75,[4936.24,3182.4,0],[[54,2],[96,2]]], [76,[1281.4,2010.94,0],[[55,2],[97,2]]], [77,[1768.13,2633.97,0],[[57,2],[98,2]]], +[78,[1353.27,3721.84,0],[[58,2],[99,2]]], [79,[1123.83,3772.44,0],[[79,2],[100,2]]], [80,[797.729,3007.01,0],[[60,2],[101,2]]], [81,[1646.32,3223.07,0],[[61,2],[102,2]]], [82,[1540.4,3757.16,0],[[62,2],[103,2]]], [83,[1429.69,3648.52,-3.8147e-006],[[63,2],[104,2]]], +[84,[2289.21,2942.25,9.53674e-007],[[64,2],[105,2]]], [85,[1797.03,2751.54,0],[[65,2],[98,2],[106,2]]], [86,[4570.36,2400.7,0],[[66,2],[107,2]]], [87,[4703.03,2828.91,0],[[67,2],[108,2]]], [88,[4179.21,2576.19,4.76837e-007],[[68,2],[109,2]]], [89,[3941.38,3005.04,0],[[69,2],[110,2],[111,2],[89,2]]], +[90,[3923,4372.15,0],[[70,2],[112,2],[113,2],[114,2]]], [91,[3859.94,3982.53,0],[[71,2],[115,2]]], [92,[3695.9,4002.67,0],[[72,2],[116,2]]], [93,[3634.34,3819.2,-1.58946e-007],[[72,2],[117,2],[118,2]]], [94,[4432.81,3944.72,-4.76837e-007],[[73,2],[119,2]]], [95,[5078.38,3807.79,0],[[74,2],[120,2]]], +[96,[5009.77,3048.67,4.76837e-007],[[75,2],[121,2]]], [97,[1189.63,1890.2,0],[[76,2],[122,2]]], [98,[1790.72,2645.99,-6.35783e-007],[[77,2],[85,2],[123,2],[106,2]]], [99,[1405.23,3772.97,0],[[78,2],[124,2],[103,2]]], [100,[1068.77,3790.88,-6.35783e-007],[[79,2],[125,2],[126,2]]], [101,[671.875,2936,-4.76837e-007],[[80,2],[127,2]]], +[102,[1756.01,3126.78,-1.90735e-006],[[81,2],[128,2]]], [103,[1519.25,3771.2,0],[[82,2],[99,2],[129,2],[124,2]]], [104,[1454.66,3700.35,-3.8147e-006],[[83,2],[130,2]]], [105,[2424.88,2858.61,4.76837e-007],[[84,2],[131,2]]], [106,[1762.53,2676.4,-6.35783e-007],[[98,2],[85,2],[106,2]]], [107,[4619.02,2254.29,3.17891e-007],[[86,2],[132,2],[133,2]]], +[108,[4763.06,2829.86,0],[[87,2],[134,2],[108,2],[135,2]]], [109,[4017.97,2503.49,0],[[88,2],[136,2]]], [110,[3915.04,2972.36,0],[[89,2]]], [111,[3948.74,3018.07,0],[[89,2],[137,2],[111,2]]], [112,[3832.63,4487.08,-1.58946e-007],[[90,2],[138,2],[139,2]]], [113,[4107.28,4351.49,0],[[90,2],[140,2]]], +[114,[3983.1,4322.93,0],[[90,2]]], [115,[3799.43,3969.1,4.76837e-007],[[91,2]]], [116,[3700.05,4138.65,0],[[92,2],[141,2]]], [117,[3478.74,3807.69,2.38419e-007],[[93,2],[117,2],[142,2],[143,2]]], [118,[3606.83,3667.27,9.53674e-007],[[93,2],[144,2]]], [119,[4462.9,3935.75,-1.58946e-007],[[94,2],[145,2],[119,2],[146,2]]], +[120,[5116.59,3848,0],[[95,2]]], [121,[5048.21,2955.17,0],[[96,2],[147,2],[148,2]]], [122,[1100.85,1786.9,-4.76837e-007],[[97,2],[149,2]]], [123,[1900.94,2611.95,0],[[98,2],[150,2]]], [124,[1456.05,3775.7,0],[[99,2],[103,2]]], [125,[969.199,3834.8,6.35783e-007],[[100,2],[151,2],[152,2]]], +[126,[1025.51,3769.81,0],[[100,2]]], [127,[565.836,2828.89,0],[[101,2],[153,2]]], [128,[1850.12,3050.13,0],[[102,2],[154,2]]], [129,[1562.31,3869.14,4.76837e-007],[[103,2],[155,2]]], [130,[1465.69,3721.13,0],[[104,2]]], [131,[2551.61,2769.02,-9.53674e-007],[[105,2],[156,2]]], +[132,[4681.57,2094.41,0],[[107,2],[157,2]]], [133,[4513.75,2197.18,0],[[107,2],[158,2]]], [134,[4749.02,2832.53,0],[[108,2]]], [135,[4879.08,2842.21,9.53674e-007],[[108,2],[148,2]]], [136,[3978.29,2497.27,-3.17891e-007],[[109,2],[159,2],[160,2]]], [137,[3951.85,3019.28,0],[[111,2]]], +[138,[3790.72,4636.46,-1.58946e-007],[[112,2],[161,2],[162,2]]], [139,[3787.08,4406.36,0],[[112,2]]], [140,[4236.31,4358.34,0],[[113,2],[163,2]]], [141,[3711.85,4208.82,0],[[116,2]]], [142,[3388.59,3911.08,0],[[117,2],[164,2]]], [143,[3411.77,3731.42,9.53674e-007],[[117,2],[165,2]]], +[144,[3638.8,3507.3,0],[[118,2],[166,2]]], [145,[4456.02,3942.9,0],[[119,2]]], [146,[4476.67,3921.44,-4.76837e-007],[[119,2]]], [147,[5117.75,2810.49,0],[[121,2]]], [148,[4957.75,2881.13,0],[[121,2],[135,2]]], [149,[1020.68,1667.01,0],[[122,2],[167,2]]], +[150,[2008.34,2504.93,0],[[123,2],[168,2]]], [151,[803.838,3953.89,1.90735e-006],[[125,2],[169,2]]], [152,[819.448,3839.69,0],[[125,2],[170,2]]], [153,[455.162,2756.95,0],[[127,2],[171,2]]], [154,[1986.16,2980.55,0],[[128,2],[172,2]]], [155,[1618.98,3989.82,-4.76837e-007],[[129,2],[173,2]]], +[156,[2592.53,2769.64,3.17891e-007],[[131,2],[174,2],[175,2]]], [157,[4733.6,1950.2,0],[[132,2],[176,2]]], [158,[4432.64,2138.18,0],[[133,2],[177,2]]], [159,[3841.77,2411.95,0],[[136,2],[178,2]]], [160,[3862.01,2666.6,-4.76837e-007],[[136,2],[179,2]]], [161,[3801.03,4654.89,0],[[138,2],[161,2],[180,2]]], +[162,[3721.69,4812.2,0],[[138,2],[181,2]]], [163,[4273.96,4398.46,0],[[140,2],[182,2]]], [164,[3318.97,3935.61,0],[[142,2],[183,2]]], [165,[3296.86,3690.27,0],[[143,2],[184,2]]], [166,[3690.28,3374.34,0],[[144,2],[185,2]]], [167,[945.082,1559.33,0],[[149,2],[186,2]]], +[168,[2094.91,2451.81,4.76837e-007],[[150,2],[187,2]]], [169,[716.089,4078.58,0],[[151,2],[188,2]]], [170,[649.233,3852.05,-1.90735e-006],[[152,2],[189,2]]], [171,[322.352,2675.63,0],[[153,2],[190,2]]], [172,[2064.14,2994.82,0],[[154,2]]], [173,[1679.74,4121.65,0],[[155,2],[191,2]]], +[174,[2631.35,2795.49,3.17891e-007],[[156,2],[192,2],[193,2]]], [175,[2577.89,2761.65,3.17891e-007],[[156,2]]], [176,[4774.46,1838.31,2.86102e-007],[[157,2],[194,2],[176,2],[195,2],[196,2]]], [177,[4367.47,2097.67,0],[[158,2],[197,2]]], [178,[3680.75,2379.86,0],[[159,2],[198,2]]], [179,[3775.42,2775.82,0],[[160,2],[199,2]]], +[180,[3801.78,4802.08,0],[[161,2],[180,2],[200,2]]], [181,[3680.14,4925.16,0],[[162,2],[201,2]]], [182,[4431.77,4329.53,-4.76837e-007],[[163,2],[202,2]]], [183,[3307.58,3949.61,0],[[164,2],[203,2],[204,2]]], [184,[3247.15,3669.99,-1.58946e-007],[[165,2],[205,2],[206,2]]], [185,[3655.27,3253.87,1.19209e-007],[[166,2],[207,2],[208,2],[185,2],[209,2]]], +[186,[877.183,1446.61,0],[[167,2],[210,2]]], [187,[2198.29,2350.72,0],[[168,2],[211,2]]], [188,[650.683,4179.62,0],[[169,2],[212,2]]], [189,[487.158,3872.47,0],[[170,2],[213,2]]], [190,[227.042,2573.94,1.90735e-006],[[171,2],[214,2]]], [191,[1749.32,4258.13,0],[[173,2],[215,2]]], +[192,[2669.33,2856.96,-4.76837e-007],[[174,2],[216,2]]], [193,[2801.28,2720.96,0],[[174,2],[217,2]]], [194,[4827.07,1686.47,0],[[176,2],[218,2]]], [195,[4952.99,1859.35,0],[[176,2],[219,2]]], [196,[4664.32,1756.71,-4.76837e-007],[[176,2],[220,2]]], [197,[4282.15,2053.45,0],[[177,2],[221,2]]], +[198,[3548.49,2360.09,0],[[178,2],[222,2]]], [199,[3775.39,2854.53,0],[[179,2],[223,2]]], [200,[3934.79,4891.46,0],[[180,2],[224,2]]], [201,[3631.69,5057.95,0],[[181,2],[225,2]]], [202,[4538.38,4235.34,0],[[182,2],[226,2]]], [203,[3349.76,4040.6,-4.76837e-007],[[183,2],[227,2]]], +[204,[3162.5,3916.82,0],[[183,2],[228,2]]], [205,[3304.21,3505.71,0],[[184,2],[229,2]]], [206,[3147.39,3777.64,2.38419e-007],[[184,2],[228,2]]], [207,[3707.52,3090.54,0],[[185,2],[230,2]]], [208,[3649.75,3263.64,-1.58946e-007],[[185,2]]], [209,[3598.53,3307.21,-4.76837e-007],[[185,2],[231,2]]], +[210,[819.375,1316.42,-4.76837e-007],[[186,2],[232,2]]], [211,[2322.14,2216.85,0],[[187,2],[233,2]]], [212,[555.613,4314.33,-9.53674e-007],[[188,2],[234,2],[212,2],[235,2]]], [213,[344.201,3896.03,0],[[189,2],[236,2]]], [214,[134.507,2457.93,0],[[190,2],[237,2]]], [215,[1812.87,4381.02,0],[[191,2],[238,2]]], +[216,[2717.56,2906.71,0],[[192,2],[239,2]]], [217,[2913.13,2660.99,-3.17891e-007],[[193,2],[240,2],[241,2]]], [218,[4877.78,1548.1,0],[[194,2],[242,2]]], [219,[5088.12,1876.37,0],[[195,2],[243,2]]], [220,[4609.79,1721.01,-2.38419e-007],[[196,2],[244,2]]], [221,[4180.69,2046.11,0],[[197,2],[245,2]]], +[222,[3409.43,2315.57,0],[[198,2],[246,2]]], [223,[3778.02,2922.38,4.76837e-007],[[199,2]]], [224,[4062.02,4937.9,0],[[200,2],[247,2]]], [225,[3611.55,5115.49,0],[[201,2]]], [226,[4615.98,4106.06,0],[[202,2],[248,2]]], [227,[3384.9,4130.33,0],[[203,2],[249,2]]], +[228,[3092.4,3886.22,1.90735e-007],[[204,2],[206,2],[228,2],[250,2],[251,2]]], [229,[3272.25,3411.91,-4.76837e-007],[[205,2]]], [230,[3737.17,3024.13,-4.76837e-007],[[207,2]]], [231,[3532.43,3361.49,0],[[209,2],[252,2]]], [232,[823.996,1231.28,0],[[210,2],[253,2]]], [233,[2376.18,2198.43,-1.58946e-007],[[211,2],[254,2],[233,2]]], +[234,[453.785,4464.24,0],[[212,2],[255,2],[256,2]]], [235,[630.218,4401.73,0],[[212,2],[257,2]]], [236,[212.458,3975.75,3.8147e-006],[[213,2],[258,2]]], [237,[23.28,2379.18,0],[[214,2],[259,2]]], [238,[1914.35,4457.58,0],[[215,2],[260,2]]], [239,[2762.21,2953.77,0],[[216,2],[261,2]]], +[240,[2814.95,2543.78,2.38419e-007],[[217,2],[262,2]]], [241,[2956.47,2794.34,-4.76837e-007],[[217,2],[263,2]]], [242,[4935.58,1393,1.58946e-007],[[218,2],[264,2],[265,2],[242,2]]], [243,[5118.13,1938.33,0],[[219,2]]], [244,[4550.41,1683.86,0],[[220,2],[266,2]]], [245,[4107.36,2045.17,0],[[221,2]]], +[246,[3362.24,2289.26,0],[[222,2],[267,2],[268,2]]], [247,[4180.38,4971.65,0],[[224,2],[269,2]]], [248,[4713.38,4017.52,0],[[226,2],[270,2]]], [249,[3413.41,4186.69,0],[[227,2],[271,2]]], [250,[3054.74,4010.49,0],[[228,2],[272,2]]], [251,[3018.77,3850.77,0],[[228,2]]], +[252,[3440.35,3394.18,0],[[231,2],[273,2]]], [253,[828.897,1164.56,-2.38419e-007],[[232,2],[274,2],[275,2],[276,2]]], [254,[2548.75,2290.45,0],[[233,2],[254,2]]], [255,[395.279,4610.08,0],[[234,2],[277,2]]], [256,[363.658,4402.95,0],[[234,2],[278,2]]], [257,[678.948,4465.44,0],[[257,2]]], +[258,[105.146,4094.72,0],[[236,2],[279,2]]], [259,[1.71291,2362.01,0],[[237,2]]], [260,[1984.91,4576.12,-4.76837e-007],[[238,2],[280,2]]], [261,[2773.18,2964.39,4.76837e-007],[[239,2]]], [262,[2724.29,2400.32,0],[[240,2],[281,2]]], [263,[2987.29,2936.89,4.76837e-007],[[241,2],[282,2]]], +[264,[4993.12,1225.84,0],[[242,2],[283,2]]], [265,[4944.54,1402.48,4.76837e-007],[[242,2],[284,2]]], [266,[4492.04,1591.67,0],[[244,2],[285,2]]], [267,[3224.73,2354.89,0],[[246,2],[286,2]]], [268,[3315.9,2168.43,2.38419e-007],[[246,2],[287,2],[268,2],[288,2],[289,2]]], [269,[4271.68,5026.32,0],[[247,2],[290,2],[291,2]]], +[270,[4844.34,4042.46,4.76837e-007],[[248,2],[292,2]]], [271,[3388.88,4294.98,-9.53674e-007],[[249,2],[293,2]]], [272,[2999.25,4114.66,-4.76837e-007],[[250,2],[294,2]]], [273,[3410.02,3389.54,1.58946e-007],[[252,2],[295,2],[273,2],[296,2]]], [274,[749.614,1299,9.53674e-007],[[253,2],[297,2]]], [275,[885.646,1001,0],[[253,2],[298,2]]], +[276,[960.353,1166.38,0],[[253,2],[299,2]]], [277,[308.567,4726.65,-4.76837e-007],[[255,2],[300,2]]], [278,[226.636,4341.96,-9.53674e-007],[[256,2],[301,2]]], [279,[26.3505,4206.54,0],[[258,2],[301,2]]], [280,[2107.6,4614.05,0],[[260,2],[302,2]]], [281,[2662.42,2289.24,-4.76837e-007],[[262,2],[303,2]]], +[282,[3007.86,3073.23,0],[[263,2],[304,2]]], [283,[5019.8,1137.29,-3.17891e-007],[[264,2],[305,2],[306,2]]], [284,[4974.9,1408.99,0],[[265,2]]], [285,[4437.51,1488.76,0],[[266,2],[307,2]]], [286,[3207.11,2373.19,-1.58946e-007],[[267,2],[308,2],[309,2]]], [287,[3313.54,2177.75,0],[[268,2]]], +[288,[3203.59,2218.76,0],[[268,2],[310,2]]], [289,[3278.3,2047.65,0],[[268,2],[311,2]]], [290,[4441.64,5039.92,0],[[269,2],[312,2]]], [291,[4217.69,5115.71,0],[[269,2]]], [292,[4902.74,4077.32,0],[[270,2],[313,2]]], [293,[3416.46,4337.96,-1.58946e-007],[[271,2],[293,2],[314,2]]], +[294,[2911.18,4244.4,0],[[272,2],[315,2]]], [295,[3421.4,3397.24,-2.38419e-007],[[273,2]]], [296,[3319.83,3390.46,4.76837e-007],[[273,2]]], [297,[608.045,1340.79,0],[[274,2],[316,2]]], [298,[923.97,951.589,0],[[275,2],[317,2],[318,2]]], [299,[1075.23,1196.1,0],[[276,2],[319,2]]], +[300,[180.338,4828.96,0],[[277,2],[320,2]]], [301,[82.9276,4256.98,0],[[278,2],[279,2]]], [302,[2243.08,4659.76,-4.76837e-007],[[280,2],[321,2]]], [303,[2599.12,2242.18,-9.53674e-007],[[281,2],[322,2]]], [304,[3029.46,3205.45,0],[[282,2],[323,2]]], [305,[5102.75,908.91,0],[[283,2],[324,2]]], +[306,[4942.74,1070.49,0],[[283,2],[325,2]]], [307,[4377.75,1453.83,0],[[285,2],[326,2]]], [308,[3078.07,2423.44,0],[[286,2],[327,2],[328,2]]], [309,[3283.61,2506.94,9.53674e-007],[[286,2],[329,2]]], [310,[3052.81,2285.15,0],[[288,2],[330,2]]], [311,[3232.12,1957.52,0],[[289,2],[331,2]]], +[312,[4572.33,5049.33,0],[[290,2],[332,2]]], [313,[4973.24,4030.11,0],[[292,2],[313,2]]], [314,[3487.89,4387.14,-4.76837e-007],[[293,2],[333,2]]], [315,[2893.67,4335.98,0],[[294,2],[334,2]]], [316,[437.415,1429.01,0],[[297,2],[335,2]]], [317,[1002.19,877.604,-3.17891e-007],[[298,2],[336,2],[337,2]]], +[318,[1024.59,891.919,0],[[298,2],[338,2]]], [319,[1170.64,1213.28,0],[[299,2],[339,2]]], [320,[70.3901,4907.44,-9.53674e-007],[[300,2],[340,2]]], [321,[2342.75,4761.45,0],[[302,2],[341,2]]], [322,[2575.44,2130.32,0],[[303,2],[342,2]]], [323,[3068.22,3323.56,0],[[304,2],[343,2]]], +[324,[5117.98,863.387,0],[[305,2]]], [325,[4903.25,949.276,0],[[306,2],[344,2]]], [326,[4337.58,1434.08,-3.17891e-007],[[307,2],[345,2],[326,2],[346,2]]], [327,[2925.03,2492.62,0],[[308,2],[327,2]]], [328,[3135.47,2525.79,0],[[308,2],[347,2]]], [329,[3294.7,2523.88,9.53674e-007],[[309,2]]], +[330,[2932.33,2340.24,-4.76837e-007],[[310,2],[348,2]]], [331,[3199.55,1856.39,0],[[311,2],[349,2]]], [332,[4648.11,5026.79,0],[[312,2],[350,2]]], [333,[3544.63,4400.86,4.76837e-007],[[314,2]]], [334,[2871.75,4469.29,0],[[315,2],[351,2]]], [335,[261.171,1492.26,-9.53674e-007],[[316,2],[352,2]]], +[336,[837.428,879.654,9.53674e-007],[[317,2],[353,2]]], [337,[1130.22,747.758,0],[[317,2],[354,2]]], [338,[1131.47,807.807,0],[[318,2],[355,2]]], [339,[1298.45,1258.54,0],[[319,2],[356,2]]], [340,[4.49546,4955.18,0],[[320,2]]], [341,[2416.48,4879.78,4.76837e-007],[[321,2],[357,2]]], +[342,[2576.6,1992.93,0],[[322,2],[358,2]]], [343,[3047.48,3397.8,4.76837e-007],[[323,2]]], [344,[4854.18,827.854,0],[[325,2],[359,2]]], [345,[4341.86,1448.88,0],[[326,2]]], [346,[4298.23,1284.41,0],[[326,2],[360,2]]], [347,[3187.17,2600.21,0],[[328,2]]], +[348,[2858.67,2359.47,-1.58946e-007],[[330,2],[361,2],[348,2],[362,2]]], [349,[3200.34,1758.41,-1.19209e-007],[[331,2],[363,2],[364,2],[349,2],[365,2]]], [350,[4675.03,4933.88,3.17891e-007],[[332,2],[366,2],[367,2]]], [351,[2820.65,4543.73,0],[[334,2],[368,2]]], [352,[125.971,1524.98,-3.8147e-006],[[335,2],[369,2]]], [353,[694.429,865.769,0],[[336,2],[370,2]]], +[354,[1205.39,593.824,0],[[337,2],[371,2]]], [355,[1259.47,699,0],[[338,2],[372,2]]], [356,[1398.89,1323.82,0],[[339,2],[373,2]]], [357,[2411,4981.8,4.76837e-007],[[341,2],[374,2]]], [358,[2655.24,1949.61,0],[[342,2],[375,2]]], [359,[4787.06,713.56,-9.53674e-007],[[344,2],[376,2]]], +[360,[4256.3,1203.23,0],[[346,2],[377,2]]], [361,[2873.88,2357.7,2.38419e-007],[[348,2]]], [362,[2801.06,2310.85,0],[[348,2],[378,2],[362,2]]], [363,[3277.08,1651.09,0],[[349,2],[379,2]]], [364,[3197.34,1766.4,-3.17891e-007],[[349,2]]], [365,[3133.94,1775.38,-1.58946e-007],[[349,2],[380,2],[365,2],[381,2]]], +[366,[4769.11,4958.2,0],[[350,2],[382,2],[383,2]]], [367,[4624.97,4903.22,0],[[350,2]]], [368,[2747.1,4682.34,4.76837e-007],[[351,2],[384,2]]], [369,[12.7642,1608.9,0],[[352,2],[385,2]]], [370,[557.328,823.375,0],[[353,2],[386,2]]], [371,[1324.87,504.064,3.8147e-006],[[354,2],[387,2]]], +[372,[1401.51,606.449,0],[[355,2],[388,2]]], [373,[1510.19,1344.3,0],[[356,2],[389,2]]], [374,[2532.81,5006.55,0],[[357,2],[390,2]]], [375,[2691.91,1857.8,0],[[358,2],[391,2]]], [376,[4718.14,602.327,4.76837e-007],[[359,2],[392,2]]], [377,[4162.88,1164.2,0],[[360,2],[393,2]]], +[378,[2789.5,2284.29,4.76837e-007],[[362,2],[378,2]]], [379,[3322.73,1603.52,1.19209e-007],[[363,2],[379,2],[394,2],[395,2]]], [380,[3152.15,1773.12,-2.38419e-007],[[365,2]]], [381,[2971.57,1839.43,4.76837e-007],[[365,2],[396,2]]], [382,[4879.21,4945.57,0],[[366,2],[397,2]]], [383,[4801.79,4925.77,0],[[366,2],[398,2],[383,2],[399,2]]], +[384,[2718.61,4829.23,0],[[368,2],[400,2]]], [385,[49.9432,1724.33,0],[[369,2],[401,2]]], [386,[419.593,740.667,-1.90735e-006],[[370,2],[402,2]]], [387,[1451.59,381.744,0],[[371,2],[403,2]]], [388,[1514.23,541.839,-9.53674e-007],[[372,2],[404,2]]], [389,[1601.92,1361.12,-4.76837e-007],[[373,2],[405,2]]], +[390,[2576.78,5021.17,0],[[374,2],[390,2],[406,2]]], [391,[2641.47,1783.56,0],[[375,2],[407,2]]], [392,[4624.16,493.981,0],[[376,2],[408,2]]], [393,[4089.3,1149.64,4.76837e-007],[[377,2],[409,2]]], [394,[3286.66,1422.19,-4.76837e-007],[[379,2],[410,2]]], [395,[3311.99,1680.53,-4.76837e-007],[[379,2],[395,2]]], +[396,[2863.51,1854.48,4.76837e-007],[[381,2],[411,2]]], [397,[5002.79,4890.86,0],[[382,2],[412,2]]], [398,[4793.25,4936.05,0],[[383,2]]], [399,[4824.54,4893.65,0],[[383,2]]], [400,[2722.28,4967.48,0],[[384,2],[413,2]]], [401,[153.54,1744.98,3.8147e-006],[[385,2]]], +[402,[281.085,700.051,0],[[386,2],[414,2]]], [403,[1568.57,297.327,0],[[387,2],[415,2]]], [404,[1640.43,494.884,-1.90735e-006],[[388,2],[416,2]]], [405,[1697.16,1375.92,-3.17891e-007],[[389,2],[417,2],[418,2],[405,2]]], [406,[2525.74,5103.26,0],[[390,2],[406,2]]], [407,[2629.73,1771.82,0],[[391,2],[419,2],[420,2]]], +[408,[4506.9,414.317,0],[[392,2],[421,2]]], [409,[3982.41,1077.22,0],[[393,2],[422,2]]], [410,[3359.99,1367.49,-4.76837e-007],[[394,2],[423,2]]], [411,[2798,1867.72,0],[[396,2],[424,2]]], [412,[5086.61,4837.38,0],[[397,2],[425,2]]], [413,[2704.67,5050.62,0],[[400,2],[426,2]]], +[414,[124.685,649.537,-3.8147e-006],[[402,2],[427,2]]], [415,[1588.08,280.461,-4.76837e-007],[[403,2],[428,2],[415,2],[429,2]]], [416,[1699.38,478.74,0],[[404,2],[430,2]]], [417,[1806.52,1489.33,0],[[405,2],[431,2]]], [418,[1693.65,1365.71,0],[[405,2]]], [419,[2612.5,1680.68,0],[[407,2],[432,2]]], +[420,[2517.09,1764.42,0],[[407,2],[433,2]]], [421,[4439.48,301.84,0],[[408,2],[434,2]]], [422,[3895.73,1044.71,-4.76837e-007],[[409,2],[435,2]]], [423,[3490.66,1346.7,0],[[423,2]]], [424,[2743.54,1894.08,-4.76837e-007],[[411,2]]], [425,[5040.72,4739.24,0],[[412,2],[436,2]]], +[426,[2672.95,5049.3,0],[[413,2]]], [427,[36.5113,633.408,0],[[414,2]]], [428,[1707.7,149.86,0],[[415,2],[437,2]]], [429,[1727.04,208.94,0],[[415,2],[438,2]]], [430,[1785.24,454.646,0],[[416,2],[439,2]]], [431,[1962.32,1547.87,-4.76837e-007],[[417,2],[440,2]]], +[432,[2597.52,1602.41,0],[[419,2],[441,2]]], [433,[2383.1,1733.41,0],[[420,2],[442,2]]], [434,[4344.54,190.183,0],[[421,2],[443,2]]], [435,[3815.2,1046.39,1.58946e-007],[[422,2],[444,2],[445,2]]], [436,[5043.52,4727.92,0],[[425,2],[436,2],[446,2]]], [437,[1816.51,27.1892,0],[[428,2],[447,2]]], +[438,[1858.21,155.14,0],[[429,2],[448,2]]], [439,[1837.22,400.709,0],[[430,2],[449,2]]], [440,[2116.78,1624.2,-4.76837e-007],[[431,2],[442,2]]], [441,[2683.48,1596.6,0],[[432,2],[450,2]]], [442,[2237.1,1692.23,9.53674e-007],[[433,2],[440,2]]], [443,[4287.31,53.6839,0],[[434,2],[451,2]]], +[444,[3631.79,983.451,0],[[435,2],[452,2]]], [445,[3845.15,1220.68,0],[[435,2],[453,2]]], [446,[5114.39,4688.42,0],[[436,2]]], [447,[1923.8,30.6034,0],[[437,2],[454,2]]], [448,[1995.67,133.811,0],[[438,2],[455,2],[454,2]]], [449,[1883.42,421.395,-1.27157e-006],[[439,2],[449,2],[456,2]]], +[450,[2735.72,1557.46,2.38419e-007],[[441,2],[457,2]]], [451,[4177.43,22.5607,0],[[443,2],[458,2]]], [452,[3592.63,964.764,3.17891e-007],[[444,2],[459,2],[460,2]]], [453,[3878.07,1374.4,0],[[445,2],[461,2]]], [454,[2029.95,117.599,0],[[447,2],[448,2],[455,2]]], [455,[2059.33,148.042,0],[[448,2],[454,2],[462,2],[463,2]]], +[456,[1971.65,420.057,0],[[449,2],[464,2]]], [457,[2811.4,1485.61,0],[[450,2],[465,2]]], [458,[4092.24,165.215,0],[[451,2],[466,2]]], [459,[3644.88,834.235,0],[[452,2],[467,2]]], [460,[3467.14,1058.9,9.53674e-007],[[452,2],[468,2],[469,2]]], [461,[3930.39,1526.55,0],[[453,2],[470,2]]], +[462,[2249.62,147.578,0],[[455,2],[471,2]]], [463,[2212.46,262.919,-3.8147e-006],[[455,2],[472,2]]], [464,[2051.72,393.686,0],[[456,2],[473,2]]], [465,[2873.62,1415.44,0],[[457,2],[474,2]]], [466,[3957.73,217.265,0],[[458,2],[475,2]]], [467,[3672.72,696.473,0],[[459,2],[476,2]]], +[468,[3415.97,1199.46,4.76837e-007],[[460,2],[468,2]]], [469,[3453.74,1016.22,0],[[504,2],[506,2],[460,2]]], [470,[3883.36,1617.63,0],[[461,2],[477,2]]], [471,[2373.74,219.007,-3.8147e-006],[[462,2],[478,2]]], [472,[2329.17,354.556,0],[[463,2],[479,2]]], [473,[2105.4,375.431,0],[[464,2]]], +[474,[2916.88,1332.58,0],[[465,2],[480,2]]], [475,[3878.51,334.338,0],[[466,2],[481,2]]], [476,[3764.29,569.948,4.76837e-007],[[467,2],[481,2]]], [477,[3916.66,1771.21,0],[[470,2],[482,2]]], [478,[2449.11,212.665,0],[[471,2],[483,2],[484,2],[485,2]]], [479,[2446.52,456.771,6.35783e-007],[[472,2],[486,2],[487,2]]], +[480,[2951.03,1278.66,7.94729e-008],[[474,2],[488,2],[480,2]]], [481,[3814.23,477.833,0],[[475,2],[476,2]]], [482,[3933,1891.59,0],[[477,2],[489,2]]], [483,[2429.2,273.648,0],[[483,2],[486,2]]], [484,[2580.15,139.353,0],[[478,2],[484,2]]], [485,[2474.08,148.769,3.8147e-006],[[478,2]]], +[486,[2430.88,378.886,0],[[479,2],[483,2]]], [487,[2538.29,621.698,0],[[479,2],[490,2]]], [488,[2983.59,1214.31,0],[[480,2],[491,2]]], [489,[3848.13,1987.28,-4.76837e-007],[[482,2],[492,2]]], [490,[2657.54,704.272,0],[[487,2],[493,2]]], [491,[2998.52,1197.12,0],[[488,2]]], +[492,[3714.47,2030.89,0],[[489,2],[494,2]]], [493,[2812.74,760.06,0],[[490,2],[495,2]]], [494,[3702.14,2127.77,0],[[492,2],[496,2]]], [495,[2956.24,778.832,0],[[493,2],[497,2]]], [496,[3761.72,2247.36,4.76837e-007],[[494,2],[498,2]]], [497,[3099.51,838.903,4.76837e-007],[[495,2],[499,2]]], +[498,[3887.16,2275.14,0],[[496,2]]], [499,[3132.21,862.648,0],[[497,2],[499,2],[500,2]]], [500,[3174.59,921.305,0],[[499,2],[501,2],[502,2]]], [501,[3130.28,1027.86,0],[[500,2],[503,2]]], [502,[3238.14,970.955,0],[[500,2],[504,2]]], [503,[3080.66,1076.11,0],[[501,2]]], +[504,[3329.12,977.484,0],[[502,2],[505,2],[504,2],[469,2]]], [505,[3272.85,970.599,0],[[504,2]]], [506,[3449.84,1061.47,9.53674e-007],[[469,2],[507,2]]], [507,[3433.57,1104.64,0],[[506,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridMalden.sqf b/A3-Antistasi/NavGrids/navGridMalden.sqf new file mode 100644 index 0000000000..fa2120711f --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridMalden.sqf @@ -0,0 +1,160 @@ +navGrid = [[0,[6048.4,8600.54,0],[[1,2],[2,2],[3,2],[4,2]]], [1,[6009.55,8634.95,-1.90735e-006],[[0,2],[9,2],[10,2],[11,2],[3,2]]], [2,[6164.9,8667.16,0],[[0,2],[12,2]]], [3,[6020.69,8545.13,0],[[0,2],[1,2],[13,2],[11,2]]], [4,[6122.89,8576.45,0],[[0,2],[14,2]]], [5,[9677.09,3985.21,0],[[6,2],[7,2],[8,2]]], +[6,[9760.34,3980.79,0],[[5,2],[15,2],[6,2]]], [7,[9612.27,4042.24,0],[[5,2],[16,2]]], [8,[9675.51,3829.5,0],[[5,2],[17,2]]], [9,[6041.79,8714.45,0],[[1,2],[18,2]]], [10,[5880.4,8641.92,0],[[1,2],[19,2]]], [11,[5970.73,8554.89,0],[[1,2],[3,2],[20,2]]], +[12,[6296.55,8699.06,0],[[2,2],[21,2]]], [13,[6058.38,8529.51,0],[[3,2]]], [14,[6215.67,8572.29,0],[[4,2],[22,2]]], [15,[9820.36,4062.06,0],[[6,2],[23,2]]], [16,[9561.69,4160.1,0],[[7,2],[24,2]]], [17,[9611.87,3727.92,3.8147e-006],[[8,2],[25,2]]], +[18,[6023.24,8838.86,0],[[9,2],[26,2]]], [19,[5758.99,8606.69,0],[[10,2],[27,2]]], [20,[5886.06,8518.06,0],[[11,2],[28,2]]], [21,[6423.16,8747.42,0],[[12,2],[29,2],[30,2]]], [22,[6320.34,8560.97,1.52588e-005],[[14,2],[31,2]]], [23,[9932.96,4051.22,0],[[15,2],[32,2]]], +[24,[9544.59,4185.67,0],[[16,2]]], [25,[9582.51,3687.43,6.35783e-007],[[17,2],[33,2],[34,2]]], [26,[6016.15,8894.49,0],[[18,2]]], [27,[5660.67,8590.26,0],[[19,2],[35,2]]], [28,[5879.3,8480.65,0],[[20,2]]], [29,[6592.71,8785.72,-7.62939e-006],[[21,2],[36,2]]], +[30,[6390.09,8804.01,0],[[21,2],[37,2]]], [31,[6445.09,8499.45,-1.52588e-005],[[22,2],[38,2]]], [32,[10010.5,4039.99,0],[[23,2],[39,2],[40,2]]], [33,[9453.23,3606.28,0],[[25,2],[41,2]]], [34,[9591.04,3553.47,0],[[25,2],[42,2]]], [35,[5591.15,8651.68,0],[[27,2],[43,2]]], +[36,[6733.41,8814.76,0],[[29,2],[44,2]]], [37,[6359.82,8860.29,0],[[30,2]]], [38,[6556.22,8391.62,0],[[31,2],[45,2]]], [39,[10162.2,4014.72,1.90735e-006],[[32,2],[46,2]]], [40,[10032.1,4161.16,0],[[32,2],[47,2]]], [41,[9361.34,3678.26,0],[[33,2],[48,2]]], +[42,[9516.38,3446.71,3.8147e-006],[[34,2],[49,2]]], [43,[5513.76,8704.82,0],[[35,2],[50,2]]], [44,[6846.23,8820.17,7.62939e-006],[[36,2],[51,2]]], [45,[6616.66,8326.59,0],[[38,2],[52,2]]], [46,[10275.1,4074,0],[[39,2],[53,2]]], [47,[9988.78,4229.04,0],[[40,2],[47,2]]], +[48,[9348.72,3740.58,0],[[41,2]]], [49,[9511.86,3422.57,1.27157e-006],[[42,2],[54,2],[55,2]]], [50,[5436.64,8656.92,0],[[43,2],[56,2]]], [51,[6970.4,8863.28,0],[[44,2],[57,2]]], [52,[6679.83,8212.53,0],[[45,2],[58,2]]], [53,[10330.7,4109.64,3.17891e-007],[[46,2],[59,2],[60,2]]], +[54,[9485.91,3298.62,0],[[49,2],[54,2]]], [55,[9596.58,3409.72,3.8147e-006],[[49,2],[61,2]]], [56,[5407.84,8724.53,0],[[50,2],[62,2]]], [57,[7087.65,8932.13,0],[[51,2],[63,2]]], [58,[6717.54,8105.13,0],[[52,2],[64,2]]], [59,[10454.5,4178.56,0],[[53,2],[65,2]]], +[60,[10443.2,4003.49,0],[[53,2],[66,2]]], [61,[9645.15,3344.17,0],[[55,2],[61,2]]], [62,[5357.13,8700.73,0],[[56,2],[67,2]]], [63,[7125.78,8966.13,0],[[57,2],[68,2],[69,2],[70,2]]], [64,[6784.35,8041.61,0],[[58,2],[71,2],[72,2]]], [65,[10583.8,4277.92,0],[[59,2],[73,2]]], +[66,[10502.4,4020.51,0],[[60,2],[66,2]]], [67,[5295.23,8681.44,0],[[62,2],[74,2]]], [68,[7237.98,8884.8,0],[[63,2],[75,2]]], [69,[7165.84,9002.99,0],[[63,2],[76,2],[77,2]]], [70,[6973.94,9097.61,1.52588e-005],[[63,2],[78,2]]], [71,[6860.56,7901.9,0],[[64,2],[79,2]]], +[72,[6958.08,8015,0],[[64,2],[80,2]]], [73,[10654.9,4363.66,0],[[65,2],[81,2]]], [74,[5241.19,8736.91,0],[[67,2],[82,2]]], [75,[7299.38,8828.56,-2.54313e-006],[[68,2],[83,2],[84,2]]], [76,[7303.36,9051.66,0],[[69,2],[85,2]]], [77,[7141.96,9046.58,0],[[69,2]]], +[78,[6869.1,9185.6,0],[[70,2],[86,2]]], [79,[6941.65,7801.04,0],[[71,2],[87,2]]], [80,[7044.45,8003.3,3.8147e-006],[[72,2],[88,2],[89,2],[90,2]]], [81,[10751.9,4344.83,0],[[73,2],[91,2]]], [82,[5153.58,8680.01,0],[[74,2],[92,2]]], [83,[7281.58,8691.6,0],[[75,2],[93,2]]], +[84,[7454.76,8825.99,0],[[75,2],[94,2]]], [85,[7416.99,9100.09,0],[[76,2],[95,2],[96,2]]], [86,[6749.84,9253.66,0],[[78,2],[97,2]]], [87,[7018.33,7691.82,0],[[79,2],[98,2]]], [88,[7100.74,7994.71,5.08626e-006],[[80,2],[99,2],[100,2]]], [89,[7045.75,7862.42,0],[[80,2],[101,2]]], +[90,[7026.16,8036.79,0],[[80,2],[90,2],[102,2]]], [91,[10855.1,4260.77,0],[[81,2],[103,2]]], [92,[5064.23,8604.88,0],[[82,2],[104,2]]], [93,[7305.64,8580.59,0],[[83,2],[105,2]]], [94,[7501.98,8834.38,0],[[84,2],[106,2],[107,2]]], [95,[7532.6,9181.35,-7.62939e-006],[[85,2],[108,2]]], +[96,[7388.53,9174.47,0],[[85,2]]], [97,[6585.2,9311.8,0],[[86,2],[109,2]]], [98,[7042.9,7682.17,0],[[87,2],[110,2],[111,2]]], [99,[7207.29,7913.14,0],[[88,2],[112,2],[113,2]]], [100,[7200.22,8081.53,0],[[88,2],[114,2]]], [101,[7117.87,7762.05,0],[[89,2],[111,2]]], +[102,[6979.78,8066.92,-1.01725e-005],[[90,2],[102,2],[115,2]]], [103,[10951.3,4187.31,0],[[91,2],[116,2]]], [104,[5027.85,8587.68,0],[[92,2],[117,2],[118,2]]], [105,[7279.42,8453.92,0],[[93,2],[119,2]]], [106,[7602.96,8785.92,3.8147e-006],[[94,2],[120,2]]], [107,[7557.87,9005.76,0],[[94,2],[121,2]]], +[108,[7615.55,9289.37,0],[[95,2],[122,2]]], [109,[6552.95,9316.27,0],[[97,2],[123,2],[124,2]]], [110,[7057.22,7570.43,-1.52588e-005],[[98,2],[125,2]]], [111,[7142.74,7723.4,5.08626e-006],[[98,2],[101,2],[126,2]]], [112,[7220.43,7945.65,0],[[99,2],[113,2],[127,2]]], [113,[7266.42,7894.37,0],[[99,2],[112,2],[128,2],[126,2],[129,2]]], +[114,[7249.02,8115.97,5.08626e-006],[[100,2],[130,2],[128,2],[131,2]]], [115,[6978.4,8133.59,0],[[102,2],[132,2]]], [116,[11066.8,4197.39,0],[[103,2],[133,2]]], [117,[5035.11,8493.02,0],[[104,2],[134,2]]], [118,[4898.82,8646.32,1.01725e-005],[[104,2],[135,2],[136,2]]], [119,[7248.32,8288.5,0],[[105,2],[130,2]]], +[120,[7618.07,8769.68,1.27157e-006],[[106,2],[137,2],[138,2]]], [121,[7601.22,9140.07,0],[[107,2],[139,2]]], [122,[7654.25,9297.16,0],[[108,2],[140,2],[139,2]]], [123,[6611.78,9431.67,0],[[109,2],[141,2]]], [124,[6363.18,9303.53,0],[[109,2],[142,2]]], [125,[7112.69,7465.23,0],[[110,2],[143,2]]], +[126,[7246.98,7772.47,-3.8147e-006],[[111,2],[113,2],[126,2],[144,2]]], [127,[7224.75,7990.75,-1.52588e-005],[[112,2]]], [128,[7269.32,7957.59,0],[[113,2],[114,2],[131,2],[145,2],[129,2]]], [129,[7300.66,7918.92,0],[[113,2],[128,2],[145,2],[129,2],[146,2]]], [130,[7242.34,8169.1,0],[[114,2],[119,2],[147,2],[148,2]]], [131,[7299.12,8004.78,0],[[128,2],[114,2],[145,2],[160,2]]], +[132,[7023.92,8151.42,-1.52588e-005],[[115,2]]], [133,[11183.4,4258.42,3.8147e-006],[[116,2],[149,2]]], [134,[5075.28,8453.46,0],[[117,2]]], [135,[4896.5,8837.19,0],[[118,2],[150,2]]], [136,[4870.14,8499.7,0],[[118,2],[151,2]]], [137,[7765.93,8828.89,0],[[120,2],[152,2]]], +[138,[7605.48,8654.66,0],[[120,2],[153,2]]], [139,[7651.72,9244.76,0],[[121,2],[122,2]]], [140,[7796.4,9312.2,3.8147e-006],[[122,2],[154,2]]], [141,[6631.47,9599.45,0],[[123,2],[155,2]]], [142,[6204.31,9303.28,0],[[124,2],[156,2]]], [143,[7104.2,7402.9,-2.54313e-006],[[125,2],[157,2],[158,2]]], +[144,[7341.75,7794.17,0],[[126,2],[159,2]]], [145,[7300.87,7974.19,0],[[128,2],[129,2],[131,2]]], [146,[7398.27,7875.18,0],[[129,2],[161,2]]], [147,[7285.94,8168.23,5.08626e-006],[[130,2],[147,2],[162,2]]], [148,[7125.57,8139.07,0],[[130,2],[163,2]]], [149,[11229.2,4280.56,-6.35783e-007],[[133,2],[164,2],[165,2]]], +[150,[4986.71,8907.35,0],[[135,2],[166,2]]], [151,[4844.69,8350.82,0],[[136,2],[167,2]]], [152,[7907.22,8888.38,0],[[137,2],[168,2],[169,2]]], [153,[7551.56,8600.21,0],[[138,2]]], [154,[7869.83,9327.32,0],[[140,2],[170,2],[171,2],[172,2]]], [155,[6691.61,9721.54,0],[[141,2],[173,2]]], +[156,[6174.19,9300.32,0],[[142,2],[174,2],[175,2]]], [157,[7070.12,7245.88,0],[[143,2],[176,2],[157,2],[177,2]]], [158,[6963.83,7410.7,0],[[143,2],[178,2]]], [159,[7416.82,7762.37,0],[[144,2],[179,2],[161,2]]], [160,[7404.57,7983.65,0],[[131,2],[180,2],[181,2]]], [161,[7475.23,7815.3,0],[[146,2],[159,2],[179,2]]], +[162,[7397.9,8131.66,0],[[147,2],[162,2]]], [163,[7052.89,8166.45,0],[[148,2]]], [164,[11371.1,4371.56,1.90735e-006],[[149,2],[182,2]]], [165,[11356.7,4246.42,0],[[149,2],[183,2]]], [166,[5044.28,8954.96,1.01725e-005],[[150,2],[184,2],[185,2]]], [167,[4856.35,8187.17,0],[[151,2],[186,2]]], +[168,[7903.23,9040.78,0],[[152,2],[171,2]]], [169,[8044.32,8905.14,0],[[152,2],[187,2]]], [170,[8031.27,9311.51,0],[[154,2],[188,2]]], [171,[7905.6,9215.79,0],[[154,2],[168,2]]], [172,[7843.23,9462.41,0],[[154,2],[189,2]]], [173,[6783.38,9861.36,7.62939e-006],[[155,2],[190,2]]], +[174,[6089.02,9306.09,0],[[156,2],[191,2],[192,2]]], [175,[6116.26,9231.59,0],[[156,2],[193,2]]], [176,[7040.5,7146.66,0],[[157,2],[194,2],[177,2],[195,2],[196,2]]], [177,[7103.29,7217.92,0],[[157,2],[176,2],[194,2],[197,2]]], [178,[6897.53,7341.61,7.62939e-006],[[158,2],[198,2]]], [179,[7488.25,7788.33,0],[[159,2],[161,2],[199,2],[180,2]]], +[180,[7552.13,7870.43,0],[[160,2],[179,2],[200,2]]], [181,[7438.24,8068.96,0],[[160,2]]], [182,[11490.1,4387.53,0],[[164,2],[201,2]]], [183,[11381.3,4171.1,3.8147e-006],[[165,2],[202,2]]], [184,[5141.58,9073.49,0],[[166,2],[203,2]]], [185,[5143.58,8934.96,3.05176e-005],[[166,2],[204,2]]], +[186,[4863.14,8041.21,0],[[167,2],[205,2]]], [187,[8158.37,8847.42,0],[[169,2],[206,2]]], [188,[8140.15,9436.24,1.90735e-006],[[170,2],[207,2]]], [189,[7843.62,9620.04,1.90735e-006],[[172,2],[208,2]]], [190,[6800.73,9904.65,2.54313e-006],[[173,2],[209,2],[210,2]]], [191,[5942.2,9270.95,0],[[174,2],[211,2]]], +[192,[6035.19,9401.44,0],[[174,2],[212,2]]], [193,[6044.92,9172.33,0],[[175,2]]], [194,[7087.29,7166.13,-7.62939e-006],[[176,2],[177,2],[213,2]]], [195,[7023.69,6974.56,2.54313e-006],[[176,2],[214,2],[215,2]]], [196,[6891.68,7195.88,0],[[176,2],[198,2]]], [197,[7176.02,7187.98,0],[[177,2]]], +[198,[6832.02,7279.8,0],[[178,2],[196,2],[216,2]]], [199,[7590.14,7829.55,0],[[179,2],[217,2]]], [200,[7580.58,7844.37,0],[[180,2]]], [201,[11605.7,4378.79,0],[[182,2],[218,2]]], [202,[11340.7,4133.74,0],[[183,2]]], [203,[5206.98,9192.27,0],[[184,2],[219,2]]], +[204,[5178.63,8973.17,3.05176e-005],[[185,2]]], [205,[4977.72,7932.45,0],[[186,2],[220,2]]], [206,[8223.28,8762.01,4.76837e-007],[[187,2],[206,2]]], [207,[8161.78,9558.18,0],[[188,2],[221,2]]], [208,[7833.86,9763.28,0],[[189,2],[222,2]]], [209,[6713.09,10046.4,0],[[190,2],[223,2]]], +[210,[6907.72,9970.38,0],[[190,2],[224,2]]], [211,[5839.71,9241.63,0],[[191,2],[225,2]]], [212,[5986.77,9568.92,0],[[192,2],[226,2]]], [213,[7169.66,7128.21,-1.90735e-006],[[194,2],[215,2],[213,2]]], [214,[7029.99,6779.87,0],[[195,2],[227,2]]], [215,[7114.31,6953.89,0],[[195,2],[213,2],[228,2]]], +[216,[6689.23,7386.5,7.62939e-006],[[198,2],[229,2]]], [217,[7667.36,7789.63,0],[[199,2],[230,2]]], [218,[11683.2,4444.78,9.53674e-007],[[201,2],[231,2]]], [219,[5344.8,9269.59,0],[[203,2],[232,2]]], [220,[5005.6,7803.5,0],[[205,2],[233,2]]], [221,[8157.99,9651.45,0],[[207,2],[234,2],[235,2]]], +[222,[7809.66,9894.72,-3.8147e-006],[[208,2],[236,2]]], [223,[6586.85,10154.6,0],[[209,2],[237,2]]], [224,[7015.43,9951.95,0],[[210,2],[238,2]]], [225,[5760.27,9358.41,-1.52588e-005],[[211,2],[239,2]]], [226,[6054.49,9678.79,0],[[212,2],[240,2]]], [227,[7041.19,6655.54,0],[[214,2],[241,2]]], +[228,[7241.99,6906.8,0],[[215,2],[242,2]]], [229,[6593.43,7445,1.52588e-005],[[216,2],[243,2]]], [230,[7739.08,7766.2,0],[[217,2],[244,2]]], [231,[11634.6,4448.99,0],[[218,2]]], [232,[5389.85,9301.11,0],[[219,2],[245,2],[246,2]]], [233,[5007.86,7645.33,3.05176e-005],[[220,2],[247,2]]], +[234,[8158.57,9750.12,0],[[221,2],[248,2],[249,2]]], [235,[8051.28,9644.87,0],[[221,2]]], [236,[7786.02,10027,0],[[222,2],[250,2]]], [237,[6476.73,10252.1,0],[[223,2],[251,2]]], [238,[7058.74,9952.79,0],[[224,2]]], [239,[5607.96,9359.22,0],[[225,2],[246,2]]], +[240,[6114.53,9829.36,0],[[226,2],[252,2]]], [241,[7052.05,6548.33,-7.62939e-006],[[227,2],[253,2]]], [242,[7385.66,6853.91,0],[[228,2],[254,2]]], [243,[6567.34,7457.74,5.08626e-006],[[229,2],[255,2],[256,2]]], [244,[7772.01,7734.01,5.08626e-006],[[230,2],[257,2],[258,2]]], [245,[5368.02,9414.73,0],[[232,2],[259,2]]], +[246,[5525.22,9338.61,0],[[232,2],[239,2]]], [247,[4986.61,7491.44,0],[[233,2],[260,2]]], [248,[8128.6,9749.19,0],[[234,2]]], [249,[8161.83,9842.7,-6.35783e-007],[[234,2],[261,2],[262,2]]], [250,[7734.34,10166.8,0],[[236,2],[263,2]]], [251,[6439.01,10303.8,-2.54313e-006],[[237,2],[264,2],[265,2]]], +[252,[6070.58,9970.18,-1.52588e-005],[[240,2],[266,2]]], [253,[7065.16,6435.57,2.54313e-006],[[241,2],[267,2],[268,2]]], [254,[7510.91,6793.51,-3.8147e-006],[[242,2],[269,2]]], [255,[6388.32,7496.86,0],[[243,2],[270,2]]], [256,[6562.42,7572.11,1.52588e-005],[[243,2],[271,2]]], [257,[7911.58,7798.33,0],[[244,2],[272,2]]], +[258,[7795.26,7635.67,0],[[244,2],[273,2]]], [259,[5308.46,9517.9,-3.05176e-005],[[245,2],[274,2]]], [260,[4977.47,7444.59,1.01725e-005],[[247,2],[275,2],[276,2]]], [261,[8110.55,9846.08,0],[[249,2],[277,2],[278,2]]], [262,[8270.44,9984.11,-1.90735e-006],[[249,2],[279,2]]], [263,[7653.19,10317.2,0],[[250,2],[280,2]]], +[264,[6546.27,10382.5,0],[[251,2],[281,2]]], [265,[6293.34,10246.5,0],[[251,2],[282,2]]], [266,[6006.38,10059.5,5.08626e-006],[[252,2],[283,2],[284,2]]], [267,[7082.38,6297.92,-7.62939e-006],[[253,2],[285,2]]], [268,[7199.95,6443.47,0],[[253,2],[286,2]]], [269,[7588.99,6703.99,0],[[254,2],[287,2]]], +[270,[6288.6,7511.46,-1.52588e-005],[[255,2],[288,2]]], [271,[6545.24,7704.41,1.01725e-005],[[256,2],[289,2],[290,2]]], [272,[8018.26,7925.96,0],[[257,2],[291,2]]], [273,[7754.62,7577.81,0],[[258,2],[292,2]]], [274,[5208.39,9625,0],[[259,2],[293,2]]], [275,[5058.52,7388.69,0],[[260,2]]], +[276,[4881.81,7313,-1.01725e-005],[[260,2],[294,2],[295,2]]], [277,[8026.3,9844.31,0],[[261,2]]], [278,[8120.28,9996.11,0],[[261,2],[296,2],[279,2]]], [279,[8272.39,10068.5,0],[[262,2],[278,2],[297,2],[296,2]]], [280,[7583.26,10396.1,0],[[263,2],[298,2],[299,2]]], [281,[6623.75,10436.2,7.62939e-006],[[264,2],[300,2]]], +[282,[6153.79,10204.9,0],[[265,2],[284,2]]], [283,[5956.79,9941.41,0],[[266,2],[301,2]]], [284,[6088.46,10172.7,0],[[266,2],[282,2]]], [285,[7102.59,6223.96,2.54313e-006],[[267,2],[302,2],[303,2]]], [286,[7305.18,6391.26,0],[[268,2],[304,2]]], [287,[7637.56,6595.9,0],[[269,2],[305,2]]], +[288,[6200.8,7439.59,0],[[270,2],[306,2]]], [289,[6521.81,7763.94,0],[[271,2]]], [290,[6717.71,7717.93,0],[[271,2],[290,2]]], [291,[8181.74,7895.36,0],[[272,2],[307,2]]], [292,[7748.68,7547.49,0],[[273,2]]], [293,[5099.07,9717.91,0],[[274,2],[308,2]]], +[294,[4799.37,7421.26,-3.05176e-005],[[276,2],[309,2]]], [295,[4818.21,7145.3,3.05176e-005],[[276,2],[310,2]]], [296,[8210.31,10067,0],[[278,2],[279,2]]], [297,[8271.46,10148.1,0],[[279,2],[311,2],[312,2]]], [298,[7499.11,10521.3,-4.76837e-007],[[280,2],[313,2],[314,2],[315,2]]], [299,[7445.15,10311.5,0],[[280,2],[316,2]]], +[300,[6644.35,10552.8,0],[[281,2],[317,2]]], [301,[5811.11,9908.83,1.52588e-005],[[283,2],[318,2]]], [302,[7124.32,6077.13,0],[[285,2],[319,2],[320,2],[321,2],[303,2]]], [303,[7181.97,6092.96,0],[[285,2],[302,2],[321,2]]], [304,[7330.37,6268.02,0],[[286,2],[322,2]]], [305,[7679.42,6538.95,0],[[287,2],[323,2],[324,2]]], +[306,[6093.19,7378.94,0],[[288,2],[325,2]]], [307,[8276.59,7781.01,0],[[291,2],[326,2]]], [308,[5057.21,9811.09,-3.05176e-005],[[293,2],[327,2]]], [309,[4655.31,7503.48,0],[[294,2],[328,2]]], [310,[4783.91,7014.39,0],[[295,2],[329,2]]], [311,[8239.79,10255.3,6.35783e-007],[[297,2],[330,2],[331,2]]], +[312,[8134.78,10145.7,0],[[297,2],[312,2]]], [313,[7662.61,10505.4,0],[[298,2],[332,2]]], [314,[7378.89,10478.7,0],[[298,2],[333,2]]], [315,[7459.07,10644.7,0],[[298,2],[334,2]]], [316,[7283.1,10311.2,3.8147e-006],[[299,2],[335,2]]], [317,[6658.16,10589,1.90735e-006],[[300,2],[336,2],[317,2],[337,2]]], +[318,[5667.96,9871.86,-1.52588e-005],[[301,2],[338,2]]], [319,[7122.7,5978.26,0],[[302,2],[339,2],[340,2],[319,2]]], [320,[7083.01,6048.02,-2.54313e-006],[[302,2],[341,2],[340,2]]], [321,[7184.66,6077.26,0],[[302,2],[303,2],[342,2]]], [322,[7480.94,6280.36,0],[[304,2],[343,2]]], [323,[7838.9,6592.28,0],[[305,2],[344,2]]], +[324,[7641.52,6434.33,6.35783e-007],[[305,2],[345,2],[346,2]]], [325,[6002.73,7307.68,0],[[306,2],[347,2]]], [326,[8319.79,7891.32,0],[[307,2],[348,2]]], [327,[5134.86,9844.35,-3.05176e-005],[[308,2],[349,2]]], [328,[4572.78,7579.67,-2.03451e-005],[[309,2],[350,2],[351,2]]], [329,[4774.34,6875.37,0],[[310,2],[352,2]]], +[330,[8180.31,10403,0],[[311,2],[353,2]]], [331,[8167.12,10225.4,0],[[311,2]]], [332,[7803.21,10503.6,0],[[313,2],[354,2]]], [333,[7290.5,10478.3,0],[[314,2],[355,2]]], [334,[7341.57,10714.2,0],[[315,2],[356,2],[357,2],[355,2]]], [335,[7203.76,10235.5,0],[[316,2],[358,2]]], +[336,[6702.08,10728.6,0],[[317,2],[359,2]]], [337,[6598.38,10695.9,0],[[317,2],[360,2]]], [338,[5521.77,9846.37,0],[[318,2],[361,2]]], [339,[7105.67,5820.88,-7.62939e-006],[[319,2],[362,2]]], [340,[7112.4,5987.98,0],[[319,2],[320,2]]], [341,[7031.67,6072.87,-2.54313e-006],[[320,2],[363,2],[364,2]]], +[342,[7354.63,6062.83,0],[[321,2],[365,2]]], [343,[7522.32,6265.31,0],[[322,2],[366,2],[343,2]]], [344,[7956.78,6602.86,0],[[323,2],[367,2]]], [345,[7643.5,6360.88,0],[[324,2],[366,2],[368,2]]], [346,[7605.85,6469.26,1.90735e-006],[[324,2]]], [347,[6021.52,7204.15,-1.52588e-005],[[325,2],[369,2]]], +[348,[8406.64,7934.5,0],[[326,2],[370,2]]], [349,[5275.98,9830.21,0],[[327,2],[361,2]]], [350,[4410.25,7665.02,3.05176e-005],[[328,2],[371,2]]], [351,[4581.8,7662.26,3.05176e-005],[[328,2],[372,2]]], [352,[4732.06,6737.37,0],[[329,2],[373,2]]], [353,[8164.58,10536.4,-1.90735e-006],[[330,2]]], +[354,[7816.36,10389.6,0],[[332,2]]], [355,[7256.79,10574.9,0],[[333,2],[334,2]]], [356,[7196.84,10803.4,0],[[334,2],[374,2]]], [357,[7459.63,10758.3,-1.90735e-006],[[334,2],[375,2]]], [358,[7145.6,10133.1,7.62939e-006],[[335,2],[376,2]]], [359,[6702.42,10844.9,0],[[336,2],[377,2]]], +[360,[6484.01,10616.6,7.62939e-006],[[337,2],[378,2]]], [361,[5412.05,9830,0],[[338,2],[349,2]]], [362,[7156.74,5681.27,-3.8147e-006],[[339,2],[379,2]]], [363,[6883.21,6075.71,0],[[341,2],[380,2]]], [364,[7023.31,6100.12,0],[[341,2]]], [365,[7433.67,6013.44,0],[[342,2],[381,2]]], +[366,[7564.07,6225.36,4.76837e-007],[[343,2],[345,2],[382,2],[383,2]]], [367,[8063.6,6581.19,0],[[344,2],[367,2]]], [368,[7566.27,6360.6,-1.90735e-006],[[345,2],[384,2]]], [369,[5954.95,7172.5,1.52588e-005],[[347,2],[385,2]]], [370,[8470.32,7830.27,0],[[348,2],[386,2]]], [371,[4337.72,7752.57,0],[[350,2],[387,2]]], +[372,[4597.3,7753.53,0],[[351,2],[388,2]]], [373,[4713.55,6652.5,1.01725e-005],[[352,2],[389,2],[390,2]]], [374,[7058.32,10834.2,3.8147e-006],[[356,2],[391,2]]], [375,[7539.45,10744.5,0],[[357,2]]], [376,[7032.63,10107.6,0],[[358,2],[392,2]]], [377,[6700.47,10883.6,-2.54313e-006],[[359,2],[393,2],[394,2]]], +[378,[6367.94,10667.5,0],[[360,2],[395,2]]], [379,[7189.65,5549.66,0],[[362,2],[396,2]]], [380,[6746.42,6067.71,5.08626e-006],[[363,2],[397,2],[398,2]]], [381,[7512.53,5940.57,4.76837e-007],[[365,2],[382,2],[399,2],[400,2]]], [382,[7517.54,6099.82,0],[[366,2],[381,2],[382,2]]], [383,[7676.36,6219.79,0],[[366,2],[401,2]]], +[384,[7541.2,6357.02,0],[[368,2]]], [385,[5899.82,7102.26,0],[[369,2],[402,2]]], [386,[8513.96,7709.97,0],[[370,2],[386,2]]], [387,[4226.54,7875.12,0],[[371,2],[403,2]]], [388,[4569.51,7871.99,-3.05176e-005],[[372,2],[404,2]]], [389,[4842.91,6599.13,0],[[373,2],[405,2]]], +[390,[4630.9,6544.5,3.05176e-005],[[373,2],[406,2]]], [391,[6924.8,10857.1,0],[[374,2],[393,2]]], [392,[7023.59,10041.4,-7.62939e-006],[[376,2],[392,2]]], [393,[6834.94,10873,0],[[377,2],[391,2]]], [394,[6532.91,10934,0],[[377,2],[407,2]]], [395,[6252.05,10704.9,0],[[378,2],[408,2]]], +[396,[7215.1,5434,-1.27157e-006],[[379,2],[409,2],[410,2]]], [397,[6628.35,6042.53,0],[[380,2],[411,2]]], [398,[6726.74,5951.76,0],[[380,2],[412,2]]], [399,[7644.57,5874.14,-9.53674e-007],[[381,2]]], [400,[7506.68,5784.93,1.90735e-006],[[381,2],[413,2]]], [401,[7704.18,6213.66,0],[[383,2]]], +[402,[5815.87,7039.56,0],[[385,2],[414,2]]], [403,[4153.46,7980.09,0],[[387,2],[415,2]]], [404,[4524.76,8010.63,0],[[388,2],[416,2]]], [405,[4971.63,6613.16,0],[[389,2],[417,2]]], [406,[4505.49,6483.9,-3.05176e-005],[[390,2],[418,2]]], [407,[6390.45,10977.7,0],[[394,2],[419,2]]], +[408,[6171.18,10758.9,0],[[395,2],[420,2]]], [409,[7259.93,5253.92,0],[[396,2],[421,2]]], [410,[7130.34,5403.95,0],[[396,2],[422,2]]], [411,[6574.44,6033.69,-1.52588e-005],[[397,2]]], [412,[6760.48,5877.98,0],[[398,2],[423,2]]], [413,[7499.73,5730.8,0],[[400,2]]], +[414,[5854.75,6934.63,0],[[402,2],[424,2]]], [415,[4126.67,8065.47,0],[[403,2],[425,2]]], [416,[4531.19,8109.21,0],[[404,2],[426,2]]], [417,[5092.23,6649.57,-3.05176e-005],[[405,2],[427,2]]], [418,[4369.77,6462.78,0],[[406,2],[428,2]]], [419,[6219.87,11037.8,0],[[407,2],[429,2]]], +[420,[6131.36,10764.3,1.90735e-006],[[408,2],[420,2],[430,2],[431,2]]], [421,[7318.17,5138.28,0],[[409,2],[432,2]]], [422,[7068.76,5469.5,3.8147e-006],[[410,2],[433,2]]], [423,[6741.31,5800.97,0],[[412,2],[434,2]]], [424,[5753.96,6936.63,3.05176e-005],[[414,2],[435,2]]], [425,[4121.65,8135.72,-1.52588e-005],[[415,2],[436,2]]], +[426,[4537.34,8219.19,0],[[416,2],[437,2]]], [427,[5240.48,6696.12,0],[[417,2],[438,2]]], [428,[4220.03,6482,-3.05176e-005],[[418,2],[439,2]]], [429,[6061.42,11101.4,0],[[419,2],[440,2]]], [430,[6072.63,10733.6,0],[[420,2],[441,2],[431,2]]], [431,[6065.38,10781.1,0],[[420,2],[430,2],[442,2],[441,2]]], +[432,[7419.16,5015.75,0],[[421,2],[443,2]]], [433,[6935.9,5484.67,3.8147e-006],[[422,2],[444,2]]], [434,[6689,5752.34,0],[[423,2],[445,2]]], [435,[5633.29,7001,0],[[424,2],[446,2]]], [436,[4054.48,8213.73,0],[[425,2],[447,2]]], [437,[4447.54,8289.1,0],[[426,2],[448,2]]], +[438,[5306.81,6778.1,0],[[427,2],[449,2],[450,2]]], [439,[4198.46,6485.79,-2.03451e-005],[[428,2],[451,2],[452,2]]], [440,[5942.29,11136.8,0],[[429,2],[453,2]]], [441,[6041.93,10761,7.62939e-006],[[430,2],[431,2],[454,2]]], [442,[6063.21,10758.8,-3.8147e-006],[[431,2]]], [443,[7506.86,4927.04,0],[[432,2],[455,2]]], +[444,[6818.44,5447.1,-7.62939e-006],[[433,2],[456,2]]], [445,[6615.21,5643.73,0],[[434,2],[457,2]]], [446,[5543.85,7018.84,0],[[435,2],[458,2]]], [447,[4045.14,8222.37,0],[[436,2],[447,2],[459,2]]], [448,[4476.89,8354.59,0],[[437,2]]], [449,[5265.2,6882.99,0],[[438,2],[460,2]]], +[450,[5389.33,6922.78,0],[[438,2],[458,2]]], [451,[4074.33,6381.65,-3.05176e-005],[[439,2],[461,2]]], [452,[4157,6594.11,0],[[439,2],[462,2]]], [453,[5792.8,11140,0],[[440,2],[463,2],[464,2]]], [454,[5896.23,10750.7,0],[[441,2],[465,2]]], [455,[7618.65,4811.34,0],[[443,2],[466,2],[467,2]]], +[456,[6788.88,5382.46,0],[[444,2]]], [457,[6527.16,5574.39,0],[[445,2],[468,2]]], [458,[5437.24,6972.85,0],[[446,2],[450,2]]], [459,[3946.68,8240.93,1.52588e-005],[[447,2],[469,2]]], [460,[5245.77,7006.34,0],[[449,2],[470,2]]], [461,[3983.95,6325.7,0],[[451,2],[471,2]]], +[462,[4197.24,6724.35,0],[[452,2],[472,2]]], [463,[5594.44,11184.4,0],[[453,2],[473,2]]], [464,[5815.72,10992.3,0],[[453,2],[474,2]]], [465,[5805.95,10750.1,0],[[454,2],[475,2]]], [466,[7678.19,4644.1,0],[[455,2],[476,2]]], [467,[7744.87,4852.51,0],[[455,2],[477,2]]], +[468,[6459.51,5525.15,0],[[457,2],[478,2]]], [469,[3858.63,8226.52,0],[[459,2],[479,2]]], [470,[5296.29,7132.59,3.05176e-005],[[460,2],[480,2]]], [471,[3850.21,6403.58,0],[[461,2],[481,2]]], [472,[4222.03,6855.95,3.05176e-005],[[462,2],[482,2]]], [473,[5537.16,11194.2,7.62939e-006],[[463,2]]], +[474,[5747.07,10862.7,0],[[464,2],[483,2]]], [475,[5703.91,10789.6,0],[[465,2],[483,2]]], [476,[7721.53,4526.33,0],[[466,2],[484,2],[485,2]]], [477,[7817.33,4885.2,6.35783e-007],[[467,2],[486,2],[487,2]]], [478,[6414.87,5428.35,0],[[468,2],[488,2]]], [479,[3783.36,8276.7,0],[[469,2],[489,2]]], +[480,[5362.05,7254.76,0],[[470,2],[490,2]]], [481,[3722.88,6516.13,0],[[471,2],[491,2]]], [482,[4269.04,6850.36,0],[[472,2]]], [483,[5694.58,10800.1,3.8147e-006],[[474,2],[475,2],[483,2],[492,2]]], [484,[7787.04,4360.2,0],[[476,2],[493,2],[494,2]]], [485,[7839.79,4576.53,0],[[476,2],[495,2]]], +[486,[7940.26,4952.64,0],[[477,2],[496,2]]], [487,[7893.03,4717.14,0],[[477,2],[495,2]]], [488,[6360.47,5349.86,1.52588e-005],[[478,2],[488,2]]], [489,[3763.61,8363.62,0],[[479,2],[497,2]]], [490,[5439.14,7378.89,0],[[480,2],[498,2]]], [491,[3621.96,6603.3,3.05176e-005],[[481,2],[499,2]]], +[492,[5609.26,10698,0],[[483,2],[500,2]]], [493,[7716.12,4260.46,3.8147e-006],[[484,2]]], [494,[7840.29,4251.83,1.27157e-006],[[484,2],[501,2],[502,2]]], [495,[7917.62,4554.06,0],[[485,2],[487,2],[503,2]]], [496,[8033.4,5036.66,0],[[486,2],[504,2]]], [497,[3689.48,8410.07,0],[[489,2],[505,2]]], +[498,[5481.91,7509.06,-3.05176e-005],[[490,2],[506,2]]], [499,[3605.95,6508.33,0],[[491,2],[507,2]]], [500,[5537.25,10642.3,7.62939e-006],[[492,2],[508,2]]], [501,[7914.73,4101.02,1.27157e-006],[[494,2],[509,2],[510,2]]], [502,[7932.5,4296.34,-3.8147e-006],[[494,2],[503,2]]], [503,[8020.37,4432.3,-3.8147e-006],[[495,2],[502,2]]], +[504,[8129.82,5099.98,0],[[496,2],[511,2]]], [505,[3593.23,8507.54,-1.52588e-005],[[497,2],[512,2]]], [506,[5539.88,7618.6,0],[[498,2],[513,2]]], [507,[3590.96,6401.35,0],[[499,2],[514,2]]], [508,[5477.92,10596.1,0],[[500,2],[515,2]]], [509,[8069.58,3981.63,3.8147e-006],[[501,2],[516,2]]], +[510,[7798.86,4049.97,-2.54313e-006],[[501,2],[517,2],[518,2]]], [511,[8280.35,5146.34,1.90735e-006],[[504,2],[519,2]]], [512,[3584.67,8511.26,-1.01725e-005],[[505,2],[520,2],[521,2],[522,2]]], [513,[5530.18,7701.48,0],[[506,2],[523,2]]], [514,[3483.3,6282.83,0],[[507,2],[524,2]]], [515,[5395.15,10560.6,1.52588e-005],[[508,2],[525,2]]], +[516,[8168.16,3903.9,0],[[509,2],[526,2]]], [517,[7741.49,4039.21,-1.27157e-006],[[510,2],[527,2],[528,2]]], [518,[7828.28,3918.61,0],[[510,2],[529,2],[530,2],[531,2]]], [519,[8335.29,5218.26,1.90735e-006],[[511,2],[532,2]]], [520,[3610.92,8577.71,-1.52588e-005],[[512,2],[533,2]]], [521,[3516.28,8448.23,5.08626e-006],[[512,2],[522,2],[521,2],[534,2]]], +[522,[3519.71,8460.87,0],[[521,2],[546,2],[522,2],[512,2]]], [523,[5530.43,7767.53,0],[[513,2],[535,2]]], [524,[3322.93,6261.39,-1.52588e-005],[[514,2],[536,2]]], [525,[5304.43,10517.7,0],[[515,2],[537,2]]], [526,[8215.25,3763.29,0],[[516,2],[538,2]]], [527,[7599.1,3969.03,1.90735e-006],[[517,2],[539,2]]], +[528,[7739.91,4078.22,0],[[517,2]]], [529,[7709.88,3877.09,0],[[518,2],[540,2]]], [530,[7805.66,3767.16,0],[[518,2],[541,2],[540,2]]], [531,[7925.88,3925.13,0],[[518,2],[542,2],[543,2]]], [532,[8358.84,5363.16,0],[[519,2],[544,2]]], [533,[3628.34,8628.69,0],[[520,2],[545,2]]], +[534,[3470.68,8342.08,0],[[521,2],[547,2]]], [535,[5565.64,7811.8,0],[[523,2],[548,2]]], [536,[3159.2,6326.22,0],[[524,2],[549,2],[550,2],[536,2]]], [537,[5219.3,10526.5,0],[[525,2],[551,2]]], [538,[8242.53,3616.15,0],[[526,2],[552,2],[553,2]]], [539,[7522.29,3869.9,0],[[527,2],[554,2],[540,2]]], +[540,[7666.72,3762.54,0],[[529,2],[530,2],[539,2],[555,2],[541,2]]], [541,[7759.4,3701.32,0],[[530,2],[540,2],[556,2]]], [542,[8052.75,3921.81,0],[[531,2],[557,2]]], [543,[8051.65,3818.33,0],[[531,2],[558,2]]], [544,[8352.9,5522.7,-1.90735e-006],[[532,2],[559,2]]], [545,[3643.35,8653.24,0],[[533,2],[560,2],[561,2]]], +[546,[3536.28,8475.52,-7.62939e-006],[[522,2]]], [547,[3386.68,8249.21,7.62939e-006],[[534,2],[562,2]]], [548,[5557.64,7840.25,0],[[535,2]]], [549,[3096,6338.8,0],[[536,2],[563,2],[564,2]]], [550,[3172.33,6336.64,0],[[536,2],[563,2]]], [551,[5122.99,10561.9,0],[[537,2],[565,2]]], +[552,[8372.88,3627.73,-4.76837e-007],[[538,2],[566,2],[552,2],[567,2]]], [553,[8239.78,3580.17,0],[[538,2],[568,2],[569,2]]], [554,[7437.21,3786.77,0],[[539,2],[570,2],[571,2]]], [555,[7668.85,3720.97,0],[[540,2]]], [556,[7775.21,3676.54,-6.35783e-007],[[541,2],[572,2],[573,2]]], [557,[8074.81,3896.97,0],[[542,2]]], +[558,[8134.15,3735.83,3.8147e-006],[[543,2],[569,2]]], [559,[8313.66,5653.18,0],[[544,2],[574,2]]], [560,[3526.77,8712.34,-7.62939e-006],[[545,2],[575,2]]], [561,[3711.95,8713.21,0],[[545,2],[576,2]]], [562,[3304.84,8161.65,7.62939e-006],[[547,2],[577,2]]], [563,[3121.38,6391,5.08626e-006],[[549,2],[550,2],[578,2]]], +[564,[3036.27,6227.55,1.52588e-005],[[549,2],[579,2]]], [565,[5047.75,10515.1,7.62939e-006],[[551,2],[580,2]]], [566,[8439.52,3699.03,0],[[552,2],[581,2]]], [567,[8387.4,3543.76,-1.27157e-006],[[552,2],[582,2],[583,2]]], [568,[8281.24,3407.39,1.27157e-006],[[553,2],[582,2],[584,2]]], [569,[8175.39,3616.91,0],[[553,2],[558,2],[585,2]]], +[570,[7367.54,3907.91,1.90735e-006],[[554,2],[586,2]]], [571,[7394.73,3734.81,0],[[554,2],[587,2],[588,2],[571,2]]], [572,[7765.79,3645.03,-1.27157e-006],[[556,2],[589,2],[590,2]]], [573,[7853.07,3627.96,0],[[556,2]]], [574,[8245.34,5765.41,0],[[559,2],[591,2]]], [575,[3382.05,8728.71,0],[[560,2],[592,2]]], +[576,[3787.27,8774.43,-1.52588e-005],[[561,2],[593,2]]], [577,[3221.92,8084.98,7.62939e-006],[[562,2],[594,2]]], [578,[3155.36,6531.18,0],[[563,2],[595,2]]], [579,[3001.07,6092.32,0],[[564,2],[596,2]]], [580,[4997.34,10418.2,0],[[565,2],[597,2]]], [581,[8425.35,3779.94,0],[[566,2],[598,2],[599,2]]], +[582,[8370.57,3407.4,0],[[567,2],[568,2],[600,2]]], [583,[8454.64,3550.18,0],[[567,2],[601,2]]], [584,[8261.09,3292.05,1.27157e-006],[[568,2],[602,2],[603,2]]], [585,[8089.49,3671.4,0],[[569,2],[604,2]]], [586,[7346.93,3951.86,1.43051e-006],[[570,2],[605,2],[606,2],[607,2]]], [587,[7231.28,3604.58,0],[[571,2],[608,2]]], +[588,[7408.4,3733.27,0],[[571,2],[609,2]]], [589,[7694.9,3497.79,0],[[572,2],[610,2]]], [590,[7707.57,3680.22,-1.90735e-006],[[572,2]]], [591,[8231.55,5888.67,0],[[574,2],[611,2]]], [592,[3331.51,8618.38,0],[[575,2],[612,2]]], [593,[3852.37,8833.33,0],[[576,2],[613,2]]], +[594,[3129.97,8025.46,0],[[577,2],[614,2]]], [595,[3145.51,6633.61,1.52588e-005],[[578,2],[615,2]]], [596,[3017.28,5971.61,0],[[579,2],[616,2],[617,2]]], [597,[5003.04,10343.7,0],[[580,2],[618,2]]], [598,[8317.19,3840.3,0],[[581,2],[619,2]]], [599,[8449.35,3933.09,0],[[581,2],[599,2]]], +[600,[8413.01,3370.03,0],[[582,2]]], [601,[8461.44,3563,0],[[583,2]]], [602,[8385.48,3259.18,-1.90735e-006],[[584,2],[620,2]]], [603,[8181.94,3169.93,0],[[584,2],[621,2]]], [604,[8071.01,3708.53,3.8147e-006],[[585,2]]], [605,[7291.11,4042.89,0],[[586,2]]], +[606,[7198.29,3895.6,0],[[586,2],[622,2],[623,2]]], [607,[7408.37,3993.56,-6.35783e-007],[[586,2],[607,2],[624,2]]], [608,[7101.88,3540.33,0],[[587,2],[625,2]]], [609,[7482.8,3668.13,9.53674e-007],[[588,2],[626,2]]], [610,[7719.32,3335.71,0],[[589,2],[627,2]]], [611,[8262.74,6012.14,0],[[591,2],[628,2]]], +[612,[3331.35,8571.73,2.29277],[[592,2],[612,2],[629,2]]], [613,[3898.54,8917.17,0],[[593,2],[630,2]]], [614,[3103.33,7942.77,0],[[594,2],[631,2]]], [615,[3198.9,6727.68,0],[[595,2],[632,2]]], [616,[3059.34,5847.11,5.08626e-006],[[596,2],[633,2],[634,2]]], [617,[3009.45,5913.12,0],[[596,2]]], +[618,[4956.6,10247.2,0],[[597,2],[635,2]]], [619,[8246.76,3922.01,0],[[598,2],[636,2]]], [620,[8436.74,3267.95,0],[[602,2],[637,2]]], [621,[8163.19,3128.96,0],[[603,2],[638,2],[639,2]]], [622,[7008.14,3824.52,-3.8147e-006],[[606,2],[640,2]]], [623,[7170.57,3952.06,0],[[606,2]]], +[624,[7494.15,4001.99,0],[[607,2],[624,2],[641,2]]], [625,[7063.35,3534.31,2.54313e-006],[[608,2],[642,2],[643,2]]], [626,[7461.36,3622.32,0],[[609,2],[626,2]]], [627,[7801.85,3238.84,0],[[610,2],[644,2]]], [628,[8277.61,6041.61,0],[[611,2]]], [629,[3303.12,8451.01,0],[[612,2],[645,2]]], +[630,[3976.75,8991.55,0],[[613,2],[646,2]]], [631,[3029.91,7860.08,-3.8147e-006],[[614,2],[647,2]]], [632,[3138.52,6803.94,0],[[615,2],[648,2]]], [633,[2922.22,5834.49,-1.52588e-005],[[616,2],[649,2]]], [634,[3099.54,5690.44,0],[[616,2],[650,2]]], [635,[4909.09,10158,-7.62939e-006],[[618,2],[651,2]]], +[636,[8128.92,4022.2,0],[[619,2],[652,2]]], [637,[8520.42,3216.97,0],[[620,2],[653,2]]], [638,[8102.25,3084.72,0],[[621,2],[638,2],[654,2],[655,2]]], [639,[8267.08,3108.1,0],[[621,2],[656,2]]], [640,[6981.95,3823.01,0],[[622,2],[643,2],[657,2]]], [641,[7552.4,4028.28,0],[[624,2]]], +[642,[6874.03,3500.94,0],[[625,2],[658,2]]], [643,[7015.31,3682.21,0],[[625,2],[640,2]]], [644,[7828.14,3130.34,0],[[627,2],[654,2]]], [645,[3197.82,8418.99,0],[[629,2],[659,2]]], [646,[4068.76,9047.02,3.05176e-005],[[630,2],[660,2]]], [647,[2989.37,7750.29,0],[[631,2],[661,2]]], +[648,[3060.38,6848.31,-1.52588e-005],[[632,2]]], [649,[2788.96,5848.13,0],[[633,2],[662,2]]], [650,[3179.22,5574.85,-1.01725e-005],[[634,2],[663,2],[664,2]]], [651,[4833.21,10121,-7.62939e-006],[[635,2],[665,2]]], [652,[8091.04,4001.81,0],[[636,2]]], [653,[8533.9,3213.42,0],[[637,2]]], +[654,[7930.09,3047.7,0],[[638,2],[644,2]]], [655,[8032.38,3210.2,0],[[638,2],[666,2]]], [656,[8308.2,3104.94,0],[[639,2],[667,2],[656,2]]], [657,[6971.95,3901.51,0],[[640,2]]], [658,[6803.95,3503.7,0],[[642,2],[668,2],[669,2]]], [659,[3038.29,8409.69,0],[[645,2],[670,2]]], +[660,[4115.63,9110,0],[[646,2],[671,2]]], [661,[2934.48,7684.74,0],[[647,2],[672,2]]], [662,[2695.82,5847.73,0],[[649,2]]], [663,[3189.36,5430.07,0],[[650,2],[673,2]]], [664,[3084.4,5539.18,0],[[650,2],[674,2]]], [665,[4812.57,10044.5,0],[[651,2],[675,2]]], +[666,[7962.68,3285.29,0],[[655,2]]], [667,[8276.41,3015.32,0],[[656,2],[676,2]]], [668,[6603.95,3536.71,0],[[658,2],[677,2]]], [669,[6811.96,3402.89,-7.62939e-006],[[658,2],[678,2]]], [670,[3045.35,8458.68,0],[[659,2]]], [671,[4139.49,9207.82,0],[[660,2],[679,2]]], +[672,[2884.91,7615.26,0],[[661,2],[680,2]]], [673,[3242.11,5319.91,0],[[663,2],[681,2]]], [674,[2955.15,5581.91,0],[[664,2],[682,2]]], [675,[4797.95,9938.3,0],[[665,2],[683,2]]], [676,[8292.2,2956.18,0],[[667,2],[684,2]]], [677,[6442.59,3534.4,0],[[668,2],[685,2]]], +[678,[6798.54,3276.28,0],[[669,2],[686,2]]], [679,[4172.59,9286.28,7.62939e-006],[[671,2],[687,2]]], [680,[2844.15,7550.87,0],[[672,2],[688,2]]], [681,[3348.95,5205.81,1.52588e-005],[[673,2],[689,2]]], [682,[2815.13,5607.53,0],[[674,2],[690,2]]], [683,[4753.88,9844.14,0],[[675,2],[691,2]]], +[684,[8276.66,2883.51,0],[[676,2],[692,2]]], [685,[6389.39,3536.54,-2.54313e-006],[[677,2],[693,2],[694,2]]], [686,[6709.68,3173.37,0],[[678,2],[695,2]]], [687,[4252.99,9325.84,0],[[679,2],[696,2]]], [688,[2832.57,7536.27,0],[[680,2]]], [689,[3491.19,5084.48,0],[[681,2],[697,2]]], +[690,[2699.85,5590.64,-1.52588e-005],[[682,2],[698,2]]], [691,[4709.17,9764.39,0],[[683,2],[699,2]]], [692,[8265.64,2872.7,0],[[684,2]]], [693,[6225.46,3535.87,0],[[685,2],[700,2]]], [694,[6383.08,3623.6,-7.62939e-006],[[685,2],[701,2]]], [695,[6636.92,3074.63,0],[[686,2],[702,2]]], +[696,[4320.5,9380.87,0],[[687,2],[703,2]]], [697,[3611.71,4984.83,0],[[689,2],[704,2]]], [698,[2672.96,5469.93,-1.52588e-005],[[690,2],[705,2]]], [699,[4661.98,9663.46,0],[[691,2],[706,2]]], [700,[6165.68,3534.73,0],[[693,2],[707,2],[708,2]]], [701,[6404.7,3733.8,0],[[694,2],[709,2]]], +[702,[6598.02,2937.09,1.27157e-006],[[695,2],[710,2],[711,2]]], [703,[4386.28,9411.83,1.52588e-005],[[696,2],[712,2]]], [704,[3714.9,4898.17,0],[[697,2],[713,2]]], [705,[2611.13,5356.26,0],[[698,2],[714,2]]], [706,[4602.11,9614.55,0],[[699,2],[715,2]]], [707,[6063.6,3517.79,0],[[700,2],[716,2],[717,2]]], +[708,[6092.48,3623.24,0],[[700,2],[718,2]]], [709,[6415.4,3761.91,0],[[701,2],[709,2],[719,2]]], [710,[6688.57,2857.97,0],[[702,2],[720,2]]], [711,[6591.24,2745.8,0],[[702,2],[721,2]]], [712,[4435.4,9481.8,0],[[703,2],[715,2]]], [713,[3734.74,4887.7,1.90735e-006],[[704,2],[722,2],[713,2],[723,2]]], +[714,[2526.89,5234.83,0],[[705,2],[724,2]]], [715,[4535.47,9560.16,0],[[706,2],[712,2]]], [716,[5916.08,3519.91,-7.62939e-007],[[707,2],[725,2],[726,2],[727,2],[728,2]]], [717,[6047.38,3356.63,0],[[707,2],[729,2]]], [718,[5971.65,3646.38,3.8147e-006],[[708,2],[730,2]]], [719,[6544.67,3784.55,0],[[709,2],[719,2]]], +[720,[6798.78,2758.62,-9.53674e-007],[[710,2],[731,2]]], [721,[6560.25,2601.11,0],[[711,2],[732,2]]], [722,[3854.72,4756.49,0],[[713,2],[733,2]]], [723,[3800.56,4922.15,0],[[713,2]]], [724,[2458.39,5147.92,0],[[714,2],[734,2]]], [725,[5961.53,3445.3,0],[[716,2]]], +[726,[5808.72,3532.86,0],[[716,2],[735,2],[727,2],[736,2]]], [727,[5798.55,3474.91,-3.8147e-006],[[716,2],[726,2],[737,2]]], [728,[5912.06,3597.02,0],[[716,2],[730,2]]], [729,[6080.31,3261.56,0],[[717,2],[738,2]]], [730,[5958.51,3647.56,1.27157e-006],[[718,2],[728,2],[739,2]]], [731,[6834.79,2735.44,0],[[720,2]]], +[732,[6514.94,2560.21,0],[[721,2],[740,2]]], [733,[3935.97,4626.56,7.62939e-006],[[722,2],[741,2]]], [734,[2325.3,5063.54,0],[[724,2],[742,2]]], [735,[5852.1,3648.88,0],[[726,2],[735,2]]], [736,[5663.34,3524.3,0],[[726,2],[743,2],[744,2],[745,2]]], [737,[5789.03,3427.02,1.15057],[[727,2],[737,2],[746,2]]], +[738,[6079.01,3183.39,0],[[729,2],[747,2],[748,2]]], [739,[5942.07,3737.14,1.27157e-006],[[730,2],[749,2],[750,2]]], [740,[6368.96,2563.32,0],[[732,2],[751,2]]], [741,[3963.99,4541.64,0],[[733,2],[752,2],[741,2],[753,2]]], [742,[2204.02,4993.86,0],[[734,2],[754,2]]], [743,[5499.24,3517.64,-7.62939e-006],[[736,2],[755,2]]], +[744,[5702.67,3611.95,2.54313e-006],[[736,2],[756,2],[757,2]]], [745,[5687.88,3399.69,0],[[736,2]]], [746,[5786.29,3316.14,0],[[737,2],[746,2],[758,2],[759,2]]], [747,[6199.18,3172.66,0],[[738,2]]], [748,[6055.62,3085.18,-1.27157e-006],[[738,2],[748,2],[760,2]]], [749,[5842.45,3854.58,0],[[739,2],[761,2],[757,2]]], +[750,[5868.47,3675.06,0],[[739,2]]], [751,[6273.05,2667.14,0],[[740,2],[762,2]]], [752,[4072.45,4415.37,0],[[741,2],[763,2]]], [753,[3900.48,4427.59,0],[[741,2],[764,2]]], [754,[2154.35,4852.86,0],[[742,2],[765,2]]], [755,[5344.49,3560.65,0],[[743,2],[766,2]]], +[756,[5782.97,3606.57,-3.8147e-006],[[744,2]]], [757,[5720.04,3682.21,-1.27157e-006],[[744,2],[749,2],[767,2]]], [758,[5773.34,3246.93,0],[[746,2],[768,2],[769,2]]], [759,[5732.84,3333.45,-3.8147e-006],[[746,2]]], [760,[6154.29,2965.11,0],[[748,2],[770,2]]], [761,[5731.47,3958.35,0],[[749,2],[771,2]]], +[762,[6277.21,2802.62,0],[[751,2],[770,2]]], [763,[4214.7,4305.87,0],[[752,2],[772,2]]], [764,[3845.28,4308.45,-3.8147e-006],[[753,2],[773,2]]], [765,[2116.25,4748.53,0],[[754,2],[774,2]]], [766,[5259.86,3602.8,-1.90735e-006],[[755,2],[775,2],[776,2],[777,2]]], [767,[5825.5,3668.18,0],[[757,2],[767,2]]], +[768,[5664.52,3105.25,0],[[758,2],[778,2]]], [769,[5860.29,3173.83,-1.27157e-006],[[758,2],[779,2],[780,2]]], [770,[6267.08,2902.81,0],[[760,2],[762,2]]], [771,[5643.91,4007.64,0],[[761,2],[781,2],[782,2]]], [772,[4329.35,4240.72,0],[[763,2],[783,2]]], [773,[3816.84,4147.3,-3.8147e-006],[[764,2],[784,2]]], +[774,[2054.65,4682.13,0],[[765,2],[785,2]]], [775,[5133.29,3448.29,0],[[766,2],[786,2]]], [776,[5121.47,3726.13,0],[[766,2],[787,2]]], [777,[5348.74,3708.76,-7.62939e-006],[[766,2],[788,2]]], [778,[5648.88,3004.84,0],[[768,2],[789,2]]], [779,[5943.13,3258.97,0],[[769,2]]], +[780,[5765.43,3041.63,0],[[769,2],[789,2]]], [781,[5572.74,4121.57,0],[[771,2],[790,2]]], [782,[5552.48,3915.36,0],[[771,2],[788,2]]], [783,[4377.47,4199.03,-9.53674e-007],[[772,2],[791,2],[792,2],[793,2]]], [784,[3789.08,4024.94,1.27157e-006],[[773,2],[794,2],[795,2]]], [785,[1996.61,4661.47,0],[[774,2],[796,2]]], +[786,[5051.54,3355.9,0],[[775,2],[797,2]]], [787,[4998.65,3806.26,3.8147e-006],[[776,2],[798,2]]], [788,[5454.75,3771.27,0],[[777,2],[782,2]]], [789,[5659.6,2924.18,1.27157e-006],[[778,2],[780,2],[799,2]]], [790,[5548.71,4229.37,2.54313e-006],[[781,2],[790,2],[800,2]]], [791,[4441.58,4292.25,0],[[783,2],[801,2]]], +[792,[4552.1,4065.25,0],[[783,2],[802,2]]], [793,[4308.49,4069.17,0],[[783,2],[803,2]]], [794,[3701.9,3861.84,-3.8147e-006],[[784,2],[804,2]]], [795,[3635.02,4012.32,7.62939e-006],[[784,2],[805,2]]], [796,[1926.11,4650.79,0],[[785,2],[806,2]]], [797,[4993.17,3245.25,0],[[786,2],[807,2]]], +[798,[4922.77,3852.48,0],[[787,2],[808,2],[809,2]]], [799,[5580.91,2806.48,0],[[789,2],[810,2]]], [800,[5421.63,4319.21,7.62939e-006],[[790,2],[811,2]]], [801,[4472.23,4282.29,0],[[791,2]]], [802,[4653.98,4009.32,0],[[792,2],[808,2],[812,2]]], [803,[4242.44,3989.52,0],[[793,2],[813,2],[814,2]]], +[804,[3673.9,3824.48,0],[[794,2],[815,2],[804,2],[816,2]]], [805,[3512.03,4004.9,-7.62939e-006],[[795,2],[817,2]]], [806,[1877.33,4585.99,0],[[796,2],[818,2]]], [807,[5001,3138.82,0],[[797,2],[819,2]]], [808,[4764.7,3942.37,0],[[798,2],[802,2]]], [809,[4978.62,3928.59,0],[[798,2]]], +[810,[5491.85,2796.25,1.27157e-006],[[799,2],[820,2],[821,2]]], [811,[5295.34,4382.35,0],[[800,2],[822,2]]], [812,[4750.45,4132.63,0],[[802,2],[823,2]]], [813,[4149.83,3852.27,0],[[803,2],[824,2]]], [814,[4356.9,3913.11,0],[[803,2],[825,2]]], [815,[3627.01,3651.1,1.27157e-006],[[804,2],[826,2],[827,2]]], +[816,[3644.22,3840.1,0],[[804,2]]], [817,[3386.12,3938.66,0],[[805,2],[828,2]]], [818,[1791.69,4657.91,0],[[806,2],[829,2]]], [819,[5056.58,3020.39,3.8147e-006],[[807,2],[830,2]]], [820,[5453.47,2772.1,0],[[810,2],[831,2],[832,2]]], [821,[5417.25,2863.51,0],[[810,2],[833,2]]], +[822,[5231.25,4480.28,0],[[811,2],[834,2]]], [823,[4837.5,4283.9,0],[[812,2],[835,2]]], [824,[4034.45,3754.38,-1.90735e-006],[[813,2],[836,2]]], [825,[4443.28,3751.74,0],[[814,2],[837,2]]], [826,[3625.27,3521.6,0],[[815,2],[838,2],[839,2]]], [827,[3760.46,3628.55,-3.8147e-006],[[815,2],[840,2]]], +[828,[3246.85,3886.19,-7.62939e-006],[[817,2],[841,2]]], [829,[1744.87,4631.56,0],[[818,2],[842,2]]], [830,[5100.12,2927.37,0],[[819,2],[843,2]]], [831,[5494.61,2707.6,0],[[820,2],[844,2],[845,2]]], [832,[5399.95,2800.33,0],[[820,2],[846,2],[847,2],[833,2]]], [833,[5360.89,2875.12,0],[[821,2],[832,2],[847,2],[848,2]]], +[834,[5155.07,4565.01,0],[[822,2],[849,2],[850,2]]], [835,[4910.61,4368.53,-2.54313e-006],[[823,2],[851,2],[849,2]]], [836,[3984.15,3614.91,0],[[824,2],[852,2]]], [837,[4555.38,3649.31,7.62939e-006],[[825,2],[853,2]]], [838,[3467.93,3510.54,3.8147e-006],[[826,2],[854,2]]], [839,[3694.59,3374.48,-6.35783e-007],[[826,2],[855,2],[856,2]]], +[840,[3771.3,3617.61,0],[[827,2],[852,2],[857,2]]], [841,[3106.34,3834.3,-1.52588e-005],[[828,2],[858,2]]], [842,[1699.65,4654.71,0],[[829,2],[859,2]]], [843,[5215.79,2863.11,0],[[830,2],[847,2]]], [844,[5606.91,2598.65,0],[[831,2],[860,2]]], [845,[5463.23,2672.47,-1.27157e-006],[[831,2],[861,2],[862,2]]], +[846,[5354.74,2749.65,0],[[832,2],[863,2],[862,2],[864,2]]], [847,[5350.15,2824.2,0],[[832,2],[833,2],[843,2]]], [848,[5300.94,2976.08,0],[[833,2],[865,2]]], [849,[5047.7,4493.28,0],[[834,2],[835,2],[866,2]]], [850,[5175.26,4646.59,0],[[834,2],[867,2]]], [851,[5024.28,4284.8,0],[[835,2],[868,2]]], +[852,[3955.19,3538.34,6.35783e-007],[[836,2],[840,2],[869,2]]], [853,[4662.12,3591.71,7.62939e-006],[[837,2],[870,2]]], [854,[3430.6,3527.36,0],[[838,2]]], [855,[3720.01,3274.05,4.76837e-007],[[839,2],[871,2],[872,2],[873,2]]], [856,[3792.32,3390.82,0],[[839,2],[874,2],[869,2]]], [857,[3758.96,3559.34,3.8147e-006],[[840,2]]], +[858,[2981.17,3788.19,0],[[841,2],[875,2]]], [859,[1642.5,4642.43,0],[[842,2],[876,2]]], [860,[5701.15,2529.66,0],[[844,2],[877,2]]], [861,[5510.89,2613.13,0],[[845,2],[878,2]]], [862,[5396.34,2709.96,0],[[845,2],[846,2]]], [863,[5250.76,2618,0],[[846,2],[879,2]]], +[864,[5258.71,2786.94,-3.8147e-006],[[846,2],[880,2]]], [865,[5220.14,3063.26,0],[[848,2],[881,2]]], [866,[5012.21,4599.59,0],[[849,2],[882,2]]], [867,[5275.67,4698.04,0],[[850,2]]], [868,[5100.95,4197.68,0],[[851,2]]], [869,[3857.31,3420.39,-1.90735e-006],[[852,2],[856,2],[883,2]]], +[870,[4802.6,3528.01,0],[[853,2],[884,2]]], [871,[3801.62,3266.66,0],[[855,2],[871,2],[885,2],[872,2]]], [872,[3764.54,3193.47,4.76837e-007],[[855,2],[871,2],[886,2],[887,2],[885,2]]], [873,[3676.28,3260.81,3.17891e-007],[[855,2],[873,2],[888,2]]], [874,[3825.63,3389.72,0],[[856,2],[885,2]]], [875,[2826.98,3743.44,0],[[858,2],[889,2]]], +[876,[1621.53,4636,-2.38419e-007],[[859,2]]], [877,[5818.64,2474.14,-9.53674e-007],[[860,2],[890,2]]], [878,[5503.94,2526.73,0],[[861,2],[891,2]]], [879,[5128.13,2542.36,0],[[863,2],[892,2]]], [880,[5230.5,2780,0],[[864,2]]], [881,[5210.1,3122.53,0],[[865,2],[881,2],[893,2]]], +[882,[5016.46,4672.83,0],[[866,2],[894,2]]], [883,[3831.48,3397.23,1.90735e-006],[[869,2]]], [884,[4930.04,3453.42,0],[[870,2],[895,2]]], [885,[3863.45,3241.07,4.76837e-007],[[871,2],[872,2],[874,2],[896,2]]], [886,[3736.34,3055.31,0],[[872,2]]], [887,[3791.43,3065.92,0],[[872,2],[897,2]]], +[888,[3571.18,3276.44,0],[[873,2]]], [889,[2702.51,3760.28,0],[[875,2],[898,2]]], [890,[5752.23,2417.27,0],[[877,2]]], [891,[5462.12,2370.08,0],[[878,2],[899,2]]], [892,[5015.62,2475.97,0],[[879,2],[900,2]]], [893,[5244.84,3144.09,0],[[881,2]]], +[894,[5048.54,4698.19,7.62939e-006],[[882,2]]], [895,[5058.4,3409.52,0],[[884,2]]], [896,[4051.43,3194.08,0],[[885,2],[901,2]]], [897,[3821.29,2968.48,0],[[887,2],[902,2]]], [898,[2559.4,3703.18,-1.52588e-005],[[889,2],[903,2]]], [899,[5442.21,2338.23,0],[[891,2]]], +[900,[4893.09,2401.59,2.54313e-006],[[892,2],[904,2],[905,2]]], [901,[4147.15,3119.75,7.62939e-006],[[896,2],[906,2]]], [902,[3885.35,2889.17,0],[[897,2],[907,2]]], [903,[2429.04,3660.74,-1.52588e-005],[[898,2],[908,2]]], [904,[4821.69,2529.99,0],[[900,2],[909,2]]], [905,[4947.38,2239.39,0],[[900,2],[910,2]]], +[906,[4291.78,3106,0],[[901,2],[911,2]]], [907,[3905.14,2808.87,-3.8147e-006],[[902,2],[912,2]]], [908,[2353.83,3600.91,0],[[903,2],[913,2]]], [909,[4779.94,2621.62,-7.62939e-006],[[904,2],[914,2]]], [910,[4971.55,2113.77,0],[[905,2],[915,2]]], [911,[4457.95,3077.94,0],[[906,2],[916,2]]], +[912,[3950.02,2734.58,0],[[907,2],[917,2]]], [913,[2378.49,3456.36,0],[[908,2],[918,2]]], [914,[4726.15,2712.76,0],[[909,2],[919,2]]], [915,[4989.59,1993.16,0],[[910,2],[920,2]]], [916,[4604.85,3014.08,0],[[911,2],[921,2]]], [917,[4074.27,2688.08,0],[[912,2],[922,2]]], +[918,[2346.37,3328.64,0],[[913,2],[923,2]]], [919,[4694.15,2810.68,0],[[914,2],[921,2]]], [920,[5012.21,1844.51,-1.90735e-006],[[915,2],[924,2]]], [921,[4687.22,2914.1,2.54313e-006],[[916,2],[919,2],[925,2]]], [922,[4203.15,2634.97,0],[[917,2],[926,2]]], [923,[2299.47,3178.21,0],[[918,2],[927,2]]], +[924,[5029.72,1702.55,0],[[920,2],[928,2]]], [925,[4559.26,2893.43,0],[[921,2],[929,2]]], [926,[4278.59,2673.4,0],[[922,2],[930,2]]], [927,[2239.36,3032.34,0],[[923,2],[931,2]]], [928,[5040.34,1567.11,0],[[924,2],[932,2]]], [929,[4472.65,2873.85,0],[[925,2],[933,2]]], +[930,[4348.25,2756.91,0],[[926,2]]], [931,[2188.21,2878.78,0],[[927,2],[934,2]]], [932,[5063.23,1428.62,0],[[928,2],[935,2]]], [933,[4386.53,2809.53,0],[[929,2]]], [934,[2161.66,2704.31,-1.52588e-005],[[931,2],[936,2]]], [935,[5097.24,1307.65,3.8147e-006],[[932,2],[937,2]]], +[936,[2097.18,2552.17,0],[[934,2],[938,2]]], [937,[5130.92,1210.98,1.90735e-006],[[935,2],[939,2]]], [938,[2021.74,2402.35,0],[[936,2],[940,2]]], [939,[5145.29,1206.63,0],[[937,2]]], [940,[2014.37,2271.92,0],[[938,2],[941,2]]], [941,[1966.72,2106.96,0],[[940,2],[942,2]]], +[942,[1870.7,1976.26,0],[[941,2],[943,2]]], [943,[1773.94,1847.53,7.62939e-006],[[942,2],[944,2]]], [944,[1700.18,1699.65,0],[[943,2],[945,2]]], [945,[1626.44,1548.31,0],[[944,2],[946,2]]], [946,[1647.3,1398.28,-7.62939e-006],[[945,2],[947,2]]], [947,[1576.71,1313.57,0],[[946,2],[948,2]]], +[948,[1449.22,1247.2,0],[[947,2],[949,2]]], [949,[1394.23,1115.71,0],[[948,2],[950,2]]], [950,[1391.17,980.534,0],[[949,2],[951,2]]], [951,[1369.57,845.148,0],[[950,2],[952,2]]], [952,[1360.93,713.661,0],[[951,2],[953,2]]], [953,[1257.68,628.952,0],[[952,2],[954,2]]], +[954,[1143.26,600.084,0],[[953,2],[955,2]]], [955,[1079.38,651.985,0],[[954,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridStratis.sqf b/A3-Antistasi/NavGrids/navGridStratis.sqf new file mode 100644 index 0000000000..443465f472 --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridStratis.sqf @@ -0,0 +1,57 @@ +navGrid = [[0,[4459.09,4276,0],[[1,2],[2,2],[3,2]]], [1,[4389.81,4431.26,-1.52588e-005],[[0,2],[4,2]]], [2,[4427.04,4114.44,0],[[0,2],[5,2]]], [3,[4598.18,4334.73,1.52588e-005],[[0,2],[6,2]]], [4,[4275.52,4506.89,-1.52588e-005],[[1,2],[7,2]]], [5,[4359.65,4009.17,0],[[2,2],[8,2]]], +[6,[4680,4384.97,0],[[3,2],[9,2],[10,2]]], [7,[4141.09,4536.24,0],[[4,2],[11,2]]], [8,[4225.19,3983.26,0],[[5,2],[12,2]]], [9,[4834.25,4466.02,0],[[6,2],[13,2]]], [10,[4783.75,4387.96,1.52588e-005],[[6,2]]], [11,[4022.42,4567.49,1.52588e-005],[[7,2],[14,2]]], +[12,[4228.62,3868.23,0],[[8,2],[15,2]]], [13,[4966.9,4499.34,0],[[9,2],[16,2]]], [14,[3890.21,4634.03,0],[[11,2],[17,2]]], [15,[4278.14,3742.42,0],[[12,2],[18,2]]], [16,[5021.11,4532.55,0],[[13,2],[19,2],[20,2]]], [17,[3827.01,4678.44,0],[[14,2],[21,2],[22,2]]], +[18,[4285.74,3723.19,0],[[15,2],[23,2],[24,2]]], [19,[5060.59,4680.9,0],[[16,2],[25,2]]], [20,[5130.64,4423.35,1.52588e-005],[[16,2],[26,2]]], [21,[3776.97,4788.17,0],[[17,2],[27,2],[28,2]]], [22,[3718.83,4557.52,0],[[17,2],[29,2]]], [23,[4273.77,3589.62,0],[[18,2],[30,2]]], +[24,[4332.18,3783.71,0],[[18,2]]], [25,[5111.2,4806.47,0],[[19,2],[31,2]]], [26,[5236.03,4410.87,0],[[20,2],[32,2]]], [27,[3668.72,4840.55,0],[[21,2],[33,2]]], [28,[3820.61,4962.65,0],[[21,2],[34,2]]], [29,[3591.72,4501.98,0],[[22,2],[35,2]]], +[30,[4209.45,3550.11,-1.01725e-005],[[23,2],[36,2],[37,2]]], [31,[5204.91,4895.56,1.52588e-005],[[25,2],[38,2]]], [32,[5320.82,4320.32,0],[[26,2],[39,2]]], [33,[3556.24,4901.57,0],[[27,2],[40,2],[33,2]]], [34,[3747.75,5052.73,0],[[28,2],[41,2]]], [35,[3454.3,4464.93,0],[[29,2],[42,2]]], +[36,[4063.46,3467.03,-1.52588e-005],[[30,2],[43,2]]], [37,[4075.76,3584.28,-1.52588e-005],[[30,2],[44,2]]], [38,[5333.74,4960.13,0],[[31,2],[45,2]]], [39,[5358.4,4196.76,0],[[32,2],[46,2]]], [40,[3412.37,4899.86,-1.52588e-005],[[33,2],[47,2]]], [41,[3663.94,5170.63,0],[[34,2],[48,2]]], +[42,[3335.32,4430.94,0],[[35,2],[49,2]]], [43,[4008.54,3448.83,0],[[36,2],[50,2],[51,2]]], [44,[3950.96,3596.19,0],[[37,2],[52,2]]], [45,[5295.23,5079.16,0],[[38,2],[53,2]]], [46,[5394.28,4053.76,0],[[39,2],[54,2]]], [47,[3273.93,4915.86,-1.52588e-005],[[40,2],[55,2]]], +[48,[3617.4,5279.9,7.62939e-006],[[41,2],[56,2]]], [49,[3178.96,4465.4,-7.62939e-006],[[42,2],[57,2]]], [50,[3840.05,3361.66,0],[[43,2],[58,2]]], [51,[4127.81,3345.45,1.52588e-005],[[43,2],[59,2]]], [52,[3848.42,3685.07,0],[[44,2],[60,2]]], [53,[5274.92,5147.15,5.08626e-006],[[45,2],[61,2],[62,2]]], +[54,[5321.1,3934.62,0],[[46,2],[63,2]]], [55,[3122.19,4911.38,1.52588e-005],[[47,2],[64,2]]], [56,[3492.74,5339.66,0],[[48,2],[65,2]]], [57,[3021.44,4470.85,7.62939e-006],[[49,2],[66,2]]], [58,[3788.36,3297.16,0],[[50,2],[67,2]]], [59,[4160.88,3308.29,0],[[51,2]]], +[60,[3758.44,3762.78,0],[[52,2],[68,2]]], [61,[5166.35,5302.8,0],[[53,2],[69,2]]], [62,[5207.44,5027.09,0],[[53,2],[70,2]]], [63,[5362.9,3805.94,0],[[54,2],[63,2]]], [64,[2971.18,4912.74,0],[[55,2],[71,2]]], [65,[3413.45,5451.32,-7.62939e-006],[[56,2],[72,2]]], +[66,[2872.9,4459.17,-7.62939e-006],[[57,2],[73,2]]], [67,[3739.62,3165.71,-1.52588e-005],[[58,2],[74,2]]], [68,[3652.23,3850.33,0],[[60,2],[75,2]]], [69,[5249.66,5339.89,-1.01725e-005],[[61,2],[76,2],[77,2]]], [70,[5168.83,5005.33,0],[[62,2]]], [71,[2902.73,4941.65,5.08626e-006],[[64,2],[78,2],[79,2]]], +[72,[3322.62,5554,3.8147e-006],[[65,2],[80,2]]], [73,[2719.18,4478.76,0],[[66,2],[81,2]]], [74,[3753.35,3054.35,0],[[67,2],[82,2]]], [75,[3571.56,3861.43,-1.52588e-005],[[68,2],[83,2]]], [76,[5096.03,5375.76,0],[[69,2],[84,2]]], [77,[5348.34,5464.59,0],[[69,2],[85,2]]], +[78,[3027.55,4991.95,0],[[71,2],[86,2]]], [79,[2720.21,4964.71,0],[[71,2],[87,2]]], [80,[3233.9,5670.92,-3.8147e-006],[[72,2],[88,2]]], [81,[2573.76,4527.38,-3.8147e-006],[[73,2],[89,2]]], [82,[3751.2,2956.81,-1.52588e-005],[[74,2],[90,2]]], [83,[3461.6,3816.55,0],[[75,2],[91,2]]], +[84,[4993.53,5421.12,0],[[76,2],[84,2]]], [85,[5236.15,5596.77,0],[[77,2],[92,2]]], [86,[3016.63,5137.06,0],[[78,2],[93,2]]], [87,[2630.84,4929.87,-7.62939e-006],[[79,2]]], [88,[3117.93,5751.01,0],[[80,2],[94,2]]], [89,[2438.09,4564.57,0],[[81,2],[95,2]]], +[90,[3643.03,2887.38,0],[[82,2],[96,2]]], [91,[3331.06,3837.58,0],[[83,2],[97,2]]], [92,[5245.17,5734.32,0],[[85,2],[98,2]]], [93,[2874.53,5246.7,7.62939e-006],[[86,2],[99,2]]], [94,[3009.14,5832.92,0],[[88,2],[100,2]]], [95,[2305.93,4629.32,0],[[89,2],[101,2]]], +[96,[3539.15,2826.9,0],[[90,2],[102,2]]], [97,[3204.9,3801.56,0],[[91,2],[103,2]]], [98,[5231.53,5801.45,-5.08626e-006],[[92,2],[104,2],[105,2]]], [99,[2736.75,5343.52,-7.62939e-006],[[93,2],[106,2]]], [100,[2986.85,5839.22,0],[[94,2],[107,2],[108,2]]], [101,[2176.71,4706.02,0],[[95,2],[101,2]]], +[102,[3505.96,2761.23,0],[[96,2],[109,2]]], [103,[3061.98,3798.67,1.52588e-005],[[97,2],[110,2]]], [104,[5084.1,5751.4,0],[[98,2],[111,2]]], [105,[5333.12,5752.2,0],[[98,2],[112,2]]], [106,[2681.2,5371.44,0],[[99,2],[113,2],[114,2]]], [107,[2837.01,5920.65,-7.94729e-008],[[100,2],[115,2],[116,2]]], +[108,[3028.21,5888.35,0],[[100,2],[117,2]]], [109,[3510.92,2651.16,1.52588e-005],[[102,2],[118,2]]], [110,[2923.92,3814.84,-7.62939e-006],[[103,2],[119,2]]], [111,[4937.55,5747.6,-1.52588e-005],[[104,2],[120,2]]], [112,[5417.18,5690.1,0],[[105,2],[121,2]]], [113,[2593.91,5477.27,0],[[106,2]]], +[114,[2526.7,5421.98,0],[[106,2],[114,2]]], [115,[2870.61,5975.86,5.96046e-008],[[107,2],[115,2],[122,2],[123,2]]], [116,[2750.43,5870.87,-2.38419e-007],[[107,2],[124,2]]], [117,[3039.23,5923.63,7.94729e-008],[[108,2],[125,2],[126,2]]], [118,[3467.7,2637.83,5.08626e-006],[[109,2],[127,2],[128,2]]], [119,[2770,3832.66,0],[[110,2],[129,2]]], +[120,[4815.95,5824.1,1.52588e-005],[[111,2],[130,2]]], [121,[5462.78,5604.32,0],[[112,2],[131,2]]], [122,[2929.31,5940.52,0],[[115,2]]], [123,[2890.4,6053.87,-5.96046e-008],[[115,2],[132,2],[133,2],[134,2],[126,2]]], [124,[2677.93,5797.69,0],[[116,2],[135,2]]], [125,[3117.96,5885.12,0],[[117,2],[136,2]]], +[126,[3026.78,5999.24,-1.19209e-007],[[117,2],[123,2],[137,2],[126,2],[134,2],[138,2]]], [127,[3306.41,2658.27,0],[[118,2],[139,2]]], [128,[3393.67,2478.38,-1.52588e-005],[[118,2],[140,2]]], [129,[2727.23,3826.82,-9.53674e-007],[[119,2],[141,2],[142,2],[143,2]]], [130,[4683.16,5859.38,0],[[120,2],[144,2]]], [131,[5506.63,5474.47,0],[[121,2],[145,2]]], +[132,[2962.18,6089.5,0],[[123,2],[146,2]]], [133,[2831.83,6104.95,0],[[123,2]]], [134,[2979.65,6041.25,0],[[123,2],[126,2]]], [135,[2601.64,5831.18,0],[[124,2],[147,2]]], [136,[3206.87,5880.95,-1.19209e-007],[[125,2],[148,2],[149,2],[150,2]]], [137,[3025.91,5960.18,2.02462],[[126,2]]], +[138,[3115.89,6036.14,0],[[126,2]]], [139,[3172.05,2610.29,0],[[127,2],[151,2]]], [140,[3317.16,2383.25,0],[[128,2],[152,2]]], [141,[2549.94,3898.49,0],[[129,2],[153,2]]], [142,[2588.1,3749.9,0],[[129,2],[154,2]]], [143,[2835.22,3767.47,-3.8147e-006],[[129,2],[155,2]]], +[144,[4640.4,5878.01,0],[[130,2],[156,2],[157,2],[158,2]]], [145,[5593.08,5398.41,0],[[131,2],[159,2]]], [146,[3028.9,6088.85,0],[[132,2],[160,2]]], [147,[2480.16,5859.06,0],[[135,2],[161,2]]], [148,[3128.76,5949.52,0],[[136,2]]], [149,[3420.56,5848.85,0],[[136,2],[162,2]]], +[150,[3328.45,5767.82,-1.19209e-007],[[136,2],[163,2],[164,2],[165,2]]], [151,[3039.37,2570.94,0],[[139,2],[166,2]]], [152,[3205.87,2293.46,0],[[140,2],[167,2]]], [153,[2416.6,3970.24,0],[[141,2],[168,2]]], [154,[2427.7,3718.45,0],[[142,2],[169,2]]], [155,[2834.85,3751.76,0],[[155,2],[170,2]]], +[156,[4731.68,5900.26,0],[[144,2],[171,2]]], [157,[4674.19,5982.37,1.52588e-005],[[144,2],[172,2]]], [158,[4454.13,5827.36,1.52588e-005],[[144,2],[173,2]]], [159,[5706.4,5291.91,0],[[145,2],[174,2],[175,2]]], [160,[3018.25,6149.96,-6.35783e-007],[[146,2],[176,2],[177,2]]], [161,[2337.08,5802.16,0],[[147,2],[178,2]]], +[162,[3553.87,5780.25,0],[[149,2],[179,2]]], [163,[3422.42,5788.87,0],[[150,2],[165,2]]], [164,[3358.12,5682.71,-9.53674e-007],[[150,2],[180,2]]], [165,[3523.29,5661.54,5.44957e-007],[[150,2],[163,2],[181,2],[165,2],[182,2],[183,2],[184,2]]], [166,[2904.54,2471.45,0],[[151,2],[185,2]]], [167,[3135.58,2205.82,1.52588e-005],[[152,2],[186,2]]], +[168,[2312.22,4038,0],[[153,2],[187,2]]], [169,[2301.45,3682.64,1.90735e-006],[[154,2],[188,2]]], [170,[2811.3,3740.2,0],[[155,2]]], [171,[4886.99,5865.82,-1.52588e-005],[[156,2],[189,2]]], [172,[4799.2,6013.5,0],[[157,2],[190,2]]], [173,[4309.3,5820.81,0],[[158,2],[191,2]]], +[174,[5742.76,5193.82,0],[[159,2],[192,2]]], [175,[5788.25,5253.06,0],[[159,2],[193,2]]], [176,[2979.79,6205.97,0],[[160,2],[176,2]]], [177,[3159.69,6177.64,3.8147e-006],[[160,2],[194,2]]], [178,[2234.15,5790.17,0],[[161,2],[195,2]]], [179,[3647.27,5781.76,0],[[162,2],[196,2]]], +[180,[3375.38,5671.04,0],[[164,2]]], [181,[3540.34,5689.4,0],[[165,2]]], [182,[3720.56,5538.32,0],[[165,2],[197,2]]], [183,[3762.32,5605.05,0],[[165,2],[197,2]]], [184,[3567.95,5669.56,0],[[165,2]]], [185,[2748.21,2483.97,-7.62939e-006],[[166,2],[198,2]]], +[186,[3055.32,2118.96,0],[[167,2],[199,2]]], [187,[2273.52,4107.83,0],[[168,2],[200,2]]], [188,[2169.62,3636.22,0],[[169,2],[201,2]]], [189,[5030.16,5876.85,0],[[171,2],[189,2]]], [190,[4936.94,6062.75,0],[[172,2],[202,2]]], [191,[4189.87,5789.9,0],[[173,2],[203,2]]], +[192,[5830.79,5106.27,7.62939e-006],[[174,2],[204,2]]], [193,[5864.51,5338.67,0],[[175,2],[205,2]]], [194,[3316.49,6216.58,0],[[177,2],[206,2]]], [195,[2209.14,5792.14,0],[[178,2],[207,2],[208,2]]], [196,[3777.43,5778.91,0],[[179,2],[209,2]]], [197,[3843.35,5536.71,0],[[182,2],[183,2],[210,2]]], +[198,[2637.35,2460.21,0],[[185,2],[211,2]]], [199,[3011.39,1996.76,0],[[186,2],[212,2]]], [200,[2110.36,4157.59,0],[[187,2],[213,2]]], [201,[2043.69,3591.76,0],[[188,2],[214,2]]], [202,[4989.6,6168.71,0],[[190,2],[215,2]]], [203,[4059.27,5778.83,7.62939e-006],[[191,2],[209,2]]], +[204,[5932.3,5060.59,0],[[192,2],[216,2]]], [205,[5933.89,5441.61,0],[[193,2],[217,2]]], [206,[3453.98,6221.56,0],[[194,2],[218,2]]], [207,[2156.31,5803.89,0],[[195,2],[219,2],[220,2]]], [208,[2193,5696.57,0],[[195,2],[221,2],[222,2]]], [209,[3875.87,5767.42,7.62939e-006],[[196,2],[203,2]]], +[210,[4047.35,5476.06,0],[[197,2],[223,2]]], [211,[2501.06,2394.22,0],[[198,2],[224,2]]], [212,[2994.6,1980.93,0],[[199,2],[225,2],[226,2]]], [213,[1990.31,4179,0],[[200,2]]], [214,[1929.41,3572.57,0],[[201,2]]], [215,[4923.39,6245.87,1.52588e-005],[[202,2],[227,2]]], +[216,[5973.37,4988.66,0],[[204,2],[228,2]]], [217,[6014.07,5557.28,0],[[205,2],[229,2]]], [218,[3572.32,6215.74,0],[[206,2],[230,2]]], [219,[2059.19,5829.69,0],[[207,2]]], [220,[2128.34,5673.95,0],[[207,2],[231,2]]], [221,[2164.87,5546.54,0],[[208,2],[232,2]]], +[222,[2247.32,5691.51,0],[[208,2]]], [223,[4094.82,5421.72,3.8147e-007],[[210,2],[223,2],[233,2],[234,2],[235,2]]], [224,[2400.26,2296.69,0],[[211,2],[236,2]]], [225,[2868.05,1879.35,0],[[212,2],[237,2]]], [226,[3018.36,1928.02,0],[[212,2],[238,2]]], [227,[4791.03,6289.19,0],[[215,2],[239,2]]], +[228,[6008.88,4964.76,-2.54313e-006],[[216,2],[240,2],[241,2]]], [229,[6044.32,5600.36,0],[[217,2],[229,2]]], [230,[3599.02,6328.9,0],[[218,2],[242,2]]], [231,[2116.68,5650.41,3.17891e-007],[[220,2],[243,2],[244,2]]], [232,[2158.42,5396.36,0],[[221,2],[245,2]]], [233,[4182.61,5350.58,0],[[223,2],[246,2]]], +[234,[4189.44,5340.32,0],[[223,2],[234,2],[247,2]]], [235,[4077.75,5343.32,3.8147e-006],[[223,2]]], [236,[2308.31,2188.17,0],[[224,2],[248,2]]], [237,[2786.85,1795.91,0],[[225,2],[249,2]]], [238,[2992.21,1894.26,0],[[226,2]]], [239,[4759.83,6342.11,-1.52588e-005],[[227,2],[250,2]]], +[240,[5907.44,4951.3,0],[[228,2],[251,2]]], [241,[6119.68,5007.39,0],[[228,2],[252,2]]], [242,[3546.08,6405.04,0],[[230,2],[253,2]]], [243,[2088.15,5479.51,0],[[231,2],[254,2]]], [244,[1967.53,5678.92,0],[[231,2],[255,2]]], [245,[2155.93,5351.09,0],[[232,2]]], +[246,[4205.78,5317.49,0],[[233,2]]], [247,[4215.68,5338.12,0],[[234,2]]], [248,[2284.06,2181.53,0],[[236,2],[256,2],[257,2]]], [249,[2876.97,1745.89,0],[[237,2],[258,2]]], [250,[4818.08,6462.05,-1.52588e-005],[[239,2],[259,2]]], [251,[5807.75,4867.14,0],[[240,2],[260,2]]], +[252,[6222.71,5011.95,0],[[241,2],[261,2]]], [253,[3638.94,6443.71,-7.62939e-006],[[242,2],[262,2]]], [254,[2058.73,5355.62,-5.96046e-008],[[243,2],[263,2],[254,2],[264,2]]], [255,[1882.17,5699.04,0],[[244,2]]], [256,[2252,2298.83,-3.8147e-006],[[248,2],[265,2]]], [257,[2202.03,2038.78,0],[[248,2],[266,2]]], +[258,[3025.17,1747.37,0],[[249,2],[267,2]]], [259,[4816.14,6539.85,0],[[250,2],[268,2]]], [260,[5717.43,4793.74,0],[[251,2],[269,2]]], [261,[6277.68,5069.89,0],[[252,2],[270,2]]], [262,[3783.94,6422.32,-7.62939e-006],[[253,2],[271,2]]], [263,[2027.16,5183.81,0],[[254,2],[263,2]]], +[264,[1918.9,5384.39,0],[[254,2],[272,2]]], [265,[2139.5,2305.19,0],[[256,2],[273,2]]], [266,[2124.41,1924.48,0],[[257,2]]], [267,[3142.7,1637.68,0],[[258,2],[274,2]]], [268,[4681.31,6556.37,0],[[259,2],[275,2]]], [269,[5634.14,4828.62,0],[[260,2],[276,2]]], +[270,[6318.02,5136.59,4.76837e-007],[[261,2],[270,2],[277,2],[278,2]]], [271,[3914.25,6346.29,0],[[262,2],[279,2]]], [272,[1808.23,5347.21,0],[[264,2],[280,2]]], [273,[2019.27,2389.76,1.90735e-006],[[265,2],[281,2]]], [274,[3117.9,1586.95,-2.54313e-006],[[267,2],[282,2],[283,2]]], [275,[4514.62,6513.68,0],[[268,2],[284,2]]], +[276,[5556.47,4772.85,0],[[269,2],[285,2]]], [277,[6427.46,5256.59,1.90735e-006],[[270,2],[286,2]]], [278,[6408.63,5107.95,3.8147e-006],[[270,2],[287,2]]], [279,[4073.98,6335.25,-1.90735e-006],[[271,2],[288,2],[279,2],[289,2]]], [280,[1770.01,5217.63,0],[[272,2],[290,2]]], [281,[1957.28,2449.3,0],[[273,2],[291,2]]], +[282,[3000.87,1444.13,0],[[274,2],[292,2]]], [283,[2992.78,1518.49,0],[[274,2],[293,2]]], [284,[4412.46,6453.44,0],[[275,2],[294,2]]], [285,[5527.5,4718.07,0],[[276,2]]], [286,[6466.24,5310.07,0],[[277,2],[286,2],[295,2],[296,2]]], [287,[6480.68,5136.23,0],[[278,2],[297,2]]], +[288,[4193.8,6380.41,0],[[279,2],[298,2]]], [289,[4165.14,6424.56,0],[[279,2],[299,2]]], [290,[1733.76,5083.52,0],[[280,2],[300,2]]], [291,[1985.67,2532.36,0],[[281,2],[301,2]]], [292,[2911.67,1296.02,0],[[282,2],[302,2]]], [293,[2881.46,1423.06,0],[[283,2],[303,2]]], +[294,[4313.89,6424.25,0],[[284,2],[298,2]]], [295,[6485.15,5376.75,0],[[286,2]]], [296,[6584.5,5323.69,0],[[286,2]]], [297,[6554.67,5073.21,0],[[287,2],[304,2],[305,2]]], [298,[4272.32,6400.54,0],[[288,2],[294,2]]], [299,[4232.56,6503.1,0],[[289,2],[306,2]]], +[300,[1713.18,5006.53,0],[[290,2]]], [301,[2007.98,2618.8,0],[[291,2],[307,2]]], [302,[2838.32,1160.44,0],[[292,2],[308,2]]], [303,[2785.87,1313.91,0],[[293,2],[309,2]]], [304,[6580.81,5128.6,0],[[297,2],[310,2]]], [305,[6478.65,4974.24,9.53674e-007],[[297,2],[311,2]]], +[306,[4310.09,6594.26,0],[[299,2],[312,2]]], [307,[2058.65,2645.27,0],[[301,2],[313,2]]], [308,[2764.69,1041.45,0],[[302,2],[314,2]]], [309,[2652.74,1242.08,0],[[303,2],[315,2]]], [310,[6580.93,5191.94,0],[[304,2]]], [311,[6499.31,4940.78,-4.76837e-007],[[305,2]]], +[312,[4374.77,6723.07,0],[[306,2],[316,2]]], [313,[2011.68,2697.81,0],[[307,2]]], [314,[2606.56,1038.11,-3.8147e-006],[[308,2],[317,2]]], [315,[2530.32,1176.92,0],[[309,2],[318,2]]], [316,[4391.07,6768.58,-3.8147e-006],[[312,2],[319,2],[320,2],[316,2],[321,2]]], [317,[2557.73,948.935,0],[[314,2],[322,2]]], +[318,[2431.3,1145.24,2.38419e-007],[[315,2]]], [319,[4470.39,6766.05,-7.62939e-006],[[316,2],[323,2]]], [320,[4382.01,6765.89,0],[[316,2]]], [321,[4286.92,6786.09,-1.52588e-005],[[316,2],[324,2]]], [322,[2663.83,883.77,0],[[317,2],[325,2]]], [323,[4504.99,6794.69,0],[[319,2]]], +[324,[4244.95,6828.35,0],[[321,2],[326,2]]], [325,[2678.7,755.422,0],[[322,2],[327,2]]], [326,[4189.69,6910.85,0],[[324,2],[328,2]]], [327,[2596.13,652.399,0],[[325,2],[329,2]]], [328,[4073.35,6918,0],[[326,2],[330,2]]], [329,[2620.11,614.338,0],[[327,2]]], +[330,[3957.66,6865.26,0],[[328,2],[331,2]]], [331,[3836.2,6782.46,0],[[330,2],[332,2]]], [332,[3686.41,6777.08,0],[[331,2],[333,2]]], [333,[3565.6,6745.25,0],[[332,2],[334,2]]], [334,[3437.6,6793.13,0],[[333,2],[335,2]]], [335,[3277.48,6816.94,0],[[334,2],[336,2]]], +[336,[3200.45,6833.96,0],[[335,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridTanoa.sqf b/A3-Antistasi/NavGrids/navGridTanoa.sqf new file mode 100644 index 0000000000..2c3be67b0f --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridTanoa.sqf @@ -0,0 +1,367 @@ +navGrid = [[0,[10962.8,9577.84,-2.54313e-006],[[1,2],[2,2],[3,2]]], [1,[10788.1,9563.94,2.54313e-006],[[0,2],[13,2],[14,2]]], [2,[11014.9,9711.65,-7.62939e-006],[[0,2],[15,2]]], [3,[11096.7,9542.85,0],[[0,2],[16,2],[17,2]]], [4,[1942.55,11928,3.17891e-007],[[5,2],[6,2],[7,2]]], [5,[1868.53,11868.4,0],[[4,2],[18,2],[19,2]]], +[6,[1846.82,12049.5,7.94729e-008],[[4,2],[20,2],[19,2],[21,2]]], [7,[2092.15,12028.7,0],[[4,2],[22,2],[23,2],[7,2],[24,2]]], [8,[5593.19,4155.28,-5.96046e-008],[[9,2],[10,2],[11,2],[12,2]]], [9,[5721.18,4232.51,4.76837e-007],[[8,2],[25,2]]], [10,[5628.02,4078.58,0],[[8,2],[26,2],[27,2]]], [11,[5492.14,4242.28,0],[[8,2],[28,2]]], +[12,[5475.1,4053.9,0],[[8,2],[29,2],[12,2],[30,2]]], [13,[10625.2,9541.06,0],[[1,2],[31,2]]], [14,[10797.5,9636.17,1.96568],[[1,2],[32,2],[14,2],[33,2]]], [15,[11060.9,9825.23,0],[[2,2],[34,2],[35,2]]], [16,[11139.3,9523.61,0],[[3,2],[36,2],[37,2]]], [17,[11110.4,9582.79,7.62939e-006],[[3,2]]], +[18,[1996.88,11817.8,0],[[5,2],[38,2]]], [19,[1839.3,11904.2,-1.19209e-007],[[5,2],[6,2],[20,2],[19,2],[39,2]]], [20,[1801.63,11978.3,0],[[6,2],[19,2],[20,2],[40,2],[39,2]]], [21,[1840.02,12099.5,2.38419e-007],[[6,2],[41,2],[42,2]]], [22,[2178.38,12192.5,0],[[7,2],[43,2]]], [23,[2079.56,12019.6,0],[[7,2]]], +[24,[2025.54,12003.4,0],[[7,2]]], [25,[5840.39,4316.81,0],[[9,2],[44,2]]], [26,[5750.52,4099.54,0],[[10,2]]], [27,[5515.71,3949.95,0],[[10,2],[45,2],[29,2]]], [28,[5445.06,4252.68,0],[[11,2],[46,2],[28,2],[30,2]]], [29,[5414.63,3958.9,0],[[12,2],[27,2],[47,2],[48,2],[49,2],[45,2]]], +[30,[5386.6,4106.08,-7.94729e-008],[[12,2],[28,2],[50,2]]], [31,[10483,9547.13,7.62939e-006],[[13,2],[51,2]]], [32,[10792.7,9619.07,2.94851],[[14,2]]], [33,[10879.8,9807.2,0],[[14,2],[52,2],[34,2]]], [34,[10916.2,9844.86,-7.62939e-006],[[15,2],[33,2],[52,2]]], [35,[11146.4,9815.65,0],[[15,2],[53,2],[54,2]]], +[36,[11292.1,9445.4,0],[[16,2],[55,2]]], [37,[11046.2,9381.26,0],[[16,2],[56,2]]], [38,[2148.76,11807.1,0],[[18,2],[57,2]]], [39,[1766.42,11882.7,0],[[19,2],[20,2],[40,2],[58,2]]], [40,[1737.13,11954.1,-1.19209e-007],[[20,2],[39,2],[42,2]]], [41,[1842.59,12274.1,0],[[21,2],[59,2]]], +[42,[1751.9,12092,-1.58946e-007],[[21,2],[40,2],[60,2]]], [43,[2272.65,12304.8,0],[[22,2],[61,2]]], [44,[5941.34,4428.23,0],[[25,2],[62,2]]], [45,[5469.94,3886.89,0],[[27,2],[29,2],[63,2]]], [46,[5296.76,4319.29,4.76837e-007],[[28,2],[64,2]]], [47,[5362.56,3994.29,-1.58946e-007],[[29,2],[65,2],[47,2],[66,2]]], +[48,[5281.38,3769.18,6.35783e-007],[[29,2],[67,2],[68,2]]], [49,[5458.11,3916.12,0],[[29,2]]], [50,[5256.5,4054.2,0],[[30,2],[69,2]]], [51,[10445.6,9535.1,2.54313e-006],[[31,2],[70,2],[71,2]]], [52,[10904.2,9847.94,0],[[33,2],[34,2],[72,2]]], [53,[11281.9,9747.45,0],[[35,2],[73,2]]], +[54,[11151.3,9845.77,7.62939e-006],[[35,2]]], [55,[11423.8,9378.91,0],[[36,2],[74,2]]], [56,[11006.8,9317.1,0],[[37,2]]], [57,[2291.47,11773,0],[[38,2],[75,2]]], [58,[1743.03,11933.5,1.19209e-007],[[39,2]]], [59,[1836.11,12432.9,0],[[41,2],[76,2]]], +[60,[1689.59,12241.1,0],[[42,2]]], [61,[2374.77,12401.6,0],[[43,2],[77,2]]], [62,[5945.47,4500.47,0],[[44,2],[78,2],[79,2]]], [63,[5469.55,3800.58,0],[[45,2]]], [64,[5145.72,4380.49,0],[[46,2],[80,2]]], [65,[5373.76,4003.87,-2.38419e-007],[[47,2]]], +[66,[5190.1,3975.59,0],[[47,2],[81,2]]], [67,[5239.07,3716.82,6.35783e-007],[[48,2],[82,2],[83,2]]], [68,[5405.01,3724.06,0],[[48,2],[68,2]]], [69,[5215.34,4046.55,-1.58946e-007],[[50,2],[84,2],[81,2]]], [70,[10269.7,9579.8,7.62939e-006],[[51,2],[85,2]]], [71,[10452.1,9369.72,0],[[51,2],[86,2]]], +[72,[10891.5,9873.36,0],[[52,2],[72,2],[87,2]]], [73,[11441.7,9729.09,0],[[53,2],[88,2],[89,2]]], [74,[11476.8,9353.55,0.312846],[[55,2],[74,2],[90,2]]], [75,[2416.97,11683.8,0],[[57,2],[91,2]]], [76,[1814.01,12513,0],[[59,2],[92,2],[93,2]]], [77,[2503.08,12403.6,0],[[61,2],[94,2]]], +[78,[5851.53,4625.9,0],[[62,2],[95,2]]], [79,[6105.27,4497.65,0],[[62,2],[96,2]]], [80,[5010.33,4435.44,0],[[64,2],[97,2]]], [81,[5139.27,4008.89,0],[[66,2],[69,2],[98,2]]], [82,[5133.11,3832.26,-1.90735e-006],[[67,2],[98,2],[99,2]]], [83,[5292.78,3615.54,0],[[67,2],[100,2],[83,2]]], +[84,[5117.56,4084.36,0],[[69,2]]], [85,[10118.5,9581.63,0],[[70,2],[101,2]]], [86,[10448.4,9245,0],[[71,2],[102,2]]], [87,[10831.9,10008,0],[[72,2],[103,2],[104,2],[87,2]]], [88,[11553.4,9842.09,7.62939e-006],[[73,2],[105,2]]], [89,[11615.4,9713.95,0],[[73,2],[106,2]]], +[90,[11543.9,9317.95,0],[[74,2],[107,2],[108,2]]], [91,[2533.34,11601.2,-4.76837e-007],[[75,2],[109,2],[110,2],[91,2],[111,2]]], [92,[1756.16,12669.6,0],[[76,2],[112,2]]], [93,[1691.32,12497.3,0],[[76,2],[113,2]]], [94,[2654.26,12423.7,-1.52588e-005],[[77,2],[114,2]]], [95,[5828.35,4644.1,7.94729e-008],[[78,2],[115,2],[116,2]]], +[96,[6202.48,4460.52,0],[[79,2],[117,2],[118,2]]], [97,[4964.55,4452.86,0],[[80,2],[119,2],[120,2]]], [98,[5042.89,3983.07,0],[[81,2],[82,2],[121,2]]], [99,[5106.98,3784.57,0],[[348,2],[82,2]]], [100,[5328.26,3423.97,0],[[83,2],[122,2]]], [101,[9977.2,9628.5,0],[[85,2],[123,2]]], +[102,[10405.9,9162.3,0],[[86,2],[102,2],[124,2]]], [103,[10811,10215.3,2.54313e-006],[[87,2],[125,2],[126,2]]], [104,[10839.2,9984.31,3.8147e-006],[[87,2]]], [105,[11646.9,9961.27,-7.62939e-006],[[88,2],[127,2]]], [106,[11758.3,9710.82,1.52588e-005],[[89,2],[128,2]]], [107,[11711.7,9269.02,0],[[90,2],[129,2]]], +[108,[11617.3,9168.31,0],[[90,2],[130,2]]], [109,[2650.85,11551.2,-6.35783e-007],[[91,2],[131,2],[132,2]]], [110,[2526.96,11609.7,-6.35783e-007],[[91,2]]], [111,[2601.27,11694.4,-3.8147e-006],[[91,2],[133,2]]], [112,[1737.31,12834.6,-2.38419e-007],[[92,2],[134,2],[112,2],[135,2]]], [113,[1632.55,12463.5,0],[[93,2]]], +[114,[2757.42,12541.9,0],[[94,2],[136,2]]], [115,[5683.44,4715.83,0],[[95,2],[137,2]]], [116,[5702.02,4605.99,0],[[95,2],[138,2]]], [117,[6349.61,4380.24,0],[[96,2],[139,2]]], [118,[6153.41,4320.29,0],[[96,2],[140,2]]], [119,[4847.39,4501.77,0],[[97,2]]], +[120,[4920.57,4327.03,0],[[97,2],[120,2]]], [121,[4919.32,3954.75,0],[[98,2],[141,2],[121,2],[142,2]]], [122,[5259.21,3292.04,0],[[100,2],[143,2],[144,2]]], [123,[9838.79,9707.67,7.62939e-006],[[101,2],[145,2]]], [124,[10255.7,9066.42,1.52588e-005],[[102,2],[146,2]]], [125,[10714.9,10382,0],[[103,2],[147,2]]], +[126,[10964.4,10274.7,7.62939e-006],[[103,2],[148,2]]], [127,[11736.7,10077.4,-1.52588e-005],[[105,2],[149,2]]], [128,[11913.2,9699.27,-1.52588e-005],[[106,2],[150,2]]], [129,[11863.2,9251.65,0],[[107,2],[151,2]]], [130,[11708.4,9061.23,0],[[108,2],[152,2]]], [131,[2813.47,11488.1,1.58946e-007],[[109,2],[153,2],[154,2]]], +[132,[2549.52,11481.2,0],[[109,2],[155,2]]], [133,[2627.33,11736.6,3.8147e-006],[[111,2]]], [134,[1881.92,12866.7,0],[[112,2],[156,2]]], [135,[1683.19,12958.2,9.53674e-007],[[112,2],[157,2]]], [136,[2825.18,12562.9,0],[[114,2],[158,2],[159,2],[160,2]]], [137,[5657.51,4731.04,0],[[115,2],[161,2],[162,2]]], +[138,[5574.01,4565.26,0],[[116,2],[163,2]]], [139,[6463.74,4315.87,9.53674e-007],[[117,2],[164,2]]], [140,[6105.18,4180.98,0],[[118,2],[140,2]]], [141,[4755.17,3880.57,0],[[121,2],[165,2]]], [142,[4827.56,4053.67,-1.90735e-006],[[121,2],[166,2]]], [143,[5190.34,3147.29,0],[[122,2],[167,2]]], +[144,[5096.34,3345.35,0],[[122,2],[168,2]]], [145,[9727.1,9791.69,0],[[123,2],[169,2]]], [146,[10128.1,9008.34,-1.52588e-005],[[124,2],[170,2]]], [147,[10619,10464.7,-1.52588e-005],[[125,2],[171,2]]], [148,[11009.3,10305.8,-2.54313e-006],[[126,2],[172,2],[148,2]]], [149,[11839.8,10131.9,1.52588e-005],[[127,2],[173,2]]], +[150,[12034,9686.59,-5.08626e-006],[[128,2],[174,2],[175,2]]], [151,[12007.6,9241.23,0],[[129,2],[176,2]]], [152,[11779.8,8939.28,0],[[130,2],[177,2]]], [153,[2936.56,11373.7,0],[[131,2],[178,2],[179,2]]], [154,[2862.53,11529.7,-2.38419e-007],[[131,2],[180,2],[154,2],[181,2]]], [155,[2532.95,11460,6.35783e-007],[[132,2],[182,2],[183,2]]], +[156,[1999.17,12952.4,0],[[134,2],[184,2]]], [157,[1700.6,13060.6,-9.53674e-007],[[135,2],[185,2]]], [158,[2857.52,12708.1,2.54313e-006],[[136,2],[186,2],[187,2]]], [159,[3018.89,12554.4,-2.54313e-006],[[136,2],[188,2],[189,2],[159,2]]], [160,[2854.15,12457.1,0],[[136,2],[190,2]]], [161,[5510.23,4784.1,0],[[137,2],[191,2]]], +[162,[5705.62,4895.54,0],[[137,2],[192,2]]], [163,[5561.63,4572.38,0],[[138,2],[193,2],[191,2]]], [164,[6589,4269.54,0],[[139,2],[194,2]]], [165,[4619.82,3812.91,3.17891e-007],[[141,2],[195,2],[196,2]]], [166,[4694.4,4069.12,0],[[142,2],[197,2]]], [167,[5134.45,3028.65,0],[[143,2],[198,2]]], +[168,[4964.85,3326.91,0],[[144,2],[199,2]]], [169,[9691.51,9848.28,9.53674e-007],[[145,2],[200,2],[169,2],[201,2]]], [170,[9984.43,8804.93,5.08626e-006],[[146,2],[202,2],[203,2]]], [171,[10512.9,10553.2,0],[[147,2],[204,2]]], [172,[11116.3,10439.7,-1.52588e-005],[[148,2],[205,2]]], [173,[11913.1,10178.2,0],[[149,2],[206,2],[207,2],[208,2]]], +[174,[12177,9613.7,0],[[150,2],[209,2]]], [175,[12047.2,9812.21,0],[[150,2],[210,2]]], [176,[12157.2,9149.29,0],[[151,2],[211,2]]], [177,[11831.6,8817.66,0],[[152,2],[212,2]]], [178,[3024.79,11278.9,-1.90735e-007],[[153,2],[178,2],[213,2],[214,2],[215,2]]], [179,[2854.2,11294.4,0],[[153,2],[216,2]]], +[180,[3015.77,11647.3,0],[[154,2],[217,2]]], [181,[2834.11,11688.7,3.8147e-006],[[154,2],[218,2]]], [182,[2388.61,11348.9,-1.90735e-006],[[155,2],[219,2]]], [183,[2594.82,11320.4,0],[[155,2],[220,2]]], [184,[2115.07,13043.3,0],[[156,2],[221,2]]], [185,[1786.95,13142.8,0],[[157,2],[222,2]]], +[186,[2996.15,12809.5,-7.62939e-006],[[158,2],[223,2]]], [187,[2702.08,12793,3.8147e-006],[[158,2],[224,2]]], [188,[3192.17,12580.2,0],[[159,2],[225,2]]], [189,[3009.34,12543,0],[[159,2],[226,2]]], [190,[2823.77,12407.2,0],[[160,2],[227,2]]], [191,[5462.42,4793.77,0],[[161,2],[163,2],[228,2]]], +[192,[5695.64,4930.52,0],[[162,2]]], [193,[5616.5,4400.25,0],[[163,2],[193,2]]], [194,[6733.18,4248.56,1.27157e-006],[[164,2],[194,2],[229,2]]], [195,[4435.57,3726.46,0],[[165,2],[230,2],[231,2]]], [196,[4708.58,3700.57,0],[[165,2],[232,2]]], [197,[4653.07,4081.07,-3.8147e-006],[[166,2]]], +[198,[5053.36,2899.55,0],[[167,2],[233,2]]], [199,[4807.92,3332.24,0],[[168,2],[234,2],[235,2]]], [200,[9539.7,9947.78,0],[[169,2],[236,2]]], [201,[9733.66,9864.36,-1.27157e-006],[[169,2],[237,2],[238,2]]], [202,[10107.6,8668.46,0],[[170,2],[239,2]]], [203,[9822.23,8819.54,0],[[170,2],[240,2],[241,2],[203,2]]], +[204,[10409.4,10673.2,-1.52588e-005],[[171,2],[242,2]]], [205,[11118.4,10569.9,0],[[172,2],[243,2]]], [206,[12090.9,10233.5,0],[[173,2],[244,2]]], [207,[12055.7,10064,-1.52588e-005],[[173,2],[245,2]]], [208,[11753.9,10254.9,0],[[173,2],[246,2]]], [209,[12276.3,9557.76,2.8243],[[174,2],[247,2],[209,2],[248,2]]], +[210,[12108.4,9897.5,0],[[175,2],[249,2]]], [211,[12261.7,8998.96,0],[[176,2],[250,2]]], [212,[11925.4,8667.29,0],[[177,2],[251,2]]], [213,[3174.66,11398.8,-1.90735e-006],[[178,2],[252,2]]], [214,[3048.53,11201.9,-4.76837e-007],[[178,2],[253,2],[254,2],[215,2]]], [215,[3004.09,11195.7,0],[[178,2],[214,2],[255,2]]], +[216,[2730.44,11220.7,0],[[179,2],[256,2],[220,2]]], [217,[3123.96,11750.7,0],[[180,2],[257,2]]], [218,[2809.24,11850.3,0],[[181,2],[258,2]]], [219,[2279.47,11293,1.90735e-006],[[182,2],[259,2]]], [220,[2593.68,11227.8,0],[[183,2],[216,2],[256,2]]], [221,[2250.21,13138.9,0],[[184,2],[221,2],[260,2],[261,2]]], +[222,[1857.64,13221.9,0],[[185,2],[262,2]]], [223,[3035.33,12880.7,-2.54313e-006],[[186,2],[263,2],[264,2]]], [224,[2555.48,12820,-1.90735e-006],[[187,2],[265,2]]], [225,[3313.5,12646.6,0],[[188,2],[266,2]]], [226,[2993.17,12414.4,0],[[189,2],[267,2]]], [227,[2809.72,12361.2,0],[[190,2],[268,2]]], +[228,[5276.06,4877.56,0],[[191,2],[269,2]]], [229,[6769.97,4115.38,0],[[194,2],[270,2]]], [230,[4416.75,3547.29,1.90735e-006],[[195,2],[271,2]]], [231,[4266.16,3791.32,0],[[195,2],[272,2]]], [232,[4678.09,3589.59,0],[[196,2],[273,2]]], [233,[4939.41,2834.37,1.90735e-006],[[198,2],[274,2]]], +[234,[4725.85,3363.02,0],[[199,2],[275,2],[276,2]]], [235,[4814.51,3311.18,3.8147e-006],[[468,2],[199,2]]], [236,[9422.7,9981.35,3.8147e-006],[[200,2],[277,2]]], [237,[9903.9,9859.54,0],[[201,2],[278,2]]], [238,[9649.21,9958.63,2.54313e-006],[[201,2],[238,2],[279,2]]], [239,[10260.1,8644.97,0],[[202,2],[280,2]]], +[240,[9647.46,8882.06,0],[[203,2],[281,2]]], [241,[9839.09,8814.11,0],[[203,2]]], [242,[10394.7,10692.7,-5.08626e-006],[[204,2],[282,2],[283,2]]], [243,[11203.5,10690.8,1.52588e-005],[[205,2],[284,2]]], [244,[12274.4,10238.5,0],[[206,2],[285,2]]], [245,[12228.7,10013.3,0],[[207,2],[286,2],[249,2]]], +[246,[11701.1,10244.2,-3.8147e-006],[[208,2],[287,2],[246,2],[288,2]]], [247,[12252.1,9570.06,4.23645],[[209,2]]], [248,[12495.5,9489.67,0],[[209,2],[289,2]]], [249,[12251.8,9928.5,0],[[210,2],[290,2],[245,2]]], [250,[12323.2,8875.87,0],[[211,2],[291,2]]], [251,[11959.6,8530.38,0],[[212,2],[292,2]]], +[252,[3309.82,11503.3,-9.53674e-007],[[213,2],[293,2]]], [253,[3120.65,11179.4,0],[[214,2],[294,2]]], [254,[3078.61,11132.8,-1.58946e-007],[[214,2],[295,2],[296,2],[255,2]]], [255,[3005.99,11093.5,3.17891e-007],[[215,2],[254,2],[297,2],[296,2]]], [256,[2606.27,11186.4,0],[[216,2],[220,2],[298,2]]], [257,[3143.56,11880.7,0],[[217,2],[299,2]]], +[258,[2815.71,11919.5,0],[[218,2]]], [259,[2252.57,11273.5,0],[[219,2]]], [260,[2359.99,13277.3,0],[[221,2],[260,2]]], [261,[2394.1,13026,0],[[221,2],[265,2]]], [262,[1833.45,13283.5,0],[[222,2]]], [263,[3114.51,13049.2,0],[[223,2],[300,2]]], +[264,[3024.43,13010.6,7.62939e-006],[[223,2],[301,2]]], [265,[2446.8,12935.1,0],[[224,2],[261,2]]], [266,[3418.17,12756.2,-9.53674e-007],[[225,2],[302,2]]], [267,[3057.47,12318.8,0],[[226,2],[303,2]]], [268,[2702.71,12339.1,0],[[227,2]]], [269,[5107.97,4950.51,0],[[228,2],[304,2]]], +[270,[6926.88,4108.03,0],[[229,2],[305,2]]], [271,[4388.38,3383.66,0],[[230,2],[306,2]]], [272,[4258.65,3936,0],[[231,2],[307,2]]], [273,[4656.28,3560.93,0],[[232,2]]], [274,[4862.42,2765.39,0],[[233,2],[308,2],[309,2],[274,2],[310,2]]], [275,[4837.78,3457.25,0],[[234,2],[311,2]]], +[276,[4516.79,3375,0],[[234,2],[306,2]]], [277,[9368.21,9984.64,-4.76837e-007],[[236,2],[312,2],[277,2],[313,2]]], [278,[10010.9,9807.97,0],[[237,2],[314,2]]], [279,[9652.17,9970.83,3.8147e-006],[[238,2]]], [280,[10352.9,8525.8,1.52588e-005],[[239,2],[315,2]]], [281,[9546.68,8792.38,1.52588e-005],[[240,2],[316,2]]], +[282,[10355.3,10872.7,0],[[242,2],[317,2]]], [283,[10346.3,10568.5,0],[[242,2],[318,2]]], [284,[11224.3,10707.2,0],[[243,2],[319,2],[320,2]]], [285,[12248.7,10298,-3.8147e-006],[[244,2],[321,2],[322,2],[323,2]]], [286,[12401.8,9985.56,0],[[245,2],[324,2],[290,2]]], [287,[11520.4,10198.2,0],[[246,2],[325,2]]], +[288,[11679.5,10190.7,1.52588e-005],[[246,2]]], [289,[12614.7,9528.06,0],[[248,2],[326,2]]], [290,[12296,10001.8,0],[[249,2],[286,2]]], [291,[12370.2,8664.58,0],[[250,2],[327,2]]], [292,[12019.2,8363.18,0],[[251,2],[328,2]]], [293,[3435.27,11585.9,0],[[252,2],[329,2]]], +[294,[3139.84,11209.8,0],[[253,2]]], [295,[3126.6,11111.3,2.38419e-007],[[254,2],[330,2],[297,2],[295,2],[331,2]]], [296,[3043.86,11089.7,0],[[254,2],[255,2],[296,2]]], [297,[3079.62,11027.5,0],[[255,2],[295,2],[330,2]]], [298,[2496.51,11129.5,0],[[256,2],[332,2],[333,2]]], [299,[3127.15,12035.8,3.8147e-006],[[257,2],[334,2]]], +[300,[3064.99,13160.1,0],[[263,2],[335,2]]], [301,[2942.94,12950.2,0],[[264,2],[336,2]]], [302,[3458.62,12803.9,-1.58946e-007],[[266,2],[337,2],[338,2]]], [303,[3181.44,12282.6,0],[[267,2],[339,2]]], [304,[4996.31,5000.53,0],[[269,2],[340,2]]], [305,[6974.74,4148.42,0],[[270,2],[341,2],[342,2]]], +[306,[4356.08,3344.5,9.53674e-007],[[271,2],[276,2],[343,2],[344,2]]], [307,[4225.4,3992.22,0],[[272,2]]], [308,[4919.53,2622.36,0],[[274,2],[345,2],[346,2]]], [309,[4855.03,2775.81,6.35783e-007],[[274,2]]], [310,[4688.12,2834.77,-3.8147e-006],[[274,2],[347,2]]], [311,[4928.19,3573.19,1.90735e-006],[[275,2],[348,2]]], +[312,[9223.59,10083.1,1.90735e-006],[[277,2],[349,2]]], [313,[9303.32,9839.68,1.27157e-006],[[277,2],[350,2],[351,2]]], [314,[10070,9799.18,0],[[278,2],[352,2],[314,2]]], [315,[10388.3,8487.28,0],[[280,2],[353,2],[354,2]]], [316,[9461.91,8691.67,0],[[281,2],[355,2]]], [317,[10389.9,10957,0],[[282,2],[356,2],[357,2]]], +[318,[10389.9,10482.1,0],[[283,2]]], [319,[11262,10828.2,-5.08626e-006],[[284,2],[358,2],[359,2],[319,2]]], [320,[11260.1,10678.1,0],[[284,2]]], [321,[12241.4,10458.1,1.52588e-005],[[285,2],[360,2]]], [322,[12057.5,10272.9,0],[[285,2],[361,2]]], [323,[12279.7,10362.8,0],[[285,2]]], +[324,[12539.7,9975.44,0],[[286,2],[362,2]]], [325,[11382.9,10165.1,0],[[287,2],[363,2]]], [326,[12687.4,9635.3,0],[[289,2],[364,2]]], [327,[12365.4,8495.11,0],[[291,2],[365,2]]], [328,[12092.3,8279.14,-7.62939e-006],[[292,2],[366,2],[365,2]]], [329,[3577.49,11668.9,-3.8147e-006],[[293,2],[367,2]]], +[330,[3125.68,11052.9,0],[[295,2],[297,2]]], [331,[3211.89,11099.9,0],[[295,2],[368,2]]], [332,[2336.22,11012.4,0],[[298,2],[369,2]]], [333,[2508.17,11057.5,-2.38419e-007],[[298,2]]], [334,[3106.23,12150,0],[[299,2],[339,2]]], [335,[3027.17,13296.9,3.8147e-006],[[300,2],[370,2]]], +[336,[2937.53,13073.6,0],[[301,2]]], [337,[3662.59,12856.4,-9.53674e-007],[[302,2],[371,2]]], [338,[3402.47,12821.5,0],[[302,2]]], [339,[3154.37,12193.2,0],[[303,2],[334,2]]], [340,[4858.73,5077.43,-9.53674e-007],[[304,2],[372,2]]], [341,[7130.77,4247.83,0],[[305,2],[373,2]]], +[342,[7035.58,4142.29,0],[[305,2]]], [343,[4187.67,3222.16,0],[[306,2],[374,2]]], [344,[4168.16,3308.07,0],[[306,2],[375,2]]], [345,[5017.1,2609.06,0],[[308,2]]], [346,[4738.48,2548.21,0],[[308,2],[376,2]]], [347,[4540.63,2894.22,-3.8147e-006],[[310,2],[377,2]]], +[348,[5014.26,3676.46,0],[[311,2],[99,2]]], [349,[9107.19,10134.5,-1.90735e-006],[[312,2],[378,2]]], [350,[9372.92,9735.62,0],[[313,2],[379,2]]], [351,[9128.79,9904.1,0],[[313,2],[380,2]]], [352,[10181.3,9772.41,0],[[314,2]]], [353,[10272.4,8349.02,0],[[315,2],[381,2]]], +[354,[10528.8,8395.46,0],[[315,2],[382,2]]], [355,[9369.24,8622.73,0.542887],[[316,2],[383,2],[384,2]]], [356,[10568.2,11044.6,0],[[317,2],[385,2]]], [357,[10376,10976,-1.52588e-005],[[317,2]]], [358,[11337.9,11013.1,0],[[319,2],[386,2]]], [359,[11253.4,10823.2,0],[[319,2],[359,2]]], +[360,[12283.7,10512.5,0],[[321,2],[387,2],[388,2]]], [361,[12101.6,10392.3,0],[[322,2],[389,2]]], [362,[12712.8,10023.5,0],[[324,2],[390,2]]], [363,[11317.8,10270.5,0],[[325,2],[391,2]]], [364,[12836.2,9732.97,0],[[326,2],[392,2]]], [365,[12242.9,8281.4,3.8147e-006],[[327,2],[328,2],[366,2]]], +[366,[12203.2,8212.51,0],[[328,2],[365,2],[393,2],[394,2]]], [367,[3760.54,11702.1,3.8147e-006],[[329,2],[395,2]]], [368,[3232.03,11063.3,0],[[331,2]]], [369,[2231.07,10895.3,-4.76837e-007],[[332,2],[396,2]]], [370,[3050.27,13417.3,0],[[335,2],[397,2]]], [371,[3695.73,12861.7,-3.17891e-007],[[337,2],[398,2],[399,2]]], +[372,[4838.51,5087.02,-4.76837e-007],[[340,2],[400,2],[372,2],[401,2]]], [373,[7171.51,4243.72,0],[[341,2]]], [374,[4051.25,3110.67,0],[[343,2],[402,2],[403,2]]], [375,[4133.39,3306.78,0],[[344,2]]], [376,[4612.57,2481.58,0],[[346,2],[404,2]]], [377,[4492.44,2965.71,1.27157e-006],[[347,2],[405,2],[406,2]]], +[378,[8990.4,10178.4,0],[[349,2],[407,2]]], [379,[9527.69,9625.75,-7.62939e-006],[[350,2],[408,2]]], [380,[8983.55,9960.34,0],[[351,2],[409,2]]], [381,[10184.7,8219.04,0],[[353,2],[410,2]]], [382,[10599,8295.56,0],[[354,2],[411,2]]], [383,[9295.32,8677.5,0],[[355,2],[412,2],[383,2],[413,2]]], +[384,[9263.89,8332.08,-1.52588e-005],[[355,2],[414,2]]], [385,[10449.4,11229.3,0],[[356,2],[415,2]]], [386,[11444.4,11110,-1.52588e-005],[[358,2],[416,2]]], [387,[12204.7,10562.9,0],[[360,2],[417,2],[418,2]]], [388,[12438.4,10380,0],[[360,2],[419,2]]], [389,[12135.7,10425.4,0],[[361,2]]], +[390,[12820.7,10141.7,0],[[362,2],[420,2]]], [391,[11400.1,10381.6,0],[[363,2],[421,2]]], [392,[12913.5,9798.59,0.708013],[[364,2],[422,2],[392,2]]], [393,[12338.7,8273.36,0],[[366,2],[423,2]]], [394,[12197.2,8146.33,9.53674e-007],[[366,2],[424,2],[394,2],[425,2]]], [395,[3915.32,11696.1,1.90735e-006],[[367,2],[426,2]]], +[396,[2110.57,10812.1,-9.53674e-007],[[369,2],[427,2]]], [397,[3109.65,13540.3,0],[[370,2],[428,2]]], [398,[3763.61,13023.4,-1.90735e-006],[[371,2],[429,2]]], [399,[3806.95,12742.8,0],[[371,2],[430,2]]], [400,[4741.6,5162.55,8.65476],[[372,2],[431,2],[432,2],[400,2]]], [401,[4722.13,5132.88,9.53674e-007],[[372,2],[433,2]]], +[402,[3964.97,2977.07,0],[[374,2],[434,2],[435,2]]], [403,[4192.38,3048.67,0],[[374,2],[406,2]]], [404,[4584.37,2350.6,0],[[376,2],[436,2]]], [405,[4667.48,2951.87,0],[[377,2],[437,2]]], [406,[4345.78,2981.62,0],[[377,2],[403,2]]], [407,[8914.36,10184.1,0],[[378,2],[438,2],[439,2],[440,2]]], +[408,[9690.87,9508.94,0],[[379,2],[441,2]]], [409,[8887.62,10005.4,1.27157e-006],[[380,2],[438,2],[442,2]]], [410,[10154.4,8179.4,-1.01725e-005],[[381,2],[410,2],[443,2]]], [411,[10723.7,8238.58,1.52588e-005],[[382,2],[444,2]]], [412,[9312.75,8663.34,7.62939e-006],[[383,2]]], [413,[9164.69,8718.14,-1.52588e-005],[[383,2]]], +[414,[9147.24,8190.9,0],[[384,2],[445,2]]], [415,[10463.4,11361.9,-1.52588e-005],[[385,2],[446,2]]], [416,[11570.8,11166.4,0],[[386,2],[447,2]]], [417,[12037.2,10590,-3.8147e-006],[[387,2],[417,2],[448,2]]], [418,[12056,10519.8,1.52588e-005],[[387,2],[449,2]]], [419,[12429.3,10228,0],[[388,2]]], +[420,[12896.7,10259.3,0],[[390,2],[450,2]]], [421,[11552.6,10450.3,0],[[391,2],[451,2]]], [422,[13064.4,9937.11,-3.8147e-006],[[392,2],[452,2],[422,2],[453,2]]], [423,[12446.8,8362.53,0],[[393,2],[454,2]]], [424,[12361.8,8008.94,0],[[394,2],[455,2],[456,2]]], [425,[12029.1,8115.6,0],[[394,2],[457,2]]], +[426,[4036.89,11803.8,1.90735e-006],[[395,2],[458,2]]], [427,[1957.13,10748.7,4.76837e-007],[[396,2],[459,2]]], [428,[3188.7,13678.8,0],[[397,2],[460,2]]], [429,[3766.52,13165.7,0],[[398,2],[461,2]]], [430,[3957.95,12714.4,0],[[399,2],[462,2]]], [431,[4460.53,5373.77,22.1895],[[400,2],[463,2]]], +[432,[4767.02,5143.45,5.4509],[[400,2]]], [433,[4619.83,5227.47,2.38419e-007],[[401,2],[464,2]]], [434,[3832.07,2838.21,-9.53674e-007],[[402,2],[465,2]]], [435,[4005.24,2840.33,0],[[402,2],[466,2]]], [436,[4701.02,2274.03,7.62939e-006],[[404,2],[467,2]]], [437,[4740.97,3039.7,-2.54313e-006],[[405,2],[468,2],[469,2]]], +[438,[8889.92,10126.2,0],[[407,2],[409,2],[438,2],[470,2],[439,2]]], [439,[8800.84,10236.4,4.76837e-007],[[407,2],[438,2],[470,2],[439,2],[471,2]]], [440,[8961.82,10295.4,0],[[407,2],[472,2],[471,2]]], [441,[9797.05,9428.82,0],[[408,2],[473,2]]], [442,[8777.63,10086.5,0],[[409,2],[474,2],[470,2]]], [443,[10025.3,8051.93,0],[[410,2],[475,2]]], +[444,[10836.6,8195.36,0],[[411,2],[476,2]]], [445,[9088.5,8019.81,0],[[414,2],[477,2]]], [446,[10382.5,11421,0],[[415,2],[478,2]]], [447,[11688,11192,0],[[416,2],[479,2]]], [448,[12004.8,10599.1,0],[[417,2]]], [449,[11931.4,10550.8,0],[[418,2],[449,2],[480,2],[481,2]]], +[450,[12986.4,10340.4,0],[[420,2],[482,2]]], [451,[11705,10558.9,0],[[421,2],[480,2]]], [452,[13032.4,10132.7,0],[[422,2],[483,2]]], [453,[13205.1,9847.38,1.52588e-005],[[422,2],[484,2]]], [454,[12451.6,8414.76,0],[[423,2]]], [455,[12389.5,7833.7,0],[[424,2],[485,2]]], +[456,[12458.7,8072.21,6.35783e-007],[[424,2],[486,2],[487,2]]], [457,[11844.3,8083.83,7.62939e-006],[[425,2],[488,2]]], [458,[4069.95,11929.9,0],[[426,2],[489,2]]], [459,[1919.49,10653.2,2.38419e-007],[[427,2],[459,2]]], [460,[3320.75,13722.1,0],[[428,2],[490,2]]], [461,[3771.71,13301.7,0],[[429,2],[491,2]]], +[462,[4107.58,12752.3,0],[[430,2],[492,2]]], [463,[4230.28,5546.78,22.1944],[[431,2],[493,2]]], [464,[4585.23,5245.98,0],[[433,2]]], [465,[3705.81,2859.79,0],[[434,2],[494,2]]], [466,[4005.82,2698.41,0],[[435,2],[495,2]]], [467,[4604.97,2178.27,0],[[436,2],[496,2]]], +[468,[4844.58,3186.4,3.8147e-006],[[437,2],[235,2]]], [469,[4704.62,3148.75,0],[[437,2]]], [470,[8763.17,10167.3,0],[[438,2],[439,2],[442,2],[497,2],[498,2]]], [471,[8850.39,10281.1,0],[[439,2],[440,2],[499,2]]], [472,[9005.59,10354.2,4.76837e-007],[[440,2],[500,2],[472,2],[501,2]]], [473,[9911.21,9348.61,7.62939e-006],[[441,2],[502,2]]], +[474,[8739.43,10122,0],[[442,2],[503,2]]], [475,[9862.18,8002.62,0],[[443,2],[504,2]]], [476,[10945.5,8130.63,1.11514],[[444,2],[476,2],[505,2]]], [477,[9068.53,7915.28,0],[[445,2],[506,2],[507,2],[477,2]]], [478,[10524.1,11520.1,0],[[446,2],[508,2]]], [479,[11824.1,11146.9,0],[[447,2],[509,2]]], +[480,[11786.3,10564.9,0],[[449,2],[451,2]]], [481,[11940.1,10708.5,0],[[449,2],[510,2]]], [482,[13003.2,10477.8,0],[[450,2],[511,2]]], [483,[13091.6,10258.5,0],[[452,2],[512,2]]], [484,[13287.7,9725.83,-5.08626e-006],[[453,2],[484,2],[513,2]]], [485,[12428.7,7701.14,0],[[455,2],[514,2]]], +[486,[12633.9,8076.96,0],[[456,2],[515,2]]], [487,[12495.8,7937.03,0],[[456,2],[516,2]]], [488,[11699.5,8035.62,0],[[457,2],[517,2]]], [489,[4066.59,12072.8,0],[[458,2],[518,2]]], [490,[3433.07,13712.3,-1.90735e-006],[[460,2],[519,2]]], [491,[3791.9,13332.6,6.81196e-008],[[461,2],[520,2],[521,2],[522,2],[523,2],[524,2],[525,2]]], +[492,[4209.01,12652.9,0],[[462,2],[526,2]]], [493,[4091.53,5648.68,7.39968],[[463,2],[493,2],[527,2]]], [494,[3601.23,2938.96,-4.76837e-007],[[465,2],[528,2]]], [495,[4005.41,2623.67,0],[[466,2]]], [496,[4497.36,2056.95,0],[[467,2],[529,2]]], [497,[8726.48,10125.3,0],[[470,2]]], +[498,[8761.67,10211.5,0],[[535,2],[470,2]]], [499,[8802.97,10356.1,0],[[471,2],[530,2]]], [500,[9022.53,10523.2,0],[[472,2],[531,2]]], [501,[9139.57,10329.3,0],[[472,2],[532,2]]], [502,[10021.3,9384.75,0],[[473,2],[533,2]]], [503,[8645.48,10093.7,0],[[474,2],[534,2],[503,2],[535,2]]], +[504,[9821.17,8001.61,0],[[475,2],[536,2],[504,2]]], [505,[11084.2,8081.39,1.27418],[[476,2],[537,2],[538,2],[505,2]]], [506,[8873.94,7918.34,0],[[477,2],[539,2]]], [507,[9236,7914,7.62939e-006],[[477,2],[540,2]]], [508,[10569.9,11585.4,0],[[478,2],[541,2],[542,2]]], [509,[11848.9,11124.4,0],[[479,2]]], +[510,[12041.1,10794.4,1.52588e-005],[[481,2],[543,2]]], [511,[13037.6,10632.6,0],[[482,2],[544,2]]], [512,[13125,10395.8,0],[[483,2],[545,2]]], [513,[13330.7,9612.76,0],[[484,2],[546,2],[547,2]]], [514,[12457.5,7652.93,0],[[485,2],[548,2],[514,2]]], [515,[12765.9,8087.12,0],[[486,2],[549,2]]], +[516,[12517.1,7812.96,1.90735e-006],[[487,2],[550,2]]], [517,[11562.1,8018.49,0],[[488,2],[551,2]]], [518,[4115.27,12203.9,0],[[489,2],[552,2]]], [519,[3594.94,13722,0],[[490,2],[553,2]]], [520,[3884.66,13365.9,0],[[491,2],[520,2],[554,2]]], [521,[3838.94,13391.9,0],[[491,2],[555,2],[525,2],[556,2]]], +[522,[3953.75,13280.4,0],[[491,2],[557,2]]], [523,[3923.1,13348.3,0],[[491,2],[557,2]]], [524,[3669.3,13501.6,0],[[491,2],[558,2]]], [525,[3778.58,13432.4,0],[[491,2],[521,2],[555,2],[558,2]]], [526,[4211.96,12517,0],[[492,2],[552,2]]], [527,[3882.88,5851.44,0],[[493,2],[559,2]]], +[528,[3477.8,2930.84,0],[[494,2],[560,2],[561,2]]], [529,[4356.41,2051.25,0],[[496,2],[562,2]]], [530,[8737.31,10408.9,1.27157e-006],[[499,2],[530,2],[563,2]]], [531,[9017.15,10552.4,0],[[500,2],[564,2],[565,2]]], [532,[9221.73,10461.1,0],[[501,2],[566,2]]], [533,[10095.4,9306.19,0],[[502,2],[567,2]]], +[534,[8544.53,9994.03,0],[[503,2],[568,2]]], [535,[8625.03,10148.7,0],[[503,2],[569,2],[498,2]]], [536,[9716.92,8027.69,0],[[504,2],[570,2],[571,2],[536,2]]], [537,[11179.2,8081.29,2.54313e-006],[[505,2],[572,2],[573,2]]], [538,[11062.1,8083.94,1.91127],[[505,2]]], [539,[8716.53,7914.44,0],[[506,2],[574,2]]], +[540,[9384.63,7981.84,-7.62939e-006],[[507,2],[575,2]]], [541,[10647.9,11587.4,-1.01725e-005],[[508,2],[576,2],[577,2]]], [542,[10490,11698.3,0],[[508,2],[578,2]]], [543,[12074.8,10798.8,0],[[510,2]]], [544,[13066,10658.3,-1.90735e-006],[[511,2],[579,2],[545,2],[580,2]]], [545,[13137.8,10531.1,0],[[512,2],[544,2],[581,2],[545,2]]], +[546,[13450.3,9460.09,-1.52588e-005],[[513,2],[582,2]]], [547,[13418.3,9559.74,0],[[513,2],[583,2],[584,2]]], [548,[12602.6,7564.38,0],[[514,2],[585,2]]], [549,[12893.9,8103.33,0],[[515,2],[586,2]]], [550,[12594.2,7714.84,0],[[516,2],[587,2]]], [551,[11527.8,8020.26,3.8147e-006],[[517,2],[572,2],[588,2],[589,2]]], +[552,[4171.22,12345.3,0],[[518,2],[526,2]]], [553,[3725.59,13788.1,0],[[519,2],[590,2]]], [554,[4023.08,13473.5,-9.53674e-007],[[520,2],[591,2]]], [555,[3833.6,13455.4,4.76837e-007],[[521,2],[525,2],[592,2],[593,2]]], [556,[3909.12,13429.3,4.76837e-007],[[521,2],[594,2],[595,2],[556,2]]], [557,[4038.39,13321.2,0],[[522,2],[523,2],[596,2]]], +[558,[3761.7,13547.4,0],[[524,2],[525,2],[597,2],[592,2],[598,2],[593,2]]], [559,[3799.33,5985.21,0],[[527,2],[599,2]]], [560,[3386.41,3086.94,0],[[528,2],[600,2]]], [561,[3592.02,2771.85,9.53674e-007],[[528,2],[601,2]]], [562,[4217.88,2054.87,0],[[529,2],[602,2]]], [563,[8596.37,10498,0],[[530,2],[603,2]]], +[564,[9037.9,10726.2,0],[[531,2],[604,2]]], [565,[8862.89,10557.6,0],[[531,2],[605,2]]], [566,[9265.84,10523.1,-2.54313e-006],[[532,2],[606,2],[607,2]]], [567,[10097.5,9230.97,0],[[533,2]]], [568,[8522.22,9978.53,0],[[534,2],[608,2],[568,2],[609,2]]], [569,[8462.43,10225.3,0],[[535,2],[610,2]]], +[570,[9560.68,7986.52,0],[[536,2],[575,2]]], [571,[9739.09,8025.82,7.62939e-006],[[536,2]]], [572,[11310.1,8104.92,0],[[537,2],[551,2],[572,2]]], [573,[11114.4,7985.41,-7.62939e-006],[[537,2],[611,2]]], [574,[8585.55,7903.42,0],[[539,2],[612,2],[613,2]]], [575,[9417.44,7959.33,-5.08626e-006],[[540,2],[570,2],[614,2]]], +[576,[10836.8,11636,0],[[541,2],[615,2]]], [577,[10770.9,11486.5,0],[[541,2],[616,2]]], [578,[10327.8,11658.2,0],[[542,2],[617,2]]], [579,[13151.1,10803.2,-7.62939e-006],[[544,2],[618,2]]], [580,[13027.2,10814.4,7.62939e-006],[[544,2],[619,2]]], [581,[13139.3,10504.8,0],[[545,2]]], +[582,[13608.7,9392.9,7.62939e-006],[[546,2],[620,2]]], [583,[13525.5,9535.25,-1.52588e-005],[[547,2],[621,2]]], [584,[13441.8,9590.93,1.52588e-005],[[547,2]]], [585,[12726.9,7512.73,0],[[548,2],[622,2]]], [586,[13014.8,8112.95,-7.62939e-006],[[549,2],[623,2]]], [587,[12743.2,7672.7,0],[[550,2],[624,2]]], +[588,[11533.1,8049.28,0],[[551,2]]], [589,[11527,7723.28,0],[[551,2],[625,2]]], [590,[3827.94,13847.8,0],[[553,2],[626,2]]], [591,[4056.43,13583.1,0],[[554,2],[627,2],[628,2],[629,2],[594,2]]], [592,[3809.66,13538.8,6.35783e-007],[[555,2],[558,2],[598,2],[597,2]]], [593,[3858.48,13546.7,9.53674e-007],[[555,2],[558,2],[630,2],[631,2],[598,2]]], +[594,[3962.43,13507.5,-6.35783e-007],[[556,2],[591,2],[632,2],[633,2]]], [595,[3900.42,13429.3,0],[[556,2]]], [596,[4082.34,13457.6,-1.90735e-006],[[557,2],[628,2]]], [597,[3779.88,13509.2,6.35783e-007],[[558,2],[592,2]]], [598,[3811.04,13624,0],[[558,2],[592,2],[593,2],[598,2],[631,2],[634,2]]], [599,[3714.79,6148.44,0],[[559,2],[635,2]]], +[600,[3272.61,3223.14,-1.90735e-006],[[560,2],[636,2]]], [601,[3628.25,2628.04,-1.90735e-006],[[561,2],[637,2]]], [602,[4051.21,2046.34,-7.62939e-006],[[562,2],[638,2]]], [603,[8471.58,10578.2,0],[[563,2],[639,2]]], [604,[9049.3,10805.6,0],[[564,2],[640,2],[641,2]]], [605,[8727.21,10567.2,0],[[565,2],[642,2]]], +[606,[9345.51,10696.7,0],[[566,2],[643,2]]], [607,[9401.43,10487.6,0],[[566,2],[644,2]]], [608,[8401.49,9832.55,0],[[568,2],[645,2]]], [609,[8507.69,10086.4,0],[[568,2],[646,2]]], [610,[8384.15,10251,0],[[569,2],[647,2],[610,2],[648,2]]], [611,[11071.3,7909.37,0],[[573,2],[649,2],[650,2]]], +[612,[8418.71,7907.67,0],[[574,2],[651,2]]], [613,[8595.01,7752,0],[[574,2],[652,2]]], [614,[9455.88,7788.52,0],[[575,2],[653,2]]], [615,[11011.9,11671.5,0],[[576,2],[654,2]]], [616,[10919.8,11452.9,0],[[577,2],[655,2]]], [617,[10152,11638.2,0],[[578,2],[656,2]]], +[618,[13233.2,10969.8,-3.8147e-006],[[579,2],[657,2]]], [619,[13075.5,10961.8,0],[[580,2],[658,2]]], [620,[13748.4,9369.74,0],[[582,2],[659,2]]], [621,[13525.2,9570.08,0],[[583,2]]], [622,[12798.1,7452.75,0],[[585,2],[660,2],[661,2]]], [623,[13151.5,8099.36,0],[[586,2],[662,2]]], +[624,[12834.5,7561.22,0],[[587,2],[661,2],[663,2]]], [625,[11522.7,7480.72,0],[[589,2],[664,2]]], [626,[3927.68,13795.1,9.53674e-007],[[590,2],[627,2]]], [627,[4032.77,13716.6,-2.38419e-007],[[591,2],[626,2],[634,2],[665,2]]], [628,[4115.48,13587.5,0],[[591,2],[596,2],[666,2]]], [629,[4018.95,13561.7,0],[[591,2],[630,2]]], +[630,[3970.05,13570.3,1.90735e-006],[[593,2],[629,2]]], [631,[3839.03,13561.8,0],[[593,2],[598,2]]], [632,[4013.11,13549.2,0],[[594,2]]], [633,[3899.44,13461.8,9.53674e-007],[[594,2]]], [634,[3936.21,13723.5,0],[[598,2],[627,2]]], [635,[3659.76,6259.08,0],[[599,2],[667,2],[668,2]]], +[636,[3205.45,3325.92,0],[[600,2],[669,2],[670,2]]], [637,[3618.96,2495.85,0],[[601,2],[671,2]]], [638,[3908.89,2083.44,0],[[602,2],[672,2]]], [639,[8437.99,10599.8,0],[[603,2]]], [640,[9159.15,10902.6,0],[[604,2],[673,2]]], [641,[9006.18,10964.2,0],[[604,2],[674,2]]], +[642,[8624.11,10705,7.62939e-006],[[605,2],[675,2]]], [643,[9372.7,10837.8,0],[[606,2],[673,2]]], [644,[9506.78,10544.2,0],[[607,2],[676,2]]], [645,[8313.96,9742.34,-4.76837e-007],[[608,2],[677,2],[645,2],[678,2]]], [646,[8404.86,10155.7,0],[[609,2],[679,2],[680,2]]], [647,[8337.71,10303.2,0],[[610,2],[681,2]]], +[648,[8421.63,10340,0],[[610,2],[682,2],[681,2]]], [649,[11047.8,7868.49,0],[[611,2],[683,2],[649,2]]], [650,[11200.2,7882.27,0],[[611,2],[684,2]]], [651,[8391.2,7912.86,0],[[612,2],[685,2],[686,2]]], [652,[8600.63,7693.47,-9.53674e-007],[[613,2],[687,2],[688,2],[689,2]]], [653,[9476.41,7675.85,0],[[614,2],[690,2]]], +[654,[11159.2,11664.6,0],[[615,2],[691,2]]], [655,[10961.3,11463.8,0],[[616,2],[655,2],[692,2],[693,2]]], [656,[9977.16,11650.3,3.05176e-005],[[617,2],[694,2]]], [657,[13309.5,11093.4,0],[[618,2],[695,2]]], [658,[13066.5,10993.1,4.00157],[[619,2],[658,2],[696,2]]], [659,[13844.2,9288.02,0],[[620,2],[697,2]]], +[660,[12778.6,7305.83,0],[[622,2],[698,2],[660,2],[699,2],[661,2]]], [661,[12888.5,7386.05,0],[[622,2],[624,2],[660,2],[700,2],[699,2]]], [662,[13234.5,7995.03,0],[[623,2],[701,2]]], [663,[12699.2,7614.19,0],[[624,2]]], [664,[11581,7344.65,0],[[625,2],[702,2]]], [665,[4146.39,13734.9,-1.90735e-006],[[627,2],[666,2]]], +[666,[4169,13697.7,3.8147e-006],[[628,2],[665,2]]], [667,[3552.49,6390.71,0],[[635,2],[703,2]]], [668,[3553.06,6157.82,0],[[635,2],[704,2]]], [669,[3309.15,3323.68,0],[[636,2]]], [670,[3170.35,3385.04,0],[[636,2],[705,2],[706,2]]], [671,[3580.79,2375.86,0],[[637,2],[707,2],[708,2]]], +[672,[3779.8,2151.53,0],[[638,2],[709,2]]], [673,[9272.4,10995.2,0],[[640,2],[643,2],[710,2]]], [674,[8982.42,11102.9,0],[[641,2],[711,2]]], [675,[8511.7,10813.9,-7.62939e-006],[[642,2],[712,2]]], [676,[9525.67,10583,0],[[644,2],[713,2],[676,2]]], [677,[8267.2,9612.93,-6.35783e-007],[[645,2],[714,2],[715,2]]], +[678,[8206.21,9839.73,4.76837e-007],[[645,2],[716,2],[717,2],[718,2]]], [679,[8267.08,10265.9,-1.90735e-006],[[646,2],[719,2],[682,2]]], [680,[8250.41,10150.7,0],[[646,2],[720,2]]], [681,[8335.77,10332.6,0],[[647,2],[648,2],[681,2],[682,2]]], [682,[8306.72,10391.2,4.76837e-007],[[648,2],[679,2],[681,2],[721,2],[719,2]]], [683,[10912.7,7860.81,0],[[649,2],[683,2]]], +[684,[11268.3,7857.72,-7.62939e-006],[[650,2]]], [685,[8223.71,7907.48,-1.90735e-006],[[651,2],[722,2]]], [686,[8338.29,8054.1,3.8147e-006],[[651,2],[723,2]]], [687,[8430.22,7690.3,0],[[652,2],[724,2]]], [688,[8608.06,7667.71,0],[[652,2]]], [689,[8801.21,7689.92,7.62939e-006],[[652,2],[725,2]]], +[690,[9490.96,7590.77,0],[[653,2],[726,2],[727,2]]], [691,[11262.7,11630.2,1.01725e-005],[[654,2],[728,2],[729,2],[691,2]]], [692,[11007.8,11553.2,0],[[655,2],[730,2]]], [693,[11137.9,11454.9,0],[[655,2],[731,2]]], [694,[9850.15,11726.5,0],[[656,2],[732,2]]], [695,[13322.6,11242.6,0],[[657,2],[733,2]]], +[696,[12937.1,11225.6,-7.62939e-006],[[658,2],[734,2]]], [697,[13974.1,9247.8,0],[[659,2],[735,2]]], [698,[12760.7,7240.68,0],[[660,2],[736,2],[737,2]]], [699,[12912.9,7342.76,0],[[660,2],[661,2],[699,2],[700,2]]], [700,[12906.8,7338.16,0],[[700,2],[699,2]]], [701,[13372,7906.85,0],[[662,2],[738,2]]], +[702,[11650.3,7237.81,0],[[664,2],[739,2]]], [703,[3457.39,6495.71,1.90735e-006],[[667,2],[740,2]]], [704,[3446.65,6058.89,0],[[668,2],[741,2]]], [705,[3029.48,3532.67,-6.35783e-007],[[670,2],[742,2],[743,2]]], [706,[2989.94,3362.51,0],[[670,2],[744,2]]], [707,[3569.64,2203.35,-3.8147e-006],[[671,2],[745,2]]], +[708,[3409.97,2387.97,0],[[671,2],[746,2]]], [709,[3657.16,2146.31,0],[[672,2],[745,2]]], [710,[9303.3,11147.4,7.62939e-006],[[673,2],[747,2],[748,2]]], [711,[9005.07,11239,-2.54313e-006],[[674,2],[749,2],[711,2]]], [712,[8423.53,10889.4,-2.54313e-006],[[675,2],[750,2],[712,2]]], [713,[9552.77,10765.1,7.62939e-006],[[676,2],[751,2]]], +[714,[8170.37,9449.1,1.90735e-006],[[677,2],[752,2]]], [715,[8405.21,9528.13,3.8147e-006],[[677,2],[753,2]]], [716,[8133.72,9724.84,0],[[678,2],[754,2]]], [717,[8127.96,9978.06,0],[[678,2],[755,2],[717,2],[720,2]]], [718,[8054.45,9841.65,1.90735e-006],[[678,2]]], [719,[8229.5,10342.1,0],[[679,2],[682,2],[756,2]]], +[720,[8153.41,10048.5,0],[[680,2],[717,2]]], [721,[8206.83,10387.3,0],[[682,2]]], [722,[8136.46,7925.79,-4.76837e-007],[[685,2],[757,2],[758,2],[759,2]]], [723,[8378.19,8109.14,0],[[686,2]]], [724,[8282.36,7679.43,9.53674e-007],[[687,2],[760,2]]], [725,[8946.19,7670.7,0],[[689,2],[761,2]]], +[726,[9642.27,7478.88,0],[[690,2],[762,2]]], [727,[9448.86,7464.32,0],[[690,2],[763,2],[764,2]]], [728,[11422.2,11534.2,0],[[691,2],[765,2]]], [729,[11245.8,11638.1,-3.05176e-005],[[691,2],[766,2],[729,2]]], [730,[11036.9,11555.9,0],[[692,2]]], [731,[11157.1,11536.7,0],[[693,2]]], +[732,[9707.66,11825.9,3.05176e-005],[[694,2],[767,2]]], [733,[13340.2,11369.1,0],[[695,2],[768,2]]], [734,[12921.9,11371.9,1.27157e-006],[[696,2],[769,2],[770,2]]], [735,[14120.1,9112.06,0],[[697,2],[771,2]]], [736,[12762,7065.87,0],[[698,2],[772,2]]], [737,[12698.5,7299.62,0],[[698,2]]], +[738,[13510.3,7883.75,0],[[701,2],[773,2]]], [739,[11674.4,7095.6,0],[[702,2],[774,2]]], [740,[3365.47,6608.94,0],[[703,2],[775,2]]], [741,[3345.93,5961.73,1.90735e-006],[[704,2],[776,2]]], [742,[2916.39,3540.47,-3.17891e-007],[[705,2],[777,2],[744,2]]], [743,[3065.55,3674.63,-4.76837e-007],[[705,2]]], +[744,[2901.91,3368.84,-6.35783e-007],[[706,2],[742,2],[778,2]]], [745,[3580.75,2182.34,0],[[707,2],[709,2],[779,2]]], [746,[3263.2,2408.74,0],[[708,2],[780,2]]], [747,[9399.71,11230.5,0],[[710,2]]], [748,[9350.65,11200.5,0],[[816,2],[891,2],[710,2]]], [749,[9041.88,11435.6,0],[[711,2],[781,2]]], +[750,[8422.38,10928.9,-7.62939e-006],[[712,2]]], [751,[9557.56,10921.4,7.62939e-006],[[713,2],[782,2]]], [752,[8080.1,9332.06,0],[[714,2],[783,2]]], [753,[8444.59,9408.66,-7.62939e-006],[[715,2],[784,2]]], [754,[8013.25,9694.39,0],[[716,2],[785,2]]], [755,[7988.71,10022.6,-3.8147e-006],[[717,2],[786,2]]], +[756,[8055.23,10479.1,0],[[719,2],[787,2]]], [757,[8167.83,7806.36,3.17891e-007],[[722,2],[760,2],[788,2]]], [758,[7942.56,7911.88,0],[[722,2],[789,2]]], [759,[8112.2,8018.9,0],[[722,2]]], [760,[8191.44,7662.1,1.19209e-007],[[724,2],[757,2],[790,2],[791,2],[788,2]]], [761,[9103.25,7616.3,0],[[725,2],[792,2]]], +[762,[9752.37,7465.28,0],[[726,2],[793,2],[794,2]]], [763,[9439.72,7494.7,0],[[727,2]]], [764,[9376.25,7390.3,0],[[727,2],[795,2],[796,2]]], [765,[11440.5,11521.8,0],[[728,2],[797,2],[765,2]]], [766,[11235.3,11645.5,1.52588e-005],[[729,2]]], [767,[9606.43,11930,0],[[732,2],[798,2]]], +[768,[13360.1,11421.1,1.43051e-006],[[733,2],[799,2],[800,2],[801,2]]], [769,[12991.7,11539.7,0],[[734,2],[802,2]]], [770,[12746.1,11354.8,7.62939e-006],[[734,2],[803,2]]], [771,[14243.8,8987.64,0],[[735,2],[804,2]]], [772,[12724.6,6928.37,0],[[736,2],[805,2]]], [773,[13634.6,7906.37,-1.90735e-006],[[738,2],[806,2]]], +[774,[11687.5,6950.58,0],[[739,2],[807,2]]], [775,[3356.2,6627.97,3.17891e-007],[[740,2],[808,2],[809,2]]], [776,[3291.94,5908.13,0],[[741,2]]], [777,[2787.28,3648.74,0],[[742,2],[810,2],[777,2],[811,2]]], [778,[2953.43,3208.43,0],[[744,2],[812,2]]], [779,[3405.44,2181.02,0],[[745,2],[813,2]]], +[780,[3253.73,2552.68,7.62939e-006],[[746,2],[814,2]]], [781,[8841.63,11579.9,0],[[749,2],[815,2]]], [782,[9537.32,10958.4,0],[[751,2],[816,2],[782,2]]], [783,[8006.73,9212.52,0],[[752,2],[817,2]]], [784,[8487.98,9330.68,0],[[753,2],[818,2],[819,2]]], [785,[7937.1,9681.71,-3.8147e-006],[[754,2]]], +[786,[7954.86,10049.7,-1.27157e-006],[[755,2],[820,2],[821,2]]], [787,[7963.72,10579.2,0],[[756,2],[822,2],[823,2]]], [788,[8097.98,7707.26,0],[[757,2],[760,2],[791,2]]], [789,[7918.49,7905.98,0],[[758,2],[824,2],[825,2]]], [790,[8213.2,7508.27,0],[[760,2],[826,2]]], [791,[8079.98,7673.9,2.38419e-007],[[760,2],[788,2],[791,2],[827,2]]], +[792,[9259.15,7583.82,0],[[761,2],[796,2]]], [793,[9911.39,7469.03,0],[[762,2],[828,2]]], [794,[9775.49,7494.81,-7.62939e-006],[[762,2]]], [795,[9230.02,7268.77,0],[[764,2],[829,2]]], [796,[9288,7476.11,-1.90735e-006],[[764,2],[792,2]]], [797,[11611.4,11499.1,0],[[765,2],[830,2]]], +[798,[9586.03,12077.1,0],[[767,2],[831,2]]], [799,[13385.2,11528.5,0],[[768,2]]], [800,[13267.1,11536.9,-1.90735e-006],[[768,2],[832,2]]], [801,[13488.4,11355.8,0],[[768,2],[833,2]]], [802,[13079.1,11620.6,0],[[769,2],[834,2]]], [803,[12602,11351.2,-7.62939e-006],[[770,2],[835,2]]], +[804,[14368.1,8887.64,-2.38419e-007],[[771,2],[836,2],[837,2],[838,2]]], [805,[12618.1,6834,0],[[772,2],[839,2],[840,2]]], [806,[13785,7943.6,1.90735e-006],[[773,2],[841,2]]], [807,[11731,6905.3,-6.35783e-007],[[774,2],[842,2],[807,2]]], [808,[3280.34,6729.66,0],[[775,2],[843,2],[844,2]]], [809,[3430.44,6702.98,0],[[775,2],[845,2],[846,2]]], +[810,[2638.51,3738.84,0],[[777,2],[847,2]]], [811,[2693.15,3515.04,0],[[777,2],[848,2]]], [812,[3016.78,3100.7,0],[[778,2],[849,2]]], [813,[3289.5,2147.55,0],[[779,2],[850,2]]], [814,[3158.29,2651.61,0],[[780,2],[851,2],[852,2]]], [815,[8874.62,11711.7,0],[[781,2],[853,2]]], +[816,[9448.79,11124.7,0],[[782,2],[748,2]]], [817,[7943.56,9109.56,0],[[783,2],[854,2]]], [818,[8619.82,9282.39,0],[[784,2],[855,2]]], [819,[8361.23,9245.85,3.8147e-006],[[784,2],[856,2]]], [820,[7863.7,10208.8,7.62939e-006],[[786,2],[857,2]]], [821,[7824.08,9988.26,0],[[786,2],[858,2]]], +[822,[7872.61,10534,2.54313e-006],[[787,2],[859,2],[860,2]]], [823,[8057.92,10659.1,0],[[787,2],[861,2]]], [824,[7917.25,7857.66,2.38419e-007],[[789,2],[862,2],[824,2],[827,2]]], [825,[7754.8,7997.14,0],[[789,2],[863,2]]], [826,[8227.44,7441.05,4.76837e-007],[[790,2],[826,2],[864,2],[865,2]]], [827,[7970.55,7794.42,0],[[791,2],[866,2],[824,2]]], +[828,[10059.6,7458.72,7.62939e-006],[[793,2],[867,2]]], [829,[9171.47,7200.4,3.17891e-007],[[795,2],[868,2],[869,2]]], [830,[11742.1,11501.7,0],[[797,2],[870,2]]], [831,[9535.54,12155.6,0],[[798,2],[871,2]]], [832,[13235.6,11675.6,0],[[800,2],[834,2]]], [833,[13450.4,11165.7,0],[[801,2],[872,2]]], +[834,[13086,11648.5,0],[[802,2],[832,2],[873,2]]], [835,[12471.2,11311,5.08626e-006],[[803,2],[874,2],[875,2]]], [836,[14380.7,8717.93,-9.53674e-007],[[804,2],[876,2]]], [837,[14395.4,9052.67,0],[[804,2],[877,2]]], [838,[14462.8,8903.89,0],[[804,2]]], [839,[12433.7,6813.32,3.8147e-006],[[805,2],[878,2]]], +[840,[12647.8,6690.74,0],[[805,2],[879,2]]], [841,[13932.2,7966.47,0],[[806,2],[880,2]]], [842,[11825.4,6724.02,0],[[807,2],[881,2],[882,2]]], [843,[3180.4,6866.56,0],[[808,2],[883,2]]], [844,[3212.91,6611.66,0],[[808,2],[884,2]]], [845,[3441.72,6758.16,-1.19209e-007],[[809,2],[845,2],[885,2]]], +[846,[3466.79,6663.81,0],[[809,2]]], [847,[2520.2,3807.7,0],[[810,2],[886,2]]], [848,[2578.72,3492.35,0],[[811,2],[887,2]]], [849,[3079.78,2953.95,0],[[812,2],[888,2]]], [850,[3157.39,2096.83,0],[[813,2],[889,2]]], [851,[3103.98,2716.36,-2.54313e-006],[[814,2],[888,2],[852,2]]], +[852,[3099.16,2690.31,0],[[851,2],[814,2]]], [853,[8996.56,11795.2,0],[[815,2],[890,2]]], [854,[7837.61,8929.33,0],[[817,2],[892,2],[893,2]]], [855,[8633.36,9139.08,0],[[818,2],[894,2]]], [856,[8261.11,9158,3.8147e-006],[[819,2],[895,2]]], [857,[7765.01,10292.7,0],[[820,2],[896,2]]], +[858,[7659.44,9960.6,0],[[821,2],[897,2]]], [859,[7973.07,10407.4,0],[[822,2]]], [860,[7748.41,10651.9,0],[[822,2],[898,2]]], [861,[8156.06,10586.5,0],[[823,2]]], [862,[7880.17,7734.93,1.19209e-007],[[824,2],[899,2],[900,2],[866,2]]], [863,[7619.64,7946.98,0],[[825,2],[901,2]]], +[864,[8238.9,7281.11,0],[[826,2],[902,2],[903,2]]], [865,[8313.6,7375.97,0],[[826,2],[904,2],[865,2],[905,2]]], [866,[7933.26,7798.69,4.76837e-007],[[827,2],[862,2]]], [867,[10202.8,7414.44,0],[[828,2],[906,2]]], [868,[9060.08,7053.98,0],[[829,2],[907,2]]], [869,[9044.3,7317.36,1.90735e-006],[[829,2],[908,2]]], +[870,[11858.2,11580.7,0],[[830,2],[909,2]]], [871,[9499.74,12020.4,0],[[831,2],[910,2]]], [872,[13401.9,10988.4,0],[[833,2],[911,2]]], [873,[12991.9,11737.3,0],[[834,2],[912,2],[913,2],[914,2]]], [874,[12393.2,11253,1.52588e-005],[[835,2],[874,2]]], [875,[12372.9,11456.6,0],[[835,2],[915,2]]], +[876,[14259.4,8629.67,0],[[836,2],[916,2]]], [877,[14328.6,9182.88,1.90735e-006],[[837,2],[917,2]]], [878,[12270.7,6759.65,0],[[839,2],[918,2]]], [879,[12654,6652.03,-1.90735e-006],[[840,2]]], [880,[13995,8093.29,4.76837e-007],[[841,2],[919,2]]], [881,[11694.9,6619.99,-3.17891e-007],[[842,2],[920,2],[921,2]]], +[882,[11984.3,6702.9,1.90735e-006],[[842,2],[922,2]]], [883,[3016.23,6912.22,0],[[843,2],[923,2]]], [884,[3207,6489.95,0],[[844,2],[924,2]]], [885,[3399.94,6783.96,-3.97364e-008],[[845,2],[885,2],[925,2]]], [886,[2426.13,3884.31,0],[[847,2],[926,2]]], [887,[2449.83,3472.16,-9.53674e-007],[[848,2],[927,2]]], +[888,[3115.87,2822.6,-3.8147e-006],[[849,2],[851,2]]], [889,[3003.19,2157.11,-7.62939e-006],[[850,2],[928,2]]], [890,[8879.28,11849.8,0],[[853,2],[929,2]]], [891,[9330.04,11187.5,0],[[748,2],[891,2]]], [892,[7727.16,8820.2,0],[[854,2],[930,2]]], [893,[7975.82,8916.72,0],[[854,2],[931,2],[932,2]]], +[894,[8601.22,8987.39,-7.62939e-006],[[855,2],[933,2]]], [895,[8154.77,9065.48,0],[[856,2],[931,2]]], [896,[7644.27,10367.2,0],[[857,2],[934,2]]], [897,[7509.34,9962.65,-7.62939e-006],[[858,2],[935,2]]], [898,[7738.39,10663.3,0],[[860,2],[936,2],[937,2]]], [899,[7954.76,7548.84,0],[[862,2],[938,2],[939,2]]], +[900,[7716.84,7723.29,0],[[862,2],[940,2]]], [901,[7470.23,7945.5,0],[[863,2],[941,2]]], [902,[8274.61,7201.76,0],[[864,2],[903,2]]], [903,[8273.67,7203.87,0],[[902,2],[864,2]]], [904,[8416.57,7291.1,0],[[865,2]]], [905,[8448.31,7488.11,0],[[865,2]]], +[906,[10345.3,7309.49,0],[[867,2],[942,2]]], [907,[9075.62,6897.4,0],[[868,2],[943,2]]], [908,[8986.73,7352.73,-3.8147e-006],[[869,2]]], [909,[11962.3,11673.2,0],[[870,2],[944,2]]], [910,[9414,12019.1,0],[[871,2],[945,2]]], [911,[13485.1,10878.1,0],[[872,2],[946,2]]], +[912,[12862.7,11633.1,0],[[873,2]]], [913,[12881.1,11807.3,0],[[873,2]]], [914,[13099.4,11878.1,0],[[873,2],[947,2]]], [915,[12278.4,11573.8,0],[[875,2],[944,2]]], [916,[14240.9,8484.4,2.38419e-007],[[876,2],[948,2]]], [917,[14416.1,9297.68,0],[[877,2],[949,2]]], +[918,[12244.6,6746.57,0],[[878,2],[922,2],[950,2]]], [919,[13971.1,8197.41,0],[[880,2],[951,2],[952,2]]], [920,[11594.1,6429.84,0],[[881,2],[953,2]]], [921,[11826.9,6582.58,2.38419e-007],[[881,2],[954,2]]], [922,[12024.3,6700.69,0],[[882,2],[918,2],[922,2],[955,2]]], [923,[2915.63,6911.61,0],[[883,2],[956,2],[957,2]]], +[924,[3084.25,6410.39,0],[[884,2],[958,2]]], [925,[3369.68,6828.56,2.38419e-007],[[885,2]]], [926,[2362.9,4013.53,0],[[886,2],[959,2],[960,2]]], [927,[2390.53,3444.25,-3.17891e-007],[[887,2],[961,2],[962,2]]], [928,[2873.7,2258.91,0],[[889,2],[963,2]]], [929,[8799.04,11943,0],[[890,2],[964,2]]], +[930,[7591.16,8768.59,-6.35783e-007],[[892,2],[965,2],[966,2]]], [931,[8108.19,9025.11,0],[[893,2],[895,2]]], [932,[8080.47,8816.41,0],[[893,2],[967,2]]], [933,[8558.11,8926.53,0],[[894,2]]], [934,[7576.76,10448,0],[[896,2],[968,2]]], [935,[7365.19,9961.68,0],[[897,2],[969,2]]], +[936,[7614.4,10576.2,0],[[898,2],[968,2]]], [937,[7903.37,10777.7,0],[[898,2],[970,2]]], [938,[7956.12,7396.4,7.94729e-008],[[899,2],[971,2],[972,2]]], [939,[8028.59,7472.12,0],[[899,2],[973,2]]], [940,[7538.2,7710.51,0],[[900,2],[974,2]]], [941,[7424.54,7956.82,-7.94729e-008],[[901,2],[975,2],[976,2]]], +[942,[10447.9,7216.03,0],[[906,2],[977,2]]], [943,[9010,6771.49,0],[[907,2],[978,2]]], [944,[12092.9,11690.3,0.615761],[[909,2],[915,2],[944,2]]], [945,[9387.5,12154.7,0],[[910,2],[979,2]]], [946,[13563.4,10900.4,7.62939e-006],[[911,2],[980,2]]], [947,[13176.5,11994.3,-4.76837e-007],[[914,2],[981,2]]], +[948,[14118,8430.92,-2.38419e-007],[[916,2],[982,2]]], [949,[14543.6,9411.17,0],[[917,2],[983,2]]], [950,[12254.1,6686.54,0],[[918,2]]], [951,[13898.6,8334.57,0],[[919,2],[984,2]]], [952,[14010.2,8340.53,0],[[919,2],[982,2]]], [953,[11528.4,6309.59,0],[[920,2],[985,2]]], +[954,[11958.8,6528.38,0],[[921,2],[955,2]]], [955,[12068,6558.73,4.76837e-007],[[922,2],[954,2]]], [956,[2905.17,6745.11,-3.8147e-006],[[923,2],[986,2]]], [957,[2753.34,6974.17,0],[[923,2],[987,2]]], [958,[2963.91,6330.75,0],[[924,2],[988,2]]], [959,[2280.8,4195.31,0],[[926,2],[989,2]]], +[960,[2194.64,4031.42,0],[[926,2],[990,2]]], [961,[2237.94,3393.23,0],[[927,2],[991,2]]], [962,[2502.15,3314.86,0],[[927,2],[992,2]]], [963,[2642.1,2412.18,0],[[928,2],[993,2]]], [964,[8801.07,12042.2,0],[[929,2],[994,2]]], [965,[7571.19,8605.88,4.76837e-007],[[930,2],[995,2]]], +[966,[7440.86,8782.63,0],[[930,2],[996,2]]], [967,[8198.86,8719.46,0],[[932,2],[967,2]]], [968,[7549.91,10527.1,2.54313e-006],[[934,2],[936,2],[997,2]]], [969,[7205.44,9922.7,0],[[935,2],[998,2]]], [970,[8050.6,10773,-7.62939e-006],[[937,2],[999,2]]], [971,[7831.14,7298.22,0],[[938,2],[1000,2]]], +[972,[7796.57,7350.62,0],[[938,2],[1001,2],[1000,2]]], [973,[8050.4,7363.73,0],[[939,2],[1002,2]]], [974,[7396.58,7706.95,0],[[940,2],[1003,2],[1004,2]]], [975,[7323.41,7967.5,4.76837e-008],[[941,2],[1005,2],[1006,2],[1007,2],[1004,2]]], [976,[7570.61,8041.47,0],[[941,2],[1008,2]]], [977,[10495.2,7159.8,0],[[942,2],[1009,2],[977,2],[1010,2]]], +[978,[9011.1,6721.82,0],[[943,2],[1011,2],[1012,2]]], [979,[9415.05,12302.8,-1.52588e-005],[[945,2],[1013,2]]], [980,[13528,10787.4,0],[[946,2],[1014,2]]], [981,[13160.5,12085.7,2.38419e-007],[[947,2],[1015,2]]], [982,[14054.5,8417.88,7.94729e-008],[[948,2],[952,2],[984,2]]], [983,[14539.2,9554.16,0],[[949,2],[1016,2],[1017,2]]], +[984,[13920.5,8383.71,1.19209e-007],[[951,2],[982,2],[984,2],[1018,2]]], [985,[11446.9,6179.54,0],[[953,2],[1019,2]]], [986,[2776.75,6674.44,0],[[956,2],[1020,2]]], [987,[2668.77,7049.71,-9.53674e-007],[[957,2],[1021,2],[987,2],[1022,2]]], [988,[2906.68,6200.22,0],[[958,2],[1023,2]]], [989,[2283.87,4343.44,0],[[959,2],[1024,2]]], +[990,[2044.24,3997.22,-1.90735e-006],[[960,2],[1025,2]]], [991,[2093.39,3366.91,0],[[961,2],[1026,2]]], [992,[2521.35,3289.44,0],[[962,2]]], [993,[2468.96,2485.43,-1.52588e-005],[[963,2],[1027,2]]], [994,[8650.33,12067.9,0],[[964,2],[1028,2]]], [995,[7648.25,8523.1,0],[[965,2],[1029,2],[1030,2]]], +[996,[7307.79,8794.66,0],[[966,2],[1031,2]]], [997,[7428.86,10645.3,0],[[968,2],[1032,2]]], [998,[7172.3,9867.47,0],[[969,2],[1033,2],[998,2]]], [999,[8124.62,10890.6,0],[[970,2],[1034,2]]], [1000,[7749.01,7285.16,3.17891e-007],[[971,2],[972,2],[1035,2],[1001,2]]], [1001,[7725.14,7334.28,0],[[972,2],[1000,2],[1036,2]]], +[1002,[8046.48,7347.8,0],[[973,2]]], [1003,[7433.34,7521.23,0],[[974,2],[1037,2]]], [1004,[7342.26,7885.71,0],[[974,2],[975,2]]], [1005,[7380.39,8147.53,0],[[975,2],[1038,2]]], [1006,[7209,8026.64,-4.76837e-008],[[975,2],[1006,2],[1039,2],[1007,2]]], [1007,[7250.76,7904.2,-7.94729e-008],[[975,2],[1006,2],[1040,2]]], +[1008,[7719.98,8075.61,0],[[976,2],[1041,2]]], [1009,[10480.3,7182.13,0],[[977,2]]], [1010,[10589.2,6978.09,0],[[977,2],[1042,2]]], [1011,[9127.39,6613.31,-4.76837e-007],[[978,2],[1043,2]]], [1012,[8832.2,6657.01,0],[[978,2],[1044,2]]], [1013,[9528.03,12416.2,0],[[979,2],[1045,2]]], +[1014,[13629.6,10841,0],[[980,2],[1046,2]]], [1015,[13162.9,12142.4,7.94729e-008],[[981,2],[1047,2],[1048,2]]], [1016,[14463.2,9683.72,9.53674e-007],[[983,2],[1049,2]]], [1017,[14361,9579.24,0],[[983,2]]], [1018,[13787.2,8417.04,0],[[984,2],[1050,2],[1018,2],[1051,2]]], [1019,[11358.8,6072.52,0],[[985,2],[1052,2]]], +[1020,[2657.49,6566.63,0],[[986,2],[1053,2]]], [1021,[2612.18,7189.85,0],[[987,2],[1054,2]]], [1022,[2531.95,7137.55,0],[[987,2],[1055,2]]], [1023,[2789.66,6117.32,0],[[988,2],[1056,2]]], [1024,[2203.17,4509.56,9.53674e-007],[[989,2],[1057,2]]], [1025,[1905.57,3992.56,0],[[990,2],[1058,2]]], +[1026,[1954.42,3321.89,9.53674e-007],[[991,2],[1059,2]]], [1027,[2342.62,2478.78,0],[[993,2],[1060,2]]], [1028,[8583.37,12187.9,0],[[994,2],[1061,2]]], [1029,[7592.09,8398.52,-9.53674e-007],[[995,2],[1062,2]]], [1030,[7509.86,8429.29,-4.76837e-007],[[995,2],[1062,2]]], [1031,[7182.56,8820.42,0],[[996,2],[1063,2]]], +[1032,[7283.95,10660.5,0],[[997,2],[1064,2]]], [1033,[7319.86,9818.94,0],[[998,2],[1065,2]]], [1034,[8188.35,10995.6,0],[[999,2],[1066,2]]], [1035,[7639.8,7182.09,0],[[1000,2],[1067,2]]], [1036,[7508.7,7298.23,0],[[1001,2],[1068,2],[1037,2]]], [1037,[7473.72,7360.66,-4.76837e-007],[[1003,2],[1036,2],[1068,2]]], +[1038,[7401.11,8277.44,0],[[1005,2],[1062,2]]], [1039,[7159.88,8132.43,0],[[1006,2],[1069,2]]], [1040,[7108.91,7884.43,0],[[1007,2],[1070,2]]], [1041,[7772.31,8087.64,0],[[1008,2]]], [1042,[10647.9,6857,0],[[1010,2],[1071,2]]], [1043,[9118.45,6494.6,0],[[1011,2],[1072,2]]], +[1044,[8744.82,6634.64,-1.58946e-007],[[1012,2],[1073,2],[1044,2]]], [1045,[9662.29,12491.8,0],[[1013,2],[1074,2]]], [1046,[13716.7,10801.6,1.52588e-005],[[1014,2],[1075,2]]], [1047,[13277.9,12100.8,0],[[1015,2],[1076,2],[1047,2]]], [1048,[13095.1,12293.5,0],[[1015,2],[1077,2]]], [1049,[14448.7,9770.79,-3.17891e-007],[[1016,2],[1078,2],[1049,2]]], +[1050,[13676.2,8451.32,1.27157e-006],[[1018,2],[1050,2],[1079,2]]], [1051,[13798.9,8466.68,-1.90735e-006],[[1018,2]]], [1052,[11312,5975.78,-1.27157e-006],[[1019,2],[1080,2],[1081,2]]], [1053,[2544.47,6501.4,1.90735e-006],[[1020,2],[1082,2]]], [1054,[2579.39,7310.73,9.53674e-007],[[1021,2],[1083,2]]], [1055,[2413.95,7173.26,0],[[1022,2],[1084,2],[1085,2]]], +[1056,[2710.61,6027.38,0],[[1023,2],[1086,2]]], [1057,[2179.32,4525.99,9.53674e-007],[[1024,2]]], [1058,[1813.08,4085.51,0],[[1025,2],[1087,2]]], [1059,[1823.14,3272.21,0],[[1026,2],[1088,2]]], [1060,[2215.37,2481.28,2.54313e-006],[[1027,2],[1089,2],[1090,2]]], [1061,[8514.63,12303.3,0],[[1028,2],[1091,2],[1092,2]]], +[1062,[7475.73,8371.26,0],[[1029,2],[1030,2],[1038,2],[1093,2]]], [1063,[7183.31,8798.58,-9.53674e-007],[[1031,2],[1094,2],[1063,2],[1095,2]]], [1064,[7034.28,10671.8,0],[[1032,2],[1096,2]]], [1065,[7452.25,9790.07,0],[[1033,2],[1097,2]]], [1066,[8245.92,11060.5,7.62939e-006],[[1066,2],[1098,2],[1099,2],[1034,2]]], [1067,[7620.34,7072.27,0],[[1035,2],[1100,2],[1101,2]]], +[1068,[7488.38,7302.02,-1.19209e-007],[[1036,2],[1037,2],[1100,2],[1102,2]]], [1069,[7187.5,8281.46,4.76837e-007],[[1039,2],[1094,2]]], [1070,[7063.28,7848.51,0],[[1040,2],[1103,2],[1104,2]]], [1071,[10650.2,6673.43,0],[[1042,2],[1105,2]]], [1072,[9196.45,6401.2,1.90735e-006],[[1043,2],[1106,2]]], [1073,[8554.69,6618.01,0],[[1044,2],[1107,2]]], +[1074,[9796.09,12546.3,0],[[1045,2],[1108,2]]], [1075,[13836.7,10809.3,-1.52588e-005],[[1046,2],[1109,2]]], [1076,[13445.4,12168.4,0],[[1047,2],[1110,2],[1111,2],[1112,2],[1113,2],[1114,2],[1076,2]]], [1077,[13054.4,12431.6,0],[[1048,2],[1115,2]]], [1078,[14528.7,9897.54,0],[[1049,2],[1116,2],[1117,2],[1078,2]]], [1079,[13530.7,8538.3,0],[[1050,2],[1118,2]]], +[1080,[11262.9,5918.69,6.35783e-007],[[1052,2],[1119,2],[1120,2],[1081,2]]], [1081,[11309.4,5906.31,0],[[1052,2],[1080,2],[1121,2]]], [1082,[2447.93,6446.94,0],[[1053,2],[1122,2],[1082,2]]], [1083,[2586.29,7332.25,0],[[1054,2],[1123,2],[1124,2]]], [1084,[2256.5,7072.74,0],[[1055,2],[1125,2]]], [1085,[2406.7,7206.02,7.62939e-006],[[1055,2]]], +[1086,[2690.65,5864.66,1.90735e-006],[[1056,2],[1126,2]]], [1087,[1707.46,4169.73,-9.53674e-007],[[1058,2],[1127,2]]], [1088,[1669.5,3175.54,-4.76837e-007],[[1059,2],[1128,2]]], [1089,[2123.33,2612.56,0],[[1060,2],[1129,2]]], [1090,[2277.89,2347.38,0],[[1060,2],[1130,2]]], [1091,[8372.54,12206.4,0],[[1061,2],[1131,2]]], +[1092,[8501.24,12357.8,-5.08626e-006],[[1061,2],[1132,2],[1092,2]]], [1093,[7428,8340,0],[[1062,2],[1093,2],[1133,2]]], [1094,[7230.07,8517.17,0],[[1063,2],[1069,2],[1134,2]]], [1095,[7024.03,8748.98,0],[[1063,2],[1135,2]]], [1096,[6889.56,10566.4,0],[[1064,2],[1136,2]]], [1097,[7458.11,9753.99,-5.08626e-006],[[1065,2],[1137,2],[1097,2]]], +[1098,[8258.12,11124.8,0],[[1066,2]]], [1099,[8228.39,11034.6,2.54313e-006],[[1066,2]]], [1100,[7530.92,7138.52,0],[[1067,2],[1068,2]]], [1101,[7583.12,7001.72,1.29955],[[1067,2],[1138,2],[1101,2],[1139,2]]], [1102,[7447.15,7197.79,4.76837e-007],[[1068,2],[1140,2]]], [1103,[6912.72,7744.33,0],[[1070,2],[1141,2]]], +[1104,[6997.19,7987.78,0],[[1070,2],[1142,2]]], [1105,[10643.5,6659.68,-7.94729e-008],[[1071,2],[1143,2],[1144,2]]], [1106,[9337.37,6415.59,0],[[1072,2],[1145,2]]], [1107,[8460.29,6715.63,0],[[1073,2],[1146,2]]], [1108,[9915.31,12593.7,0],[[1074,2],[1147,2]]], [1109,[13940.8,10694.3,0],[[1075,2],[1148,2]]], +[1110,[13312.8,11959,0],[[1076,2]]], [1111,[13602.8,11975.3,0],[[1076,2],[1149,2]]], [1112,[13268.4,12176.5,0],[[1076,2],[1150,2],[1151,2]]], [1113,[13629.6,12219.1,0],[[1076,2],[1152,2],[1153,2],[1114,2]]], [1114,[13539.1,12353.8,5.96046e-008],[[1076,2],[1113,2],[1154,2],[1155,2]]], [1115,[12897.5,12497.1,0],[[1077,2],[1156,2]]], +[1116,[14539.3,10008.8,0],[[1078,2],[1157,2],[1158,2]]], [1117,[14534.2,9882.07,0],[[1078,2],[1159,2]]], [1118,[13484.8,8492.28,-3.8147e-006],[[1079,2]]], [1119,[11095,5960.53,0],[[1080,2],[1160,2]]], [1120,[11302.1,5909.58,-1.90735e-006],[[1080,2],[1120,2]]], [1121,[11345.4,5609.08,22.0749],[[1081,2],[1161,2]]], +[1122,[2355.59,6365.17,0],[[1082,2],[1162,2],[1122,2],[1163,2]]], [1123,[2558.05,7381.37,0],[[1083,2],[1164,2],[1165,2]]], [1124,[2714.92,7305.62,4.76837e-007],[[1083,2],[1166,2]]], [1125,[2196.62,7057.71,0],[[1084,2],[1167,2],[1168,2]]], [1126,[2697.48,5747.49,1.58946e-007],[[1086,2],[1169,2],[1170,2],[1126,2]]], [1127,[1668.31,4199.93,0],[[1087,2],[1127,2]]], +[1128,[1578.78,3059.26,0],[[1088,2],[1171,2]]], [1129,[2020.08,2716.56,-7.62939e-006],[[1089,2],[1172,2]]], [1130,[2249.98,2224.19,0],[[1090,2],[1173,2]]], [1131,[8281.34,12101.3,0],[[1091,2],[1174,2]]], [1132,[8478.82,12400,-5.08626e-006],[[1092,2],[1175,2],[1176,2]]], [1133,[7377.7,8446.72,0],[[1093,2],[1133,2],[1177,2]]], +[1134,[7099.14,8440.05,0],[[1094,2],[1178,2]]], [1135,[6968.67,8690.47,0],[[1095,2],[1179,2]]], [1136,[6680.22,10568.1,0],[[1096,2],[1180,2]]], [1137,[7307.62,9692.72,0],[[1097,2],[1181,2]]], [1138,[7601.59,7017.54,1.94932],[[1101,2]]], [1139,[7505.84,6783.62,0],[[1101,2],[1182,2]]], +[1140,[7435.11,7134.01,0],[[1102,2],[1140,2],[1183,2]]], [1141,[6813.96,7642.18,0],[[1103,2],[1184,2]]], [1142,[6838.56,8260.8,6.35783e-007],[[1104,2],[1185,2],[1178,2]]], [1143,[10846.2,6494.98,0],[[1105,2],[1186,2]]], [1144,[10563.3,6631.93,0],[[1105,2],[1187,2],[1144,2]]], [1145,[9374.62,6449.2,0],[[1106,2],[1188,2],[1189,2]]], +[1146,[8354.47,6808.7,0],[[1107,2],[1190,2]]], [1147,[10034.2,12636.1,0],[[1108,2],[1191,2]]], [1148,[14103.5,10721.4,0],[[1109,2],[1192,2]]], [1149,[13598.3,11895.7,0],[[1111,2],[1193,2]]], [1150,[13206.5,12296,0],[[1112,2],[1194,2],[1195,2],[1151,2]]], [1151,[13323.9,12309.8,0],[[1112,2],[1150,2],[1195,2]]], +[1152,[13717.1,12223.1,0],[[1113,2],[1196,2],[1153,2],[1152,2]]], [1153,[13663.4,12313.4,0],[[1113,2],[1152,2],[1197,2],[1196,2]]], [1154,[13638.4,12324.1,0],[[1114,2]]], [1155,[13384.7,12423.3,0],[[1155,2],[1195,2]]], [1156,[12767.2,12485.5,0],[[1115,2],[1198,2]]], [1157,[14542.6,10182.4,0],[[1116,2],[1199,2]]], +[1158,[14412.8,10045.7,0],[[1116,2],[1200,2],[1158,2],[1201,2]]], [1159,[14598.7,9728.26,-4.76837e-007],[[1117,2],[1202,2]]], [1160,[10978.7,6068.04,0],[[1119,2],[1203,2],[1186,2]]], [1161,[11368.5,5389.21,8.45733],[[1121,2],[1204,2],[1161,2],[1205,2]]], [1162,[2269.66,6299.71,-9.53674e-007],[[1122,2],[1206,2]]], [1163,[2384.74,6236.49,0],[[1122,2],[1207,2]]], +[1164,[2647.67,7384.17,0],[[1123,2]]], [1165,[2407.04,7432.07,-9.53674e-007],[[1123,2],[1208,2]]], [1166,[2841.69,7288.15,0],[[1124,2],[1209,2]]], [1167,[2176.15,7208.87,0],[[1125,2],[1210,2]]], [1168,[2111.76,6907.92,0],[[1125,2],[1211,2]]], [1169,[2550.25,5697.72,0],[[1126,2],[1212,2],[1213,2]]], +[1170,[2787.5,5725.64,-1.19209e-007],[[1126,2],[1170,2],[1214,2]]], [1171,[1537.68,3012.05,0],[[1128,2],[1215,2],[1216,2]]], [1172,[1875.46,2756.49,0],[[1129,2],[1217,2]]], [1173,[2324.11,2107.23,-1.90735e-006],[[1130,2],[1218,2]]], [1174,[8146.77,12074.6,1.52588e-005],[[1131,2],[1219,2]]], [1175,[8449.4,12562.8,0],[[1132,2],[1220,2]]], +[1176,[8300.2,12353.7,0],[[1132,2],[1221,2]]], [1177,[7468.87,8557.14,0],[[1177,2],[1222,2]]], [1178,[6944.26,8369.23,-1.90735e-006],[[1134,2],[1142,2]]], [1179,[6852.58,8630.55,0],[[1135,2],[1223,2]]], [1180,[6554.32,10608.2,0],[[1136,2],[1224,2],[1180,2],[1225,2]]], [1181,[7235.67,9573.22,1.25978],[[1137,2],[1226,2],[1181,2]]], +[1182,[7625.32,6717.24,1.32467],[[1139,2],[1227,2],[1228,2],[1182,2]]], [1183,[7413.96,7176.65,0],[[1140,2]]], [1184,[6767.25,7536.09,0],[[1141,2],[1229,2],[1230,2]]], [1185,[6676.29,8375.58,0],[[1142,2],[1231,2]]], [1186,[10933.3,6287.41,1.58946e-007],[[1143,2],[1160,2],[1203,2],[1232,2]]], [1187,[10472.7,6586.95,2.38419e-007],[[1144,2],[1233,2],[1187,2],[1234,2]]], +[1188,[9529.46,6506.97,0],[[1145,2],[1235,2]]], [1189,[9380.34,6556.35,0],[[1145,2],[1236,2]]], [1190,[8211.63,6835.75,0],[[1146,2],[1237,2]]], [1191,[10153.8,12666.8,0],[[1147,2],[1238,2]]], [1192,[14318,10826.7,0],[[1148,2],[1239,2]]], [1193,[13564.6,11801.3,0],[[1149,2],[1240,2]]], +[1194,[13138.8,12458.4,0],[[1150,2],[1241,2],[1242,2]]], [1195,[13343,12352.7,0],[[1150,2],[1151,2],[1155,2]]], [1196,[13752,12274.7,0],[[1152,2],[1153,2],[1196,2]]], [1197,[13717.6,12278.8,0],[[1153,2]]], [1198,[12630.7,12552.3,0],[[1156,2],[1243,2]]], [1199,[14543,10319.7,0],[[1157,2],[1244,2]]], +[1200,[14315.4,10141.3,0],[[1158,2],[1245,2]]], [1201,[14318.6,9901.24,0],[[1158,2],[1246,2]]], [1202,[14625.7,9707.29,0],[[1159,2]]], [1203,[10921.8,6182.63,1.19209e-007],[[1160,2],[1186,2],[1203,2],[1247,2]]], [1204,[11380,5277.75,2.46798],[[1161,2],[1248,2],[1249,2],[1204,2]]], [1205,[11297.5,5345.22,0],[[1161,2],[1205,2],[1250,2]]], +[1206,[2168.61,6329.47,3.17891e-007],[[1162,2],[1206,2],[1251,2]]], [1207,[2439.11,6119.32,3.8147e-006],[[1163,2],[1252,2]]], [1208,[2265.91,7431.78,0],[[1165,2],[1253,2]]], [1209,[2872.87,7296.98,0],[[1166,2]]], [1210,[2099.36,7352.73,0],[[1167,2],[1254,2],[1253,2],[1210,2]]], [1211,[2077.7,6790.32,0],[[1168,2],[1255,2],[1256,2]]], +[1212,[2398.15,5775.96,0],[[1169,2],[1257,2],[1258,2]]], [1213,[2444.59,5759.43,0],[[1258,2],[1169,2]]], [1214,[2821.21,5743.07,0],[[1170,2]]], [1215,[1702.89,2959.25,0],[[1171,2],[1259,2]]], [1216,[1482.96,3033.22,-4.76837e-007],[[1171,2]]], [1217,[1796,2876.42,0],[[1172,2],[1259,2]]], +[1218,[2346.78,1964.42,0],[[1173,2],[1260,2]]], [1219,[8137.87,12058.3,5.08626e-006],[[1174,2],[1261,2],[1262,2]]], [1220,[8417.3,12696.6,0],[[1175,2],[1263,2]]], [1221,[8129.55,12333.7,1.52588e-005],[[1176,2],[1264,2]]], [1222,[7434.33,8605.25,0],[[1177,2]]], [1223,[6847.38,8696.29,0],[[1179,2]]], +[1224,[6423.34,10729.2,3.8147e-006],[[1180,2],[1265,2]]], [1225,[6504.02,10500.2,0],[[1180,2]]], [1226,[7072.77,9525.39,0],[[1181,2],[1266,2]]], [1227,[7831.07,6759.71,0],[[1182,2],[1267,2]]], [1228,[7606.16,6722.24,1.987],[[1182,2]]], [1229,[6828.38,7472.54,0],[[1184,2],[1268,2],[1269,2]]], +[1230,[6658.44,7348.98,9.53674e-007],[[1184,2],[1270,2]]], [1231,[6545.55,8459.58,3.8147e-006],[[1185,2],[1271,2]]], [1232,[10798.1,6324.07,0],[[1186,2],[1232,2],[1247,2]]], [1233,[10494.9,6597.89,1.19209e-007],[[1187,2]]], [1234,[10402.4,6404.59,0],[[1187,2],[1272,2]]], [1235,[9645.54,6523.53,0],[[1188,2],[1273,2]]], +[1236,[9525.58,6621.2,0],[[1189,2],[1274,2],[1275,2]]], [1237,[8048.91,6824.01,-9.53674e-007],[[1190,2],[1267,2]]], [1238,[10282.6,12687.9,0],[[1191,2],[1276,2]]], [1239,[14465.2,10896.1,0],[[1192,2],[1277,2]]], [1240,[13616.4,11767.4,0],[[1193,2],[1278,2]]], [1241,[13272.7,12546,0],[[1194,2],[1279,2],[1280,2],[1241,2],[1242,2]]], +[1242,[13235.4,12544.8,0],[[1194,2],[1241,2],[1280,2]]], [1243,[12513.1,12681.7,4.76837e-007],[[1198,2],[1281,2]]], [1244,[14584.6,10464.1,0],[[1199,2],[1282,2]]], [1245,[14239.8,10218.5,0],[[1245,2]]], [1246,[14211.3,9888.51,-7.62939e-006],[[1201,2],[1283,2]]], [1247,[10802.8,6277.45,0],[[1203,2],[1284,2],[1232,2]]], +[1248,[11342.8,5215.81,-7.94729e-008],[[1204,2],[1285,2],[1286,2]]], [1249,[11382.9,5297.35,3.70197],[[1204,2]]], [1250,[11279.2,5307.71,0],[[1205,2],[1287,2],[1285,2],[1288,2]]], [1251,[2042.7,6263.74,0],[[1206,2],[1289,2]]], [1252,[2568.52,6041.48,0],[[1207,2],[1290,2]]], [1253,[2129.76,7423.56,3.8147e-006],[[1208,2],[1210,2],[1254,2]]], +[1254,[2080.06,7422.14,0],[[1210,2],[1253,2],[1291,2],[1292,2]]], [1255,[2077.84,6648.65,0],[[1211,2],[1293,2]]], [1256,[2180.35,6695.59,0],[[1211,2],[1294,2]]], [1257,[2306.6,5880.42,0],[[1212,2],[1295,2]]], [1258,[2454.16,5775.35,0],[[1325,2],[1213,2],[1212,2]]], [1259,[1816.27,2942.11,0],[[1215,2],[1217,2]]], +[1260,[2318.95,1921.93,0],[[1218,2]]], [1261,[8071.93,11944.7,0],[[1219,2],[1296,2]]], [1262,[8280.93,11999.4,0],[[1219,2],[1297,2]]], [1263,[8366.89,12821.8,0],[[1220,2],[1298,2]]], [1264,[7975.93,12411,7.62939e-006],[[1221,2],[1299,2]]], [1265,[6408.93,10804.7,0],[[1224,2],[1300,2],[1301,2]]], +[1266,[6831.12,9535.27,0],[[1226,2],[1302,2]]], [1267,[7978.24,6830.8,0],[[1227,2],[1237,2]]], [1268,[6815.64,7410.92,0],[[1229,2],[1303,2],[1268,2],[1304,2],[1269,2]]], [1269,[6888.43,7378.99,0],[[1229,2],[1268,2],[1304,2]]], [1270,[6603.75,7312.64,-3.17891e-007],[[1230,2],[1305,2],[1306,2]]], [1271,[6491.15,8606.91,3.8147e-006],[[1231,2],[1307,2]]], +[1272,[10291.8,6326.02,0],[[1234,2],[1308,2]]], [1273,[9791,6535.3,-4.76837e-007],[[1235,2],[1309,2]]], [1274,[9691.01,6661.98,0],[[1236,2],[1310,2]]], [1275,[9525.12,6772.91,0],[[1236,2],[1311,2]]], [1276,[10394.9,12767.7,-1.52588e-005],[[1238,2],[1312,2]]], [1277,[14577.8,10899.8,0],[[1239,2],[1313,2],[1314,2]]], +[1278,[13693.6,11782.3,0],[[1240,2],[1315,2],[1316,2]]], [1279,[13336.7,12584.5,0],[[1241,2]]], [1280,[13252.9,12541.2,0],[[1241,2],[1242,2]]], [1281,[12452,12690.6,1.58946e-007],[[1243,2],[1317,2],[1318,2]]], [1282,[14676.6,10561.3,0],[[1244,2],[1313,2]]], [1283,[14108.3,9929.12,0],[[1246,2],[1319,2]]], +[1284,[10814.4,6303.26,0],[[1247,2]]], [1285,[11261.1,5197.67,0],[[1248,2],[1250,2],[1320,2],[1321,2],[1322,2],[1287,2]]], [1286,[11329,5284.87,0],[[1248,2]]], [1287,[11222.7,5294.29,0],[[1250,2],[1285,2],[1320,2]]], [1288,[11293.3,5223.7,0],[[1250,2]]], [1289,[1999.37,6237.44,7.94729e-008],[[1251,2],[1323,2],[1324,2]]], +[1290,[2577.65,6031.48,-4.76837e-007],[[1252,2],[1325,2],[1290,2]]], [1291,[1908.36,7627.94,-1.90735e-006],[[1254,2],[1326,2]]], [1292,[2229.26,7524.52,0],[[1254,2],[1327,2]]], [1293,[2061.24,6527.26,0],[[1255,2],[1328,2]]], [1294,[2284.46,6606.93,0],[[1256,2],[1329,2]]], [1295,[2199.93,5989.51,0],[[1257,2],[1323,2]]], +[1296,[8062.66,11928.7,3.8147e-006],[[1261,2],[1296,2],[1330,2]]], [1297,[8351.73,11974.5,0],[[1262,2]]], [1298,[8200.1,12912.3,0],[[1263,2],[1331,2]]], [1299,[7864.55,12476,0],[[1264,2],[1299,2],[1332,2]]], [1300,[6318.55,10942.2,0],[[1265,2],[1333,2]]], [1301,[6448.78,10918.5,0],[[1265,2],[1334,2]]], +[1302,[6709.74,9411.14,0],[[1266,2],[1335,2]]], [1303,[6810.56,7437.37,0],[[1268,2]]], [1304,[6870.96,7359.52,0],[[1268,2],[1269,2]]], [1305,[6510.71,7334.08,-3.17891e-007],[[1270,2],[1336,2],[1337,2]]], [1306,[6642.86,7267.76,0],[[1270,2],[1338,2],[1339,2]]], [1307,[6353.04,8627.17,0],[[1271,2],[1340,2]]], +[1308,[10163.8,6313.56,0],[[1272,2],[1341,2]]], [1309,[9878.31,6526.17,0],[[1273,2],[1342,2],[1309,2],[1343,2]]], [1310,[9764.01,6700.03,6.35783e-007],[[1274,2],[1344,2],[1310,2],[1345,2]]], [1311,[9507.65,6942.09,0],[[1275,2],[1346,2]]], [1312,[10230.7,12811.2,0],[[1276,2],[1347,2]]], [1313,[14612.2,10763.5,-1.27157e-006],[[1277,2],[1282,2],[1348,2]]], +[1314,[14535.7,11030.1,0.568157],[[1277,2],[1314,2],[1349,2]]], [1315,[13811.3,11747.2,0],[[1278,2],[1350,2],[1316,2]]], [1316,[13731.2,11828.6,0],[[1278,2],[1315,2],[1351,2],[1350,2],[1352,2]]], [1317,[12286.7,12761.1,4.76837e-007],[[1281,2],[1353,2]]], [1318,[12453.5,12726.7,0],[[1281,2]]], [1319,[13978.4,9964.43,0],[[1283,2],[1354,2]]], +[1320,[11134.3,5173.14,-7.94729e-008],[[1285,2],[1287,2],[1355,2]]], [1321,[11279.7,5219.31,0],[[1285,2]]], [1322,[11454.5,5193.2,1.90735e-006],[[1285,2],[1356,2]]], [1323,[2057.58,6097.95,0],[[1289,2],[1295,2]]], [1324,[1946.53,6314.6,0],[[1289,2],[1357,2],[1358,2]]], [1325,[2522.42,5888.78,0],[[1290,2],[1258,2]]], +[1326,[1855.98,7705.09,4.76837e-007],[[1291,2],[1359,2],[1326,2],[1360,2]]], [1327,[2214.44,7614.47,0],[[1292,2],[1361,2]]], [1328,[2005.6,6468.14,-7.94729e-008],[[1293,2],[1357,2],[1362,2]]], [1329,[2295.03,6597.93,0],[[1294,2]]], [1330,[7905.38,11931.7,0],[[1296,2],[1363,2]]], [1331,[8189.05,13005.4,0],[[1298,2],[1364,2]]], +[1332,[7734.67,12522.3,2.09284],[[1299,2],[1365,2],[1332,2],[1366,2]]], [1333,[6188.18,10965,-4.76837e-007],[[1300,2],[1367,2]]], [1334,[6456.34,11002.3,0],[[1301,2],[1368,2],[1369,2]]], [1335,[6560.31,9357.69,0],[[1302,2],[1370,2]]], [1336,[6309.8,7404.09,-4.76837e-007],[[1305,2],[1371,2]]], [1337,[6516.73,7174.85,0],[[1305,2],[1372,2]]], +[1338,[6762.47,7156.58,0],[[1306,2],[1373,2]]], [1339,[6758.44,7307.83,0],[[1306,2],[1374,2]]], [1340,[6163.93,8636.46,0],[[1307,2],[1375,2]]], [1341,[10065.4,6401.11,9.53674e-007],[[1308,2],[1342,2]]], [1342,[10036,6475.31,0],[[1309,2],[1341,2]]], [1343,[9853.52,6382,-2.38419e-007],[[1309,2],[1376,2]]], +[1344,[9761.9,6679.38,0],[[1310,2]]], [1345,[9809.05,6846.55,-1.90735e-006],[[1310,2],[1377,2]]], [1346,[9580.97,7026.3,0],[[1311,2],[1378,2],[1346,2]]], [1347,[10044.8,12833.5,0],[[1312,2],[1379,2]]], [1348,[14514.1,10665,0],[[1313,2],[1380,2]]], [1349,[14424,11185.7,-1.90735e-006],[[1314,2],[1381,2]]], +[1350,[13829,11786.1,0],[[1315,2],[1316,2],[1382,2],[1383,2]]], [1351,[13742,11907.9,0],[[1316,2]]], [1352,[13769.6,11897.9,0],[[1316,2]]], [1353,[12177.7,12872.5,-2.38419e-007],[[1317,2],[1384,2],[1353,2],[1385,2]]], [1354,[13979.7,10002.8,0],[[1319,2]]], [1355,[11068.4,5150.54,1.58946e-007],[[1320,2],[1386,2],[1387,2]]], +[1356,[11611.5,5207.64,0],[[1322,2],[1388,2]]], [1357,[1945.9,6386.29,0],[[1324,2],[1328,2],[1389,2]]], [1358,[1768.87,6245.65,0],[[1324,2],[1390,2]]], [1359,[1786.47,7874.35,1.90735e-006],[[1326,2],[1391,2]]], [1360,[1706,7647.68,0],[[1326,2],[1392,2]]], [1361,[2134.66,7741.14,0],[[1327,2],[1393,2]]], +[1362,[1975.18,6520.62,0],[[1328,2]]], [1363,[7829.65,11850.9,0],[[1330,2],[1394,2],[1363,2],[1395,2]]], [1364,[8275.55,13129.1,0],[[1331,2],[1396,2]]], [1365,[7771.07,12518.6,2.09284],[[1332,2]]], [1366,[7554.54,12535.8,0],[[1332,2],[1397,2]]], [1367,[6047.4,10938,3.57628e-007],[[1333,2],[1398,2],[1399,2],[1367,2],[1400,2]]], +[1368,[6496.93,11158.5,0],[[1334,2],[1401,2]]], [1369,[6607.23,10970.7,0],[[1334,2],[1402,2]]], [1370,[6437.5,9315.94,0],[[1335,2],[1403,2]]], [1371,[6110.85,7466.26,0],[[1336,2],[1404,2]]], [1372,[6514.27,7159.4,0],[[1337,2],[1405,2],[1372,2],[1406,2]]], [1373,[6768.57,7141.94,0],[[1338,2],[1374,2],[1407,2]]], +[1374,[6846.06,7232.51,0],[[1339,2],[1373,2],[1374,2]]], [1375,[6142.77,8630.83,0],[[1340,2],[1408,2],[1375,2],[1409,2]]], [1376,[9811.46,6390.74,0],[[1343,2]]], [1377,[9798.65,6931.44,1.27157e-006],[[1345,2],[1410,2],[1377,2]]], [1378,[9658.36,7160.81,0],[[1346,2]]], [1379,[9928.03,12862.1,-7.62939e-006],[[1347,2],[1411,2]]], +[1380,[14466.9,10546.5,0],[[1348,2],[1380,2]]], [1381,[14321.9,11258.8,0],[[1349,2],[1412,2]]], [1382,[13959.3,11881.4,0],[[1350,2],[1413,2]]], [1383,[13899.6,11974.6,0],[[1350,2],[1414,2]]], [1384,[12028.4,12973.8,0],[[1353,2],[1415,2]]], [1385,[12227.5,12947.1,0],[[1353,2]]], +[1386,[11039.5,5033.24,-3.17891e-007],[[1355,2],[1416,2],[1417,2]]], [1387,[10915.3,5193.66,4.76837e-007],[[1355,2],[1418,2]]], [1388,[11707.8,5200.21,-6.35783e-007],[[1356,2],[1419,2],[1388,2]]], [1389,[1843.15,6527.13,0],[[1357,2],[1420,2]]], [1390,[1734.26,6149.48,0],[[1358,2]]], [1391,[1755.31,7980.5,0],[[1359,2],[1421,2]]], +[1392,[1554.84,7606.52,1.90735e-006],[[1360,2],[1422,2]]], [1393,[2109.51,7793.75,0],[[1361,2],[1423,2],[1424,2]]], [1394,[7792.81,11659.7,0],[[1363,2],[1425,2]]], [1395,[7740.34,11975.8,0],[[1363,2],[1426,2]]], [1396,[8342.81,13278.8,0],[[1364,2],[1427,2]]], [1397,[7399.42,12534.6,0],[[1366,2],[1428,2]]], +[1398,[5891.39,10892.4,0],[[1367,2],[1429,2]]], [1399,[6054.95,10934.5,3.17891e-007],[[1367,2]]], [1400,[5946.45,10871.2,-9.53674e-007],[[1367,2],[1430,2]]], [1401,[6639.88,11224.6,0],[[1368,2],[1431,2]]], [1402,[6752.06,10924.4,0],[[1369,2],[1432,2]]], [1403,[6287.77,9247.12,0],[[1370,2],[1433,2]]], +[1404,[5990.28,7545.94,0],[[1371,2],[1434,2]]], [1405,[6361.37,7157.43,0],[[1372,2],[1435,2]]], [1406,[6562.65,7055.49,0],[[1372,2]]], [1407,[6689.28,7005.33,0],[[1373,2]]], [1408,[5982.54,8649.08,0],[[1375,2],[1436,2],[1408,2],[1437,2]]], [1409,[6116.96,8490.26,0],[[1375,2],[1438,2]]], +[1410,[9758.77,6952.79,0],[[1377,2]]], [1411,[10057.2,12910.9,7.62939e-006],[[1379,2],[1439,2]]], [1412,[14295.7,11397.4,0],[[1381,2],[1440,2]]], [1413,[14087.1,11926.7,0],[[1382,2],[1441,2]]], [1414,[13901.1,12044.4,0],[[1383,2],[1442,2]]], [1415,[11913.4,12979.6,9.53674e-007],[[1384,2],[1443,2]]], +[1416,[11087.5,4912.54,0],[[1386,2],[1444,2]]], [1417,[11199.4,5102.52,1.90735e-006],[[1386,2]]], [1418,[10771.4,5197.41,0],[[1387,2],[1445,2]]], [1419,[11845.6,5238.4,-1.90735e-006],[[1388,2],[1446,2]]], [1420,[1762.81,6665.46,0],[[1389,2],[1447,2]]], [1421,[1757.35,7996.86,0],[[1391,2],[1448,2],[1421,2]]], +[1422,[1410.04,7594.07,0],[[1392,2],[1449,2]]], [1423,[2002.37,7956.34,0],[[1393,2],[1450,2]]], [1424,[2272.59,7888.24,0],[[1393,2],[1451,2]]], [1425,[7733.89,11554.4,0],[[1394,2],[1452,2]]], [1426,[7650.45,11999.4,2.0944],[[1395,2],[1453,2],[1426,2]]], [1427,[8339.19,13382,-3.8147e-006],[[1396,2],[1454,2]]], +[1428,[7339.49,12491.9,2.54313e-006],[[1397,2],[1455,2],[1456,2]]], [1429,[5856.27,10846,1.47874],[[1398,2],[1457,2],[1458,2],[1459,2]]], [1430,[5935,10789.1,0],[[1400,2]]], [1431,[6785.75,11218.8,0],[[1401,2],[1460,2]]], [1432,[6884.56,10877.9,3.8147e-006],[[1402,2],[1461,2]]], [1433,[6137.55,9190.25,7.62939e-006],[[1403,2],[1462,2]]], +[1434,[5908.24,7636.72,0],[[1404,2],[1463,2]]], [1435,[6215.62,7205.12,0],[[1405,2],[1464,2]]], [1436,[5812.39,8654.54,-9.53674e-007],[[1408,2],[1465,2]]], [1437,[6005.21,8706.24,6.35783e-007],[[1408,2],[1466,2],[1467,2]]], [1438,[6101.99,8483.32,0],[[1409,2]]], [1439,[10218.6,12938,-7.62939e-006],[[1411,2],[1468,2]]], +[1440,[14264.3,11531,9.53674e-007],[[1412,2],[1469,2]]], [1441,[14153.2,11797.1,-9.53674e-007],[[1413,2],[1469,2]]], [1442,[13893,12076.6,0],[[1414,2],[1442,2],[1470,2]]], [1443,[11769.5,12976.6,0],[[1415,2],[1471,2]]], [1444,[11124,4841.1,4.76837e-007],[[1416,2],[1472,2],[1473,2],[1444,2],[1474,2]]], [1445,[10603.9,5132.61,9.53674e-007],[[1418,2],[1475,2]]], +[1446,[11971.3,5285.34,0],[[1419,2],[1476,2]]], [1447,[1691.26,6792.71,0],[[1420,2],[1477,2]]], [1448,[1824.54,8113.12,-1.90735e-006],[[1421,2],[1478,2]]], [1449,[1288.11,7536.97,0],[[1422,2],[1479,2]]], [1450,[1924.17,8080.69,0],[[1423,2],[1478,2]]], [1451,[2357.36,7937.82,4.76837e-007],[[1424,2]]], +[1452,[7734.68,11491.8,0],[[1425,2],[1480,2],[1481,2],[1452,2]]], [1453,[7562.44,11993.2,1.24257],[[1426,2],[1482,2],[1483,2],[1453,2]]], [1454,[8226.69,13297,0],[[1427,2],[1484,2]]], [1455,[7184.74,12446.6,0],[[1428,2],[1485,2]]], [1456,[7396.03,12323.8,0],[[1428,2],[1486,2]]], [1457,[5862.95,11045.1,1.7019],[[1429,2],[1487,2],[1488,2],[1489,2],[1490,2]]], +[1458,[5909.4,10684.3,0],[[1429,2],[1491,2]]], [1459,[5782.23,10705.1,0],[[1429,2],[1492,2],[1493,2]]], [1460,[6904.65,11212.6,0],[[1431,2],[1494,2]]], [1461,[7020.58,10841.4,0],[[1432,2],[1495,2]]], [1462,[6114.58,9176.87,3.8147e-006],[[1433,2],[1496,2],[1497,2]]], [1463,[5820.07,7667.27,0],[[1434,2],[1498,2],[1499,2]]], +[1464,[6073.14,7311.13,0],[[1435,2],[1500,2]]], [1465,[5678.05,8654.57,-9.53674e-007],[[1436,2],[1501,2]]], [1466,[6135.41,8713.61,0],[[1437,2],[1502,2]]], [1467,[5996.29,8752.29,0],[[1437,2]]], [1468,[10348.8,12959.3,0],[[1439,2],[1503,2]]], [1469,[14198.8,11623,3.17891e-007],[[1440,2],[1441,2],[1504,2],[1469,2]]], +[1470,[14026,12165.6,0],[[1442,2],[1505,2]]], [1471,[11651.8,13063.5,0],[[1443,2],[1506,2]]], [1472,[11071.4,4680.86,0],[[1444,2],[1507,2]]], [1473,[11126.6,4852.48,6.35783e-007],[[1444,2]]], [1474,[11146.2,4851.07,0],[[1444,2]]], [1475,[10470.6,5074.51,0],[[1445,2],[1508,2]]], +[1476,[12014.8,5295.85,0.400562],[[1446,2],[1476,2],[1509,2]]], [1477,[1646.98,6899.97,-2.38419e-007],[[1447,2],[1510,2]]], [1478,[1880.78,8179.31,0],[[1448,2],[1450,2],[1511,2],[1512,2]]], [1479,[1254.39,7537.96,3.17891e-007],[[1449,2],[1513,2],[1514,2]]], [1480,[7628.38,11386.4,-5.08626e-006],[[1452,2],[1515,2],[1516,2]]], [1481,[7731.32,11514.7,0],[[1452,2]]], +[1482,[7425.97,12080.4,2.54313e-006],[[1453,2],[1486,2],[1482,2]]], [1483,[7588.38,11990.4,0],[[1453,2],[1483,2]]], [1484,[8280.27,13434.8,0],[[1454,2],[1517,2]]], [1485,[7033.67,12449.7,0],[[1455,2],[1518,2]]], [1486,[7360.98,12213.4,0],[[1456,2],[1482,2]]], [1487,[6018.11,11038.4,-7.94729e-008],[[1457,2],[1519,2],[1487,2],[1520,2]]], +[1488,[5786.94,11056,0],[[1457,2],[1521,2],[1522,2]]], [1489,[5821.49,11170.9,-7.94729e-008],[[1457,2],[1523,2],[1524,2]]], [1490,[5725.75,11172.7,-7.94729e-008],[[1457,2],[1525,2],[1523,2],[1526,2]]], [1491,[5910.22,10611.7,-1.19209e-007],[[1458,2],[1527,2],[1493,2],[1528,2],[1529,2]]], [1492,[5783.81,10636.3,0],[[1459,2],[1530,2],[1529,2],[1527,2]]], [1493,[5877.63,10681.1,0],[[1459,2],[1491,2],[1527,2]]], +[1494,[7070.66,11193.3,7.62939e-006],[[1460,2],[1531,2]]], [1495,[7159.4,10852.7,0],[[1461,2],[1532,2],[1495,2]]], [1496,[5940.14,9090.99,0],[[1462,2],[1533,2]]], [1497,[6179.33,9042.37,0],[[1462,2],[1534,2]]], [1498,[5688.77,7752.36,0],[[1463,2],[1535,2]]], [1499,[5935.54,7802.27,-2.38419e-007],[[1463,2],[1536,2]]], +[1500,[6014.55,7334.88,0],[[1464,2]]], [1501,[5544.92,8707.04,0],[[1465,2],[1537,2]]], [1502,[6229.84,8783.82,0],[[1466,2],[1538,2]]], [1503,[10281.4,13021,0],[[1468,2],[1539,2]]], [1504,[14205.6,11596.2,0],[[1469,2],[1504,2]]], [1505,[14069.1,12192.5,0],[[1470,2]]], +[1506,[11626.2,13084.7,0],[[1471,2],[1540,2],[1506,2]]], [1507,[11177.7,4589.62,0],[[1472,2],[1541,2]]], [1508,[10405.2,5045.2,-6.35783e-007],[[1475,2],[1542,2],[1543,2]]], [1509,[12185.6,5246.01,0],[[1476,2],[1544,2]]], [1510,[1693.96,7023.22,4.76837e-007],[[1477,2],[1545,2]]], [1511,[2018.84,8296.51,0],[[1478,2],[1546,2]]], +[1512,[1774.41,8324.27,0],[[1478,2],[1547,2]]], [1513,[1111.78,7655.68,-1.19209e-007],[[1479,2],[1548,2],[1549,2],[1550,2]]], [1514,[1352.88,7414.21,0],[[1479,2],[1551,2]]], [1515,[7537.23,11274.7,0],[[1480,2],[1552,2]]], [1516,[7506.62,11495.1,1.52588e-005],[[1480,2],[1553,2]]], [1517,[8301.67,13578,-1.90735e-006],[[1484,2],[1554,2]]], +[1518,[6869.24,12371.5,0],[[1485,2],[1555,2]]], [1519,[5994.36,11030.3,-1.19209e-007],[[1487,2]]], [1520,[6115.28,11087.7,0],[[1487,2],[1556,2],[1524,2]]], [1521,[5671.6,10979.1,0],[[1488,2],[1557,2]]], [1522,[5788.53,10981,0],[[1488,2],[1558,2]]], [1523,[5771.42,11217.4,-4.76837e-008],[[1489,2],[1490,2],[1523,2],[1559,2],[1525,2],[1560,2]]], +[1524,[5947.09,11161.7,0],[[1489,2],[1520,2]]], [1525,[5635.25,11265.1,0],[[1490,2],[1523,2],[1561,2],[1525,2]]], [1526,[5711.13,11153.2,0],[[1490,2],[1526,2],[1562,2]]], [1527,[5879.58,10625.3,-4.76837e-007],[[1491,2],[1492,2],[1493,2]]], [1528,[6013.94,10559.2,0],[[1491,2],[1528,2],[1563,2],[1564,2],[1565,2]]], [1529,[5812.12,10486.8,-1.19209e-007],[[1491,2],[1492,2],[1566,2],[1567,2]]], +[1530,[5713.16,10607.3,0],[[1492,2],[1568,2]]], [1531,[7207.74,11215.8,0],[[1494,2],[1569,2]]], [1532,[7191.16,10866.5,-7.62939e-006],[[1495,2],[1532,2]]], [1533,[5821.32,9144.04,0],[[1496,2],[1570,2]]], [1534,[6263.51,8950.02,0],[[1497,2],[1538,2]]], [1535,[5660.61,7818.61,-1.19209e-007],[[1498,2],[1571,2],[1535,2],[1572,2]]], +[1536,[5962.52,7830.17,1.58946e-007],[[1499,2],[1536,2],[1573,2]]], [1537,[5420.25,8773.59,-4.76837e-007],[[1501,2],[1574,2]]], [1538,[6275.45,8850.37,0],[[1502,2],[1534,2],[1575,2],[1538,2]]], [1539,[10141.5,13056.7,0],[[1503,2],[1576,2]]], [1540,[11556.5,13111,0],[[1506,2],[1577,2],[1540,2]]], [1541,[11228.7,4472.8,-7.62939e-006],[[1507,2],[1578,2]]], +[1542,[10253.4,5085.86,0],[[1508,2],[1579,2]]], [1543,[10381.6,4968.48,1.90735e-006],[[1508,2],[1580,2]]], [1544,[12319.3,5256.99,0],[[1509,2],[1581,2]]], [1545,[1691.86,7148.32,0],[[1510,2],[1582,2]]], [1546,[2099.2,8359.13,3.17891e-007],[[1511,2],[1583,2],[1584,2]]], [1547,[1653.9,8392.32,0],[[1512,2],[1585,2]]], +[1548,[1001.93,7548.41,2.38419e-007],[[1513,2],[1586,2]]], [1549,[991.05,7751.01,0],[[1513,2],[1587,2],[1550,2],[1588,2]]], [1550,[1036.72,7788.66,-4.76837e-007],[[1513,2],[1549,2]]], [1551,[1459.42,7306.29,0],[[1514,2],[1582,2]]], [1552,[7415.28,11268.3,0],[[1515,2],[1569,2]]], [1553,[7337.87,11561.1,0],[[1516,2],[1589,2]]], +[1554,[8290.86,13660.9,-3.17891e-007],[[1517,2],[1590,2],[1591,2]]], [1555,[6823.88,12358.7,-9.53674e-007],[[1518,2],[1592,2],[1593,2]]], [1556,[6202.36,11197.8,-9.53674e-007],[[1520,2],[1594,2]]], [1557,[5640.81,11023.1,0],[[1521,2]]], [1558,[5725.62,10920.6,0],[[1522,2]]], [1559,[5817.24,11246.4,0],[[1523,2]]], +[1560,[5731.13,11191.8,0],[[1523,2]]], [1561,[5547.41,11317,0],[[1525,2],[1595,2],[1596,2],[1597,2]]], [1562,[5669.78,11125,0],[[1526,2]]], [1563,[5923.18,10480.2,0],[[1528,2],[1563,2]]], [1564,[6047.6,10650.1,6.35783e-007],[[1528,2],[1598,2],[1564,2],[1599,2]]], [1565,[6030.68,10635.7,0],[[1598,2],[1528,2]]], +[1566,[5728.42,10470.1,1.19209e-007],[[1529,2],[1600,2],[1568,2],[1601,2]]], [1567,[5814.04,10358.1,0],[[1529,2],[1602,2],[1600,2],[1603,2]]], [1568,[5732.62,10533.5,-2.38419e-007],[[1530,2],[1566,2]]], [1569,[7312.01,11261,-2.54313e-006],[[1531,2],[1552,2],[1569,2]]], [1570,[5710.76,9273.12,0],[[1533,2],[1604,2]]], [1571,[5572.6,7959.44,0],[[1535,2],[1605,2]]], +[1572,[5764,7862.06,0],[[1535,2]]], [1573,[6076.99,7970.1,0],[[1536,2],[1606,2]]], [1574,[5331.24,8703.54,0],[[1537,2],[1607,2]]], [1575,[6368.87,8881.64,0],[[1538,2],[1608,2]]], [1576,[9987.77,13053,3.8147e-006],[[1539,2],[1609,2]]], [1577,[11364.8,13112.5,0],[[1540,2],[1610,2]]], +[1578,[11174.8,4367.66,7.62939e-006],[[1541,2],[1611,2]]], [1579,[10158.3,5041.74,0],[[1542,2]]], [1580,[10348.1,4886.33,0],[[1543,2],[1612,2]]], [1581,[12446.1,5225.67,0],[[1544,2],[1613,2]]], [1582,[1656.73,7207.87,1.58946e-007],[[1545,2],[1551,2],[1582,2]]], [1583,[2141.01,8508.08,0],[[1546,2],[1614,2]]], +[1584,[2197.73,8273.93,0],[[1546,2],[1615,2]]], [1585,[1612.21,8504.11,0],[[1547,2]]], [1586,[912.739,7603.9,-2.38419e-007],[[1548,2],[1587,2]]], [1587,[912.629,7635.16,0],[[1549,2],[1586,2],[1588,2]]], [1588,[885.616,7685.6,0],[[1549,2],[1588,2],[1587,2]]], [1589,[7241.33,11596.3,3.3341],[[1553,2],[1589,2],[1616,2]]], +[1590,[8108.82,13610.7,0],[[1554,2],[1617,2]]], [1591,[8342.62,13683,0],[[1554,2],[1618,2],[1619,2]]], [1592,[6857.11,12198.7,0],[[1555,2],[1620,2]]], [1593,[6699.62,12498.8,6.35783e-007],[[1555,2],[1621,2],[1593,2],[1622,2]]], [1594,[6307.61,11308.1,0],[[1556,2],[1623,2]]], [1595,[5437.13,11205.1,0],[[1561,2],[1624,2],[1625,2]]], +[1596,[5384.55,11445.4,0],[[1561,2],[1626,2]]], [1597,[5669.18,11347.2,-1.90735e-006],[[1561,2],[1627,2]]], [1598,[6037.43,10658.7,0],[[1564,2],[1565,2],[1598,2]]], [1599,[6126.81,10538.6,0],[[1564,2],[1628,2]]], [1600,[5703.6,10382.1,0],[[1566,2],[1567,2],[1602,2],[1600,2],[1629,2],[1601,2]]], [1601,[5662.18,10391.4,0],[[1566,2],[1600,2],[1630,2],[1629,2]]], +[1602,[5753.61,10373.9,0],[[1567,2],[1600,2],[1631,2]]], [1603,[5806.63,10277,1.58946e-007],[[1567,2],[1632,2],[1631,2],[1633,2]]], [1604,[5692.86,9307.43,0],[[1570,2],[1634,2],[1635,2],[1636,2]]], [1605,[5515.6,8056.63,0],[[1571,2],[1637,2],[1638,2]]], [1606,[6095.3,8034.2,0],[[1573,2],[1606,2],[1639,2]]], [1607,[5223.31,8717.2,0],[[1574,2],[1640,2],[1641,2]]], +[1608,[6404.12,8920.37,0],[[1575,2]]], [1609,[9881.23,13082.7,0],[[1576,2],[1642,2]]], [1610,[11217.5,13123.1,0],[[1577,2],[1643,2]]], [1611,[11202.7,4335.67,0],[[1578,2],[1644,2],[1611,2],[1645,2]]], [1612,[10260.2,4808.57,0],[[1580,2],[1646,2],[1647,2],[1612,2],[1648,2]]], [1613,[12554.4,5141.13,0],[[1581,2],[1649,2]]], +[1614,[2247.86,8553.08,2.38419e-007],[[1583,2],[1650,2]]], [1615,[2289.57,8223.47,0],[[1584,2],[1651,2],[1615,2]]], [1616,[7159.21,11640.6,0.890676],[[1589,2],[1652,2],[1616,2],[1653,2]]], [1617,[7945.09,13564.6,-1.58946e-007],[[1590,2],[1654,2],[1655,2]]], [1618,[8429.42,13642.6,2.38419e-007],[[1591,2],[1656,2],[1657,2],[1619,2]]], [1619,[8397.54,13708.1,0],[[1591,2],[1618,2],[1658,2]]], +[1620,[6856.08,12052.6,0],[[1592,2],[1659,2]]], [1621,[6710.88,12478.7,4.76837e-007],[[1593,2]]], [1622,[6591.21,12650.7,0],[[1593,2],[1660,2]]], [1623,[6387.4,11424.4,0],[[1594,2],[1661,2]]], [1624,[5309.1,11138.1,0],[[1595,2]]], [1625,[5409.3,11137.3,-2.38419e-007],[[1595,2],[1662,2]]], +[1626,[5241.74,11447.8,0],[[1596,2],[1663,2]]], [1627,[5647.57,11377.6,0],[[1597,2]]], [1628,[6054.78,10485.1,-9.53674e-007],[[1599,2],[1664,2],[1665,2],[1628,2]]], [1629,[5664.14,10301.6,0],[[1600,2],[1601,2],[1666,2],[1630,2]]], [1630,[5631.58,10319.9,0],[[1601,2],[1629,2],[1667,2]]], [1631,[5716.46,10237.1,1.19209e-007],[[1602,2],[1603,2],[1668,2],[1666,2],[1669,2]]], +[1632,[5773.3,10212.2,0],[[1603,2],[1670,2]]], [1633,[5899.74,10211.9,0],[[1603,2],[1671,2]]], [1634,[5857.06,9360.06,0],[[1604,2],[1672,2]]], [1635,[5546.47,9213.11,0],[[1604,2],[1673,2]]], [1636,[5644.36,9465.43,0],[[1604,2],[1674,2]]], [1637,[5422.68,8223.69,4.76837e-007],[[1605,2],[1675,2]]], +[1638,[5446.62,7904.65,0],[[1605,2],[1676,2]]], [1639,[5946.75,8054.13,6.35783e-007],[[1606,2],[1639,2],[1677,2]]], [1640,[5202.08,8586.68,0],[[1607,2],[1678,2],[1679,2]]], [1641,[5127.4,8792.08,-1.78814e-007],[[1607,2],[1680,2],[1641,2],[1681,2],[1679,2]]], [1642,[9897.13,13116.2,0],[[1609,2],[1682,2],[1683,2]]], [1643,[11089.8,13205.6,0],[[1610,2],[1684,2]]], +[1644,[11343.6,4243.04,7.62939e-006],[[1611,2],[1685,2]]], [1645,[11171.6,4270.67,0],[[1611,2],[1686,2],[1645,2],[1687,2]]], [1646,[10116.7,4719.51,0],[[1612,2],[1688,2]]], [1647,[10261.9,4821.09,-1.27157e-006],[[1612,2]]], [1648,[10245.7,4835.55,0],[[1612,2]]], [1649,[12671.3,5026.16,0],[[1613,2],[1689,2]]], +[1650,[2263.79,8585.69,0],[[1614,2]]], [1651,[2361.02,8153.74,-1.19209e-007],[[1651,2],[1615,2]]], [1652,[7179.07,11621.3,0],[[1616,2],[1690,2],[1652,2]]], [1653,[7023.71,11785.2,0],[[1616,2],[1691,2]]], [1654,[7761.97,13506,4.76837e-007],[[1617,2],[1692,2]]], [1655,[8003.74,13460,0],[[1617,2],[1693,2]]], +[1656,[8551.29,13743.5,0],[[1618,2],[1694,2],[1658,2]]], [1657,[8468.85,13475.5,0],[[1618,2],[1695,2]]], [1658,[8540.76,13759,0],[[1619,2],[1656,2],[1694,2]]], [1659,[6862.35,12021.1,0],[[1620,2],[1659,2],[1691,2]]], [1660,[6487.21,12747.3,2.38419e-007],[[1622,2],[1696,2]]], [1661,[6268.57,11519.7,0],[[1623,2],[1697,2]]], +[1662,[5346.12,11090.1,0],[[1625,2]]], [1663,[5132.6,11534.8,-1.19209e-007],[[1626,2],[1698,2],[1699,2],[1663,2],[1700,2]]], [1664,[6131.69,10447.4,-9.53674e-007],[[1628,2],[1664,2],[1701,2],[1702,2]]], [1665,[6053.26,10494.9,-1.27157e-006],[[1628,2]]], [1666,[5654.46,10252.7,5.96046e-008],[[1629,2],[1631,2],[1703,2],[1669,2],[1667,2]]], [1667,[5614.73,10253.4,0],[[1630,2],[1666,2],[1667,2],[1704,2]]], +[1668,[5753.89,10216.7,0],[[1631,2]]], [1669,[5707.89,10124.7,-1.58946e-007],[[1631,2],[1666,2],[1703,2],[1705,2]]], [1670,[5829.22,10109.9,0],[[1632,2],[1706,2],[1705,2],[1707,2],[1671,2]]], [1671,[6003.93,10125.6,4.76837e-007],[[1633,2],[1670,2],[1707,2],[1708,2],[1709,2]]], [1672,[5986.86,9435.73,0],[[1634,2],[1710,2]]], [1673,[5485.35,9186.69,0],[[1635,2],[1711,2],[1712,2]]], +[1674,[5637.83,9506.39,0],[[1636,2]]], [1675,[5327.67,8298.33,1.58946e-007],[[1637,2],[1678,2],[1713,2]]], [1676,[5438.97,7878.29,2.38419e-007],[[1638,2]]], [1677,[5911,8057.12,0],[[1639,2]]], [1678,[5234.26,8414.31,0],[[1640,2],[1675,2]]], [1679,[5135.37,8665.55,0],[[1640,2],[1641,2],[1681,2]]], +[1680,[4968.11,8804.81,2.38419e-007],[[1641,2],[1714,2]]], [1681,[5114.49,8694.03,0],[[1641,2],[1679,2],[1715,2]]], [1682,[10055.9,13179.2,1.90735e-006],[[1642,2],[1716,2]]], [1683,[9894.36,13193.3,3.22855],[[1642,2],[1717,2],[1683,2],[1718,2]]], [1684,[11016.8,13293.5,0],[[1643,2],[1719,2],[1720,2]]], [1685,[11347.3,4181.03,-1.90735e-006],[[1644,2],[1721,2],[1722,2],[1685,2],[1723,2]]], +[1686,[11181.5,4279.63,0],[[1645,2]]], [1687,[11112.5,4254.31,0],[[1645,2],[1724,2],[1725,2],[1687,2]]], [1688,[9982.16,4668.39,0],[[1646,2],[1726,2]]], [1689,[12773.6,4906.89,0],[[1649,2],[1727,2]]], [1690,[7184.07,11616,0.890676],[[1652,2]]], [1691,[6924.57,11902.7,0],[[1653,2],[1659,2]]], +[1692,[7618.75,13548.4,0],[[1654,2],[1728,2]]], [1693,[8102.95,13392.7,9.53674e-007],[[1655,2]]], [1694,[8562.25,13757,0],[[1656,2],[1658,2],[1729,2]]], [1695,[8472.05,13427.7,0],[[1657,2]]], [1696,[6440.05,12777.8,7.94729e-008],[[1660,2],[1730,2],[1731,2]]], [1697,[6197.37,11622.3,0],[[1661,2],[1732,2]]], +[1698,[5135.61,11675.3,0],[[1663,2],[1733,2]]], [1699,[5131.15,11523.1,-3.17891e-007],[[1663,2]]], [1700,[5047.91,11436.9,0],[[1663,2],[1734,2]]], [1701,[6160.04,10459.4,0],[[1664,2]]], [1702,[6094.81,10381,0],[[1664,2],[1735,2]]], [1703,[5669.24,10101.8,2.38419e-007],[[1666,2],[1669,2],[1736,2]]], +[1704,[5570.19,10120,0],[[1667,2],[1737,2]]], [1705,[5712.21,10000.7,1.58946e-007],[[1669,2],[1670,2],[1706,2],[1738,2]]], [1706,[5784.61,9986.88,0],[[1670,2],[1705,2],[1739,2],[1707,2],[1740,2]]], [1707,[5905.17,10094.2,0],[[1670,2],[1671,2],[1706,2],[1739,2]]], [1708,[6061.99,10186.1,0],[[1671,2],[1741,2]]], [1709,[6040.13,10014,-6.35783e-007],[[1671,2],[1739,2],[1742,2]]], +[1710,[6118.06,9497.26,3.8147e-006],[[1672,2],[1743,2]]], [1711,[5393.04,9125.68,-2.38419e-007],[[1673,2],[1744,2],[1711,2],[1745,2]]], [1712,[5449.03,9325.9,0],[[1673,2],[1746,2]]], [1713,[5183.2,8337.68,0],[[1675,2],[1747,2]]], [1714,[4876.71,8821.36,0],[[1680,2],[1748,2],[1749,2],[1714,2]]], [1715,[5054.63,8623.46,1.19209e-007],[[1681,2],[1750,2],[1747,2],[1715,2],[1751,2]]], +[1716,[10122.7,13210.5,0],[[1682,2],[1752,2],[1753,2],[1716,2]]], [1717,[9891.66,13166.5,4.84282],[[1683,2]]], [1718,[9917.25,13366.9,0],[[1683,2],[1754,2]]], [1719,[10875.3,13392.6,0],[[1684,2],[1755,2]]], [1720,[10953.2,13145.7,0],[[1684,2],[1756,2]]], [1721,[11191.3,4100.29,0],[[1685,2],[1757,2]]], +[1722,[11351.9,4190.93,0],[[1685,2]]], [1723,[11367.8,4310.13,0],[[1685,2],[1758,2]]], [1724,[11052.9,4213.45,0],[[1687,2]]], [1725,[11133.6,4260.28,0],[[1687,2]]], [1726,[10002.6,4600.93,-7.62939e-006],[[1688,2],[1759,2]]], [1727,[12799,4843.11,1.19209e-007],[[1689,2],[1760,2],[1727,2],[1761,2],[1762,2]]], +[1728,[7457.53,13485.6,0],[[1692,2],[1763,2]]], [1729,[8703.08,13730.4,-1.90735e-006],[[1694,2],[1764,2]]], [1730,[6424.73,12817.5,0],[[1696,2],[1765,2],[1766,2]]], [1731,[6330.37,12688.6,0],[[1696,2],[1767,2]]], [1732,[6169.06,11707.5,2.54313e-006],[[1697,2],[1768,2],[1769,2]]], [1733,[5268.13,11698.1,-9.53674e-007],[[1698,2],[1770,2]]], +[1734,[4996.52,11369.4,0],[[1700,2]]], [1735,[6056.67,10362.7,0],[[1702,2],[1771,2],[1735,2],[1772,2]]], [1736,[5513.44,10032,0],[[1703,2],[1737,2],[1773,2]]], [1737,[5483.81,10093.4,0],[[1704,2],[1736,2],[1774,2],[1775,2]]], [1738,[5618.71,9935.46,0],[[1705,2],[1776,2],[1773,2],[1740,2]]], [1739,[5876.77,10012.2,0],[[1706,2],[1707,2],[1709,2]]], +[1740,[5710.29,9869.52,1.58946e-007],[[1706,2],[1738,2],[1777,2]]], [1741,[5995.64,10236.6,0],[[1708,2],[1778,2],[1779,2]]], [1742,[6151.96,9963.88,-4.76837e-007],[[1709,2],[1780,2],[1742,2],[1781,2]]], [1743,[6058.17,9596.59,0],[[1710,2],[1743,2]]], [1744,[5231.33,9036.13,0],[[1711,2],[1782,2]]], [1745,[5516.99,9056.55,0],[[1711,2],[1783,2]]], +[1746,[5439.17,9410.85,-3.8147e-006],[[1712,2]]], [1747,[5125.67,8451.34,4.76837e-007],[[1713,2],[1715,2],[1750,2]]], [1748,[4695.16,8845.71,0],[[1714,2],[1784,2]]], [1749,[4887.58,8830.61,0],[[1714,2],[1785,2]]], [1750,[5090.24,8507.31,0],[[1715,2],[1747,2]]], [1751,[4927.5,8691.71,0],[[1715,2],[1786,2]]], +[1752,[10290.5,13272.2,0],[[1716,2],[1787,2]]], [1753,[10098.8,13199.1,0],[[1716,2]]], [1754,[9812.14,13363,0],[[1718,2],[1788,2]]], [1755,[10762.6,13441.9,0],[[1719,2],[1789,2]]], [1756,[10986,13114.7,0],[[1720,2]]], [1757,[11026,4034.14,7.62939e-006],[[1721,2],[1790,2]]], +[1758,[11441.9,4315.19,0],[[1723,2],[1791,2]]], [1759,[10054.8,4544.63,7.62939e-006],[[1726,2],[1792,2]]], [1760,[12787.5,4880.17,2.38419e-007],[[1727,2]]], [1761,[12811.3,4756.95,0],[[1727,2],[1793,2],[1794,2],[1762,2]]], [1762,[12836.5,4826.65,0],[[1727,2],[1761,2],[1762,2],[1794,2]]], [1763,[7280.83,13452.2,0],[[1728,2],[1795,2]]], +[1764,[8758.38,13705.3,0],[[1729,2],[1796,2],[1797,2],[1798,2]]], [1765,[6362.36,12800,0],[[1730,2],[1799,2],[1800,2]]], [1766,[6466.39,12857.2,-7.94729e-008],[[1730,2],[1801,2],[1800,2]]], [1767,[6242.44,12567.1,0],[[1731,2],[1802,2]]], [1768,[6025.87,11717.9,7.62939e-006],[[1732,2],[1803,2]]], [1769,[6194.72,11919.7,0],[[1732,2],[1804,2]]], +[1770,[5369.9,11784.3,-9.53674e-007],[[1733,2],[1805,2]]], [1771,[5972.85,10391.1,0],[[1735,2],[1806,2],[1771,2]]], [1772,[6031.67,10346.8,0],[[1735,2]]], [1773,[5522.68,9899.76,1.19209e-007],[[1736,2],[1738,2],[1776,2],[1807,2]]], [1774,[5485.06,10062.9,-5.96046e-008],[[1737,2],[1774,2],[1808,2]]], [1775,[5373.43,10101.7,0],[[1737,2]]], +[1776,[5552.34,9892.37,-1.58946e-007],[[1738,2],[1773,2]]], [1777,[5782.99,9848.04,0],[[1740,2]]], [1778,[6080.22,10258.5,-6.35783e-007],[[1741,2],[1809,2],[1810,2]]], [1779,[5941.06,10256,0],[[1741,2]]], [1780,[6288.71,9954.99,-1.27157e-006],[[1742,2],[1811,2],[1812,2]]], [1781,[6133.23,9909,0],[[1742,2]]], +[1782,[5096.57,8961.38,0],[[1744,2],[1785,2]]], [1783,[5648.78,9044.54,0],[[1745,2],[1813,2]]], [1784,[4565.28,8800.77,-2.38419e-007],[[1748,2],[1814,2]]], [1785,[5022.88,8915,0],[[1749,2],[1782,2]]], [1786,[4772.83,8666.49,0],[[1751,2],[1815,2]]], [1787,[10433.8,13290.1,0],[[1752,2],[1816,2]]], +[1788,[9713.52,13371.2,0],[[1754,2],[1817,2]]], [1789,[10626.7,13460.1,2.38419e-007],[[1755,2],[1818,2]]], [1790,[11010.8,3986.31,0],[[1757,2],[1819,2],[1790,2],[1820,2]]], [1791,[11522.3,4376.51,0],[[1758,2],[1821,2]]], [1792,[10105.1,4507.99,0],[[1759,2],[1822,2]]], [1793,[12834.2,4625.81,0],[[1761,2],[1823,2],[1793,2],[1824,2],[1825,2]]], +[1794,[12845.7,4755.43,0],[[1761,2],[1762,2],[1826,2]]], [1795,[7111.23,13407.3,0],[[1763,2],[1827,2]]], [1796,[8756.16,13766.2,0],[[1764,2],[1828,2],[1796,2],[1829,2]]], [1797,[8909.51,13695.6,9.53674e-007],[[1764,2],[1830,2]]], [1798,[8780.29,13599.7,0],[[1764,2]]], [1799,[6263.74,12804.3,0],[[1765,2],[1831,2],[1800,2]]], +[1800,[6331.43,12843.2,0],[[1765,2],[1766,2],[1799,2]]], [1801,[6583.96,12966.1,0],[[1766,2],[1832,2]]], [1802,[6169.31,12404.6,2.54313e-006],[[1767,2],[1833,2],[1834,2]]], [1803,[5907.22,11758.6,0],[[1768,2],[1835,2]]], [1804,[6160.33,12081.2,7.62939e-006],[[1769,2],[1833,2]]], [1805,[5427.34,11924.4,0],[[1770,2],[1836,2]]], +[1806,[5919.57,10336.3,0],[[1771,2],[1810,2]]], [1807,[5463.71,9876.97,1.19209e-007],[[1773,2],[1837,2],[1838,2],[1807,2],[1839,2]]], [1808,[5342.17,10052.3,0],[[1774,2],[1840,2]]], [1809,[6158.98,10257,0],[[1778,2],[1841,2],[1812,2],[1842,2]]], [1810,[5972.08,10317.6,0],[[1778,2],[1806,2]]], [1811,[6241.48,10015.2,0],[[1780,2],[1843,2]]], +[1812,[6308.56,10098,0],[[1780,2],[1809,2],[1844,2]]], [1813,[5686.8,9017.61,0],[[1783,2]]], [1814,[4547.14,8784.3,-7.94729e-008],[[1784,2],[1845,2],[1846,2],[1815,2]]], [1815,[4623.14,8663.49,0],[[1786,2],[1814,2],[1846,2]]], [1816,[10344.7,13371.2,0],[[1787,2],[1847,2]]], [1817,[9664.91,13415.7,3.17891e-007],[[1788,2],[1848,2],[1849,2]]], +[1818,[10437.7,13450.2,-4.76837e-007],[[1789,2],[1847,2]]], [1819,[11018.2,3935.94,0],[[1790,2],[1850,2],[1851,2]]], [1820,[10822.4,3926.28,-2.54313e-006],[[1790,2],[1852,2],[1853,2]]], [1821,[11661.7,4340.23,-1.52588e-005],[[1791,2],[1854,2]]], [1822,[10177.1,4486.14,0],[[1792,2],[1855,2]]], [1823,[12820.6,4655.59,0],[[1793,2]]], +[1824,[12855.7,4443.31,0],[[1793,2],[1856,2]]], [1825,[12738.1,4686.78,0],[[1793,2],[1857,2]]], [1826,[12910,4744.6,0],[[1794,2]]], [1827,[6968.47,13381.5,0],[[1795,2],[1858,2]]], [1828,[8759.66,13750.7,0],[[1796,2]]], [1829,[8694.41,13833,0],[[1796,2]]], +[1830,[9075.35,13720.2,0],[[1797,2],[1859,2]]], [1831,[6123.15,12773.1,1.58946e-007],[[1799,2],[1860,2],[1861,2]]], [1832,[6643.83,13095.7,0],[[1801,2],[1862,2]]], [1833,[6147.64,12209.1,1.52588e-005],[[1802,2],[1804,2]]], [1834,[6036.38,12440.3,-1.27157e-006],[[1802,2],[1863,2],[1864,2]]], [1835,[5774.44,11812.2,1.90735e-006],[[1803,2],[1865,2]]], +[1836,[5511.8,12025.7,0],[[1805,2],[1866,2],[1865,2]]], [1837,[5320.47,9887.02,4.76837e-007],[[1807,2],[1867,2]]], [1838,[5474.12,9873.07,1.58946e-007],[[1807,2]]], [1839,[5546.4,9835.42,0],[[1807,2]]], [1840,[5204.71,10042.3,2.38419e-007],[[1808,2],[1867,2]]], [1841,[6263.69,10155.5,0],[[1809,2],[1842,2]]], +[1842,[6187.77,10285.5,6.35783e-007],[[1809,2],[1841,2],[1868,2]]], [1843,[6173.3,10031.9,0],[[1811,2]]], [1844,[6278.61,10134.4,0],[[1812,2]]], [1845,[4394.21,8764.66,0],[[1814,2],[1869,2]]], [1846,[4575.02,8673.86,0],[[1814,2],[1815,2],[1870,2]]], [1847,[10313,13401.9,0],[[1816,2],[1818,2],[1871,2]]], +[1848,[9734.55,13513.2,0],[[1817,2],[1872,2],[1873,2],[1874,2]]], [1849,[9591.58,13377.3,-4.76837e-007],[[1817,2],[1875,2],[1849,2],[1876,2]]], [1850,[11035.4,3797.37,0],[[1819,2],[1877,2],[1850,2]]], [1851,[11165.2,3915.75,0],[[1819,2],[1878,2]]], [1852,[10665.4,3915.34,0],[[1820,2],[1879,2]]], [1853,[10877.7,4020.08,0],[[1820,2],[1880,2]]], +[1854,[11793,4341.18,0],[[1821,2],[1881,2]]], [1855,[10072.2,4323.06,0],[[1822,2],[1882,2]]], [1856,[12803.9,4330.92,0],[[1824,2],[1883,2]]], [1857,[12603.4,4735.92,-9.53674e-007],[[1825,2],[1884,2]]], [1858,[6933.6,13363.6,0],[[1827,2],[1885,2],[1886,2]]], [1859,[9220.35,13714.5,0],[[1830,2],[1887,2]]], +[1860,[5949.05,12811,0],[[1831,2],[1888,2]]], [1861,[6078.73,12683.3,0],[[1831,2]]], [1862,[6691.64,13162.2,5.07388],[[1832,2],[1862,2],[1889,2],[1885,2]]], [1863,[5859.15,12471.5,1.90735e-006],[[1834,2],[1890,2]]], [1864,[6087.98,12549.8,-1.90735e-006],[[1834,2],[1891,2]]], [1865,[5671.22,11899,0],[[1835,2],[1836,2]]], +[1866,[5548.92,12124,1.58946e-007],[[1836,2],[1892,2],[1893,2]]], [1867,[5178.85,9898.89,1.19209e-007],[[1837,2],[1840,2],[1894,2],[1867,2]]], [1868,[6095.5,10331,0],[[1842,2]]], [1869,[4417.79,8866.03,0],[[1845,2],[1895,2]]], [1870,[4457.68,8499.68,-2.38419e-007],[[1846,2],[1896,2]]], [1871,[10149.1,13479.9,0],[[1847,2],[1897,2]]], +[1872,[9590.58,13540,2.38419e-007],[[1848,2],[1898,2]]], [1873,[9850.36,13504.1,-7.94729e-008],[[1848,2],[1899,2],[1900,2],[1874,2]]], [1874,[9759.77,13565.4,0],[[1848,2],[1873,2],[1901,2],[1902,2]]], [1875,[9507.25,13381.7,-2.38419e-007],[[1849,2],[1898,2],[1903,2],[1904,2]]], [1876,[9678.84,13303.9,0],[[1849,2]]], [1877,[11111.4,3673.41,0],[[1850,2],[1905,2]]], +[1878,[11298.2,3886.49,0],[[1851,2]]], [1879,[10601.3,4019.91,0],[[1852,2],[1906,2]]], [1880,[10948,4132.75,0],[[1853,2],[1907,2]]], [1881,[11816.9,4342.16,0],[[1854,2],[1908,2],[1909,2]]], [1882,[10027.9,4216.86,0],[[1855,2],[1910,2]]], [1883,[12772.2,4180.67,0],[[1856,2],[1911,2],[1912,2]]], +[1884,[12463.8,4716.18,1.90735e-006],[[1857,2],[1913,2]]], [1885,[6827.02,13257.4,0],[[1858,2],[1862,2],[1889,2]]], [1886,[6828.27,13378,0],[[1858,2],[1914,2]]], [1887,[9262.02,13688.4,-7.94729e-008],[[1859,2],[1887,2],[1915,2]]], [1888,[5816.96,12704.7,0],[[1860,2],[1916,2]]], [1889,[6763.52,13240.3,1.90735e-006],[[1862,2],[1885,2],[1917,2],[1889,2]]], +[1890,[5763.95,12541.8,0],[[1863,2],[1918,2]]], [1891,[6084.34,12572.9,0],[[1864,2]]], [1892,[5509.06,12308.8,0],[[1866,2],[1919,2]]], [1893,[5689.14,12262.2,0],[[1866,2],[1920,2]]], [1894,[5085.3,9861.57,1.58946e-007],[[1867,2],[1921,2],[1922,2]]], [1895,[4503.16,8965.61,0],[[1869,2],[1923,2]]], +[1896,[4442.56,8479.29,-7.94729e-008],[[1870,2],[1924,2],[1925,2]]], [1897,[10124.9,13493.9,0],[[1871,2],[1899,2],[1926,2]]], [1898,[9537.19,13543.9,-1.19209e-007],[[1872,2],[1875,2],[1927,2],[1928,2]]], [1899,[9917.94,13502.8,7.94729e-008],[[1873,2],[1897,2],[1899,2]]], [1900,[9852.82,13561,0],[[1873,2],[1926,2]]], [1901,[9620.54,13601.2,0],[[1874,2],[1928,2]]], +[1902,[9840.42,13564.1,0],[[1874,2]]], [1903,[9464.87,13303.9,0],[[1875,2],[1903,2],[1929,2]]], [1904,[9414.67,13479.9,0],[[1875,2],[1927,2]]], [1905,[11014,3594.81,0],[[1877,2],[1930,2]]], [1906,[10587.2,4034.14,0],[[1879,2],[1931,2],[1932,2]]], [1907,[11003,4189.89,0],[[1880,2],[1933,2],[1907,2]]], +[1908,[11955.4,4404.7,0],[[1881,2],[1934,2]]], [1909,[11867.3,4215.88,0],[[1881,2],[1935,2]]], [1910,[10081.4,4154.17,4.76837e-007],[[1882,2],[1936,2]]], [1911,[12892.7,4063.61,0],[[1883,2],[1937,2]]], [1912,[12696.1,4056.02,1.90735e-006],[[1883,2],[1938,2]]], [1913,[12379.8,4588.91,0],[[1884,2],[1939,2]]], +[1914,[6786.33,13376.9,0],[[1886,2]]], [1915,[9285.93,13657.6,-1.58946e-007],[[1887,2],[1940,2],[1927,2],[1941,2]]], [1916,[5739.44,12648.4,7.94729e-008],[[1888,2],[1942,2],[1918,2]]], [1917,[6734.4,13216.8,1.44028],[[1889,2]]], [1918,[5750.27,12564.1,1.58946e-007],[[1890,2],[1916,2],[1942,2]]], [1919,[5525.5,12459.7,4.76837e-007],[[1892,2],[1942,2]]], +[1920,[5723.36,12288.5,0],[[1893,2]]], [1921,[4999.73,9706.39,0],[[1894,2],[1943,2]]], [1922,[4975.58,9928.43,0],[[1894,2],[1922,2],[1944,2]]], [1923,[4610.83,9082.87,0],[[1895,2],[1945,2]]], [1924,[4258.04,8397.08,0],[[1896,2],[1946,2]]], [1925,[4548.2,8451.31,0],[[1896,2],[1947,2]]], +[1926,[10029.9,13549.3,0],[[1897,2],[1900,2]]], [1927,[9398.23,13570.3,-7.94729e-008],[[1898,2],[1904,2],[1915,2],[1940,2]]], [1928,[9535.96,13597.2,-7.94729e-008],[[1898,2],[1901,2],[1941,2]]], [1929,[9455.74,13261.6,-6.35783e-007],[[1903,2],[1948,2],[1949,2]]], [1930,[11038.1,3474,0],[[1905,2],[1950,2]]], [1931,[10432.7,3987.96,0],[[1906,2],[1951,2]]], +[1932,[10619.7,4055.84,-2.54313e-006],[[1906,2],[1952,2],[1932,2]]], [1933,[10953.8,4213.84,0],[[1907,2],[1953,2]]], [1934,[12083.3,4464.23,0],[[1908,2],[1939,2]]], [1935,[11769.9,4148.37,0],[[1909,2],[1954,2]]], [1936,[10132.5,4060.76,-4.76837e-007],[[1910,2],[1955,2]]], [1937,[12872.7,3905.53,0],[[1911,2],[1956,2]]], +[1938,[12553.2,3990.14,0],[[1912,2],[1957,2]]], [1939,[12273.4,4502.34,0],[[1913,2],[1934,2]]], [1940,[9319.5,13601.6,2.38419e-007],[[1915,2],[1927,2],[1958,2],[1940,2]]], [1941,[9430.43,13610.6,0],[[1915,2],[1928,2]]], [1942,[5645.94,12571.7,0],[[1916,2],[1918,2],[1919,2]]], [1943,[4883.03,9586.99,0],[[1921,2],[1959,2]]], +[1944,[4857.46,9805.58,-4.76837e-007],[[1922,2],[1960,2]]], [1945,[4698.1,9245.8,-4.76837e-007],[[1923,2],[1961,2]]], [1946,[4222.2,8381.51,0],[[1924,2]]], [1947,[4644.57,8454.08,0],[[1925,2]]], [1948,[9419.15,13101.9,0],[[1929,2],[1962,2]]], [1949,[9364.33,13229.8,1.27157e-006],[[1929,2],[1963,2],[1964,2]]], +[1950,[11186.1,3527.12,0],[[1930,2],[1965,2]]], [1951,[10330.8,3870.83,-1.90735e-006],[[1931,2],[1966,2]]], [1952,[10653.5,4092.87,-5.08626e-006],[[1932,2],[1967,2],[1952,2]]], [1953,[10938.9,4219.27,7.62939e-006],[[1953,2]]], [1954,[11662.8,4109,0],[[1935,2]]], [1955,[10124.2,4043.9,-1.58946e-007],[[1936,2],[1966,2],[1968,2]]], +[1956,[12810.7,3768.98,0],[[1937,2],[1969,2]]], [1957,[12452.3,3938.68,0],[[1938,2],[1970,2],[1971,2]]], [1958,[9338.45,13474.4,0],[[1940,2],[1972,2]]], [1959,[4847.1,9554.02,0],[[1943,2],[1961,2],[1960,2]]], [1960,[4800.48,9693.84,0],[[1944,2],[1959,2]]], [1961,[4752.31,9396.14,0],[[1945,2],[1959,2]]], +[1962,[9518.02,13111.8,0],[[1948,2],[1973,2]]], [1963,[9336.02,13195,1.27157e-006],[[1949,2],[1974,2],[1975,2]]], [1964,[9362.39,13302.4,0],[[1949,2]]], [1965,[11205.1,3396.52,0],[[1950,2],[1976,2]]], [1966,[10206.2,3952.05,9.53674e-007],[[1951,2],[1955,2]]], [1967,[10694.4,4133.45,0],[[1952,2]]], +[1968,[9975.52,4070.05,0],[[1955,2],[1980,2]]], [1969,[12729.7,3637.86,0],[[1956,2],[1981,2]]], [1970,[12356.3,3870.2,0],[[1957,2],[1982,2],[1983,2]]], [1971,[12399.9,3983.23,0],[[1957,2],[1984,2]]], [1972,[9336.86,13419.9,-1.90735e-006],[[1958,2]]], [1973,[9561.83,13121.5,0],[[1962,2]]], +[1974,[9318.46,13059.8,0],[[1974,2],[1963,2]]], [1975,[9289.16,13236.7,0],[[1963,2],[1985,2]]], [1976,[11290.6,3269.99,1.90735e-006],[[1965,2],[1986,2]]], [1977,[10905.8,4201.65,5.08626e-006],[[1953,2],[1978,2],[1977,2],[1979,2]]], [1978,[10909.9,4193.32,7.62939e-006],[[1977,2]]], [1979,[10879.6,4262.32,0],[[1977,2],[1987,2]]], +[1980,[9861.25,4088.31,0],[[1968,2],[1988,2]]], [1981,[12654.8,3522.92,-3.8147e-006],[[1969,2],[1989,2]]], [1982,[12223.8,3815.39,0],[[1970,2],[1990,2]]], [1983,[12248.9,3897.88,0],[[1970,2],[1991,2]]], [1984,[12356.8,3953.35,0],[[1971,2]]], [1985,[9254.56,13215.4,0],[[1975,2]]], +[1986,[11310.1,3258.09,6.35783e-007],[[1976,2],[1992,2],[1993,2]]], [1987,[10848.9,4304.63,0],[[1979,2],[1994,2]]], [1988,[9760.19,4130.43,2.38419e-007],[[1980,2],[1995,2]]], [1989,[12588,3395.42,0],[[1981,2],[1996,2]]], [1990,[12146.1,3854.1,2.54313e-006],[[1982,2],[1997,2],[1998,2]]], [1991,[12277.1,4008.02,0],[[1983,2],[1999,2]]], +[1992,[11454.7,3155.06,0],[[1986,2],[2000,2]]], [1993,[11283.9,3354.79,0],[[1986,2],[2001,2]]], [1994,[10818.3,4346.01,0],[[1987,2],[2002,2]]], [1995,[9642.79,4067.59,0],[[1988,2],[2003,2]]], [1996,[12566.2,3359.55,0],[[1989,2],[2004,2],[2005,2],[2006,2]]], [1997,[12192.6,3737.7,0],[[1990,2],[2007,2]]], +[1998,[12101.7,3900.11,0],[[1990,2],[2008,2]]], [1999,[12289.1,4015.97,0],[[1991,2],[1999,2],[2009,2]]], [2000,[11561.5,3076.23,0],[[1992,2],[2010,2]]], [2001,[11377.5,3412.46,-1.90735e-006],[[1993,2],[2011,2]]], [2002,[10797.5,4376.62,0],[[1994,2]]], [2003,[9507.97,4068.36,-9.53674e-007],[[1995,2],[2012,2]]], +[2004,[12447.7,3253.48,0],[[1996,2],[2013,2]]], [2005,[12690.8,3290.55,0],[[1996,2],[2014,2]]], [2006,[12551,3380.81,3.8147e-006],[[1996,2]]], [2007,[12203.7,3724.06,0],[[1997,2],[2007,2],[2015,2]]], [2008,[12068.4,3922.1,0],[[1998,2],[2016,2]]], [2009,[12316.5,4052.81,7.62939e-006],[[1999,2]]], +[2010,[11622,3038.74,0],[[2000,2],[2017,2],[2018,2]]], [2011,[11530.3,3303.2,0],[[2001,2],[2019,2]]], [2012,[9474.15,4023.37,-1.19209e-007],[[2003,2],[2020,2],[2021,2],[2022,2]]], [2013,[12307.4,3159.99,0],[[2004,2],[2023,2]]], [2014,[12741.4,3262.88,0],[[2005,2]]], [2015,[12236.9,3702.14,0],[[2007,2]]], +[2016,[12038.5,3923.07,0],[[2008,2]]], [2017,[11676.7,2980.27,-1.58946e-007],[[2010,2],[2024,2],[2025,2]]], [2018,[11730.3,2959.55,2.38419e-007],[[2010,2]]], [2019,[11631.7,3233.54,0],[[2011,2],[2026,2]]], [2020,[9438.85,4051.1,0],[[2012,2]]], [2021,[9440.32,3963.87,-1.58946e-007],[[2012,2],[2027,2],[2022,2],[2028,2]]], +[2022,[9352.28,4059.78,1.19209e-007],[[2012,2],[2021,2],[2027,2],[2029,2],[2030,2]]], [2023,[12185.5,3077.4,-2.38419e-007],[[2013,2],[2031,2]]], [2024,[11832,2852.11,0],[[2017,2],[2032,2],[2033,2]]], [2025,[11645.6,2933.77,0],[[2017,2],[2034,2],[2035,2]]], [2026,[11753.2,3233.45,0],[[2019,2],[2036,2],[2037,2],[2026,2]]], [2027,[9351.57,3971.55,0],[[2021,2],[2022,2],[2038,2]]], +[2028,[9408.01,3902.49,1.58946e-007],[[2021,2],[2039,2],[2028,2],[2040,2],[2038,2]]], [2029,[9285.65,4160.79,0],[[2022,2],[2041,2]]], [2030,[9378.15,4117.19,2.38419e-007],[[2030,2],[2042,2]]], [2031,[12149,2992.83,0],[[2023,2],[2043,2],[2044,2]]], [2032,[11963.7,2825.94,0],[[2024,2],[2045,2],[2043,2]]], [2033,[11792,2787.52,0],[[2024,2],[2034,2],[2033,2],[2046,2],[2047,2]]], +[2034,[11645,2802.47,-1.19209e-007],[[2025,2],[2033,2],[2035,2],[2047,2],[2048,2]]], [2035,[11553.3,2853.91,0],[[2025,2],[2034,2],[2049,2],[2050,2]]], [2036,[11861,3117.83,0],[[2026,2],[2051,2],[2052,2],[2036,2]]], [2037,[11734.5,3246.09,0],[[2026,2]]], [2038,[9312.41,3884.48,-2.38419e-007],[[2027,2],[2028,2],[2053,2]]], [2039,[9429.8,3911.45,2.38419e-007],[[2028,2]]], +[2040,[9308.47,3865.22,0],[[2028,2],[2054,2]]], [2041,[9277.99,4182.21,1.19209e-007],[[2029,2],[2041,2],[2055,2],[2056,2]]], [2042,[9437.45,4188.27,2.38419e-007],[[2030,2]]], [2043,[12058,2888.11,0],[[2031,2],[2032,2],[2057,2],[2045,2]]], [2044,[12221.5,2995.11,-1.58946e-007],[[2031,2],[2058,2],[2059,2]]], [2045,[12015.8,2893.24,0],[[2032,2],[2043,2],[2051,2]]], +[2046,[11788.6,2758.97,0],[[2033,2],[2046,2],[2060,2],[2047,2]]], [2047,[11689.9,2779.86,7.94729e-008],[[2034,2],[2046,2],[2033,2],[2060,2]]], [2048,[11637.9,2725.13,0],[[2034,2],[2061,2],[2062,2]]], [2049,[11525.8,2691.46,9.53674e-007],[[2035,2],[2063,2]]], [2050,[11350.3,2889.58,0],[[2035,2],[2064,2],[2065,2],[2066,2]]], [2051,[11952.7,2998.83,0],[[2036,2],[2045,2]]], +[2052,[11871.4,3142.21,-9.53674e-007],[[2036,2],[2052,2]]], [2053,[9324.45,3880.04,-1.19209e-007],[[2038,2]]], [2054,[9216.27,3736.28,6.35783e-007],[[2040,2],[2067,2],[2068,2]]], [2055,[9083.28,4098.1,0],[[2041,2],[2069,2]]], [2056,[9287.36,4340.27,-4.76837e-007],[[2041,2],[2070,2]]], [2057,[12021,2872.54,0],[[2043,2]]], +[2058,[12362.3,2987.15,0],[[2044,2],[2071,2]]], [2059,[12238.7,2839.12,0],[[2044,2],[2059,2]]], [2060,[11708.7,2753.86,0],[[2046,2],[2047,2]]], [2061,[11584.7,2591.21,0],[[2048,2],[2072,2]]], [2062,[11600,2706.1,0],[[2048,2],[2073,2],[2074,2]]], [2063,[11506.9,2628.78,-5.96046e-008],[[2049,2],[2064,2],[2075,2],[2076,2],[2072,2],[2074,2]]], +[2064,[11389,2724.52,0],[[2050,2],[2063,2]]], [2065,[11255,2887.36,-3.17891e-007],[[2050,2],[2077,2],[2078,2],[2065,2]]], [2066,[11343,2933.28,0],[[2050,2]]], [2067,[9041.54,3638.77,0],[[2054,2],[2079,2]]], [2068,[9319.89,3587.34,0],[[2054,2],[2080,2]]], [2069,[8986.51,4056.79,0],[[2069,2]]], +[2070,[9260.16,4471.07,0],[[2056,2],[2081,2]]], [2071,[12386.7,2940.99,0],[[2058,2]]], [2072,[11566.5,2574.83,0],[[2061,2],[2063,2],[2082,2],[2075,2],[2076,2]]], [2073,[11607.6,2717.95,0],[[2062,2]]], [2074,[11550.7,2618.25,0],[[2062,2],[2063,2],[2076,2]]], [2075,[11491.1,2534.3,-1.19209e-007],[[2063,2],[2072,2],[2083,2],[2075,2],[2082,2]]], +[2076,[11534.9,2601.7,7.94729e-008],[[2063,2],[2072,2],[2074,2]]], [2077,[11089,2884.46,0],[[2065,2],[2084,2]]], [2078,[11271.5,2889.78,-4.76837e-007],[[2065,2]]], [2079,[8981.85,3535.51,0],[[2067,2],[2085,2]]], [2080,[9262.76,3450.8,0],[[2068,2],[2086,2]]], [2081,[9245.54,4622.23,0],[[2070,2],[2090,2]]], +[2082,[11531.5,2544.79,0],[[2072,2],[2075,2]]], [2083,[11509.2,2428.29,0],[[2075,2],[2091,2],[2092,2]]], [2084,[10935.4,2878.21,0],[[2077,2],[2093,2]]], [2085,[8881.95,3627.45,0],[[2079,2],[2094,2]]], [2086,[9127.16,3384.65,0],[[2080,2],[2095,2]]], [2087,[8794.38,4013.54,0],[[2069,2],[2088,2],[2089,2]]], +[2088,[8750.25,3854.86,0],[[2087,2],[2094,2]]], [2089,[8702.77,4175.65,0],[[2087,2],[2096,2]]], [2090,[9235.76,4745.66,0],[[2081,2],[2097,2]]], [2091,[11581.3,2440.34,0],[[2083,2],[2098,2],[2099,2],[2091,2],[2100,2]]], [2092,[11446.8,2374.42,0],[[2083,2],[2101,2],[2102,2],[2092,2],[2103,2]]], [2093,[10790.8,2838.54,0],[[2084,2],[2104,2]]], +[2094,[8765.94,3722.02,0],[[2085,2],[2088,2]]], [2095,[9147.63,3324.95,0],[[2086,2],[2105,2]]], [2096,[8608.1,4310.07,1.86866],[[2089,2],[2106,2],[2096,2],[2107,2]]], [2097,[9131.81,4835.54,0],[[2090,2],[2108,2]]], [2098,[11662.1,2515.94,0],[[2091,2],[2098,2],[2109,2]]], [2099,[11581.3,2430.43,0],[[2091,2]]], +[2100,[11697.5,2306.76,0],[[2091,2],[2110,2],[2111,2]]], [2101,[11386.5,2293.49,0],[[2092,2]]], [2102,[11454.1,2385.06,0],[[2092,2]]], [2103,[11339.2,2415.21,0],[[2092,2],[2112,2]]], [2104,[10661.7,2760.1,0],[[2093,2],[2113,2]]], [2105,[9242.31,3319.39,0],[[2095,2],[2105,2],[2114,2]]], +[2106,[8622.54,4294.68,2.80299],[[2096,2]]], [2107,[8553.93,4481.46,0],[[2096,2],[2115,2]]], [2108,[9013.96,4788.98,0],[[2097,2],[2116,2]]], [2109,[11721.2,2515.72,7.94729e-008],[[2098,2],[2109,2],[2117,2]]], [2110,[11777.4,2177.54,-3.17891e-007],[[2100,2],[2118,2],[2119,2]]], [2111,[11698.7,2378.08,0],[[2117,2],[2131,2],[2100,2],[2132,2]]], +[2112,[11210,2367.12,0],[[2103,2],[2120,2]]], [2113,[10506.7,2737.18,-9.53674e-007],[[2104,2],[2121,2]]], [2114,[9161.14,3184.55,0],[[2105,2],[2122,2]]], [2115,[8624.85,4580.04,0],[[2107,2],[2123,2]]], [2116,[8957.86,4731.58,-3.17891e-007],[[2108,2],[2123,2],[2116,2]]], [2117,[11725.3,2393.84,2.38419e-007],[[2109,2],[2111,2]]], +[2118,[11825.4,2152.34,0],[[2110,2],[2124,2],[2125,2]]], [2119,[11775.7,2037.64,0],[[2110,2],[2126,2]]], [2120,[11087.2,2374.87,0],[[2112,2],[2127,2]]], [2121,[10442,2745.98,-1.19209e-007],[[2113,2],[2128,2],[2121,2],[2129,2]]], [2122,[9272.54,3116.44,0],[[2114,2],[2130,2]]], [2123,[8743.88,4634.98,0],[[2115,2],[2116,2]]], +[2124,[11881,2234.92,0],[[2118,2],[2133,2]]], [2125,[11997,2161.09,0],[[2118,2],[2134,2]]], [2126,[11778,1931.3,0],[[2119,2],[2135,2]]], [2127,[10971.1,2283.11,0],[[2120,2],[2136,2]]], [2128,[10371.4,2715.53,-1.58946e-007],[[2121,2],[2137,2],[2138,2]]], [2129,[10445.1,2694.73,0],[[2121,2]]], +[2130,[9171.06,3078.5,-3.8147e-006],[[2122,2],[2139,2]]], [2131,[11674.1,2353.72,0],[[2111,2],[2140,2],[2133,2]]], [2132,[11675,2408.58,0],[[2111,2]]], [2133,[11762.9,2359,0],[[2124,2],[2131,2]]], [2134,[12038.9,2195.63,-3.17891e-007],[[2125,2],[2134,2],[2141,2]]], [2135,[11779.2,1798.5,0],[[2126,2],[2142,2]]], +[2136,[10861.4,2200.02,-2.38419e-007],[[2127,2],[2143,2],[2136,2],[2144,2]]], [2137,[10409.8,2649.62,4.76837e-007],[[2128,2],[2145,2]]], [2138,[10148.2,2643.18,-9.53674e-007],[[2128,2],[2146,2]]], [2139,[9011.57,3070.4,0],[[2130,2],[2147,2]]], [2140,[11620.8,2405.65,-2.38419e-007],[[2131,2]]], [2141,[12174.8,2290.52,0],[[2134,2],[2148,2]]], +[2142,[11882.8,1750.79,0],[[2135,2],[2149,2]]], [2143,[10811.8,2091.52,0],[[2136,2],[2150,2]]], [2144,[10900,2074.15,0],[[2136,2],[2151,2]]], [2145,[10432.2,2578.61,0],[[2137,2],[2152,2]]], [2146,[9958.78,2587.57,0],[[2138,2],[2153,2]]], [2147,[9084.76,2970.23,0],[[2139,2],[2154,2]]], +[2148,[12358,2294.44,0],[[2141,2],[2155,2]]], [2149,[12029.4,1786.27,-3.8147e-006],[[2142,2],[2156,2]]], [2150,[10764.2,1989.54,0],[[2143,2],[2157,2]]], [2151,[10842.3,1941.44,-4.76837e-007],[[2144,2],[2157,2]]], [2152,[10434.7,2479.6,0],[[2145,2],[2158,2]]], [2153,[9830.9,2683.93,0],[[2146,2],[2159,2]]], +[2154,[9206.51,2885.41,0],[[2147,2],[2160,2]]], [2155,[12400.7,2288.62,-1.58946e-007],[[2148,2],[2161,2],[2162,2]]], [2156,[12150.6,1762.84,0],[[2149,2],[2163,2]]], [2157,[10741.1,1969.86,-3.17891e-007],[[2150,2],[2151,2],[2164,2]]], [2158,[10441.6,2367.23,0],[[2152,2],[2165,2]]], [2159,[9633.38,2687.27,9.53674e-007],[[2153,2],[2166,2]]], +[2160,[9332.35,2760.92,0],[[2154,2],[2166,2]]], [2161,[12557.8,2162.06,0],[[2155,2],[2167,2]]], [2162,[12456.8,2357.87,4.76837e-007],[[2155,2],[2168,2],[2169,2]]], [2163,[12240.7,1684.58,0],[[2156,2],[2170,2]]], [2164,[10592.4,2013.25,-4.76837e-007],[[2157,2],[2171,2]]], [2165,[10471.1,2235.25,0],[[2158,2],[2171,2]]], +[2166,[9494.67,2658.05,-4.76837e-007],[[2159,2],[2160,2]]], [2167,[12764.4,2072.06,0],[[2161,2],[2172,2]]], [2168,[12408.2,2505.6,2.38419e-007],[[2162,2],[2173,2]]], [2169,[12604,2395.23,0],[[2162,2],[2169,2],[2174,2],[2175,2],[2173,2]]], [2170,[12328.8,1763,0],[[2163,2],[2176,2]]], [2171,[10460.2,2085.07,0],[[2164,2],[2165,2]]], +[2172,[12939.7,2075,0],[[2167,2],[2177,2]]], [2173,[12536.1,2538.64,0],[[2168,2],[2169,2],[2178,2]]], [2174,[12768.6,2359.99,-1.90735e-006],[[2169,2],[2179,2]]], [2175,[12560.5,2537.27,0],[[2169,2],[2180,2]]], [2176,[12322.3,1814.74,7.62939e-006],[[2170,2]]], [2177,[12970.9,2112.9,0],[[2172,2],[2181,2],[2177,2]]], +[2178,[12561.2,2542.66,0],[[2173,2]]], [2179,[12928.8,2296.84,0],[[2174,2],[2182,2]]], [2180,[12624.7,2620.16,-4.76837e-007],[[2175,2],[2183,2]]], [2181,[13013.3,2147.39,0],[[2177,2]]], [2182,[13051.6,2324.42,0],[[2179,2],[2184,2]]], [2183,[12730.3,2675.53,0],[[2180,2],[2185,2]]], +[2184,[13167.4,2436.51,4.76837e-007],[[2182,2],[2186,2]]], [2185,[12824.4,2829.55,-4.76837e-007],[[2183,2],[2187,2]]], [2186,[13279.1,2534.25,0],[[2184,2],[2188,2]]], [2187,[12863.2,2874.4,-1.58946e-007],[[2185,2],[2187,2],[2189,2]]], [2188,[13355.3,2664.19,0],[[2186,2],[2190,2]]], [2189,[12968.5,3005.92,0],[[2187,2],[2191,2]]], +[2190,[13449.4,2769.89,0],[[2188,2],[2192,2]]], [2191,[13053.3,3121.77,0],[[2189,2],[2193,2]]], [2192,[13518.3,2895.63,0],[[2190,2],[2194,2]]], [2193,[13200.5,3213.26,0],[[2191,2],[2195,2]]], [2194,[13428.8,2971.66,0],[[2192,2],[2196,2],[2195,2]]], [2195,[13330.3,3185.29,-4.76837e-007],[[2193,2],[2194,2],[2196,2]]], +[2196,[13368.5,3142.51,0],[[2194,2],[2195,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridTembelan.sqf b/A3-Antistasi/NavGrids/navGridTembelan.sqf new file mode 100644 index 0000000000..30afee41ad --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridTembelan.sqf @@ -0,0 +1,155 @@ +navGrid = [[0,[8919.63,5193.2,0],[[1,2],[2,2],[3,2]]], [1,[8911.37,5288.63,0],[[0,2],[8,2],[9,2],[10,2]]], [2,[8920.81,5105.84,0],[[0,2],[11,2],[3,2]]], [3,[9000.59,5154.81,0],[[0,2],[2,2],[12,2],[10,2],[13,2]]], [4,[1912.89,4830.81,0],[[5,2],[6,2],[7,2]]], [5,[1870.21,4747.15,0],[[4,2],[14,2],[15,2]]], +[6,[1957.92,4884.2,-4.76837e-007],[[4,2]]], [7,[1877.97,4860.82,0],[[4,2],[16,2],[7,2],[17,2]]], [8,[8915.19,5378.57,0],[[1,2],[18,2],[10,2],[19,2]]], [9,[8692.45,5293.86,6.35783e-007],[[1,2],[20,2],[21,2]]], [10,[9016.65,5281.77,-4.76837e-007],[[1,2],[3,2],[8,2],[22,2],[18,2],[12,2]]], [11,[8846.31,5091.05,0],[[2,2]]], +[12,[9014.86,5204.77,0],[[3,2],[10,2],[12,2],[23,2],[13,2]]], [13,[9106.44,5144.44,0],[[3,2],[24,2],[23,2],[13,2],[25,2],[22,2],[12,2]]], [14,[1703.78,4742.87,0],[[5,2],[26,2]]], [15,[1905.34,4749.3,0],[[5,2]]], [16,[1795.38,4922.88,0],[[7,2],[16,2],[27,2],[17,2],[28,2]]], [17,[1782.64,4859.17,0],[[7,2],[16,2],[29,2],[27,2]]], +[18,[9009.2,5339.2,0],[[8,2],[10,2],[30,2]]], [19,[8859.31,5505.93,0],[[8,2],[31,2]]], [20,[8663.81,5428.7,-1.90735e-006],[[9,2],[32,2]]], [21,[8545.48,5144.04,0],[[9,2],[33,2],[21,2],[34,2]]], [22,[9092.19,5288.62,0],[[10,2],[13,2],[25,2],[35,2]]], [23,[9211.26,5201.06,-4.76837e-007],[[12,2],[13,2],[36,2],[37,2],[24,2]]], +[24,[9202.4,5120.22,0],[[13,2],[23,2],[38,2]]], [25,[9110.4,5210.81,-4.76837e-007],[[13,2],[22,2]]], [26,[1619.09,4763.06,0],[[14,2],[39,2],[26,2],[40,2],[29,2]]], [27,[1688.05,4914.57,0],[[16,2],[17,2],[29,2]]], [28,[1803.14,5074.38,0],[[16,2],[28,2]]], [29,[1681.64,4857.31,0],[[17,2],[26,2],[27,2],[40,2]]], +[30,[9016.13,5380.66,0],[[18,2],[41,2],[30,2],[35,2]]], [31,[8755.75,5578.35,-1.27157e-006],[[19,2],[42,2],[32,2],[43,2]]], [32,[8678.62,5576.62,0],[[20,2],[31,2],[42,2]]], [33,[8577.13,5158.44,0],[[21,2],[44,2],[33,2]]], [34,[8382.73,5022.23,0],[[21,2],[45,2]]], [35,[9095.17,5378.89,0],[[22,2],[30,2],[35,2]]], +[36,[9281.08,5187.18,0],[[23,2],[46,2],[47,2],[37,2]]], [37,[9226.46,5263.09,0],[[23,2],[36,2],[47,2],[48,2]]], [38,[9212.86,4994.04,0],[[24,2],[49,2],[50,2]]], [39,[1634.8,4747.94,0],[[26,2]]], [40,[1606.44,4855.98,0],[[26,2],[29,2],[40,2]]], [41,[9022.67,5380.68,0],[[30,2]]], +[42,[8688.64,5601.73,3.8147e-006],[[31,2],[32,2],[51,2]]], [43,[8725.86,5729.2,0],[[31,2],[52,2],[53,2]]], [44,[8579.1,5163.41,0],[[33,2]]], [45,[8274.5,4922.03,0],[[34,2],[54,2]]], [46,[9296.79,5086.9,0],[[36,2]]], [47,[9272.55,5313.68,0],[[36,2],[37,2],[55,2],[47,2]]], +[48,[9185.42,5396.11,0],[[37,2],[56,2],[55,2]]], [49,[9032.54,4988,0],[[38,2],[57,2]]], [50,[9368.84,4987.98,0],[[38,2],[58,2]]], [51,[8551.99,5666.81,0],[[42,2],[59,2],[60,2]]], [52,[8673.96,5877.16,0],[[43,2],[60,2]]], [53,[8706.47,5735.84,-2.54313e-006],[[43,2],[53,2],[61,2]]], +[54,[8159.84,4845.96,-4.76837e-007],[[45,2],[62,2]]], [55,[9283.01,5415.64,0],[[47,2],[48,2],[55,2],[56,2],[63,2]]], [56,[9213.87,5405.11,0],[[48,2],[55,2]]], [57,[8870.88,4988.02,0],[[49,2],[64,2]]], [58,[9503.13,4987.98,0],[[50,2],[58,2]]], [59,[8393.47,5744.61,3.8147e-006],[[51,2],[65,2]]], +[60,[8584.78,5822.75,7.62939e-006],[[51,2],[52,2]]], [61,[8642.52,5795.98,0],[[53,2]]], [62,[8031.43,4769.61,4.76837e-007],[[54,2],[66,2]]], [63,[9462.13,5402.93,-9.53674e-007],[[55,2],[67,2]]], [64,[8804.68,4960.64,0],[[57,2],[64,2],[68,2]]], [65,[8283.55,5813.33,1.90735e-006],[[59,2],[69,2]]], +[66,[7907.33,4720.93,0],[[62,2],[70,2],[71,2]]], [67,[9510.2,5416.77,0],[[63,2]]], [68,[8845.51,4879.98,0],[[64,2],[72,2],[68,2],[73,2]]], [69,[8267.44,5817.46,6.35783e-007],[[65,2],[74,2],[75,2]]], [70,[7734.5,4676.45,0],[[66,2],[76,2]]], [71,[7866.52,4577.2,0],[[66,2],[77,2]]], +[72,[8814.57,4885.6,0],[[68,2]]], [73,[9056.4,4880.14,0],[[68,2],[78,2]]], [74,[8359.09,5982.71,-1.90735e-006],[[69,2],[79,2]]], [75,[8145.65,5688.5,0],[[69,2],[80,2]]], [76,[7634.42,4704.15,9.53674e-007],[[70,2],[81,2],[82,2],[83,2]]], [77,[7806.17,4431.07,0],[[71,2],[84,2]]], +[78,[9138.24,4771.35,0],[[73,2],[85,2]]], [79,[8511.26,6068.02,0],[[74,2],[86,2]]], [80,[8018,5611.67,0],[[75,2],[87,2]]], [81,[7512.25,4748.07,0],[[76,2],[88,2],[89,2]]], [82,[7615.75,4652.94,-1.27157e-006],[[76,2],[90,2],[89,2]]], [83,[7659.75,4778,0],[[76,2],[91,2],[83,2],[92,2]]], +[84,[7814.76,4257.35,-1.90735e-006],[[77,2],[93,2]]], [85,[9141.04,4726.7,0],[[78,2],[85,2],[94,2]]], [86,[8621.49,6160.33,0],[[79,2],[95,2]]], [87,[7857.29,5551.45,0],[[80,2],[96,2]]], [88,[7408.39,4790.18,0],[[81,2],[97,2],[98,2]]], [89,[7489.88,4693.91,0],[[81,2],[82,2],[99,2]]], +[90,[7560.93,4568.44,0],[[82,2],[100,2],[99,2]]], [91,[7651.81,4781.11,0],[[83,2]]], [92,[7520.91,4850.19,0],[[83,2],[101,2]]], [93,[7804.04,4133.82,0],[[84,2],[102,2]]], [94,[9182.9,4719.82,0],[[85,2]]], [95,[8713.14,6252.15,0],[[86,2],[103,2]]], +[96,[7727.29,5526.29,0],[[87,2],[104,2]]], [97,[7372.75,4975.89,0],[[88,2],[105,2]]], [98,[7352.83,4647.4,9.53674e-007],[[88,2],[106,2],[99,2],[98,2],[107,2]]], [99,[7460.08,4612.19,0],[[89,2],[90,2],[98,2],[108,2],[106,2],[99,2]]], [100,[7533.77,4476.92,0],[[90,2],[109,2],[106,2]]], [101,[7546.22,4921.93,0],[[92,2]]], +[102,[7740.85,3959.64,-1.90735e-006],[[93,2],[110,2]]], [103,[8742.81,6239.98,0],[[95,2],[111,2],[112,2]]], [104,[7626.18,5509.92,0],[[96,2],[113,2]]], [105,[7428.36,5108.92,-7.62939e-006],[[97,2],[114,2]]], [106,[7438.42,4562.61,0],[[98,2],[99,2],[100,2],[115,2]]], [107,[7415.6,4618.55,-9.53674e-007],[[98,2],[107,2],[116,2]]], +[108,[7441.1,4572.12,0],[[99,2],[108,2]]], [109,[7466.77,4487.55,0],[[100,2],[117,2]]], [110,[7612.26,3887.63,0],[[102,2],[118,2]]], [111,[8801.66,6149.25,0],[[103,2]]], [112,[8936.55,6235.97,0],[[103,2],[119,2]]], [113,[7593.91,5505.59,0],[[104,2],[120,2],[121,2]]], +[114,[7503.48,5243.13,-1.27157e-006],[[105,2],[120,2],[122,2]]], [115,[7471.04,4513.52,0],[[106,2]]], [116,[7403.41,4612.76,-1.27157e-006],[[107,2]]], [117,[7383.9,4299.25,3.8147e-006],[[109,2],[123,2]]], [118,[7475.11,3874.35,0],[[110,2],[124,2]]], [119,[9034.78,6208.32,0],[[112,2],[125,2],[126,2]]], +[120,[7567.31,5353.27,0],[[113,2],[114,2]]], [121,[7588.9,5544.6,-3.17891e-007],[[113,2],[121,2],[127,2]]], [122,[7342.8,5153.9,-3.8147e-006],[[114,2],[128,2]]], [123,[7333.87,4161.07,0],[[117,2],[129,2],[130,2]]], [124,[7373.25,3877.15,-6.35783e-007],[[118,2],[131,2],[130,2],[132,2]]], [125,[9169.67,6151.84,-7.62939e-006],[[119,2],[133,2]]], +[126,[9042.13,6039.72,0],[[119,2],[134,2]]], [127,[7557.16,5763.03,-1.90735e-006],[[121,2],[135,2],[136,2]]], [128,[7206.82,5069.62,0],[[122,2],[137,2]]], [129,[7235.25,4115.61,0],[[123,2],[129,2],[138,2],[130,2],[139,2]]], [130,[7325.77,3998.91,0],[[123,2],[124,2],[129,2],[131,2],[130,2],[138,2]]], [131,[7352.4,3927.5,-4.76837e-007],[[124,2],[130,2],[131,2],[140,2],[132,2]]], +[132,[7266.13,3862.5,3.17891e-007],[[124,2],[131,2],[141,2],[140,2]]], [133,[9207.35,6075.72,0],[[125,2]]], [134,[9042.1,5907.16,0],[[126,2]]], [135,[7381.19,5695.34,0],[[127,2],[142,2]]], [136,[7499.84,5942.23,-3.8147e-006],[[127,2],[143,2]]], [137,[7092.78,4956.75,0],[[128,2],[144,2]]], +[138,[7257.47,4003.57,0],[[129,2],[130,2],[140,2],[145,2]]], [139,[7148.71,4103.14,-4.76837e-007],[[129,2],[146,2],[147,2],[148,2]]], [140,[7248.65,3910.65,-2.38419e-007],[[131,2],[132,2],[138,2],[149,2],[141,2],[146,2]]], [141,[7167.63,3857.38,0],[[132,2],[140,2],[149,2],[150,2],[146,2]]], [142,[7233.02,5716.09,0],[[135,2],[151,2]]], [143,[7453.59,6062.92,0],[[136,2],[152,2]]], +[144,[6994.62,4848.07,0],[[137,2],[153,2]]], [145,[7193.06,3979.25,0],[[138,2],[149,2],[145,2],[154,2]]], [146,[7096.46,3969.8,3.8147e-007],[[139,2],[140,2],[141,2],[155,2],[148,2],[149,2],[150,2]]], [147,[7116.14,4148.06,0],[[139,2]]], [148,[7148.59,4003.29,0],[[139,2],[146,2]]], [149,[7150.62,3906.98,3.8147e-007],[[140,2],[141,2],[145,2],[146,2],[150,2]]], +[150,[7072.63,3859.92,5.72205e-007],[[141,2],[146,2],[149,2],[156,2],[157,2]]], [151,[7105.86,5780.85,0],[[142,2],[158,2],[151,2],[159,2]]], [152,[7387.17,6148.74,0],[[143,2],[160,2],[161,2]]], [153,[6873.71,4764.55,-3.8147e-006],[[144,2],[162,2]]], [154,[7164.32,3986.71,0],[[145,2]]], [155,[7060.37,3979.4,0],[[146,2]]], +[156,[6931.81,3795.86,0],[[150,2],[163,2]]], [157,[7060.57,3727.51,-1.19209e-007],[[150,2],[164,2],[165,2],[166,2]]], [158,[6989.07,5778.38,-9.53674e-007],[[151,2]]], [159,[7205.3,5910.94,0],[[151,2],[160,2]]], [160,[7262.61,6014.11,0],[[152,2],[159,2]]], [161,[7347.03,6321.54,0],[[152,2],[167,2]]], +[162,[6848.29,4759.83,-3.8147e-006],[[153,2],[168,2],[169,2]]], [163,[6807.56,3669.17,3.8147e-006],[[156,2],[170,2]]], [164,[7211.31,3739.41,0],[[157,2],[171,2]]], [165,[7035.85,3647.42,0],[[157,2],[172,2],[173,2],[165,2]]], [166,[6979.95,3720.76,0],[[157,2]]], [167,[7323.69,6471.54,0],[[161,2],[174,2]]], +[168,[6709.48,4699.62,-3.8147e-006],[[162,2],[175,2]]], [169,[6810.08,4898.53,0],[[162,2],[176,2]]], [170,[6708.82,3515.07,0],[[163,2],[177,2]]], [171,[7343.01,3739.63,2.38419e-007],[[164,2],[178,2]]], [172,[6964.44,3647.06,-2.38419e-007],[[165,2]]], [173,[7053.31,3647.61,0],[[165,2]]], +[174,[7229.82,6629.53,3.8147e-006],[[167,2],[179,2]]], [175,[6635.59,4661.38,0],[[168,2],[180,2]]], [176,[6724.36,5038.65,0],[[169,2],[181,2]]], [177,[6642.3,3384.95,0],[[170,2],[182,2]]], [178,[7387.87,3739.69,0],[[171,2]]], [179,[7143.05,6729.8,3.8147e-006],[[174,2],[183,2]]], +[180,[6611.61,4630.74,7.62939e-007],[[175,2],[180,2],[184,2],[185,2],[186,2]]], [181,[6716.18,5194.09,-4.76837e-007],[[176,2],[187,2]]], [182,[6577.45,3238.4,1.90735e-006],[[177,2],[188,2]]], [183,[7070.71,6761.87,9.53674e-007],[[179,2],[189,2],[190,2],[191,2]]], [184,[6611.72,4595.01,0],[[180,2],[192,2]]], [185,[6461.9,4713.65,3.8147e-006],[[180,2],[193,2]]], +[186,[6622.37,4605.15,0],[[180,2],[194,2]]], [187,[6733.32,5227.75,0],[[181,2]]], [188,[6503.2,3136.22,0],[[182,2],[195,2]]], [189,[7004.25,6884.64,0],[[183,2],[196,2]]], [190,[7045.68,6655.28,0],[[183,2],[197,2],[198,2]]], [191,[6947.16,6791.7,0],[[183,2],[199,2]]], +[192,[6549.76,4476.89,0],[[184,2],[200,2]]], [193,[6404.66,4816.02,0],[[185,2],[201,2]]], [194,[6613.86,4587.68,-3.8147e-006],[[186,2]]], [195,[6363.75,3050.58,0],[[188,2],[202,2]]], [196,[6885.37,7022.13,0],[[189,2],[203,2]]], [197,[6980.23,6522.25,0],[[190,2],[204,2]]], +[198,[6860.17,6663.29,0],[[190,2],[205,2]]], [199,[6814.2,6836.16,0],[[191,2],[206,2]]], [200,[6430.47,4400.08,-1.27157e-006],[[192,2],[207,2],[208,2]]], [201,[6288.67,4796.99,0],[[193,2],[209,2],[210,2],[201,2],[211,2]]], [202,[6222.38,2992.68,0],[[195,2],[212,2]]], [203,[6840.38,7148.83,0],[[196,2],[213,2],[214,2]]], +[204,[6836.73,6481.81,0],[[197,2],[215,2]]], [205,[6766.13,6695.49,-1.27157e-006],[[198,2],[206,2],[216,2]]], [206,[6782.61,6858.78,0],[[199,2],[205,2],[217,2],[218,2],[206,2]]], [207,[6385.19,4418.92,0],[[200,2],[219,2],[220,2]]], [208,[6383.93,4367.58,3.8147e-006],[[200,2],[221,2]]], [209,[6316.36,4767.32,2.38419e-007],[[201,2],[209,2],[222,2],[223,2]]], +[210,[6269.27,4750.63,0],[[201,2]]], [211,[6224.23,4835.77,0],[[201,2],[224,2],[225,2],[226,2]]], [212,[6107.2,2925.79,0],[[202,2],[227,2]]], [213,[6781.77,7331.98,0],[[203,2],[228,2]]], [214,[6729.97,7054.7,9.53674e-007],[[203,2],[229,2]]], [215,[6754.05,6457.95,1.27157e-006],[[204,2],[230,2],[216,2]]], +[216,[6724.26,6534.71,-3.8147e-006],[[205,2],[215,2]]], [217,[6729.18,6953.95,0],[[206,2],[229,2]]], [218,[6785.39,6845.48,0],[[206,2]]], [219,[6285.34,4587.72,0],[[207,2],[226,2]]], [220,[6368.36,4354.4,0],[[207,2]]], [221,[6322.18,4246.98,0],[[208,2],[231,2]]], +[222,[6350.17,4779.78,0],[[209,2]]], [223,[6335.51,4717.55,0],[[209,2],[232,2],[223,2]]], [224,[6233.54,4892.38,0],[[211,2],[233,2],[234,2]]], [225,[6103.26,4842.48,0],[[211,2],[235,2]]], [226,[6207.89,4679.37,0],[[211,2],[219,2]]], [227,[5973.35,2851.81,-4.76837e-007],[[212,2],[236,2]]], +[228,[6751.08,7454.71,-3.8147e-006],[[213,2],[237,2]]], [229,[6685.21,7021.18,0],[[214,2],[217,2],[238,2]]], [230,[6611.47,6361.63,0],[[215,2],[239,2]]], [231,[6272.29,4168.37,-6.35783e-007],[[221,2],[240,2],[231,2],[241,2]]], [232,[6348.04,4713.7,0],[[223,2]]], [233,[6271.79,4977.73,0],[[224,2],[242,2],[243,2],[234,2]]], +[234,[6202.49,4907.68,0],[[224,2],[233,2],[243,2],[244,2]]], [235,[6103.35,4952.16,0],[[225,2],[243,2]]], [236,[5903.53,2758.62,0],[[227,2],[245,2]]], [237,[6739.39,7493.43,0],[[228,2],[246,2],[247,2],[237,2],[248,2]]], [238,[6630.31,7122.34,0],[[229,2],[249,2]]], [239,[6526.04,6310.16,0],[[230,2],[250,2],[239,2]]], +[240,[6296.99,4162.88,0],[[231,2],[251,2],[240,2]]], [241,[6099.33,4175.05,0],[[231,2],[252,2]]], [242,[6328.32,5040.3,0],[[233,2],[253,2],[242,2],[254,2]]], [243,[6194.38,4973.56,0],[[233,2],[234,2],[235,2]]], [244,[6197,4959.78,0],[[234,2]]], [245,[5797.2,2648.98,-4.76837e-007],[[236,2],[255,2]]], +[246,[6654.64,7646.36,0],[[237,2],[256,2]]], [247,[6737.87,7480.78,0],[[237,2]]], [248,[6648.94,7384.73,-1.90735e-006],[[237,2],[257,2]]], [249,[6594.25,7170.88,0],[[238,2],[258,2]]], [250,[6395.18,6199.1,0],[[239,2],[259,2]]], [251,[6302.34,4174.05,0],[[240,2]]], +[252,[6012.17,4159.75,6.81196e-008],[[241,2],[252,2],[260,2],[261,2],[262,2]]], [253,[6328.47,5020.61,0],[[242,2],[263,2],[253,2]]], [254,[6305.53,5072.88,0],[[242,2]]], [255,[5727.27,2533.94,0],[[245,2],[264,2]]], [256,[6627.44,7664.37,0],[[246,2],[265,2],[266,2]]], [257,[6580.19,7333.37,4.76837e-007],[[248,2],[257,2],[267,2],[258,2]]], +[258,[6595.7,7204.71,-6.35783e-007],[[249,2],[257,2],[268,2],[258,2]]], [259,[6349.75,6051.97,-3.8147e-006],[[250,2],[269,2]]], [260,[6036.69,4222.06,-5.96046e-008],[[252,2],[260,2],[270,2]]], [261,[5802.77,4102.18,0],[[252,2],[271,2]]], [262,[6055,4081.27,0],[[252,2]]], [263,[6317.58,5015.82,0],[[253,2]]], +[264,[5659.99,2372.51,9.53674e-007],[[255,2],[272,2]]], [265,[6650.23,7711.04,0],[[256,2]]], [266,[6541.73,7603.27,-6.35783e-007],[[256,2],[273,2],[274,2]]], [267,[6547.62,7402.82,-1.90735e-006],[[257,2],[274,2]]], [268,[6592.78,7192.11,0],[[258,2]]], [269,[6292.28,5954.78,0],[[259,2],[275,2],[269,2],[276,2]]], +[270,[6072.89,4226.66,0],[[260,2]]], [271,[5755.38,4068.55,0],[[261,2],[277,2],[278,2]]], [272,[5594.08,2241.52,-9.53674e-007],[[264,2],[279,2]]], [273,[6444.04,7588.48,0],[[266,2],[280,2]]], [274,[6517.98,7524.85,-1.90735e-006],[[266,2],[267,2]]], [275,[6094.18,5981.67,0],[[269,2],[281,2]]], +[276,[6313.05,5809.34,0],[[269,2],[282,2]]], [277,[5623.05,3944.35,0],[[271,2],[283,2]]], [278,[5727.31,4213.58,3.8147e-006],[[271,2],[278,2]]], [279,[5557.45,2182.85,0],[[272,2],[284,2],[285,2]]], [280,[6403.85,7616.08,6.35783e-007],[[273,2],[286,2],[287,2]]], [281,[5936.87,5963.2,0],[[275,2],[288,2]]], +[282,[6334.83,5732.6,0],[[276,2],[289,2],[290,2]]], [283,[5475.43,3832.57,0],[[277,2],[291,2]]], [284,[5582.4,2017.8,0],[[279,2],[292,2]]], [285,[5418.86,2105.18,0],[[279,2],[293,2]]], [286,[6338.22,7536.93,0],[[280,2],[294,2]]], [287,[6319.86,7644.72,6.35783e-007],[[280,2],[295,2],[296,2]]], +[288,[5816.05,5932.78,0],[[281,2],[297,2]]], [289,[6197.9,5664.17,0],[[282,2],[298,2]]], [290,[6414.81,5573.82,9.53674e-007],[[282,2],[299,2]]], [291,[5381.58,3710.37,0],[[283,2],[300,2]]], [292,[5610.02,1994.11,0],[[284,2],[301,2]]], [293,[5313.87,2097.4,0],[[285,2],[302,2],[303,2]]], +[294,[6285.03,7427.43,0],[[286,2],[304,2]]], [295,[6150.73,7656.81,0],[[287,2],[305,2]]], [296,[6317.24,7821.24,0],[[287,2],[306,2]]], [297,[5762.97,5893.89,-3.57628e-007],[[288,2],[297,2],[307,2],[308,2]]], [298,[6062.18,5601.83,0],[[289,2],[309,2],[310,2]]], [299,[6505.46,5475.36,0],[[290,2],[311,2]]], +[300,[5349.56,3624.83,-2.38419e-007],[[291,2],[312,2],[313,2],[314,2]]], [301,[5683.11,1909.19,1.90735e-007],[[292,2],[315,2],[316,2],[317,2]]], [302,[5137.6,2161.24,0],[[293,2],[318,2]]], [303,[5378.59,1935.85,0],[[293,2],[319,2]]], [304,[6218.13,7373.9,1.90735e-006],[[294,2],[320,2]]], [305,[6001.96,7636.23,0],[[295,2],[321,2]]], +[306,[6278.98,7956.09,0],[[296,2],[322,2]]], [307,[5785.28,5741.59,0],[[297,2],[323,2]]], [308,[5703.03,5943.58,0],[[297,2],[324,2],[325,2]]], [309,[5846.28,5558.06,0],[[298,2],[326,2]]], [310,[6080.96,5439.19,0],[[298,2],[327,2]]], [311,[6648.57,5453.8,0],[[299,2],[328,2]]], +[312,[5290.48,3479.11,0],[[300,2],[329,2]]], [313,[5185.74,3646.8,0],[[300,2],[330,2]]], [314,[5479.69,3562.04,0],[[300,2],[314,2],[331,2]]], [315,[5709.65,1803.27,1.90735e-007],[[301,2],[332,2],[315,2],[333,2]]], [316,[5741.68,1896.76,0],[[301,2],[334,2],[316,2]]], [317,[5683.34,1801.27,0],[[301,2]]], +[318,[5003.4,2202.35,0],[[302,2],[335,2]]], [319,[5399.87,1791.35,0],[[303,2],[333,2]]], [320,[6160.38,7351.07,-4.76837e-007],[[304,2],[336,2],[337,2],[320,2]]], [321,[5846.27,7671.68,0],[[305,2],[338,2]]], [322,[6193.51,8063.96,0],[[306,2],[339,2]]], [323,[5747.82,5598.2,0],[[307,2],[326,2]]], +[324,[5752.87,6108.04,0],[[308,2],[340,2]]], [325,[5639.73,5899.33,-1.19209e-007],[[308,2],[325,2],[341,2],[342,2]]], [326,[5760.85,5520.78,-7.94729e-008],[[309,2],[323,2],[343,2],[344,2],[345,2],[346,2],[347,2]]], [327,[6015.31,5299.31,0],[[310,2],[348,2]]], [328,[6775.13,5518.65,0],[[311,2],[349,2]]], [329,[5264.79,3454.34,0],[[312,2],[329,2],[350,2]]], +[330,[5114,3643.13,0],[[313,2],[351,2],[352,2]]], [331,[5436.41,3434.75,0],[[314,2],[353,2]]], [332,[5741.72,1864.9,4.76837e-007],[[315,2]]], [333,[5554.51,1688.64,-3.17891e-007],[[315,2],[319,2],[354,2]]], [334,[5739.17,1903.96,0],[[316,2],[355,2],[334,2]]], [335,[4990.27,2204.64,-6.35783e-007],[[318,2],[356,2],[357,2]]], +[336,[6130.74,7285.01,0],[[320,2],[358,2],[359,2],[336,2]]], [337,[6171.11,7360.49,0],[[320,2]]], [338,[5754.4,7595.15,0],[[321,2],[360,2]]], [339,[6054.45,8093.82,0],[[322,2],[361,2]]], [340,[5781.55,6113.18,0],[[324,2],[362,2],[340,2]]], [341,[5591.73,5980.42,0],[[325,2]]], +[342,[5668.65,5824.81,4.76837e-007],[[325,2]]], [343,[5816.42,5391.34,0],[[326,2]]], [344,[5703.24,5577.72,4.76837e-007],[[326,2]]], [345,[5683.11,5487.39,0],[[326,2],[345,2],[347,2]]], [346,[5784.99,5376.44,-4.76837e-007],[[326,2]]], [347,[5718.33,5396.19,0],[[345,2],[347,2],[378,2],[326,2]]], +[348,[5974.53,5241.68,-3.57628e-007],[[327,2],[363,2],[348,2],[364,2]]], [349,[6821.07,5556.61,0],[[328,2]]], [350,[5116.52,3374.75,9.53674e-007],[[329,2],[365,2]]], [351,[5010.37,3630.52,0],[[330,2],[366,2],[367,2],[368,2]]], [352,[5080.89,3507.01,0],[[330,2]]], [353,[5365.75,3391.49,0],[[331,2]]], +[354,[5541.42,1612.62,0],[[333,2],[369,2],[354,2],[370,2]]], [355,[5733.76,1910.23,0],[[334,2],[355,2]]], [356,[4871.84,2075.18,0],[[335,2],[371,2]]], [357,[5098.09,2335.38,0],[[335,2],[372,2]]], [358,[6190.56,7170.04,0],[[336,2],[373,2]]], [359,[6125.16,7301.39,0],[[336,2]]], +[360,[5656.63,7508.22,0],[[338,2],[374,2]]], [361,[5914.43,8123.82,0],[[339,2],[375,2]]], [362,[5819.11,6133.41,2.38419e-007],[[340,2],[376,2],[377,2]]], [363,[5996.47,5192.11,0],[[348,2],[379,2],[363,2]]], [364,[5934.18,5195.74,-1.58946e-007],[[348,2],[380,2],[379,2]]], [365,[4974.09,3315.44,0],[[350,2],[381,2]]], +[366,[4908.89,3484.27,-1.58946e-007],[[351,2],[382,2],[368,2]]], [367,[5002.51,3698.75,-1.58946e-007],[[351,2],[383,2],[367,2]]], [368,[4989.82,3567.94,0],[[366,2],[396,2],[351,2]]], [369,[5551.37,1637.95,0],[[354,2]]], [370,[5462.43,1438.05,0],[[354,2],[384,2]]], [371,[4821.15,1953.77,0],[[356,2],[385,2]]], +[372,[5108.39,2453.95,0],[[357,2],[386,2]]], [373,[6168.97,7091.67,0],[[358,2],[387,2]]], [374,[5567.84,7437.68,0],[[360,2],[388,2]]], [375,[5796.26,8061.8,0],[[361,2],[389,2]]], [376,[5810.03,6195.45,1.19209e-007],[[362,2],[376,2],[390,2]]], [377,[5858.39,6088.21,-3.17891e-007],[[362,2],[377,2],[391,2]]], +[378,[5751.18,5430.22,0],[[347,2]]], [379,[5967.57,5151.08,-3.17891e-007],[[363,2],[364,2],[380,2],[392,2]]], [380,[5937.68,5163.06,-9.53674e-007],[[364,2],[379,2],[392,2]]], [381,[4897.51,3272.89,0],[[365,2],[382,2],[393,2],[394,2]]], [382,[4884.52,3423.8,0],[[366,2],[381,2],[395,2],[394,2]]], [383,[5072.05,3698.38,-4.76837e-007],[[367,2]]], +[384,[5374.3,1312.22,-4.76837e-007],[[370,2],[397,2]]], [385,[4775.52,1835.36,0],[[385,2],[398,2]]], [386,[4978.58,2529.54,1.90735e-006],[[372,2],[399,2]]], [387,[6139.19,6964.85,9.53674e-007],[[373,2],[400,2]]], [388,[5569.34,7296.49,0],[[374,2],[401,2]]], [389,[5787.33,8038.52,9.53674e-007],[[375,2]]], +[390,[5763.77,6185.75,0],[[376,2],[402,2],[390,2]]], [391,[5873.6,6053.14,0],[[377,2]]], [392,[5907.08,5125.37,-1.19209e-007],[[379,2],[380,2],[403,2]]], [393,[4781.32,3127.86,0],[[381,2],[404,2]]], [394,[4839.19,3315.53,0],[[381,2],[382,2],[405,2],[406,2],[395,2],[407,2]]], [395,[4841.82,3382.3,0],[[382,2],[394,2],[408,2]]], +[396,[4975.76,3588.38,0],[[368,2],[409,2]]], [397,[5287.52,1201.61,0],[[384,2],[410,2]]], [398,[4621.49,1712.59,0],[[385,2],[411,2]]], [399,[4863.25,2569.83,-3.17891e-007],[[386,2],[412,2],[413,2]]], [400,[6087.49,6933.34,9.53674e-007],[[387,2],[414,2]]], [401,[5579.69,7250.83,6.35783e-007],[[388,2],[415,2],[416,2]]], +[402,[5733.96,6222.25,0],[[390,2]]], [403,[5833.76,5094.68,0],[[392,2]]], [404,[4740.26,3073.69,3.17891e-007],[[393,2],[417,2],[418,2]]], [405,[4865.06,3356.98,0],[[394,2]]], [406,[4842.66,3375.54,0],[[394,2]]], [407,[4806.46,3281.55,0],[[394,2],[407,2],[419,2]]], +[408,[4805.14,3338.81,0],[[395,2]]], [409,[4940.54,3604.59,0],[[396,2]]], [410,[5240.93,1083.69,0],[[397,2],[420,2]]], [411,[4485.6,1639.01,0],[[398,2],[421,2]]], [412,[4781.35,2671.81,0],[[399,2],[422,2],[413,2],[423,2]]], [413,[4706.83,2586.89,0],[[399,2],[412,2],[424,2]]], +[414,[6070.41,6927.97,0],[[400,2],[425,2],[426,2],[427,2]]], [415,[5529.65,7162.53,6.35783e-007],[[401,2],[428,2],[429,2]]], [416,[5604.45,7160.38,0],[[401,2],[430,2]]], [417,[4738.48,2905.25,0],[[404,2],[431,2],[422,2]]], [418,[4610.95,3031.94,0],[[404,2],[432,2]]], [419,[4780.85,3264.21,-4.76837e-007],[[407,2]]], +[420,[5208.77,941.847,0],[[410,2],[433,2]]], [421,[4417.22,1534.09,-1.90735e-006],[[411,2],[434,2]]], [422,[4772.39,2749.57,6.35783e-007],[[412,2],[417,2],[423,2],[431,2]]], [423,[4724.49,2741.17,0],[[412,2],[422,2],[435,2],[436,2],[431,2]]], [424,[4648.84,2603.17,0],[[413,2],[437,2],[435,2],[438,2]]], [425,[5997.1,6930.97,0],[[414,2],[439,2],[427,2],[425,2]]], +[426,[6066.25,6858.01,0],[[414,2],[426,2],[440,2]]], [427,[6007.01,6960.21,0],[[425,2],[452,2],[414,2]]], [428,[5377.51,7194.51,0],[[415,2],[441,2]]], [429,[5487,7004.14,1.90735e-006],[[415,2],[442,2]]], [430,[5578.38,7099.75,0],[[416,2]]], [431,[4753.09,2841.17,0],[[417,2],[422,2],[423,2],[436,2]]], +[432,[4498.23,2938.79,4.76837e-007],[[418,2],[443,2]]], [433,[5116.11,825.183,0],[[420,2],[444,2]]], [434,[4374.52,1416.71,0],[[421,2],[445,2]]], [435,[4616.89,2659.64,0],[[423,2],[424,2],[437,2]]], [436,[4720.41,2824.47,0],[[423,2],[431,2],[446,2],[436,2]]], [437,[4606.86,2642.66,0],[[424,2],[435,2],[447,2]]], +[438,[4525.73,2584.85,-2.38419e-007],[[424,2],[447,2],[448,2],[438,2],[449,2],[450,2]]], [439,[5856.79,6833.11,0],[[425,2],[451,2]]], [440,[5974.71,6746.55,0],[[426,2],[440,2],[453,2]]], [441,[5257.35,7228.26,1.90735e-006],[[428,2],[454,2]]], [442,[5413.71,6893.13,1.90735e-006],[[429,2],[455,2]]], [443,[4476.23,2891.49,-4.76837e-007],[[432,2],[456,2],[443,2],[457,2]]], +[444,[5049.28,775.184,1.58946e-007],[[433,2],[458,2],[459,2]]], [445,[4385.68,1351.03,6.35783e-007],[[434,2],[460,2],[461,2]]], [446,[4698.26,2820.13,0],[[436,2],[462,2]]], [447,[4572.21,2672.95,0],[[437,2],[438,2],[463,2],[462,2],[448,2]]], [448,[4494.01,2643.66,0],[[438,2],[447,2],[464,2],[465,2]]], [449,[4525.27,2570.38,0],[[438,2]]], +[450,[4454.67,2561.36,0],[[438,2]]], [451,[5783.21,6818.2,-3.17891e-007],[[439,2],[466,2],[467,2]]], [452,[6026.31,6951.63,0],[[427,2]]], [453,[5903.26,6745.18,1.19209e-007],[[440,2],[466,2],[468,2],[453,2],[469,2]]], [454,[5190.93,7281.45,-4.76837e-007],[[441,2],[470,2],[471,2],[472,2]]], [455,[5383.54,6775.26,0],[[442,2],[473,2]]], +[456,[4448.98,2808.81,0],[[443,2],[474,2],[462,2],[475,2],[465,2],[476,2],[464,2]]], [457,[4479.16,2912.15,-7.15256e-007],[[443,2]]], [458,[5005.33,767.335,0],[[444,2],[477,2],[478,2]]], [459,[4983.22,642.589,4.76837e-007],[[444,2],[479,2],[478,2]]], [460,[4454.02,1339.16,0],[[445,2],[480,2],[481,2],[482,2]]], [461,[4293.72,1181.62,-1.90735e-006],[[445,2],[483,2]]], +[462,[4632.58,2772.55,0],[[446,2],[447,2],[456,2],[474,2],[484,2]]], [463,[4545.01,2705.37,0],[[447,2],[485,2],[484,2],[486,2]]], [464,[4424.55,2683.42,0],[[448,2],[456,2],[487,2],[476,2],[488,2]]], [465,[4504.32,2673.18,0],[[448,2],[456,2],[465,2],[475,2]]], [466,[5785.18,6749.51,6.35783e-007],[[451,2],[453,2],[489,2]]], [467,[5721.04,6841.76,0],[[451,2],[490,2],[467,2],[491,2],[492,2]]], +[468,[5913.96,6737.44,1.58946e-007],[[453,2]]], [469,[5905.44,6696.62,1.19209e-007],[[453,2],[493,2],[469,2],[489,2]]], [470,[5020.14,7360.14,0],[[454,2],[494,2],[495,2]]], [471,[5074.01,7185.39,0],[[454,2],[496,2],[497,2]]], [472,[5240.04,7312.61,0],[[454,2]]], [473,[5405.47,6693.23,-6.35783e-007],[[455,2],[498,2],[499,2]]], +[474,[4559.77,2785.33,0],[[456,2],[462,2],[500,2],[484,2]]], [475,[4445.72,2754.19,0],[[456,2],[465,2],[475,2],[501,2]]], [476,[4343.94,2789.86,0],[[456,2],[464,2],[502,2],[476,2],[503,2],[504,2],[505,2]]], [477,[4991.33,810.547,-3.17891e-007],[[458,2],[477,2],[506,2]]], [478,[4940,690.788,0],[[458,2],[459,2],[506,2],[507,2],[479,2]]], [479,[4937.91,628.414,0],[[459,2],[478,2],[508,2],[507,2]]], +[480,[4496.89,1356.72,0],[[460,2],[509,2],[510,2]]], [481,[4451.04,1438.58,0],[[460,2]]], [482,[4458.55,1292.91,0],[[460,2],[482,2],[511,2]]], [483,[4160.06,1095.07,0],[[461,2],[512,2]]], [484,[4563.07,2753.75,0],[[462,2],[463,2],[474,2],[485,2]]], [485,[4536.19,2737.34,0],[[463,2],[484,2]]], +[486,[4489.39,2731.91,0],[[463,2],[513,2],[486,2],[501,2]]], [487,[4387.16,2744.92,0],[[464,2],[514,2],[487,2]]], [488,[4353.84,2691.1,0],[[464,2],[515,2],[488,2]]], [489,[5784.45,6702.49,4.76837e-007],[[466,2],[469,2],[516,2],[493,2]]], [490,[5691.34,6885.29,0],[[467,2],[492,2],[490,2]]], [491,[5688.85,6671.34,0],[[467,2],[517,2]]], +[492,[5723.17,6906.23,0],[[490,2],[537,2],[492,2],[467,2]]], [493,[5899.69,6660.56,1.58946e-007],[[469,2],[489,2],[516,2],[518,2]]], [494,[4971.76,7510.58,0],[[470,2],[519,2],[494,2],[520,2],[521,2]]], [495,[4987.78,7431.87,0],[[519,2],[470,2]]], [496,[4952.28,7047.2,0],[[471,2],[522,2]]], [497,[4947.83,7299.08,0],[[471,2],[523,2]]], +[498,[5349.82,6616.76,-6.35783e-007],[[473,2],[524,2],[525,2]]], [499,[5439.04,6735.83,0],[[473,2],[526,2],[517,2]]], [500,[4571.25,2755.4,0],[[474,2]]], [501,[4452.53,2771.46,0],[[475,2],[501,2],[486,2]]], [502,[4269.54,2843.07,0],[[476,2]]], [503,[4364.18,2788.2,0],[[476,2],[503,2],[527,2]]], +[504,[4304.04,2789.77,0],[[476,2]]], [505,[4340.62,2715.4,0],[[476,2]]], [506,[4936.25,814.658,-3.17891e-007],[[477,2],[478,2],[528,2]]], [507,[4864.02,691.194,0],[[478,2],[479,2],[529,2],[508,2],[528,2]]], [508,[4877.91,636.257,2.38419e-007],[[479,2],[507,2]]], [509,[4505.67,1291.86,0],[[480,2],[530,2],[531,2]]], +[510,[4503.88,1530.91,0],[[480,2],[532,2]]], [511,[4473.57,1133.92,0],[[482,2],[533,2]]], [512,[4116.07,1063.9,-3.17891e-007],[[483,2],[534,2],[535,2]]], [513,[4474.68,2771.81,0],[[486,2],[513,2]]], [514,[4408.91,2717.62,0],[[487,2]]], [515,[4372.75,2668.28,0],[[488,2]]], +[516,[5792.18,6655.1,0],[[489,2],[493,2],[536,2]]], [517,[5597.94,6643.01,2.38419e-007],[[491,2],[499,2],[517,2],[538,2],[525,2]]], [518,[5821.52,6656.35,0],[[493,2]]], [519,[4978.16,7465.13,0],[[494,2],[495,2],[519,2]]], [520,[5066.09,7665.44,0],[[494,2],[539,2]]], [521,[4937.24,7676.86,0],[[494,2],[540,2]]], +[522,[4874.55,7020.25,0],[[496,2],[541,2]]], [523,[4839.49,7256.96,-3.8147e-006],[[497,2],[542,2]]], [524,[5284.45,6444.08,0],[[498,2],[543,2]]], [525,[5434.47,6561.48,0],[[498,2],[517,2],[544,2],[538,2]]], [526,[5475.07,6894.52,0],[[499,2],[545,2]]], [527,[4380.34,2765.3,0],[[503,2],[527,2]]], +[528,[4857.54,823.712,0],[[506,2],[507,2],[546,2],[547,2]]], [529,[4800.43,696.263,3.17891e-007],[[507,2],[548,2],[546,2]]], [530,[4503.88,1121.65,0],[[509,2],[549,2]]], [531,[4554.08,1284.1,0],[[509,2],[550,2],[551,2]]], [532,[4605.3,1617.08,0],[[510,2],[552,2]]], [533,[4473.82,1003.72,0],[[511,2],[553,2]]], +[534,[3941.65,1038.7,0],[[512,2],[554,2]]], [535,[4130.1,873.247,0],[[512,2],[555,2]]], [536,[5658.97,6603.87,0],[[516,2],[556,2],[538,2]]], [537,[5730.01,6891.32,0],[[492,2]]], [538,[5532.35,6520.21,-2.38419e-007],[[517,2],[525,2],[536,2],[557,2],[556,2]]], [539,[5232.31,7688.42,1.52588e-005],[[520,2],[558,2]]], +[540,[4947.26,7846.66,0],[[521,2],[559,2]]], [541,[4807.11,7024.31,0],[[522,2],[560,2]]], [542,[4760.79,7121.58,0],[[523,2],[561,2]]], [543,[5205.59,6310.88,0],[[524,2],[562,2]]], [544,[5356.95,6411.78,0],[[525,2],[563,2]]], [545,[5520.61,7005.86,0],[[526,2]]], +[546,[4798.49,812.626,0],[[528,2],[529,2],[546,2]]], [547,[4772.38,900.697,-2.38419e-007],[[528,2],[564,2],[565,2],[566,2]]], [548,[4743.55,579.746,-1.19209e-007],[[529,2],[567,2]]], [549,[4505.69,1082.46,0],[[530,2],[568,2],[569,2],[551,2]]], [550,[4559.92,1359.72,0],[[531,2]]], [551,[4559.81,1122.09,0],[[531,2],[549,2],[569,2]]], +[552,[4723.84,1597.12,0],[[532,2],[570,2]]], [553,[4474.07,876.55,0],[[533,2],[571,2]]], [554,[3808.78,1017.89,9.53674e-007],[[534,2],[572,2]]], [555,[4175.6,730.642,0],[[535,2],[573,2]]], [556,[5594.03,6490.58,0],[[536,2],[538,2],[556,2]]], [557,[5470.89,6378.8,0],[[538,2],[557,2]]], +[558,[5367.29,7737.03,0],[[539,2],[574,2]]], [559,[4905.83,7978.46,0],[[540,2],[575,2]]], [560,[4769.25,6997.23,0],[[541,2],[576,2],[560,2],[561,2]]], [561,[4681.88,7026.48,0],[[542,2],[560,2],[577,2]]], [562,[5225.04,6142.29,1.19209e-007],[[543,2],[578,2],[579,2],[563,2],[580,2]]], [563,[5268.74,6236.06,0],[[544,2],[562,2],[579,2]]], +[564,[4736.91,948.866,0],[[547,2]]], [565,[4823.82,853.738,0],[[547,2],[566,2]]], [566,[4742.57,879.498,0],[[547,2],[565,2],[566,2]]], [567,[4595.45,544.006,0],[[548,2],[581,2]]], [568,[4510.2,980.115,0],[[549,2],[582,2],[583,2]]], [569,[4557.16,1080.65,0],[[549,2],[551,2],[569,2]]], +[570,[4724.5,1537.15,0],[[552,2],[584,2],[585,2]]], [571,[4468.91,732.833,0],[[553,2],[586,2],[573,2]]], [572,[3730.8,912.877,0],[[554,2],[587,2]]], [573,[4242.4,649.412,0],[[555,2],[571,2],[588,2],[586,2]]], [574,[5355.24,7881.4,0],[[558,2],[589,2]]], [575,[4829.62,8124.19,0],[[559,2],[590,2]]], +[576,[4683.05,6897.28,0],[[560,2],[591,2]]], [577,[4526.66,6899.44,0],[[561,2],[592,2]]], [578,[5212.82,6064.99,0],[[562,2],[593,2],[580,2]]], [579,[5248.86,6188.74,0],[[562,2],[563,2]]], [580,[5243.39,6055.06,0],[[562,2],[578,2],[594,2]]], [581,[4451.54,566.999,0],[[567,2],[586,2]]], +[582,[4687.92,981.73,0],[[568,2],[595,2]]], [583,[4503.9,763.241,0],[[568,2],[596,2]]], [584,[4752.32,1532.69,0],[[570,2],[584,2],[597,2]]], [585,[4743.33,1401.14,0],[[570,2],[585,2],[598,2],[597,2],[599,2]]], [586,[4334.96,659.314,9.53674e-007],[[571,2],[573,2],[581,2],[600,2],[586,2]]], [587,[3684.98,787.162,0],[[572,2],[601,2]]], +[588,[4137.33,490.718,0],[[573,2],[602,2]]], [589,[5268.06,7878.9,-1.52588e-005],[[574,2],[603,2]]], [590,[4753.76,8238.25,0],[[575,2],[604,2]]], [591,[4579.72,6789.35,0],[[576,2],[605,2],[592,2]]], [592,[4465.23,6781.16,0],[[577,2],[591,2],[605,2]]], [593,[5196.39,5998.1,-4.76837e-007],[[578,2],[606,2],[594,2],[607,2]]], +[594,[5227.8,5970.16,0],[[580,2],[593,2],[606,2]]], [595,[4860.57,981.776,0],[[582,2],[608,2]]], [596,[4534.41,640.256,0],[[583,2],[609,2],[596,2]]], [597,[4767.02,1513.57,0],[[584,2],[585,2],[597,2],[598,2]]], [598,[4821.46,1488.74,0],[[585,2],[597,2]]], [599,[4841.48,1291.67,0],[[585,2],[610,2]]], +[600,[4353.98,657.079,1.27157e-006],[[586,2]]], [601,[3609.03,677.951,9.53674e-007],[[587,2],[611,2]]], [602,[4107.4,459.513,-9.53674e-007],[[588,2]]], [603,[5265.6,7858.08,0],[[589,2]]], [604,[4663.91,8323.01,0],[[590,2],[612,2]]], [605,[4475.32,6761.81,0],[[591,2],[592,2],[613,2]]], +[606,[5167.7,5924.63,-6.81196e-008],[[593,2],[594,2],[614,2],[615,2],[616,2],[617,2],[618,2]]], [607,[5235.44,5974.52,2.38419e-007],[[593,2]]], [608,[4895.56,993.688,0],[[595,2],[619,2],[620,2]]], [609,[4622.59,637.704,0],[[596,2]]], [610,[4930.83,1202.42,0],[[599,2],[621,2]]], [611,[3472.52,588.689,0],[[601,2],[622,2]]], +[612,[4567.53,8396.99,0],[[604,2],[623,2]]], [613,[4420.19,6686.01,0],[[605,2],[624,2]]], [614,[5088.6,5898.37,-3.17891e-007],[[606,2],[625,2],[615,2]]], [615,[5058.35,5974.53,4.76837e-007],[[606,2],[614,2],[626,2],[627,2]]], [616,[5142.13,5901.57,3.17891e-007],[[606,2],[616,2],[628,2],[618,2]]], [617,[5210.4,5871.2,1.58946e-007],[[606,2],[617,2],[618,2]]], +[618,[5167.5,5822.91,2.38419e-007],[[606,2],[616,2],[617,2],[628,2],[629,2],[625,2]]], [619,[4838.93,1042.6,0],[[608,2],[630,2],[631,2],[632,2]]], [620,[5025.46,920.88,0],[[608,2],[620,2],[633,2]]], [621,[5019.38,1113.96,0],[[610,2],[633,2]]], [622,[3432.93,567.536,0],[[611,2]]], [623,[4412.07,8468,3.8147e-006],[[612,2],[634,2]]], +[624,[4401.26,6655.42,-6.35783e-007],[[613,2],[624,2],[635,2]]], [625,[5083.53,5792.65,2.38419e-007],[[614,2],[618,2],[636,2],[629,2],[637,2],[625,2]]], [626,[5136.52,6084.89,0],[[615,2]]], [627,[4963.59,5930.68,4.76837e-007],[[615,2],[638,2],[639,2],[637,2]]], [628,[5119.58,5842.68,0],[[616,2],[618,2]]], [629,[5173.09,5773.98,0],[[618,2],[625,2],[640,2]]], +[630,[4784.25,1091.75,0],[[619,2],[641,2],[631,2],[632,2]]], [631,[4734.95,1094.07,0],[[619,2],[630,2],[641,2]]], [632,[4774.85,1082.13,0],[[630,2],[619,2]]], [633,[5108.44,1025,0],[[620,2],[621,2]]], [634,[4291.53,8464.04,7.62939e-006],[[623,2],[642,2]]], [635,[4354.37,6655.35,-6.35783e-007],[[624,2],[635,2],[643,2]]], +[636,[5090.41,5743.11,6.35783e-007],[[625,2],[644,2],[640,2],[645,2],[637,2]]], [637,[5001.32,5791.43,4.76837e-007],[[625,2],[627,2],[636,2],[646,2]]], [638,[4853.77,5976.29,-1.90735e-006],[[627,2],[647,2]]], [639,[4779.01,5834.35,1.90735e-006],[[627,2],[648,2]]], [640,[5153.85,5644.49,0],[[629,2],[636,2],[640,2],[644,2]]], [641,[4741.98,1116.21,0],[[630,2],[631,2]]], +[642,[4148.18,8467.83,0],[[634,2],[649,2]]], [643,[4300.76,6623.15,0],[[635,2],[650,2],[651,2]]], [644,[5098.24,5639.57,0],[[636,2],[640,2],[652,2],[653,2]]], [645,[5005.48,5743.06,0],[[636,2],[653,2]]], [646,[4994.02,5742.96,-1.90735e-006],[[637,2]]], [647,[4752.16,6124.73,-9.53674e-007],[[638,2],[654,2]]], +[648,[4720.8,5761.61,0],[[639,2],[655,2]]], [649,[3966.31,8491.4,0],[[642,2],[656,2]]], [650,[4262,6762.77,0],[[643,2],[657,2]]], [651,[4278.16,6574.48,0],[[643,2],[658,2],[659,2]]], [652,[5099.11,5530.52,0],[[644,2],[660,2]]], [653,[5002.76,5635.99,-3.17891e-007],[[644,2],[645,2],[661,2],[660,2]]], +[654,[4694.76,6265.67,9.53674e-007],[[647,2],[662,2]]], [655,[4588.76,5737.64,0],[[648,2],[663,2]]], [656,[3805.06,8569.21,0],[[649,2],[664,2]]], [657,[4309.79,6880.81,0],[[650,2]]], [658,[4181.67,6590.8,0],[[651,2],[665,2],[666,2],[658,2],[667,2]]], [659,[4363.61,6426.19,0],[[651,2],[668,2]]], +[660,[5027.17,5508.93,0],[[652,2],[653,2],[669,2],[661,2]]], [661,[4994.38,5533.52,0],[[653,2],[660,2],[670,2]]], [662,[4588.42,6309.05,-9.53674e-007],[[654,2],[668,2]]], [663,[4495.72,5668.17,0],[[655,2],[671,2]]], [664,[3678.29,8623.02,3.8147e-006],[[656,2],[672,2]]], [665,[4076.1,6658.72,0],[[658,2],[673,2]]], +[666,[4193.15,6583.96,0],[[658,2]]], [667,[4132.48,6511.88,0],[[658,2],[667,2]]], [668,[4492.6,6365.4,0],[[659,2],[662,2]]], [669,[5004.35,5538.35,0],[[660,2]]], [670,[4937.65,5456.19,0],[[661,2],[674,2]]], [671,[4411.48,5585.28,0],[[663,2],[675,2]]], +[672,[3563.74,8660.29,0],[[664,2],[676,2]]], [673,[3939.54,6660.36,0],[[665,2],[677,2]]], [674,[4893.25,5361.32,0],[[670,2],[678,2]]], [675,[4324.27,5471.52,-9.53674e-007],[[671,2],[679,2]]], [676,[3420.55,8658.18,0],[[672,2],[680,2]]], [677,[3811.51,6598.6,0],[[673,2],[681,2],[677,2]]], +[678,[4789.02,5282.9,0],[[674,2],[682,2]]], [679,[4275.1,5392.55,0],[[675,2],[683,2]]], [680,[3262.41,8650.43,0],[[676,2],[684,2]]], [681,[3706.45,6607.42,0],[[677,2],[685,2]]], [682,[4659.13,5176.64,0],[[678,2],[686,2]]], [683,[4234.42,5293.07,0],[[679,2],[687,2]]], +[684,[3116.95,8635.71,0],[[680,2],[688,2]]], [685,[3574.61,6532.5,0],[[681,2],[689,2]]], [686,[4505.48,5127.83,0],[[682,2],[690,2]]], [687,[4187.29,5261.96,0],[[683,2],[687,2],[691,2]]], [688,[2955.77,8669.09,0],[[684,2],[692,2]]], [689,[3438.04,6514.73,0],[[685,2],[693,2]]], +[690,[4452.34,5070.23,0],[[686,2],[694,2],[695,2]]], [691,[4091.48,5282.38,0],[[687,2],[696,2]]], [692,[2827.56,8717.06,0],[[688,2],[697,2]]], [693,[3369.67,6484.78,-2.38419e-007],[[689,2],[698,2],[693,2],[699,2]]], [694,[4371.94,5007.82,0],[[690,2],[700,2]]], [695,[4342.87,4917.71,9.53674e-007],[[690,2],[701,2]]], +[696,[3978.16,5214.12,0],[[691,2],[702,2]]], [697,[2665.76,8742.23,0],[[692,2],[703,2]]], [698,[3287.83,6442.05,6.35783e-007],[[693,2],[704,2],[705,2]]], [699,[3438.64,6380.97,0],[[693,2],[706,2],[707,2],[699,2]]], [700,[4262.32,4929.88,0],[[694,2],[708,2]]], [701,[4247.4,4839.78,9.53674e-007],[[695,2],[709,2]]], +[702,[3878.92,5155.83,0],[[696,2],[710,2]]], [703,[2544.18,8711.15,0],[[697,2],[711,2]]], [704,[3161.57,6316.99,0],[[698,2],[712,2]]], [705,[3152.96,6490.74,0],[[698,2],[713,2]]], [706,[3470.18,6404.32,0],[[699,2]]], [707,[3387.45,6363.72,0],[[699,2]]], +[708,[4167.6,4873.92,-9.53674e-007],[[700,2],[714,2]]], [709,[4189.11,4785.74,0],[[701,2],[714,2]]], [710,[3823.66,5088.34,-9.53674e-007],[[702,2],[715,2]]], [711,[2429.98,8624.27,3.8147e-006],[[703,2],[716,2]]], [712,[3007.27,6247.32,0],[[704,2],[717,2]]], [713,[3051.97,6613.24,0],[[705,2],[718,2]]], +[714,[4072.85,4882.92,0],[[708,2],[709,2],[719,2]]], [715,[3760.79,4994.31,0],[[710,2],[720,2]]], [716,[2322.02,8540.88,0],[[711,2],[721,2]]], [717,[2883.83,6194.78,9.53674e-007],[[712,2],[722,2]]], [718,[2995.5,6758.74,9.53674e-007],[[713,2],[718,2],[723,2],[724,2]]], [719,[3944.11,4842.7,-1.90735e-006],[[714,2],[725,2]]], +[720,[3769.67,4938.29,0],[[715,2],[726,2],[727,2]]], [721,[2302.21,8498.12,0],[[716,2],[728,2],[729,2]]], [722,[2760.34,6147.14,0],[[717,2],[730,2]]], [723,[3066.09,6923.14,0],[[718,2],[731,2]]], [724,[2879.08,6936.48,-1.90735e-006],[[718,2],[732,2]]], [725,[3866.23,4715.66,0],[[719,2],[733,2]]], +[726,[3795.17,4911.58,6.35783e-007],[[720,2],[726,2],[734,2],[727,2]]], [727,[3735.55,4874.05,0],[[720,2],[726,2],[735,2]]], [728,[2140.41,8461.28,0],[[721,2],[736,2]]], [729,[2327.17,8373.64,1.58946e-007],[[721,2],[737,2],[738,2]]], [730,[2731.64,6153.12,-1.58946e-007],[[722,2],[739,2],[740,2]]], [731,[3138.68,7036.53,0],[[723,2],[741,2]]], +[732,[2783.89,6978.77,3.8147e-007],[[724,2],[742,2],[743,2],[732,2],[744,2]]], [733,[3779.14,4579.42,-1.90735e-006],[[725,2],[745,2]]], [734,[3735.7,4838.93,0],[[726,2],[746,2]]], [735,[3725.68,4833.78,0],[[727,2]]], [736,[2010.89,8391.85,0],[[728,2],[747,2]]], [737,[2308.05,8214.64,-4.76837e-007],[[729,2],[748,2]]], +[738,[2357.96,8402.98,-4.76837e-007],[[729,2]]], [739,[2553.68,6168.45,0],[[730,2]]], [740,[2667.83,6212.57,0],[[730,2],[749,2]]], [741,[3212.1,7140.96,0],[[731,2],[750,2]]], [742,[2632.11,7049.49,0],[[732,2],[751,2]]], [743,[2759.64,6818.07,-9.53674e-007],[[732,2],[752,2],[753,2]]], +[744,[2865.47,7135.71,0],[[732,2],[754,2],[755,2]]], [745,[3683.97,4462.73,0],[[733,2],[756,2]]], [746,[3646.78,4693.37,9.53674e-007],[[734,2],[757,2]]], [747,[1816.93,8318.36,0],[[736,2],[758,2]]], [748,[2312.42,8186.44,0],[[737,2],[759,2],[760,2],[761,2]]], [749,[2615.34,6295.15,0],[[740,2],[762,2],[763,2],[749,2],[764,2]]], +[750,[3309.86,7270.09,0],[[741,2],[765,2]]], [751,[2510.73,7137.6,0],[[742,2],[766,2]]], [752,[2731.26,6740.38,-1.58946e-007],[[743,2],[767,2],[753,2],[752,2]]], [753,[2729.05,6764.5,0],[[752,2],[775,2],[753,2],[743,2]]], [754,[2938.85,7263.91,0],[[744,2]]], [755,[2977.88,7179.73,-3.8147e-006],[[744,2],[755,2]]], +[756,[3579.94,4357.29,0],[[745,2],[768,2]]], [757,[3587.66,4593.55,0],[[746,2],[769,2]]], [758,[1688.18,8374,0],[[747,2],[770,2]]], [759,[2238.76,8184.27,0],[[748,2]]], [760,[2427.26,8186.8,0],[[748,2]]], [761,[2330.19,7988.35,0],[[748,2],[771,2]]], +[762,[2621.45,6450.93,0],[[749,2],[767,2]]], [763,[2625.23,6285.15,1.58946e-007],[[749,2]]], [764,[2702.86,6282.64,0],[[749,2],[764,2]]], [765,[3400.05,7414.19,0],[[750,2],[772,2]]], [766,[2427.88,7227.74,4.76837e-007],[[751,2],[766,2],[773,2],[774,2]]], [767,[2691.01,6565.28,0],[[752,2],[762,2]]], +[768,[3491.63,4240.88,0],[[756,2],[776,2]]], [769,[3513.44,4463.7,-9.53674e-007],[[757,2],[777,2]]], [770,[1578.86,8513.18,2.38419e-007],[[758,2],[778,2]]], [771,[2349.72,7843.26,-1.90735e-006],[[761,2],[779,2]]], [772,[3439.32,7440.32,0],[[765,2]]], [773,[2457.86,7401.63,0],[[766,2],[780,2]]], +[774,[2288.13,7313.04,0],[[766,2],[781,2]]], [775,[2735.86,6782.17,0],[[753,2]]], [776,[3386.69,4192.16,2.38419e-007],[[768,2],[776,2],[782,2],[783,2]]], [777,[3465.58,4404.34,0],[[769,2],[782,2],[784,2]]], [778,[1488.31,8645.25,0],[[770,2],[785,2]]], [779,[2319.26,7672.38,0],[[771,2],[786,2]]], +[780,[2507.04,7539.01,0],[[773,2],[787,2]]], [781,[2239.18,7332.95,1.90735e-006],[[774,2],[786,2],[788,2],[789,2]]], [782,[3427.71,4330.75,0],[[776,2],[777,2]]], [783,[3382.76,4024.28,0],[[776,2],[790,2]]], [784,[3291.92,4476.07,0],[[777,2],[791,2]]], [785,[1438.72,8739.93,0],[[778,2],[792,2]]], +[786,[2287.11,7515.38,0],[[779,2],[781,2],[793,2]]], [787,[2570.4,7703.69,0],[[780,2],[794,2]]], [788,[2060.96,7307.49,0],[[781,2],[795,2]]], [789,[2292.9,7459.46,-3.8147e-006],[[793,2],[781,2]]], [790,[3363.63,3882.73,0],[[783,2],[796,2]]], [791,[3138.1,4500.98,0],[[784,2],[797,2]]], +[792,[1475.07,8879.14,0],[[785,2],[798,2]]], [793,[2245.86,7489.94,1.90735e-006],[[881,2],[789,2],[786,2]]], [794,[2638.51,7843.13,0],[[787,2],[799,2]]], [795,[1930.47,7203.62,0],[[788,2],[800,2]]], [796,[3370.97,3777.62,0],[[790,2],[801,2]]], [797,[3029.45,4409.28,0],[[791,2],[802,2]]], +[798,[1508.78,8904.09,0],[[792,2]]], [799,[2753.84,7904.46,-1.52588e-005],[[794,2],[803,2]]], [800,[1895.27,7168.31,0],[[795,2],[804,2],[805,2]]], [801,[3392.79,3721.71,2.38419e-007],[[796,2],[806,2],[807,2],[808,2]]], [802,[3026.41,4380.85,0],[[797,2]]], [803,[2851.45,7910.01,0],[[799,2]]], +[804,[1828.43,6997.1,0],[[800,2],[809,2]]], [805,[1749.17,7256.79,0],[[800,2],[810,2]]], [806,[3304.75,3670.7,0],[[801,2],[811,2],[812,2],[806,2]]], [807,[3342.64,3624.32,0],[[801,2],[813,2],[814,2],[815,2]]], [808,[3502.35,3643.53,0],[[801,2]]], [809,[1813.24,6973.01,-9.53674e-007],[[804,2],[816,2],[817,2],[818,2]]], +[810,[1665.27,7304.63,0],[[805,2],[819,2],[820,2],[821,2]]], [811,[3229.86,3573.43,0],[[806,2],[822,2],[814,2]]], [812,[3312.73,3681.78,0],[[806,2]]], [813,[3449.71,3578.75,0],[[807,2]]], [814,[3258.65,3512.6,0],[[807,2],[811,2],[823,2],[822,2]]], [815,[3375.56,3526.59,0],[[807,2],[824,2]]], +[816,[1741.87,6824.86,3.8147e-006],[[809,2],[825,2]]], [817,[1786.83,6999.12,1.90735e-006],[[809,2],[826,2],[827,2]]], [818,[1833.48,6928.83,-1.27157e-006],[[809,2],[818,2],[828,2]]], [819,[1493.21,7375.15,0],[[810,2],[829,2]]], [820,[1730.56,7458.21,0],[[810,2],[830,2]]], [821,[1714.81,7216.94,-1.90735e-006],[[810,2],[827,2]]], +[822,[3229.96,3551.31,0],[[822,2]]], [823,[3216.53,3448.88,2.38419e-007],[[814,2],[822,2],[831,2],[832,2],[824,2]]], [824,[3329.52,3452.4,0],[[815,2],[823,2],[833,2]]], [825,[1724.35,6767.76,1.27157e-006],[[816,2],[834,2],[835,2]]], [826,[1743.43,6920.3,0],[[817,2],[836,2]]], [827,[1826.03,7130.5,0],[[817,2],[821,2]]], +[828,[1927.32,6817.25,-9.53674e-007],[[818,2],[837,2],[838,2],[839,2]]], [829,[1409.44,7411.89,-2.38419e-007],[[819,2],[840,2]]], [830,[1754.48,7557.13,1.90735e-006],[[820,2],[841,2]]], [831,[3128.55,3389.9,0],[[823,2],[844,2],[843,2],[845,2]]], [832,[3188.9,3482.54,0],[[823,2]]], [833,[3237.05,3325.89,0],[[824,2],[846,2]]], +[834,[1685.75,6599.3,0],[[825,2],[847,2]]], [835,[1613.11,6742.22,0],[[825,2],[848,2],[849,2],[835,2]]], [836,[1674.47,6881.59,-1.90735e-006],[[826,2],[850,2]]], [837,[1987.43,6671.49,0],[[828,2],[851,2]]], [838,[1815.76,6677.59,0],[[828,2],[852,2]]], [839,[2082.77,6851.14,0],[[828,2],[853,2]]], +[840,[1401.12,7444.76,0],[[829,2],[854,2],[855,2]]], [841,[1839.48,7626.86,0],[[830,2],[856,2]]], [842,[3180.1,3499.37,0],[[822,2],[843,2]]], [843,[3074.22,3483.05,-3.17891e-007],[[842,2],[831,2],[844,2],[857,2]]], [844,[3062.56,3426.02,0],[[831,2],[843,2],[845,2]]], [845,[3010.03,3291.17,0],[[831,2],[844,2],[858,2],[859,2],[860,2]]], +[846,[3138.48,3235.68,0],[[833,2],[861,2],[860,2]]], [847,[1633.71,6418.29,-1.90735e-006],[[834,2],[862,2]]], [848,[1486.28,6787.55,0],[[835,2],[863,2]]], [849,[1623.46,6750.72,0],[[835,2],[850,2]]], [850,[1663.42,6813.79,-3.8147e-006],[[836,2],[849,2]]], [851,[1998.3,6585.14,0],[[837,2]]], +[852,[1784.12,6526.14,0],[[838,2],[864,2]]], [853,[2174.62,6866.89,0],[[839,2],[865,2],[866,2]]], [854,[1470.11,7487.69,0],[[840,2],[867,2]]], [855,[1396.99,7516.76,0],[[840,2]]], [856,[1985.73,7620.24,0],[[841,2],[868,2]]], [857,[2966.43,3466.07,0],[[843,2],[869,2]]], +[858,[2990.42,3321.2,1.58946e-007],[[845,2],[870,2],[871,2]]], [859,[2960.13,3218.68,0],[[845,2],[872,2],[873,2],[870,2]]], [860,[3049.8,3217.55,1.19209e-007],[[845,2],[846,2],[861,2],[860,2],[874,2]]], [861,[3107.11,3184.73,-1.19209e-007],[[846,2],[860,2],[872,2],[875,2]]], [862,[1618.45,6358.79,-6.35783e-007],[[847,2],[876,2],[877,2]]], [863,[1446.57,6911.97,0],[[848,2],[878,2]]], +[864,[1741.81,6398.77,1.90735e-006],[[852,2],[879,2]]], [865,[2247.18,6753.14,9.53674e-007],[[853,2],[880,2]]], [866,[2316.54,6955.27,0],[[853,2]]], [867,[1472.02,7587.89,0],[[854,2],[867,2]]], [868,[2107.04,7635.07,0],[[856,2],[881,2]]], [869,[2938.19,3416.89,0],[[857,2],[871,2]]], +[870,[2899.13,3312.98,0],[[858,2],[859,2],[873,2]]], [871,[2943.85,3366.86,-4.76837e-007],[[858,2],[869,2]]], [872,[2963.28,3125.88,-7.94729e-008],[[859,2],[861,2],[882,2]]], [873,[2900.92,3255.04,1.78814e-007],[[859,2],[870,2],[883,2],[884,2]]], [874,[2979.1,3163.74,0],[[860,2]]], [875,[3142.87,3130.2,-1.19209e-007],[[861,2],[885,2],[886,2],[887,2]]], +[876,[1588.08,6146.9,0],[[862,2],[888,2],[877,2]]], [877,[1627.6,6241,0],[[862,2],[876,2]]], [878,[1442.47,7047.6,0],[[863,2],[889,2]]], [879,[1680.19,6322.6,0],[[864,2]]], [880,[2279.82,6650.38,2.38419e-007],[[865,2],[890,2],[891,2],[880,2],[892,2]]], [881,[2201.66,7595.97,0],[[868,2],[793,2]]], +[882,[2964.41,3025.85,0],[[872,2],[887,2],[893,2],[894,2]]], [883,[2935.21,3273.19,0],[[873,2]]], [884,[2867.53,3193.12,-7.94729e-008],[[873,2],[895,2],[893,2],[896,2]]], [885,[3163.35,3081.42,0],[[875,2]]], [886,[3180.78,3171.09,0],[[875,2]]], [887,[3047.73,3071.43,0],[[875,2],[882,2],[897,2]]], +[888,[1558.79,5947.26,0],[[876,2],[898,2]]], [889,[1470.6,7102.86,0],[[878,2],[899,2],[900,2],[889,2]]], [890,[2300.89,6489.82,0],[[880,2],[901,2]]], [891,[2283.19,6659.39,0],[[880,2]]], [892,[2376.56,6672.57,0],[[892,2]]], [893,[2852.45,3063.21,0],[[882,2],[884,2],[895,2]]], +[894,[2989.05,2886.36,0],[[882,2]]], [895,[2854.82,3113.86,0],[[884,2],[893,2],[902,2],[895,2],[903,2]]], [896,[2933.12,3168.42,0],[[884,2]]], [897,[3023.11,3066.75,5.96046e-008],[[887,2],[897,2],[904,2]]], [898,[1520.22,5797.55,0],[[888,2],[905,2]]], [899,[1578.53,7097.98,0],[[889,2]]], +[900,[1450.55,7091.98,0],[[889,2]]], [901,[2338.54,6393.7,0],[[890,2],[906,2]]], [902,[2860.48,3122.92,0],[[895,2]]], [903,[2934.44,3095.89,0],[[895,2]]], [904,[3078.35,3132.61,-4.76837e-007],[[897,2]]], [905,[1529.42,5691.3,0],[[898,2],[907,2],[905,2],[908,2],[909,2]]], +[906,[2390.49,6305.68,0],[[901,2],[910,2],[911,2]]], [907,[1574.31,5618.29,0],[[905,2],[912,2],[913,2],[914,2],[909,2]]], [908,[1397.56,5676.76,0],[[905,2],[908,2],[915,2],[914,2]]], [909,[1489.94,5642.76,0],[[905,2],[907,2],[909,2],[914,2]]], [910,[2457.35,6285.34,0],[[906,2]]], [911,[2387.81,6149.9,1.90735e-006],[[906,2]]], +[912,[1636.24,5637.21,0],[[907,2],[912,2],[916,2],[917,2]]], [913,[1577.55,5525.71,0],[[907,2],[918,2],[913,2],[919,2],[914,2]]], [914,[1475.38,5578.73,0],[[907,2],[908,2],[909,2],[913,2],[919,2],[920,2],[915,2]]], [915,[1398.65,5605.24,0],[[908,2],[914,2],[921,2]]], [916,[1708.68,5577.68,0],[[912,2],[916,2],[922,2],[917,2]]], [917,[1649.49,5553.17,0],[[923,2],[917,2],[927,2],[912,2],[916,2]]], +[918,[1620.3,5447.41,0],[[913,2],[923,2],[922,2],[924,2],[919,2],[918,2]]], [919,[1504.16,5519.11,0],[[913,2],[914,2],[918,2],[924,2]]], [920,[1428.39,5539.13,0],[[914,2],[920,2],[925,2],[924,2]]], [921,[1304.61,5610.99,0],[[915,2]]], [922,[1717.32,5490.49,0],[[916,2],[918,2],[923,2]]], [923,[1653.67,5475.63,0],[[918,2],[922,2],[917,2]]], +[924,[1528.08,5444.07,0],[[918,2],[919,2],[920,2],[926,2],[924,2],[925,2]]], [925,[1446.21,5446.53,0],[[920,2],[924,2]]], [926,[1557.92,5432.18,0],[[924,2]]], [927,[1678.86,5598.14,0],[[917,2]]]]; \ No newline at end of file diff --git a/A3-Antistasi/NavGrids/navGridchernarus_summer.sqf b/A3-Antistasi/NavGrids/navGridchernarus_summer.sqf new file mode 100644 index 0000000000..ceffff62ea --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridchernarus_summer.sqf @@ -0,0 +1,506 @@ +navGrid = [[0,[7060.36,7681.47,0],[[1,2],[2,2],[3,2],[4,2]]], [1,[7209.35,7676.65,0],[[0,2],[5,2]]], [2,[6846.85,7609.76,-3.05176e-005],[[0,2],[6,2]]], [3,[7122.35,7613.05,0],[[0,2],[7,2]]], [4,[7007.38,7745.06,7.62939e-006],[[0,2],[8,2],[4,2],[9,2]]], [5,[7298.1,7671.72,0],[[1,2],[10,2]]], +[6,[6730.21,7550.09,3.05176e-005],[[2,2],[11,2]]], [7,[7125.57,7532.3,0],[[3,2],[12,2]]], [8,[6927.41,7879.74,0],[[4,2],[13,2]]], [9,[7108.03,7784.6,-3.05176e-005],[[4,2]]], [10,[7386.02,7629.42,0],[[5,2],[14,2]]], [11,[6592.46,7502.58,0],[[6,2],[15,2]]], +[12,[7135.67,7429.97,0],[[7,2],[12,2],[16,2]]], [13,[6933.81,8001.87,3.05176e-005],[[8,2],[17,2]]], [14,[7474.75,7572.84,0],[[10,2],[18,2]]], [15,[6453.52,7507.97,0],[[11,2],[19,2]]], [16,[7178.09,7328.88,0],[[12,2],[20,2]]], [17,[6939.67,8030.55,1.01725e-005],[[13,2],[21,2],[22,2]]], +[18,[7606.18,7457.12,0],[[14,2],[23,2]]], [19,[6368.57,7523.37,0],[[15,2],[24,2],[25,2]]], [20,[7136.84,7240.89,1.01725e-005],[[16,2],[26,2],[20,2]]], [21,[6852.65,8065.29,0],[[17,2],[27,2]]], [22,[7064.93,8181.5,-3.05176e-005],[[17,2],[28,2]]], [23,[7710.85,7341.31,0],[[18,2],[29,2]]], +[24,[6246.94,7635.5,0],[[19,2],[30,2]]], [25,[6356.67,7423.61,-3.05176e-005],[[19,2],[31,2]]], [26,[7141.67,7074.21,0],[[20,2],[32,2]]], [27,[6844.8,8196.41,0],[[21,2],[33,2]]], [28,[7177.39,8294.21,1.01725e-005],[[22,2],[34,2],[35,2]]], [29,[7842.7,7253.1,0],[[23,2],[36,2]]], +[30,[6154.39,7719.93,0],[[24,2],[37,2],[38,2],[30,2]]], [31,[6362.57,7325.71,0],[[25,2],[39,2]]], [32,[7132.71,7031.5,-1.01725e-005],[[26,2],[40,2],[41,2]]], [33,[6842.49,8326.35,0],[[27,2],[42,2]]], [34,[7308.78,8299.66,0],[[28,2],[43,2]]], [35,[7284.49,8410.33,0],[[28,2],[44,2]]], +[36,[7939.81,7206.59,0],[[29,2],[45,2]]], [37,[6060.42,7767.91,0],[[30,2],[46,2],[47,2]]], [38,[6205.84,7765.07,0],[[30,2],[48,2]]], [39,[6427.71,7213.32,0],[[31,2],[49,2]]], [40,[7119.49,6932.11,0],[[32,2],[50,2],[40,2],[51,2]]], [41,[7025.1,7033.75,-3.05176e-005],[[32,2],[52,2]]], +[42,[6821.67,8474.56,3.05176e-005],[[33,2],[53,2]]], [43,[7459.84,8299.47,-3.05176e-005],[[34,2],[54,2]]], [44,[7318.99,8447.46,0],[[35,2],[44,2],[55,2]]], [45,[8013.31,7139.55,0],[[36,2],[56,2]]], [46,[5975.24,7630.13,-3.05176e-005],[[37,2],[57,2]]], [47,[5985.12,7880.91,0],[[37,2],[58,2]]], +[48,[6257.9,7821.61,0],[[38,2]]], [49,[6458.64,7157.78,-1.01725e-005],[[39,2],[59,2],[60,2]]], [50,[7082.11,6754.5,0],[[40,2],[61,2]]], [51,[7201.79,6956.91,0],[[40,2],[62,2]]], [52,[6929.73,7079.53,-3.05176e-005],[[41,2],[63,2]]], [53,[6756.03,8559.3,-3.05176e-005],[[42,2],[64,2]]], +[54,[7538.67,8309.44,-2.03451e-005],[[43,2],[54,2],[65,2]]], [55,[7354.61,8605.92,-3.05176e-005],[[44,2],[66,2]]], [56,[8049.57,7085.94,0],[[45,2],[67,2],[68,2]]], [57,[5877.15,7514.74,0],[[46,2],[69,2]]], [58,[5948.4,7973.93,1.01725e-005],[[47,2],[70,2],[71,2]]], [59,[6615.49,7137.47,0],[[49,2],[63,2]]], +[60,[6482.25,6976.9,0],[[49,2],[72,2]]], [61,[7072.03,6642.44,0],[[50,2],[73,2]]], [62,[7221.74,6934.97,0],[[51,2],[74,2],[75,2]]], [63,[6788.92,7117.69,0],[[52,2],[59,2]]], [64,[6745.33,8570.05,-2.03451e-005],[[53,2],[76,2],[77,2]]], [65,[7626.11,8436.81,-1.01725e-005],[[54,2],[65,2],[78,2]]], +[66,[7349.5,8759.72,0],[[55,2],[79,2]]], [67,[8158.9,6956.52,3.05176e-005],[[56,2],[80,2]]], [68,[7956.5,6989.94,0],[[56,2],[81,2]]], [69,[5769.69,7400.19,0],[[57,2],[82,2]]], [70,[5851.94,8126.45,0],[[58,2],[83,2]]], [71,[6023.56,7990.55,0],[[58,2],[84,2]]], +[72,[6511.68,6859.97,0],[[60,2],[85,2]]], [73,[7093.74,6539.13,0],[[61,2],[86,2]]], [74,[7236.1,6805.71,1.52588e-005],[[62,2],[87,2]]], [75,[7221.66,6954.12,-5.08626e-006],[[62,2]]], [76,[6717.52,8491.52,0],[[64,2],[76,2],[88,2]]], [77,[6704.58,8662.77,0],[[64,2],[77,2],[89,2]]], +[78,[7744.09,8482.98,0],[[65,2],[90,2]]], [79,[7324.24,8897.19,0],[[66,2],[91,2]]], [80,[8250.74,6872.34,0],[[67,2],[92,2]]], [81,[7871.43,6909.31,0],[[68,2],[93,2],[94,2]]], [82,[5716.18,7292.71,0],[[69,2],[95,2]]], [83,[5783.75,8182.28,3.05176e-005],[[70,2],[96,2]]], +[84,[6059.08,7983.29,0],[[71,2],[97,2],[84,2]]], [85,[6521.05,6754.15,-1.01725e-005],[[72,2],[85,2],[98,2]]], [86,[7105.51,6458.27,0],[[73,2],[99,2]]], [87,[7299.98,6685.7,0],[[74,2],[100,2]]], [88,[6655.1,8444.92,3.05176e-005],[[76,2]]], [89,[6662.96,8800.12,0],[[77,2],[101,2]]], +[90,[7862.44,8516.8,0],[[78,2],[102,2]]], [91,[7212.31,8991.13,0],[[79,2],[103,2]]], [92,[8320.62,6799.62,-3.05176e-005],[[80,2],[104,2]]], [93,[7806.85,6846.42,-1.01725e-005],[[81,2],[105,2],[94,2],[93,2]]], [94,[7831.33,6869.95,0],[[93,2],[119,2],[94,2],[81,2]]], [95,[5698.02,7267.07,0],[[82,2],[95,2],[106,2]]], +[96,[5656.92,8255.89,0],[[83,2],[107,2]]], [97,[6161.52,8008.51,1.01725e-005],[[84,2],[97,2],[108,2]]], [98,[6526.54,6606.25,-3.05176e-005],[[85,2],[109,2]]], [99,[7141.79,6410.1,5.08626e-006],[[86,2],[99,2],[110,2]]], [100,[7292.25,6543.79,0],[[87,2],[111,2]]], [101,[6609.31,8943.42,0],[[89,2],[112,2]]], +[102,[7998.22,8530.24,7.62939e-006],[[90,2],[113,2],[102,2],[114,2]]], [103,[7126.84,9076.9,0],[[91,2],[115,2]]], [104,[8368.16,6784.08,1.01725e-005],[[92,2],[116,2],[117,2]]], [105,[7701.1,6752.84,0],[[93,2],[118,2]]], [106,[5667.4,7254.93,0],[[95,2],[120,2],[121,2]]], [107,[5532.23,8353.19,0],[[96,2],[122,2]]], +[108,[6204.12,8011.9,0],[[97,2]]], [109,[6537.22,6543.74,0],[[98,2],[123,2],[109,2],[124,2],[125,2]]], [110,[7197.71,6278.99,0],[[99,2],[126,2]]], [111,[7300.32,6415.49,0],[[100,2],[127,2]]], [112,[6582.24,9033.84,0],[[101,2],[128,2],[129,2]]], [113,[8155.33,8571.96,3.05176e-005],[[102,2],[130,2],[131,2]]], +[114,[8032.06,8371.18,0],[[102,2],[132,2]]], [115,[7014.07,9129.08,0],[[103,2],[133,2]]], [116,[8463.08,6756.84,3.05176e-005],[[104,2],[134,2]]], [117,[8420.47,6683.06,0],[[104,2],[134,2]]], [118,[7643.39,6687.79,0],[[105,2],[135,2]]], [119,[7851.21,6883.53,0],[[94,2]]], +[120,[5504.69,7285.46,0],[[106,2],[136,2]]], [121,[5639.56,7115.09,0],[[106,2],[137,2]]], [122,[5468.8,8421.11,0],[[107,2],[138,2]]], [123,[6541.24,6555.67,-1.01725e-005],[[109,2]]], [124,[6603.39,6639.18,0],[[109,2],[139,2]]], [125,[6528.87,6378,0],[[109,2],[140,2]]], +[126,[7269.91,6207.17,0],[[110,2],[141,2]]], [127,[7355.29,6361.09,0],[[111,2],[127,2],[142,2],[143,2]]], [128,[6743.58,9093.51,0],[[112,2],[144,2]]], [129,[6461.52,9084.58,0],[[112,2],[145,2]]], [130,[8296.39,8584.74,0],[[113,2],[146,2]]], [131,[8026.01,8577.7,1.01725e-005],[[1066,2],[1155,2],[113,2],[1109,2],[131,2]]], +[132,[8056.71,8315.52,-1.01725e-005],[[114,2],[132,2],[147,2]]], [133,[6969.06,9140.38,0],[[115,2],[133,2],[144,2]]], [134,[8510.45,6679.49,0],[[116,2],[117,2],[148,2]]], [135,[7544.98,6602.52,3.05176e-005],[[118,2],[149,2]]], [136,[5436.69,7226.38,-3.05176e-005],[[120,2],[150,2]]], [137,[5640.87,7010.94,0],[[121,2],[151,2]]], +[138,[5426.97,8529.48,0],[[122,2],[152,2],[153,2]]], [139,[6626.06,6637.13,-2.03451e-005],[[124,2],[154,2],[139,2],[155,2]]], [140,[6567.68,6255.99,0],[[125,2],[156,2]]], [141,[7298.56,6111.77,0],[[126,2],[157,2]]], [142,[7394.03,6383.52,0],[[127,2],[158,2],[159,2]]], [143,[7378.04,6260.5,5.08626e-006],[[127,2],[143,2],[160,2]]], +[144,[6895.07,9133.04,0],[[128,2],[133,2]]], [145,[6320.54,9147.6,0],[[129,2],[161,2]]], [146,[8416.94,8653.84,-3.05176e-005],[[130,2],[162,2]]], [147,[8082.21,8293.98,1.01725e-005],[[132,2],[147,2],[163,2]]], [148,[8631.95,6589.09,-3.05176e-005],[[134,2],[164,2]]], [149,[7464.44,6552.43,0],[[135,2],[165,2]]], +[150,[5345.6,7083.44,-3.05176e-005],[[136,2],[166,2]]], [151,[5707.05,6901.35,3.05176e-005],[[137,2],[167,2]]], [152,[5326.38,8577.57,-1.01725e-005],[[138,2],[168,2],[169,2]]], [153,[5468.74,8562.44,0],[[138,2],[153,2],[170,2]]], [154,[6617.64,6650.82,-2.03451e-005],[[154,2],[139,2]]], [155,[6643.31,6604.03,-1.01725e-005],[[139,2],[171,2],[172,2]]], +[156,[6587.47,6139.72,0],[[140,2],[173,2]]], [157,[7374.74,6058.21,0],[[141,2],[174,2]]], [158,[7392.97,6430.1,0],[[158,2],[175,2],[165,2]]], [159,[7483.48,6307.12,1.52588e-005],[[142,2],[176,2]]], [160,[7476.41,6086.6,-1.52588e-005],[[143,2],[177,2]]], [161,[6233.95,9209.29,0],[[145,2],[178,2]]], +[162,[8509.3,8799.15,0],[[146,2],[179,2]]], [163,[8236.44,8278.8,3.05176e-005],[[147,2],[180,2]]], [164,[8660.26,6551.93,-1.01725e-005],[[148,2],[181,2],[182,2]]], [165,[7369.95,6545.09,0],[[149,2],[158,2],[183,2]]], [166,[5297.11,6964.62,0],[[150,2],[184,2]]], [167,[5803.67,6816.01,3.05176e-005],[[151,2],[185,2]]], +[168,[5303.73,8613.46,0],[[152,2],[168,2],[186,2]]], [169,[5296.64,8547.87,0],[[152,2],[169,2]]], [170,[5478.46,8674.57,0],[[153,2],[187,2]]], [171,[6699.86,6621.22,0],[[155,2]]], [172,[6601.93,6528.05,0],[[155,2],[188,2]]], [173,[6591.13,6029.44,3.05176e-005],[[156,2],[189,2]]], +[174,[7432.19,5990.34,1.52588e-005],[[157,2],[190,2],[177,2]]], [175,[7351.37,6478.9,-1.52588e-005],[[175,2],[191,2]]], [176,[7613.12,6242.5,0],[[159,2],[192,2]]], [177,[7524.3,5936.12,0],[[160,2],[174,2],[193,2],[190,2]]], [178,[6156.05,9302.77,0],[[161,2],[194,2]]], [179,[8583.44,8839.86,-3.05176e-005],[[162,2],[195,2]]], +[180,[8354.11,8300.22,0],[[163,2],[196,2]]], [181,[8691.09,6522.24,-1.01725e-005],[[164,2],[197,2],[198,2]]], [182,[8703.45,6684.85,-1.01725e-005],[[164,2],[182,2],[199,2]]], [183,[7392.25,6512.12,0],[[165,2]]], [184,[5253.64,6904.97,0],[[166,2],[200,2]]], [185,[5881.55,6745.62,0],[[167,2],[201,2]]], +[186,[5242.47,8623.7,1.01725e-005],[[168,2],[202,2],[203,2]]], [187,[5527.14,8731.32,1.01725e-005],[[170,2],[204,2],[205,2]]], [188,[6642.68,6453.86,-3.05176e-005],[[172,2],[206,2]]], [189,[6578.44,6029.06,1.01725e-005],[[173,2],[207,2],[208,2]]], [190,[7530.04,5912.64,0],[[174,2],[177,2],[209,2],[193,2]]], [191,[7347.89,6464.37,7.62939e-006],[[175,2]]], +[192,[7699.18,6177.38,0],[[176,2],[210,2]]], [193,[7521.02,5917.73,5.08626e-006],[[193,2],[190,2]]], [194,[6128.15,9324.97,0],[[178,2],[211,2],[212,2],[194,2]]], [195,[8668.8,8905.9,3.05176e-005],[[179,2],[213,2]]], [196,[8513.71,8354.12,0],[[180,2],[214,2],[196,2]]], [197,[8636.85,6411.43,0],[[181,2],[215,2]]], +[198,[8806.95,6439.68,0],[[181,2],[216,2]]], [199,[8648.7,6845.4,0],[[182,2],[217,2]]], [200,[5167.57,6922.85,0],[[184,2],[218,2]]], [201,[5952.75,6698.85,0],[[185,2],[219,2]]], [202,[5254.7,8667.64,1.01725e-005],[[186,2],[220,2],[202,2],[221,2],[205,2]]], [203,[5169.03,8594.09,1.01725e-005],[[186,2],[222,2],[223,2]]], +[204,[5606.46,8850.3,0],[[187,2],[224,2]]], [205,[5399.85,8736.76,-3.05176e-005],[[187,2],[202,2],[225,2]]], [206,[6761.12,6357.46,6.10352e-005],[[188,2],[226,2]]], [207,[6632.52,5912.68,0],[[189,2],[227,2]]], [208,[6516.69,6113.93,3.05176e-005],[[189,2],[228,2]]], [209,[7647.4,5773.82,1.52588e-005],[[190,2],[229,2]]], +[210,[7802.37,6093.83,0],[[192,2],[230,2]]], [211,[5945.32,9326.68,0],[[194,2],[231,2]]], [212,[6142.57,9325.5,0],[[194,2],[212,2]]], [213,[8779.04,8998.17,0],[[195,2],[213,2],[232,2],[233,2]]], [214,[8550.5,8350.23,0],[[196,2],[234,2],[235,2]]], [215,[8594.55,6261.99,0],[[197,2],[236,2]]], +[216,[8884,6371.37,3.05176e-005],[[198,2],[237,2]]], [217,[8606.81,6912.17,3.05176e-005],[[199,2],[238,2]]], [218,[5119,6909.84,0],[[200,2],[239,2],[218,2]]], [219,[6055.32,6599.76,-3.05176e-005],[[201,2],[240,2]]], [220,[5244.21,8647.6,1.52588e-005],[[202,2]]], [221,[5321.23,8761.81,0],[[202,2],[241,2]]], +[222,[5059.63,8448.02,0],[[203,2],[242,2]]], [223,[5065.07,8633.61,0],[[203,2],[243,2]]], [224,[5675.26,8963.19,0],[[204,2],[244,2]]], [225,[5340.53,8755.46,0],[[205,2]]], [226,[6812.58,6322.53,0],[[206,2],[226,2],[245,2]]], [227,[6715.4,5844.4,0],[[207,2],[246,2]]], +[228,[6456.15,6167.24,0],[[208,2],[247,2]]], [229,[7718.52,5633.45,0],[[209,2],[248,2]]], [230,[7868.39,6043.93,0],[[210,2],[249,2]]], [231,[5865.5,9323.4,0],[[211,2],[231,2],[250,2]]], [232,[8931.74,8990.44,3.05176e-005],[[213,2],[251,2]]], [233,[8777.08,9162.04,0],[[213,2],[252,2]]], +[234,[8542.41,8187.95,0],[[214,2],[253,2]]], [235,[8628.23,8446.74,0],[[214,2],[254,2]]], [236,[8534.79,6149.63,-3.05176e-005],[[215,2],[255,2]]], [237,[9041.42,6271.56,0],[[216,2],[256,2]]], [238,[8621.01,6946.1,0],[[217,2],[238,2],[257,2]]], [239,[5063.96,6815.08,0],[[218,2],[258,2]]], +[240,[6161.86,6499.5,0],[[219,2],[259,2]]], [241,[5369.04,8925,0],[[221,2],[260,2]]], [242,[5025.14,8329.25,0],[[222,2],[261,2]]], [243,[4920.48,8697.94,0],[[223,2],[262,2]]], [244,[5701.25,9125.39,0],[[224,2],[263,2]]], [245,[6962.34,6308.36,0],[[226,2],[264,2]]], +[246,[6805.32,5771.73,0],[[227,2],[265,2]]], [247,[6394.77,6223.41,3.05176e-005],[[228,2],[266,2]]], [248,[7797.13,5496.27,0],[[229,2],[267,2]]], [249,[7933.38,6089.27,0],[[230,2],[268,2]]], [250,[5775.34,9266.39,0],[[231,2],[269,2],[263,2]]], [251,[9044.63,8939.17,-1.01725e-005],[[232,2],[251,2],[270,2]]], +[252,[8752.73,9276.61,0],[[233,2],[271,2]]], [253,[8556.06,8066.4,0],[[234,2],[272,2]]], [254,[8651.66,8528.62,0],[[235,2],[273,2]]], [255,[8532.14,6087.04,0],[[236,2],[274,2]]], [256,[9149.96,6183.68,0],[[237,2],[275,2]]], [257,[8734.66,7030.79,2.03451e-005],[[238,2],[276,2],[257,2],[277,2]]], +[258,[5031.31,6798.68,1.01725e-005],[[239,2],[278,2],[279,2]]], [259,[6205.26,6408.11,0],[[240,2],[280,2]]], [260,[5367.49,9051.8,3.05176e-005],[[241,2],[281,2]]], [261,[4977.93,8249.13,0],[[242,2],[282,2]]], [262,[4749.59,8740.97,0],[[243,2],[283,2]]], [263,[5728.95,9208.38,0],[[244,2],[250,2],[284,2]]], +[264,[7000.08,6270.15,0],[[245,2],[285,2]]], [265,[6819.44,5749.64,0],[[246,2],[286,2],[265,2],[287,2]]], [266,[6356.4,6284.5,-3.05176e-005],[[247,2],[288,2],[280,2]]], [267,[7816.69,5371.61,0],[[248,2],[289,2]]], [268,[8019.52,6137.54,2.03451e-005],[[249,2],[290,2],[268,2]]], [269,[5749.62,9256.47,0],[[250,2],[291,2]]], +[270,[9205.67,8905.16,0],[[251,2],[292,2]]], [271,[8682.07,9366.7,-3.05176e-005],[[252,2],[293,2]]], [272,[8589.66,7991.56,0],[[253,2],[294,2]]], [273,[8714.09,8626.03,0],[[254,2],[295,2]]], [274,[8543.26,6052.88,1.01725e-005],[[255,2],[296,2],[297,2]]], [275,[9278.19,6096.47,0],[[256,2],[298,2]]], +[276,[8743.83,7007.87,3.05176e-005],[[257,2],[276,2]]], [277,[8721.38,7104.71,2.03451e-005],[[257,2],[299,2],[300,2]]], [278,[4934.25,6776.53,-3.05176e-005],[[258,2],[301,2]]], [279,[5107.5,6695.59,0],[[258,2],[302,2]]], [280,[6295.58,6315.46,0],[[259,2],[266,2],[288,2]]], [281,[5395.31,9190.6,0],[[260,2],[303,2]]], +[282,[4957.26,8139.48,-1.01725e-005],[[261,2],[304,2],[305,2]]], [283,[4608.34,8777.55,0],[[262,2],[306,2]]], [284,[5744.41,9240.01,0],[[263,2]]], [285,[7044.64,6126.4,0],[[264,2],[307,2]]], [286,[6912.03,5638.35,0],[[265,2],[308,2]]], [287,[6756.74,5659.53,3.05176e-005],[[265,2],[309,2]]], +[288,[6338.68,6293,-1.52588e-005],[[266,2],[280,2]]], [289,[7763.59,5260.65,0],[[267,2],[310,2]]], [290,[8084.65,6059.69,0],[[268,2],[311,2]]], [291,[5709.23,9326.48,0],[[269,2],[312,2]]], [292,[9241.36,8881.48,7.62939e-006],[[270,2],[313,2],[314,2],[315,2]]], [293,[8590.05,9461.38,0],[[271,2],[316,2]]], +[294,[8583.91,7874.46,-3.05176e-005],[[272,2],[317,2]]], [295,[8777.34,8735.7,0],[[273,2],[318,2]]], [296,[8431.23,5990.25,0],[[274,2],[319,2]]], [297,[8579.55,6034.9,-1.01725e-005],[[274,2],[320,2],[321,2]]], [298,[9341.76,6031.26,0],[[275,2],[322,2]]], [299,[8680.45,7203.84,-1.01725e-005],[[277,2],[299,2],[323,2]]], +[300,[8843.45,7141.16,0],[[277,2],[324,2]]], [301,[4839.86,6787,3.05176e-005],[[278,2],[325,2]]], [302,[5198.46,6615.88,0],[[279,2],[326,2]]], [303,[5387.19,9260.15,0],[[281,2],[327,2]]], [304,[4963.05,7964.24,0],[[282,2],[328,2]]], [305,[4805.4,8183.53,0],[[282,2],[329,2]]], +[306,[4469.96,8839.28,1.01725e-005],[[283,2],[330,2],[331,2]]], [307,[7085.26,6010.28,0],[[285,2],[307,2],[332,2]]], [308,[6932.58,5584.88,-1.01725e-005],[[286,2],[333,2],[334,2]]], [309,[6755.41,5607.82,0],[[287,2]]], [310,[7704.37,5236.38,0],[[289,2],[335,2]]], [311,[8192.93,6025.59,0],[[290,2],[319,2]]], +[312,[5687.41,9371.6,0],[[291,2],[336,2]]], [313,[9283.07,8988.59,3.05176e-005],[[292,2],[337,2]]], [314,[9350.83,8857.36,-7.62939e-006],[[292,2],[338,2],[339,2],[340,2]]], [315,[9201.32,8847.89,1.01725e-005],[[292,2],[341,2],[342,2]]], [316,[8569.67,9486.94,1.01725e-005],[[293,2],[316,2],[343,2]]], [317,[8586.2,7780.95,3.05176e-005],[[294,2],[344,2]]], +[318,[8924.66,8771.43,3.05176e-005],[[295,2],[341,2]]], [319,[8339.81,5991.77,0],[[296,2],[311,2]]], [320,[8725.59,6030.69,0],[[297,2],[345,2]]], [321,[8570.3,5960.68,-3.05176e-005],[[297,2],[346,2]]], [322,[9413.38,5987.07,0],[[298,2],[347,2]]], [323,[8698.39,7315.94,-3.05176e-005],[[299,2],[348,2]]], +[324,[8972.02,7161.2,0],[[300,2],[349,2]]], [325,[4803.38,6795.04,0],[[301,2],[350,2],[351,2]]], [326,[5312.55,6608.84,0],[[302,2],[352,2]]], [327,[5321.63,9315.26,0],[[303,2],[353,2]]], [328,[4934.48,7848.73,-3.05176e-005],[[304,2],[354,2]]], [329,[4656.82,8211.07,-3.05176e-005],[[305,2],[355,2]]], +[330,[4377.07,8756.27,3.05176e-005],[[306,2],[356,2],[330,2]]], [331,[4468.71,9005.15,0],[[306,2],[357,2]]], [332,[7212.17,5909.32,-3.05176e-005],[[307,2],[358,2]]], [333,[6901.09,5562.81,0],[[333,2],[359,2]]], [334,[7027.23,5562.77,3.05176e-005],[[308,2],[360,2]]], [335,[7590.65,5251.9,0],[[310,2],[361,2]]], +[336,[5714.88,9497.22,0],[[312,2],[362,2]]], [337,[9331.49,9107.92,0],[[313,2],[363,2]]], [338,[9376.59,8918.79,0],[[314,2],[364,2]]], [339,[9320.05,8910.66,0],[[314,2]]], [340,[9456.9,8814.33,0],[[314,2],[365,2],[366,2],[367,2]]], [341,[9048.2,8813.32,0],[[315,2],[318,2]]], +[342,[9231.28,8805.52,0],[[315,2],[368,2]]], [343,[8572.6,9555.64,-1.01725e-005],[[316,2],[343,2],[369,2]]], [344,[8659.56,7621.69,0],[[317,2],[370,2]]], [345,[8758.88,6026.49,1.01725e-005],[[320,2],[345,2],[371,2]]], [346,[8592.58,5930.46,0],[[321,2],[346,2],[372,2]]], [347,[9524.92,6000.12,-1.01725e-005],[[322,2],[373,2],[374,2]]], +[348,[8744.42,7442.69,-3.05176e-005],[[323,2],[370,2]]], [349,[9059.17,7169.65,0],[[324,2],[375,2],[349,2],[376,2]]], [350,[4763.36,6760.5,-1.01725e-005],[[325,2],[377,2],[378,2]]], [351,[4841.12,6949.43,3.05176e-005],[[325,2],[379,2]]], [352,[5360.29,6591.14,1.01725e-005],[[326,2],[352,2],[380,2]]], [353,[5286.46,9383.15,0],[[327,2],[381,2]]], +[354,[4918.31,7837.19,-2.03451e-005],[[328,2],[354,2],[382,2]]], [355,[4501.52,8244.05,0],[[329,2],[383,2]]], [356,[4371.45,8753.07,0],[[330,2],[384,2]]], [357,[4469.41,9127.48,3.05176e-005],[[331,2],[385,2]]], [358,[7257.93,5820.09,0],[[332,2],[386,2]]], [359,[6835.94,5386.31,0],[[333,2],[387,2]]], +[360,[7172.36,5514.58,0],[[334,2],[388,2]]], [361,[7566.22,5250,-5.08626e-006],[[335,2],[389,2],[390,2]]], [362,[5735.51,9627.03,0],[[336,2],[391,2]]], [363,[9358.67,9241.57,-3.05176e-005],[[337,2],[392,2]]], [364,[9402.17,8957.47,0],[[338,2]]], [365,[9587.22,8804.41,-3.05176e-005],[[340,2],[393,2]]], +[366,[9460.67,8896.72,0],[[340,2],[394,2]]], [367,[9439.1,8678.31,0],[[340,2],[395,2]]], [368,[9279.73,8809.84,0],[[342,2],[368,2]]], [369,[8623.91,9641.76,3.05176e-005],[[343,2],[396,2],[397,2]]], [370,[8731.39,7503.47,0],[[344,2],[348,2]]], [371,[8837.79,6015.48,0],[[345,2],[398,2]]], +[372,[8602.98,5878.23,-7.62939e-006],[[346,2],[399,2],[400,2],[372,2]]], [373,[9510.19,5932.53,0],[[347,2],[401,2]]], [374,[9624.25,6073.16,0],[[347,2],[402,2]]], [375,[9048.43,7161.77,0],[[349,2]]], [376,[9096,7177.9,-1.52588e-005],[[376,2],[403,2]]], [377,[4762.72,6656.98,0],[[350,2],[404,2]]], +[378,[4694.69,6845.82,0],[[350,2],[405,2]]], [379,[4839.51,7069.72,0],[[351,2],[406,2]]], [380,[5441.04,6484.88,1.52588e-005],[[352,2],[407,2]]], [381,[5272.17,9467.74,-3.05176e-005],[[353,2],[408,2]]], [382,[4865.54,7824.36,-1.01725e-005],[[354,2],[382,2],[409,2]]], [383,[4482.08,8241.72,0],[[355,2],[383,2],[410,2]]], +[384,[4233.31,8739.45,0],[[356,2],[411,2]]], [385,[4421.34,9189.58,0],[[357,2],[412,2]]], [386,[7256.69,5746.87,2.03451e-005],[[358,2],[386,2],[413,2]]], [387,[6802.07,5218.2,0],[[359,2],[414,2]]], [388,[7297.05,5455.73,-1.52588e-005],[[360,2],[415,2]]], [389,[7540.01,5217.13,-5.08626e-006],[[361,2],[416,2],[389,2]]], +[390,[7514.8,5343.7,0],[[361,2],[415,2]]], [391,[5789.92,9770.88,0],[[362,2],[417,2]]], [392,[9336.47,9348.63,3.05176e-005],[[363,2],[418,2]]], [393,[9651.2,8815.72,-7.62939e-006],[[365,2],[419,2],[393,2],[420,2]]], [394,[9481.71,8936.52,0],[[366,2]]], [395,[9355.6,8608.05,0],[[367,2],[421,2]]], +[396,[8778.3,9688.89,3.05176e-005],[[369,2],[422,2]]], [397,[8572.03,9780.24,0],[[369,2],[423,2]]], [398,[8959.61,5995.15,0],[[371,2],[424,2]]], [399,[8593.36,5801.13,0],[[372,2],[425,2]]], [400,[8598.9,5890.24,0],[[372,2]]], [401,[9424.65,5860.8,0],[[373,2],[426,2]]], +[402,[9732.16,6081.59,3.05176e-005],[[374,2],[427,2]]], [403,[9244.92,7155.45,0],[[376,2],[428,2]]], [404,[4787.85,6587.01,0],[[377,2],[404,2],[429,2]]], [405,[4594.03,6894.55,0],[[378,2],[430,2]]], [406,[4808.74,7173.31,0],[[379,2],[431,2]]], [407,[5554.61,6439.7,1.52588e-005],[[380,2],[432,2]]], +[408,[5292.66,9604.63,0],[[381,2],[433,2]]], [409,[4732.22,7731.42,0],[[382,2],[434,2]]], [410,[4348.05,8162.47,0],[[383,2],[435,2]]], [411,[4117.46,8767.42,0],[[384,2],[436,2]]], [412,[4369.54,9301.7,0],[[385,2],[437,2]]], [413,[7255.56,5610.48,0],[[386,2],[438,2]]], +[414,[6775.28,5091.56,0],[[387,2],[439,2]]], [415,[7360.18,5423.65,3.8147e-006],[[388,2],[390,2],[440,2],[415,2],[438,2]]], [416,[7543.75,5146.09,0],[[389,2],[441,2],[442,2]]], [417,[5843.83,9905.83,0],[[391,2],[443,2]]], [418,[9328.24,9360.76,0],[[392,2],[418,2],[444,2]]], [419,[9777.91,8798.86,0],[[393,2],[419,2],[445,2],[446,2]]], +[420,[9683.96,8850.83,0],[[393,2],[447,2],[448,2]]], [421,[9230.84,8620.77,-3.05176e-005],[[395,2],[449,2]]], [422,[8907.86,9714.89,3.05176e-005],[[396,2],[450,2]]], [423,[8535.66,9837.93,0],[[397,2],[451,2],[423,2],[452,2],[453,2]]], [424,[9072.65,5950.87,0],[[398,2],[454,2]]], [425,[8485.89,5726.39,0],[[399,2],[455,2]]], +[426,[9362.48,5853.89,0],[[401,2],[456,2],[454,2]]], [427,[9812.92,6047.48,0],[[402,2],[457,2]]], [428,[9296.93,7187.54,-1.01725e-005],[[403,2],[428,2],[458,2]]], [429,[4743.8,6482.79,0],[[404,2],[459,2]]], [430,[4525.55,6967.61,0],[[405,2],[460,2]]], [431,[4692.28,7237.98,0],[[406,2],[461,2],[462,2]]], +[432,[5617.83,6395.1,0],[[407,2],[463,2]]], [433,[5293.79,9708.18,0],[[408,2],[464,2]]], [434,[4663.78,7631.88,-6.10352e-005],[[409,2],[465,2]]], [435,[4269.03,8122.86,0],[[410,2],[466,2]]], [436,[3976.23,8801.61,0],[[411,2],[467,2]]], [437,[4368.08,9362.46,0],[[412,2],[468,2]]], +[438,[7276.05,5531.23,0],[[413,2],[415,2],[469,2]]], [439,[6767.54,5080.76,1.01725e-005],[[414,2],[439,2],[470,2]]], [440,[7348.08,5436.02,0],[[415,2]]], [441,[7449.98,5139.72,0],[[416,2],[441,2]]], [442,[7530.46,5049.26,0],[[416,2],[471,2]]], [443,[5846.31,10028.3,0],[[417,2],[472,2]]], +[444,[9279.24,9413.73,1.52588e-005],[[444,2],[473,2]]], [445,[9773.88,8773.12,0],[[419,2]]], [446,[9903.76,8806.75,0],[[419,2],[474,2],[475,2]]], [447,[9727.72,8920.96,0],[[420,2],[447,2]]], [448,[9688.68,8890.68,0],[[420,2]]], [449,[9163.21,8634.88,3.05176e-005],[[421,2],[476,2]]], +[450,[9057.29,9728.82,0],[[422,2],[477,2]]], [451,[8534.16,9815.86,0],[[423,2]]], [452,[8405.15,9823.67,0],[[423,2],[478,2]]], [453,[8628.55,9927.64,-1.01725e-005],[[423,2],[453,2],[479,2]]], [454,[9186.78,5871.2,3.05176e-005],[[424,2],[426,2],[456,2]]], [455,[8393.87,5633.22,0],[[425,2],[480,2]]], +[456,[9235.46,5842.84,0],[[426,2],[454,2],[456,2]]], [457,[9872.41,5992.83,0],[[427,2],[481,2]]], [458,[9386.49,7147.67,1.52588e-005],[[428,2],[458,2],[482,2]]], [459,[4706.51,6422.88,0],[[429,2],[483,2]]], [460,[4456.54,7061.59,0],[[430,2],[484,2]]], [461,[4612.89,7311.16,0],[[431,2],[485,2],[462,2],[461,2]]], +[462,[4601.88,7293.59,0],[[461,2],[512,2],[462,2],[431,2]]], [463,[5698.69,6291.83,-1.52588e-005],[[432,2],[486,2]]], [464,[5266.66,9772.74,0],[[433,2],[487,2]]], [465,[4643.02,7542.98,0],[[434,2],[485,2]]], [466,[4128.58,8140.51,0],[[435,2],[488,2]]], [467,[3815.23,8864.53,-7.62939e-006],[[436,2],[489,2],[490,2],[491,2]]], +[468,[4466.98,9453.39,0],[[437,2],[492,2]]], [469,[7336.63,5466.37,0],[[438,2]]], [470,[6749.28,5065.56,0],[[439,2],[470,2],[493,2]]], [471,[7530.51,5013.77,0],[[442,2],[494,2],[495,2]]], [472,[5834.31,10097.3,0],[[443,2],[496,2]]], [473,[9203.82,9514.05,0],[[444,2],[497,2]]], +[474,[10091.6,8869.19,0],[[446,2],[498,2]]], [475,[9948.65,8671.63,0],[[446,2],[499,2],[500,2]]], [476,[9107.22,8592.59,0],[[449,2],[501,2]]], [477,[9088.74,9716.56,0],[[450,2],[477,2],[502,2]]], [478,[8277.92,9803.75,0],[[452,2],[503,2]]], [479,[8624.45,10013.6,-3.05176e-005],[[453,2],[504,2]]], +[480,[8346.96,5533.37,1.52588e-005],[[455,2],[505,2]]], [481,[9894.41,6002.92,0],[[457,2],[506,2],[507,2]]], [482,[9429.3,7179.95,-5.08626e-006],[[458,2],[482,2],[508,2]]], [483,[4705.82,6359.69,0],[[459,2],[509,2],[510,2]]], [484,[4412.65,7156.25,0],[[460,2],[511,2]]], [485,[4644.04,7474,0],[[461,2],[465,2]]], +[486,[5757.87,6188.8,0],[[463,2],[513,2]]], [487,[5187.89,9779.29,1.01725e-005],[[464,2],[514,2],[487,2],[515,2]]], [488,[3984.45,8159.96,-3.05176e-005],[[466,2],[516,2]]], [489,[3755.86,8715.29,0],[[467,2],[517,2]]], [490,[3661.59,8945.41,0],[[467,2],[518,2]]], [491,[3825.23,8930.92,0],[[467,2],[519,2],[491,2],[520,2]]], +[492,[4497.11,9497.61,-1.01725e-005],[[468,2],[492,2],[521,2]]], [493,[6657.28,4948.42,0],[[470,2],[493,2],[522,2]]], [494,[7485.79,4904.38,1.52588e-005],[[471,2],[523,2]]], [495,[7597.57,4951.55,0],[[471,2],[524,2]]], [496,[5851,10136.1,7.62939e-006],[[472,2],[525,2],[526,2],[527,2]]], [497,[9130.2,9547.78,-1.01725e-005],[[473,2],[497,2],[528,2],[502,2]]], +[498,[10232.8,8892.71,-1.52588e-005],[[474,2],[529,2]]], [499,[9977.53,8584.79,1.01725e-005],[[475,2],[530,2],[500,2],[499,2]]], [500,[9981.2,8594.25,0],[[499,2],[564,2],[500,2],[475,2]]], [501,[9128.62,8544.12,0],[[476,2],[531,2]]], [502,[9159.63,9641.04,0],[[477,2],[497,2],[532,2],[528,2]]], [503,[8135.3,9782.24,-3.05176e-005],[[478,2],[533,2]]], +[504,[8583.56,10173.2,0],[[479,2],[534,2]]], [505,[8325.28,5488.38,0],[[480,2],[535,2],[536,2],[537,2]]], [506,[9891.11,6125.24,-3.05176e-005],[[481,2],[538,2]]], [507,[9938.12,5980.15,0],[[481,2],[539,2],[507,2]]], [508,[9530.94,7221.06,-3.05176e-006],[[482,2],[508,2],[540,2],[541,2],[542,2],[543,2]]], [509,[4607.53,6414.65,0],[[483,2],[544,2],[509,2]]], +[510,[4729.01,6292.44,-1.01725e-005],[[483,2],[545,2],[546,2]]], [511,[4361.01,7255.13,0],[[484,2],[547,2]]], [512,[4628.79,7271.81,0],[[462,2]]], [513,[5791.88,6080.6,0],[[486,2],[548,2]]], [514,[5209.11,9781.02,1.52588e-005],[[487,2]]], [515,[5106.13,9763.56,-1.01725e-005],[[487,2],[549,2],[550,2]]], +[516,[3839.91,8187.05,-3.05176e-005],[[488,2],[551,2]]], [517,[3684.63,8605.71,0],[[489,2],[552,2]]], [518,[3580,9026.19,0],[[490,2],[553,2]]], [519,[3857.4,9021.47,3.05176e-005],[[491,2],[519,2]]], [520,[3766.42,8956.7,0],[[491,2]]], [521,[4494.1,9634.65,0],[[492,2],[554,2]]], +[522,[6641.38,4906.29,-5.08626e-006],[[493,2],[522,2],[555,2]]], [523,[7475.81,4777.16,-1.52588e-005],[[494,2],[556,2]]], [524,[7717.02,4874.98,0],[[495,2],[557,2]]], [525,[5898.98,10219.9,0],[[496,2],[558,2],[559,2]]], [526,[5775.16,10204.1,-1.01725e-005],[[496,2],[526,2],[560,2]]], [527,[5934.29,10083.8,0],[[527,2],[561,2],[496,2]]], +[528,[9122.35,9591.62,1.52588e-005],[[497,2],[502,2]]], [529,[10317.5,8914.79,0],[[498,2],[562,2]]], [530,[9981.68,8460.04,0],[[499,2],[563,2]]], [531,[9197.97,8498.57,0],[[501,2],[565,2]]], [532,[9339.38,9699.92,0],[[502,2],[566,2]]], [533,[7960.58,9734.19,0],[[503,2],[567,2]]], +[534,[8561.54,10299,0],[[504,2],[534,2],[568,2]]], [535,[8251.72,5383.78,0],[[505,2],[569,2],[537,2],[535,2]]], [536,[8346.65,5459.04,1.52588e-005],[[505,2]]], [537,[8269.11,5395.53,0],[[535,2],[601,2],[537,2],[505,2]]], [538,[9883.45,6208.39,0],[[506,2],[538,2],[570,2]]], [539,[9974.23,5822.07,0],[[507,2],[571,2]]], +[540,[9491.1,7104.91,0],[[508,2],[543,2],[540,2],[572,2]]], [541,[9640.66,7161.22,-1.52588e-005],[[508,2],[573,2]]], [542,[9638.98,7353.81,0],[[508,2],[574,2]]], [543,[9477.24,7132.24,-3.8147e-006],[[540,2],[543,2],[508,2]]], [544,[4582.36,6442.54,7.62939e-006],[[509,2],[575,2],[544,2]]], [545,[4726.31,6151.56,0],[[510,2],[576,2]]], +[546,[4894.83,6308.25,0],[[510,2],[577,2]]], [547,[4354.61,7267.33,1.01725e-005],[[511,2],[547,2],[578,2]]], [548,[5828.1,5967.84,0],[[513,2],[579,2]]], [549,[5057.25,9884.37,0],[[515,2],[580,2]]], [550,[5084.07,9699.71,0],[[515,2],[581,2],[550,2]]], [551,[3704.83,8166.88,3.05176e-005],[[516,2],[582,2]]], +[552,[3606.99,8519.94,0],[[517,2],[583,2]]], [553,[3547.29,9107.86,0],[[518,2],[553,2],[584,2]]], [554,[4536.36,9754.58,-3.05176e-005],[[521,2],[585,2]]], [555,[6542.4,4797.54,0],[[522,2],[586,2]]], [556,[7514.11,4661.71,0],[[523,2],[587,2]]], [557,[7790.12,4844.58,0],[[524,2],[588,2]]], +[558,[5984.94,10343,1.52588e-005],[[525,2],[589,2],[558,2],[590,2]]], [559,[5933.61,10198.4,0],[[525,2]]], [560,[5740.1,10259.9,1.01725e-005],[[526,2],[560,2],[591,2]]], [561,[5920.32,10096.4,0],[[527,2]]], [562,[10334.3,8927.15,1.01725e-005],[[529,2],[562,2],[594,2]]], [563,[10005.4,8375.79,0],[[530,2],[595,2]]], +[564,[9974.11,8615.94,0],[[500,2]]], [565,[9217.15,8425.4,0],[[531,2],[596,2]]], [566,[9501.8,9755.08,0],[[532,2],[597,2]]], [567,[7823.75,9707.4,0],[[533,2],[598,2]]], [568,[8464.24,10378.3,3.05176e-005],[[534,2],[599,2]]], [569,[8199.9,5309.13,0],[[535,2],[569,2],[600,2]]], +[570,[9803.08,6277.28,0],[[538,2],[602,2]]], [571,[9982.28,5719.27,0],[[539,2],[603,2]]], [572,[9579.15,6953.71,0],[[540,2],[604,2]]], [573,[9736.53,7075.94,0],[[541,2],[605,2]]], [574,[9655.11,7426.89,0],[[542,2],[606,2]]], [575,[4490.16,6414.92,0],[[544,2],[607,2]]], +[576,[4757.53,6085.43,0],[[545,2],[576,2],[608,2]]], [577,[4998.96,6336.92,-3.05176e-005],[[546,2],[609,2]]], [578,[4242.89,7313.26,0],[[547,2],[610,2]]], [579,[5868.32,5872.04,-1.52588e-005],[[548,2],[611,2]]], [580,[5019.52,9965.71,0],[[580,2],[612,2]]], [581,[5006.56,9581.54,0],[[550,2],[613,2]]], +[582,[3658.97,8142.51,0],[[551,2],[582,2],[614,2],[615,2]]], [583,[3525.35,8434.92,0],[[552,2],[616,2]]], [584,[3505.28,9116.89,1.01725e-005],[[553,2],[617,2],[584,2],[618,2]]], [585,[4548.21,9872.38,1.01725e-005],[[554,2],[619,2],[620,2]]], [586,[6470.8,4700.44,1.52588e-005],[[555,2],[621,2]]], [587,[7519.71,4634.89,0],[[556,2],[622,2],[623,2]]], +[588,[7857.94,4787.74,0],[[557,2],[624,2]]], [589,[6061.54,10465.5,-7.62939e-006],[[558,2],[625,2],[589,2],[626,2]]], [590,[6066.91,10315.4,0],[[558,2],[627,2]]], [591,[5593.91,10351,0],[[560,2],[628,2]]], [592,[6027.92,9963.9,0],[[527,2],[593,2]]], [593,[6159.26,9863.24,0],[[592,2],[629,2]]], +[594,[10389.1,8957.88,-5.08626e-006],[[562,2],[630,2],[631,2]]], [595,[9948.75,8280.77,0],[[563,2],[632,2]]], [596,[9190.08,8332.17,0],[[565,2],[633,2]]], [597,[9625.45,9789.05,0],[[566,2],[634,2]]], [598,[7658.62,9692.62,0],[[567,2],[635,2]]], [599,[8350.45,10428,0],[[568,2],[636,2]]], +[600,[8169.86,5279.93,0],[[569,2],[637,2],[638,2]]], [601,[8280.14,5419.19,0],[[537,2]]], [602,[9725.84,6322.31,0],[[570,2],[639,2]]], [603,[10036.3,5657.81,0],[[571,2],[640,2],[641,2]]], [604,[9575.64,6814.67,0],[[572,2],[642,2],[643,2]]], [605,[9824.96,7033.09,5.08626e-006],[[573,2],[644,2],[645,2]]], +[606,[9604.71,7521.05,0],[[574,2],[646,2]]], [607,[4416.08,6413.06,-1.01725e-005],[[575,2],[647,2],[648,2]]], [608,[4746.4,5969.48,-3.05176e-005],[[576,2],[649,2]]], [609,[5091.17,6366.37,0],[[577,2],[650,2]]], [610,[4228.36,7306.7,0],[[578,2],[610,2],[651,2]]], [611,[5933.63,5786.44,0],[[579,2],[652,2]]], +[612,[4940.87,10160.6,0],[[580,2],[653,2]]], [613,[4907.95,9551.24,0],[[581,2],[654,2]]], [614,[3683.48,8247.2,0],[[582,2],[614,2]]], [615,[3606.19,8042.68,-3.05176e-005],[[582,2],[655,2]]], [616,[3411.98,8327.65,3.05176e-005],[[583,2],[656,2]]], [617,[3442.65,9095.69,0],[[584,2],[657,2]]], +[618,[3519.54,9122.24,1.52588e-005],[[584,2]]], [619,[4484.82,9998.87,0],[[585,2],[658,2]]], [620,[4619.7,9769.88,-1.01725e-005],[[585,2],[659,2],[660,2]]], [621,[6475.54,4608.69,0],[[586,2],[661,2]]], [622,[7404.48,4650.75,0],[[587,2],[662,2]]], [623,[7654,4561.71,0],[[587,2],[663,2]]], +[624,[7916.35,4732.84,0],[[588,2],[664,2]]], [625,[6084.05,10553.6,0],[[589,2],[665,2],[666,2]]], [626,[6164.26,10453.2,0],[[589,2],[667,2]]], [627,[6133.65,10260.6,0],[[590,2],[668,2]]], [628,[5481.62,10408.4,0],[[591,2],[669,2]]], [629,[6263.65,9771.65,0],[[593,2],[670,2]]], +[630,[10427.8,8865.01,0],[[594,2],[671,2]]], [631,[10342,9000.26,-5.08626e-006],[[594,2],[631,2],[672,2]]], [632,[9859.3,8252.48,0],[[595,2],[673,2]]], [633,[9165.87,8256.53,0],[[596,2],[674,2]]], [634,[9668.42,9850.39,0],[[597,2],[675,2]]], [635,[7487.96,9668.23,0],[[598,2],[676,2],[677,2]]], +[636,[8249.22,10482,1.01725e-005],[[599,2],[678,2],[636,2],[679,2]]], [637,[8171.22,5296.66,5.08626e-006],[[600,2]]], [638,[8275.24,5155.32,0],[[600,2],[680,2]]], [639,[9672.88,6351.52,5.08626e-006],[[602,2],[639,2],[681,2]]], [640,[10096.1,5495.19,0],[[603,2],[682,2],[683,2]]], [641,[10136.6,5736.88,-1.52588e-005],[[603,2],[684,2]]], +[642,[9481.02,6754.64,0],[[604,2],[685,2]]], [643,[9634.64,6799.15,0],[[604,2],[643,2],[686,2]]], [644,[9751.58,6991.99,0],[[605,2],[686,2]]], [645,[9954.47,7074.99,0],[[605,2],[687,2]]], [646,[9507.71,7658.12,0],[[606,2],[688,2]]], [647,[4327.53,6509.64,0],[[607,2],[689,2]]], +[648,[4402.81,6226.72,0],[[607,2],[690,2]]], [649,[4791.56,5871.03,3.05176e-005],[[608,2],[691,2]]], [650,[5188.51,6454.48,0],[[609,2],[692,2]]], [651,[4202.19,7253.63,0],[[610,2],[693,2],[694,2]]], [652,[5964.21,5676.47,0],[[611,2],[695,2]]], [653,[4880.14,10258.3,0],[[612,2],[696,2],[697,2]]], +[654,[4774.1,9539.18,0],[[613,2],[654,2],[660,2]]], [655,[3563.83,7901.73,0],[[615,2],[698,2]]], [656,[3306.8,8245.73,3.05176e-005],[[616,2],[699,2]]], [657,[3295.41,9178.34,0],[[617,2],[700,2]]], [658,[4406.89,10130.9,0],[[619,2],[701,2]]], [659,[4616.07,9701.13,-1.01725e-005],[[620,2],[702,2],[659,2]]], +[660,[4704.1,9653.05,0],[[620,2],[654,2]]], [661,[6505.83,4577.3,0],[[621,2],[703,2],[704,2]]], [662,[7332.46,4638.22,-1.52588e-005],[[622,2],[705,2]]], [663,[7746.95,4561.9,0],[[623,2],[706,2]]], [664,[8035.88,4729.05,0],[[624,2],[707,2]]], [665,[6145.47,10663.6,0],[[625,2],[708,2]]], +[666,[6036.94,10591.1,1.01725e-005],[[625,2],[666,2],[709,2]]], [667,[6252.51,10422.2,3.05176e-005],[[626,2],[710,2]]], [668,[6146.44,10258.5,0],[[627,2],[668,2],[711,2]]], [669,[5351.43,10505.7,0],[[628,2],[712,2]]], [670,[6352.87,9685.47,0],[[629,2],[713,2]]], [671,[10486.8,8746.65,0],[[630,2],[714,2]]], +[672,[10229.3,9066.61,1.52588e-005],[[631,2],[715,2]]], [673,[9816.08,8216.3,0],[[632,2],[716,2]]], [674,[9180.52,8186.96,0],[[633,2],[717,2]]], [675,[9693.1,9995.02,-1.52588e-005],[[634,2],[718,2]]], [676,[7596.11,9536.6,-3.05176e-005],[[635,2],[719,2]]], [677,[7358.05,9778.48,0],[[635,2],[720,2]]], +[678,[8252.67,10464.7,1.52588e-005],[[636,2]]], [679,[8266.43,10548.5,0],[[636,2],[721,2],[679,2]]], [680,[8369.26,5032.6,0],[[638,2],[722,2]]], [681,[9649.59,6454.67,1.52588e-005],[[639,2],[723,2]]], [682,[10142.9,5429.25,0],[[640,2],[724,2],[725,2]]], [683,[10016.7,5477.23,0],[[640,2],[726,2],[727,2]]], +[684,[10234.6,5739.91,0],[[641,2],[728,2]]], [685,[9473.06,6745.76,0],[[642,2],[685,2],[729,2]]], [686,[9691.04,6903.74,0],[[643,2],[644,2]]], [687,[10081.9,7057.92,0],[[645,2],[730,2]]], [688,[9439.34,7705.28,-5.08626e-006],[[646,2],[688,2],[731,2]]], [689,[4288.23,6543.5,-1.01725e-005],[[647,2],[689,2],[732,2]]], +[690,[4396.7,6065.2,0],[[648,2],[733,2]]], [691,[4866.05,5706.3,0],[[649,2],[734,2]]], [692,[5268.1,6517.74,0],[[650,2]]], [693,[4061.47,7368.84,-3.05176e-005],[[651,2],[735,2]]], [694,[4126.53,7125.85,0],[[651,2],[736,2]]], [695,[5961.15,5658.11,0],[[652,2],[695,2],[737,2]]], +[696,[4792.18,10345.8,0],[[653,2],[738,2]]], [697,[4820.95,10235.3,0],[[653,2]]], [698,[3539.76,7795.69,-1.01725e-005],[[655,2],[739,2],[740,2]]], [699,[3213.49,8163.31,0],[[656,2],[741,2]]], [700,[3188.85,9246.75,3.05176e-005],[[657,2],[742,2]]], [701,[4316.26,10279.3,0],[[658,2],[743,2]]], +[702,[4617.22,9600.27,0],[[659,2],[702,2],[744,2]]], [703,[6497.55,4516.15,0],[[661,2],[745,2]]], [704,[6658.35,4543.1,1.52588e-005],[[661,2],[746,2]]], [705,[7273.14,4599.5,0],[[662,2],[747,2],[705,2],[748,2]]], [706,[7841,4527.18,1.52588e-005],[[663,2],[749,2]]], [707,[8122.24,4782.51,0],[[664,2],[750,2]]], +[708,[6152.23,10794.3,0],[[665,2],[751,2]]], [709,[6028.42,10624.6,0],[[666,2],[709,2],[752,2]]], [710,[6373.4,10358,0],[[667,2],[753,2]]], [711,[6188.52,10311.7,-3.05176e-005],[[668,2],[754,2]]], [712,[5298.67,10567.4,0],[[669,2]]], [713,[6455.87,9672.11,-3.05176e-005],[[670,2],[755,2]]], +[714,[10568.7,8632.03,0],[[671,2],[756,2]]], [715,[10202.1,9107.95,0],[[672,2],[757,2],[758,2],[715,2]]], [716,[9816.91,8164.63,0],[[673,2],[759,2]]], [717,[9182.17,8099.86,1.52588e-005],[[674,2],[760,2]]], [718,[9697.89,10116.8,0],[[675,2],[761,2]]], [719,[7693,9474.94,0],[[676,2],[762,2],[763,2]]], +[720,[7279.33,9890.26,-3.05176e-005],[[677,2],[764,2]]], [721,[8348.3,10541.4,1.01725e-005],[[679,2],[721,2],[765,2]]], [722,[8410.36,4943.55,5.08626e-006],[[680,2],[766,2],[767,2]]], [723,[9617.23,6522.92,0],[[681,2],[768,2],[723,2],[769,2]]], [724,[10138,5243.7,0],[[682,2],[770,2]]], [725,[10243.3,5465.47,0],[[682,2],[771,2]]], +[726,[9879.66,5469.27,0],[[683,2]]], [727,[9961.14,5522.98,0],[[683,2]]], [728,[10279.6,5728.99,-3.8147e-006],[[684,2],[728,2],[772,2],[773,2]]], [729,[9469.38,6722.06,5.08626e-006],[[685,2],[729,2],[774,2]]], [730,[10221.1,7054.38,0],[[687,2],[775,2]]], [731,[9398.07,7702.63,5.08626e-006],[[688,2],[731,2],[776,2]]], +[732,[4163.44,6600.83,0],[[689,2],[777,2]]], [733,[4387.42,5928.47,3.05176e-005],[[690,2],[778,2]]], [734,[4884.91,5652.06,0],[[691,2],[779,2],[780,2]]], [735,[3974.8,7471.75,-3.05176e-005],[[693,2],[781,2]]], [736,[4041.61,7044.25,3.05176e-005],[[694,2],[782,2]]], [737,[5941.92,5534.94,0],[[695,2],[783,2]]], +[738,[4713.18,10407.7,0],[[696,2],[784,2]]], [739,[3398.65,7874.57,0],[[698,2],[785,2]]], [740,[3703.62,7694.7,0],[[698,2],[781,2]]], [741,[3155.81,8092.88,7.62939e-006],[[699,2],[786,2],[787,2],[788,2]]], [742,[3044.83,9299.79,0],[[700,2],[789,2]]], [743,[4241.87,10390.3,0],[[701,2],[790,2],[791,2]]], +[744,[4649.16,9616.29,0],[[702,2],[744,2]]], [745,[6552.39,4445.41,0],[[703,2]]], [746,[6724.17,4532.88,0],[[704,2],[746,2],[792,2]]], [747,[7290.38,4601.05,0],[[705,2]]], [748,[7146.62,4546.21,-1.52588e-005],[[705,2],[793,2]]], [749,[7929.07,4462.53,0],[[706,2],[794,2]]], +[750,[8206.01,4859.35,1.52588e-005],[[707,2],[795,2]]], [751,[6144.42,10891.8,0],[[708,2],[796,2]]], [752,[6012.39,10645.8,2.03451e-005],[[709,2],[752,2],[797,2]]], [753,[6496.41,10296.1,0],[[710,2],[798,2]]], [754,[6195.34,10380.5,0],[[711,2]]], [755,[6600.11,9641.93,0],[[713,2],[799,2]]], +[756,[10611.4,8522.79,0],[[714,2],[800,2]]], [757,[10322.6,9114.27,0],[[715,2],[801,2]]], [758,[10196.8,9095.39,0],[[715,2]]], [759,[9884.36,8068.58,-1.52588e-005],[[716,2],[802,2]]], [760,[9180.1,8062.9,0],[[717,2],[803,2],[804,2]]], [761,[9684.25,10246,0],[[718,2],[805,2]]], +[762,[7652.58,9406.52,0],[[719,2],[806,2]]], [763,[7837.96,9521.15,0],[[719,2],[807,2]]], [764,[7221.42,9939.76,-7.62939e-006],[[720,2],[808,2],[809,2],[764,2],[810,2]]], [765,[8420.29,10616.5,3.05176e-005],[[721,2],[811,2]]], [766,[8501.05,4902.01,-1.52588e-005],[[722,2],[812,2]]], [767,[8337.35,4918.27,0],[[722,2],[813,2],[795,2]]], +[768,[9596.9,6514.97,-1.52588e-005],[[723,2],[814,2],[768,2]]], [769,[9649.22,6555.1,5.08626e-006],[[723,2],[815,2],[816,2]]], [770,[10175.2,5187.57,0],[[724,2],[817,2]]], [771,[10340.8,5498.12,0],[[725,2],[772,2],[818,2]]], [772,[10273.6,5606.31,1.52588e-005],[[728,2],[771,2]]], [773,[10412.8,5814.73,7.62939e-006],[[728,2],[819,2],[773,2],[820,2]]], +[774,[9559.03,6660.55,0],[[729,2],[816,2]]], [775,[10324.5,7026.06,0],[[730,2],[821,2]]], [776,[9301.95,7784.44,0],[[731,2],[822,2]]], [777,[4090.49,6690.87,0],[[732,2],[823,2]]], [778,[4397.14,5796.91,-3.05176e-005],[[733,2],[824,2]]], [779,[4944.91,5582.45,0],[[734,2],[825,2]]], +[780,[4850.26,5655.1,1.01725e-005],[[734,2],[826,2],[827,2],[780,2]]], [781,[3848.06,7597.29,-3.05176e-005],[[735,2],[740,2]]], [782,[3911.4,6978.43,0],[[736,2],[828,2]]], [783,[5946.94,5473.17,0],[[737,2],[829,2],[783,2],[830,2]]], [784,[4687.42,10532.8,0],[[738,2],[831,2]]], [785,[3280.24,7959.32,0],[[739,2],[787,2]]], +[786,[3211.39,8074.25,0],[[741,2]]], [787,[3122.15,8048.65,0],[[741,2],[785,2],[832,2]]], [788,[3099.43,8112.89,0],[[741,2]]], [789,[2909.74,9361.06,3.05176e-005],[[742,2],[833,2]]], [790,[4122.32,10290.5,0],[[743,2],[834,2]]], [791,[4179.54,10529.5,0],[[743,2],[791,2],[835,2]]], +[792,[6799.38,4532.55,5.08626e-006],[[746,2],[836,2],[792,2],[837,2]]], [793,[7066.86,4502.29,0],[[748,2],[838,2],[837,2]]], [794,[7938.91,4455.37,-5.08626e-006],[[749,2],[794,2],[839,2]]], [795,[8286.25,4915.98,0],[[750,2],[767,2],[813,2]]], [796,[6113.54,10999.1,0],[[751,2],[840,2]]], [797,[5863.11,10705.4,0],[[752,2],[841,2]]], +[798,[6655.06,10192.4,0],[[753,2],[842,2]]], [799,[6703.57,9629.2,0],[[755,2],[843,2]]], [800,[10656.1,8388.69,0],[[756,2],[844,2]]], [801,[10427.7,9136.19,0],[[757,2],[845,2],[846,2]]], [802,[9936.04,7982.74,-1.52588e-005],[[759,2],[847,2]]], [803,[9116.16,8012.92,0],[[760,2],[848,2]]], +[804,[9224.05,8008.99,0],[[760,2],[849,2],[850,2],[804,2]]], [805,[9659.74,10360.8,0],[[761,2],[851,2]]], [806,[7656.9,9381.81,0],[[762,2],[806,2],[852,2]]], [807,[7969.36,9548.99,0],[[763,2],[853,2],[854,2]]], [808,[7059.13,9998.68,0],[[764,2],[855,2]]], [809,[7228.49,9940.68,-1.01725e-005],[[764,2]]], +[810,[7247.86,9977.6,1.01725e-005],[[764,2],[810,2],[856,2]]], [811,[8500.32,10659,1.01725e-005],[[765,2],[857,2],[811,2],[858,2]]], [812,[8619.12,4863.21,0],[[766,2],[859,2]]], [813,[8318.47,4911.95,0],[[813,2],[767,2]]], [814,[9600.48,6510.9,0],[[768,2]]], [815,[9713.93,6525.83,0],[[769,2]]], +[816,[9589.46,6584.4,0],[[769,2],[774,2],[816,2]]], [817,[10331.9,5124.25,0],[[770,2],[860,2]]], [818,[10464.6,5528.99,0],[[771,2],[861,2]]], [819,[10532.9,5900.69,0],[[773,2],[862,2]]], [820,[10471.7,5804.16,3.05176e-005],[[773,2],[863,2]]], [821,[10436.5,7004.22,7.62939e-006],[[775,2],[864,2]]], +[822,[9271.38,7803.19,-5.08626e-006],[[776,2],[822,2],[865,2],[849,2]]], [823,[4052.22,6727.28,1.01725e-005],[[777,2],[866,2],[867,2]]], [824,[4393.26,5654.15,0],[[778,2],[868,2],[869,2]]], [825,[5043.99,5578.19,0],[[779,2],[870,2]]], [826,[4703.5,5706.69,3.05176e-005],[[780,2],[869,2]]], [827,[4861.91,5649.44,0],[[780,2]]], +[828,[3894.34,6933.74,1.01725e-005],[[782,2],[871,2],[867,2]]], [829,[5916,5327.08,-5.08626e-006],[[783,2],[872,2],[873,2],[829,2]]], [830,[5939.13,5365.1,1.52588e-005],[[873,2],[783,2]]], [831,[4654.63,10696.1,0],[[784,2],[831,2],[874,2],[875,2]]], [832,[3090.39,7998.15,0],[[787,2],[876,2],[877,2],[878,2]]], [833,[2809.15,9422.63,0],[[789,2],[879,2]]], +[834,[3995.2,10186.4,0],[[790,2],[880,2]]], [835,[4081.82,10659.2,0],[[791,2],[881,2]]], [836,[6779.05,4538.68,7.62939e-006],[[792,2]]], [837,[6973.18,4508.47,0],[[792,2],[793,2]]], [838,[6982.7,4411.96,0],[[793,2],[882,2]]], [839,[8070.21,4458.88,0],[[794,2],[883,2]]], +[840,[6054.34,11059.7,0],[[796,2],[884,2]]], [841,[5755.39,10723.5,0],[[797,2],[885,2]]], [842,[6819.33,10115.8,0],[[798,2],[886,2],[855,2]]], [843,[6763.84,9720.41,1.01725e-005],[[799,2],[887,2],[843,2]]], [844,[10677.5,8273.48,0],[[800,2],[844,2],[888,2]]], [845,[10602.6,9131.04,1.52588e-005],[[801,2],[889,2]]], +[846,[10382.6,9250.47,0],[[801,2],[890,2]]], [847,[9984.1,7942.39,-5.08626e-006],[[802,2],[891,2],[892,2]]], [848,[9073.63,8017.74,0],[[803,2]]], [849,[9215.14,7848.13,0],[[804,2],[822,2],[893,2],[865,2],[894,2]]], [850,[9220.43,8033.41,0],[[804,2]]], [851,[9661.01,10423,0],[[805,2],[895,2],[851,2]]], +[852,[7738.49,9275.68,3.05176e-005],[[806,2],[896,2]]], [853,[8047.13,9513.35,0],[[807,2],[897,2],[853,2],[898,2]]], [854,[8017.79,9542.94,0],[[897,2],[807,2]]], [855,[6970.95,10052.2,0],[[808,2],[842,2],[855,2],[886,2]]], [856,[7215.7,10095.6,0],[[810,2],[899,2]]], [857,[8477.42,10660.8,1.52588e-005],[[811,2]]], +[858,[8610.91,10672.6,2.03451e-005],[[811,2],[858,2],[900,2]]], [859,[8758.32,4869.84,0],[[812,2],[901,2]]], [860,[10405.4,5095.81,5.08626e-006],[[817,2],[860,2],[902,2]]], [861,[10548.7,5495.83,-1.01725e-005],[[818,2],[903,2],[904,2]]], [862,[10575.4,5960.15,0],[[819,2],[905,2]]], [863,[10577.1,5815.1,0],[[820,2],[906,2]]], +[864,[10483.6,6998.03,0],[[821,2],[907,2]]], [865,[9215.92,7797.78,-1.52588e-005],[[822,2],[849,2],[893,2]]], [866,[3923.09,6733.72,0],[[823,2],[908,2]]], [867,[4026.35,6805.77,0],[[823,2],[828,2]]], [868,[4340.02,5537,0],[[824,2],[909,2]]], [869,[4524.23,5689.99,0],[[824,2],[826,2]]], +[870,[5170.84,5525.38,-3.05176e-005],[[825,2],[910,2]]], [871,[3887.33,6958.33,0],[[828,2]]], [872,[5836.45,5239.53,0],[[829,2],[872,2],[911,2]]], [873,[5935.27,5341.93,0],[[829,2],[830,2],[873,2]]], [874,[4765.35,10761.3,0],[[831,2],[912,2]]], [875,[4561.83,10822.3,0],[[831,2],[913,2]]], +[876,[3135.49,7971.88,0],[[832,2]]], [877,[3054.98,7922.47,-1.01725e-005],[[832,2],[914,2],[915,2]]], [878,[3032.94,8012.11,0],[[832,2],[916,2],[878,2],[917,2]]], [879,[2697.24,9526.5,0],[[833,2],[918,2]]], [880,[3886.94,10121.8,0],[[834,2],[919,2]]], [881,[3999.45,10717.7,0],[[835,2],[920,2]]], +[882,[6967.85,4411.07,-5.08626e-006],[[838,2],[882,2],[921,2]]], [883,[8244.62,4453.73,0],[[839,2],[922,2]]], [884,[6025.35,11105.1,5.08626e-006],[[840,2],[923,2],[924,2]]], [885,[5739.41,10724.9,0],[[841,2],[885,2],[925,2]]], [886,[6951.06,10078,0],[[842,2],[855,2]]], [887,[6857.19,9811.65,0],[[843,2],[926,2]]], +[888,[10732.7,8175.07,0],[[844,2],[927,2]]], [889,[10698.1,9131.72,0],[[845,2],[928,2]]], [890,[10396.7,9353.39,0],[[846,2],[929,2]]], [891,[9903.49,7845.56,0],[[847,2],[930,2]]], [892,[10125,7842.44,0],[[847,2],[931,2]]], [893,[9199.43,7816.22,0],[[849,2],[865,2],[893,2]]], +[894,[9331.77,7883.5,0],[[849,2],[932,2]]], [895,[9710.69,10467.4,1.52588e-005],[[851,2],[933,2]]], [896,[7798.35,9148.48,-3.05176e-005],[[852,2],[934,2]]], [897,[8040.58,9532.15,0],[[853,2],[854,2],[897,2]]], [898,[8073.4,9412.19,0],[[853,2],[898,2],[935,2]]], [899,[7221,10229.7,0],[[856,2],[936,2]]], +[900,[8655.66,10771.6,0],[[858,2],[937,2]]], [901,[8862.35,4914.45,0],[[859,2],[938,2]]], [902,[10492.4,5013.55,1.52588e-005],[[860,2],[939,2]]], [903,[10622.3,5378.32,0],[[861,2],[940,2]]], [904,[10656.3,5496.35,0],[[861,2],[941,2]]], [905,[10571.2,6023.93,0],[[862,2],[942,2]]], +[906,[10722.1,5821.92,0],[[863,2],[943,2]]], [907,[10535,7044.78,-2.54313e-006],[[864,2],[944,2],[945,2]]], [908,[3873.29,6694.03,0],[[866,2],[946,2]]], [909,[4299.07,5502.82,-1.01725e-005],[[868,2],[947,2],[948,2]]], [910,[5258.82,5493.77,0],[[870,2]]], [911,[5810.11,5102.89,0],[[872,2],[949,2]]], +[912,[4860.03,10795.1,0],[[874,2],[950,2]]], [913,[4527.55,10834.9,0],[[875,2],[951,2],[913,2],[952,2]]], [914,[3012.2,7857.3,0],[[877,2],[953,2]]], [915,[3001.36,7918.33,1.01725e-005],[[877,2],[954,2],[915,2]]], [916,[2926.6,8123.94,0],[[878,2],[955,2]]], [917,[3019.94,7991.51,0],[[878,2]]], +[918,[2596.87,9583.42,-3.05176e-005],[[879,2],[956,2],[957,2]]], [919,[3759.57,10090.4,0],[[880,2],[919,2],[958,2]]], [920,[3927.19,10838,0],[[881,2],[959,2]]], [921,[6936.79,4397.93,0],[[882,2],[921,2],[960,2]]], [922,[8367.65,4449.05,0],[[883,2],[961,2]]], [923,[5973.85,11236.8,0],[[884,2],[962,2]]], +[924,[5933.24,11123.8,0],[[884,2],[963,2]]], [925,[5585.72,10777.4,3.05176e-005],[[885,2],[964,2]]], [926,[6895.58,9874.16,0],[[887,2]]], [927,[10747.4,8132.32,-5.08626e-006],[[888,2],[965,2],[966,2]]], [928,[10813.2,9113.49,0],[[889,2],[967,2]]], [929,[10388.9,9464.18,0],[[890,2],[968,2]]], +[930,[9852.43,7833.25,0],[[891,2],[969,2]]], [931,[10224.1,7790.27,0],[[892,2],[970,2]]], [932,[9424.19,7890.79,0],[[894,2],[971,2]]], [933,[9808.99,10457.7,0],[[895,2],[972,2]]], [934,[7839.48,9035.75,3.05176e-005],[[896,2],[973,2]]], [935,[8071.32,9378.48,0],[[898,2],[935,2],[974,2]]], +[936,[7203.95,10301.9,-3.05176e-005],[[899,2],[975,2]]], [937,[8716.21,10801,0],[[900,2],[976,2]]], [938,[8953.73,4946.99,0],[[901,2],[977,2]]], [939,[10596.1,4926.15,-1.52588e-005],[[902,2],[978,2]]], [940,[10754.2,5341.66,-3.05176e-005],[[903,2],[979,2]]], [941,[10771.8,5477.36,0],[[904,2],[980,2]]], +[942,[10533.9,6125.38,1.52588e-005],[[905,2],[981,2]]], [943,[10853.1,5838.26,0],[[906,2],[982,2]]], [944,[10606.9,6928.99,0],[[907,2],[983,2]]], [945,[10483.6,7122.03,0],[[907,2],[945,2],[984,2]]], [946,[3843.53,6675.59,1.01725e-005],[[908,2],[946,2],[985,2]]], [947,[4170.94,5613.91,0],[[909,2],[986,2]]], +[948,[4240.89,5454.39,0],[[909,2],[987,2],[988,2]]], [949,[5860.58,4950.44,0],[[911,2],[989,2]]], [950,[4882.58,10831.2,0],[[912,2],[990,2],[950,2],[991,2]]], [951,[4546.26,10830.8,0],[[913,2]]], [952,[4368.21,10934.5,0],[[913,2],[992,2]]], [953,[3015.95,7834.71,0],[[914,2],[993,2],[994,2]]], +[954,[2949.94,7874.08,0],[[915,2]]], [955,[2843.54,8240.17,0],[[916,2],[995,2]]], [956,[2517.34,9642.38,0],[[918,2],[996,2],[997,2],[957,2],[956,2]]], [957,[2522.76,9618.65,0],[[956,2],[1043,2],[957,2],[918,2]]], [958,[3662.69,10040,0],[[919,2],[958,2],[998,2]]], [959,[3936.36,10964.4,-1.01725e-005],[[920,2],[959,2],[999,2]]], +[960,[6904.61,4262.7,0],[[921,2],[1000,2]]], [961,[8417.44,4432.79,0],[[922,2],[1001,2],[1002,2]]], [962,[5936.86,11336.3,0],[[923,2],[1003,2]]], [963,[5854.79,11138.8,0],[[924,2],[1004,2]]], [964,[5513.19,10830.1,0],[[925,2],[1005,2]]], [965,[10835.8,8116.27,0],[[927,2],[1006,2]]], +[966,[10709.4,8093.94,5.08626e-006],[[927,2],[1007,2],[1008,2]]], [967,[10918.8,9111.15,0],[[928,2],[1009,2]]], [968,[10375,9514.82,1.01725e-005],[[929,2],[968,2],[1010,2]]], [969,[9807.01,7779.24,0],[[969,2]]], [970,[10316.9,7794.2,0],[[931,2],[1011,2]]], [971,[9544.88,7894.22,0],[[932,2],[1012,2]]], +[972,[9876.47,10420.9,-5.08626e-006],[[933,2],[1013,2],[1014,2]]], [973,[7868.67,8897.61,0],[[934,2],[1015,2]]], [974,[8119.67,9307.76,0],[[935,2]]], [975,[7145.12,10399.4,3.05176e-005],[[936,2],[1016,2]]], [976,[8776.95,10833.6,0],[[937,2],[1017,2],[976,2],[1018,2]]], [977,[9057.48,4927.12,-2.54313e-006],[[938,2],[1019,2],[1020,2]]], +[978,[10659.8,4826.85,0],[[939,2],[1021,2]]], [979,[10818.7,5385.81,0],[[940,2],[1022,2]]], [980,[10883.2,5499.5,0],[[941,2],[1023,2]]], [981,[10483.6,6211.14,0],[[942,2],[1024,2]]], [982,[10979.3,5878.49,-3.05176e-005],[[943,2],[1025,2]]], [983,[10656.1,6844.08,-7.62939e-006],[[944,2],[1026,2]]], +[984,[10448.9,7215.93,0],[[945,2],[1027,2]]], [985,[3808.07,6663.67,0],[[946,2],[985,2],[1028,2]]], [986,[4038.62,5735.67,0],[[947,2],[1029,2]]], [987,[4085.84,5457.97,3.05176e-005],[[948,2],[1030,2]]], [988,[4231.28,5431.35,0],[[948,2],[988,2],[1031,2]]], [989,[5882.6,4896.07,5.08626e-006],[[949,2],[1032,2],[1033,2]]], +[990,[4870.14,10811.4,0],[[950,2]]], [991,[5013.98,10899.4,0],[[950,2],[1034,2]]], [992,[4277.1,11047.3,-3.05176e-005],[[952,2],[1035,2]]], [993,[2973.53,7726.07,0],[[953,2],[1036,2],[1037,2]]], [994,[3071.9,7825.76,0],[[953,2],[1038,2],[1039,2],[994,2]]], [995,[2848.41,8316.08,-3.05176e-005],[[955,2],[1040,2]]], +[996,[2462.68,9651.12,0],[[956,2],[996,2],[1041,2]]], [997,[2541.74,9759.8,0],[[956,2],[1042,2]]], [998,[3539.62,10090,-3.05176e-005],[[958,2],[1044,2]]], [999,[4028.61,11065.9,0],[[959,2],[1045,2],[1035,2]]], [1000,[6828.84,4154.82,0],[[960,2],[1046,2]]], [1001,[8490.7,4368.73,0],[[961,2],[1001,2],[1047,2]]], +[1002,[8542.52,4522.15,0],[[961,2],[1048,2]]], [1003,[5888.54,11461.1,0],[[962,2],[1049,2]]], [1004,[5752.23,11117.4,3.05176e-005],[[963,2],[1050,2]]], [1005,[5409.78,10873.8,-1.01725e-005],[[964,2],[1051,2],[1052,2]]], [1006,[10875.3,8095.65,0],[[965,2],[1053,2],[1054,2]]], [1007,[10677.9,8033.35,0],[[966,2],[1007,2],[1055,2],[1056,2],[1057,2],[1008,2]]], +[1008,[10668.1,8095.42,1.01725e-005],[[966,2],[1007,2],[1057,2],[1058,2]]], [1009,[10937.4,9167.96,0],[[967,2],[1009,2],[1059,2]]], [1010,[10303.3,9584.59,0],[[968,2],[1060,2],[1061,2]]], [1011,[10446.5,7851.74,0],[[970,2],[1062,2]]], [1012,[9676.31,7845.75,0],[[969,2],[971,2]]], [1013,[9942.11,10377,0],[[972,2],[1063,2],[1064,2]]], +[1014,[9875.44,10533.4,-1.52588e-005],[[972,2],[1065,2]]], [1015,[7943.23,8774.28,0],[[973,2],[1066,2]]], [1016,[7041.32,10463.1,0],[[975,2],[1067,2]]], [1017,[8762.52,10816.1,0],[[976,2]]], [1018,[8828.08,10929.5,0],[[976,2],[1068,2]]], [1019,[9174.74,4991.05,0],[[977,2],[1069,2]]], +[1020,[9083.53,4864.53,0],[[977,2],[1070,2]]], [1021,[10689.1,4728.38,0],[[978,2],[1071,2]]], [1022,[10856.1,5418.46,2.03451e-005],[[979,2],[1022,2],[1072,2],[1023,2]]], [1023,[10942.2,5493.5,0],[[980,2],[1022,2],[1073,2],[1074,2]]], [1024,[10503.9,6308.58,0],[[981,2],[1075,2]]], [1025,[11106.1,5873.59,0],[[982,2],[1076,2]]], +[1026,[10783.3,6745.82,0],[[983,2],[1077,2]]], [1027,[10442.9,7339.32,0],[[984,2],[1078,2]]], [1028,[3711.69,6633.18,0],[[985,2],[1079,2]]], [1029,[3955.7,5819.76,-3.05176e-005],[[986,2],[1080,2]]], [1030,[3943.94,5462.98,0],[[987,2],[1081,2]]], [1031,[4104.89,5390.44,0],[[988,2],[1082,2]]], +[1032,[5903.68,4864.8,5.08626e-006],[[989,2],[1083,2],[1084,2]]], [1033,[5841.61,4880.44,0],[[989,2]]], [1034,[5156.78,10890,0],[[991,2],[1051,2]]], [1035,[4152.25,11145.5,0],[[992,2],[999,2],[1045,2]]], [1036,[2948.95,7683.71,0],[[993,2],[1037,2],[1036,2],[1085,2]]], [1037,[2945.7,7692.54,0],[[1036,2],[1128,2],[993,2]]], +[1038,[3115.23,7881.5,0],[[994,2]]], [1039,[3061.12,7812.96,0],[[994,2]]], [1040,[2826.86,8430.18,0],[[995,2],[1086,2]]], [1041,[2318.83,9572.18,0],[[996,2],[1087,2]]], [1042,[2615.75,9839.54,0],[[997,2],[1088,2]]], [1043,[2541.84,9605.22,0],[[957,2]]], +[1044,[3408.09,10069.5,0],[[998,2],[1089,2]]], [1045,[4110.72,11176.8,6.10352e-006],[[999,2],[1035,2],[1045,2],[1090,2],[1091,2]]], [1046,[6750.51,4038.83,0],[[1000,2],[1092,2]]], [1047,[8582.56,4314.63,0],[[1001,2],[1093,2],[1047,2]]], [1048,[8606.38,4576.83,0],[[1002,2],[1094,2]]], [1049,[5859.95,11570.5,1.52588e-005],[[1003,2],[1095,2]]], +[1050,[5703.3,11097.2,2.03451e-005],[[1004,2],[1050,2],[1096,2]]], [1051,[5225.59,10884.1,0],[[1005,2],[1034,2]]], [1052,[5433.52,10977.7,-3.05176e-005],[[1005,2],[1097,2]]], [1053,[10955.9,7980.77,0],[[1006,2],[1098,2]]], [1054,[10887.2,8148.22,-1.52588e-005],[[1006,2],[1099,2]]], [1055,[10719.2,8024.68,0],[[1007,2],[1055,2]]], +[1056,[10635.7,7970.25,5.08626e-006],[[1007,2],[1100,2],[1101,2]]], [1057,[10635.4,8047.52,0],[[1057,2]]], [1058,[10605.4,8160.13,0],[[1008,2],[1102,2]]], [1059,[10962.3,9273.89,0],[[1009,2],[1103,2],[1104,2]]], [1060,[10299.1,9570.29,0],[[1010,2]]], [1061,[10235.6,9701.55,0],[[1010,2],[1105,2]]], +[1062,[10525,7901.49,0],[[1011,2],[1106,2]]], [1063,[10093.2,10333.9,0],[[1013,2],[1107,2]]], [1064,[9907.65,10340.8,0],[[1013,2]]], [1065,[9850.31,10685,1.52588e-005],[[1014,2],[1108,2]]], [1066,[7981.02,8651.12,0],[[1015,2],[131,2],[1109,2]]], [1067,[7009.47,10550.6,0],[[1016,2],[1110,2]]], +[1068,[8786.33,10995.9,0],[[1018,2],[1111,2]]], [1069,[9233.99,4976.36,0],[[1019,2],[1112,2]]], [1070,[9135.13,4815.55,0],[[1020,2],[1113,2]]], [1071,[10664.2,4629.24,-1.52588e-005],[[1021,2],[1114,2]]], [1072,[10903,5429.17,3.05176e-005],[[1022,2],[1072,2]]], [1073,[10912.5,5444.72,0],[[1023,2]]], +[1074,[11011.5,5465.07,-1.01725e-005],[[1023,2],[1074,2],[1115,2]]], [1075,[10578.2,6390.36,0],[[1024,2],[1116,2]]], [1076,[11214.1,5852.1,0],[[1025,2],[1117,2]]], [1077,[10806.5,6729.75,-2.54313e-006],[[1026,2],[1118,2],[1119,2]]], [1078,[10421,7405.83,0],[[1027,2],[1120,2]]], [1079,[3572.91,6624.66,0],[[1028,2],[1121,2]]], +[1080,[3843.4,5911.09,0],[[1029,2],[1122,2]]], [1081,[3808.41,5475.98,0],[[1030,2],[1123,2]]], [1082,[3966.53,5374.76,0],[[1031,2],[1124,2]]], [1083,[5987.7,4869.73,0],[[1032,2],[1125,2]]], [1084,[5832.31,4782.49,0],[[1032,2],[1126,2],[1127,2]]], [1085,[2984.96,7523.92,3.05176e-005],[[1036,2],[1129,2]]], +[1086,[2782.83,8558.58,0],[[1040,2],[1130,2]]], [1087,[2289.09,9550.06,1.01725e-005],[[1041,2],[1131,2],[1132,2]]], [1088,[2676,9912.35,-1.01725e-005],[[1042,2],[1133,2],[1134,2]]], [1089,[3283.36,10031.2,-3.05176e-005],[[1044,2],[1135,2]]], [1090,[3953.43,11187.6,0],[[1045,2],[1136,2]]], [1091,[4111.48,11309.1,0],[[1045,2],[1137,2]]], +[1092,[6714.29,3975.15,0],[[1046,2],[1138,2]]], [1093,[8594.45,4284.12,-3.05176e-005],[[1047,2],[1139,2]]], [1094,[8696.02,4596.16,0],[[1048,2],[1140,2]]], [1095,[5783.41,11705.2,0],[[1049,2],[1141,2]]], [1096,[5557.85,11076.6,0],[[1050,2],[1097,2]]], [1097,[5442.69,11044.9,0],[[1052,2],[1096,2],[1142,2]]], +[1098,[11034.6,7926.01,1.52588e-005],[[1053,2],[1143,2]]], [1099,[10827.5,8189.17,0],[[1054,2],[1144,2]]], [1100,[10551.4,7850.11,0],[[1056,2],[1145,2]]], [1101,[10678.3,7941.42,0],[[1056,2]]], [1102,[10557.2,8141.61,1.52588e-005],[[1058,2],[1146,2]]], [1103,[10842.1,9301.17,0],[[1059,2],[1147,2]]], +[1104,[11123.1,9322.56,0],[[1059,2],[1148,2]]], [1105,[10240.7,9799.76,-3.8147e-006],[[1061,2],[1149,2],[1105,2],[1150,2],[1151,2]]], [1106,[10570.5,7981.92,0],[[1057,2],[1062,2]]], [1107,[10095.5,10253.7,0],[[1063,2],[1152,2],[1107,2],[1153,2]]], [1108,[9851,10819.5,0],[[1065,2],[1154,2]]], [1109,[8002.59,8576.22,0],[[131,2],[1203,2],[1109,2],[1066,2]]], +[1110,[6969.46,10685.9,-3.05176e-005],[[1067,2],[1156,2]]], [1111,[8714.06,11124.2,0],[[1068,2],[1157,2]]], [1112,[9311.38,4913.1,0],[[1069,2],[1158,2]]], [1113,[9146.5,4721.79,0],[[1070,2],[1159,2]]], [1114,[10676.1,4559.1,0],[[1071,2],[1160,2]]], [1115,[11072.8,5403.62,0],[[1074,2],[1161,2]]], +[1116,[10638.3,6438.59,0],[[1075,2],[1162,2]]], [1117,[11296.6,5806.58,0],[[1076,2],[1163,2]]], [1118,[10762.7,6609.41,0],[[1077,2],[1164,2]]], [1119,[10935.9,6675.2,0],[[1077,2],[1165,2]]], [1120,[10430,7480.79,0],[[1078,2],[1166,2]]], [1121,[3478.23,6646.93,3.05176e-005],[[1079,2],[1167,2]]], +[1122,[3767.74,5961.59,0],[[1080,2],[1168,2],[1169,2],[1122,2]]], [1123,[3680.91,5488.42,0],[[1081,2],[1170,2]]], [1124,[3835.63,5380.03,0],[[1082,2],[1171,2]]], [1125,[6061.33,4863.28,0],[[1083,2],[1172,2]]], [1126,[5856.6,4704.31,0],[[1084,2],[1173,2],[1174,2]]], [1127,[5774.56,4806.92,0],[[1084,2],[1175,2],[1176,2]]], +[1128,[2954.83,7705.69,0],[[1037,2]]], [1129,[2989.57,7497.87,1.01725e-005],[[1085,2],[1177,2],[1178,2]]], [1130,[2727.22,8669.13,0],[[1086,2],[1179,2]]], [1131,[2259.87,9369.42,0],[[1087,2],[1180,2]]], [1132,[2185.8,9642.04,1.52588e-005],[[1087,2]]], [1133,[2698.37,10034.8,0],[[1088,2],[1181,2]]], +[1134,[2708.15,9900.85,0],[[1088,2],[1182,2],[1134,2],[1183,2],[1184,2]]], [1135,[3124.03,9995.19,0],[[1089,2],[1185,2]]], [1136,[3865.42,11185.3,0],[[1090,2],[1186,2]]], [1137,[4190.35,11421,-3.05176e-005],[[1091,2],[1187,2]]], [1138,[6601.95,3904.91,0],[[1092,2],[1188,2]]], [1139,[8641.19,4186.72,0],[[1093,2],[1189,2]]], +[1140,[8824.63,4597.44,1.52588e-005],[[1094,2],[1190,2]]], [1141,[5694.9,11830.6,0],[[1095,2],[1191,2]]], [1142,[5369.69,11098.7,-3.05176e-005],[[1097,2],[1192,2]]], [1143,[11106.2,7845.98,0],[[1098,2],[1193,2]]], [1144,[10790.4,8218.64,0],[[1099,2]]], [1145,[10517.4,7755.4,0],[[1100,2],[1194,2]]], +[1146,[10529.4,8105.48,0],[[1102,2]]], [1147,[10783.5,9352.24,1.52588e-005],[[1103,2],[1195,2]]], [1148,[11239,9357.09,0],[[1104,2],[1196,2]]], [1149,[10215.8,9771.7,-7.62939e-006],[[1105,2]]], [1150,[10358.8,9815.63,0],[[1105,2],[1197,2]]], [1151,[10315.5,9957.54,0],[[1105,2],[1198,2]]], +[1152,[10068.1,10254.4,0],[[1107,2],[1152,2]]], [1153,[10217.9,10222.8,-5.08626e-006],[[1107,2],[1199,2],[1153,2],[1200,2]]], [1154,[9811.81,10898.5,0],[[1108,2],[1201,2]]], [1155,[8118.73,8577.27,-3.05176e-005],[[131,2],[1202,2],[1155,2]]], [1156,[6920.27,10789.8,0],[[1110,2],[1156,2],[1204,2]]], [1157,[8663.44,11206,0],[[1111,2],[1205,2]]], +[1158,[9451.66,4863.51,0],[[1112,2],[1206,2]]], [1159,[9261.36,4679.89,-3.8147e-006],[[1113,2],[1207,2],[1159,2],[1208,2]]], [1160,[10581.2,4433.89,-7.62939e-006],[[1114,2],[1209,2]]], [1161,[11063.9,5355.51,0],[[1115,2],[1161,2],[1210,2]]], [1162,[10699.5,6479.08,0],[[1116,2],[1164,2]]], [1163,[11376.1,5717.17,0],[[1117,2],[1211,2]]], +[1164,[10743.5,6528.96,7.62939e-006],[[1118,2],[1162,2]]], [1165,[11100.2,6645.19,0],[[1119,2],[1212,2]]], [1166,[10487.9,7617,0],[[1120,2],[1194,2]]], [1167,[3419.27,6665.16,0],[[1121,2],[1213,2],[1167,2],[1214,2]]], [1168,[3693.43,6067.81,0],[[1122,2],[1215,2]]], [1169,[3776.11,5950.29,0],[[1122,2]]], +[1170,[3540.65,5500.55,0],[[1123,2],[1216,2]]], [1171,[3816.85,5374.19,1.01725e-005],[[1124,2],[1171,2],[1217,2]]], [1172,[6078.22,4901.97,0],[[1125,2]]], [1173,[5865.67,4609.65,5.08626e-006],[[1126,2],[1173,2],[1218,2]]], [1174,[5888.15,4701.35,0],[[1126,2]]], [1175,[5689.14,4903.57,0],[[1127,2],[1219,2]]], +[1176,[5765.92,4753.41,2.54313e-006],[[1127,2],[1220,2],[1221,2],[1176,2]]], [1177,[2958.21,7405.54,0],[[1129,2],[1222,2]]], [1178,[3152.67,7418.6,0],[[1129,2],[1223,2]]], [1179,[2632.12,8791.79,3.05176e-005],[[1130,2],[1224,2]]], [1180,[2266.41,9308.06,0],[[1131,2],[1225,2],[1226,2]]], [1181,[2696.23,10057.7,0],[[1133,2],[1227,2],[1183,2],[1228,2]]], +[1182,[2822.1,9825.91,0],[[1134,2],[1229,2],[1184,2]]], [1183,[2749.18,9992.72,0],[[1134,2],[1181,2],[1227,2],[1184,2]]], [1184,[2820.53,9937.15,-2.03451e-005],[[1183,2],[1230,2],[1271,2],[1134,2],[1182,2]]], [1185,[3012.95,9976.88,0],[[1135,2],[1230,2]]], [1186,[3720.98,11172.7,0],[[1136,2],[1231,2]]], [1187,[4251.74,11498.5,3.05176e-005],[[1137,2],[1232,2]]], +[1188,[6476.1,3822.54,7.62939e-006],[[1138,2],[1233,2]]], [1189,[8745.34,4111.3,0],[[1139,2],[1234,2]]], [1190,[8918.31,4576.36,0],[[1140,2],[1235,2]]], [1191,[5641.93,11924.9,1.52588e-005],[[1141,2],[1236,2]]], [1192,[5268.53,11138.6,1.01725e-005],[[1142,2],[1192,2],[1237,2]]], [1193,[11198.6,7780.98,0],[[1143,2],[1238,2]]], +[1194,[10499.6,7661.47,0],[[1145,2],[1166,2]]], [1195,[10709.8,9402.46,0],[[1147,2],[1239,2],[1240,2]]], [1196,[11385.1,9406.04,0],[[1148,2],[1241,2]]], [1197,[10438.8,9839.23,0],[[1150,2],[1242,2],[1243,2],[1244,2]]], [1198,[10316.1,9973.66,0],[[1151,2],[1198,2],[1200,2]]], [1199,[10210.1,10234.7,-7.62939e-006],[[1153,2]]], +[1200,[10298.2,10101.4,0],[[1153,2],[1198,2]]], [1201,[9757.83,11027.8,0],[[1154,2],[1245,2]]], [1202,[8122,8574.1,0],[[1202,2],[1155,2]]], [1203,[7991.54,8595.2,-1.01725e-005],[[1109,2]]], [1204,[6959.89,10879.6,0],[[1156,2],[1246,2],[1204,2],[1247,2]]], [1205,[8620.88,11285.8,0],[[1157,2],[1248,2]]], +[1206,[9593.03,4839.75,0],[[1158,2],[1249,2]]], [1207,[9247.55,4691.61,0],[[1159,2]]], [1208,[9381.86,4570.78,0],[[1159,2],[1250,2]]], [1209,[10449.8,4330.84,0],[[1160,2],[1251,2]]], [1210,[11075.7,5324.28,0],[[1161,2],[1252,2],[1253,2]]], [1211,[11405.1,5614.25,-3.05176e-005],[[1163,2],[1254,2]]], +[1212,[11186.5,6608.9,0],[[1165,2],[1255,2],[1256,2]]], [1213,[3338.36,6719.96,0],[[1167,2],[1214,2],[1213,2],[1257,2]]], [1214,[3354.9,6733.53,3.05176e-005],[[1213,2],[1300,2],[1214,2],[1167,2]]], [1215,[3628.15,6161.31,-3.05176e-005],[[1168,2],[1258,2]]], [1216,[3416.72,5551.49,0],[[1170,2],[1259,2]]], [1217,[3693.71,5256.01,0],[[1171,2],[1260,2]]], +[1218,[5827.02,4501.48,1.52588e-005],[[1173,2],[1261,2]]], [1219,[5551.19,5008.7,0],[[1175,2],[1262,2]]], [1220,[5768.67,4617.25,0],[[1176,2],[1263,2]]], [1221,[5762.12,4774.15,0],[[1176,2]]], [1222,[2906.32,7334.85,2.03451e-005],[[1177,2],[1264,2],[1265,2]]], [1223,[3205.55,7405.46,0],[[1178,2],[1223,2],[1266,2]]], +[1224,[2527.72,8902.31,0],[[1179,2],[1267,2]]], [1225,[2388.14,9156.22,3.05176e-005],[[1180,2],[1267,2]]], [1226,[2234.56,9270.46,0],[[1180,2],[1268,2],[1269,2]]], [1227,[2735.24,10049.8,-1.52588e-005],[[1181,2],[1183,2]]], [1228,[2589.01,10185,0],[[1181,2],[1270,2]]], [1229,[2888.21,9740.75,0],[[1182,2]]], +[1230,[2870.06,9949.43,3.05176e-005],[[1185,2],[1184,2]]], [1231,[3586.32,11177.1,0],[[1186,2],[1272,2]]], [1232,[4243.12,11583.1,0],[[1187,2],[1273,2]]], [1233,[6413.66,3751.27,0],[[1188,2],[1274,2],[1275,2]]], [1234,[8885.32,4026.11,3.05176e-005],[[1189,2],[1276,2]]], [1235,[9018.85,4511.15,-1.52588e-005],[[1190,2],[1277,2],[1278,2]]], +[1236,[5592.61,12032.6,-1.01725e-005],[[1191,2],[1279,2],[1280,2]]], [1237,[5193.61,11239.1,0],[[1192,2],[1281,2]]], [1238,[11316.4,7734.29,-1.52588e-005],[[1193,2],[1282,2]]], [1239,[10662.1,9462.06,-7.62939e-006],[[1239,2],[1240,2]]], [1240,[10666.6,9452.65,0],[[1239,2],[1195,2]]], [1241,[11471.8,9399.22,0],[[1196,2],[1283,2]]], +[1242,[10477.8,9942.65,0],[[1197,2],[1284,2]]], [1243,[10526.2,9719.81,0],[[1197,2],[1285,2]]], [1244,[10587,9903.07,0],[[1197,2],[1286,2]]], [1245,[9707.7,11158.5,1.52588e-005],[[1201,2],[1287,2]]], [1246,[6942.23,10875.3,0],[[1204,2]]], [1247,[7110.32,10889.1,0],[[1204,2],[1288,2]]], +[1248,[8609.08,11418.2,-1.52588e-005],[[1205,2],[1289,2]]], [1249,[9712.77,4784.58,0],[[1206,2],[1290,2]]], [1250,[9418.1,4463.24,0],[[1208,2],[1291,2]]], [1251,[10363.9,4240.97,0],[[1209,2],[1292,2]]], [1252,[11157.5,5401.24,0],[[1210,2],[1293,2]]], [1253,[11078.1,5273.74,0],[[1210,2],[1294,2],[1253,2]]], +[1254,[11393.6,5561.07,-1.01725e-005],[[1211,2],[1295,2],[1296,2]]], [1255,[11167.4,6562.07,2.54313e-006],[[1212,2],[1297,2],[1298,2]]], [1256,[11234.4,6564.19,-7.62939e-006],[[1212,2],[1299,2]]], [1257,[3229.36,6652.73,0],[[1213,2],[1301,2]]], [1258,[3576.23,6247.28,-3.05176e-005],[[1215,2],[1302,2]]], [1259,[3284.6,5580.26,0],[[1216,2],[1303,2]]], +[1260,[3627.17,5175.18,0],[[1217,2],[1304,2]]], [1261,[5736.39,4439.36,7.62939e-006],[[1218,2],[1305,2]]], [1262,[5425.17,5048.31,0],[[1219,2],[1306,2]]], [1263,[5765.18,4585.75,0],[[1220,2]]], [1264,[2846.49,7160.54,0],[[1222,2],[1307,2]]], [1265,[2802.98,7314.96,3.05176e-005],[[1222,2],[1308,2]]], +[1266,[3304.79,7300.63,0],[[1223,2],[1309,2]]], [1267,[2449.77,9038.22,0],[[1224,2],[1225,2]]], [1268,[2225.93,9116.97,-3.05176e-005],[[1226,2],[1310,2]]], [1269,[2125.31,9184.88,-3.05176e-005],[[1226,2],[1311,2]]], [1270,[2483.46,10285.1,0],[[1228,2],[1312,2]]], [1271,[2783.33,9860.72,0],[[1184,2]]], +[1272,[3448.55,11190.8,0],[[1231,2],[1313,2]]], [1273,[4220.32,11603.1,1.01725e-005],[[1232,2],[1314,2],[1273,2],[1315,2]]], [1274,[6469.29,3682.95,0],[[1233,2],[1274,2],[1316,2]]], [1275,[6303.62,3766,0],[[1233,2]]], [1276,[8956.91,3983.22,0],[[1234,2],[1317,2],[1318,2]]], [1277,[9136.41,4443.5,0],[[1235,2],[1319,2],[1277,2],[1320,2]]], +[1278,[9085.26,4459.5,0],[[1319,2],[1235,2]]], [1279,[5549.1,12166.2,0],[[1236,2],[1321,2]]], [1280,[5489.31,12038.2,0],[[1236,2],[1322,2]]], [1281,[5200.97,11345.7,3.05176e-005],[[1237,2],[1323,2]]], [1282,[11410.3,7659.95,0],[[1238,2],[1324,2]]], [1283,[11534.8,9326.29,0],[[1241,2],[1327,2]]], +[1284,[10477.8,10069,0],[[1242,2],[1328,2]]], [1285,[10539.9,9638.75,0],[[1243,2],[1329,2],[1326,2]]], [1286,[10628.8,9944.39,-2.54313e-006],[[1244,2],[1330,2],[1331,2]]], [1287,[9647.67,11239.2,0],[[1245,2],[1332,2]]], [1288,[7205.46,10960,3.05176e-005],[[1247,2],[1333,2]]], [1289,[8561.06,11525.1,1.52588e-005],[[1248,2],[1334,2]]], +[1290,[9826.6,4677.08,0],[[1249,2],[1335,2]]], [1291,[9402.27,4370.76,1.52588e-005],[[1250,2],[1336,2]]], [1292,[10266.1,4120.86,0],[[1251,2],[1337,2]]], [1293,[11203.8,5463.77,0],[[1252,2],[1338,2]]], [1294,[11160.3,5224.42,1.01725e-005],[[1253,2],[1339,2],[1294,2],[1340,2]]], [1295,[11357.5,5532.79,0],[[1254,2],[1295,2],[1341,2],[1338,2]]], +[1296,[11517.5,5469.8,3.8147e-006],[[1254,2],[1296,2],[1342,2],[1343,2]]], [1297,[11145.3,6561.88,0],[[1255,2]]], [1298,[11234.4,6554.9,7.62939e-006],[[1255,2]]], [1299,[11299.2,6563.31,0],[[1256,2],[1344,2],[1345,2]]], [1300,[3376.48,6726.14,0],[[1214,2]]], [1301,[3137.45,6610.99,0],[[1257,2],[1346,2],[1347,2]]], +[1302,[3516.27,6338.15,0],[[1258,2],[1348,2]]], [1303,[3224.62,5551.75,0],[[1259,2],[1349,2]]], [1304,[3622.57,5140.32,0],[[1260,2],[1304,2],[1350,2]]], [1305,[5708.64,4419.27,2.54313e-006],[[1261,2],[1351,2],[1352,2],[1305,2]]], [1306,[5303.69,5047.49,1.52588e-005],[[1262,2],[1353,2]]], [1307,[2826.21,7047.3,0],[[1264,2],[1354,2]]], +[1308,[2716.45,7293.3,0],[[1265,2],[1355,2]]], [1309,[3414.36,7210.03,0],[[1266,2],[1356,2]]], [1310,[2200.5,8979.44,0],[[1268,2],[1357,2]]], [1311,[2014.64,9128.81,0],[[1269,2],[1358,2]]], [1312,[2403.58,10377,-3.05176e-005],[[1270,2],[1359,2]]], [1313,[3346.67,11238.1,0],[[1272,2],[1360,2]]], +[1314,[4232.2,11596.6,0],[[1273,2]]], [1315,[4085.77,11655.6,0],[[1273,2]]], [1316,[6483.2,3566.08,0],[[1274,2],[1361,2]]], [1317,[9064.67,3914.04,-1.52588e-005],[[1276,2],[1362,2]]], [1318,[9025.86,4022.26,0],[[1276,2],[1318,2],[1363,2]]], [1319,[9109.31,4442.4,0],[[1277,2],[1278,2],[1319,2]]], +[1320,[9279.83,4347.96,1.01725e-005],[[1277,2],[1320,2],[1364,2]]], [1321,[5462.03,12253.8,1.52588e-005],[[1279,2],[1365,2]]], [1322,[5391.1,11953.7,0],[[1280,2],[1366,2]]], [1323,[5223.92,11465,1.52588e-005],[[1281,2],[1367,2]]], [1324,[11494.8,7561.96,0],[[1282,2],[1368,2]]], [1325,[10601.1,9575.49,-1.52588e-005],[[1239,2],[1326,2]]], +[1326,[10571.9,9610.54,0],[[1325,2],[1285,2],[1326,2],[1329,2]]], [1327,[11635.6,9242.85,0],[[1283,2],[1369,2]]], [1328,[10529.1,10149.8,0],[[1284,2],[1370,2]]], [1329,[10542.3,9630.97,-7.62939e-006],[[1285,2],[1326,2]]], [1330,[10744.8,9970.33,2.54313e-006],[[1286,2],[1371,2],[1330,2],[1372,2]]], [1331,[10605.6,9978.62,0],[[1286,2]]], +[1332,[9557.1,11336.8,0],[[1287,2],[1373,2]]], [1333,[7284.94,11063.9,0],[[1288,2],[1374,2]]], [1334,[8529.45,11599.9,0],[[1289,2],[1375,2]]], [1335,[9882.91,4580.06,0],[[1290,2],[1376,2]]], [1336,[9415.69,4330.23,0],[[1291,2],[1336,2],[1377,2]]], [1337,[10210.4,4043.39,0],[[1292,2],[1378,2],[1379,2]]], +[1338,[11252.9,5491.54,0],[[1293,2],[1295,2],[1380,2]]], [1339,[11154.4,5235.11,1.52588e-005],[[1294,2]]], [1340,[11187.2,5027.23,0],[[1294,2],[1381,2]]], [1341,[11295.1,5504,0],[[1295,2],[1382,2]]], [1342,[11414.2,5473.03,0],[[1296,2],[1382,2]]], [1343,[11547.6,5479.49,0],[[1296,2],[1343,2],[1383,2]]], +[1344,[11431.3,6576.24,0],[[1299,2],[1384,2]]], [1345,[11289.6,6594.43,0],[[1299,2]]], [1346,[3020.33,6631.85,0],[[1301,2],[1385,2]]], [1347,[3245.59,6488.84,0],[[1301,2],[1386,2]]], [1348,[3449.94,6378.11,3.05176e-005],[[1302,2],[1386,2]]], [1349,[3162.59,5511.19,0],[[1303,2],[1349,2],[1387,2]]], +[1350,[3554.18,5065.78,2.03451e-005],[[1304,2],[1350,2],[1388,2]]], [1351,[5676.98,4268.49,-7.62939e-006],[[1305,2],[1389,2]]], [1352,[5714.06,4429.08,0],[[1305,2]]], [1353,[5207.65,5007.39,0],[[1306,2],[1390,2]]], [1354,[2795.05,6905.01,0],[[1307,2],[1391,2]]], [1355,[2628.22,7263.59,0],[[1308,2],[1392,2]]], +[1356,[3505.32,7116.97,3.05176e-005],[[1309,2],[1393,2]]], [1357,[2156.94,8849.63,-3.05176e-005],[[1310,2],[1394,2]]], [1358,[1958.49,9131.21,0],[[1311,2]]], [1359,[2370.74,10513.4,0],[[1312,2],[1395,2]]], [1360,[3309.65,11267.5,7.62939e-006],[[1313,2],[1360,2],[1396,2],[1397,2]]], [1361,[6423.45,3488.91,0],[[1316,2],[1398,2]]], +[1362,[9135.62,3896.06,0],[[1317,2],[1399,2]]], [1363,[9086.66,4074.03,0],[[1318,2],[1400,2],[1401,2],[1399,2]]], [1364,[9321,4276.11,0],[[1320,2]]], [1365,[5408.21,12303.1,0],[[1321,2],[1402,2]]], [1366,[5324.48,11823.4,0],[[1322,2],[1403,2]]], [1367,[5225.51,11549.4,-1.52588e-005],[[1323,2],[1404,2]]], +[1368,[11619.6,7479.27,0],[[1324,2],[1405,2]]], [1369,[11733.7,9175.06,0],[[1327,2],[1406,2]]], [1370,[10546.7,10220.8,0],[[1328,2],[1407,2]]], [1371,[10725.4,9971.35,3.8147e-006],[[1330,2]]], [1372,[10798,9984.66,0],[[1330,2],[1408,2],[1372,2]]], [1373,[9481.67,11395.8,0],[[1332,2],[1409,2]]], +[1374,[7339.65,11183.7,0],[[1333,2],[1410,2]]], [1375,[8554.91,11643.2,0],[[1334,2],[1411,2]]], [1376,[9904.81,4497.43,-7.62939e-006],[[1335,2],[1412,2]]], [1377,[9466.22,4211.86,0],[[1336,2],[1413,2]]], [1378,[10062.2,4175.63,7.62939e-006],[[1337,2],[1414,2]]], [1379,[10299.6,3890.23,0],[[1337,2],[1415,2]]], +[1380,[11280.2,5487.15,0],[[1338,2]]], [1381,[11193.4,4939.64,0],[[1340,2],[1416,2],[1417,2]]], [1382,[11314.3,5468.42,5.08626e-006],[[1341,2],[1342,2],[1418,2]]], [1383,[11669.4,5498.24,1.52588e-005],[[1343,2],[1419,2]]], [1384,[11575.9,6604.12,0],[[1344,2],[1420,2]]], [1385,[2958.96,6628.64,0],[[1346,2],[1421,2],[1422,2]]], +[1386,[3322.59,6428.94,0],[[1347,2],[1348,2]]], [1387,[2979.77,5508.78,0],[[1349,2],[1423,2],[1424,2]]], [1388,[3469.5,4931.83,0],[[1350,2],[1425,2],[1426,2],[1427,2]]], [1389,[5719.16,4174.58,-7.62939e-006],[[1351,2],[1428,2]]], [1390,[5135.1,4950.74,0],[[1353,2],[1429,2]]], [1391,[2728.85,6822.64,3.05176e-005],[[1354,2],[1430,2]]], +[1392,[2523.82,7261.99,0],[[1355,2],[1431,2]]], [1393,[3552.72,7041.01,0],[[1356,2],[1432,2]]], [1394,[2136.39,8758.74,0],[[1357,2],[1433,2]]], [1395,[2333.35,10642.2,-3.05176e-005],[[1359,2],[1434,2]]], [1396,[3276.99,11252.7,0],[[1396,2]]], [1397,[3278.2,11382.5,0],[[1360,2],[1435,2],[1436,2]]], +[1398,[6359.93,3406.17,0],[[1361,2],[1437,2]]], [1399,[9156.59,3899.97,5.08626e-006],[[1362,2],[1363,2],[1438,2],[1439,2]]], [1400,[9130.9,4108.89,0],[[1363,2]]], [1401,[9185.93,3962.36,0],[[1363,2],[1440,2]]], [1402,[5334.39,12369.7,0],[[1365,2],[1441,2]]], [1403,[5257.3,11717.7,0],[[1366,2],[1403,2],[1442,2],[1404,2]]], +[1404,[5215.41,11680,0],[[1367,2],[1403,2],[1442,2]]], [1405,[11720.3,7418.84,0],[[1368,2],[1443,2]]], [1406,[11842.6,9054.28,0],[[1369,2],[1444,2],[1445,2],[1446,2]]], [1407,[10539.4,10262.4,0],[[1407,2],[1447,2]]], [1408,[10946.7,9953.31,0],[[1372,2],[1448,2]]], [1409,[9408.99,11495.9,-1.52588e-005],[[1373,2],[1449,2]]], +[1410,[7346.4,11211.7,0],[[1374,2],[1450,2],[1451,2]]], [1411,[8568.01,11647.2,0],[[1375,2],[1411,2],[1452,2]]], [1412,[9930.39,4399.7,0],[[1376,2],[1414,2]]], [1413,[9440.62,4142.94,5.08626e-006],[[1377,2],[1413,2],[1453,2]]], [1414,[9996.66,4271.85,-7.62939e-006],[[1378,2],[1412,2]]], [1415,[10328,3792.54,0],[[1379,2],[1454,2],[1455,2]]], +[1416,[11207.9,4789.63,0],[[1381,2],[1456,2]]], [1417,[11242.1,4856.1,0],[[1381,2],[1457,2]]], [1418,[11243,5386.34,0],[[1382,2],[1418,2]]], [1419,[11759.3,5566.42,0],[[1383,2],[1419,2],[1458,2]]], [1420,[11696.4,6609.56,0],[[1384,2],[1459,2]]], [1421,[2784.51,6624.03,0],[[1385,2],[1460,2]]], +[1422,[2997.34,6718.32,0],[[1385,2]]], [1423,[2917.95,5476.63,-7.62939e-006],[[1387,2],[1461,2],[1423,2],[1462,2]]], [1424,[3008.19,5587.68,0],[[1387,2]]], [1425,[3407.85,4786.68,0],[[1388,2],[1463,2]]], [1426,[3607.33,4882.12,-1.52588e-005],[[1388,2],[1464,2]]], [1427,[3442,4952.94,0],[[1388,2],[1465,2],[1427,2],[1466,2]]], +[1428,[5777.69,4115.21,0],[[1389,2],[1467,2]]], [1429,[5112.11,4854.31,0],[[1390,2],[1468,2]]], [1430,[2710.83,6773.2,0],[[1391,2],[1460,2]]], [1431,[2385.86,7229.25,0],[[1392,2],[1469,2]]], [1432,[3579.3,6997.04,0],[[1393,2]]], [1433,[2098.39,8680.29,0],[[1394,2],[1470,2]]], +[1434,[2291.9,10825,0],[[1395,2],[1471,2],[1472,2]]], [1435,[3238.41,11475.5,0],[[1397,2],[1436,2],[1435,2],[1475,2]]], [1436,[3231.54,11454.4,0],[[1435,2],[1514,2],[1436,2],[1397,2]]], [1437,[6327.67,3339.7,0],[[1398,2],[1476,2],[1477,2]]], [1438,[9164.45,3795.85,0],[[1399,2],[1478,2],[1479,2]]], [1439,[9198.29,3949.33,0],[[1399,2]]], +[1440,[9340.71,4043.27,0],[[1401,2],[1453,2]]], [1441,[5316.29,12377.2,0],[[1402,2],[1441,2],[1480,2]]], [1442,[5225.76,11698.8,7.62939e-006],[[1403,2],[1404,2]]], [1443,[11828.8,7347.83,0],[[1405,2],[1481,2]]], [1444,[11791.9,9036.15,2.54313e-006],[[1406,2],[1482,2],[1444,2]]], [1445,[11952,9008.88,-1.27157e-006],[[1406,2],[1483,2],[1484,2]]], +[1446,[11966.4,9155.6,3.8147e-006],[[1406,2],[1485,2]]], [1447,[10521.6,10397.5,0],[[1407,2],[1486,2]]], [1448,[11093.5,9930.5,0],[[1408,2],[1487,2]]], [1449,[9403.84,11569.8,-1.52588e-005],[[1409,2],[1488,2]]], [1450,[7437.38,11295.5,0],[[1410,2],[1489,2]]], [1451,[7237.59,11283.6,0],[[1410,2],[1490,2]]], +[1452,[8734.79,11644.8,0],[[1411,2],[1491,2]]], [1453,[9405.72,4114.69,5.08626e-006],[[1413,2],[1440,2],[1453,2]]], [1454,[10285.2,3794.03,0],[[1415,2],[1454,2],[1492,2]]], [1455,[10347.9,3674.4,-3.8147e-006],[[1415,2],[1493,2]]], [1456,[11230.6,4700.34,0],[[1416,2],[1494,2]]], [1457,[11280.5,4754.29,0],[[1417,2],[1495,2]]], +[1458,[11866,5661.56,0],[[1419,2],[1496,2]]], [1459,[11768.8,6562.36,3.8147e-006],[[1420,2],[1497,2]]], [1460,[2729.71,6634.88,-1.01725e-005],[[1421,2],[1430,2],[1498,2]]], [1461,[2797.33,5400.26,1.52588e-005],[[1423,2],[1499,2]]], [1462,[2990.13,5436,0],[[1423,2]]], [1463,[3373.68,4651.97,-1.52588e-005],[[1425,2],[1500,2],[1463,2],[1501,2],[1502,2],[1503,2]]], +[1464,[3748.67,4822.79,0],[[1426,2],[1504,2]]], [1465,[3413.38,4910.46,0],[[1427,2],[1505,2]]], [1466,[3314.28,5061.17,0],[[1427,2],[1506,2]]], [1467,[5832.16,4001.86,0],[[1428,2],[1507,2]]], [1468,[5136.35,4737.26,0],[[1429,2],[1508,2]]], [1469,[2363.6,7234.48,7.62939e-006],[[1431,2],[1509,2],[1469,2],[1510,2]]], +[1470,[2056.25,8565.67,0],[[1433,2],[1511,2]]], [1471,[2265.19,10989.3,0],[[1434,2],[1512,2],[1472,2]]], [1472,[2354.96,10945.4,0],[[1704,2],[1816,2],[1471,2],[1434,2]]], [1473,[3145.72,11241.4,0],[[1396,2],[1474,2]]], [1474,[3032.48,11203.1,0],[[1473,2],[1513,2]]], [1475,[3306.28,11618.7,0],[[1435,2],[1515,2]]], +[1476,[6238.55,3464.31,0],[[1437,2],[1516,2]]], [1477,[6425.06,3201.71,0],[[1437,2],[1517,2]]], [1478,[9133.26,3692.52,0],[[1438,2],[1518,2]]], [1479,[9146,3796.15,0],[[1438,2],[1479,2]]], [1480,[5216.02,12413.6,0],[[1441,2],[1519,2]]], [1481,[11971.2,7264.07,0],[[1443,2],[1520,2]]], +[1482,[11754.8,9071.19,0],[[1444,2]]], [1483,[12017.4,9053.36,0],[[1445,2],[1521,2],[1522,2]]], [1484,[11951.4,8969.83,2.54313e-006],[[1445,2],[1523,2],[1484,2]]], [1485,[11986.9,9170.93,0],[[1446,2],[1524,2],[1521,2],[1525,2]]], [1486,[10562.9,10509.9,0],[[1447,2],[1526,2]]], [1487,[11199.3,9927.75,0],[[1448,2],[1527,2]]], +[1488,[9504.05,11717.7,0],[[1449,2],[1528,2]]], [1489,[7558.36,11350.4,0],[[1450,2],[1529,2]]], [1490,[7186.11,11326.6,0],[[1451,2],[1530,2],[1490,2]]], [1491,[8760.3,11648.8,0],[[1452,2],[1531,2],[1532,2],[1533,2]]], [1492,[10201.9,3825.48,0],[[1454,2],[1534,2]]], [1493,[10388.2,3513.68,0],[[1455,2],[1535,2]]], +[1494,[11236.3,4614.19,0],[[1456,2],[1536,2],[1537,2]]], [1495,[11375.8,4702.01,1.52588e-005],[[1457,2],[1538,2]]], [1496,[11945.9,5772.75,-1.01725e-005],[[1458,2],[1496,2],[1539,2]]], [1497,[11861.5,6475,0],[[1459,2],[1540,2]]], [1498,[2608.49,6603.69,3.05176e-005],[[1460,2],[1541,2]]], [1499,[2784.66,5379.27,-3.8147e-006],[[1461,2],[1542,2],[1543,2],[1544,2]]], +[1500,[3338.64,4554.22,-1.01725e-005],[[1463,2],[1502,2],[1500,2],[1545,2]]], [1501,[3439.4,4609.62,0],[[1501,2],[1546,2],[1503,2]]], [1502,[3356.4,4553.88,0],[[1500,2],[1593,2],[1502,2],[1463,2]]], [1503,[3431.95,4629.72,0],[[1501,2],[1463,2]]], [1504,[3876.14,4779.96,-1.52588e-005],[[1464,2],[1547,2]]], [1505,[3357.59,4932.48,0],[[1465,2],[1505,2],[1548,2],[1549,2]]], +[1506,[3205.73,5157.42,0],[[1466,2],[1550,2]]], [1507,[5898.74,3900.94,0],[[1467,2],[1551,2]]], [1508,[5110.95,4664.98,0],[[1468,2],[1552,2]]], [1509,[2232.97,7256.43,0],[[1469,2],[1553,2]]], [1510,[2357.29,7289.08,1.01725e-005],[[1469,2],[1554,2],[1510,2]]], [1511,[2010.18,8414.08,0],[[1470,2],[1555,2]]], +[1512,[2250.2,11083.3,0],[[1471,2],[1556,2]]], [1513,[2910.3,11172.5,0],[[1474,2],[1557,2]]], [1514,[3246.92,11428.2,0],[[1436,2]]], [1515,[3315.44,11754.8,0],[[1475,2],[1558,2]]], [1516,[6195.92,3538.26,0],[[1476,2],[1559,2],[1560,2]]], [1517,[6485.33,3132.34,0],[[1477,2],[1561,2]]], +[1518,[9169.84,3629.92,-5.08626e-006],[[1478,2],[1518,2],[1562,2]]], [1519,[5190.01,12437.4,-5.08626e-006],[[1480,2],[1519,2],[1563,2]]], [1520,[12080.9,7273.66,0],[[1481,2],[1564,2]]], [1521,[12041.9,9093.99,-9.53674e-007],[[1483,2],[1485,2],[1565,2],[1566,2],[1525,2]]], [1522,[12079,9020.71,0],[[1483,2]]], [1523,[11976.9,8802.09,0],[[1484,2],[1567,2]]], +[1524,[11832,9205.18,0],[[1485,2],[1568,2]]], [1525,[12015.3,9200.31,2.54313e-006],[[1485,2],[1521,2],[1569,2],[1570,2]]], [1526,[10614.2,10581.3,-7.62939e-006],[[1486,2],[1571,2]]], [1527,[11305.9,9866,0],[[1487,2],[1572,2]]], [1528,[9555.21,11800.5,0],[[1488,2],[1573,2],[1574,2]]], [1529,[7666.48,11359.2,0],[[1489,2],[1575,2]]], +[1530,[7069.03,11412,-3.05176e-005],[[1490,2],[1576,2]]], [1531,[8770.32,11592,-5.08626e-006],[[1491,2],[1531,2]]], [1532,[8869.15,11631,0],[[1491,2]]], [1533,[8712.63,11788.3,1.52588e-005],[[1491,2],[1577,2]]], [1534,[10157.1,3786.39,0],[[1492,2],[1578,2],[1534,2],[1579,2]]], [1535,[10381.2,3402.21,0],[[1493,2],[1580,2]]], +[1536,[11231.3,4491.23,0],[[1494,2],[1581,2]]], [1537,[11333.2,4556.36,0],[[1494,2],[1582,2]]], [1538,[11497.3,4679.3,0],[[1495,2],[1583,2]]], [1539,[11988.7,5800.79,0],[[1496,2],[1539,2],[1584,2]]], [1540,[11942.3,6396.27,0],[[1497,2],[1585,2]]], [1541,[2539.25,6520.94,0],[[1498,2],[1586,2]]], +[1542,[2749.31,5298.8,6.10352e-006],[[1499,2],[1587,2],[1588,2],[1589,2],[1542,2]]], [1543,[2840.18,5356.99,0],[[1499,2],[1590,2],[1543,2]]], [1544,[2752.55,5399.07,0],[[1499,2],[1591,2],[1592,2]]], [1545,[3240.03,4560.54,0],[[1500,2],[1594,2]]], [1546,[3445.43,4554.78,0],[[1501,2]]], [1547,[3974.23,4769.51,0],[[1504,2],[1595,2]]], +[1548,[3329.59,4968.2,1.52588e-005],[[1505,2]]], [1549,[3341.72,4922.37,0],[[1505,2]]], [1550,[3064.7,5209.09,1.52588e-005],[[1506,2],[1596,2]]], [1551,[5988.24,3763.21,0],[[1507,2],[1597,2]]], [1552,[5106.54,4587.3,0],[[1508,2],[1598,2]]], [1553,[2148.2,7280.73,3.05176e-005],[[1509,2],[1599,2]]], +[1554,[2397.18,7402.34,-1.01725e-005],[[1510,2],[1554,2],[1600,2]]], [1555,[1992.99,8325.43,0],[[1511,2],[1601,2]]], [1556,[2246.74,11202.1,0],[[1512,2],[1602,2]]], [1557,[2777.2,11148,0],[[1513,2],[1603,2]]], [1558,[3334.99,11927,0],[[1515,2],[1604,2]]], [1559,[6110.37,3648,-3.8147e-006],[[1516,2],[1597,2]]], +[1560,[6144.57,3482.09,0],[[1516,2],[1605,2]]], [1561,[6513.76,3041.19,0],[[1517,2],[1606,2]]], [1562,[9303.63,3609.31,0],[[1518,2],[1607,2]]], [1563,[5083.1,12459.2,0],[[1519,2],[1608,2]]], [1564,[12175.3,7269.31,5.08626e-006],[[1520,2],[1564,2],[1609,2]]], [1565,[12126,9052.1,0],[[1521,2],[1610,2],[1611,2]]], +[1566,[12071.4,9145.27,0],[[1521,2],[1612,2]]], [1567,[11970.5,8686.12,0],[[1523,2],[1613,2]]], [1568,[11808.6,9203.32,0],[[1524,2]]], [1569,[12048.4,9278.09,0],[[1525,2],[1614,2],[1615,2]]], [1570,[12050,9168.5,0],[[1525,2]]], [1571,[10666.3,10671.6,0],[[1526,2],[1616,2]]], +[1572,[11412.4,9834.11,0],[[1527,2],[1617,2]]], [1573,[9621.16,11963.2,0],[[1528,2],[1618,2]]], [1574,[9440.07,11777,0],[[1528,2],[1619,2]]], [1575,[7847.05,11385.7,0],[[1529,2],[1620,2]]], [1576,[7030.68,11469.8,0],[[1530,2],[1621,2]]], [1577,[8642.06,11853.2,5.08626e-006],[[1533,2],[1622,2],[1623,2]]], +[1578,[10178.1,3814.17,-1.27157e-006],[[1534,2]]], [1579,[10146.4,3712.03,-2.54313e-006],[[1534,2],[1624,2],[1579,2],[1625,2]]], [1580,[10307.3,3273.76,0],[[1535,2],[1626,2]]], [1581,[11174.9,4393.8,-3.05176e-005],[[1536,2],[1627,2]]], [1582,[11389.4,4488.36,0],[[1537,2],[1628,2]]], [1583,[11593.5,4685.81,0],[[1538,2],[1629,2]]], +[1584,[12048.7,5882.63,5.08626e-006],[[1539,2],[1630,2],[1584,2]]], [1585,[11988.8,6328.71,0],[[1540,2],[1631,2]]], [1586,[2524.57,6413.94,0],[[1541,2],[1632,2]]], [1587,[2810.7,5271.75,0],[[1542,2],[1596,2],[1633,2]]], [1588,[2713.37,5275.48,1.01725e-005],[[1542,2],[1588,2],[1589,2]]], [1589,[2729.53,5224.37,5.08626e-006],[[1542,2],[1588,2],[1634,2]]], +[1590,[2882.67,5423.94,0],[[1543,2]]], [1591,[2815.46,5452.19,-1.52588e-005],[[1544,2],[1635,2]]], [1592,[2689.86,5448.38,3.8147e-006],[[1544,2],[1636,2],[1592,2],[1637,2],[1638,2]]], [1593,[3358.56,4575.31,-2.03451e-005],[[1502,2]]], [1594,[3208.24,4551.25,-1.52588e-005],[[1545,2],[1594,2],[1639,2],[1640,2]]], [1595,[4001.07,4775.83,-1.01725e-005],[[1547,2],[1641,2],[1642,2]]], +[1596,[2914.68,5248.23,-1.52588e-005],[[1550,2],[1587,2]]], [1597,[6066.71,3678.61,3.8147e-006],[[1551,2],[1559,2],[1643,2]]], [1598,[5071.91,4533.25,0],[[1552,2],[1644,2]]], [1599,[2067.1,7318.27,0],[[1553,2],[1645,2]]], [1600,[2486.2,7404.94,-1.01725e-005],[[1554,2],[1600,2],[1646,2]]], [1601,[1928.01,8201.08,0],[[1555,2],[1647,2]]], +[1602,[2192.32,11286.3,-3.05176e-005],[[1556,2],[1648,2]]], [1603,[2689.59,11090.3,3.05176e-005],[[1557,2],[1649,2]]], [1604,[3342.32,11950.6,7.62939e-006],[[1558,2],[1650,2],[1651,2],[1652,2]]], [1605,[6129.47,3429,0],[[1560,2],[1605,2],[1653,2]]], [1606,[6505.46,2969.14,1.58946e-007],[[1561,2],[1606,2],[1654,2]]], [1607,[9377.23,3531.42,0],[[1562,2],[1655,2]]], +[1608,[4992.51,12499.9,-5.08626e-006],[[1563,2],[1656,2],[1608,2]]], [1609,[12300.2,7307.04,-5.08626e-006],[[1564,2],[1609,2],[1657,2]]], [1610,[12277.5,8969.17,0],[[1565,2],[1658,2]]], [1611,[12103.8,8985.58,0],[[1565,2],[1659,2],[1660,2]]], [1612,[12118.4,9099.46,0],[[1566,2]]], [1613,[11975.2,8670.56,0],[[1567,2],[1661,2],[1662,2]]], +[1614,[12110.3,9359.78,0],[[1569,2],[1663,2],[1664,2]]], [1615,[11965.1,9310.64,0],[[1569,2],[1665,2]]], [1616,[10724.7,10812.3,-1.52588e-005],[[1571,2],[1666,2]]], [1617,[11453.5,9835.21,0],[[1617,2],[1667,2],[1572,2]]], [1618,[9692.71,12104.6,-1.52588e-005],[[1573,2],[1668,2],[1669,2]]], [1619,[9313.83,11713.1,-1.52588e-005],[[1574,2],[1670,2]]], +[1620,[7933.99,11403.9,0],[[1575,2],[1671,2],[1672,2]]], [1621,[7011.29,11469.3,0],[[1576,2],[1673,2],[1621,2]]], [1622,[8574.65,11950.5,0],[[1577,2],[1674,2]]], [1623,[8725.44,11881.5,0],[[1577,2],[1675,2]]], [1624,[10128.8,3718.39,-7.62939e-006],[[1579,2],[1624,2]]], [1625,[10172,3612.59,0],[[1579,2],[1676,2]]], +[1626,[10246.8,3201.15,0],[[1580,2],[1677,2],[1678,2]]], [1627,[11165.7,4378.2,-1.01725e-005],[[1581,2],[1627,2],[1679,2]]], [1628,[11491.3,4476.21,0],[[1582,2],[1680,2]]], [1629,[11708.6,4740.41,0],[[1583,2],[1681,2]]], [1630,[12093.4,5871.85,1.01725e-005],[[1584,2],[1630,2],[1682,2]]], [1631,[12096.5,6292.24,3.8147e-006],[[1585,2],[1683,2]]], +[1632,[2530.14,6388.72,0],[[1586,2],[1684,2],[1685,2],[1686,2]]], [1633,[2817.37,5195.57,0],[[1587,2]]], [1634,[2699.72,5152.87,-3.8147e-006],[[1589,2],[1687,2],[1688,2],[1689,2]]], [1635,[2833.02,5471.38,-1.52588e-005],[[1591,2]]], [1636,[2734.68,5468.87,0],[[1592,2],[1636,2]]], [1637,[2570.84,5466.03,-1.52588e-005],[[1592,2],[1690,2]]], +[1638,[2674.45,5648.44,0],[[1592,2],[1691,2]]], [1639,[3015.54,4665.02,0],[[1594,2],[1692,2],[1693,2]]], [1640,[3080.41,4494.18,0],[[1594,2],[1694,2]]], [1641,[4131.26,4856.52,1.52588e-005],[[1595,2],[1695,2]]], [1642,[4077.24,4690.47,-1.52588e-005],[[1595,2],[1696,2]]], [1643,[6079.26,3669.86,1.90735e-006],[[1597,2]]], +[1644,[4983.06,4497.99,0],[[1598,2],[1697,2]]], [1645,[2040.19,7318.49,-1.01725e-005],[[1599,2],[1698,2],[1699,2]]], [1646,[2522.7,7536.49,3.05176e-005],[[1600,2],[1700,2]]], [1647,[1932.81,8110.58,1.01725e-005],[[1601,2],[1701,2],[1702,2]]], [1648,[2110.03,11379.1,0],[[1602,2],[1703,2]]], [1649,[2593.1,11041.5,0],[[1603,2],[1704,2]]], +[1650,[3354.11,12114.3,0],[[1604,2],[1705,2]]], [1651,[3173.03,11877.8,0],[[1604,2],[1706,2]]], [1652,[3524.49,12031.5,3.05176e-005],[[1604,2],[1707,2]]], [1653,[6029.23,3335.59,-7.62939e-006],[[1605,2],[1708,2]]], [1654,[6509.91,2922.85,1.58946e-007],[[1606,2],[1709,2],[1710,2]]], [1655,[9422.01,3404.86,-1.52588e-005],[[1607,2],[1711,2]]], +[1656,[4954.56,12538.2,5.08626e-006],[[1608,2],[1712,2],[1713,2]]], [1657,[12358.5,7385.2,0],[[1609,2],[1714,2]]], [1658,[12301.4,8955.17,0],[[1610,2],[1715,2],[1716,2]]], [1659,[12177.5,8954,0],[[1611,2],[1717,2],[1718,2],[1659,2]]], [1660,[12047.2,8966.65,0],[[1611,2],[1660,2],[1719,2]]], [1661,[12023.6,8546.51,0],[[1613,2],[1720,2]]], +[1662,[12129.6,8657.74,0],[[1613,2],[1721,2]]], [1663,[12158.9,9412.39,-6.35783e-007],[[1614,2],[1722,2],[1723,2]]], [1664,[12057.7,9391.4,0],[[1614,2]]], [1665,[11895.6,9331.54,0],[[1615,2]]], [1666,[10768.9,10924.8,1.52588e-005],[[1616,2],[1724,2]]], [1667,[11437.6,9832.72,1.27157e-006],[[1617,2]]], +[1668,[9785.42,12167.6,0],[[1618,2],[1727,2]]], [1669,[9624.72,12091.3,0],[[2059,2],[2169,2],[1618,2]]], [1670,[9220.83,11707.3,1.52588e-005],[[1619,2],[1728,2]]], [1671,[7877.16,11511.9,0],[[1620,2],[1729,2]]], [1672,[8058.38,11396.2,0],[[1620,2],[1730,2]]], [1673,[6981.52,11365.2,3.05176e-005],[[1621,2],[1731,2]]], +[1674,[8496.98,12049.6,-1.52588e-005],[[1622,2],[1732,2]]], [1675,[8860.47,11850.4,0],[[1623,2],[1733,2]]], [1676,[10152.4,3511.81,0],[[1625,2],[1734,2]]], [1677,[10202.5,3051.33,1.90735e-006],[[1626,2],[1735,2]]], [1678,[10193.5,3301.85,0],[[1626,2],[1736,2]]], [1679,[11143.5,4274.94,-3.05176e-005],[[1627,2],[1737,2]]], +[1680,[11573,4514.7,1.52588e-005],[[1628,2],[1738,2]]], [1681,[11758.9,4821.32,1.52588e-005],[[1629,2],[1739,2]]], [1682,[12145.7,5763.3,0],[[1630,2],[1740,2]]], [1683,[12212.5,6259.48,0],[[1631,2],[1741,2]]], [1684,[2526.55,6305,1.01725e-005],[[1632,2],[1742,2],[1743,2],[1686,2]]], [1685,[2455.62,6365.54,0],[[1632,2],[1744,2]]], +[1686,[2573.1,6349.58,0],[[1632,2],[1684,2],[1743,2]]], [1687,[2650.89,5219.35,0],[[1634,2],[1745,2]]], [1688,[2653.83,5092.03,3.8147e-006],[[1634,2],[1688,2],[1746,2],[1747,2]]], [1689,[2738.91,5118.06,0],[[1634,2]]], [1690,[2523.72,5517.34,-5.08626e-006],[[1637,2],[1690,2]]], [1691,[2675.1,5722.75,5.08626e-006],[[1638,2],[1748,2],[1749,2]]], +[1692,[3053.11,4543.43,0],[[1639,2],[1694,2]]], [1693,[2838.41,4726.74,0],[[1639,2],[1750,2]]], [1694,[3066.39,4487.49,0],[[1640,2],[1692,2],[1751,2]]], [1695,[4237.17,4831.88,0],[[1641,2],[1695,2],[1752,2]]], [1696,[4116.73,4647.93,3.8147e-006],[[1642,2],[1753,2],[1696,2],[1754,2]]], [1697,[4912.99,4475.01,0],[[1644,2],[1755,2]]], +[1698,[1991.05,7330.01,0],[[1645,2],[1756,2],[1757,2],[1758,2],[1759,2]]], [1699,[2042.36,7277.58,0],[[1645,2]]], [1700,[2530.89,7559.99,0],[[1646,2]]], [1701,[1878.65,7989.72,0],[[1647,2],[1760,2]]], [1702,[2002.36,8107.53,0],[[1647,2],[1761,2]]], [1703,[2070.21,11495.1,0],[[1648,2],[1762,2]]], +[1704,[2477.63,11000.2,0],[[1649,2],[1472,2]]], [1705,[3381.55,12238.4,0],[[1650,2],[1763,2]]], [1706,[3045.31,11823.4,0],[[1651,2],[1764,2]]], [1707,[3653.66,12082.9,0],[[1652,2],[1765,2]]], [1708,[5956.99,3235.71,0],[[1653,2],[1766,2]]], [1709,[6551.8,2867.97,0],[[1654,2],[1767,2],[1768,2]]], +[1710,[6449.67,2890.22,3.17891e-007],[[1654,2],[1710,2]]], [1711,[9431.1,3268.82,0],[[1655,2],[1769,2]]], [1712,[4910.75,12543.9,5.08626e-006],[[1656,2],[1712,2],[1770,2]]], [1713,[4957.04,12584.9,-1.52588e-005],[[1656,2]]], [1714,[12388.2,7464.99,1.52588e-005],[[1657,2],[1771,2]]], [1715,[12467,8849.31,1.90735e-006],[[1658,2],[1772,2]]], +[1716,[12308.8,8986.06,1.27157e-006],[[1658,2],[1773,2],[1774,2],[1775,2]]], [1717,[12155.3,8802.91,-3.8147e-006],[[1659,2],[1721,2]]], [1718,[12172.1,8963.87,0],[[1659,2]]], [1719,[12024.2,8939.82,0],[[1660,2]]], [1720,[12083.8,8485.77,0],[[1661,2],[1776,2]]], [1721,[12153.7,8652.17,0],[[1662,2],[1717,2],[1777,2]]], +[1722,[12249,9494.54,0],[[1663,2],[1778,2],[1779,2],[1780,2],[1781,2]]], [1723,[12121.9,9441.57,1.90735e-006],[[1663,2]]], [1724,[10818.5,11018.5,0],[[1666,2],[1782,2]]], [1725,[11646.5,9840.74,0],[[1617,2],[1726,2]]], [1726,[11781.8,9846.16,0],[[1725,2],[1783,2]]], [1727,[9826.66,12231,0],[[1668,2],[1784,2],[1727,2]]], +[1728,[9196.64,11708.6,0],[[1670,2],[1728,2],[1785,2]]], [1729,[7859.45,11556.3,-3.05176e-005],[[1671,2]]], [1730,[8070.69,11401.6,5.08626e-006],[[1672,2],[1786,2],[1787,2]]], [1731,[6966.87,11348.3,0],[[1673,2],[1788,2],[1731,2]]], [1732,[8472.92,12052.1,-5.08626e-006],[[1674,2],[1789,2],[1790,2]]], [1733,[8939.43,11853.2,5.08626e-006],[[1675,2],[1791,2],[1792,2]]], +[1734,[10151.9,3426.07,0],[[1676,2],[1736,2]]], [1735,[10251.2,2983.75,0],[[1677,2],[1793,2]]], [1736,[10139.9,3352.28,-3.8147e-006],[[1678,2],[1734,2]]], [1737,[11101.7,4187.93,0],[[1679,2],[1794,2]]], [1738,[11661.1,4571.45,0],[[1680,2],[1795,2]]], [1739,[11837,4960.49,0],[[1681,2],[1796,2]]], +[1740,[12168.5,5666.44,0],[[1682,2],[1797,2]]], [1741,[12299.4,6232.76,0],[[1683,2],[1798,2]]], [1742,[2543.14,6142.1,-3.05176e-005],[[1684,2],[1799,2]]], [1743,[2561.11,6324.56,0],[[1684,2],[1686,2]]], [1744,[2416.02,6349.38,0],[[1685,2],[1800,2],[1801,2]]], [1745,[2562.04,5235.88,0],[[1687,2],[1802,2]]], +[1746,[2564.21,5025.08,0],[[1688,2],[1803,2],[1804,2]]], [1747,[2745.93,5061.93,0],[[1688,2]]], [1748,[2685.56,5852.8,0],[[1691,2],[1805,2]]], [1749,[2600.81,5699.37,1.52588e-005],[[1691,2]]], [1750,[2697.83,4718.1,0],[[1693,2],[1806,2]]], [1751,[2970.39,4398.46,0],[[1694,2],[1807,2]]], +[1752,[4341.82,4728.78,0],[[1695,2],[1808,2]]], [1753,[4235.28,4473.94,0],[[1696,2],[1809,2]]], [1754,[4174.29,4669.11,1.01725e-005],[[1696,2],[1754,2],[1810,2]]], [1755,[4830.86,4430.78,0],[[1697,2],[1811,2]]], [1756,[2020.47,7387.89,0],[[1698,2]]], [1757,[1956.05,7365.5,0],[[1698,2],[1757,2],[1812,2]]], +[1758,[1951.53,7301.08,0],[[1698,2]]], [1759,[2014.52,7270.45,0],[[1698,2]]], [1760,[1845.01,7909.4,0],[[1701,2],[1813,2]]], [1761,[2062.49,8063.31,0],[[1702,2],[1814,2]]], [1762,[2020.93,11617.6,0],[[1703,2],[1815,2]]], [1763,[3429.95,12311.7,0],[[1705,2],[1763,2]]], +[1764,[3022.47,11814.9,-1.52588e-005],[[1706,2]]], [1765,[3709.01,12056.9,0],[[1707,2],[1817,2],[1818,2]]], [1766,[5877.33,3151.97,0],[[1708,2],[1819,2]]], [1767,[6511.16,2795.39,0],[[1709,2],[1820,2],[1767,2],[1821,2]]], [1768,[6602.56,2890.62,0],[[1709,2],[1822,2],[1823,2]]], [1769,[9388.37,3144.8,1.52588e-005],[[1711,2],[1824,2]]], +[1770,[4863.51,12517.2,-1.01725e-005],[[1712,2],[1825,2],[1770,2],[1826,2]]], [1771,[12361.1,7614.88,0],[[1714,2],[1827,2]]], [1772,[12526.7,8770.17,0],[[1715,2],[1828,2]]], [1773,[12358,9053.22,-1.27157e-006],[[1716,2],[1775,2],[1773,2],[1829,2]]], [1774,[12309.1,9079.58,0],[[1716,2],[1830,2],[1774,2]]], [1775,[12369.9,9033.58,-9.53674e-007],[[1773,2],[1775,2],[1716,2]]], +[1776,[12103.1,8445.41,0],[[1720,2],[1831,2],[1832,2]]], [1777,[12179.5,8617.96,1.27157e-006],[[1721,2],[1777,2],[1833,2]]], [1778,[12185.9,9488.44,0],[[1722,2],[1778,2],[1834,2]]], [1779,[12322.3,9579.74,1.19209e-007],[[1722,2],[1835,2],[1836,2],[1837,2]]], [1780,[12368.3,9488.03,0],[[1722,2],[1780,2]]], [1781,[12155.9,9556.24,0],[[1722,2],[1781,2]]], +[1782,[10819.7,11069.6,5.08626e-006],[[1724,2],[1782,2],[1838,2]]], [1783,[11912.9,9854.5,0],[[1726,2],[1839,2]]], [1784,[9910.13,12320.2,0],[[1727,2],[1840,2]]], [1785,[9089.33,11814.2,0],[[1728,2],[1791,2]]], [1786,[8067.62,11316.9,0],[[1730,2],[1786,2],[1841,2],[1842,2]]], [1787,[8102.81,11512.6,0],[[1730,2],[1843,2]]], +[1788,[6931.37,11353.2,0],[[1731,2]]], [1789,[8297.51,12105.6,0],[[1732,2],[1844,2]]], [1790,[8429.04,12024.9,-1.52588e-005],[[1732,2],[1790,2]]], [1791,[8981.92,11851.8,0],[[1733,2],[1785,2],[1845,2]]], [1792,[8923.27,11963.2,0],[[1733,2],[1846,2]]], [1793,[10265.7,2905.57,-6.35783e-007],[[1735,2],[1793,2],[1847,2]]], +[1794,[11079.3,4123.28,0],[[1737,2],[1848,2]]], [1795,[11754.1,4610.88,-1.52588e-005],[[1738,2],[1849,2]]], [1796,[11928,5022.11,7.62939e-006],[[1739,2],[1850,2]]], [1797,[12180.7,5634.97,0],[[1797,2],[1851,2]]], [1798,[12406.2,6213.14,0],[[1741,2],[1852,2],[1798,2]]], [1799,[2584.44,6025.77,-3.05176e-005],[[1742,2],[1805,2]]], +[1800,[2358.93,6362.55,-1.01725e-005],[[1744,2],[1853,2],[1854,2],[1800,2]]], [1801,[2441.26,6335.03,3.05176e-005],[[1744,2],[1801,2]]], [1802,[2424.35,5252.44,0],[[1745,2],[1855,2]]], [1803,[2462.28,4950.53,0],[[1746,2],[1856,2]]], [1804,[2589.83,4856.5,0],[[1746,2],[1806,2]]], [1805,[2680.89,5878.14,-5.08626e-006],[[1748,2],[1799,2],[1857,2]]], +[1806,[2618.47,4721.04,0],[[1750,2],[1804,2],[1858,2]]], [1807,[2946.78,4385.82,-1.01725e-005],[[1751,2],[1807,2],[1859,2]]], [1808,[4369,4677.34,0],[[1752,2],[1860,2],[1861,2]]], [1809,[4253.79,4455.49,0],[[1753,2],[1862,2],[1809,2],[1863,2]]], [1810,[4281.79,4625.17,-1.52588e-005],[[1754,2],[1860,2]]], [1811,[4725.85,4333.27,0],[[1755,2],[1864,2]]], +[1812,[1929.05,7468.24,0],[[1757,2],[1865,2]]], [1813,[1887.19,7813.19,0],[[1760,2],[1866,2]]], [1814,[2100.97,8006.45,0],[[1761,2],[1867,2]]], [1815,[1996.65,11765.2,0],[[1762,2],[1868,2]]], [1816,[2291.35,10913.7,1.01725e-005],[[1472,2]]], [1817,[3707.65,11952.4,0],[[1765,2],[1817,2],[1869,2]]], +[1818,[3701.26,12094.7,1.01725e-005],[[1765,2]]], [1819,[5785.16,3098.43,0],[[1766,2],[1870,2],[1871,2]]], [1820,[6464.74,2746.85,0],[[1767,2],[1872,2],[1873,2]]], [1821,[6589.6,2738.03,0],[[1767,2],[1821,2],[1874,2],[1875,2],[1876,2],[1823,2],[1877,2]]], [1822,[6731.57,2986.49,0],[[1768,2],[1878,2],[1879,2]]], [1823,[6654.26,2838.62,0],[[1768,2],[1821,2],[1876,2],[1823,2],[1879,2]]], +[1824,[9390.55,3126.58,0],[[1824,2],[1880,2]]], [1825,[4869.83,12538.1,-7.62939e-006],[[1770,2]]], [1826,[4840.73,12349.4,0],[[1770,2],[1881,2]]], [1827,[12288.9,7747.48,0],[[1771,2],[1882,2]]], [1828,[12593.2,8715.21,-2.38419e-007],[[1772,2],[1883,2],[1884,2],[1885,2]]], [1829,[12323.3,9086.33,0],[[1773,2]]], +[1830,[12277.3,9059.64,1.90735e-006],[[1774,2]]], [1831,[12147.8,8303.8,0],[[1776,2],[1886,2]]], [1832,[12194.9,8468.99,0],[[1776,2],[1832,2],[1887,2]]], [1833,[12228.1,8611.17,0],[[1777,2],[1833,2],[1887,2]]], [1834,[12142.2,9449.89,0],[[1778,2]]], [1835,[12431.3,9534.83,0],[[1779,2],[1888,2],[1889,2]]], +[1836,[12351.7,9678.12,-3.57628e-007],[[1779,2],[1890,2],[1891,2],[1892,2]]], [1837,[12351.9,9602.02,-4.76837e-007],[[1779,2]]], [1838,[10846.3,11180.6,-5.08626e-006],[[1782,2],[1893,2],[1838,2],[1894,2]]], [1839,[12038.6,9859.42,0],[[1783,2],[1895,2]]], [1840,[10035.4,12375.2,0],[[1784,2],[1896,2]]], [1841,[8071.1,11236.7,5.08626e-006],[[1786,2],[1841,2],[1897,2]]], +[1842,[8026.4,11301.8,-1.52588e-005],[[1786,2]]], [1843,[8105.62,11596.1,-3.8147e-006],[[1787,2],[1898,2],[1843,2],[1899,2]]], [1844,[8233.44,12097.3,-1.52588e-005],[[1789,2],[1900,2]]], [1845,[9076,11953.7,0],[[1791,2],[1901,2]]], [1846,[8851.61,12029.5,-1.52588e-005],[[1792,2],[1902,2]]], [1847,[10333.6,2829.63,-9.53674e-007],[[1793,2],[1903,2]]], +[1848,[11003.2,4076.82,0],[[1794,2],[1904,2]]], [1849,[11836.8,4599.93,0],[[1795,2],[1905,2]]], [1850,[12022.3,5065,-7.62939e-006],[[1796,2],[1906,2]]], [1851,[12265.6,5599.08,2.54313e-006],[[1797,2],[1907,2],[1908,2]]], [1852,[12521.8,6222.07,0],[[1798,2],[1909,2]]], [1853,[2254.98,6271.73,0],[[1800,2],[1910,2]]], +[1854,[2371.48,6371.61,-2.03451e-005],[[1800,2]]], [1855,[2399.39,5253.14,0],[[1802,2],[1911,2],[1855,2],[1912,2]]], [1856,[2325.68,4901.45,0],[[1803,2],[1913,2]]], [1857,[2765.91,5962.04,-3.05176e-005],[[1805,2],[1914,2]]], [1858,[2528.37,4691.17,0],[[1806,2],[1915,2]]], [1859,[2880.7,4346.99,0],[[1807,2],[1916,2],[1859,2],[1917,2]]], +[1860,[4358.08,4603.05,0],[[1808,2],[1810,2],[1918,2]]], [1861,[4418.39,4677.89,0],[[1861,2],[1919,2]]], [1862,[4279.03,4332.36,-1.52588e-005],[[1809,2],[1920,2]]], [1863,[4337.08,4381.45,0],[[1809,2],[1921,2]]], [1864,[4688.79,4277.71,0],[[1811,2],[1922,2],[1923,2]]], [1865,[1884.87,7578.71,0],[[1812,2],[1924,2]]], +[1866,[1914.1,7675.73,0],[[1813,2],[1924,2]]], [1867,[2154.7,7912.74,0],[[1814,2],[1867,2]]], [1868,[1934.76,11880.9,0],[[1815,2],[1925,2]]], [1869,[3814.21,12033.6,-3.05176e-005],[[1817,2],[1926,2]]], [1870,[5694.12,3025.86,1.90735e-006],[[1819,2],[1870,2],[1927,2],[1928,2]]], [1871,[5678.32,3235.25,0],[[1819,2],[1929,2]]], +[1872,[6427.23,2714.26,0],[[1820,2],[1930,2],[1872,2],[1931,2]]], [1873,[6489.75,2664.42,0],[[1820,2],[1932,2],[1873,2],[1933,2]]], [1874,[6651.13,2785.3,0],[[1821,2]]], [1875,[6511.2,2620.95,0],[[1821,2]]], [1876,[6689.59,2772.82,0],[[1821,2],[1823,2],[1934,2],[1876,2],[1935,2]]], [1877,[6562.82,2603.94,0],[[1821,2],[1877,2],[1936,2],[1937,2],[1938,2]]], +[1878,[6851.41,3070.65,0],[[1822,2],[1939,2]]], [1879,[6771.73,2933.29,0],[[1822,2],[1823,2],[1940,2]]], [1880,[9432.29,3032.22,0],[[1824,2],[1941,2]]], [1881,[4772.3,12256.5,0],[[1826,2],[1942,2]]], [1882,[12254.1,7830.81,0],[[1827,2],[1943,2],[1882,2]]], [1883,[12733.2,8704.33,-4.76837e-007],[[1828,2],[1944,2]]], +[1884,[12537.5,8670.1,0],[[1828,2],[1945,2],[1884,2],[1946,2]]], [1885,[12618.1,8599.01,0],[[1828,2],[1947,2]]], [1886,[12158.7,8178.09,0],[[1831,2],[1948,2]]], [1887,[12286.2,8462.08,0],[[1832,2],[1833,2],[1949,2]]], [1888,[12483.6,9538.39,1.58946e-007],[[1835,2],[1888,2],[1950,2]]], [1889,[12431.5,9491.23,4.76837e-007],[[1835,2]]], +[1890,[12314.8,9750.52,9.53674e-007],[[1836,2]]], [1891,[12521.2,9708.67,0],[[1836,2],[1951,2]]], [1892,[12162.6,9715.16,0],[[1836,2],[1952,2]]], [1893,[10834.7,11162.3,-7.62939e-006],[[1838,2]]], [1894,[10896.2,11325.8,0],[[1838,2],[1953,2]]], [1895,[12156.1,9864.66,1.90735e-006],[[1839,2],[1954,2]]], +[1896,[10177.6,12421.9,0],[[1840,2],[1955,2]]], [1897,[8035.03,11162.8,0],[[1841,2]]], [1898,[8134.65,11728.9,0],[[1843,2],[1956,2]]], [1899,[8189.13,11567,0],[[1843,2],[1899,2]]], [1900,[8218.9,11999.6,0],[[1844,2],[1957,2]]], [1901,[9189.26,11996.5,0],[[1845,2],[1958,2]]], +[1902,[8830.29,12125,-1.52588e-005],[[1846,2],[1959,2]]], [1903,[10356.5,2776.24,0],[[1847,2],[1903,2],[1960,2]]], [1904,[10912,4079.13,0],[[1848,2],[1961,2]]], [1905,[11934.4,4599.49,0],[[1849,2],[1962,2]]], [1906,[12042.7,5075.26,0],[[1850,2],[1963,2],[1906,2]]], [1907,[12286.1,5575.43,0],[[1851,2]]], +[1908,[12325.3,5719.69,0],[[1851,2],[1964,2]]], [1909,[12551.4,6224.33,0],[[1852,2],[1909,2],[1965,2]]], [1910,[2188.55,6240.53,0],[[1853,2]]], [1911,[2300.37,5295.17,0],[[1855,2],[1966,2],[1967,2]]], [1912,[2324.48,5220.57,0],[[1855,2],[1968,2]]], [1913,[2221.5,4836.71,0],[[1856,2],[1969,2]]], +[1914,[2763.14,5982.2,0],[[1857,2],[1914,2]]], [1915,[2472.59,4696.2,0],[[1858,2]]], [1916,[2901.37,4373.53,1.01725e-005],[[1859,2]]], [1917,[2832.93,4183.15,0],[[1859,2],[1970,2]]], [1918,[4402.83,4570.35,0],[[1860,2]]], [1919,[4483.17,4626.98,5.08626e-006],[[1861,2],[1971,2],[1972,2]]], +[1920,[4285.38,4205.92,1.52588e-005],[[1862,2],[1973,2],[1974,2]]], [1921,[4387.44,4281.61,0],[[1863,2],[1975,2]]], [1922,[4607.41,4358.37,0],[[1864,2],[1976,2]]], [1923,[4799.6,4155.23,0],[[1864,2],[1977,2]]], [1924,[1887.62,7601.89,0],[[1865,2],[1866,2],[1978,2]]], [1925,[1868.73,12019.6,0],[[1868,2],[1979,2]]], +[1926,[3920.64,12095.8,0],[[1869,2],[1980,2]]], [1927,[5737.72,2898.55,0],[[1870,2],[1981,2],[1982,2]]], [1928,[5545.13,3071.08,0],[[1870,2],[1983,2]]], [1929,[5629.58,3320.12,0],[[1871,2],[1984,2]]], [1930,[6350.07,2582.84,-1.58946e-007],[[1872,2],[1985,2],[1986,2]]], [1931,[6368.95,2764.9,0],[[1872,2]]], +[1932,[6508.66,2695.9,0],[[1873,2]]], [1933,[6420.74,2585.3,0],[[1873,2]]], [1934,[6696.67,2762.17,0],[[1876,2]]], [1935,[6731.37,2726.52,0],[[1876,2],[1987,2],[1936,2]]], [1936,[6605.48,2575.7,0],[[1877,2],[1935,2],[1988,2],[1936,2]]], [1937,[6554.87,2510.67,-1.19209e-007],[[1877,2],[1938,2],[1937,2],[1989,2]]], +[1938,[6545.48,2522.7,0],[[1937,2],[2043,2],[1938,2],[1877,2]]], [1939,[6873.24,3091.06,1.19209e-007],[[1878,2],[1990,2],[1991,2],[1992,2]]], [1940,[6868.41,2994.4,0],[[1879,2],[1991,2]]], [1941,[9500.69,2962.8,0],[[1880,2],[1993,2]]], [1942,[4682.44,12235.2,0],[[1881,2],[1994,2]]], [1943,[12214.3,7849.35,0],[[1882,2],[1943,2],[1995,2]]], +[1944,[12797.7,8619.57,0],[[1883,2],[1996,2]]], [1945,[12563.3,8666.31,0],[[1884,2],[1997,2],[1945,2]]], [1946,[12445.4,8667.04,0],[[1884,2]]], [1947,[12639.7,8546.75,0],[[1885,2],[1998,2],[1999,2]]], [1948,[12210.5,8108.77,-2.54313e-006],[[1886,2],[1948,2],[2000,2]]], [1949,[12297.1,8346.67,0],[[1887,2]]], +[1950,[12484.4,9560.74,0],[[1888,2],[1950,2],[2001,2]]], [1951,[12633.6,9750.74,0],[[1891,2],[2002,2],[2003,2]]], [1952,[12105.7,9728.76,0],[[1892,2]]], [1953,[10885.8,11445.6,0],[[1894,2],[2004,2]]], [1954,[12319.3,9871.67,0],[[1895,2],[2005,2]]], [1955,[10285.8,12440.1,0],[[1896,2],[2006,2]]], +[1956,[8144.78,11847.2,-1.52588e-005],[[1898,2],[1957,2]]], [1957,[8210.66,11921.3,0],[[1900,2],[1956,2],[1957,2]]], [1958,[9274.82,12058.7,0],[[1901,2],[2007,2]]], [1959,[8858.66,12203.5,0],[[1902,2],[2008,2]]], [1960,[10493.3,2679.83,0],[[1903,2],[2009,2]]], [1961,[10797.5,4158.11,-3.05176e-005],[[1904,2],[2010,2]]], +[1962,[11965.2,4585.64,-1.01725e-005],[[1905,2],[2011,2],[2012,2]]], [1963,[12054.9,5111.3,-2.54313e-006],[[1906,2],[2013,2],[2014,2]]], [1964,[12417.7,5738.82,0],[[1908,2],[2015,2]]], [1965,[12672.3,6174.13,0],[[1909,2],[2016,2]]], [1966,[2271.8,5247.09,0],[[1911,2]]], [1967,[2260.08,5328.91,5.08626e-006],[[1911,2],[2017,2],[2018,2]]], +[1968,[2256.39,5153.36,0],[[1912,2]]], [1969,[2126.01,4745.84,0],[[1913,2],[2019,2]]], [1970,[2847.92,4049.91,0],[[1917,2],[2020,2]]], [1971,[4496.46,4539.97,0],[[1919,2],[1976,2]]], [1972,[4570.87,4709.64,-3.05176e-005],[[1919,2],[2021,2]]], [1973,[4258.05,4147.19,5.08626e-006],[[1920,2],[1974,2],[1973,2],[2022,2]]], +[1974,[4248.47,4168.56,7.62939e-006],[[1973,2],[1974,2],[1920,2]]], [1975,[4410.67,4143.07,0],[[1921,2],[2023,2]]], [1976,[4533.49,4442.98,0],[[1922,2],[1971,2]]], [1977,[4858.74,4115.54,1.01725e-005],[[1923,2],[2024,2],[2025,2]]], [1978,[1802.39,7661.68,0],[[1924,2],[2026,2]]], [1979,[1857.56,12055.4,-5.08626e-006],[[1925,2],[1979,2],[2027,2]]], +[1980,[4018.17,12122.7,0],[[1926,2],[2028,2]]], [1981,[5812.04,2802.15,2.54313e-006],[[1927,2],[2029,2],[1981,2],[2030,2]]], [1982,[5773.39,2822.07,7.62939e-006],[[2029,2],[1927,2]]], [1983,[5491.41,3067.86,-1.27157e-006],[[1928,2],[2031,2],[1983,2],[2032,2]]], [1984,[5543.9,3439.85,0],[[1929,2],[2033,2]]], [1985,[6360.56,2521.05,0],[[1930,2],[2034,2],[2035,2]]], +[1986,[6308.28,2615.8,0],[[1930,2],[1986,2],[2036,2]]], [1987,[6795.08,2668.62,0],[[1935,2],[2037,2],[2038,2],[2039,2],[2040,2],[2041,2]]], [1988,[6647.59,2541.51,0],[[1936,2],[2042,2],[2039,2],[2038,2]]], [1989,[6446.47,2361.88,0],[[1937,2],[2044,2],[2035,2],[2045,2]]], [1990,[7001.12,3178.46,0],[[1939,2],[2046,2]]], [1991,[6899.46,3035.33,9.53674e-007],[[1939,2],[1940,2]]], +[1992,[6842.93,3127.6,0],[[1939,2],[2047,2],[2048,2]]], [1993,[9537.74,2850.53,0],[[1941,2],[2049,2]]], [1994,[4511.5,12235.3,0],[[1942,2],[2050,2]]], [1995,[12195.4,7869.77,-2.54313e-006],[[1943,2],[1995,2],[2000,2]]], [1996,[12841.4,8588.48,0],[[1944,2],[2051,2]]], [1997,[12566.2,8671.93,0],[[1945,2]]], +[1998,[12666.3,8432.65,0],[[1947,2],[1998,2],[2052,2]]], [1999,[12761.6,8469.7,-1.58946e-007],[[1947,2],[1999,2],[2053,2]]], [2000,[12242.1,8020.93,2.54313e-006],[[1948,2],[1995,2],[2000,2]]], [2001,[12464.4,9572.61,0],[[1950,2]]], [2002,[12728.7,9828.25,0],[[1951,2],[2054,2],[2055,2]]], [2003,[12632.7,9611.74,0],[[1951,2],[2056,2]]], +[2004,[10888.2,11593.7,-1.52588e-005],[[1953,2],[2057,2]]], [2005,[12425.9,9858.99,-9.53674e-007],[[1954,2],[2055,2]]], [2006,[10456.7,12416.1,0],[[1955,2],[2058,2]]], [2007,[9392.24,12098.3,0],[[1958,2],[2059,2]]], [2008,[8874.51,12368.8,0],[[1959,2],[2060,2]]], [2009,[10491.4,2619.54,4.76837e-007],[[1960,2],[2061,2]]], +[2010,[10747.2,4167.07,2.03451e-005],[[1961,2],[2010,2],[2062,2]]], [2011,[12065.9,4541.07,0],[[1962,2],[2063,2]]], [2012,[11969.6,4481.36,0],[[1962,2],[2064,2]]], [2013,[12174.6,5213.63,0],[[1963,2],[2065,2]]], [2014,[11941.4,5084.25,0],[[1963,2],[2066,2]]], [2015,[12485.1,5705.11,-1.27157e-006],[[1964,2],[2015,2],[2067,2]]], +[2016,[12789.2,6185.88,9.53674e-007],[[1965,2],[2068,2]]], [2017,[2095.13,5284.88,0],[[1967,2],[2069,2]]], [2018,[2266.69,5386.08,0],[[1967,2]]], [2019,[2043.79,4657.2,1.52588e-005],[[1969,2],[2070,2]]], [2020,[2873.54,4010.62,1.01725e-005],[[1970,2],[2071,2],[2072,2]]], [2021,[4625.67,4721.47,0],[[1972,2],[2021,2],[2073,2]]], +[2022,[4283.75,4022.07,0],[[1973,2],[2074,2]]], [2023,[4427.79,3978.23,0],[[1975,2],[2075,2]]], [2024,[4946.72,4021.62,0],[[1977,2],[2076,2]]], [2025,[4975.88,4155.83,-5.08626e-006],[[1977,2],[2077,2],[2025,2],[2078,2]]], [2026,[1688.5,7741.73,0],[[1978,2],[2079,2]]], [2027,[1872.64,12212.9,-1.52588e-005],[[1979,2],[2080,2]]], +[2028,[4137.49,12102.2,0],[[1980,2],[2081,2]]], [2029,[5786.86,2806.51,0],[[1981,2],[1982,2],[2029,2]]], [2030,[5891.68,2730.74,0],[[1981,2],[2082,2]]], [2031,[5509.05,3080.94,0],[[1983,2]]], [2032,[5389.62,2982.56,0],[[1983,2],[2032,2],[2083,2]]], [2033,[5439.14,3488.88,0],[[1984,2],[2084,2]]], +[2034,[6388.3,2523.62,0],[[1985,2],[2034,2],[2085,2]]], [2035,[6343.96,2435.21,0],[[1985,2],[1989,2],[2035,2],[2086,2],[2087,2],[2044,2]]], [2036,[6281.59,2495.11,4.76837e-007],[[1986,2],[2086,2]]], [2037,[6824.97,2728.63,0],[[1987,2],[2088,2],[2041,2]]], [2038,[6713.09,2620.58,0],[[1987,2],[1988,2],[2038,2],[2039,2]]], [2039,[6744.53,2582.74,0],[[1987,2],[1988,2],[2038,2],[2042,2],[2089,2]]], +[2040,[6888.27,2589.9,0],[[1987,2],[2090,2],[2089,2],[2091,2],[2092,2]]], [2041,[6876.44,2686.12,0],[[1987,2],[2037,2],[2093,2],[2092,2]]], [2042,[6677.96,2509.78,0],[[1988,2],[2039,2],[2094,2]]], [2043,[6541.55,2541.16,0],[[1938,2]]], [2044,[6397.44,2386.37,0],[[1989,2],[2035,2],[2044,2],[2095,2]]], [2045,[6506.07,2310.59,0],[[1989,2],[2096,2],[2097,2],[2098,2],[2045,2]]], +[2046,[7147.52,3266.39,0],[[1990,2],[2099,2]]], [2047,[6828.31,3171.06,0],[[1992,2]]], [2048,[6790.3,3109.95,-4.76837e-007],[[1992,2]]], [2049,[9598.7,2745.75,0],[[1993,2],[2100,2]]], [2050,[4444.72,12201.3,-1.52588e-005],[[1994,2],[2101,2]]], [2051,[12879,8602.41,0],[[1996,2],[2102,2],[2103,2]]], +[2052,[12690.9,8404.78,-3.17891e-007],[[1998,2],[2053,2],[2104,2]]], [2053,[12764.3,8408.78,0],[[1999,2],[2052,2],[2105,2]]], [2054,[12810.2,9925.29,0],[[2002,2],[2106,2],[2107,2]]], [2055,[12651.4,9860.15,-1.19209e-007],[[2002,2],[2005,2],[2108,2],[2055,2]]], [2056,[12593.5,9454.31,0],[[2003,2],[2109,2]]], [2057,[10903.6,11619.7,0],[[2004,2],[2110,2],[2111,2]]], +[2058,[10580.2,12404.9,0],[[2006,2],[2112,2]]], [2059,[9494.31,12090.1,0],[[2007,2],[1669,2]]], [2060,[8902.01,12489.2,-7.62939e-006],[[2008,2],[2113,2]]], [2061,[10455.1,2529.67,0],[[2009,2],[2114,2]]], [2062,[10727.5,4075.8,0],[[2010,2],[2115,2]]], [2063,[12143.9,4534.34,-5.08626e-006],[[2011,2],[2063,2],[2116,2]]], +[2064,[12049.9,4381.2,0],[[2012,2],[2117,2]]], [2065,[12241.2,5224.47,2.54313e-006],[[2013,2],[2065,2],[2118,2]]], [2066,[11773.9,5027.72,0],[[2014,2],[2119,2]]], [2067,[12574.3,5752.24,-3.8147e-006],[[2015,2],[2120,2]]], [2068,[12915.6,6249.51,0],[[2016,2],[2121,2]]], [2069,[1992.34,5297.05,0],[[2017,2],[2122,2],[2123,2]]], +[2070,[2001.8,4565.06,0],[[2019,2],[2124,2]]], [2071,[2863.02,4019.46,0],[[2020,2]]], [2072,[2909.99,3990.78,0],[[2020,2],[2125,2],[2072,2]]], [2073,[4670.65,4703.74,0],[[2021,2]]], [2074,[4257.63,3893.03,0],[[2022,2],[2126,2]]], [2075,[4425.42,3953.92,0],[[2023,2],[2127,2],[2128,2]]], +[2076,[5016.79,3940.75,0],[[2024,2],[2129,2]]], [2077,[4952.68,4153.86,0],[[2025,2]]], [2078,[5066.79,4189.8,-5.08626e-006],[[2025,2],[2078,2],[2130,2]]], [2079,[1613.22,7794.12,0],[[2026,2]]], [2080,[1863.9,12329.6,0],[[2027,2],[2131,2]]], [2081,[4164.82,12120.4,-1.01725e-005],[[2028,2],[2132,2],[2081,2],[2133,2]]], +[2082,[5861.93,2646.16,0],[[2030,2],[2082,2],[2134,2]]], [2083,[5362.81,2934.86,-1.27157e-006],[[2032,2],[2083,2],[2135,2]]], [2084,[5355,3529.35,0],[[2033,2],[2136,2]]], [2085,[6434.18,2560.42,0],[[2034,2]]], [2086,[6306.2,2442.96,0],[[2035,2],[2036,2],[2137,2]]], [2087,[6206.69,2300.29,0],[[2035,2],[2138,2]]], +[2088,[6865.74,2742.43,0],[[2037,2]]], [2089,[6779.15,2549.06,0],[[2039,2],[2040,2],[2090,2],[2139,2]]], [2090,[6838.68,2519.59,0],[[2040,2],[2089,2],[2139,2],[2090,2],[2140,2],[2141,2]]], [2091,[6938.74,2524.19,0],[[2040,2],[2142,2],[2141,2],[2143,2]]], [2092,[6953.47,2628.45,0],[[2040,2],[2041,2],[2093,2],[2144,2],[2145,2]]], [2093,[6967.72,2687.95,0],[[2041,2],[2092,2],[2146,2],[2147,2]]], +[2094,[6659.39,2471.65,0],[[2042,2],[2148,2],[2149,2],[2140,2]]], [2095,[6342.82,2316.21,-1.58946e-007],[[2044,2],[2097,2],[2150,2]]], [2096,[6598.21,2264.43,0],[[2045,2],[2151,2],[2098,2],[2152,2],[2096,2]]], [2097,[6410.04,2227.09,0],[[2045,2],[2095,2],[2153,2]]], [2098,[6569.18,2339.31,0],[[2045,2],[2096,2],[2098,2],[2154,2],[2148,2]]], [2099,[7280.08,3318.27,0],[[2046,2],[2155,2]]], +[2100,[9633.73,2654.55,0],[[2049,2],[2156,2]]], [2101,[4342.35,12124.6,3.05176e-005],[[2050,2],[2133,2]]], [2102,[12950.5,8445.46,0],[[2051,2],[2157,2]]], [2103,[12826.8,8814.46,0],[[2051,2],[2158,2]]], [2104,[12685.9,8303.58,0],[[2052,2],[2159,2],[2104,2]]], [2105,[12821.1,8377.18,1.58946e-007],[[2053,2],[2105,2],[2160,2],[2157,2]]], +[2106,[12862.6,10014.1,0],[[2054,2],[2161,2],[2162,2]]], [2107,[12772.8,9961.3,0],[[2054,2],[2163,2],[2161,2]]], [2108,[12693.2,9861.06,0],[[2055,2]]], [2109,[12625.6,9432.65,-1.58946e-007],[[2056,2],[2109,2],[2164,2]]], [2110,[10987.7,11724.3,0],[[2057,2],[2165,2]]], [2111,[11031.2,11540.9,0],[[2057,2],[2166,2]]], +[2112,[10668.8,12417.6,1.01725e-005],[[2058,2],[2167,2],[2168,2]]], [2113,[8966.04,12548.7,0],[[2060,2],[2170,2]]], [2114,[10458.8,2499.78,-1.58946e-007],[[2061,2],[2171,2],[2172,2]]], [2115,[10812.3,3987.44,-1.52588e-005],[[2062,2],[2173,2]]], [2116,[12227.2,4495.26,0],[[2063,2],[2174,2]]], [2117,[12106.2,4265.19,0],[[2064,2],[2175,2]]], +[2118,[12337.5,5299.37,3.8147e-006],[[2065,2],[2176,2]]], [2119,[11664,4966.64,0],[[2066,2],[2177,2]]], [2120,[12631.7,5745.16,1.27157e-006],[[2067,2],[2178,2],[2120,2]]], [2121,[13029.6,6257.61,0],[[2068,2],[2179,2]]], [2122,[1906.12,5273.68,-5.08626e-006],[[2069,2],[2180,2],[2181,2],[2122,2]]], [2123,[1921.71,5296.8,0],[[2181,2],[2069,2]]], +[2124,[2007.01,4480.9,1.52588e-005],[[2070,2],[2182,2]]], [2125,[2991.55,3866.45,1.52588e-005],[[2072,2],[2183,2]]], [2126,[4219.73,3781.68,0],[[2074,2],[2184,2]]], [2127,[4482.67,3771.79,0],[[2075,2],[2185,2]]], [2128,[4357.18,3934.95,0],[[2075,2]]], [2129,[5126.06,3817.9,0],[[2076,2],[2186,2]]], +[2130,[5160.66,4192.11,0],[[2078,2],[2187,2]]], [2131,[1849.67,12425.6,0],[[2080,2],[2188,2]]], [2132,[4156.22,12111,0],[[2081,2]]], [2133,[4286.26,12107.4,0],[[2081,2],[2101,2]]], [2134,[5875.93,2513.51,0],[[2082,2],[2189,2]]], [2135,[5221.18,2879.78,0],[[2083,2],[2135,2],[2190,2]]], +[2136,[5269.66,3602.43,0],[[2084,2],[2191,2]]], [2137,[6177.13,2376.44,0],[[2086,2],[2137,2],[2192,2]]], [2138,[6080.06,2242.11,0],[[2087,2],[2193,2]]], [2139,[6804.09,2565.47,0],[[2089,2],[2090,2]]], [2140,[6752.29,2421.02,0],[[2090,2],[2094,2],[2194,2],[2141,2],[2140,2],[2195,2],[2154,2],[2196,2]]], [2141,[6862.53,2451.9,0],[[2090,2],[2091,2],[2140,2],[2197,2],[2194,2],[2143,2]]], +[2142,[7016.96,2385.42,0],[[2091,2],[2198,2],[2199,2]]], [2143,[6912.75,2413.96,0],[[2141,2],[2194,2],[2197,2],[2251,2],[2252,2],[2091,2],[2199,2]]], [2144,[7023.95,2573.89,0],[[2092,2],[2145,2],[2200,2]]], [2145,[7004.37,2561.58,0],[[2144,2],[2092,2]]], [2146,[6937.32,2711.57,0],[[2093,2]]], [2147,[7067.04,2717.35,0],[[2093,2],[2201,2],[2202,2]]], +[2148,[6605.92,2425.34,0],[[2094,2],[2098,2],[2148,2],[2154,2]]], [2149,[6695.86,2444.51,0],[[2094,2],[2149,2]]], [2150,[6309,2289.87,0],[[2095,2],[2150,2],[2203,2]]], [2151,[6655.81,2282.16,0],[[2096,2],[2204,2],[2151,2],[2205,2],[2195,2]]], [2152,[6565.12,2253.58,0],[[2096,2]]], [2153,[6259.09,2157.09,0],[[2097,2],[2206,2]]], +[2154,[6643.53,2380.34,0],[[2098,2],[2140,2],[2148,2],[2195,2]]], [2155,[7350.28,3288.99,0],[[2099,2],[2207,2]]], [2156,[9658.87,2563.53,0],[[2100,2],[2208,2]]], [2157,[12971.9,8371.63,1.19209e-007],[[2102,2],[2105,2],[2209,2],[2157,2],[2160,2]]], [2158,[12823.2,8966.68,4.76837e-007],[[2103,2],[2210,2]]], [2159,[12694.9,8282.98,0],[[2104,2],[2211,2],[2159,2]]], +[2160,[12902.9,8350.78,-9.53674e-008],[[2105,2],[2157,2],[2160,2],[2212,2],[2211,2]]], [2161,[12815.4,10036.3,0],[[2106,2],[2107,2],[2161,2]]], [2162,[12910.2,10094.5,0],[[2106,2],[2213,2],[2214,2],[2215,2],[2216,2]]], [2163,[12703.3,10014.3,0],[[2107,2]]], [2164,[12753.9,9431.21,0],[[2109,2],[2217,2]]], [2165,[11026.8,11804.4,-1.52588e-005],[[2110,2],[2218,2]]], +[2166,[11144.4,11486.6,3.05176e-005],[[2111,2],[2219,2]]], [2167,[10769.6,12436.3,0],[[2112,2],[2220,2],[2167,2],[2221,2]]], [2168,[10663.2,12499,0],[[2112,2],[2222,2],[2168,2],[2223,2]]], [2169,[9661.09,12090.2,7.62939e-006],[[1669,2]]], [2170,[9073.15,12572.9,0],[[2113,2],[2224,2]]], [2171,[10457.8,2372.75,-9.53674e-008],[[2114,2],[2225,2],[2226,2],[2227,2],[2228,2]]], +[2172,[10320.8,2480.97,0],[[2114,2],[2229,2]]], [2173,[10829.2,3965.95,0],[[2115,2],[2173,2],[2230,2]]], [2174,[12259.1,4492.86,5.08626e-006],[[2116,2],[2231,2],[2174,2],[2232,2]]], [2175,[12141.1,4141.69,0],[[2117,2],[2233,2]]], [2176,[12428.7,5347.5,-1.27157e-006],[[2118,2],[2234,2],[2235,2]]], [2177,[11608.9,4880.94,0],[[2119,2],[2236,2],[2237,2]]], +[2178,[12758.4,5724.01,0],[[2120,2],[2238,2]]], [2179,[13141.4,6231.25,4.76837e-007],[[2121,2],[2239,2]]], [2180,[1832.42,5124.31,0],[[2122,2],[2240,2]]], [2181,[1912.24,5290.58,-1.52588e-005],[[2122,2],[2123,2]]], [2182,[2009.23,4469.13,5.08626e-006],[[2124,2],[2182,2],[2241,2]]], [2183,[3089.88,3814.81,0],[[2125,2],[2242,2]]], +[2184,[4143.69,3729.15,0],[[2126,2],[2243,2]]], [2185,[4524.29,3646.36,0],[[2127,2],[2244,2]]], [2186,[5213.55,3708.54,0],[[2129,2],[2191,2]]], [2187,[5219.91,4219.57,0],[[2130,2]]], [2188,[1780.8,12526,0],[[2131,2],[2245,2]]], [2189,[5932.21,2459.01,3.8147e-006],[[2134,2],[2246,2]]], +[2190,[5124.94,2884.37,-6.35783e-007],[[2135,2],[2190,2],[2247,2]]], [2191,[5260.7,3641.05,7.62939e-006],[[2136,2],[2186,2],[2191,2],[2248,2]]], [2192,[6064.57,2402.9,0],[[2137,2],[2246,2]]], [2193,[5921.62,2197.05,0],[[2138,2],[2249,2]]], [2194,[6819.52,2391.75,0],[[2140,2],[2141,2],[2250,2],[2143,2]]], [2195,[6679.25,2347.17,0],[[2140,2],[2151,2],[2154,2],[2204,2],[2205,2]]], +[2196,[6704.15,2442.55,0],[[2140,2]]], [2197,[6884.78,2483.98,0],[[2141,2],[2143,2]]], [2198,[6891.11,2289.22,0],[[2142,2]]], [2199,[7039.98,2403.78,0],[[2142,2],[2143,2],[2252,2]]], [2200,[7063.51,2598.68,0],[[2144,2],[2253,2],[2202,2],[2254,2]]], [2201,[7013.81,2794.62,0],[[2147,2],[2201,2],[2255,2]]], +[2202,[7095,2679.13,0],[[2147,2],[2200,2],[2202,2],[2253,2]]], [2203,[6236.57,2227.13,0],[[2150,2],[2256,2]]], [2204,[6715.37,2300.03,0],[[2151,2],[2195,2],[2257,2],[2250,2]]], [2205,[6654.24,2305.49,0],[[2151,2],[2195,2]]], [2206,[6228.44,2121.69,0],[[2153,2],[2206,2],[2258,2]]], [2207,[7362.49,3273.84,0],[[2155,2],[2259,2],[2260,2]]], +[2208,[9681.25,2480.88,0],[[2156,2],[2261,2],[2208,2],[2262,2]]], [2209,[13025.8,8177.16,-1.58946e-007],[[2157,2],[2263,2],[2264,2]]], [2210,[12840.1,9096.71,0],[[2158,2],[2265,2]]], [2211,[12761.2,8292.86,-3.17891e-007],[[2159,2],[2160,2],[2266,2]]], [2212,[12965.2,8148.26,0],[[2160,2],[2267,2]]], [2213,[12819.7,10128.3,0],[[2162,2],[2268,2],[2213,2]]], +[2214,[12992.4,10057.2,0],[[2162,2],[2269,2]]], [2215,[12986.6,10281.2,0],[[2162,2],[2270,2],[2216,2]]], [2216,[12857.9,10220.5,0],[[2268,2],[2362,2],[2363,2],[2162,2],[2215,2]]], [2217,[12832.4,9375.13,0],[[2164,2],[2271,2]]], [2218,[11012.4,11881.3,0],[[2165,2],[2218,2],[2272,2]]], [2219,[11260.7,11477.2,0],[[2166,2],[2219,2],[2273,2]]], +[2220,[10910.5,12410.3,0],[[2167,2],[2274,2],[2275,2]]], [2221,[10804.5,12480.2,0],[[2167,2]]], [2222,[10653.2,12490.5,1.52588e-005],[[2168,2]]], [2223,[10654.3,12596.4,3.05176e-005],[[2168,2],[2276,2]]], [2224,[9197.37,12594.5,0],[[2170,2],[2277,2]]], [2225,[10515,2348.13,0],[[2171,2],[2278,2],[2227,2]]], +[2226,[10356.6,2308.17,0],[[2171,2],[2226,2],[2279,2]]], [2227,[10483.8,2305.77,0],[[2171,2],[2225,2],[2280,2],[2281,2]]], [2228,[10391.3,2443.02,-4.76837e-007],[[2171,2]]], [2229,[10296.2,2477.77,-1.27157e-006],[[2172,2],[2282,2],[2283,2]]], [2230,[10812.3,3836.65,0],[[2173,2],[2284,2]]], [2231,[12245.8,4496.3,7.62939e-006],[[2174,2]]], +[2232,[12374.2,4467.97,-1.52588e-005],[[2174,2],[2285,2]]], [2233,[12140.2,4054.06,-2.54313e-006],[[2175,2],[2233,2],[2286,2]]], [2234,[12532.2,5425,0],[[2176,2],[2287,2]]], [2235,[12386.5,5261.02,0],[[2176,2],[2288,2]]], [2236,[11565.1,4915.53,-5.08626e-006],[[2177,2],[2237,2],[2236,2],[2289,2]]], [2237,[11560.9,4889.88,-3.8147e-006],[[2236,2],[2237,2],[2177,2]]], +[2238,[12878.6,5674.08,0],[[2178,2],[2290,2]]], [2239,[13261,6238.86,0],[[2179,2],[2291,2]]], [2240,[1757.83,5093.61,0],[[2180,2],[2240,2]]], [2241,[1971.5,4349.19,-1.52588e-005],[[2182,2],[2292,2]]], [2242,[3222.92,3724.7,-1.52588e-005],[[2183,2],[2293,2]]], [2243,[3991.43,3750.77,0],[[2184,2],[2294,2]]], +[2244,[4509.57,3534.62,0],[[2185,2],[2295,2]]], [2245,[1713.09,12641.9,0],[[2188,2],[2296,2]]], [2246,[6032.7,2432.28,0],[[2189,2],[2192,2]]], [2247,[5012.97,2885.86,0],[[2190,2],[2297,2]]], [2248,[5333.74,3666.34,-1.52588e-005],[[2191,2],[2298,2]]], [2249,[5771.66,2149.99,0],[[2193,2],[2299,2]]], +[2250,[6845.22,2349.93,0],[[2194,2],[2204,2],[2300,2]]], [2251,[6842.43,2346.21,0],[[2143,2]]], [2252,[6990.96,2459.81,0],[[2143,2],[2199,2],[2254,2]]], [2253,[7057.47,2640.59,0],[[2200,2],[2202,2]]], [2254,[7095.01,2546.24,0],[[2200,2],[2252,2],[2301,2]]], [2255,[6990.71,2731.12,0],[[2201,2]]], +[2256,[6159.45,2208.22,0],[[2203,2],[2302,2]]], [2257,[6781.93,2313.43,0],[[2204,2],[2257,2]]], [2258,[6239.41,2051.32,0],[[2206,2],[2303,2]]], [2259,[7412.49,3336.48,0],[[2207,2],[2304,2]]], [2260,[7433.38,3194.72,0],[[2207,2],[2305,2]]], [2261,[9661.13,2490.45,0],[[2208,2]]], +[2262,[9787.46,2396.04,7.62939e-006],[[2208,2],[2306,2]]], [2263,[13039.3,7998.8,0],[[2209,2],[2307,2]]], [2264,[13061.8,8180.9,0],[[2209,2]]], [2265,[12864.4,9241.88,0],[[2210,2],[2271,2]]], [2266,[12815.4,8182.83,0],[[2211,2],[2308,2],[2309,2]]], [2267,[12989.4,8033,-1.19209e-007],[[2212,2],[2267,2],[2310,2]]], +[2268,[12848.9,10173.5,0],[[2213,2],[2216,2],[2311,2]]], [2269,[13005.2,10061,0],[[2214,2],[2312,2],[2313,2]]], [2270,[13022.3,10376.1,0],[[2215,2],[2314,2]]], [2271,[12878,9371.99,1.58946e-007],[[2217,2],[2265,2],[2315,2]]], [2272,[11081.3,11951.3,0],[[2218,2],[2316,2]]], [2273,[11399.2,11393,0],[[2219,2],[2317,2]]], +[2274,[10972.3,12413,0],[[2220,2],[2318,2],[2319,2]]], [2275,[10877.3,12362.5,0],[[2220,2]]], [2276,[10656.8,12724.5,0],[[2223,2],[2320,2]]], [2277,[9267.61,12670,0],[[2224,2],[2321,2]]], [2278,[10586.6,2387.76,0],[[2225,2],[2322,2],[2278,2],[2323,2],[2280,2]]], [2279,[10268.1,2264.39,0],[[2226,2],[2324,2]]], +[2280,[10535.1,2253.2,0],[[2227,2],[2278,2],[2325,2],[2326,2],[2327,2]]], [2281,[10396.4,2232.01,0],[[2227,2],[2328,2],[2325,2]]], [2282,[10180.7,2386.87,0],[[2229,2],[2329,2]]], [2283,[10182.1,2555.45,0],[[2229,2],[2330,2]]], [2284,[10775.6,3699.55,0],[[2230,2],[2331,2]]], [2285,[12391.4,4454.08,-5.08626e-006],[[2232,2],[2332,2],[2333,2]]], +[2286,[12044.4,3979.57,3.8147e-006],[[2233,2],[2334,2]]], [2287,[12632.8,5433.9,0],[[2234,2],[2287,2],[2335,2]]], [2288,[12312.1,5155.08,0],[[2235,2],[2336,2]]], [2289,[11568.1,4968.62,1.01725e-005],[[2236,2],[2289,2],[2337,2]]], [2290,[12948.1,5614.28,0],[[2238,2],[2338,2]]], [2291,[13314.2,6251.6,-3.57628e-007],[[2239,2],[2339,2],[2340,2],[2341,2]]], +[2292,[1957.94,4332.38,0],[[2241,2],[2292,2],[2342,2]]], [2293,[3278.17,3689.85,1.52588e-005],[[2242,2],[2343,2]]], [2294,[3868.28,3783.42,0],[[2243,2],[2344,2]]], [2295,[4551.65,3421.45,-7.62939e-006],[[2244,2],[2345,2]]], [2296,[1665.59,12753.6,0],[[2245,2],[2346,2]]], [2297,[4944.16,2840.95,0],[[2247,2],[2347,2]]], +[2298,[5386.02,3689.89,5.08626e-006],[[2248,2],[2348,2]]], [2299,[5611.44,2093.67,0],[[2249,2],[2349,2]]], [2300,[6802.67,2320.34,0],[[2250,2]]], [2301,[7152.42,2543.58,0],[[2254,2],[2350,2],[2301,2],[2351,2],[2352,2]]], [2302,[6020.85,2119.48,0],[[2256,2],[2353,2]]], [2303,[6178.68,2017.08,0],[[2258,2],[2354,2]]], +[2304,[7460.99,3408.43,0],[[2259,2],[2355,2]]], [2305,[7556.2,3163.37,0],[[2260,2],[2356,2],[2357,2],[2305,2]]], [2306,[9688.8,2317.47,7.62939e-006],[[2262,2],[2358,2]]], [2307,[13047,7825.54,0],[[2263,2],[2359,2]]], [2308,[12817.8,8092.88,0],[[2308,2],[2309,2]]], [2309,[12829.6,8112.48,0],[[2308,2],[2266,2]]], +[2310,[12956.4,8029.41,-4.76837e-007],[[2267,2],[2360,2],[2361,2],[2310,2]]], [2311,[12891.6,10147.6,0],[[2268,2]]], [2312,[12976.6,9889.01,0],[[2269,2],[2364,2]]], [2313,[13058.8,10224.3,0],[[2269,2],[2365,2]]], [2314,[13100.1,10356.5,0],[[2270,2],[2365,2],[2366,2]]], [2315,[12919.9,9576.15,0],[[2271,2],[2367,2],[2364,2]]], +[2316,[11140.1,12031.9,1.01725e-005],[[2272,2],[2368,2],[2369,2]]], [2317,[11441,11364.1,0],[[2273,2]]], [2318,[11037.2,12373.1,-3.8147e-006],[[2274,2],[2370,2],[2371,2],[2372,2]]], [2319,[11006.1,12439.6,-1.52588e-005],[[2274,2]]], [2320,[10658.1,12744,0],[[2276,2]]], [2321,[9314.54,12773,0],[[2277,2],[2373,2]]], +[2322,[10662,2445.2,-1.58946e-007],[[2278,2],[2374,2],[2375,2]]], [2323,[10609.5,2316.58,0],[[2278,2],[2376,2]]], [2324,[10166.6,2208.45,0],[[2279,2],[2377,2]]], [2325,[10425.5,2180.69,0],[[2280,2],[2378,2],[2281,2]]], [2326,[10600.9,2310.23,0],[[2280,2]]], [2327,[10603.4,2224.38,0],[[2280,2]]], +[2328,[10383.3,2210.69,4.76837e-007],[[2281,2],[2379,2]]], [2329,[10095.7,2339.76,0],[[2282,2],[2380,2]]], [2330,[10074.9,2600.38,3.8147e-006],[[2283,2],[2381,2]]], [2331,[10768.7,3690.18,1.01725e-005],[[2284,2],[2331,2],[2382,2]]], [2332,[12467.3,4379.62,0],[[2285,2],[2383,2],[2333,2]]], [2333,[12513.1,4430.38,0],[[2285,2],[2332,2],[2384,2]]], +[2334,[11971.4,3900.98,0],[[2286,2],[2385,2],[2334,2]]], [2335,[12745.5,5440.15,0],[[2287,2],[2386,2]]], [2336,[12223.9,5081.65,0],[[2288,2],[2387,2]]], [2337,[11539.2,5003.93,0],[[2289,2]]], [2338,[13044.4,5529.55,2.38419e-007],[[2290,2],[2338,2],[2386,2],[2388,2]]], [2339,[13418.1,6249.06,0],[[2291,2],[2389,2],[2390,2],[2391,2],[2339,2]]], +[2340,[13304.1,6302.3,-3.17891e-007],[[2291,2],[2340,2],[2392,2]]], [2341,[13318.2,6136.75,-3.17891e-007],[[2291,2],[2393,2],[2341,2],[2394,2]]], [2342,[1871.96,4287.66,-1.52588e-005],[[2292,2],[2395,2]]], [2343,[3322.47,3719.21,5.08626e-006],[[2293,2],[2396,2],[2397,2]]], [2344,[3785.25,3857.54,1.52588e-005],[[2294,2],[2398,2]]], [2345,[4532.29,3407.48,0],[[2295,2],[2399,2],[2345,2]]], +[2346,[1633.41,12866.4,0],[[2296,2],[2400,2]]], [2347,[4893.17,2810.89,6.35783e-007],[[2297,2],[2401,2],[2402,2]]], [2348,[5428.67,3706.55,5.08626e-006],[[2298,2],[2348,2],[2403,2]]], [2349,[5464.51,2063.2,0],[[2299,2],[2404,2]]], [2350,[7135.9,2559.65,0],[[2301,2],[2350,2]]], [2351,[7257.18,2646.07,0],[[2301,2],[2405,2]]], +[2352,[7239.29,2419.43,0],[[2301,2],[2406,2]]], [2353,[5958.72,2057.21,0],[[2302,2]]], [2354,[6101.5,1969.4,0],[[2303,2],[2407,2]]], [2355,[7609.06,3464.15,0],[[2304,2],[2408,2]]], [2356,[7766.03,3174.09,0],[[2305,2],[2409,2]]], [2357,[7552.69,3152.58,0],[[2305,2],[2410,2]]], +[2358,[9593.71,2230.95,0],[[2306,2],[2411,2]]], [2359,[13055.8,7633.12,4.76837e-007],[[2307,2],[2412,2]]], [2360,[12846.6,8054.97,-4.76837e-007],[[2310,2]]], [2361,[12775.2,8040.3,-3.17891e-007],[[2308,2],[2310,2],[2413,2],[2414,2]]], [2362,[12751.7,10259.4,0],[[2216,2],[2415,2]]], [2363,[12951.6,10203.8,0],[[2216,2]]], +[2364,[12960.5,9807.18,0],[[2312,2],[2315,2],[2367,2],[2364,2]]], [2365,[13070.6,10241.3,0],[[2313,2],[2314,2],[2365,2],[2416,2]]], [2366,[13130.3,10306.9,0],[[2314,2],[2416,2]]], [2367,[12943.7,9715.74,0],[[2315,2],[2364,2],[2367,2],[2417,2],[2418,2]]], [2368,[11185.5,12144.8,0],[[2316,2],[2419,2]]], [2369,[11139.1,11986,0],[[2316,2]]], +[2370,[11128.9,12300.6,3.05176e-006],[[2318,2],[2420,2],[2421,2],[2422,2],[2423,2],[2419,2]]], [2371,[11047.1,12418.4,0],[[2318,2],[2424,2],[2371,2]]], [2372,[10987.5,12312.4,0],[[2318,2]]], [2373,[9326.05,12853.3,0],[[2321,2],[2425,2]]], [2374,[10727.2,2473.22,1.58946e-007],[[2322,2],[2426,2],[2376,2]]], [2375,[10685.3,2545.09,0],[[2322,2],[2375,2],[2427,2]]], +[2376,[10716.2,2382.5,0],[[2323,2],[2374,2]]], [2377,[10153.6,2190.7,0],[[2324,2],[2377,2],[2428,2]]], [2378,[10456.3,2117.03,0],[[2325,2],[2429,2],[2430,2],[2431,2]]], [2379,[10294.2,2146.66,0],[[2328,2],[2432,2],[2428,2]]], [2380,[10037.8,2289.25,0],[[2329,2],[2433,2]]], [2381,[10021.3,2635.32,0],[[2330,2],[2381,2]]], +[2382,[10718.2,3647.56,0],[[2331,2],[2434,2]]], [2383,[12520.5,4331.75,0],[[2332,2]]], [2384,[12641.8,4397.11,0],[[2333,2],[2435,2]]], [2385,[11946.5,3881.53,4.76837e-007],[[2334,2],[2436,2],[2437,2]]], [2386,[12870.3,5462.41,0],[[2335,2],[2338,2]]], [2387,[12165.7,5041.82,0],[[2336,2]]], +[2388,[13165.6,5496.62,4.76837e-007],[[2338,2],[2438,2]]], [2389,[13457.5,6241.04,0],[[2339,2],[2439,2],[2440,2]]], [2390,[13423.1,6293,1.58946e-007],[[2339,2],[2441,2],[2442,2]]], [2391,[13408.1,6233.12,0],[[2339,2],[2443,2]]], [2392,[13271.1,6299.45,4.76837e-007],[[2340,2]]], [2393,[13326.6,6141.46,0],[[2341,2]]], +[2394,[13281.1,6112.23,9.53674e-007],[[2341,2]]], [2395,[1811.21,4160.54,1.52588e-005],[[2342,2],[2444,2]]], [2396,[3357.54,3658.86,-5.08626e-006],[[2343,2],[2396,2],[2445,2]]], [2397,[3319.94,3846.51,1.52588e-005],[[2343,2],[2446,2]]], [2398,[3706.78,3873.13,1.01725e-005],[[2344,2],[2447,2],[2448,2]]], [2399,[4374.72,3416.76,0],[[2345,2],[2449,2]]], +[2400,[1603.48,12975.2,0],[[2346,2],[2450,2]]], [2401,[4790.95,2764.46,1.90735e-006],[[2347,2],[2451,2]]], [2402,[4871.97,2847.25,6.35783e-007],[[2347,2],[2452,2],[2402,2]]], [2403,[5445.32,3821.34,0],[[2348,2]]], [2404,[5323.26,2078.89,0],[[2349,2],[2453,2]]], [2405,[7313.23,2742.86,0],[[2351,2],[2454,2],[2455,2]]], +[2406,[7251.02,2398.1,0],[[2352,2],[2406,2],[2456,2]]], [2407,[6076.5,1944.51,0],[[2354,2]]], [2408,[7695.48,3486.77,1.58946e-007],[[2355,2],[2457,2],[2458,2],[2408,2],[2459,2]]], [2409,[7791.26,3182.26,-1.58946e-007],[[2356,2],[2460,2],[2461,2]]], [2410,[7538,3118.68,1.58946e-007],[[2357,2],[2462,2],[2463,2]]], [2411,[9558.59,2183.96,1.90735e-006],[[2358,2],[2464,2],[2465,2]]], +[2412,[13061.3,7507.84,0],[[2359,2],[2466,2]]], [2413,[12712.2,8088.49,-1.90735e-006],[[2361,2]]], [2414,[12839.5,8053.98,0],[[2361,2]]], [2415,[12694,10346,-1.90735e-006],[[2362,2],[2467,2]]], [2416,[13113.2,10244,0],[[2365,2],[2366,2],[2468,2]]], [2417,[13029.4,9684.98,0],[[2367,2]]], +[2418,[12865.9,9775.32,0],[[2367,2],[2469,2]]], [2419,[11211.7,12183.9,-3.8147e-006],[[2368,2],[2370,2],[2470,2],[2423,2],[2471,2]]], [2420,[11080.3,12244.8,-1.52588e-005],[[2370,2]]], [2421,[11180.3,12386.4,0],[[2370,2],[2472,2]]], [2422,[11096.6,12225.5,0],[[2370,2]]], [2423,[11243.6,12240,0],[[2370,2],[2419,2],[2473,2]]], +[2424,[11051.6,12481.5,3.8147e-006],[[2371,2],[2424,2],[2474,2]]], [2425,[9397.76,12959.7,0],[[2373,2],[2475,2]]], [2426,[10779.4,2575.54,-1.58946e-007],[[2374,2],[2476,2],[2477,2]]], [2427,[10643.9,2620.89,0],[[2375,2],[2478,2],[2479,2]]], [2428,[10169.8,2119.35,0],[[2377,2],[2379,2],[2480,2],[2432,2]]], [2429,[10350.1,2053.03,0],[[2378,2],[2481,2]]], +[2430,[10498.8,2008.85,4.76837e-007],[[2378,2]]], [2431,[10546.3,2143.79,0],[[2378,2],[2482,2],[2483,2]]], [2432,[10243.8,2129.91,0],[[2379,2],[2428,2],[2484,2],[2432,2],[2485,2]]], [2433,[9932.28,2227.01,0],[[2380,2],[2486,2],[2487,2]]], [2434,[10715.9,3634.75,0],[[2382,2],[2434,2],[2488,2]]], [2435,[12754.6,4414.72,0],[[2384,2],[2489,2]]], +[2436,[12001.2,3771.22,0],[[2385,2],[2490,2]]], [2437,[11852.9,3969.47,0],[[2385,2]]], [2438,[13244.3,5430.54,-5.96046e-008],[[2388,2],[2438,2],[2491,2],[2492,2]]], [2439,[13468.2,6346.01,-1.58946e-007],[[2389,2],[2493,2],[2494,2]]], [2440,[13437,6133.95,1.19209e-007],[[2389,2],[2495,2],[2440,2],[2496,2],[2443,2]]], [2441,[13405.5,6354.33,0],[[2390,2]]], +[2442,[13374,6296.4,0],[[2390,2]]], [2443,[13378.3,6171.04,0],[[2391,2],[2440,2],[2496,2]]], [2444,[1733.33,4041.33,0],[[2395,2],[2497,2]]], [2445,[3313.58,3561.08,0],[[2396,2],[2498,2]]], [2446,[3316.21,3938.71,-3.8147e-006],[[2397,2],[2446,2],[2499,2],[2500,2]]], [2447,[3574.68,3883.65,0],[[2398,2],[2501,2]]], +[2448,[3784.86,3802.15,-1.52588e-005],[[2398,2],[2502,2]]], [2449,[4322.92,3353.89,0],[[2399,2],[2503,2]]], [2450,[1627.71,13066.3,0],[[2400,2],[2504,2]]], [2451,[4663.02,2744.47,9.53674e-007],[[2401,2],[2505,2]]], [2452,[4848.85,2881.56,0],[[2402,2]]], [2453,[5205.51,2107.19,0],[[2404,2],[2506,2]]], +[2454,[7426.08,2879.75,0],[[2405,2],[2462,2]]], [2455,[7240.32,2821.47,0],[[2405,2],[2507,2]]], [2456,[7271.31,2274.75,0],[[2406,2],[2508,2],[2456,2],[2509,2]]], [2457,[7858.58,3505.34,0],[[2408,2],[2459,2],[2457,2]]], [2458,[7692.41,3474.28,0],[[2408,2],[2510,2]]], [2459,[7854.39,3527.04,0],[[2457,2],[2408,2]]], +[2460,[7943.13,3179.76,0],[[2409,2],[2511,2],[2512,2]]], [2461,[7733.42,3210.98,0],[[2409,2],[2513,2],[2514,2]]], [2462,[7483.68,2979.16,4.76837e-007],[[2410,2],[2454,2]]], [2463,[7447.96,3108.39,0],[[2410,2],[2515,2]]], [2464,[9472.66,2074.28,0],[[2411,2],[2516,2],[2464,2]]], [2465,[9707.33,2166.15,0],[[2411,2],[2517,2]]], +[2466,[13086.4,7400.75,-4.76837e-007],[[2412,2],[2518,2]]], [2467,[12621.3,10440.7,0],[[2415,2],[2467,2],[2519,2],[2520,2]]], [2468,[13157.3,10198.8,0],[[2416,2]]], [2469,[12835,9706.54,0],[[2418,2]]], [2470,[11246,12142.7,-5.08626e-006],[[2419,2],[2470,2],[2521,2]]], [2471,[11160.7,12239.1,0],[[2419,2]]], +[2472,[11205.6,12473.7,0],[[2421,2],[2522,2]]], [2473,[11302.9,12224.5,0],[[2423,2],[2523,2],[2524,2]]], [2474,[11056.9,12514.8,0],[[2424,2]]], [2475,[9424.8,13044.6,0],[[2425,2],[2525,2]]], [2476,[10818.2,2569.2,-3.17891e-007],[[2426,2],[2526,2],[2527,2]]], [2477,[10843.5,2746.05,0],[[2426,2],[2477,2]]], +[2478,[10595.1,2642.81,0],[[2427,2],[2478,2],[2528,2]]], [2479,[10701.8,2751.37,0],[[2427,2],[2529,2]]], [2480,[10010.8,2060.9,0],[[2428,2],[2530,2],[2480,2],[2531,2]]], [2481,[10341.6,1963.34,0],[[2429,2],[2532,2]]], [2482,[10581.4,2062.9,0],[[2431,2]]], [2483,[10632.9,2185.98,1.58946e-007],[[2431,2],[2483,2],[2533,2]]], +[2484,[10254.3,2129.29,0],[[2432,2]]], [2485,[10286.5,2106.91,0],[[2432,2]]], [2486,[9786.64,2207.41,-1.90735e-006],[[2433,2],[2517,2]]], [2487,[9911.14,2153.21,0],[[2433,2],[2534,2]]], [2488,[10708.5,3524.74,-1.52588e-005],[[2434,2],[2535,2]]], [2489,[12769.1,4447.35,5.08626e-006],[[2435,2],[2536,2],[2537,2]]], +[2490,[12055.3,3672.13,0],[[2436,2],[2538,2]]], [2491,[13378.1,5424.63,1.58946e-007],[[2438,2],[2539,2],[2540,2]]], [2492,[13189.3,5334.45,0],[[2438,2],[2541,2]]], [2493,[13448.6,6484.57,0],[[2439,2],[2542,2]]], [2494,[13515.6,6316.47,0],[[2439,2]]], [2495,[13426.4,6036.92,0],[[2440,2],[2543,2],[2544,2],[2496,2]]], +[2496,[13387.4,6130.54,0],[[2440,2],[2443,2],[2495,2],[2544,2]]], [2497,[1674.57,4000.5,0],[[2444,2],[2545,2]]], [2498,[3267.67,3510.6,0],[[2445,2],[2546,2]]], [2499,[3186.22,4011.01,1.52588e-005],[[2446,2],[2547,2]]], [2500,[3364.03,3969.54,0],[[2500,2]]], [2501,[3559.64,3873.73,0],[[2447,2],[2548,2],[2549,2],[2550,2]]], +[2502,[3835.6,3718.1,1.52588e-005],[[2448,2],[2551,2]]], [2503,[4299.29,3285.54,-2.54313e-006],[[2449,2],[2552,2],[2553,2]]], [2504,[1600.73,13133.8,0],[[2450,2],[2554,2]]], [2505,[4595.31,2716.89,0],[[2451,2],[2555,2],[2556,2],[2505,2],[2557,2]]], [2506,[5069.93,2142.43,0],[[2453,2],[2558,2]]], [2507,[7199.48,2883.3,0],[[2455,2],[2559,2]]], +[2508,[7264.7,2214.98,0],[[2456,2],[2560,2]]], [2509,[7163,2260.23,0],[[2456,2]]], [2510,[7725.89,3313.02,0],[[2458,2],[2512,2]]], [2511,[8106.17,3148.75,0],[[2460,2],[2561,2],[2562,2]]], [2512,[7965.53,3296.85,0],[[2460,2],[2510,2],[2563,2],[2564,2]]], [2513,[7682.58,3220.14,0],[[2461,2]]], +[2514,[7732,3251.78,4.76837e-007],[[2461,2]]], [2515,[7385.88,3071.42,1.90735e-006],[[2463,2],[2565,2]]], [2516,[9470.67,2041.87,0],[[2464,2],[2566,2],[2567,2],[2568,2]]], [2517,[9758.42,2176.86,0],[[2465,2],[2486,2],[2517,2]]], [2518,[13138.7,7280.37,-4.76837e-007],[[2466,2],[2569,2]]], [2519,[12683.4,10526.4,0],[[2467,2],[2570,2]]], +[2520,[12462.7,10461.7,3.8147e-006],[[2467,2],[2571,2]]], [2521,[11267,12168.1,0],[[2470,2]]], [2522,[11248.9,12566.1,1.52588e-005],[[2472,2],[2572,2]]], [2523,[11449.3,12230.3,0],[[2473,2],[2573,2],[2574,2]]], [2524,[11295.1,12281.1,0],[[2473,2]]], [2525,[9485.74,13141.3,0],[[2475,2],[2575,2]]], +[2526,[10878.8,2714.1,0],[[2476,2],[2576,2],[2577,2]]], [2527,[10841.3,2477.17,0],[[2476,2],[2578,2]]], [2528,[10521.2,2752.11,-3.8147e-006],[[2478,2],[2579,2]]], [2529,[10754.1,2822.33,0],[[2479,2],[2529,2],[2580,2]]], [2530,[9820.88,2031.98,1.58946e-007],[[2480,2],[2581,2],[2568,2],[2534,2]]], [2531,[10015.8,2018.27,0],[[2480,2],[2582,2],[2583,2]]], +[2532,[10337.4,1908.58,0],[[2481,2],[2584,2],[2532,2],[2585,2],[2586,2]]], [2533,[10706.8,2225.39,0],[[2483,2],[2587,2]]], [2534,[9829.34,2100.11,0],[[2487,2],[2530,2]]], [2535,[10695.8,3487.16,-5.08626e-006],[[2488,2],[2535,2],[2588,2]]], [2536,[12861.7,4467.91,0],[[2489,2]]], [2537,[12632.5,4497.26,0],[[2489,2],[2537,2],[2589,2]]], +[2538,[12072.7,3573.83,0],[[2490,2],[2538,2],[2590,2],[2591,2],[2592,2]]], [2539,[13389.3,5626.56,0],[[2491,2],[2543,2]]], [2540,[13387.7,5243.12,0],[[2491,2],[2593,2]]], [2541,[13124.8,5255.57,0],[[2492,2],[2594,2]]], [2542,[13408.8,6613.22,-4.76837e-007],[[2493,2],[2595,2]]], [2543,[13407.6,5854.6,0],[[2495,2],[2539,2]]], +[2544,[13378.8,6059.59,0],[[2495,2],[2496,2],[2544,2]]], [2545,[1658.37,3950.49,0],[[2497,2],[2596,2]]], [2546,[3195.96,3489.94,0],[[2498,2],[2597,2],[2598,2]]], [2547,[3062.09,4110.37,0],[[2499,2],[2599,2]]], [2548,[3498.19,3938.27,0],[[2501,2],[2600,2],[2601,2]]], [2549,[3676.01,3740.12,0],[[2501,2],[2602,2],[2603,2]]], +[2550,[3530.43,3822.69,0],[[2501,2]]], [2551,[3910.39,3636.54,0],[[2502,2],[2604,2],[2605,2]]], [2552,[4369.16,3235.81,1.27157e-006],[[2503,2],[2606,2],[2607,2]]], [2553,[4194.96,3349.76,2.54313e-006],[[2503,2],[2553,2],[2608,2]]], [2554,[1505.22,13255.3,-3.05176e-005],[[2504,2],[2609,2]]], [2555,[4583.96,2601.19,0],[[2505,2],[2610,2],[2555,2],[2611,2]]], +[2556,[4598.81,2726.37,0],[[2505,2]]], [2557,[4580.05,2791,0],[[2505,2],[2612,2]]], [2558,[5026.3,2197.82,0],[[2506,2],[2613,2]]], [2559,[7162.3,2897.87,4.76837e-007],[[2507,2]]], [2560,[7173.03,2196.75,0],[[2508,2],[2614,2],[2560,2]]], [2561,[8222.03,3087.91,2.35515],[[2511,2],[2615,2],[2616,2]]], +[2562,[8136.44,3223.28,0],[[2511,2]]], [2563,[8025.94,3351.17,0],[[2512,2],[2617,2]]], [2564,[8087.32,3274.95,3.17891e-007],[[2512,2],[2564,2],[2618,2]]], [2565,[7313.29,3065.77,0],[[2515,2],[2619,2]]], [2566,[9339.4,2058.89,0],[[2516,2],[2620,2]]], [2567,[9476.08,1931.18,0],[[2516,2],[2621,2]]], +[2568,[9640.64,2027.96,0],[[2516,2],[2530,2],[2581,2]]], [2569,[13190.1,7169.78,0],[[2518,2],[2622,2]]], [2570,[12722.2,10601.9,0],[[2519,2],[2623,2]]], [2571,[12401.1,10488.9,0],[[2520,2],[2624,2]]], [2572,[11294.8,12644,0],[[2522,2],[2625,2]]], [2573,[11632.3,12232.5,0],[[2523,2],[2626,2]]], +[2574,[11428.5,12316.4,0],[[2523,2],[2627,2]]], [2575,[9577.45,13259.6,0],[[2525,2],[2628,2]]], [2576,[10933.4,2890.14,0],[[2526,2],[2629,2]]], [2577,[10939.2,2697.26,0],[[2526,2],[2577,2],[2630,2]]], [2578,[10832.6,2374.59,0],[[2527,2],[2631,2]]], [2579,[10473,2795.37,-1.27157e-006],[[2528,2],[2632,2],[2633,2],[2579,2]]], +[2580,[10792.6,2916.34,0],[[2529,2],[2634,2]]], [2581,[9708.77,2026.68,0],[[2530,2],[2568,2]]], [2582,[10040.5,1951.9,0],[[2531,2],[2635,2],[2636,2]]], [2583,[9933.29,1990.42,0],[[2531,2]]], [2584,[10347.5,1838.95,0],[[2532,2],[2637,2],[2638,2]]], [2585,[10231.4,1880.04,0],[[2532,2],[2586,2],[2585,2],[2639,2],[2637,2]]], +[2586,[10232.3,1915.21,0],[[2585,2],[2532,2]]], [2587,[10769.8,2240.3,0],[[2533,2],[2640,2]]], [2588,[10742.4,3385.41,0],[[2535,2],[2641,2]]], [2589,[12623.5,4569.29,0],[[2537,2],[2642,2]]], [2590,[11977.5,3568.1,0],[[2538,2]]], [2591,[12234,3541.21,0],[[2538,2],[2591,2],[2643,2]]], +[2592,[12048.2,3493.93,1.19209e-007],[[2538,2],[2643,2],[2644,2]]], [2593,[13412.1,5104.45,0],[[2540,2],[2645,2]]], [2594,[13059.5,5190.96,0],[[2541,2],[2646,2]]], [2595,[13351.8,6792.47,0],[[2542,2],[2647,2]]], [2596,[1659.3,3893.42,5.08626e-006],[[2545,2],[2648,2],[2649,2]]], [2597,[3120.8,3402.38,0],[[2546,2],[2650,2]]], +[2598,[3030.99,3519.65,0],[[2546,2],[2651,2]]], [2599,[3030.91,4180.85,0],[[2547,2],[2652,2]]], [2600,[3453.7,3979.57,0],[[2500,2],[2600,2],[2548,2]]], [2601,[3437.68,3927.45,0],[[2548,2],[2653,2],[2654,2],[2601,2]]], [2602,[3774.77,3652.01,1.52588e-005],[[2549,2],[2655,2]]], [2603,[3645.04,3702.47,0],[[2549,2]]], +[2604,[3921.81,3579.9,0],[[2551,2]]], [2605,[3993.56,3602.55,1.52588e-005],[[2605,2]]], [2606,[4442.13,3238.41,0],[[2552,2],[2656,2]]], [2607,[4289.31,3190.01,0],[[2552,2],[2657,2],[2607,2],[2658,2]]], [2608,[4124.53,3347.53,0],[[2553,2],[2659,2]]], [2609,[1440.2,13359.6,0],[[2554,2],[2660,2]]], +[2610,[4586.62,2554.98,0],[[2555,2],[2610,2],[2661,2]]], [2611,[4659.86,2608.62,0],[[2555,2]]], [2612,[4513.01,2860.23,9.53674e-007],[[2557,2],[2662,2]]], [2613,[4950.2,2254.01,0],[[2558,2],[2663,2]]], [2614,[6986.98,2165.06,0],[[2560,2],[2614,2]]], [2615,[8180.15,3010.9,-9.53674e-007],[[2561,2],[2664,2]]], +[2616,[8453.19,2898.96,0],[[2561,2],[2665,2]]], [2617,[8045.45,3357.41,0],[[2563,2],[2617,2]]], [2618,[8189.66,3287.18,4.76837e-007],[[2564,2],[2666,2]]], [2619,[7261.48,3012.5,0],[[2565,2],[2667,2]]], [2620,[9185.89,2062.16,0],[[2566,2],[2668,2]]], [2621,[9473.77,1898.33,0],[[2567,2],[2669,2],[2670,2]]], +[2622,[13249.3,7044.36,0],[[2569,2],[2647,2]]], [2623,[12790.2,10735.8,0],[[2570,2],[2671,2]]], [2624,[12364.5,10543.8,0],[[2571,2],[2672,2]]], [2625,[11345.3,12702.5,0],[[2572,2],[2673,2]]], [2626,[11727.3,12199.9,0],[[2573,2],[2674,2],[2675,2]]], [2627,[11471.6,12385.3,0],[[2574,2],[2676,2]]], +[2628,[9696.9,13367,0],[[2575,2],[2677,2]]], [2629,[10996.4,2998.07,0],[[2576,2],[2678,2]]], [2630,[10998.3,2744.82,0],[[2577,2],[2679,2],[2630,2],[2680,2]]], [2631,[10831.3,2330.3,0],[[2578,2],[2681,2],[2640,2],[2631,2]]], [2632,[10362.5,2934.7,0],[[2579,2],[2682,2]]], [2633,[10492.1,2772,-1.27157e-006],[[2579,2]]], +[2634,[10800.6,2977.08,0],[[2580,2],[2634,2],[2683,2]]], [2635,[10042.3,1867.86,0],[[2582,2],[2684,2],[2635,2],[2685,2],[2686,2]]], [2636,[10065.2,1957.26,0],[[2582,2],[2687,2],[2688,2]]], [2637,[10334.5,1791.33,0],[[2584,2],[2585,2],[2689,2],[2639,2],[2690,2],[2691,2]]], [2638,[10436.9,1834.32,0],[[2584,2]]], [2639,[10256.1,1803.45,0],[[2585,2],[2637,2],[2685,2]]], +[2640,[10789.1,2294.69,0],[[2587,2],[2631,2],[2681,2]]], [2641,[10779,3322.78,0],[[2588,2],[2692,2]]], [2642,[12625.7,4647.32,-5.08626e-006],[[2589,2],[2642,2],[2693,2]]], [2643,[12254.2,3522.96,0],[[2591,2],[2592,2],[2694,2]]], [2644,[11873.5,3459.57,0],[[2592,2],[2695,2]]], [2645,[13462.1,4947.62,0],[[2593,2],[2696,2]]], +[2646,[12954.4,5127.32,0],[[2594,2],[2697,2]]], [2647,[13303,6916.74,0],[[2595,2],[2622,2],[2647,2],[2698,2]]], [2648,[1697.64,3824.74,0],[[2596,2],[2648,2],[2699,2],[2700,2],[2649,2],[2701,2]]], [2649,[1656.96,3799.58,-1.52588e-005],[[2596,2],[2648,2],[2702,2]]], [2650,[3039.02,3331.66,0],[[2597,2],[2703,2]]], [2651,[2921.17,3530.76,-1.52588e-005],[[2598,2],[2704,2]]], +[2652,[3035.17,4232.24,0],[[2599,2],[2652,2],[2705,2]]], [2653,[3435.44,3841.18,0],[[2601,2],[2653,2]]], [2654,[3446.99,3939.93,0],[[2601,2]]], [2655,[3887.93,3575.78,-1.52588e-005],[[2602,2]]], [2656,[4492.54,3194.82,1.27157e-006],[[2606,2],[2656,2],[2706,2]]], [2657,[4294.25,3203.1,0],[[2607,2]]], +[2658,[4379.77,3122.01,0],[[2607,2],[2707,2]]], [2659,[4047.65,3323.22,0],[[2608,2]]], [2660,[1363.4,13420.1,0],[[2609,2],[2660,2],[2708,2],[2709,2]]], [2661,[4508.68,2474.8,0],[[2610,2],[2710,2]]], [2662,[4478.23,2929.08,0],[[2612,2],[2711,2]]], [2663,[4837.19,2330.72,0],[[2613,2],[2712,2]]], +[2664,[8129.17,2966.6,-9.53674e-007],[[2615,2],[2713,2]]], [2665,[8560.16,2740.42,0],[[2616,2],[2714,2]]], [2666,[8268.84,3296.14,0],[[2618,2],[2715,2]]], [2667,[7236.74,3005.22,-6.35783e-007],[[2619,2],[2667,2],[2716,2]]], [2668,[9091.61,2101.18,0],[[2620,2],[2717,2]]], [2669,[9414.37,1900.27,0],[[2621,2]]], +[2670,[9575.16,1844.67,0],[[2621,2],[2718,2]]], [2671,[12839.2,10845.3,0],[[2623,2],[2719,2]]], [2672,[12313.9,10644.1,0],[[2624,2],[2720,2],[2721,2]]], [2673,[11400.5,12799.6,0],[[2625,2],[2722,2]]], [2674,[11799.8,12106.8,5.08626e-006],[[2626,2],[2723,2],[2674,2],[2724,2]]], [2675,[11796.8,12219,0],[[2626,2],[2725,2],[2726,2]]], +[2676,[11552.7,12416.7,0],[[2627,2],[2727,2],[2728,2]]], [2677,[9730.39,13419.3,0],[[2628,2],[2729,2]]], [2678,[11095.9,3112.04,4.76837e-007],[[2629,2],[2730,2]]], [2679,[10986.7,2752.66,0],[[2630,2]]], [2680,[11041.1,2696.76,0],[[2630,2]]], [2681,[10801.4,2310.29,0],[[2631,2],[2640,2]]], +[2682,[10271.7,3046.05,0],[[2632,2],[2731,2]]], [2683,[10871.9,3065,0],[[2634,2],[2692,2]]], [2684,[10045.2,1796.38,0],[[2635,2],[2685,2],[2732,2]]], [2685,[10120.7,1824.13,0],[[2635,2],[2639,2],[2684,2],[2733,2],[2685,2]]], [2686,[9898.79,1867.28,0],[[2635,2]]], [2687,[10150.4,1979.56,0],[[2636,2],[2734,2],[2687,2]]], +[2688,[10051.7,2003.33,0],[[2636,2]]], [2689,[10249.8,1807.77,0],[[2637,2]]], [2690,[10354.5,1667.42,0],[[2637,2],[2735,2],[2691,2],[2690,2]]], [2691,[10369.6,1684.01,0],[[2690,2],[2772,2],[2691,2],[2637,2]]], [2692,[10846.5,3172.34,-7.62939e-006],[[2641,2],[2683,2]]], [2693,[12637.3,4692.7,-5.08626e-006],[[2642,2],[2736,2],[2693,2],[2737,2]]], +[2694,[12428.4,3536.23,0],[[2643,2],[2738,2]]], [2695,[11738.9,3429.44,0],[[2644,2],[2739,2]]], [2696,[13494.6,4832.39,0],[[2645,2],[2740,2]]], [2697,[12859.7,5032,-7.62939e-006],[[2646,2],[2741,2]]], [2698,[13207.2,6888.52,0],[[2647,2],[2742,2],[2743,2]]], [2699,[1834.24,3873.9,1.52588e-005],[[2648,2],[2744,2]]], +[2700,[1650.83,3806.17,0],[[2648,2],[2700,2]]], [2701,[1705.28,3670.67,0],[[2648,2],[2745,2]]], [2702,[1677.63,3718.93,0],[[2649,2]]], [2703,[2942.69,3301.36,0],[[2650,2],[2746,2]]], [2704,[2837.59,3534.99,0],[[2651,2],[2747,2]]], [2705,[3082.24,4250.33,0],[[2652,2]]], +[2706,[4525.88,3175.1,1.27157e-006],[[2656,2],[2706,2]]], [2707,[4414.44,3070.63,0],[[2658,2],[2711,2]]], [2708,[1386.76,13499.1,1.01725e-005],[[2660,2],[2748,2],[2749,2],[2708,2]]], [2709,[1395.45,13473.1,0],[[2749,2],[2660,2]]], [2710,[4510.75,2444.8,0],[[2661,2],[2750,2],[2751,2],[2752,2],[2753,2]]], [2711,[4483.48,2961.07,0],[[2662,2],[2707,2],[2711,2]]], +[2712,[4710.07,2401.8,0],[[2663,2],[2752,2]]], [2713,[8048.78,2909.02,0],[[2664,2],[2754,2]]], [2714,[8638.08,2560.67,0],[[2665,2],[2755,2]]], [2715,[8337.17,3357.34,1.90735e-006],[[2666,2]]], [2716,[7211.45,3008.5,0],[[2667,2]]], [2717,[8975.76,2176.4,0],[[2668,2],[2756,2]]], +[2718,[9641.84,1812.09,0],[[2670,2],[2757,2]]], [2719,[12877.3,10925.4,0],[[2671,2],[2758,2]]], [2720,[12291.5,10559.8,2.54313e-006],[[2672,2],[2720,2],[2759,2]]], [2721,[12309.6,10819.4,0],[[2672,2],[2760,2],[2761,2]]], [2722,[11463.2,12933.7,0],[[2673,2],[2762,2]]], [2723,[11782.6,12112.5,7.62939e-006],[[2674,2]]], +[2724,[11917.8,12065.4,0],[[2674,2],[2763,2]]], [2725,[11918.6,12195.4,0],[[2675,2],[2764,2]]], [2726,[11835.3,12350.2,0],[[2675,2],[2765,2]]], [2727,[11610.1,12561.8,0],[[2676,2],[2766,2]]], [2728,[11587.3,12402.3,0],[[2676,2]]], [2729,[9722.48,13522,0],[[2677,2],[2767,2]]], +[2730,[11199.2,3223.26,0],[[2678,2],[2768,2]]], [2731,[10247.5,3101.36,0],[[2682,2]]], [2732,[9982.25,1792.51,0],[[2684,2]]], [2733,[10120.2,1855.75,0],[[2685,2]]], [2734,[10187.3,1942.34,0],[[2687,2],[2769,2],[2734,2],[2770,2]]], [2735,[10302.2,1602.2,0],[[2690,2],[2735,2],[2771,2]]], +[2736,[12609.1,4686.21,0],[[2693,2],[2736,2]]], [2737,[12681.8,4804.69,7.62939e-006],[[2693,2],[2773,2]]], [2738,[12580.2,3566.76,0],[[2694,2],[2774,2]]], [2739,[11554.8,3379.55,0],[[2695,2],[2775,2]]], [2740,[13500.5,4686.61,0],[[2696,2],[2776,2]]], [2741,[12796.8,4963.65,0],[[2697,2],[2777,2]]], +[2742,[13173.9,6896.44,0],[[2698,2],[2778,2],[2779,2]]], [2743,[13248.7,6733.36,0],[[2698,2],[2780,2]]], [2744,[1967.69,3833.97,0],[[2699,2],[2781,2]]], [2745,[1708.58,3642.02,5.08626e-006],[[2701,2],[2745,2],[2782,2]]], [2746,[2869.23,3225.65,0],[[2703,2],[2783,2]]], [2747,[2732.66,3525.39,0],[[2704,2],[2784,2]]], +[2748,[1242,13587,0],[[2708,2],[2785,2]]], [2749,[1398.23,13484.1,0],[[2708,2],[2709,2]]], [2750,[4359.58,2526.81,0],[[2710,2],[2786,2]]], [2751,[4453.47,2367.03,0],[[2710,2],[2787,2]]], [2752,[4653.96,2425.23,0],[[2710,2],[2712,2]]], [2753,[4538.53,2378.11,0],[[2710,2]]], +[2754,[8004.83,2900.08,0],[[2713,2]]], [2755,[8704.86,2420.91,0],[[2714,2],[2788,2]]], [2756,[8865.73,2283.67,0],[[2717,2],[2789,2]]], [2757,[9709.69,1808.43,-1.58946e-007],[[2718,2],[2757,2],[2790,2]]], [2758,[12966.5,11007.7,0],[[2719,2],[2791,2]]], [2759,[12149.9,10567.6,-7.62939e-006],[[2720,2],[2792,2]]], +[2760,[12283.4,10899.4,-1.90735e-006],[[2721,2],[2793,2],[2794,2],[2760,2]]], [2761,[12362.3,10797.1,0],[[2721,2]]], [2762,[11469.2,12993.8,-5.08626e-006],[[2722,2],[2795,2],[2796,2]]], [2763,[12034.3,11990.4,7.62939e-006],[[2724,2],[2797,2]]], [2764,[12007.5,12212.6,7.62939e-006],[[2725,2],[2798,2]]], [2765,[11844.9,12397.8,0],[[2726,2],[2765,2],[2799,2]]], +[2766,[11640.3,12620.8,0],[[2727,2],[2800,2],[2801,2]]], [2767,[9697.99,13561.3,2.54313e-006],[[2729,2],[2767,2],[2802,2]]], [2768,[11313.6,3305.47,0],[[2730,2],[2775,2]]], [2769,[10189.3,1961.18,0],[[2734,2]]], [2770,[10168.7,1824.02,0],[[2734,2]]], [2771,[10159.4,1616.94,0],[[2735,2],[2803,2]]], +[2772,[10363.3,1708.09,0],[[2691,2]]], [2773,[12669.8,4882.01,-7.62939e-006],[[2737,2],[2804,2]]], [2774,[12686.3,3607.79,0],[[2738,2],[2805,2]]], [2775,[11402.7,3340.76,0],[[2739,2],[2768,2]]], [2776,[13494.9,4513.82,0],[[2740,2],[2806,2]]], [2777,[12778,4877.1,0],[[2741,2],[2777,2],[2807,2],[2808,2]]], +[2778,[13141.4,7058.06,0],[[2742,2],[2809,2]]], [2779,[13098.6,6876.49,0],[[2742,2],[2810,2],[2811,2]]], [2780,[13258.6,6703.13,0],[[2743,2]]], [2781,[2061.78,3800.4,-1.52588e-005],[[2744,2],[2812,2]]], [2782,[1748.72,3551.35,0],[[2745,2],[2813,2]]], [2783,[2772.24,3136.03,0],[[2746,2],[2814,2]]], +[2784,[2611.69,3463.27,0],[[2747,2],[2815,2]]], [2785,[1093.13,13610.6,0],[[2748,2],[2816,2]]], [2786,[4264.85,2576.58,0],[[2750,2],[2817,2]]], [2787,[4428.86,2330.88,0],[[2751,2],[2818,2],[2819,2]]], [2788,[8772.15,2311,0],[[2755,2],[2789,2]]], [2789,[8836.93,2290.28,1.58946e-007],[[2756,2],[2788,2],[2820,2],[2789,2]]], +[2790,[9765,1767.69,0],[[2757,2]]], [2791,[13033.2,11115.7,0],[[2758,2],[2821,2]]], [2792,[11998.8,10581.3,-7.62939e-006],[[2759,2],[2822,2]]], [2793,[12324.4,10983.2,0],[[2760,2],[2823,2],[2824,2]]], [2794,[12251.6,10969,7.62939e-006],[[2760,2]]], [2795,[11569.3,12878.5,0],[[2762,2],[2800,2]]], +[2796,[11347.2,13146.3,1.52588e-005],[[2762,2],[2825,2]]], [2797,[12158,11910,0],[[2763,2],[2826,2]]], [2798,[12124.6,12232.3,0],[[2764,2],[2827,2]]], [2799,[11805.5,12411.7,0],[[2765,2]]], [2800,[11692,12730.7,0],[[2766,2],[2795,2],[2828,2],[2800,2]]], [2801,[11744.5,12584.2,0],[[2766,2],[2829,2],[2830,2]]], +[2802,[9673.94,13559.5,-7.62939e-006],[[2767,2]]], [2803,[9997.52,1644.22,0],[[2771,2],[2831,2]]], [2804,[12643.6,4931.79,0],[[2773,2],[2832,2]]], [2805,[12809.9,3685.67,-4.76837e-007],[[2774,2],[2833,2]]], [2806,[13470,4371.08,0],[[2776,2],[2834,2]]], [2807,[12759.8,4839.79,0],[[2777,2],[2808,2],[2835,2]]], +[2808,[12786.6,4825.2,0],[[2807,2],[2777,2]]], [2809,[13124.2,7085.83,0],[[2778,2],[2836,2],[2837,2]]], [2810,[12955.2,6862.32,0],[[2779,2],[2838,2],[2839,2]]], [2811,[13120.4,6803.38,0],[[2779,2]]], [2812,[2179.98,3784.2,1.52588e-005],[[2781,2],[2840,2]]], [2813,[1808.6,3470.64,0],[[2782,2],[2841,2]]], +[2814,[2693.61,3030.66,0],[[2783,2],[2842,2]]], [2815,[2598.18,3461.82,0],[[2784,2],[2843,2],[2844,2]]], [2816,[1008.68,13598.3,0],[[2785,2],[2845,2]]], [2817,[4135.2,2599.93,3.17891e-007],[[2786,2],[2846,2],[2847,2]]], [2818,[4343.88,2417.14,0],[[2787,2],[2848,2]]], [2819,[4383.41,2256.25,0],[[2787,2]]], +[2820,[8848.47,2292.04,0],[[2789,2]]], [2821,[13115.4,11183.9,0],[[2791,2],[2849,2]]], [2822,[11892.9,10603.6,0],[[2792,2],[2850,2]]], [2823,[12375.2,10983.2,0],[[2793,2]]], [2824,[12265.9,11071.6,0],[[2793,2]]], [2825,[11250.1,13183.7,0],[[2796,2],[2851,2]]], +[2826,[12288.3,11836.1,0],[[2797,2],[2852,2]]], [2827,[12138.3,12228,2.54313e-006],[[2798,2],[2827,2],[2853,2]]], [2828,[11768.5,12872.2,0],[[2800,2],[2854,2]]], [2829,[11875,12553.2,0],[[2801,2],[2830,2],[2855,2]]], [2830,[11852,12522.6,0],[[2829,2],[2801,2]]], [2831,[9951.44,1636.04,0],[[2803,2]]], +[2832,[12622.8,4948.2,0],[[2804,2],[2835,2],[2832,2]]], [2833,[12957.7,3780.91,0],[[2805,2],[2856,2]]], [2834,[13420.1,4240.64,0],[[2806,2],[2857,2]]], [2835,[12712.3,4906.45,-2.54313e-006],[[2807,2],[2832,2],[2835,2]]], [2836,[13110.5,7157.26,0],[[2809,2]]], [2837,[13090.3,7082.93,0],[[2809,2],[2858,2],[2859,2]]], +[2838,[12970,6941.07,0],[[2810,2],[2860,2]]], [2839,[12963,6798.88,0],[[2810,2],[2839,2]]], [2840,[2293.11,3748.63,0],[[2812,2],[2861,2]]], [2841,[1819.58,3403.2,0],[[2813,2],[2862,2]]], [2842,[2676.93,3017.33,0],[[2814,2],[2842,2],[2863,2],[2864,2]]], [2843,[2594.61,3343.37,1.52588e-005],[[2815,2],[2865,2]]], +[2844,[2515.9,3599.19,0],[[2815,2],[2866,2]]], [2845,[872.934,13634.5,0],[[2816,2],[2867,2]]], [2846,[3987.87,2619.82,4.76837e-007],[[2817,2],[2868,2]]], [2847,[4129.21,2551.05,0],[[2847,2],[2869,2],[2870,2],[2817,2]]], [2848,[4328.3,2459.64,1.58946e-007],[[2818,2],[2848,2],[2869,2]]], [2849,[13180.9,11251.2,0],[[2821,2],[2871,2]]], +[2850,[11856.6,10586.7,2.54313e-006],[[2822,2],[2850,2],[2872,2]]], [2851,[11174.8,13173.8,0],[[2825,2],[2851,2],[2873,2]]], [2852,[12391.9,11805.9,0],[[2826,2],[2874,2]]], [2853,[12260.2,12213.3,-7.62939e-006],[[2827,2],[2875,2]]], [2854,[11798.7,12895,-5.08626e-006],[[2828,2],[2876,2],[2877,2]]], [2855,[11946.1,12657.8,1.52588e-005],[[2829,2],[2878,2]]], +[2856,[13068.9,3852.83,0],[[2833,2],[2879,2]]], [2857,[13353.4,4121.51,0],[[2834,2],[2880,2]]], [2858,[13085.6,7050.91,0],[[2837,2],[2858,2],[2881,2]]], [2859,[13057.6,7163.02,0],[[2837,2]]], [2860,[12968.8,6969.14,0],[[2860,2],[2882,2]]], [2861,[2355.96,3679.27,0],[[2840,2],[2883,2],[2866,2]]], +[2862,[1871.05,3310.12,0],[[2841,2],[2884,2]]], [2863,[2615.2,3121.48,0],[[2842,2],[2885,2]]], [2864,[2649.35,2896.08,0],[[2842,2],[2886,2]]], [2865,[2565.94,3240.16,0],[[2843,2],[2885,2]]], [2866,[2429.47,3633.16,0],[[2844,2],[2861,2],[2883,2]]], [2867,[736.413,13676.9,0],[[2845,2],[2887,2]]], +[2868,[3867.98,2600.72,-4.76837e-007],[[2846,2],[2888,2]]], [2869,[4253.27,2490,0],[[2847,2],[2848,2]]], [2870,[4127.53,2566.46,0],[[2847,2]]], [2871,[13177.6,11380.9,0],[[2849,2],[2889,2]]], [2872,[11667.2,10599.5,0],[[2850,2],[2890,2]]], [2873,[11152.4,13179.5,-5.08626e-006],[[2851,2],[2873,2],[2891,2]]], +[2874,[12481.8,11751.4,-7.62939e-006],[[2852,2],[2892,2]]], [2875,[12392.1,12224.8,0],[[2853,2],[2893,2]]], [2876,[11959.1,12906.2,0],[[2854,2],[2894,2]]], [2877,[11829.1,12995.3,0],[[2854,2],[2895,2]]], [2878,[11992.2,12671.7,0],[[2855,2]]], [2879,[13178.3,3930.32,0],[[2856,2],[2880,2]]], +[2880,[13269.3,4013.86,0],[[2857,2],[2879,2]]], [2881,[13065,7041.16,0],[[2858,2]]], [2882,[12927,6966.11,0],[[2860,2]]], [2883,[2395.48,3650.36,-7.62939e-006],[[2861,2],[2866,2]]], [2884,[1926.8,3210.17,0],[[2862,2],[2896,2]]], [2885,[2567.44,3197.07,0],[[2863,2],[2865,2]]], +[2886,[2671.13,2790.54,0],[[2864,2],[2897,2]]], [2887,[679.598,13724.4,0],[[2867,2],[2898,2]]], [2888,[3784.23,2553.7,-4.76837e-007],[[2868,2],[2899,2]]], [2889,[13098.8,11465.9,0],[[2871,2],[2900,2]]], [2890,[11616.3,10633.5,-5.08626e-006],[[2872,2],[2890,2]]], [2891,[11079.4,13252.2,-5.08626e-006],[[2873,2],[2901,2],[2891,2],[2902,2]]], +[2892,[12518.4,11745.2,0],[[2874,2],[2892,2],[2903,2]]], [2893,[12526,12221.7,0],[[2875,2],[2904,2]]], [2894,[12052.2,12874.6,-1.52588e-005],[[2876,2],[2905,2]]], [2895,[11896.4,13102,0],[[2877,2],[2906,2]]], [2896,[1939.47,3203.5,0],[[2884,2],[2896,2],[2907,2]]], [2897,[2740.11,2720.06,-5.08626e-006],[[2886,2],[2908,2],[2897,2]]], +[2898,[614.841,13798,0],[[2887,2],[2909,2],[2910,2]]], [2899,[3757.23,2499.36,0],[[2888,2],[2911,2]]], [2900,[12992.4,11549.1,0],[[2889,2],[2912,2]]], [2901,[11094.5,13241.8,-7.62939e-006],[[2891,2]]], [2902,[11040.5,13352.9,-5.08626e-006],[[2891,2],[2902,2],[2913,2]]], [2903,[12586.8,11760.1,7.62939e-006],[[2892,2],[2914,2],[2903,2],[2915,2]]], +[2904,[12659.3,12226.8,7.62939e-006],[[2893,2],[2916,2]]], [2905,[12108.8,12843.6,0],[[2905,2],[2917,2],[2918,2],[2894,2]]], [2906,[11937.4,13156.9,0],[[2895,2]]], [2907,[2029.27,3178.7,0],[[2896,2],[2919,2]]], [2908,[2819.53,2691.29,0],[[2897,2],[2920,2],[2908,2],[2921,2]]], [2909,[618.184,13858.4,2.03451e-005],[[2898,2],[2922,2],[2910,2],[2909,2]]], +[2910,[607.871,13846.2,0],[[2909,2],[2931,2],[2910,2],[2898,2]]], [2911,[3705.48,2490.23,0],[[2899,2],[2923,2]]], [2912,[12865.1,11593.4,-3.8147e-006],[[2900,2],[2924,2]]], [2913,[10999.3,13377.5,0],[[2902,2]]], [2914,[12569.5,11765.7,7.62939e-006],[[2903,2]]], [2915,[12708.5,11675.8,0],[[2903,2],[2924,2]]], +[2916,[12724.4,12261.4,2.54313e-006],[[2904,2],[2925,2],[2926,2]]], [2917,[12243.3,12751.8,0],[[2905,2],[2927,2]]], [2918,[12090.6,12853.7,0],[[2905,2]]], [2919,[2104.21,3121.76,0],[[2907,2],[2928,2]]], [2920,[2809.89,2708.21,0],[[2908,2]]], [2921,[2925.61,2561.61,0],[[2908,2],[2929,2]]], +[2922,[690.497,13961.5,0],[[2909,2],[2930,2]]], [2923,[3651.16,2474.34,0],[[2911,2],[2932,2],[2933,2],[2934,2]]], [2924,[12816.5,11629.1,0],[[2912,2],[2915,2],[2924,2]]], [2925,[12805.1,12324.2,0],[[2916,2],[2935,2]]], [2926,[12637.6,12349.2,0],[[2916,2],[2936,2]]], [2927,[12316.5,12697.1,1.52588e-005],[[2917,2],[2937,2]]], +[2928,[2125.35,3072.42,0],[[2919,2],[2938,2]]], [2929,[3027.31,2561.38,7.62939e-006],[[2921,2],[2939,2]]], [2930,[790.368,13979.9,0],[[2922,2],[2940,2]]], [2931,[607.667,13829.6,1.01725e-005],[[2910,2]]], [2932,[3492.2,2423.76,0],[[2923,2],[2941,2]]], [2933,[3649.5,2379.9,0],[[2923,2],[2942,2]]], +[2934,[3638.52,2525.17,3.17891e-007],[[2972,2],[2934,2],[2923,2]]], [2935,[12908.8,12329.8,0],[[2925,2],[2943,2]]], [2936,[12592.3,12445.7,0],[[2926,2],[2944,2]]], [2937,[12399.3,12666.2,-7.62939e-006],[[2927,2],[2945,2],[2937,2],[2946,2]]], [2938,[2099.66,3002.52,0],[[2928,2],[2947,2]]], [2939,[3168.69,2580.98,0],[[2929,2],[2948,2]]], +[2940,[922.265,13990.1,0],[[2930,2],[2949,2]]], [2941,[3402.52,2376.95,4.76837e-007],[[2932,2],[2950,2]]], [2942,[3642.63,2258.11,0],[[2933,2],[2951,2]]], [2943,[13002,12378.6,7.62939e-006],[[2935,2],[2952,2]]], [2944,[12582,12574.9,0],[[2936,2],[2953,2],[2945,2]]], [2945,[12564.5,12600.4,0],[[2937,2],[2944,2],[2954,2]]], +[2946,[12448.6,12796.3,0],[[2937,2],[2955,2]]], [2947,[2108.78,2932.81,0],[[2938,2],[2947,2],[2956,2]]], [2948,[3266.31,2588.46,0],[[2939,2],[2957,2]]], [2949,[1049.84,13996,3.05176e-005],[[2940,2],[2958,2]]], [2950,[3303.78,2250.89,0],[[2941,2],[2959,2]]], [2951,[3614.78,2169.39,-4.76837e-007],[[2942,2]]], +[2952,[13064.8,12471.9,0],[[2943,2],[2960,2]]], [2953,[12587.9,12598.6,-1.52588e-005],[[2944,2],[2961,2],[2954,2]]], [2954,[12575.4,12590,0],[[2954,2],[2953,2]]], [2955,[12480.1,12876.4,0],[[2946,2],[2962,2],[2963,2]]], [2956,[2056.33,2819.74,0],[[2947,2],[2964,2]]], [2957,[3384.14,2544.98,0],[[2948,2],[2965,2]]], +[2958,[1191.77,14016.6,0],[[2949,2],[2966,2]]], [2959,[3220.32,2190.75,0],[[2950,2],[2967,2]]], [2960,[13113.8,12542.8,-2.54313e-006],[[2952,2],[2960,2],[2968,2]]], [2961,[12697.8,12639.1,0],[[2953,2],[2969,2]]], [2962,[12583,12899.2,0],[[2955,2],[2962,2]]], [2963,[12420.1,12950.2,0],[[2955,2],[2970,2]]], +[2964,[1994.82,2749.63,-7.62939e-006],[[2956,2],[2971,2]]], [2965,[3515,2541.98,-9.53674e-007],[[2957,2],[2972,2]]], [2966,[1298.62,14063.1,0],[[2958,2],[2973,2]]], [2967,[3091.33,2114.99,9.53674e-007],[[2959,2],[2974,2]]], [2968,[13242.2,12582.2,0],[[2960,2],[2975,2]]], [2969,[12762.8,12708.9,0],[[2961,2],[2976,2]]], +[2970,[12415.8,12957,0],[[2963,2]]], [2971,[1888.28,2709.97,-7.62939e-006],[[2964,2],[2977,2]]], [2972,[3626.21,2530.96,0],[[2965,2],[2934,2]]], [2973,[1367.04,14129.8,3.05176e-005],[[2966,2],[2978,2]]], [2974,[2964.75,2054.31,0],[[2967,2],[2979,2]]], [2975,[13313.9,12710.7,0],[[2968,2],[2980,2]]], +[2976,[12859.9,12753.7,1.52588e-005],[[2969,2],[2981,2]]], [2977,[1818.93,2623.84,3.8147e-006],[[2971,2],[2982,2]]], [2978,[1478.36,14151.6,0],[[2973,2],[2983,2]]], [2979,[2820.09,2023.01,0],[[2974,2],[2984,2]]], [2980,[13348.2,12827.3,7.62939e-006],[[2975,2],[2985,2]]], [2981,[12926.8,12759.9,0],[[2976,2]]], +[2982,[1807.08,2524.12,1.27157e-006],[[2977,2],[2982,2],[2986,2]]], [2983,[1573.94,14192.1,-3.05176e-005],[[2978,2],[2987,2]]], [2984,[2654.28,2017.57,0],[[2979,2],[2988,2]]], [2985,[13362.9,12846.1,2.54313e-006],[[2980,2],[2985,2],[2989,2]]], [2986,[1749.36,2465.17,-4.76837e-007],[[2982,2],[2990,2],[2991,2],[2986,2]]], [2987,[1684.99,14261,0],[[2983,2],[2992,2]]], +[2988,[2492.81,2048.5,0],[[2984,2],[2993,2]]], [2989,[13344.2,12884.6,-7.62939e-006],[[2985,2]]], [2990,[1765.73,2343.49,0],[[2986,2],[2994,2]]], [2991,[1755.53,2478.42,-6.35783e-007],[[2986,2]]], [2992,[1792.26,14318.6,3.05176e-005],[[2987,2],[2995,2]]], [2993,[2362.55,2082.29,0],[[2988,2],[2996,2]]], +[2994,[1846.94,2300.62,0],[[2990,2],[2997,2]]], [2995,[1870.08,14391.8,0],[[2992,2],[2998,2]]], [2996,[2273.28,2119.66,0],[[2993,2],[2999,2]]], [2997,[1933.15,2252.45,1.19209e-007],[[2994,2],[3000,2],[3001,2],[3002,2]]], [2998,[1929.84,14530,0],[[2995,2],[3003,2]]], [2999,[2217.7,2221.59,0],[[2996,2],[3004,2]]], +[3000,[1764.5,2199.56,0],[[2997,2],[3005,2]]], [3001,[2119.03,2277.02,-4.76837e-007],[[2997,2],[3004,2]]], [3002,[1927.43,2177.79,0],[[2997,2],[3006,2],[3002,2],[3007,2]]], [3003,[2016.76,14659.5,0],[[2998,2],[3008,2]]], [3004,[2165.05,2282.37,0],[[2999,2],[3001,2]]], [3005,[1689.86,2208.7,0],[[3000,2],[3009,2]]], +[3006,[1939.51,2213.67,0],[[3002,2],[3006,2]]], [3007,[1830.51,2104.28,0],[[3002,2]]], [3008,[2081,14751,3.05176e-005],[[3003,2],[3010,2]]], [3009,[1555.19,2261.6,0],[[3005,2],[3011,2]]], [3010,[2150.55,14862.9,-3.05176e-005],[[3008,2],[3012,2]]], [3011,[1431.63,2334.98,-4.76837e-007],[[3009,2],[3013,2]]], +[3012,[2203.7,14945.8,0],[[3010,2],[3014,2],[3015,2],[3012,2]]], [3013,[1321.32,2387.88,0],[[3011,2],[3016,2]]], [3014,[2199.11,15003.5,1.01725e-005],[[3012,2],[3014,2],[3017,2]]], [3015,[2206.54,14923.8,0],[[3012,2]]], [3016,[1191.84,2402.75,0],[[3013,2],[3018,2]]], [3017,[2236.66,15066.7,-3.05176e-005],[[3014,2],[3019,2]]], +[3018,[1086.42,2354.33,0],[[3016,2],[3020,2]]], [3019,[2245.13,15204.7,0],[[3017,2],[3021,2]]], [3020,[1046.18,2265.25,0],[[3018,2],[3022,2]]], [3021,[2298.17,15316.4,0],[[3019,2]]], [3022,[997.412,2138.28,0],[[3020,2],[3023,2]]], [3023,[942.625,2029.86,4.76837e-007],[[3022,2],[3024,2]]], +[3024,[857.448,1957.58,0],[[3023,2],[3025,2]]], [3025,[741.49,1897.57,0],[[3024,2],[3026,2]]], [3026,[631.263,1793.8,0],[[3025,2],[3027,2]]], [3027,[538.469,1706.32,0],[[3026,2],[3028,2]]], [3028,[439.677,1634.36,0],[[3027,2],[3029,2]]], [3029,[314.11,1623.36,0],[[3028,2],[3030,2]]], +[3030,[142.592,1608.1,0],[[3029,2],[3031,2]]], [3031,[25.793,1588.05,0],[[3030,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridchernarus_winter.sqf b/A3-Antistasi/NavGrids/navGridchernarus_winter.sqf new file mode 100644 index 0000000000..ceffff62ea --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridchernarus_winter.sqf @@ -0,0 +1,506 @@ +navGrid = [[0,[7060.36,7681.47,0],[[1,2],[2,2],[3,2],[4,2]]], [1,[7209.35,7676.65,0],[[0,2],[5,2]]], [2,[6846.85,7609.76,-3.05176e-005],[[0,2],[6,2]]], [3,[7122.35,7613.05,0],[[0,2],[7,2]]], [4,[7007.38,7745.06,7.62939e-006],[[0,2],[8,2],[4,2],[9,2]]], [5,[7298.1,7671.72,0],[[1,2],[10,2]]], +[6,[6730.21,7550.09,3.05176e-005],[[2,2],[11,2]]], [7,[7125.57,7532.3,0],[[3,2],[12,2]]], [8,[6927.41,7879.74,0],[[4,2],[13,2]]], [9,[7108.03,7784.6,-3.05176e-005],[[4,2]]], [10,[7386.02,7629.42,0],[[5,2],[14,2]]], [11,[6592.46,7502.58,0],[[6,2],[15,2]]], +[12,[7135.67,7429.97,0],[[7,2],[12,2],[16,2]]], [13,[6933.81,8001.87,3.05176e-005],[[8,2],[17,2]]], [14,[7474.75,7572.84,0],[[10,2],[18,2]]], [15,[6453.52,7507.97,0],[[11,2],[19,2]]], [16,[7178.09,7328.88,0],[[12,2],[20,2]]], [17,[6939.67,8030.55,1.01725e-005],[[13,2],[21,2],[22,2]]], +[18,[7606.18,7457.12,0],[[14,2],[23,2]]], [19,[6368.57,7523.37,0],[[15,2],[24,2],[25,2]]], [20,[7136.84,7240.89,1.01725e-005],[[16,2],[26,2],[20,2]]], [21,[6852.65,8065.29,0],[[17,2],[27,2]]], [22,[7064.93,8181.5,-3.05176e-005],[[17,2],[28,2]]], [23,[7710.85,7341.31,0],[[18,2],[29,2]]], +[24,[6246.94,7635.5,0],[[19,2],[30,2]]], [25,[6356.67,7423.61,-3.05176e-005],[[19,2],[31,2]]], [26,[7141.67,7074.21,0],[[20,2],[32,2]]], [27,[6844.8,8196.41,0],[[21,2],[33,2]]], [28,[7177.39,8294.21,1.01725e-005],[[22,2],[34,2],[35,2]]], [29,[7842.7,7253.1,0],[[23,2],[36,2]]], +[30,[6154.39,7719.93,0],[[24,2],[37,2],[38,2],[30,2]]], [31,[6362.57,7325.71,0],[[25,2],[39,2]]], [32,[7132.71,7031.5,-1.01725e-005],[[26,2],[40,2],[41,2]]], [33,[6842.49,8326.35,0],[[27,2],[42,2]]], [34,[7308.78,8299.66,0],[[28,2],[43,2]]], [35,[7284.49,8410.33,0],[[28,2],[44,2]]], +[36,[7939.81,7206.59,0],[[29,2],[45,2]]], [37,[6060.42,7767.91,0],[[30,2],[46,2],[47,2]]], [38,[6205.84,7765.07,0],[[30,2],[48,2]]], [39,[6427.71,7213.32,0],[[31,2],[49,2]]], [40,[7119.49,6932.11,0],[[32,2],[50,2],[40,2],[51,2]]], [41,[7025.1,7033.75,-3.05176e-005],[[32,2],[52,2]]], +[42,[6821.67,8474.56,3.05176e-005],[[33,2],[53,2]]], [43,[7459.84,8299.47,-3.05176e-005],[[34,2],[54,2]]], [44,[7318.99,8447.46,0],[[35,2],[44,2],[55,2]]], [45,[8013.31,7139.55,0],[[36,2],[56,2]]], [46,[5975.24,7630.13,-3.05176e-005],[[37,2],[57,2]]], [47,[5985.12,7880.91,0],[[37,2],[58,2]]], +[48,[6257.9,7821.61,0],[[38,2]]], [49,[6458.64,7157.78,-1.01725e-005],[[39,2],[59,2],[60,2]]], [50,[7082.11,6754.5,0],[[40,2],[61,2]]], [51,[7201.79,6956.91,0],[[40,2],[62,2]]], [52,[6929.73,7079.53,-3.05176e-005],[[41,2],[63,2]]], [53,[6756.03,8559.3,-3.05176e-005],[[42,2],[64,2]]], +[54,[7538.67,8309.44,-2.03451e-005],[[43,2],[54,2],[65,2]]], [55,[7354.61,8605.92,-3.05176e-005],[[44,2],[66,2]]], [56,[8049.57,7085.94,0],[[45,2],[67,2],[68,2]]], [57,[5877.15,7514.74,0],[[46,2],[69,2]]], [58,[5948.4,7973.93,1.01725e-005],[[47,2],[70,2],[71,2]]], [59,[6615.49,7137.47,0],[[49,2],[63,2]]], +[60,[6482.25,6976.9,0],[[49,2],[72,2]]], [61,[7072.03,6642.44,0],[[50,2],[73,2]]], [62,[7221.74,6934.97,0],[[51,2],[74,2],[75,2]]], [63,[6788.92,7117.69,0],[[52,2],[59,2]]], [64,[6745.33,8570.05,-2.03451e-005],[[53,2],[76,2],[77,2]]], [65,[7626.11,8436.81,-1.01725e-005],[[54,2],[65,2],[78,2]]], +[66,[7349.5,8759.72,0],[[55,2],[79,2]]], [67,[8158.9,6956.52,3.05176e-005],[[56,2],[80,2]]], [68,[7956.5,6989.94,0],[[56,2],[81,2]]], [69,[5769.69,7400.19,0],[[57,2],[82,2]]], [70,[5851.94,8126.45,0],[[58,2],[83,2]]], [71,[6023.56,7990.55,0],[[58,2],[84,2]]], +[72,[6511.68,6859.97,0],[[60,2],[85,2]]], [73,[7093.74,6539.13,0],[[61,2],[86,2]]], [74,[7236.1,6805.71,1.52588e-005],[[62,2],[87,2]]], [75,[7221.66,6954.12,-5.08626e-006],[[62,2]]], [76,[6717.52,8491.52,0],[[64,2],[76,2],[88,2]]], [77,[6704.58,8662.77,0],[[64,2],[77,2],[89,2]]], +[78,[7744.09,8482.98,0],[[65,2],[90,2]]], [79,[7324.24,8897.19,0],[[66,2],[91,2]]], [80,[8250.74,6872.34,0],[[67,2],[92,2]]], [81,[7871.43,6909.31,0],[[68,2],[93,2],[94,2]]], [82,[5716.18,7292.71,0],[[69,2],[95,2]]], [83,[5783.75,8182.28,3.05176e-005],[[70,2],[96,2]]], +[84,[6059.08,7983.29,0],[[71,2],[97,2],[84,2]]], [85,[6521.05,6754.15,-1.01725e-005],[[72,2],[85,2],[98,2]]], [86,[7105.51,6458.27,0],[[73,2],[99,2]]], [87,[7299.98,6685.7,0],[[74,2],[100,2]]], [88,[6655.1,8444.92,3.05176e-005],[[76,2]]], [89,[6662.96,8800.12,0],[[77,2],[101,2]]], +[90,[7862.44,8516.8,0],[[78,2],[102,2]]], [91,[7212.31,8991.13,0],[[79,2],[103,2]]], [92,[8320.62,6799.62,-3.05176e-005],[[80,2],[104,2]]], [93,[7806.85,6846.42,-1.01725e-005],[[81,2],[105,2],[94,2],[93,2]]], [94,[7831.33,6869.95,0],[[93,2],[119,2],[94,2],[81,2]]], [95,[5698.02,7267.07,0],[[82,2],[95,2],[106,2]]], +[96,[5656.92,8255.89,0],[[83,2],[107,2]]], [97,[6161.52,8008.51,1.01725e-005],[[84,2],[97,2],[108,2]]], [98,[6526.54,6606.25,-3.05176e-005],[[85,2],[109,2]]], [99,[7141.79,6410.1,5.08626e-006],[[86,2],[99,2],[110,2]]], [100,[7292.25,6543.79,0],[[87,2],[111,2]]], [101,[6609.31,8943.42,0],[[89,2],[112,2]]], +[102,[7998.22,8530.24,7.62939e-006],[[90,2],[113,2],[102,2],[114,2]]], [103,[7126.84,9076.9,0],[[91,2],[115,2]]], [104,[8368.16,6784.08,1.01725e-005],[[92,2],[116,2],[117,2]]], [105,[7701.1,6752.84,0],[[93,2],[118,2]]], [106,[5667.4,7254.93,0],[[95,2],[120,2],[121,2]]], [107,[5532.23,8353.19,0],[[96,2],[122,2]]], +[108,[6204.12,8011.9,0],[[97,2]]], [109,[6537.22,6543.74,0],[[98,2],[123,2],[109,2],[124,2],[125,2]]], [110,[7197.71,6278.99,0],[[99,2],[126,2]]], [111,[7300.32,6415.49,0],[[100,2],[127,2]]], [112,[6582.24,9033.84,0],[[101,2],[128,2],[129,2]]], [113,[8155.33,8571.96,3.05176e-005],[[102,2],[130,2],[131,2]]], +[114,[8032.06,8371.18,0],[[102,2],[132,2]]], [115,[7014.07,9129.08,0],[[103,2],[133,2]]], [116,[8463.08,6756.84,3.05176e-005],[[104,2],[134,2]]], [117,[8420.47,6683.06,0],[[104,2],[134,2]]], [118,[7643.39,6687.79,0],[[105,2],[135,2]]], [119,[7851.21,6883.53,0],[[94,2]]], +[120,[5504.69,7285.46,0],[[106,2],[136,2]]], [121,[5639.56,7115.09,0],[[106,2],[137,2]]], [122,[5468.8,8421.11,0],[[107,2],[138,2]]], [123,[6541.24,6555.67,-1.01725e-005],[[109,2]]], [124,[6603.39,6639.18,0],[[109,2],[139,2]]], [125,[6528.87,6378,0],[[109,2],[140,2]]], +[126,[7269.91,6207.17,0],[[110,2],[141,2]]], [127,[7355.29,6361.09,0],[[111,2],[127,2],[142,2],[143,2]]], [128,[6743.58,9093.51,0],[[112,2],[144,2]]], [129,[6461.52,9084.58,0],[[112,2],[145,2]]], [130,[8296.39,8584.74,0],[[113,2],[146,2]]], [131,[8026.01,8577.7,1.01725e-005],[[1066,2],[1155,2],[113,2],[1109,2],[131,2]]], +[132,[8056.71,8315.52,-1.01725e-005],[[114,2],[132,2],[147,2]]], [133,[6969.06,9140.38,0],[[115,2],[133,2],[144,2]]], [134,[8510.45,6679.49,0],[[116,2],[117,2],[148,2]]], [135,[7544.98,6602.52,3.05176e-005],[[118,2],[149,2]]], [136,[5436.69,7226.38,-3.05176e-005],[[120,2],[150,2]]], [137,[5640.87,7010.94,0],[[121,2],[151,2]]], +[138,[5426.97,8529.48,0],[[122,2],[152,2],[153,2]]], [139,[6626.06,6637.13,-2.03451e-005],[[124,2],[154,2],[139,2],[155,2]]], [140,[6567.68,6255.99,0],[[125,2],[156,2]]], [141,[7298.56,6111.77,0],[[126,2],[157,2]]], [142,[7394.03,6383.52,0],[[127,2],[158,2],[159,2]]], [143,[7378.04,6260.5,5.08626e-006],[[127,2],[143,2],[160,2]]], +[144,[6895.07,9133.04,0],[[128,2],[133,2]]], [145,[6320.54,9147.6,0],[[129,2],[161,2]]], [146,[8416.94,8653.84,-3.05176e-005],[[130,2],[162,2]]], [147,[8082.21,8293.98,1.01725e-005],[[132,2],[147,2],[163,2]]], [148,[8631.95,6589.09,-3.05176e-005],[[134,2],[164,2]]], [149,[7464.44,6552.43,0],[[135,2],[165,2]]], +[150,[5345.6,7083.44,-3.05176e-005],[[136,2],[166,2]]], [151,[5707.05,6901.35,3.05176e-005],[[137,2],[167,2]]], [152,[5326.38,8577.57,-1.01725e-005],[[138,2],[168,2],[169,2]]], [153,[5468.74,8562.44,0],[[138,2],[153,2],[170,2]]], [154,[6617.64,6650.82,-2.03451e-005],[[154,2],[139,2]]], [155,[6643.31,6604.03,-1.01725e-005],[[139,2],[171,2],[172,2]]], +[156,[6587.47,6139.72,0],[[140,2],[173,2]]], [157,[7374.74,6058.21,0],[[141,2],[174,2]]], [158,[7392.97,6430.1,0],[[158,2],[175,2],[165,2]]], [159,[7483.48,6307.12,1.52588e-005],[[142,2],[176,2]]], [160,[7476.41,6086.6,-1.52588e-005],[[143,2],[177,2]]], [161,[6233.95,9209.29,0],[[145,2],[178,2]]], +[162,[8509.3,8799.15,0],[[146,2],[179,2]]], [163,[8236.44,8278.8,3.05176e-005],[[147,2],[180,2]]], [164,[8660.26,6551.93,-1.01725e-005],[[148,2],[181,2],[182,2]]], [165,[7369.95,6545.09,0],[[149,2],[158,2],[183,2]]], [166,[5297.11,6964.62,0],[[150,2],[184,2]]], [167,[5803.67,6816.01,3.05176e-005],[[151,2],[185,2]]], +[168,[5303.73,8613.46,0],[[152,2],[168,2],[186,2]]], [169,[5296.64,8547.87,0],[[152,2],[169,2]]], [170,[5478.46,8674.57,0],[[153,2],[187,2]]], [171,[6699.86,6621.22,0],[[155,2]]], [172,[6601.93,6528.05,0],[[155,2],[188,2]]], [173,[6591.13,6029.44,3.05176e-005],[[156,2],[189,2]]], +[174,[7432.19,5990.34,1.52588e-005],[[157,2],[190,2],[177,2]]], [175,[7351.37,6478.9,-1.52588e-005],[[175,2],[191,2]]], [176,[7613.12,6242.5,0],[[159,2],[192,2]]], [177,[7524.3,5936.12,0],[[160,2],[174,2],[193,2],[190,2]]], [178,[6156.05,9302.77,0],[[161,2],[194,2]]], [179,[8583.44,8839.86,-3.05176e-005],[[162,2],[195,2]]], +[180,[8354.11,8300.22,0],[[163,2],[196,2]]], [181,[8691.09,6522.24,-1.01725e-005],[[164,2],[197,2],[198,2]]], [182,[8703.45,6684.85,-1.01725e-005],[[164,2],[182,2],[199,2]]], [183,[7392.25,6512.12,0],[[165,2]]], [184,[5253.64,6904.97,0],[[166,2],[200,2]]], [185,[5881.55,6745.62,0],[[167,2],[201,2]]], +[186,[5242.47,8623.7,1.01725e-005],[[168,2],[202,2],[203,2]]], [187,[5527.14,8731.32,1.01725e-005],[[170,2],[204,2],[205,2]]], [188,[6642.68,6453.86,-3.05176e-005],[[172,2],[206,2]]], [189,[6578.44,6029.06,1.01725e-005],[[173,2],[207,2],[208,2]]], [190,[7530.04,5912.64,0],[[174,2],[177,2],[209,2],[193,2]]], [191,[7347.89,6464.37,7.62939e-006],[[175,2]]], +[192,[7699.18,6177.38,0],[[176,2],[210,2]]], [193,[7521.02,5917.73,5.08626e-006],[[193,2],[190,2]]], [194,[6128.15,9324.97,0],[[178,2],[211,2],[212,2],[194,2]]], [195,[8668.8,8905.9,3.05176e-005],[[179,2],[213,2]]], [196,[8513.71,8354.12,0],[[180,2],[214,2],[196,2]]], [197,[8636.85,6411.43,0],[[181,2],[215,2]]], +[198,[8806.95,6439.68,0],[[181,2],[216,2]]], [199,[8648.7,6845.4,0],[[182,2],[217,2]]], [200,[5167.57,6922.85,0],[[184,2],[218,2]]], [201,[5952.75,6698.85,0],[[185,2],[219,2]]], [202,[5254.7,8667.64,1.01725e-005],[[186,2],[220,2],[202,2],[221,2],[205,2]]], [203,[5169.03,8594.09,1.01725e-005],[[186,2],[222,2],[223,2]]], +[204,[5606.46,8850.3,0],[[187,2],[224,2]]], [205,[5399.85,8736.76,-3.05176e-005],[[187,2],[202,2],[225,2]]], [206,[6761.12,6357.46,6.10352e-005],[[188,2],[226,2]]], [207,[6632.52,5912.68,0],[[189,2],[227,2]]], [208,[6516.69,6113.93,3.05176e-005],[[189,2],[228,2]]], [209,[7647.4,5773.82,1.52588e-005],[[190,2],[229,2]]], +[210,[7802.37,6093.83,0],[[192,2],[230,2]]], [211,[5945.32,9326.68,0],[[194,2],[231,2]]], [212,[6142.57,9325.5,0],[[194,2],[212,2]]], [213,[8779.04,8998.17,0],[[195,2],[213,2],[232,2],[233,2]]], [214,[8550.5,8350.23,0],[[196,2],[234,2],[235,2]]], [215,[8594.55,6261.99,0],[[197,2],[236,2]]], +[216,[8884,6371.37,3.05176e-005],[[198,2],[237,2]]], [217,[8606.81,6912.17,3.05176e-005],[[199,2],[238,2]]], [218,[5119,6909.84,0],[[200,2],[239,2],[218,2]]], [219,[6055.32,6599.76,-3.05176e-005],[[201,2],[240,2]]], [220,[5244.21,8647.6,1.52588e-005],[[202,2]]], [221,[5321.23,8761.81,0],[[202,2],[241,2]]], +[222,[5059.63,8448.02,0],[[203,2],[242,2]]], [223,[5065.07,8633.61,0],[[203,2],[243,2]]], [224,[5675.26,8963.19,0],[[204,2],[244,2]]], [225,[5340.53,8755.46,0],[[205,2]]], [226,[6812.58,6322.53,0],[[206,2],[226,2],[245,2]]], [227,[6715.4,5844.4,0],[[207,2],[246,2]]], +[228,[6456.15,6167.24,0],[[208,2],[247,2]]], [229,[7718.52,5633.45,0],[[209,2],[248,2]]], [230,[7868.39,6043.93,0],[[210,2],[249,2]]], [231,[5865.5,9323.4,0],[[211,2],[231,2],[250,2]]], [232,[8931.74,8990.44,3.05176e-005],[[213,2],[251,2]]], [233,[8777.08,9162.04,0],[[213,2],[252,2]]], +[234,[8542.41,8187.95,0],[[214,2],[253,2]]], [235,[8628.23,8446.74,0],[[214,2],[254,2]]], [236,[8534.79,6149.63,-3.05176e-005],[[215,2],[255,2]]], [237,[9041.42,6271.56,0],[[216,2],[256,2]]], [238,[8621.01,6946.1,0],[[217,2],[238,2],[257,2]]], [239,[5063.96,6815.08,0],[[218,2],[258,2]]], +[240,[6161.86,6499.5,0],[[219,2],[259,2]]], [241,[5369.04,8925,0],[[221,2],[260,2]]], [242,[5025.14,8329.25,0],[[222,2],[261,2]]], [243,[4920.48,8697.94,0],[[223,2],[262,2]]], [244,[5701.25,9125.39,0],[[224,2],[263,2]]], [245,[6962.34,6308.36,0],[[226,2],[264,2]]], +[246,[6805.32,5771.73,0],[[227,2],[265,2]]], [247,[6394.77,6223.41,3.05176e-005],[[228,2],[266,2]]], [248,[7797.13,5496.27,0],[[229,2],[267,2]]], [249,[7933.38,6089.27,0],[[230,2],[268,2]]], [250,[5775.34,9266.39,0],[[231,2],[269,2],[263,2]]], [251,[9044.63,8939.17,-1.01725e-005],[[232,2],[251,2],[270,2]]], +[252,[8752.73,9276.61,0],[[233,2],[271,2]]], [253,[8556.06,8066.4,0],[[234,2],[272,2]]], [254,[8651.66,8528.62,0],[[235,2],[273,2]]], [255,[8532.14,6087.04,0],[[236,2],[274,2]]], [256,[9149.96,6183.68,0],[[237,2],[275,2]]], [257,[8734.66,7030.79,2.03451e-005],[[238,2],[276,2],[257,2],[277,2]]], +[258,[5031.31,6798.68,1.01725e-005],[[239,2],[278,2],[279,2]]], [259,[6205.26,6408.11,0],[[240,2],[280,2]]], [260,[5367.49,9051.8,3.05176e-005],[[241,2],[281,2]]], [261,[4977.93,8249.13,0],[[242,2],[282,2]]], [262,[4749.59,8740.97,0],[[243,2],[283,2]]], [263,[5728.95,9208.38,0],[[244,2],[250,2],[284,2]]], +[264,[7000.08,6270.15,0],[[245,2],[285,2]]], [265,[6819.44,5749.64,0],[[246,2],[286,2],[265,2],[287,2]]], [266,[6356.4,6284.5,-3.05176e-005],[[247,2],[288,2],[280,2]]], [267,[7816.69,5371.61,0],[[248,2],[289,2]]], [268,[8019.52,6137.54,2.03451e-005],[[249,2],[290,2],[268,2]]], [269,[5749.62,9256.47,0],[[250,2],[291,2]]], +[270,[9205.67,8905.16,0],[[251,2],[292,2]]], [271,[8682.07,9366.7,-3.05176e-005],[[252,2],[293,2]]], [272,[8589.66,7991.56,0],[[253,2],[294,2]]], [273,[8714.09,8626.03,0],[[254,2],[295,2]]], [274,[8543.26,6052.88,1.01725e-005],[[255,2],[296,2],[297,2]]], [275,[9278.19,6096.47,0],[[256,2],[298,2]]], +[276,[8743.83,7007.87,3.05176e-005],[[257,2],[276,2]]], [277,[8721.38,7104.71,2.03451e-005],[[257,2],[299,2],[300,2]]], [278,[4934.25,6776.53,-3.05176e-005],[[258,2],[301,2]]], [279,[5107.5,6695.59,0],[[258,2],[302,2]]], [280,[6295.58,6315.46,0],[[259,2],[266,2],[288,2]]], [281,[5395.31,9190.6,0],[[260,2],[303,2]]], +[282,[4957.26,8139.48,-1.01725e-005],[[261,2],[304,2],[305,2]]], [283,[4608.34,8777.55,0],[[262,2],[306,2]]], [284,[5744.41,9240.01,0],[[263,2]]], [285,[7044.64,6126.4,0],[[264,2],[307,2]]], [286,[6912.03,5638.35,0],[[265,2],[308,2]]], [287,[6756.74,5659.53,3.05176e-005],[[265,2],[309,2]]], +[288,[6338.68,6293,-1.52588e-005],[[266,2],[280,2]]], [289,[7763.59,5260.65,0],[[267,2],[310,2]]], [290,[8084.65,6059.69,0],[[268,2],[311,2]]], [291,[5709.23,9326.48,0],[[269,2],[312,2]]], [292,[9241.36,8881.48,7.62939e-006],[[270,2],[313,2],[314,2],[315,2]]], [293,[8590.05,9461.38,0],[[271,2],[316,2]]], +[294,[8583.91,7874.46,-3.05176e-005],[[272,2],[317,2]]], [295,[8777.34,8735.7,0],[[273,2],[318,2]]], [296,[8431.23,5990.25,0],[[274,2],[319,2]]], [297,[8579.55,6034.9,-1.01725e-005],[[274,2],[320,2],[321,2]]], [298,[9341.76,6031.26,0],[[275,2],[322,2]]], [299,[8680.45,7203.84,-1.01725e-005],[[277,2],[299,2],[323,2]]], +[300,[8843.45,7141.16,0],[[277,2],[324,2]]], [301,[4839.86,6787,3.05176e-005],[[278,2],[325,2]]], [302,[5198.46,6615.88,0],[[279,2],[326,2]]], [303,[5387.19,9260.15,0],[[281,2],[327,2]]], [304,[4963.05,7964.24,0],[[282,2],[328,2]]], [305,[4805.4,8183.53,0],[[282,2],[329,2]]], +[306,[4469.96,8839.28,1.01725e-005],[[283,2],[330,2],[331,2]]], [307,[7085.26,6010.28,0],[[285,2],[307,2],[332,2]]], [308,[6932.58,5584.88,-1.01725e-005],[[286,2],[333,2],[334,2]]], [309,[6755.41,5607.82,0],[[287,2]]], [310,[7704.37,5236.38,0],[[289,2],[335,2]]], [311,[8192.93,6025.59,0],[[290,2],[319,2]]], +[312,[5687.41,9371.6,0],[[291,2],[336,2]]], [313,[9283.07,8988.59,3.05176e-005],[[292,2],[337,2]]], [314,[9350.83,8857.36,-7.62939e-006],[[292,2],[338,2],[339,2],[340,2]]], [315,[9201.32,8847.89,1.01725e-005],[[292,2],[341,2],[342,2]]], [316,[8569.67,9486.94,1.01725e-005],[[293,2],[316,2],[343,2]]], [317,[8586.2,7780.95,3.05176e-005],[[294,2],[344,2]]], +[318,[8924.66,8771.43,3.05176e-005],[[295,2],[341,2]]], [319,[8339.81,5991.77,0],[[296,2],[311,2]]], [320,[8725.59,6030.69,0],[[297,2],[345,2]]], [321,[8570.3,5960.68,-3.05176e-005],[[297,2],[346,2]]], [322,[9413.38,5987.07,0],[[298,2],[347,2]]], [323,[8698.39,7315.94,-3.05176e-005],[[299,2],[348,2]]], +[324,[8972.02,7161.2,0],[[300,2],[349,2]]], [325,[4803.38,6795.04,0],[[301,2],[350,2],[351,2]]], [326,[5312.55,6608.84,0],[[302,2],[352,2]]], [327,[5321.63,9315.26,0],[[303,2],[353,2]]], [328,[4934.48,7848.73,-3.05176e-005],[[304,2],[354,2]]], [329,[4656.82,8211.07,-3.05176e-005],[[305,2],[355,2]]], +[330,[4377.07,8756.27,3.05176e-005],[[306,2],[356,2],[330,2]]], [331,[4468.71,9005.15,0],[[306,2],[357,2]]], [332,[7212.17,5909.32,-3.05176e-005],[[307,2],[358,2]]], [333,[6901.09,5562.81,0],[[333,2],[359,2]]], [334,[7027.23,5562.77,3.05176e-005],[[308,2],[360,2]]], [335,[7590.65,5251.9,0],[[310,2],[361,2]]], +[336,[5714.88,9497.22,0],[[312,2],[362,2]]], [337,[9331.49,9107.92,0],[[313,2],[363,2]]], [338,[9376.59,8918.79,0],[[314,2],[364,2]]], [339,[9320.05,8910.66,0],[[314,2]]], [340,[9456.9,8814.33,0],[[314,2],[365,2],[366,2],[367,2]]], [341,[9048.2,8813.32,0],[[315,2],[318,2]]], +[342,[9231.28,8805.52,0],[[315,2],[368,2]]], [343,[8572.6,9555.64,-1.01725e-005],[[316,2],[343,2],[369,2]]], [344,[8659.56,7621.69,0],[[317,2],[370,2]]], [345,[8758.88,6026.49,1.01725e-005],[[320,2],[345,2],[371,2]]], [346,[8592.58,5930.46,0],[[321,2],[346,2],[372,2]]], [347,[9524.92,6000.12,-1.01725e-005],[[322,2],[373,2],[374,2]]], +[348,[8744.42,7442.69,-3.05176e-005],[[323,2],[370,2]]], [349,[9059.17,7169.65,0],[[324,2],[375,2],[349,2],[376,2]]], [350,[4763.36,6760.5,-1.01725e-005],[[325,2],[377,2],[378,2]]], [351,[4841.12,6949.43,3.05176e-005],[[325,2],[379,2]]], [352,[5360.29,6591.14,1.01725e-005],[[326,2],[352,2],[380,2]]], [353,[5286.46,9383.15,0],[[327,2],[381,2]]], +[354,[4918.31,7837.19,-2.03451e-005],[[328,2],[354,2],[382,2]]], [355,[4501.52,8244.05,0],[[329,2],[383,2]]], [356,[4371.45,8753.07,0],[[330,2],[384,2]]], [357,[4469.41,9127.48,3.05176e-005],[[331,2],[385,2]]], [358,[7257.93,5820.09,0],[[332,2],[386,2]]], [359,[6835.94,5386.31,0],[[333,2],[387,2]]], +[360,[7172.36,5514.58,0],[[334,2],[388,2]]], [361,[7566.22,5250,-5.08626e-006],[[335,2],[389,2],[390,2]]], [362,[5735.51,9627.03,0],[[336,2],[391,2]]], [363,[9358.67,9241.57,-3.05176e-005],[[337,2],[392,2]]], [364,[9402.17,8957.47,0],[[338,2]]], [365,[9587.22,8804.41,-3.05176e-005],[[340,2],[393,2]]], +[366,[9460.67,8896.72,0],[[340,2],[394,2]]], [367,[9439.1,8678.31,0],[[340,2],[395,2]]], [368,[9279.73,8809.84,0],[[342,2],[368,2]]], [369,[8623.91,9641.76,3.05176e-005],[[343,2],[396,2],[397,2]]], [370,[8731.39,7503.47,0],[[344,2],[348,2]]], [371,[8837.79,6015.48,0],[[345,2],[398,2]]], +[372,[8602.98,5878.23,-7.62939e-006],[[346,2],[399,2],[400,2],[372,2]]], [373,[9510.19,5932.53,0],[[347,2],[401,2]]], [374,[9624.25,6073.16,0],[[347,2],[402,2]]], [375,[9048.43,7161.77,0],[[349,2]]], [376,[9096,7177.9,-1.52588e-005],[[376,2],[403,2]]], [377,[4762.72,6656.98,0],[[350,2],[404,2]]], +[378,[4694.69,6845.82,0],[[350,2],[405,2]]], [379,[4839.51,7069.72,0],[[351,2],[406,2]]], [380,[5441.04,6484.88,1.52588e-005],[[352,2],[407,2]]], [381,[5272.17,9467.74,-3.05176e-005],[[353,2],[408,2]]], [382,[4865.54,7824.36,-1.01725e-005],[[354,2],[382,2],[409,2]]], [383,[4482.08,8241.72,0],[[355,2],[383,2],[410,2]]], +[384,[4233.31,8739.45,0],[[356,2],[411,2]]], [385,[4421.34,9189.58,0],[[357,2],[412,2]]], [386,[7256.69,5746.87,2.03451e-005],[[358,2],[386,2],[413,2]]], [387,[6802.07,5218.2,0],[[359,2],[414,2]]], [388,[7297.05,5455.73,-1.52588e-005],[[360,2],[415,2]]], [389,[7540.01,5217.13,-5.08626e-006],[[361,2],[416,2],[389,2]]], +[390,[7514.8,5343.7,0],[[361,2],[415,2]]], [391,[5789.92,9770.88,0],[[362,2],[417,2]]], [392,[9336.47,9348.63,3.05176e-005],[[363,2],[418,2]]], [393,[9651.2,8815.72,-7.62939e-006],[[365,2],[419,2],[393,2],[420,2]]], [394,[9481.71,8936.52,0],[[366,2]]], [395,[9355.6,8608.05,0],[[367,2],[421,2]]], +[396,[8778.3,9688.89,3.05176e-005],[[369,2],[422,2]]], [397,[8572.03,9780.24,0],[[369,2],[423,2]]], [398,[8959.61,5995.15,0],[[371,2],[424,2]]], [399,[8593.36,5801.13,0],[[372,2],[425,2]]], [400,[8598.9,5890.24,0],[[372,2]]], [401,[9424.65,5860.8,0],[[373,2],[426,2]]], +[402,[9732.16,6081.59,3.05176e-005],[[374,2],[427,2]]], [403,[9244.92,7155.45,0],[[376,2],[428,2]]], [404,[4787.85,6587.01,0],[[377,2],[404,2],[429,2]]], [405,[4594.03,6894.55,0],[[378,2],[430,2]]], [406,[4808.74,7173.31,0],[[379,2],[431,2]]], [407,[5554.61,6439.7,1.52588e-005],[[380,2],[432,2]]], +[408,[5292.66,9604.63,0],[[381,2],[433,2]]], [409,[4732.22,7731.42,0],[[382,2],[434,2]]], [410,[4348.05,8162.47,0],[[383,2],[435,2]]], [411,[4117.46,8767.42,0],[[384,2],[436,2]]], [412,[4369.54,9301.7,0],[[385,2],[437,2]]], [413,[7255.56,5610.48,0],[[386,2],[438,2]]], +[414,[6775.28,5091.56,0],[[387,2],[439,2]]], [415,[7360.18,5423.65,3.8147e-006],[[388,2],[390,2],[440,2],[415,2],[438,2]]], [416,[7543.75,5146.09,0],[[389,2],[441,2],[442,2]]], [417,[5843.83,9905.83,0],[[391,2],[443,2]]], [418,[9328.24,9360.76,0],[[392,2],[418,2],[444,2]]], [419,[9777.91,8798.86,0],[[393,2],[419,2],[445,2],[446,2]]], +[420,[9683.96,8850.83,0],[[393,2],[447,2],[448,2]]], [421,[9230.84,8620.77,-3.05176e-005],[[395,2],[449,2]]], [422,[8907.86,9714.89,3.05176e-005],[[396,2],[450,2]]], [423,[8535.66,9837.93,0],[[397,2],[451,2],[423,2],[452,2],[453,2]]], [424,[9072.65,5950.87,0],[[398,2],[454,2]]], [425,[8485.89,5726.39,0],[[399,2],[455,2]]], +[426,[9362.48,5853.89,0],[[401,2],[456,2],[454,2]]], [427,[9812.92,6047.48,0],[[402,2],[457,2]]], [428,[9296.93,7187.54,-1.01725e-005],[[403,2],[428,2],[458,2]]], [429,[4743.8,6482.79,0],[[404,2],[459,2]]], [430,[4525.55,6967.61,0],[[405,2],[460,2]]], [431,[4692.28,7237.98,0],[[406,2],[461,2],[462,2]]], +[432,[5617.83,6395.1,0],[[407,2],[463,2]]], [433,[5293.79,9708.18,0],[[408,2],[464,2]]], [434,[4663.78,7631.88,-6.10352e-005],[[409,2],[465,2]]], [435,[4269.03,8122.86,0],[[410,2],[466,2]]], [436,[3976.23,8801.61,0],[[411,2],[467,2]]], [437,[4368.08,9362.46,0],[[412,2],[468,2]]], +[438,[7276.05,5531.23,0],[[413,2],[415,2],[469,2]]], [439,[6767.54,5080.76,1.01725e-005],[[414,2],[439,2],[470,2]]], [440,[7348.08,5436.02,0],[[415,2]]], [441,[7449.98,5139.72,0],[[416,2],[441,2]]], [442,[7530.46,5049.26,0],[[416,2],[471,2]]], [443,[5846.31,10028.3,0],[[417,2],[472,2]]], +[444,[9279.24,9413.73,1.52588e-005],[[444,2],[473,2]]], [445,[9773.88,8773.12,0],[[419,2]]], [446,[9903.76,8806.75,0],[[419,2],[474,2],[475,2]]], [447,[9727.72,8920.96,0],[[420,2],[447,2]]], [448,[9688.68,8890.68,0],[[420,2]]], [449,[9163.21,8634.88,3.05176e-005],[[421,2],[476,2]]], +[450,[9057.29,9728.82,0],[[422,2],[477,2]]], [451,[8534.16,9815.86,0],[[423,2]]], [452,[8405.15,9823.67,0],[[423,2],[478,2]]], [453,[8628.55,9927.64,-1.01725e-005],[[423,2],[453,2],[479,2]]], [454,[9186.78,5871.2,3.05176e-005],[[424,2],[426,2],[456,2]]], [455,[8393.87,5633.22,0],[[425,2],[480,2]]], +[456,[9235.46,5842.84,0],[[426,2],[454,2],[456,2]]], [457,[9872.41,5992.83,0],[[427,2],[481,2]]], [458,[9386.49,7147.67,1.52588e-005],[[428,2],[458,2],[482,2]]], [459,[4706.51,6422.88,0],[[429,2],[483,2]]], [460,[4456.54,7061.59,0],[[430,2],[484,2]]], [461,[4612.89,7311.16,0],[[431,2],[485,2],[462,2],[461,2]]], +[462,[4601.88,7293.59,0],[[461,2],[512,2],[462,2],[431,2]]], [463,[5698.69,6291.83,-1.52588e-005],[[432,2],[486,2]]], [464,[5266.66,9772.74,0],[[433,2],[487,2]]], [465,[4643.02,7542.98,0],[[434,2],[485,2]]], [466,[4128.58,8140.51,0],[[435,2],[488,2]]], [467,[3815.23,8864.53,-7.62939e-006],[[436,2],[489,2],[490,2],[491,2]]], +[468,[4466.98,9453.39,0],[[437,2],[492,2]]], [469,[7336.63,5466.37,0],[[438,2]]], [470,[6749.28,5065.56,0],[[439,2],[470,2],[493,2]]], [471,[7530.51,5013.77,0],[[442,2],[494,2],[495,2]]], [472,[5834.31,10097.3,0],[[443,2],[496,2]]], [473,[9203.82,9514.05,0],[[444,2],[497,2]]], +[474,[10091.6,8869.19,0],[[446,2],[498,2]]], [475,[9948.65,8671.63,0],[[446,2],[499,2],[500,2]]], [476,[9107.22,8592.59,0],[[449,2],[501,2]]], [477,[9088.74,9716.56,0],[[450,2],[477,2],[502,2]]], [478,[8277.92,9803.75,0],[[452,2],[503,2]]], [479,[8624.45,10013.6,-3.05176e-005],[[453,2],[504,2]]], +[480,[8346.96,5533.37,1.52588e-005],[[455,2],[505,2]]], [481,[9894.41,6002.92,0],[[457,2],[506,2],[507,2]]], [482,[9429.3,7179.95,-5.08626e-006],[[458,2],[482,2],[508,2]]], [483,[4705.82,6359.69,0],[[459,2],[509,2],[510,2]]], [484,[4412.65,7156.25,0],[[460,2],[511,2]]], [485,[4644.04,7474,0],[[461,2],[465,2]]], +[486,[5757.87,6188.8,0],[[463,2],[513,2]]], [487,[5187.89,9779.29,1.01725e-005],[[464,2],[514,2],[487,2],[515,2]]], [488,[3984.45,8159.96,-3.05176e-005],[[466,2],[516,2]]], [489,[3755.86,8715.29,0],[[467,2],[517,2]]], [490,[3661.59,8945.41,0],[[467,2],[518,2]]], [491,[3825.23,8930.92,0],[[467,2],[519,2],[491,2],[520,2]]], +[492,[4497.11,9497.61,-1.01725e-005],[[468,2],[492,2],[521,2]]], [493,[6657.28,4948.42,0],[[470,2],[493,2],[522,2]]], [494,[7485.79,4904.38,1.52588e-005],[[471,2],[523,2]]], [495,[7597.57,4951.55,0],[[471,2],[524,2]]], [496,[5851,10136.1,7.62939e-006],[[472,2],[525,2],[526,2],[527,2]]], [497,[9130.2,9547.78,-1.01725e-005],[[473,2],[497,2],[528,2],[502,2]]], +[498,[10232.8,8892.71,-1.52588e-005],[[474,2],[529,2]]], [499,[9977.53,8584.79,1.01725e-005],[[475,2],[530,2],[500,2],[499,2]]], [500,[9981.2,8594.25,0],[[499,2],[564,2],[500,2],[475,2]]], [501,[9128.62,8544.12,0],[[476,2],[531,2]]], [502,[9159.63,9641.04,0],[[477,2],[497,2],[532,2],[528,2]]], [503,[8135.3,9782.24,-3.05176e-005],[[478,2],[533,2]]], +[504,[8583.56,10173.2,0],[[479,2],[534,2]]], [505,[8325.28,5488.38,0],[[480,2],[535,2],[536,2],[537,2]]], [506,[9891.11,6125.24,-3.05176e-005],[[481,2],[538,2]]], [507,[9938.12,5980.15,0],[[481,2],[539,2],[507,2]]], [508,[9530.94,7221.06,-3.05176e-006],[[482,2],[508,2],[540,2],[541,2],[542,2],[543,2]]], [509,[4607.53,6414.65,0],[[483,2],[544,2],[509,2]]], +[510,[4729.01,6292.44,-1.01725e-005],[[483,2],[545,2],[546,2]]], [511,[4361.01,7255.13,0],[[484,2],[547,2]]], [512,[4628.79,7271.81,0],[[462,2]]], [513,[5791.88,6080.6,0],[[486,2],[548,2]]], [514,[5209.11,9781.02,1.52588e-005],[[487,2]]], [515,[5106.13,9763.56,-1.01725e-005],[[487,2],[549,2],[550,2]]], +[516,[3839.91,8187.05,-3.05176e-005],[[488,2],[551,2]]], [517,[3684.63,8605.71,0],[[489,2],[552,2]]], [518,[3580,9026.19,0],[[490,2],[553,2]]], [519,[3857.4,9021.47,3.05176e-005],[[491,2],[519,2]]], [520,[3766.42,8956.7,0],[[491,2]]], [521,[4494.1,9634.65,0],[[492,2],[554,2]]], +[522,[6641.38,4906.29,-5.08626e-006],[[493,2],[522,2],[555,2]]], [523,[7475.81,4777.16,-1.52588e-005],[[494,2],[556,2]]], [524,[7717.02,4874.98,0],[[495,2],[557,2]]], [525,[5898.98,10219.9,0],[[496,2],[558,2],[559,2]]], [526,[5775.16,10204.1,-1.01725e-005],[[496,2],[526,2],[560,2]]], [527,[5934.29,10083.8,0],[[527,2],[561,2],[496,2]]], +[528,[9122.35,9591.62,1.52588e-005],[[497,2],[502,2]]], [529,[10317.5,8914.79,0],[[498,2],[562,2]]], [530,[9981.68,8460.04,0],[[499,2],[563,2]]], [531,[9197.97,8498.57,0],[[501,2],[565,2]]], [532,[9339.38,9699.92,0],[[502,2],[566,2]]], [533,[7960.58,9734.19,0],[[503,2],[567,2]]], +[534,[8561.54,10299,0],[[504,2],[534,2],[568,2]]], [535,[8251.72,5383.78,0],[[505,2],[569,2],[537,2],[535,2]]], [536,[8346.65,5459.04,1.52588e-005],[[505,2]]], [537,[8269.11,5395.53,0],[[535,2],[601,2],[537,2],[505,2]]], [538,[9883.45,6208.39,0],[[506,2],[538,2],[570,2]]], [539,[9974.23,5822.07,0],[[507,2],[571,2]]], +[540,[9491.1,7104.91,0],[[508,2],[543,2],[540,2],[572,2]]], [541,[9640.66,7161.22,-1.52588e-005],[[508,2],[573,2]]], [542,[9638.98,7353.81,0],[[508,2],[574,2]]], [543,[9477.24,7132.24,-3.8147e-006],[[540,2],[543,2],[508,2]]], [544,[4582.36,6442.54,7.62939e-006],[[509,2],[575,2],[544,2]]], [545,[4726.31,6151.56,0],[[510,2],[576,2]]], +[546,[4894.83,6308.25,0],[[510,2],[577,2]]], [547,[4354.61,7267.33,1.01725e-005],[[511,2],[547,2],[578,2]]], [548,[5828.1,5967.84,0],[[513,2],[579,2]]], [549,[5057.25,9884.37,0],[[515,2],[580,2]]], [550,[5084.07,9699.71,0],[[515,2],[581,2],[550,2]]], [551,[3704.83,8166.88,3.05176e-005],[[516,2],[582,2]]], +[552,[3606.99,8519.94,0],[[517,2],[583,2]]], [553,[3547.29,9107.86,0],[[518,2],[553,2],[584,2]]], [554,[4536.36,9754.58,-3.05176e-005],[[521,2],[585,2]]], [555,[6542.4,4797.54,0],[[522,2],[586,2]]], [556,[7514.11,4661.71,0],[[523,2],[587,2]]], [557,[7790.12,4844.58,0],[[524,2],[588,2]]], +[558,[5984.94,10343,1.52588e-005],[[525,2],[589,2],[558,2],[590,2]]], [559,[5933.61,10198.4,0],[[525,2]]], [560,[5740.1,10259.9,1.01725e-005],[[526,2],[560,2],[591,2]]], [561,[5920.32,10096.4,0],[[527,2]]], [562,[10334.3,8927.15,1.01725e-005],[[529,2],[562,2],[594,2]]], [563,[10005.4,8375.79,0],[[530,2],[595,2]]], +[564,[9974.11,8615.94,0],[[500,2]]], [565,[9217.15,8425.4,0],[[531,2],[596,2]]], [566,[9501.8,9755.08,0],[[532,2],[597,2]]], [567,[7823.75,9707.4,0],[[533,2],[598,2]]], [568,[8464.24,10378.3,3.05176e-005],[[534,2],[599,2]]], [569,[8199.9,5309.13,0],[[535,2],[569,2],[600,2]]], +[570,[9803.08,6277.28,0],[[538,2],[602,2]]], [571,[9982.28,5719.27,0],[[539,2],[603,2]]], [572,[9579.15,6953.71,0],[[540,2],[604,2]]], [573,[9736.53,7075.94,0],[[541,2],[605,2]]], [574,[9655.11,7426.89,0],[[542,2],[606,2]]], [575,[4490.16,6414.92,0],[[544,2],[607,2]]], +[576,[4757.53,6085.43,0],[[545,2],[576,2],[608,2]]], [577,[4998.96,6336.92,-3.05176e-005],[[546,2],[609,2]]], [578,[4242.89,7313.26,0],[[547,2],[610,2]]], [579,[5868.32,5872.04,-1.52588e-005],[[548,2],[611,2]]], [580,[5019.52,9965.71,0],[[580,2],[612,2]]], [581,[5006.56,9581.54,0],[[550,2],[613,2]]], +[582,[3658.97,8142.51,0],[[551,2],[582,2],[614,2],[615,2]]], [583,[3525.35,8434.92,0],[[552,2],[616,2]]], [584,[3505.28,9116.89,1.01725e-005],[[553,2],[617,2],[584,2],[618,2]]], [585,[4548.21,9872.38,1.01725e-005],[[554,2],[619,2],[620,2]]], [586,[6470.8,4700.44,1.52588e-005],[[555,2],[621,2]]], [587,[7519.71,4634.89,0],[[556,2],[622,2],[623,2]]], +[588,[7857.94,4787.74,0],[[557,2],[624,2]]], [589,[6061.54,10465.5,-7.62939e-006],[[558,2],[625,2],[589,2],[626,2]]], [590,[6066.91,10315.4,0],[[558,2],[627,2]]], [591,[5593.91,10351,0],[[560,2],[628,2]]], [592,[6027.92,9963.9,0],[[527,2],[593,2]]], [593,[6159.26,9863.24,0],[[592,2],[629,2]]], +[594,[10389.1,8957.88,-5.08626e-006],[[562,2],[630,2],[631,2]]], [595,[9948.75,8280.77,0],[[563,2],[632,2]]], [596,[9190.08,8332.17,0],[[565,2],[633,2]]], [597,[9625.45,9789.05,0],[[566,2],[634,2]]], [598,[7658.62,9692.62,0],[[567,2],[635,2]]], [599,[8350.45,10428,0],[[568,2],[636,2]]], +[600,[8169.86,5279.93,0],[[569,2],[637,2],[638,2]]], [601,[8280.14,5419.19,0],[[537,2]]], [602,[9725.84,6322.31,0],[[570,2],[639,2]]], [603,[10036.3,5657.81,0],[[571,2],[640,2],[641,2]]], [604,[9575.64,6814.67,0],[[572,2],[642,2],[643,2]]], [605,[9824.96,7033.09,5.08626e-006],[[573,2],[644,2],[645,2]]], +[606,[9604.71,7521.05,0],[[574,2],[646,2]]], [607,[4416.08,6413.06,-1.01725e-005],[[575,2],[647,2],[648,2]]], [608,[4746.4,5969.48,-3.05176e-005],[[576,2],[649,2]]], [609,[5091.17,6366.37,0],[[577,2],[650,2]]], [610,[4228.36,7306.7,0],[[578,2],[610,2],[651,2]]], [611,[5933.63,5786.44,0],[[579,2],[652,2]]], +[612,[4940.87,10160.6,0],[[580,2],[653,2]]], [613,[4907.95,9551.24,0],[[581,2],[654,2]]], [614,[3683.48,8247.2,0],[[582,2],[614,2]]], [615,[3606.19,8042.68,-3.05176e-005],[[582,2],[655,2]]], [616,[3411.98,8327.65,3.05176e-005],[[583,2],[656,2]]], [617,[3442.65,9095.69,0],[[584,2],[657,2]]], +[618,[3519.54,9122.24,1.52588e-005],[[584,2]]], [619,[4484.82,9998.87,0],[[585,2],[658,2]]], [620,[4619.7,9769.88,-1.01725e-005],[[585,2],[659,2],[660,2]]], [621,[6475.54,4608.69,0],[[586,2],[661,2]]], [622,[7404.48,4650.75,0],[[587,2],[662,2]]], [623,[7654,4561.71,0],[[587,2],[663,2]]], +[624,[7916.35,4732.84,0],[[588,2],[664,2]]], [625,[6084.05,10553.6,0],[[589,2],[665,2],[666,2]]], [626,[6164.26,10453.2,0],[[589,2],[667,2]]], [627,[6133.65,10260.6,0],[[590,2],[668,2]]], [628,[5481.62,10408.4,0],[[591,2],[669,2]]], [629,[6263.65,9771.65,0],[[593,2],[670,2]]], +[630,[10427.8,8865.01,0],[[594,2],[671,2]]], [631,[10342,9000.26,-5.08626e-006],[[594,2],[631,2],[672,2]]], [632,[9859.3,8252.48,0],[[595,2],[673,2]]], [633,[9165.87,8256.53,0],[[596,2],[674,2]]], [634,[9668.42,9850.39,0],[[597,2],[675,2]]], [635,[7487.96,9668.23,0],[[598,2],[676,2],[677,2]]], +[636,[8249.22,10482,1.01725e-005],[[599,2],[678,2],[636,2],[679,2]]], [637,[8171.22,5296.66,5.08626e-006],[[600,2]]], [638,[8275.24,5155.32,0],[[600,2],[680,2]]], [639,[9672.88,6351.52,5.08626e-006],[[602,2],[639,2],[681,2]]], [640,[10096.1,5495.19,0],[[603,2],[682,2],[683,2]]], [641,[10136.6,5736.88,-1.52588e-005],[[603,2],[684,2]]], +[642,[9481.02,6754.64,0],[[604,2],[685,2]]], [643,[9634.64,6799.15,0],[[604,2],[643,2],[686,2]]], [644,[9751.58,6991.99,0],[[605,2],[686,2]]], [645,[9954.47,7074.99,0],[[605,2],[687,2]]], [646,[9507.71,7658.12,0],[[606,2],[688,2]]], [647,[4327.53,6509.64,0],[[607,2],[689,2]]], +[648,[4402.81,6226.72,0],[[607,2],[690,2]]], [649,[4791.56,5871.03,3.05176e-005],[[608,2],[691,2]]], [650,[5188.51,6454.48,0],[[609,2],[692,2]]], [651,[4202.19,7253.63,0],[[610,2],[693,2],[694,2]]], [652,[5964.21,5676.47,0],[[611,2],[695,2]]], [653,[4880.14,10258.3,0],[[612,2],[696,2],[697,2]]], +[654,[4774.1,9539.18,0],[[613,2],[654,2],[660,2]]], [655,[3563.83,7901.73,0],[[615,2],[698,2]]], [656,[3306.8,8245.73,3.05176e-005],[[616,2],[699,2]]], [657,[3295.41,9178.34,0],[[617,2],[700,2]]], [658,[4406.89,10130.9,0],[[619,2],[701,2]]], [659,[4616.07,9701.13,-1.01725e-005],[[620,2],[702,2],[659,2]]], +[660,[4704.1,9653.05,0],[[620,2],[654,2]]], [661,[6505.83,4577.3,0],[[621,2],[703,2],[704,2]]], [662,[7332.46,4638.22,-1.52588e-005],[[622,2],[705,2]]], [663,[7746.95,4561.9,0],[[623,2],[706,2]]], [664,[8035.88,4729.05,0],[[624,2],[707,2]]], [665,[6145.47,10663.6,0],[[625,2],[708,2]]], +[666,[6036.94,10591.1,1.01725e-005],[[625,2],[666,2],[709,2]]], [667,[6252.51,10422.2,3.05176e-005],[[626,2],[710,2]]], [668,[6146.44,10258.5,0],[[627,2],[668,2],[711,2]]], [669,[5351.43,10505.7,0],[[628,2],[712,2]]], [670,[6352.87,9685.47,0],[[629,2],[713,2]]], [671,[10486.8,8746.65,0],[[630,2],[714,2]]], +[672,[10229.3,9066.61,1.52588e-005],[[631,2],[715,2]]], [673,[9816.08,8216.3,0],[[632,2],[716,2]]], [674,[9180.52,8186.96,0],[[633,2],[717,2]]], [675,[9693.1,9995.02,-1.52588e-005],[[634,2],[718,2]]], [676,[7596.11,9536.6,-3.05176e-005],[[635,2],[719,2]]], [677,[7358.05,9778.48,0],[[635,2],[720,2]]], +[678,[8252.67,10464.7,1.52588e-005],[[636,2]]], [679,[8266.43,10548.5,0],[[636,2],[721,2],[679,2]]], [680,[8369.26,5032.6,0],[[638,2],[722,2]]], [681,[9649.59,6454.67,1.52588e-005],[[639,2],[723,2]]], [682,[10142.9,5429.25,0],[[640,2],[724,2],[725,2]]], [683,[10016.7,5477.23,0],[[640,2],[726,2],[727,2]]], +[684,[10234.6,5739.91,0],[[641,2],[728,2]]], [685,[9473.06,6745.76,0],[[642,2],[685,2],[729,2]]], [686,[9691.04,6903.74,0],[[643,2],[644,2]]], [687,[10081.9,7057.92,0],[[645,2],[730,2]]], [688,[9439.34,7705.28,-5.08626e-006],[[646,2],[688,2],[731,2]]], [689,[4288.23,6543.5,-1.01725e-005],[[647,2],[689,2],[732,2]]], +[690,[4396.7,6065.2,0],[[648,2],[733,2]]], [691,[4866.05,5706.3,0],[[649,2],[734,2]]], [692,[5268.1,6517.74,0],[[650,2]]], [693,[4061.47,7368.84,-3.05176e-005],[[651,2],[735,2]]], [694,[4126.53,7125.85,0],[[651,2],[736,2]]], [695,[5961.15,5658.11,0],[[652,2],[695,2],[737,2]]], +[696,[4792.18,10345.8,0],[[653,2],[738,2]]], [697,[4820.95,10235.3,0],[[653,2]]], [698,[3539.76,7795.69,-1.01725e-005],[[655,2],[739,2],[740,2]]], [699,[3213.49,8163.31,0],[[656,2],[741,2]]], [700,[3188.85,9246.75,3.05176e-005],[[657,2],[742,2]]], [701,[4316.26,10279.3,0],[[658,2],[743,2]]], +[702,[4617.22,9600.27,0],[[659,2],[702,2],[744,2]]], [703,[6497.55,4516.15,0],[[661,2],[745,2]]], [704,[6658.35,4543.1,1.52588e-005],[[661,2],[746,2]]], [705,[7273.14,4599.5,0],[[662,2],[747,2],[705,2],[748,2]]], [706,[7841,4527.18,1.52588e-005],[[663,2],[749,2]]], [707,[8122.24,4782.51,0],[[664,2],[750,2]]], +[708,[6152.23,10794.3,0],[[665,2],[751,2]]], [709,[6028.42,10624.6,0],[[666,2],[709,2],[752,2]]], [710,[6373.4,10358,0],[[667,2],[753,2]]], [711,[6188.52,10311.7,-3.05176e-005],[[668,2],[754,2]]], [712,[5298.67,10567.4,0],[[669,2]]], [713,[6455.87,9672.11,-3.05176e-005],[[670,2],[755,2]]], +[714,[10568.7,8632.03,0],[[671,2],[756,2]]], [715,[10202.1,9107.95,0],[[672,2],[757,2],[758,2],[715,2]]], [716,[9816.91,8164.63,0],[[673,2],[759,2]]], [717,[9182.17,8099.86,1.52588e-005],[[674,2],[760,2]]], [718,[9697.89,10116.8,0],[[675,2],[761,2]]], [719,[7693,9474.94,0],[[676,2],[762,2],[763,2]]], +[720,[7279.33,9890.26,-3.05176e-005],[[677,2],[764,2]]], [721,[8348.3,10541.4,1.01725e-005],[[679,2],[721,2],[765,2]]], [722,[8410.36,4943.55,5.08626e-006],[[680,2],[766,2],[767,2]]], [723,[9617.23,6522.92,0],[[681,2],[768,2],[723,2],[769,2]]], [724,[10138,5243.7,0],[[682,2],[770,2]]], [725,[10243.3,5465.47,0],[[682,2],[771,2]]], +[726,[9879.66,5469.27,0],[[683,2]]], [727,[9961.14,5522.98,0],[[683,2]]], [728,[10279.6,5728.99,-3.8147e-006],[[684,2],[728,2],[772,2],[773,2]]], [729,[9469.38,6722.06,5.08626e-006],[[685,2],[729,2],[774,2]]], [730,[10221.1,7054.38,0],[[687,2],[775,2]]], [731,[9398.07,7702.63,5.08626e-006],[[688,2],[731,2],[776,2]]], +[732,[4163.44,6600.83,0],[[689,2],[777,2]]], [733,[4387.42,5928.47,3.05176e-005],[[690,2],[778,2]]], [734,[4884.91,5652.06,0],[[691,2],[779,2],[780,2]]], [735,[3974.8,7471.75,-3.05176e-005],[[693,2],[781,2]]], [736,[4041.61,7044.25,3.05176e-005],[[694,2],[782,2]]], [737,[5941.92,5534.94,0],[[695,2],[783,2]]], +[738,[4713.18,10407.7,0],[[696,2],[784,2]]], [739,[3398.65,7874.57,0],[[698,2],[785,2]]], [740,[3703.62,7694.7,0],[[698,2],[781,2]]], [741,[3155.81,8092.88,7.62939e-006],[[699,2],[786,2],[787,2],[788,2]]], [742,[3044.83,9299.79,0],[[700,2],[789,2]]], [743,[4241.87,10390.3,0],[[701,2],[790,2],[791,2]]], +[744,[4649.16,9616.29,0],[[702,2],[744,2]]], [745,[6552.39,4445.41,0],[[703,2]]], [746,[6724.17,4532.88,0],[[704,2],[746,2],[792,2]]], [747,[7290.38,4601.05,0],[[705,2]]], [748,[7146.62,4546.21,-1.52588e-005],[[705,2],[793,2]]], [749,[7929.07,4462.53,0],[[706,2],[794,2]]], +[750,[8206.01,4859.35,1.52588e-005],[[707,2],[795,2]]], [751,[6144.42,10891.8,0],[[708,2],[796,2]]], [752,[6012.39,10645.8,2.03451e-005],[[709,2],[752,2],[797,2]]], [753,[6496.41,10296.1,0],[[710,2],[798,2]]], [754,[6195.34,10380.5,0],[[711,2]]], [755,[6600.11,9641.93,0],[[713,2],[799,2]]], +[756,[10611.4,8522.79,0],[[714,2],[800,2]]], [757,[10322.6,9114.27,0],[[715,2],[801,2]]], [758,[10196.8,9095.39,0],[[715,2]]], [759,[9884.36,8068.58,-1.52588e-005],[[716,2],[802,2]]], [760,[9180.1,8062.9,0],[[717,2],[803,2],[804,2]]], [761,[9684.25,10246,0],[[718,2],[805,2]]], +[762,[7652.58,9406.52,0],[[719,2],[806,2]]], [763,[7837.96,9521.15,0],[[719,2],[807,2]]], [764,[7221.42,9939.76,-7.62939e-006],[[720,2],[808,2],[809,2],[764,2],[810,2]]], [765,[8420.29,10616.5,3.05176e-005],[[721,2],[811,2]]], [766,[8501.05,4902.01,-1.52588e-005],[[722,2],[812,2]]], [767,[8337.35,4918.27,0],[[722,2],[813,2],[795,2]]], +[768,[9596.9,6514.97,-1.52588e-005],[[723,2],[814,2],[768,2]]], [769,[9649.22,6555.1,5.08626e-006],[[723,2],[815,2],[816,2]]], [770,[10175.2,5187.57,0],[[724,2],[817,2]]], [771,[10340.8,5498.12,0],[[725,2],[772,2],[818,2]]], [772,[10273.6,5606.31,1.52588e-005],[[728,2],[771,2]]], [773,[10412.8,5814.73,7.62939e-006],[[728,2],[819,2],[773,2],[820,2]]], +[774,[9559.03,6660.55,0],[[729,2],[816,2]]], [775,[10324.5,7026.06,0],[[730,2],[821,2]]], [776,[9301.95,7784.44,0],[[731,2],[822,2]]], [777,[4090.49,6690.87,0],[[732,2],[823,2]]], [778,[4397.14,5796.91,-3.05176e-005],[[733,2],[824,2]]], [779,[4944.91,5582.45,0],[[734,2],[825,2]]], +[780,[4850.26,5655.1,1.01725e-005],[[734,2],[826,2],[827,2],[780,2]]], [781,[3848.06,7597.29,-3.05176e-005],[[735,2],[740,2]]], [782,[3911.4,6978.43,0],[[736,2],[828,2]]], [783,[5946.94,5473.17,0],[[737,2],[829,2],[783,2],[830,2]]], [784,[4687.42,10532.8,0],[[738,2],[831,2]]], [785,[3280.24,7959.32,0],[[739,2],[787,2]]], +[786,[3211.39,8074.25,0],[[741,2]]], [787,[3122.15,8048.65,0],[[741,2],[785,2],[832,2]]], [788,[3099.43,8112.89,0],[[741,2]]], [789,[2909.74,9361.06,3.05176e-005],[[742,2],[833,2]]], [790,[4122.32,10290.5,0],[[743,2],[834,2]]], [791,[4179.54,10529.5,0],[[743,2],[791,2],[835,2]]], +[792,[6799.38,4532.55,5.08626e-006],[[746,2],[836,2],[792,2],[837,2]]], [793,[7066.86,4502.29,0],[[748,2],[838,2],[837,2]]], [794,[7938.91,4455.37,-5.08626e-006],[[749,2],[794,2],[839,2]]], [795,[8286.25,4915.98,0],[[750,2],[767,2],[813,2]]], [796,[6113.54,10999.1,0],[[751,2],[840,2]]], [797,[5863.11,10705.4,0],[[752,2],[841,2]]], +[798,[6655.06,10192.4,0],[[753,2],[842,2]]], [799,[6703.57,9629.2,0],[[755,2],[843,2]]], [800,[10656.1,8388.69,0],[[756,2],[844,2]]], [801,[10427.7,9136.19,0],[[757,2],[845,2],[846,2]]], [802,[9936.04,7982.74,-1.52588e-005],[[759,2],[847,2]]], [803,[9116.16,8012.92,0],[[760,2],[848,2]]], +[804,[9224.05,8008.99,0],[[760,2],[849,2],[850,2],[804,2]]], [805,[9659.74,10360.8,0],[[761,2],[851,2]]], [806,[7656.9,9381.81,0],[[762,2],[806,2],[852,2]]], [807,[7969.36,9548.99,0],[[763,2],[853,2],[854,2]]], [808,[7059.13,9998.68,0],[[764,2],[855,2]]], [809,[7228.49,9940.68,-1.01725e-005],[[764,2]]], +[810,[7247.86,9977.6,1.01725e-005],[[764,2],[810,2],[856,2]]], [811,[8500.32,10659,1.01725e-005],[[765,2],[857,2],[811,2],[858,2]]], [812,[8619.12,4863.21,0],[[766,2],[859,2]]], [813,[8318.47,4911.95,0],[[813,2],[767,2]]], [814,[9600.48,6510.9,0],[[768,2]]], [815,[9713.93,6525.83,0],[[769,2]]], +[816,[9589.46,6584.4,0],[[769,2],[774,2],[816,2]]], [817,[10331.9,5124.25,0],[[770,2],[860,2]]], [818,[10464.6,5528.99,0],[[771,2],[861,2]]], [819,[10532.9,5900.69,0],[[773,2],[862,2]]], [820,[10471.7,5804.16,3.05176e-005],[[773,2],[863,2]]], [821,[10436.5,7004.22,7.62939e-006],[[775,2],[864,2]]], +[822,[9271.38,7803.19,-5.08626e-006],[[776,2],[822,2],[865,2],[849,2]]], [823,[4052.22,6727.28,1.01725e-005],[[777,2],[866,2],[867,2]]], [824,[4393.26,5654.15,0],[[778,2],[868,2],[869,2]]], [825,[5043.99,5578.19,0],[[779,2],[870,2]]], [826,[4703.5,5706.69,3.05176e-005],[[780,2],[869,2]]], [827,[4861.91,5649.44,0],[[780,2]]], +[828,[3894.34,6933.74,1.01725e-005],[[782,2],[871,2],[867,2]]], [829,[5916,5327.08,-5.08626e-006],[[783,2],[872,2],[873,2],[829,2]]], [830,[5939.13,5365.1,1.52588e-005],[[873,2],[783,2]]], [831,[4654.63,10696.1,0],[[784,2],[831,2],[874,2],[875,2]]], [832,[3090.39,7998.15,0],[[787,2],[876,2],[877,2],[878,2]]], [833,[2809.15,9422.63,0],[[789,2],[879,2]]], +[834,[3995.2,10186.4,0],[[790,2],[880,2]]], [835,[4081.82,10659.2,0],[[791,2],[881,2]]], [836,[6779.05,4538.68,7.62939e-006],[[792,2]]], [837,[6973.18,4508.47,0],[[792,2],[793,2]]], [838,[6982.7,4411.96,0],[[793,2],[882,2]]], [839,[8070.21,4458.88,0],[[794,2],[883,2]]], +[840,[6054.34,11059.7,0],[[796,2],[884,2]]], [841,[5755.39,10723.5,0],[[797,2],[885,2]]], [842,[6819.33,10115.8,0],[[798,2],[886,2],[855,2]]], [843,[6763.84,9720.41,1.01725e-005],[[799,2],[887,2],[843,2]]], [844,[10677.5,8273.48,0],[[800,2],[844,2],[888,2]]], [845,[10602.6,9131.04,1.52588e-005],[[801,2],[889,2]]], +[846,[10382.6,9250.47,0],[[801,2],[890,2]]], [847,[9984.1,7942.39,-5.08626e-006],[[802,2],[891,2],[892,2]]], [848,[9073.63,8017.74,0],[[803,2]]], [849,[9215.14,7848.13,0],[[804,2],[822,2],[893,2],[865,2],[894,2]]], [850,[9220.43,8033.41,0],[[804,2]]], [851,[9661.01,10423,0],[[805,2],[895,2],[851,2]]], +[852,[7738.49,9275.68,3.05176e-005],[[806,2],[896,2]]], [853,[8047.13,9513.35,0],[[807,2],[897,2],[853,2],[898,2]]], [854,[8017.79,9542.94,0],[[897,2],[807,2]]], [855,[6970.95,10052.2,0],[[808,2],[842,2],[855,2],[886,2]]], [856,[7215.7,10095.6,0],[[810,2],[899,2]]], [857,[8477.42,10660.8,1.52588e-005],[[811,2]]], +[858,[8610.91,10672.6,2.03451e-005],[[811,2],[858,2],[900,2]]], [859,[8758.32,4869.84,0],[[812,2],[901,2]]], [860,[10405.4,5095.81,5.08626e-006],[[817,2],[860,2],[902,2]]], [861,[10548.7,5495.83,-1.01725e-005],[[818,2],[903,2],[904,2]]], [862,[10575.4,5960.15,0],[[819,2],[905,2]]], [863,[10577.1,5815.1,0],[[820,2],[906,2]]], +[864,[10483.6,6998.03,0],[[821,2],[907,2]]], [865,[9215.92,7797.78,-1.52588e-005],[[822,2],[849,2],[893,2]]], [866,[3923.09,6733.72,0],[[823,2],[908,2]]], [867,[4026.35,6805.77,0],[[823,2],[828,2]]], [868,[4340.02,5537,0],[[824,2],[909,2]]], [869,[4524.23,5689.99,0],[[824,2],[826,2]]], +[870,[5170.84,5525.38,-3.05176e-005],[[825,2],[910,2]]], [871,[3887.33,6958.33,0],[[828,2]]], [872,[5836.45,5239.53,0],[[829,2],[872,2],[911,2]]], [873,[5935.27,5341.93,0],[[829,2],[830,2],[873,2]]], [874,[4765.35,10761.3,0],[[831,2],[912,2]]], [875,[4561.83,10822.3,0],[[831,2],[913,2]]], +[876,[3135.49,7971.88,0],[[832,2]]], [877,[3054.98,7922.47,-1.01725e-005],[[832,2],[914,2],[915,2]]], [878,[3032.94,8012.11,0],[[832,2],[916,2],[878,2],[917,2]]], [879,[2697.24,9526.5,0],[[833,2],[918,2]]], [880,[3886.94,10121.8,0],[[834,2],[919,2]]], [881,[3999.45,10717.7,0],[[835,2],[920,2]]], +[882,[6967.85,4411.07,-5.08626e-006],[[838,2],[882,2],[921,2]]], [883,[8244.62,4453.73,0],[[839,2],[922,2]]], [884,[6025.35,11105.1,5.08626e-006],[[840,2],[923,2],[924,2]]], [885,[5739.41,10724.9,0],[[841,2],[885,2],[925,2]]], [886,[6951.06,10078,0],[[842,2],[855,2]]], [887,[6857.19,9811.65,0],[[843,2],[926,2]]], +[888,[10732.7,8175.07,0],[[844,2],[927,2]]], [889,[10698.1,9131.72,0],[[845,2],[928,2]]], [890,[10396.7,9353.39,0],[[846,2],[929,2]]], [891,[9903.49,7845.56,0],[[847,2],[930,2]]], [892,[10125,7842.44,0],[[847,2],[931,2]]], [893,[9199.43,7816.22,0],[[849,2],[865,2],[893,2]]], +[894,[9331.77,7883.5,0],[[849,2],[932,2]]], [895,[9710.69,10467.4,1.52588e-005],[[851,2],[933,2]]], [896,[7798.35,9148.48,-3.05176e-005],[[852,2],[934,2]]], [897,[8040.58,9532.15,0],[[853,2],[854,2],[897,2]]], [898,[8073.4,9412.19,0],[[853,2],[898,2],[935,2]]], [899,[7221,10229.7,0],[[856,2],[936,2]]], +[900,[8655.66,10771.6,0],[[858,2],[937,2]]], [901,[8862.35,4914.45,0],[[859,2],[938,2]]], [902,[10492.4,5013.55,1.52588e-005],[[860,2],[939,2]]], [903,[10622.3,5378.32,0],[[861,2],[940,2]]], [904,[10656.3,5496.35,0],[[861,2],[941,2]]], [905,[10571.2,6023.93,0],[[862,2],[942,2]]], +[906,[10722.1,5821.92,0],[[863,2],[943,2]]], [907,[10535,7044.78,-2.54313e-006],[[864,2],[944,2],[945,2]]], [908,[3873.29,6694.03,0],[[866,2],[946,2]]], [909,[4299.07,5502.82,-1.01725e-005],[[868,2],[947,2],[948,2]]], [910,[5258.82,5493.77,0],[[870,2]]], [911,[5810.11,5102.89,0],[[872,2],[949,2]]], +[912,[4860.03,10795.1,0],[[874,2],[950,2]]], [913,[4527.55,10834.9,0],[[875,2],[951,2],[913,2],[952,2]]], [914,[3012.2,7857.3,0],[[877,2],[953,2]]], [915,[3001.36,7918.33,1.01725e-005],[[877,2],[954,2],[915,2]]], [916,[2926.6,8123.94,0],[[878,2],[955,2]]], [917,[3019.94,7991.51,0],[[878,2]]], +[918,[2596.87,9583.42,-3.05176e-005],[[879,2],[956,2],[957,2]]], [919,[3759.57,10090.4,0],[[880,2],[919,2],[958,2]]], [920,[3927.19,10838,0],[[881,2],[959,2]]], [921,[6936.79,4397.93,0],[[882,2],[921,2],[960,2]]], [922,[8367.65,4449.05,0],[[883,2],[961,2]]], [923,[5973.85,11236.8,0],[[884,2],[962,2]]], +[924,[5933.24,11123.8,0],[[884,2],[963,2]]], [925,[5585.72,10777.4,3.05176e-005],[[885,2],[964,2]]], [926,[6895.58,9874.16,0],[[887,2]]], [927,[10747.4,8132.32,-5.08626e-006],[[888,2],[965,2],[966,2]]], [928,[10813.2,9113.49,0],[[889,2],[967,2]]], [929,[10388.9,9464.18,0],[[890,2],[968,2]]], +[930,[9852.43,7833.25,0],[[891,2],[969,2]]], [931,[10224.1,7790.27,0],[[892,2],[970,2]]], [932,[9424.19,7890.79,0],[[894,2],[971,2]]], [933,[9808.99,10457.7,0],[[895,2],[972,2]]], [934,[7839.48,9035.75,3.05176e-005],[[896,2],[973,2]]], [935,[8071.32,9378.48,0],[[898,2],[935,2],[974,2]]], +[936,[7203.95,10301.9,-3.05176e-005],[[899,2],[975,2]]], [937,[8716.21,10801,0],[[900,2],[976,2]]], [938,[8953.73,4946.99,0],[[901,2],[977,2]]], [939,[10596.1,4926.15,-1.52588e-005],[[902,2],[978,2]]], [940,[10754.2,5341.66,-3.05176e-005],[[903,2],[979,2]]], [941,[10771.8,5477.36,0],[[904,2],[980,2]]], +[942,[10533.9,6125.38,1.52588e-005],[[905,2],[981,2]]], [943,[10853.1,5838.26,0],[[906,2],[982,2]]], [944,[10606.9,6928.99,0],[[907,2],[983,2]]], [945,[10483.6,7122.03,0],[[907,2],[945,2],[984,2]]], [946,[3843.53,6675.59,1.01725e-005],[[908,2],[946,2],[985,2]]], [947,[4170.94,5613.91,0],[[909,2],[986,2]]], +[948,[4240.89,5454.39,0],[[909,2],[987,2],[988,2]]], [949,[5860.58,4950.44,0],[[911,2],[989,2]]], [950,[4882.58,10831.2,0],[[912,2],[990,2],[950,2],[991,2]]], [951,[4546.26,10830.8,0],[[913,2]]], [952,[4368.21,10934.5,0],[[913,2],[992,2]]], [953,[3015.95,7834.71,0],[[914,2],[993,2],[994,2]]], +[954,[2949.94,7874.08,0],[[915,2]]], [955,[2843.54,8240.17,0],[[916,2],[995,2]]], [956,[2517.34,9642.38,0],[[918,2],[996,2],[997,2],[957,2],[956,2]]], [957,[2522.76,9618.65,0],[[956,2],[1043,2],[957,2],[918,2]]], [958,[3662.69,10040,0],[[919,2],[958,2],[998,2]]], [959,[3936.36,10964.4,-1.01725e-005],[[920,2],[959,2],[999,2]]], +[960,[6904.61,4262.7,0],[[921,2],[1000,2]]], [961,[8417.44,4432.79,0],[[922,2],[1001,2],[1002,2]]], [962,[5936.86,11336.3,0],[[923,2],[1003,2]]], [963,[5854.79,11138.8,0],[[924,2],[1004,2]]], [964,[5513.19,10830.1,0],[[925,2],[1005,2]]], [965,[10835.8,8116.27,0],[[927,2],[1006,2]]], +[966,[10709.4,8093.94,5.08626e-006],[[927,2],[1007,2],[1008,2]]], [967,[10918.8,9111.15,0],[[928,2],[1009,2]]], [968,[10375,9514.82,1.01725e-005],[[929,2],[968,2],[1010,2]]], [969,[9807.01,7779.24,0],[[969,2]]], [970,[10316.9,7794.2,0],[[931,2],[1011,2]]], [971,[9544.88,7894.22,0],[[932,2],[1012,2]]], +[972,[9876.47,10420.9,-5.08626e-006],[[933,2],[1013,2],[1014,2]]], [973,[7868.67,8897.61,0],[[934,2],[1015,2]]], [974,[8119.67,9307.76,0],[[935,2]]], [975,[7145.12,10399.4,3.05176e-005],[[936,2],[1016,2]]], [976,[8776.95,10833.6,0],[[937,2],[1017,2],[976,2],[1018,2]]], [977,[9057.48,4927.12,-2.54313e-006],[[938,2],[1019,2],[1020,2]]], +[978,[10659.8,4826.85,0],[[939,2],[1021,2]]], [979,[10818.7,5385.81,0],[[940,2],[1022,2]]], [980,[10883.2,5499.5,0],[[941,2],[1023,2]]], [981,[10483.6,6211.14,0],[[942,2],[1024,2]]], [982,[10979.3,5878.49,-3.05176e-005],[[943,2],[1025,2]]], [983,[10656.1,6844.08,-7.62939e-006],[[944,2],[1026,2]]], +[984,[10448.9,7215.93,0],[[945,2],[1027,2]]], [985,[3808.07,6663.67,0],[[946,2],[985,2],[1028,2]]], [986,[4038.62,5735.67,0],[[947,2],[1029,2]]], [987,[4085.84,5457.97,3.05176e-005],[[948,2],[1030,2]]], [988,[4231.28,5431.35,0],[[948,2],[988,2],[1031,2]]], [989,[5882.6,4896.07,5.08626e-006],[[949,2],[1032,2],[1033,2]]], +[990,[4870.14,10811.4,0],[[950,2]]], [991,[5013.98,10899.4,0],[[950,2],[1034,2]]], [992,[4277.1,11047.3,-3.05176e-005],[[952,2],[1035,2]]], [993,[2973.53,7726.07,0],[[953,2],[1036,2],[1037,2]]], [994,[3071.9,7825.76,0],[[953,2],[1038,2],[1039,2],[994,2]]], [995,[2848.41,8316.08,-3.05176e-005],[[955,2],[1040,2]]], +[996,[2462.68,9651.12,0],[[956,2],[996,2],[1041,2]]], [997,[2541.74,9759.8,0],[[956,2],[1042,2]]], [998,[3539.62,10090,-3.05176e-005],[[958,2],[1044,2]]], [999,[4028.61,11065.9,0],[[959,2],[1045,2],[1035,2]]], [1000,[6828.84,4154.82,0],[[960,2],[1046,2]]], [1001,[8490.7,4368.73,0],[[961,2],[1001,2],[1047,2]]], +[1002,[8542.52,4522.15,0],[[961,2],[1048,2]]], [1003,[5888.54,11461.1,0],[[962,2],[1049,2]]], [1004,[5752.23,11117.4,3.05176e-005],[[963,2],[1050,2]]], [1005,[5409.78,10873.8,-1.01725e-005],[[964,2],[1051,2],[1052,2]]], [1006,[10875.3,8095.65,0],[[965,2],[1053,2],[1054,2]]], [1007,[10677.9,8033.35,0],[[966,2],[1007,2],[1055,2],[1056,2],[1057,2],[1008,2]]], +[1008,[10668.1,8095.42,1.01725e-005],[[966,2],[1007,2],[1057,2],[1058,2]]], [1009,[10937.4,9167.96,0],[[967,2],[1009,2],[1059,2]]], [1010,[10303.3,9584.59,0],[[968,2],[1060,2],[1061,2]]], [1011,[10446.5,7851.74,0],[[970,2],[1062,2]]], [1012,[9676.31,7845.75,0],[[969,2],[971,2]]], [1013,[9942.11,10377,0],[[972,2],[1063,2],[1064,2]]], +[1014,[9875.44,10533.4,-1.52588e-005],[[972,2],[1065,2]]], [1015,[7943.23,8774.28,0],[[973,2],[1066,2]]], [1016,[7041.32,10463.1,0],[[975,2],[1067,2]]], [1017,[8762.52,10816.1,0],[[976,2]]], [1018,[8828.08,10929.5,0],[[976,2],[1068,2]]], [1019,[9174.74,4991.05,0],[[977,2],[1069,2]]], +[1020,[9083.53,4864.53,0],[[977,2],[1070,2]]], [1021,[10689.1,4728.38,0],[[978,2],[1071,2]]], [1022,[10856.1,5418.46,2.03451e-005],[[979,2],[1022,2],[1072,2],[1023,2]]], [1023,[10942.2,5493.5,0],[[980,2],[1022,2],[1073,2],[1074,2]]], [1024,[10503.9,6308.58,0],[[981,2],[1075,2]]], [1025,[11106.1,5873.59,0],[[982,2],[1076,2]]], +[1026,[10783.3,6745.82,0],[[983,2],[1077,2]]], [1027,[10442.9,7339.32,0],[[984,2],[1078,2]]], [1028,[3711.69,6633.18,0],[[985,2],[1079,2]]], [1029,[3955.7,5819.76,-3.05176e-005],[[986,2],[1080,2]]], [1030,[3943.94,5462.98,0],[[987,2],[1081,2]]], [1031,[4104.89,5390.44,0],[[988,2],[1082,2]]], +[1032,[5903.68,4864.8,5.08626e-006],[[989,2],[1083,2],[1084,2]]], [1033,[5841.61,4880.44,0],[[989,2]]], [1034,[5156.78,10890,0],[[991,2],[1051,2]]], [1035,[4152.25,11145.5,0],[[992,2],[999,2],[1045,2]]], [1036,[2948.95,7683.71,0],[[993,2],[1037,2],[1036,2],[1085,2]]], [1037,[2945.7,7692.54,0],[[1036,2],[1128,2],[993,2]]], +[1038,[3115.23,7881.5,0],[[994,2]]], [1039,[3061.12,7812.96,0],[[994,2]]], [1040,[2826.86,8430.18,0],[[995,2],[1086,2]]], [1041,[2318.83,9572.18,0],[[996,2],[1087,2]]], [1042,[2615.75,9839.54,0],[[997,2],[1088,2]]], [1043,[2541.84,9605.22,0],[[957,2]]], +[1044,[3408.09,10069.5,0],[[998,2],[1089,2]]], [1045,[4110.72,11176.8,6.10352e-006],[[999,2],[1035,2],[1045,2],[1090,2],[1091,2]]], [1046,[6750.51,4038.83,0],[[1000,2],[1092,2]]], [1047,[8582.56,4314.63,0],[[1001,2],[1093,2],[1047,2]]], [1048,[8606.38,4576.83,0],[[1002,2],[1094,2]]], [1049,[5859.95,11570.5,1.52588e-005],[[1003,2],[1095,2]]], +[1050,[5703.3,11097.2,2.03451e-005],[[1004,2],[1050,2],[1096,2]]], [1051,[5225.59,10884.1,0],[[1005,2],[1034,2]]], [1052,[5433.52,10977.7,-3.05176e-005],[[1005,2],[1097,2]]], [1053,[10955.9,7980.77,0],[[1006,2],[1098,2]]], [1054,[10887.2,8148.22,-1.52588e-005],[[1006,2],[1099,2]]], [1055,[10719.2,8024.68,0],[[1007,2],[1055,2]]], +[1056,[10635.7,7970.25,5.08626e-006],[[1007,2],[1100,2],[1101,2]]], [1057,[10635.4,8047.52,0],[[1057,2]]], [1058,[10605.4,8160.13,0],[[1008,2],[1102,2]]], [1059,[10962.3,9273.89,0],[[1009,2],[1103,2],[1104,2]]], [1060,[10299.1,9570.29,0],[[1010,2]]], [1061,[10235.6,9701.55,0],[[1010,2],[1105,2]]], +[1062,[10525,7901.49,0],[[1011,2],[1106,2]]], [1063,[10093.2,10333.9,0],[[1013,2],[1107,2]]], [1064,[9907.65,10340.8,0],[[1013,2]]], [1065,[9850.31,10685,1.52588e-005],[[1014,2],[1108,2]]], [1066,[7981.02,8651.12,0],[[1015,2],[131,2],[1109,2]]], [1067,[7009.47,10550.6,0],[[1016,2],[1110,2]]], +[1068,[8786.33,10995.9,0],[[1018,2],[1111,2]]], [1069,[9233.99,4976.36,0],[[1019,2],[1112,2]]], [1070,[9135.13,4815.55,0],[[1020,2],[1113,2]]], [1071,[10664.2,4629.24,-1.52588e-005],[[1021,2],[1114,2]]], [1072,[10903,5429.17,3.05176e-005],[[1022,2],[1072,2]]], [1073,[10912.5,5444.72,0],[[1023,2]]], +[1074,[11011.5,5465.07,-1.01725e-005],[[1023,2],[1074,2],[1115,2]]], [1075,[10578.2,6390.36,0],[[1024,2],[1116,2]]], [1076,[11214.1,5852.1,0],[[1025,2],[1117,2]]], [1077,[10806.5,6729.75,-2.54313e-006],[[1026,2],[1118,2],[1119,2]]], [1078,[10421,7405.83,0],[[1027,2],[1120,2]]], [1079,[3572.91,6624.66,0],[[1028,2],[1121,2]]], +[1080,[3843.4,5911.09,0],[[1029,2],[1122,2]]], [1081,[3808.41,5475.98,0],[[1030,2],[1123,2]]], [1082,[3966.53,5374.76,0],[[1031,2],[1124,2]]], [1083,[5987.7,4869.73,0],[[1032,2],[1125,2]]], [1084,[5832.31,4782.49,0],[[1032,2],[1126,2],[1127,2]]], [1085,[2984.96,7523.92,3.05176e-005],[[1036,2],[1129,2]]], +[1086,[2782.83,8558.58,0],[[1040,2],[1130,2]]], [1087,[2289.09,9550.06,1.01725e-005],[[1041,2],[1131,2],[1132,2]]], [1088,[2676,9912.35,-1.01725e-005],[[1042,2],[1133,2],[1134,2]]], [1089,[3283.36,10031.2,-3.05176e-005],[[1044,2],[1135,2]]], [1090,[3953.43,11187.6,0],[[1045,2],[1136,2]]], [1091,[4111.48,11309.1,0],[[1045,2],[1137,2]]], +[1092,[6714.29,3975.15,0],[[1046,2],[1138,2]]], [1093,[8594.45,4284.12,-3.05176e-005],[[1047,2],[1139,2]]], [1094,[8696.02,4596.16,0],[[1048,2],[1140,2]]], [1095,[5783.41,11705.2,0],[[1049,2],[1141,2]]], [1096,[5557.85,11076.6,0],[[1050,2],[1097,2]]], [1097,[5442.69,11044.9,0],[[1052,2],[1096,2],[1142,2]]], +[1098,[11034.6,7926.01,1.52588e-005],[[1053,2],[1143,2]]], [1099,[10827.5,8189.17,0],[[1054,2],[1144,2]]], [1100,[10551.4,7850.11,0],[[1056,2],[1145,2]]], [1101,[10678.3,7941.42,0],[[1056,2]]], [1102,[10557.2,8141.61,1.52588e-005],[[1058,2],[1146,2]]], [1103,[10842.1,9301.17,0],[[1059,2],[1147,2]]], +[1104,[11123.1,9322.56,0],[[1059,2],[1148,2]]], [1105,[10240.7,9799.76,-3.8147e-006],[[1061,2],[1149,2],[1105,2],[1150,2],[1151,2]]], [1106,[10570.5,7981.92,0],[[1057,2],[1062,2]]], [1107,[10095.5,10253.7,0],[[1063,2],[1152,2],[1107,2],[1153,2]]], [1108,[9851,10819.5,0],[[1065,2],[1154,2]]], [1109,[8002.59,8576.22,0],[[131,2],[1203,2],[1109,2],[1066,2]]], +[1110,[6969.46,10685.9,-3.05176e-005],[[1067,2],[1156,2]]], [1111,[8714.06,11124.2,0],[[1068,2],[1157,2]]], [1112,[9311.38,4913.1,0],[[1069,2],[1158,2]]], [1113,[9146.5,4721.79,0],[[1070,2],[1159,2]]], [1114,[10676.1,4559.1,0],[[1071,2],[1160,2]]], [1115,[11072.8,5403.62,0],[[1074,2],[1161,2]]], +[1116,[10638.3,6438.59,0],[[1075,2],[1162,2]]], [1117,[11296.6,5806.58,0],[[1076,2],[1163,2]]], [1118,[10762.7,6609.41,0],[[1077,2],[1164,2]]], [1119,[10935.9,6675.2,0],[[1077,2],[1165,2]]], [1120,[10430,7480.79,0],[[1078,2],[1166,2]]], [1121,[3478.23,6646.93,3.05176e-005],[[1079,2],[1167,2]]], +[1122,[3767.74,5961.59,0],[[1080,2],[1168,2],[1169,2],[1122,2]]], [1123,[3680.91,5488.42,0],[[1081,2],[1170,2]]], [1124,[3835.63,5380.03,0],[[1082,2],[1171,2]]], [1125,[6061.33,4863.28,0],[[1083,2],[1172,2]]], [1126,[5856.6,4704.31,0],[[1084,2],[1173,2],[1174,2]]], [1127,[5774.56,4806.92,0],[[1084,2],[1175,2],[1176,2]]], +[1128,[2954.83,7705.69,0],[[1037,2]]], [1129,[2989.57,7497.87,1.01725e-005],[[1085,2],[1177,2],[1178,2]]], [1130,[2727.22,8669.13,0],[[1086,2],[1179,2]]], [1131,[2259.87,9369.42,0],[[1087,2],[1180,2]]], [1132,[2185.8,9642.04,1.52588e-005],[[1087,2]]], [1133,[2698.37,10034.8,0],[[1088,2],[1181,2]]], +[1134,[2708.15,9900.85,0],[[1088,2],[1182,2],[1134,2],[1183,2],[1184,2]]], [1135,[3124.03,9995.19,0],[[1089,2],[1185,2]]], [1136,[3865.42,11185.3,0],[[1090,2],[1186,2]]], [1137,[4190.35,11421,-3.05176e-005],[[1091,2],[1187,2]]], [1138,[6601.95,3904.91,0],[[1092,2],[1188,2]]], [1139,[8641.19,4186.72,0],[[1093,2],[1189,2]]], +[1140,[8824.63,4597.44,1.52588e-005],[[1094,2],[1190,2]]], [1141,[5694.9,11830.6,0],[[1095,2],[1191,2]]], [1142,[5369.69,11098.7,-3.05176e-005],[[1097,2],[1192,2]]], [1143,[11106.2,7845.98,0],[[1098,2],[1193,2]]], [1144,[10790.4,8218.64,0],[[1099,2]]], [1145,[10517.4,7755.4,0],[[1100,2],[1194,2]]], +[1146,[10529.4,8105.48,0],[[1102,2]]], [1147,[10783.5,9352.24,1.52588e-005],[[1103,2],[1195,2]]], [1148,[11239,9357.09,0],[[1104,2],[1196,2]]], [1149,[10215.8,9771.7,-7.62939e-006],[[1105,2]]], [1150,[10358.8,9815.63,0],[[1105,2],[1197,2]]], [1151,[10315.5,9957.54,0],[[1105,2],[1198,2]]], +[1152,[10068.1,10254.4,0],[[1107,2],[1152,2]]], [1153,[10217.9,10222.8,-5.08626e-006],[[1107,2],[1199,2],[1153,2],[1200,2]]], [1154,[9811.81,10898.5,0],[[1108,2],[1201,2]]], [1155,[8118.73,8577.27,-3.05176e-005],[[131,2],[1202,2],[1155,2]]], [1156,[6920.27,10789.8,0],[[1110,2],[1156,2],[1204,2]]], [1157,[8663.44,11206,0],[[1111,2],[1205,2]]], +[1158,[9451.66,4863.51,0],[[1112,2],[1206,2]]], [1159,[9261.36,4679.89,-3.8147e-006],[[1113,2],[1207,2],[1159,2],[1208,2]]], [1160,[10581.2,4433.89,-7.62939e-006],[[1114,2],[1209,2]]], [1161,[11063.9,5355.51,0],[[1115,2],[1161,2],[1210,2]]], [1162,[10699.5,6479.08,0],[[1116,2],[1164,2]]], [1163,[11376.1,5717.17,0],[[1117,2],[1211,2]]], +[1164,[10743.5,6528.96,7.62939e-006],[[1118,2],[1162,2]]], [1165,[11100.2,6645.19,0],[[1119,2],[1212,2]]], [1166,[10487.9,7617,0],[[1120,2],[1194,2]]], [1167,[3419.27,6665.16,0],[[1121,2],[1213,2],[1167,2],[1214,2]]], [1168,[3693.43,6067.81,0],[[1122,2],[1215,2]]], [1169,[3776.11,5950.29,0],[[1122,2]]], +[1170,[3540.65,5500.55,0],[[1123,2],[1216,2]]], [1171,[3816.85,5374.19,1.01725e-005],[[1124,2],[1171,2],[1217,2]]], [1172,[6078.22,4901.97,0],[[1125,2]]], [1173,[5865.67,4609.65,5.08626e-006],[[1126,2],[1173,2],[1218,2]]], [1174,[5888.15,4701.35,0],[[1126,2]]], [1175,[5689.14,4903.57,0],[[1127,2],[1219,2]]], +[1176,[5765.92,4753.41,2.54313e-006],[[1127,2],[1220,2],[1221,2],[1176,2]]], [1177,[2958.21,7405.54,0],[[1129,2],[1222,2]]], [1178,[3152.67,7418.6,0],[[1129,2],[1223,2]]], [1179,[2632.12,8791.79,3.05176e-005],[[1130,2],[1224,2]]], [1180,[2266.41,9308.06,0],[[1131,2],[1225,2],[1226,2]]], [1181,[2696.23,10057.7,0],[[1133,2],[1227,2],[1183,2],[1228,2]]], +[1182,[2822.1,9825.91,0],[[1134,2],[1229,2],[1184,2]]], [1183,[2749.18,9992.72,0],[[1134,2],[1181,2],[1227,2],[1184,2]]], [1184,[2820.53,9937.15,-2.03451e-005],[[1183,2],[1230,2],[1271,2],[1134,2],[1182,2]]], [1185,[3012.95,9976.88,0],[[1135,2],[1230,2]]], [1186,[3720.98,11172.7,0],[[1136,2],[1231,2]]], [1187,[4251.74,11498.5,3.05176e-005],[[1137,2],[1232,2]]], +[1188,[6476.1,3822.54,7.62939e-006],[[1138,2],[1233,2]]], [1189,[8745.34,4111.3,0],[[1139,2],[1234,2]]], [1190,[8918.31,4576.36,0],[[1140,2],[1235,2]]], [1191,[5641.93,11924.9,1.52588e-005],[[1141,2],[1236,2]]], [1192,[5268.53,11138.6,1.01725e-005],[[1142,2],[1192,2],[1237,2]]], [1193,[11198.6,7780.98,0],[[1143,2],[1238,2]]], +[1194,[10499.6,7661.47,0],[[1145,2],[1166,2]]], [1195,[10709.8,9402.46,0],[[1147,2],[1239,2],[1240,2]]], [1196,[11385.1,9406.04,0],[[1148,2],[1241,2]]], [1197,[10438.8,9839.23,0],[[1150,2],[1242,2],[1243,2],[1244,2]]], [1198,[10316.1,9973.66,0],[[1151,2],[1198,2],[1200,2]]], [1199,[10210.1,10234.7,-7.62939e-006],[[1153,2]]], +[1200,[10298.2,10101.4,0],[[1153,2],[1198,2]]], [1201,[9757.83,11027.8,0],[[1154,2],[1245,2]]], [1202,[8122,8574.1,0],[[1202,2],[1155,2]]], [1203,[7991.54,8595.2,-1.01725e-005],[[1109,2]]], [1204,[6959.89,10879.6,0],[[1156,2],[1246,2],[1204,2],[1247,2]]], [1205,[8620.88,11285.8,0],[[1157,2],[1248,2]]], +[1206,[9593.03,4839.75,0],[[1158,2],[1249,2]]], [1207,[9247.55,4691.61,0],[[1159,2]]], [1208,[9381.86,4570.78,0],[[1159,2],[1250,2]]], [1209,[10449.8,4330.84,0],[[1160,2],[1251,2]]], [1210,[11075.7,5324.28,0],[[1161,2],[1252,2],[1253,2]]], [1211,[11405.1,5614.25,-3.05176e-005],[[1163,2],[1254,2]]], +[1212,[11186.5,6608.9,0],[[1165,2],[1255,2],[1256,2]]], [1213,[3338.36,6719.96,0],[[1167,2],[1214,2],[1213,2],[1257,2]]], [1214,[3354.9,6733.53,3.05176e-005],[[1213,2],[1300,2],[1214,2],[1167,2]]], [1215,[3628.15,6161.31,-3.05176e-005],[[1168,2],[1258,2]]], [1216,[3416.72,5551.49,0],[[1170,2],[1259,2]]], [1217,[3693.71,5256.01,0],[[1171,2],[1260,2]]], +[1218,[5827.02,4501.48,1.52588e-005],[[1173,2],[1261,2]]], [1219,[5551.19,5008.7,0],[[1175,2],[1262,2]]], [1220,[5768.67,4617.25,0],[[1176,2],[1263,2]]], [1221,[5762.12,4774.15,0],[[1176,2]]], [1222,[2906.32,7334.85,2.03451e-005],[[1177,2],[1264,2],[1265,2]]], [1223,[3205.55,7405.46,0],[[1178,2],[1223,2],[1266,2]]], +[1224,[2527.72,8902.31,0],[[1179,2],[1267,2]]], [1225,[2388.14,9156.22,3.05176e-005],[[1180,2],[1267,2]]], [1226,[2234.56,9270.46,0],[[1180,2],[1268,2],[1269,2]]], [1227,[2735.24,10049.8,-1.52588e-005],[[1181,2],[1183,2]]], [1228,[2589.01,10185,0],[[1181,2],[1270,2]]], [1229,[2888.21,9740.75,0],[[1182,2]]], +[1230,[2870.06,9949.43,3.05176e-005],[[1185,2],[1184,2]]], [1231,[3586.32,11177.1,0],[[1186,2],[1272,2]]], [1232,[4243.12,11583.1,0],[[1187,2],[1273,2]]], [1233,[6413.66,3751.27,0],[[1188,2],[1274,2],[1275,2]]], [1234,[8885.32,4026.11,3.05176e-005],[[1189,2],[1276,2]]], [1235,[9018.85,4511.15,-1.52588e-005],[[1190,2],[1277,2],[1278,2]]], +[1236,[5592.61,12032.6,-1.01725e-005],[[1191,2],[1279,2],[1280,2]]], [1237,[5193.61,11239.1,0],[[1192,2],[1281,2]]], [1238,[11316.4,7734.29,-1.52588e-005],[[1193,2],[1282,2]]], [1239,[10662.1,9462.06,-7.62939e-006],[[1239,2],[1240,2]]], [1240,[10666.6,9452.65,0],[[1239,2],[1195,2]]], [1241,[11471.8,9399.22,0],[[1196,2],[1283,2]]], +[1242,[10477.8,9942.65,0],[[1197,2],[1284,2]]], [1243,[10526.2,9719.81,0],[[1197,2],[1285,2]]], [1244,[10587,9903.07,0],[[1197,2],[1286,2]]], [1245,[9707.7,11158.5,1.52588e-005],[[1201,2],[1287,2]]], [1246,[6942.23,10875.3,0],[[1204,2]]], [1247,[7110.32,10889.1,0],[[1204,2],[1288,2]]], +[1248,[8609.08,11418.2,-1.52588e-005],[[1205,2],[1289,2]]], [1249,[9712.77,4784.58,0],[[1206,2],[1290,2]]], [1250,[9418.1,4463.24,0],[[1208,2],[1291,2]]], [1251,[10363.9,4240.97,0],[[1209,2],[1292,2]]], [1252,[11157.5,5401.24,0],[[1210,2],[1293,2]]], [1253,[11078.1,5273.74,0],[[1210,2],[1294,2],[1253,2]]], +[1254,[11393.6,5561.07,-1.01725e-005],[[1211,2],[1295,2],[1296,2]]], [1255,[11167.4,6562.07,2.54313e-006],[[1212,2],[1297,2],[1298,2]]], [1256,[11234.4,6564.19,-7.62939e-006],[[1212,2],[1299,2]]], [1257,[3229.36,6652.73,0],[[1213,2],[1301,2]]], [1258,[3576.23,6247.28,-3.05176e-005],[[1215,2],[1302,2]]], [1259,[3284.6,5580.26,0],[[1216,2],[1303,2]]], +[1260,[3627.17,5175.18,0],[[1217,2],[1304,2]]], [1261,[5736.39,4439.36,7.62939e-006],[[1218,2],[1305,2]]], [1262,[5425.17,5048.31,0],[[1219,2],[1306,2]]], [1263,[5765.18,4585.75,0],[[1220,2]]], [1264,[2846.49,7160.54,0],[[1222,2],[1307,2]]], [1265,[2802.98,7314.96,3.05176e-005],[[1222,2],[1308,2]]], +[1266,[3304.79,7300.63,0],[[1223,2],[1309,2]]], [1267,[2449.77,9038.22,0],[[1224,2],[1225,2]]], [1268,[2225.93,9116.97,-3.05176e-005],[[1226,2],[1310,2]]], [1269,[2125.31,9184.88,-3.05176e-005],[[1226,2],[1311,2]]], [1270,[2483.46,10285.1,0],[[1228,2],[1312,2]]], [1271,[2783.33,9860.72,0],[[1184,2]]], +[1272,[3448.55,11190.8,0],[[1231,2],[1313,2]]], [1273,[4220.32,11603.1,1.01725e-005],[[1232,2],[1314,2],[1273,2],[1315,2]]], [1274,[6469.29,3682.95,0],[[1233,2],[1274,2],[1316,2]]], [1275,[6303.62,3766,0],[[1233,2]]], [1276,[8956.91,3983.22,0],[[1234,2],[1317,2],[1318,2]]], [1277,[9136.41,4443.5,0],[[1235,2],[1319,2],[1277,2],[1320,2]]], +[1278,[9085.26,4459.5,0],[[1319,2],[1235,2]]], [1279,[5549.1,12166.2,0],[[1236,2],[1321,2]]], [1280,[5489.31,12038.2,0],[[1236,2],[1322,2]]], [1281,[5200.97,11345.7,3.05176e-005],[[1237,2],[1323,2]]], [1282,[11410.3,7659.95,0],[[1238,2],[1324,2]]], [1283,[11534.8,9326.29,0],[[1241,2],[1327,2]]], +[1284,[10477.8,10069,0],[[1242,2],[1328,2]]], [1285,[10539.9,9638.75,0],[[1243,2],[1329,2],[1326,2]]], [1286,[10628.8,9944.39,-2.54313e-006],[[1244,2],[1330,2],[1331,2]]], [1287,[9647.67,11239.2,0],[[1245,2],[1332,2]]], [1288,[7205.46,10960,3.05176e-005],[[1247,2],[1333,2]]], [1289,[8561.06,11525.1,1.52588e-005],[[1248,2],[1334,2]]], +[1290,[9826.6,4677.08,0],[[1249,2],[1335,2]]], [1291,[9402.27,4370.76,1.52588e-005],[[1250,2],[1336,2]]], [1292,[10266.1,4120.86,0],[[1251,2],[1337,2]]], [1293,[11203.8,5463.77,0],[[1252,2],[1338,2]]], [1294,[11160.3,5224.42,1.01725e-005],[[1253,2],[1339,2],[1294,2],[1340,2]]], [1295,[11357.5,5532.79,0],[[1254,2],[1295,2],[1341,2],[1338,2]]], +[1296,[11517.5,5469.8,3.8147e-006],[[1254,2],[1296,2],[1342,2],[1343,2]]], [1297,[11145.3,6561.88,0],[[1255,2]]], [1298,[11234.4,6554.9,7.62939e-006],[[1255,2]]], [1299,[11299.2,6563.31,0],[[1256,2],[1344,2],[1345,2]]], [1300,[3376.48,6726.14,0],[[1214,2]]], [1301,[3137.45,6610.99,0],[[1257,2],[1346,2],[1347,2]]], +[1302,[3516.27,6338.15,0],[[1258,2],[1348,2]]], [1303,[3224.62,5551.75,0],[[1259,2],[1349,2]]], [1304,[3622.57,5140.32,0],[[1260,2],[1304,2],[1350,2]]], [1305,[5708.64,4419.27,2.54313e-006],[[1261,2],[1351,2],[1352,2],[1305,2]]], [1306,[5303.69,5047.49,1.52588e-005],[[1262,2],[1353,2]]], [1307,[2826.21,7047.3,0],[[1264,2],[1354,2]]], +[1308,[2716.45,7293.3,0],[[1265,2],[1355,2]]], [1309,[3414.36,7210.03,0],[[1266,2],[1356,2]]], [1310,[2200.5,8979.44,0],[[1268,2],[1357,2]]], [1311,[2014.64,9128.81,0],[[1269,2],[1358,2]]], [1312,[2403.58,10377,-3.05176e-005],[[1270,2],[1359,2]]], [1313,[3346.67,11238.1,0],[[1272,2],[1360,2]]], +[1314,[4232.2,11596.6,0],[[1273,2]]], [1315,[4085.77,11655.6,0],[[1273,2]]], [1316,[6483.2,3566.08,0],[[1274,2],[1361,2]]], [1317,[9064.67,3914.04,-1.52588e-005],[[1276,2],[1362,2]]], [1318,[9025.86,4022.26,0],[[1276,2],[1318,2],[1363,2]]], [1319,[9109.31,4442.4,0],[[1277,2],[1278,2],[1319,2]]], +[1320,[9279.83,4347.96,1.01725e-005],[[1277,2],[1320,2],[1364,2]]], [1321,[5462.03,12253.8,1.52588e-005],[[1279,2],[1365,2]]], [1322,[5391.1,11953.7,0],[[1280,2],[1366,2]]], [1323,[5223.92,11465,1.52588e-005],[[1281,2],[1367,2]]], [1324,[11494.8,7561.96,0],[[1282,2],[1368,2]]], [1325,[10601.1,9575.49,-1.52588e-005],[[1239,2],[1326,2]]], +[1326,[10571.9,9610.54,0],[[1325,2],[1285,2],[1326,2],[1329,2]]], [1327,[11635.6,9242.85,0],[[1283,2],[1369,2]]], [1328,[10529.1,10149.8,0],[[1284,2],[1370,2]]], [1329,[10542.3,9630.97,-7.62939e-006],[[1285,2],[1326,2]]], [1330,[10744.8,9970.33,2.54313e-006],[[1286,2],[1371,2],[1330,2],[1372,2]]], [1331,[10605.6,9978.62,0],[[1286,2]]], +[1332,[9557.1,11336.8,0],[[1287,2],[1373,2]]], [1333,[7284.94,11063.9,0],[[1288,2],[1374,2]]], [1334,[8529.45,11599.9,0],[[1289,2],[1375,2]]], [1335,[9882.91,4580.06,0],[[1290,2],[1376,2]]], [1336,[9415.69,4330.23,0],[[1291,2],[1336,2],[1377,2]]], [1337,[10210.4,4043.39,0],[[1292,2],[1378,2],[1379,2]]], +[1338,[11252.9,5491.54,0],[[1293,2],[1295,2],[1380,2]]], [1339,[11154.4,5235.11,1.52588e-005],[[1294,2]]], [1340,[11187.2,5027.23,0],[[1294,2],[1381,2]]], [1341,[11295.1,5504,0],[[1295,2],[1382,2]]], [1342,[11414.2,5473.03,0],[[1296,2],[1382,2]]], [1343,[11547.6,5479.49,0],[[1296,2],[1343,2],[1383,2]]], +[1344,[11431.3,6576.24,0],[[1299,2],[1384,2]]], [1345,[11289.6,6594.43,0],[[1299,2]]], [1346,[3020.33,6631.85,0],[[1301,2],[1385,2]]], [1347,[3245.59,6488.84,0],[[1301,2],[1386,2]]], [1348,[3449.94,6378.11,3.05176e-005],[[1302,2],[1386,2]]], [1349,[3162.59,5511.19,0],[[1303,2],[1349,2],[1387,2]]], +[1350,[3554.18,5065.78,2.03451e-005],[[1304,2],[1350,2],[1388,2]]], [1351,[5676.98,4268.49,-7.62939e-006],[[1305,2],[1389,2]]], [1352,[5714.06,4429.08,0],[[1305,2]]], [1353,[5207.65,5007.39,0],[[1306,2],[1390,2]]], [1354,[2795.05,6905.01,0],[[1307,2],[1391,2]]], [1355,[2628.22,7263.59,0],[[1308,2],[1392,2]]], +[1356,[3505.32,7116.97,3.05176e-005],[[1309,2],[1393,2]]], [1357,[2156.94,8849.63,-3.05176e-005],[[1310,2],[1394,2]]], [1358,[1958.49,9131.21,0],[[1311,2]]], [1359,[2370.74,10513.4,0],[[1312,2],[1395,2]]], [1360,[3309.65,11267.5,7.62939e-006],[[1313,2],[1360,2],[1396,2],[1397,2]]], [1361,[6423.45,3488.91,0],[[1316,2],[1398,2]]], +[1362,[9135.62,3896.06,0],[[1317,2],[1399,2]]], [1363,[9086.66,4074.03,0],[[1318,2],[1400,2],[1401,2],[1399,2]]], [1364,[9321,4276.11,0],[[1320,2]]], [1365,[5408.21,12303.1,0],[[1321,2],[1402,2]]], [1366,[5324.48,11823.4,0],[[1322,2],[1403,2]]], [1367,[5225.51,11549.4,-1.52588e-005],[[1323,2],[1404,2]]], +[1368,[11619.6,7479.27,0],[[1324,2],[1405,2]]], [1369,[11733.7,9175.06,0],[[1327,2],[1406,2]]], [1370,[10546.7,10220.8,0],[[1328,2],[1407,2]]], [1371,[10725.4,9971.35,3.8147e-006],[[1330,2]]], [1372,[10798,9984.66,0],[[1330,2],[1408,2],[1372,2]]], [1373,[9481.67,11395.8,0],[[1332,2],[1409,2]]], +[1374,[7339.65,11183.7,0],[[1333,2],[1410,2]]], [1375,[8554.91,11643.2,0],[[1334,2],[1411,2]]], [1376,[9904.81,4497.43,-7.62939e-006],[[1335,2],[1412,2]]], [1377,[9466.22,4211.86,0],[[1336,2],[1413,2]]], [1378,[10062.2,4175.63,7.62939e-006],[[1337,2],[1414,2]]], [1379,[10299.6,3890.23,0],[[1337,2],[1415,2]]], +[1380,[11280.2,5487.15,0],[[1338,2]]], [1381,[11193.4,4939.64,0],[[1340,2],[1416,2],[1417,2]]], [1382,[11314.3,5468.42,5.08626e-006],[[1341,2],[1342,2],[1418,2]]], [1383,[11669.4,5498.24,1.52588e-005],[[1343,2],[1419,2]]], [1384,[11575.9,6604.12,0],[[1344,2],[1420,2]]], [1385,[2958.96,6628.64,0],[[1346,2],[1421,2],[1422,2]]], +[1386,[3322.59,6428.94,0],[[1347,2],[1348,2]]], [1387,[2979.77,5508.78,0],[[1349,2],[1423,2],[1424,2]]], [1388,[3469.5,4931.83,0],[[1350,2],[1425,2],[1426,2],[1427,2]]], [1389,[5719.16,4174.58,-7.62939e-006],[[1351,2],[1428,2]]], [1390,[5135.1,4950.74,0],[[1353,2],[1429,2]]], [1391,[2728.85,6822.64,3.05176e-005],[[1354,2],[1430,2]]], +[1392,[2523.82,7261.99,0],[[1355,2],[1431,2]]], [1393,[3552.72,7041.01,0],[[1356,2],[1432,2]]], [1394,[2136.39,8758.74,0],[[1357,2],[1433,2]]], [1395,[2333.35,10642.2,-3.05176e-005],[[1359,2],[1434,2]]], [1396,[3276.99,11252.7,0],[[1396,2]]], [1397,[3278.2,11382.5,0],[[1360,2],[1435,2],[1436,2]]], +[1398,[6359.93,3406.17,0],[[1361,2],[1437,2]]], [1399,[9156.59,3899.97,5.08626e-006],[[1362,2],[1363,2],[1438,2],[1439,2]]], [1400,[9130.9,4108.89,0],[[1363,2]]], [1401,[9185.93,3962.36,0],[[1363,2],[1440,2]]], [1402,[5334.39,12369.7,0],[[1365,2],[1441,2]]], [1403,[5257.3,11717.7,0],[[1366,2],[1403,2],[1442,2],[1404,2]]], +[1404,[5215.41,11680,0],[[1367,2],[1403,2],[1442,2]]], [1405,[11720.3,7418.84,0],[[1368,2],[1443,2]]], [1406,[11842.6,9054.28,0],[[1369,2],[1444,2],[1445,2],[1446,2]]], [1407,[10539.4,10262.4,0],[[1407,2],[1447,2]]], [1408,[10946.7,9953.31,0],[[1372,2],[1448,2]]], [1409,[9408.99,11495.9,-1.52588e-005],[[1373,2],[1449,2]]], +[1410,[7346.4,11211.7,0],[[1374,2],[1450,2],[1451,2]]], [1411,[8568.01,11647.2,0],[[1375,2],[1411,2],[1452,2]]], [1412,[9930.39,4399.7,0],[[1376,2],[1414,2]]], [1413,[9440.62,4142.94,5.08626e-006],[[1377,2],[1413,2],[1453,2]]], [1414,[9996.66,4271.85,-7.62939e-006],[[1378,2],[1412,2]]], [1415,[10328,3792.54,0],[[1379,2],[1454,2],[1455,2]]], +[1416,[11207.9,4789.63,0],[[1381,2],[1456,2]]], [1417,[11242.1,4856.1,0],[[1381,2],[1457,2]]], [1418,[11243,5386.34,0],[[1382,2],[1418,2]]], [1419,[11759.3,5566.42,0],[[1383,2],[1419,2],[1458,2]]], [1420,[11696.4,6609.56,0],[[1384,2],[1459,2]]], [1421,[2784.51,6624.03,0],[[1385,2],[1460,2]]], +[1422,[2997.34,6718.32,0],[[1385,2]]], [1423,[2917.95,5476.63,-7.62939e-006],[[1387,2],[1461,2],[1423,2],[1462,2]]], [1424,[3008.19,5587.68,0],[[1387,2]]], [1425,[3407.85,4786.68,0],[[1388,2],[1463,2]]], [1426,[3607.33,4882.12,-1.52588e-005],[[1388,2],[1464,2]]], [1427,[3442,4952.94,0],[[1388,2],[1465,2],[1427,2],[1466,2]]], +[1428,[5777.69,4115.21,0],[[1389,2],[1467,2]]], [1429,[5112.11,4854.31,0],[[1390,2],[1468,2]]], [1430,[2710.83,6773.2,0],[[1391,2],[1460,2]]], [1431,[2385.86,7229.25,0],[[1392,2],[1469,2]]], [1432,[3579.3,6997.04,0],[[1393,2]]], [1433,[2098.39,8680.29,0],[[1394,2],[1470,2]]], +[1434,[2291.9,10825,0],[[1395,2],[1471,2],[1472,2]]], [1435,[3238.41,11475.5,0],[[1397,2],[1436,2],[1435,2],[1475,2]]], [1436,[3231.54,11454.4,0],[[1435,2],[1514,2],[1436,2],[1397,2]]], [1437,[6327.67,3339.7,0],[[1398,2],[1476,2],[1477,2]]], [1438,[9164.45,3795.85,0],[[1399,2],[1478,2],[1479,2]]], [1439,[9198.29,3949.33,0],[[1399,2]]], +[1440,[9340.71,4043.27,0],[[1401,2],[1453,2]]], [1441,[5316.29,12377.2,0],[[1402,2],[1441,2],[1480,2]]], [1442,[5225.76,11698.8,7.62939e-006],[[1403,2],[1404,2]]], [1443,[11828.8,7347.83,0],[[1405,2],[1481,2]]], [1444,[11791.9,9036.15,2.54313e-006],[[1406,2],[1482,2],[1444,2]]], [1445,[11952,9008.88,-1.27157e-006],[[1406,2],[1483,2],[1484,2]]], +[1446,[11966.4,9155.6,3.8147e-006],[[1406,2],[1485,2]]], [1447,[10521.6,10397.5,0],[[1407,2],[1486,2]]], [1448,[11093.5,9930.5,0],[[1408,2],[1487,2]]], [1449,[9403.84,11569.8,-1.52588e-005],[[1409,2],[1488,2]]], [1450,[7437.38,11295.5,0],[[1410,2],[1489,2]]], [1451,[7237.59,11283.6,0],[[1410,2],[1490,2]]], +[1452,[8734.79,11644.8,0],[[1411,2],[1491,2]]], [1453,[9405.72,4114.69,5.08626e-006],[[1413,2],[1440,2],[1453,2]]], [1454,[10285.2,3794.03,0],[[1415,2],[1454,2],[1492,2]]], [1455,[10347.9,3674.4,-3.8147e-006],[[1415,2],[1493,2]]], [1456,[11230.6,4700.34,0],[[1416,2],[1494,2]]], [1457,[11280.5,4754.29,0],[[1417,2],[1495,2]]], +[1458,[11866,5661.56,0],[[1419,2],[1496,2]]], [1459,[11768.8,6562.36,3.8147e-006],[[1420,2],[1497,2]]], [1460,[2729.71,6634.88,-1.01725e-005],[[1421,2],[1430,2],[1498,2]]], [1461,[2797.33,5400.26,1.52588e-005],[[1423,2],[1499,2]]], [1462,[2990.13,5436,0],[[1423,2]]], [1463,[3373.68,4651.97,-1.52588e-005],[[1425,2],[1500,2],[1463,2],[1501,2],[1502,2],[1503,2]]], +[1464,[3748.67,4822.79,0],[[1426,2],[1504,2]]], [1465,[3413.38,4910.46,0],[[1427,2],[1505,2]]], [1466,[3314.28,5061.17,0],[[1427,2],[1506,2]]], [1467,[5832.16,4001.86,0],[[1428,2],[1507,2]]], [1468,[5136.35,4737.26,0],[[1429,2],[1508,2]]], [1469,[2363.6,7234.48,7.62939e-006],[[1431,2],[1509,2],[1469,2],[1510,2]]], +[1470,[2056.25,8565.67,0],[[1433,2],[1511,2]]], [1471,[2265.19,10989.3,0],[[1434,2],[1512,2],[1472,2]]], [1472,[2354.96,10945.4,0],[[1704,2],[1816,2],[1471,2],[1434,2]]], [1473,[3145.72,11241.4,0],[[1396,2],[1474,2]]], [1474,[3032.48,11203.1,0],[[1473,2],[1513,2]]], [1475,[3306.28,11618.7,0],[[1435,2],[1515,2]]], +[1476,[6238.55,3464.31,0],[[1437,2],[1516,2]]], [1477,[6425.06,3201.71,0],[[1437,2],[1517,2]]], [1478,[9133.26,3692.52,0],[[1438,2],[1518,2]]], [1479,[9146,3796.15,0],[[1438,2],[1479,2]]], [1480,[5216.02,12413.6,0],[[1441,2],[1519,2]]], [1481,[11971.2,7264.07,0],[[1443,2],[1520,2]]], +[1482,[11754.8,9071.19,0],[[1444,2]]], [1483,[12017.4,9053.36,0],[[1445,2],[1521,2],[1522,2]]], [1484,[11951.4,8969.83,2.54313e-006],[[1445,2],[1523,2],[1484,2]]], [1485,[11986.9,9170.93,0],[[1446,2],[1524,2],[1521,2],[1525,2]]], [1486,[10562.9,10509.9,0],[[1447,2],[1526,2]]], [1487,[11199.3,9927.75,0],[[1448,2],[1527,2]]], +[1488,[9504.05,11717.7,0],[[1449,2],[1528,2]]], [1489,[7558.36,11350.4,0],[[1450,2],[1529,2]]], [1490,[7186.11,11326.6,0],[[1451,2],[1530,2],[1490,2]]], [1491,[8760.3,11648.8,0],[[1452,2],[1531,2],[1532,2],[1533,2]]], [1492,[10201.9,3825.48,0],[[1454,2],[1534,2]]], [1493,[10388.2,3513.68,0],[[1455,2],[1535,2]]], +[1494,[11236.3,4614.19,0],[[1456,2],[1536,2],[1537,2]]], [1495,[11375.8,4702.01,1.52588e-005],[[1457,2],[1538,2]]], [1496,[11945.9,5772.75,-1.01725e-005],[[1458,2],[1496,2],[1539,2]]], [1497,[11861.5,6475,0],[[1459,2],[1540,2]]], [1498,[2608.49,6603.69,3.05176e-005],[[1460,2],[1541,2]]], [1499,[2784.66,5379.27,-3.8147e-006],[[1461,2],[1542,2],[1543,2],[1544,2]]], +[1500,[3338.64,4554.22,-1.01725e-005],[[1463,2],[1502,2],[1500,2],[1545,2]]], [1501,[3439.4,4609.62,0],[[1501,2],[1546,2],[1503,2]]], [1502,[3356.4,4553.88,0],[[1500,2],[1593,2],[1502,2],[1463,2]]], [1503,[3431.95,4629.72,0],[[1501,2],[1463,2]]], [1504,[3876.14,4779.96,-1.52588e-005],[[1464,2],[1547,2]]], [1505,[3357.59,4932.48,0],[[1465,2],[1505,2],[1548,2],[1549,2]]], +[1506,[3205.73,5157.42,0],[[1466,2],[1550,2]]], [1507,[5898.74,3900.94,0],[[1467,2],[1551,2]]], [1508,[5110.95,4664.98,0],[[1468,2],[1552,2]]], [1509,[2232.97,7256.43,0],[[1469,2],[1553,2]]], [1510,[2357.29,7289.08,1.01725e-005],[[1469,2],[1554,2],[1510,2]]], [1511,[2010.18,8414.08,0],[[1470,2],[1555,2]]], +[1512,[2250.2,11083.3,0],[[1471,2],[1556,2]]], [1513,[2910.3,11172.5,0],[[1474,2],[1557,2]]], [1514,[3246.92,11428.2,0],[[1436,2]]], [1515,[3315.44,11754.8,0],[[1475,2],[1558,2]]], [1516,[6195.92,3538.26,0],[[1476,2],[1559,2],[1560,2]]], [1517,[6485.33,3132.34,0],[[1477,2],[1561,2]]], +[1518,[9169.84,3629.92,-5.08626e-006],[[1478,2],[1518,2],[1562,2]]], [1519,[5190.01,12437.4,-5.08626e-006],[[1480,2],[1519,2],[1563,2]]], [1520,[12080.9,7273.66,0],[[1481,2],[1564,2]]], [1521,[12041.9,9093.99,-9.53674e-007],[[1483,2],[1485,2],[1565,2],[1566,2],[1525,2]]], [1522,[12079,9020.71,0],[[1483,2]]], [1523,[11976.9,8802.09,0],[[1484,2],[1567,2]]], +[1524,[11832,9205.18,0],[[1485,2],[1568,2]]], [1525,[12015.3,9200.31,2.54313e-006],[[1485,2],[1521,2],[1569,2],[1570,2]]], [1526,[10614.2,10581.3,-7.62939e-006],[[1486,2],[1571,2]]], [1527,[11305.9,9866,0],[[1487,2],[1572,2]]], [1528,[9555.21,11800.5,0],[[1488,2],[1573,2],[1574,2]]], [1529,[7666.48,11359.2,0],[[1489,2],[1575,2]]], +[1530,[7069.03,11412,-3.05176e-005],[[1490,2],[1576,2]]], [1531,[8770.32,11592,-5.08626e-006],[[1491,2],[1531,2]]], [1532,[8869.15,11631,0],[[1491,2]]], [1533,[8712.63,11788.3,1.52588e-005],[[1491,2],[1577,2]]], [1534,[10157.1,3786.39,0],[[1492,2],[1578,2],[1534,2],[1579,2]]], [1535,[10381.2,3402.21,0],[[1493,2],[1580,2]]], +[1536,[11231.3,4491.23,0],[[1494,2],[1581,2]]], [1537,[11333.2,4556.36,0],[[1494,2],[1582,2]]], [1538,[11497.3,4679.3,0],[[1495,2],[1583,2]]], [1539,[11988.7,5800.79,0],[[1496,2],[1539,2],[1584,2]]], [1540,[11942.3,6396.27,0],[[1497,2],[1585,2]]], [1541,[2539.25,6520.94,0],[[1498,2],[1586,2]]], +[1542,[2749.31,5298.8,6.10352e-006],[[1499,2],[1587,2],[1588,2],[1589,2],[1542,2]]], [1543,[2840.18,5356.99,0],[[1499,2],[1590,2],[1543,2]]], [1544,[2752.55,5399.07,0],[[1499,2],[1591,2],[1592,2]]], [1545,[3240.03,4560.54,0],[[1500,2],[1594,2]]], [1546,[3445.43,4554.78,0],[[1501,2]]], [1547,[3974.23,4769.51,0],[[1504,2],[1595,2]]], +[1548,[3329.59,4968.2,1.52588e-005],[[1505,2]]], [1549,[3341.72,4922.37,0],[[1505,2]]], [1550,[3064.7,5209.09,1.52588e-005],[[1506,2],[1596,2]]], [1551,[5988.24,3763.21,0],[[1507,2],[1597,2]]], [1552,[5106.54,4587.3,0],[[1508,2],[1598,2]]], [1553,[2148.2,7280.73,3.05176e-005],[[1509,2],[1599,2]]], +[1554,[2397.18,7402.34,-1.01725e-005],[[1510,2],[1554,2],[1600,2]]], [1555,[1992.99,8325.43,0],[[1511,2],[1601,2]]], [1556,[2246.74,11202.1,0],[[1512,2],[1602,2]]], [1557,[2777.2,11148,0],[[1513,2],[1603,2]]], [1558,[3334.99,11927,0],[[1515,2],[1604,2]]], [1559,[6110.37,3648,-3.8147e-006],[[1516,2],[1597,2]]], +[1560,[6144.57,3482.09,0],[[1516,2],[1605,2]]], [1561,[6513.76,3041.19,0],[[1517,2],[1606,2]]], [1562,[9303.63,3609.31,0],[[1518,2],[1607,2]]], [1563,[5083.1,12459.2,0],[[1519,2],[1608,2]]], [1564,[12175.3,7269.31,5.08626e-006],[[1520,2],[1564,2],[1609,2]]], [1565,[12126,9052.1,0],[[1521,2],[1610,2],[1611,2]]], +[1566,[12071.4,9145.27,0],[[1521,2],[1612,2]]], [1567,[11970.5,8686.12,0],[[1523,2],[1613,2]]], [1568,[11808.6,9203.32,0],[[1524,2]]], [1569,[12048.4,9278.09,0],[[1525,2],[1614,2],[1615,2]]], [1570,[12050,9168.5,0],[[1525,2]]], [1571,[10666.3,10671.6,0],[[1526,2],[1616,2]]], +[1572,[11412.4,9834.11,0],[[1527,2],[1617,2]]], [1573,[9621.16,11963.2,0],[[1528,2],[1618,2]]], [1574,[9440.07,11777,0],[[1528,2],[1619,2]]], [1575,[7847.05,11385.7,0],[[1529,2],[1620,2]]], [1576,[7030.68,11469.8,0],[[1530,2],[1621,2]]], [1577,[8642.06,11853.2,5.08626e-006],[[1533,2],[1622,2],[1623,2]]], +[1578,[10178.1,3814.17,-1.27157e-006],[[1534,2]]], [1579,[10146.4,3712.03,-2.54313e-006],[[1534,2],[1624,2],[1579,2],[1625,2]]], [1580,[10307.3,3273.76,0],[[1535,2],[1626,2]]], [1581,[11174.9,4393.8,-3.05176e-005],[[1536,2],[1627,2]]], [1582,[11389.4,4488.36,0],[[1537,2],[1628,2]]], [1583,[11593.5,4685.81,0],[[1538,2],[1629,2]]], +[1584,[12048.7,5882.63,5.08626e-006],[[1539,2],[1630,2],[1584,2]]], [1585,[11988.8,6328.71,0],[[1540,2],[1631,2]]], [1586,[2524.57,6413.94,0],[[1541,2],[1632,2]]], [1587,[2810.7,5271.75,0],[[1542,2],[1596,2],[1633,2]]], [1588,[2713.37,5275.48,1.01725e-005],[[1542,2],[1588,2],[1589,2]]], [1589,[2729.53,5224.37,5.08626e-006],[[1542,2],[1588,2],[1634,2]]], +[1590,[2882.67,5423.94,0],[[1543,2]]], [1591,[2815.46,5452.19,-1.52588e-005],[[1544,2],[1635,2]]], [1592,[2689.86,5448.38,3.8147e-006],[[1544,2],[1636,2],[1592,2],[1637,2],[1638,2]]], [1593,[3358.56,4575.31,-2.03451e-005],[[1502,2]]], [1594,[3208.24,4551.25,-1.52588e-005],[[1545,2],[1594,2],[1639,2],[1640,2]]], [1595,[4001.07,4775.83,-1.01725e-005],[[1547,2],[1641,2],[1642,2]]], +[1596,[2914.68,5248.23,-1.52588e-005],[[1550,2],[1587,2]]], [1597,[6066.71,3678.61,3.8147e-006],[[1551,2],[1559,2],[1643,2]]], [1598,[5071.91,4533.25,0],[[1552,2],[1644,2]]], [1599,[2067.1,7318.27,0],[[1553,2],[1645,2]]], [1600,[2486.2,7404.94,-1.01725e-005],[[1554,2],[1600,2],[1646,2]]], [1601,[1928.01,8201.08,0],[[1555,2],[1647,2]]], +[1602,[2192.32,11286.3,-3.05176e-005],[[1556,2],[1648,2]]], [1603,[2689.59,11090.3,3.05176e-005],[[1557,2],[1649,2]]], [1604,[3342.32,11950.6,7.62939e-006],[[1558,2],[1650,2],[1651,2],[1652,2]]], [1605,[6129.47,3429,0],[[1560,2],[1605,2],[1653,2]]], [1606,[6505.46,2969.14,1.58946e-007],[[1561,2],[1606,2],[1654,2]]], [1607,[9377.23,3531.42,0],[[1562,2],[1655,2]]], +[1608,[4992.51,12499.9,-5.08626e-006],[[1563,2],[1656,2],[1608,2]]], [1609,[12300.2,7307.04,-5.08626e-006],[[1564,2],[1609,2],[1657,2]]], [1610,[12277.5,8969.17,0],[[1565,2],[1658,2]]], [1611,[12103.8,8985.58,0],[[1565,2],[1659,2],[1660,2]]], [1612,[12118.4,9099.46,0],[[1566,2]]], [1613,[11975.2,8670.56,0],[[1567,2],[1661,2],[1662,2]]], +[1614,[12110.3,9359.78,0],[[1569,2],[1663,2],[1664,2]]], [1615,[11965.1,9310.64,0],[[1569,2],[1665,2]]], [1616,[10724.7,10812.3,-1.52588e-005],[[1571,2],[1666,2]]], [1617,[11453.5,9835.21,0],[[1617,2],[1667,2],[1572,2]]], [1618,[9692.71,12104.6,-1.52588e-005],[[1573,2],[1668,2],[1669,2]]], [1619,[9313.83,11713.1,-1.52588e-005],[[1574,2],[1670,2]]], +[1620,[7933.99,11403.9,0],[[1575,2],[1671,2],[1672,2]]], [1621,[7011.29,11469.3,0],[[1576,2],[1673,2],[1621,2]]], [1622,[8574.65,11950.5,0],[[1577,2],[1674,2]]], [1623,[8725.44,11881.5,0],[[1577,2],[1675,2]]], [1624,[10128.8,3718.39,-7.62939e-006],[[1579,2],[1624,2]]], [1625,[10172,3612.59,0],[[1579,2],[1676,2]]], +[1626,[10246.8,3201.15,0],[[1580,2],[1677,2],[1678,2]]], [1627,[11165.7,4378.2,-1.01725e-005],[[1581,2],[1627,2],[1679,2]]], [1628,[11491.3,4476.21,0],[[1582,2],[1680,2]]], [1629,[11708.6,4740.41,0],[[1583,2],[1681,2]]], [1630,[12093.4,5871.85,1.01725e-005],[[1584,2],[1630,2],[1682,2]]], [1631,[12096.5,6292.24,3.8147e-006],[[1585,2],[1683,2]]], +[1632,[2530.14,6388.72,0],[[1586,2],[1684,2],[1685,2],[1686,2]]], [1633,[2817.37,5195.57,0],[[1587,2]]], [1634,[2699.72,5152.87,-3.8147e-006],[[1589,2],[1687,2],[1688,2],[1689,2]]], [1635,[2833.02,5471.38,-1.52588e-005],[[1591,2]]], [1636,[2734.68,5468.87,0],[[1592,2],[1636,2]]], [1637,[2570.84,5466.03,-1.52588e-005],[[1592,2],[1690,2]]], +[1638,[2674.45,5648.44,0],[[1592,2],[1691,2]]], [1639,[3015.54,4665.02,0],[[1594,2],[1692,2],[1693,2]]], [1640,[3080.41,4494.18,0],[[1594,2],[1694,2]]], [1641,[4131.26,4856.52,1.52588e-005],[[1595,2],[1695,2]]], [1642,[4077.24,4690.47,-1.52588e-005],[[1595,2],[1696,2]]], [1643,[6079.26,3669.86,1.90735e-006],[[1597,2]]], +[1644,[4983.06,4497.99,0],[[1598,2],[1697,2]]], [1645,[2040.19,7318.49,-1.01725e-005],[[1599,2],[1698,2],[1699,2]]], [1646,[2522.7,7536.49,3.05176e-005],[[1600,2],[1700,2]]], [1647,[1932.81,8110.58,1.01725e-005],[[1601,2],[1701,2],[1702,2]]], [1648,[2110.03,11379.1,0],[[1602,2],[1703,2]]], [1649,[2593.1,11041.5,0],[[1603,2],[1704,2]]], +[1650,[3354.11,12114.3,0],[[1604,2],[1705,2]]], [1651,[3173.03,11877.8,0],[[1604,2],[1706,2]]], [1652,[3524.49,12031.5,3.05176e-005],[[1604,2],[1707,2]]], [1653,[6029.23,3335.59,-7.62939e-006],[[1605,2],[1708,2]]], [1654,[6509.91,2922.85,1.58946e-007],[[1606,2],[1709,2],[1710,2]]], [1655,[9422.01,3404.86,-1.52588e-005],[[1607,2],[1711,2]]], +[1656,[4954.56,12538.2,5.08626e-006],[[1608,2],[1712,2],[1713,2]]], [1657,[12358.5,7385.2,0],[[1609,2],[1714,2]]], [1658,[12301.4,8955.17,0],[[1610,2],[1715,2],[1716,2]]], [1659,[12177.5,8954,0],[[1611,2],[1717,2],[1718,2],[1659,2]]], [1660,[12047.2,8966.65,0],[[1611,2],[1660,2],[1719,2]]], [1661,[12023.6,8546.51,0],[[1613,2],[1720,2]]], +[1662,[12129.6,8657.74,0],[[1613,2],[1721,2]]], [1663,[12158.9,9412.39,-6.35783e-007],[[1614,2],[1722,2],[1723,2]]], [1664,[12057.7,9391.4,0],[[1614,2]]], [1665,[11895.6,9331.54,0],[[1615,2]]], [1666,[10768.9,10924.8,1.52588e-005],[[1616,2],[1724,2]]], [1667,[11437.6,9832.72,1.27157e-006],[[1617,2]]], +[1668,[9785.42,12167.6,0],[[1618,2],[1727,2]]], [1669,[9624.72,12091.3,0],[[2059,2],[2169,2],[1618,2]]], [1670,[9220.83,11707.3,1.52588e-005],[[1619,2],[1728,2]]], [1671,[7877.16,11511.9,0],[[1620,2],[1729,2]]], [1672,[8058.38,11396.2,0],[[1620,2],[1730,2]]], [1673,[6981.52,11365.2,3.05176e-005],[[1621,2],[1731,2]]], +[1674,[8496.98,12049.6,-1.52588e-005],[[1622,2],[1732,2]]], [1675,[8860.47,11850.4,0],[[1623,2],[1733,2]]], [1676,[10152.4,3511.81,0],[[1625,2],[1734,2]]], [1677,[10202.5,3051.33,1.90735e-006],[[1626,2],[1735,2]]], [1678,[10193.5,3301.85,0],[[1626,2],[1736,2]]], [1679,[11143.5,4274.94,-3.05176e-005],[[1627,2],[1737,2]]], +[1680,[11573,4514.7,1.52588e-005],[[1628,2],[1738,2]]], [1681,[11758.9,4821.32,1.52588e-005],[[1629,2],[1739,2]]], [1682,[12145.7,5763.3,0],[[1630,2],[1740,2]]], [1683,[12212.5,6259.48,0],[[1631,2],[1741,2]]], [1684,[2526.55,6305,1.01725e-005],[[1632,2],[1742,2],[1743,2],[1686,2]]], [1685,[2455.62,6365.54,0],[[1632,2],[1744,2]]], +[1686,[2573.1,6349.58,0],[[1632,2],[1684,2],[1743,2]]], [1687,[2650.89,5219.35,0],[[1634,2],[1745,2]]], [1688,[2653.83,5092.03,3.8147e-006],[[1634,2],[1688,2],[1746,2],[1747,2]]], [1689,[2738.91,5118.06,0],[[1634,2]]], [1690,[2523.72,5517.34,-5.08626e-006],[[1637,2],[1690,2]]], [1691,[2675.1,5722.75,5.08626e-006],[[1638,2],[1748,2],[1749,2]]], +[1692,[3053.11,4543.43,0],[[1639,2],[1694,2]]], [1693,[2838.41,4726.74,0],[[1639,2],[1750,2]]], [1694,[3066.39,4487.49,0],[[1640,2],[1692,2],[1751,2]]], [1695,[4237.17,4831.88,0],[[1641,2],[1695,2],[1752,2]]], [1696,[4116.73,4647.93,3.8147e-006],[[1642,2],[1753,2],[1696,2],[1754,2]]], [1697,[4912.99,4475.01,0],[[1644,2],[1755,2]]], +[1698,[1991.05,7330.01,0],[[1645,2],[1756,2],[1757,2],[1758,2],[1759,2]]], [1699,[2042.36,7277.58,0],[[1645,2]]], [1700,[2530.89,7559.99,0],[[1646,2]]], [1701,[1878.65,7989.72,0],[[1647,2],[1760,2]]], [1702,[2002.36,8107.53,0],[[1647,2],[1761,2]]], [1703,[2070.21,11495.1,0],[[1648,2],[1762,2]]], +[1704,[2477.63,11000.2,0],[[1649,2],[1472,2]]], [1705,[3381.55,12238.4,0],[[1650,2],[1763,2]]], [1706,[3045.31,11823.4,0],[[1651,2],[1764,2]]], [1707,[3653.66,12082.9,0],[[1652,2],[1765,2]]], [1708,[5956.99,3235.71,0],[[1653,2],[1766,2]]], [1709,[6551.8,2867.97,0],[[1654,2],[1767,2],[1768,2]]], +[1710,[6449.67,2890.22,3.17891e-007],[[1654,2],[1710,2]]], [1711,[9431.1,3268.82,0],[[1655,2],[1769,2]]], [1712,[4910.75,12543.9,5.08626e-006],[[1656,2],[1712,2],[1770,2]]], [1713,[4957.04,12584.9,-1.52588e-005],[[1656,2]]], [1714,[12388.2,7464.99,1.52588e-005],[[1657,2],[1771,2]]], [1715,[12467,8849.31,1.90735e-006],[[1658,2],[1772,2]]], +[1716,[12308.8,8986.06,1.27157e-006],[[1658,2],[1773,2],[1774,2],[1775,2]]], [1717,[12155.3,8802.91,-3.8147e-006],[[1659,2],[1721,2]]], [1718,[12172.1,8963.87,0],[[1659,2]]], [1719,[12024.2,8939.82,0],[[1660,2]]], [1720,[12083.8,8485.77,0],[[1661,2],[1776,2]]], [1721,[12153.7,8652.17,0],[[1662,2],[1717,2],[1777,2]]], +[1722,[12249,9494.54,0],[[1663,2],[1778,2],[1779,2],[1780,2],[1781,2]]], [1723,[12121.9,9441.57,1.90735e-006],[[1663,2]]], [1724,[10818.5,11018.5,0],[[1666,2],[1782,2]]], [1725,[11646.5,9840.74,0],[[1617,2],[1726,2]]], [1726,[11781.8,9846.16,0],[[1725,2],[1783,2]]], [1727,[9826.66,12231,0],[[1668,2],[1784,2],[1727,2]]], +[1728,[9196.64,11708.6,0],[[1670,2],[1728,2],[1785,2]]], [1729,[7859.45,11556.3,-3.05176e-005],[[1671,2]]], [1730,[8070.69,11401.6,5.08626e-006],[[1672,2],[1786,2],[1787,2]]], [1731,[6966.87,11348.3,0],[[1673,2],[1788,2],[1731,2]]], [1732,[8472.92,12052.1,-5.08626e-006],[[1674,2],[1789,2],[1790,2]]], [1733,[8939.43,11853.2,5.08626e-006],[[1675,2],[1791,2],[1792,2]]], +[1734,[10151.9,3426.07,0],[[1676,2],[1736,2]]], [1735,[10251.2,2983.75,0],[[1677,2],[1793,2]]], [1736,[10139.9,3352.28,-3.8147e-006],[[1678,2],[1734,2]]], [1737,[11101.7,4187.93,0],[[1679,2],[1794,2]]], [1738,[11661.1,4571.45,0],[[1680,2],[1795,2]]], [1739,[11837,4960.49,0],[[1681,2],[1796,2]]], +[1740,[12168.5,5666.44,0],[[1682,2],[1797,2]]], [1741,[12299.4,6232.76,0],[[1683,2],[1798,2]]], [1742,[2543.14,6142.1,-3.05176e-005],[[1684,2],[1799,2]]], [1743,[2561.11,6324.56,0],[[1684,2],[1686,2]]], [1744,[2416.02,6349.38,0],[[1685,2],[1800,2],[1801,2]]], [1745,[2562.04,5235.88,0],[[1687,2],[1802,2]]], +[1746,[2564.21,5025.08,0],[[1688,2],[1803,2],[1804,2]]], [1747,[2745.93,5061.93,0],[[1688,2]]], [1748,[2685.56,5852.8,0],[[1691,2],[1805,2]]], [1749,[2600.81,5699.37,1.52588e-005],[[1691,2]]], [1750,[2697.83,4718.1,0],[[1693,2],[1806,2]]], [1751,[2970.39,4398.46,0],[[1694,2],[1807,2]]], +[1752,[4341.82,4728.78,0],[[1695,2],[1808,2]]], [1753,[4235.28,4473.94,0],[[1696,2],[1809,2]]], [1754,[4174.29,4669.11,1.01725e-005],[[1696,2],[1754,2],[1810,2]]], [1755,[4830.86,4430.78,0],[[1697,2],[1811,2]]], [1756,[2020.47,7387.89,0],[[1698,2]]], [1757,[1956.05,7365.5,0],[[1698,2],[1757,2],[1812,2]]], +[1758,[1951.53,7301.08,0],[[1698,2]]], [1759,[2014.52,7270.45,0],[[1698,2]]], [1760,[1845.01,7909.4,0],[[1701,2],[1813,2]]], [1761,[2062.49,8063.31,0],[[1702,2],[1814,2]]], [1762,[2020.93,11617.6,0],[[1703,2],[1815,2]]], [1763,[3429.95,12311.7,0],[[1705,2],[1763,2]]], +[1764,[3022.47,11814.9,-1.52588e-005],[[1706,2]]], [1765,[3709.01,12056.9,0],[[1707,2],[1817,2],[1818,2]]], [1766,[5877.33,3151.97,0],[[1708,2],[1819,2]]], [1767,[6511.16,2795.39,0],[[1709,2],[1820,2],[1767,2],[1821,2]]], [1768,[6602.56,2890.62,0],[[1709,2],[1822,2],[1823,2]]], [1769,[9388.37,3144.8,1.52588e-005],[[1711,2],[1824,2]]], +[1770,[4863.51,12517.2,-1.01725e-005],[[1712,2],[1825,2],[1770,2],[1826,2]]], [1771,[12361.1,7614.88,0],[[1714,2],[1827,2]]], [1772,[12526.7,8770.17,0],[[1715,2],[1828,2]]], [1773,[12358,9053.22,-1.27157e-006],[[1716,2],[1775,2],[1773,2],[1829,2]]], [1774,[12309.1,9079.58,0],[[1716,2],[1830,2],[1774,2]]], [1775,[12369.9,9033.58,-9.53674e-007],[[1773,2],[1775,2],[1716,2]]], +[1776,[12103.1,8445.41,0],[[1720,2],[1831,2],[1832,2]]], [1777,[12179.5,8617.96,1.27157e-006],[[1721,2],[1777,2],[1833,2]]], [1778,[12185.9,9488.44,0],[[1722,2],[1778,2],[1834,2]]], [1779,[12322.3,9579.74,1.19209e-007],[[1722,2],[1835,2],[1836,2],[1837,2]]], [1780,[12368.3,9488.03,0],[[1722,2],[1780,2]]], [1781,[12155.9,9556.24,0],[[1722,2],[1781,2]]], +[1782,[10819.7,11069.6,5.08626e-006],[[1724,2],[1782,2],[1838,2]]], [1783,[11912.9,9854.5,0],[[1726,2],[1839,2]]], [1784,[9910.13,12320.2,0],[[1727,2],[1840,2]]], [1785,[9089.33,11814.2,0],[[1728,2],[1791,2]]], [1786,[8067.62,11316.9,0],[[1730,2],[1786,2],[1841,2],[1842,2]]], [1787,[8102.81,11512.6,0],[[1730,2],[1843,2]]], +[1788,[6931.37,11353.2,0],[[1731,2]]], [1789,[8297.51,12105.6,0],[[1732,2],[1844,2]]], [1790,[8429.04,12024.9,-1.52588e-005],[[1732,2],[1790,2]]], [1791,[8981.92,11851.8,0],[[1733,2],[1785,2],[1845,2]]], [1792,[8923.27,11963.2,0],[[1733,2],[1846,2]]], [1793,[10265.7,2905.57,-6.35783e-007],[[1735,2],[1793,2],[1847,2]]], +[1794,[11079.3,4123.28,0],[[1737,2],[1848,2]]], [1795,[11754.1,4610.88,-1.52588e-005],[[1738,2],[1849,2]]], [1796,[11928,5022.11,7.62939e-006],[[1739,2],[1850,2]]], [1797,[12180.7,5634.97,0],[[1797,2],[1851,2]]], [1798,[12406.2,6213.14,0],[[1741,2],[1852,2],[1798,2]]], [1799,[2584.44,6025.77,-3.05176e-005],[[1742,2],[1805,2]]], +[1800,[2358.93,6362.55,-1.01725e-005],[[1744,2],[1853,2],[1854,2],[1800,2]]], [1801,[2441.26,6335.03,3.05176e-005],[[1744,2],[1801,2]]], [1802,[2424.35,5252.44,0],[[1745,2],[1855,2]]], [1803,[2462.28,4950.53,0],[[1746,2],[1856,2]]], [1804,[2589.83,4856.5,0],[[1746,2],[1806,2]]], [1805,[2680.89,5878.14,-5.08626e-006],[[1748,2],[1799,2],[1857,2]]], +[1806,[2618.47,4721.04,0],[[1750,2],[1804,2],[1858,2]]], [1807,[2946.78,4385.82,-1.01725e-005],[[1751,2],[1807,2],[1859,2]]], [1808,[4369,4677.34,0],[[1752,2],[1860,2],[1861,2]]], [1809,[4253.79,4455.49,0],[[1753,2],[1862,2],[1809,2],[1863,2]]], [1810,[4281.79,4625.17,-1.52588e-005],[[1754,2],[1860,2]]], [1811,[4725.85,4333.27,0],[[1755,2],[1864,2]]], +[1812,[1929.05,7468.24,0],[[1757,2],[1865,2]]], [1813,[1887.19,7813.19,0],[[1760,2],[1866,2]]], [1814,[2100.97,8006.45,0],[[1761,2],[1867,2]]], [1815,[1996.65,11765.2,0],[[1762,2],[1868,2]]], [1816,[2291.35,10913.7,1.01725e-005],[[1472,2]]], [1817,[3707.65,11952.4,0],[[1765,2],[1817,2],[1869,2]]], +[1818,[3701.26,12094.7,1.01725e-005],[[1765,2]]], [1819,[5785.16,3098.43,0],[[1766,2],[1870,2],[1871,2]]], [1820,[6464.74,2746.85,0],[[1767,2],[1872,2],[1873,2]]], [1821,[6589.6,2738.03,0],[[1767,2],[1821,2],[1874,2],[1875,2],[1876,2],[1823,2],[1877,2]]], [1822,[6731.57,2986.49,0],[[1768,2],[1878,2],[1879,2]]], [1823,[6654.26,2838.62,0],[[1768,2],[1821,2],[1876,2],[1823,2],[1879,2]]], +[1824,[9390.55,3126.58,0],[[1824,2],[1880,2]]], [1825,[4869.83,12538.1,-7.62939e-006],[[1770,2]]], [1826,[4840.73,12349.4,0],[[1770,2],[1881,2]]], [1827,[12288.9,7747.48,0],[[1771,2],[1882,2]]], [1828,[12593.2,8715.21,-2.38419e-007],[[1772,2],[1883,2],[1884,2],[1885,2]]], [1829,[12323.3,9086.33,0],[[1773,2]]], +[1830,[12277.3,9059.64,1.90735e-006],[[1774,2]]], [1831,[12147.8,8303.8,0],[[1776,2],[1886,2]]], [1832,[12194.9,8468.99,0],[[1776,2],[1832,2],[1887,2]]], [1833,[12228.1,8611.17,0],[[1777,2],[1833,2],[1887,2]]], [1834,[12142.2,9449.89,0],[[1778,2]]], [1835,[12431.3,9534.83,0],[[1779,2],[1888,2],[1889,2]]], +[1836,[12351.7,9678.12,-3.57628e-007],[[1779,2],[1890,2],[1891,2],[1892,2]]], [1837,[12351.9,9602.02,-4.76837e-007],[[1779,2]]], [1838,[10846.3,11180.6,-5.08626e-006],[[1782,2],[1893,2],[1838,2],[1894,2]]], [1839,[12038.6,9859.42,0],[[1783,2],[1895,2]]], [1840,[10035.4,12375.2,0],[[1784,2],[1896,2]]], [1841,[8071.1,11236.7,5.08626e-006],[[1786,2],[1841,2],[1897,2]]], +[1842,[8026.4,11301.8,-1.52588e-005],[[1786,2]]], [1843,[8105.62,11596.1,-3.8147e-006],[[1787,2],[1898,2],[1843,2],[1899,2]]], [1844,[8233.44,12097.3,-1.52588e-005],[[1789,2],[1900,2]]], [1845,[9076,11953.7,0],[[1791,2],[1901,2]]], [1846,[8851.61,12029.5,-1.52588e-005],[[1792,2],[1902,2]]], [1847,[10333.6,2829.63,-9.53674e-007],[[1793,2],[1903,2]]], +[1848,[11003.2,4076.82,0],[[1794,2],[1904,2]]], [1849,[11836.8,4599.93,0],[[1795,2],[1905,2]]], [1850,[12022.3,5065,-7.62939e-006],[[1796,2],[1906,2]]], [1851,[12265.6,5599.08,2.54313e-006],[[1797,2],[1907,2],[1908,2]]], [1852,[12521.8,6222.07,0],[[1798,2],[1909,2]]], [1853,[2254.98,6271.73,0],[[1800,2],[1910,2]]], +[1854,[2371.48,6371.61,-2.03451e-005],[[1800,2]]], [1855,[2399.39,5253.14,0],[[1802,2],[1911,2],[1855,2],[1912,2]]], [1856,[2325.68,4901.45,0],[[1803,2],[1913,2]]], [1857,[2765.91,5962.04,-3.05176e-005],[[1805,2],[1914,2]]], [1858,[2528.37,4691.17,0],[[1806,2],[1915,2]]], [1859,[2880.7,4346.99,0],[[1807,2],[1916,2],[1859,2],[1917,2]]], +[1860,[4358.08,4603.05,0],[[1808,2],[1810,2],[1918,2]]], [1861,[4418.39,4677.89,0],[[1861,2],[1919,2]]], [1862,[4279.03,4332.36,-1.52588e-005],[[1809,2],[1920,2]]], [1863,[4337.08,4381.45,0],[[1809,2],[1921,2]]], [1864,[4688.79,4277.71,0],[[1811,2],[1922,2],[1923,2]]], [1865,[1884.87,7578.71,0],[[1812,2],[1924,2]]], +[1866,[1914.1,7675.73,0],[[1813,2],[1924,2]]], [1867,[2154.7,7912.74,0],[[1814,2],[1867,2]]], [1868,[1934.76,11880.9,0],[[1815,2],[1925,2]]], [1869,[3814.21,12033.6,-3.05176e-005],[[1817,2],[1926,2]]], [1870,[5694.12,3025.86,1.90735e-006],[[1819,2],[1870,2],[1927,2],[1928,2]]], [1871,[5678.32,3235.25,0],[[1819,2],[1929,2]]], +[1872,[6427.23,2714.26,0],[[1820,2],[1930,2],[1872,2],[1931,2]]], [1873,[6489.75,2664.42,0],[[1820,2],[1932,2],[1873,2],[1933,2]]], [1874,[6651.13,2785.3,0],[[1821,2]]], [1875,[6511.2,2620.95,0],[[1821,2]]], [1876,[6689.59,2772.82,0],[[1821,2],[1823,2],[1934,2],[1876,2],[1935,2]]], [1877,[6562.82,2603.94,0],[[1821,2],[1877,2],[1936,2],[1937,2],[1938,2]]], +[1878,[6851.41,3070.65,0],[[1822,2],[1939,2]]], [1879,[6771.73,2933.29,0],[[1822,2],[1823,2],[1940,2]]], [1880,[9432.29,3032.22,0],[[1824,2],[1941,2]]], [1881,[4772.3,12256.5,0],[[1826,2],[1942,2]]], [1882,[12254.1,7830.81,0],[[1827,2],[1943,2],[1882,2]]], [1883,[12733.2,8704.33,-4.76837e-007],[[1828,2],[1944,2]]], +[1884,[12537.5,8670.1,0],[[1828,2],[1945,2],[1884,2],[1946,2]]], [1885,[12618.1,8599.01,0],[[1828,2],[1947,2]]], [1886,[12158.7,8178.09,0],[[1831,2],[1948,2]]], [1887,[12286.2,8462.08,0],[[1832,2],[1833,2],[1949,2]]], [1888,[12483.6,9538.39,1.58946e-007],[[1835,2],[1888,2],[1950,2]]], [1889,[12431.5,9491.23,4.76837e-007],[[1835,2]]], +[1890,[12314.8,9750.52,9.53674e-007],[[1836,2]]], [1891,[12521.2,9708.67,0],[[1836,2],[1951,2]]], [1892,[12162.6,9715.16,0],[[1836,2],[1952,2]]], [1893,[10834.7,11162.3,-7.62939e-006],[[1838,2]]], [1894,[10896.2,11325.8,0],[[1838,2],[1953,2]]], [1895,[12156.1,9864.66,1.90735e-006],[[1839,2],[1954,2]]], +[1896,[10177.6,12421.9,0],[[1840,2],[1955,2]]], [1897,[8035.03,11162.8,0],[[1841,2]]], [1898,[8134.65,11728.9,0],[[1843,2],[1956,2]]], [1899,[8189.13,11567,0],[[1843,2],[1899,2]]], [1900,[8218.9,11999.6,0],[[1844,2],[1957,2]]], [1901,[9189.26,11996.5,0],[[1845,2],[1958,2]]], +[1902,[8830.29,12125,-1.52588e-005],[[1846,2],[1959,2]]], [1903,[10356.5,2776.24,0],[[1847,2],[1903,2],[1960,2]]], [1904,[10912,4079.13,0],[[1848,2],[1961,2]]], [1905,[11934.4,4599.49,0],[[1849,2],[1962,2]]], [1906,[12042.7,5075.26,0],[[1850,2],[1963,2],[1906,2]]], [1907,[12286.1,5575.43,0],[[1851,2]]], +[1908,[12325.3,5719.69,0],[[1851,2],[1964,2]]], [1909,[12551.4,6224.33,0],[[1852,2],[1909,2],[1965,2]]], [1910,[2188.55,6240.53,0],[[1853,2]]], [1911,[2300.37,5295.17,0],[[1855,2],[1966,2],[1967,2]]], [1912,[2324.48,5220.57,0],[[1855,2],[1968,2]]], [1913,[2221.5,4836.71,0],[[1856,2],[1969,2]]], +[1914,[2763.14,5982.2,0],[[1857,2],[1914,2]]], [1915,[2472.59,4696.2,0],[[1858,2]]], [1916,[2901.37,4373.53,1.01725e-005],[[1859,2]]], [1917,[2832.93,4183.15,0],[[1859,2],[1970,2]]], [1918,[4402.83,4570.35,0],[[1860,2]]], [1919,[4483.17,4626.98,5.08626e-006],[[1861,2],[1971,2],[1972,2]]], +[1920,[4285.38,4205.92,1.52588e-005],[[1862,2],[1973,2],[1974,2]]], [1921,[4387.44,4281.61,0],[[1863,2],[1975,2]]], [1922,[4607.41,4358.37,0],[[1864,2],[1976,2]]], [1923,[4799.6,4155.23,0],[[1864,2],[1977,2]]], [1924,[1887.62,7601.89,0],[[1865,2],[1866,2],[1978,2]]], [1925,[1868.73,12019.6,0],[[1868,2],[1979,2]]], +[1926,[3920.64,12095.8,0],[[1869,2],[1980,2]]], [1927,[5737.72,2898.55,0],[[1870,2],[1981,2],[1982,2]]], [1928,[5545.13,3071.08,0],[[1870,2],[1983,2]]], [1929,[5629.58,3320.12,0],[[1871,2],[1984,2]]], [1930,[6350.07,2582.84,-1.58946e-007],[[1872,2],[1985,2],[1986,2]]], [1931,[6368.95,2764.9,0],[[1872,2]]], +[1932,[6508.66,2695.9,0],[[1873,2]]], [1933,[6420.74,2585.3,0],[[1873,2]]], [1934,[6696.67,2762.17,0],[[1876,2]]], [1935,[6731.37,2726.52,0],[[1876,2],[1987,2],[1936,2]]], [1936,[6605.48,2575.7,0],[[1877,2],[1935,2],[1988,2],[1936,2]]], [1937,[6554.87,2510.67,-1.19209e-007],[[1877,2],[1938,2],[1937,2],[1989,2]]], +[1938,[6545.48,2522.7,0],[[1937,2],[2043,2],[1938,2],[1877,2]]], [1939,[6873.24,3091.06,1.19209e-007],[[1878,2],[1990,2],[1991,2],[1992,2]]], [1940,[6868.41,2994.4,0],[[1879,2],[1991,2]]], [1941,[9500.69,2962.8,0],[[1880,2],[1993,2]]], [1942,[4682.44,12235.2,0],[[1881,2],[1994,2]]], [1943,[12214.3,7849.35,0],[[1882,2],[1943,2],[1995,2]]], +[1944,[12797.7,8619.57,0],[[1883,2],[1996,2]]], [1945,[12563.3,8666.31,0],[[1884,2],[1997,2],[1945,2]]], [1946,[12445.4,8667.04,0],[[1884,2]]], [1947,[12639.7,8546.75,0],[[1885,2],[1998,2],[1999,2]]], [1948,[12210.5,8108.77,-2.54313e-006],[[1886,2],[1948,2],[2000,2]]], [1949,[12297.1,8346.67,0],[[1887,2]]], +[1950,[12484.4,9560.74,0],[[1888,2],[1950,2],[2001,2]]], [1951,[12633.6,9750.74,0],[[1891,2],[2002,2],[2003,2]]], [1952,[12105.7,9728.76,0],[[1892,2]]], [1953,[10885.8,11445.6,0],[[1894,2],[2004,2]]], [1954,[12319.3,9871.67,0],[[1895,2],[2005,2]]], [1955,[10285.8,12440.1,0],[[1896,2],[2006,2]]], +[1956,[8144.78,11847.2,-1.52588e-005],[[1898,2],[1957,2]]], [1957,[8210.66,11921.3,0],[[1900,2],[1956,2],[1957,2]]], [1958,[9274.82,12058.7,0],[[1901,2],[2007,2]]], [1959,[8858.66,12203.5,0],[[1902,2],[2008,2]]], [1960,[10493.3,2679.83,0],[[1903,2],[2009,2]]], [1961,[10797.5,4158.11,-3.05176e-005],[[1904,2],[2010,2]]], +[1962,[11965.2,4585.64,-1.01725e-005],[[1905,2],[2011,2],[2012,2]]], [1963,[12054.9,5111.3,-2.54313e-006],[[1906,2],[2013,2],[2014,2]]], [1964,[12417.7,5738.82,0],[[1908,2],[2015,2]]], [1965,[12672.3,6174.13,0],[[1909,2],[2016,2]]], [1966,[2271.8,5247.09,0],[[1911,2]]], [1967,[2260.08,5328.91,5.08626e-006],[[1911,2],[2017,2],[2018,2]]], +[1968,[2256.39,5153.36,0],[[1912,2]]], [1969,[2126.01,4745.84,0],[[1913,2],[2019,2]]], [1970,[2847.92,4049.91,0],[[1917,2],[2020,2]]], [1971,[4496.46,4539.97,0],[[1919,2],[1976,2]]], [1972,[4570.87,4709.64,-3.05176e-005],[[1919,2],[2021,2]]], [1973,[4258.05,4147.19,5.08626e-006],[[1920,2],[1974,2],[1973,2],[2022,2]]], +[1974,[4248.47,4168.56,7.62939e-006],[[1973,2],[1974,2],[1920,2]]], [1975,[4410.67,4143.07,0],[[1921,2],[2023,2]]], [1976,[4533.49,4442.98,0],[[1922,2],[1971,2]]], [1977,[4858.74,4115.54,1.01725e-005],[[1923,2],[2024,2],[2025,2]]], [1978,[1802.39,7661.68,0],[[1924,2],[2026,2]]], [1979,[1857.56,12055.4,-5.08626e-006],[[1925,2],[1979,2],[2027,2]]], +[1980,[4018.17,12122.7,0],[[1926,2],[2028,2]]], [1981,[5812.04,2802.15,2.54313e-006],[[1927,2],[2029,2],[1981,2],[2030,2]]], [1982,[5773.39,2822.07,7.62939e-006],[[2029,2],[1927,2]]], [1983,[5491.41,3067.86,-1.27157e-006],[[1928,2],[2031,2],[1983,2],[2032,2]]], [1984,[5543.9,3439.85,0],[[1929,2],[2033,2]]], [1985,[6360.56,2521.05,0],[[1930,2],[2034,2],[2035,2]]], +[1986,[6308.28,2615.8,0],[[1930,2],[1986,2],[2036,2]]], [1987,[6795.08,2668.62,0],[[1935,2],[2037,2],[2038,2],[2039,2],[2040,2],[2041,2]]], [1988,[6647.59,2541.51,0],[[1936,2],[2042,2],[2039,2],[2038,2]]], [1989,[6446.47,2361.88,0],[[1937,2],[2044,2],[2035,2],[2045,2]]], [1990,[7001.12,3178.46,0],[[1939,2],[2046,2]]], [1991,[6899.46,3035.33,9.53674e-007],[[1939,2],[1940,2]]], +[1992,[6842.93,3127.6,0],[[1939,2],[2047,2],[2048,2]]], [1993,[9537.74,2850.53,0],[[1941,2],[2049,2]]], [1994,[4511.5,12235.3,0],[[1942,2],[2050,2]]], [1995,[12195.4,7869.77,-2.54313e-006],[[1943,2],[1995,2],[2000,2]]], [1996,[12841.4,8588.48,0],[[1944,2],[2051,2]]], [1997,[12566.2,8671.93,0],[[1945,2]]], +[1998,[12666.3,8432.65,0],[[1947,2],[1998,2],[2052,2]]], [1999,[12761.6,8469.7,-1.58946e-007],[[1947,2],[1999,2],[2053,2]]], [2000,[12242.1,8020.93,2.54313e-006],[[1948,2],[1995,2],[2000,2]]], [2001,[12464.4,9572.61,0],[[1950,2]]], [2002,[12728.7,9828.25,0],[[1951,2],[2054,2],[2055,2]]], [2003,[12632.7,9611.74,0],[[1951,2],[2056,2]]], +[2004,[10888.2,11593.7,-1.52588e-005],[[1953,2],[2057,2]]], [2005,[12425.9,9858.99,-9.53674e-007],[[1954,2],[2055,2]]], [2006,[10456.7,12416.1,0],[[1955,2],[2058,2]]], [2007,[9392.24,12098.3,0],[[1958,2],[2059,2]]], [2008,[8874.51,12368.8,0],[[1959,2],[2060,2]]], [2009,[10491.4,2619.54,4.76837e-007],[[1960,2],[2061,2]]], +[2010,[10747.2,4167.07,2.03451e-005],[[1961,2],[2010,2],[2062,2]]], [2011,[12065.9,4541.07,0],[[1962,2],[2063,2]]], [2012,[11969.6,4481.36,0],[[1962,2],[2064,2]]], [2013,[12174.6,5213.63,0],[[1963,2],[2065,2]]], [2014,[11941.4,5084.25,0],[[1963,2],[2066,2]]], [2015,[12485.1,5705.11,-1.27157e-006],[[1964,2],[2015,2],[2067,2]]], +[2016,[12789.2,6185.88,9.53674e-007],[[1965,2],[2068,2]]], [2017,[2095.13,5284.88,0],[[1967,2],[2069,2]]], [2018,[2266.69,5386.08,0],[[1967,2]]], [2019,[2043.79,4657.2,1.52588e-005],[[1969,2],[2070,2]]], [2020,[2873.54,4010.62,1.01725e-005],[[1970,2],[2071,2],[2072,2]]], [2021,[4625.67,4721.47,0],[[1972,2],[2021,2],[2073,2]]], +[2022,[4283.75,4022.07,0],[[1973,2],[2074,2]]], [2023,[4427.79,3978.23,0],[[1975,2],[2075,2]]], [2024,[4946.72,4021.62,0],[[1977,2],[2076,2]]], [2025,[4975.88,4155.83,-5.08626e-006],[[1977,2],[2077,2],[2025,2],[2078,2]]], [2026,[1688.5,7741.73,0],[[1978,2],[2079,2]]], [2027,[1872.64,12212.9,-1.52588e-005],[[1979,2],[2080,2]]], +[2028,[4137.49,12102.2,0],[[1980,2],[2081,2]]], [2029,[5786.86,2806.51,0],[[1981,2],[1982,2],[2029,2]]], [2030,[5891.68,2730.74,0],[[1981,2],[2082,2]]], [2031,[5509.05,3080.94,0],[[1983,2]]], [2032,[5389.62,2982.56,0],[[1983,2],[2032,2],[2083,2]]], [2033,[5439.14,3488.88,0],[[1984,2],[2084,2]]], +[2034,[6388.3,2523.62,0],[[1985,2],[2034,2],[2085,2]]], [2035,[6343.96,2435.21,0],[[1985,2],[1989,2],[2035,2],[2086,2],[2087,2],[2044,2]]], [2036,[6281.59,2495.11,4.76837e-007],[[1986,2],[2086,2]]], [2037,[6824.97,2728.63,0],[[1987,2],[2088,2],[2041,2]]], [2038,[6713.09,2620.58,0],[[1987,2],[1988,2],[2038,2],[2039,2]]], [2039,[6744.53,2582.74,0],[[1987,2],[1988,2],[2038,2],[2042,2],[2089,2]]], +[2040,[6888.27,2589.9,0],[[1987,2],[2090,2],[2089,2],[2091,2],[2092,2]]], [2041,[6876.44,2686.12,0],[[1987,2],[2037,2],[2093,2],[2092,2]]], [2042,[6677.96,2509.78,0],[[1988,2],[2039,2],[2094,2]]], [2043,[6541.55,2541.16,0],[[1938,2]]], [2044,[6397.44,2386.37,0],[[1989,2],[2035,2],[2044,2],[2095,2]]], [2045,[6506.07,2310.59,0],[[1989,2],[2096,2],[2097,2],[2098,2],[2045,2]]], +[2046,[7147.52,3266.39,0],[[1990,2],[2099,2]]], [2047,[6828.31,3171.06,0],[[1992,2]]], [2048,[6790.3,3109.95,-4.76837e-007],[[1992,2]]], [2049,[9598.7,2745.75,0],[[1993,2],[2100,2]]], [2050,[4444.72,12201.3,-1.52588e-005],[[1994,2],[2101,2]]], [2051,[12879,8602.41,0],[[1996,2],[2102,2],[2103,2]]], +[2052,[12690.9,8404.78,-3.17891e-007],[[1998,2],[2053,2],[2104,2]]], [2053,[12764.3,8408.78,0],[[1999,2],[2052,2],[2105,2]]], [2054,[12810.2,9925.29,0],[[2002,2],[2106,2],[2107,2]]], [2055,[12651.4,9860.15,-1.19209e-007],[[2002,2],[2005,2],[2108,2],[2055,2]]], [2056,[12593.5,9454.31,0],[[2003,2],[2109,2]]], [2057,[10903.6,11619.7,0],[[2004,2],[2110,2],[2111,2]]], +[2058,[10580.2,12404.9,0],[[2006,2],[2112,2]]], [2059,[9494.31,12090.1,0],[[2007,2],[1669,2]]], [2060,[8902.01,12489.2,-7.62939e-006],[[2008,2],[2113,2]]], [2061,[10455.1,2529.67,0],[[2009,2],[2114,2]]], [2062,[10727.5,4075.8,0],[[2010,2],[2115,2]]], [2063,[12143.9,4534.34,-5.08626e-006],[[2011,2],[2063,2],[2116,2]]], +[2064,[12049.9,4381.2,0],[[2012,2],[2117,2]]], [2065,[12241.2,5224.47,2.54313e-006],[[2013,2],[2065,2],[2118,2]]], [2066,[11773.9,5027.72,0],[[2014,2],[2119,2]]], [2067,[12574.3,5752.24,-3.8147e-006],[[2015,2],[2120,2]]], [2068,[12915.6,6249.51,0],[[2016,2],[2121,2]]], [2069,[1992.34,5297.05,0],[[2017,2],[2122,2],[2123,2]]], +[2070,[2001.8,4565.06,0],[[2019,2],[2124,2]]], [2071,[2863.02,4019.46,0],[[2020,2]]], [2072,[2909.99,3990.78,0],[[2020,2],[2125,2],[2072,2]]], [2073,[4670.65,4703.74,0],[[2021,2]]], [2074,[4257.63,3893.03,0],[[2022,2],[2126,2]]], [2075,[4425.42,3953.92,0],[[2023,2],[2127,2],[2128,2]]], +[2076,[5016.79,3940.75,0],[[2024,2],[2129,2]]], [2077,[4952.68,4153.86,0],[[2025,2]]], [2078,[5066.79,4189.8,-5.08626e-006],[[2025,2],[2078,2],[2130,2]]], [2079,[1613.22,7794.12,0],[[2026,2]]], [2080,[1863.9,12329.6,0],[[2027,2],[2131,2]]], [2081,[4164.82,12120.4,-1.01725e-005],[[2028,2],[2132,2],[2081,2],[2133,2]]], +[2082,[5861.93,2646.16,0],[[2030,2],[2082,2],[2134,2]]], [2083,[5362.81,2934.86,-1.27157e-006],[[2032,2],[2083,2],[2135,2]]], [2084,[5355,3529.35,0],[[2033,2],[2136,2]]], [2085,[6434.18,2560.42,0],[[2034,2]]], [2086,[6306.2,2442.96,0],[[2035,2],[2036,2],[2137,2]]], [2087,[6206.69,2300.29,0],[[2035,2],[2138,2]]], +[2088,[6865.74,2742.43,0],[[2037,2]]], [2089,[6779.15,2549.06,0],[[2039,2],[2040,2],[2090,2],[2139,2]]], [2090,[6838.68,2519.59,0],[[2040,2],[2089,2],[2139,2],[2090,2],[2140,2],[2141,2]]], [2091,[6938.74,2524.19,0],[[2040,2],[2142,2],[2141,2],[2143,2]]], [2092,[6953.47,2628.45,0],[[2040,2],[2041,2],[2093,2],[2144,2],[2145,2]]], [2093,[6967.72,2687.95,0],[[2041,2],[2092,2],[2146,2],[2147,2]]], +[2094,[6659.39,2471.65,0],[[2042,2],[2148,2],[2149,2],[2140,2]]], [2095,[6342.82,2316.21,-1.58946e-007],[[2044,2],[2097,2],[2150,2]]], [2096,[6598.21,2264.43,0],[[2045,2],[2151,2],[2098,2],[2152,2],[2096,2]]], [2097,[6410.04,2227.09,0],[[2045,2],[2095,2],[2153,2]]], [2098,[6569.18,2339.31,0],[[2045,2],[2096,2],[2098,2],[2154,2],[2148,2]]], [2099,[7280.08,3318.27,0],[[2046,2],[2155,2]]], +[2100,[9633.73,2654.55,0],[[2049,2],[2156,2]]], [2101,[4342.35,12124.6,3.05176e-005],[[2050,2],[2133,2]]], [2102,[12950.5,8445.46,0],[[2051,2],[2157,2]]], [2103,[12826.8,8814.46,0],[[2051,2],[2158,2]]], [2104,[12685.9,8303.58,0],[[2052,2],[2159,2],[2104,2]]], [2105,[12821.1,8377.18,1.58946e-007],[[2053,2],[2105,2],[2160,2],[2157,2]]], +[2106,[12862.6,10014.1,0],[[2054,2],[2161,2],[2162,2]]], [2107,[12772.8,9961.3,0],[[2054,2],[2163,2],[2161,2]]], [2108,[12693.2,9861.06,0],[[2055,2]]], [2109,[12625.6,9432.65,-1.58946e-007],[[2056,2],[2109,2],[2164,2]]], [2110,[10987.7,11724.3,0],[[2057,2],[2165,2]]], [2111,[11031.2,11540.9,0],[[2057,2],[2166,2]]], +[2112,[10668.8,12417.6,1.01725e-005],[[2058,2],[2167,2],[2168,2]]], [2113,[8966.04,12548.7,0],[[2060,2],[2170,2]]], [2114,[10458.8,2499.78,-1.58946e-007],[[2061,2],[2171,2],[2172,2]]], [2115,[10812.3,3987.44,-1.52588e-005],[[2062,2],[2173,2]]], [2116,[12227.2,4495.26,0],[[2063,2],[2174,2]]], [2117,[12106.2,4265.19,0],[[2064,2],[2175,2]]], +[2118,[12337.5,5299.37,3.8147e-006],[[2065,2],[2176,2]]], [2119,[11664,4966.64,0],[[2066,2],[2177,2]]], [2120,[12631.7,5745.16,1.27157e-006],[[2067,2],[2178,2],[2120,2]]], [2121,[13029.6,6257.61,0],[[2068,2],[2179,2]]], [2122,[1906.12,5273.68,-5.08626e-006],[[2069,2],[2180,2],[2181,2],[2122,2]]], [2123,[1921.71,5296.8,0],[[2181,2],[2069,2]]], +[2124,[2007.01,4480.9,1.52588e-005],[[2070,2],[2182,2]]], [2125,[2991.55,3866.45,1.52588e-005],[[2072,2],[2183,2]]], [2126,[4219.73,3781.68,0],[[2074,2],[2184,2]]], [2127,[4482.67,3771.79,0],[[2075,2],[2185,2]]], [2128,[4357.18,3934.95,0],[[2075,2]]], [2129,[5126.06,3817.9,0],[[2076,2],[2186,2]]], +[2130,[5160.66,4192.11,0],[[2078,2],[2187,2]]], [2131,[1849.67,12425.6,0],[[2080,2],[2188,2]]], [2132,[4156.22,12111,0],[[2081,2]]], [2133,[4286.26,12107.4,0],[[2081,2],[2101,2]]], [2134,[5875.93,2513.51,0],[[2082,2],[2189,2]]], [2135,[5221.18,2879.78,0],[[2083,2],[2135,2],[2190,2]]], +[2136,[5269.66,3602.43,0],[[2084,2],[2191,2]]], [2137,[6177.13,2376.44,0],[[2086,2],[2137,2],[2192,2]]], [2138,[6080.06,2242.11,0],[[2087,2],[2193,2]]], [2139,[6804.09,2565.47,0],[[2089,2],[2090,2]]], [2140,[6752.29,2421.02,0],[[2090,2],[2094,2],[2194,2],[2141,2],[2140,2],[2195,2],[2154,2],[2196,2]]], [2141,[6862.53,2451.9,0],[[2090,2],[2091,2],[2140,2],[2197,2],[2194,2],[2143,2]]], +[2142,[7016.96,2385.42,0],[[2091,2],[2198,2],[2199,2]]], [2143,[6912.75,2413.96,0],[[2141,2],[2194,2],[2197,2],[2251,2],[2252,2],[2091,2],[2199,2]]], [2144,[7023.95,2573.89,0],[[2092,2],[2145,2],[2200,2]]], [2145,[7004.37,2561.58,0],[[2144,2],[2092,2]]], [2146,[6937.32,2711.57,0],[[2093,2]]], [2147,[7067.04,2717.35,0],[[2093,2],[2201,2],[2202,2]]], +[2148,[6605.92,2425.34,0],[[2094,2],[2098,2],[2148,2],[2154,2]]], [2149,[6695.86,2444.51,0],[[2094,2],[2149,2]]], [2150,[6309,2289.87,0],[[2095,2],[2150,2],[2203,2]]], [2151,[6655.81,2282.16,0],[[2096,2],[2204,2],[2151,2],[2205,2],[2195,2]]], [2152,[6565.12,2253.58,0],[[2096,2]]], [2153,[6259.09,2157.09,0],[[2097,2],[2206,2]]], +[2154,[6643.53,2380.34,0],[[2098,2],[2140,2],[2148,2],[2195,2]]], [2155,[7350.28,3288.99,0],[[2099,2],[2207,2]]], [2156,[9658.87,2563.53,0],[[2100,2],[2208,2]]], [2157,[12971.9,8371.63,1.19209e-007],[[2102,2],[2105,2],[2209,2],[2157,2],[2160,2]]], [2158,[12823.2,8966.68,4.76837e-007],[[2103,2],[2210,2]]], [2159,[12694.9,8282.98,0],[[2104,2],[2211,2],[2159,2]]], +[2160,[12902.9,8350.78,-9.53674e-008],[[2105,2],[2157,2],[2160,2],[2212,2],[2211,2]]], [2161,[12815.4,10036.3,0],[[2106,2],[2107,2],[2161,2]]], [2162,[12910.2,10094.5,0],[[2106,2],[2213,2],[2214,2],[2215,2],[2216,2]]], [2163,[12703.3,10014.3,0],[[2107,2]]], [2164,[12753.9,9431.21,0],[[2109,2],[2217,2]]], [2165,[11026.8,11804.4,-1.52588e-005],[[2110,2],[2218,2]]], +[2166,[11144.4,11486.6,3.05176e-005],[[2111,2],[2219,2]]], [2167,[10769.6,12436.3,0],[[2112,2],[2220,2],[2167,2],[2221,2]]], [2168,[10663.2,12499,0],[[2112,2],[2222,2],[2168,2],[2223,2]]], [2169,[9661.09,12090.2,7.62939e-006],[[1669,2]]], [2170,[9073.15,12572.9,0],[[2113,2],[2224,2]]], [2171,[10457.8,2372.75,-9.53674e-008],[[2114,2],[2225,2],[2226,2],[2227,2],[2228,2]]], +[2172,[10320.8,2480.97,0],[[2114,2],[2229,2]]], [2173,[10829.2,3965.95,0],[[2115,2],[2173,2],[2230,2]]], [2174,[12259.1,4492.86,5.08626e-006],[[2116,2],[2231,2],[2174,2],[2232,2]]], [2175,[12141.1,4141.69,0],[[2117,2],[2233,2]]], [2176,[12428.7,5347.5,-1.27157e-006],[[2118,2],[2234,2],[2235,2]]], [2177,[11608.9,4880.94,0],[[2119,2],[2236,2],[2237,2]]], +[2178,[12758.4,5724.01,0],[[2120,2],[2238,2]]], [2179,[13141.4,6231.25,4.76837e-007],[[2121,2],[2239,2]]], [2180,[1832.42,5124.31,0],[[2122,2],[2240,2]]], [2181,[1912.24,5290.58,-1.52588e-005],[[2122,2],[2123,2]]], [2182,[2009.23,4469.13,5.08626e-006],[[2124,2],[2182,2],[2241,2]]], [2183,[3089.88,3814.81,0],[[2125,2],[2242,2]]], +[2184,[4143.69,3729.15,0],[[2126,2],[2243,2]]], [2185,[4524.29,3646.36,0],[[2127,2],[2244,2]]], [2186,[5213.55,3708.54,0],[[2129,2],[2191,2]]], [2187,[5219.91,4219.57,0],[[2130,2]]], [2188,[1780.8,12526,0],[[2131,2],[2245,2]]], [2189,[5932.21,2459.01,3.8147e-006],[[2134,2],[2246,2]]], +[2190,[5124.94,2884.37,-6.35783e-007],[[2135,2],[2190,2],[2247,2]]], [2191,[5260.7,3641.05,7.62939e-006],[[2136,2],[2186,2],[2191,2],[2248,2]]], [2192,[6064.57,2402.9,0],[[2137,2],[2246,2]]], [2193,[5921.62,2197.05,0],[[2138,2],[2249,2]]], [2194,[6819.52,2391.75,0],[[2140,2],[2141,2],[2250,2],[2143,2]]], [2195,[6679.25,2347.17,0],[[2140,2],[2151,2],[2154,2],[2204,2],[2205,2]]], +[2196,[6704.15,2442.55,0],[[2140,2]]], [2197,[6884.78,2483.98,0],[[2141,2],[2143,2]]], [2198,[6891.11,2289.22,0],[[2142,2]]], [2199,[7039.98,2403.78,0],[[2142,2],[2143,2],[2252,2]]], [2200,[7063.51,2598.68,0],[[2144,2],[2253,2],[2202,2],[2254,2]]], [2201,[7013.81,2794.62,0],[[2147,2],[2201,2],[2255,2]]], +[2202,[7095,2679.13,0],[[2147,2],[2200,2],[2202,2],[2253,2]]], [2203,[6236.57,2227.13,0],[[2150,2],[2256,2]]], [2204,[6715.37,2300.03,0],[[2151,2],[2195,2],[2257,2],[2250,2]]], [2205,[6654.24,2305.49,0],[[2151,2],[2195,2]]], [2206,[6228.44,2121.69,0],[[2153,2],[2206,2],[2258,2]]], [2207,[7362.49,3273.84,0],[[2155,2],[2259,2],[2260,2]]], +[2208,[9681.25,2480.88,0],[[2156,2],[2261,2],[2208,2],[2262,2]]], [2209,[13025.8,8177.16,-1.58946e-007],[[2157,2],[2263,2],[2264,2]]], [2210,[12840.1,9096.71,0],[[2158,2],[2265,2]]], [2211,[12761.2,8292.86,-3.17891e-007],[[2159,2],[2160,2],[2266,2]]], [2212,[12965.2,8148.26,0],[[2160,2],[2267,2]]], [2213,[12819.7,10128.3,0],[[2162,2],[2268,2],[2213,2]]], +[2214,[12992.4,10057.2,0],[[2162,2],[2269,2]]], [2215,[12986.6,10281.2,0],[[2162,2],[2270,2],[2216,2]]], [2216,[12857.9,10220.5,0],[[2268,2],[2362,2],[2363,2],[2162,2],[2215,2]]], [2217,[12832.4,9375.13,0],[[2164,2],[2271,2]]], [2218,[11012.4,11881.3,0],[[2165,2],[2218,2],[2272,2]]], [2219,[11260.7,11477.2,0],[[2166,2],[2219,2],[2273,2]]], +[2220,[10910.5,12410.3,0],[[2167,2],[2274,2],[2275,2]]], [2221,[10804.5,12480.2,0],[[2167,2]]], [2222,[10653.2,12490.5,1.52588e-005],[[2168,2]]], [2223,[10654.3,12596.4,3.05176e-005],[[2168,2],[2276,2]]], [2224,[9197.37,12594.5,0],[[2170,2],[2277,2]]], [2225,[10515,2348.13,0],[[2171,2],[2278,2],[2227,2]]], +[2226,[10356.6,2308.17,0],[[2171,2],[2226,2],[2279,2]]], [2227,[10483.8,2305.77,0],[[2171,2],[2225,2],[2280,2],[2281,2]]], [2228,[10391.3,2443.02,-4.76837e-007],[[2171,2]]], [2229,[10296.2,2477.77,-1.27157e-006],[[2172,2],[2282,2],[2283,2]]], [2230,[10812.3,3836.65,0],[[2173,2],[2284,2]]], [2231,[12245.8,4496.3,7.62939e-006],[[2174,2]]], +[2232,[12374.2,4467.97,-1.52588e-005],[[2174,2],[2285,2]]], [2233,[12140.2,4054.06,-2.54313e-006],[[2175,2],[2233,2],[2286,2]]], [2234,[12532.2,5425,0],[[2176,2],[2287,2]]], [2235,[12386.5,5261.02,0],[[2176,2],[2288,2]]], [2236,[11565.1,4915.53,-5.08626e-006],[[2177,2],[2237,2],[2236,2],[2289,2]]], [2237,[11560.9,4889.88,-3.8147e-006],[[2236,2],[2237,2],[2177,2]]], +[2238,[12878.6,5674.08,0],[[2178,2],[2290,2]]], [2239,[13261,6238.86,0],[[2179,2],[2291,2]]], [2240,[1757.83,5093.61,0],[[2180,2],[2240,2]]], [2241,[1971.5,4349.19,-1.52588e-005],[[2182,2],[2292,2]]], [2242,[3222.92,3724.7,-1.52588e-005],[[2183,2],[2293,2]]], [2243,[3991.43,3750.77,0],[[2184,2],[2294,2]]], +[2244,[4509.57,3534.62,0],[[2185,2],[2295,2]]], [2245,[1713.09,12641.9,0],[[2188,2],[2296,2]]], [2246,[6032.7,2432.28,0],[[2189,2],[2192,2]]], [2247,[5012.97,2885.86,0],[[2190,2],[2297,2]]], [2248,[5333.74,3666.34,-1.52588e-005],[[2191,2],[2298,2]]], [2249,[5771.66,2149.99,0],[[2193,2],[2299,2]]], +[2250,[6845.22,2349.93,0],[[2194,2],[2204,2],[2300,2]]], [2251,[6842.43,2346.21,0],[[2143,2]]], [2252,[6990.96,2459.81,0],[[2143,2],[2199,2],[2254,2]]], [2253,[7057.47,2640.59,0],[[2200,2],[2202,2]]], [2254,[7095.01,2546.24,0],[[2200,2],[2252,2],[2301,2]]], [2255,[6990.71,2731.12,0],[[2201,2]]], +[2256,[6159.45,2208.22,0],[[2203,2],[2302,2]]], [2257,[6781.93,2313.43,0],[[2204,2],[2257,2]]], [2258,[6239.41,2051.32,0],[[2206,2],[2303,2]]], [2259,[7412.49,3336.48,0],[[2207,2],[2304,2]]], [2260,[7433.38,3194.72,0],[[2207,2],[2305,2]]], [2261,[9661.13,2490.45,0],[[2208,2]]], +[2262,[9787.46,2396.04,7.62939e-006],[[2208,2],[2306,2]]], [2263,[13039.3,7998.8,0],[[2209,2],[2307,2]]], [2264,[13061.8,8180.9,0],[[2209,2]]], [2265,[12864.4,9241.88,0],[[2210,2],[2271,2]]], [2266,[12815.4,8182.83,0],[[2211,2],[2308,2],[2309,2]]], [2267,[12989.4,8033,-1.19209e-007],[[2212,2],[2267,2],[2310,2]]], +[2268,[12848.9,10173.5,0],[[2213,2],[2216,2],[2311,2]]], [2269,[13005.2,10061,0],[[2214,2],[2312,2],[2313,2]]], [2270,[13022.3,10376.1,0],[[2215,2],[2314,2]]], [2271,[12878,9371.99,1.58946e-007],[[2217,2],[2265,2],[2315,2]]], [2272,[11081.3,11951.3,0],[[2218,2],[2316,2]]], [2273,[11399.2,11393,0],[[2219,2],[2317,2]]], +[2274,[10972.3,12413,0],[[2220,2],[2318,2],[2319,2]]], [2275,[10877.3,12362.5,0],[[2220,2]]], [2276,[10656.8,12724.5,0],[[2223,2],[2320,2]]], [2277,[9267.61,12670,0],[[2224,2],[2321,2]]], [2278,[10586.6,2387.76,0],[[2225,2],[2322,2],[2278,2],[2323,2],[2280,2]]], [2279,[10268.1,2264.39,0],[[2226,2],[2324,2]]], +[2280,[10535.1,2253.2,0],[[2227,2],[2278,2],[2325,2],[2326,2],[2327,2]]], [2281,[10396.4,2232.01,0],[[2227,2],[2328,2],[2325,2]]], [2282,[10180.7,2386.87,0],[[2229,2],[2329,2]]], [2283,[10182.1,2555.45,0],[[2229,2],[2330,2]]], [2284,[10775.6,3699.55,0],[[2230,2],[2331,2]]], [2285,[12391.4,4454.08,-5.08626e-006],[[2232,2],[2332,2],[2333,2]]], +[2286,[12044.4,3979.57,3.8147e-006],[[2233,2],[2334,2]]], [2287,[12632.8,5433.9,0],[[2234,2],[2287,2],[2335,2]]], [2288,[12312.1,5155.08,0],[[2235,2],[2336,2]]], [2289,[11568.1,4968.62,1.01725e-005],[[2236,2],[2289,2],[2337,2]]], [2290,[12948.1,5614.28,0],[[2238,2],[2338,2]]], [2291,[13314.2,6251.6,-3.57628e-007],[[2239,2],[2339,2],[2340,2],[2341,2]]], +[2292,[1957.94,4332.38,0],[[2241,2],[2292,2],[2342,2]]], [2293,[3278.17,3689.85,1.52588e-005],[[2242,2],[2343,2]]], [2294,[3868.28,3783.42,0],[[2243,2],[2344,2]]], [2295,[4551.65,3421.45,-7.62939e-006],[[2244,2],[2345,2]]], [2296,[1665.59,12753.6,0],[[2245,2],[2346,2]]], [2297,[4944.16,2840.95,0],[[2247,2],[2347,2]]], +[2298,[5386.02,3689.89,5.08626e-006],[[2248,2],[2348,2]]], [2299,[5611.44,2093.67,0],[[2249,2],[2349,2]]], [2300,[6802.67,2320.34,0],[[2250,2]]], [2301,[7152.42,2543.58,0],[[2254,2],[2350,2],[2301,2],[2351,2],[2352,2]]], [2302,[6020.85,2119.48,0],[[2256,2],[2353,2]]], [2303,[6178.68,2017.08,0],[[2258,2],[2354,2]]], +[2304,[7460.99,3408.43,0],[[2259,2],[2355,2]]], [2305,[7556.2,3163.37,0],[[2260,2],[2356,2],[2357,2],[2305,2]]], [2306,[9688.8,2317.47,7.62939e-006],[[2262,2],[2358,2]]], [2307,[13047,7825.54,0],[[2263,2],[2359,2]]], [2308,[12817.8,8092.88,0],[[2308,2],[2309,2]]], [2309,[12829.6,8112.48,0],[[2308,2],[2266,2]]], +[2310,[12956.4,8029.41,-4.76837e-007],[[2267,2],[2360,2],[2361,2],[2310,2]]], [2311,[12891.6,10147.6,0],[[2268,2]]], [2312,[12976.6,9889.01,0],[[2269,2],[2364,2]]], [2313,[13058.8,10224.3,0],[[2269,2],[2365,2]]], [2314,[13100.1,10356.5,0],[[2270,2],[2365,2],[2366,2]]], [2315,[12919.9,9576.15,0],[[2271,2],[2367,2],[2364,2]]], +[2316,[11140.1,12031.9,1.01725e-005],[[2272,2],[2368,2],[2369,2]]], [2317,[11441,11364.1,0],[[2273,2]]], [2318,[11037.2,12373.1,-3.8147e-006],[[2274,2],[2370,2],[2371,2],[2372,2]]], [2319,[11006.1,12439.6,-1.52588e-005],[[2274,2]]], [2320,[10658.1,12744,0],[[2276,2]]], [2321,[9314.54,12773,0],[[2277,2],[2373,2]]], +[2322,[10662,2445.2,-1.58946e-007],[[2278,2],[2374,2],[2375,2]]], [2323,[10609.5,2316.58,0],[[2278,2],[2376,2]]], [2324,[10166.6,2208.45,0],[[2279,2],[2377,2]]], [2325,[10425.5,2180.69,0],[[2280,2],[2378,2],[2281,2]]], [2326,[10600.9,2310.23,0],[[2280,2]]], [2327,[10603.4,2224.38,0],[[2280,2]]], +[2328,[10383.3,2210.69,4.76837e-007],[[2281,2],[2379,2]]], [2329,[10095.7,2339.76,0],[[2282,2],[2380,2]]], [2330,[10074.9,2600.38,3.8147e-006],[[2283,2],[2381,2]]], [2331,[10768.7,3690.18,1.01725e-005],[[2284,2],[2331,2],[2382,2]]], [2332,[12467.3,4379.62,0],[[2285,2],[2383,2],[2333,2]]], [2333,[12513.1,4430.38,0],[[2285,2],[2332,2],[2384,2]]], +[2334,[11971.4,3900.98,0],[[2286,2],[2385,2],[2334,2]]], [2335,[12745.5,5440.15,0],[[2287,2],[2386,2]]], [2336,[12223.9,5081.65,0],[[2288,2],[2387,2]]], [2337,[11539.2,5003.93,0],[[2289,2]]], [2338,[13044.4,5529.55,2.38419e-007],[[2290,2],[2338,2],[2386,2],[2388,2]]], [2339,[13418.1,6249.06,0],[[2291,2],[2389,2],[2390,2],[2391,2],[2339,2]]], +[2340,[13304.1,6302.3,-3.17891e-007],[[2291,2],[2340,2],[2392,2]]], [2341,[13318.2,6136.75,-3.17891e-007],[[2291,2],[2393,2],[2341,2],[2394,2]]], [2342,[1871.96,4287.66,-1.52588e-005],[[2292,2],[2395,2]]], [2343,[3322.47,3719.21,5.08626e-006],[[2293,2],[2396,2],[2397,2]]], [2344,[3785.25,3857.54,1.52588e-005],[[2294,2],[2398,2]]], [2345,[4532.29,3407.48,0],[[2295,2],[2399,2],[2345,2]]], +[2346,[1633.41,12866.4,0],[[2296,2],[2400,2]]], [2347,[4893.17,2810.89,6.35783e-007],[[2297,2],[2401,2],[2402,2]]], [2348,[5428.67,3706.55,5.08626e-006],[[2298,2],[2348,2],[2403,2]]], [2349,[5464.51,2063.2,0],[[2299,2],[2404,2]]], [2350,[7135.9,2559.65,0],[[2301,2],[2350,2]]], [2351,[7257.18,2646.07,0],[[2301,2],[2405,2]]], +[2352,[7239.29,2419.43,0],[[2301,2],[2406,2]]], [2353,[5958.72,2057.21,0],[[2302,2]]], [2354,[6101.5,1969.4,0],[[2303,2],[2407,2]]], [2355,[7609.06,3464.15,0],[[2304,2],[2408,2]]], [2356,[7766.03,3174.09,0],[[2305,2],[2409,2]]], [2357,[7552.69,3152.58,0],[[2305,2],[2410,2]]], +[2358,[9593.71,2230.95,0],[[2306,2],[2411,2]]], [2359,[13055.8,7633.12,4.76837e-007],[[2307,2],[2412,2]]], [2360,[12846.6,8054.97,-4.76837e-007],[[2310,2]]], [2361,[12775.2,8040.3,-3.17891e-007],[[2308,2],[2310,2],[2413,2],[2414,2]]], [2362,[12751.7,10259.4,0],[[2216,2],[2415,2]]], [2363,[12951.6,10203.8,0],[[2216,2]]], +[2364,[12960.5,9807.18,0],[[2312,2],[2315,2],[2367,2],[2364,2]]], [2365,[13070.6,10241.3,0],[[2313,2],[2314,2],[2365,2],[2416,2]]], [2366,[13130.3,10306.9,0],[[2314,2],[2416,2]]], [2367,[12943.7,9715.74,0],[[2315,2],[2364,2],[2367,2],[2417,2],[2418,2]]], [2368,[11185.5,12144.8,0],[[2316,2],[2419,2]]], [2369,[11139.1,11986,0],[[2316,2]]], +[2370,[11128.9,12300.6,3.05176e-006],[[2318,2],[2420,2],[2421,2],[2422,2],[2423,2],[2419,2]]], [2371,[11047.1,12418.4,0],[[2318,2],[2424,2],[2371,2]]], [2372,[10987.5,12312.4,0],[[2318,2]]], [2373,[9326.05,12853.3,0],[[2321,2],[2425,2]]], [2374,[10727.2,2473.22,1.58946e-007],[[2322,2],[2426,2],[2376,2]]], [2375,[10685.3,2545.09,0],[[2322,2],[2375,2],[2427,2]]], +[2376,[10716.2,2382.5,0],[[2323,2],[2374,2]]], [2377,[10153.6,2190.7,0],[[2324,2],[2377,2],[2428,2]]], [2378,[10456.3,2117.03,0],[[2325,2],[2429,2],[2430,2],[2431,2]]], [2379,[10294.2,2146.66,0],[[2328,2],[2432,2],[2428,2]]], [2380,[10037.8,2289.25,0],[[2329,2],[2433,2]]], [2381,[10021.3,2635.32,0],[[2330,2],[2381,2]]], +[2382,[10718.2,3647.56,0],[[2331,2],[2434,2]]], [2383,[12520.5,4331.75,0],[[2332,2]]], [2384,[12641.8,4397.11,0],[[2333,2],[2435,2]]], [2385,[11946.5,3881.53,4.76837e-007],[[2334,2],[2436,2],[2437,2]]], [2386,[12870.3,5462.41,0],[[2335,2],[2338,2]]], [2387,[12165.7,5041.82,0],[[2336,2]]], +[2388,[13165.6,5496.62,4.76837e-007],[[2338,2],[2438,2]]], [2389,[13457.5,6241.04,0],[[2339,2],[2439,2],[2440,2]]], [2390,[13423.1,6293,1.58946e-007],[[2339,2],[2441,2],[2442,2]]], [2391,[13408.1,6233.12,0],[[2339,2],[2443,2]]], [2392,[13271.1,6299.45,4.76837e-007],[[2340,2]]], [2393,[13326.6,6141.46,0],[[2341,2]]], +[2394,[13281.1,6112.23,9.53674e-007],[[2341,2]]], [2395,[1811.21,4160.54,1.52588e-005],[[2342,2],[2444,2]]], [2396,[3357.54,3658.86,-5.08626e-006],[[2343,2],[2396,2],[2445,2]]], [2397,[3319.94,3846.51,1.52588e-005],[[2343,2],[2446,2]]], [2398,[3706.78,3873.13,1.01725e-005],[[2344,2],[2447,2],[2448,2]]], [2399,[4374.72,3416.76,0],[[2345,2],[2449,2]]], +[2400,[1603.48,12975.2,0],[[2346,2],[2450,2]]], [2401,[4790.95,2764.46,1.90735e-006],[[2347,2],[2451,2]]], [2402,[4871.97,2847.25,6.35783e-007],[[2347,2],[2452,2],[2402,2]]], [2403,[5445.32,3821.34,0],[[2348,2]]], [2404,[5323.26,2078.89,0],[[2349,2],[2453,2]]], [2405,[7313.23,2742.86,0],[[2351,2],[2454,2],[2455,2]]], +[2406,[7251.02,2398.1,0],[[2352,2],[2406,2],[2456,2]]], [2407,[6076.5,1944.51,0],[[2354,2]]], [2408,[7695.48,3486.77,1.58946e-007],[[2355,2],[2457,2],[2458,2],[2408,2],[2459,2]]], [2409,[7791.26,3182.26,-1.58946e-007],[[2356,2],[2460,2],[2461,2]]], [2410,[7538,3118.68,1.58946e-007],[[2357,2],[2462,2],[2463,2]]], [2411,[9558.59,2183.96,1.90735e-006],[[2358,2],[2464,2],[2465,2]]], +[2412,[13061.3,7507.84,0],[[2359,2],[2466,2]]], [2413,[12712.2,8088.49,-1.90735e-006],[[2361,2]]], [2414,[12839.5,8053.98,0],[[2361,2]]], [2415,[12694,10346,-1.90735e-006],[[2362,2],[2467,2]]], [2416,[13113.2,10244,0],[[2365,2],[2366,2],[2468,2]]], [2417,[13029.4,9684.98,0],[[2367,2]]], +[2418,[12865.9,9775.32,0],[[2367,2],[2469,2]]], [2419,[11211.7,12183.9,-3.8147e-006],[[2368,2],[2370,2],[2470,2],[2423,2],[2471,2]]], [2420,[11080.3,12244.8,-1.52588e-005],[[2370,2]]], [2421,[11180.3,12386.4,0],[[2370,2],[2472,2]]], [2422,[11096.6,12225.5,0],[[2370,2]]], [2423,[11243.6,12240,0],[[2370,2],[2419,2],[2473,2]]], +[2424,[11051.6,12481.5,3.8147e-006],[[2371,2],[2424,2],[2474,2]]], [2425,[9397.76,12959.7,0],[[2373,2],[2475,2]]], [2426,[10779.4,2575.54,-1.58946e-007],[[2374,2],[2476,2],[2477,2]]], [2427,[10643.9,2620.89,0],[[2375,2],[2478,2],[2479,2]]], [2428,[10169.8,2119.35,0],[[2377,2],[2379,2],[2480,2],[2432,2]]], [2429,[10350.1,2053.03,0],[[2378,2],[2481,2]]], +[2430,[10498.8,2008.85,4.76837e-007],[[2378,2]]], [2431,[10546.3,2143.79,0],[[2378,2],[2482,2],[2483,2]]], [2432,[10243.8,2129.91,0],[[2379,2],[2428,2],[2484,2],[2432,2],[2485,2]]], [2433,[9932.28,2227.01,0],[[2380,2],[2486,2],[2487,2]]], [2434,[10715.9,3634.75,0],[[2382,2],[2434,2],[2488,2]]], [2435,[12754.6,4414.72,0],[[2384,2],[2489,2]]], +[2436,[12001.2,3771.22,0],[[2385,2],[2490,2]]], [2437,[11852.9,3969.47,0],[[2385,2]]], [2438,[13244.3,5430.54,-5.96046e-008],[[2388,2],[2438,2],[2491,2],[2492,2]]], [2439,[13468.2,6346.01,-1.58946e-007],[[2389,2],[2493,2],[2494,2]]], [2440,[13437,6133.95,1.19209e-007],[[2389,2],[2495,2],[2440,2],[2496,2],[2443,2]]], [2441,[13405.5,6354.33,0],[[2390,2]]], +[2442,[13374,6296.4,0],[[2390,2]]], [2443,[13378.3,6171.04,0],[[2391,2],[2440,2],[2496,2]]], [2444,[1733.33,4041.33,0],[[2395,2],[2497,2]]], [2445,[3313.58,3561.08,0],[[2396,2],[2498,2]]], [2446,[3316.21,3938.71,-3.8147e-006],[[2397,2],[2446,2],[2499,2],[2500,2]]], [2447,[3574.68,3883.65,0],[[2398,2],[2501,2]]], +[2448,[3784.86,3802.15,-1.52588e-005],[[2398,2],[2502,2]]], [2449,[4322.92,3353.89,0],[[2399,2],[2503,2]]], [2450,[1627.71,13066.3,0],[[2400,2],[2504,2]]], [2451,[4663.02,2744.47,9.53674e-007],[[2401,2],[2505,2]]], [2452,[4848.85,2881.56,0],[[2402,2]]], [2453,[5205.51,2107.19,0],[[2404,2],[2506,2]]], +[2454,[7426.08,2879.75,0],[[2405,2],[2462,2]]], [2455,[7240.32,2821.47,0],[[2405,2],[2507,2]]], [2456,[7271.31,2274.75,0],[[2406,2],[2508,2],[2456,2],[2509,2]]], [2457,[7858.58,3505.34,0],[[2408,2],[2459,2],[2457,2]]], [2458,[7692.41,3474.28,0],[[2408,2],[2510,2]]], [2459,[7854.39,3527.04,0],[[2457,2],[2408,2]]], +[2460,[7943.13,3179.76,0],[[2409,2],[2511,2],[2512,2]]], [2461,[7733.42,3210.98,0],[[2409,2],[2513,2],[2514,2]]], [2462,[7483.68,2979.16,4.76837e-007],[[2410,2],[2454,2]]], [2463,[7447.96,3108.39,0],[[2410,2],[2515,2]]], [2464,[9472.66,2074.28,0],[[2411,2],[2516,2],[2464,2]]], [2465,[9707.33,2166.15,0],[[2411,2],[2517,2]]], +[2466,[13086.4,7400.75,-4.76837e-007],[[2412,2],[2518,2]]], [2467,[12621.3,10440.7,0],[[2415,2],[2467,2],[2519,2],[2520,2]]], [2468,[13157.3,10198.8,0],[[2416,2]]], [2469,[12835,9706.54,0],[[2418,2]]], [2470,[11246,12142.7,-5.08626e-006],[[2419,2],[2470,2],[2521,2]]], [2471,[11160.7,12239.1,0],[[2419,2]]], +[2472,[11205.6,12473.7,0],[[2421,2],[2522,2]]], [2473,[11302.9,12224.5,0],[[2423,2],[2523,2],[2524,2]]], [2474,[11056.9,12514.8,0],[[2424,2]]], [2475,[9424.8,13044.6,0],[[2425,2],[2525,2]]], [2476,[10818.2,2569.2,-3.17891e-007],[[2426,2],[2526,2],[2527,2]]], [2477,[10843.5,2746.05,0],[[2426,2],[2477,2]]], +[2478,[10595.1,2642.81,0],[[2427,2],[2478,2],[2528,2]]], [2479,[10701.8,2751.37,0],[[2427,2],[2529,2]]], [2480,[10010.8,2060.9,0],[[2428,2],[2530,2],[2480,2],[2531,2]]], [2481,[10341.6,1963.34,0],[[2429,2],[2532,2]]], [2482,[10581.4,2062.9,0],[[2431,2]]], [2483,[10632.9,2185.98,1.58946e-007],[[2431,2],[2483,2],[2533,2]]], +[2484,[10254.3,2129.29,0],[[2432,2]]], [2485,[10286.5,2106.91,0],[[2432,2]]], [2486,[9786.64,2207.41,-1.90735e-006],[[2433,2],[2517,2]]], [2487,[9911.14,2153.21,0],[[2433,2],[2534,2]]], [2488,[10708.5,3524.74,-1.52588e-005],[[2434,2],[2535,2]]], [2489,[12769.1,4447.35,5.08626e-006],[[2435,2],[2536,2],[2537,2]]], +[2490,[12055.3,3672.13,0],[[2436,2],[2538,2]]], [2491,[13378.1,5424.63,1.58946e-007],[[2438,2],[2539,2],[2540,2]]], [2492,[13189.3,5334.45,0],[[2438,2],[2541,2]]], [2493,[13448.6,6484.57,0],[[2439,2],[2542,2]]], [2494,[13515.6,6316.47,0],[[2439,2]]], [2495,[13426.4,6036.92,0],[[2440,2],[2543,2],[2544,2],[2496,2]]], +[2496,[13387.4,6130.54,0],[[2440,2],[2443,2],[2495,2],[2544,2]]], [2497,[1674.57,4000.5,0],[[2444,2],[2545,2]]], [2498,[3267.67,3510.6,0],[[2445,2],[2546,2]]], [2499,[3186.22,4011.01,1.52588e-005],[[2446,2],[2547,2]]], [2500,[3364.03,3969.54,0],[[2500,2]]], [2501,[3559.64,3873.73,0],[[2447,2],[2548,2],[2549,2],[2550,2]]], +[2502,[3835.6,3718.1,1.52588e-005],[[2448,2],[2551,2]]], [2503,[4299.29,3285.54,-2.54313e-006],[[2449,2],[2552,2],[2553,2]]], [2504,[1600.73,13133.8,0],[[2450,2],[2554,2]]], [2505,[4595.31,2716.89,0],[[2451,2],[2555,2],[2556,2],[2505,2],[2557,2]]], [2506,[5069.93,2142.43,0],[[2453,2],[2558,2]]], [2507,[7199.48,2883.3,0],[[2455,2],[2559,2]]], +[2508,[7264.7,2214.98,0],[[2456,2],[2560,2]]], [2509,[7163,2260.23,0],[[2456,2]]], [2510,[7725.89,3313.02,0],[[2458,2],[2512,2]]], [2511,[8106.17,3148.75,0],[[2460,2],[2561,2],[2562,2]]], [2512,[7965.53,3296.85,0],[[2460,2],[2510,2],[2563,2],[2564,2]]], [2513,[7682.58,3220.14,0],[[2461,2]]], +[2514,[7732,3251.78,4.76837e-007],[[2461,2]]], [2515,[7385.88,3071.42,1.90735e-006],[[2463,2],[2565,2]]], [2516,[9470.67,2041.87,0],[[2464,2],[2566,2],[2567,2],[2568,2]]], [2517,[9758.42,2176.86,0],[[2465,2],[2486,2],[2517,2]]], [2518,[13138.7,7280.37,-4.76837e-007],[[2466,2],[2569,2]]], [2519,[12683.4,10526.4,0],[[2467,2],[2570,2]]], +[2520,[12462.7,10461.7,3.8147e-006],[[2467,2],[2571,2]]], [2521,[11267,12168.1,0],[[2470,2]]], [2522,[11248.9,12566.1,1.52588e-005],[[2472,2],[2572,2]]], [2523,[11449.3,12230.3,0],[[2473,2],[2573,2],[2574,2]]], [2524,[11295.1,12281.1,0],[[2473,2]]], [2525,[9485.74,13141.3,0],[[2475,2],[2575,2]]], +[2526,[10878.8,2714.1,0],[[2476,2],[2576,2],[2577,2]]], [2527,[10841.3,2477.17,0],[[2476,2],[2578,2]]], [2528,[10521.2,2752.11,-3.8147e-006],[[2478,2],[2579,2]]], [2529,[10754.1,2822.33,0],[[2479,2],[2529,2],[2580,2]]], [2530,[9820.88,2031.98,1.58946e-007],[[2480,2],[2581,2],[2568,2],[2534,2]]], [2531,[10015.8,2018.27,0],[[2480,2],[2582,2],[2583,2]]], +[2532,[10337.4,1908.58,0],[[2481,2],[2584,2],[2532,2],[2585,2],[2586,2]]], [2533,[10706.8,2225.39,0],[[2483,2],[2587,2]]], [2534,[9829.34,2100.11,0],[[2487,2],[2530,2]]], [2535,[10695.8,3487.16,-5.08626e-006],[[2488,2],[2535,2],[2588,2]]], [2536,[12861.7,4467.91,0],[[2489,2]]], [2537,[12632.5,4497.26,0],[[2489,2],[2537,2],[2589,2]]], +[2538,[12072.7,3573.83,0],[[2490,2],[2538,2],[2590,2],[2591,2],[2592,2]]], [2539,[13389.3,5626.56,0],[[2491,2],[2543,2]]], [2540,[13387.7,5243.12,0],[[2491,2],[2593,2]]], [2541,[13124.8,5255.57,0],[[2492,2],[2594,2]]], [2542,[13408.8,6613.22,-4.76837e-007],[[2493,2],[2595,2]]], [2543,[13407.6,5854.6,0],[[2495,2],[2539,2]]], +[2544,[13378.8,6059.59,0],[[2495,2],[2496,2],[2544,2]]], [2545,[1658.37,3950.49,0],[[2497,2],[2596,2]]], [2546,[3195.96,3489.94,0],[[2498,2],[2597,2],[2598,2]]], [2547,[3062.09,4110.37,0],[[2499,2],[2599,2]]], [2548,[3498.19,3938.27,0],[[2501,2],[2600,2],[2601,2]]], [2549,[3676.01,3740.12,0],[[2501,2],[2602,2],[2603,2]]], +[2550,[3530.43,3822.69,0],[[2501,2]]], [2551,[3910.39,3636.54,0],[[2502,2],[2604,2],[2605,2]]], [2552,[4369.16,3235.81,1.27157e-006],[[2503,2],[2606,2],[2607,2]]], [2553,[4194.96,3349.76,2.54313e-006],[[2503,2],[2553,2],[2608,2]]], [2554,[1505.22,13255.3,-3.05176e-005],[[2504,2],[2609,2]]], [2555,[4583.96,2601.19,0],[[2505,2],[2610,2],[2555,2],[2611,2]]], +[2556,[4598.81,2726.37,0],[[2505,2]]], [2557,[4580.05,2791,0],[[2505,2],[2612,2]]], [2558,[5026.3,2197.82,0],[[2506,2],[2613,2]]], [2559,[7162.3,2897.87,4.76837e-007],[[2507,2]]], [2560,[7173.03,2196.75,0],[[2508,2],[2614,2],[2560,2]]], [2561,[8222.03,3087.91,2.35515],[[2511,2],[2615,2],[2616,2]]], +[2562,[8136.44,3223.28,0],[[2511,2]]], [2563,[8025.94,3351.17,0],[[2512,2],[2617,2]]], [2564,[8087.32,3274.95,3.17891e-007],[[2512,2],[2564,2],[2618,2]]], [2565,[7313.29,3065.77,0],[[2515,2],[2619,2]]], [2566,[9339.4,2058.89,0],[[2516,2],[2620,2]]], [2567,[9476.08,1931.18,0],[[2516,2],[2621,2]]], +[2568,[9640.64,2027.96,0],[[2516,2],[2530,2],[2581,2]]], [2569,[13190.1,7169.78,0],[[2518,2],[2622,2]]], [2570,[12722.2,10601.9,0],[[2519,2],[2623,2]]], [2571,[12401.1,10488.9,0],[[2520,2],[2624,2]]], [2572,[11294.8,12644,0],[[2522,2],[2625,2]]], [2573,[11632.3,12232.5,0],[[2523,2],[2626,2]]], +[2574,[11428.5,12316.4,0],[[2523,2],[2627,2]]], [2575,[9577.45,13259.6,0],[[2525,2],[2628,2]]], [2576,[10933.4,2890.14,0],[[2526,2],[2629,2]]], [2577,[10939.2,2697.26,0],[[2526,2],[2577,2],[2630,2]]], [2578,[10832.6,2374.59,0],[[2527,2],[2631,2]]], [2579,[10473,2795.37,-1.27157e-006],[[2528,2],[2632,2],[2633,2],[2579,2]]], +[2580,[10792.6,2916.34,0],[[2529,2],[2634,2]]], [2581,[9708.77,2026.68,0],[[2530,2],[2568,2]]], [2582,[10040.5,1951.9,0],[[2531,2],[2635,2],[2636,2]]], [2583,[9933.29,1990.42,0],[[2531,2]]], [2584,[10347.5,1838.95,0],[[2532,2],[2637,2],[2638,2]]], [2585,[10231.4,1880.04,0],[[2532,2],[2586,2],[2585,2],[2639,2],[2637,2]]], +[2586,[10232.3,1915.21,0],[[2585,2],[2532,2]]], [2587,[10769.8,2240.3,0],[[2533,2],[2640,2]]], [2588,[10742.4,3385.41,0],[[2535,2],[2641,2]]], [2589,[12623.5,4569.29,0],[[2537,2],[2642,2]]], [2590,[11977.5,3568.1,0],[[2538,2]]], [2591,[12234,3541.21,0],[[2538,2],[2591,2],[2643,2]]], +[2592,[12048.2,3493.93,1.19209e-007],[[2538,2],[2643,2],[2644,2]]], [2593,[13412.1,5104.45,0],[[2540,2],[2645,2]]], [2594,[13059.5,5190.96,0],[[2541,2],[2646,2]]], [2595,[13351.8,6792.47,0],[[2542,2],[2647,2]]], [2596,[1659.3,3893.42,5.08626e-006],[[2545,2],[2648,2],[2649,2]]], [2597,[3120.8,3402.38,0],[[2546,2],[2650,2]]], +[2598,[3030.99,3519.65,0],[[2546,2],[2651,2]]], [2599,[3030.91,4180.85,0],[[2547,2],[2652,2]]], [2600,[3453.7,3979.57,0],[[2500,2],[2600,2],[2548,2]]], [2601,[3437.68,3927.45,0],[[2548,2],[2653,2],[2654,2],[2601,2]]], [2602,[3774.77,3652.01,1.52588e-005],[[2549,2],[2655,2]]], [2603,[3645.04,3702.47,0],[[2549,2]]], +[2604,[3921.81,3579.9,0],[[2551,2]]], [2605,[3993.56,3602.55,1.52588e-005],[[2605,2]]], [2606,[4442.13,3238.41,0],[[2552,2],[2656,2]]], [2607,[4289.31,3190.01,0],[[2552,2],[2657,2],[2607,2],[2658,2]]], [2608,[4124.53,3347.53,0],[[2553,2],[2659,2]]], [2609,[1440.2,13359.6,0],[[2554,2],[2660,2]]], +[2610,[4586.62,2554.98,0],[[2555,2],[2610,2],[2661,2]]], [2611,[4659.86,2608.62,0],[[2555,2]]], [2612,[4513.01,2860.23,9.53674e-007],[[2557,2],[2662,2]]], [2613,[4950.2,2254.01,0],[[2558,2],[2663,2]]], [2614,[6986.98,2165.06,0],[[2560,2],[2614,2]]], [2615,[8180.15,3010.9,-9.53674e-007],[[2561,2],[2664,2]]], +[2616,[8453.19,2898.96,0],[[2561,2],[2665,2]]], [2617,[8045.45,3357.41,0],[[2563,2],[2617,2]]], [2618,[8189.66,3287.18,4.76837e-007],[[2564,2],[2666,2]]], [2619,[7261.48,3012.5,0],[[2565,2],[2667,2]]], [2620,[9185.89,2062.16,0],[[2566,2],[2668,2]]], [2621,[9473.77,1898.33,0],[[2567,2],[2669,2],[2670,2]]], +[2622,[13249.3,7044.36,0],[[2569,2],[2647,2]]], [2623,[12790.2,10735.8,0],[[2570,2],[2671,2]]], [2624,[12364.5,10543.8,0],[[2571,2],[2672,2]]], [2625,[11345.3,12702.5,0],[[2572,2],[2673,2]]], [2626,[11727.3,12199.9,0],[[2573,2],[2674,2],[2675,2]]], [2627,[11471.6,12385.3,0],[[2574,2],[2676,2]]], +[2628,[9696.9,13367,0],[[2575,2],[2677,2]]], [2629,[10996.4,2998.07,0],[[2576,2],[2678,2]]], [2630,[10998.3,2744.82,0],[[2577,2],[2679,2],[2630,2],[2680,2]]], [2631,[10831.3,2330.3,0],[[2578,2],[2681,2],[2640,2],[2631,2]]], [2632,[10362.5,2934.7,0],[[2579,2],[2682,2]]], [2633,[10492.1,2772,-1.27157e-006],[[2579,2]]], +[2634,[10800.6,2977.08,0],[[2580,2],[2634,2],[2683,2]]], [2635,[10042.3,1867.86,0],[[2582,2],[2684,2],[2635,2],[2685,2],[2686,2]]], [2636,[10065.2,1957.26,0],[[2582,2],[2687,2],[2688,2]]], [2637,[10334.5,1791.33,0],[[2584,2],[2585,2],[2689,2],[2639,2],[2690,2],[2691,2]]], [2638,[10436.9,1834.32,0],[[2584,2]]], [2639,[10256.1,1803.45,0],[[2585,2],[2637,2],[2685,2]]], +[2640,[10789.1,2294.69,0],[[2587,2],[2631,2],[2681,2]]], [2641,[10779,3322.78,0],[[2588,2],[2692,2]]], [2642,[12625.7,4647.32,-5.08626e-006],[[2589,2],[2642,2],[2693,2]]], [2643,[12254.2,3522.96,0],[[2591,2],[2592,2],[2694,2]]], [2644,[11873.5,3459.57,0],[[2592,2],[2695,2]]], [2645,[13462.1,4947.62,0],[[2593,2],[2696,2]]], +[2646,[12954.4,5127.32,0],[[2594,2],[2697,2]]], [2647,[13303,6916.74,0],[[2595,2],[2622,2],[2647,2],[2698,2]]], [2648,[1697.64,3824.74,0],[[2596,2],[2648,2],[2699,2],[2700,2],[2649,2],[2701,2]]], [2649,[1656.96,3799.58,-1.52588e-005],[[2596,2],[2648,2],[2702,2]]], [2650,[3039.02,3331.66,0],[[2597,2],[2703,2]]], [2651,[2921.17,3530.76,-1.52588e-005],[[2598,2],[2704,2]]], +[2652,[3035.17,4232.24,0],[[2599,2],[2652,2],[2705,2]]], [2653,[3435.44,3841.18,0],[[2601,2],[2653,2]]], [2654,[3446.99,3939.93,0],[[2601,2]]], [2655,[3887.93,3575.78,-1.52588e-005],[[2602,2]]], [2656,[4492.54,3194.82,1.27157e-006],[[2606,2],[2656,2],[2706,2]]], [2657,[4294.25,3203.1,0],[[2607,2]]], +[2658,[4379.77,3122.01,0],[[2607,2],[2707,2]]], [2659,[4047.65,3323.22,0],[[2608,2]]], [2660,[1363.4,13420.1,0],[[2609,2],[2660,2],[2708,2],[2709,2]]], [2661,[4508.68,2474.8,0],[[2610,2],[2710,2]]], [2662,[4478.23,2929.08,0],[[2612,2],[2711,2]]], [2663,[4837.19,2330.72,0],[[2613,2],[2712,2]]], +[2664,[8129.17,2966.6,-9.53674e-007],[[2615,2],[2713,2]]], [2665,[8560.16,2740.42,0],[[2616,2],[2714,2]]], [2666,[8268.84,3296.14,0],[[2618,2],[2715,2]]], [2667,[7236.74,3005.22,-6.35783e-007],[[2619,2],[2667,2],[2716,2]]], [2668,[9091.61,2101.18,0],[[2620,2],[2717,2]]], [2669,[9414.37,1900.27,0],[[2621,2]]], +[2670,[9575.16,1844.67,0],[[2621,2],[2718,2]]], [2671,[12839.2,10845.3,0],[[2623,2],[2719,2]]], [2672,[12313.9,10644.1,0],[[2624,2],[2720,2],[2721,2]]], [2673,[11400.5,12799.6,0],[[2625,2],[2722,2]]], [2674,[11799.8,12106.8,5.08626e-006],[[2626,2],[2723,2],[2674,2],[2724,2]]], [2675,[11796.8,12219,0],[[2626,2],[2725,2],[2726,2]]], +[2676,[11552.7,12416.7,0],[[2627,2],[2727,2],[2728,2]]], [2677,[9730.39,13419.3,0],[[2628,2],[2729,2]]], [2678,[11095.9,3112.04,4.76837e-007],[[2629,2],[2730,2]]], [2679,[10986.7,2752.66,0],[[2630,2]]], [2680,[11041.1,2696.76,0],[[2630,2]]], [2681,[10801.4,2310.29,0],[[2631,2],[2640,2]]], +[2682,[10271.7,3046.05,0],[[2632,2],[2731,2]]], [2683,[10871.9,3065,0],[[2634,2],[2692,2]]], [2684,[10045.2,1796.38,0],[[2635,2],[2685,2],[2732,2]]], [2685,[10120.7,1824.13,0],[[2635,2],[2639,2],[2684,2],[2733,2],[2685,2]]], [2686,[9898.79,1867.28,0],[[2635,2]]], [2687,[10150.4,1979.56,0],[[2636,2],[2734,2],[2687,2]]], +[2688,[10051.7,2003.33,0],[[2636,2]]], [2689,[10249.8,1807.77,0],[[2637,2]]], [2690,[10354.5,1667.42,0],[[2637,2],[2735,2],[2691,2],[2690,2]]], [2691,[10369.6,1684.01,0],[[2690,2],[2772,2],[2691,2],[2637,2]]], [2692,[10846.5,3172.34,-7.62939e-006],[[2641,2],[2683,2]]], [2693,[12637.3,4692.7,-5.08626e-006],[[2642,2],[2736,2],[2693,2],[2737,2]]], +[2694,[12428.4,3536.23,0],[[2643,2],[2738,2]]], [2695,[11738.9,3429.44,0],[[2644,2],[2739,2]]], [2696,[13494.6,4832.39,0],[[2645,2],[2740,2]]], [2697,[12859.7,5032,-7.62939e-006],[[2646,2],[2741,2]]], [2698,[13207.2,6888.52,0],[[2647,2],[2742,2],[2743,2]]], [2699,[1834.24,3873.9,1.52588e-005],[[2648,2],[2744,2]]], +[2700,[1650.83,3806.17,0],[[2648,2],[2700,2]]], [2701,[1705.28,3670.67,0],[[2648,2],[2745,2]]], [2702,[1677.63,3718.93,0],[[2649,2]]], [2703,[2942.69,3301.36,0],[[2650,2],[2746,2]]], [2704,[2837.59,3534.99,0],[[2651,2],[2747,2]]], [2705,[3082.24,4250.33,0],[[2652,2]]], +[2706,[4525.88,3175.1,1.27157e-006],[[2656,2],[2706,2]]], [2707,[4414.44,3070.63,0],[[2658,2],[2711,2]]], [2708,[1386.76,13499.1,1.01725e-005],[[2660,2],[2748,2],[2749,2],[2708,2]]], [2709,[1395.45,13473.1,0],[[2749,2],[2660,2]]], [2710,[4510.75,2444.8,0],[[2661,2],[2750,2],[2751,2],[2752,2],[2753,2]]], [2711,[4483.48,2961.07,0],[[2662,2],[2707,2],[2711,2]]], +[2712,[4710.07,2401.8,0],[[2663,2],[2752,2]]], [2713,[8048.78,2909.02,0],[[2664,2],[2754,2]]], [2714,[8638.08,2560.67,0],[[2665,2],[2755,2]]], [2715,[8337.17,3357.34,1.90735e-006],[[2666,2]]], [2716,[7211.45,3008.5,0],[[2667,2]]], [2717,[8975.76,2176.4,0],[[2668,2],[2756,2]]], +[2718,[9641.84,1812.09,0],[[2670,2],[2757,2]]], [2719,[12877.3,10925.4,0],[[2671,2],[2758,2]]], [2720,[12291.5,10559.8,2.54313e-006],[[2672,2],[2720,2],[2759,2]]], [2721,[12309.6,10819.4,0],[[2672,2],[2760,2],[2761,2]]], [2722,[11463.2,12933.7,0],[[2673,2],[2762,2]]], [2723,[11782.6,12112.5,7.62939e-006],[[2674,2]]], +[2724,[11917.8,12065.4,0],[[2674,2],[2763,2]]], [2725,[11918.6,12195.4,0],[[2675,2],[2764,2]]], [2726,[11835.3,12350.2,0],[[2675,2],[2765,2]]], [2727,[11610.1,12561.8,0],[[2676,2],[2766,2]]], [2728,[11587.3,12402.3,0],[[2676,2]]], [2729,[9722.48,13522,0],[[2677,2],[2767,2]]], +[2730,[11199.2,3223.26,0],[[2678,2],[2768,2]]], [2731,[10247.5,3101.36,0],[[2682,2]]], [2732,[9982.25,1792.51,0],[[2684,2]]], [2733,[10120.2,1855.75,0],[[2685,2]]], [2734,[10187.3,1942.34,0],[[2687,2],[2769,2],[2734,2],[2770,2]]], [2735,[10302.2,1602.2,0],[[2690,2],[2735,2],[2771,2]]], +[2736,[12609.1,4686.21,0],[[2693,2],[2736,2]]], [2737,[12681.8,4804.69,7.62939e-006],[[2693,2],[2773,2]]], [2738,[12580.2,3566.76,0],[[2694,2],[2774,2]]], [2739,[11554.8,3379.55,0],[[2695,2],[2775,2]]], [2740,[13500.5,4686.61,0],[[2696,2],[2776,2]]], [2741,[12796.8,4963.65,0],[[2697,2],[2777,2]]], +[2742,[13173.9,6896.44,0],[[2698,2],[2778,2],[2779,2]]], [2743,[13248.7,6733.36,0],[[2698,2],[2780,2]]], [2744,[1967.69,3833.97,0],[[2699,2],[2781,2]]], [2745,[1708.58,3642.02,5.08626e-006],[[2701,2],[2745,2],[2782,2]]], [2746,[2869.23,3225.65,0],[[2703,2],[2783,2]]], [2747,[2732.66,3525.39,0],[[2704,2],[2784,2]]], +[2748,[1242,13587,0],[[2708,2],[2785,2]]], [2749,[1398.23,13484.1,0],[[2708,2],[2709,2]]], [2750,[4359.58,2526.81,0],[[2710,2],[2786,2]]], [2751,[4453.47,2367.03,0],[[2710,2],[2787,2]]], [2752,[4653.96,2425.23,0],[[2710,2],[2712,2]]], [2753,[4538.53,2378.11,0],[[2710,2]]], +[2754,[8004.83,2900.08,0],[[2713,2]]], [2755,[8704.86,2420.91,0],[[2714,2],[2788,2]]], [2756,[8865.73,2283.67,0],[[2717,2],[2789,2]]], [2757,[9709.69,1808.43,-1.58946e-007],[[2718,2],[2757,2],[2790,2]]], [2758,[12966.5,11007.7,0],[[2719,2],[2791,2]]], [2759,[12149.9,10567.6,-7.62939e-006],[[2720,2],[2792,2]]], +[2760,[12283.4,10899.4,-1.90735e-006],[[2721,2],[2793,2],[2794,2],[2760,2]]], [2761,[12362.3,10797.1,0],[[2721,2]]], [2762,[11469.2,12993.8,-5.08626e-006],[[2722,2],[2795,2],[2796,2]]], [2763,[12034.3,11990.4,7.62939e-006],[[2724,2],[2797,2]]], [2764,[12007.5,12212.6,7.62939e-006],[[2725,2],[2798,2]]], [2765,[11844.9,12397.8,0],[[2726,2],[2765,2],[2799,2]]], +[2766,[11640.3,12620.8,0],[[2727,2],[2800,2],[2801,2]]], [2767,[9697.99,13561.3,2.54313e-006],[[2729,2],[2767,2],[2802,2]]], [2768,[11313.6,3305.47,0],[[2730,2],[2775,2]]], [2769,[10189.3,1961.18,0],[[2734,2]]], [2770,[10168.7,1824.02,0],[[2734,2]]], [2771,[10159.4,1616.94,0],[[2735,2],[2803,2]]], +[2772,[10363.3,1708.09,0],[[2691,2]]], [2773,[12669.8,4882.01,-7.62939e-006],[[2737,2],[2804,2]]], [2774,[12686.3,3607.79,0],[[2738,2],[2805,2]]], [2775,[11402.7,3340.76,0],[[2739,2],[2768,2]]], [2776,[13494.9,4513.82,0],[[2740,2],[2806,2]]], [2777,[12778,4877.1,0],[[2741,2],[2777,2],[2807,2],[2808,2]]], +[2778,[13141.4,7058.06,0],[[2742,2],[2809,2]]], [2779,[13098.6,6876.49,0],[[2742,2],[2810,2],[2811,2]]], [2780,[13258.6,6703.13,0],[[2743,2]]], [2781,[2061.78,3800.4,-1.52588e-005],[[2744,2],[2812,2]]], [2782,[1748.72,3551.35,0],[[2745,2],[2813,2]]], [2783,[2772.24,3136.03,0],[[2746,2],[2814,2]]], +[2784,[2611.69,3463.27,0],[[2747,2],[2815,2]]], [2785,[1093.13,13610.6,0],[[2748,2],[2816,2]]], [2786,[4264.85,2576.58,0],[[2750,2],[2817,2]]], [2787,[4428.86,2330.88,0],[[2751,2],[2818,2],[2819,2]]], [2788,[8772.15,2311,0],[[2755,2],[2789,2]]], [2789,[8836.93,2290.28,1.58946e-007],[[2756,2],[2788,2],[2820,2],[2789,2]]], +[2790,[9765,1767.69,0],[[2757,2]]], [2791,[13033.2,11115.7,0],[[2758,2],[2821,2]]], [2792,[11998.8,10581.3,-7.62939e-006],[[2759,2],[2822,2]]], [2793,[12324.4,10983.2,0],[[2760,2],[2823,2],[2824,2]]], [2794,[12251.6,10969,7.62939e-006],[[2760,2]]], [2795,[11569.3,12878.5,0],[[2762,2],[2800,2]]], +[2796,[11347.2,13146.3,1.52588e-005],[[2762,2],[2825,2]]], [2797,[12158,11910,0],[[2763,2],[2826,2]]], [2798,[12124.6,12232.3,0],[[2764,2],[2827,2]]], [2799,[11805.5,12411.7,0],[[2765,2]]], [2800,[11692,12730.7,0],[[2766,2],[2795,2],[2828,2],[2800,2]]], [2801,[11744.5,12584.2,0],[[2766,2],[2829,2],[2830,2]]], +[2802,[9673.94,13559.5,-7.62939e-006],[[2767,2]]], [2803,[9997.52,1644.22,0],[[2771,2],[2831,2]]], [2804,[12643.6,4931.79,0],[[2773,2],[2832,2]]], [2805,[12809.9,3685.67,-4.76837e-007],[[2774,2],[2833,2]]], [2806,[13470,4371.08,0],[[2776,2],[2834,2]]], [2807,[12759.8,4839.79,0],[[2777,2],[2808,2],[2835,2]]], +[2808,[12786.6,4825.2,0],[[2807,2],[2777,2]]], [2809,[13124.2,7085.83,0],[[2778,2],[2836,2],[2837,2]]], [2810,[12955.2,6862.32,0],[[2779,2],[2838,2],[2839,2]]], [2811,[13120.4,6803.38,0],[[2779,2]]], [2812,[2179.98,3784.2,1.52588e-005],[[2781,2],[2840,2]]], [2813,[1808.6,3470.64,0],[[2782,2],[2841,2]]], +[2814,[2693.61,3030.66,0],[[2783,2],[2842,2]]], [2815,[2598.18,3461.82,0],[[2784,2],[2843,2],[2844,2]]], [2816,[1008.68,13598.3,0],[[2785,2],[2845,2]]], [2817,[4135.2,2599.93,3.17891e-007],[[2786,2],[2846,2],[2847,2]]], [2818,[4343.88,2417.14,0],[[2787,2],[2848,2]]], [2819,[4383.41,2256.25,0],[[2787,2]]], +[2820,[8848.47,2292.04,0],[[2789,2]]], [2821,[13115.4,11183.9,0],[[2791,2],[2849,2]]], [2822,[11892.9,10603.6,0],[[2792,2],[2850,2]]], [2823,[12375.2,10983.2,0],[[2793,2]]], [2824,[12265.9,11071.6,0],[[2793,2]]], [2825,[11250.1,13183.7,0],[[2796,2],[2851,2]]], +[2826,[12288.3,11836.1,0],[[2797,2],[2852,2]]], [2827,[12138.3,12228,2.54313e-006],[[2798,2],[2827,2],[2853,2]]], [2828,[11768.5,12872.2,0],[[2800,2],[2854,2]]], [2829,[11875,12553.2,0],[[2801,2],[2830,2],[2855,2]]], [2830,[11852,12522.6,0],[[2829,2],[2801,2]]], [2831,[9951.44,1636.04,0],[[2803,2]]], +[2832,[12622.8,4948.2,0],[[2804,2],[2835,2],[2832,2]]], [2833,[12957.7,3780.91,0],[[2805,2],[2856,2]]], [2834,[13420.1,4240.64,0],[[2806,2],[2857,2]]], [2835,[12712.3,4906.45,-2.54313e-006],[[2807,2],[2832,2],[2835,2]]], [2836,[13110.5,7157.26,0],[[2809,2]]], [2837,[13090.3,7082.93,0],[[2809,2],[2858,2],[2859,2]]], +[2838,[12970,6941.07,0],[[2810,2],[2860,2]]], [2839,[12963,6798.88,0],[[2810,2],[2839,2]]], [2840,[2293.11,3748.63,0],[[2812,2],[2861,2]]], [2841,[1819.58,3403.2,0],[[2813,2],[2862,2]]], [2842,[2676.93,3017.33,0],[[2814,2],[2842,2],[2863,2],[2864,2]]], [2843,[2594.61,3343.37,1.52588e-005],[[2815,2],[2865,2]]], +[2844,[2515.9,3599.19,0],[[2815,2],[2866,2]]], [2845,[872.934,13634.5,0],[[2816,2],[2867,2]]], [2846,[3987.87,2619.82,4.76837e-007],[[2817,2],[2868,2]]], [2847,[4129.21,2551.05,0],[[2847,2],[2869,2],[2870,2],[2817,2]]], [2848,[4328.3,2459.64,1.58946e-007],[[2818,2],[2848,2],[2869,2]]], [2849,[13180.9,11251.2,0],[[2821,2],[2871,2]]], +[2850,[11856.6,10586.7,2.54313e-006],[[2822,2],[2850,2],[2872,2]]], [2851,[11174.8,13173.8,0],[[2825,2],[2851,2],[2873,2]]], [2852,[12391.9,11805.9,0],[[2826,2],[2874,2]]], [2853,[12260.2,12213.3,-7.62939e-006],[[2827,2],[2875,2]]], [2854,[11798.7,12895,-5.08626e-006],[[2828,2],[2876,2],[2877,2]]], [2855,[11946.1,12657.8,1.52588e-005],[[2829,2],[2878,2]]], +[2856,[13068.9,3852.83,0],[[2833,2],[2879,2]]], [2857,[13353.4,4121.51,0],[[2834,2],[2880,2]]], [2858,[13085.6,7050.91,0],[[2837,2],[2858,2],[2881,2]]], [2859,[13057.6,7163.02,0],[[2837,2]]], [2860,[12968.8,6969.14,0],[[2860,2],[2882,2]]], [2861,[2355.96,3679.27,0],[[2840,2],[2883,2],[2866,2]]], +[2862,[1871.05,3310.12,0],[[2841,2],[2884,2]]], [2863,[2615.2,3121.48,0],[[2842,2],[2885,2]]], [2864,[2649.35,2896.08,0],[[2842,2],[2886,2]]], [2865,[2565.94,3240.16,0],[[2843,2],[2885,2]]], [2866,[2429.47,3633.16,0],[[2844,2],[2861,2],[2883,2]]], [2867,[736.413,13676.9,0],[[2845,2],[2887,2]]], +[2868,[3867.98,2600.72,-4.76837e-007],[[2846,2],[2888,2]]], [2869,[4253.27,2490,0],[[2847,2],[2848,2]]], [2870,[4127.53,2566.46,0],[[2847,2]]], [2871,[13177.6,11380.9,0],[[2849,2],[2889,2]]], [2872,[11667.2,10599.5,0],[[2850,2],[2890,2]]], [2873,[11152.4,13179.5,-5.08626e-006],[[2851,2],[2873,2],[2891,2]]], +[2874,[12481.8,11751.4,-7.62939e-006],[[2852,2],[2892,2]]], [2875,[12392.1,12224.8,0],[[2853,2],[2893,2]]], [2876,[11959.1,12906.2,0],[[2854,2],[2894,2]]], [2877,[11829.1,12995.3,0],[[2854,2],[2895,2]]], [2878,[11992.2,12671.7,0],[[2855,2]]], [2879,[13178.3,3930.32,0],[[2856,2],[2880,2]]], +[2880,[13269.3,4013.86,0],[[2857,2],[2879,2]]], [2881,[13065,7041.16,0],[[2858,2]]], [2882,[12927,6966.11,0],[[2860,2]]], [2883,[2395.48,3650.36,-7.62939e-006],[[2861,2],[2866,2]]], [2884,[1926.8,3210.17,0],[[2862,2],[2896,2]]], [2885,[2567.44,3197.07,0],[[2863,2],[2865,2]]], +[2886,[2671.13,2790.54,0],[[2864,2],[2897,2]]], [2887,[679.598,13724.4,0],[[2867,2],[2898,2]]], [2888,[3784.23,2553.7,-4.76837e-007],[[2868,2],[2899,2]]], [2889,[13098.8,11465.9,0],[[2871,2],[2900,2]]], [2890,[11616.3,10633.5,-5.08626e-006],[[2872,2],[2890,2]]], [2891,[11079.4,13252.2,-5.08626e-006],[[2873,2],[2901,2],[2891,2],[2902,2]]], +[2892,[12518.4,11745.2,0],[[2874,2],[2892,2],[2903,2]]], [2893,[12526,12221.7,0],[[2875,2],[2904,2]]], [2894,[12052.2,12874.6,-1.52588e-005],[[2876,2],[2905,2]]], [2895,[11896.4,13102,0],[[2877,2],[2906,2]]], [2896,[1939.47,3203.5,0],[[2884,2],[2896,2],[2907,2]]], [2897,[2740.11,2720.06,-5.08626e-006],[[2886,2],[2908,2],[2897,2]]], +[2898,[614.841,13798,0],[[2887,2],[2909,2],[2910,2]]], [2899,[3757.23,2499.36,0],[[2888,2],[2911,2]]], [2900,[12992.4,11549.1,0],[[2889,2],[2912,2]]], [2901,[11094.5,13241.8,-7.62939e-006],[[2891,2]]], [2902,[11040.5,13352.9,-5.08626e-006],[[2891,2],[2902,2],[2913,2]]], [2903,[12586.8,11760.1,7.62939e-006],[[2892,2],[2914,2],[2903,2],[2915,2]]], +[2904,[12659.3,12226.8,7.62939e-006],[[2893,2],[2916,2]]], [2905,[12108.8,12843.6,0],[[2905,2],[2917,2],[2918,2],[2894,2]]], [2906,[11937.4,13156.9,0],[[2895,2]]], [2907,[2029.27,3178.7,0],[[2896,2],[2919,2]]], [2908,[2819.53,2691.29,0],[[2897,2],[2920,2],[2908,2],[2921,2]]], [2909,[618.184,13858.4,2.03451e-005],[[2898,2],[2922,2],[2910,2],[2909,2]]], +[2910,[607.871,13846.2,0],[[2909,2],[2931,2],[2910,2],[2898,2]]], [2911,[3705.48,2490.23,0],[[2899,2],[2923,2]]], [2912,[12865.1,11593.4,-3.8147e-006],[[2900,2],[2924,2]]], [2913,[10999.3,13377.5,0],[[2902,2]]], [2914,[12569.5,11765.7,7.62939e-006],[[2903,2]]], [2915,[12708.5,11675.8,0],[[2903,2],[2924,2]]], +[2916,[12724.4,12261.4,2.54313e-006],[[2904,2],[2925,2],[2926,2]]], [2917,[12243.3,12751.8,0],[[2905,2],[2927,2]]], [2918,[12090.6,12853.7,0],[[2905,2]]], [2919,[2104.21,3121.76,0],[[2907,2],[2928,2]]], [2920,[2809.89,2708.21,0],[[2908,2]]], [2921,[2925.61,2561.61,0],[[2908,2],[2929,2]]], +[2922,[690.497,13961.5,0],[[2909,2],[2930,2]]], [2923,[3651.16,2474.34,0],[[2911,2],[2932,2],[2933,2],[2934,2]]], [2924,[12816.5,11629.1,0],[[2912,2],[2915,2],[2924,2]]], [2925,[12805.1,12324.2,0],[[2916,2],[2935,2]]], [2926,[12637.6,12349.2,0],[[2916,2],[2936,2]]], [2927,[12316.5,12697.1,1.52588e-005],[[2917,2],[2937,2]]], +[2928,[2125.35,3072.42,0],[[2919,2],[2938,2]]], [2929,[3027.31,2561.38,7.62939e-006],[[2921,2],[2939,2]]], [2930,[790.368,13979.9,0],[[2922,2],[2940,2]]], [2931,[607.667,13829.6,1.01725e-005],[[2910,2]]], [2932,[3492.2,2423.76,0],[[2923,2],[2941,2]]], [2933,[3649.5,2379.9,0],[[2923,2],[2942,2]]], +[2934,[3638.52,2525.17,3.17891e-007],[[2972,2],[2934,2],[2923,2]]], [2935,[12908.8,12329.8,0],[[2925,2],[2943,2]]], [2936,[12592.3,12445.7,0],[[2926,2],[2944,2]]], [2937,[12399.3,12666.2,-7.62939e-006],[[2927,2],[2945,2],[2937,2],[2946,2]]], [2938,[2099.66,3002.52,0],[[2928,2],[2947,2]]], [2939,[3168.69,2580.98,0],[[2929,2],[2948,2]]], +[2940,[922.265,13990.1,0],[[2930,2],[2949,2]]], [2941,[3402.52,2376.95,4.76837e-007],[[2932,2],[2950,2]]], [2942,[3642.63,2258.11,0],[[2933,2],[2951,2]]], [2943,[13002,12378.6,7.62939e-006],[[2935,2],[2952,2]]], [2944,[12582,12574.9,0],[[2936,2],[2953,2],[2945,2]]], [2945,[12564.5,12600.4,0],[[2937,2],[2944,2],[2954,2]]], +[2946,[12448.6,12796.3,0],[[2937,2],[2955,2]]], [2947,[2108.78,2932.81,0],[[2938,2],[2947,2],[2956,2]]], [2948,[3266.31,2588.46,0],[[2939,2],[2957,2]]], [2949,[1049.84,13996,3.05176e-005],[[2940,2],[2958,2]]], [2950,[3303.78,2250.89,0],[[2941,2],[2959,2]]], [2951,[3614.78,2169.39,-4.76837e-007],[[2942,2]]], +[2952,[13064.8,12471.9,0],[[2943,2],[2960,2]]], [2953,[12587.9,12598.6,-1.52588e-005],[[2944,2],[2961,2],[2954,2]]], [2954,[12575.4,12590,0],[[2954,2],[2953,2]]], [2955,[12480.1,12876.4,0],[[2946,2],[2962,2],[2963,2]]], [2956,[2056.33,2819.74,0],[[2947,2],[2964,2]]], [2957,[3384.14,2544.98,0],[[2948,2],[2965,2]]], +[2958,[1191.77,14016.6,0],[[2949,2],[2966,2]]], [2959,[3220.32,2190.75,0],[[2950,2],[2967,2]]], [2960,[13113.8,12542.8,-2.54313e-006],[[2952,2],[2960,2],[2968,2]]], [2961,[12697.8,12639.1,0],[[2953,2],[2969,2]]], [2962,[12583,12899.2,0],[[2955,2],[2962,2]]], [2963,[12420.1,12950.2,0],[[2955,2],[2970,2]]], +[2964,[1994.82,2749.63,-7.62939e-006],[[2956,2],[2971,2]]], [2965,[3515,2541.98,-9.53674e-007],[[2957,2],[2972,2]]], [2966,[1298.62,14063.1,0],[[2958,2],[2973,2]]], [2967,[3091.33,2114.99,9.53674e-007],[[2959,2],[2974,2]]], [2968,[13242.2,12582.2,0],[[2960,2],[2975,2]]], [2969,[12762.8,12708.9,0],[[2961,2],[2976,2]]], +[2970,[12415.8,12957,0],[[2963,2]]], [2971,[1888.28,2709.97,-7.62939e-006],[[2964,2],[2977,2]]], [2972,[3626.21,2530.96,0],[[2965,2],[2934,2]]], [2973,[1367.04,14129.8,3.05176e-005],[[2966,2],[2978,2]]], [2974,[2964.75,2054.31,0],[[2967,2],[2979,2]]], [2975,[13313.9,12710.7,0],[[2968,2],[2980,2]]], +[2976,[12859.9,12753.7,1.52588e-005],[[2969,2],[2981,2]]], [2977,[1818.93,2623.84,3.8147e-006],[[2971,2],[2982,2]]], [2978,[1478.36,14151.6,0],[[2973,2],[2983,2]]], [2979,[2820.09,2023.01,0],[[2974,2],[2984,2]]], [2980,[13348.2,12827.3,7.62939e-006],[[2975,2],[2985,2]]], [2981,[12926.8,12759.9,0],[[2976,2]]], +[2982,[1807.08,2524.12,1.27157e-006],[[2977,2],[2982,2],[2986,2]]], [2983,[1573.94,14192.1,-3.05176e-005],[[2978,2],[2987,2]]], [2984,[2654.28,2017.57,0],[[2979,2],[2988,2]]], [2985,[13362.9,12846.1,2.54313e-006],[[2980,2],[2985,2],[2989,2]]], [2986,[1749.36,2465.17,-4.76837e-007],[[2982,2],[2990,2],[2991,2],[2986,2]]], [2987,[1684.99,14261,0],[[2983,2],[2992,2]]], +[2988,[2492.81,2048.5,0],[[2984,2],[2993,2]]], [2989,[13344.2,12884.6,-7.62939e-006],[[2985,2]]], [2990,[1765.73,2343.49,0],[[2986,2],[2994,2]]], [2991,[1755.53,2478.42,-6.35783e-007],[[2986,2]]], [2992,[1792.26,14318.6,3.05176e-005],[[2987,2],[2995,2]]], [2993,[2362.55,2082.29,0],[[2988,2],[2996,2]]], +[2994,[1846.94,2300.62,0],[[2990,2],[2997,2]]], [2995,[1870.08,14391.8,0],[[2992,2],[2998,2]]], [2996,[2273.28,2119.66,0],[[2993,2],[2999,2]]], [2997,[1933.15,2252.45,1.19209e-007],[[2994,2],[3000,2],[3001,2],[3002,2]]], [2998,[1929.84,14530,0],[[2995,2],[3003,2]]], [2999,[2217.7,2221.59,0],[[2996,2],[3004,2]]], +[3000,[1764.5,2199.56,0],[[2997,2],[3005,2]]], [3001,[2119.03,2277.02,-4.76837e-007],[[2997,2],[3004,2]]], [3002,[1927.43,2177.79,0],[[2997,2],[3006,2],[3002,2],[3007,2]]], [3003,[2016.76,14659.5,0],[[2998,2],[3008,2]]], [3004,[2165.05,2282.37,0],[[2999,2],[3001,2]]], [3005,[1689.86,2208.7,0],[[3000,2],[3009,2]]], +[3006,[1939.51,2213.67,0],[[3002,2],[3006,2]]], [3007,[1830.51,2104.28,0],[[3002,2]]], [3008,[2081,14751,3.05176e-005],[[3003,2],[3010,2]]], [3009,[1555.19,2261.6,0],[[3005,2],[3011,2]]], [3010,[2150.55,14862.9,-3.05176e-005],[[3008,2],[3012,2]]], [3011,[1431.63,2334.98,-4.76837e-007],[[3009,2],[3013,2]]], +[3012,[2203.7,14945.8,0],[[3010,2],[3014,2],[3015,2],[3012,2]]], [3013,[1321.32,2387.88,0],[[3011,2],[3016,2]]], [3014,[2199.11,15003.5,1.01725e-005],[[3012,2],[3014,2],[3017,2]]], [3015,[2206.54,14923.8,0],[[3012,2]]], [3016,[1191.84,2402.75,0],[[3013,2],[3018,2]]], [3017,[2236.66,15066.7,-3.05176e-005],[[3014,2],[3019,2]]], +[3018,[1086.42,2354.33,0],[[3016,2],[3020,2]]], [3019,[2245.13,15204.7,0],[[3017,2],[3021,2]]], [3020,[1046.18,2265.25,0],[[3018,2],[3022,2]]], [3021,[2298.17,15316.4,0],[[3019,2]]], [3022,[997.412,2138.28,0],[[3020,2],[3023,2]]], [3023,[942.625,2029.86,4.76837e-007],[[3022,2],[3024,2]]], +[3024,[857.448,1957.58,0],[[3023,2],[3025,2]]], [3025,[741.49,1897.57,0],[[3024,2],[3026,2]]], [3026,[631.263,1793.8,0],[[3025,2],[3027,2]]], [3027,[538.469,1706.32,0],[[3026,2],[3028,2]]], [3028,[439.677,1634.36,0],[[3027,2],[3029,2]]], [3029,[314.11,1623.36,0],[[3028,2],[3030,2]]], +[3030,[142.592,1608.1,0],[[3029,2],[3031,2]]], [3031,[25.793,1588.05,0],[[3030,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridenoch.sqf b/A3-Antistasi/NavGrids/navGridenoch.sqf new file mode 100644 index 0000000000..c220f55ef5 --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridenoch.sqf @@ -0,0 +1,527 @@ +navGrid = [[0,[8566.65,8671.22,0],[[1,2],[2,2],[3,2]]], [1,[8628.75,8559.98,0],[[0,2],[4,2],[5,2]]], [2,[8389.55,8663.77,0],[[0,2],[6,2]]], [3,[8526.64,8844.76,0],[[0,2],[7,2]]], [4,[8701.57,8433.53,2.54313e-006],[[1,2],[8,2],[9,2]]], [5,[8785.55,8531.48,0],[[1,2],[10,2]]], +[6,[8253.42,8688.38,0],[[2,2],[11,2]]], [7,[8476.69,9021.17,0],[[3,2],[12,2]]], [8,[8779.04,8244.07,0],[[4,2],[13,2]]], [9,[8602.74,8428.9,7.62939e-006],[[4,2],[14,2]]], [10,[8959.09,8502.28,0],[[5,2],[15,2]]], [11,[8159.14,8716.44,0],[[6,2],[16,2],[17,2],[18,2]]], +[12,[8446.27,9167.13,7.62939e-006],[[7,2],[19,2]]], [13,[8780.61,8191.98,-2.54313e-006],[[8,2],[20,2],[21,2]]], [14,[8475.47,8437.85,0],[[9,2],[22,2]]], [15,[9095.42,8499.61,7.62939e-006],[[10,2],[23,2]]], [16,[8135.41,8593.69,0],[[11,2],[24,2]]], [17,[8192.19,8791.7,-7.62939e-006],[[11,2],[25,2]]], +[18,[8064.63,8719.14,0],[[11,2],[26,2]]], [19,[8441.24,9311.71,1.52588e-005],[[12,2],[27,2]]], [20,[8834.86,8043.94,0],[[13,2],[28,2]]], [21,[8721.94,8042.94,7.62939e-006],[[13,2]]], [22,[8308.34,8452.68,0],[[14,2],[24,2]]], [23,[9233.29,8497.44,0],[[15,2],[29,2]]], +[24,[8117.8,8470.29,0],[[16,2],[22,2],[30,2]]], [25,[8193.62,8936.62,0],[[17,2],[31,2]]], [26,[7998.72,8698.6,-2.54313e-006],[[18,2],[32,2],[33,2]]], [27,[8482.23,9450.48,0],[[19,2],[34,2]]], [28,[8863.11,7899.33,0],[[20,2],[35,2]]], [29,[9384.46,8493.24,0],[[23,2],[36,2]]], +[30,[8016.88,8377.41,-3.8147e-006],[[24,2],[37,2]]], [31,[8163.81,9102.22,0],[[25,2],[38,2]]], [32,[8001.45,8830.62,7.62939e-006],[[26,2],[39,2]]], [33,[7897.61,8638.06,0],[[26,2],[40,2]]], [34,[8529.36,9524.57,5.08626e-006],[[27,2],[41,2],[42,2]]], [35,[8892.15,7766.89,0],[[28,2],[43,2]]], +[36,[9427.47,8486.32,0],[[29,2],[44,2],[45,2]]], [37,[7886.61,8311.15,-3.8147e-006],[[30,2],[46,2]]], [38,[8162.79,9240.57,0],[[31,2],[47,2]]], [39,[8047.4,8900.47,-2.54313e-006],[[32,2],[48,2],[39,2],[49,2]]], [40,[7797.62,8632.84,0],[[33,2],[50,2],[40,2],[51,2]]], [41,[8570.55,9648.94,1.52588e-005],[[34,2],[52,2]]], +[42,[8686.69,9468.14,1.52588e-005],[[34,2],[53,2]]], [43,[8924.33,7693.46,5.08626e-006],[[35,2],[54,2],[55,2]]], [44,[9490.23,8491.44,-2.54313e-006],[[36,2],[56,2],[57,2]]], [45,[9395.96,8314.03,0],[[36,2],[58,2]]], [46,[7746.36,8246.42,0],[[37,2],[59,2]]], [47,[8149.8,9294.96,0],[[38,2],[60,2],[61,2]]], +[48,[8043.99,8880.04,-3.8147e-006],[[39,2]]], [49,[8044.54,9076.18,0],[[39,2],[62,2]]], [50,[7803.07,8615.08,0],[[40,2]]], [51,[7765.43,8810.89,0],[[40,2],[63,2]]], [52,[8556.41,9723.37,0],[[41,2],[64,2],[65,2],[66,2]]], [53,[8797.73,9399.1,-7.62939e-006],[[42,2],[67,2]]], +[54,[8941.84,7513.72,0],[[43,2],[68,2]]], [55,[9066.61,7754.17,0],[[43,2],[69,2]]], [56,[9470.96,8615.44,0],[[44,2],[70,2]]], [57,[9691.31,8456.97,0],[[44,2],[71,2]]], [58,[9327.07,8215.79,0],[[45,2],[72,2]]], [59,[7614.46,8160.11,0],[[46,2],[73,2]]], +[60,[8192.5,9515.81,0],[[47,2],[74,2]]], [61,[8072.1,9186.41,-7.62939e-006],[[47,2],[62,2]]], [62,[8028.67,9145.57,0],[[49,2],[61,2]]], [63,[7736.97,8970.17,0],[[51,2],[75,2]]], [64,[8404.85,9686.39,0],[[52,2],[74,2],[76,2]]], [65,[8636.95,9853.47,0],[[52,2],[77,2]]], +[66,[8512.8,9822.85,5.08626e-006],[[52,2],[78,2],[79,2]]], [67,[8931.09,9279.3,7.62939e-006],[[53,2],[80,2]]], [68,[8924.8,7386.71,0],[[54,2],[81,2]]], [69,[9231.8,7767.86,0],[[55,2],[82,2]]], [70,[9448.14,8731.02,0],[[56,2],[83,2],[84,2]]], [71,[9730.58,8439.05,0],[[57,2],[85,2],[86,2]]], +[72,[9284.12,8063.27,0],[[58,2],[87,2]]], [73,[7500.75,8084.15,0],[[59,2],[88,2]]], [74,[8222.42,9644.2,0],[[60,2],[64,2],[76,2]]], [75,[7707.36,9151.22,0],[[63,2],[89,2]]], [76,[8228.66,9655.78,-2.54313e-006],[[74,2],[103,2],[64,2]]], [77,[8737.6,9960.49,0],[[65,2],[90,2]]], +[78,[8488.43,9961.36,0],[[66,2],[91,2]]], [79,[8368.86,9850.87,0],[[66,2],[92,2]]], [80,[9005.13,9148.49,0],[[67,2],[93,2]]], [81,[8916.13,7281.81,5.08626e-006],[[68,2],[94,2],[95,2]]], [82,[9273.15,7816.94,-5.08626e-006],[[69,2],[96,2],[87,2]]], [83,[9588.63,8736.72,0],[[70,2],[97,2]]], +[84,[9272.66,8779.25,0],[[70,2],[98,2]]], [85,[9761.76,8528.31,-1.27157e-006],[[71,2],[99,2],[100,2]]], [86,[9647.02,8282.31,0],[[71,2],[101,2]]], [87,[9274.27,7932.38,-7.62939e-006],[[72,2],[82,2]]], [88,[7396.43,8012.45,0],[[73,2],[102,2]]], [89,[7699.61,9299.59,-1.52588e-005],[[75,2],[104,2]]], +[90,[8873.79,10067.5,0],[[77,2],[105,2]]], [91,[8460.37,10038.6,0],[[78,2],[106,2],[107,2]]], [92,[8238.42,9904.73,0],[[79,2],[108,2]]], [93,[8982.21,8994.76,0],[[80,2],[109,2]]], [94,[8939.66,7043.54,-1.52588e-005],[[81,2],[110,2]]], [95,[8781.03,7371.84,0],[[81,2],[111,2]]], +[96,[9446.58,7797.07,0],[[82,2],[112,2]]], [97,[9606.12,8740.7,-1.27157e-006],[[83,2],[100,2],[113,2]]], [98,[9154.48,8811.99,-7.62939e-006],[[84,2],[114,2]]], [99,[9890.77,8477.89,0],[[85,2],[115,2]]], [100,[9654.33,8656.87,0],[[85,2],[97,2]]], [101,[9597.15,8197.78,0],[[86,2],[116,2],[117,2],[101,2],[118,2]]], +[102,[7249.06,7911.41,0],[[88,2],[119,2]]], [103,[8091.02,9704.27,0],[[76,2],[120,2]]], [104,[7720.7,9435.31,0],[[89,2],[121,2]]], [105,[8954.45,10169.3,0],[[90,2],[122,2]]], [106,[8505.31,10119.9,0],[[91,2],[123,2],[124,2]]], [107,[8373.47,10071.5,0],[[91,2],[125,2]]], +[108,[8184.55,9902.06,0],[[92,2],[126,2],[127,2]]], [109,[8980.33,8877,-7.62939e-006],[[93,2],[114,2]]], [110,[8922.75,6882.33,0],[[94,2],[128,2]]], [111,[8639.23,7474.19,1.52588e-005],[[95,2],[129,2]]], [112,[9489.76,7880.42,-7.62939e-006],[[96,2],[116,2]]], [113,[9648.32,8901.21,0],[[97,2],[130,2]]], +[114,[9037.37,8848.28,-7.62939e-006],[[98,2],[109,2]]], [115,[9980.32,8449.21,-9.53674e-007],[[99,2],[131,2],[132,2],[133,2]]], [116,[9533.45,8056.06,0],[[101,2],[112,2]]], [117,[9605.4,8203.8,-1.27157e-006],[[101,2]]], [118,[9744,8186.13,0],[[101,2],[134,2]]], [119,[7199.71,7875.49,0],[[102,2],[119,2],[135,2]]], +[120,[8011.55,9824.59,-1.52588e-005],[[103,2],[136,2]]], [121,[7745.14,9581.79,0],[[104,2],[137,2]]], [122,[8968.17,10186.3,0],[[105,2],[138,2],[139,2],[140,2]]], [123,[8656.57,10162.9,0],[[106,2],[140,2]]], [124,[8587.66,10273.9,0],[[106,2],[141,2]]], [125,[8265.22,10130,-7.62939e-006],[[107,2],[142,2]]], +[126,[8022.85,9885.77,1.52588e-005],[[108,2],[143,2],[136,2]]], [127,[8083.42,10005.2,0],[[108,2],[144,2]]], [128,[8916.76,6786.36,-5.08626e-006],[[110,2],[145,2],[146,2]]], [129,[8532.49,7550.21,0],[[111,2],[147,2]]], [130,[9709.63,9019.67,0],[[113,2],[148,2]]], [131,[10076.2,8584.31,0],[[115,2],[149,2]]], +[132,[10128.2,8356.81,0],[[115,2],[150,2]]], [133,[9961.58,8269.58,0],[[115,2],[151,2]]], [134,[9837.06,8134.11,3.8147e-006],[[118,2],[151,2]]], [135,[7056.49,7785.84,0],[[119,2],[152,2],[153,2]]], [136,[7990.93,9837.82,0],[[120,2],[126,2],[154,2],[143,2]]], [137,[7769.23,9710.29,0],[[121,2],[155,2]]], +[138,[9022.45,10020.8,0],[[122,2],[156,2]]], [139,[9040.05,10236,0],[[122,2],[139,2],[157,2],[158,2]]], [140,[8815.61,10177.3,0],[[122,2],[123,2]]], [141,[8677.24,10391.4,0],[[124,2],[159,2]]], [142,[8204.51,10262.5,0],[[125,2],[160,2]]], [143,[7985.33,9892.24,0],[[126,2],[136,2],[161,2]]], +[144,[7966.2,10105.4,1.52588e-005],[[127,2],[162,2]]], [145,[9064.64,6880.44,-1.52588e-005],[[128,2],[163,2]]], [146,[8835.97,6632.89,0],[[128,2],[164,2],[165,2],[166,2]]], [147,[8412.52,7621.38,0],[[129,2],[167,2]]], [148,[9749.42,9111.3,0],[[130,2],[168,2],[169,2]]], [149,[10195.4,8672.4,0],[[131,2],[170,2]]], +[150,[10283.7,8250.27,0],[[132,2],[171,2]]], [151,[9890.77,8098.75,1.27157e-006],[[133,2],[134,2],[172,2]]], [152,[7180.94,7638.99,0],[[135,2],[173,2]]], [153,[6941.07,7920.21,0],[[135,2],[174,2]]], [154,[7914.95,9836.34,0],[[136,2]]], [155,[7763.7,9870.63,0],[[137,2],[175,2],[161,2]]], +[156,[9054.16,9905.51,-7.62939e-006],[[138,2],[176,2]]], [157,[9191.88,10261.4,0],[[139,2],[177,2]]], [158,[9119.68,10401.7,0],[[139,2],[178,2]]], [159,[8749.76,10506.7,-7.62939e-006],[[141,2],[179,2]]], [160,[8185.86,10418,-7.62939e-006],[[142,2],[180,2]]], [161,[7836.38,9958.47,-1.52588e-005],[[143,2],[155,2],[175,2]]], +[162,[7846.35,10210.1,0],[[144,2],[181,2]]], [163,[9191.82,6921.02,-1.52588e-005],[[145,2],[182,2]]], [164,[8973.75,6668.86,0],[[146,2],[183,2]]], [165,[8775.75,6502.25,0],[[146,2],[184,2],[185,2]]], [166,[8653.63,6678.24,-7.62939e-006],[[146,2],[186,2]]], [167,[8284.27,7693.22,0],[[147,2],[187,2]]], +[168,[9746.24,9318.71,0],[[148,2],[188,2]]], [169,[9863.61,9222.22,0],[[148,2],[189,2]]], [170,[10231.5,8706.61,1.27157e-006],[[149,2],[190,2],[191,2]]], [171,[10387.1,8189.13,-7.62939e-006],[[150,2],[192,2]]], [172,[9866.31,7882.92,0],[[151,2],[193,2]]], [173,[7228.62,7488.78,0],[[152,2],[194,2]]], +[174,[6847.27,7988.11,0],[[153,2],[195,2]]], [175,[7797.51,9969.05,-3.8147e-006],[[155,2],[161,2],[196,2],[197,2]]], [176,[9098.84,9753.75,7.62939e-006],[[156,2],[198,2]]], [177,[9314.39,10272.1,0],[[157,2],[199,2]]], [178,[9205.62,10534.1,0],[[158,2],[200,2]]], [179,[8801.63,10638.3,0],[[159,2],[201,2]]], +[180,[8170.07,10559.6,0],[[160,2],[202,2]]], [181,[7737.72,10301.5,0],[[162,2],[203,2]]], [182,[9317.25,6947.46,0],[[163,2],[204,2]]], [183,[9113.44,6713.26,0],[[164,2],[205,2]]], [184,[8760.9,6335.15,0],[[165,2],[206,2]]], [185,[8662.59,6436.6,0],[[165,2],[207,2]]], +[186,[8534.28,6800.94,0],[[166,2],[208,2]]], [187,[8157.72,7753.42,0],[[167,2],[209,2]]], [188,[9715.56,9432.94,-1.27157e-006],[[168,2],[210,2],[211,2]]], [189,[9943.72,9156.41,3.8147e-006],[[169,2],[212,2]]], [190,[10220.4,8741.7,0],[[170,2],[213,2],[214,2]]], [191,[10399.1,8782.62,-1.90735e-006],[[170,2],[215,2]]], +[192,[10522.5,8213.28,0],[[171,2],[216,2]]], [193,[9797.76,7759.37,0],[[172,2],[217,2]]], [194,[7192.55,7325.52,0],[[173,2],[218,2]]], [195,[6745.03,8050.11,0],[[174,2],[219,2]]], [196,[7630.43,10025.3,0],[[175,2],[220,2]]], [197,[7820.76,10051.9,5.08626e-006],[[175,2],[221,2],[222,2]]], +[198,[9188.52,9644.34,0],[[176,2],[223,2]]], [199,[9447.95,10272.8,0],[[177,2],[224,2]]], [200,[9334.83,10592,0],[[178,2],[225,2]]], [201,[8871.16,10785.9,0],[[179,2],[226,2]]], [202,[8143.66,10691.8,0],[[180,2],[227,2]]], [203,[7623.65,10404.7,0],[[181,2],[228,2],[229,2]]], +[204,[9352.09,6950.52,-1.01725e-005],[[182,2],[230,2],[231,2]]], [205,[9264.29,6721.34,0],[[183,2],[232,2],[231,2]]], [206,[8757.97,6207.99,0],[[184,2],[233,2]]], [207,[8511.25,6424.65,0],[[185,2],[234,2]]], [208,[8510.6,6819.85,0],[[186,2],[235,2],[236,2]]], [209,[8062.3,7664.05,7.62939e-006],[[187,2],[237,2]]], +[210,[9620.42,9579.63,0],[[188,2],[238,2]]], [211,[9586.84,9564.57,3.8147e-006],[[188,2],[239,2]]], [212,[10084.7,9173.93,-3.8147e-006],[[189,2],[240,2]]], [213,[10156,8771.04,0],[[190,2]]], [214,[10351.8,8851.57,0],[[190,2],[241,2]]], [215,[10530.7,8822.37,1.90735e-006],[[191,2],[242,2]]], +[216,[10648.8,8164.69,0],[[192,2],[243,2]]], [217,[9782.97,7622.43,0],[[193,2],[244,2]]], [218,[7144.29,7191.35,0],[[194,2],[245,2]]], [219,[6640.25,8157.29,0],[[195,2],[246,2]]], [220,[7495.76,10055.5,0],[[196,2],[247,2]]], [221,[7813,10100.2,0],[[197,2]]], +[222,[7839.98,10057.7,0],[[197,2]]], [223,[9358.58,9589.3,0],[[198,2],[239,2]]], [224,[9490.65,10341.8,0],[[199,2],[248,2]]], [225,[9373.71,10591.6,1.27157e-006],[[200,2],[249,2],[248,2]]], [226,[8934.39,10889.6,0],[[201,2],[250,2]]], [227,[8116.66,10842,0],[[202,2],[251,2]]], +[228,[7467.06,10390.1,-7.62939e-006],[[203,2],[252,2]]], [229,[7729.86,10545.4,7.62939e-006],[[203,2],[253,2]]], [230,[9486.58,7011.09,-1.52588e-005],[[204,2],[254,2]]], [231,[9388.65,6779.1,0],[[204,2],[205,2]]], [232,[9285.95,6591.99,0],[[205,2],[255,2]]], [233,[8809.9,6070.14,0],[[206,2],[256,2]]], +[234,[8352.28,6374.74,1.52588e-005],[[207,2],[257,2]]], [235,[8477.75,6901.83,0],[[208,2],[258,2],[236,2]]], [236,[8443.8,6866.82,0],[[208,2],[235,2],[259,2]]], [237,[7997.98,7565.1,0],[[209,2],[260,2]]], [238,[9622.38,9701.1,0],[[210,2],[261,2]]], [239,[9425.5,9598.87,0],[[211,2],[223,2]]], +[240,[10175.7,9193.61,0],[[212,2],[262,2],[263,2]]], [241,[10448.9,8975.63,0],[[214,2],[264,2]]], [242,[10587.4,8832.14,-9.53674e-007],[[215,2],[265,2],[266,2],[242,2],[267,2]]], [243,[10732.1,8137.75,5.08626e-006],[[216,2],[268,2],[269,2]]], [244,[9711.98,7478.44,0],[[217,2],[270,2]]], [245,[7118.05,7049.74,0],[[218,2],[271,2]]], +[246,[6543.31,8251.45,0],[[219,2],[272,2]]], [247,[7333.27,10087.3,0],[[220,2],[273,2]]], [248,[9481.67,10366.1,2.54313e-006],[[224,2],[225,2],[274,2]]], [249,[9318.95,10756.3,0],[[225,2],[275,2]]], [250,[8901.65,10990.5,0],[[226,2],[276,2]]], [251,[8090.23,10977.2,0],[[227,2],[277,2],[278,2]]], +[252,[7333.11,10379.1,0],[[228,2],[279,2]]], [253,[7801.1,10634.9,0],[[229,2],[280,2]]], [254,[9631.17,7043.53,0],[[230,2],[281,2]]], [255,[9341.84,6470.41,0],[[232,2],[282,2],[283,2]]], [256,[8876.2,5954.25,0],[[233,2],[284,2]]], [257,[8218.29,6272.16,0],[[234,2],[285,2]]], +[258,[8446.48,7017.72,-7.62939e-006],[[235,2],[286,2]]], [259,[8295.88,6861.12,0],[[236,2],[287,2]]], [260,[8137.46,7461.59,0],[[237,2],[288,2]]], [261,[9640.19,9839.59,0],[[238,2],[289,2]]], [262,[10342.5,9190.08,1.90735e-006],[[240,2],[290,2]]], [263,[10241.5,9352.04,0],[[240,2],[291,2]]], +[264,[10524.6,9084.95,-1.90735e-006],[[241,2],[290,2]]], [265,[10720.6,8966.43,0],[[242,2],[292,2]]], [266,[10584.9,8822.99,-6.35783e-007],[[242,2]]], [267,[10649.6,8712.16,0],[[242,2],[293,2]]], [268,[10819.4,8038.22,0],[[243,2],[294,2]]], [269,[10799,8178.82,2.54313e-006],[[243,2],[295,2],[296,2]]], +[270,[9641.43,7314.96,0],[[244,2],[297,2]]], [271,[7110.54,6977.07,-1.27157e-006],[[245,2],[298,2],[299,2]]], [272,[6485.8,8308.65,1.27157e-006],[[246,2],[300,2],[301,2]]], [273,[7173,10087.7,0],[[247,2],[302,2]]], [274,[9535.73,10355.1,2.54313e-006],[[248,2],[303,2],[304,2]]], [275,[9269.39,10859,0],[[249,2],[305,2]]], +[276,[8874.57,11125,-1.90735e-006],[[250,2],[306,2]]], [277,[8074.72,11097.7,0],[[251,2],[307,2],[308,2]]], [278,[8039.61,10907.9,0],[[251,2],[280,2]]], [279,[7175.89,10366,0],[[252,2],[309,2]]], [280,[7902.82,10762.3,-3.8147e-006],[[253,2],[278,2]]], [281,[9687.68,7037.05,0],[[254,2],[310,2],[311,2],[297,2]]], +[282,[9263.54,6431.35,0],[[255,2],[312,2]]], [283,[9516.17,6422.45,0],[[255,2],[313,2]]], [284,[8931.74,5886.45,5.08626e-006],[[256,2],[314,2],[315,2]]], [285,[8135.42,6168.18,0],[[257,2],[316,2],[285,2],[317,2]]], [286,[8410.71,7136.29,0],[[258,2],[318,2]]], [287,[8188.97,6823.47,0],[[259,2],[319,2]]], +[288,[8246.43,7416.93,0],[[260,2],[320,2]]], [289,[9645.39,9990.95,0],[[261,2],[321,2]]], [290,[10448.5,9127.53,1.90735e-006],[[262,2],[264,2]]], [291,[10294.9,9471.66,0],[[263,2],[322,2]]], [292,[10822.2,9069.75,0],[[265,2],[323,2]]], [293,[10735,8571.79,-3.8147e-006],[[267,2],[324,2]]], +[294,[10885.1,7957.24,0],[[268,2],[325,2]]], [295,[10987.5,8259.13,0],[[269,2],[326,2]]], [296,[10834.5,8328.26,-3.8147e-006],[[269,2],[324,2]]], [297,[9613.33,7252.19,-5.08626e-006],[[270,2],[281,2],[311,2],[327,2]]], [298,[7177.01,6825.69,0],[[271,2],[328,2]]], [299,[6970.37,6897.48,0],[[271,2],[329,2]]], +[300,[6394.2,8215.08,0],[[272,2],[330,2]]], [301,[6381.92,8431.98,-1.27157e-006],[[272,2],[331,2],[332,2]]], [302,[7044.68,10076.4,0],[[273,2],[333,2]]], [303,[9640.24,10450.1,0],[[274,2],[334,2]]], [304,[9568.55,10238.2,-7.62939e-006],[[274,2],[321,2]]], [305,[9279.49,10904.3,-6.35783e-007],[[275,2],[335,2],[336,2]]], +[306,[8887.16,11254.3,0],[[276,2],[337,2],[338,2]]], [307,[8197.57,11088.7,0],[[277,2]]], [308,[8014.33,11278.2,0],[[277,2],[339,2]]], [309,[7060.94,10362.6,2.54313e-006],[[279,2],[340,2],[341,2]]], [310,[9872.95,6994.3,0],[[281,2],[342,2]]], [311,[9657.57,7175.19,0],[[281,2],[297,2],[343,2]]], +[312,[9233.18,6317.83,-7.62939e-006],[[282,2],[344,2]]], [313,[9667.89,6407.96,0],[[283,2],[345,2]]], [314,[9014.5,5773,0],[[284,2],[346,2]]], [315,[9092.48,5929.18,1.52588e-005],[[284,2],[347,2]]], [316,[8007.09,6065.32,0],[[285,2],[348,2]]], [317,[8078.87,6307.79,0],[[285,2],[349,2]]], +[318,[8367.65,7277.37,0],[[286,2],[320,2]]], [319,[8052.58,6856.8,0],[[287,2],[350,2]]], [320,[8319.65,7318.71,0],[[288,2],[318,2]]], [321,[9598.89,10144.2,0],[[289,2],[304,2]]], [322,[10355.6,9622.99,0],[[291,2],[351,2]]], [323,[10904.1,9129.41,0],[[292,2],[352,2]]], +[324,[10795.1,8469.53,0],[[293,2],[296,2]]], [325,[10986.4,7848.52,3.8147e-006],[[294,2],[353,2]]], [326,[11130,8339.36,0],[[295,2],[354,2]]], [327,[9648.14,7195.67,0],[[297,2]]], [328,[7234.32,6711.45,0],[[298,2],[355,2]]], [329,[6864.99,6790.13,0],[[299,2],[356,2]]], +[330,[6287.67,8109.61,-1.27157e-006],[[300,2],[357,2],[358,2]]], [331,[6511.2,8549.52,3.8147e-006],[[301,2],[359,2]]], [332,[6227.85,8370.13,0],[[301,2],[360,2]]], [333,[7025.04,10071.7,0],[[302,2],[361,2],[362,2]]], [334,[9750.33,10522.7,0],[[303,2],[363,2]]], [335,[9191.52,11037,-1.90735e-006],[[305,2],[364,2]]], +[336,[9378,11045.2,0],[[305,2],[365,2],[366,2]]], [337,[9027.63,11202.4,0],[[306,2],[364,2]]], [338,[8772.79,11377.2,0],[[306,2],[367,2],[368,2]]], [339,[8003.31,11309.9,0],[[308,2],[369,2],[370,2]]], [340,[7126.18,10497.8,0],[[309,2],[371,2]]], [341,[6872.33,10340.7,-3.8147e-006],[[309,2],[372,2]]], +[342,[10005.3,6940.42,0],[[310,2],[373,2]]], [343,[9805.11,7144.2,0],[[311,2],[374,2]]], [344,[9270.68,6193.46,0],[[312,2],[375,2]]], [345,[9816.79,6437.27,0],[[313,2],[376,2]]], [346,[9098.25,5637.42,0],[[314,2],[377,2]]], [347,[9226.9,5959.13,0],[[315,2],[378,2]]], +[348,[7923.9,5927.3,0],[[316,2],[379,2]]], [349,[8032.23,6426.23,0],[[317,2],[380,2]]], [350,[7921.39,6888.79,0],[[319,2],[381,2]]], [351,[10319.1,9763.24,0],[[322,2],[382,2]]], [352,[11027.6,9122.76,0],[[323,2],[352,2],[383,2],[384,2]]], [353,[11069.3,7793.87,1.27157e-006],[[325,2],[385,2],[386,2]]], +[354,[11197.4,8448.35,0],[[326,2],[387,2]]], [355,[7286.6,6546.71,0],[[328,2],[388,2],[389,2]]], [356,[6773.06,6698.68,0],[[329,2],[390,2]]], [357,[6178.46,8202.61,0],[[330,2],[357,2],[391,2],[360,2]]], [358,[6225.27,7953.92,0],[[330,2],[392,2]]], [359,[6566,8666.12,-3.8147e-006],[[331,2],[393,2]]], +[360,[6137.41,8286.83,0],[[332,2],[357,2],[391,2]]], [361,[6874.28,10089,-7.62939e-006],[[333,2],[394,2]]], [362,[6972.64,9946.08,0],[[333,2],[395,2]]], [363,[9878.24,10577.2,0],[[334,2],[396,2]]], [364,[9102.36,11146.2,0],[[335,2],[337,2]]], [365,[9449.81,11180,-9.53674e-007],[[336,2],[397,2]]], +[366,[9471.29,11009.7,0],[[336,2],[398,2],[399,2]]], [367,[8725.49,11274,0],[[338,2],[400,2]]], [368,[8648.26,11517.7,0],[[338,2],[401,2]]], [369,[7968.74,11480.1,-9.53674e-007],[[339,2],[402,2]]], [370,[7832.74,11302.7,0],[[339,2],[403,2]]], [371,[7177.21,10611.4,-7.62939e-006],[[340,2],[404,2]]], +[372,[6728.13,10329.8,-3.8147e-006],[[341,2],[405,2]]], [373,[10093.9,6904.96,2.54313e-006],[[342,2],[406,2],[407,2]]], [374,[9950.27,7109.13,0],[[343,2],[408,2]]], [375,[9352.8,6052.91,0],[[344,2],[378,2],[409,2]]], [376,[9963.22,6429.09,0],[[345,2],[410,2]]], [377,[9092.8,5503.09,-1.52588e-005],[[346,2],[411,2]]], +[378,[9381.14,5958.66,0],[[347,2],[375,2],[409,2]]], [379,[7882.73,5797.44,0],[[348,2],[412,2]]], [380,[7986.66,6543.34,7.62939e-006],[[349,2],[413,2]]], [381,[7850.04,6892.19,2.54313e-006],[[350,2],[413,2],[414,2]]], [382,[10302.1,9814.7,1.27157e-006],[[351,2],[415,2],[416,2]]], [383,[11193.8,9101.02,0],[[352,2],[417,2]]], +[384,[11120.5,9244.22,0],[[352,2],[418,2]]], [385,[10986.4,7640.36,0],[[353,2],[419,2]]], [386,[11210.7,7904.27,0],[[353,2],[420,2]]], [387,[11340.4,8452.72,0],[[354,2],[421,2]]], [388,[7310.35,6388.95,0],[[355,2],[422,2]]], [389,[7373.15,6588.33,0],[[355,2],[423,2],[424,2]]], +[390,[6694.95,6607.05,0],[[356,2],[425,2]]], [391,[6109.85,8255.96,3.8147e-006],[[357,2],[360,2],[426,2]]], [392,[6202.07,7909.45,0],[[358,2],[427,2],[428,2]]], [393,[6601.16,8763.81,0],[[359,2],[429,2]]], [394,[6772.62,10183.6,0],[[361,2],[405,2]]], [395,[6917.04,9818.25,7.62939e-006],[[362,2],[430,2]]], +[396,[9938.87,10612.9,0],[[363,2],[431,2],[432,2],[433,2]]], [397,[9465.23,11340.9,0],[[365,2],[434,2]]], [398,[9614.52,10989.1,0],[[366,2],[435,2]]], [399,[9587.11,10862.4,3.8147e-006],[[366,2],[436,2]]], [400,[8571.9,11318.6,0],[[367,2],[437,2]]], [401,[8526.8,11646.1,0],[[368,2],[438,2]]], +[402,[7973.11,11647.8,4.76837e-007],[[369,2],[439,2]]], [403,[7690.27,11269.3,0],[[370,2],[440,2]]], [404,[7228.92,10742.7,0],[[371,2],[441,2]]], [405,[6661.06,10320.9,9.53674e-007],[[372,2],[394,2],[442,2],[443,2]]], [406,[10241.1,6827.36,0],[[373,2],[444,2]]], [407,[10183.8,6999.19,2.54313e-006],[[373,2],[408,2],[445,2]]], +[408,[10084.4,7053.69,0],[[374,2],[407,2]]], [409,[9398.65,5964.14,1.90735e-006],[[378,2],[449,2],[409,2],[375,2]]], [410,[10099.2,6413.65,-3.8147e-006],[[376,2],[446,2]]], [411,[9058.24,5363.47,0],[[377,2],[447,2],[448,2]]], [412,[7863.21,5658.55,0],[[379,2],[450,2]]], [413,[7939.22,6662.78,0],[[380,2],[381,2]]], +[414,[7706.25,6907.51,0],[[381,2],[451,2]]], [415,[10408.1,9912.16,3.8147e-006],[[382,2],[452,2]]], [416,[10231,10017.5,0],[[382,2],[453,2]]], [417,[11339.3,9067.37,4.76837e-007],[[383,2],[454,2]]], [418,[11216.4,9358.83,0],[[384,2],[455,2]]], [419,[10913.8,7505.38,0],[[385,2],[456,2]]], +[420,[11333,7993.45,0],[[386,2],[457,2]]], [421,[11433.6,8515.63,0],[[387,2],[458,2]]], [422,[7315.75,6352.57,9.53674e-007],[[388,2],[459,2],[424,2],[460,2],[461,2]]], [423,[7361.73,6716.92,3.8147e-006],[[389,2],[462,2]]], [424,[7408.92,6472.45,0],[[389,2],[422,2],[459,2]]], [425,[6599.82,6491.45,0],[[390,2],[463,2]]], +[426,[5998.61,8134.61,0],[[391,2],[464,2]]], [427,[6077.21,7989.33,0],[[392,2],[464,2]]], [428,[6070.83,7769.94,0],[[392,2],[465,2]]], [429,[6558.44,8897.81,-3.8147e-006],[[393,2],[466,2]]], [430,[6859.72,9691.64,-7.62939e-006],[[395,2],[467,2]]], [431,[10087,10726.6,0],[[396,2],[468,2]]], +[432,[10014.2,10484.3,0],[[396,2],[469,2]]], [433,[9822.9,10707,0],[[396,2],[436,2]]], [434,[9478.59,11471.7,0],[[397,2],[470,2]]], [435,[9747.16,10960,3.8147e-006],[[398,2],[471,2]]], [436,[9684.97,10765.4,0],[[399,2],[433,2]]], [437,[8421.55,11359.1,0],[[400,2],[472,2]]], +[438,[8441.99,11737.2,-4.76837e-007],[[401,2],[473,2]]], [439,[7997.64,11735.2,0],[[402,2],[474,2],[475,2]]], [440,[7530.7,11218.2,1.90735e-006],[[403,2],[476,2]]], [441,[7261.1,10885.4,0],[[404,2],[477,2]]], [442,[6571.62,10233.3,0],[[405,2],[442,2],[478,2]]], [443,[6694.38,10486.7,0],[[405,2],[479,2]]], +[444,[10279.6,6810.91,2.54313e-006],[[406,2],[480,2],[445,2],[481,2]]], [445,[10351.6,6926.41,0],[[407,2],[444,2],[481,2]]], [446,[10224.4,6389.49,0],[[410,2],[482,2]]], [447,[9030.23,5178.8,0],[[411,2],[483,2]]], [448,[8969.45,5302.28,0],[[411,2],[484,2]]], [449,[9515.24,5933.25,0],[[409,2],[485,2]]], +[450,[7829.84,5615.9,-2.54313e-006],[[412,2],[486,2],[487,2]]], [451,[7538.16,6927.35,0],[[414,2],[488,2]]], [452,[10532.7,10041.1,0],[[415,2],[489,2]]], [453,[10179.4,10163.2,0],[[416,2],[490,2]]], [454,[11431.9,9046.51,0],[[417,2],[491,2],[492,2]]], [455,[11189.6,9492.69,-1.90735e-006],[[418,2],[493,2]]], +[456,[10852.4,7377.01,0],[[419,2],[494,2]]], [457,[11502.1,8060.12,0],[[420,2],[495,2]]], [458,[11544.5,8624.78,-1.90735e-006],[[421,2],[496,2]]], [459,[7397.87,6417.94,-9.53674e-007],[[422,2],[424,2],[459,2],[497,2]]], [460,[7213.76,6307.04,0],[[422,2],[498,2]]], [461,[7348.28,6153.94,3.8147e-006],[[422,2],[499,2]]], +[462,[7373.65,6869.9,0],[[423,2],[488,2]]], [463,[6500.54,6371.9,0],[[425,2],[500,2]]], [464,[5972.52,8050.71,1.27157e-006],[[426,2],[427,2],[501,2]]], [465,[6008.83,7646.06,0],[[428,2],[502,2]]], [466,[6510.89,9039.93,-3.8147e-006],[[429,2],[503,2]]], [467,[6721.24,9704.41,0],[[430,2],[504,2]]], +[468,[10101.5,10744.8,1.27157e-006],[[431,2],[505,2],[506,2]]], [469,[10080.3,10361,0],[[432,2],[490,2]]], [470,[9493.88,11601,-1.58946e-007],[[434,2],[507,2],[508,2]]], [471,[9842.47,10918.4,0],[[435,2],[509,2]]], [472,[8392.7,11265.4,3.8147e-006],[[437,2]]], [473,[8431,11777.3,-1.19209e-007],[[438,2],[510,2],[511,2],[512,2]]], +[474,[8152.55,11738.6,0],[[439,2],[511,2]]], [475,[7927.35,11860.8,5.43032],[[439,2],[513,2]]], [476,[7417.71,11186.4,9.53674e-007],[[440,2],[514,2]]], [477,[7315.28,11018.2,9.53674e-007],[[441,2],[514,2]]], [478,[6409.59,10281,0],[[442,2],[515,2]]], [479,[6738.27,10556.1,6.35783e-007],[[443,2],[516,2],[517,2]]], +[480,[10431.7,6748,0],[[444,2],[518,2]]], [481,[10370.6,6912.73,0],[[445,2],[518,2],[444,2]]], [482,[10347.5,6335.88,0],[[446,2],[519,2]]], [483,[9014.58,5031.19,0],[[447,2],[520,2],[521,2]]], [484,[8911.22,5238.19,0],[[448,2],[522,2]]], [485,[9613.05,5798.93,0],[[449,2],[523,2]]], +[486,[8004.7,5563.55,0],[[450,2],[524,2]]], [487,[7736.25,5620.3,0],[[450,2],[525,2],[526,2]]], [488,[7388.72,6932.42,0],[[451,2],[462,2]]], [489,[10631,10179.2,1.90735e-006],[[452,2],[527,2]]], [490,[10122.4,10279,-3.8147e-006],[[453,2],[469,2]]], [491,[11488.4,8901.95,0],[[454,2],[496,2]]], +[492,[11491.8,9217.79,0],[[454,2],[528,2]]], [493,[11311,9566.14,9.53674e-007],[[455,2],[529,2]]], [494,[10794.5,7257.51,0],[[456,2],[530,2]]], [495,[11602.6,8060.85,4.76837e-007],[[457,2],[531,2],[532,2],[533,2]]], [496,[11633.6,8723.67,0],[[458,2],[491,2],[534,2]]], [497,[7427.96,6286.45,-3.8147e-006],[[459,2],[535,2]]], +[498,[7185.98,6221.83,0],[[460,2],[536,2]]], [499,[7365.83,6111.47,0],[[461,2],[537,2],[538,2]]], [500,[6414.79,6254.5,0],[[463,2],[539,2]]], [501,[5881.8,7985.25,0],[[464,2],[540,2]]], [502,[5941.29,7528.55,0],[[465,2],[541,2]]], [503,[6472.4,9153.49,-1.90735e-006],[[466,2],[542,2]]], +[504,[6582.76,9733.7,0],[[467,2],[543,2]]], [505,[9955.18,10795.3,3.8147e-006],[[468,2],[509,2]]], [506,[10248.8,10860.6,-1.90735e-006],[[468,2],[544,2]]], [507,[9668.67,11537.9,0],[[470,2],[545,2]]], [508,[9365.6,11640.9,0],[[470,2],[546,2]]], [509,[9843.82,10842.2,0],[[471,2],[505,2]]], +[510,[8405.75,11921.4,3.42742],[[473,2],[547,2]]], [511,[8263.34,11753.9,0],[[473,2],[474,2]]], [512,[8614.93,11828.2,0],[[473,2],[548,2]]], [513,[7867.67,11968.1,0],[[475,2],[549,2]]], [514,[7313.94,11127.8,-3.17891e-007],[[476,2],[477,2],[550,2]]], [515,[6310.32,10196.6,0],[[478,2],[551,2],[552,2],[553,2]]], +[516,[6827.35,10695.9,0],[[479,2],[554,2]]], [517,[6622.39,10670.9,0],[[479,2],[555,2]]], [518,[10506.3,6850.18,0],[[480,2],[481,2],[556,2]]], [519,[10391.8,6309.35,0],[[482,2],[557,2],[558,2],[559,2]]], [520,[9052.52,4855.17,0],[[483,2],[560,2]]], [521,[9002.99,4860.6,1.52588e-005],[[483,2],[561,2]]], +[522,[8768.35,5240.33,1.52588e-005],[[484,2],[562,2]]], [523,[9703.86,5678.93,-7.62939e-006],[[485,2],[563,2]]], [524,[8129.25,5493.77,0],[[486,2],[564,2]]], [525,[7743.37,5491.85,7.62939e-006],[[487,2],[565,2]]], [526,[7649.62,5764.94,7.62939e-006],[[487,2],[566,2]]], [527,[10744.8,10344.7,0],[[489,2],[567,2]]], +[528,[11542.4,9361.36,-9.53674e-007],[[492,2],[568,2]]], [529,[11413.9,9623.89,0],[[493,2],[568,2],[569,2],[570,2]]], [530,[10729.5,7148.19,0],[[494,2],[571,2]]], [531,[11570.2,7927.26,0],[[495,2],[572,2]]], [532,[11768.6,8044.95,-3.8147e-006],[[495,2],[573,2]]], [533,[11636.3,8208.43,0],[[495,2],[574,2]]], +[534,[11680.1,8682.94,0],[[496,2],[575,2],[576,2]]], [535,[7463.47,6293.44,3.8147e-006],[[497,2]]], [536,[7127.61,6107.83,0],[[498,2],[577,2]]], [537,[7468.4,6001.32,-7.62939e-006],[[499,2],[566,2]]], [538,[7281.84,5991.43,-2.54313e-006],[[499,2],[578,2],[579,2]]], [539,[6319.45,6143.2,-1.52588e-005],[[500,2],[580,2]]], +[540,[5814.17,7835.03,0],[[501,2],[581,2]]], [541,[5924.6,7370.32,0],[[502,2],[582,2]]], [542,[6464.22,9186.38,0],[[503,2],[583,2],[584,2]]], [543,[6460.19,9793.96,0],[[504,2],[585,2]]], [544,[10345.8,10965.5,0],[[506,2],[586,2]]], [545,[9779.35,11491.9,-4.76837e-007],[[507,2],[587,2]]], +[546,[9230.78,11666.4,0],[[508,2],[588,2]]], [547,[8414.61,12005,0],[[510,2],[589,2]]], [548,[8763.91,11804.8,0],[[512,2],[590,2]]], [549,[7843.94,12008,0],[[513,2],[591,2],[592,2],[593,2]]], [550,[7156.18,11050.2,0],[[514,2],[594,2]]], [551,[6294.65,10350.6,0],[[515,2],[595,2]]], +[552,[6249.46,10159.9,-4.76837e-007],[[515,2],[552,2],[596,2],[597,2]]], [553,[6331.3,10023.6,0],[[515,2],[598,2],[585,2]]], [554,[6953.24,10806.9,0],[[516,2],[594,2]]], [555,[6584.64,10780.3,1.19209e-007],[[517,2],[599,2],[600,2],[601,2]]], [556,[10615.3,6997.62,0],[[518,2],[571,2]]], [557,[10557.6,6405.58,-3.8147e-006],[[519,2],[602,2]]], +[558,[10506.8,6210.21,0],[[519,2],[603,2]]], [559,[10318.3,6176.15,0],[[519,2],[604,2]]], [560,[9148.13,4753.94,1.52588e-005],[[520,2],[605,2]]], [561,[9012.22,4721.91,0],[[521,2],[606,2]]], [562,[8658.86,5152.73,0],[[522,2],[607,2]]], [563,[9795.86,5543.47,0],[[523,2],[608,2]]], +[564,[8214.04,5412.33,0],[[524,2],[609,2]]], [565,[7718.61,5389.52,0],[[525,2],[610,2],[611,2]]], [566,[7581.36,5852.94,0],[[526,2],[537,2],[612,2]]], [567,[10840.4,10484.4,0],[[527,2],[613,2]]], [568,[11526.1,9409.81,0],[[528,2],[529,2],[614,2]]], [569,[11585.1,9643.43,0],[[529,2],[615,2]]], +[570,[11333,9782.3,0],[[529,2],[616,2]]], [571,[10700.5,7091.74,0],[[530,2],[556,2],[617,2]]], [572,[11597.4,7813.8,0],[[531,2],[618,2]]], [573,[11920.8,8036.57,3.8147e-006],[[532,2],[619,2]]], [574,[11658.8,8342.53,0],[[533,2],[620,2]]], [575,[11664.1,8516.41,0],[[534,2],[620,2]]], +[576,[11834.5,8650.77,0],[[534,2],[621,2]]], [577,[7083.19,6031.38,0],[[536,2],[579,2]]], [578,[7278,5852.69,0],[[538,2],[622,2]]], [579,[7183.64,5903.18,0],[[538,2],[577,2],[623,2]]], [580,[6212.97,6088.21,0],[[539,2],[624,2]]], [581,[5761.2,7717.1,-3.8147e-006],[[540,2],[625,2]]], +[582,[5923.43,7195.64,0],[[541,2],[626,2]]], [583,[6437.89,9351.02,0],[[542,2],[627,2]]], [584,[6315.38,9282.83,0],[[542,2],[628,2]]], [585,[6353.95,9878.97,3.8147e-006],[[543,2],[553,2],[629,2],[598,2]]], [586,[10458,11080.5,9.53674e-007],[[544,2],[630,2]]], [587,[9909.05,11438.6,0],[[545,2],[631,2]]], +[588,[9110.14,11699.8,0],[[546,2],[590,2]]], [589,[8430.19,12017.5,0],[[547,2],[632,2],[633,2]]], [590,[8915.97,11770.1,0],[[548,2],[588,2]]], [591,[7703.64,11859.9,0],[[549,2],[634,2]]], [592,[7957.48,12131.5,0],[[549,2],[635,2]]], [593,[7732.71,12183.6,0],[[549,2],[636,2]]], +[594,[7053.88,10952.3,0],[[550,2],[554,2]]], [595,[6285.85,10399.7,3.17891e-007],[[551,2],[637,2],[638,2]]], [596,[6124.99,10241.2,0],[[552,2],[639,2],[596,2],[638,2]]], [597,[6217.5,10075,-1.90735e-006],[[552,2]]], [598,[6336.16,9888.88,-3.8147e-006],[[553,2],[585,2],[640,2]]], [599,[6555.06,10875.2,0],[[555,2]]], +[600,[6674.92,10827.4,-4.76837e-007],[[555,2],[641,2]]], [601,[6403.23,10697.2,-4.76837e-007],[[555,2],[642,2]]], [602,[10701.2,6484.3,0],[[557,2],[643,2]]], [603,[10547.3,6192.11,-9.53674e-007],[[558,2],[644,2],[645,2],[646,2]]], [604,[10263.2,6050.17,0],[[559,2],[647,2]]], [605,[9224.86,4719.08,0],[[560,2],[648,2]]], +[606,[9019.32,4579.23,0],[[561,2],[649,2]]], [607,[8536.35,5163.33,0],[[562,2],[650,2]]], [608,[9902.02,5569.76,0],[[563,2],[651,2]]], [609,[8289,5336.74,0],[[564,2],[650,2]]], [610,[7688.47,5187.67,2.54313e-006],[[565,2],[652,2],[653,2]]], [611,[7666.32,5386.81,0],[[565,2],[653,2],[654,2]]], +[612,[7641.8,5911.74,-3.8147e-006],[[566,2]]], [613,[10925.8,10604.7,0],[[567,2],[655,2]]], [614,[11586.1,9467.57,-1.90735e-006],[[568,2],[656,2]]], [615,[11604.8,9645.05,0],[[569,2],[615,2],[656,2],[657,2]]], [616,[11260.2,9905.24,0],[[570,2],[658,2],[659,2]]], [617,[10840,7017.58,0],[[571,2],[660,2]]], +[618,[11677.3,7751.44,0],[[572,2],[661,2]]], [619,[12037.9,8046.11,0],[[573,2],[662,2]]], [620,[11669.2,8382.89,0],[[574,2],[575,2],[663,2]]], [621,[11959.7,8615.43,0],[[576,2],[664,2]]], [622,[7309.86,5817.13,0],[[578,2],[622,2],[665,2]]], [623,[7127.8,5725.09,0],[[579,2],[666,2]]], +[624,[6063.52,6112.02,1.52588e-005],[[580,2],[667,2]]], [625,[5734.32,7601.63,0],[[581,2],[668,2]]], [626,[5945.58,7056.73,0],[[582,2],[669,2]]], [627,[6371.7,9479.55,0],[[583,2],[670,2]]], [628,[6259.12,9351.07,0],[[584,2],[671,2]]], [629,[6343.28,9891.58,1.90735e-006],[[585,2]]], +[630,[10542.4,11139.1,-2.38419e-007],[[586,2],[672,2],[673,2],[674,2]]], [631,[10044.5,11386.2,0],[[587,2],[675,2]]], [632,[8398.62,12175.5,0],[[589,2],[676,2]]], [633,[8567.24,12041.8,0],[[589,2],[677,2]]], [634,[7576.71,11723.5,4.76837e-007],[[591,2],[678,2]]], [635,[8060.07,12232.7,0],[[592,2],[679,2]]], +[636,[7696.93,12326,0],[[593,2],[680,2]]], [637,[6327.94,10581.1,4.76837e-007],[[595,2],[642,2]]], [638,[6185.63,10319.3,0],[[595,2],[596,2]]], [639,[5964.01,10166.1,0],[[596,2],[681,2]]], [640,[6352.82,9728.49,-3.8147e-006],[[598,2],[670,2]]], [641,[6725.46,10854.4,0],[[600,2]]], +[642,[6382.13,10690.5,0],[[601,2],[637,2],[682,2]]], [643,[10787.8,6617.13,0],[[602,2],[683,2]]], [644,[10439,6081.96,0],[[603,2],[684,2]]], [645,[10655.3,6233.91,0],[[603,2],[685,2]]], [646,[10666.3,6190.35,0],[[603,2],[686,2]]], [647,[10207.4,5955.6,0],[[604,2],[687,2]]], +[648,[9315.56,4788,0],[[605,2],[688,2]]], [649,[9030.18,4401.93,0],[[606,2],[689,2],[690,2],[691,2]]], [650,[8413.26,5242.09,0],[[607,2],[609,2]]], [651,[9933.45,5566.37,0],[[608,2],[692,2],[651,2],[693,2],[694,2]]], [652,[7731.13,5069.94,-7.62939e-006],[[610,2],[695,2]]], [653,[7600.12,5178.74,2.54313e-006],[[610,2],[611,2],[696,2]]], +[654,[7627.04,5419.13,2.54313e-006],[[611,2],[697,2],[698,2]]], [655,[10942.8,10617.8,0],[[613,2],[699,2],[700,2]]], [656,[11659,9534.49,0],[[614,2],[615,2],[701,2]]], [657,[11721.7,9724.13,0],[[615,2],[702,2]]], [658,[11391.3,10046.3,0],[[616,2],[703,2]]], [659,[11149.3,10080.3,0],[[616,2],[704,2]]], +[660,[10968,6959.98,0],[[617,2],[705,2]]], [661,[11793,7734.34,0],[[618,2],[706,2]]], [662,[12175,8099.3,0],[[619,2],[707,2]]], [663,[11758.7,8303.98,0],[[620,2],[708,2]]], [664,[12088.3,8631.19,0],[[621,2],[709,2]]], [665,[7385.86,5833.48,0],[[622,2],[710,2],[711,2]]], +[666,[7050.58,5633.65,0],[[623,2],[712,2]]], [667,[5912.09,6121.74,-1.52588e-005],[[624,2],[713,2]]], [668,[5662.14,7474.2,3.8147e-006],[[625,2],[714,2]]], [669,[5954.12,6918.68,7.62939e-006],[[626,2],[715,2]]], [670,[6343.4,9632.5,-3.8147e-006],[[627,2],[640,2]]], [671,[6201.65,9284.16,0],[[628,2],[716,2]]], +[672,[10407.5,11204.5,0],[[630,2],[717,2]]], [673,[10640.7,11028.3,-9.53674e-007],[[630,2],[718,2]]], [674,[10684.5,11218.8,0],[[630,2],[719,2]]], [675,[10185.9,11336.7,0],[[631,2],[717,2]]], [676,[8399.78,12190.7,0],[[632,2],[720,2],[721,2],[677,2]]], [677,[8541.77,12175.4,0],[[633,2],[676,2],[721,2]]], +[678,[7476.42,11621.7,0],[[634,2],[722,2]]], [679,[8197.29,12304.4,0],[[635,2],[720,2]]], [680,[7663.91,12407.4,0],[[636,2],[723,2]]], [681,[5861.73,10109.3,0],[[639,2],[724,2]]], [682,[6439.46,10838.9,0],[[642,2],[725,2]]], [683,[10860,6756.53,0],[[643,2],[705,2]]], +[684,[10465.5,5932.68,0],[[644,2],[726,2],[727,2]]], [685,[10721.9,6269.68,0],[[645,2],[728,2]]], [686,[10756.8,6113.17,0],[[646,2],[729,2]]], [687,[10102.6,5866.23,0],[[647,2],[730,2],[731,2]]], [688,[9407.89,4879.54,0],[[648,2],[732,2]]], [689,[8964.64,4303.5,0],[[649,2],[733,2],[734,2]]], +[690,[9202.54,4370.68,0],[[649,2],[735,2]]], [691,[8867.42,4399.49,-1.52588e-005],[[649,2],[736,2]]], [692,[9939.68,5708.23,0],[[651,2],[730,2]]], [693,[9872.41,5456,0],[[651,2],[737,2]]], [694,[10010.9,5480.88,-7.62939e-006],[[651,2],[738,2]]], [695,[7821.37,5016.27,7.62939e-006],[[652,2],[739,2]]], +[696,[7562.67,5057.96,0],[[653,2],[740,2],[696,2],[741,2]]], [697,[7560.25,5578.15,0],[[654,2],[710,2]]], [698,[7502.46,5381.26,0],[[654,2],[742,2]]], [699,[10859,10776.1,0],[[655,2],[743,2]]], [700,[11019.4,10439.3,0],[[655,2],[744,2]]], [701,[11831.9,9502.83,0],[[656,2],[745,2]]], +[702,[11825.7,9787.88,0],[[657,2],[746,2]]], [703,[11501.8,10168.8,1.58946e-007],[[658,2],[747,2],[748,2]]], [704,[11094.4,10230.8,0],[[659,2],[744,2]]], [705,[10978,6946.09,0],[[660,2],[683,2],[749,2]]], [706,[11803.7,7647.72,0],[[661,2],[750,2]]], [707,[12301.6,8148.24,0],[[662,2],[751,2]]], +[708,[11892.9,8397.41,0],[[663,2],[752,2]]], [709,[12247.7,8642.12,0],[[664,2],[753,2]]], [710,[7506.29,5686,0],[[665,2],[697,2]]], [711,[7364.08,5845.1,-2.54313e-006],[[665,2]]], [712,[6908.08,5567.99,0],[[666,2],[754,2]]], [713,[5778.86,6099.73,-1.52588e-005],[[667,2],[755,2]]], +[714,[5589.96,7367.56,7.62939e-006],[[668,2],[756,2]]], [715,[5935.07,6794.79,0],[[669,2],[757,2]]], [716,[6164.49,9296.25,-1.27157e-006],[[671,2],[716,2],[758,2]]], [717,[10307.6,11283.3,0],[[672,2],[675,2]]], [718,[10685.9,10987.2,3.17891e-007],[[673,2],[743,2],[759,2]]], [719,[10798.9,11258.7,-4.76837e-007],[[674,2],[760,2]]], +[720,[8357.35,12352.3,0],[[676,2],[679,2],[761,2]]], [721,[8516.52,12220.7,0],[[676,2],[677,2],[762,2]]], [722,[7373.13,11519.2,0],[[678,2],[763,2]]], [723,[7518.32,12487.1,0],[[680,2],[764,2]]], [724,[5723.49,10030.4,0],[[681,2],[765,2]]], [725,[6446.93,10904.2,4.56306],[[682,2],[725,2],[766,2]]], +[726,[10425.2,5785.06,1.27157e-006],[[684,2],[726,2],[767,2]]], [727,[10596.3,5975.08,0],[[684,2],[729,2],[768,2]]], [728,[10822.3,6178.02,0],[[685,2],[769,2],[729,2]]], [729,[10774.5,6071.41,0],[[686,2],[727,2],[728,2],[769,2]]], [730,[9969.14,5772.9,0],[[687,2],[692,2]]], [731,[10092.9,5777.96,-1.27157e-006],[[687,2],[731,2],[770,2]]], +[732,[9501.34,4841.08,0],[[688,2],[771,2]]], [733,[9067.46,4231.1,-1.52588e-005],[[689,2],[772,2]]], [734,[8770.84,4188.29,0],[[689,2],[773,2]]], [735,[9267.44,4354.8,5.08626e-006],[[690,2],[774,2],[775,2]]], [736,[8756.9,4280.86,0],[[691,2],[776,2]]], [737,[9736.52,5418.52,0],[[693,2],[777,2]]], +[738,[10109.9,5527.24,-3.8147e-006],[[694,2],[778,2],[770,2],[779,2]]], [739,[7912.07,4953.12,0],[[695,2],[780,2]]], [740,[7441.39,4958.79,0],[[696,2],[781,2]]], [741,[7620.89,4973.1,0],[[696,2],[782,2]]], [742,[7471.92,5367.97,0],[[698,2]]], [743,[10740.3,10912.4,-9.53674e-007],[[699,2],[718,2]]], +[744,[11067,10307.3,0],[[700,2],[704,2]]], [745,[11992.8,9416.96,-1.27157e-006],[[701,2],[783,2],[784,2]]], [746,[11834.8,9794.37,1.27157e-006],[[702,2],[785,2],[786,2]]], [747,[11609.5,10055.9,0],[[703,2],[785,2]]], [748,[11594.1,10284.9,0],[[703,2],[787,2]]], [749,[11077.5,7070.8,0],[[705,2],[788,2]]], +[750,[11749.2,7500.9,3.8147e-006],[[706,2],[789,2]]], [751,[12455.4,8206.65,0],[[707,2],[790,2]]], [752,[12048.9,8491.85,0],[[708,2],[791,2]]], [753,[12268.7,8635.17,1.27157e-006],[[709,2],[792,2],[793,2]]], [754,[6778.57,5518.25,0],[[712,2],[794,2]]], [755,[5652.41,6111.81,0],[[713,2],[795,2]]], +[756,[5537.25,7249.67,7.62939e-006],[[714,2],[796,2]]], [757,[5926.24,6756.79,0],[[715,2],[797,2],[798,2]]], [758,[6010.78,9377.01,0],[[716,2],[799,2]]], [759,[10811.1,11099.1,-4.76837e-007],[[718,2],[800,2],[760,2]]], [760,[10890.6,11195.2,0],[[719,2],[759,2],[800,2]]], [761,[8382.34,12501.9,0],[[720,2],[801,2]]], +[762,[8667.95,12314.6,0],[[721,2],[802,2]]], [763,[7234.55,11374.2,0],[[722,2],[803,2]]], [764,[7395.39,12546.9,0],[[723,2],[804,2]]], [765,[5605.6,9896.1,4.76837e-007],[[724,2],[805,2]]], [766,[6452.15,10982.4,1.81244],[[725,2],[806,2],[807,2],[808,2]]], [767,[10394,5676.42,0],[[726,2],[809,2]]], +[768,[10641.5,5833.34,0],[[727,2],[810,2]]], [769,[10860.7,6102.06,3.8147e-006],[[728,2],[729,2],[811,2]]], [770,[10109.1,5610.06,7.62939e-006],[[731,2],[738,2]]], [771,[9559.27,4954.62,0],[[732,2],[812,2],[813,2]]], [772,[9176.15,4137.96,0],[[733,2],[814,2]]], [773,[8651.87,4115.44,-5.08626e-006],[[734,2],[815,2],[816,2]]], +[774,[9427.87,4341.62,0],[[735,2],[817,2]]], [775,[9288.98,4251.73,0],[[735,2],[818,2],[775,2],[819,2]]], [776,[8646.57,4334.6,0],[[736,2],[820,2]]], [777,[9577.64,5338.53,0],[[737,2],[821,2]]], [778,[10141.8,5374.78,0],[[738,2],[822,2]]], [779,[10261.3,5592.42,0],[[738,2],[809,2]]], +[780,[8020.19,4905.12,0],[[739,2],[823,2]]], [781,[7327.79,4904.74,0],[[740,2],[824,2]]], [782,[7534.81,4863.91,0],[[741,2],[825,2]]], [783,[12123.1,9292.96,-7.62939e-006],[[745,2],[826,2]]], [784,[12085.9,9504.24,-2.54313e-006],[[745,2],[827,2],[828,2]]], [785,[11733.9,9916.82,-1.90735e-006],[[746,2],[747,2]]], +[786,[11951.1,9673.5,0],[[746,2],[828,2]]], [787,[11681.2,10383.9,0],[[748,2],[829,2]]], [788,[11171.8,7083.57,0],[[749,2],[830,2]]], [789,[11711.4,7384.68,-7.62939e-006],[[750,2],[831,2]]], [790,[12597.1,8267.88,2.54313e-006],[[751,2],[832,2],[833,2]]], [791,[12195.2,8544.34,0],[[752,2],[792,2]]], +[792,[12308.6,8586.88,0],[[753,2],[791,2],[834,2]]], [793,[12333.4,8766.48,0],[[753,2],[835,2]]], [794,[6661.39,5460.54,0],[[754,2],[836,2]]], [795,[5635.11,6115.82,0],[[755,2],[837,2],[838,2]]], [796,[5449.23,7164.66,-7.62939e-006],[[756,2],[839,2]]], [797,[5856.68,6695.84,-1.90735e-006],[[757,2],[840,2],[797,2],[798,2]]], +[798,[5963.3,6726.79,0],[[757,2],[797,2],[841,2]]], [799,[5876.75,9403.01,0],[[758,2],[842,2]]], [800,[10907,11163.1,-1.19209e-007],[[759,2],[760,2],[843,2],[844,2]]], [801,[8422.25,12642.6,3.8147e-006],[[761,2],[845,2]]], [802,[8802.26,12321.4,0],[[762,2],[846,2]]], [803,[7096.85,11231,4.76837e-007],[[763,2],[847,2]]], +[804,[7334.33,12565.2,2.54313e-006],[[764,2],[848,2],[849,2]]], [805,[5519.3,9777.72,0],[[765,2],[850,2]]], [806,[6331.32,10969.7,0],[[766,2],[851,2],[852,2]]], [807,[6454.19,11150,0],[[766,2],[853,2]]], [808,[6634.44,11077.4,0],[[766,2],[854,2]]], [809,[10374.8,5644.72,0],[[767,2],[779,2],[855,2]]], +[810,[10703.6,5719.09,0],[[768,2],[856,2]]], [811,[11017.2,5938.23,0],[[769,2],[857,2]]], [812,[9623.62,4772.27,0],[[771,2],[858,2]]], [813,[9519.52,5140.2,0],[[771,2],[821,2]]], [814,[9196.28,4034.01,0],[[772,2],[859,2]]], [815,[8573.69,4079.8,0],[[773,2],[860,2],[861,2]]], +[816,[8621.94,3949.03,1.52588e-005],[[773,2],[862,2]]], [817,[9446.54,4340.62,0],[[774,2],[863,2],[864,2]]], [818,[9314.12,4055.08,0],[[775,2],[865,2]]], [819,[9360.12,4118.64,-1.52588e-005],[[775,2],[866,2]]], [820,[8565.34,4391.48,0],[[776,2],[867,2]]], [821,[9513.91,5212.95,0],[[777,2],[813,2]]], +[822,[10152.9,5314.08,2.54313e-006],[[778,2],[868,2],[822,2],[869,2]]], [823,[8127.22,4934.79,0],[[780,2],[870,2]]], [824,[7211.41,4851.31,7.62939e-006],[[781,2],[871,2]]], [825,[7461.4,4757.47,0],[[782,2],[872,2]]], [826,[12227.6,9185.29,0],[[783,2],[873,2]]], [827,[12217.3,9653.88,0],[[784,2],[874,2]]], +[828,[12012.7,9606.19,0],[[784,2],[786,2]]], [829,[11708.2,10416.7,0],[[787,2],[875,2],[876,2]]], [830,[11326.2,7113.13,0],[[788,2],[877,2]]], [831,[11698.9,7249.77,0],[[789,2],[878,2]]], [832,[12694.9,8165.77,0],[[790,2],[879,2]]], [833,[12498.1,8384.08,0],[[790,2],[834,2]]], +[834,[12426,8460.07,0],[[792,2],[833,2]]], [835,[12341.6,8790.57,0],[[793,2],[880,2],[881,2]]], [836,[6552.98,5398.66,-1.52588e-005],[[794,2],[882,2]]], [837,[5583.49,5979.84,-1.52588e-005],[[795,2],[883,2]]], [838,[5689.94,6284.35,0],[[795,2],[884,2]]], [839,[5390.7,7032.27,0],[[796,2],[885,2]]], +[840,[5830.13,6675.65,0],[[797,2],[840,2],[886,2]]], [841,[6109.83,6727.04,0],[[798,2],[887,2]]], [842,[5723.13,9392.22,1.90735e-006],[[799,2],[888,2]]], [843,[10972.2,11027.5,0],[[800,2],[889,2]]], [844,[11018.7,11288.9,4.76837e-007],[[800,2],[890,2]]], [845,[8481.02,12768.3,0],[[801,2],[845,2]]], +[846,[8947.25,12313.7,0],[[802,2],[891,2]]], [847,[6998.9,11126.4,0],[[803,2],[892,2]]], [848,[7355.51,12753.5,0],[[804,2],[893,2]]], [849,[7254.95,12403.6,0],[[804,2],[894,2]]], [850,[5436.11,9651.94,4.76837e-007],[[805,2],[895,2]]], [851,[6315.67,11088.1,0],[[806,2],[896,2]]], +[852,[6142.27,10957.9,4.76837e-007],[[806,2],[897,2]]], [853,[6486.83,11267.2,-3.17891e-007],[[807,2],[898,2],[899,2]]], [854,[6683.88,11103.6,0],[[808,2],[892,2],[899,2]]], [855,[10394.1,5492.23,0],[[809,2],[900,2]]], [856,[10760.7,5587.77,0],[[810,2],[901,2]]], [857,[11116.5,5827.35,0],[[811,2],[902,2]]], +[858,[9568.28,4667.04,1.52588e-005],[[812,2],[864,2]]], [859,[9202.97,3892.77,-1.52588e-005],[[814,2],[903,2]]], [860,[8504.33,4181.26,0],[[815,2],[904,2]]], [861,[8396.63,3978.46,0],[[815,2],[905,2]]], [862,[8657.57,3811.66,0],[[816,2],[906,2]]], [863,[9616.62,4316.82,-1.52588e-005],[[817,2],[907,2]]], +[864,[9470.15,4516.93,0],[[817,2],[858,2]]], [865,[9388.72,3893.86,0],[[818,2],[908,2]]], [866,[9458.71,4076.91,0],[[819,2],[909,2]]], [867,[8477.9,4383.45,0],[[820,2],[910,2]]], [868,[10149.4,5333.41,3.8147e-006],[[822,2]]], [869,[10190.4,5108.4,0],[[822,2],[911,2]]], +[870,[8233.85,4926,0],[[823,2],[912,2]]], [871,[7084.82,4751.03,0],[[824,2],[913,2]]], [872,[7385.32,4657.11,0],[[825,2],[914,2]]], [873,[12300.5,9061.15,0],[[826,2],[881,2]]], [874,[12354.8,9813.6,0],[[827,2],[915,2]]], [875,[11795.8,10517.1,0],[[829,2],[916,2],[917,2]]], +[876,[11603.8,10465.6,1.19209e-007],[[829,2],[918,2]]], [877,[11435.3,7173.77,0],[[830,2],[919,2],[920,2]]], [878,[11704,7201.73,0],[[831,2],[921,2],[922,2],[919,2]]], [879,[12777.6,8045.22,0],[[832,2]]], [880,[12516.5,8805.44,0],[[835,2],[923,2]]], [881,[12334.7,8927.31,0],[[835,2],[873,2]]], +[882,[6409.03,5339.28,0],[[836,2],[924,2]]], [883,[5585.32,5827.8,-1.52588e-005],[[837,2],[925,2]]], [884,[5681.74,6420.07,0],[[838,2],[926,2]]], [885,[5326.35,6943.68,0],[[839,2],[927,2],[928,2]]], [886,[5713.56,6675.61,0],[[840,2],[926,2]]], [887,[6236.39,6807.8,0],[[841,2],[929,2]]], +[888,[5590.1,9409.91,0],[[842,2],[930,2]]], [889,[11084,10943.6,0],[[843,2],[931,2]]], [890,[11092.3,11385.3,-4.76837e-007],[[844,2],[932,2]]], [891,[9083.21,12296.1,0],[[846,2],[933,2]]], [892,[6881.36,11108.6,2.38419e-007],[[847,2],[854,2],[934,2]]], [893,[7355.49,12786.9,-7.62939e-006],[[848,2]]], +[894,[7181.48,12287.1,0],[[849,2],[935,2]]], [895,[5402.36,9544.39,0],[[850,2],[936,2],[930,2]]], [896,[6234.21,11192,0],[[851,2],[937,2]]], [897,[6015.75,10938.2,0],[[852,2],[938,2]]], [898,[6454.92,11377.5,1.90735e-006],[[853,2],[939,2]]], [899,[6621.39,11196.8,0],[[853,2],[854,2]]], +[900,[10395.4,5307.81,0],[[855,2],[940,2]]], [901,[10745.9,5434.26,0],[[856,2],[941,2]]], [902,[11188.5,5761.11,0],[[857,2],[942,2],[943,2]]], [903,[9240.87,3783.17,0],[[859,2],[944,2]]], [904,[8429.21,4328.35,0],[[860,2],[945,2]]], [905,[8288.36,3916.02,0],[[861,2],[946,2]]], +[906,[8632.78,3637.65,0],[[862,2],[947,2]]], [907,[9753.89,4298.8,-1.52588e-005],[[863,2],[948,2]]], [908,[9391.77,3876.52,0],[[865,2],[908,2],[949,2]]], [909,[9526.53,4081.02,5.08626e-006],[[866,2],[950,2],[951,2]]], [910,[8460,4513.23,0],[[867,2],[952,2]]], [911,[10219,4951.2,0],[[869,2],[953,2]]], +[912,[8320.42,4769.24,0],[[870,2],[952,2]]], [913,[6996.71,4692.65,1.52588e-005],[[871,2],[954,2]]], [914,[7342.6,4559.82,-1.52588e-005],[[872,2],[955,2]]], [915,[12457.9,9930.78,0],[[874,2],[956,2]]], [916,[11773.1,10675.6,0],[[875,2],[957,2]]], [917,[11978.2,10514.6,0],[[875,2],[958,2]]], +[918,[11561.4,10566.5,2.38419e-007],[[876,2],[959,2]]], [919,[11570.1,7224.07,0],[[877,2],[878,2]]], [920,[11433.4,7011.29,0],[[877,2],[960,2]]], [921,[11731.6,7023.03,0],[[878,2],[961,2]]], [922,[11858.5,7275.93,0],[[878,2],[962,2]]], [923,[12672.4,8805.33,3.8147e-006],[[880,2],[963,2]]], +[924,[6279.81,5327.92,-1.52588e-005],[[882,2],[964,2]]], [925,[5577.56,5797.93,-5.08626e-006],[[883,2],[965,2],[966,2]]], [926,[5659.11,6581.61,0],[[884,2],[886,2]]], [927,[5186.99,7025.5,0],[[885,2],[967,2]]], [928,[5302.33,6745.85,0],[[885,2],[968,2]]], [929,[6278.22,6837.21,-7.62939e-006],[[887,2]]], +[930,[5464.47,9441.13,0],[[888,2],[895,2],[936,2]]], [931,[11243.5,10853.4,0],[[889,2],[969,2]]], [932,[11098.9,11408,-1.19209e-007],[[890,2],[970,2],[971,2],[972,2]]], [933,[9194.13,12231.2,1.90735e-006],[[891,2],[973,2]]], [934,[6971.69,11231.5,0],[[892,2],[974,2]]], [935,[7085.53,12165.3,0],[[894,2],[975,2]]], +[936,[5387.16,9464.81,1.19209e-007],[[895,2],[930,2],[976,2],[977,2]]], [937,[6157.22,11251.6,3.17891e-007],[[896,2],[978,2],[979,2]]], [938,[5931.53,10919.7,0],[[897,2],[980,2],[981,2]]], [939,[6412.78,11478.9,-4.76837e-007],[[898,2],[978,2],[982,2],[983,2]]], [940,[10404.7,5157.08,0],[[900,2],[984,2]]], [941,[10750.7,5275.52,0],[[901,2],[985,2]]], +[942,[11170.1,5619.25,0],[[902,2],[986,2]]], [943,[11383,5737.42,0],[[902,2],[987,2]]], [944,[9292.53,3681.39,0],[[903,2],[988,2]]], [945,[8425.51,4471.69,0],[[904,2],[952,2]]], [946,[8183.66,3859.66,0],[[905,2],[989,2]]], [947,[8484.41,3657.01,0],[[906,2],[990,2]]], +[948,[9892.94,4282.23,1.52588e-005],[[907,2],[991,2]]], [949,[9385.08,3728.75,-1.52588e-005],[[908,2],[992,2]]], [950,[9581.95,3922.76,0],[[909,2],[993,2]]], [951,[9689.56,4072.1,0],[[909,2],[994,2]]], [952,[8365.3,4624.48,3.8147e-006],[[910,2],[912,2],[945,2],[995,2]]], [953,[10250,4792.2,0],[[911,2],[996,2]]], +[954,[6855.63,4762.66,0],[[913,2],[997,2]]], [955,[7372.48,4508.78,0],[[914,2],[998,2],[999,2]]], [956,[12566.2,10058.8,0],[[915,2],[1000,2]]], [957,[11751.4,10801.8,0],[[916,2],[1001,2]]], [958,[12066.2,10564.4,0],[[917,2],[1002,2]]], [959,[11526.1,10654.9,0],[[918,2],[1003,2]]], +[960,[11402.7,6843.33,0],[[920,2],[1004,2]]], [961,[11772.5,6886.87,7.62939e-006],[[921,2],[1005,2]]], [962,[11923.6,7324.21,-1.27157e-006],[[922,2],[1006,2],[1007,2]]], [963,[12774.7,8798.48,0],[[923,2]]], [964,[6126.94,5316.37,0],[[924,2],[1008,2]]], [965,[5458.38,5832.17,3.8147e-006],[[925,2],[1009,2],[965,2],[1010,2]]], +[966,[5588.44,5707.08,0],[[925,2],[1011,2],[1012,2]]], [967,[5086.86,7137.39,7.62939e-006],[[927,2],[1013,2]]], [968,[5310.45,6601.78,0],[[928,2],[1014,2]]], [969,[11341,10730.1,0],[[931,2],[1003,2]]], [970,[11088,11550.2,0],[[932,2],[1015,2]]], [971,[10922,11388.8,0],[[932,2],[1016,2]]], +[972,[11215.4,11540.7,0],[[932,2],[1017,2]]], [973,[9347.92,12211,-1.90735e-006],[[933,2],[1018,2]]], [974,[6933.58,11335,0],[[934,2],[1019,2]]], [975,[6970.19,12053.4,0],[[935,2],[1020,2]]], [976,[5248.76,9531.05,4.48961],[[936,2],[1021,2]]], [977,[5280.25,9323.98,0],[[936,2],[1022,2]]], +[978,[6280.87,11375,0],[[937,2],[939,2]]], [979,[6062.17,11188.4,0],[[937,2],[981,2],[979,2],[1023,2]]], [980,[5832.95,10786.2,-9.53674e-007],[[938,2],[1024,2]]], [981,[6014.03,11091.3,0],[[938,2],[979,2]]], [982,[6340.61,11631.1,0],[[939,2],[1025,2]]], [983,[6554.19,11600.6,0],[[939,2],[1026,2]]], +[984,[10401.8,5040.97,0],[[940,2],[1027,2]]], [985,[10817.1,5157.56,0],[[941,2],[1028,2]]], [986,[11162.5,5494.57,0],[[942,2],[1029,2]]], [987,[11466.4,5668.26,0],[[943,2],[1030,2]]], [988,[9284.57,3556.69,-2.54313e-006],[[944,2],[1031,2],[1032,2]]], [989,[8106.92,3839.8,0],[[946,2],[1033,2],[1034,2]]], +[990,[8450.64,3538.72,0],[[947,2],[1035,2]]], [991,[10041.4,4261.09,0],[[948,2],[1036,2]]], [992,[9412.48,3574.94,0],[[949,2],[1037,2]]], [993,[9632.92,3799.47,0],[[950,2],[1038,2]]], [994,[9825.39,4059.53,0],[[951,2],[1039,2]]], [995,[8239.64,4520.56,0],[[952,2],[1040,2]]], +[996,[10276.6,4628.02,0],[[953,2],[1041,2]]], [997,[6800.06,4705.81,0],[[954,2],[1042,2]]], [998,[7396.31,4318.33,0],[[955,2],[1043,2]]], [999,[7529.2,4615.32,0],[[955,2],[1044,2]]], [1000,[12653.6,10163.4,0],[[956,2],[1045,2]]], [1001,[11760.7,10884.9,0],[[957,2],[1046,2]]], +[1002,[12159,10642.6,0],[[958,2],[1047,2],[1048,2]]], [1003,[11390.9,10676.4,0],[[959,2],[969,2]]], [1004,[11379.9,6667.13,0],[[960,2],[1049,2]]], [1005,[11890.8,6839.77,0],[[961,2],[1050,2]]], [1006,[12058.5,7425.35,0],[[962,2],[1051,2]]], [1007,[11868.9,7384.85,0],[[962,2]]], +[1008,[6003.91,5254.9,-1.52588e-005],[[964,2],[1052,2]]], [1009,[5295.88,5916.58,0],[[965,2],[1053,2]]], [1010,[5373.76,5680.26,0],[[965,2],[1054,2]]], [1011,[5562.37,5564.67,1.52588e-005],[[966,2],[1055,2]]], [1012,[5752.64,5739.58,0],[[966,2],[1056,2]]], [1013,[5063.89,7241.96,0],[[967,2],[1057,2]]], +[1014,[5217.95,6507.16,0],[[968,2],[1058,2]]], [1015,[11076.8,11675.9,0],[[970,2],[1059,2]]], [1016,[10759.2,11369,0],[[971,2],[1060,2]]], [1017,[11332.2,11524.6,-9.53674e-007],[[972,2],[1061,2]]], [1018,[9479.5,12180.6,0],[[973,2],[1062,2]]], [1019,[6840.15,11443.8,0],[[974,2],[1063,2]]], +[1020,[6862.94,11962,0],[[975,2],[1064,2]]], [1021,[5222.6,9549.3,1.19209e-007],[[976,2],[1021,2],[1065,2],[1066,2]]], [1022,[5197.61,9195.62,0],[[977,2],[1067,2]]], [1023,[5992.17,11327.6,0],[[979,2],[1068,2]]], [1024,[5742.97,10672.8,0],[[980,2],[1069,2]]], [1025,[6286.49,11741.9,0],[[982,2],[1070,2],[1025,2],[1071,2]]], +[1026,[6652.7,11668.3,6.35783e-007],[[983,2],[1072,2],[1063,2]]], [1027,[10445.7,4867.55,0],[[984,2],[1073,2]]], [1028,[10831.2,4991.03,0],[[985,2],[1074,2]]], [1029,[11174.7,5360.23,7.62939e-006],[[986,2],[1075,2]]], [1030,[11533.2,5695.78,0],[[987,2],[1076,2]]], [1031,[9316.73,3404.25,0],[[988,2],[1077,2],[1037,2]]], +[1032,[9137.01,3533.32,0],[[988,2],[1078,2]]], [1033,[7876.91,3796.98,0],[[989,2],[1079,2]]], [1034,[8138.28,3712.6,0],[[989,2],[1080,2]]], [1035,[8500.49,3438.58,0],[[990,2],[1081,2],[1082,2]]], [1036,[10094.2,4246.87,-5.08626e-006],[[991,2],[1083,2],[1084,2]]], [1037,[9410.62,3437.59,-2.54313e-006],[[992,2],[1031,2],[1077,2],[1085,2]]], +[1038,[9697.27,3664.97,0],[[993,2],[1086,2]]], [1039,[9959.52,4053.32,0],[[994,2],[1087,2],[1083,2]]], [1040,[8171.85,4397.71,1.52588e-005],[[995,2],[1088,2]]], [1041,[10300.3,4481.76,0],[[996,2],[1089,2]]], [1042,[6819.95,4574.6,1.52588e-005],[[997,2],[1090,2]]], [1043,[7395.77,4182.44,0],[[998,2],[1091,2]]], +[1044,[7633.58,4553.05,0],[[999,2],[1092,2]]], [1045,[12535.8,10253.9,1.90735e-006],[[1000,2],[1093,2]]], [1046,[11871.9,10905.6,0],[[1001,2],[1094,2]]], [1047,[12277.6,10560.8,0],[[1002,2],[1095,2]]], [1048,[12091.6,10721.4,-2.38419e-007],[[1002,2],[1096,2]]], [1049,[11327.2,6541.29,0],[[1004,2],[1097,2]]], +[1050,[12005.3,6800.44,0],[[1005,2],[1098,2]]], [1051,[12154.1,7516.06,7.62939e-006],[[1006,2],[1099,2]]], [1052,[5946.73,5173.47,0],[[1008,2],[1100,2],[1101,2],[1052,2]]], [1053,[5202.57,5926.17,0],[[1009,2],[1102,2]]], [1054,[5232.32,5582.77,-3.8147e-006],[[1010,2],[1103,2],[1104,2],[1105,2]]], [1055,[5553.86,5408.39,0],[[1011,2],[1106,2]]], +[1056,[5776.88,5761.01,-5.08626e-006],[[1012,2],[1056,2],[1107,2]]], [1057,[5027.78,7396.9,0],[[1013,2],[1108,2]]], [1058,[5037.8,6417.92,0],[[1014,2],[1109,2]]], [1059,[11064.1,11811.7,0],[[1015,2],[1110,2]]], [1060,[10644.4,11409.5,0],[[1016,2],[1111,2]]], [1061,[11345.4,11524.1,-3.17891e-007],[[1017,2],[1061,2],[1112,2]]], +[1062,[9608.91,12092.4,0],[[1018,2],[1113,2]]], [1063,[6755.31,11544.2,0],[[1019,2],[1026,2]]], [1064,[6850.06,11935.5,0],[[1020,2],[1114,2],[1072,2]]], [1065,[5185.05,9508.55,1.58946e-007],[[1021,2],[1065,2],[1115,2]]], [1066,[5124.07,9695.15,-9.53674e-007],[[1021,2],[1116,2]]], [1067,[5126.59,9042.39,0],[[1022,2],[1117,2]]], +[1068,[5929.15,11451.8,0],[[1023,2],[1118,2]]], [1069,[5626.35,10549.3,0],[[1024,2],[1119,2]]], [1070,[6276.28,11805.1,0],[[1025,2],[1120,2],[1121,2]]], [1071,[6114.17,11673.3,0],[[1025,2],[1122,2]]], [1072,[6742.89,11793.3,-1.90735e-006],[[1026,2],[1064,2]]], [1073,[10439,4754.89,0],[[1027,2],[1123,2]]], +[1074,[10860.3,4837.07,1.52588e-005],[[1028,2],[1124,2]]], [1075,[11183,5239.02,0],[[1029,2],[1125,2]]], [1076,[11609.9,5630.45,0],[[1030,2],[1126,2]]], [1077,[9351.31,3354,0],[[1037,2],[1127,2],[1128,2],[1077,2]]], [1078,[8965.94,3505.84,0],[[1032,2],[1129,2]]], [1079,[7854.25,3791.57,-5.08626e-006],[[1033,2],[1130,2],[1131,2]]], +[1080,[8166.05,3563.74,0],[[1034,2],[1132,2]]], [1081,[8341.1,3401.52,0],[[1035,2],[1133,2],[1132,2]]], [1082,[8607.93,3445.77,0],[[1035,2],[1129,2],[1134,2]]], [1083,[10069.4,4081.12,0],[[1036,2],[1039,2],[1087,2]]], [1084,[10292.4,4221.89,1.52588e-005],[[1036,2],[1135,2]]], [1085,[9543.69,3438.91,0],[[1037,2],[1136,2]]], +[1086,[9791.04,3589.74,0],[[1038,2],[1137,2]]], [1087,[10061.8,4053.88,0],[[1039,2],[1083,2],[1138,2]]], [1088,[8149.28,4270.67,-1.52588e-005],[[1040,2],[1139,2]]], [1089,[10324.3,4346.48,0],[[1041,2],[1140,2],[1135,2],[1141,2]]], [1090,[6839.76,4438.13,0],[[1042,2],[1142,2]]], [1091,[7387.81,3986.94,0],[[1043,2],[1143,2]]], +[1092,[7728.51,4409.46,0],[[1044,2],[1144,2]]], [1093,[12440.4,10370.9,0],[[1045,2],[1095,2]]], [1094,[11993.1,10938.7,0],[[1046,2],[1145,2]]], [1095,[12367.5,10460.9,9.53674e-007],[[1047,2],[1093,2]]], [1096,[12070.8,10865.1,0],[[1048,2],[1145,2]]], [1097,[11237.2,6430.09,7.62939e-006],[[1049,2],[1146,2]]], +[1098,[12072,6692.83,0],[[1050,2],[1147,2]]], [1099,[12298.2,7590.91,0],[[1051,2],[1148,2]]], [1100,[5804.18,5093.83,0],[[1052,2],[1149,2],[1150,2]]], [1101,[5965.8,5183.32,0],[[1052,2]]], [1102,[5097.51,6014.97,0],[[1053,2],[1151,2]]], [1103,[5276.01,5523.11,-5.08626e-006],[[1054,2],[1152,2],[1153,2]]], +[1104,[5074.2,5445.21,-1.52588e-005],[[1054,2],[1154,2]]], [1105,[5143.56,5699.22,0],[[1054,2],[1105,2],[1155,2]]], [1106,[5568.81,5256.14,0],[[1055,2],[1156,2]]], [1107,[5772.23,5789.04,0],[[1056,2]]], [1108,[4946.74,7478.8,0],[[1057,2],[1157,2]]], [1109,[4868.14,6335.8,1.52588e-005],[[1058,2],[1158,2]]], +[1110,[11049.5,11981.8,0],[[1059,2],[1159,2]]], [1111,[10534,11493.5,0],[[1060,2],[1160,2]]], [1112,[11504.2,11546.2,1.90735e-006],[[1061,2],[1161,2]]], [1113,[9641.16,12063.1,0],[[1062,2],[1162,2],[1163,2]]], [1114,[6940.67,11861.4,-9.53674e-007],[[1064,2]]], [1115,[5065.49,9602.81,0],[[1065,2],[1164,2]]], +[1116,[5072.44,9776.7,0],[[1066,2],[1165,2],[1166,2]]], [1117,[5074.85,8922.27,9.53674e-007],[[1067,2],[1167,2]]], [1118,[5878.19,11569,-1.27157e-006],[[1068,2],[1122,2],[1168,2]]], [1119,[5584,10532.3,0],[[1069,2],[1169,2],[1170,2]]], [1120,[6196.54,11978.9,0],[[1070,2],[1171,2]]], [1121,[6396.53,11935.9,0],[[1070,2],[1172,2]]], +[1122,[6080.98,11663.6,1.27157e-006],[[1071,2],[1118,2],[1173,2]]], [1123,[10575.9,4655.18,0],[[1073,2],[1174,2]]], [1124,[10893.1,4714.33,0],[[1074,2],[1175,2]]], [1125,[11210.2,5135.41,-7.62939e-006],[[1075,2],[1176,2]]], [1126,[11696.1,5474.9,-7.62939e-006],[[1076,2],[1177,2]]], [1127,[9271.38,3192.68,0],[[1077,2],[1178,2]]], +[1128,[9355.1,3359.32,2.54313e-006],[[1077,2]]], [1129,[8829.93,3483.92,-1.52588e-005],[[1078,2],[1082,2]]], [1130,[7661.3,3759.88,0],[[1079,2],[1179,2]]], [1131,[7863.23,3654.61,0],[[1079,2],[1180,2]]], [1132,[8215.78,3411.43,0],[[1080,2],[1081,2],[1133,2]]], [1133,[8220.44,3389.39,0],[[1081,2],[1132,2],[1181,2]]], +[1134,[8707.71,3373.04,0],[[1082,2],[1182,2]]], [1135,[10346.5,4214.77,5.08626e-006],[[1084,2],[1089,2],[1183,2],[1141,2],[1135,2]]], [1136,[9684.77,3487.71,0],[[1085,2],[1184,2]]], [1137,[9842.57,3542.38,1.52588e-005],[[1086,2],[1185,2],[1184,2]]], [1138,[10036.5,3875.15,0],[[1087,2],[1186,2]]], [1139,[8078.98,4256.9,0],[[1088,2],[1187,2]]], +[1140,[10482,4376.37,0],[[1089,2],[1188,2]]], [1141,[10341.2,4230.29,-1.52588e-005],[[1135,2],[1089,2]]], [1142,[6873.06,4300.88,0],[[1090,2],[1189,2]]], [1143,[7382.4,3921.24,0],[[1091,2],[1179,2],[1190,2]]], [1144,[7719.37,4289.21,0],[[1092,2],[1191,2]]], [1145,[12056.1,10944.4,-4.76837e-007],[[1094,2],[1096,2]]], +[1146,[11108.3,6359.46,0],[[1097,2],[1192,2]]], [1147,[12063,6549.52,0],[[1098,2],[1193,2]]], [1148,[12455.7,7647.77,0],[[1099,2],[1194,2]]], [1149,[5766.72,5162.78,0],[[1100,2]]], [1150,[5785.67,5020.33,0],[[1100,2],[1195,2],[1196,2],[1150,2]]], [1151,[4982,6080.62,1.52588e-005],[[1102,2],[1197,2]]], +[1152,[5340.66,5443.1,5.08626e-006],[[1103,2],[1198,2],[1199,2]]], [1153,[5172.52,5429.51,-1.52588e-005],[[1103,2]]], [1154,[5057.06,5428.36,-3.8147e-006],[[1104,2],[1200,2],[1154,2],[1201,2]]], [1155,[5037.36,5830.31,0],[[1105,2],[1202,2]]], [1156,[5620.05,5107.08,0],[[1106,2],[1195,2]]], [1157,[4938.03,7487.43,0],[[1108,2],[1203,2],[1204,2]]], +[1158,[4851.76,6334.55,5.08626e-006],[[1109,2],[1205,2],[1206,2]]], [1159,[11036.5,12131.4,0],[[1110,2],[1207,2]]], [1160,[10537.3,11627.7,-4.76837e-007],[[1111,2],[1208,2]]], [1161,[11618.6,11565.9,0],[[1112,2],[1209,2]]], [1162,[9739.2,12199,0],[[1113,2],[1210,2]]], [1163,[9538.24,11892.7,0],[[1113,2],[1211,2]]], +[1164,[4974.05,9716.4,0],[[1115,2],[1212,2]]], [1165,[5029.63,9913.7,0],[[1116,2],[1213,2]]], [1166,[5096.46,9886.23,0],[[1116,2],[1214,2]]], [1167,[4989.13,8785.36,0],[[1117,2],[1215,2]]], [1168,[5778.43,11650,0],[[1118,2],[1216,2],[1217,2]]], [1169,[5491.02,10631.7,0],[[1119,2],[1218,2]]], +[1170,[5461.37,10439.9,0],[[1119,2],[1219,2]]], [1171,[6137.96,12119.6,0],[[1120,2],[1220,2]]], [1172,[6516.94,12064.2,0],[[1121,2],[1221,2]]], [1173,[5948.65,11789.7,-3.8147e-006],[[1122,2],[1222,2]]], [1174,[10553.9,4491.71,1.52588e-005],[[1123,2],[1188,2]]], [1175,[10939.2,4611.04,0],[[1124,2],[1223,2]]], +[1176,[11213.8,5009.3,0],[[1125,2],[1224,2]]], [1177,[11810,5385.26,0],[[1126,2],[1225,2]]], [1178,[9224.75,3085.55,-5.08626e-006],[[1127,2],[1226,2],[1227,2]]], [1179,[7537.42,3810.28,1.52588e-005],[[1130,2],[1143,2]]], [1180,[7864.13,3579.69,-5.08626e-006],[[1131,2],[1228,2],[1229,2]]], [1181,[8224.35,3245.75,0],[[1133,2],[1230,2]]], +[1182,[8785.27,3247.61,0],[[1134,2],[1231,2]]], [1183,[10496.3,4190.29,0],[[1135,2],[1232,2]]], [1184,[9818.77,3521.21,0],[[1136,2],[1137,2],[1185,2]]], [1185,[9847.42,3528.2,3.8147e-006],[[1137,2],[1184,2],[1185,2],[1233,2]]], [1186,[10014.4,3776.38,3.8147e-006],[[1138,2],[1234,2],[1235,2],[1236,2]]], [1187,[8032.77,4383.59,0],[[1139,2],[1237,2]]], +[1188,[10569.4,4385.57,-5.08626e-006],[[1140,2],[1174,2],[1238,2]]], [1189,[6932.84,4164.5,0],[[1142,2],[1239,2]]], [1190,[7332.46,3931.35,0],[[1143,2],[1240,2],[1241,2]]], [1191,[7751.94,4233.53,0],[[1144,2],[1242,2]]], [1192,[11026.9,6310.31,0],[[1146,2],[1243,2]]], [1193,[12074.4,6407.28,7.62939e-006],[[1147,2],[1244,2]]], +[1194,[12582.8,7762.09,7.62939e-006],[[1148,2],[1245,2]]], [1195,[5671.94,4997.52,7.62939e-006],[[1150,2],[1156,2],[1246,2],[1247,2]]], [1196,[5803.98,5028.92,0],[[1150,2]]], [1197,[4934.54,6115.54,-5.08626e-006],[[1151,2],[1205,2],[1202,2]]], [1198,[5427.71,5291,0],[[1152,2],[1248,2]]], [1199,[5244.87,5349.41,5.08626e-006],[[1152,2],[1199,2],[1249,2]]], +[1200,[4946.62,5302.38,0],[[1154,2],[1250,2]]], [1201,[4935.03,5436.94,1.52588e-005],[[1154,2],[1251,2]]], [1202,[4985.03,5958.29,0],[[1155,2],[1197,2]]], [1203,[5013.27,7620.08,0],[[1157,2],[1252,2]]], [1204,[4840.7,7397.94,5.08626e-006],[[1157,2],[1253,2],[1254,2]]], [1205,[4854.6,6293.13,0],[[1158,2],[1197,2],[1205,2],[1255,2]]], +[1206,[4777.28,6500.62,0],[[1158,2],[1256,2]]], [1207,[11025.6,12258.8,0],[[1159,2],[1257,2]]], [1208,[10548.2,11780,0],[[1160,2],[1258,2]]], [1209,[11748.3,11586.7,0],[[1161,2],[1259,2]]], [1210,[9846.85,12309.9,0],[[1162,2],[1260,2]]], [1211,[9517.34,11792.7,-4.76837e-007],[[1163,2]]], +[1212,[4901.78,9784.54,0],[[1164,2],[1261,2],[1262,2]]], [1213,[5022.57,9928.83,0],[[1165,2],[1213,2],[1263,2],[1261,2]]], [1214,[5201.9,9923.56,1.90735e-006],[[1166,2],[1264,2]]], [1215,[5043.88,8689.71,0],[[1167,2],[1265,2]]], [1216,[5653.11,11696.7,0],[[1168,2],[1217,2],[1216,2],[1266,2],[1267,2]]], [1217,[5697.14,11684.8,0],[[1216,2],[1313,2],[1217,2],[1168,2]]], +[1218,[5375.16,10735.3,0],[[1169,2],[1268,2]]], [1219,[5358.55,10349.1,0],[[1170,2],[1269,2]]], [1220,[6075.83,12264.7,0],[[1171,2],[1270,2]]], [1221,[6570.95,12136,0],[[1172,2],[1221,2],[1271,2]]], [1222,[5832.22,11891.9,0],[[1173,2],[1272,2]]], [1223,[11010.6,4483.65,0],[[1175,2],[1273,2]]], +[1224,[11234.3,4987.26,0],[[1176,2],[1274,2],[1275,2]]], [1225,[11906.7,5344.2,0],[[1177,2],[1276,2]]], [1226,[9309.77,2969.73,2.54313e-006],[[1178,2],[1277,2],[1278,2]]], [1227,[9072.8,3121.56,-7.62939e-006],[[1178,2],[1231,2]]], [1228,[7804.76,3446.06,1.52588e-005],[[1180,2],[1279,2]]], [1229,[7729.57,3508.98,0],[[1180,2],[1280,2]]], +[1230,[8279.87,3122.58,0],[[1181,2],[1281,2]]], [1231,[8897.72,3169.65,0],[[1182,2],[1227,2]]], [1232,[10621.1,4170.89,0],[[1183,2],[1282,2]]], [1233,[9874.7,3504.62,-5.08626e-006],[[1185,2],[1233,2],[1283,2]]], [1234,[9963.33,3778.24,0],[[1186,2]]], [1235,[9903.21,3663.82,0],[[1186,2],[1284,2]]], +[1236,[10178.3,3741.31,-1.52588e-005],[[1186,2],[1285,2]]], [1237,[7877.64,4375.81,0],[[1187,2],[1242,2]]], [1238,[10696.6,4285.92,0],[[1188,2],[1286,2]]], [1239,[7004.89,4024.2,0],[[1189,2],[1287,2]]], [1240,[7269.64,3796.74,0],[[1190,2],[1288,2]]], [1241,[7134.85,3974.35,1.52588e-005],[[1190,2],[1287,2]]], +[1242,[7817.84,4338.4,0],[[1191,2],[1237,2]]], [1243,[11046.7,6206.7,0],[[1192,2],[1289,2]]], [1244,[12208.8,6338.78,0],[[1193,2],[1290,2]]], [1245,[12715.4,7826.44,0],[[1194,2],[1291,2]]], [1246,[5712.21,4824.99,-1.52588e-005],[[1195,2],[1292,2]]], [1247,[5580.17,5066.09,0],[[1195,2],[1248,2],[1293,2]]], +[1248,[5508.18,5154.82,0],[[1198,2],[1247,2]]], [1249,[5243.01,5302.98,5.08626e-006],[[1199,2],[1294,2],[1249,2]]], [1250,[4932.26,5290.18,0],[[1200,2],[1295,2],[1251,2]]], [1251,[4875.95,5339.19,0],[[1201,2],[1250,2]]], [1252,[5035.08,7754.46,0],[[1203,2],[1296,2]]], [1253,[4831.4,7522.15,0],[[1204,2],[1297,2]]], +[1254,[4787.61,7221.22,0],[[1204,2],[1298,2]]], [1255,[4732.06,6159.37,-5.08626e-006],[[1205,2],[1299,2],[1300,2]]], [1256,[4729.42,6646.21,0],[[1206,2],[1301,2]]], [1257,[11013.4,12399.6,7.62939e-006],[[1207,2],[1302,2]]], [1258,[10555.4,11920.6,-9.53674e-007],[[1208,2],[1303,2]]], [1259,[11883.9,11608.2,0],[[1209,2],[1304,2]]], +[1260,[9926.49,12373.5,0],[[1210,2],[1305,2],[1306,2]]], [1261,[4962.08,9919.8,6.35783e-007],[[1212,2],[1213,2],[1263,2],[1307,2]]], [1262,[4824.9,9664.06,0],[[1212,2],[1308,2]]], [1263,[4999.54,9953.28,-1.90735e-006],[[1213,2],[1261,2],[1309,2]]], [1264,[5290.19,9960,0],[[1214,2],[1310,2],[1311,2]]], [1265,[5109.07,8611.14,0],[[1215,2],[1312,2]]], +[1266,[5507.52,11786.3,-1.90735e-006],[[1216,2],[1314,2]]], [1267,[5521.55,11584.1,0],[[1216,2],[1315,2]]], [1268,[5270.37,10839.9,0],[[1218,2],[1316,2]]], [1269,[5239.01,10299.2,-6.35783e-007],[[1219,2],[1317,2],[1318,2]]], [1270,[6039.49,12366.2,-2.54313e-006],[[1220,2],[1319,2],[1320,2]]], [1271,[6468.68,12223.4,0],[[1221,2],[1321,2]]], +[1272,[5725.97,11983.2,0],[[1222,2],[1322,2]]], [1273,[11044.9,4429.85,5.08626e-006],[[1223,2],[1323,2],[1324,2]]], [1274,[11249.9,4817.78,7.62939e-006],[[1224,2],[1325,2]]], [1275,[11395.2,5023.98,0],[[1224,2],[1326,2]]], [1276,[11950,5310.32,0],[[1225,2],[1327,2],[1328,2]]], [1277,[9402.79,2923.41,0],[[1226,2],[1329,2],[1330,2]]], +[1278,[9157.06,2925.66,0],[[1226,2],[1331,2]]], [1279,[7712.47,3360.11,0],[[1228,2],[1332,2]]], [1280,[7567.44,3441.59,0],[[1229,2],[1333,2]]], [1281,[8262.28,2991.07,-1.52588e-005],[[1230,2],[1334,2]]], [1282,[10673,4149.84,0],[[1232,2],[1335,2],[1336,2]]], [1283,[9925.54,3462.72,5.08626e-006],[[1233,2],[1337,2],[1284,2]]], +[1284,[9936.28,3542,0],[[1235,2],[1283,2]]], [1285,[10350.8,3735.36,0],[[1236,2],[1338,2]]], [1286,[10797.3,4243.4,0],[[1238,2],[1339,2]]], [1287,[6998.54,4007.66,0],[[1239,2],[1241,2],[1340,2]]], [1288,[7233.99,3669.16,0],[[1240,2],[1341,2]]], [1289,[11212.1,6208.87,0],[[1243,2],[1342,2]]], +[1290,[12357.9,6282.76,0],[[1244,2],[1343,2]]], [1291,[12780.4,7847.41,7.62939e-006],[[1245,2]]], [1292,[5779.73,4736.02,0],[[1246,2],[1344,2],[1345,2]]], [1293,[5438.28,4957.07,0],[[1247,2],[1346,2]]], [1294,[5121.97,5220.8,0],[[1249,2]]], [1295,[4846.39,5149.32,0],[[1250,2],[1347,2]]], +[1296,[5033.16,7892.65,0],[[1252,2],[1348,2]]], [1297,[4756.55,7612.11,5.08626e-006],[[1253,2],[1349,2],[1350,2]]], [1298,[4771.1,7059.74,0],[[1254,2],[1351,2]]], [1299,[4662.26,6280.24,1.52588e-005],[[1255,2],[1352,2]]], [1300,[4603.97,6111.23,0],[[1255,2],[1353,2]]], [1301,[4694.02,6765.26,0],[[1256,2],[1354,2],[1351,2]]], +[1302,[11005.4,12506.1,0],[[1257,2],[1355,2],[1302,2],[1356,2],[1357,2]]], [1303,[10444.1,12035.6,0],[[1258,2],[1358,2]]], [1304,[12043.6,11636.2,3.8147e-006],[[1259,2],[1359,2]]], [1305,[10082.4,12536.2,0],[[1260,2],[1360,2]]], [1306,[10085,12281.9,0],[[1260,2],[1361,2]]], [1307,[4845.27,10049.4,-1.90735e-006],[[1261,2],[1362,2]]], +[1308,[4751.17,9513.89,0],[[1262,2],[1363,2]]], [1309,[5098.07,10086.9,0],[[1263,2],[1318,2],[1310,2]]], [1310,[5152.46,10089.2,0],[[1264,2],[1364,2],[1318,2],[1309,2]]], [1311,[5392.59,9848.2,0],[[1264,2]]], [1312,[5113.6,8568.6,3.8147e-006],[[1265,2],[1312,2],[1365,2]]], [1313,[5722.45,11679.3,0],[[1217,2]]], +[1314,[5393.09,11857.6,0],[[1266,2],[1366,2]]], [1315,[5429.92,11452.1,0],[[1267,2],[1367,2]]], [1316,[5177.99,10931.4,0],[[1268,2],[1368,2]]], [1317,[5190.12,10353.5,0],[[1269,2]]], [1318,[5114.82,10175.5,0],[[1269,2],[1309,2],[1310,2],[1364,2]]], [1319,[5978.8,12510.9,7.62939e-006],[[1270,2],[1369,2]]], +[1320,[6182.5,12437.3,7.62939e-006],[[1270,2],[1370,2]]], [1321,[6353.29,12284.6,-7.62939e-006],[[1271,2],[1370,2]]], [1322,[5611.95,12085.3,0],[[1272,2],[1371,2]]], [1323,[11206.1,4358.75,0],[[1273,2],[1372,2]]], [1324,[10907.1,4347.13,0],[[1273,2],[1339,2]]], [1325,[11280.3,4654.31,0],[[1274,2],[1373,2]]], +[1326,[11547.8,5030.22,1.52588e-005],[[1275,2],[1374,2]]], [1327,[11802.8,5184.85,-1.52588e-005],[[1276,2],[1375,2],[1374,2]]], [1328,[12026.9,5374.4,0],[[1276,2],[1376,2],[1377,2]]], [1329,[9498.36,2799.08,0],[[1277,2],[1378,2]]], [1330,[9556.86,2972.89,0],[[1277,2],[1379,2]]], [1331,[9032.96,2897.1,0],[[1278,2],[1380,2]]], +[1332,[7715.57,3325.46,5.08626e-006],[[1279,2],[1381,2],[1382,2]]], [1333,[7409.55,3504.97,0],[[1280,2],[1383,2]]], [1334,[8256.62,2840.05,0],[[1281,2],[1384,2]]], [1335,[10884.3,4129.36,-1.52588e-005],[[1282,2],[1385,2]]], [1336,[10651.6,3974,0],[[1282,2],[1386,2]]], [1337,[9972.01,3319.18,0],[[1283,2],[1387,2]]], +[1338,[10521.3,3763.97,0],[[1285,2],[1388,2],[1386,2]]], [1339,[10902.8,4251.6,-5.08626e-006],[[1286,2],[1324,2],[1385,2]]], [1340,[6849.72,3960.53,1.52588e-005],[[1287,2],[1389,2]]], [1341,[7211.61,3546.84,0],[[1288,2],[1390,2]]], [1342,[11386.9,6205.81,-7.62939e-006],[[1289,2],[1391,2]]], [1343,[12427.2,6169.92,-2.54313e-006],[[1290,2],[1392,2],[1393,2]]], +[1344,[5858.28,4586.01,0],[[1292,2],[1394,2]]], [1345,[5894.56,4832,0],[[1292,2],[1395,2]]], [1346,[5302.52,4871.11,0],[[1293,2],[1396,2]]], [1347,[4722.26,5076.09,0],[[1295,2],[1397,2]]], [1348,[5021.67,7981.78,0],[[1296,2],[1398,2],[1399,2]]], [1349,[4850.92,7741.78,0],[[1297,2],[1400,2]]], +[1350,[4607.76,7684.19,0],[[1297,2],[1401,2]]], [1351,[4743.8,6893.44,0],[[1298,2],[1301,2]]], [1352,[4589.02,6406.42,5.08626e-006],[[1299,2],[1402,2],[1354,2],[1403,2],[1352,2]]], [1353,[4492.87,6119.36,-2.54313e-006],[[1300,2],[1404,2],[1405,2],[1353,2]]], [1354,[4567.36,6694.31,0],[[1301,2],[1352,2],[1402,2]]], [1355,[11017.4,12498.6,0],[[1302,2]]], +[1356,[11083.2,12477,0],[[1302,2]]], [1357,[10840.8,12586.5,0],[[1302,2],[1406,2]]], [1358,[10290.1,12140.9,0],[[1303,2],[1361,2]]], [1359,[12208.1,11651.2,0],[[1304,2],[1407,2]]], [1360,[10183,12672.5,0],[[1305,2],[1408,2]]], [1361,[10185.6,12212.6,0],[[1306,2],[1358,2]]], +[1362,[4762.03,10144.7,3.8147e-006],[[1307,2],[1409,2]]], [1363,[4685.4,9386.4,-1.90735e-006],[[1308,2],[1410,2]]], [1364,[5116.89,10120.6,-6.35783e-007],[[1310,2],[1318,2]]], [1365,[5021.99,8444.69,0],[[1312,2],[1411,2]]], [1366,[5234.57,11900,0],[[1314,2],[1412,2]]], [1367,[5328.6,11308.8,0],[[1315,2],[1413,2]]], +[1368,[5138.18,11030.8,0],[[1316,2],[1413,2]]], [1369,[5921.09,12644.9,0],[[1319,2],[1414,2]]], [1370,[6234.39,12457.1,0],[[1320,2],[1321,2],[1370,2]]], [1371,[5499.77,12182,-3.8147e-006],[[1322,2],[1415,2]]], [1372,[11219.5,4348.54,5.08626e-006],[[1323,2],[1416,2],[1417,2]]], [1373,[11307.9,4524.66,1.52588e-005],[[1325,2],[1417,2]]], +[1374,[11692.4,5065.67,1.52588e-005],[[1326,2],[1327,2],[1375,2]]], [1375,[11712.8,5066.77,0],[[1327,2],[1374,2],[1418,2],[1419,2]]], [1376,[12111.8,5262.68,5.08626e-006],[[1328,2],[1420,2],[1421,2]]], [1377,[12132.6,5508.23,0],[[1328,2],[1422,2]]], [1378,[9643.4,2711.99,0],[[1329,2],[1423,2]]], [1379,[9698.42,3071.86,0],[[1330,2],[1424,2]]], +[1380,[8947.48,2802.34,0],[[1331,2],[1425,2]]], [1381,[7734.78,3184.28,-1.52588e-005],[[1332,2],[1426,2]]], [1382,[7616.16,3235.24,-1.52588e-005],[[1332,2],[1427,2]]], [1383,[7324.3,3468.03,1.52588e-005],[[1333,2],[1428,2]]], [1384,[8331.91,2752.22,0],[[1334,2],[1429,2]]], [1385,[10925.7,4140.88,0],[[1335,2],[1339,2],[1430,2],[1431,2]]], +[1386,[10639.4,3811.28,1.52588e-005],[[1336,2],[1338,2],[1388,2]]], [1387,[10015,3219.38,-7.62939e-006],[[1337,2],[1432,2],[1433,2],[1424,2]]], [1388,[10635.3,3788.88,0],[[1338,2],[1386,2],[1434,2]]], [1389,[6722.06,3944.77,0],[[1340,2],[1435,2]]], [1390,[7172.74,3395.03,0],[[1341,2],[1436,2]]], [1391,[11553.1,6201.55,0],[[1342,2],[1437,2]]], +[1392,[12312.9,6024.07,0],[[1343,2],[1438,2]]], [1393,[12577.8,6243.48,0],[[1343,2],[1439,2]]], [1394,[5927.65,4448.71,1.52588e-005],[[1344,2],[1440,2]]], [1395,[6014.25,4946.94,0],[[1345,2],[1395,2]]], [1396,[5175.3,4819.42,0],[[1346,2],[1441,2]]], [1397,[4633.21,4962.36,-7.62939e-006],[[1347,2],[1442,2]]], +[1398,[4958.97,7898.51,2.54313e-006],[[1348,2],[1400,2],[1398,2]]], [1399,[5086.51,8179.03,-7.62939e-006],[[1348,2],[1411,2]]], [1400,[4921.51,7837.53,0],[[1349,2],[1398,2]]], [1401,[4518.39,7824.32,0],[[1350,2],[1443,2]]], [1402,[4544.19,6598.41,0],[[1352,2],[1354,2],[1403,2],[1444,2],[1445,2]]], [1403,[4499.65,6455.88,-1.52588e-006],[[1352,2],[1402,2],[1446,2],[1444,2]]], +[1404,[4347.73,6184.12,7.62939e-006],[[1353,2],[1447,2]]], [1405,[4496.96,6109.24,0],[[1353,2],[1448,2]]], [1406,[10779.3,12613.7,0],[[1357,2]]], [1407,[12302.2,11725,0],[[1359,2],[1449,2]]], [1408,[10246.9,12790.4,0],[[1360,2]]], [1409,[4686.23,10231.3,0],[[1362,2],[1450,2]]], +[1410,[4571.16,9252.45,0],[[1363,2],[1451,2]]], [1411,[5000.75,8356.42,0],[[1365,2],[1399,2]]], [1412,[5107.58,11934,0],[[1366,2],[1452,2]]], [1413,[5221.65,11151,0],[[1367,2],[1368,2]]], [1414,[5859.85,12771.7,-7.62939e-006],[[1369,2],[1453,2]]], [1415,[5381.33,12274.3,0],[[1371,2],[1454,2]]], +[1416,[11131.6,4294.02,5.08626e-006],[[1372,2],[1455,2],[1431,2]]], [1417,[11399,4449.12,5.08626e-006],[[1372,2],[1373,2],[1456,2]]], [1418,[11633.8,4896.84,0],[[1375,2],[1457,2]]], [1419,[11829.8,5019.8,0],[[1375,2],[1458,2]]], [1420,[12268.8,5254.86,0],[[1376,2],[1459,2]]], [1421,[12139.2,5094.42,0],[[1376,2],[1460,2]]], +[1422,[12154.3,5626.96,-1.52588e-005],[[1377,2],[1461,2]]], [1423,[9790.1,2659.15,0],[[1378,2],[1462,2]]], [1424,[9835.67,3117.74,0],[[1379,2],[1387,2]]], [1425,[8861.46,2701.92,0],[[1380,2],[1463,2]]], [1426,[7710.15,3058.31,0],[[1381,2],[1464,2]]], [1427,[7582.31,3095.59,0],[[1382,2],[1465,2]]], +[1428,[7290.22,3351.67,0],[[1383,2],[1436,2]]], [1429,[8241.03,2694.47,0],[[1384,2],[1466,2],[1467,2]]], [1430,[10911.3,3999.44,-1.52588e-005],[[1385,2],[1468,2]]], [1431,[11053.5,4247.72,0],[[1385,2],[1416,2]]], [1432,[10051.1,3063.84,0],[[1387,2],[1469,2]]], [1433,[10169,3342.03,0],[[1387,2],[1470,2]]], +[1434,[10777.8,3816.99,0],[[1388,2],[1471,2]]], [1435,[6577.88,3947.77,1.52588e-005],[[1389,2],[1472,2]]], [1436,[7170.74,3368.57,3.8147e-006],[[1390,2],[1428,2],[1473,2],[1436,2]]], [1437,[11729.7,6166.53,0],[[1391,2],[1474,2]]], [1438,[12290.7,6002.36,0],[[1392,2],[1475,2],[1476,2]]], [1439,[12699.4,6284.9,-7.62939e-006],[[1393,2],[1477,2]]], +[1440,[5932.63,4422.56,0],[[1394,2],[1478,2],[1479,2]]], [1441,[5119.25,4721.28,0],[[1396,2],[1480,2]]], [1442,[4517.75,4882.15,0],[[1397,2],[1481,2]]], [1443,[4437.54,7919.71,0],[[1401,2],[1482,2]]], [1444,[4455.79,6501.16,0],[[1402,2],[1403,2],[1446,2]]], [1445,[4427.11,6753.7,0],[[1445,2],[1483,2]]], +[1446,[4419.9,6407.18,0],[[1403,2],[1444,2],[1484,2]]], [1447,[4208.83,6248.67,-7.62939e-006],[[1404,2],[1485,2]]], [1448,[4434.96,5959.04,-7.62939e-006],[[1405,2],[1486,2]]], [1449,[12375.6,11854.4,0],[[1407,2],[1487,2]]], [1450,[4610.32,10317.7,3.8147e-006],[[1409,2],[1488,2]]], [1451,[4467.59,9133.53,0],[[1410,2],[1489,2]]], +[1452,[4943.92,11983.1,0],[[1412,2],[1490,2]]], [1453,[5834.2,12793.6,0],[[1414,2]]], [1454,[5259.15,12222.2,0],[[1415,2],[1491,2]]], [1455,[11224,4227.88,0],[[1416,2],[1492,2]]], [1456,[11505.8,4578.23,0],[[1417,2],[1493,2]]], [1457,[11592.8,4771.11,0],[[1418,2],[1493,2]]], +[1458,[11956.1,4953.52,2.54313e-006],[[1419,2],[1494,2],[1460,2]]], [1459,[12402,5237.81,0],[[1420,2],[1495,2]]], [1460,[12132.6,5052.22,-2.54313e-006],[[1421,2],[1458,2],[1460,2]]], [1461,[12170.8,5707.16,-5.08626e-006],[[1422,2],[1476,2],[1496,2]]], [1462,[9948.87,2615.84,7.62939e-006],[[1423,2],[1497,2]]], [1463,[8766.37,2572.35,1.52588e-005],[[1425,2],[1498,2]]], +[1464,[7705.1,2919.32,0],[[1426,2],[1499,2]]], [1465,[7552.35,2996.05,0],[[1427,2]]], [1466,[8301.79,2581.39,0],[[1429,2],[1500,2]]], [1467,[8182.57,2839.31,0],[[1429,2],[1501,2]]], [1468,[10895.9,3871.5,0],[[1430,2],[1471,2]]], [1469,[10092.4,2939.48,0],[[1432,2],[1502,2]]], +[1470,[10300.1,3445.06,0],[[1433,2],[1503,2]]], [1471,[10892.1,3839.31,0],[[1434,2],[1468,2],[1504,2],[1505,2]]], [1472,[6474.38,3949.84,-1.52588e-005],[[1435,2],[1506,2]]], [1473,[7154.85,3179.13,-1.52588e-005],[[1436,2],[1507,2]]], [1474,[11868.4,6130.46,0],[[1437,2],[1508,2]]], [1475,[12109.2,6060.28,7.62939e-006],[[1438,2],[1508,2]]], +[1476,[12206.4,5833.13,0],[[1438,2],[1461,2]]], [1477,[12761.1,6305.6,0],[[1439,2]]], [1478,[5989.06,4349.02,5.08626e-006],[[1440,2],[1509,2],[1510,2]]], [1479,[5778.71,4347.59,0],[[1440,2],[1511,2]]], [1480,[5115.8,4625.17,0],[[1441,2],[1512,2]]], [1481,[4500.91,4875.65,0],[[1442,2],[1513,2],[1514,2]]], +[1482,[4351.95,8025.75,0],[[1443,2],[1515,2]]], [1483,[4291.53,6813.22,0],[[1445,2],[1552,2]]], [1484,[4287.1,6404.08,0],[[1446,2],[1516,2]]], [1485,[4127.15,6273.49,7.62939e-006],[[1447,2],[1517,2]]], [1486,[4363,5842.31,0],[[1448,2],[1518,2]]], [1487,[12459.1,12006.9,0],[[1449,2],[1519,2]]], +[1488,[4506.66,10431.7,0],[[1450,2],[1520,2],[1521,2]]], [1489,[4371.86,9023.5,-1.90735e-006],[[1451,2],[1522,2]]], [1490,[4860.18,12009.9,0],[[1452,2],[1523,2],[1524,2]]], [1491,[5083.64,12137.6,0],[[1454,2],[1523,2]]], [1492,[11269.6,4128.31,0],[[1455,2],[1525,2],[1492,2]]], [1493,[11560.2,4670.37,0],[[1456,2],[1457,2],[1526,2]]], +[1494,[12100.3,4841.83,0],[[1458,2],[1527,2]]], [1495,[12536.1,5180.43,0],[[1459,2],[1528,2]]], [1496,[12298.3,5729.53,-7.62939e-006],[[1461,2],[1529,2]]], [1497,[10080.2,2561.44,0],[[1462,2],[1530,2]]], [1498,[8703.75,2465.72,0],[[1463,2],[1531,2]]], [1499,[7682.44,2787.22,0],[[1464,2],[1532,2]]], +[1500,[8415.04,2465.72,0],[[1466,2],[1533,2]]], [1501,[8042.1,2891.01,1.52588e-005],[[1467,2],[1534,2]]], [1502,[10171.8,2780.04,-7.62939e-006],[[1469,2],[1535,2]]], [1503,[10432.1,3471.79,0],[[1470,2],[1536,2]]], [1504,[10871.3,3703.03,0],[[1471,2],[1537,2]]], [1505,[11065.2,3881.37,0],[[1471,2],[1538,2]]], +[1506,[6365.02,3903.7,0],[[1472,2],[1539,2]]], [1507,[7189,3091.82,-2.54313e-006],[[1473,2],[1540,2],[1541,2]]], [1508,[12019.9,6088.03,0],[[1474,2],[1475,2]]], [1509,[6056.79,4220.27,0],[[1478,2],[1542,2],[1543,2],[1544,2]]], [1510,[6040.02,4342.46,5.08626e-006],[[1478,2],[1545,2],[1546,2],[1510,2]]], [1511,[5720.53,4294.01,0],[[1479,2],[1547,2],[1511,2]]], +[1512,[5080.57,4602.74,5.08626e-006],[[1480,2],[1512,2],[1548,2]]], [1513,[4512.49,4724.06,0],[[1481,2],[1549,2]]], [1514,[4353.65,4962.04,-7.62939e-006],[[1481,2],[1550,2]]], [1515,[4274.35,8161.77,0],[[1482,2],[1551,2]]], [1516,[4227.61,6407.47,0],[[1484,2],[1553,2]]], [1517,[4128.87,6334.04,0],[[1485,2],[1553,2],[1554,2]]], +[1518,[4295.77,5704.97,7.62939e-006],[[1486,2],[1555,2]]], [1519,[12550,12129.4,0],[[1487,2],[1556,2]]], [1520,[4471.36,10467,0],[[1488,2],[1557,2],[1558,2]]], [1521,[4404.14,10340.4,0],[[1488,2],[1559,2]]], [1522,[4272.94,8966.99,0],[[1489,2],[1560,2]]], [1523,[4971.62,12083.7,0],[[1490,2],[1491,2]]], +[1524,[4721.92,12099.2,3.8147e-006],[[1490,2],[1561,2]]], [1525,[11268.2,4121.05,0],[[1492,2],[1538,2]]], [1526,[11672.7,4587.41,0],[[1493,2],[1562,2]]], [1527,[12231.3,4720.59,0],[[1494,2],[1563,2]]], [1528,[12668.1,5119.77,7.62939e-006],[[1495,2],[1564,2]]], [1529,[12362.9,5598.72,0],[[1496,2],[1565,2]]], +[1530,[10141.9,2499.16,2.54313e-006],[[1497,2],[1566,2],[1567,2]]], [1531,[8614.97,2367.33,0],[[1498,2],[1568,2]]], [1532,[7604.67,2669.74,0],[[1499,2],[1569,2]]], [1533,[8533.43,2372.54,0],[[1500,2],[1570,2],[1568,2]]], [1534,[7907.74,2859.7,0],[[1501,2],[1571,2]]], [1535,[10196.4,2740.62,0],[[1502,2],[1567,2],[1572,2]]], +[1536,[10545.3,3521.64,0],[[1503,2],[1573,2]]], [1537,[10884.3,3603.89,5.08626e-006],[[1504,2],[1573,2],[1574,2]]], [1538,[11177.4,3919.85,0],[[1505,2],[1525,2],[1575,2]]], [1539,[6303.26,3916.16,0],[[1506,2],[1576,2],[1577,2]]], [1540,[7067.12,3156.96,0],[[1507,2],[1578,2]]], [1541,[7290.33,2995.36,0],[[1507,2],[1579,2]]], +[1542,[6142.73,4212.57,0],[[1509,2],[1580,2],[1544,2]]], [1543,[5964.62,4175.43,5.08626e-006],[[1509,2],[1581,2],[1544,2]]], [1544,[6058.78,4126.65,2.17983e-006],[[1509,2],[1542,2],[1543,2],[1582,2],[1580,2],[1576,2],[1583,2],[1584,2]]], [1545,[6199.69,4253.19,1.52588e-005],[[1510,2],[1585,2]]], [1546,[6026.98,4353.96,7.62939e-006],[[1510,2]]], [1547,[5733.39,4239.24,0],[[1511,2],[1586,2],[1587,2]]], +[1548,[5134.83,4459.47,0],[[1512,2],[1588,2]]], [1549,[4476.04,4610.05,0],[[1513,2],[1589,2]]], [1550,[4249.69,5022.68,7.62939e-006],[[1514,2],[1590,2]]], [1551,[4191.52,8280.66,3.8147e-006],[[1515,2],[1591,2]]], [1552,[4153.24,6901.31,0],[[1483,2],[1592,2]]], [1553,[4291.78,6341.94,-7.62939e-006],[[1516,2],[1517,2]]], +[1554,[3989.79,6354.77,0],[[1517,2],[1593,2]]], [1555,[4288.84,5559.03,0],[[1518,2],[1594,2]]], [1556,[12629.6,12263.6,0],[[1519,2],[1595,2]]], [1557,[4355.25,10613,0],[[1520,2],[1596,2]]], [1558,[4329.9,10424.5,7.62939e-006],[[1520,2],[1597,2]]], [1559,[4267.61,10222.2,0],[[1521,2],[1598,2]]], +[1560,[4158.93,8990.3,0],[[1522,2],[1599,2]]], [1561,[4600.98,12158.2,0],[[1524,2],[1600,2],[1561,2]]], [1562,[11765.9,4532.24,0],[[1526,2],[1601,2]]], [1563,[12256.8,4607.04,0],[[1527,2],[1602,2]]], [1564,[12772.3,5071.11,0],[[1528,2]]], [1565,[12451.2,5587.3,-7.62939e-006],[[1529,2],[1603,2]]], +[1566,[10177.6,2319.41,0],[[1530,2],[1604,2]]], [1567,[10238.4,2625.18,0],[[1530,2],[1535,2]]], [1568,[8588.14,2339.11,5.08626e-006],[[1531,2],[1533,2],[1570,2],[1605,2]]], [1569,[7521.19,2569.92,0],[[1532,2],[1606,2],[1607,2],[1608,2]]], [1570,[8551.27,2358.63,0],[[1533,2],[1568,2],[1609,2]]], [1571,[7762.41,2781.27,0],[[1534,2],[1610,2]]], +[1572,[10305.7,2863,0],[[1535,2],[1611,2]]], [1573,[10656.1,3552.97,0],[[1536,2],[1537,2],[1612,2]]], [1574,[11033.2,3466.63,0],[[1537,2],[1613,2]]], [1575,[11222.2,3764.37,0],[[1538,2],[1614,2]]], [1576,[6196.77,4027.34,0],[[1539,2],[1544,2],[1615,2],[1582,2]]], [1577,[6354.04,3773.61,1.52588e-005],[[1539,2],[1616,2]]], +[1578,[6978.52,3235.42,-1.52588e-005],[[1540,2],[1617,2]]], [1579,[7381.3,2763.87,0],[[1541,2],[1608,2]]], [1580,[6196.66,4170.49,7.62939e-006],[[1542,2],[1544,2],[1585,2],[1618,2]]], [1581,[5852.8,4191.17,0],[[1543,2],[1587,2]]], [1582,[6168.63,4098.89,1.52588e-005],[[1544,2],[1576,2]]], [1583,[5995.25,4012,0],[[1544,2],[1619,2]]], +[1584,[5817.72,4056.63,0],[[1544,2],[1620,2]]], [1585,[6280.41,4275.28,0],[[1545,2],[1580,2],[1621,2]]], [1586,[5581.24,4261.91,0],[[1547,2],[1622,2]]], [1587,[5732,4165.21,1.01725e-005],[[1547,2],[1581,2],[1623,2]]], [1588,[5075.48,4335.07,0],[[1548,2],[1624,2]]], [1589,[4460.49,4468.11,0],[[1549,2],[1625,2]]], +[1590,[4184.05,5117.41,0],[[1550,2],[1626,2],[1590,2]]], [1591,[4119.18,8415.75,0],[[1551,2],[1627,2]]], [1592,[4045.84,7012.88,0],[[1552,2],[1628,2]]], [1593,[3966.93,6353.75,-2.54313e-006],[[1554,2],[1629,2],[1630,2]]], [1594,[4284.08,5425.69,0],[[1555,2],[1626,2]]], [1595,[12707,12409.3,0],[[1556,2]]], +[1596,[4252.91,10739.5,0],[[1557,2],[1631,2]]], [1597,[4294.38,10449.6,7.62939e-006],[[1558,2]]], [1598,[4148.4,10123.5,0],[[1559,2],[1632,2]]], [1599,[4051.72,8964.98,0],[[1560,2],[1633,2]]], [1600,[4493.54,12093.1,-1.27157e-006],[[1561,2],[1634,2],[1600,2]]], [1601,[11895.8,4453.96,0],[[1562,2],[1635,2]]], +[1602,[12314.4,4570.43,0],[[1563,2],[1636,2],[1637,2]]], [1603,[12549.2,5558.76,0],[[1565,2],[1638,2]]], [1604,[10243.7,2163.59,0],[[1566,2],[1639,2]]], [1605,[8703.58,2236.59,-1.52588e-005],[[1568,2],[1640,2]]], [1606,[7683.09,2621.43,0],[[1569,2],[1610,2]]], [1607,[7545.9,2516.09,-2.54313e-006],[[1569,2],[1641,2],[1642,2]]], +[1608,[7385.52,2624.71,0],[[1569,2],[1579,2]]], [1609,[8451.33,2238.74,0],[[1570,2],[1643,2]]], [1610,[7720.77,2678.27,0],[[1571,2],[1606,2]]], [1611,[10391.5,3008.88,0],[[1572,2],[1644,2]]], [1612,[10628.8,3377.1,0],[[1573,2],[1645,2]]], [1613,[11161,3369.91,0],[[1574,2],[1646,2],[1647,2],[1648,2]]], +[1614,[11344.7,3735.87,0],[[1575,2],[1649,2]]], [1615,[6172.73,4100.92,0],[[1576,2],[1615,2]]], [1616,[6450.35,3674.21,0],[[1577,2],[1650,2]]], [1617,[6856.87,3324.9,1.52588e-005],[[1578,2],[1651,2]]], [1618,[6180.58,4117.65,1.52588e-005],[[1580,2]]], [1619,[5926.18,3943.73,5.08626e-006],[[1583,2],[1652,2],[1653,2]]], +[1620,[5700.91,3984.01,-5.08626e-006],[[1584,2],[1623,2],[1654,2]]], [1621,[6398.3,4453.4,-1.52588e-005],[[1585,2],[1655,2]]], [1622,[5411.85,4293.62,-1.52588e-005],[[1586,2],[1656,2]]], [1623,[5701,4029.45,0],[[1587,2],[1620,2]]], [1624,[5067.16,4319.87,0],[[1588,2],[1657,2],[1656,2]]], [1625,[4423.23,4387.96,-5.08626e-006],[[1589,2],[1658,2],[1659,2]]], +[1626,[4204.15,5304.78,-2.54313e-006],[[1590,2],[1594,2],[1660,2]]], [1627,[4000.54,8486.84,0],[[1591,2],[1661,2]]], [1628,[4015.86,7101.96,0],[[1592,2],[1662,2]]], [1629,[3802.8,6362.77,0],[[1593,2],[1663,2],[1664,2]]], [1630,[4036.45,6282.88,0],[[1593,2],[1665,2]]], [1631,[4157.22,10867,0],[[1596,2],[1666,2]]], +[1632,[4035.33,10015.4,3.8147e-006],[[1598,2],[1667,2]]], [1633,[3937.29,8890.47,0],[[1599,2],[1668,2]]], [1634,[4322.29,11980.3,0],[[1600,2],[1669,2]]], [1635,[12004,4407.2,0],[[1601,2],[1670,2],[1671,2]]], [1636,[12470.8,4461.58,0],[[1602,2],[1672,2]]], [1637,[12242.9,4531.29,0],[[1602,2],[1671,2]]], +[1638,[12636.5,5610.13,0],[[1603,2],[1673,2]]], [1639,[10260.1,2107.74,-1.90735e-006],[[1604,2],[1674,2],[1675,2],[1676,2]]], [1640,[8717.83,2108.51,0],[[1605,2],[1677,2]]], [1641,[7485.9,2485.36,0],[[1607,2],[1678,2],[1679,2]]], [1642,[7655.28,2382.59,-7.62939e-006],[[1607,2],[1680,2]]], [1643,[8342.92,2128.73,0],[[1609,2],[1681,2]]], +[1644,[10453.5,3076.08,2.54313e-006],[[1611,2],[1682,2],[1683,2]]], [1645,[10616,3239.7,0],[[1612,2],[1682,2]]], [1646,[11287.6,3257.16,0],[[1613,2],[1684,2]]], [1647,[11312.4,3395.91,0],[[1613,2],[1685,2]]], [1648,[11212.3,3183.79,1.52588e-005],[[1613,2],[1686,2]]], [1649,[11482.6,3728.06,0],[[1614,2],[1687,2]]], +[1650,[6522.78,3645.61,0],[[1616,2],[1688,2],[1650,2]]], [1651,[6750.19,3330.19,0],[[1617,2],[1689,2]]], [1652,[5804.07,3953.34,0],[[1619,2],[1690,2]]], [1653,[5988.74,3802.74,0],[[1619,2],[1691,2]]], [1654,[5640.08,3918.52,-1.01725e-005],[[1620,2],[1692,2],[1690,2]]], [1655,[6440.39,4575.18,0],[[1621,2],[1693,2]]], +[1656,[5242.47,4291.33,-1.52588e-005],[[1622,2],[1624,2]]], [1657,[4888.97,4305.59,1.52588e-005],[[1624,2],[1694,2],[1695,2]]], [1658,[4299.4,4255.2,-1.52588e-005],[[1625,2],[1696,2]]], [1659,[4525.73,4257.74,0],[[1625,2],[1695,2]]], [1660,[4243.3,5469.56,0],[[1626,2],[1697,2]]], [1661,[3983.17,8497.16,0],[[1627,2],[1698,2],[1699,2]]], +[1662,[3997.15,7266.25,0],[[1628,2],[1700,2]]], [1663,[3604.09,6407.06,0],[[1629,2],[1701,2]]], [1664,[3723.64,6237.01,0],[[1629,2],[1702,2]]], [1665,[4093.17,6134.04,0],[[1630,2],[1703,2]]], [1666,[4139.69,11036.8,0],[[1631,2],[1704,2]]], [1667,[3884,9919.93,0],[[1632,2],[1705,2]]], +[1668,[3829.5,8793.8,0],[[1633,2],[1706,2]]], [1669,[4188.03,11892.2,0],[[1634,2],[1707,2]]], [1670,[12158.4,4304.97,-7.62939e-006],[[1635,2],[1708,2]]], [1671,[12096.7,4497.6,0],[[1635,2],[1637,2]]], [1672,[12591.5,4362.71,0],[[1636,2],[1709,2]]], [1673,[12718.4,5682.73,-7.62939e-006],[[1638,2],[1710,2]]], +[1674,[10401.5,2035.25,0],[[1639,2],[1711,2]]], [1675,[10130.2,2086.88,0],[[1639,2],[1712,2]]], [1676,[10227.6,1962.59,0],[[1639,2],[1713,2]]], [1677,[8748.3,1969.8,0],[[1640,2],[1714,2]]], [1678,[7364.9,2549.8,0],[[1641,2],[1715,2]]], [1679,[7422.86,2357.66,0],[[1641,2],[1716,2]]], +[1680,[7773,2285.62,0],[[1642,2],[1717,2]]], [1681,[8272.47,2005.64,1.52588e-005],[[1643,2],[1718,2]]], [1682,[10598.1,3177.12,0],[[1644,2],[1645,2]]], [1683,[10550.7,2992.61,0],[[1644,2],[1719,2]]], [1684,[11379,3126.72,0],[[1646,2],[1720,2]]], [1685,[11426,3277.98,0],[[1647,2],[1721,2]]], +[1686,[11200.8,3023.79,0],[[1648,2],[1722,2]]], [1687,[11630.3,3738.2,0],[[1649,2],[1723,2]]], [1688,[6635.23,3493.2,1.52588e-005],[[1650,2],[1689,2]]], [1689,[6666.22,3418.48,-1.52588e-005],[[1651,2],[1688,2]]], [1690,[5731.04,3920.74,0],[[1652,2],[1654,2]]], [1691,[6072.26,3680.77,0],[[1653,2],[1724,2]]], +[1692,[5557.17,3872.13,0],[[1654,2],[1725,2],[1726,2]]], [1693,[6431.79,4688.28,0],[[1655,2],[1727,2]]], [1694,[4950.22,4207.29,0],[[1657,2],[1728,2]]], [1695,[4698.72,4219.61,0],[[1657,2],[1659,2],[1729,2]]], [1696,[4239.12,4161.95,5.08626e-006],[[1658,2],[1730,2],[1731,2]]], [1697,[4204.27,5594.74,0],[[1660,2],[1732,2]]], +[1698,[3931.73,8359.9,0],[[1661,2],[1733,2]]], [1699,[3932.69,8644.28,0],[[1661,2],[1734,2],[1706,2]]], [1700,[3962.3,7422.59,7.62939e-006],[[1662,2],[1735,2]]], [1701,[3478.52,6451.66,0],[[1663,2],[1736,2]]], [1702,[3623.78,6110.7,0],[[1664,2],[1737,2]]], [1703,[4084.51,5993.21,7.62939e-006],[[1665,2],[1738,2]]], +[1704,[4122.48,11126.5,0],[[1666,2],[1739,2],[1740,2]]], [1705,[3737.66,9863.3,0],[[1667,2],[1741,2]]], [1706,[3803.88,8751.73,6.35783e-007],[[1668,2],[1699,2],[1742,2],[1743,2]]], [1707,[4080.18,11822.3,0],[[1669,2],[1744,2]]], [1708,[12318.1,4258.62,0],[[1670,2],[1745,2]]], [1709,[12728.5,4321.44,0],[[1672,2],[1746,2]]], +[1710,[12770.5,5690.3,0],[[1673,2]]], [1711,[10492.3,1903.61,0],[[1674,2],[1747,2]]], [1712,[10025,2062.69,0],[[1675,2],[1748,2]]], [1713,[10141.1,1871.91,0],[[1676,2],[1749,2]]], [1714,[8769.08,1870.98,0],[[1677,2],[1750,2]]], [1715,[7260.02,2549.28,-2.54313e-006],[[1678,2],[1751,2],[1752,2]]], +[1716,[7459.17,2242.72,0],[[1679,2],[1753,2]]], [1717,[7784.33,2162.37,0],[[1680,2],[1754,2]]], [1718,[8190.14,1879.41,0],[[1681,2],[1755,2]]], [1719,[10686.1,2897.78,0],[[1683,2],[1756,2]]], [1720,[11469.3,3022.97,0],[[1684,2],[1757,2]]], [1721,[11536.3,3310.79,0],[[1685,2],[1758,2]]], +[1722,[11082.7,2935.15,0],[[1686,2],[1759,2]]], [1723,[11782.4,3762.88,0],[[1687,2],[1760,2]]], [1724,[6120.57,3556.06,0],[[1691,2],[1761,2]]], [1725,[5407.2,3923.66,0],[[1692,2],[1762,2]]], [1726,[5418.35,3786.28,0],[[1692,2],[1763,2]]], [1727,[6455.59,4766.34,0],[[1693,2]]], +[1728,[5027.88,4195.01,0],[[1694,2],[1764,2]]], [1729,[4753.83,4051.84,0],[[1695,2],[1765,2]]], [1730,[4375.61,4061.2,0],[[1696,2],[1766,2]]], [1731,[4088.7,4064.18,0],[[1696,2],[1767,2]]], [1732,[4149.07,5726.1,7.62939e-006],[[1697,2],[1738,2]]], [1733,[3922.84,8225.89,0],[[1698,2],[1768,2]]], +[1734,[3886.83,8694.02,0],[[1699,2],[1769,2]]], [1735,[3901.71,7511.81,7.62939e-006],[[1700,2],[1770,2]]], [1736,[3370.4,6564.77,0],[[1701,2],[1771,2]]], [1737,[3566.3,5959.99,0],[[1702,2],[1772,2]]], [1738,[4109.53,5849.85,0],[[1703,2],[1732,2]]], [1739,[4114.36,11310,0],[[1704,2],[1773,2]]], +[1740,[3955.27,11141.9,0],[[1704,2],[1774,2]]], [1741,[3609.6,9814.23,0],[[1705,2],[1775,2]]], [1742,[3676.73,8663.19,6.35783e-007],[[1706,2],[1776,2],[1777,2]]], [1743,[3867.55,8712.1,1.90735e-006],[[1706,2]]], [1744,[3958.06,11752.1,-2.54313e-006],[[1707,2],[1778,2],[1779,2]]], [1745,[12409.3,4205.15,0],[[1708,2],[1780,2]]], +[1746,[12792.3,4302.75,-3.8147e-006],[[1709,2]]], [1747,[10539.8,1826.57,0],[[1711,2],[1781,2],[1782,2]]], [1748,[9862.41,2010,0],[[1712,2],[1783,2]]], [1749,[10005.7,1784.5,-1.52588e-005],[[1713,2],[1784,2]]], [1750,[8895.33,1906.19,-3.05176e-005],[[1714,2],[1785,2]]], [1751,[7184.51,2464.43,0],[[1715,2],[1786,2]]], +[1752,[7231.78,2406.8,0],[[1715,2],[1787,2]]], [1753,[7459.86,2094.64,0],[[1716,2],[1788,2]]], [1754,[7801.25,1993.59,-7.62939e-006],[[1717,2],[1789,2]]], [1755,[8103.48,1770.04,0],[[1718,2],[1790,2],[1791,2],[1792,2]]], [1756,[10810.2,2797.14,0],[[1719,2],[1793,2]]], [1757,[11494.5,2996.95,0],[[1720,2],[1794,2],[1795,2]]], +[1758,[11685.9,3370.74,-1.52588e-005],[[1721,2],[1796,2]]], [1759,[10979,2791.12,0],[[1722,2],[1797,2]]], [1760,[11898.9,3801.4,-3.8147e-006],[[1723,2],[1798,2]]], [1761,[6140.11,3418.81,0],[[1724,2],[1799,2]]], [1762,[5324.36,3960.44,-1.52588e-005],[[1725,2],[1800,2]]], [1763,[5311.34,3697.89,0],[[1726,2],[1801,2],[1802,2]]], +[1764,[5101.76,4101.27,0],[[1728,2],[1800,2]]], [1765,[4789.06,3908.03,0],[[1729,2],[1803,2]]], [1766,[4332.58,3928.94,0],[[1730,2],[1804,2]]], [1767,[3953.92,3997.34,0],[[1731,2],[1805,2]]], [1768,[3979.23,8105.4,-3.8147e-006],[[1733,2],[1806,2]]], [1769,[3819.37,8568.78,0],[[1734,2],[1807,2]]], +[1770,[3873.74,7534.94,0],[[1735,2],[1770,2],[1808,2],[1809,2]]], [1771,[3304,6667.2,0],[[1736,2],[1810,2]]], [1772,[3481.01,5813.95,1.52588e-005],[[1737,2],[1811,2]]], [1773,[4096.43,11443.6,0],[[1739,2],[1812,2]]], [1774,[3798.96,11166.4,0],[[1740,2],[1813,2]]], [1775,[3458.68,9759.84,0],[[1741,2],[1814,2]]], +[1776,[3560.54,8491.31,0],[[1742,2],[1815,2]]], [1777,[3678.75,8829.84,1.90735e-006],[[1742,2],[1816,2]]], [1778,[3880.6,11681.2,-1.90735e-006],[[1744,2],[1817,2],[1818,2],[1812,2]]], [1779,[3876.21,11809.8,0],[[1744,2]]], [1780,[12380.1,4102.94,0],[[1745,2],[1819,2]]], [1781,[10601.7,1664.06,0],[[1747,2],[1820,2]]], +[1782,[10605.8,1961.79,7.62939e-006],[[1747,2],[1821,2]]], [1783,[9702.35,2012.03,0],[[1748,2],[1822,2]]], [1784,[9886.31,1674.28,-1.52588e-005],[[1749,2],[1823,2]]], [1785,[8986.59,1911.42,-1.52588e-005],[[1750,2],[1785,2],[1824,2],[1825,2]]], [1786,[7102.97,2433.19,0],[[1751,2],[1826,2]]], [1787,[7205.04,2254.13,0],[[1752,2],[1827,2]]], +[1788,[7431.06,1990.27,1.01725e-005],[[1753,2],[1828,2],[1829,2]]], [1789,[7882.68,1915.42,0],[[1754,2],[1830,2],[1790,2]]], [1790,[7962.66,1908.3,0],[[1755,2],[1789,2]]], [1791,[8125.57,1613.66,0],[[1755,2],[1831,2]]], [1792,[8192.68,1572.1,0],[[1755,2],[1832,2]]], [1793,[10883.5,2678.38,0],[[1756,2],[1833,2],[1797,2]]], +[1794,[11409.8,2854.35,0],[[1757,2],[1834,2]]], [1795,[11584.2,2946.73,0],[[1757,2],[1835,2],[1836,2]]], [1796,[11828,3395.6,0],[[1758,2],[1837,2]]], [1797,[10921.4,2671.58,0],[[1759,2],[1793,2],[1838,2]]], [1798,[12012,3844.93,-1.27157e-006],[[1760,2],[1839,2],[1840,2]]], [1799,[6079.85,3309.99,-1.52588e-005],[[1761,2],[1841,2]]], +[1800,[5219.29,4020.88,0],[[1762,2],[1764,2]]], [1801,[5167.84,3764.14,1.52588e-005],[[1763,2],[1842,2]]], [1802,[5218.02,3587.47,-6.10352e-005],[[1763,2],[1843,2]]], [1803,[4801.68,3844.2,0],[[1765,2],[1844,2],[1845,2]]], [1804,[4401.3,3814.22,0],[[1766,2],[1846,2]]], [1805,[3920.12,3970.2,0],[[1767,2],[1847,2],[1848,2]]], +[1806,[4035.1,8005.07,0],[[1768,2],[1849,2],[1806,2],[1850,2]]], [1807,[3812.44,8473.63,0],[[1769,2]]], [1808,[3865.93,7692.64,0],[[1770,2],[1851,2]]], [1809,[3746.26,7475.35,0],[[1770,2],[1852,2],[1853,2]]], [1810,[3224.25,6728.4,-1.90735e-006],[[1771,2],[1854,2],[1855,2],[1856,2]]], [1811,[3487.66,5658.51,0],[[1772,2],[1857,2]]], +[1812,[4040.57,11548.2,0],[[1773,2],[1778,2]]], [1813,[3677.89,11147.7,-3.8147e-006],[[1774,2],[1858,2]]], [1814,[3334.4,9714.29,0],[[1775,2],[1859,2]]], [1815,[3469.18,8336.22,0],[[1776,2],[1860,2]]], [1816,[3676.49,8902.16,0],[[1777,2]]], [1817,[3723.36,11781.6,-1.90735e-006],[[1778,2],[1861,2],[1817,2],[1862,2]]], +[1818,[3799.21,11512.6,0],[[1778,2],[1863,2]]], [1819,[12292.1,4060.19,0],[[1780,2],[1864,2]]], [1820,[10626.3,1515.95,0],[[1781,2],[1865,2]]], [1821,[10693.1,2060.12,-7.62939e-006],[[1782,2],[1866,2]]], [1822,[9557.44,2043.58,0],[[1783,2],[1867,2]]], [1823,[9816.57,1609.48,0],[[1784,2],[1868,2],[1869,2]]], +[1824,[9064.63,1969.84,0],[[1785,2],[1870,2]]], [1825,[9081.46,1832.45,0],[[1785,2],[1871,2],[1872,2]]], [1826,[6923.38,2401.56,0],[[1786,2],[1873,2]]], [1827,[7095.67,2170.04,0],[[1787,2],[1874,2]]], [1828,[7549.03,1898.34,-1.52588e-005],[[1788,2],[1875,2]]], [1829,[7293.04,1911.23,0],[[1788,2],[1876,2]]], +[1830,[7858.8,1832.37,0],[[1789,2],[1877,2]]], [1831,[8137.11,1475.28,0],[[1791,2],[1878,2]]], [1832,[8236.1,1448.5,-7.62939e-006],[[1792,2],[1879,2]]], [1833,[10899.1,2638.3,0],[[1793,2],[1880,2]]], [1834,[11350.7,2756.26,0],[[1794,2],[1881,2]]], [1835,[11643.7,3086.48,0],[[1795,2],[1882,2]]], +[1836,[11718.2,2855.22,3.8147e-006],[[1795,2],[1883,2],[1884,2],[1885,2]]], [1837,[11881.2,3359.91,2.54313e-006],[[1796,2],[1886,2],[1882,2]]], [1838,[10903.4,2626.49,0],[[1797,2]]], [1839,[12058.3,3936.23,-7.62939e-006],[[1798,2],[1887,2]]], [1840,[12138.9,3910.52,0],[[1798,2],[1888,2]]], [1841,[5951.72,3265.6,0],[[1799,2],[1889,2]]], +[1842,[5047.12,3734.46,1.52588e-005],[[1801,2],[1844,2]]], [1843,[5122.34,3474.54,3.05176e-005],[[1802,2],[1890,2]]], [1844,[4930.12,3801.69,0],[[1803,2],[1842,2]]], [1845,[4766.04,3746.25,0],[[1803,2],[1891,2]]], [1846,[4552.98,3786.35,0],[[1804,2],[1892,2]]], [1847,[3999.48,3836.75,0],[[1805,2],[1893,2]]], +[1848,[3839.49,3857.36,0],[[1805,2],[1894,2]]], [1849,[4032.19,8026.37,0],[[1806,2]]], [1850,[3957.75,7920.45,0],[[1806,2],[1895,2],[1851,2]]], [1851,[3916.33,7834.54,-3.8147e-006],[[1808,2],[1850,2]]], [1852,[3664.45,7455.01,-1.27157e-006],[[1809,2],[1896,2],[1853,2],[1852,2]]], [1853,[3677.6,7443.29,3.8147e-006],[[1852,2],[1940,2],[1853,2],[1809,2]]], +[1854,[3099.13,6663.06,0],[[1810,2],[1897,2]]], [1855,[3157.73,6835.74,-7.62939e-007],[[1810,2],[1898,2],[1899,2],[1900,2]]], [1856,[3181.24,6724.84,2.54313e-006],[[1810,2],[1856,2],[1899,2]]], [1857,[3497.98,5500.51,0],[[1811,2],[1901,2]]], [1858,[3652.72,11140.7,-1.27157e-006],[[1813,2],[1902,2],[1903,2]]], [1859,[3200.9,9666.33,0],[[1814,2],[1904,2]]], +[1860,[3378.32,8224.49,1.90735e-006],[[1815,2],[1905,2]]], [1861,[3675.96,11820.5,-3.8147e-006],[[1817,2],[1906,2],[1907,2],[1908,2]]], [1862,[3702.24,11751.1,2.54313e-006],[[1817,2],[1862,2],[1909,2]]], [1863,[3754.38,11396.4,7.62939e-006],[[1818,2],[1902,2]]], [1864,[12225.1,4043.57,0],[[1819,2],[1910,2]]], [1865,[10637.5,1382.92,0],[[1820,2],[1911,2]]], +[1866,[10680.3,2192.39,-7.62939e-006],[[1821,2],[1912,2]]], [1867,[9395,2016.79,0],[[1822,2],[1913,2]]], [1868,[9678.17,1468.66,0],[[1823,2],[1914,2]]], [1869,[9889.31,1454.83,1.52588e-005],[[1823,2],[1915,2]]], [1870,[9070.29,2022.56,-1.01725e-005],[[1824,2],[1916,2],[1870,2]]], [1871,[9232.7,1919.64,0],[[1825,2],[1913,2]]], +[1872,[9123.38,1727.18,5.08626e-006],[[1825,2],[1917,2],[1918,2]]], [1873,[6761.85,2419.37,0],[[1826,2],[1919,2]]], [1874,[6932.85,2128.02,0],[[1827,2],[1920,2]]], [1875,[7680.84,1922.37,0],[[1828,2],[1877,2]]], [1876,[7160.95,1830.14,-1.52588e-005],[[1829,2],[1921,2]]], [1877,[7728.96,1858.48,0],[[1830,2],[1875,2]]], +[1878,[8135.49,1333.94,0],[[1831,2],[1922,2]]], [1879,[8318.21,1366.86,-7.62939e-006],[[1832,2],[1923,2]]], [1880,[10997.7,2532.39,0],[[1833,2],[1924,2],[1925,2]]], [1881,[11262,2609,0],[[1834,2],[1926,2]]], [1882,[11750.6,3233.15,0],[[1835,2],[1837,2]]], [1883,[11678.4,2747.96,-1.52588e-005],[[1836,2],[1927,2]]], +[1884,[11790.6,2796.55,1.01725e-005],[[1836,2],[1928,2],[1929,2]]], [1885,[11895.5,2873.38,0],[[1836,2],[1930,2]]], [1886,[11944.2,3495,0],[[1837,2],[1931,2]]], [1887,[12056.5,4066.79,0],[[1839,2],[1910,2]]], [1888,[12288.4,3908.71,0],[[1840,2],[1932,2]]], [1889,[5815.55,3218.95,0],[[1841,2],[1933,2]]], +[1890,[5067.81,3340.26,0],[[1843,2],[1934,2]]], [1891,[4843.85,3660.71,0],[[1845,2],[1892,2],[1935,2]]], [1892,[4672.92,3741.68,0],[[1846,2],[1891,2]]], [1893,[4045.15,3712.9,0],[[1847,2],[1936,2]]], [1894,[3694.8,3724.37,-1.52588e-005],[[1848,2],[1937,2]]], [1895,[3898.59,7922.23,0],[[1850,2]]], +[1896,[3608.42,7476.27,-1.27157e-006],[[1852,2],[1938,2],[1939,2]]], [1897,[2990.48,6597,0],[[1854,2],[1941,2],[1897,2],[1942,2]]], [1898,[3329,6866.57,0],[[1855,2],[1943,2]]], [1899,[3056.29,6794.01,1.90735e-006],[[1855,2],[1856,2],[1942,2]]], [1900,[3175.17,6966.62,0],[[1855,2],[1944,2]]], [1901,[3522,5337.28,0],[[1857,2],[1945,2]]], +[1902,[3717.11,11298.7,7.62939e-006],[[1858,2],[1863,2]]], [1903,[3508.94,11098,0],[[1858,2],[1946,2]]], [1904,[3079.82,9635.34,0],[[1859,2],[1947,2]]], [1905,[3262.72,8118.51,0],[[1860,2],[1948,2]]], [1906,[3540.07,11956,-7.62939e-006],[[1861,2],[1949,2]]], [1907,[3776.98,11893.5,-1.90735e-006],[[1861,2],[1907,2],[1950,2],[1951,2]]], +[1908,[3579.52,11745.4,-2.54313e-006],[[1861,2],[1952,2],[1953,2]]], [1909,[3620.28,11647.3,0],[[1862,2]]], [1910,[12104.5,4091.58,3.8147e-006],[[1864,2],[1887,2]]], [1911,[10660.4,1273.7,0],[[1865,2],[1954,2]]], [1912,[10756.5,2323.27,0],[[1866,2],[1925,2]]], [1913,[9283.65,1963.81,0],[[1867,2],[1871,2]]], +[1914,[9559.74,1447.35,0],[[1868,2],[1955,2]]], [1915,[10047.5,1422.49,-1.52588e-005],[[1869,2],[1956,2]]], [1916,[8946.96,2131.39,0],[[1870,2],[1957,2]]], [1917,[9051.43,1557.93,0],[[1872,2],[1958,2]]], [1918,[9189.44,1577.99,0],[[1872,2],[1959,2]]], [1919,[6599.35,2415.91,0],[[1873,2],[1960,2]]], +[1920,[6781.96,2090.33,0],[[1874,2],[1961,2]]], [1921,[7039.86,1753.44,0],[[1876,2],[1962,2]]], [1922,[7961.88,1258.25,0],[[1878,2],[1963,2]]], [1923,[8403.02,1226.59,0],[[1879,2],[1964,2]]], [1924,[11041.1,2526.2,5.08626e-006],[[1880,2],[1965,2],[1966,2]]], [1925,[10871.8,2465.51,0],[[1880,2],[1912,2]]], +[1926,[11257.1,2592.62,0],[[1881,2],[1967,2],[1965,2]]], [1927,[11574.8,2674.98,0],[[1883,2],[1968,2]]], [1928,[11712.5,2637.29,0],[[1884,2],[1969,2]]], [1929,[11932.9,2706.35,0],[[1884,2],[1970,2]]], [1930,[12028.8,2863.29,0],[[1885,2],[1971,2]]], [1931,[12057.7,3535.45,0],[[1886,2],[1972,2]]], +[1932,[12418.9,3958.93,0],[[1888,2],[1973,2]]], [1933,[5697.25,3138.36,0],[[1889,2],[1974,2]]], [1934,[4936.94,3244.04,0],[[1890,2],[1975,2],[1934,2],[1976,2]]], [1935,[4850.9,3601.24,0],[[1891,2],[1977,2],[1978,2]]], [1936,[4037.2,3554.35,0],[[1893,2],[1979,2]]], [1937,[3623.81,3619.17,0],[[1894,2],[1980,2]]], +[1938,[3580,7491.93,-1.27157e-006],[[1896,2],[1938,2],[1981,2]]], [1939,[3576.23,7347.68,0],[[1896,2],[1982,2]]], [1940,[3697.75,7454.34,-1.27157e-006],[[1853,2]]], [1941,[2883.11,6552.74,0],[[1897,2],[1983,2]]], [1942,[2927.64,6672.81,0],[[1897,2],[1899,2],[1984,2]]], [1943,[3361.58,6916.28,1.27157e-006],[[1898,2],[1943,2],[1985,2]]], +[1944,[3074.3,7012.07,-7.62939e-006],[[1900,2],[1986,2]]], [1945,[3475.61,5245.66,0],[[1901,2],[1987,2]]], [1946,[3374.66,11122.3,0],[[1903,2],[1988,2]]], [1947,[2942.36,9621.12,0],[[1904,2],[1989,2]]], [1948,[3113.06,8028.31,0],[[1905,2],[1990,2]]], [1949,[3461.43,12073.2,0],[[1906,2],[1991,2]]], +[1950,[3730.58,12010.8,0],[[1907,2],[1992,2]]], [1951,[3903.68,11964.9,0],[[1907,2],[1993,2]]], [1952,[3437.77,11849.5,0],[[1908,2],[1994,2]]], [1953,[3451.36,11617.9,-7.62939e-006],[[1908,2],[1995,2]]], [1954,[10684.1,1158.41,-9.53674e-007],[[1911,2],[1996,2],[1954,2],[1997,2]]], [1955,[9413.22,1439.56,0],[[1914,2],[1998,2]]], +[1956,[10152.8,1344.75,0],[[1915,2],[1999,2]]], [1957,[8877.67,2097.52,-3.05176e-005],[[1916,2],[2000,2]]], [1958,[8980.92,1384.04,0],[[1917,2],[2001,2]]], [1959,[9274.72,1460.52,0],[[1918,2],[1998,2]]], [1960,[6485.42,2391.03,0],[[1919,2],[2002,2]]], [1961,[6652.47,2050.45,0],[[1920,2],[2003,2]]], +[1962,[6903.83,1688.86,0],[[1921,2],[2004,2]]], [1963,[7850.17,1173.87,0],[[1922,2],[2005,2]]], [1964,[8517.2,1122.62,0],[[1923,2],[2006,2]]], [1965,[11190.1,2557.68,0],[[1924,2],[1926,2]]], [1966,[11036.2,2353,-1.52588e-005],[[1924,2],[2007,2]]], [1967,[11385.1,2553.26,0],[[1926,2],[2008,2],[1968,2]]], +[1968,[11435.3,2600.5,0],[[1927,2],[1967,2]]], [1969,[11669.2,2493.66,3.05176e-005],[[1928,2],[2009,2]]], [1970,[12066.1,2636.59,0],[[1929,2],[2010,2]]], [1971,[12173.1,2835.78,-1.52588e-005],[[1930,2],[2011,2]]], [1972,[12166,3591.77,-7.62939e-006],[[1931,2],[2012,2]]], [1973,[12560.6,4039.13,0],[[1932,2],[2013,2]]], +[1974,[5636.43,3111.37,3.8147e-006],[[1933,2],[2014,2],[1974,2],[2015,2]]], [1975,[4863.14,3374.86,0],[[1934,2],[2016,2]]], [1976,[4802.73,3162.19,0],[[1934,2],[2017,2]]], [1977,[4694.59,3598.59,0],[[1935,2],[2018,2]]], [1978,[4891.76,3494.52,0],[[1935,2],[2016,2]]], [1979,[4038.4,3526.48,-5.08626e-006],[[1936,2],[2019,2],[2020,2]]], +[1980,[3656.18,3473.68,-1.52588e-005],[[1937,2],[2021,2]]], [1981,[3420.63,7469.06,0],[[1938,2],[2022,2]]], [1982,[3527.56,7238.75,0],[[1939,2],[2023,2]]], [1983,[2794.02,6465.47,0],[[1941,2],[2024,2]]], [1984,[2844.73,6792.65,0],[[1942,2],[2025,2]]], [1985,[3389.39,7023.52,0],[[1943,2],[2023,2]]], +[1986,[2919.02,6988.95,0],[[1944,2],[2025,2]]], [1987,[3364.71,5137.09,1.52588e-005],[[1945,2],[2026,2]]], [1988,[3237.29,11127.1,7.62939e-006],[[1946,2],[2027,2]]], [1989,[2813.01,9602.38,0],[[1947,2],[2028,2]]], [1990,[2978.02,7960.18,0],[[1948,2],[2029,2]]], [1991,[3401.9,12217.1,7.62939e-006],[[1949,2],[2030,2]]], +[1992,[3652.06,12117.2,0],[[1950,2],[2031,2]]], [1993,[4012.29,12042.1,-7.62939e-006],[[1951,2]]], [1994,[3345.98,11953.7,0],[[1952,2],[2032,2]]], [1995,[3355.89,11576.2,0],[[1953,2],[2033,2],[2034,2]]], [1996,[10745.1,979.203,0],[[1954,2],[2035,2]]], [1997,[10580.7,1258.72,0],[[1954,2],[2036,2]]], +[1998,[9381.37,1345.9,0],[[1955,2],[1959,2],[2037,2]]], [1999,[10283.3,1332.36,0],[[1956,2],[2038,2]]], [2000,[8907.65,2079.75,0],[[1957,2]]], [2001,[8901.34,1268.23,1.52588e-005],[[1958,2],[2039,2]]], [2002,[6359.1,2361.29,0],[[1960,2],[2040,2]]], [2003,[6539.68,1992.96,-1.52588e-005],[[1961,2],[2041,2]]], +[2004,[6759.71,1587.51,0],[[1962,2],[2042,2]]], [2005,[7792.68,1162.13,0],[[1963,2],[2043,2],[2005,2],[2044,2]]], [2006,[8644.98,1053.32,0],[[1964,2],[2045,2]]], [2007,[11028.2,2176.45,0],[[1966,2],[2046,2]]], [2008,[11410,2559.5,-1.52588e-005],[[1967,2],[2047,2]]], [2009,[11584.3,2396.26,0],[[1969,2],[2048,2]]], +[2010,[12177.8,2590.86,0],[[1970,2],[2049,2]]], [2011,[12307.7,2802.15,0],[[1971,2],[2050,2]]], [2012,[12286.7,3635.57,-7.62939e-006],[[1972,2],[2051,2]]], [2013,[12683.4,4091.2,0],[[1973,2],[2052,2]]], [2014,[5504.84,3039.59,1.52588e-005],[[1974,2],[2053,2]]], [2015,[5485.47,3100.66,0],[[1974,2],[2054,2]]], +[2016,[4843.9,3403.04,-5.08626e-006],[[1975,2],[1978,2],[2055,2]]], [2017,[4713.74,3045.46,0],[[1976,2],[2056,2]]], [2018,[4599.92,3588.89,1.52588e-005],[[1977,2],[2057,2]]], [2019,[4023.5,3332.39,0],[[1979,2],[2058,2]]], [2020,[3903.2,3494.47,0],[[1979,2],[2059,2]]], [2021,[3664.7,3430.08,5.08626e-006],[[1980,2],[2059,2],[2060,2]]], +[2022,[3245.18,7412.7,0],[[1981,2],[2061,2]]], [2023,[3422.09,7124.9,0],[[1982,2],[1985,2]]], [2024,[2788.76,6299.19,-1.52588e-005],[[1983,2],[2062,2]]], [2025,[2771.94,6907.63,0],[[1984,2],[1986,2],[2063,2]]], [2026,[3243.35,5023.06,1.52588e-005],[[1987,2],[2064,2]]], [2027,[3150.4,11246.7,0],[[1988,2],[2065,2]]], +[2028,[2709.74,9569.37,0],[[1989,2],[2066,2],[2067,2],[2068,2]]], [2029,[2827.07,7871.02,0],[[1990,2],[2069,2]]], [2030,[3397.69,12237.4,2.54313e-006],[[1991,2],[2070,2],[2071,2]]], [2031,[3550.73,12214.4,0],[[1992,2],[2070,2]]], [2032,[3305.61,12026.6,2.54313e-006],[[1994,2],[2072,2],[2071,2],[2073,2]]], [2033,[3259.01,11695.6,0],[[1995,2],[2074,2]]], +[2034,[3183.46,11459.8,0],[[1995,2],[2065,2],[2075,2]]], [2035,[10876.3,899.608,0],[[1996,2],[2076,2]]], [2036,[10495.7,1383.32,0],[[1997,2],[2038,2]]], [2037,[9479.23,1222.13,-1.52588e-005],[[1998,2],[2077,2]]], [2038,[10417.1,1417.48,7.62939e-006],[[1999,2],[2036,2]]], [2039,[8943.68,1129.02,0],[[2001,2],[2078,2]]], +[2040,[6222.79,2249.47,-1.52588e-005],[[2002,2],[2079,2]]], [2041,[6439.89,1932.31,0],[[2003,2],[2080,2]]], [2042,[6647.59,1519.5,0],[[2004,2],[2081,2]]], [2043,[7652.89,1020.65,0],[[2005,2],[2082,2]]], [2044,[7689.01,1241.21,0],[[2005,2],[2083,2]]], [2045,[8659.71,949.458,0],[[2006,2],[2084,2],[2085,2]]], +[2046,[11032.5,2150.87,-5.08626e-006],[[2007,2],[2086,2],[2087,2]]], [2047,[11364.8,2383.8,0],[[2008,2],[2088,2]]], [2048,[11568.5,2308.26,0],[[2009,2],[2089,2]]], [2049,[12308,2556.3,0],[[2010,2],[2090,2]]], [2050,[12435.9,2769.01,0],[[2011,2],[2091,2]]], [2051,[12419.4,3595.25,0],[[2012,2],[2092,2]]], +[2052,[12719.9,4094.97,0],[[2013,2]]], [2053,[5456.34,2985.99,0],[[2014,2],[2093,2]]], [2054,[5292.56,3091.22,-1.52588e-005],[[2015,2],[2094,2]]], [2055,[4719.95,3417.08,0],[[2016,2],[2095,2]]], [2056,[4716.99,3030.58,0],[[2017,2],[2096,2],[2097,2]]], [2057,[4511.84,3624.65,1.52588e-005],[[2018,2],[2098,2]]], +[2058,[3991.78,3227.84,-1.52588e-005],[[2019,2],[2099,2]]], [2059,[3740.83,3442.62,0],[[2020,2],[2021,2]]], [2060,[3642.91,3266.87,0],[[2021,2],[2100,2]]], [2061,[3113.03,7350.43,0],[[2022,2],[2101,2]]], [2062,[2728.31,6186.26,0],[[2024,2],[2102,2]]], [2063,[2635.35,6948.06,0],[[2025,2],[2103,2]]], +[2064,[3162.5,4954.68,1.01725e-005],[[2026,2],[2104,2],[2105,2]]], [2065,[3106.45,11292.4,-2.54313e-006],[[2027,2],[2034,2],[2075,2],[2106,2]]], [2066,[2606.97,9744.32,0],[[2028,2],[2107,2]]], [2067,[2734.78,9372.57,0],[[2028,2],[2108,2]]], [2068,[2520.12,9537.3,-3.8147e-006],[[2028,2],[2109,2]]], [2069,[2753.96,7757.26,0],[[2029,2],[2110,2]]], +[2070,[3474.69,12311.5,-2.54313e-006],[[2030,2],[2031,2],[2111,2]]], [2071,[3283.65,12199.7,0],[[2030,2],[2032,2],[2072,2]]], [2072,[3252,12176,0],[[2032,2],[2071,2],[2112,2]]], [2073,[3246.71,11922.2,0],[[2032,2],[2113,2]]], [2074,[3164.83,11738.6,0],[[2033,2],[2114,2]]], [2075,[3113.81,11341.4,0],[[2065,2],[2034,2],[2153,2]]], +[2076,[10914.3,890.923,-9.53674e-007],[[2035,2],[2115,2],[2116,2],[2117,2]]], [2077,[9539.09,1129.47,0],[[2037,2],[2118,2]]], [2078,[9016.83,980.982,0],[[2039,2],[2119,2]]], [2079,[6182.68,2227.36,5.08626e-006],[[2040,2],[2120,2],[2121,2]]], [2080,[6398.26,1899.3,0],[[2041,2],[2122,2],[2123,2]]], [2081,[6552.95,1460.56,0],[[2042,2],[2124,2],[2125,2]]], +[2082,[7551.24,915.058,0],[[2043,2],[2126,2]]], [2083,[7542.68,1215.79,-1.52588e-005],[[2044,2],[2127,2]]], [2084,[8573.87,1064.4,0],[[2045,2],[2128,2]]], [2085,[8740.79,817.996,7.62939e-006],[[2045,2],[2129,2]]], [2086,[10997.5,2026.34,0],[[2046,2],[2130,2]]], [2087,[11192.8,2102.79,0],[[2046,2],[2131,2]]], +[2088,[11374.8,2300.12,0],[[2047,2],[2132,2]]], [2089,[11534.8,2180.68,0],[[2048,2],[2089,2],[2133,2]]], [2090,[12396.9,2427.94,0],[[2049,2],[2134,2],[2135,2]]], [2091,[12584.1,2742.48,1.52588e-005],[[2050,2],[2136,2]]], [2092,[12483.2,3671.44,0],[[2051,2],[2137,2]]], [2093,[5469.79,2970.51,-1.01725e-005],[[2053,2],[2138,2],[2139,2]]], +[2094,[5148.92,3087.99,0],[[2054,2],[2140,2]]], [2095,[4595.16,3342.44,0],[[2055,2],[2141,2]]], [2096,[4778.11,2865.97,0],[[2056,2],[2142,2]]], [2097,[4763.45,3043.23,5.08626e-006],[[2056,2],[2143,2],[2097,2],[2144,2]]], [2098,[4422.13,3513.62,0],[[2057,2],[2145,2]]], [2099,[4031.69,3144.77,0],[[2058,2],[2146,2]]], +[2100,[3643.23,3180.53,0],[[2060,2],[2147,2]]], [2101,[2961.74,7345.93,0],[[2061,2],[2148,2]]], [2102,[2763.91,6061.05,0],[[2062,2],[2149,2]]], [2103,[2550.89,7052.8,0],[[2063,2],[2150,2]]], [2104,[3271.17,4820.46,0],[[2064,2],[2151,2]]], [2105,[3019.72,5092.84,-1.52588e-005],[[2064,2],[2152,2]]], +[2106,[3055.58,11145.5,0],[[2065,2],[2154,2]]], [2107,[2532.72,9867.87,-3.8147e-006],[[2066,2],[2155,2]]], [2108,[2737.38,9228.72,3.8147e-006],[[2067,2],[2156,2]]], [2109,[2393.54,9514.08,0],[[2068,2],[2157,2]]], [2110,[2645.64,7700.92,0],[[2069,2],[2158,2]]], [2111,[3646.07,12446,0],[[2070,2],[2159,2]]], +[2112,[3187.38,12130.3,2.54313e-006],[[2072,2],[2160,2],[2112,2]]], [2113,[3262.95,11853.3,0],[[2073,2],[2113,2],[2114,2]]], [2114,[3145.02,11743,2.54313e-006],[[2074,2],[2113,2],[2161,2]]], [2115,[11088.2,808.806,0],[[2076,2],[2162,2]]], [2116,[10864.5,941.57,0],[[2076,2],[2163,2]]], [2117,[11054.4,893.853,0],[[2076,2],[2164,2]]], +[2118,[9518.32,1016.7,0],[[2077,2],[2165,2]]], [2119,[9158.93,904.181,0],[[2078,2],[2166,2]]], [2120,[6208.26,2078.18,0],[[2079,2],[2167,2]]], [2121,[6044.2,2260.4,0],[[2079,2],[2168,2]]], [2122,[6317.76,1708.13,-1.52588e-005],[[2080,2],[2169,2]]], [2123,[6337.93,1905.36,0],[[2080,2],[2170,2],[2171,2]]], +[2124,[6389.48,1360.53,1.52588e-005],[[2081,2],[2172,2]]], [2125,[6575.86,1331.61,0],[[2081,2],[2173,2]]], [2126,[7432.88,838.77,0],[[2082,2],[2174,2]]], [2127,[7406.81,1139.22,0],[[2083,2],[2175,2]]], [2128,[8436.7,1094.28,0],[[2084,2],[2176,2]]], [2129,[8869.21,764.002,0],[[2085,2],[2177,2]]], +[2130,[11008.1,1877.03,0],[[2086,2],[2178,2]]], [2131,[11299.2,2054.8,0],[[2087,2],[2179,2]]], [2132,[11393,2149.76,7.62939e-006],[[2088,2],[2179,2]]], [2133,[11526,2064.42,-2.54313e-006],[[2089,2],[2180,2],[2179,2]]], [2134,[12446.5,2265.58,0],[[2090,2],[2181,2]]], [2135,[12314.3,2463.45,0],[[2090,2],[2182,2]]], +[2136,[12756,2749.21,0],[[2091,2],[2183,2]]], [2137,[12616.4,3727.94,-7.62939e-006],[[2092,2],[2184,2]]], [2138,[5413.3,2879.5,0],[[2093,2],[2185,2]]], [2139,[5637.22,2986.29,0],[[2093,2],[2186,2]]], [2140,[5006.74,3072.42,0],[[2094,2],[2187,2]]], [2141,[4499.96,3259.69,0],[[2095,2],[2188,2]]], +[2142,[4821.02,2731.68,0],[[2096,2],[2189,2]]], [2143,[4754.68,3059.12,0],[[2097,2],[2143,2]]], [2144,[4816.66,3002.77,0],[[2097,2],[2190,2],[2187,2]]], [2145,[4430.96,3403.07,0],[[2098,2],[2191,2]]], [2146,[4025.99,3044.6,-5.08626e-006],[[2099,2],[2192,2],[2193,2]]], [2147,[3563.19,3264.9,0],[[2100,2],[2194,2]]], +[2148,[2867.78,7338.32,0],[[2101,2],[2195,2]]], [2149,[2715.77,5917.02,-1.52588e-005],[[2102,2],[2196,2]]], [2150,[2490.17,7145.86,1.90735e-006],[[2103,2],[2197,2],[2198,2],[2199,2]]], [2151,[3299.97,4667.86,1.52588e-005],[[2104,2],[2200,2]]], [2152,[2897.48,5221.38,-1.52588e-005],[[2105,2],[2201,2]]], [2153,[3007.17,11433.8,0],[[2075,2],[2202,2]]], +[2154,[3039.74,11094.4,0],[[2106,2],[2203,2],[2154,2],[2204,2]]], [2155,[2456.97,10027.1,0],[[2107,2],[2205,2]]], [2156,[2717.17,9105.46,0],[[2108,2],[2206,2]]], [2157,[2242.24,9484.39,7.62939e-006],[[2109,2],[2207,2]]], [2158,[2485.08,7678.18,0],[[2110,2],[2208,2]]], [2159,[3752.31,12523.8,-7.62939e-006],[[2111,2],[2209,2]]], +[2160,[3030.25,12049.8,0],[[2112,2],[2210,2]]], [2161,[3021.7,11633.8,0],[[2114,2],[2202,2]]], [2162,[11190.5,784.178,1.27157e-006],[[2115,2],[2211,2],[2212,2]]], [2163,[10816.6,959.79,0],[[2116,2]]], [2164,[11075.4,993.304,0],[[2117,2],[2213,2]]], [2165,[9508.12,875.195,0],[[2118,2],[2214,2]]], +[2166,[9159.5,765.627,1.52588e-005],[[2119,2],[2215,2]]], [2167,[6376.61,2096.93,0],[[2120,2],[2216,2]]], [2168,[5907.54,2243.95,0],[[2121,2],[2217,2]]], [2169,[6201.88,1562.34,0],[[2122,2],[2218,2]]], [2170,[6211.02,1910.1,0],[[2123,2],[2219,2]]], [2171,[6411.1,2018.36,0],[[2123,2],[2216,2]]], +[2172,[6262.27,1306.29,0],[[2124,2],[2220,2]]], [2173,[6677.99,1266.86,0],[[2125,2],[2221,2]]], [2174,[7305.05,785.741,0],[[2126,2],[2222,2]]], [2175,[7344.75,1030.21,0],[[2127,2],[2223,2]]], [2176,[8473.82,1002.6,0],[[2128,2],[2224,2]]], [2177,[9004.13,683.482,0],[[2129,2],[2225,2]]], +[2178,[11039.2,1719.13,0],[[2130,2],[2226,2]]], [2179,[11358.2,2070.53,-7.62939e-006],[[2131,2],[2132,2],[2133,2]]], [2180,[11704.4,2065.12,7.62939e-006],[[2133,2],[2227,2]]], [2181,[12468.6,2131.88,0],[[2134,2],[2228,2]]], [2182,[12181.3,2411.41,0],[[2135,2],[2229,2]]], [2183,[12798.3,2747.11,1.52588e-005],[[2136,2]]], +[2184,[12739.3,3696.94,0],[[2137,2],[2230,2]]], [2185,[5332.65,2958.53,0],[[2138,2],[2231,2]]], [2186,[5786.79,3063.82,-1.52588e-005],[[2139,2],[2232,2]]], [2187,[4857.61,3078.91,0],[[2140,2],[2144,2]]], [2188,[4424.9,3200.58,0],[[2141,2],[2191,2],[2233,2]]], [2189,[4716.53,2656.27,0],[[2142,2],[2234,2]]], +[2190,[4975.92,2918.51,0],[[2144,2],[2235,2]]], [2191,[4445.86,3291.8,0],[[2145,2],[2188,2]]], [2192,[4123.84,2969.45,0],[[2146,2],[2236,2]]], [2193,[3895.97,2941.71,1.52588e-005],[[2146,2],[2237,2]]], [2194,[3487.49,3369.97,0],[[2147,2],[2238,2]]], [2195,[2745.16,7277.27,0],[[2148,2],[2199,2]]], +[2196,[2666.42,5770.44,0],[[2149,2],[2239,2]]], [2197,[2348.36,7002.2,-7.62939e-006],[[2150,2],[2240,2]]], [2198,[2360.19,7271.2,0],[[2150,2],[2241,2]]], [2199,[2676.93,7246.17,0],[[2150,2],[2195,2]]], [2200,[3321.7,4542.11,0],[[2151,2],[2242,2]]], [2201,[2777.2,5348.41,-1.52588e-005],[[2152,2],[2243,2]]], +[2202,[2902.84,11530.8,-7.62939e-006],[[2153,2],[2161,2],[2244,2],[2245,2]]], [2203,[2951.17,10971.2,0],[[2154,2],[2246,2],[2247,2]]], [2204,[3048.41,10944.4,0],[[2154,2],[2248,2]]], [2205,[2351.73,10104.1,0],[[2155,2],[2249,2]]], [2206,[2748.56,8917.03,1.90735e-006],[[2156,2],[2250,2]]], [2207,[2125.66,9484.59,0],[[2157,2],[2251,2]]], +[2208,[2369.51,7611.69,0],[[2158,2],[2252,2]]], [2209,[3858.29,12601.1,0],[[2159,2],[2253,2]]], [2210,[2899.67,11973.9,0],[[2160,2],[2254,2]]], [2211,[11317.8,676.388,0],[[2162,2],[2255,2]]], [2212,[11093.8,739.587,0],[[2162,2],[2256,2]]], [2213,[10960.6,1081.48,0],[[2164,2],[2257,2]]], +[2214,[9542.63,749.725,-1.52588e-005],[[2165,2],[2258,2]]], [2215,[9147.91,588.195,0],[[2166,2],[2259,2]]], [2216,[6474.43,2167.45,-1.52588e-005],[[2167,2],[2171,2]]], [2217,[5755.35,2176.67,-3.05176e-005],[[2168,2],[2260,2]]], [2218,[6105.23,1477.05,0],[[2169,2],[2261,2]]], [2219,[6149.05,1896.1,0],[[2170,2],[2262,2],[2263,2]]], +[2220,[6114.52,1286.88,-1.52588e-005],[[2172,2],[2264,2]]], [2221,[6730.33,1142.94,0],[[2173,2],[2265,2]]], [2222,[7178.36,727.824,0],[[2174,2],[2266,2]]], [2223,[7172.82,944.344,0],[[2175,2],[2267,2]]], [2224,[8459.68,951.376,0],[[2176,2],[2268,2]]], [2225,[9047.25,553.916,0],[[2177,2],[2269,2]]], +[2226,[11040.2,1585.93,1.52588e-005],[[2178,2],[2270,2]]], [2227,[11827.5,2135.81,-7.62939e-006],[[2180,2],[2271,2]]], [2228,[12468.8,1986.09,0],[[2181,2],[2272,2]]], [2229,[12034.5,2364.51,0],[[2182,2],[2273,2]]], [2230,[12783.7,3675.47,0],[[2184,2]]], [2231,[5186.16,2957,0],[[2185,2],[2274,2]]], +[2232,[5951.86,3072.54,0],[[2186,2],[2275,2]]], [2233,[4451.07,3058.62,0],[[2188,2],[2276,2]]], [2234,[4729.54,2569.37,0],[[2189,2],[2277,2],[2278,2]]], [2235,[4978.9,2815.52,0],[[2190,2],[2279,2]]], [2236,[4127.5,2827.82,0],[[2192,2],[2280,2]]], [2237,[3841.51,2832.17,0],[[2193,2],[2281,2]]], +[2238,[3465.78,3514.52,0],[[2194,2],[2282,2]]], [2239,[2585.72,5644.31,0],[[2196,2],[2283,2]]], [2240,[2296.68,6902.25,0],[[2197,2],[2284,2]]], [2241,[2248.01,7347.8,0],[[2198,2],[2285,2]]], [2242,[3351.41,4392.99,1.52588e-005],[[2200,2],[2286,2]]], [2243,[2667.47,5463.98,1.52588e-005],[[2201,2],[2283,2]]], +[2244,[2746.3,11460.7,1.52588e-005],[[2202,2],[2287,2]]], [2245,[2811.58,11654.2,0],[[2202,2],[2288,2],[2289,2]]], [2246,[2830.67,11082.4,-7.62939e-006],[[2203,2],[2290,2]]], [2247,[2823.23,10818.6,7.62939e-006],[[2203,2],[2291,2]]], [2248,[3046.77,10758.2,0],[[2204,2],[2292,2]]], [2249,[2243.62,10189.9,-1.90735e-006],[[2205,2],[2293,2],[2294,2],[2295,2]]], +[2250,[2851.53,8821.81,0],[[2206,2],[2296,2]]], [2251,[2027.97,9528.88,0],[[2207,2],[2297,2],[2298,2]]], [2252,[2257.23,7548.3,0],[[2208,2],[2299,2]]], [2253,[3935.13,12695.1,0],[[2209,2],[2300,2]]], [2254,[2782.1,11898.2,1.90735e-006],[[2210,2],[2289,2],[2254,2],[2301,2]]], [2255,[11421.4,570.348,0],[[2211,2],[2302,2]]], +[2256,[10956.1,744.124,0],[[2212,2],[2303,2]]], [2257,[10911.4,1177.76,0],[[2213,2],[2304,2]]], [2258,[9671.38,637.982,0],[[2214,2],[2305,2]]], [2259,[9123.77,446.772,0],[[2215,2],[2306,2],[2269,2]]], [2260,[5709.03,2161.9,0],[[2217,2],[2307,2],[2308,2]]], [2261,[6069.32,1340.18,0],[[2218,2],[2264,2]]], +[2262,[6022.69,1983.8,1.52588e-005],[[2219,2],[2309,2]]], [2263,[6044.58,1861.71,0],[[2219,2],[2263,2],[2310,2]]], [2264,[6042.78,1279.77,5.08626e-006],[[2220,2],[2261,2],[2311,2]]], [2265,[6806.72,1057.31,0],[[2221,2],[2312,2]]], [2266,[7265.86,652.752,0],[[2222,2],[2313,2]]], [2267,[7007.52,930.839,-3.05176e-005],[[2223,2],[2314,2]]], +[2268,[8329.92,1003.1,0],[[2224,2],[2315,2]]], [2269,[9094.28,427.986,0],[[2225,2],[2259,2],[2316,2]]], [2270,[11040.2,1446.11,0],[[2226,2],[2317,2]]], [2271,[11894.3,2229.52,0],[[2227,2],[2273,2]]], [2272,[12458.1,1840.24,0],[[2228,2],[2318,2]]], [2273,[11958.1,2288.56,0],[[2229,2],[2271,2]]], +[2274,[5078.19,2888.33,0],[[2231,2],[2319,2]]], [2275,[6024.84,3009.24,1.52588e-005],[[2232,2],[2320,2]]], [2276,[4417.09,2997.55,-1.52588e-005],[[2233,2],[2321,2]]], [2277,[4543.43,2563.06,0],[[2234,2],[2322,2]]], [2278,[4799.81,2415.65,0],[[2234,2],[2323,2]]], [2279,[4977.18,2668.75,0],[[2235,2],[2319,2]]], +[2280,[4199.72,2741.38,0],[[2236,2],[2324,2]]], [2281,[3783.98,2711.01,0],[[2237,2],[2325,2]]], [2282,[3389.35,3652.34,0],[[2238,2],[2326,2]]], [2283,[2542.47,5606.46,3.8147e-006],[[2239,2],[2243,2],[2283,2],[2327,2]]], [2284,[2264.81,6796.29,-3.8147e-006],[[2240,2],[2328,2],[2284,2],[2329,2]]], [2285,[2111.28,7376.21,0],[[2241,2],[2330,2]]], +[2286,[3350.19,4228.75,0],[[2242,2],[2331,2]]], [2287,[2618.89,11398.9,0],[[2244,2],[2332,2]]], [2288,[2708.8,11648.6,0],[[2245,2],[2289,2],[2333,2]]], [2289,[2742.61,11760.1,2.54313e-006],[[2245,2],[2254,2],[2288,2]]], [2290,[2737.23,11173.1,0],[[2246,2],[2334,2]]], [2291,[2725.58,10708.3,0],[[2247,2],[2335,2]]], +[2292,[3051.69,10619,0],[[2248,2],[2336,2]]], [2293,[2121.68,10092.1,0],[[2249,2],[2337,2]]], [2294,[2388.87,10289.5,0],[[2249,2],[2338,2]]], [2295,[2160.76,10330.7,0],[[2249,2],[2339,2]]], [2296,[2912.71,8681.11,0],[[2250,2],[2340,2]]], [2297,[1888.68,9599.83,0],[[2251,2],[2341,2],[2342,2]]], +[2298,[2050.78,9463.22,0],[[2251,2]]], [2299,[2135.7,7477.29,0],[[2252,2],[2343,2],[2330,2],[2344,2]]], [2300,[3953.62,12782.1,0],[[2253,2]]], [2301,[2733.35,12027.4,0],[[2254,2],[2345,2]]], [2302,[11538.7,474.188,0],[[2255,2],[2346,2]]], [2303,[10822.9,720.955,0],[[2256,2],[2347,2]]], +[2304,[11048.1,1138.61,0],[[2257,2],[2348,2]]], [2305,[9798.17,571.962,0],[[2258,2],[2349,2]]], [2306,[9125.57,405.183,0],[[2259,2],[2306,2]]], [2307,[5537.22,2139.23,-3.05176e-005],[[2260,2],[2350,2]]], [2308,[5826.29,2098.65,0],[[2260,2],[2309,2]]], [2309,[5898.81,2075.47,0],[[2262,2],[2308,2]]], +[2310,[5999.05,1822.49,5.08626e-006],[[2263,2],[2310,2],[2351,2]]], [2311,[5907.53,1238.45,0],[[2264,2],[2352,2]]], [2312,[6903.76,958.074,0],[[2265,2],[2314,2]]], [2313,[7404.86,642.243,-1.52588e-005],[[2266,2],[2353,2]]], [2314,[6897.55,911.438,1.01725e-005],[[2267,2],[2312,2],[2354,2],[2355,2],[2314,2]]], [2315,[8251.42,1001.74,0],[[2268,2],[2356,2]]], +[2316,[9125.83,395.506,0],[[2269,2]]], [2317,[11049.6,1296.68,-1.52588e-005],[[2270,2],[2348,2]]], [2318,[12421.1,1674.36,0],[[2272,2],[2357,2]]], [2319,[5056.33,2730.37,0],[[2274,2],[2279,2]]], [2320,[6096.48,2929.51,1.52588e-005],[[2275,2],[2358,2]]], [2321,[4296.93,2961.33,1.52588e-005],[[2276,2],[2359,2]]], +[2322,[4441.61,2476.04,0],[[2277,2],[2360,2]]], [2323,[4785.6,2325.03,7.62939e-006],[[2278,2],[2361,2],[2362,2],[2363,2]]], [2324,[4216.9,2760.51,-5.08626e-006],[[2280,2],[2359,2],[2324,2]]], [2325,[3723.75,2582.67,-1.52588e-005],[[2281,2],[2364,2]]], [2326,[3322.76,3706.77,7.62939e-006],[[2282,2],[2365,2],[2366,2],[2367,2]]], [2327,[2473.65,5666.71,-1.01725e-005],[[2283,2],[2368,2],[2369,2]]], +[2328,[2275.13,6659.64,0],[[2284,2],[2370,2]]], [2329,[2153.03,6713.45,0],[[2284,2],[2371,2]]], [2330,[2019.23,7407.67,-9.53674e-007],[[2285,2],[2299,2],[2372,2],[2373,2]]], [2331,[3337.42,4100.95,0],[[2286,2],[2365,2]]], [2332,[2499.12,11382.1,0],[[2287,2],[2374,2]]], [2333,[2539.6,11487.8,0],[[2288,2],[2374,2]]], +[2334,[2657.67,11212.2,0],[[2290,2],[2334,2]]], [2335,[2647.29,10616.6,7.62939e-006],[[2291,2],[2375,2]]], [2336,[3065.9,10496.3,0],[[2292,2],[2376,2]]], [2337,[1976.88,10107.5,0],[[2293,2],[2377,2]]], [2338,[2456.15,10379.5,0],[[2294,2],[2375,2]]], [2339,[2090.98,10393.8,0],[[2295,2],[2378,2],[2379,2]]], +[2340,[2960.44,8557.27,0],[[2296,2],[2380,2]]], [2341,[1864.34,9733.29,0],[[2297,2],[2381,2],[2382,2]]], [2342,[1842.33,9612.97,0],[[2297,2],[2383,2],[2384,2],[2382,2]]], [2343,[2069.81,7521.44,0],[[2299,2],[2372,2]]], [2344,[2293.36,7466.34,0],[[2299,2],[2385,2]]], [2345,[2704.28,12083.5,0],[[2301,2],[2386,2],[2387,2]]], +[2346,[11638.9,395.36,0],[[2302,2],[2388,2],[2389,2]]], [2347,[10699.8,726.041,0],[[2303,2],[2390,2]]], [2348,[11072.9,1228.59,7.62939e-006],[[2304,2],[2317,2]]], [2349,[9953.16,528.183,0],[[2305,2],[2391,2]]], [2350,[5368.75,2145.28,0],[[2307,2],[2392,2]]], [2351,[5920.12,1794.22,0],[[2310,2],[2393,2]]], +[2352,[5770.25,1210.33,0],[[2311,2],[2394,2]]], [2353,[7503.21,702.604,0],[[2313,2],[2395,2]]], [2354,[6705.47,819.955,-3.05176e-005],[[2314,2],[2396,2]]], [2355,[6912.65,925.155,-1.01725e-005],[[2314,2]]], [2356,[8225.27,862.197,0],[[2315,2],[2397,2]]], [2357,[12441.2,1510.43,3.05176e-005],[[2318,2],[2398,2]]], +[2358,[6136.81,2980.32,-1.52588e-005],[[2320,2],[2399,2]]], [2359,[4230.62,2855.71,-1.52588e-005],[[2321,2],[2324,2]]], [2360,[4354.37,2406.84,0],[[2322,2],[2400,2],[2360,2],[2401,2]]], [2361,[4639.33,2292.79,0],[[2323,2],[2402,2]]], [2362,[4947.39,2337.88,0],[[2323,2],[2403,2]]], [2363,[4734.69,2179.26,6.10352e-005],[[2323,2],[2404,2]]], +[2364,[3664.06,2581.77,0],[[2325,2],[2405,2]]], [2365,[3333.26,3926.27,0],[[2326,2],[2331,2]]], [2366,[3314.75,3564.99,0],[[2326,2],[2406,2]]], [2367,[3171.45,3629.36,0],[[2326,2],[2407,2]]], [2368,[2386.32,5834.86,-1.52588e-005],[[2327,2],[2408,2]]], [2369,[2345.58,5582.94,0],[[2327,2],[2409,2]]], +[2370,[2335.87,6537.99,0],[[2328,2],[2410,2]]], [2371,[2085.04,6676.99,0],[[2371,2]]], [2372,[1964.46,7462.66,0],[[2330,2],[2343,2],[2411,2],[2412,2]]], [2373,[1870.24,7367.14,6.35783e-007],[[2330,2],[2413,2],[2414,2]]], [2374,[2455.71,11402.2,0],[[2332,2],[2333,2],[2415,2]]], [2375,[2574.85,10545.4,0],[[2335,2],[2338,2],[2416,2]]], +[2376,[3185.27,10519.8,0],[[2336,2],[2417,2]]], [2377,[1891.47,10092.2,0],[[2337,2],[2418,2],[2419,2]]], [2378,[2037.39,10540.8,-7.62939e-006],[[2339,2],[2420,2]]], [2379,[2073.25,10331.1,-2.54313e-006],[[2339,2],[2419,2],[2379,2]]], [2380,[2940.63,8451.33,0],[[2340,2],[2421,2]]], [2381,[1848.08,9891.06,0],[[2341,2],[2422,2],[2418,2],[2423,2]]], +[2382,[1793.81,9677.88,0],[[2341,2],[2342,2],[2384,2]]], [2383,[1743.47,9483.56,7.62939e-006],[[2342,2],[2424,2]]], [2384,[1789.86,9656.48,0],[[2342,2],[2382,2],[2425,2]]], [2385,[2426.07,7480.25,-3.8147e-006],[[2344,2],[2385,2]]], [2386,[2837.09,12158.3,7.62939e-006],[[2345,2],[2426,2]]], [2387,[2542.16,12116.1,0],[[2345,2],[2427,2]]], +[2388,[11690.4,405.618,-1.27157e-006],[[2346,2],[2428,2],[2389,2],[2388,2]]], [2389,[11691.2,386.712,-3.8147e-006],[[2388,2],[2473,2],[2389,2],[2346,2]]], [2390,[10574,617.992,0],[[2347,2],[2429,2]]], [2391,[10068.2,536.255,0],[[2349,2],[2430,2]]], [2392,[5349.81,2145.75,-1.01725e-005],[[2350,2],[2431,2],[2432,2]]], [2393,[5831.43,1773.03,0],[[2351,2],[2433,2]]], +[2394,[5642.36,1161.81,3.05176e-005],[[2352,2],[2434,2]]], [2395,[7626.97,759.897,0],[[2353,2],[2435,2]]], [2396,[6605.24,678.778,-3.05176e-005],[[2354,2],[2436,2]]], [2397,[8093.12,738.089,0],[[2356,2],[2437,2]]], [2398,[12445.5,1436.84,0],[[2357,2],[2438,2],[2439,2]]], [2399,[6247.67,3016.68,-1.52588e-005],[[2358,2],[2440,2]]], +[2400,[4174.63,2408.5,3.05176e-005],[[2360,2],[2441,2]]], [2401,[4422.96,2301.01,0],[[2360,2],[2442,2],[2402,2]]], [2402,[4537.93,2306.62,0],[[2361,2],[2401,2]]], [2403,[5081.63,2354.08,0],[[2362,2],[2443,2]]], [2404,[4779.88,2117.35,1.01725e-005],[[2363,2],[2444,2],[2445,2]]], [2405,[3654.98,2617.47,0],[[2364,2],[2446,2],[2447,2]]], +[2406,[3302.05,3414.98,0],[[2366,2],[2448,2]]], [2407,[3115.55,3468.46,0],[[2367,2],[2449,2]]], [2408,[2332.5,5960.37,0],[[2368,2],[2450,2]]], [2409,[2230.59,5481.26,0],[[2369,2],[2451,2]]], [2410,[2336.45,6495.59,0],[[2370,2],[2452,2],[2410,2]]], [2411,[1796.86,7501.16,0],[[2372,2],[2455,2]]], +[2412,[2008.46,7494.58,0],[[2372,2],[2456,2]]], [2413,[1815.92,7362.79,-6.35783e-007],[[2373,2],[2457,2],[2458,2]]], [2414,[1884.18,7336.62,0],[[2373,2],[2459,2],[2460,2]]], [2415,[2312.19,11507.5,-1.52588e-005],[[2374,2],[2461,2]]], [2416,[2467.91,10526.5,0],[[2375,2],[2462,2]]], [2417,[3342.88,10558,-7.62939e-006],[[2376,2],[2463,2]]], +[2418,[1834.42,10041.7,2.54313e-006],[[2377,2],[2381,2],[2422,2],[2464,2]]], [2419,[1976.01,10211.5,0],[[2377,2],[2379,2]]], [2420,[1988.52,10607.9,0],[[2378,2],[2465,2]]], [2421,[2959,8337.78,0],[[2380,2],[2421,2],[2466,2]]], [2422,[1793.79,9971.5,3.8147e-006],[[2381,2],[2418,2],[2423,2],[2422,2],[2467,2]]], [2423,[1824.02,9972.49,-7.62939e-006],[[2422,2],[2510,2],[2423,2],[2381,2]]], +[2424,[1700.8,9397.02,0],[[2383,2],[2468,2]]], [2425,[1685.23,9713.56,0],[[2384,2],[2469,2]]], [2426,[2943.05,12212.1,7.62939e-006],[[2386,2],[2470,2]]], [2427,[2424.28,12150,0],[[2387,2],[2471,2]]], [2428,[11810.6,494.656,0],[[2388,2],[2472,2]]], [2429,[10428.1,584.459,0],[[2390,2],[2474,2]]], +[2430,[10201.8,580.877,0],[[2391,2],[2474,2]]], [2431,[5335.87,2057.46,0],[[2392,2],[2475,2]]], [2432,[5265.64,2171.83,0],[[2392,2],[2476,2]]], [2433,[5781.45,1776.06,0],[[2393,2],[2433,2],[2477,2]]], [2434,[5633.28,1166.26,1.01725e-005],[[2394,2],[2478,2],[2479,2]]], [2435,[7767.46,706.468,0],[[2395,2],[2480,2]]], +[2436,[6534.14,566.381,0],[[2396,2],[2481,2]]], [2437,[7987.96,677.445,0],[[2397,2],[2480,2]]], [2438,[12301.9,1465.52,0],[[2398,2],[2482,2]]], [2439,[12453.7,1295.93,0],[[2398,2],[2483,2]]], [2440,[6422.98,3012.98,0],[[2399,2],[2484,2]]], [2441,[4014.62,2352.73,0],[[2400,2],[2485,2]]], +[2442,[4283.17,2260.96,0],[[2401,2],[2486,2]]], [2443,[5217.5,2338.14,0],[[2403,2],[2487,2]]], [2444,[4891.47,1999.3,-3.05176e-005],[[2404,2],[2488,2]]], [2445,[4660.49,2085.87,3.05176e-005],[[2404,2],[2489,2]]], [2446,[3637.83,2762.57,0],[[2405,2],[2490,2]]], [2447,[3522.76,2614.07,0],[[2405,2],[2491,2]]], +[2448,[3284.86,3287.98,0],[[2406,2],[2492,2]]], [2449,[3107.87,3319.92,0],[[2407,2],[2493,2]]], [2450,[2235.44,6071.96,0],[[2408,2],[2494,2]]], [2451,[2111.88,5366.08,0],[[2409,2],[2495,2]]], [2452,[2318.61,6365.05,0],[[2410,2],[2496,2]]], [2453,[1999.34,6803.77,-7.62939e-006],[[2371,2],[2454,2]]], +[2454,[1986.88,6915.5,0],[[2453,2],[2497,2]]], [2455,[1779.24,7505.4,0],[[2411,2],[2498,2],[2458,2],[2499,2]]], [2456,[1945.11,7560.71,0],[[2412,2],[2499,2]]], [2457,[1753.85,7339.81,-6.35783e-007],[[2413,2],[2500,2],[2501,2]]], [2458,[1745.99,7486.56,0],[[2413,2],[2455,2],[2458,2]]], [2459,[1911.52,7268.95,-1.27157e-006],[[2414,2],[2459,2],[2502,2]]], +[2460,[2007.92,7341.69,0],[[2414,2],[2460,2]]], [2461,[2176.84,11610.3,0],[[2415,2],[2503,2],[2504,2]]], [2462,[2384.12,10471.8,0],[[2416,2],[2505,2]]], [2463,[3436.2,10410.8,0],[[2417,2],[2506,2]]], [2464,[1756.63,10184.4,0],[[2418,2],[2507,2]]], [2465,[1965.8,10635.8,0],[[2420,2],[2465,2],[2508,2]]], +[2466,[2828.54,8341.04,0],[[2421,2],[2509,2]]], [2467,[1629.27,9901.91,0],[[2422,2],[2511,2]]], [2468,[1585.8,9422.34,0],[[2424,2],[2512,2]]], [2469,[1568.54,9749.7,7.62939e-006],[[2425,2],[2513,2]]], [2470,[3083.54,12285.8,-7.62939e-006],[[2426,2],[2514,2]]], [2471,[2350.95,12268.1,0],[[2427,2],[2515,2]]], +[2472,[11929,494.324,0],[[2428,2],[2516,2]]], [2473,[11675.4,383.151,-1.27157e-006],[[2389,2]]], [2474,[10295.8,556.384,0],[[2429,2],[2430,2]]], [2475,[5248.95,1995.09,3.05176e-005],[[2431,2],[2517,2]]], [2476,[5122.63,2165.98,0],[[2432,2],[2518,2]]], [2477,[5691.87,1804.31,-5.08626e-006],[[2433,2],[2477,2],[2519,2]]], +[2478,[5688.1,1019.62,0],[[2434,2],[2520,2]]], [2479,[5577.69,1328.3,0],[[2434,2],[2521,2]]], [2480,[7883.05,647.339,0],[[2435,2],[2437,2]]], [2481,[6410.31,502.743,3.05176e-005],[[2436,2],[2522,2]]], [2482,[12131.2,1538.13,-1.52588e-005],[[2438,2],[2523,2]]], [2483,[12410.9,1137.8,0],[[2439,2],[2524,2]]], +[2484,[6469.79,2975.44,0],[[2440,2],[2525,2]]], [2485,[3914.92,2212.28,0],[[2441,2],[2526,2],[2486,2]]], [2486,[4124.49,2238.33,0],[[2442,2],[2485,2]]], [2487,[5337.12,2343.76,0],[[2443,2],[2527,2]]], [2488,[4983.29,1895.01,0],[[2444,2],[2528,2]]], [2489,[4545.57,2038.17,0],[[2445,2],[2529,2]]], +[2490,[3626.18,2841.54,0],[[2446,2],[2530,2]]], [2491,[3414.25,2621.49,0],[[2447,2],[2531,2]]], [2492,[3232.58,3164.85,0],[[2448,2],[2532,2]]], [2493,[2981.18,3365.59,1.52588e-005],[[2449,2],[2533,2]]], [2494,[2209.81,6081.43,-3.8147e-006],[[2450,2],[2534,2],[2535,2],[2536,2]]], [2495,[1999.3,5244.6,0],[[2451,2],[2537,2]]], +[2496,[2279.13,6294.67,0],[[2452,2],[2535,2]]], [2497,[1981.1,6955.11,0],[[2454,2],[2538,2],[2539,2]]], [2498,[1732.81,7496.28,0],[[2455,2],[2540,2]]], [2499,[1904.46,7552.19,0],[[2455,2],[2456,2]]], [2500,[1808.03,7228.65,0],[[2457,2],[2541,2]]], [2501,[1590.41,7310.79,0],[[2457,2],[2542,2],[2501,2],[2543,2]]], +[2502,[1989.82,7178.57,0],[[2459,2],[2544,2]]], [2503,[2060.9,11722.7,0],[[2461,2],[2545,2]]], [2504,[2066.36,11500.6,0],[[2461,2],[2546,2]]], [2505,[2302.3,10529.7,7.62939e-006],[[2462,2],[2547,2]]], [2506,[3539.99,10273,-7.62939e-006],[[2463,2],[2548,2]]], [2507,[1676.15,10297.7,0],[[2464,2],[2549,2]]], +[2508,[1865.38,10719.5,0],[[2465,2],[2550,2]]], [2509,[2732.49,8311.84,2.38419e-007],[[2466,2],[2551,2]]], [2510,[1836.01,9951.07,0],[[2423,2]]], [2511,[1511.79,9846.16,0],[[2467,2],[2513,2]]], [2512,[1455.82,9455.13,0],[[2468,2],[2552,2]]], [2513,[1456.02,9762.64,-1.90735e-006],[[2469,2],[2511,2],[2553,2],[2554,2]]], +[2514,[3204.42,12350.4,0],[[2470,2],[2555,2]]], [2515,[2228.75,12334.5,-1.52588e-005],[[2471,2],[2556,2]]], [2516,[11999.8,582.065,0],[[2472,2],[2557,2]]], [2517,[5230.94,1965.35,-2.03451e-005],[[2475,2],[2558,2],[2517,2]]], [2518,[4968.98,2154.12,0],[[2476,2],[2559,2]]], [2519,[5576.87,1817.07,0],[[2477,2],[2560,2]]], +[2520,[5819.56,881.087,0],[[2478,2],[2561,2]]], [2521,[5489.33,1454.55,3.05176e-005],[[2479,2],[2562,2]]], [2522,[6270.84,456.493,0],[[2481,2],[2563,2]]], [2523,[11990,1585.61,1.52588e-005],[[2482,2],[2564,2]]], [2524,[12389.8,994.441,0],[[2483,2],[2565,2]]], [2525,[6535.72,2952.85,3.05176e-005],[[2484,2],[2566,2]]], +[2526,[3726.58,2148.35,0],[[2485,2],[2567,2]]], [2527,[5457.59,2389.03,0],[[2487,2],[2568,2]]], [2528,[5066.15,1805.19,0],[[2488,2],[2569,2],[2558,2]]], [2529,[4384.79,2017.7,0],[[2489,2],[2570,2]]], [2530,[3492.74,2815.13,0],[[2490,2],[2571,2]]], [2531,[3290.42,2563.55,0],[[2491,2],[2572,2],[2531,2]]], +[2532,[3188.94,3019.65,0],[[2492,2],[2573,2]]], [2533,[2852.46,3391.59,-1.52588e-005],[[2493,2],[2574,2]]], [2534,[2011.15,6108.68,0],[[2494,2],[2575,2]]], [2535,[2243.67,6223.6,1.52588e-005],[[2494,2],[2496,2]]], [2536,[2067.88,5948.73,0],[[2494,2],[2576,2]]], [2537,[1897,5144.12,0],[[2495,2],[2577,2]]], +[2538,[1908.52,7009.44,0],[[2497,2],[2578,2],[2539,2]]], [2539,[1968.11,7023.6,0],[[2497,2],[2538,2],[2578,2],[2544,2]]], [2540,[1564.25,7443.17,0],[[2498,2],[2543,2]]], [2541,[1829.45,7165.5,0],[[2500,2],[2578,2],[2579,2]]], [2542,[1389.97,7262.87,0],[[2501,2],[2580,2]]], [2543,[1517.84,7418.25,0],[[2501,2],[2540,2],[2581,2],[2582,2]]], +[2544,[1999.12,7075.39,0],[[2502,2],[2539,2]]], [2545,[1933.76,11828.8,1.52588e-005],[[2503,2],[2583,2]]], [2546,[1971.88,11392,-1.52588e-005],[[2504,2],[2584,2]]], [2547,[2275.04,10586.9,2.54313e-006],[[2505,2],[2585,2],[2586,2]]], [2548,[3659.06,10354.9,0],[[2506,2],[2587,2]]], [2549,[1655.98,10325.2,-2.54313e-006],[[2507,2],[2588,2],[2589,2]]], +[2550,[1857.12,10743.2,-2.54313e-006],[[2508,2],[2590,2],[2591,2]]], [2551,[2615.27,8239.46,0],[[2509,2],[2592,2]]], [2552,[1406.46,9473.04,-2.54313e-006],[[2512,2],[2593,2],[2594,2]]], [2553,[1387.37,9677.92,0],[[2513,2],[2594,2],[2593,2]]], [2554,[1350.83,9836.14,0],[[2513,2],[2595,2]]], [2555,[3268.62,12385.4,-7.62939e-006],[[2514,2]]], +[2556,[2067.69,12397,0],[[2515,2],[2596,2]]], [2557,[12104.8,639.748,7.62939e-006],[[2516,2],[2597,2]]], [2558,[5173.44,1816.61,-1.01725e-005],[[2517,2],[2528,2],[2569,2],[2598,2]]], [2559,[4912.52,2133.55,0],[[2518,2]]], [2560,[5499.58,1869.3,0],[[2519,2],[2599,2],[2560,2]]], [2561,[5930.81,776.958,3.05176e-005],[[2520,2],[2600,2]]], +[2562,[5386.93,1537.37,3.05176e-005],[[2521,2],[2601,2]]], [2563,[6126.2,536.203,0],[[2522,2],[2600,2]]], [2564,[11833.9,1566.39,-1.52588e-005],[[2523,2],[2602,2]]], [2565,[12378.5,846.294,0],[[2524,2],[2603,2]]], [2566,[6591.95,3067.03,-1.52588e-005],[[2525,2],[2604,2]]], [2567,[3594.24,2174.21,0],[[2526,2],[2605,2]]], +[2568,[5557.56,2466.49,0],[[2527,2],[2606,2]]], [2569,[5098.64,1756.35,7.62939e-006],[[2528,2],[2558,2],[2607,2],[2608,2]]], [2570,[4310.26,2055.87,3.05176e-005],[[2529,2],[2609,2]]], [2571,[3393.81,2828.09,0],[[2530,2],[2610,2]]], [2572,[3256.37,2532.74,-7.62939e-006],[[2531,2],[2611,2],[2612,2]]], [2573,[3151.13,2927.63,3.8147e-006],[[2532,2],[2613,2],[2614,2],[2615,2]]], +[2574,[2726.8,3412.14,1.52588e-005],[[2533,2],[2616,2]]], [2575,[1855.7,6129.56,0],[[2534,2],[2617,2]]], [2576,[2022.48,5901.59,0],[[2536,2]]], [2577,[1758.12,5055.6,1.52588e-005],[[2537,2],[2618,2]]], [2578,[1910.67,7060.93,-3.8147e-006],[[2538,2],[2539,2],[2541,2]]], [2579,[1723.44,7009.55,0],[[2541,2],[2619,2],[2579,2],[2620,2],[2621,2],[2622,2]]], +[2580,[1276.17,7251.84,0],[[2542,2],[2623,2],[2580,2],[2624,2]]], [2581,[1378.81,7375.46,0],[[2543,2],[2625,2],[2624,2]]], [2582,[1462.85,7529.03,-1.58946e-007],[[2543,2],[2626,2],[2627,2]]], [2583,[1820.32,11922,0],[[2545,2],[2628,2]]], [2584,[1868.39,11272.1,-1.52588e-005],[[2546,2],[2629,2]]], [2585,[2290.52,10714.5,0],[[2547,2],[2630,2]]], +[2586,[2220.34,10722.1,0],[[2547,2],[2631,2],[2632,2]]], [2587,[3771.83,10397.6,3.8147e-006],[[2548,2],[2633,2]]], [2588,[1728,10417.4,-7.62939e-006],[[2549,2],[2634,2]]], [2589,[1545.15,10465.1,0],[[2549,2],[2635,2]]], [2590,[1815.87,10682.5,-2.54313e-006],[[2550,2],[2634,2],[2636,2]]], [2591,[1918.66,10870.2,-7.62939e-006],[[2550,2],[2637,2]]], +[2592,[2496.24,8155.36,2.38419e-007],[[2551,2],[2638,2]]], [2593,[1436.65,9567.7,-7.62939e-006],[[2552,2],[2553,2]]], [2594,[1291.2,9495.71,1.90735e-006],[[2552,2],[2553,2],[2639,2],[2640,2]]], [2595,[1227.23,9835.53,-7.62939e-006],[[2554,2],[2641,2]]], [2596,[1915.26,12427.8,0],[[2556,2],[2642,2]]], [2597,[12182.6,557.486,0],[[2557,2],[2643,2]]], +[2598,[5317.11,1894.09,0],[[2558,2],[2599,2]]], [2599,[5446.66,1910.01,-5.08626e-006],[[2560,2],[2598,2],[2599,2]]], [2600,[6025.58,693.483,0],[[2561,2],[2563,2]]], [2601,[5259.11,1637.06,0],[[2562,2],[2607,2]]], [2602,[11741.5,1519.3,0],[[2564,2],[2602,2],[2644,2]]], [2603,[12444.8,676.402,0],[[2565,2],[2645,2]]], +[2604,[6696.92,3099.82,-1.52588e-005],[[2566,2],[2646,2]]], [2605,[3467.3,2101.91,3.05176e-005],[[2567,2],[2647,2]]], [2606,[5694.52,2505.08,0],[[2568,2],[2648,2]]], [2607,[5210.03,1674.6,0],[[2569,2],[2601,2]]], [2608,[4945.36,1595.55,0],[[2569,2],[2649,2]]], [2609,[4247.54,2003.17,3.05176e-005],[[2570,2],[2650,2]]], +[2610,[3344.84,2756.5,0],[[2571,2],[2651,2]]], [2611,[3099.91,2548,1.01725e-005],[[2572,2],[2652,2],[2653,2]]], [2612,[3362.22,2423.83,3.05176e-005],[[2572,2],[2654,2]]], [2613,[3008.48,2971.49,0],[[2573,2],[2655,2]]], [2614,[3100.46,2791.58,0],[[2573,2],[2653,2]]], [2615,[3164.87,2786.88,0],[[2573,2],[2656,2]]], +[2616,[2653.99,3436.29,0],[[2574,2],[2657,2],[2658,2]]], [2617,[1815.74,6148.41,0],[[2575,2],[2659,2],[2660,2]]], [2618,[1670.58,4949.28,1.52588e-005],[[2577,2],[2661,2]]], [2619,[1730.61,7034.46,0],[[2579,2]]], [2620,[1716.35,7122.14,-3.8147e-006],[[2579,2],[2662,2]]], [2621,[1729.31,6835.27,0],[[2579,2],[2663,2]]], +[2622,[1574.22,6937.72,0],[[2579,2],[2664,2]]], [2623,[1195.74,7238.9,-4.76837e-007],[[2580,2],[2665,2],[2623,2],[2666,2]]], [2624,[1278.73,7353.06,0],[[2580,2],[2581,2],[2625,2]]], [2625,[1272.44,7378.19,-1.90735e-006],[[2581,2],[2624,2],[2667,2]]], [2626,[1384.23,7645.97,0],[[2582,2],[2668,2]]], [2627,[1589.57,7583.78,0],[[2582,2],[2669,2]]], +[2628,[1688.68,12028.3,0],[[2583,2],[2670,2]]], [2629,[1825.72,11224.6,-3.8147e-006],[[2584,2],[2671,2],[2629,2],[2672,2]]], [2630,[2295.86,10735.4,0],[[2585,2]]], [2631,[2123.97,10905.6,7.62939e-006],[[2586,2],[2673,2]]], [2632,[2206.6,10883.7,0],[[2586,2],[2674,2]]], [2633,[3841.55,10320.3,0],[[2587,2]]], +[2634,[1798.15,10532,0],[[2588,2],[2590,2]]], [2635,[1478.76,10542.8,-1.90735e-006],[[2589,2],[2635,2],[2675,2],[2676,2]]], [2636,[1674.15,10681.5,0],[[2590,2],[2677,2]]], [2637,[1891.38,11011.6,7.62939e-006],[[2591,2],[2672,2]]], [2638,[2368.13,8066.32,-4.76837e-007],[[2592,2],[2678,2]]], [2639,[1159.17,9573.67,-7.62939e-006],[[2594,2],[2679,2]]], +[2640,[1262.45,9429.26,1.90735e-006],[[2594,2],[2640,2],[2680,2],[2681,2]]], [2641,[1069.68,9824.87,0],[[2595,2],[2682,2]]], [2642,[1747.24,12452.4,0],[[2596,2],[2683,2]]], [2643,[12178.9,461.36,0],[[2597,2],[2684,2]]], [2644,[11742.4,1498.06,0],[[2602,2],[2644,2],[2685,2]]], [2645,[12429.5,517.347,0],[[2603,2],[2686,2]]], +[2646,[6832.22,3092.04,0],[[2604,2],[2687,2]]], [2647,[3373.45,2092.24,0],[[2605,2],[2654,2],[2688,2]]], [2648,[5799.46,2478.91,-3.05176e-005],[[2606,2],[2689,2]]], [2649,[5020.17,1527.84,0],[[2608,2],[2690,2]]], [2650,[4240.75,1875.16,0],[[2609,2],[2691,2]]], [2651,[3287.09,2783.15,0],[[2610,2],[2656,2]]], +[2652,[3011.57,2438.41,0],[[2611,2],[2692,2]]], [2653,[3093.45,2712.07,0],[[2611,2],[2614,2]]], [2654,[3347,2282.19,0],[[2612,2],[2647,2]]], [2655,[2826.05,3017.93,0],[[2613,2],[2693,2]]], [2656,[3207.63,2751.27,0],[[2615,2],[2651,2]]], [2657,[2526.17,3583.18,0],[[2616,2],[2694,2]]], +[2658,[2678.95,3281.54,0],[[2616,2],[2695,2]]], [2659,[1688.86,6053.56,0],[[2617,2],[2696,2]]], [2660,[1766.12,6333.27,0],[[2617,2],[2697,2]]], [2661,[1580.96,4853.27,0],[[2618,2],[2698,2]]], [2662,[1687.39,7162.1,0],[[2620,2],[2699,2]]], [2663,[1715.03,6656.03,0],[[2621,2],[2697,2]]], +[2664,[1441.71,6925.43,0],[[2622,2],[2700,2]]], [2665,[1069.42,7285.37,6.35783e-007],[[2623,2],[2667,2],[2701,2]]], [2666,[1226.71,7202.37,-1.90735e-006],[[2623,2],[2702,2],[2666,2],[2703,2]]], [2667,[1117.19,7375.52,0],[[2625,2],[2665,2],[2704,2]]], [2668,[1378.76,7674.54,0],[[2626,2],[2705,2],[2706,2]]], [2669,[1704.73,7593.82,0],[[2627,2],[2707,2]]], +[2670,[1553.08,12144.9,0],[[2628,2],[2708,2]]], [2671,[1714,11294,0],[[2629,2],[2709,2]]], [2672,[1876.33,11080.3,0],[[2629,2],[2637,2]]], [2673,[2084.37,11028.1,0],[[2631,2],[2710,2]]], [2674,[2188.93,11038.5,0],[[2632,2],[2711,2]]], [2675,[1322.6,10562.9,0],[[2635,2],[2712,2]]], +[2676,[1446.69,10702.9,0],[[2635,2],[2713,2]]], [2677,[1541.92,10716.1,-1.52588e-005],[[2636,2],[2713,2]]], [2678,[2263.75,7990.95,0],[[2638,2],[2714,2]]], [2679,[1125.04,9594.85,0],[[2639,2]]], [2680,[1265.21,9246.87,0],[[2640,2],[2715,2]]], [2681,[1115.68,9283.61,0],[[2640,2],[2716,2],[2717,2]]], +[2682,[919.402,9816.29,0],[[2641,2],[2718,2]]], [2683,[1611.14,12469.3,0],[[2642,2],[2719,2]]], [2684,[12246.6,371.668,0],[[2643,2],[2720,2]]], [2685,[11605.1,1445.4,-7.62939e-006],[[2644,2],[2721,2]]], [2686,[12417.1,351.285,0],[[2645,2],[2722,2]]], [2687,[6961.76,3095.79,1.52588e-005],[[2646,2],[2723,2]]], +[2688,[3357.53,2020.39,-1.01725e-005],[[2647,2],[2724,2],[2725,2]]], [2689,[5912.3,2461.95,-3.05176e-005],[[2648,2],[2726,2]]], [2690,[5125.48,1538.69,0],[[2649,2],[2727,2]]], [2691,[4167.55,1757.64,3.05176e-005],[[2650,2],[2728,2]]], [2692,[2915.42,2380.1,0],[[2652,2],[2729,2]]], [2693,[2729.77,3026.7,0],[[2655,2],[2695,2],[2730,2]]], +[2694,[2467.18,3697.07,0],[[2657,2],[2731,2]]], [2695,[2661.73,3179.96,0],[[2658,2],[2693,2]]], [2696,[1596.75,5960.03,1.52588e-005],[[2659,2],[2732,2]]], [2697,[1737.43,6480.32,0],[[2660,2],[2663,2]]], [2698,[1483.48,4900.73,0],[[2661,2],[2733,2]]], [2699,[1577.36,7149.64,0],[[2662,2],[2734,2],[2735,2],[2699,2]]], +[2700,[1318.96,6884.15,0],[[2664,2],[2736,2]]], [2701,[909.509,7278.11,6.35783e-007],[[2665,2],[2737,2],[2738,2]]], [2702,[1202.17,7209.02,-1.27157e-006],[[2666,2]]], [2703,[1415.98,7198.39,0],[[2666,2],[2734,2]]], [2704,[1212.51,7532.04,0],[[2667,2]]], [2705,[1306.21,7734.22,0],[[2668,2],[2739,2],[2740,2],[2741,2]]], +[2706,[1556.97,7707.07,0],[[2668,2],[2742,2]]], [2707,[1774.23,7637.87,0],[[2669,2]]], [2708,[1440.85,12238.9,0],[[2670,2],[2743,2]]], [2709,[1621.56,11412.8,0],[[2671,2],[2744,2]]], [2710,[2052.67,11167.8,0],[[2673,2],[2745,2]]], [2711,[2167.96,11188.6,1.52588e-005],[[2674,2],[2745,2]]], +[2712,[1172.59,10575.7,0],[[2675,2],[2746,2]]], [2713,[1443.43,10734.4,0],[[2676,2],[2677,2],[2747,2]]], [2714,[2138.6,7897.94,0],[[2678,2],[2748,2]]], [2715,[1291.45,9119.82,0],[[2680,2],[2749,2]]], [2716,[992.522,9207.38,0],[[2681,2],[2750,2]]], [2717,[1025.84,9408.71,0],[[2681,2],[2751,2]]], +[2718,[748.108,9805.25,0],[[2682,2],[2752,2],[2753,2]]], [2719,[1452.93,12444.6,0],[[2683,2],[2754,2]]], [2720,[12319.4,304.863,0],[[2684,2],[2722,2]]], [2721,[11498.7,1431.18,-7.62939e-006],[[2685,2],[2755,2]]], [2722,[12331.3,262.265,0],[[2686,2],[2720,2],[2756,2]]], [2723,[7121.08,3045.74,0],[[2687,2],[2757,2]]], +[2724,[3415.56,1864.07,0],[[2688,2],[2758,2]]], [2725,[3280.56,2013.49,1.01725e-005],[[2688,2],[2759,2],[2760,2]]], [2726,[6051.52,2477.91,0],[[2689,2],[2761,2]]], [2727,[5096.48,1441.29,3.05176e-005],[[2690,2],[2762,2]]], [2728,[4104.5,1642.66,0],[[2691,2],[2763,2],[2764,2]]], [2729,[2811.57,2286.95,0],[[2692,2],[2765,2]]], +[2730,[2684.02,2863.78,0],[[2693,2],[2766,2]]], [2731,[2412.19,3800.13,0],[[2694,2],[2767,2]]], [2732,[1507.66,5861.03,0],[[2696,2],[2768,2]]], [2733,[1404.02,4851,0],[[2698,2],[2769,2]]], [2734,[1477.21,7188.89,0],[[2699,2],[2703,2]]], [2735,[1582.7,7140.02,0],[[2699,2]]], +[2736,[1259.05,6868.82,-2.54313e-006],[[2700,2],[2770,2],[2771,2]]], [2737,[731.277,7217.79,0],[[2701,2],[2772,2]]], [2738,[1007.71,7155.13,-3.8147e-006],[[2701,2],[2773,2]]], [2739,[1224.9,7863.3,0],[[2705,2],[2774,2]]], [2740,[1252.02,7706.63,0],[[2705,2]]], [2741,[1383.27,7846.2,0],[[2705,2],[2775,2]]], +[2742,[1690.12,7759.41,0],[[2706,2],[2776,2]]], [2743,[1329.9,12346.7,0],[[2708,2],[2777,2]]], [2744,[1573.83,11561.7,0],[[2709,2],[2778,2]]], [2745,[2099.46,11294.2,0],[[2710,2],[2711,2]]], [2746,[1037.71,10559.3,0],[[2712,2],[2779,2]]], [2747,[1285.92,10782.2,0],[[2713,2],[2780,2]]], +[2748,[2024.85,7848.91,1.19209e-007],[[2714,2],[2781,2]]], [2749,[1321.51,8970.33,0],[[2715,2],[2782,2]]], [2750,[891.069,9106.13,0],[[2716,2],[2783,2]]], [2751,[973.483,9531.67,0],[[2717,2],[2784,2]]], [2752,[781.533,9945.91,0],[[2718,2],[2785,2]]], [2753,[498.664,9781.82,0],[[2718,2],[2786,2]]], +[2754,[1326.35,12429.3,0],[[2719,2],[2777,2]]], [2755,[11453.3,1382.11,0],[[2721,2]]], [2756,[12319.4,280.525,3.8147e-006],[[2722,2]]], [2757,[7205.54,2932.5,0],[[2723,2],[2787,2]]], [2758,[3467.71,1725.17,0],[[2724,2],[2788,2]]], [2759,[3125.72,2049.76,3.05176e-005],[[2725,2],[2789,2]]], +[2760,[3235.57,1901.9,0],[[2725,2],[2790,2]]], [2761,[6183.67,2520.75,0],[[2726,2],[2791,2]]], [2762,[5077.9,1392.81,-1.01725e-005],[[2727,2],[2762,2],[2792,2]]], [2763,[4068.91,1782.24,0],[[2728,2],[2793,2]]], [2764,[4087.19,1470.88,3.05176e-005],[[2728,2],[2794,2]]], [2765,[2737.71,2339.02,0],[[2729,2],[2795,2]]], +[2766,[2564.51,2779.57,-1.52588e-005],[[2730,2],[2796,2]]], [2767,[2397.14,3944.52,0],[[2731,2],[2797,2]]], [2768,[1385.5,5789.98,-1.52588e-005],[[2732,2],[2798,2]]], [2769,[1377.85,4850.97,-2.54313e-006],[[2733,2],[2799,2],[2800,2]]], [2770,[1156.43,6980,0],[[2736,2],[2773,2]]], [2771,[1133.11,6769.98,0],[[2736,2],[2801,2]]], +[2772,[591.986,7183.77,-1.90735e-006],[[2737,2],[2802,2]]], [2773,[1105.31,7037.59,0],[[2738,2],[2770,2]]], [2774,[1083.75,7923.99,-1.90735e-006],[[2739,2],[2803,2]]], [2775,[1415.72,7956.63,0],[[2741,2],[2804,2],[2805,2]]], [2776,[1826.68,7793.97,0],[[2742,2],[2781,2]]], [2777,[1246.19,12411.9,5.08626e-006],[[2743,2],[2754,2],[2806,2]]], +[2778,[1480.65,11671.6,0],[[2744,2],[2807,2]]], [2779,[898.816,10530.9,-1.52588e-005],[[2746,2],[2808,2]]], [2780,[1144.71,10819.7,0],[[2747,2],[2809,2]]], [2781,[1890.06,7812.73,0],[[2748,2],[2776,2]]], [2782,[1369.47,8802.1,0],[[2749,2],[2810,2]]], [2783,[855.625,9046.5,2.54313e-006],[[2750,2],[2811,2],[2812,2]]], +[2784,[939.939,9535.76,0],[[2751,2]]], [2785,[822.703,10088,0],[[2752,2],[2813,2]]], [2786,[366.588,9767.96,0],[[2753,2],[2814,2]]], [2787,[7283.92,2808.22,0],[[2757,2],[2815,2]]], [2788,[3533.35,1583.08,0],[[2758,2],[2816,2]]], [2789,[2981.75,2033.06,0],[[2759,2],[2817,2]]], +[2790,[3166.99,1769.74,0],[[2760,2],[2818,2]]], [2791,[6301.78,2567.61,0],[[2761,2],[2819,2]]], [2792,[4946.56,1344.15,0],[[2762,2],[2820,2]]], [2793,[4029.62,1907.29,0],[[2763,2],[2821,2]]], [2794,[4032.23,1346.99,0],[[2764,2],[2822,2]]], [2795,[2656.69,2412.75,0],[[2765,2],[2823,2]]], +[2796,[2477.7,2829.21,-1.52588e-005],[[2766,2],[2824,2]]], [2797,[2360.62,4066.51,2.54313e-006],[[2767,2],[2825,2],[2826,2]]], [2798,[1367.75,5791.73,-5.08626e-006],[[2768,2],[2798,2],[2827,2]]], [2799,[1320.11,5020.97,0],[[2769,2],[2828,2]]], [2800,[1494.29,4748.3,2.54313e-006],[[2769,2],[2829,2],[2830,2]]], [2801,[1041.17,6670.92,0],[[2771,2],[2831,2]]], +[2802,[525.892,7101.98,0],[[2772,2],[2832,2],[2833,2]]], [2803,[966.799,7970.88,-1.90735e-006],[[2774,2],[2834,2]]], [2804,[1426.05,8146.27,0],[[2775,2],[2835,2]]], [2805,[1356.59,8006.33,0],[[2775,2]]], [2806,[1047.75,12419,0],[[2777,2],[2836,2]]], [2807,[1436.09,11769.1,0],[[2778,2],[2837,2]]], +[2808,[843.725,10515.8,-3.8147e-006],[[2779,2],[2838,2],[2839,2],[2840,2]]], [2809,[1002.29,10860.8,0],[[2780,2],[2841,2]]], [2810,[1390.8,8668.09,-7.62939e-006],[[2782,2],[2842,2]]], [2811,[674.759,8879,0],[[2783,2],[2843,2]]], [2812,[1010.62,8966.4,7.62939e-006],[[2783,2],[2812,2]]], [2813,[865.43,10219.6,0],[[2785,2],[2840,2]]], +[2814,[232.665,9749.26,7.62939e-006],[[2786,2],[2844,2]]], [2815,[7299.62,2719.93,0],[[2787,2],[2845,2],[2846,2]]], [2816,[3624.48,1489,-3.05176e-005],[[2788,2],[2847,2]]], [2817,[2840.64,1929.62,3.05176e-005],[[2789,2],[2848,2]]], [2818,[3083.79,1659.86,0],[[2790,2],[2849,2]]], [2819,[6412.5,2484.82,0],[[2791,2],[2850,2]]], +[2820,[4898.72,1202.08,0],[[2792,2],[2851,2]]], [2821,[3995.68,2032.1,0],[[2793,2],[2852,2]]], [2822,[3896.21,1229.04,0],[[2794,2],[2853,2]]], [2823,[2542.19,2367,0],[[2795,2],[2854,2]]], [2824,[2329.52,2799.62,5.08626e-006],[[2796,2],[2855,2],[2856,2]]], [2825,[2205.65,3988.45,1.52588e-005],[[2797,2],[2857,2]]], +[2826,[2348.82,4256.7,0],[[2797,2],[2858,2]]], [2827,[1240.17,5924.49,0],[[2798,2],[2859,2]]], [2828,[1265.74,5145.88,0],[[2799,2],[2860,2]]], [2829,[1542.47,4605.92,7.62939e-006],[[2800,2],[2861,2]]], [2830,[1663.82,4720.47,0],[[2800,2],[2862,2]]], [2831,[957.829,6641.71,0],[[2801,2],[2863,2]]], +[2832,[629.815,6953.95,3.8147e-006],[[2802,2],[2864,2]]], [2833,[379.716,7042.05,0],[[2802,2],[2865,2]]], [2834,[846.005,8055.24,-3.8147e-006],[[2803,2],[2866,2]]], [2835,[1476.45,8285.47,0],[[2804,2],[2867,2]]], [2836,[1026.23,12417.6,0],[[2806,2],[2868,2],[2869,2]]], [2837,[1292.26,11853.3,1.52588e-005],[[2807,2],[2870,2]]], +[2838,[812.704,10702.9,0],[[2808,2],[2871,2],[2841,2]]], [2839,[667.154,10498.2,0],[[2808,2],[2872,2],[2873,2]]], [2840,[887.457,10337.7,-1.52588e-005],[[2808,2],[2813,2]]], [2841,[850.922,10822.4,0],[[2809,2],[2838,2],[2871,2]]], [2842,[1407.49,8535.68,0],[[2810,2],[2867,2]]], [2843,[555.657,8780.16,0],[[2811,2],[2874,2]]], +[2844,[174.602,9755.16,0],[[2814,2]]], [2845,[7142.12,2723.52,0],[[2815,2],[2875,2]]], [2846,[7314.42,2694.1,0],[[2815,2]]], [2847,[3740.78,1409.69,0],[[2816,2],[2876,2]]], [2848,[2723.78,1862.71,0],[[2817,2],[2877,2]]], [2849,[3005.47,1552.41,3.05176e-005],[[2818,2],[2878,2]]], +[2850,[6554.84,2522.25,0],[[2819,2],[2879,2]]], [2851,[4988.82,1154.48,0],[[2820,2],[2880,2]]], [2852,[3940.75,1926.38,0],[[2821,2],[2881,2]]], [2853,[3891.41,1219.77,1.01725e-005],[[2822,2],[2882,2],[2883,2]]], [2854,[2428.37,2408.51,0],[[2823,2],[2884,2]]], [2855,[2331.94,2637.63,0],[[2824,2],[2884,2]]], +[2856,[2115.06,2802.12,0],[[2824,2],[2885,2]]], [2857,[2049.65,3975.15,0],[[2825,2],[2886,2]]], [2858,[2336.53,4429.68,0],[[2826,2],[2887,2]]], [2859,[1138.94,5785.95,0],[[2827,2],[2888,2]]], [2860,[1144.1,5258.15,0],[[2828,2],[2889,2]]], [2861,[1582.01,4436.19,0],[[2829,2],[2890,2]]], +[2862,[1793.84,4703.41,0],[[2830,2],[2891,2]]], [2863,[815.273,6726.23,0],[[2831,2],[2892,2]]], [2864,[722.151,6813.32,0],[[2832,2],[2892,2]]], [2865,[276.815,6954.2,0],[[2833,2],[2893,2]]], [2866,[728.93,8174.4,0],[[2834,2],[2894,2],[2895,2]]], [2867,[1480.49,8400.47,0],[[2835,2],[2842,2]]], +[2868,[816.94,12383.2,-1.52588e-005],[[2836,2],[2896,2]]], [2869,[1026.69,12259.1,0],[[2836,2],[2897,2]]], [2870,[1217.05,11955.4,-1.52588e-005],[[2837,2],[2898,2]]], [2871,[813.48,10812,0],[[2838,2],[2841,2],[2899,2]]], [2872,[627.454,10482.6,-5.08626e-006],[[2839,2],[2872,2],[2900,2]]], [2873,[573.894,10643.5,-1.52588e-005],[[2839,2],[2901,2]]], +[2874,[434.183,8733.38,0],[[2843,2],[2902,2]]], [2875,[7023.58,2794.13,0],[[2845,2],[2903,2]]], [2876,[3848.64,1317.32,-3.05176e-005],[[2847,2],[2883,2]]], [2877,[2538.55,1860.03,0],[[2848,2],[2904,2]]], [2878,[3051.45,1480.98,0],[[2849,2],[2905,2]]], [2879,[6694.35,2557.51,0],[[2850,2],[2906,2]]], +[2880,[5110.74,1230.94,-1.52588e-005],[[2851,2],[2907,2]]], [2881,[3856.31,1844.42,0],[[2852,2],[2908,2]]], [2882,[4063.96,1187.64,0],[[2853,2],[2909,2]]], [2883,[3864.43,1219.06,0],[[2853,2],[2876,2],[2910,2]]], [2884,[2362.59,2428.54,0],[[2854,2],[2855,2],[2911,2]]], [2885,[1975.81,2748.73,0],[[2856,2],[2912,2]]], +[2886,[1927.18,3924.17,0],[[2857,2],[2913,2]]], [2887,[2297.51,4543.23,-7.62939e-006],[[2858,2],[2914,2]]], [2888,[1112.25,5721.78,1.90735e-006],[[2859,2],[2915,2],[2888,2],[2916,2]]], [2889,[1017.52,5332.93,7.62939e-006],[[2860,2],[2917,2]]], [2890,[1591.81,4295.77,1.52588e-005],[[2861,2],[2918,2]]], [2891,[1919.06,4619.76,0],[[2862,2],[2919,2]]], +[2892,[778.679,6724.57,-1.27157e-006],[[2863,2],[2864,2],[2920,2]]], [2893,[164.239,6860.46,0],[[2865,2],[2921,2]]], [2894,[617.205,8297,3.8147e-006],[[2866,2],[2922,2]]], [2895,[620.339,8060.11,0],[[2866,2],[2923,2]]], [2896,[669.678,12331.4,0],[[2868,2],[2924,2]]], [2897,[1050.45,12179.4,0],[[2869,2],[2925,2],[2898,2]]], +[2898,[1112.51,12088.3,0],[[2870,2],[2897,2]]], [2899,[764.686,10967.6,0],[[2871,2],[2926,2]]], [2900,[454.766,10439.3,-1.52588e-005],[[2872,2],[2927,2]]], [2901,[568.544,10800.6,1.52588e-005],[[2873,2],[2928,2]]], [2902,[265.059,8721.32,0],[[2874,2],[2929,2]]], [2903,[6934.16,2877.42,0],[[2875,2],[2930,2]]], +[2904,[2419.48,1841.81,0],[[2877,2],[2931,2],[2904,2],[2932,2]]], [2905,[2974.8,1382.12,0],[[2878,2],[2933,2]]], [2906,[6740.45,2664.77,0],[[2879,2],[2934,2]]], [2907,[5231.17,1245,-1.52588e-005],[[2880,2],[2935,2]]], [2908,[3839.38,1843.34,-3.05176e-005],[[2881,2]]], [2909,[4188.24,1167.81,0],[[2882,2],[2936,2]]], +[2910,[3900.7,1020.53,0],[[2883,2],[2937,2]]], [2911,[2271.06,2306.75,0],[[2884,2],[2938,2]]], [2912,[1876.23,2649.16,1.52588e-005],[[2885,2],[2939,2]]], [2913,[1857.48,3813.88,0],[[2886,2],[2940,2]]], [2914,[2209.41,4602.61,0],[[2887,2],[2919,2]]], [2915,[955.677,5721.77,0],[[2888,2],[2941,2]]], +[2916,[1107.95,5700.86,-2.54313e-006],[[2888,2],[2916,2],[2942,2]]], [2917,[925.667,5415.57,0],[[2889,2],[2943,2]]], [2918,[1602.73,4143.44,0],[[2890,2],[2944,2]]], [2919,[2067.03,4627.57,0],[[2891,2],[2914,2]]], [2920,[754.073,6572.94,-3.8147e-006],[[2892,2],[2945,2]]], [2921,[32.3691,6756.82,0],[[2893,2],[2921,2]]], +[2922,[540.63,8404.06,-3.8147e-006],[[2894,2],[2946,2]]], [2923,[510.581,7966.39,0],[[2895,2],[2947,2]]], [2924,[562.762,12270.7,0],[[2896,2],[2948,2]]], [2925,[1067.61,12079,-5.08626e-006],[[2897,2],[2949,2],[2925,2]]], [2926,[739.679,11128.5,0],[[2899,2],[2950,2]]], [2927,[326.378,10401.2,0],[[2900,2],[2951,2]]], +[2928,[502.709,10935.3,0],[[2901,2],[2952,2]]], [2929,[195.278,8715.86,0],[[2902,2],[2953,2],[2954,2]]], [2930,[6831.43,2914.15,0],[[2903,2],[2955,2]]], [2931,[2244.51,1768.8,0],[[2904,2],[2956,2]]], [2932,[2405.7,1731.17,3.05176e-005],[[2904,2],[2957,2]]], [2933,[2854.48,1342.46,0],[[2905,2],[2958,2]]], +[2934,[6738.06,2774.46,0],[[2906,2],[2955,2]]], [2935,[5112.16,1140.78,-1.52588e-005],[[2907,2],[2959,2]]], [2936,[4320.67,1146.19,0],[[2909,2],[2960,2]]], [2937,[3925.57,866.105,0],[[2910,2],[2961,2]]], [2938,[2111.69,2324.35,0],[[2911,2],[2938,2],[2962,2],[2963,2]]], [2939,[1759.82,2572.07,0],[[2912,2],[2964,2]]], +[2940,[1758.43,3763.36,0],[[2913,2],[2965,2]]], [2941,[817.283,5651.74,-7.62939e-006],[[2915,2],[2966,2]]], [2942,[1041.64,5644.81,0],[[2916,2],[2967,2]]], [2943,[892.138,5473.58,0],[[2917,2],[2968,2],[2969,2]]], [2944,[1612.12,3993.32,0],[[2918,2],[2970,2]]], [2945,[682.085,6399.94,3.8147e-006],[[2920,2],[2971,2]]], +[2946,[438.186,8466.27,0],[[2922,2],[2953,2]]], [2947,[397.838,7890.88,0],[[2923,2],[2972,2]]], [2948,[469.651,12184,0],[[2924,2],[2973,2]]], [2949,[1121.69,11879.7,0],[[2925,2],[2974,2]]], [2950,[720.802,11238.9,-5.08626e-006],[[2926,2],[2975,2],[2976,2]]], [2951,[189.068,10347.1,0],[[2927,2],[2977,2]]], +[2952,[411.275,11062.7,0],[[2928,2],[2978,2]]], [2953,[306.593,8583.62,0],[[2929,2],[2946,2]]], [2954,[39.8696,8873.49,7.62939e-006],[[2929,2],[2979,2]]], [2955,[6752.24,2894.5,0],[[2930,2],[2934,2]]], [2956,[2195.83,1673.08,-3.05176e-005],[[2931,2],[2980,2]]], [2957,[2346.67,1613.01,0],[[2932,2],[2981,2]]], +[2958,[2866.54,1239.24,0],[[2933,2],[2982,2],[2983,2]]], [2959,[5049.08,1009.99,0],[[2935,2],[2984,2]]], [2960,[4456.7,1100.49,0],[[2936,2],[2985,2]]], [2961,[3971.74,734,0],[[2937,2],[2986,2]]], [2962,[2160.54,2174.02,0],[[2938,2],[2987,2]]], [2963,[1936.69,2362.59,0],[[2938,2],[2988,2]]], +[2964,[1615.29,2646.65,0],[[2939,2],[2989,2]]], [2965,[1642.03,3742.18,1.01725e-005],[[2940,2],[2970,2],[2990,2]]], [2966,[785.314,5647.12,0],[[2941,2],[2991,2],[2969,2]]], [2967,[953.16,5590.77,0],[[2942,2],[2969,2]]], [2968,[824.956,5395.58,0],[[2943,2],[2992,2]]], [2969,[868.627,5517.11,0],[[2943,2],[2966,2],[2967,2]]], +[2970,[1625.99,3855.24,0],[[2944,2],[2965,2]]], [2971,[668.222,6249.8,-3.8147e-006],[[2945,2],[2993,2]]], [2972,[306.064,7805.09,0],[[2947,2],[2994,2]]], [2973,[534.133,12067.3,0],[[2948,2],[2995,2]]], [2974,[1129.99,11754.9,-1.52588e-005],[[2949,2],[2996,2]]], [2975,[549.498,11190.3,1.52588e-005],[[2950,2],[2978,2]]], +[2976,[721.943,11392.8,-1.52588e-005],[[2950,2],[2997,2]]], [2977,[119.269,10313.7,0],[[2951,2]]], [2978,[392.951,11139.2,-5.08626e-006],[[2952,2],[2975,2],[2998,2]]], [2979,[8.59963,8906.38,0],[[2954,2]]], [2980,[2132.45,1660.51,-1.01725e-005],[[2956,2],[2999,2],[3000,2]]], [2981,[2382.8,1475.78,0],[[2957,2],[3001,2]]], +[2982,[2732.67,1176.65,0],[[2958,2],[3002,2]]], [2983,[2960.12,1124.93,-3.05176e-005],[[2958,2],[2983,2]]], [2984,[4953.06,889.646,0],[[2959,2],[3003,2]]], [2985,[4577.38,1053.34,0],[[2960,2],[3004,2]]], [2986,[4001.65,591.298,0],[[2961,2],[3005,2]]], [2987,[2237.43,2085.09,0],[[2962,2],[3006,2]]], +[2988,[1785.94,2391.83,-3.05176e-005],[[2963,2],[3007,2]]], [2989,[1478.13,2702.42,3.05176e-006],[[2964,2],[3008,2],[3009,2],[3010,2],[3011,2]]], [2990,[1649.91,3571.38,1.52588e-005],[[2965,2],[3012,2]]], [2991,[738.676,5791.11,0],[[2966,2],[3013,2]]], [2992,[717.835,5277.5,7.62939e-006],[[2968,2],[3014,2]]], [2993,[681.355,6118.93,0],[[2971,2],[3013,2]]], +[2994,[225.372,7669.05,0],[[2972,2],[3015,2]]], [2995,[625.897,11896.2,0],[[2973,2],[3016,2]]], [2996,[997.003,11680.7,1.52588e-005],[[2974,2],[3017,2]]], [2997,[725.339,11526.3,0],[[2976,2],[3018,2],[3019,2]]], [2998,[338.944,11274.5,-1.52588e-005],[[2978,2],[2998,2]]], [2999,[1970.26,1627.65,0],[[2980,2],[3020,2]]], +[3000,[2019.43,1551.43,0],[[2980,2],[3021,2]]], [3001,[2410.72,1432.72,0],[[2981,2],[3022,2],[3023,2]]], [3002,[2630.71,1095.26,0],[[2982,2],[3024,2]]], [3003,[4925.11,841.579,0],[[2984,2],[3025,2],[3026,2],[3003,2]]], [3004,[4726.85,1012.05,1.52588e-005],[[2985,2],[3025,2]]], [3005,[4027.18,404.672,3.05176e-005],[[2986,2],[3027,2]]], +[3006,[2194.08,1962.27,3.05176e-005],[[2987,2],[3028,2]]], [3007,[1653.8,2442.35,3.05176e-005],[[2988,2],[3011,2]]], [3008,[1546.72,2878.02,0],[[2989,2],[3029,2]]], [3009,[1311.45,2781.88,0],[[2989,2],[3030,2]]], [3010,[1465.74,2515.26,0],[[2989,2],[3031,2]]], [3011,[1586.96,2531.61,0],[[2989,2],[3007,2]]], +[3012,[1661.84,3411,-1.52588e-005],[[2990,2],[3032,2]]], [3013,[695.721,5944.13,0],[[2991,2],[2993,2]]], [3014,[593.28,5175.46,0],[[2992,2],[3033,2]]], [3015,[145.062,7584.99,0],[[2994,2]]], [3016,[678.598,11759.2,0],[[2995,2],[3019,2]]], [3017,[905.819,11597,0],[[2996,2],[3018,2]]], +[3018,[851.197,11568.2,-1.52588e-005],[[2997,2],[3017,2]]], [3019,[714.039,11685,0],[[2997,2],[3016,2]]], [3020,[1845.41,1582.1,0],[[2999,2],[3034,2]]], [3021,[1989.58,1400.01,0],[[3000,2],[3035,2]]], [3022,[2457.16,1369.62,0],[[3001,2],[3036,2]]], [3023,[2369.72,1319.28,0],[[3001,2],[3037,2]]], +[3024,[2551.63,1201.86,0],[[3002,2],[3036,2]]], [3025,[4777.75,944.164,0],[[3003,2],[3004,2]]], [3026,[4937.89,834.17,0],[[3003,2]]], [3027,[4135.12,336.323,0],[[3005,2],[3038,2]]], [3028,[2090.52,1889.54,0],[[3006,2],[3039,2]]], [3029,[1636.07,2971.81,-1.52588e-005],[[3008,2],[3040,2]]], +[3030,[1141.41,2863.49,0],[[3009,2],[3041,2]]], [3031,[1399.49,2389.29,-3.05176e-005],[[3010,2],[3042,2]]], [3032,[1664.39,3244.2,0],[[3012,2],[3040,2]]], [3033,[542.979,5129.89,-2.54313e-006],[[3014,2],[3043,2],[3044,2]]], [3034,[1794.76,1498.31,0],[[3020,2],[3045,2]]], [3035,[1908.92,1313.17,0],[[3021,2],[3046,2]]], +[3036,[2520.26,1264.03,0],[[3022,2],[3024,2]]], [3037,[2328.34,1211.84,3.05176e-005],[[3023,2],[3047,2]]], [3038,[4193.65,172.21,0],[[3027,2],[3048,2]]], [3039,[1954.32,1869.14,0],[[3028,2],[3049,2]]], [3040,[1652.77,3105.41,0],[[3029,2],[3032,2]]], [3041,[1037.49,2975.2,0],[[3030,2],[3050,2]]], +[3042,[1290.54,2356.87,0],[[3031,2],[3051,2]]], [3043,[635.608,4978.41,7.62939e-006],[[3033,2],[3052,2]]], [3044,[377.645,5074.36,7.62939e-006],[[3033,2],[3053,2]]], [3045,[1674.48,1442.2,0],[[3034,2],[3054,2]]], [3046,[1822.68,1222.65,-3.05176e-005],[[3035,2],[3055,2]]], [3047,[2369.19,1095.19,0],[[3037,2],[3056,2]]], +[3048,[4205.15,123.464,3.05176e-005],[[3038,2]]], [3049,[1828.36,1813.35,0],[[3039,2],[3057,2]]], [3050,[931.422,3076.71,0],[[3041,2],[3058,2]]], [3051,[1113.19,2334.33,0],[[3042,2],[3059,2]]], [3052,[691.405,4847.76,1.52588e-005],[[3043,2],[3060,2]]], [3053,[226.928,5019.6,0],[[3044,2],[3061,2]]], +[3054,[1581.13,1365.11,0],[[3045,2],[3062,2]]], [3055,[1675.28,1143.88,0],[[3046,2],[3063,2]]], [3056,[2322.08,977.57,0],[[3047,2],[3064,2]]], [3057,[1717.57,1751.25,-3.05176e-005],[[3049,2],[3065,2]]], [3058,[897.426,3184.5,0],[[3050,2],[3066,2]]], [3059,[1038.47,2288.09,0],[[3051,2],[3067,2]]], +[3060,[741.102,4689.08,0],[[3052,2],[3068,2]]], [3061,[68.1122,4962.07,-7.62939e-006],[[3053,2],[3069,2]]], [3062,[1481.48,1246.4,0],[[3054,2],[3070,2]]], [3063,[1546.04,1057.53,0],[[3055,2],[3071,2]]], [3064,[2273.66,843.093,0],[[3056,2],[3072,2]]], [3065,[1544.66,1714.54,0],[[3057,2],[3073,2]]], +[3066,[852.452,3292.03,-5.08626e-006],[[3058,2],[3074,2],[3075,2]]], [3067,[1054.57,2168.48,0],[[3059,2],[3076,2]]], [3068,[770.772,4571.22,0],[[3060,2],[3077,2]]], [3069,[17.9533,4943.9,0],[[3061,2]]], [3070,[1381.31,1077.75,0],[[3062,2],[3078,2]]], [3071,[1429.96,986.515,-3.05176e-005],[[3063,2],[3079,2]]], +[3072,[2147.7,776.472,0],[[3064,2],[3080,2]]], [3073,[1385.42,1704.7,0],[[3065,2],[3081,2]]], [3074,[718.004,3219.51,-1.52588e-005],[[3066,2],[3082,2]]], [3075,[880.454,3462.21,0],[[3066,2],[3083,2]]], [3076,[934.079,2105.43,1.52588e-005],[[3067,2],[3084,2]]], [3077,[804.695,4435.74,1.52588e-005],[[3068,2],[3085,2]]], +[3078,[1305.59,973.455,-2.03451e-005],[[3070,2],[3086,2],[3079,2]]], [3079,[1388.5,919.784,0],[[3071,2],[3078,2]]], [3080,[2030.87,691.443,0],[[3072,2],[3087,2]]], [3081,[1326.49,1695.84,0],[[3073,2],[3081,2],[3088,2]]], [3082,[681.836,3096.87,0],[[3074,2],[3089,2]]], [3083,[885.036,3596.06,0],[[3075,2],[3090,2]]], +[3084,[795.51,2106.68,0],[[3076,2],[3091,2],[3092,2]]], [3085,[833.253,4304.25,-1.52588e-005],[[3077,2],[3093,2]]], [3086,[1234.45,928.872,7.62939e-006],[[3078,2],[3086,2],[3094,2],[3095,2]]], [3087,[2073.2,585.74,-3.05176e-005],[[3080,2],[3096,2]]], [3088,[1287.92,1578.36,0],[[3081,2],[3097,2]]], [3089,[639.76,3020.25,0],[[3082,2],[3098,2]]], +[3090,[885.667,3738.35,0],[[3083,2],[3099,2]]], [3091,[686.455,2222.81,0],[[3084,2],[3100,2]]], [3092,[949.718,2072.03,1.52588e-005],[[3084,2],[3101,2]]], [3093,[848.321,4140.11,-1.52588e-005],[[3085,2],[3102,2]]], [3094,[1035.47,874.343,3.05176e-005],[[3086,2],[3103,2]]], [3095,[1121.87,836.86,3.05176e-005],[[3086,2],[3104,2]]], +[3096,[1922.85,554.045,3.05176e-005],[[3087,2],[3105,2]]], [3097,[1179.59,1460.23,3.05176e-005],[[3088,2],[3106,2]]], [3098,[563.285,2981.5,0],[[3089,2],[3107,2]]], [3099,[881.449,3876.27,0],[[3090,2],[3102,2]]], [3100,[607.515,2358.32,0],[[3091,2],[3108,2]]], [3101,[998.825,1997.11,1.52588e-005],[[3092,2],[3109,2]]], +[3102,[862.977,4063.39,0],[[3093,2],[3099,2],[3110,2]]], [3103,[902.29,887.474,0],[[3094,2],[3111,2]]], [3104,[1129.74,713.169,0],[[3095,2],[3112,2]]], [3105,[1764.23,532.831,0],[[3096,2],[3113,2]]], [3106,[1068.76,1398.4,0],[[3097,2],[3114,2]]], [3107,[546.733,2867.48,0],[[3098,2],[3115,2],[3116,2]]], +[3108,[552.066,2430.83,0],[[3100,2],[3117,2],[3118,2]]], [3109,[996.144,1824.36,1.52588e-005],[[3101,2],[3119,2]]], [3110,[720.092,4044.96,0],[[3102,2],[3120,2]]], [3111,[762.562,943.563,0],[[3103,2],[3121,2]]], [3112,[1174.22,555.288,0],[[3104,2],[3122,2]]], [3113,[1633.98,542.088,-3.05176e-005],[[3105,2],[3123,2]]], +[3114,[971.333,1377.3,0],[[3106,2],[3124,2],[3125,2]]], [3115,[476.248,2992.08,0],[[3107,2],[3126,2]]], [3116,[661.119,2749.45,1.52588e-005],[[3107,2],[3127,2]]], [3117,[562.46,2545.17,0],[[3108,2],[3127,2],[3128,2]]], [3118,[478.318,2352.03,0],[[3108,2],[3129,2]]], [3119,[985.697,1659.34,1.52588e-005],[[3109,2],[3124,2]]], +[3120,[583.566,4029.21,0],[[3110,2],[3130,2]]], [3121,[614.918,957.819,0],[[3111,2],[3131,2]]], [3122,[1278.53,496.11,0],[[3112,2],[3132,2]]], [3123,[1503.47,591.967,0],[[3113,2],[3132,2]]], [3124,[987.358,1543.89,0],[[3114,2],[3119,2]]], [3125,[847.413,1479.36,0],[[3114,2],[3133,2]]], +[3126,[429.404,3121.85,0],[[3115,2],[3134,2]]], [3127,[609.991,2616.32,-1.52588e-005],[[3116,2],[3117,2]]], [3128,[474.801,2624.41,0],[[3117,2],[3135,2]]], [3129,[387.931,2240.64,0],[[3118,2],[3136,2]]], [3130,[441.291,3994.22,0],[[3120,2],[3137,2]]], [3131,[571.173,945.111,0],[[3121,2]]], +[3132,[1410.1,549.926,0],[[3122,2],[3123,2]]], [3133,[720.814,1550.22,0],[[3125,2],[3138,2]]], [3134,[363.52,3233.16,0],[[3126,2],[3139,2]]], [3135,[358.072,2711.97,0],[[3128,2],[3140,2]]], [3136,[344.575,2137.08,0],[[3129,2],[3141,2]]], [3137,[260.751,3921.09,0],[[3130,2],[3142,2]]], +[3138,[604.305,1544.04,-1.01725e-005],[[3133,2],[3143,2],[3144,2],[3138,2]]], [3139,[266.19,3333.47,0],[[3134,2],[3145,2]]], [3140,[209.498,2768.89,0],[[3135,2],[3146,2]]], [3141,[296.503,2014.81,0],[[3136,2],[3147,2]]], [3142,[106.579,3864.11,0],[[3137,2],[3148,2]]], [3143,[477.122,1610.8,3.05176e-005],[[3138,2],[3149,2]]], +[3144,[617.649,1531.94,0],[[3138,2]]], [3145,[129.145,3468.94,0],[[3139,2],[3150,2]]], [3146,[87.7339,2840.82,0],[[3140,2],[3151,2]]], [3147,[262.101,1918.3,5.08626e-006],[[3141,2],[3147,2],[3152,2]]], [3148,[7.95093,3830.17,7.62939e-006],[[3142,2]]], [3149,[420.878,1609.11,0],[[3143,2],[3153,2],[3154,2]]], +[3150,[15.5165,3579.54,0],[[3145,2],[3150,2]]], [3151,[9.02836,2860.88,0],[[3146,2]]], [3152,[255.938,1845.97,0],[[3147,2],[3155,2],[3156,2],[3152,2]]], [3153,[319.751,1567.09,0],[[3153,2],[3155,2]]], [3154,[310.515,1481.2,3.05176e-005],[[3149,2],[3157,2]]], [3155,[275.595,1650.91,0],[[3152,2],[3153,2]]], +[3156,[254.909,1868.18,0],[[3152,2]]], [3157,[232.819,1473.26,0],[[3154,2],[3158,2]]], [3158,[143.195,1566.31,0],[[3157,2],[3159,2]]], [3159,[47.3317,1553.27,-3.05176e-005],[[3158,2],[3160,2]]], [3160,[22.8038,1521.32,0],[[3159,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridisladuala3.sqf b/A3-Antistasi/NavGrids/navGridisladuala3.sqf new file mode 100644 index 0000000000..36c062a887 --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridisladuala3.sqf @@ -0,0 +1,372 @@ +navGrid = [[0,[3815.25,6620.17,3.17891e-007],[[1,2],[2,2],[3,2]]], [1,[3831.06,6535.13,0],[[0,2],[4,2]]], [2,[3962.86,6650.66,0],[[0,2],[5,2]]], [3,[3763.59,6677.14,0],[[0,2],[6,2],[7,2]]], [4,[3812.76,6401.92,0],[[1,2],[8,2]]], [5,[4081.86,6675.87,0],[[2,2],[9,2],[10,2]]], +[6,[3673.84,6752.19,0],[[3,2],[11,2],[7,2],[6,2],[12,2]]], [7,[3684.06,6724.01,0],[[6,2],[21,2],[7,2],[3,2]]], [8,[3795.27,6282.58,2.38419e-007],[[8,2],[13,2],[14,2]]], [9,[4075.2,6787.54,0],[[5,2],[15,2],[9,2],[16,2]]], [10,[4196.81,6658.58,0],[[5,2],[17,2],[18,2]]], [11,[3550.07,6907.64,0],[[6,2],[19,2],[12,2],[11,2],[20,2]]], +[12,[3599.18,6905.01,0],[[11,2],[28,2],[12,2],[6,2]]], [13,[3858.33,6247.12,6.35783e-007],[[8,2],[29,2],[30,2]]], [14,[3641.97,6316.14,0],[[8,2],[31,2]]], [15,[4077.35,6945.32,0],[[9,2],[22,2]]], [16,[4009.94,6785.57,0],[[9,2]]], [17,[4262.25,6634.43,3.17891e-007],[[10,2],[23,2],[24,2]]], +[18,[4209.65,6811.31,0],[[10,2],[25,2],[18,2],[26,2]]], [19,[3364.9,6971.62,6.35783e-007],[[11,2],[27,2],[20,2],[19,2]]], [20,[3388.1,6925.95,1.90735e-006],[[19,2],[40,2],[20,2],[11,2]]], [21,[3711.68,6705.18,3.17891e-007],[[7,2]]], [22,[4079.45,6967.85,0],[[15,2],[32,2],[33,2]]], [23,[4317.59,6637.27,0],[[17,2],[34,2],[35,2]]], +[24,[4233.31,6580.96,-3.17891e-007],[[17,2],[36,2],[37,2],[24,2]]], [25,[4209.06,6784.84,0],[[18,2]]], [26,[4222.67,6924.77,0],[[18,2]]], [27,[3272.99,7105.6,0],[[19,2],[38,2],[39,2]]], [28,[3626.12,6860.4,0],[[12,2]]], [29,[3863.1,6085.54,-9.53674e-007],[[13,2],[41,2],[29,2],[42,2]]], +[30,[3948.47,6250.92,0],[[13,2],[43,2],[44,2]]], [31,[3602.19,6326.01,0],[[14,2]]], [32,[4158.38,6991.33,-3.17891e-007],[[22,2],[32,2],[45,2]]], [33,[4024.85,7067.27,0],[[22,2],[46,2]]], [34,[4427.26,6604.46,0],[[23,2],[47,2],[48,2]]], [35,[4327.88,6672.43,0],[[23,2],[49,2],[35,2],[50,2]]], +[36,[4140.15,6470.99,0],[[24,2],[51,2]]], [37,[4246.27,6596.76,0],[[24,2]]], [38,[3345.07,7127.73,0],[[27,2],[52,2],[38,2]]], [39,[3109.6,7148.03,0],[[27,2],[53,2],[54,2]]], [40,[3436.07,6919.36,1.27157e-006],[[20,2]]], [41,[3870.37,6172.41,1.27157e-006],[[29,2]]], +[42,[3773.81,5785.48,0],[[29,2],[55,2]]], [43,[4008.47,6270.22,6.35783e-007],[[30,2],[44,2],[43,2],[56,2],[51,2]]], [44,[3990.76,6255.65,0],[[43,2],[74,2],[30,2],[44,2]]], [45,[4246.98,7044.22,-6.35783e-007],[[32,2],[57,2],[45,2],[58,2]]], [46,[3962.52,7170.52,0],[[33,2],[59,2]]], [47,[4513.48,6592.88,0],[[34,2],[60,2],[61,2],[48,2]]], +[48,[4418.04,6513.77,0],[[34,2],[47,2],[62,2],[48,2],[61,2]]], [49,[4395.33,6777.03,0],[[35,2],[50,2],[63,2],[64,2],[65,2],[49,2]]], [50,[4395.18,6664.45,0],[[35,2],[49,2],[66,2],[67,2]]], [51,[4099.8,6374.16,0],[[36,2],[43,2],[56,2]]], [52,[3404.55,7214.26,0],[[38,2],[68,2]]], [53,[3100.28,7070.75,0],[[39,2],[69,2],[53,2]]], +[54,[2997.29,7156.51,0],[[39,2],[70,2],[71,2],[69,2]]], [55,[3648.18,5730.16,0],[[42,2],[72,2],[55,2],[73,2]]], [56,[4087.07,6352,0],[[43,2],[51,2],[75,2]]], [57,[4232.84,7009.96,-6.35783e-007],[[45,2]]], [58,[4282.01,7120.58,0],[[45,2]]], [59,[3922.71,7246.25,0],[[46,2],[76,2]]], +[60,[4585.26,6581.45,0],[[47,2],[77,2],[66,2],[61,2]]], [61,[4515.58,6483.42,0],[[47,2],[48,2],[60,2],[78,2],[62,2],[79,2]]], [62,[4401.24,6423.53,0],[[48,2],[61,2],[80,2],[78,2],[81,2],[75,2]]], [63,[4584.43,6751.87,0],[[49,2],[82,2],[77,2],[63,2],[83,2]]], [64,[4498.95,6926.78,0],[[49,2],[84,2],[64,2]]], [65,[4342.5,6766.53,0],[[49,2]]], +[66,[4554.58,6630.06,0],[[50,2],[60,2],[77,2]]], [67,[4406.77,6705.43,0],[[50,2],[83,2]]], [68,[3460.51,7324.64,0],[[52,2],[85,2]]], [69,[3035.44,7013.37,0],[[53,2],[54,2],[86,2],[69,2],[71,2]]], [70,[2943.11,7188.39,0],[[54,2]]], [71,[2917.86,7009.13,0],[[54,2],[69,2],[87,2],[88,2]]], +[72,[3668.73,5744.04,0],[[55,2]]], [73,[3542.83,5658.19,0],[[55,2],[89,2],[73,2],[90,2],[91,2]]], [74,[3972.96,6252.67,6.35783e-007],[[44,2]]], [75,[4212.37,6337.99,0],[[56,2],[62,2],[92,2],[75,2],[80,2],[81,2]]], [76,[3922.6,7310.34,3.17891e-007],[[59,2],[93,2],[94,2]]], [77,[4637.34,6613.61,0],[[60,2],[63,2],[66,2],[95,2],[77,2],[96,2],[79,2],[83,2],[82,2],[97,2]]], +[78,[4473.77,6414.52,0],[[61,2],[62,2],[98,2]]], [79,[4603.74,6438.1,0],[[61,2],[77,2],[99,2],[96,2],[100,2],[95,2]]], [80,[4382.88,6306.18,0],[[62,2],[75,2],[101,2],[98,2],[102,2],[103,2]]], [81,[4291.27,6409.14,0],[[62,2],[75,2]]], [82,[4655.45,6732.06,0],[[77,2],[104,2],[105,2],[82,2]]], [83,[4569.68,6674.69,0],[[63,2],[67,2],[77,2]]], +[84,[4478.13,6873.2,0],[[64,2]]], [85,[3507.06,7410.27,0],[[68,2],[106,2]]], [86,[3067.61,7029.55,0],[[69,2]]], [87,[2852.33,6891.8,0],[[71,2],[107,2],[108,2],[109,2]]], [88,[2767.53,7081.92,0],[[71,2],[110,2]]], [89,[3575.54,5679.14,0],[[73,2]]], +[90,[3414.57,5626.26,0],[[73,2],[111,2],[90,2],[112,2]]], [91,[3527.55,5542.07,0],[[73,2],[113,2],[91,2],[114,2]]], [92,[4172.55,6337.44,0],[[75,2]]], [93,[3828.89,7377.38,0],[[76,2]]], [94,[4007.02,7412.7,0],[[76,2],[115,2]]], [95,[4688.76,6566.5,0],[[77,2],[79,2],[116,2],[100,2],[117,2],[99,2]]], +[96,[4613.77,6514.25,0],[[77,2],[79,2],[100,2]]], [97,[4705,6654.19,0],[[77,2],[104,2]]], [98,[4475.82,6370.02,0],[[78,2],[80,2],[101,2],[98,2],[118,2]]], [99,[4712.38,6471.26,0],[[79,2],[119,2],[100,2],[120,2],[95,2]]], [100,[4653.75,6500.63,0],[[79,2],[95,2],[96,2],[99,2],[121,2],[100,2]]], [101,[4458.19,6297.3,0],[[80,2],[98,2],[122,2]]], +[102,[4397.99,6273.76,0],[[80,2]]], [103,[4363.17,6240.49,0],[[80,2],[123,2],[103,2],[122,2]]], [104,[4719.66,6751.59,0],[[82,2],[97,2],[124,2],[125,2]]], [105,[4654.2,6730.28,0],[[82,2],[134,2],[105,2]]], [106,[3552.29,7441.92,0],[[85,2],[126,2]]], [107,[2774.97,6914.94,0],[[87,2],[127,2],[107,2],[128,2]]], +[108,[2965.06,6778.17,0],[[87,2],[109,2],[108,2],[129,2]]], [109,[2966.4,6820.6,0],[[108,2],[143,2],[109,2],[87,2]]], [110,[2689.37,7089.8,1.58946e-007],[[88,2],[130,2],[128,2],[110,2]]], [111,[3450.47,5630.06,0],[[90,2]]], [112,[3214.98,5620.83,0],[[90,2],[131,2]]], [113,[3549.09,5591.4,0],[[91,2]]], +[114,[3496.17,5368.08,0],[[91,2]]], [115,[4093.54,7519.13,0],[[94,2],[132,2]]], [116,[4743.14,6530.69,0],[[95,2],[133,2]]], [117,[4700.41,6616.33,0],[[95,2],[117,2]]], [118,[4666.14,6339.68,0],[[98,2],[135,2]]], [119,[4690.14,6433.19,0],[[99,2]]], +[120,[4756.45,6539.09,0],[[99,2],[120,2]]], [121,[4616.56,6472.93,0],[[100,2]]], [122,[4448.94,6235.35,0],[[101,2],[103,2],[136,2]]], [123,[4344.96,6155.81,0],[[103,2]]], [124,[4866,6744.36,0],[[104,2],[137,2]]], [125,[4719.97,6878.35,0],[[104,2],[138,2],[125,2],[139,2]]], +[126,[3674.13,7493.93,0],[[106,2],[140,2]]], [127,[2800.69,6910.51,0],[[107,2]]], [128,[2668.69,6930.37,-4.76837e-007],[[107,2],[110,2],[130,2],[141,2],[142,2]]], [129,[2984.03,6669.68,0],[[108,2],[144,2]]], [130,[2671.45,6996.73,0],[[110,2],[128,2],[141,2]]], [131,[3075.53,5618.47,-3.8147e-006],[[112,2],[145,2],[146,2]]], +[132,[4133.34,7580.74,0],[[115,2],[147,2]]], [133,[4862.91,6367.03,0],[[116,2],[148,2],[135,2]]], [134,[4658.14,6733.14,0],[[134,2]]], [135,[4717.94,6336.3,0],[[118,2],[133,2],[135,2]]], [136,[4443.4,6150.21,0],[[122,2]]], [137,[4902.62,6752.04,-9.53674e-007],[[124,2],[149,2],[150,2],[151,2]]], +[138,[4705.9,6846.77,0],[[125,2],[152,2]]], [139,[4731.4,6983.14,0],[[125,2],[153,2]]], [140,[3778.48,7534.31,0],[[126,2],[154,2]]], [141,[2674.31,6977,-3.17891e-007],[[128,2],[130,2]]], [142,[2527.44,6932.09,0],[[128,2],[155,2]]], [143,[2930.82,6844.49,0],[[109,2]]], +[144,[3006.54,6596.95,-9.53674e-007],[[129,2],[156,2]]], [145,[2948.7,5620.85,0],[[131,2],[146,2],[145,2],[157,2]]], [146,[2965.69,5617.92,9.53674e-007],[[145,2],[170,2],[146,2],[131,2]]], [147,[4133.86,7638.23,0],[[132,2],[158,2],[159,2]]], [148,[4987.93,6191.66,0],[[133,2],[160,2]]], [149,[5005.57,6751.76,0],[[137,2],[161,2]]], +[150,[4915.31,6677.87,0],[[137,2]]], [151,[4976.66,6790.29,0],[[137,2]]], [152,[4720.06,6820.67,0],[[152,2],[138,2],[162,2]]], [153,[4777.8,7036.3,0],[[139,2],[163,2],[153,2],[164,2]]], [154,[3886.75,7561.77,0],[[140,2],[165,2]]], [155,[2414.37,6880.24,0],[[142,2],[166,2],[155,2],[167,2],[168,2]]], +[156,[2983.46,6504.57,0],[[144,2],[169,2]]], [157,[2858.92,5701.51,-2.38419e-007],[[145,2],[171,2],[157,2],[172,2],[173,2]]], [158,[4061.97,7779.86,1.90735e-007],[[147,2],[159,2],[158,2],[174,2],[175,2],[176,2]]], [159,[4111.47,7740.66,0],[[158,2],[194,2],[159,2],[147,2]]], [160,[5061.57,6066.65,0],[[148,2],[177,2],[178,2],[179,2]]], [161,[5040.68,6779.03,6.35783e-007],[[149,2],[180,2],[161,2],[181,2]]], +[162,[4701.9,6839.08,0],[[152,2],[202,2],[162,2]]], [163,[4754.15,7008.26,0],[[153,2]]], [164,[4822.66,7220.77,0],[[153,2],[182,2],[183,2]]], [165,[3926.08,7595.34,-9.53674e-007],[[154,2],[184,2]]], [166,[2453.94,6880.88,0],[[155,2]]], [167,[2327.24,6957.1,0],[[155,2],[185,2],[167,2],[186,2]]], +[168,[2332.52,6918.27,3.8147e-006],[[185,2],[155,2]]], [169,[2937.42,6426.49,0],[[156,2],[187,2],[188,2],[189,2]]], [170,[2997.85,5617.47,0],[[146,2]]], [171,[2872.01,5662.49,-4.76837e-007],[[157,2]]], [172,[2843.02,5850.51,0],[[157,2],[190,2],[172,2],[191,2],[192,2]]], [173,[2757.55,5738.38,0],[[157,2],[193,2],[173,2]]], +[174,[4168.6,7875.37,0],[[158,2],[195,2],[174,2]]], [175,[3961.42,7726.37,0],[[158,2],[184,2]]], [176,[3921.6,7897.58,-5.71855],[[158,2],[196,2]]], [177,[5151.41,5907.77,0],[[160,2],[197,2]]], [178,[5250.28,6091.03,0],[[160,2],[198,2],[178,2],[199,2],[200,2]]], [179,[5146.35,6113.54,0],[[198,2],[160,2]]], +[180,[5033.02,6769.99,9.53674e-007],[[161,2]]], [181,[5099.12,6825.67,9.53674e-007],[[161,2],[201,2]]], [182,[4794.59,7364.58,0],[[164,2],[183,2],[182,2],[203,2]]], [183,[4753.5,7325.3,0],[[182,2],[218,2],[183,2],[164,2]]], [184,[3944.53,7652.15,0],[[165,2],[175,2]]], [185,[2325.84,6932.93,0],[[167,2],[168,2]]], +[186,[2203,7039.84,-6.35783e-007],[[167,2],[204,2],[205,2]]], [187,[2909.74,6216.58,0],[[169,2],[206,2],[187,2],[207,2],[208,2],[191,2]]], [188,[2815.3,6410.22,0],[[169,2],[209,2]]], [189,[2930.92,6312.78,0],[[206,2],[169,2]]], [190,[2856.02,5809.56,0],[[172,2]]], [191,[2749.19,6036.17,0],[[172,2],[187,2],[192,2],[191,2],[208,2]]], +[192,[2762.85,5980.19,0],[[191,2],[172,2]]], [193,[2660.7,5695.39,0],[[173,2],[193,2],[210,2]]], [194,[4120.05,7708.21,0],[[159,2]]], [195,[4210.53,7927.64,0],[[174,2],[211,2],[195,2]]], [196,[3827.19,7971.89,-10.1437],[[176,2],[212,2]]], [197,[5164.32,5839.8,3.17891e-007],[[177,2],[213,2],[214,2],[197,2]]], +[198,[5172.93,6121.63,0],[[178,2],[179,2],[198,2]]], [199,[5514.71,6023.11,0],[[178,2],[200,2],[199,2],[215,2],[216,2]]], [200,[5480.95,6019.3,0],[[199,2],[233,2],[200,2],[178,2]]], [201,[5238.09,6853.95,9.53674e-007],[[181,2],[217,2]]], [202,[4714.65,6835.03,0],[[162,2]]], [203,[4933.95,7511.58,-3.17891e-007],[[182,2],[219,2],[220,2]]], +[204,[2122.96,7084.36,-1.27157e-006],[[186,2],[221,2],[222,2]]], [205,[2217.15,6930.64,0],[[186,2],[223,2],[224,2],[205,2]]], [206,[2925.32,6287.82,0],[[187,2],[189,2],[206,2]]], [207,[2963.96,6134.23,0],[[187,2]]], [208,[2792.05,6175.37,0],[[187,2],[191,2],[225,2],[208,2],[209,2]]], [209,[2700.52,6354.77,0],[[188,2],[208,2],[226,2]]], +[210,[2580.9,5635.07,0],[[193,2],[227,2],[228,2],[229,2]]], [211,[4291.69,8024.51,0],[[195,2],[230,2]]], [212,[3759.35,8026.2,0],[[212,2],[231,2]]], [213,[5168.58,5644.72,0],[[197,2],[232,2]]], [214,[5162.25,5868.52,4.76837e-007],[[197,2]]], [215,[5600.88,6059.92,0],[[199,2],[234,2],[235,2],[215,2],[236,2]]], +[216,[5567.58,5864.61,-9.53674e-007],[[199,2],[237,2]]], [217,[5327.46,6861.7,0],[[201,2],[238,2]]], [218,[4773.9,7285.17,0],[[183,2]]], [219,[5035.85,7439.68,0],[[203,2]]], [220,[4910.26,7686.15,0],[[203,2],[239,2]]], [221,[2096.3,7225.04,0],[[204,2],[240,2]]], +[222,[2002.8,7024.94,0],[[204,2],[241,2]]], [223,[2198.12,6843.57,2.38419e-007],[[205,2],[223,2],[242,2],[243,2]]], [224,[2219.31,6956.08,0],[[205,2]]], [225,[2844.62,6166.33,0],[[208,2]]], [226,[2584.44,6322.2,0],[[209,2],[244,2],[245,2]]], [227,[2493.97,5594.29,0],[[210,2],[246,2]]], +[228,[2563.17,5397.46,0],[[210,2],[247,2]]], [229,[2596.38,5770.79,0],[[210,2]]], [230,[4435.9,8025.8,0],[[211,2],[248,2]]], [231,[3687.03,8137.07,1.90735e-006],[[212,2],[249,2]]], [232,[5168.63,5468.91,1.90735e-006],[[213,2],[250,2]]], [233,[5447.57,6026.01,-3.17891e-007],[[200,2]]], +[234,[5568.66,6088.21,0],[[215,2]]], [235,[5705.49,6101.01,0],[[215,2],[235,2],[251,2],[252,2]]], [236,[5617.54,6136.13,-1.90735e-006],[[215,2],[253,2],[236,2]]], [237,[5593.82,5820.05,0],[[216,2],[254,2]]], [238,[5442.31,6837.35,0],[[217,2],[255,2],[256,2]]], [239,[4728.19,7760.66,0],[[220,2],[257,2]]], +[240,[2043.73,7258.81,0],[[221,2],[258,2]]], [241,[1978.13,7018.28,0],[[222,2]]], [242,[2254.94,6795.91,0],[[223,2]]], [243,[2119.23,6834.06,0],[[223,2]]], [244,[2533.46,6415.51,0],[[226,2],[244,2],[259,2]]], [245,[2433.09,6305.75,0],[[226,2],[260,2]]], +[246,[2382.32,5590.86,0],[[227,2],[261,2]]], [247,[2563.3,5243.06,0],[[228,2],[247,2]]], [248,[4484.54,8006.64,0],[[230,2],[262,2],[263,2],[264,2]]], [249,[3733.33,8248.89,3.8147e-006],[[231,2],[265,2]]], [250,[5186.19,5240.85,-4.76837e-007],[[232,2],[266,2],[267,2],[268,2]]], [251,[5932.78,6190.32,0],[[235,2]]], +[252,[5682.31,6181.45,0],[[235,2]]], [253,[5616.26,6123.53,0],[[236,2]]], [254,[5638.82,5794.57,-9.53674e-007],[[237,2],[269,2]]], [255,[5594.19,6819.58,0],[[238,2],[270,2]]], [256,[5441.34,6704.22,0],[[238,2]]], [257,[4602.7,7811.49,0],[[239,2],[271,2]]], +[258,[1980.09,7191.21,0],[[240,2],[272,2]]], [259,[2400.3,6358.12,0],[[244,2]]], [260,[2280.68,6297.87,0],[[245,2],[273,2]]], [261,[2282.02,5620.28,0],[[246,2],[274,2]]], [262,[4530,8045.48,0],[[248,2],[264,2]]], [263,[4537.65,7906.64,0],[[248,2],[275,2],[263,2],[264,2],[271,2]]], +[264,[4570.03,8044.16,0],[[248,2],[262,2],[263,2],[276,2],[264,2],[277,2]]], [265,[3769.55,8297.6,1.27157e-006],[[249,2],[278,2],[279,2]]], [266,[5106.76,5187.23,0],[[250,2],[280,2],[266,2],[281,2],[282,2],[267,2]]], [267,[5173.09,5143.26,4.76837e-007],[[250,2],[266,2],[283,2],[268,2]]], [268,[5243.44,5130,0],[[250,2],[267,2],[284,2],[283,2]]], [269,[5696.05,5775.11,0],[[254,2],[285,2]]], +[270,[5645.34,6827.22,-1.90735e-006],[[255,2],[286,2]]], [271,[4571.22,7852.52,0],[[257,2],[263,2]]], [272,[1914.27,7173.88,0],[[272,2],[287,2],[288,2]]], [273,[2257.76,6295.26,0],[[273,2],[289,2]]], [274,[2215.72,5648.85,0],[[261,2],[290,2]]], [275,[4511.35,7923.13,0],[[263,2]]], +[276,[4662.23,8067.3,0],[[264,2],[291,2],[292,2],[277,2],[293,2]]], [277,[4563.35,8219.47,0],[[264,2],[276,2],[294,2],[277,2],[295,2],[292,2],[296,2]]], [278,[3818.83,8408.21,0],[[265,2],[297,2]]], [279,[3685.8,8402.55,0],[[265,2]]], [280,[5114.79,5232.26,0],[[266,2]]], [281,[5092.37,5113.91,0],[[266,2],[281,2],[298,2],[282,2]]], +[282,[5048.35,5156.98,0],[[266,2],[281,2],[299,2],[298,2]]], [283,[5173.49,5063.14,0],[[267,2],[268,2],[300,2],[284,2]]], [284,[5246.76,5051.79,0],[[284,2]]], [285,[5729.63,5735.78,-9.53674e-007],[[269,2],[301,2]]], [286,[5685.81,6859.41,-1.90735e-006],[[270,2],[302,2]]], [287,[1734.26,7235.49,-4.83509],[[272,2],[303,2]]], +[288,[1938.27,7169.92,0],[[272,2]]], [289,[2154.18,6246.02,0],[[273,2],[304,2],[305,2]]], [290,[2187,5709.74,-3.17891e-007],[[274,2],[306,2],[290,2],[307,2]]], [291,[4781.94,8025.38,0],[[276,2]]], [292,[4657.93,8197.21,0],[[276,2],[277,2]]], [293,[4566.75,8100.09,0],[[276,2]]], +[294,[4493.22,8231.99,0],[[277,2],[308,2],[295,2]]], [295,[4568.55,8288.74,0],[[277,2],[294,2],[308,2],[296,2]]], [296,[4650.1,8286.98,0],[[277,2],[295,2],[309,2],[296,2],[310,2],[308,2]]], [297,[3845.54,8472.74,0],[[278,2],[311,2]]], [298,[4995.55,5087.62,2.38419e-007],[[298,2],[299,2],[312,2],[313,2],[314,2]]], [299,[5000.03,5156.73,0],[[282,2],[298,2],[314,2]]], +[300,[5168.57,4929.06,1.90735e-006],[[283,2],[315,2]]], [301,[5789,5596.04,0],[[285,2],[319,2]]], [302,[5722.24,6949.94,-1.90735e-006],[[286,2],[320,2]]], [303,[1654.77,7267.14,0],[[287,2],[321,2],[303,2]]], [304,[2052.04,6165.63,0],[[289,2],[322,2]]], [305,[2090.63,6270.01,0],[[289,2]]], +[306,[2205.17,5672.29,-4.76837e-007],[[290,2]]], [307,[2046.78,5789.57,-1.58946e-007],[[290,2],[323,2],[324,2],[325,2],[326,2]]], [308,[4537.18,8332.77,0],[[294,2],[295,2],[296,2],[327,2],[308,2],[328,2],[329,2]]], [309,[4650.2,8266.5,0],[[296,2]]], [310,[4647.94,8335.71,0],[[296,2],[330,2]]], [311,[3798.55,8528.87,0],[[297,2],[331,2],[332,2]]], +[312,[4861.64,4993.65,0],[[298,2]]], [313,[4921.88,5101.9,0],[[298,2],[314,2]]], [314,[4913.41,5151.31,0],[[299,2],[298,2],[314,2],[333,2],[313,2],[334,2]]], [315,[5174.07,4900.21,6.35783e-007],[[300,2],[335,2],[336,2]]], [316,[5344.19,4964.55,0],[[284,2],[317,2],[318,2],[316,2]]], [317,[5408.02,4841.75,3.17891e-007],[[316,2],[337,2],[317,2]]], +[318,[5340.89,5003.36,0],[[316,2],[338,2]]], [319,[5825.7,5521.92,0],[[301,2],[339,2]]], [320,[5763.3,7053.35,-4.76837e-007],[[302,2],[340,2],[320,2],[341,2]]], [321,[1640.98,7385.7,0],[[303,2],[342,2]]], [322,[2030.6,6118.58,0],[[304,2],[325,2]]], [323,[2085.71,5702.34,0],[[307,2],[324,2],[343,2],[344,2],[323,2],[345,2]]], +[324,[2001.62,5722.22,0],[[307,2],[323,2],[346,2],[343,2]]], [325,[2016.5,6008.24,9.53674e-007],[[307,2],[322,2]]], [326,[1986.05,5747.29,0],[[307,2]]], [327,[4483.5,8316.1,0],[[308,2]]], [328,[4563.53,8408.74,-9.53674e-007],[[308,2]]], [329,[4629.09,8335.67,0],[[308,2]]], +[330,[4810.26,8335.61,0],[[310,2],[347,2]]], [331,[3836.59,8617.54,3.8147e-006],[[311,2],[348,2]]], [332,[3702.24,8525.13,0],[[311,2],[349,2]]], [333,[4955.76,5103.32,0],[[314,2]]], [334,[4833.55,5156.39,0],[[314,2],[334,2]]], [335,[5185.09,4900.22,0],[[315,2]]], +[336,[5176.07,4735.59,0],[[315,2],[350,2]]], [337,[5412.65,4709.37,-3.17891e-007],[[317,2],[351,2],[337,2],[352,2]]], [338,[5350.69,4990.92,0],[[318,2],[338,2],[353,2]]], [339,[5868.31,5492.62,0],[[319,2],[354,2]]], [340,[5805.24,7191.98,0],[[320,2],[355,2],[356,2]]], [341,[5909.02,6998.51,0],[[320,2],[357,2]]], +[342,[1614.7,7440.84,0],[[321,2],[358,2]]], [343,[2052.89,5718.85,0],[[323,2],[324,2]]], [344,[2075.02,5681.4,0],[[323,2]]], [345,[2060.16,5691.47,0],[[323,2]]], [346,[1929.87,5727.69,0],[[324,2]]], [347,[4864.43,8324.15,0],[[330,2],[359,2]]], +[348,[3791.31,8705.12,0],[[331,2],[360,2]]], [349,[3693.7,8534.47,0],[[332,2]]], [350,[5188.54,4690.92,2.38419e-007],[[336,2],[361,2],[362,2],[352,2],[363,2]]], [351,[5438.46,4739.92,-3.17891e-007],[[337,2]]], [352,[5321.5,4645.01,0],[[337,2],[350,2],[364,2],[352,2],[365,2],[366,2],[362,2]]], [353,[5318.65,5016.9,9.53674e-007],[[338,2],[367,2],[353,2]]], +[354,[5928.61,5485.59,0],[[339,2],[368,2]]], [355,[5884.25,7339.58,0],[[340,2],[369,2],[355,2],[370,2]]], [356,[5842.34,7299.71,0],[[369,2],[340,2]]], [357,[6025.89,6956.43,0],[[341,2],[371,2]]], [358,[1524.2,7475.83,0],[[342,2],[372,2]]], [359,[4902.55,8289.21,0],[[347,2],[373,2],[374,2]]], +[360,[3806.36,8751.62,0],[[348,2],[375,2]]], [361,[5168.4,4448.35,-9.53674e-007],[[350,2],[376,2],[377,2]]], [362,[5265.12,4642.18,0],[[350,2],[352,2],[366,2]]], [363,[5175.66,4495,0],[[377,2],[350,2]]], [364,[5258.48,4685.14,0],[[352,2],[366,2]]], [365,[5348.59,4551.31,0],[[352,2],[378,2],[365,2],[379,2]]], +[366,[5267.66,4659.73,0],[[352,2],[362,2],[364,2],[366,2]]], [367,[5330.36,5011.1,0],[[353,2],[380,2]]], [368,[5975.67,5464.14,0],[[354,2],[381,2]]], [369,[5856.42,7328.59,0],[[355,2],[356,2],[369,2]]], [370,[5965.51,7390.46,-3.17891e-007],[[355,2],[382,2],[370,2],[383,2]]], [371,[6120.28,6951.38,0],[[357,2],[384,2]]], +[372,[1476,7546.09,9.53674e-007],[[358,2],[385,2]]], [373,[4959.73,8242.6,0],[[359,2],[386,2],[374,2],[373,2]]], [374,[4925.5,8250.01,0],[[373,2],[398,2],[374,2],[359,2]]], [375,[3854.08,8788.09,0],[[360,2],[387,2]]], [376,[5168.33,4273.91,1.90735e-006],[[361,2],[388,2]]], [377,[5309.62,4427.99,-3.17891e-007],[[508,2],[583,2],[377,2],[363,2],[361,2]]], +[378,[5335.03,4570.15,0],[[365,2]]], [379,[5444.96,4427.27,0],[[365,2],[389,2]]], [380,[5295.68,5024.83,0],[[367,2]]], [381,[6035.89,5404.54,7.62939e-006],[[368,2],[390,2]]], [382,[5950.12,7372.01,0],[[370,2]]], [383,[5996.54,7457.58,0],[[370,2],[391,2],[392,2],[393,2]]], +[384,[6301.94,6951.39,0],[[371,2],[394,2]]], [385,[1471.72,7609.08,0],[[372,2],[395,2]]], [386,[5079.35,8232.79,3.17891e-007],[[373,2],[396,2],[397,2],[386,2]]], [387,[3882.96,8920.42,0],[[375,2],[399,2]]], [388,[5168.25,4123.36,0],[[376,2],[400,2]]], [389,[5476.79,4375.88,4.76837e-007],[[379,2],[401,2]]], +[390,[6084.64,5387.27,0],[[381,2],[402,2]]], [391,[6184.92,7426.56,0],[[383,2],[403,2]]], [392,[5852.29,7550.59,0],[[383,2],[404,2],[392,2],[405,2]]], [393,[5884.3,7485.03,0],[[404,2],[383,2]]], [394,[6427.18,6951.51,0],[[384,2],[406,2]]], [395,[1452.37,7629.42,2.38419e-007],[[385,2],[407,2],[408,2],[409,2]]], +[396,[5174.44,8318.74,9.53674e-007],[[386,2],[410,2],[396,2],[411,2]]], [397,[5039.9,8215.16,0],[[412,2],[413,2],[397,2],[414,2]]], [398,[4912.99,8268.48,0],[[374,2]]], [399,[3927.69,9078.97,0],[[387,2],[415,2]]], [400,[5168.32,4012.45,0],[[400,2],[416,2]]], [401,[5522.66,4352,0],[[389,2],[417,2],[418,2]]], +[402,[6135.49,5396.68,0],[[390,2],[419,2]]], [403,[6208.65,7447.16,0],[[391,2],[420,2],[403,2]]], [404,[5846.76,7502.98,0],[[392,2],[393,2],[404,2]]], [405,[5846.91,7629.17,-3.17891e-007],[[392,2],[421,2],[422,2]]], [406,[6549.01,6951.66,0],[[394,2],[423,2]]], [407,[1384.34,7665.19,0],[[395,2],[424,2],[425,2],[426,2]]], +[408,[1471.77,7625.45,0],[[395,2]]], [409,[1465.2,7575.17,-9.53674e-007],[[395,2],[427,2]]], [410,[5149.53,8292.52,6.35783e-007],[[396,2]]], [411,[5264.72,8341.18,0],[[396,2],[428,2]]], [412,[5041.74,8212.45,0],[[397,2],[412,2]]], [413,[5043.57,8209.75,-9.53674e-007],[[397,2],[414,2],[413,2]]], +[414,[5061.67,8205.99,-4.76837e-007],[[413,2],[414,2],[497,2],[397,2]]], [415,[3932.34,9105.89,0],[[399,2],[429,2],[430,2]]], [416,[5162.4,3921.9,-2.38419e-007],[[400,2],[449,2],[416,2],[450,2]]], [417,[5614.9,4351.3,0],[[401,2],[418,2],[417,2],[431,2]]], [418,[5591.36,4342.09,0],[[417,2],[451,2],[401,2],[418,2]]], [419,[6174.82,5430.26,0],[[402,2],[432,2]]], +[420,[6282.94,7552.38,0],[[403,2],[433,2],[434,2],[420,2]]], [421,[5872.11,7744.24,0],[[405,2],[435,2],[436,2]]], [422,[5723.71,7632.15,0],[[405,2],[437,2]]], [423,[6668.96,6951.79,0],[[406,2],[438,2]]], [424,[1299.72,7704.32,0],[[407,2],[439,2],[440,2],[441,2]]], [425,[1372.49,7757.32,0],[[407,2],[442,2],[425,2],[443,2],[441,2]]], +[426,[1439.71,7571.54,6.35783e-007],[[426,2]]], [427,[1454.45,7464.91,6.35783e-007],[[409,2],[444,2],[427,2]]], [428,[5381.88,8257.64,0],[[411,2],[445,2]]], [429,[4086.33,9024.97,4.76837e-007],[[415,2],[446,2]]], [430,[3850.83,9166.68,0],[[415,2],[447,2],[430,2],[448,2]]], [431,[5666.48,4359.26,0],[[417,2],[452,2],[453,2]]], +[432,[6192.09,5479,7.62939e-006],[[419,2],[454,2]]], [433,[6405.21,7581.82,0],[[420,2],[455,2],[456,2],[433,2]]], [434,[6250.87,7530.22,0],[[420,2]]], [435,[5836.23,7907.68,0],[[421,2],[457,2]]], [436,[5911.2,7743.38,0],[[421,2],[436,2],[458,2]]], [437,[5633.55,7637.5,0],[[422,2],[459,2],[437,2],[460,2],[461,2],[462,2]]], +[438,[6700.85,6953.7,0],[[423,2],[463,2],[464,2]]], [439,[1328.23,7718.44,0],[[424,2],[441,2]]], [440,[1221.13,7740.81,0],[[424,2],[465,2],[466,2],[443,2]]], [441,[1292.68,7740.7,0],[[424,2],[425,2],[439,2]]], [442,[1405.16,7743.22,0],[[425,2],[467,2],[442,2]]], [443,[1311.54,7792.37,0],[[425,2],[440,2],[466,2]]], +[444,[1354.46,7394.42,0],[[427,2],[468,2],[444,2],[469,2]]], [445,[5483.32,8264.54,-6.35783e-007],[[428,2],[470,2],[471,2],[445,2]]], [446,[4100.15,9039.95,1.58946e-007],[[429,2],[472,2],[473,2]]], [447,[3882.54,9185.6,0],[[430,2],[474,2],[473,2]]], [448,[3699.3,9250.25,0],[[430,2],[475,2]]], [449,[5172.02,3768.45,-9.53674e-007],[[416,2],[476,2]]], +[450,[5046.96,3901.45,6.35783e-007],[[416,2],[477,2],[450,2],[478,2]]], [451,[5566.87,4344.18,-1.58946e-007],[[418,2]]], [452,[5653.92,4258.82,0],[[431,2],[479,2],[480,2],[481,2]]], [453,[5797.68,4367.79,0],[[431,2],[482,2]]], [454,[6201.32,5538.74,0],[[432,2],[483,2]]], [455,[6507.31,7554.57,0],[[433,2],[484,2]]], +[456,[6375.95,7586.76,0],[[433,2]]], [457,[5817.11,8027.94,0],[[435,2],[485,2]]], [458,[6083.88,7731.55,0],[[436,2],[486,2]]], [459,[5555.2,7590.16,0],[[437,2],[487,2]]], [460,[5558.56,7587.39,0],[[437,2]]], [461,[5601.07,7717.96,0],[[437,2]]], +[462,[5536.18,7631.54,0],[[487,2],[437,2]]], [463,[6709.87,7075.17,0],[[438,2],[463,2],[488,2],[489,2]]], [464,[6916.58,6951.86,0],[[438,2],[490,2]]], [465,[1087.18,7783.03,-6.35783e-007],[[440,2],[491,2],[492,2]]], [466,[1239.36,7824.58,0],[[440,2],[443,2],[493,2],[466,2]]], [467,[1401.66,7736.92,-6.35783e-007],[[467,2],[442,2]]], +[468,[1349.99,7446.04,0],[[444,2]]], [469,[1325.38,7182.18,0],[[444,2],[494,2],[469,2],[495,2]]], [470,[5619.06,8192.14,1.90735e-006],[[445,2],[496,2]]], [471,[5455.35,8273.67,-6.35783e-007],[[445,2]]], [472,[4203.86,8997.59,0],[[446,2],[498,2],[499,2]]], [473,[4002.98,9118.31,0],[[446,2],[447,2],[473,2]]], +[474,[3969.08,9235.61,-4.76837e-007],[[447,2],[500,2]]], [475,[3620.02,9300.37,0],[[448,2],[501,2],[502,2]]], [476,[5174.47,3630.11,0],[[449,2],[503,2]]], [477,[5088.25,3912.92,0],[[450,2]]], [478,[4889.66,3906.46,0],[[450,2],[504,2],[478,2],[505,2]]], [479,[5582.44,4209.7,0],[[452,2],[506,2],[479,2],[507,2]]], +[480,[5581.67,4282.47,0],[[452,2],[508,2],[509,2],[480,2]]], [481,[5731.67,4012.78,0],[[452,2],[510,2],[481,2],[511,2]]], [482,[5924.53,4367.69,0],[[453,2],[512,2]]], [483,[6234.22,5578.64,-3.8147e-006],[[454,2],[513,2]]], [484,[6623.38,7572.17,0],[[455,2],[514,2]]], [485,[5792.65,8181.2,0],[[457,2],[515,2]]], +[486,[6087.88,7663.15,0],[[458,2]]], [487,[5522.51,7627.01,0],[[459,2],[516,2],[487,2],[462,2]]], [488,[6790.02,7067.6,0],[[463,2]]], [489,[6711.06,7236.78,0],[[463,2],[517,2]]], [490,[7010.97,6946.81,0],[[464,2],[518,2]]], [491,[1060.34,7917.1,0],[[465,2],[519,2]]], +[492,[996.861,7785.92,0],[[465,2],[520,2]]], [493,[1237.69,7997.63,0],[[466,2],[521,2],[522,2]]], [494,[1342.74,7239.86,-1.27157e-006],[[469,2]]], [495,[1282.59,7012.79,0],[[469,2],[523,2]]], [496,[5673.5,8190.1,0],[[470,2],[515,2]]], [497,[5032.42,8219.57,-4.76837e-007],[[414,2]]], +[498,[4240.29,8968.67,0],[[472,2]]], [499,[4270.57,9029.7,0],[[472,2],[524,2]]], [500,[3977.84,9250.9,-1.19209e-007],[[474,2],[525,2],[526,2],[527,2]]], [501,[3558.68,9326.1,0],[[475,2],[528,2],[529,2]]], [502,[3667.1,9406.52,0],[[475,2],[530,2],[531,2]]], [503,[5166.67,3550.44,2.38419e-007],[[476,2],[532,2],[533,2],[534,2]]], +[504,[4935.35,3894.94,0],[[478,2]]], [505,[4727.23,3919.56,0],[[478,2],[535,2],[505,2],[536,2],[537,2]]], [506,[5614.94,4236.9,0],[[479,2],[538,2],[506,2]]], [507,[5506.16,4074.31,0],[[479,2],[539,2],[540,2],[507,2],[541,2]]], [508,[5412.78,4343.57,0],[[480,2],[377,2]]], [509,[5600.92,4275.66,0],[[480,2]]], +[510,[5701.29,4110.19,0],[[481,2]]], [511,[5870.95,3844.35,0],[[481,2],[542,2],[511,2],[543,2]]], [512,[5994.98,4383.66,0],[[482,2],[544,2]]], [513,[6282.66,5596.74,0],[[483,2],[545,2]]], [514,[6680.51,7593.03,0],[[484,2],[546,2]]], [515,[5784.44,8199.52,3.17891e-007],[[485,2],[496,2],[547,2],[548,2]]], +[516,[5525.3,7626.9,0],[[487,2]]], [517,[6726.4,7305.69,-3.17891e-007],[[489,2],[549,2],[517,2],[550,2]]], [518,[7163.89,6891.26,0],[[490,2],[551,2]]], [519,[1068.89,7968.1,0],[[491,2],[521,2]]], [520,[940.482,7751.85,0],[[492,2],[552,2]]], [521,[1161.6,8008.8,6.35783e-007],[[493,2],[519,2],[522,2]]], +[522,[1222.65,8106.94,0],[[493,2],[521,2],[553,2]]], [523,[1105.28,6834.32,4.76837e-007],[[495,2],[554,2],[523,2],[555,2],[556,2],[557,2]]], [524,[4325.26,9053.39,0],[[499,2],[558,2],[524,2],[559,2],[560,2],[561,2]]], [525,[4035.62,9234.43,-1.58946e-007],[[500,2],[562,2],[563,2]]], [526,[3942.8,9292.02,0],[[500,2],[564,2],[565,2],[526,2],[531,2],[566,2]]], [527,[4021.6,9299.59,0],[[500,2],[567,2]]], +[528,[3508.78,9348.09,0],[[501,2],[568,2],[569,2],[529,2]]], [529,[3499.74,9310.22,0],[[501,2],[528,2],[570,2]]], [530,[3704.14,9527.49,0],[[502,2],[571,2]]], [531,[3738.41,9391.74,-1.19209e-007],[[502,2],[526,2],[572,2],[566,2],[531,2],[565,2]]], [532,[5135.43,3402.7,0],[[503,2],[573,2],[574,2],[575,2],[576,2]]], [533,[5258.82,3550.91,0],[[503,2],[577,2],[533,2],[578,2],[574,2]]], +[534,[4979.75,3556.14,0],[[503,2],[579,2]]], [535,[4768.14,3936.24,-9.53674e-007],[[505,2]]], [536,[4495.74,3906.76,0],[[505,2],[537,2],[536,2],[580,2]]], [537,[4561.71,3831.06,0],[[536,2],[617,2],[537,2],[505,2]]], [538,[5619.04,4239.47,0],[[506,2]]], [539,[5539.06,3921.05,0],[[507,2],[581,2],[541,2],[539,2],[582,2]]], +[540,[5509.63,4107.48,0],[[507,2]]], [541,[5506.25,3947.78,0],[[539,2],[507,2]]], [542,[5828.36,3857.91,6.35783e-007],[[511,2]]], [543,[6084.07,3792.29,0],[[511,2],[584,2],[585,2]]], [544,[6046.65,4385.91,9.53674e-007],[[512,2],[586,2]]], [545,[6333.67,5588.2,1.90735e-006],[[513,2],[587,2]]], +[546,[6782.16,7589.33,0],[[514,2],[588,2],[550,2]]], [547,[5892.19,8233.54,0],[[515,2],[589,2]]], [548,[5723.4,8203.14,2.38419e-007],[[515,2],[548,2],[590,2]]], [549,[6724.48,7286.41,-4.76837e-007],[[517,2]]], [550,[6741.96,7415.03,-1.90735e-006],[[517,2],[546,2],[591,2],[550,2]]], [551,[7226.81,6880.53,0],[[518,2],[592,2]]], +[552,[911.139,7724.12,0],[[520,2],[593,2],[594,2]]], [553,[1198.29,8227.08,6.35783e-007],[[522,2],[595,2],[596,2]]], [554,[1147.97,6858.69,1.90735e-006],[[523,2],[557,2],[554,2]]], [555,[1085.38,6729.96,-6.35783e-007],[[523,2],[597,2],[598,2]]], [556,[1037.43,6859.8,1.90735e-006],[[523,2],[599,2]]], [557,[1158.1,6871.92,-4.76837e-007],[[554,2],[557,2],[638,2],[523,2]]], +[558,[4358.77,9030.05,0],[[524,2],[600,2]]], [559,[4196.38,9137.04,0],[[524,2],[562,2]]], [560,[4355.26,9040.87,0],[[524,2],[560,2]]], [561,[4354.41,9121.43,-1.19209e-007],[[524,2],[601,2],[561,2]]], [562,[4113.34,9195.89,0],[[525,2],[559,2],[562,2],[563,2]]], [563,[4114.37,9282.61,-1.58946e-007],[[525,2],[562,2],[602,2]]], +[564,[3958.66,9373.38,0],[[526,2],[603,2]]], [565,[3830.5,9335.24,0],[[526,2],[531,2]]], [566,[3842.03,9331.43,0],[[526,2],[531,2],[572,2]]], [567,[4053.25,9347.35,0],[[527,2],[602,2],[567,2]]], [568,[3348.51,9454.94,0],[[528,2],[604,2]]], [569,[3507.57,9317.12,0],[[528,2],[569,2]]], +[570,[3388.36,9258.58,0],[[529,2],[605,2]]], [571,[3686.22,9581.35,0],[[530,2],[606,2],[607,2],[608,2]]], [572,[3807.75,9354.06,0],[[531,2],[566,2],[609,2],[572,2]]], [573,[5188.51,3325.06,0],[[532,2],[575,2],[610,2],[574,2]]], [574,[5259.86,3384.95,0],[[532,2],[533,2],[573,2],[611,2],[610,2],[612,2]]], [575,[5125.18,3338.3,0],[[532,2],[573,2]]], +[576,[4862.62,3397.04,0],[[532,2],[613,2]]], [577,[5347.19,3547.13,9.53674e-007],[[533,2],[614,2]]], [578,[5259.04,3496.14,9.53674e-007],[[533,2],[615,2]]], [579,[4931.97,3575.94,0],[[534,2],[616,2]]], [580,[4282.3,3958.76,9.53674e-007],[[536,2],[618,2]]], [581,[5738.62,3709.33,0],[[539,2],[582,2],[581,2],[619,2],[620,2],[585,2]]], +[582,[5669.66,3825.64,0],[[581,2],[668,2],[582,2],[539,2]]], [583,[5334.77,4394.47,0],[[377,2]]], [584,[6167.2,3891.56,0],[[543,2],[584,2],[621,2],[622,2]]], [585,[6032.46,3641.51,0],[[543,2],[581,2],[623,2],[585,2],[624,2]]], [586,[6125.64,4343.53,0],[[544,2],[625,2]]], [587,[6392.64,5536.37,0],[[545,2],[626,2]]], +[588,[6904.74,7591.55,0],[[546,2]]], [589,[5930.32,8268.47,0],[[547,2],[627,2]]], [590,[5716.71,8262.36,0],[[548,2]]], [591,[6734.31,7380.33,-6.35783e-007],[[550,2]]], [592,[7319.77,6911.28,0],[[551,2],[628,2]]], [593,[874.408,7828.55,0],[[552,2],[629,2],[630,2],[593,2]]], +[594,[884.953,7518.9,0],[[552,2],[631,2],[632,2],[594,2]]], [595,[1215.38,8324.02,0],[[553,2],[633,2],[634,2],[635,2]]], [596,[1083.07,8259.67,0],[[553,2],[636,2],[637,2]]], [597,[1098.18,6652.49,1.90735e-006],[[555,2],[597,2],[639,2]]], [598,[1170.69,6742.85,0],[[555,2],[640,2]]], [599,[940.741,6926.4,0],[[556,2],[641,2]]], +[600,[4469.86,9012.27,0],[[558,2],[642,2]]], [601,[4344.32,9205.68,-1.19209e-007],[[561,2],[643,2],[644,2]]], [602,[4155.65,9373.7,0],[[563,2],[567,2],[645,2],[646,2]]], [603,[3946.36,9420.01,6.35783e-007],[[564,2],[646,2],[647,2]]], [604,[3250.87,9541.01,3.17891e-007],[[568,2],[648,2],[604,2],[649,2]]], [605,[3297.19,9234.81,2.38419e-007],[[570,2],[650,2],[605,2],[651,2]]], +[606,[3687.94,9666.71,0],[[571,2],[652,2],[653,2],[654,2],[655,2]]], [607,[3785.72,9602.58,0],[[571,2],[656,2]]], [608,[3546.98,9658.24,0],[[571,2],[657,2]]], [609,[3864.48,9318.34,0],[[572,2],[658,2],[609,2]]], [610,[5255.61,3323.39,0],[[573,2],[574,2],[610,2],[659,2],[660,2],[611,2]]], [611,[5348.9,3431.53,0],[[574,2],[610,2],[661,2],[611,2],[660,2],[662,2]]], +[612,[5309.85,3407.98,0],[[574,2]]], [613,[4759.18,3236.63,3.8147e-006],[[576,2],[663,2]]], [614,[5419.96,3500.31,0],[[577,2],[664,2],[662,2],[665,2],[614,2]]], [615,[5305.26,3499.1,0],[[578,2]]], [616,[4887.63,3612.89,0],[[579,2]]], [617,[4616.07,3861.2,0],[[537,2]]], +[618,[4226.71,3954.92,0],[[580,2],[666,2],[667,2]]], [619,[5804.72,3577.83,-0.108669],[[581,2],[619,2],[669,2]]], [620,[5882.04,3630.46,0],[[581,2],[670,2],[620,2]]], [621,[6199.53,3843.68,-3.17891e-007],[[584,2],[671,2],[621,2]]], [622,[6192.57,4100.83,0],[[584,2],[625,2]]], [623,[6060.45,3647.07,0],[[585,2]]], +[624,[5909.69,3630.46,9.53674e-007],[[585,2]]], [625,[6200.86,4263.38,-6.35783e-007],[[586,2],[622,2],[672,2]]], [626,[6477.24,5446.87,-1.90735e-006],[[587,2],[673,2]]], [627,[5951.06,8341.72,0],[[589,2],[674,2]]], [628,[7480.63,6969.74,0],[[592,2],[675,2]]], [629,[859.257,7963.45,0],[[593,2],[676,2],[629,2],[677,2]]], +[630,[880.974,7801.25,0],[[593,2]]], [631,[1040.43,7572.3,0],[[594,2],[678,2],[631,2]]], [632,[934.731,7316.76,0],[[594,2],[679,2]]], [633,[1312.95,8313.42,0],[[595,2],[680,2]]], [634,[1225.35,8579.22,0],[[595,2],[635,2],[634,2],[681,2],[682,2]]], [635,[1181.1,8503.36,0],[[634,2],[719,2],[635,2],[595,2]]], +[636,[948.823,8238.09,0],[[596,2],[683,2],[684,2],[676,2]]], [637,[1010.56,8443.92,0],[[596,2],[685,2]]], [638,[1138.5,6851.94,0],[[557,2]]], [639,[1105.56,6573.71,0],[[597,2]]], [640,[1221.45,6718.03,1.27157e-006],[[598,2],[686,2],[687,2]]], [641,[897.337,6968.85,0],[[599,2],[688,2]]], +[642,[4543.58,9014.6,0],[[600,2],[689,2]]], [643,[4384.02,9262.98,0],[[601,2]]], [644,[4325.81,9229.62,-4.76837e-007],[[601,2]]], [645,[4255.1,9416.83,0],[[602,2],[690,2]]], [646,[4058.69,9405.16,0],[[602,2],[603,2]]], [647,[3933.59,9474.8,-3.17891e-007],[[603,2],[656,2],[691,2]]], +[648,[3203,9583.82,0],[[604,2],[649,2],[692,2],[657,2]]], [649,[3202.95,9544.04,0],[[604,2],[648,2],[693,2]]], [650,[3191.9,9225.98,-3.17891e-007],[[605,2],[694,2],[695,2]]], [651,[3337.68,9140.47,0],[[605,2],[696,2]]], [652,[3848.52,9713.78,0],[[606,2],[697,2],[652,2],[698,2]]], [653,[3569.01,9659.52,0],[[606,2]]], +[654,[3712.55,9734.27,0],[[606,2]]], [655,[3673.85,9731.76,0],[[606,2],[699,2],[655,2],[700,2]]], [656,[3854.45,9564.35,0],[[607,2],[647,2]]], [657,[3346.13,9624.15,0],[[608,2],[648,2]]], [658,[3869.19,9321.48,-1.19209e-007],[[609,2]]], [659,[5268.66,3206.58,0],[[610,2],[659,2]]], +[660,[5345.22,3392.85,0],[[610,2],[611,2]]], [661,[5307.32,3439.71,0],[[611,2]]], [662,[5418.67,3412.32,0],[[611,2],[614,2],[664,2],[701,2]]], [663,[4693.02,3117.04,-3.8147e-006],[[613,2],[702,2]]], [664,[5450.26,3463.66,0],[[614,2],[662,2],[703,2]]], [665,[5458.72,3537.56,0],[[614,2],[704,2],[705,2]]], +[666,[4122.58,3954.88,0],[[618,2],[706,2],[666,2],[707,2]]], [667,[4230.5,4105.67,0],[[618,2],[708,2]]], [668,[5625.6,3861.76,0],[[582,2]]], [669,[5792.24,3468.5,-1.58946e-007],[[619,2],[709,2],[669,2],[710,2]]], [670,[5846.68,3628.66,0],[[620,2]]], [671,[6254.03,3770.21,-1.58946e-007],[[621,2],[711,2],[671,2]]], +[672,[6285.01,4307.36,-1.90735e-006],[[625,2],[712,2]]], [673,[6524.29,5425.42,0],[[626,2],[713,2]]], [674,[5981.65,8415.81,0],[[627,2],[714,2]]], [675,[7588.81,7010.61,0],[[628,2],[715,2]]], [676,[871.463,8013.91,0],[[629,2],[636,2],[716,2],[676,2]]], [677,[801.589,7993.78,0],[[629,2]]], +[678,[981.161,7559.91,0],[[631,2]]], [679,[931.5,7257.29,0],[[632,2],[717,2]]], [680,[1364.56,8310.26,0],[[633,2],[718,2]]], [681,[1198.79,8718.28,0],[[634,2],[720,2],[721,2]]], [682,[1322.22,8706.58,0],[[634,2],[722,2],[721,2],[682,2]]], [683,[990.446,8254.09,0],[[636,2]]], +[684,[850.523,8143.69,0],[[636,2],[723,2],[684,2]]], [685,[989.592,8497.72,0],[[637,2],[724,2],[685,2],[725,2]]], [686,[1221.22,6689.99,1.27157e-006],[[640,2],[686,2],[726,2]]], [687,[1297.12,6707.43,0],[[640,2],[727,2],[728,2]]], [688,[847.752,6983.53,-1.90735e-006],[[641,2],[729,2]]], [689,[4626.65,8994.58,6.35783e-007],[[642,2],[730,2],[731,2]]], +[690,[4380.58,9405.25,0],[[645,2],[732,2]]], [691,[4041.44,9448.09,0],[[647,2],[691,2]]], [692,[3071.21,9732.76,0],[[648,2],[733,2]]], [693,[3024.75,9545.92,0],[[649,2],[734,2]]], [694,[3022.22,9189.23,0],[[650,2],[735,2]]], [695,[3156.07,9365.39,0],[[650,2],[736,2],[737,2],[738,2]]], +[696,[3348.24,9123.14,0],[[696,2],[739,2]]], [697,[4014.11,9758.5,0],[[652,2],[740,2]]], [698,[3806,9838.66,0],[[652,2],[741,2]]], [699,[3689.82,9726.03,0],[[655,2]]], [700,[3563.37,9780.53,0],[[655,2]]], [701,[5503.54,3322.9,0],[[662,2]]], +[702,[4630.56,3004.21,0],[[663,2],[742,2],[743,2]]], [703,[5556.2,3379.15,0],[[664,2],[744,2]]], [704,[5399.39,3591.86,0],[[665,2]]], [705,[5569.74,3513.88,0],[[665,2]]], [706,[4164.75,3948.12,0],[[666,2]]], [707,[3983.25,3953.45,-3.17891e-007],[[666,2],[745,2],[746,2]]], +[708,[4229.14,4140.65,3.17891e-007],[[667,2],[708,2],[747,2]]], [709,[5800.26,3498.36,0],[[669,2]]], [710,[5768.03,3369.98,3.17891e-007],[[669,2],[748,2],[744,2]]], [711,[6449.08,3785.39,0],[[671,2],[749,2]]], [712,[6335.5,4318.56,0],[[672,2],[750,2]]], [713,[6575.77,5430.36,0],[[673,2],[751,2]]], +[714,[6034.95,8505.73,0],[[674,2],[752,2]]], [715,[7635.08,7049.92,-9.53674e-007],[[675,2],[753,2]]], [716,[852.351,8115.34,0],[[676,2]]], [717,[888.216,7193.99,-4.76837e-007],[[679,2],[717,2],[754,2],[755,2]]], [718,[1445.08,8311.98,-6.35783e-007],[[680,2],[756,2],[718,2],[757,2],[758,2]]], [719,[1185.5,8459.83,-6.35783e-007],[[635,2]]], +[720,[1064.54,8819.27,0],[[681,2],[759,2],[760,2],[724,2]]], [721,[1329.2,8860.49,0],[[681,2],[682,2],[761,2]]], [722,[1360.37,8849.88,0],[[682,2],[762,2],[722,2],[763,2]]], [723,[871.607,8174.49,0],[[684,2]]], [724,[939.821,8675.93,-1.90735e-006],[[685,2],[720,2],[764,2],[760,2]]], [725,[929.664,8481.31,-1.90735e-006],[[685,2]]], +[726,[1216.46,6609.73,0],[[686,2],[765,2],[726,2],[766,2]]], [727,[1306.77,6616.82,7.62939e-006],[[687,2]]], [728,[1366.72,6689.39,0],[[687,2],[767,2]]], [729,[787.616,6989.61,1.90735e-006],[[688,2],[768,2],[769,2]]], [730,[4671.17,8931.17,0],[[689,2]]], [731,[4637.92,9050.61,0],[[689,2],[770,2],[771,2],[731,2]]], +[732,[4474.74,9339.89,-4.76837e-007],[[690,2],[772,2]]], [733,[3009.77,9777.88,4.76837e-007],[[692,2],[773,2]]], [734,[2960.43,9536.02,0],[[693,2],[774,2],[775,2],[776,2]]], [735,[2834.61,9151.48,0],[[694,2],[777,2]]], [736,[3199.66,9398.75,-6.35783e-007],[[695,2],[776,2],[778,2]]], [737,[3079.09,9358.01,0],[[695,2]]], +[738,[3104.13,9405.71,0],[[695,2],[779,2]]], [739,[3426.09,9117.4,-1.19209e-007],[[696,2],[780,2],[781,2]]], [740,[4170.32,9801.75,0],[[697,2],[782,2]]], [741,[3777.14,9926.58,0],[[698,2],[783,2]]], [742,[4516.54,2841.58,-2.38419e-007],[[702,2],[743,2],[742,2],[784,2],[785,2],[786,2]]], [743,[4565.35,2893.99,0],[[742,2],[816,2],[743,2],[702,2]]], +[744,[5587.28,3382.84,0],[[703,2],[710,2],[787,2]]], [745,[3892.62,3956.34,3.17891e-007],[[707,2],[788,2],[745,2],[789,2]]], [746,[3897.5,3871.81,0],[[707,2],[790,2],[746,2],[791,2]]], [747,[4225.82,4181.97,0],[[708,2]]], [748,[5838.56,3347.67,0],[[710,2],[792,2]]], [749,[6520.27,3772.08,0],[[711,2],[793,2],[749,2],[794,2],[795,2]]], +[750,[6384.82,4303.01,0],[[712,2],[796,2]]], [751,[6626.48,5463.74,-9.53674e-007],[[713,2],[797,2]]], [752,[6075.97,8537.21,0],[[714,2],[798,2]]], [753,[7682.86,7069.7,0],[[715,2],[799,2]]], [754,[762.58,7297.98,9.53674e-007],[[717,2],[800,2]]], [755,[837.528,7151.97,0],[[717,2],[801,2]]], +[756,[1417.81,8295.42,-9.53674e-007],[[718,2]]], [757,[1593.08,8316.27,0],[[718,2],[758,2],[757,2],[802,2]]], [758,[1536.21,8337.8,0],[[757,2],[833,2],[758,2],[718,2]]], [759,[1092.66,8874.56,-1.27157e-006],[[720,2],[803,2],[759,2]]], [760,[935.053,8712.25,0],[[720,2],[724,2],[764,2]]], [761,[1396.13,8934.8,-1.90735e-006],[[721,2]]], +[762,[1382.13,8817.96,0],[[722,2]]], [763,[1277.01,8915.65,6.35783e-007],[[722,2],[804,2],[805,2]]], [764,[947.185,8706.62,-6.35783e-007],[[724,2],[760,2]]], [765,[1218.97,6634.4,0],[[726,2]]], [766,[1287.71,6535.16,2.54313e-006],[[726,2],[806,2],[807,2]]], [767,[1396.75,6647.29,3.8147e-006],[[728,2],[807,2]]], +[768,[686.017,7002.71,-1.27157e-006],[[729,2],[808,2],[768,2],[809,2]]], [769,[756.399,7009.19,1.90735e-006],[[808,2],[729,2]]], [770,[4619.61,9173.51,0],[[731,2],[810,2],[772,2]]], [771,[4631.81,9036.95,0],[[731,2]]], [772,[4561.36,9267.33,0],[[732,2],[770,2]]], [773,[2919.32,9772.59,4.76837e-007],[[733,2],[811,2]]], +[774,[2851.54,9548.31,0],[[734,2]]], [775,[2804.54,9517.37,0],[[734,2],[812,2]]], [776,[3087.83,9453.65,1.90735e-006],[[734,2],[736,2]]], [777,[2777.75,9160.57,0],[[735,2]]], [778,[3276.63,9370.62,0],[[736,2]]], [779,[3028.78,9399.1,0],[[738,2],[813,2]]], +[780,[3427.91,9062.9,-7.94729e-008],[[739,2],[781,2],[780,2],[814,2]]], [781,[3447.52,9066,-2.38419e-007],[[780,2],[739,2]]], [782,[4314.19,9817.6,0],[[740,2],[815,2]]], [783,[3745.7,10017,-2.38419e-007],[[741,2],[783,2]]], [784,[4391.55,2689.55,0],[[742,2],[786,2],[784,2],[817,2]]], [785,[4524.95,2758.63,0],[[742,2]]], +[786,[4440.98,2712.7,0],[[784,2],[845,2],[786,2],[742,2]]], [787,[5597.27,3487.77,9.53674e-007],[[744,2]]], [788,[3922.03,3954.74,0],[[745,2]]], [789,[3768.47,3953.28,3.17891e-007],[[745,2],[818,2],[819,2],[791,2]]], [790,[3951.7,3893.83,0],[[746,2]]], [791,[3695.6,3782.39,0],[[746,2],[789,2],[820,2],[791,2],[819,2],[821,2]]], +[792,[5891.81,3319.09,0],[[748,2],[822,2]]], [793,[6486.04,3789.88,0],[[749,2]]], [794,[6693.59,3802.75,0],[[749,2],[823,2]]], [795,[6559.3,3633.27,-3.17891e-007],[[749,2],[824,2],[825,2],[795,2],[826,2]]], [796,[6419.76,4264.88,0],[[750,2],[827,2]]], [797,[6676.32,5477.55,0],[[751,2],[828,2]]], +[798,[6127.25,8543.96,0],[[752,2],[829,2]]], [799,[7765.05,7060.31,0],[[753,2],[830,2]]], [800,[707.909,7342.81,3.17891e-007],[[754,2],[831,2],[800,2]]], [801,[715.743,7133.62,0],[[755,2],[832,2]]], [802,[1715.04,8226.29,0],[[757,2]]], [803,[1017.68,8973.39,0],[[759,2],[834,2],[803,2],[835,2]]], +[804,[1268.68,9025.18,3.8147e-006],[[763,2]]], [805,[1247.13,8902.82,0],[[763,2]]], [806,[1239.47,6570.15,0],[[766,2]]], [807,[1392.8,6547.26,0],[[766,2],[767,2],[807,2]]], [808,[725.687,7024.3,0],[[768,2],[769,2],[808,2]]], [809,[553.805,7004.95,-6.35783e-007],[[768,2],[836,2],[837,2],[832,2]]], +[810,[4742.05,9176.42,0],[[770,2],[838,2]]], [811,[2830.96,9803.96,0],[[773,2],[839,2]]], [812,[2753.9,9586.21,0],[[775,2],[840,2]]], [813,[3018.66,9368.3,-1.27157e-006],[[779,2],[841,2],[813,2]]], [814,[3380.69,9038.81,0],[[780,2],[842,2],[814,2],[843,2]]], [815,[4455.85,9827.74,-9.53674e-007],[[782,2],[844,2]]], +[816,[4591.16,2933.69,-3.17891e-007],[[743,2]]], [817,[4218.91,2606.24,0],[[784,2],[846,2],[847,2],[848,2]]], [818,[3765.97,4131.92,0],[[789,2]]], [819,[3672.62,3868.53,0],[[789,2],[791,2]]], [820,[3783.79,3803.41,0],[[791,2]]], [821,[3503.54,3722.21,0],[[791,2],[849,2],[821,2],[850,2],[851,2]]], +[822,[5932.74,3309.06,0],[[792,2],[852,2],[853,2],[854,2]]], [823,[6889.71,3851.25,0],[[794,2],[855,2]]], [824,[6566.37,3441.02,-3.17891e-007],[[795,2],[856,2],[826,2],[824,2],[857,2]]], [825,[6558.74,3661.31,-4.76837e-007],[[795,2]]], [826,[6547.38,3473.76,0],[[824,2],[888,2],[826,2],[795,2]]], [827,[6433.51,4203.73,0],[[796,2],[858,2],[859,2]]], +[828,[6773.18,5453.1,0],[[797,2],[860,2]]], [829,[6268.44,8519.64,0],[[798,2],[861,2]]], [830,[7914.48,7033.41,0],[[799,2],[862,2]]], [831,[738.387,7321.22,4.76837e-007],[[800,2]]], [832,[604.433,7129.09,0],[[801,2],[809,2],[837,2]]], [833,[1506.04,8339.58,-6.35783e-007],[[758,2]]], +[834,[1057.03,8961.79,0],[[803,2]]], [835,[911.544,8978.7,-6.35783e-007],[[803,2],[863,2],[864,2]]], [836,[556.1,6966.5,0],[[809,2]]], [837,[526.365,7132.77,0],[[809,2],[832,2],[865,2],[866,2]]], [838,[4793.53,9196.11,0],[[810,2],[867,2]]], [839,[2800.55,9815.74,0],[[811,2],[868,2],[869,2]]], +[840,[2743.82,9605.76,-3.17891e-007],[[812,2],[870,2],[869,2],[871,2]]], [841,[3015.62,9382.51,-9.53674e-007],[[813,2]]], [842,[3387.25,9050.12,0],[[814,2]]], [843,[3362.14,8984.97,0],[[814,2],[843,2],[872,2]]], [844,[4624.46,9842.09,0],[[815,2],[873,2]]], [845,[4457.48,2745.39,0],[[786,2]]], +[846,[4077.85,2553.02,-9.53674e-007],[[817,2],[874,2]]], [847,[4206.57,2458.13,0],[[817,2],[875,2],[876,2],[847,2]]], [848,[4250.45,2519.35,0],[[876,2],[817,2]]], [849,[3538.33,3720.49,0],[[821,2]]], [850,[3322.7,3801.57,0],[[821,2],[851,2],[850,2],[877,2],[878,2],[879,2],[880,2]]], [851,[3365.74,3772.39,0],[[850,2],[851,2],[821,2]]], +[852,[6058.24,3320.91,-4.76837e-007],[[822,2],[881,2],[852,2],[882,2],[854,2]]], [853,[5933.96,3157.18,0],[[822,2],[883,2]]], [854,[5999.49,3386.59,0],[[882,2],[959,2],[822,2],[852,2],[960,2]]], [855,[6934.07,3856.64,0],[[823,2],[884,2],[855,2],[885,2]]], [856,[6638.48,3268.57,7.15256e-007],[[824,2],[857,2],[856,2],[886,2],[887,2]]], [857,[6629.64,3311.89,-9.53674e-007],[[856,2],[919,2],[857,2],[824,2]]], +[858,[6546.01,4136,-1.27157e-006],[[827,2],[859,2],[858,2],[889,2]]], [859,[6499.53,4107.65,0],[[858,2],[923,2],[859,2],[827,2]]], [860,[6904.25,5412.82,0],[[828,2],[890,2]]], [861,[6444.72,8488.45,0],[[829,2],[891,2]]], [862,[7965.42,7010.85,0],[[830,2],[892,2]]], [863,[819.246,9021.53,0],[[835,2]]], +[864,[894.534,9092.6,0],[[835,2]]], [865,[512.941,7209.54,0],[[837,2],[893,2],[894,2],[866,2],[895,2]]], [866,[468.743,7141.53,0],[[837,2],[865,2],[866,2],[894,2]]], [867,[4829.76,9164.34,0],[[838,2],[896,2],[897,2]]], [868,[2751.09,9862.78,0],[[839,2],[898,2],[899,2],[900,2]]], [869,[2769.01,9750.08,0],[[839,2],[840,2],[870,2],[901,2]]], +[870,[2734.19,9713.94,0],[[840,2],[869,2],[902,2]]], [871,[2729.29,9605.8,-9.53674e-007],[[840,2]]], [872,[3342.52,8929.14,-4.76837e-007],[[843,2],[903,2]]], [873,[4741.04,9849.97,4.76837e-007],[[844,2],[904,2],[873,2],[905,2]]], [874,[3924.44,2545.45,0],[[846,2],[906,2]]], [875,[4028.69,2371.83,0],[[847,2],[907,2],[908,2]]], +[876,[4252.67,2480.83,0],[[847,2],[848,2],[876,2]]], [877,[3285.57,3632.28,0],[[850,2],[909,2],[910,2],[877,2],[879,2]]], [878,[3298.41,3938.62,-2.38419e-007],[[850,2],[911,2],[879,2],[878,2],[912,2]]], [879,[3254.37,3843.06,0],[[850,2],[877,2],[878,2],[911,2]]], [880,[3309.98,3673.57,0],[[910,2],[850,2]]], [881,[6202.52,3312.31,-4.76837e-007],[[852,2],[913,2],[881,2],[914,2]]], +[882,[6053.35,3427.26,3.17891e-007],[[852,2],[854,2],[915,2]]], [883,[5926.53,3068.67,0],[[853,2],[916,2]]], [884,[6911.15,3854.86,0],[[855,2]]], [885,[7050.3,3887.08,0],[[855,2],[917,2],[885,2],[918,2]]], [886,[6439.14,3293.38,0],[[856,2],[920,2],[921,2],[913,2]]], [887,[6761.44,3232.26,6.35783e-007],[[856,2],[922,2],[887,2]]], +[888,[6550.32,3518.94,-6.35783e-007],[[826,2]]], [889,[6664.39,4199.83,-1.90735e-006],[[858,2],[924,2],[925,2]]], [890,[7019.69,5377.28,0],[[860,2],[926,2]]], [891,[6558.22,8468.3,0],[[861,2],[927,2]]], [892,[8048.59,6924.39,0],[[862,2],[928,2]]], [893,[454.413,7367.59,0],[[865,2],[929,2],[893,2]]], +[894,[459.674,7211.02,0],[[865,2],[866,2],[894,2]]], [895,[516.976,7355.52,0],[[929,2],[865,2]]], [896,[4826.7,9075.63,-1.58946e-007],[[867,2],[896,2],[930,2]]], [897,[4881.65,9171.71,0],[[867,2]]], [898,[2669.09,9814.16,0],[[868,2],[900,2],[931,2],[902,2]]], [899,[2721.78,9908.37,-1.58946e-007],[[868,2],[932,2],[933,2],[900,2]]], +[900,[2660.45,9844.78,0],[[868,2],[898,2],[899,2],[934,2],[935,2],[931,2]]], [901,[2746.63,9764.64,0],[[869,2]]], [902,[2620.87,9701.89,0],[[870,2],[898,2],[936,2],[935,2],[931,2]]], [903,[3342.5,8905.09,0],[[903,2],[937,2]]], [904,[4942.94,9875.19,-3.17891e-007],[[873,2],[938,2],[939,2]]], [905,[4816.72,9815.39,-1.27157e-006],[[873,2],[940,2],[941,2]]], +[906,[3789.67,2499.99,0],[[874,2],[942,2],[943,2],[944,2],[945,2],[946,2],[907,2],[947,2]]], [907,[3976.74,2420.41,0],[[875,2],[906,2],[948,2],[907,2],[946,2]]], [908,[4142.62,2223.48,0],[[875,2],[949,2],[908,2],[950,2],[951,2],[952,2]]], [909,[3241.96,3461.82,0],[[877,2],[953,2]]], [910,[3307.55,3649.51,0],[[877,2],[880,2],[910,2]]], [911,[3258.46,3913.29,0],[[879,2],[912,2],[911,2]]], +[912,[3097.37,3989.87,0],[[878,2],[911,2],[954,2],[955,2],[956,2]]], [913,[6358.9,3316.52,-1.90735e-006],[[881,2],[886,2]]], [914,[6221.57,3207.06,3.8147e-007],[[881,2],[957,2],[958,2],[920,2],[914,2]]], [915,[6087.08,3476.51,0],[[882,2]]], [916,[5931.03,2993.05,0],[[883,2],[961,2],[916,2],[962,2]]], [917,[7023.03,3868.85,0],[[885,2]]], +[918,[7185.4,4012.66,0],[[885,2],[963,2],[964,2]]], [919,[6614.92,3342.32,6.35783e-007],[[857,2]]], [920,[6365.89,3181.29,0],[[886,2],[914,2],[958,2]]], [921,[6413.18,3411.42,0],[[886,2]]], [922,[6872.44,3209.84,3.17891e-007],[[887,2],[965,2],[966,2],[922,2],[967,2]]], [923,[6468.75,4140.51,0],[[859,2]]], +[924,[6714.75,4176.86,0],[[889,2]]], [925,[6726.35,4319.92,0],[[889,2],[968,2],[925,2],[969,2],[970,2]]], [926,[7164.87,5333.23,0],[[890,2],[971,2]]], [927,[6670.5,8451.08,6.35783e-007],[[891,2],[972,2],[927,2]]], [928,[8143.11,6924.98,3.17891e-007],[[892,2],[973,2],[974,2]]], [929,[515.691,7372.66,0],[[893,2],[895,2],[929,2]]], +[930,[4861.52,9048.74,-4.76837e-007],[[896,2]]], [931,[2622.33,9755.97,0],[[902,2],[935,2]]], [932,[2856,9973.54,0],[[899,2],[975,2]]], [933,[2666.07,9894.65,4.76837e-007],[[899,2],[976,2],[935,2]]], [934,[2667.69,9884.5,0],[[900,2]]], [935,[2532.79,9807.19,0],[[900,2],[902,2],[931,2],[933,2],[936,2],[977,2],[935,2],[978,2],[979,2],[980,2],[976,2]]], +[936,[2563.69,9692.07,0],[[902,2],[935,2],[981,2]]], [937,[3346.7,8820.11,0],[[903,2],[982,2]]], [938,[5087.17,9835.18,-1.90735e-006],[[904,2],[983,2]]], [939,[4928.48,9855.62,0],[[904,2],[941,2],[984,2]]], [940,[4716.31,9737.85,-1.90735e-006],[[905,2],[940,2]]], [941,[4863.04,9817.57,0],[[905,2],[939,2],[941,2],[985,2]]], +[942,[3781.63,2588.82,0],[[906,2],[986,2],[942,2],[987,2]]], [943,[3779.62,2520.16,0],[[906,2]]], [944,[3792.76,2495.26,0],[[906,2]]], [945,[3792.77,2468.5,0],[[906,2]]], [946,[3893.86,2444.83,0],[[906,2],[907,2],[988,2],[946,2]]], [947,[3617.58,2452.1,0],[[906,2],[989,2]]], +[948,[3998.22,2411.71,0],[[907,2]]], [949,[3970.81,2299.08,0],[[908,2]]], [950,[3982.75,2153.52,0],[[908,2]]], [951,[4219.11,2179.4,0],[[908,2]]], [952,[4651.32,2170.1,0],[[908,2]]], [953,[3241.03,3334.93,0],[[909,2],[990,2],[953,2]]], +[954,[3086.45,3908.47,0],[[912,2],[991,2],[992,2]]], [955,[3003.23,4012.63,0],[[912,2]]], [956,[3133.61,4215.24,0],[[912,2],[993,2]]], [957,[6237.92,3058.48,3.17891e-007],[[914,2],[994,2],[995,2]]], [958,[6321.23,3162.95,0],[[914,2],[920,2]]], [959,[6006.95,3322.97,0],[[854,2]]], +[960,[6001.08,3450.32,0],[[854,2]]], [961,[5950.74,2893.59,0],[[916,2],[996,2]]], [962,[6053.47,2997.33,3.17891e-007],[[916,2],[995,2],[962,2]]], [963,[7280.48,4085.58,0],[[918,2],[964,2],[963,2],[997,2],[998,2]]], [964,[7247.83,4072.11,0],[[963,2],[918,2]]], [965,[7087.36,3203.61,0],[[922,2],[999,2],[967,2],[965,2]]], +[966,[6839.04,3207.14,0],[[922,2]]], [967,[7063.33,3212.96,0],[[965,2],[1036,2],[967,2],[922,2]]], [968,[6673.51,4290.55,0],[[925,2]]], [969,[6986.24,4391.47,0],[[925,2],[1000,2],[969,2],[1001,2],[1002,2],[1003,2]]], [970,[6910.51,4343.74,0],[[1000,2],[925,2]]], [971,[7216.58,5333.67,0],[[926,2],[1004,2]]], +[972,[6915.7,8404.93,0],[[927,2],[1005,2],[1006,2]]], [973,[8147.53,6785.12,0],[[928,2],[1007,2]]], [974,[8147.94,7065.16,-9.53674e-007],[[928,2],[1008,2]]], [975,[2866.75,9985.34,0],[[932,2]]], [976,[2574.84,9901.12,0],[[933,2],[935,2],[1009,2]]], [977,[2495.22,9772.49,0],[[935,2],[1010,2]]], +[978,[2567.75,9902.21,0],[[935,2]]], [979,[2426.14,9803.14,0],[[935,2]]], [980,[2487.22,9890.59,0],[[935,2],[1011,2]]], [981,[2451.46,9676.63,0],[[936,2],[1012,2],[1013,2]]], [982,[3373.92,8775.14,0],[[937,2],[1014,2]]], [983,[5168.45,9800.69,0],[[938,2],[1015,2]]], +[984,[4983.03,9792.37,0],[[984,2]]], [985,[4882.18,9764.33,0],[[941,2],[1016,2]]], [986,[3778.68,2647.44,0],[[942,2],[1017,2],[1018,2]]], [987,[3747.67,2581.65,0],[[942,2],[1019,2],[987,2],[1020,2]]], [988,[3851.51,2450.88,0],[[946,2]]], [989,[3614.85,2190.12,0],[[947,2],[1021,2]]], +[990,[3222.4,3291.81,0],[[953,2],[1022,2],[990,2]]], [991,[2896.64,3901.37,0],[[954,2],[1023,2]]], [992,[3153.35,3901.54,0],[[954,2]]], [993,[3123.14,4309.91,3.17891e-007],[[956,2],[1024,2],[993,2],[1025,2],[1026,2]]], [994,[6240.97,3081.79,3.17891e-007],[[957,2]]], [995,[6240.23,2970.77,-2.38419e-007],[[957,2],[962,2],[1027,2],[1028,2],[1029,2]]], +[996,[5966.31,2839.98,0],[[961,2],[1030,2],[996,2],[1031,2],[1032,2]]], [997,[7259.3,4243.37,0],[[963,2],[1033,2],[1001,2]]], [998,[7261.75,3902.91,0],[[963,2],[1034,2]]], [999,[7262.51,3141.55,0],[[965,2],[1035,2]]], [1000,[6939.85,4347.34,-1.90735e-006],[[969,2],[970,2],[1000,2]]], [1001,[7173.72,4366.91,-9.53674e-007],[[969,2],[997,2],[1033,2]]], +[1002,[7055.89,4575.47,0],[[969,2],[1003,2],[1002,2],[1037,2]]], [1003,[7034.16,4548.47,-7.62939e-006],[[1002,2],[1074,2],[1003,2],[969,2]]], [1004,[7334.51,5382.53,0],[[971,2],[1038,2]]], [1005,[7058.35,8469.02,-6.35783e-007],[[972,2],[1006,2],[1005,2],[1039,2],[1040,2],[1041,2],[1042,2]]], [1006,[7021.07,8394.56,0],[[1005,2],[1079,2],[1006,2],[972,2]]], [1007,[8147.36,6659.89,0],[[973,2],[1043,2]]], +[1008,[8148.06,7250.64,0],[[974,2],[1044,2]]], [1009,[2521.22,9907.7,-1.19209e-007],[[976,2],[1009,2],[1045,2]]], [1010,[2419.29,9766.08,0],[[977,2]]], [1011,[2312.32,9913.88,1.19209e-007],[[980,2],[1046,2],[1047,2],[1048,2]]], [1012,[2484.79,9642.07,0],[[981,2],[1012,2],[1049,2]]], [1013,[2351.61,9707.06,0],[[981,2],[1050,2],[1013,2],[1051,2]]], +[1014,[3386.11,8765.31,0],[[982,2]]], [1015,[5211.3,9725.95,0],[[983,2],[1052,2]]], [1016,[4904.79,9724.02,0],[[985,2],[1053,2]]], [1017,[3781.79,2764.91,0],[[986,2],[1054,2]]], [1018,[3651.56,2681.59,-3.17891e-007],[[986,2],[1055,2],[1056,2]]], [1019,[3701.18,2581.21,0],[[987,2],[1057,2],[1056,2],[1019,2],[1020,2]]], +[1020,[3660.79,2505.02,0],[[987,2],[1019,2],[1058,2],[1020,2],[1059,2]]], [1021,[3783.04,2069.55,1.27157e-006],[[989,2],[1060,2],[1021,2],[1061,2]]], [1022,[3028,3256.78,3.17891e-007],[[990,2],[1062,2],[1063,2]]], [1023,[2741.79,3918.24,0],[[991,2],[1064,2],[1065,2]]], [1024,[3130.74,4279.38,3.17891e-007],[[993,2]]], [1025,[3119.21,4535.53,-3.17891e-007],[[993,2],[1026,2],[1066,2],[1067,2]]], +[1026,[3152.68,4521.13,0],[[1025,2],[1026,2],[1106,2],[993,2]]], [1027,[6275.11,2972.61,0],[[995,2]]], [1028,[6237.41,2763.96,-6.35783e-007],[[995,2],[1029,2],[1028,2],[1068,2]]], [1029,[6222.38,2811.9,0],[[1028,2],[1108,2],[1029,2],[995,2]]], [1030,[5989.93,2734.66,0],[[996,2],[1069,2]]], [1031,[5796.98,2819.94,6.35783e-007],[[996,2],[1032,2],[1031,2],[1070,2]]], +[1032,[5875.9,2830.58,0],[[1031,2],[1111,2],[996,2],[1032,2]]], [1033,[7210.01,4344.25,0],[[997,2],[1001,2]]], [1034,[7466.51,3806.9,-3.8147e-006],[[998,2],[1071,2]]], [1035,[7334.09,3127.73,0],[[999,2],[1072,2],[1073,2],[1035,2]]], [1036,[7022.15,3214.96,-3.17891e-007],[[967,2]]], [1037,[7128.46,4685.34,-6.35783e-007],[[1002,2],[1075,2],[1076,2],[1077,2]]], +[1038,[7472.99,5441.55,0],[[1004,2],[1078,2]]], [1039,[7164.42,8440.46,0],[[1005,2]]], [1040,[7168.83,8465.13,0],[[1005,2]]], [1041,[7070.41,8534.67,-1.27157e-006],[[1005,2],[1080,2],[1081,2],[1082,2]]], [1042,[7174.36,8490.24,0],[[1005,2]]], [1043,[8152.29,6559.39,6.35783e-007],[[1007,2],[1083,2],[1084,2]]], +[1044,[8145.29,7360.5,0],[[1008,2],[1085,2]]], [1045,[2518.59,9948.62,0],[[1009,2]]], [1046,[2318.33,9881.66,0],[[1011,2]]], [1047,[2231.59,9919.7,0],[[1011,2],[1086,2],[1087,2]]], [1048,[2302.82,9972.67,0],[[1011,2]]], [1049,[2560.3,9644.9,0],[[1012,2],[1088,2]]], +[1050,[2291.86,9684.27,0],[[1013,2],[1089,2],[1090,2]]], [1051,[2366.52,9570.79,0],[[1013,2],[1091,2]]], [1052,[5256.41,9606.87,0],[[1015,2],[1092,2]]], [1053,[4921.02,9648.91,0],[[1016,2]]], [1054,[3751.1,2817.29,0],[[1017,2],[1093,2]]], [1055,[3426.73,2709.56,0],[[1018,2],[1094,2],[1095,2]]], +[1056,[3611.29,2638.65,4.76837e-007],[[1018,2],[1019,2],[1056,2],[1096,2],[1057,2]]], [1057,[3638.92,2581.49,0],[[1019,2],[1056,2],[1059,2],[1097,2]]], [1058,[3685.24,2507.26,0],[[1020,2]]], [1059,[3592.64,2499.27,0],[[1020,2],[1057,2],[1098,2],[1097,2]]], [1060,[3770.05,2124.51,1.90735e-006],[[1021,2]]], [1061,[3809.04,1846.38,0],[[1021,2],[1099,2],[1061,2],[1100,2],[1101,2]]], +[1062,[2955.32,3215.87,0],[[1022,2],[1102,2]]], [1063,[2990.7,3363.75,0],[[1022,2]]], [1064,[2640.61,3788.76,-3.17891e-007],[[1023,2],[1103,2],[1104,2]]], [1065,[2616.87,4094.87,0],[[1023,2],[1105,2]]], [1066,[2921.89,4776.37,0],[[1025,2],[1107,2],[1067,2],[1066,2]]], [1067,[2965.47,4690.99,0],[[1066,2],[1154,2],[1067,2],[1025,2]]], +[1068,[6250.81,2521.06,0],[[1028,2],[1109,2]]], [1069,[6010.47,2613.23,0],[[1030,2],[1110,2]]], [1070,[5536.64,2689.45,0],[[1031,2],[1112,2]]], [1071,[7494.6,3588.18,-1.90735e-006],[[1034,2],[1113,2]]], [1072,[7411.61,3123.5,2.38419e-007],[[1035,2],[1114,2],[1115,2],[1116,2]]], [1073,[7301.32,3130.59,0],[[1035,2]]], +[1074,[7030.92,4514.02,0],[[1003,2]]], [1075,[7265.75,4769.01,6.35783e-007],[[1037,2],[1117,2],[1075,2],[1118,2]]], [1076,[7072.11,4733.52,0],[[1037,2],[1119,2],[1120,2],[1076,2]]], [1077,[7203.87,4759.81,0],[[1117,2],[1037,2]]], [1078,[7550.29,5446.09,3.17891e-007],[[1038,2],[1121,2],[1122,2],[1078,2]]], [1079,[6977.53,8394.37,0],[[1006,2]]], +[1080,[7226.75,8493.35,0],[[1041,2],[1123,2],[1082,2],[1080,2]]], [1081,[7014.55,8587.84,1.27157e-006],[[1041,2],[1081,2],[1124,2]]], [1082,[7202.83,8509.54,0],[[1080,2],[1082,2],[1041,2]]], [1083,[8148.53,6400.83,0],[[1043,2],[1125,2]]], [1084,[8335.72,6559.08,9.53674e-007],[[1043,2],[1126,2]]], [1085,[8116.37,7412.78,0],[[1044,2],[1127,2]]], +[1086,[2162.44,9901.79,0],[[1047,2],[1128,2],[1129,2],[1130,2],[1131,2],[1132,2]]], [1087,[2226.75,9979.09,-4.76837e-007],[[1047,2]]], [1088,[2561.71,9605.64,0],[[1049,2]]], [1089,[2098.79,9655.06,0],[[1050,2],[1133,2]]], [1090,[2188.97,9564.64,0],[[1050,2],[1134,2]]], [1091,[2328.56,9456.23,0],[[1051,2],[1135,2]]], +[1092,[5330.08,9555.19,0],[[1052,2],[1136,2],[1137,2]]], [1093,[3720.14,2920.36,0],[[1054,2],[1138,2]]], [1094,[3230.97,2702.03,0],[[1055,2],[1139,2],[1140,2]]], [1095,[3424.19,2762.69,0],[[1055,2]]], [1096,[3444.67,2645.14,0],[[1056,2],[1140,2]]], [1097,[3451.58,2558.85,0],[[1057,2],[1059,2],[1141,2],[1098,2],[1142,2]]], +[1098,[3467.06,2492.08,0],[[1059,2],[1097,2],[1143,2],[1098,2],[1144,2],[1142,2]]], [1099,[3799.24,1884.48,0],[[1061,2]]], [1100,[3905.65,1665.7,1.58946e-006],[[1061,2],[1101,2],[1100,2],[1145,2],[1146,2]]], [1101,[3880.49,1681.2,0],[[1100,2],[1061,2]]], [1102,[2830.48,3111.54,0],[[1062,2],[1147,2]]], [1103,[2435.17,3698.44,3.8147e-006],[[1064,2],[1148,2]]], +[1104,[2687.94,3655.12,0],[[1064,2],[1149,2],[1150,2]]], [1105,[2472.02,4125.95,0],[[1065,2],[1151,2],[1105,2],[1152,2]]], [1106,[3116.7,4411.82,0],[[1026,2]]], [1107,[2705.59,4913.75,0],[[1066,2],[1153,2]]], [1108,[6232.74,2854.8,9.53674e-007],[[1029,2]]], [1109,[6333.04,2380.27,0],[[1068,2],[1155,2],[1156,2],[1157,2],[1158,2],[1159,2]]], +[1110,[5999.28,2562.75,1.90735e-006],[[1069,2],[1160,2]]], [1111,[5901.64,2834.23,0],[[1032,2]]], [1112,[5480.86,2638.83,0],[[1070,2],[1161,2],[1162,2],[1163,2]]], [1113,[7409.97,3483.55,9.53674e-007],[[1071,2],[1164,2],[1113,2],[1165,2],[1116,2],[1166,2]]], [1114,[7433.04,3087.71,0],[[1072,2],[1167,2]]], [1115,[7442.3,3068.71,0],[[1072,2]]], +[1116,[7524.32,3202.51,0],[[1072,2],[1113,2],[1168,2],[1169,2],[1170,2]]], [1117,[7232.15,4781.15,0],[[1075,2],[1077,2],[1117,2]]], [1118,[7402.89,4732.67,0],[[1075,2],[1171,2]]], [1119,[6921.27,4808.85,1.27157e-006],[[1076,2],[1172,2],[1119,2],[1173,2]]], [1120,[7085.8,4718.52,0],[[1076,2]]], [1121,[7650.67,5389.37,0],[[1078,2],[1174,2]]], +[1122,[7519.23,5452.63,3.17891e-007],[[1078,2]]], [1123,[7344.95,8398.59,-9.53674e-007],[[1080,2],[1175,2]]], [1124,[7035.97,8748.05,0],[[1081,2]]], [1125,[8168.31,6353.05,-1.90735e-006],[[1083,2],[1176,2]]], [1126,[8385.88,6545.43,0],[[1084,2],[1177,2],[1126,2]]], [1127,[8094.38,7447.53,-9.53674e-007],[[1085,2],[1178,2],[1127,2],[1179,2],[1180,2]]], +[1128,[2161.32,9975.42,0],[[1086,2]]], [1129,[2076.91,9943.13,-1.58946e-007],[[1086,2],[1181,2],[1182,2]]], [1130,[1922.82,9869.38,0],[[1086,2],[1183,2]]], [1131,[2261.31,9816.61,0],[[1086,2],[1132,2],[1131,2]]], [1132,[2084.35,9816.81,0],[[1086,2],[1131,2],[1184,2],[1183,2]]], [1133,[1973.64,9631.06,0],[[1089,2],[1185,2],[1184,2]]], +[1134,[2069.02,9486.52,0],[[1090,2],[1186,2]]], [1135,[2311.95,9350.66,0],[[1091,2],[1187,2]]], [1136,[5361.48,9484.45,0],[[1092,2],[1188,2],[1136,2],[1189,2]]], [1137,[5350.59,9512.41,0],[[1188,2],[1092,2]]], [1138,[3648.71,2979.5,9.53674e-007],[[1093,2]]], [1139,[3197.27,2777.67,0],[[1094,2],[1190,2],[1139,2]]], +[1140,[3228.95,2638.76,0],[[1094,2],[1096,2],[1191,2],[1144,2],[1140,2]]], [1141,[3367.33,2580.97,0],[[1097,2],[1191,2],[1142,2]]], [1142,[3365.73,2538.19,0],[[1097,2],[1141,2],[1192,2],[1098,2],[1193,2]]], [1143,[3502.4,2490.21,0],[[1098,2]]], [1144,[3230.04,2528.33,0],[[1098,2],[1140,2],[1191,2],[1144,2],[1192,2]]], [1145,[4072.89,1592.92,0],[[1100,2],[1146,2],[1145,2],[1194,2]]], +[1146,[4035.57,1592.56,0],[[1145,2],[1233,2],[1146,2],[1100,2]]], [1147,[2789.78,3062.35,9.53674e-007],[[1102,2],[1195,2]]], [1148,[2268.08,3791.41,-6.35783e-007],[[1103,2],[1196,2],[1197,2]]], [1149,[2615.16,3581.17,0],[[1104,2]]], [1150,[2749.04,3554.74,0],[[1104,2]]], [1151,[2529.62,4119.83,9.53674e-007],[[1105,2]]], +[1152,[2235.38,4153.18,6.35783e-007],[[1105,2],[1198,2],[1152,2],[1199,2]]], [1153,[2648.99,5001.18,0],[[1107,2],[1200,2],[1153,2],[1201,2]]], [1154,[3023.54,4671.37,0],[[1067,2]]], [1155,[6339.59,2321.1,0],[[1109,2]]], [1156,[6242.79,2351.61,0],[[1109,2],[1202,2],[1156,2],[1203,2],[1157,2]]], [1157,[6307.76,2294.9,0],[[1109,2],[1156,2],[1204,2],[1203,2]]], +[1158,[6407.87,2368.13,0],[[1109,2],[1205,2],[1159,2],[1206,2]]], [1159,[6373.78,2333.87,0],[[1109,2],[1158,2],[1207,2],[1206,2],[1208,2]]], [1160,[5964.34,2524.62,0],[[1110,2],[1209,2]]], [1161,[5373.65,2520.59,0],[[1112,2]]], [1162,[5548.25,2490.88,0],[[1112,2],[1210,2],[1211,2]]], [1163,[5388.64,2608.72,0],[[1112,2],[1212,2],[1213,2],[1163,2]]], +[1164,[7430.24,3515.19,1.90735e-006],[[1113,2]]], [1165,[7491.53,3355.12,0],[[1113,2],[1214,2]]], [1166,[7357.1,3481.84,0],[[1113,2]]], [1167,[7478.15,3043.86,0],[[1114,2],[1167,2]]], [1168,[7626.73,3159.4,-6.35783e-007],[[1116,2],[1215,2],[1168,2]]], [1169,[7600.88,3224,0],[[1116,2]]], +[1170,[7517.09,3321.28,0],[[1116,2]]], [1171,[7454.17,4739.42,1.90735e-006],[[1118,2],[1216,2]]], [1172,[6991.92,4792.28,1.90735e-006],[[1119,2]]], [1173,[6678.87,4905.55,0],[[1119,2],[1217,2]]], [1174,[7769.31,5262.42,0],[[1121,2],[1218,2]]], [1175,[7395.44,8387.39,0],[[1123,2],[1219,2]]], +[1176,[8209.34,6321.56,0],[[1125,2],[1220,2]]], [1177,[8559.05,6515.87,0],[[1126,2],[1221,2]]], [1178,[8039.92,7547.42,0],[[1127,2],[1180,2],[1178,2],[1222,2]]], [1179,[8187.15,7489.85,0],[[1127,2],[1223,2],[1179,2],[1224,2]]], [1180,[8034.7,7516.05,0],[[1178,2],[1262,2],[1127,2],[1180,2]]], [1181,[1992.87,9975.82,0],[[1129,2]]], +[1182,[2074.91,10000.1,0],[[1129,2]]], [1183,[1885.06,9836.08,0],[[1130,2],[1132,2],[1225,2],[1184,2],[1183,2]]], [1184,[1978.86,9757.85,0],[[1132,2],[1133,2],[1183,2],[1225,2],[1184,2]]], [1185,[1824.2,9565.29,0],[[1133,2],[1226,2]]], [1186,[1997,9346.45,0],[[1134,2],[1227,2]]], [1187,[2305.74,9314.91,4.76837e-007],[[1135,2]]], +[1188,[5357.93,9495.75,-1.19209e-007],[[1136,2],[1137,2],[1188,2]]], [1189,[5401.55,9408.52,1.90735e-007],[[1136,2],[1228,2],[1229,2],[1189,2],[1230,2],[1231,2]]], [1190,[3211.54,2757.97,0],[[1139,2]]], [1191,[3214.02,2590.74,0],[[1140,2],[1141,2],[1144,2],[1232,2]]], [1192,[3364.41,2484.43,0],[[1142,2],[1144,2]]], [1193,[3269.05,2540.58,0],[[1142,2]]], +[1194,[4188.63,1585.39,0],[[1145,2],[1234,2],[1235,2]]], [1195,[2780.92,3018.92,0],[[1147,2],[1236,2],[1195,2],[1237,2],[1238,2]]], [1196,[2147.22,3749.91,2.38419e-007],[[1148,2],[1239,2],[1240,2],[1241,2]]], [1197,[2311.77,3780.24,-6.35783e-007],[[1148,2]]], [1198,[2285.86,4138.52,9.53674e-007],[[1152,2]]], [1199,[1972.05,4146.08,2.38419e-007],[[1152,2],[1199,2],[1242,2],[1243,2]]], +[1200,[2667.46,4954.56,0],[[1153,2]]], [1201,[2572.01,5118.97,0],[[1153,2],[1244,2],[1245,2]]], [1202,[6187.68,2354.63,0],[[1156,2],[1202,2],[1246,2],[1203,2]]], [1203,[6248.57,2294.58,0],[[1156,2],[1157,2],[1202,2],[1247,2],[1204,2],[1246,2]]], [1204,[6319.83,2242.71,0],[[1157,2],[1203,2],[1247,2],[1248,2],[1205,2],[1207,2]]], [1205,[6455.88,2292.29,0],[[1158,2],[1204,2],[1205,2],[1206,2],[1249,2]]], +[1206,[6408.51,2286.79,0],[[1158,2],[1159,2],[1205,2],[1207,2],[1206,2]]], [1207,[6369.45,2289.62,0],[[1159,2],[1204,2],[1206,2],[1248,2]]], [1208,[6399.87,2326.73,0],[[1159,2]]], [1209,[5862.96,2465.93,0],[[1160,2],[1250,2]]], [1210,[5493.16,2454.36,6.35783e-007],[[1162,2],[1210,2],[1251,2],[1212,2]]], [1211,[5565.95,2418.62,0],[[1162,2]]], +[1212,[5340.94,2518.7,6.35783e-007],[[1163,2],[1210,2],[1251,2],[1212,2]]], [1213,[5410.77,2636.81,0],[[1163,2],[1252,2],[1213,2]]], [1214,[7501.56,3345,6.35783e-007],[[1165,2],[1214,2],[1253,2],[1254,2]]], [1215,[7806.31,3168.41,0],[[1168,2],[1255,2]]], [1216,[7499.04,4775.07,1.90735e-006],[[1171,2],[1256,2]]], [1217,[6499.54,4909,0],[[1173,2]]], +[1218,[7900.92,5120.9,0],[[1174,2],[1257,2]]], [1219,[7486.64,8402.29,0],[[1175,2],[1258,2]]], [1220,[8319.37,6281.35,0],[[1176,2],[1259,2]]], [1221,[8605.79,6515.68,0],[[1177,2],[1260,2],[1221,2],[1261,2]]], [1222,[8067.24,7732.26,0],[[1178,2],[1263,2]]], [1223,[8150.08,7481.59,0],[[1179,2]]], +[1224,[8316.15,7508.28,0],[[1179,2],[1264,2],[1265,2]]], [1225,[1901.86,9740.88,0],[[1183,2],[1184,2]]], [1226,[1702.95,9520.63,0],[[1185,2]]], [1227,[1910.94,9264.89,0],[[1186,2],[1266,2]]], [1228,[5427.05,9418.37,-4.76837e-007],[[1189,2],[1267,2]]], [1229,[5419.19,9416.99,0],[[1189,2]]], +[1230,[5466.36,9341.12,0],[[1189,2],[1268,2]]], [1231,[5321.35,9360.47,0],[[1189,2],[1269,2]]], [1232,[3128.39,2579.44,0],[[1191,2],[1270,2],[1271,2]]], [1233,[4001.47,1609.36,0],[[1146,2]]], [1234,[4240.21,1580.56,0],[[1194,2],[1234,2],[1272,2],[1235,2],[1273,2]]], [1235,[4196.08,1523.26,0],[[1194,2],[1234,2],[1273,2],[1274,2],[1275,2]]], +[1236,[2783.69,3036.15,0],[[1195,2]]], [1237,[2694.9,2993.64,0],[[1195,2],[1276,2],[1277,2]]], [1238,[2851.36,2915.77,0],[[1195,2],[1278,2]]], [1239,[1993.01,3706.77,0],[[1196,2],[1279,2],[1280,2]]], [1240,[2100.3,3879.16,0],[[1196,2],[1281,2]]], [1241,[2201.67,3607.69,0],[[1196,2],[1282,2]]], +[1242,[1815.83,4224.17,0],[[1199,2],[1283,2]]], [1243,[2019.79,4093,0],[[1199,2],[1281,2]]], [1244,[2562.73,5200.48,0],[[1201,2]]], [1245,[2551.33,5039.13,-9.53674e-007],[[1201,2],[1284,2]]], [1246,[6182.88,2293.52,0],[[1202,2],[1203,2],[1285,2]]], [1247,[6248.44,2239.21,0],[[1203,2],[1204,2],[1286,2],[1285,2]]], +[1248,[6374.12,2242.84,0],[[1204,2],[1207,2]]], [1249,[6562.35,2186.56,0],[[1205,2],[1287,2],[1249,2],[1288,2]]], [1250,[5818.15,2426.85,0],[[1209,2],[1289,2]]], [1251,[5408.99,2448.07,9.53674e-007],[[1210,2],[1212,2]]], [1252,[5423.85,2643.77,0],[[1213,2],[1252,2],[1290,2]]], [1253,[7430.95,3376.16,0],[[1214,2],[1254,2],[1253,2]]], +[1254,[7421.68,3394.17,0],[[1253,2],[1254,2],[1330,2],[1214,2]]], [1255,[7940.98,3132.66,1.58946e-007],[[1215,2],[1291,2],[1292,2]]], [1256,[7597.06,4892.05,0],[[1216,2],[1293,2]]], [1257,[7926.39,5086.62,0],[[1218,2],[1294,2],[1295,2]]], [1258,[7537.91,8395.53,0],[[1219,2],[1296,2]]], [1259,[8370.27,6250.64,0],[[1220,2],[1297,2]]], +[1260,[8573.78,6497.4,-9.53674e-007],[[1221,2],[1260,2]]], [1261,[8729.93,6553.56,0],[[1221,2],[1298,2],[1261,2],[1299,2],[1300,2]]], [1262,[8049.09,7493.17,0],[[1180,2]]], [1263,[8071.27,7800.31,0],[[1222,2],[1301,2]]], [1264,[8389.23,7521.65,0],[[1224,2]]], [1265,[8329.33,7465.65,0],[[1224,2]]], +[1266,[1870.23,9246.41,0],[[1227,2]]], [1267,[5576.06,9430.41,0],[[1228,2],[1302,2],[1267,2],[1303,2],[1304,2]]], [1268,[5477.63,9295.7,1.19209e-007],[[1230,2],[1305,2],[1306,2],[1307,2]]], [1269,[5256.81,9350.54,0],[[1231,2],[1308,2]]], [1270,[3000.42,2582.89,-2.38419e-007],[[1232,2],[1309,2],[1270,2],[1310,2],[1311,2]]], [1271,[3124.25,2461.91,0],[[1232,2]]], +[1272,[4259.2,1554.54,0],[[1234,2],[1312,2],[1275,2]]], [1273,[4252.78,1547.61,0],[[1234,2],[1235,2],[1273,2]]], [1274,[4168.25,1514.52,0],[[1235,2]]], [1275,[4342.01,1468.64,0],[[1235,2],[1272,2],[1312,2],[1313,2]]], [1276,[2742.09,2999.45,0],[[1314,2],[1315,2],[1276,2]]], [1277,[2596.26,3033.24,-4.76837e-007],[[1237,2],[1316,2],[1277,2],[1317,2],[1318,2]]], +[1278,[2883.78,2840.15,3.17891e-007],[[1238,2],[1311,2],[1319,2],[1278,2]]], [1279,[1814.09,3781.93,0],[[1239,2],[1280,2],[1279,2],[1320,2],[1321,2]]], [1280,[1883.34,3804.77,0],[[1279,2],[1354,2],[1239,2],[1280,2]]], [1281,[2053.57,4008.07,0],[[1240,2],[1243,2]]], [1282,[2246.75,3567.42,-1.90735e-006],[[1241,2],[1322,2]]], [1283,[1746.02,4252.47,0],[[1242,2],[1323,2]]], +[1284,[2513.67,4973.72,0],[[1245,2],[1324,2],[1325,2]]], [1285,[6165.84,2226.68,2.38419e-007],[[1246,2],[1247,2],[1285,2],[1286,2],[1326,2]]], [1286,[6228.87,2236.76,0],[[1247,2],[1285,2]]], [1287,[6544.62,2206.72,0],[[1249,2]]], [1288,[6658.55,2027.39,-3.8147e-006],[[1249,2],[1327,2],[1328,2]]], [1289,[5802.6,2377.53,0],[[1250,2],[1329,2]]], +[1290,[5401.65,2629.6,0],[[1252,2]]], [1291,[8070.72,3249.8,0],[[1255,2],[1331,2],[1291,2],[1332,2]]], [1292,[7988.67,3003.54,0],[[1255,2],[1333,2],[1292,2],[1334,2]]], [1293,[7688.32,5000.46,0],[[1256,2],[1335,2]]], [1294,[8096.63,5219.71,-9.53674e-007],[[1257,2],[1336,2]]], [1295,[7858.6,5035.43,0],[[1257,2],[1337,2]]], +[1296,[7581.87,8360.98,0],[[1258,2],[1338,2]]], [1297,[8427.89,6156.03,0],[[1259,2],[1339,2]]], [1298,[8656.08,6560.53,0],[[1340,2],[1298,2]]], [1299,[8716.66,6477.55,0],[[1261,2]]], [1300,[8862.13,6547.5,0],[[1261,2]]], [1301,[8047.4,7846.19,-1.90735e-006],[[1263,2],[1341,2]]], +[1302,[5567.48,9462.1,0],[[1267,2],[1342,2],[1302,2]]], [1303,[5707.43,9503.02,0],[[1267,2],[1343,2]]], [1304,[5585.16,9384.84,0],[[1267,2],[1344,2],[1306,2],[1304,2]]], [1305,[5480.14,9178.39,0],[[1268,2],[1305,2]]], [1306,[5545.33,9331.8,0],[[1268,2],[1304,2],[1345,2],[1344,2]]], [1307,[5424.05,9288.7,0],[[1268,2],[1346,2],[1307,2],[1347,2]]], +[1308,[5195.54,9299.16,0],[[1269,2],[1348,2],[1349,2]]], [1309,[3067.25,2580.67,0],[[1270,2]]], [1310,[2852.33,2584.73,0],[[1270,2]]], [1311,[2901.56,2669.86,-2.38419e-007],[[1270,2],[1278,2],[1311,2]]], [1312,[4324.13,1529.53,0],[[1272,2],[1275,2]]], [1313,[4516.32,1462.25,0],[[1275,2],[1350,2]]], +[1314,[2727.14,2978.69,0],[[1276,2],[1314,2]]], [1315,[2729.28,2992.09,0],[[1315,2],[1276,2]]], [1316,[2619.82,3008.76,-4.76837e-007],[[1277,2]]], [1317,[2534.32,3103.81,3.17891e-007],[[1277,2],[1351,2],[1317,2],[1352,2]]], [1318,[2545.2,2964.46,0],[[1277,2],[1353,2]]], [1319,[2877.7,2873.8,0],[[1278,2]]], +[1320,[1630.23,3796.5,-6.35783e-007],[[1279,2],[1321,2],[1320,2],[1355,2]]], [1321,[1663.51,3727.94,-3.8147e-006],[[1320,2],[1279,2]]], [1322,[2278.23,3526.39,0],[[1282,2],[1356,2]]], [1323,[1630.68,4272.95,0],[[1283,2],[1357,2]]], [1324,[2484.35,4848.86,0],[[1284,2],[1358,2]]], [1325,[2443.07,4941.25,0],[[1284,2],[1359,2]]], +[1326,[5976.53,2175.43,0],[[1285,2],[1326,2],[1360,2],[1361,2]]], [1327,[6726.09,1906.81,0],[[1288,2],[1328,2],[1327,2],[1362,2],[1363,2]]], [1328,[6702.15,1938.92,-3.8147e-006],[[1327,2],[1392,2],[1328,2],[1288,2]]], [1329,[5813.79,2327.04,0],[[1289,2],[1364,2]]], [1330,[7457.81,3368.27,9.53674e-007],[[1254,2]]], [1331,[8187.91,3250.08,0],[[1291,2],[1365,2],[1331,2]]], +[1332,[8093.91,3200.2,0],[[1291,2]]], [1333,[7983.01,3011.97,0],[[1292,2]]], [1334,[8059.98,2946.32,3.17891e-007],[[1292,2],[1366,2],[1334,2],[1367,2]]], [1335,[7731.94,5028.25,0],[[1293,2],[1337,2]]], [1336,[8225.06,5345.26,0],[[1294,2],[1368,2]]], [1337,[7769.63,5033.01,0],[[1295,2],[1335,2]]], +[1338,[7663.65,8264,0],[[1296,2],[1369,2]]], [1339,[8500.88,6028.99,0],[[1297,2],[1370,2],[1371,2]]], [1340,[8656.88,6561.74,0],[[1298,2],[1372,2],[1340,2]]], [1341,[7975.87,7893.13,0],[[1301,2],[1373,2]]], [1342,[5563.67,9494.3,0],[[1302,2],[1374,2]]], [1343,[5789.39,9509.89,-3.17891e-007],[[1303,2],[1343,2],[1375,2]]], +[1344,[5575.56,9343.21,0],[[1304,2],[1306,2],[1376,2]]], [1345,[5571.34,9348.24,0],[[1306,2]]], [1346,[5433.14,9292.82,0],[[1307,2]]], [1347,[5347.56,9283.33,0],[[1307,2],[1349,2]]], [1348,[5049.62,9290.26,2.38419e-007],[[1308,2],[1377,2],[1378,2],[1348,2]]], [1349,[5279.29,9265.71,0],[[1308,2],[1347,2],[1349,2],[1379,2]]], +[1350,[4651.95,1462.35,0],[[1313,2],[1380,2]]], [1351,[2548.34,3096.53,4.76837e-007],[[1317,2]]], [1352,[2468.15,3153.3,0],[[1317,2],[1381,2]]], [1353,[2545.73,2927.56,0],[[1318,2],[1353,2],[1382,2]]], [1354,[1921.36,3775.13,6.35783e-007],[[1280,2]]], [1355,[1508.11,4010.29,-1.27157e-006],[[1320,2],[1383,2],[1384,2]]], +[1356,[2284.98,3475.12,0],[[1322,2],[1385,2]]], [1357,[1539.1,4302.66,0],[[1323,2],[1386,2],[1387,2]]], [1358,[2465.93,4773.36,0],[[1324,2],[1388,2],[1389,2]]], [1359,[2327.66,4921.2,0],[[1325,2],[1390,2]]], [1360,[5972.94,2004.4,0],[[1326,2],[1391,2]]], [1361,[5940.27,2233,0],[[1326,2],[1364,2]]], +[1362,[6903.21,1717.63,0],[[1327,2],[1363,2],[1362,2],[1393,2]]], [1363,[6871.19,1794.97,0],[[1362,2],[1419,2],[1363,2],[1327,2]]], [1364,[5848.73,2288.91,-1.90735e-006],[[1329,2],[1361,2]]], [1365,[8397.73,3247.46,0],[[1331,2],[1394,2]]], [1366,[8033.08,2959.35,4.76837e-007],[[1334,2]]], [1367,[8201.21,2918.1,1.27157e-006],[[1334,2],[1395,2],[1367,2],[1396,2]]], +[1368,[8143.22,5508.18,0],[[1336,2],[1397,2]]], [1369,[7691.02,8236.65,-2.38419e-007],[[1338,2],[1398,2],[1369,2],[1399,2]]], [1370,[8574.47,5894.38,-2.54313e-006],[[1339,2],[1371,2],[1370,2],[1400,2]]], [1371,[8560.87,5938.46,-3.8147e-006],[[1370,2],[1339,2],[1371,2]]], [1372,[8660.92,6561.21,-1.19209e-007],[[1340,2],[1372,2]]], [1373,[7871.3,7953.22,0],[[1341,2],[1401,2]]], +[1374,[5562.11,9562.49,0],[[1342,2]]], [1375,[5869.95,9513.61,0],[[1343,2],[1402,2]]], [1376,[5668.02,9298.26,9.53674e-007],[[1344,2],[1403,2]]], [1377,[5023.51,9188.89,9.53674e-007],[[1348,2],[1404,2]]], [1378,[5061.69,9300.98,0],[[1348,2]]], [1379,[5263.34,9246.7,0],[[1349,2]]], +[1380,[4783.76,1459.58,0],[[1350,2],[1405,2]]], [1381,[2435.44,3236.08,0],[[1352,2],[1406,2]]], [1382,[2548.29,2778,-9.7766],[[1353,2],[1407,2]]], [1383,[1537.85,4024.91,0],[[1355,2]]], [1384,[1283.11,4129.15,0],[[1355,2],[1408,2],[1384,2],[1409,2],[1387,2]]], [1385,[2274.06,3415.4,0],[[1356,2],[1410,2]]], +[1386,[1491.71,4334.59,0],[[1357,2],[1411,2]]], [1387,[1365.62,4299.92,0],[[1357,2],[1384,2],[1412,2],[1387,2],[1413,2],[1411,2],[1409,2]]], [1388,[2455.69,4685.03,0],[[1358,2],[1414,2],[1415,2]]], [1389,[2351.19,4793.4,0],[[1358,2],[1416,2]]], [1390,[2276.38,4927.95,0],[[1359,2],[1417,2]]], [1391,[5972.72,1877.02,0],[[1360,2],[1418,2]]], +[1392,[6689.45,1966.03,1.27157e-006],[[1328,2]]], [1393,[7096.94,1555.98,0],[[1362,2],[1420,2]]], [1394,[8447.6,3251.32,0],[[1365,2],[1394,2],[1421,2],[1422,2],[1423,2]]], [1395,[8164.71,2911.84,1.27157e-006],[[1367,2]]], [1396,[8365.07,2950.38,0],[[1367,2],[1396,2],[1424,2],[1422,2]]], [1397,[8120.02,5558.28,0],[[1368,2],[1425,2],[1397,2],[1426,2]]], +[1398,[7752.63,8149.91,0],[[1369,2],[1427,2]]], [1399,[7751.83,8310.97,0],[[1369,2],[1399,2],[1428,2]]], [1400,[8655.34,5752.96,0],[[1370,2],[1429,2]]], [1401,[7789.77,8003.29,0],[[1373,2],[1430,2]]], [1402,[5931.69,9525.94,0],[[1375,2],[1431,2],[1432,2]]], [1403,[5753.51,9294.2,0],[[1376,2],[1433,2]]], +[1404,[5005.84,9175.36,0],[[1377,2],[1404,2],[1434,2]]], [1405,[4837.02,1430.99,0],[[1380,2],[1435,2]]], [1406,[2406.31,3282.71,0],[[1381,2],[1436,2]]], [1407,[2550.42,2651.13,0],[[1407,2],[1437,2]]], [1408,[1297.77,4095.04,0],[[1384,2]]], [1409,[1303.48,4226.73,0],[[1384,2],[1387,2],[1438,2],[1409,2]]], +[1410,[2289.61,3366.08,0],[[1385,2],[1436,2]]], [1411,[1357.29,4335.05,0],[[1386,2],[1387,2],[1439,2]]], [1412,[1393.07,4302.55,0],[[1387,2]]], [1413,[1336.72,4336.23,0],[[1387,2],[1413,2],[1440,2]]], [1414,[2551.42,4682.27,-1.27157e-006],[[1388,2],[1414,2],[1441,2]]], [1415,[2352.04,4680.4,0],[[1388,2],[1442,2]]], +[1416,[2266.25,4852.98,0],[[1389,2],[1443,2]]], [1417,[2213.13,4974.92,0],[[1390,2],[1444,2]]], [1418,[5967.91,1855.52,0],[[1391,2],[1445,2],[1446,2]]], [1419,[6824.49,1824.83,6.35783e-007],[[1363,2]]], [1420,[7275.94,1524.14,0],[[1393,2],[1447,2]]], [1421,[8488.38,3342.98,0],[[1394,2],[1448,2],[1421,2],[1449,2],[1450,2]]], +[1422,[8459.71,3164.99,0],[[1394,2],[1396,2],[1424,2],[1451,2]]], [1423,[8505.6,3242.07,3.17891e-007],[[1394,2],[1452,2],[1449,2],[1453,2],[1451,2]]], [1424,[8461.79,3080.47,2.38419e-007],[[1396,2],[1422,2],[1454,2],[1424,2],[1455,2]]], [1425,[8041.58,5684.46,0],[[1397,2],[1425,2],[1456,2]]], [1426,[8191.1,5596,0],[[1397,2],[1457,2],[1458,2]]], [1427,[7758.8,8094.32,0],[[1398,2],[1430,2]]], +[1428,[7847.55,8443.36,-1.27546],[[1399,2],[1428,2],[1459,2]]], [1429,[8619.47,5699.43,-1.27157e-006],[[1400,2],[1460,2],[1429,2],[1461,2],[1462,2]]], [1430,[7761.99,8046.91,0],[[1401,2],[1427,2]]], [1431,[6067.55,9532.15,0],[[1402,2],[1463,2]]], [1432,[5900.84,9586.24,0],[[1402,2],[1464,2],[1432,2],[1465,2]]], [1433,[5820.54,9261.02,0],[[1403,2],[1466,2]]], +[1434,[4947.09,9168.32,1.19209e-007],[[1404,2]]], [1435,[4886.34,1415.44,0],[[1405,2],[1467,2]]], [1436,[2330.47,3329.3,0],[[1406,2],[1410,2]]], [1437,[2515.71,2535,-1.90735e-006],[[1407,2],[1468,2]]], [1438,[1501.27,4235.98,0],[[1409,2],[1469,2]]], [1439,[1308.46,4330.82,0],[[1411,2],[1470,2],[1439,2]]], +[1440,[1331.1,4410.36,0],[[1413,2],[1471,2],[1472,2],[1470,2]]], [1441,[2568.6,4745.36,3.8147e-006],[[1414,2]]], [1442,[2277.17,4715.61,1.90735e-006],[[1415,2],[1473,2]]], [1443,[2197.67,4935.22,-1.90735e-006],[[1416,2],[1444,2]]], [1444,[2175.89,5002.99,0],[[1417,2],[1443,2],[1474,2],[1475,2]]], [1445,[5977.75,1671.89,0],[[1418,2],[1476,2],[1445,2]]], +[1446,[5836.7,1852.38,-2.38419e-007],[[1418,2],[1477,2],[1446,2],[1478,2]]], [1447,[7362.42,1486.15,0],[[1420,2],[1479,2],[1480,2]]], [1448,[8456.29,3317.95,0],[[1421,2]]], [1449,[8596.06,3376.77,0],[[1421,2],[1423,2],[1452,2],[1481,2],[1450,2]]], [1450,[8509.52,3476.79,0],[[1421,2],[1449,2],[1481,2],[1482,2]]], [1451,[8505.19,3164.89,0],[[1422,2],[1423,2],[1483,2],[1455,2],[1452,2],[1451,2],[1484,2]]], +[1452,[8596.95,3262.14,0],[[1423,2],[1449,2],[1451,2],[1485,2],[1484,2],[1486,2]]], [1453,[8512.12,3213.22,0],[[1423,2],[1453,2],[1486,2]]], [1454,[8456.14,3044.07,4.76837e-007],[[1424,2]]], [1455,[8591.96,3116.56,0],[[1424,2],[1451,2],[1487,2],[1486,2],[1483,2]]], [1456,[7999.59,5765.28,-6.35783e-007],[[1425,2],[1456,2]]], [1457,[8273.09,5636.37,0],[[1426,2],[1488,2],[1461,2],[1489,2]]], +[1458,[8153.73,5641.8,0],[[1426,2]]], [1459,[7911.62,8523.56,0],[[1428,2],[1490,2],[1459,2],[1491,2],[1492,2]]], [1460,[8655.45,5716.93,-1.27157e-006],[[1429,2]]], [1461,[8424.51,5720.97,-6.35783e-007],[[1429,2],[1457,2],[1462,2],[1461,2]]], [1462,[8452.1,5736.62,0],[[1461,2],[1516,2],[1462,2],[1429,2]]], [1463,[6140.2,9506.98,0],[[1431,2],[1463,2],[1493,2]]], +[1464,[5909.57,9570.16,-3.17891e-007],[[1432,2]]], [1465,[5911.46,9653.71,0],[[1432,2]]], [1466,[5847.46,9191.95,0],[[1433,2],[1494,2]]], [1467,[4953.09,1431.37,0],[[1435,2],[1495,2]]], [1468,[2436.67,2390.79,0],[[1437,2],[1496,2]]], [1469,[1544.31,4235.93,1.90735e-006],[[1438,2]]], +[1470,[1248.96,4338.93,0],[[1439,2],[1440,2],[1470,2],[1472,2],[1497,2],[1498,2]]], [1471,[1338.4,4480.76,-0.0897785],[[1440,2],[1499,2],[1471,2]]], [1472,[1265.95,4408.49,0],[[1440,2],[1470,2],[1472,2]]], [1473,[2194.07,4758.08,0],[[1442,2],[1500,2]]], [1474,[2111.24,5013.73,0],[[1444,2],[1501,2]]], [1475,[2164.15,5080.03,0],[[1444,2],[1475,2],[1502,2]]], +[1476,[6029.74,1554.63,0],[[1445,2],[1503,2]]], [1477,[5890.8,1854.39,-3.17891e-007],[[1446,2]]], [1478,[5684.76,1837.42,0],[[1446,2]]], [1479,[7343.58,1468.51,0],[[1447,2]]], [1480,[7472.28,1545.01,2.38419e-007],[[1447,2],[1480,2],[1504,2]]], [1481,[8584.06,3464.52,0],[[1449,2],[1450,2],[1505,2]]], +[1482,[8486.29,3566.91,0],[[1450,2],[1506,2],[1507,2],[1482,2]]], [1483,[8579.12,3164.18,0],[[1451,2],[1455,2]]], [1484,[8514.15,3182.34,0],[[1451,2],[1452,2],[1484,2],[1485,2]]], [1485,[8573.63,3208.13,0],[[1452,2],[1484,2]]], [1486,[8640.05,3218.03,0],[[1452,2],[1455,2],[1453,2],[1487,2]]], [1487,[8652.46,3133.09,0],[[1455,2],[1486,2],[1508,2]]], +[1488,[8323.43,5687.51,0],[[1457,2],[1509,2]]], [1489,[8373.19,5480.06,3.17891e-007],[[1457,2],[1510,2],[1489,2],[1511,2]]], [1490,[8000.9,8678.77,0],[[1459,2],[1490,2],[1512,2],[1513,2]]], [1491,[8032.87,8492.84,0],[[1459,2],[1514,2],[1491,2],[1515,2]]], [1492,[7997.85,8499.02,0],[[1514,2],[1459,2]]], [1493,[6295.19,9449.24,-4.76837e-007],[[1463,2],[1517,2]]], +[1494,[5919.91,9203.3,4.76837e-007],[[1466,2],[1518,2]]], [1495,[5085.61,1479.79,0],[[1467,2],[1519,2],[1495,2]]], [1496,[2445.84,2299.69,0],[[1468,2],[1520,2]]], [1497,[1157.5,4295.43,0],[[1470,2]]], [1498,[1218.58,4350.96,0],[[1470,2]]], [1499,[1342.76,4606.63,0],[[1499,2]]], +[1500,[2077.39,4746.76,0],[[1473,2],[1521,2],[1500,2]]], [1501,[2055.64,5019.92,0],[[1474,2],[1522,2]]], [1502,[2212.83,5123,0],[[1475,2],[1523,2]]], [1503,[6092.31,1484.33,0],[[1476,2],[1524,2]]], [1504,[7653.51,1571.38,0],[[1480,2],[1525,2],[1526,2],[1527,2],[1528,2]]], [1505,[8581.61,3500.18,0],[[1481,2]]], +[1506,[8517.11,3692.38,0],[[1482,2],[1529,2],[1530,2],[1506,2],[1531,2]]], [1507,[8485.72,3547.54,0],[[1482,2]]], [1508,[8852.65,3098.54,0],[[1487,2],[1532,2],[1508,2],[1533,2]]], [1509,[8298.7,5725.61,0],[[1488,2]]], [1510,[8358.39,5504.61,4.76837e-007],[[1489,2]]], [1511,[8443.02,5413.74,0],[[1489,2],[1534,2],[1511,2]]], +[1512,[8084.48,8853.37,0],[[1490,2],[1535,2]]], [1513,[7887.35,8693.44,0],[[1490,2],[1513,2]]], [1514,[8017.86,8499.68,4.76837e-007],[[1491,2],[1492,2],[1514,2]]], [1515,[8124.39,8515.84,0],[[1491,2],[1536,2]]], [1516,[8491.23,5720.36,0],[[1462,2]]], [1517,[6411.24,9467.18,1.19209e-007],[[1493,2],[1537,2],[1517,2],[1538,2]]], +[1518,[6026.39,9261.53,0],[[1494,2],[1539,2]]], [1519,[5141.48,1484.66,0],[[1495,2],[1540,2],[1519,2]]], [1520,[2460.5,2190.89,0],[[1496,2],[1541,2]]], [1521,[2053.04,4695.25,0],[[1500,2],[1546,2],[1547,2]]], [1522,[2009.24,5057.51,0],[[1501,2],[1548,2]]], [1523,[2215.19,5158.87,3.8147e-006],[[1502,2]]], +[1524,[6118.65,1456.31,6.35783e-007],[[1503,2],[1524,2],[1549,2]]], [1525,[7597.43,1675.94,6.35783e-007],[[1504,2],[1550,2],[1551,2]]], [1526,[7670.82,1516.82,0],[[1504,2],[1526,2],[1552,2]]], [1527,[7989.86,1648.97,0],[[1504,2],[1528,2],[1527,2],[1553,2],[1551,2]]], [1528,[7899.64,1631.2,-1.90735e-006],[[1527,2],[1577,2],[1528,2],[1504,2]]], [1529,[8594.37,3844.42,0],[[1506,2],[1554,2],[1531,2],[1529,2]]], +[1530,[8497.84,3654.81,0],[[1506,2]]], [1531,[8598.17,3802.84,0],[[1529,2],[1506,2]]], [1532,[8792.81,3103.89,0],[[1508,2]]], [1533,[9105.37,3178.6,0],[[1508,2],[1555,2]]], [1534,[8656.34,5407.83,0],[[1511,2],[1556,2],[1557,2],[1534,2]]], [1535,[8086.24,8877.71,0],[[1512,2],[1558,2],[1559,2],[1560,2],[1561,2]]], +[1536,[8180.32,8545.16,0],[[1515,2],[1562,2]]], [1537,[6445.19,9519.27,-7.94729e-008],[[1517,2],[1537,2],[1563,2]]], [1538,[6524.2,9418.13,0],[[1517,2],[1538,2]]], [1539,[6180.78,9303.68,0],[[1518,2],[1564,2]]], [1540,[5183.73,1399.36,0],[[1519,2],[1565,2]]], [1541,[2393.51,2121.51,0],[[1520,2],[1566,2]]], +[1542,[1344.95,4762.96,0],[[1499,2],[1543,2],[1544,2],[1545,2]]], [1543,[1467.85,4742.26,0],[[1542,2],[1567,2]]], [1544,[1367.18,4867.01,0],[[1542,2],[1568,2]]], [1545,[1189.12,4762.71,0],[[1542,2],[1569,2]]], [1546,[1971.48,4680.84,6.35783e-007],[[1521,2],[1570,2],[1571,2]]], [1547,[2064.61,4524.69,0],[[1521,2],[1572,2]]], +[1548,[1954.66,5110.58,0],[[1522,2],[1573,2]]], [1549,[6168.89,1404.67,0],[[1524,2],[1574,2],[1549,2]]], [1550,[7543.85,1763.58,0],[[1525,2],[1575,2]]], [1551,[7761.58,1817.7,0],[[1525,2],[1527,2],[1576,2]]], [1552,[7672.58,1504.29,0],[[1526,2]]], [1553,[7960.96,1790.34,0],[[1527,2],[1578,2],[1553,2]]], +[1554,[8653.57,3934.55,0],[[1529,2],[1579,2],[1554,2],[1580,2]]], [1555,[9206.69,3339.93,3.17891e-007],[[1533,2],[1581,2],[1555,2],[1582,2]]], [1556,[8745.3,5398.84,0],[[1534,2],[1583,2],[1584,2]]], [1557,[8647.28,5411.87,0],[[1534,2]]], [1558,[8162.01,9012.44,0],[[1535,2],[1585,2]]], [1559,[8229.34,8831.76,0],[[1535,2],[1586,2]]], +[1560,[7991.3,8882.64,0],[[1535,2],[1587,2]]], [1561,[8064.98,8921.57,0],[[1535,2],[1561,2],[1588,2]]], [1562,[8228.58,8557.64,0],[[1536,2]]], [1563,[6455.72,9544.79,-7.94729e-008],[[1537,2],[1563,2],[1589,2]]], [1564,[6315.03,9337.03,0],[[1539,2],[1590,2]]], [1565,[5250.24,1373.71,3.17891e-007],[[1540,2],[1591,2],[1592,2],[1565,2]]], +[1566,[2371.4,2037.4,0],[[1541,2],[1593,2]]], [1567,[1501.91,4683.67,0],[[1543,2],[1594,2]]], [1568,[1365.78,4927.1,0],[[1544,2],[1595,2],[1596,2]]], [1569,[1156.39,4761.95,0],[[1545,2],[1569,2],[1597,2]]], [1570,[1924.9,4734.71,0],[[1546,2],[1598,2]]], [1571,[1903.14,4700.19,0],[[1546,2],[1599,2]]], +[1572,[2039.05,4500.47,-3.17891e-007],[[1547,2],[1600,2],[1572,2],[1601,2]]], [1573,[1904.17,5121.77,0],[[1548,2],[1602,2]]], [1574,[6156.02,1276.33,0],[[1549,2],[1603,2],[1604,2],[1605,2],[1606,2]]], [1575,[7530.38,1896.49,0],[[1550,2],[1607,2],[1608,2]]], [1576,[7968.72,1794.33,0],[[1551,2]]], [1577,[7850.44,1602.14,0],[[1528,2]]], +[1578,[8023.93,1775.43,0],[[1553,2]]], [1579,[8603.91,3941.55,0],[[1554,2]]], [1580,[8892.61,3943.44,0],[[1554,2],[1609,2],[1580,2],[1610,2]]], [1581,[9179.58,3301.58,4.76837e-007],[[1555,2]]], [1582,[9270,3513.59,0],[[1555,2],[1611,2],[1582,2],[1612,2]]], [1583,[8824.96,5515.56,-9.53674e-007],[[1556,2]]], +[1584,[8774.4,5203.77,0],[[1556,2],[1584,2]]], [1585,[8175.31,9036.48,0],[[1558,2],[1613,2],[1614,2]]], [1586,[8363.96,8750.82,0],[[1559,2],[1615,2]]], [1587,[7913.68,8870.77,0],[[1560,2],[1616,2]]], [1588,[8035.39,8966.96,0],[[1561,2],[1617,2],[1613,2]]], [1589,[6481.49,9655.2,-1.58946e-007],[[1563,2],[1618,2],[1619,2]]], +[1590,[6436.23,9347.02,0],[[1564,2],[1620,2]]], [1591,[5389.35,1388.53,0],[[1565,2],[1621,2]]], [1592,[5228.08,1373.4,4.76837e-007],[[1565,2]]], [1593,[2388.62,1935.26,0],[[1566,2],[1622,2]]], [1594,[1507.5,4666.68,0],[[1594,2],[1623,2]]], [1595,[1434.67,4952.8,0],[[1568,2],[1624,2]]], +[1596,[1323.74,5145.03,0],[[1568,2],[1625,2],[1626,2],[1596,2]]], [1597,[1060.93,4761.68,0],[[1569,2],[1597,2],[1627,2]]], [1598,[1889.71,4843.83,0],[[1570,2],[1628,2]]], [1599,[1829.62,4701.44,1.90735e-006],[[1571,2],[1629,2]]], [1600,[2061.89,4501,0],[[1572,2],[1630,2],[1600,2]]], [1601,[1963.82,4491.61,0],[[1572,2]]], +[1602,[1850,5108.08,0],[[1573,2],[1631,2]]], [1603,[6118.28,1207.93,0],[[1574,2],[1632,2],[1603,2],[1633,2]]], [1604,[6003.09,1297.87,0],[[1574,2],[1634,2]]], [1605,[6206.59,1258.53,0],[[1574,2]]], [1606,[6191.42,1323.84,0],[[1574,2]]], [1607,[7376.04,1959.3,9.53674e-007],[[1575,2],[1635,2]]], +[1608,[7686.79,1884.74,0],[[1575,2],[1636,2]]], [1609,[8816.02,3944.36,0],[[1580,2]]], [1610,[8997.95,3853.2,0],[[1580,2],[1637,2],[1610,2],[1638,2],[1612,2]]], [1611,[9271.68,3458.95,0],[[1582,2]]], [1612,[9182.29,3706.75,0],[[1582,2],[1610,2],[1639,2],[1612,2],[1638,2]]], [1613,[8102.88,8986.76,0],[[1585,2],[1588,2]]], +[1614,[8341.27,9111.46,0],[[1585,2],[1640,2]]], [1615,[8378.7,8732.93,0],[[1586,2],[1615,2],[1641,2]]], [1616,[7819.49,8873.45,0],[[1587,2],[1642,2]]], [1617,[7977.31,8989.43,0],[[1588,2],[1643,2]]], [1618,[6504.08,9739.46,0],[[1589,2]]], [1619,[6451.51,9661.72,0],[[1589,2]]], +[1620,[6499.04,9368.86,-4.76837e-007],[[1590,2],[1644,2]]], [1621,[5409.43,1391.65,0],[[1591,2],[1645,2],[1646,2]]], [1622,[2376.36,1863.62,0],[[1593,2],[1622,2],[1647,2],[1648,2]]], [1623,[1555.56,4606.01,0],[[1594,2],[1649,2]]], [1624,[1515.14,4971.9,0],[[1595,2],[1650,2]]], [1625,[1240.32,5093.96,0],[[1596,2],[1651,2]]], +[1626,[1239.6,5261.66,0],[[1596,2]]], [1627,[976.358,4752.27,0],[[1597,2],[1652,2]]], [1628,[1835.19,4890.37,0],[[1598,2],[1653,2]]], [1629,[1768.17,4709.41,1.90735e-006],[[1599,2],[1654,2]]], [1630,[2062.93,4503.83,-3.17891e-007],[[1600,2]]], [1631,[1797.36,5111.83,-6.35783e-007],[[1602,2],[1655,2],[1656,2]]], +[1632,[6094.56,1049.49,9.53674e-007],[[1603,2]]], [1633,[6076.43,1219.42,0],[[1603,2]]], [1634,[5951.82,1291.12,0],[[1604,2],[1657,2]]], [1635,[7342.81,2000.7,-6.35783e-007],[[1607,2],[1658,2],[1659,2],[1635,2]]], [1636,[7837.38,1869.93,0],[[1608,2],[1660,2]]], [1637,[8994.43,3881.52,0],[[1610,2]]], +[1638,[9077.51,3775.22,-9.53674e-007],[[1610,2],[1612,2]]], [1639,[9208.55,3686.85,0],[[1612,2]]], [1640,[8468.53,9047.21,0],[[1614,2],[1661,2],[1662,2]]], [1641,[8304.72,8623.52,0],[[1615,2],[1663,2]]], [1642,[7772.1,8819.53,-9.53674e-007],[[1616,2],[1664,2]]], [1643,[7936.6,9000.91,0],[[1617,2]]], +[1644,[6523.75,9386.46,4.76837e-007],[[1620,2]]], [1645,[5472.36,1340.28,0],[[1621,2],[1665,2]]], [1646,[5415.72,1405.4,0],[[1621,2]]], [1647,[2289.89,1833.87,0],[[1622,2],[1666,2],[1667,2],[1647,2]]], [1648,[2413.43,1748.92,0],[[1622,2],[1668,2],[1669,2],[1670,2]]], [1649,[1571.08,4608.67,0],[[1623,2],[1649,2],[1671,2]]], +[1650,[1664.65,4998.34,0],[[1624,2],[1672,2]]], [1651,[1204.99,5132.39,0],[[1625,2],[1673,2]]], [1652,[925.271,4822.22,0],[[1627,2],[1674,2]]], [1653,[1760.82,4943.85,0],[[1628,2],[1672,2]]], [1654,[1719.11,4705.34,-1.90735e-006],[[1629,2],[1675,2]]], [1655,[1743.74,5060.33,0],[[1631,2],[1672,2]]], +[1656,[1772.63,5132.82,0],[[1631,2]]], [1657,[5910.79,1259.64,-1.90735e-006],[[1634,2],[1676,2]]], [1658,[7280.52,2071.36,0],[[1635,2],[1677,2]]], [1659,[7355.02,1985.64,-6.35783e-007],[[1635,2]]], [1660,[7994.6,1865.88,0],[[1636,2],[1678,2]]], [1661,[8482.35,8990.12,0],[[1640,2],[1679,2]]], +[1662,[8540.75,9191.55,0],[[1715,2],[1640,2],[1749,2]]], [1663,[8284.52,8552.2,0],[[1641,2],[1680,2]]], [1664,[7741.57,8763.01,0],[[1642,2]]], [1665,[5577.03,1215.73,0],[[1645,2],[1681,2]]], [1666,[2177.32,1821.1,-1.27157e-006],[[1647,2],[1682,2],[1683,2],[1666,2]]], [1667,[2312.17,1838.64,0],[[1647,2]]], +[1668,[2509.2,1779.54,0],[[1648,2],[1684,2],[1685,2]]], [1669,[2391.7,1597.36,6.35783e-007],[[1648,2],[1686,2],[1669,2]]], [1670,[2536.52,1725.26,0],[[1648,2],[1687,2]]], [1671,[1605.22,4626.49,0],[[1649,2],[1671,2],[1675,2]]], [1672,[1680.9,4997.22,1.27157e-006],[[1650,2],[1653,2],[1655,2]]], [1673,[1175.2,5176.59,0],[[1651,2],[1688,2]]], +[1674,[944.118,4923.73,0],[[1652,2],[1689,2]]], [1675,[1677.08,4662.61,0],[[1654,2],[1671,2]]], [1676,[5862.41,1163.51,0],[[1657,2],[1690,2]]], [1677,[7239.06,2140.67,0],[[1658,2],[1691,2]]], [1678,[8112.14,1865.07,-3.02845],[[1660,2],[1692,2],[1693,2],[1678,2]]], [1679,[8517.32,8938.61,0],[[1661,2],[1694,2],[1695,2],[1696,2]]], +[1680,[8323.7,8502.58,0],[[1663,2],[1697,2]]], [1681,[5647.67,1169.28,0],[[1665,2],[1690,2]]], [1682,[2094.18,1849.37,0],[[1666,2],[1698,2]]], [1683,[2204.09,1818.88,-1.27157e-006],[[1666,2]]], [1684,[2574.57,1778.63,0],[[1668,2],[1699,2],[1685,2],[1700,2],[1701,2]]], [1685,[2511.68,1844.4,0],[[1668,2],[1684,2],[1685,2],[1699,2]]], +[1686,[2417.04,1420.81,0],[[1669,2],[1702,2],[1703,2],[1704,2]]], [1687,[2682.05,1728.86,0],[[1670,2],[1705,2],[1700,2]]], [1688,[1118.71,5178.79,3.97364e-008],[[1673,2],[1688,2],[1706,2]]], [1689,[855.908,5040.46,0],[[1674,2],[1707,2]]], [1690,[5698.09,1132.67,0],[[1676,2],[1681,2]]], [1691,[7232.09,2151.53,0],[[1677,2],[1691,2],[1708,2]]], +[1692,[8247.23,1864.83,0],[[1692,2],[1709,2],[1710,2],[1678,2]]], [1693,[8090.14,1865.05,0],[[1678,2],[1693,2]]], [1694,[8576.55,8834.32,0],[[1679,2],[1711,2]]], [1695,[8446.56,8930.36,0],[[1679,2],[1712,2]]], [1696,[8591.27,9024.44,1.19209e-007],[[1679,2],[1713,2],[1696,2],[1714,2],[1715,2]]], [1697,[8324.78,8493.91,0],[[1680,2]]], +[1698,[2061.66,1902.14,0],[[1682,2],[1716,2]]], [1699,[2564.02,1851.92,0],[[1684,2],[1685,2],[1717,2]]], [1700,[2625.25,1777.46,0],[[1684,2],[1687,2],[1718,2],[1700,2]]], [1701,[2592.73,1776.42,0],[[1684,2]]], [1702,[2381.7,1313.58,0],[[1686,2],[1719,2],[1720,2]]], [1703,[2305.33,1423.76,0],[[1686,2],[1721,2]]], +[1704,[2507.72,1401.36,-1.58946e-007],[[1686,2],[1704,2],[1722,2]]], [1705,[2697.51,1767.85,0],[[1687,2],[1723,2]]], [1706,[1053.09,5167.49,-4.76837e-007],[[1688,2],[1724,2]]], [1707,[820.002,5055.3,4.76837e-007],[[1689,2],[1725,2],[1726,2],[1727,2]]], [1708,[7166.91,2189.34,0],[[1691,2],[1728,2]]], [1709,[8339.2,1989.33,-9.53674e-007],[[1692,2],[1729,2]]], +[1710,[8215.81,1864.99,-0.387805],[[1692,2]]], [1711,[8624.53,8806.71,0],[[1694,2],[1730,2]]], [1712,[8312.17,8908.73,-4.76837e-007],[[1695,2]]], [1713,[8565,8997.41,0],[[1696,2],[1731,2],[1713,2]]], [1714,[8756.39,8991.23,0],[[1696,2],[1732,2]]], [1715,[8599.61,9185.88,1.58946e-007],[[1696,2],[1662,2],[1733,2]]], +[1716,[1983.83,2030.06,1.27157e-006],[[1698,2],[1734,2],[1735,2]]], [1717,[2504.34,1914.16,0],[[1699,2]]], [1718,[2676.84,1771.72,0],[[1700,2]]], [1719,[2231.96,1294.14,0],[[1702,2],[1736,2],[1737,2]]], [1720,[2382.23,1253.21,0],[[1702,2]]], [1721,[2206.73,1477.88,0],[[1703,2],[1738,2]]], +[1722,[2591.11,1351.72,0],[[1704,2],[1739,2]]], [1723,[2776.16,1795.33,0],[[1705,2],[1740,2]]], [1724,[1029.59,5181.33,-4.76837e-007],[[1706,2],[1741,2],[1742,2]]], [1725,[785.51,5069.77,0],[[1707,2],[1743,2],[1744,2],[1727,2]]], [1726,[860.353,5125.56,0],[[1707,2],[1745,2]]], [1727,[769.779,5003.57,0],[[1707,2],[1725,2],[1744,2]]], +[1728,[7112.05,2256.8,0],[[1708,2]]], [1729,[8440.06,2052.9,0],[[1709,2],[1746,2]]], [1730,[8703.79,8748.07,-9.53674e-007],[[1711,2]]], [1731,[8563.52,8994.1,0],[[1713,2]]], [1732,[8806.53,8907.86,0],[[1714,2],[1747,2],[1748,2],[1732,2]]], [1733,[8696.83,9228.52,-4.76837e-007],[[1715,2],[1750,2]]], +[1734,[1972.05,1998.36,3.8147e-006],[[1716,2]]], [1735,[1891.42,2041.43,0],[[1716,2],[1751,2]]], [1736,[2229.12,1348.42,0],[[1719,2]]], [1737,[2168.41,1222.37,0],[[1719,2],[1752,2],[1737,2],[1753,2]]], [1738,[2159.51,1491.52,0],[[1721,2],[1738,2],[1754,2]]], [1739,[2620.08,1272.67,0],[[1722,2],[1755,2],[1739,2],[1756,2]]], +[1740,[2865.88,1852.84,-1.27157e-006],[[1723,2],[1740,2],[1757,2]]], [1741,[986.536,5136.32,0],[[1724,2],[1758,2],[1741,2],[1745,2]]], [1742,[975.058,5237.08,1.90735e-006],[[1724,2],[1759,2]]], [1743,[814.89,5174.7,0],[[1725,2],[1760,2],[1759,2]]], [1744,[750.605,5010.56,-9.53674e-007],[[1725,2],[1727,2],[1761,2],[1744,2]]], [1745,[919.074,5145.82,0],[[1726,2],[1741,2]]], +[1746,[8576.86,2099.6,0],[[1729,2],[1762,2]]], [1747,[8898.9,8918.46,4.76837e-007],[[1732,2],[1763,2]]], [1748,[8790.29,8920.01,-1.58946e-007],[[1732,2]]], [1749,[8493.35,9325.6,0],[[1662,2],[1764,2],[1765,2]]], [1750,[8751.42,9294.69,0],[[1733,2],[1750,2],[1766,2],[1767,2]]], [1751,[1843.09,2032.79,1.27157e-006],[[1735,2],[1768,2],[1751,2]]], +[1752,[2209.08,1236.69,0],[[1769,2],[1770,2],[1752,2]]], [1753,[2090.72,1118.67,-5.96046e-008],[[1737,2],[1771,2],[1753,2],[1772,2],[1773,2]]], [1754,[2084.34,1485.7,0],[[1738,2],[1774,2],[1754,2],[1775,2]]], [1755,[2705.25,1286.71,0],[[1739,2],[1776,2],[1755,2],[1777,2]]], [1756,[2561.13,1114.25,1.58946e-007],[[1739,2],[1756,2]]], [1757,[2954.62,1876.3,0],[[1740,2],[1778,2]]], +[1758,[1006.61,5131.95,0],[[1741,2],[1779,2],[1758,2]]], [1759,[882.92,5250.11,0],[[1742,2],[1743,2],[1780,2],[1760,2]]], [1760,[842.814,5255.99,0],[[1743,2],[1759,2],[1781,2],[1780,2]]], [1761,[665.581,4914.34,0],[[1744,2],[1782,2]]], [1762,[8670.33,2134.25,0],[[1746,2],[1783,2],[1784,2]]], [1763,[8986.14,8951.95,0],[[1747,2],[1785,2],[1786,2]]], +[1764,[8457.77,9428.52,-1.21954],[[1749,2],[1787,2]]], [1765,[8403.71,9359.56,-1.17721],[[1749,2],[1788,2]]], [1766,[8769.23,9417.19,0],[[1750,2],[1789,2]]], [1767,[8832.47,9328.9,0],[[1750,2],[1790,2],[1791,2]]], [1768,[1787.76,2056.35,0],[[1751,2],[1792,2],[1793,2]]], [1769,[2206.13,1233.48,0],[[1752,2],[1769,2]]], +[1770,[2203.93,1238.14,0],[[1770,2],[1752,2]]], [1771,[2113.64,1146.49,0],[[1771,2],[1753,2],[1794,2]]], [1772,[2016.07,1146.21,0],[[1753,2]]], [1773,[2069.45,987.775,0],[[1753,2],[1795,2],[1796,2],[1773,2]]], [1774,[1989.29,1485.3,0],[[1754,2],[1797,2],[1798,2],[1799,2]]], [1775,[2087.54,1431.28,0],[[1754,2]]], +[1776,[2822.18,1281.9,0],[[1755,2]]], [1777,[2699.67,1357.65,-2.38419e-007],[[1755,2]]], [1778,[3010.38,1854.91,0],[[1757,2],[1800,2]]], [1779,[1009.83,5139.46,-3.17891e-007],[[1758,2]]], [1780,[841.723,5247.93,0],[[1759,2],[1801,2],[1780,2],[1760,2]]], [1781,[829.574,5367.28,0],[[1760,2],[1802,2],[1803,2]]], +[1782,[657.519,4891.85,0],[[1761,2],[1782,2],[1804,2]]], [1783,[8763.84,2111.96,0],[[1762,2],[1805,2]]], [1784,[8684.68,2216.59,0],[[1762,2],[1806,2]]], [1785,[9067.76,9020.22,0],[[1763,2],[1807,2]]], [1786,[9059.13,8925.34,0],[[1763,2],[1808,2]]], [1787,[8487.8,9507.13,0],[[1764,2],[1809,2],[1787,2],[1810,2]]], +[1788,[8347.63,9370.03,0],[[1765,2],[1811,2],[1812,2]]], [1789,[8797.73,9452.12,-0.188798],[[1766,2],[1789,2],[1813,2]]], [1790,[8959.73,9375.22,0],[[1767,2],[1814,2]]], [1791,[8847.73,9275.79,0],[[1767,2],[1815,2],[1791,2]]], [1792,[1720.8,2101.26,-9.53674e-007],[[1768,2],[1816,2],[1792,2],[1817,2],[1793,2]]], [1793,[1760.99,2094.8,1.90735e-006],[[1768,2],[1792,2]]], +[1794,[2112.6,1148.18,0],[[1771,2]]], [1795,[2058.16,908.288,0],[[1773,2],[1818,2],[1819,2]]], [1796,[2073.95,1025.79,0],[[1773,2]]], [1797,[2002.34,1445.91,0],[[1774,2],[1797,2],[1820,2]]], [1798,[1743.5,1487.86,0],[[1774,2],[1798,2],[1821,2],[1822,2],[1823,2],[1824,2],[1825,2],[1826,2]]], [1799,[1927.24,1577.64,0],[[1774,2],[1827,2],[1823,2]]], +[1800,[3054.25,1802.63,0],[[1778,2],[1828,2]]], [1801,[834.12,5260.88,0],[[1780,2],[1801,2]]], [1802,[901.623,5355.7,-1.27157e-006],[[1781,2],[1829,2],[1830,2],[1802,2]]], [1803,[750.398,5447.4,0],[[1781,2],[1803,2]]], [1804,[578.706,4852.97,0],[[1782,2],[1831,2],[1832,2]]], [1805,[8780.5,2058.27,0],[[1783,2],[1833,2]]], +[1806,[8707.69,2242.59,-4.76837e-007],[[1784,2],[1834,2],[1806,2],[1835,2]]], [1807,[9137.73,9076.97,0],[[1785,2],[1836,2],[1837,2]]], [1808,[9126.68,8934.63,0],[[1786,2],[1838,2]]], [1809,[8523.75,9572.73,0],[[1787,2],[1839,2],[1840,2]]], [1810,[8384.43,9493.91,0],[[1787,2],[1810,2]]], [1811,[8245.29,9399.22,1.58946e-007],[[1788,2],[1841,2],[1811,2],[1842,2]]], +[1812,[8269.17,9374.54,4.76837e-007],[[1841,2],[1788,2]]], [1813,[8826.34,9539.38,0],[[1789,2],[1843,2]]], [1814,[9071.83,9358.89,3.17891e-007],[[1790,2],[1844,2],[1845,2]]], [1815,[8851.77,9248.31,0],[[1791,2],[1846,2],[1815,2]]], [1816,[1716.47,2073.45,0],[[1792,2]]], [1817,[1754.02,2261.32,0],[[1792,2],[1847,2],[1817,2],[1848,2]]], +[1818,[2061.35,771.025,0],[[1795,2],[1849,2],[1850,2]]], [1819,[2002.82,910.836,0],[[1795,2]]], [1820,[1875.28,1431.45,0],[[1797,2]]], [1821,[1777.02,1336.65,0],[[1798,2],[1851,2]]], [1822,[1720.89,1568.61,0],[[1798,2],[1823,2],[1852,2]]], [1823,[1786.23,1595.85,0],[[1798,2],[1799,2],[1822,2],[1827,2]]], +[1824,[1597.97,1495.79,0],[[1798,2],[1853,2],[1824,2],[1825,2]]], [1825,[1677.23,1352.54,0],[[1798,2],[1854,2],[1851,2],[1825,2],[1826,2],[1855,2],[1824,2]]], [1826,[1729.63,1352.64,0],[[1798,2],[1825,2],[1856,2],[1854,2]]], [1827,[1809.67,1608.66,0],[[1799,2],[1823,2]]], [1828,[3095.11,1692.57,0],[[1800,2],[1857,2]]], [1829,[935.59,5349.23,-3.8147e-006],[[1802,2]]], +[1830,[876.446,5360.66,1.90735e-006],[[1802,2]]], [1831,[450.25,4794.15,0],[[1804,2],[1858,2]]], [1832,[601.818,4800.41,0],[[1804,2],[1859,2],[1832,2],[1860,2],[1861,2]]], [1833,[8809.6,1998.09,-1.90735e-006],[[1805,2],[1862,2]]], [1834,[8691.55,2310.89,0],[[1806,2]]], [1835,[8793.91,2268.56,-1.90735e-006],[[1806,2],[1863,2]]], +[1836,[9276.92,8989.11,0],[[1807,2],[1864,2]]], [1837,[9156.84,9200.73,0],[[1807,2],[1865,2],[1844,2]]], [1838,[9178.52,8966.23,0],[[1808,2],[1866,2]]], [1839,[8540.58,9672.92,0],[[1809,2],[1867,2],[1868,2]]], [1840,[8562.01,9571.58,0],[[1809,2]]], [1841,[8252.74,9380.98,0],[[1811,2],[1812,2],[1841,2]]], +[1842,[8186.75,9458.2,0],[[1811,2],[1869,2],[1842,2]]], [1843,[8839.11,9567.77,0],[[1813,2],[1870,2],[1871,2]]], [1844,[9107.85,9316.82,1.19209e-007],[[1814,2],[1837,2],[1865,2],[1872,2]]], [1845,[9117.06,9355.45,-1.58946e-007],[[1872,2]]], [1846,[8873.49,9219.94,0],[[1815,2]]], [1847,[1724.41,2200.96,0],[[1817,2]]], +[1848,[1898.32,2345.64,-1.27157e-006],[[1817,2],[1873,2],[1848,2],[1874,2]]], [1849,[2149.3,759.805,0],[[1818,2],[1849,2],[1875,2]]], [1850,[1867.35,740.388,-7.94729e-008],[[1818,2],[1876,2],[1877,2]]], [1851,[1779.25,1254.49,0],[[1821,2],[1825,2],[1878,2],[1879,2],[1856,2]]], [1852,[1640.05,1580.43,0],[[1822,2],[1880,2],[1855,2]]], [1853,[1490.63,1495.67,0],[[1824,2],[1881,2],[1882,2]]], +[1854,[1689.64,1267.95,0],[[1825,2],[1826,2],[1883,2],[1856,2]]], [1855,[1643.78,1489.48,0],[[1825,2],[1852,2],[1855,2]]], [1856,[1729.63,1256.13,0],[[1826,2],[1851,2],[1854,2]]], [1857,[3096.08,1632.44,0],[[1828,2],[1884,2]]], [1858,[371.363,4762.15,0],[[1831,2],[1885,2]]], [1859,[604.679,4820.14,0],[[1832,2]]], +[1860,[524.912,4712.68,0],[[1832,2],[1886,2]]], [1861,[662.491,4761.33,0],[[1832,2],[1887,2]]], [1862,[8836.5,1971.73,0],[[1833,2],[1888,2],[1889,2]]], [1863,[8833.69,2325.06,0],[[1835,2],[1890,2]]], [1864,[9299.69,8970.4,0],[[1836,2],[1866,2],[1891,2],[1892,2]]], [1865,[9151.1,9286.42,0],[[1837,2],[1844,2],[1893,2]]], +[1866,[9228.81,8978.31,0],[[1838,2],[1864,2]]], [1867,[8666.5,9695.77,0],[[1839,2],[1871,2],[1894,2]]], [1868,[8512.31,9756.25,0],[[1839,2],[1868,2],[1895,2]]], [1869,[8147.97,9524.65,4.76837e-007],[[1842,2],[1896,2]]], [1870,[8928.39,9566.58,0],[[1843,2],[1897,2]]], [1871,[8815.69,9614.94,0],[[1843,2],[1867,2],[1894,2],[1898,2]]], +[1872,[9119.41,9355.63,-1.58946e-007],[[1844,2],[1845,2],[1872,2]]], [1873,[1848.83,2336.2,0],[[1873,2],[1848,2],[1900,2]]], [1874,[2015.72,2347.99,3.8147e-006],[[1848,2]]], [1875,[2329.71,753.983,0],[[1849,2]]], [1876,[1774.09,746.111,0],[[1850,2],[1901,2],[1876,2],[1902,2]]], [1877,[1825.46,663.252,1.58946e-007],[[1850,2],[1903,2],[1904,2],[1905,2]]], +[1878,[1777.02,1040.37,0],[[1851,2],[1902,2]]], [1879,[1826.27,1299.72,0],[[1851,2],[1906,2],[1879,2]]], [1880,[1609.55,1581.46,0],[[1852,2]]], [1881,[1400.83,1481.83,0],[[1853,2],[1907,2],[1908,2]]], [1882,[1483.28,1640.56,0],[[1853,2]]], [1883,[1455.18,1255.32,0],[[1854,2],[1909,2]]], +[1884,[3081.35,1553.59,-3.17891e-007],[[1857,2],[1910,2],[1911,2],[1912,2]]], [1885,[322.301,4735.54,0],[[1858,2]]], [1886,[443.249,4638.06,0],[[1860,2],[1913,2]]], [1887,[708.862,4765.01,-1.90735e-006],[[1861,2]]], [1888,[8779.67,1948.37,0],[[1862,2],[1914,2]]], [1889,[8911.3,1916.23,0],[[1862,2],[1915,2]]], +[1890,[8888.5,2326.97,0],[[1863,2],[1916,2]]], [1891,[9387.98,8894.81,0],[[1864,2],[1917,2],[1918,2],[1891,2],[1919,2],[1920,2]]], [1892,[9323.32,8916.65,0],[[1864,2],[1920,2],[1921,2]]], [1893,[9240.99,9364.45,0],[[1865,2],[1922,2]]], [1894,[8784.4,9652.89,0],[[1871,2],[1867,2],[1898,2]]], [1895,[8349.28,9822.26,0],[[1868,2],[1923,2]]], +[1896,[8065.17,9553.22,-3.17891e-007],[[1869,2],[1924,2],[1925,2]]], [1897,[9027.8,9565.41,0],[[1870,2],[1926,2]]], [1898,[8828.58,9669.31,0],[[1871,2],[1894,2],[1927,2]]], [1899,[9145.31,9375.18,0],[[1845,2]]], [1900,[1850.55,2343.43,0],[[1900,2],[1873,2]]], [1901,[1712.8,741.026,0],[[1876,2]]], +[1902,[1770.15,807.2,0],[[1876,2],[1878,2],[1928,2]]], [1903,[1858.28,684.779,1.58946e-007],[[1877,2]]], [1904,[1671.54,585.391,0],[[1877,2],[1905,2],[1904,2],[1929,2],[1930,2]]], [1905,[1684.67,656.654,0],[[1904,2],[1877,2]]], [1906,[1820.75,1263.53,0],[[1906,2],[1931,2]]], [1907,[1347.7,1405.54,0],[[1881,2],[1909,2]]], +[1908,[1397.03,1306.25,0],[[1881,2]]], [1909,[1355.27,1250.43,0],[[1883,2],[1907,2],[1932,2]]], [1910,[3160.9,1529.88,0],[[1910,2],[1933,2],[1934,2]]], [1911,[2880.53,1398.06,3.17891e-007],[[1884,2],[1912,2],[1911,2],[1935,2]]], [1912,[2919.84,1430.62,-2.38419e-007],[[1911,2],[1950,2],[1912,2],[1884,2]]], [1913,[426.735,4619.13,0],[[1886,2]]], +[1914,[8760.69,1948.4,0],[[1888,2]]], [1915,[8985.63,1875.63,0],[[1889,2],[1936,2]]], [1916,[8917.51,2313.15,0],[[1890,2]]], [1917,[9385.55,8943.36,0],[[1891,2]]], [1918,[9408.41,8807.98,0],[[1891,2],[1937,2]]], [1919,[9389.05,8817.53,0],[[1891,2]]], +[1920,[9328.51,8832.82,0],[[1891,2],[1892,2],[1921,2],[1938,2]]], [1921,[9315.82,8848.79,3.17891e-007],[[1920,2],[1921,2],[1892,2]]], [1922,[9274.71,9470.43,-8.35077],[[1893,2],[1939,2]]], [1923,[8289.63,9833.3,0],[[1895,2],[1940,2],[1941,2]]], [1924,[7925.55,9561.24,0],[[1896,2],[1942,2]]], [1925,[8105.02,9627.16,0],[[1896,2],[1925,2],[1943,2],[1940,2]]], +[1926,[9105.53,9547.06,0],[[1897,2],[1926,2],[1944,2]]], [1927,[8860.78,9781.3,0],[[1898,2],[1945,2]]], [1928,[1698.96,852.432,0],[[1902,2],[1946,2],[1932,2],[1928,2]]], [1929,[1506.93,565.979,0],[[1904,2],[1930,2],[1929,2]]], [1930,[1528.2,530.289,0],[[1929,2],[1904,2]]], [1931,[1818.58,1256.9,0],[[1947,2],[1906,2],[1931,2]]], +[1932,[1385.44,1117.1,5.96046e-008],[[1909,2],[1928,2],[1946,2],[1948,2],[1932,2]]], [1933,[3285.37,1522.42,0],[[1910,2],[1934,2],[1933,2],[1949,2]]], [1934,[3265.85,1519.74,0],[[1933,2],[1962,2],[1934,2],[1910,2]]], [1935,[2836.47,1306.67,0],[[1911,2]]], [1936,[9032.62,1863.97,0],[[1915,2],[1951,2],[1952,2]]], [1937,[9411.65,8735.16,0],[[1918,2],[1937,2],[1953,2]]], +[1938,[9308.84,8790.23,0],[[1920,2]]], [1939,[9296.14,9583.9,0],[[1922,2],[1954,2],[1955,2]]], [1940,[8198.11,9702.32,4.76837e-007],[[1923,2],[1925,2]]], [1941,[8349.56,9923.05,0],[[1923,2],[1956,2]]], [1942,[7840.95,9577.27,0],[[1924,2],[1957,2]]], [1943,[8111.5,9702.18,0],[[1925,2]]], +[1944,[9128.15,9638.79,4.76837e-007],[[1926,2],[1958,2]]], [1945,[8877.6,9895.49,0],[[1927,2],[1959,2],[1960,2]]], [1946,[1542.98,985.338,0],[[1928,2],[1932,2],[1961,2],[1946,2]]], [1947,[1819.91,1257.48,0],[[1906,2],[1931,2],[1947,2]]], [1948,[1348.17,1154.34,0],[[1932,2]]], [1949,[3336.66,1527.07,0],[[1933,2],[1963,2],[1949,2]]], +[1950,[2968.71,1465.29,1.58946e-007],[[1912,2]]], [1951,[9082.17,1770.62,0],[[1936,2],[1964,2]]], [1952,[9034.42,1951.96,0],[[1936,2],[1965,2]]], [1953,[9412.59,8550.8,0],[[1937,2],[1966,2]]], [1954,[9274.27,9735.62,0],[[1939,2],[1967,2]]], [1955,[9399.7,9483.7,0],[[1939,2],[1968,2]]], +[1956,[8459.62,9985.59,0],[[1941,2],[1969,2]]], [1957,[7723.59,9573.91,0],[[1942,2],[1970,2]]], [1958,[9177.48,9682.4,0],[[1944,2],[1971,2]]], [1959,[8930.41,10020.3,0],[[1945,2],[1972,2]]], [1960,[8798.98,9919.83,0],[[1945,2]]], [1961,[1578.61,965.075,0],[[1946,2]]], +[1962,[3245.14,1522.91,0],[[1934,2]]], [1963,[3396.8,1496.45,0],[[1949,2],[1973,2],[1963,2]]], [1964,[9029.76,1681.03,0],[[1951,2],[1974,2],[1964,2]]], [1965,[9048.13,2023.05,-1.90735e-006],[[1952,2],[1975,2]]], [1966,[9417.34,8436.64,3.17891e-007],[[1953,2],[1976,2],[1977,2]]], [1967,[9266.11,9752.09,0],[[1954,2],[1978,2],[1979,2],[1971,2]]], +[1968,[9550.9,9405.59,0],[[1955,2],[1980,2]]], [1969,[8506.57,10011.6,-1.58946e-007],[[1956,2],[1969,2],[1981,2]]], [1970,[7588.66,9669.18,4.76837e-007],[[1957,2],[1982,2]]], [1971,[9199.66,9726.48,0],[[1958,2],[1967,2],[1983,2]]], [1972,[8957.49,10110.6,0],[[1959,2],[1972,2]]], [1973,[3437.31,1460.65,-3.17891e-007],[[1963,2],[1973,2]]], +[1974,[8981.79,1589.69,0],[[1964,2],[1984,2]]], [1975,[9042.04,2042.47,-1.27157e-006],[[1965,2],[1975,2],[1985,2]]], [1976,[9371.09,8432.28,0],[[1966,2]]], [1977,[9496.98,8365.32,9.53674e-007],[[1966,2],[1986,2]]], [1978,[9347.38,9746.12,0],[[1967,2],[1987,2]]], [1979,[9223.38,9765.21,0],[[1967,2],[1988,2]]], +[1980,[9725.15,9353.68,0],[[1968,2],[1989,2]]], [1981,[8535.8,10059.8,4.76837e-007],[[1969,2]]], [1982,[7528.32,9692.22,1.58946e-007],[[1970,2],[1990,2],[1991,2]]], [1983,[9216.19,9748.01,0],[[1971,2]]], [1984,[8965.92,1531.63,0],[[1974,2],[1992,2]]], [1985,[9011,2119.26,0],[[1975,2]]], +[1986,[9460.53,8286.73,0],[[1977,2],[1993,2]]], [1987,[9405.15,9734.71,0],[[1978,2],[1994,2]]], [1988,[9230.8,9842.76,-1.19209e-007],[[1979,2],[1995,2],[1996,2],[1988,2]]], [1989,[9762.11,9344.59,0],[[1980,2]]], [1990,[7442.18,9611.59,0],[[1982,2],[1997,2]]], [1991,[7526.1,9824.3,9.53674e-008],[[1982,2],[1998,2],[1999,2],[1991,2],[2000,2],[2001,2]]], +[1992,[8928.7,1477.39,0],[[1984,2],[2002,2],[2003,2],[2004,2]]], [1993,[9547.84,8221.52,0],[[1986,2],[2005,2]]], [1994,[9430.26,9741.47,-6.35783e-007],[[1987,2],[2006,2],[1994,2],[2007,2]]], [1995,[9305.91,9881.66,0],[[1995,2],[2008,2]]], [1996,[9225.08,9834.09,0],[[1988,2]]], [1997,[7430.65,9537.89,0],[[1990,2],[2009,2],[2010,2]]], +[1998,[7532.35,10003.5,0],[[1991,2],[2011,2]]], [1999,[7490.51,9815.13,0],[[2000,2],[1999,2]]], [2000,[7499.95,9815.4,0],[[1991,2],[1999,2],[2000,2]]], [2001,[7636.54,9874.19,0],[[1991,2]]], [2002,[8910.55,1332.96,0],[[1992,2],[2012,2],[2013,2],[2014,2],[2015,2],[2004,2]]], [2003,[8777.67,1497.89,1.90735e-006],[[1992,2],[2016,2]]], +[2004,[8935.85,1400.19,0],[[2057,2],[2077,2],[1992,2],[2002,2]]], [2005,[9682.05,8182.18,0],[[1993,2],[2017,2]]], [2006,[9425.41,9733.82,0],[[1994,2],[2006,2]]], [2007,[9499.94,9757.37,-1.27157e-006],[[1994,2],[2018,2],[2007,2]]], [2008,[9365.78,9971.24,0],[[1995,2],[2019,2]]], [2009,[7335.34,9454.09,0],[[1997,2],[2020,2]]], +[2010,[7519.67,9504.65,0],[[1997,2],[2021,2]]], [2011,[7532.38,10078.9,1.90735e-006],[[1998,2]]], [2012,[8775.71,1359.75,1.90735e-006],[[2002,2],[2025,2]]], [2013,[8894.29,1262.06,0],[[2002,2],[2026,2],[2027,2],[2028,2]]], [2014,[8811.96,1312.21,0],[[2002,2],[2029,2],[2026,2]]], [2015,[9015.31,1332.08,0],[[2002,2]]], +[2016,[8681.12,1410.27,0],[[2003,2],[2030,2],[2025,2]]], [2017,[9767.19,8104.75,4.76837e-007],[[2005,2],[2031,2]]], [2018,[9558.62,9793.27,-1.90735e-006],[[2007,2],[2032,2],[2033,2],[2018,2]]], [2019,[9420.71,10020.8,0],[[2008,2],[2034,2]]], [2020,[7331.74,9436.45,0],[[2009,2]]], [2021,[7507.73,9467.23,-4.76837e-007],[[2010,2]]], +[2022,[7448.71,9800.53,1.58946e-007],[[1999,2],[2023,2],[2024,2]]], [2023,[7370.21,9908.16,0],[[2022,2],[2035,2]]], [2024,[7318.99,9764.83,0],[[2022,2],[2036,2]]], [2025,[8746.78,1353.23,6.35783e-007],[[2012,2],[2016,2],[2025,2],[2030,2],[2026,2]]], [2026,[8764.4,1276.72,1.27157e-006],[[2013,2],[2014,2],[2025,2],[2037,2]]], [2027,[8843.28,1133.64,0],[[2013,2],[2038,2]]], +[2028,[9064.1,1268.34,0],[[2013,2],[2039,2]]], [2029,[8764.62,1306.73,-9.53674e-007],[[2014,2]]], [2030,[8662.78,1363.6,0],[[2016,2],[2025,2],[2040,2]]], [2031,[9725.86,7987.5,-1.19209e-007],[[2017,2],[2041,2],[2031,2],[2042,2]]], [2032,[9651.25,9849.21,1.90735e-006],[[2018,2],[2043,2]]], [2033,[9552.11,9780.98,-2.54313e-006],[[2018,2]]], +[2034,[9463.67,10049.7,0],[[2019,2],[2034,2],[2044,2]]], [2035,[7354.4,9939.2,0],[[2023,2]]], [2036,[7265.21,9769.53,0],[[2024,2]]], [2037,[8655.44,1280.36,0],[[2026,2],[2045,2]]], [2038,[8760.04,1019.81,0],[[2027,2],[2046,2]]], [2039,[9083.01,1265.12,0],[[2028,2],[2047,2],[2039,2],[2048,2]]], +[2040,[8637.39,1354.11,1.27157e-006],[[2030,2],[2040,2],[2049,2]]], [2041,[9569.32,7990.64,0],[[2031,2],[2050,2]]], [2042,[9757.97,7825.44,4.76837e-007],[[2031,2],[2051,2]]], [2043,[9737.53,9881.62,0],[[2032,2],[2052,2]]], [2044,[9582.44,10064.6,0],[[2034,2],[2053,2]]], [2045,[8653.75,1146.96,0],[[2037,2],[2054,2]]], +[2046,[8695.54,936.515,-4.76837e-007],[[2038,2],[2054,2],[2055,2],[2056,2]]], [2047,[9150.38,1312.21,-0.0112316],[[2039,2],[2057,2],[2058,2]]], [2048,[9074.27,1158.82,1.90735e-006],[[2039,2],[2059,2]]], [2049,[8596.2,1372.83,6.35783e-007],[[2040,2],[2060,2],[2061,2]]], [2050,[9438.59,8021.64,4.76837e-007],[[2041,2]]], [2051,[9736.68,7782.86,0],[[2042,2]]], +[2052,[9826.36,9866.61,0],[[2043,2],[2062,2]]], [2053,[9668.11,10074,0],[[2044,2],[2053,2],[2063,2]]], [2054,[8650,1032.82,0],[[2045,2],[2046,2]]], [2055,[8593.05,843.711,0],[[2046,2],[2064,2]]], [2056,[8809.19,910.405,0],[[2046,2],[2065,2]]], [2057,[9058.68,1375.54,0],[[2047,2],[2004,2]]], +[2058,[9268.5,1295.69,0],[[2047,2],[2066,2],[2067,2],[2068,2]]], [2059,[9090.42,1082.83,0],[[2048,2],[2069,2]]], [2060,[8520.52,1438.78,0],[[2049,2],[2070,2]]], [2061,[8571.5,1274.69,0],[[2049,2],[2071,2]]], [2062,[9891.33,9826.25,0],[[2052,2],[2072,2]]], [2063,[9676.58,10101.4,0],[[2053,2]]], +[2064,[8555.9,789.118,3.17891e-007],[[2055,2],[2073,2],[2074,2]]], [2065,[8877.67,895.941,-3.17891e-007],[[2056,2],[2075,2],[2076,2]]], [2066,[9292.28,1379.57,1.90735e-006],[[2058,2],[2078,2]]], [2067,[9354.01,1156.87,-6.35783e-007],[[2058,2],[2079,2],[2080,2]]], [2068,[9336.53,1307.69,3.17891e-007],[[2058,2],[2081,2],[2068,2],[2082,2]]], [2069,[9079.73,1002.8,0],[[2059,2],[2083,2],[2075,2]]], +[2070,[8482.77,1467.29,0],[[2060,2],[2084,2],[2070,2],[2085,2]]], [2071,[8585.64,1207.06,-1.90735e-006],[[2061,2],[2086,2]]], [2072,[9958.15,9811.36,0],[[2062,2],[2072,2]]], [2073,[8465.12,697.932,0],[[2064,2],[2087,2]]], [2074,[8596.33,740.52,-3.17891e-007],[[2064,2],[2088,2],[2089,2]]], [2075,[9064.01,903.511,0],[[2065,2],[2069,2],[2090,2]]], +[2076,[8888.23,836.632,0],[[2065,2],[2091,2]]], [2077,[8924.03,1402.81,0],[[2004,2]]], [2078,[9322.61,1500.72,0],[[2066,2],[2092,2]]], [2079,[9429.35,1052.65,0],[[2067,2],[2093,2]]], [2080,[9451.31,1063.54,0],[[2067,2]]], [2081,[9316.8,1303.58,3.17891e-007],[[2068,2]]], +[2082,[9454.69,1317.96,0],[[2068,2],[2094,2]]], [2083,[9089.11,917.196,-4.76837e-007],[[2069,2]]], [2084,[8498.02,1464.83,0],[[2070,2]]], [2085,[8384.12,1434.77,-6.35783e-007],[[2070,2],[2095,2],[2085,2],[2096,2]]], [2086,[8583.14,1183,0],[[2071,2]]], [2087,[8352.86,666.521,0],[[2073,2],[2097,2]]], +[2088,[8639.7,693.216,-2.38419e-007],[[2074,2],[2098,2],[2088,2],[2099,2],[2089,2]]], [2089,[8533.2,651.058,-6.35783e-007],[[2074,2],[2088,2],[2100,2],[2099,2]]], [2090,[9112.9,902.425,0],[[2075,2],[2101,2],[2090,2],[2102,2]]], [2091,[8895.17,755.176,-4.76837e-007],[[2076,2],[2103,2]]], [2092,[9362.6,1603.78,0],[[2078,2],[2104,2]]], [2093,[9553.42,1068.61,1.27157e-006],[[2079,2],[2105,2],[2106,2]]], +[2094,[9529.36,1323.99,0],[[2082,2],[2107,2],[2108,2]]], [2095,[8384.7,1455.72,-9.53674e-007],[[2085,2]]], [2096,[8353.24,1320.07,0],[[2085,2],[2109,2]]], [2097,[8325.13,657.292,0],[[2087,2],[2110,2],[2111,2]]], [2098,[8744.44,661.165,0],[[2088,2],[2112,2]]], [2099,[8592.22,623.346,0],[[2088,2],[2089,2],[2099,2],[2113,2]]], +[2100,[8407.63,585.825,1.27157e-006],[[2089,2],[2114,2],[2115,2]]], [2101,[9178.49,914.017,0],[[2090,2]]], [2102,[9145.88,828.649,0],[[2090,2],[2116,2],[2117,2]]], [2103,[8903.63,672.352,0],[[2091,2],[2118,2]]], [2104,[9401.93,1727.84,0],[[2092,2],[2119,2]]], [2105,[9617.68,958.265,0],[[2093,2],[2120,2]]], +[2106,[9551.69,1185.6,0],[[2093,2],[2108,2]]], [2107,[9666.99,1348.68,0],[[2094,2],[2121,2]]], [2108,[9542.89,1243.16,0],[[2094,2],[2106,2]]], [2109,[8308.49,1262.3,0],[[2096,2],[2122,2]]], [2110,[8164.19,641.212,0],[[2097,2],[2123,2]]], [2111,[8297.72,610.856,0],[[2097,2],[2124,2],[2111,2]]], +[2112,[8853.86,624.761,0],[[2098,2],[2125,2]]], [2113,[8608.21,505.384,0],[[2099,2],[2126,2]]], [2114,[8354.49,588.35,0],[[2100,2],[2114,2],[2124,2]]], [2115,[8374.54,507.833,0],[[2100,2],[2127,2],[2124,2]]], [2116,[9134.68,755.699,9.53674e-007],[[2102,2],[2128,2],[2129,2],[2130,2],[2131,2]]], [2117,[9174.44,829.956,0],[[2102,2]]], +[2118,[8914.57,663.95,0],[[2103,2],[2125,2],[2118,2]]], [2119,[9426.11,1776.2,0],[[2104,2],[2132,2],[2133,2]]], [2120,[9640.85,894.762,0],[[2105,2],[2134,2],[2135,2]]], [2121,[9737.66,1369.07,0],[[2107,2],[2136,2],[2121,2],[2137,2]]], [2122,[8296.85,1174.81,0],[[2109,2],[2138,2]]], [2123,[8130.1,626.956,0],[[2110,2],[2139,2],[2140,2],[2124,2]]], +[2124,[8254.84,560.702,0],[[2111,2],[2114,2],[2115,2],[2123,2],[2140,2],[2141,2]]], [2125,[8892.46,616.359,0],[[2112,2],[2118,2],[2130,2],[2142,2],[2129,2],[2143,2]]], [2126,[8636.99,448.356,0],[[2113,2],[2144,2]]], [2127,[8318.09,375.827,0],[[2115,2],[2145,2]]], [2128,[9185.51,775.85,0],[[2116,2]]], [2129,[8998.23,668.796,0],[[2116,2],[2125,2],[2143,2]]], +[2130,[9078.44,631.75,6.35783e-007],[[2116,2],[2125,2],[2146,2],[2130,2]]], [2131,[9094.75,668.071,9.53674e-007],[[2146,2],[2116,2]]], [2132,[9468.71,1897.45,0],[[2119,2],[2147,2],[2148,2]]], [2133,[9512.88,1669.03,0],[[2119,2],[2149,2],[2150,2]]], [2134,[9692.84,802.125,-9.53674e-007],[[2120,2],[2151,2],[2152,2],[2153,2]]], [2135,[9505.89,848.224,0],[[2120,2],[2154,2]]], +[2136,[9824.07,1374.91,0],[[2121,2]]], [2137,[9675.02,1448.3,0],[[2121,2],[2149,2]]], [2138,[8213.05,1135.02,0],[[2122,2],[2155,2]]], [2139,[8053.29,622.549,0],[[2123,2],[2156,2],[2157,2]]], [2140,[8206.43,589.618,0],[[2123,2],[2124,2]]], [2141,[8177.24,514.465,0],[[2124,2],[2157,2],[2158,2]]], +[2142,[8797.04,597.463,0],[[2125,2]]], [2143,[8987.22,662.676,0],[[2129,2],[2143,2],[2125,2]]], [2144,[8667.7,400.998,0],[[2126,2]]], [2145,[8223.88,317.606,0],[[2127,2],[2159,2]]], [2146,[9087.31,648.303,-9.53674e-007],[[2130,2],[2131,2],[2146,2]]], [2147,[9497.14,2053.3,0],[[2132,2],[2160,2]]], +[2148,[9522.38,1822.29,0],[[2132,2]]], [2149,[9587.27,1558.95,0],[[2133,2],[2137,2]]], [2150,[9633.1,1752.88,0],[[2133,2],[2161,2]]], [2151,[9804.36,842.027,0],[[2134,2]]], [2152,[9739.56,770.363,-6.35783e-007],[[2134,2],[2162,2],[2152,2],[2163,2],[2164,2]]], [2153,[9613.37,743.969,3.17891e-007],[[2134,2],[2165,2],[2153,2]]], +[2154,[9396.94,823.697,-1.90735e-006],[[2135,2],[2166,2]]], [2155,[8147.99,1143.71,0],[[2138,2],[2167,2],[2155,2],[2168,2]]], [2156,[7879.76,627.067,0],[[2139,2],[2169,2]]], [2157,[8065,575.668,0],[[2139,2],[2141,2],[2170,2],[2158,2]]], [2158,[8103.46,465.696,0],[[2141,2],[2157,2],[2159,2]]], [2159,[8147.43,316.29,-2.38419e-007],[[2145,2],[2158,2],[2171,2],[2159,2]]], +[2160,[9491.93,2165.23,6.35783e-007],[[2147,2],[2172,2],[2173,2],[2174,2]]], [2161,[9758.14,1848.74,0],[[2150,2],[2175,2]]], [2162,[9724.94,776.653,0],[[2152,2]]], [2163,[9857.27,721.494,0],[[2152,2],[2164,2],[2163,2],[2176,2]]], [2164,[9846.5,724.739,0],[[2163,2],[2183,2],[2164,2],[2152,2]]], [2165,[9526.33,699.337,-9.53674e-007],[[2153,2]]], +[2166,[9399.28,712.061,9.53674e-007],[[2154,2],[2177,2]]], [2167,[8036.41,1057.19,0],[[2155,2],[2178,2]]], [2168,[8100.01,1243.48,0],[[2155,2],[2168,2]]], [2169,[7745.13,607.63,0],[[2156,2]]], [2170,[8104.61,476.139,0],[[2157,2],[2170,2]]], [2171,[8159.75,306.033,0],[[2159,2]]], +[2172,[9398.79,2347.81,0],[[2160,2],[2179,2],[2180,2]]], [2173,[9596.98,2068.54,0],[[2160,2],[2181,2]]], [2174,[9425.06,2311.01,0],[[2180,2],[2160,2],[2215,2]]], [2175,[9825.29,1906.37,0],[[2161,2],[2175,2],[2182,2],[2181,2]]], [2176,[9922.37,700.609,0],[[2163,2]]], [2177,[9410.38,632.84,0],[[2166,2],[2184,2]]], +[2178,[7962.18,982.471,0],[[2167,2],[2185,2]]], [2179,[9376.2,2380.86,0],[[2172,2],[2186,2],[2187,2]]], [2180,[9310.06,2247.56,0],[[2211,2],[2174,2],[2172,2],[2180,2]]], [2181,[9689.96,1985.77,0],[[2173,2],[2175,2]]], [2182,[9874.39,1944.04,0],[[2175,2]]], [2183,[9822.37,732.07,6.35783e-007],[[2164,2]]], +[2184,[9384.03,591.843,0],[[2184,2]]], [2185,[7865.14,926.097,0],[[2178,2],[2188,2]]], [2186,[9289.46,2455.94,0],[[2179,2],[2189,2],[2190,2]]], [2187,[9290.33,2522.97,0],[[2179,2],[2191,2]]], [2188,[7805.1,948.084,0],[[2185,2]]], [2189,[9185.49,2516.48,0],[[2186,2],[2192,2],[2189,2],[2193,2]]], +[2190,[9230.36,2498.41,0],[[2192,2],[2186,2]]], [2191,[9271.87,2557.36,0],[[2187,2],[2194,2],[2195,2]]], [2192,[9204.72,2508.1,0],[[2189,2],[2190,2],[2192,2]]], [2193,[9122.34,2538.89,0],[[2193,2]]], [2194,[9199.87,2676.53,0],[[2191,2],[2196,2],[2197,2],[2194,2],[2198,2]]], [2195,[9363.8,2652.96,0],[[2191,2],[2199,2]]], +[2196,[9119.67,2830.29,0],[[2194,2]]], [2197,[9199.81,2669.49,0],[[2194,2]]], [2198,[9164.2,2673.09,0],[[2194,2],[2200,2],[2203,2]]], [2199,[9377,2657.87,0],[[2195,2]]], [2200,[9076.48,2623.24,0],[[2193,2],[2201,2],[2198,2],[2202,2]]], [2201,[8981.02,2577.97,0],[[2200,2],[2204,2],[2205,2],[2206,2]]], +[2202,[9028.66,2716.58,0],[[2200,2],[2207,2],[2203,2]]], [2203,[9100.1,2707.14,0],[[2198,2],[2202,2]]], [2204,[8896.7,2536.81,0],[[2201,2]]], [2205,[9075.11,2496.13,0],[[2201,2],[2208,2]]], [2206,[8974.42,2610.28,0],[[2201,2],[2209,2],[2210,2]]], [2207,[8990.26,2748.07,0],[[2202,2]]], +[2208,[9137.75,2407.04,-9.53674e-007],[[2205,2],[2211,2]]], [2209,[8960.04,2691.72,0],[[2206,2]]], [2210,[8927.26,2609.52,0],[[2206,2],[2212,2]]], [2211,[9249.05,2306.95,0],[[2208,2],[2180,2]]], [2212,[8887.57,2584.68,6.35783e-007],[[2210,2],[2212,2],[2213,2]]], [2213,[8845.89,2546.43,6.35783e-007],[[2212,2],[2214,2],[2213,2]]], +[2214,[8810.22,2516.66,0],[[2213,2],[2216,2],[2217,2]]], [2215,[9572.69,2399.31,0],[[2174,2],[2218,2]]], [2216,[8768.2,2558.82,0],[[2214,2],[2219,2],[2220,2],[2216,2]]], [2217,[8767.94,2438.76,-4.76837e-007],[[2214,2],[2221,2]]], [2218,[9601.46,2424.2,0],[[2215,2],[2222,2],[2223,2]]], [2219,[8722.67,2520.41,0],[[2216,2],[2224,2]]], +[2220,[8777.52,2557.95,9.53674e-007],[[2216,2]]], [2221,[8748.83,2430.85,0],[[2217,2]]], [2222,[9650.15,2416.51,-6.35783e-007],[[2218,2],[2222,2],[2225,2]]], [2223,[9591.79,2440.52,0],[[2218,2]]], [2224,[8675.94,2493.53,-6.35783e-007],[[2219,2],[2226,2],[2227,2],[2224,2]]], [2225,[9712.54,2302.62,0],[[2222,2],[2228,2]]], +[2226,[8630.53,2439.59,-1.90735e-006],[[2224,2]]], [2227,[8693.1,2503.9,-9.53674e-007],[[2224,2]]], [2228,[9766.48,2197.43,1.90735e-006],[[2225,2],[2228,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridlingor3.sqf b/A3-Antistasi/NavGrids/navGridlingor3.sqf new file mode 100644 index 0000000000..9f3ddcf254 --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridlingor3.sqf @@ -0,0 +1,417 @@ +navGrid = [[0,[8377.63,7430.53,0.163857],[[1,2],[2,2],[3,2],[0,2]]], [1,[8473.02,7545.96,-0.020391],[[0,2],[8,2]]], [2,[8302.95,7319.41,-0.240536],[[0,2],[9,2]]], [3,[8459.19,7293.12,0.139262],[[0,2],[10,2],[11,2]]], [4,[9210.27,4460.85,-0.254903],[[5,2],[6,2],[7,2]]], [5,[9202.33,4651.76,0.469893],[[4,2],[12,2]]], +[6,[9113.35,4378.5,1.22425],[[4,2],[13,2],[6,2],[14,2]]], [7,[9247.42,4399.15,1.70548],[[4,2]]], [8,[8512.22,7631.23,0.0335169],[[1,2],[15,2]]], [9,[8213.9,7269.11,-0.297768],[[2,2],[16,2],[9,2],[17,2]]], [10,[8515.07,7244.78,-0.0433885],[[3,2],[11,2],[10,2],[18,2]]], [11,[8492.47,7252.31,0.0707233],[[10,2],[24,2],[3,2],[11,2]]], +[12,[9140.75,4735.09,1.6659],[[5,2],[19,2]]], [13,[9119.35,4399.15,1.86663],[[6,2]]], [14,[9090.27,4289.76,-0.0363045],[[6,2],[20,2]]], [15,[8570.73,7693.12,-1.48845],[[8,2],[21,2]]], [16,[8166.5,7223.24,-1.76771],[[9,2],[22,2],[16,2],[23,2]]], [17,[8214.86,7236.26,0.0688572],[[9,2]]], +[18,[8676.5,7182.11,-0.0129313],[[10,2],[25,2]]], [19,[9037.45,4797.75,-0.104666],[[12,2],[26,2]]], [20,[9106.28,4207.33,-0.0041256],[[14,2],[27,2]]], [21,[8597.89,7742.55,0.129164],[[15,2],[28,2],[29,2]]], [22,[8172.86,7254.6,0.0718037],[[16,2]]], [23,[8162.28,7037.55,-10.5143],[[16,2],[30,2],[23,2]]], +[24,[8479.82,7264.5,-0.145514],[[11,2]]], [25,[8731.56,7128.35,-0.00683212],[[18,2],[31,2]]], [26,[9100.7,4860.46,-2.86691],[[19,2],[32,2]]], [27,[9118.4,4186.91,-0.0541588],[[20,2],[33,2],[27,2]]], [28,[8583.56,7809.26,0.148004],[[21,2],[34,2],[28,2],[35,2]]], [29,[8695.41,7752.35,-0.0280876],[[21,2],[36,2]]], +[30,[8106.94,6720.27,-0.00928497],[[23,2],[37,2]]], [31,[8819.66,7104.93,-0.122302],[[25,2],[38,2]]], [32,[9163.25,4900.09,0.148618],[[26,2],[39,2]]], [33,[9126.81,4121.64,-0.270579],[[27,2],[40,2]]], [34,[8581.25,7781.2,-0.0448523],[[28,2]]], [35,[8532.52,7925.12,-0.165055],[[28,2],[41,2]]], +[36,[8733.39,7761.99,-0.41305],[[29,2],[42,2],[43,2]]], [37,[7525.49,6717.6,-0.0115573],[[30,2],[44,2],[45,2],[46,2]]], [38,[8901.5,7010.18,1.91385],[[31,2],[47,2]]], [39,[9172.07,4929.71,-0.168759],[[32,2],[48,2],[49,2]]], [40,[9112.48,4105.54,-0.222106],[[33,2],[50,2],[51,2]]], [41,[8473.17,7957.29,0.0158846],[[35,2],[52,2],[53,2]]], +[42,[8695.96,7840.53,0.209085],[[36,2],[54,2],[42,2],[55,2]]], [43,[8794.36,7699.58,-0.359099],[[36,2],[56,2],[43,2],[57,2]]], [44,[7059.66,6717.6,9.53674e-007],[[37,2],[58,2]]], [45,[7423.62,6717.26,-10.013],[[37,2],[46,2]]], [46,[7714.1,6717.09,-14.3542],[[45,2],[46,2],[74,2],[37,2]]], [47,[8913.47,7001.9,0.863784],[[38,2],[59,2],[60,2]]], +[48,[9171.64,4956.87,-0.0310097],[[39,2],[61,2],[49,2],[62,2]]], [49,[9202.73,4948.7,1.18111],[[39,2],[48,2],[63,2]]], [50,[9019.81,4212.93,-0.277281],[[40,2],[64,2]]], [51,[9103.06,4033.24,-0.537485],[[40,2],[65,2],[51,2]]], [52,[8455.34,7889.15,-0.0921391],[[41,2],[66,2],[67,2]]], [53,[8475.96,8070.54,0.0634212],[[41,2],[68,2],[69,2]]], +[54,[8702.17,7811.08,0.133619],[[42,2]]], [55,[8708.98,7937.49,-0.218841],[[42,2],[55,2],[70,2],[71,2]]], [56,[8785.6,7714.81,-0.424568],[[43,2]]], [57,[8811.38,7588.31,-0.00865173],[[43,2]]], [58,[7001.21,6716.44,0.0987835],[[44,2],[72,2],[73,2],[58,2]]], [59,[8842.22,6910.01,1.05692],[[47,2],[75,2]]], +[60,[8988.95,7056.2,-0.187791],[[47,2],[76,2],[60,2],[77,2]]], [61,[9122.7,5068.13,-1.08795],[[48,2],[78,2]]], [62,[9189.63,4952.48,0.0363512],[[48,2],[62,2]]], [63,[9329.3,5000.21,0.0592958],[[49,2],[63,2],[79,2]]], [64,[8989.53,4260.24,-0.529562],[[50,2],[80,2]]], [65,[9170.58,3998.15,-0.421792],[[51,2],[81,2],[82,2]]], +[66,[8488.17,7838.45,-0.49436],[[52,2],[66,2],[83,2]]], [67,[8383.56,7966.84,-0.123773],[[52,2],[84,2]]], [68,[8409.68,8151.84,-0.578494],[[53,2],[85,2],[68,2],[86,2]]], [69,[8549.58,8127.54,0.127845],[[53,2]]], [70,[8751.66,7889.71,-0.0102501],[[55,2],[87,2]]], [71,[8758.11,8024.85,-0.384235],[[55,2],[88,2],[89,2]]], +[72,[6871.28,6634.08,0.315559],[[58,2],[90,2]]], [73,[7020.5,6717.63,0.161209],[[58,2]]], [74,[7988.44,6717.58,-7.43262],[[46,2]]], [75,[8858.59,6788.4,-0.142194],[[59,2]]], [76,[8975.36,7036.36,0.0645868],[[60,2]]], [77,[9042.05,7098.4,0.153695],[[60,2],[91,2],[77,2],[92,2]]], +[78,[9128.23,5096.34,-0.201419],[[61,2],[93,2],[94,2]]], [79,[9337.77,5088.6,0.0157743],[[63,2],[95,2],[96,2],[79,2]]], [80,[8976.42,4312.45,0.0868931],[[64,2],[97,2]]], [81,[9219.31,3975.03,0],[[65,2]]], [82,[9174.88,3859.55,-0.0835622],[[65,2],[98,2],[99,2]]], [83,[8504.84,7855.5,0.592293],[[66,2]]], +[84,[8382.7,7999,-0.120613],[[67,2]]], [85,[8413.89,8137.75,-0.336608],[[68,2]]], [86,[8358.78,8240.11,0.0873839],[[68,2],[100,2],[101,2]]], [87,[8840.22,7864.15,-0.512482],[[70,2],[102,2]]], [88,[8751.93,8154.54,0.0069077],[[71,2],[103,2],[88,2],[104,2],[105,2]]], [89,[8754.23,8112.64,-0.38134],[[103,2],[71,2]]], +[90,[6864.11,6617.07,0.105186],[[72,2],[106,2],[107,2]]], [91,[9021.32,7094.37,0.0637774],[[77,2]]], [92,[9200.48,7087.03,0.00180697],[[77,2]]], [93,[9119.84,5233.73,-0.00317049],[[78,2]]], [94,[9240.58,5097.37,-1.11437],[[78,2],[108,2],[109,2]]], [95,[9329.91,5238.39,0.0908816],[[79,2],[110,2],[96,2],[111,2],[95,2]]], +[96,[9343.33,5162.94,0],[[79,2],[95,2]]], [97,[8917.28,4343.21,-0.0130882],[[80,2],[112,2],[113,2]]], [98,[9174.52,3803.48,0.130966],[[82,2],[114,2],[115,2]]], [99,[9306.98,3862.9,-0.00603199],[[82,2]]], [100,[8275.78,8242.55,0.418732],[[86,2]]], [101,[8297.19,8283.19,0],[[86,2]]], +[102,[8932.55,7846.85,0.185528],[[87,2],[116,2]]], [103,[8746.06,8135.21,0.0196743],[[88,2],[89,2],[103,2]]], [104,[8858.39,8190.67,-0.689999],[[88,2],[117,2]]], [105,[8622.8,8230.2,-0.218777],[[88,2],[118,2]]], [106,[6807.2,6647.45,0],[[90,2],[106,2],[119,2],[120,2],[121,2]]], [107,[6889.34,6576.03,0],[[90,2],[122,2],[123,2]]], +[108,[9305.75,5099.84,0],[[94,2]]], [109,[9241.48,5090.14,-3.19902],[[94,2]]], [110,[9313.89,5363.77,-0.717201],[[95,2]]], [111,[9327.95,5275.84,0.00533533],[[95,2]]], [112,[8861.06,4376,0.96104],[[97,2],[113,2],[112,2],[124,2]]], [113,[8880.44,4372.35,0.100504],[[112,2],[141,2],[97,2],[113,2]]], +[114,[9301.77,3771.15,0.10605],[[98,2],[125,2]]], [115,[9107.36,3786.8,-0.447247],[[98,2],[126,2],[127,2],[128,2]]], [116,[9030.27,7846.31,-0.221233],[[102,2],[129,2]]], [117,[8964.22,8225.04,0.653206],[[104,2],[130,2]]], [118,[8523.45,8299.95,0.049902],[[105,2],[131,2],[132,2]]], [119,[6745.03,6622.48,0],[[106,2],[133,2],[134,2],[135,2]]], +[120,[6749.94,6679.58,0],[[106,2],[136,2],[133,2],[137,2],[120,2]]], [121,[6857,6714.3,0],[[106,2],[138,2],[139,2]]], [122,[6927.11,6543.94,-0.169575],[[107,2],[140,2],[134,2]]], [123,[6782.64,6572,0],[[107,2]]], [124,[8798.2,4409.1,2.40779],[[112,2]]], [125,[9372.84,3755.71,-1.5581],[[114,2]]], +[126,[9105.63,3823.51,0.187882],[[115,2]]], [127,[9112.28,3708.4,-0.0952263],[[115,2],[142,2]]], [128,[9023.95,3801.29,-0.260034],[[115,2],[143,2]]], [129,[9091.4,7840.41,1.11857],[[116,2],[144,2],[129,2]]], [130,[9042.76,8264.95,0.402311],[[117,2],[145,2],[146,2],[147,2]]], [131,[8480.39,8353.11,-0.35465],[[118,2],[132,2],[131,2],[148,2]]], +[132,[8486.02,8330.86,-0.00379753],[[131,2],[161,2],[118,2],[132,2]]], [133,[6670.69,6646.43,0],[[119,2],[120,2],[149,2],[136,2]]], [134,[6761.23,6538.85,0],[[119,2],[122,2],[150,2],[151,2],[152,2]]], [135,[6698.14,6602.04,0],[[119,2]]], [136,[6685.47,6676.02,0],[[120,2],[133,2]]], [137,[6772.84,6675.73,0],[[120,2]]], +[138,[6886,6839.09,0],[[121,2],[153,2]]], [139,[6688.47,6715.16,-0.572982],[[121,2],[154,2],[155,2]]], [140,[7015.3,6473.67,-0.0184285],[[122,2],[156,2],[140,2],[157,2]]], [141,[8895.33,4361.44,0.0156428],[[113,2]]], [142,[9160.19,3693.49,-1.03857],[[127,2]]], [143,[8950.99,3859.39,-1.3333],[[143,2]]], +[144,[9100.8,7833.34,-0.0115089],[[129,2]]], [145,[9146.94,8207.03,0.0714276],[[130,2],[147,2],[145,2],[158,2],[159,2]]], [146,[9092.05,8434.04,-0.0463886],[[130,2],[160,2]]], [147,[9110.31,8186.34,-0.0165472],[[145,2],[180,2],[147,2],[130,2]]], [148,[8415.56,8492.92,0.329403],[[131,2],[162,2]]], [149,[6555.37,6615.36,-0.0380261],[[133,2],[149,2],[163,2],[164,2],[151,2],[165,2]]], +[150,[6740.89,6402.55,0],[[134,2],[166,2],[152,2],[167,2]]], [151,[6594.05,6540.62,0],[[134,2],[149,2],[164,2]]], [152,[6786.45,6409.29,0],[[134,2],[150,2],[168,2],[166,2],[169,2]]], [153,[6757.55,6883.98,0],[[138,2],[170,2],[171,2],[172,2]]], [154,[6535.81,6696.22,-0.233672],[[139,2],[173,2],[154,2],[174,2]]], [155,[6588.47,6715.16,-1.24211],[[173,2],[139,2]]], +[156,[7043.45,6512.36,-0.0273056],[[140,2],[175,2],[156,2]]], [157,[7025.27,6320.06,0],[[140,2],[176,2],[157,2],[177,2]]], [158,[9247.13,8287.36,-0.0500469],[[145,2]]], [159,[9254.48,8114.76,0.004071],[[145,2],[159,2],[181,2]]], [160,[9109.1,8508.87,0.684178],[[146,2],[182,2],[183,2]]], [161,[8494.76,8319.73,-0.00401497],[[132,2]]], +[162,[8428.77,8630.42,0.124344],[[148,2],[184,2]]], [163,[6460.34,6643.2,0],[[149,2],[185,2],[174,2],[186,2]]], [164,[6568.66,6543.06,-0.0531061],[[149,2],[151,2],[187,2],[167,2],[188,2]]], [165,[6525.45,6591.68,0],[[149,2]]], [166,[6745.81,6332.97,0],[[150,2],[152,2],[189,2],[190,2],[168,2]]], [167,[6640.15,6401.37,-0.0163606],[[150,2],[164,2],[187,2],[191,2],[167,2]]], +[168,[6787.86,6346.86,0],[[152,2],[166,2],[189,2],[192,2]]], [169,[6866.34,6415.12,0],[[152,2],[193,2],[194,2],[195,2]]], [170,[6958.4,6883.8,0],[[153,2],[170,2],[196,2],[197,2]]], [171,[6837.98,6916.97,0],[[153,2],[171,2],[198,2],[199,2]]], [172,[6306.3,6931.08,0.000742435],[[153,2],[200,2],[172,2],[201,2]]], [173,[6559.38,6712.85,-0.121298],[[154,2],[155,2],[173,2]]], +[174,[6461.8,6768.98,-0.382496],[[154,2],[163,2],[202,2],[203,2],[204,2]]], [175,[7088.94,6575.79,-0.140014],[[156,2],[205,2]]], [176,[7019.32,6199.5,0],[[157,2],[206,2],[176,2],[207,2],[208,2]]], [177,[6914.28,6312.36,0],[[157,2],[209,2],[210,2],[211,2],[177,2]]], [178,[8798.52,3806.41,-0.770701],[[143,2],[179,2]]], [179,[8753.64,3757.93,0.135246],[[178,2]]], +[180,[9089.79,8205.92,0.218435],[[147,2]]], [181,[9237.73,8112.49,0.0924514],[[159,2]]], [182,[9090.55,8626.48,0.175834],[[160,2],[212,2]]], [183,[8993.53,8596.07,-0.0274515],[[160,2],[213,2]]], [184,[8424.83,8739.53,-0.0593996],[[162,2],[214,2]]], [185,[6460.58,6686.98,0.271548],[[163,2],[215,2]]], +[186,[6296.81,6643.55,0],[[163,2],[216,2]]], [187,[6572.17,6395.53,0.00696182],[[164,2],[167,2],[217,2]]], [188,[6514.19,6534.09,0.284738],[[164,2],[218,2],[188,2],[219,2]]], [189,[6749.05,6203.63,0.158036],[[166,2],[168,2],[192,2],[189,2],[220,2],[221,2],[206,2],[209,2],[222,2],[223,2]]], [190,[6690.67,6321.42,1.07997],[[166,2],[224,2],[225,2]]], [191,[6675.86,6405.27,0],[[167,2]]], +[192,[6760.42,6263.02,0],[[189,2],[168,2]]], [193,[6904.77,6412.85,0],[[169,2],[226,2],[194,2],[227,2],[193,2]]], [194,[6881.88,6373.1,0],[[169,2],[193,2],[228,2],[194,2]]], [195,[6862.08,6458.77,0],[[169,2],[229,2],[227,2],[195,2]]], [196,[7044.32,6949.68,-0.000597636],[[170,2],[230,2],[197,2],[196,2],[231,2]]], [197,[7044.52,6917.76,-0.00209808],[[196,2],[259,2],[197,2],[170,2]]], +[198,[6690.83,6931.49,0],[[232,2],[199,2],[198,2],[171,2],[279,2]]], [199,[6745.2,6936.8,0],[[198,2],[296,2],[171,2]]], [200,[6470.2,6936.8,0],[[172,2],[232,2],[233,2],[200,2]]], [201,[6115.05,6937.45,0],[[172,2],[234,2],[235,2]]], [202,[6511.29,6839.96,-3.17891e-006],[[174,2],[236,2],[202,2],[237,2]]], [203,[6451.94,6725.68,-0.293857],[[174,2],[203,2],[238,2],[204,2],[215,2]]], +[204,[6407,6766.19,0.483179],[[174,2],[203,2],[239,2],[238,2]]], [205,[7142.72,6587.68,0.0471455],[[175,2],[240,2],[205,2],[241,2]]], [206,[6983.58,6243.08,0],[[176,2],[189,2],[221,2]]], [207,[7021.34,6116.73,0],[[176,2],[242,2],[243,2],[208,2]]], [208,[6965.68,6169.04,0],[[176,2],[207,2],[244,2],[223,2],[221,2],[243,2]]], [209,[6892.97,6269.07,0],[[177,2],[189,2],[221,2],[245,2]]], +[210,[6860.89,6302.71,0],[[177,2]]], [211,[6934.06,6322.45,0],[[177,2]]], [212,[9074.69,8663.88,0.0261879],[[182,2]]], [213,[8908.31,8597.48,-0.034429],[[183,2]]], [214,[8332.11,8790.66,0.154059],[[184,2],[246,2],[247,2]]], [215,[6386.23,6676.42,0.11497],[[185,2],[203,2],[215,2],[238,2],[216,2]]], +[216,[6276.1,6666.06,-0.000232061],[[186,2],[215,2],[248,2]]], [217,[6572.93,6208.56,0],[[187,2],[249,2],[250,2],[220,2]]], [218,[6525.75,6537.33,0.427106],[[188,2]]], [219,[6491.06,6527.62,0],[[188,2]]], [220,[6696.04,6201.93,-0.764316],[[189,2],[217,2],[251,2]]], [221,[6887.53,6217.65,0],[[189,2],[206,2],[208,2],[209,2],[252,2],[244,2],[253,2]]], +[222,[6751.94,6119.21,0],[[189,2],[254,2],[255,2],[223,2]]], [223,[6797.05,6157.63,0],[[189,2],[208,2],[222,2],[244,2],[255,2]]], [224,[6635.55,6328.09,0],[[190,2]]], [225,[6691.55,6267.46,-0.125549],[[190,2]]], [226,[6910.81,6380.1,0],[[193,2]]], [227,[6944.9,6437.05,0],[[193,2],[195,2],[256,2],[229,2]]], +[228,[6937.37,6369.15,-0.0461219],[[194,2],[256,2],[257,2]]], [229,[6907.71,6474.65,0],[[195,2],[227,2]]], [230,[7028.13,7078.83,2.25703e-005],[[196,2],[258,2],[231,2],[230,2]]], [231,[7046.89,7067.59,-0.0014677],[[230,2],[278,2],[231,2],[196,2]]], [232,[6568.73,6937.78,0],[[200,2],[260,2],[232,2],[198,2]]], [233,[6457.7,6936.8,0],[[200,2]]], +[234,[5954.75,6938.75,0],[[201,2]]], [235,[5970.2,6936.8,0],[[201,2]]], [236,[6489.45,6837.95,-4.76837e-006],[[202,2]]], [237,[6576.84,6843.97,0],[[202,2]]], [238,[6399.43,6711.06,-0.202398],[[203,2],[204,2],[215,2]]], [239,[6398.97,6852.67,9.53674e-007],[[204,2]]], +[240,[7122.37,6579.28,-0.0695291],[[205,2]]], [241,[7204.3,6651.35,0.0268302],[[205,2]]], [242,[7015.61,6066.77,0.00758743],[[207,2],[261,2],[262,2]]], [243,[6970.84,6123.86,0],[[207,2],[208,2],[263,2],[262,2],[244,2],[255,2]]], [244,[6885.51,6178.29,0],[[208,2],[221,2],[223,2],[243,2],[263,2]]], [245,[6856.94,6266.15,0],[[209,2]]], +[246,[8302.89,8733.57,0.0138655],[[214,2]]], [247,[8340.67,8879.02,0.428572],[[214,2],[264,2],[265,2]]], [248,[6258.81,6710.46,0.000279427],[[216,2],[266,2],[267,2]]], [249,[6452.05,6207.05,-0.475985],[[217,2],[268,2],[269,2],[270,2]]], [250,[6572.17,6003.86,0],[[217,2],[271,2],[250,2],[272,2]]], [251,[6678.89,6170.31,-0.00191593],[[220,2]]], +[252,[6897.19,6193.54,0],[[221,2],[252,2]]], [253,[6819.88,6238.74,0],[[221,2]]], [254,[6749.27,6072.76,0],[[222,2],[273,2],[274,2],[275,2],[262,2],[255,2]]], [255,[6819.79,6117.4,0],[[222,2],[223,2],[243,2],[254,2],[275,2],[263,2]]], [256,[6978.86,6370.68,0],[[228,2],[276,2],[256,2]]], [257,[6936.6,6356.53,-0.0691829],[[228,2]]], +[258,[6863.48,7099.79,0.0319633],[[230,2],[277,2]]], [259,[7023.46,6905.72,-0.000713348],[[197,2]]], [260,[6532.7,6936.8,0],[[232,2]]], [261,[7030.16,6013.04,0.00415389],[[242,2],[280,2],[281,2]]], [262,[6905.18,6073.51,0],[[242,2],[243,2],[254,2],[282,2],[263,2]]], [263,[6892.18,6117.65,0],[[243,2],[244,2],[255,2],[262,2]]], +[264,[8417.98,8954.49,0.224225],[[247,2]]], [265,[8289.44,8918.01,-0.0121021],[[247,2]]], [266,[6256.22,6810.96,0.00027504],[[248,2],[266,2],[283,2],[284,2],[285,2]]], [267,[6150.7,6707.96,0],[[248,2],[286,2],[267,2]]], [268,[6318.56,6172.84,-0.354585],[[249,2],[287,2],[268,2],[288,2]]], [269,[6432.67,6145.87,0.0146627],[[249,2],[289,2]]], +[270,[6352.02,6209.2,0.903969],[[287,2],[249,2]]], [271,[6572.17,6033.03,0],[[250,2]]], [272,[6568.09,5926.45,0],[[250,2],[290,2],[272,2],[291,2],[274,2],[292,2]]], [273,[6726.16,6083.15,0],[[254,2]]], [274,[6743.73,5934.92,0],[[254,2],[272,2],[293,2],[294,2]]], [275,[6812.79,6073.4,0],[[254,2],[255,2]]], +[276,[6917.66,6347.84,0],[[256,2]]], [277,[6713.48,7099.79,-0.0132055],[[258,2],[295,2]]], [278,[7048.87,7047.48,-0.0140311],[[231,2]]], [279,[6750.48,6916.97,0],[[198,2]]], [280,[7008.98,5938.27,0],[[261,2],[293,2]]], [281,[6984.43,6004.17,0.000231107],[[261,2],[297,2],[281,2]]], +[282,[6836.1,6046.71,0],[[262,2],[282,2]]], [283,[6185.56,6796.13,0],[[266,2]]], [284,[6103.31,6836.7,0],[[266,2],[298,2]]], [285,[6308.95,6846.76,0],[[266,2]]], [286,[6055.51,6633.01,-0.48633],[[267,2],[299,2],[286,2],[300,2],[301,2],[302,2],[303,2],[304,2]]], [287,[6322.2,6202.23,-0.273245],[[268,2],[270,2],[287,2]]], +[288,[6283.42,6010.04,-0.273248],[[268,2],[305,2]]], [289,[6430.75,6020.17,0],[[269,2],[306,2]]], [290,[6572.03,5745.13,-0.00234461],[[272,2],[307,2],[308,2],[309,2]]], [291,[6666.49,5923.49,0],[[272,2],[291,2],[310,2]]], [292,[6495.15,5923.39,0],[[272,2],[311,2],[306,2],[292,2]]], [293,[6904.58,5916.51,-0.0931791],[[274,2],[280,2],[312,2]]], +[294,[6682.13,5989.84,0],[[274,2],[294,2]]], [295,[6563.48,7099.79,0.0444107],[[277,2],[313,2]]], [296,[6854.75,6938.75,0],[[199,2],[314,2]]], [297,[6953.44,6003.58,0],[[281,2]]], [298,[5985.88,6832.5,0],[[284,2],[315,2],[316,2],[317,2]]], [299,[6122.45,6674.96,0],[[286,2]]], +[300,[6023.59,6753.89,0],[[286,2],[318,2],[316,2]]], [301,[5947.17,6611.78,0.108827],[[286,2],[319,2],[303,2],[302,2],[320,2]]], [302,[5951.42,6673.04,-0.416051],[[286,2],[301,2]]], [303,[5991.57,6531.66,0.365424],[[286,2],[301,2],[321,2],[322,2],[303,2],[319,2],[323,2]]], [304,[6087.53,6462.59,0.0607986],[[286,2],[324,2]]], [305,[6271.27,5937.79,-0.0640453],[[288,2],[325,2],[306,2],[326,2]]], +[306,[6408.85,5938.76,0],[[289,2],[292,2],[305,2],[327,2],[311,2]]], [307,[6718.05,5783.26,0],[[290,2],[307,2]]], [308,[6404.26,5718,-0.0800352],[[290,2],[328,2],[329,2],[330,2],[331,2],[311,2]]], [309,[6565.18,5619.78,0],[[290,2],[332,2],[333,2],[329,2]]], [310,[6665.55,5869.11,0],[[291,2]]], [311,[6452.31,5893.03,-0.00274563],[[292,2],[306,2],[308,2],[334,2],[335,2],[327,2]]], +[312,[7034.23,5858.88,-2.8602],[[293,2],[336,2]]], [313,[6434.56,7135.75,-0.792678],[[295,2],[337,2]]], [314,[6920.2,6936.8,0],[[296,2]]], [315,[5861.02,6799.2,0],[[298,2],[317,2],[315,2],[316,2]]], [316,[5973.36,6767.92,0],[[298,2],[300,2],[315,2],[318,2]]], [317,[5848.38,6829.6,0],[[315,2],[354,2],[317,2],[298,2]]], +[318,[6010.32,6757.8,0],[[300,2],[316,2]]], [319,[5954.66,6543.25,0.204295],[[301,2],[303,2]]], [320,[5904.61,6591.21,0.00917943],[[301,2],[338,2],[339,2],[320,2]]], [321,[5997,6574.84,3.6045],[[303,2]]], [322,[5982.41,6461.19,-1.0486],[[303,2],[322,2]]], [323,[5982.28,6575.54,3.6217],[[303,2]]], +[324,[6194.75,6368.94,-0.761948],[[304,2],[340,2]]], [325,[6320.08,5929.37,0],[[305,2],[341,2],[335,2],[330,2]]], [326,[6149.8,5932.93,0.133095],[[305,2],[342,2],[343,2]]], [327,[6381.05,5920.76,1.27157e-006],[[306,2],[311,2],[335,2]]], [328,[6284.88,5697.22,0.53309],[[308,2],[344,2]]], [329,[6397.88,5660.54,0.357459],[[308,2],[309,2],[333,2],[345,2]]], +[330,[6344.51,5778.43,-0.171347],[[308,2],[325,2],[346,2],[330,2],[347,2],[341,2]]], [331,[6449.84,5775.75,-0.0122585],[[308,2],[348,2],[331,2]]], [332,[6593.92,5505.49,-0.000597],[[309,2],[349,2]]], [333,[6401.2,5618.3,0],[[309,2],[329,2],[350,2]]], [334,[6450.02,5793.85,0.0955296],[[311,2]]], [335,[6374.03,5877.39,0],[[311,2],[325,2],[327,2],[347,2]]], +[336,[7084.45,5828.87,0.0560004],[[312,2],[351,2],[352,2]]], [337,[6309.67,7171,-0.206758],[[313,2],[353,2]]], [338,[5881.39,6506.51,-0.277298],[[320,2],[355,2],[356,2],[338,2]]], [339,[5908.79,6607.8,0.0893779],[[320,2]]], [340,[6273.78,6293.63,-0.061676],[[324,2],[357,2]]], [341,[6330.42,5867.84,0.0180244],[[325,2],[330,2],[358,2]]], +[342,[6118.63,5872.96,0.114967],[[326,2],[359,2]]], [343,[6099.73,6038.49,-0.59608],[[326,2],[360,2]]], [344,[6229.3,5610.84,-0.416534],[[328,2],[361,2]]], [345,[6437.56,5654.36,-0.22682],[[329,2]]], [346,[6347.55,5755.67,-0.11894],[[330,2]]], [347,[6333.94,5868.17,0.06014],[[330,2],[335,2]]], +[348,[6438.45,5768.9,-0.215541],[[331,2]]], [349,[6704.3,5412.19,-0.0191936],[[332,2],[362,2]]], [350,[6345.23,5610.45,0.0154546],[[333,2],[363,2],[361,2]]], [351,[7166.97,5832.91,-0.00976884],[[336,2],[364,2],[351,2],[365,2]]], [352,[7089.27,5732.45,0.266873],[[336,2],[366,2]]], [353,[6246.27,7163.28,0.380894],[[337,2],[367,2],[368,2]]], +[354,[5883.96,6836.43,0],[[317,2]]], [355,[5822.33,6549.9,-0.0119934],[[338,2],[369,2]]], [356,[5894.57,6513.9,-0.515119],[[338,2]]], [357,[6268.05,6244.05,-0.369919],[[340,2],[370,2]]], [358,[6195.19,5860.4,0.00120449],[[341,2]]], [359,[6133.13,5822.84,-0.802059],[[342,2],[371,2],[372,2]]], +[360,[6084.08,6080.17,-1.34238],[[343,2]]], [361,[6224.61,5591.84,-0.411048],[[344,2],[350,2],[373,2]]], [362,[6784.34,5320.72,0.00508499],[[349,2],[374,2]]], [363,[6346.11,5448.3,-0.0926905],[[350,2],[375,2]]], [364,[7153.03,5806.39,-0.0360929],[[351,2]]], [365,[7130.78,5883.16,0],[[351,2]]], +[366,[7093.11,5718.86,0.314295],[[352,2],[366,2],[376,2]]], [367,[6106.69,7113.21,-0.455359],[[353,2],[377,2]]], [368,[6169.08,7227.99,0.561992],[[353,2],[378,2]]], [369,[5777.7,6572.24,-0.0493021],[[355,2],[379,2]]], [370,[6166.27,6217.13,0.99147],[[357,2],[380,2],[370,2],[381,2],[382,2]]], [371,[6081.87,5711.63,0.402514],[[359,2],[383,2],[371,2]]], +[372,[6134.36,5753.87,-0.024437],[[383,2],[359,2]]], [373,[6123,5498,0.95371],[[361,2],[384,2]]], [374,[6787.89,5182.91,0.0196486],[[362,2],[385,2]]], [375,[6313.95,5328.33,2.95063],[[363,2],[386,2]]], [376,[7088.46,5674.25,-0.150369],[[366,2],[387,2],[388,2]]], [377,[5979.39,7087.73,-0.607995],[[367,2],[389,2],[390,2]]], +[378,[6119.39,7237.8,0.285267],[[368,2]]], [379,[5736.05,6544.77,0.268856],[[369,2],[391,2]]], [380,[6186.44,6207.35,0.871534],[[370,2]]], [381,[6024.09,6302.14,0.0403185],[[370,2],[382,2],[381,2],[392,2]]], [382,[6042.81,6289.63,0.226356],[[381,2],[401,2],[382,2],[370,2]]], [383,[6130.34,5732.91,0.0459518],[[371,2],[372,2],[383,2]]], +[384,[6071.94,5368.88,0],[[373,2],[393,2]]], [385,[6781.53,5129.61,-0.0472507],[[374,2],[394,2],[395,2]]], [386,[6281.81,5208.35,0.141747],[[375,2],[396,2]]], [387,[7059.27,5686.61,0],[[376,2]]], [388,[7052.32,5546.33,0],[[376,2],[397,2],[388,2]]], [389,[5874.57,7046.02,-0.107593],[[377,2],[398,2],[390,2],[389,2],[399,2]]], +[390,[5874.41,7080.52,-0.115033],[[389,2],[412,2],[390,2],[377,2]]], [391,[5745.61,6470.69,-0.55724],[[379,2],[400,2]]], [392,[5938.36,6291.06,-0.0229359],[[381,2],[402,2]]], [393,[5978.05,5326.49,0],[[384,2],[403,2]]], [394,[6787.89,4957.91,-0.317044],[[385,2],[404,2]]], [395,[6693.54,5126.75,-0.594459],[[385,2],[405,2],[406,2]]], +[396,[6304.13,5156.29,-0.114629],[[386,2],[407,2],[408,2],[409,2],[410,2]]], [397,[7018.66,5500.98,0],[[388,2]]], [398,[5908.6,6920.41,-0.000320435],[[389,2],[411,2],[399,2],[398,2]]], [399,[5871.33,6923.6,0.0103331],[[398,2],[418,2],[399,2],[389,2]]], [400,[5800.5,6377.2,0.0673227],[[391,2],[402,2]]], [401,[6066.23,6273,0.706366],[[382,2]]], +[402,[5814.13,6318.42,0.11374],[[392,2],[400,2]]], [403,[5828.05,5326.49,0.615426],[[393,2],[413,2]]], [404,[6787.89,4807.91,0.462575],[[394,2],[414,2]]], [405,[6518.81,5123,-1.88536],[[395,2],[408,2]]], [406,[6693,5149.88,0.0131054],[[395,2]]], [407,[6252.64,5071.78,-0.347023],[[396,2],[415,2]]], +[408,[6428.46,5168.52,-2.47449],[[396,2],[405,2],[410,2],[408,2]]], [409,[6342.08,5064.44,0.622426],[[396,2],[416,2],[409,2],[417,2]]], [410,[6407.41,5187.79,0.0127411],[[408,2],[424,2],[410,2],[396,2]]], [411,[6045.02,6912.73,0],[[398,2]]], [412,[5909.98,7087.4,-0.207975],[[390,2]]], [413,[5678.05,5326.49,-1.07055],[[403,2],[419,2]]], +[414,[6803.48,4739.86,0],[[404,2],[420,2],[421,2],[422,2]]], [415,[6137.02,5044.29,-0.994476],[[407,2],[423,2]]], [416,[6332.66,5079.61,0.814053],[[409,2]]], [417,[6385.57,5022.16,0.00129827],[[409,2],[417,2],[425,2]]], [418,[5867.21,6947.49,-0.017601],[[399,2]]], [419,[5531.34,5327.2,0.00991535],[[413,2],[426,2]]], +[420,[6747.76,4741.95,0.0467536],[[414,2],[427,2],[420,2],[428,2],[429,2]]], [421,[6897.51,4733.8,0.140794],[[414,2],[430,2],[431,2]]], [422,[6815.75,4712.31,0.26435],[[414,2],[432,2],[433,2]]], [423,[6031.37,5021.01,0.141985],[[415,2],[434,2]]], [424,[6383.38,5183.67,-0.240184],[[410,2]]], [425,[6395.98,5019.61,0],[[417,2]]], +[426,[5421.17,5356.21,-0.00447369],[[419,2],[435,2],[436,2]]], [427,[6658.91,4705.32,0.650623],[[420,2],[437,2],[438,2]]], [428,[6711.43,4870.84,0.967752],[[420,2],[439,2],[428,2],[440,2]]], [429,[6749.86,4836.96,0.0179148],[[439,2],[420,2]]], [430,[6986.28,4736.01,0],[[421,2]]], [431,[6908.2,4660.77,-0.191962],[[421,2],[441,2],[442,2]]], +[432,[6809.7,4695.14,0.851339],[[422,2]]], [433,[6855.97,4712.27,0],[[422,2]]], [434,[6009.79,4956.17,17.6484],[[423,2],[443,2]]], [435,[5266.97,5420,0],[[426,2],[444,2]]], [436,[5366.41,5201.93,0],[[426,2],[445,2]]], [437,[6640.5,4569.98,-0.612543],[[427,2],[438,2],[437,2],[446,2]]], +[438,[6640.3,4610.21,-0.0313463],[[437,2],[456,2],[438,2],[427,2]]], [439,[6745.47,4863.52,-0.0666685],[[428,2],[429,2],[439,2]]], [440,[6627.15,4892.26,-0.214444],[[428,2],[440,2],[447,2]]], [441,[6966.64,4661.02,-0.0010891],[[431,2]]], [442,[6941.93,4599.32,0.0490481],[[431,2],[448,2],[442,2],[449,2]]], [443,[6009.52,4817.4,0.693635],[[434,2],[450,2]]], +[444,[5178.68,5477.68,-0.0386131],[[435,2],[451,2],[452,2],[444,2],[453,2]]], [445,[5363.05,5099.77,1.13561],[[436,2],[454,2],[455,2]]], [446,[6704.73,4422,-0.589962],[[437,2],[457,2]]], [447,[6567.94,4875.28,-0.105836],[[440,2],[458,2],[447,2],[459,2]]], [448,[6919.92,4605.98,-0.610028],[[442,2]]], [449,[7075.95,4589.82,0.662651],[[442,2]]], +[450,[6012.47,4782.02,0.776463],[[443,2],[460,2],[461,2],[462,2],[463,2]]], [451,[5021.91,5562.95,0.971227],[[444,2],[464,2]]], [452,[5188.92,5476.64,-0.0982386],[[444,2]]], [453,[5185.55,5519.83,0.489047],[[444,2]]], [454,[5312.97,5009.37,-0.0102587],[[445,2],[454,2],[465,2],[466,2],[467,2],[468,2],[469,2]]], [455,[5412.03,5069.51,0],[[445,2]]], +[456,[6641.28,4654.95,0.217412],[[438,2]]], [457,[6754.02,4392.91,-0.32636],[[446,2],[457,2],[470,2],[471,2]]], [458,[6583.24,4886.41,-0.0794868],[[447,2]]], [459,[6418.59,4853.04,0.39655],[[447,2]]], [460,[5961.7,4800.86,0],[[450,2]]], [461,[5864.95,4753.16,-0.0950515],[[450,2],[472,2],[473,2],[462,2],[474,2],[475,2],[476,2],[461,2]]], +[462,[6006.75,4673.99,0.0329676],[[450,2],[461,2],[477,2],[478,2],[479,2]]], [463,[6076.88,4760.13,-0.482807],[[450,2],[463,2],[480,2]]], [464,[4943.44,5585.47,-0.652232],[[451,2],[481,2]]], [465,[5425.61,5012.58,-0.923677],[[454,2],[469,2],[465,2]]], [466,[5295.39,4962.02,-0.365765],[[454,2],[482,2]]], [467,[5198.27,5020.54,-0.110668],[[454,2]]], +[468,[5303.5,4952.79,0.00632095],[[454,2]]], [469,[5408.98,4989.34,0.244184],[[465,2],[498,2],[469,2],[454,2]]], [470,[6814.5,4439.4,-0.524762],[[457,2],[483,2],[484,2]]], [471,[6827.69,4299.15,0.841663],[[457,2],[485,2]]], [472,[5916.53,4727.2,0.00106049],[[461,2]]], [473,[5898.13,4673.65,-0.435972],[[461,2],[486,2],[487,2],[476,2]]], +[474,[5755.5,4807.61,0.88796],[[461,2],[488,2],[489,2],[487,2],[490,2],[491,2]]], [475,[5832.44,4833.44,-0.00627708],[[461,2]]], [476,[5832,4673.84,0],[[461,2],[473,2],[486,2]]], [477,[6001.62,4624.15,0.0975822],[[462,2],[492,2],[479,2],[493,2]]], [478,[6071.5,4626.73,0.00152636],[[462,2],[494,2],[478,2],[495,2]]], [479,[5958.91,4639.74,0.0436771],[[462,2],[477,2],[479,2],[496,2]]], +[480,[6075.37,4767.98,-0.325954],[[463,2]]], [481,[4827.59,5589.81,0.00640011],[[464,2],[497,2]]], [482,[5254.28,4821.62,0.642424],[[466,2],[499,2]]], [483,[6855.64,4452,-0.219913],[[470,2]]], [484,[6911.67,4390.9,0.00523376],[[470,2],[484,2]]], [485,[6786.78,4210.85,0.0262127],[[471,2],[500,2]]], +[486,[5873.21,4616.42,-1.33456],[[473,2],[476,2],[501,2],[496,2],[502,2],[503,2],[487,2]]], [487,[5818.7,4673.69,0.175577],[[473,2],[474,2],[489,2],[486,2]]], [488,[5643.14,4785.39,-0.246709],[[474,2]]], [489,[5751.31,4698.98,0.227642],[[474,2],[487,2],[489,2],[504,2],[505,2],[502,2],[506,2],[507,2]]], [490,[5698.91,4861.17,0.318453],[[474,2]]], [491,[5752.45,4875.35,-0.049119],[[474,2]]], +[492,[5983.85,4481.63,-0.149457],[[477,2],[493,2],[492,2],[508,2]]], [493,[6004.19,4496.61,0.514374],[[492,2],[518,2],[493,2],[477,2]]], [494,[6057.91,4654.98,-0.426047],[[478,2]]], [495,[6122.03,4561.27,0.500136],[[478,2]]], [496,[5945.71,4569.33,0],[[479,2],[486,2],[501,2]]], [497,[4716.53,5579.82,-0.0382957],[[481,2],[509,2]]], +[498,[5383.48,4995.74,-0.0755711],[[469,2]]], [499,[5154.91,4794.46,1.53607],[[482,2],[510,2]]], [500,[6610.08,4235.26,0],[[485,2],[511,2],[512,2]]], [501,[5890.86,4555.26,0.73244],[[486,2],[496,2],[508,2]]], [502,[5806.91,4632.67,0],[[486,2],[489,2],[505,2]]], [503,[5855.12,4560.21,-0.0275809],[[486,2],[513,2],[514,2],[505,2]]], +[504,[5697.28,4720.94,-0.00365067],[[489,2],[507,2]]], [505,[5756.38,4540.4,-0.199366],[[489,2],[502,2],[503,2],[515,2],[506,2],[514,2],[513,2],[516,2],[517,2]]], [506,[5693.59,4651.36,0.636776],[[489,2],[505,2],[515,2],[507,2]]], [507,[5695.4,4697.79,-0.251438],[[489,2],[504,2],[506,2]]], [508,[5895.11,4412.88,0.00414109],[[492,2],[501,2],[519,2],[517,2],[508,2]]], [509,[4681.59,5553.78,-0.079813],[[497,2],[520,2],[521,2]]], +[510,[5063.95,4799.94,-0.246875],[[499,2],[522,2]]], [511,[6480.28,4261.29,-0.485789],[[500,2],[523,2],[524,2]]], [512,[6603.16,4203.12,0],[[500,2]]], [513,[5857.8,4508.65,0.357556],[[503,2],[505,2],[525,2]]], [514,[5816.98,4554.47,0.357765],[[503,2],[505,2]]], [515,[5690.37,4563.4,0.298528],[[505,2],[506,2],[526,2],[515,2],[527,2]]], +[516,[5706.88,4464.38,0.065073],[[505,2],[528,2]]], [517,[5805.49,4380.43,-0.800967],[[505,2],[508,2],[529,2],[519,2],[517,2],[530,2]]], [518,[6008.63,4528.98,0.176211],[[493,2]]], [519,[5849.94,4348.02,-0.0893641],[[508,2],[517,2],[531,2],[532,2]]], [520,[4600.28,5478.09,-0.055212],[[509,2],[533,2],[534,2],[535,2]]], [521,[4586.57,5615.64,-0.491872],[[509,2],[536,2],[537,2]]], +[522,[5003.84,4734.2,0.357131],[[510,2],[538,2]]], [523,[6465.22,4202.42,-0.156877],[[511,2]]], [524,[6476.06,4332.81,-0.159502],[[511,2],[539,2],[540,2]]], [525,[5861.69,4434.95,0.0075016],[[513,2]]], [526,[5633.81,4588.05,0.0819862],[[515,2],[541,2],[542,2],[526,2]]], [527,[5705.36,4459.61,0.168203],[[515,2],[543,2],[527,2]]], +[528,[5648.04,4479.11,1.57048],[[516,2],[544,2],[528,2],[545,2]]], [529,[5842.75,4354.04,-0.0889273],[[517,2],[529,2]]], [530,[5790.75,4335.99,-0.676537],[[517,2],[546,2],[530,2],[547,2]]], [531,[5852.45,4173.79,0.152229],[[519,2],[548,2],[547,2]]], [532,[5845.78,4211.39,-0.210364],[[547,2],[519,2]]], [533,[4511.91,5471.01,-0.107439],[[520,2],[535,2],[533,2],[549,2]]], +[534,[4594.17,5498.49,0.0463991],[[520,2]]], [535,[4534.38,5457.25,0.000679016],[[533,2],[563,2],[520,2],[535,2]]], [536,[4490.76,5641.74,0.0298102],[[521,2],[550,2],[551,2],[536,2],[552,2],[549,2]]], [537,[4573.94,5607.06,-0.493554],[[521,2]]], [538,[4899.08,4725.77,0.355756],[[522,2],[553,2],[554,2],[538,2]]], [539,[6481.54,4314.07,0.079634],[[524,2]]], +[540,[6427.67,4445.66,-0.537451],[[524,2],[540,2]]], [541,[5581.11,4574.36,-0.383224],[[526,2],[555,2],[544,2],[556,2],[541,2]]], [542,[5629.02,4644.45,-0.0109901],[[526,2]]], [543,[5707.95,4450.9,-0.170086],[[527,2]]], [544,[5577.68,4516.13,-0.300707],[[528,2],[541,2],[544,2],[555,2]]], [545,[5610.17,4417.19,0.940215],[[528,2],[557,2],[558,2]]], +[546,[5792.6,4356.46,-0.377985],[[530,2]]], [547,[5799.79,4222.88,-0.525749],[[530,2],[559,2],[547,2],[532,2],[531,2],[560,2]]], [548,[5874.51,4062.03,-0.148086],[[531,2],[561,2],[548,2],[562,2]]], [549,[4433.69,5522.83,0.0289548],[[533,2],[536,2],[564,2],[552,2]]], [550,[4536.55,5689.03,-0.0360174],[[536,2]]], [551,[4434.46,5672.41,-0.195479],[[536,2],[565,2],[566,2],[567,2],[568,2]]], +[552,[4458.09,5575.76,0.062768],[[536,2],[549,2],[569,2],[564,2]]], [553,[4778.86,4776.55,-0.234656],[[538,2],[570,2]]], [554,[4810.19,4671.2,-0.0905852],[[538,2],[571,2]]], [555,[5544.56,4537.76,0.0887146],[[541,2],[544,2],[572,2]]], [556,[5591.35,4583.08,-0.319218],[[541,2]]], [557,[5586.34,4359.98,0.0256443],[[545,2]]], +[558,[5583.88,4432.53,-0.109395],[[545,2]]], [559,[5787.35,4253.18,1.11062],[[547,2]]], [560,[5738.51,4168.47,-0.935247],[[547,2],[573,2],[560,2]]], [561,[5862.29,3998.64,0.0856628],[[548,2],[574,2],[575,2]]], [562,[5939.09,4055.02,0.0108023],[[548,2]]], [563,[4551.89,5458.21,-0.0183611],[[535,2]]], +[564,[4389.33,5547.21,0.0958843],[[549,2],[552,2],[576,2],[568,2],[569,2]]], [565,[4364.77,5720.54,0.00719945],[[551,2],[565,2],[567,2]]], [566,[4516.3,5844.96,0.0781846],[[551,2],[577,2]]], [567,[4345.12,5693.79,0.00903749],[[551,2],[565,2],[567,2],[578,2]]], [568,[4353.13,5610.9,0.296351],[[551,2],[564,2],[576,2]]], [569,[4422.34,5579.77,-0.231466],[[552,2],[564,2]]], +[570,[4778.52,4815.73,0.402122],[[553,2],[579,2],[580,2]]], [571,[4768.39,4643.45,0.160717],[[554,2],[581,2],[582,2]]], [572,[5486.83,4429.17,1.36763],[[555,2],[572,2]]], [573,[5764.41,4173.52,-0.888812],[[560,2]]], [574,[5876,3907.55,0.162585],[[561,2],[583,2]]], [575,[5908.47,3980.21,-2.39565],[[561,2]]], +[576,[4333.76,5572.43,0.0744205],[[564,2],[568,2],[584,2],[585,2]]], [577,[4503.59,5896.91,-0.224769],[[566,2],[586,2],[587,2]]], [578,[4336.47,5703.72,0.029633],[[567,2]]], [579,[4610.39,4818.04,0.894403],[[570,2],[588,2]]], [580,[4867.73,4896.24,0.48623],[[570,2],[589,2]]], [581,[4763.51,4550.9,0.135325],[[571,2],[590,2],[581,2],[591,2]]], +[582,[4717.61,4632.37,-2.31472],[[571,2]]], [583,[5898.27,3824.43,-0.756223],[[574,2],[592,2]]], [584,[4311.8,5532.88,0.0440365],[[576,2],[584,2],[593,2]]], [585,[4261.1,5603.09,-0.139031],[[576,2],[594,2],[595,2]]], [586,[4452.82,5951.78,-0.302333],[[577,2],[596,2],[597,2]]], [587,[4539.27,5898.81,0.0147982],[[577,2]]], +[588,[4501.9,4833.29,0.096021],[[579,2],[598,2],[599,2]]], [589,[4891.39,5041.03,0.582667],[[580,2],[600,2]]], [590,[4755.82,4386.69,-0.749103],[[581,2],[601,2]]], [591,[4888.38,4527.67,-0.236233],[[581,2]]], [592,[5902.61,3708.59,-0.811575],[[583,2],[602,2]]], [593,[4352.69,5499.57,-0.0666908],[[584,2],[593,2],[603,2]]], +[594,[4260.72,5699.03,-0.103836],[[585,2]]], [595,[4178.08,5546.67,-0.155643],[[585,2],[604,2]]], [596,[4381.18,6023.67,0.0378971],[[586,2],[605,2],[606,2],[607,2]]], [597,[4517.34,5982.46,0.0194263],[[586,2]]], [598,[4426.8,4846.11,-0.203589],[[588,2],[608,2],[609,2]]], [599,[4512.57,4885.18,-0.352613],[[588,2],[610,2],[611,2]]], +[600,[4879.27,5146.54,-0.06475],[[589,2],[612,2],[600,2],[613,2],[614,2]]], [601,[4750.59,4370.18,-0.0694561],[[590,2],[615,2],[601,2],[616,2]]], [602,[5923.28,3572.27,0.0870533],[[592,2],[617,2]]], [603,[4416.11,5441.98,-0.109529],[[593,2]]], [604,[4136,5527.93,-0.175803],[[595,2]]], [605,[4345.71,6046.94,0.0374448],[[596,2],[618,2],[619,2],[606,2]]], +[606,[4364.36,6019.85,0],[[596,2],[605,2],[620,2]]], [607,[4442.63,6067.23,0],[[596,2]]], [608,[4291,4898.64,-0.361038],[[598,2],[621,2],[622,2],[623,2]]], [609,[4379.3,4788.69,0.294447],[[598,2],[624,2],[609,2]]], [610,[4523.94,4945.98,-0.0416641],[[599,2],[625,2],[626,2]]], [611,[4366.78,4931.82,0.0077076],[[599,2],[623,2]]], +[612,[4852.58,5234.16,-0.679361],[[600,2],[612,2],[627,2],[628,2]]], [613,[4820.09,5094.04,0.996899],[[600,2],[614,2],[613,2]]], [614,[4819.64,5125.5,-0.0779457],[[613,2],[645,2],[600,2],[614,2]]], [615,[4753.86,4273.48,-0.695179],[[601,2],[629,2],[630,2]]], [616,[4606.95,4383.06,1.19803],[[601,2],[631,2],[632,2]]], [617,[5931.31,3430.48,0.559004],[[602,2],[633,2]]], +[618,[4470.2,6173.27,0.0644798],[[605,2],[634,2],[635,2]]], [619,[4304.17,6016.67,0.0301692],[[605,2],[619,2],[636,2]]], [620,[4315.78,5995.21,0],[[606,2]]], [621,[4184.72,4895.72,-0.603323],[[608,2],[637,2],[621,2],[638,2]]], [622,[4259.75,4820.36,-1.31048],[[608,2],[639,2],[637,2]]], [623,[4309.99,4955.81,0.0612016],[[608,2],[611,2],[640,2],[641,2]]], +[624,[4347.14,4770.79,-0.37926],[[609,2],[642,2],[624,2]]], [625,[4549.42,5029.85,0.247492],[[610,2],[643,2]]], [626,[4378.09,4990.23,0.0367508],[[610,2],[640,2]]], [627,[4768.59,5199.04,0.0326328],[[612,2],[644,2]]], [628,[4809.89,5315.4,-1.20432],[[612,2]]], [629,[4745.28,4127.67,0.0238266],[[615,2],[629,2]]], +[630,[4872.86,4207.05,-0.0735316],[[615,2]]], [631,[4537.28,4420.76,-0.750881],[[616,2],[632,2],[631,2],[646,2]]], [632,[4562.3,4415.83,0.174223],[[631,2],[657,2],[632,2],[616,2]]], [633,[5943.69,3289.06,-0.617286],[[617,2],[647,2]]], [634,[4590.47,6143.3,0.110065],[[618,2],[648,2]]], [635,[4433.97,6325.81,0.341828],[[618,2],[649,2]]], +[636,[4188.63,5981.48,-0.228258],[[619,2],[650,2]]], [637,[4097.28,4815.01,-0.156977],[[621,2],[622,2],[651,2]]], [638,[4125.05,4961.38,-0.447357],[[621,2],[652,2],[653,2]]], [639,[4231.09,4715.12,0.16951],[[622,2]]], [640,[4328.39,5006.97,0.154661],[[623,2],[626,2],[654,2],[641,2]]], [641,[4299.18,5005.35,-0.0185199],[[623,2],[640,2],[641,2],[652,2]]], +[642,[4373.78,4681.97,0.153912],[[624,2],[655,2]]], [643,[4591.65,5068.35,-0.168113],[[625,2],[644,2],[656,2]]], [644,[4699.22,5120.36,-0.0084877],[[627,2],[643,2]]], [645,[4841.54,5135.53,0.108034],[[614,2]]], [646,[4398.02,4453.87,0.164677],[[631,2],[658,2]]], [647,[5942.51,3219.56,-0.184961],[[633,2],[647,2],[659,2],[660,2]]], +[648,[4661.86,6201.37,1.09034],[[634,2],[661,2]]], [649,[4378.15,6468.7,0.433758],[[635,2],[662,2],[663,2]]], [650,[4080.52,5976.92,-0.237858],[[636,2],[664,2]]], [651,[4012.94,4777.45,0.644526],[[637,2],[665,2],[666,2],[653,2],[667,2]]], [652,[4146.64,5015.65,-0.445378],[[638,2],[641,2],[668,2]]], [653,[4008.04,4944.55,0.0774525],[[638,2],[651,2],[669,2],[667,2],[670,2],[671,2]]], +[654,[4366.83,5090.13,2.40599],[[640,2],[654,2],[656,2]]], [655,[4348.57,4586.07,0.894222],[[642,2],[672,2],[658,2],[673,2]]], [656,[4485.52,5073.08,-0.1992],[[643,2],[654,2],[674,2]]], [657,[4576.66,4404.02,0.051549],[[632,2]]], [658,[4373.58,4471.64,-0.0501757],[[646,2],[655,2],[675,2],[676,2],[677,2]]], [659,[6116.33,3210.97,-0.0850973],[[647,2],[678,2]]], +[660,[5893.41,3204.53,-1.33022],[[647,2],[679,2],[660,2],[680,2]]], [661,[4685.06,6256.97,-0.0186424],[[648,2],[681,2]]], [662,[4289.11,6570.66,-2.21034],[[649,2],[682,2]]], [663,[4285.25,6533.66,0.0471249],[[649,2],[683,2]]], [664,[4041.65,5969.85,-0.029954],[[650,2],[684,2],[685,2],[686,2]]], [665,[3966.7,4738.77,0.147708],[[651,2],[687,2],[688,2]]], +[666,[3999.17,4725.67,-0.0135231],[[651,2],[689,2]]], [667,[4021.44,4908.79,0.12213],[[653,2],[651,2],[671,2]]], [668,[4131.66,5129.34,0.229753],[[652,2],[690,2]]], [669,[4005.57,5001.22,0.00239296],[[653,2],[669,2],[691,2],[692,2],[670,2],[693,2]]], [670,[3914.6,4932.8,-0.0544285],[[653,2],[669,2],[670,2],[692,2],[694,2],[671,2]]], [671,[3992.16,4906.93,0.0841637],[[653,2],[667,2],[670,2],[671,2]]], +[672,[4364.28,4544.56,0.249306],[[655,2],[672,2]]], [673,[4189.16,4636.74,0.96307],[[655,2],[695,2]]], [674,[4485.83,5043.83,0],[[656,2]]], [675,[4324.13,4393.86,0.37944],[[658,2],[696,2]]], [676,[4368.72,4537.09,0.276995],[[658,2]]], [677,[4309.86,4498.17,-0.895235],[[658,2],[697,2],[698,2],[677,2],[699,2],[700,2]]], +[678,[6207.03,3219.78,0.10244],[[659,2],[701,2]]], [679,[5765.57,3189.43,-0.374267],[[660,2],[702,2],[703,2],[704,2]]], [680,[5881.77,3154.57,0.332586],[[660,2]]], [681,[4727.34,6322.12,0.0246201],[[661,2],[705,2]]], [682,[4243.79,6607.37,1.49123],[[662,2],[706,2],[682,2],[707,2]]], [683,[4163.48,6555.53,0.0757542],[[663,2],[708,2]]], +[684,[3987.01,5961.52,0.0673985],[[664,2],[709,2],[710,2]]], [685,[3987.31,6026.61,-0.0104527],[[664,2],[711,2],[709,2],[686,2],[685,2]]], [686,[4021.88,6026.76,0.0674982],[[685,2],[735,2],[686,2],[664,2]]], [687,[3836.52,4762.79,-1.89692],[[665,2],[712,2]]], [688,[3999.36,4717.89,-1.05113],[[665,2]]], [689,[4095.48,4688.52,-0.0913773],[[666,2],[695,2]]], +[690,[4032.18,5162.47,0.56992],[[668,2],[713,2],[690,2],[693,2],[714,2]]], [691,[4063,5017.51,0],[[669,2],[715,2]]], [692,[3919.7,4989.79,-0.00904989],[[669,2],[670,2],[692,2],[716,2],[717,2]]], [693,[3994.8,5084.76,-0.172897],[[669,2],[690,2],[715,2]]], [694,[3940.36,4903.04,-0.0365019],[[670,2]]], [695,[4143.88,4652.02,0.0611782],[[673,2],[689,2],[718,2],[719,2]]], +[696,[4303.03,4320.17,-0.309811],[[675,2],[720,2]]], [697,[4217.6,4492.38,0],[[677,2],[721,2],[718,2],[722,2]]], [698,[4319.09,4483.07,0.0225093],[[677,2]]], [699,[4294.5,4433.09,0.641496],[[677,2],[723,2],[724,2]]], [700,[4190.81,4545.74,0.267544],[[677,2],[718,2]]], [701,[6228.83,3273.45,3.14035],[[678,2],[725,2]]], +[702,[5586.65,3194.46,0.717943],[[679,2],[726,2],[704,2],[727,2]]], [703,[5794.63,3133.26,0],[[703,2]]], [704,[5674.98,3148.13,0],[[679,2],[702,2],[726,2]]], [705,[4795.3,6355.46,1.49163],[[681,2],[728,2],[705,2],[729,2]]], [706,[4259.79,6587.1,0.759903],[[682,2]]], [707,[4224.29,6663.37,0.152321],[[707,2],[730,2]]], +[708,[4060.17,6521.15,-0.139017],[[683,2],[731,2]]], [709,[3909.71,5960.4,0],[[684,2],[685,2],[732,2],[711,2],[710,2]]], [710,[3927.05,5913.53,-0.0426776],[[684,2],[709,2],[733,2],[710,2],[734,2],[732,2]]], [711,[3922.77,6006.2,-0.0583396],[[685,2],[709,2]]], [712,[3714.25,4826.5,0.240782],[[687,2],[736,2]]], [713,[4059.39,5150.98,-0.0379848],[[690,2],[737,2],[713,2]]], +[714,[4003.82,5219.49,-0.167637],[[690,2],[738,2],[714,2]]], [715,[4056.34,5066.93,0],[[691,2],[693,2]]], [716,[3862.66,5085.51,1.30549],[[692,2],[717,2],[716,2],[739,2]]], [717,[3892.22,5081.01,-0.049633],[[716,2],[761,2],[717,2],[692,2]]], [718,[4120.81,4559.83,0.29013],[[695,2],[697,2],[700,2],[740,2],[721,2]]], [719,[4154.08,4712.01,0.0402145],[[695,2]]], +[720,[4370.27,4255.61,-2.59516],[[696,2],[741,2]]], [721,[4108.73,4497.95,0],[[697,2],[718,2],[742,2],[743,2]]], [722,[4217.56,4437.36,-0.88952],[[697,2],[744,2],[745,2],[722,2]]], [723,[4318.3,4461.31,-0.0888329],[[699,2]]], [724,[4236.72,4371.62,-1.07589],[[699,2],[724,2]]], [725,[6216.76,3346.27,1.39247],[[701,2],[746,2],[747,2],[748,2]]], +[726,[5597.24,3143.67,0.788235],[[702,2],[704,2],[749,2],[726,2],[750,2]]], [727,[5528.67,3244.78,5.43349],[[702,2]]], [728,[4779.06,6329.37,1.05835],[[705,2]]], [729,[4852.05,6542.75,-0.913218],[[705,2],[751,2]]], [730,[4212.11,6741.08,0.0670128],[[707,2],[752,2],[753,2]]], [731,[3912.97,6461.75,-0.0484683],[[708,2],[754,2],[755,2]]], +[732,[3828.34,5963.81,0.0059913],[[709,2],[710,2],[756,2],[757,2]]], [733,[3969.96,5922.57,-0.0115506],[[710,2]]], [734,[3824.52,5907.46,-0.100238],[[710,2],[758,2],[759,2]]], [735,[4028.7,6001.59,0.024404],[[686,2]]], [736,[3616.52,4858.48,-1.06154],[[712,2],[760,2]]], [737,[4076.15,5153.29,-0.0586529],[[713,2]]], +[738,[3967.88,5218.06,0],[[714,2]]], [739,[3823.02,5096.76,0],[[716,2]]], [740,[4097.72,4560.31,0],[[718,2]]], [741,[4418.08,4190.71,0.385216],[[720,2],[762,2]]], [742,[4060.36,4500.53,0.0180588],[[721,2],[763,2],[764,2],[765,2]]], [743,[4120.67,4423.93,0.150773],[[721,2],[766,2],[743,2],[767,2]]], +[744,[4215.16,4371.25,-1.06303],[[722,2]]], [745,[4218.77,4456.36,0.0287304],[[722,2]]], [746,[6353.09,3414.89,-0.408958],[[725,2],[768,2]]], [747,[6118.15,3401.48,-1.26846],[[725,2],[747,2],[748,2]]], [748,[6113.5,3376.7,0.0881958],[[747,2],[788,2],[748,2],[725,2]]], [749,[5497.98,3159.85,-0.0272846],[[726,2],[769,2],[750,2]]], +[750,[5528.56,3118.16,-0.142201],[[726,2],[749,2]]], [751,[4865.5,6662.62,-0.61599],[[729,2],[770,2]]], [752,[4223.55,6804.58,1.39905],[[730,2],[771,2],[772,2],[773,2]]], [753,[4257.14,6730.04,0],[[730,2]]], [754,[3847.16,6426.99,0.0583954],[[731,2],[774,2],[754,2],[775,2],[755,2]]], [755,[3878.42,6489.33,0],[[731,2],[754,2],[776,2],[775,2]]], +[756,[3824.11,5910.59,-7.53403e-005],[[732,2]]], [757,[3765.8,6033.16,0.0507488],[[732,2],[777,2]]], [758,[3787.9,5736.01,0.115829],[[734,2],[778,2],[759,2],[758,2]]], [759,[3796.72,5756.13,0.0376806],[[758,2],[797,2],[759,2],[734,2]]], [760,[3596.19,4878.41,-0.657878],[[736,2],[779,2],[780,2]]], [761,[3901.77,5053.23,-0.00912857],[[717,2]]], +[762,[4377.09,4111.2,-0.105396],[[741,2],[781,2],[782,2]]], [763,[4048.93,4599.99,0],[[742,2],[765,2],[763,2],[783,2]]], [764,[3980.07,4491.34,0.230512],[[742,2],[784,2],[785,2],[783,2],[786,2]]], [765,[4061.25,4584.28,0],[[763,2],[802,2],[742,2],[765,2]]], [766,[4118.3,4440.22,0.965944],[[743,2]]], [767,[4124.69,4378.32,-2.37762],[[743,2]]], +[768,[6424,3438.39,0.376102],[[746,2],[787,2]]], [769,[5431.27,3218.89,-0.0790173],[[749,2],[789,2],[790,2],[769,2]]], [770,[4808.5,6767.86,-0.199898],[[751,2],[791,2]]], [771,[4237.49,6951.85,0.0678482],[[752,2],[773,2],[771,2],[792,2]]], [772,[4375.72,6799.52,0],[[752,2],[772,2]]], [773,[4216.48,6904.26,0.0236053],[[771,2],[812,2],[773,2],[752,2]]], +[774,[3774.91,6403.21,-0.0556524],[[754,2],[793,2],[774,2],[794,2]]], [775,[3843.24,6459.1,0],[[754,2],[755,2]]], [776,[3858.83,6542.04,0],[[755,2]]], [777,[3696.17,6086.53,0.550025],[[757,2],[795,2],[796,2]]], [778,[3807.91,5663.38,0],[[758,2]]], [779,[3594.98,4778.9,0.870167],[[760,2],[798,2]]], +[780,[3503.86,5039.06,-1.94731],[[760,2],[799,2]]], [781,[4278.64,4016.63,-2.00569],[[762,2],[800,2],[801,2],[781,2]]], [782,[4294.33,4062.6,2.32066],[[801,2],[762,2]]], [783,[3986.19,4557.66,1.06894],[[763,2],[764,2],[785,2]]], [784,[3865.11,4522.04,0.361286],[[764,2],[803,2]]], [785,[3981.61,4532.39,-1.62014],[[764,2],[783,2],[804,2],[803,2]]], +[786,[3960.32,4426.28,-2.61128],[[764,2],[805,2],[786,2],[806,2]]], [787,[6533,3377.36,-1.56528],[[768,2],[807,2]]], [788,[6138.97,3363.83,0.212101],[[748,2]]], [789,[5421.53,3342.26,-0.851812],[[769,2],[808,2]]], [790,[5341.08,3162.56,0.247478],[[769,2],[809,2]]], [791,[4815.49,6826.26,0.14518],[[770,2],[810,2],[811,2]]], +[792,[4231.67,7053.5,-0.686874],[[771,2],[813,2]]], [793,[3668.31,6442.94,-0.282051],[[774,2],[814,2]]], [794,[3778.13,6332.69,-0.448934],[[774,2],[815,2]]], [795,[3717.76,6137.6,0.119347],[[777,2],[816,2],[817,2]]], [796,[3592.05,5983.76,0.151979],[[777,2],[818,2]]], [797,[3805.79,5777.08,-0.0173855],[[759,2]]], +[798,[3644.14,4694.16,1.59433],[[798,2],[819,2],[820,2],[821,2]]], [799,[3454.25,5093.74,0.0356064],[[780,2],[822,2]]], [800,[4245.02,3911.57,0.777576],[[781,2],[823,2]]], [801,[4273.48,4045.44,0.15461],[[781,2],[782,2],[801,2]]], [802,[4063.07,4558.93,0],[[765,2]]], [803,[3858.74,4532.36,0.973264],[[784,2],[785,2],[824,2],[806,2],[825,2]]], +[804,[3878.39,4565.5,0.595898],[[785,2],[826,2],[820,2],[824,2]]], [805,[3976.4,4449.9,-3.32207],[[786,2]]], [806,[3828.54,4405.23,1.12531],[[786,2],[803,2],[827,2],[824,2],[828,2]]], [807,[6577.94,3353.59,-0.286355],[[787,2],[807,2],[829,2],[830,2],[831,2]]], [808,[5491.31,3414.15,0.0219078],[[789,2],[832,2]]], [809,[5286.48,3101.62,-2.71522],[[790,2],[833,2]]], +[810,[4774.45,6880.37,-0.729777],[[791,2],[834,2],[810,2],[835,2]]], [811,[4907.61,6953.54,0.114897],[[791,2],[836,2]]], [812,[4221.92,6876.69,-0.182813],[[773,2]]], [813,[4163.27,7080.94,-0.553474],[[792,2],[837,2]]], [814,[3617.32,6455.82,-0.680511],[[793,2],[838,2],[814,2],[839,2],[840,2]]], [815,[3810.43,6279.23,0.136742],[[794,2],[815,2],[841,2],[816,2]]], +[816,[3782.14,6206.07,1.41841],[[795,2],[815,2],[841,2]]], [817,[3635.69,6228.44,0.276491],[[795,2],[842,2]]], [818,[3473.22,5976.64,0.897888],[[796,2],[843,2]]], [819,[3642.8,4577.16,0.110421],[[798,2],[845,2],[846,2],[847,2],[848,2],[849,2]]], [820,[3723.38,4656.17,0.255642],[[820,2]]], [821,[3648.59,4711.16,-0.0644264],[[798,2]]], +[822,[3369.19,5099.18,-0.293946],[[799,2],[850,2]]], [823,[4162.5,3808.97,-0.115128],[[800,2],[851,2]]], [824,[3812.64,4509.37,-1.1041],[[803,2],[804,2],[806,2],[852,2],[846,2],[827,2],[853,2],[826,2]]], [825,[3871.47,4566.22,0.146683],[[803,2]]], [826,[3821.24,4599.08,0.19858],[[804,2],[820,2],[824,2]]], [827,[3858.78,4454.34,0],[[806,2],[824,2]]], +[828,[3693.46,4352.84,-2.72894],[[806,2],[854,2],[828,2],[855,2]]], [829,[6607.57,3280.8,-0.00777404],[[807,2],[856,2],[829,2],[857,2]]], [830,[6698.84,3338.99,-0.209063],[[807,2],[858,2],[859,2],[831,2],[860,2],[857,2]]], [831,[6630.76,3412.7,-0.148602],[[807,2],[830,2],[861,2],[831,2]]], [832,[5581.59,3416.89,0.0729303],[[808,2],[862,2]]], [833,[5204.19,3062.1,-0.692392],[[809,2],[863,2]]], +[834,[4781.09,6850.54,-0.877879],[[810,2]]], [835,[4746.28,6996.9,-0.0175476],[[810,2],[864,2]]], [836,[5017.39,6973.18,0.587473],[[811,2],[865,2]]], [837,[4128.92,7123.23,-0.487999],[[813,2],[866,2]]], [838,[3643.47,6458.05,-1.37217],[[814,2]]], [839,[3546.97,6451.78,0],[[814,2],[867,2],[868,2],[842,2],[840,2]]], +[840,[3593.41,6403,-0.00221634],[[814,2],[839,2],[869,2],[840,2],[868,2]]], [841,[3820.92,6234.01,-0.0724077],[[815,2],[816,2],[870,2],[841,2]]], [842,[3543.28,6333.03,0.203896],[[817,2],[839,2],[868,2]]], [843,[3386.64,5976,0.0460548],[[818,2],[871,2],[872,2]]], [844,[3592.39,4701.06,0],[[798,2]]], [845,[3705.45,4605.43,0.559101],[[819,2]]], +[846,[3723.97,4520.05,1.31238],[[819,2],[824,2],[853,2]]], [847,[3509.76,4550.88,-0.51847],[[819,2],[873,2],[874,2]]], [848,[3568.55,4639.18,-0.501392],[[819,2],[875,2]]], [849,[3566.92,4478.71,-1.15804],[[819,2]]], [850,[3340.27,5139.86,0.105956],[[822,2],[876,2]]], [851,[4172.52,3716.29,-1.26688],[[823,2],[877,2]]], +[852,[3888.33,4471.02,0.386124],[[824,2]]], [853,[3752.71,4546.29,0.0722237],[[824,2],[846,2]]], [854,[3706.19,4375.64,-1.22866],[[828,2]]], [855,[3784.19,4241.5,-7.17818],[[828,2],[878,2]]], [856,[6580.49,3293.31,0.432241],[[829,2]]], [857,[6658.68,3277.15,0],[[829,2],[830,2],[879,2],[857,2]]], +[858,[6765.98,3370.38,0.0273256],[[830,2],[880,2],[881,2],[859,2]]], [859,[6700.52,3392.05,-0.489799],[[830,2],[858,2],[882,2]]], [860,[6694.47,3225.06,-0.114285],[[830,2],[883,2]]], [861,[6603.46,3406.64,0.0432216],[[831,2]]], [862,[5613.89,3432.03,0],[[832,2]]], [863,[5157.03,2970.83,1.69646],[[833,2],[884,2]]], +[864,[4747.81,7096.89,0.0874825],[[835,2],[885,2]]], [865,[5107.1,6993.07,-0.00701427],[[836,2],[886,2],[887,2],[888,2],[889,2],[865,2]]], [866,[4154.78,7193.21,-0.325603],[[837,2],[890,2]]], [867,[3375.06,6439.97,-1.13639],[[839,2],[891,2]]], [868,[3546.32,6399.76,0],[[839,2],[840,2],[842,2]]], [869,[3614.91,6372.51,-0.0691929],[[840,2]]], +[870,[3823.27,6242.35,0.0427027],[[841,2]]], [871,[3348.67,6120.8,0.294908],[[843,2],[892,2],[893,2]]], [872,[3388.31,5851.71,0.180951],[[843,2],[894,2]]], [873,[3389.67,4548.34,-0.770569],[[847,2],[895,2],[896,2],[897,2]]], [874,[3485.34,4508.65,-0.139351],[[847,2]]], [875,[3531.03,4647.23,-0.111519],[[848,2]]], +[876,[3343.62,5193.43,0],[[850,2],[898,2],[899,2]]], [877,[4195.16,3653.28,0.651636],[[851,2],[900,2],[901,2]]], [878,[3812.98,4176.46,0.00419998],[[855,2],[878,2],[902,2],[903,2]]], [879,[6681.77,3217.64,0.0136971],[[857,2]]], [880,[6901.09,3434.11,-0.134159],[[858,2],[904,2]]], [881,[6828.19,3427.87,0.00858974],[[858,2],[905,2]]], +[882,[6663.69,3478.05,-0.80805],[[859,2]]], [883,[6694.47,3050.06,0.349593],[[860,2],[906,2]]], [884,[5152.24,2957.89,0.553424],[[863,2],[907,2],[908,2]]], [885,[4715.25,7164.18,0.129776],[[864,2],[909,2]]], [886,[5224.4,6953.92,0],[[865,2],[910,2],[887,2],[911,2],[889,2]]], [887,[5153.35,6920.22,0.000144958],[[865,2],[886,2],[910,2]]], +[888,[5124.59,7059.18,1.27157e-006],[[865,2],[912,2],[913,2],[889,2]]], [889,[5255.68,7007.68,0.212266],[[865,2],[886,2],[888,2],[913,2],[914,2]]], [890,[4165.66,7295.77,0.292896],[[866,2],[915,2]]], [891,[3277.7,6429.46,1.76867],[[867,2],[916,2],[917,2],[918,2]]], [892,[3264.16,6132.76,0.0399659],[[871,2],[919,2]]], [893,[3308.88,6172.83,0.00809193],[[871,2],[920,2],[919,2]]], +[894,[3396.23,5793.37,-0.489487],[[872,2],[921,2],[922,2],[923,2]]], [895,[3256.06,4558.54,-0.0621223],[[873,2],[924,2]]], [896,[3426.27,4618.96,-0.1686],[[873,2]]], [897,[3369.17,4471.3,0.201385],[[873,2]]], [898,[3250.79,5238.77,-0.0596151],[[876,2],[925,2],[898,2],[926,2],[927,2]]], [899,[3486.41,5199.56,-0.00767708],[[876,2]]], +[900,[4194.11,3502.71,-0.242702],[[877,2],[928,2]]], [901,[4267.5,3620.08,-0.00568279],[[877,2],[929,2],[901,2],[930,2]]], [902,[3733,4181.65,0.00900269],[[878,2]]], [903,[3906.27,4114.84,-1.38409],[[878,2],[931,2]]], [904,[6975.63,3440.27,-0.120144],[[880,2],[932,2]]], [905,[6848.5,3463.05,-0.261804],[[881,2]]], +[906,[6696.16,2898.24,0],[[883,2],[933,2],[934,2]]], [907,[5191.87,2847.77,-0.210423],[[884,2],[935,2],[907,2],[936,2]]], [908,[4990.66,2979.66,0.302641],[[884,2],[937,2]]], [909,[4654.83,7211.59,-0.0972557],[[885,2],[938,2]]], [910,[5203.53,6911.01,0],[[886,2],[887,2],[939,2]]], [911,[5241.55,6899.94,-0.180988],[[886,2]]], +[912,[5123.18,7105.56,9.53674e-007],[[888,2],[940,2],[912,2]]], [913,[5253.02,7055.66,-0.00815582],[[888,2],[889,2],[941,2]]], [914,[5275.81,7002.89,0.849066],[[889,2]]], [915,[4187.31,7381.69,0.290558],[[890,2],[942,2]]], [916,[3158.28,6353.26,3.32398],[[891,2],[943,2]]], [917,[3265.27,6597.42,-0.506016],[[891,2],[944,2]]], +[918,[3278.59,6313.72,-0.117554],[[891,2],[945,2],[920,2],[919,2]]], [919,[3229.12,6159.57,-0.0708728],[[892,2],[893,2],[918,2],[946,2],[947,2],[948,2],[949,2],[945,2]]], [920,[3280.19,6189.83,0],[[893,2],[918,2],[945,2]]], [921,[3497.07,5757.93,-0.0968533],[[894,2],[950,2],[921,2],[951,2],[922,2]]], [922,[3395.49,5744.85,-0.364004],[[894,2],[921,2],[922,2],[951,2]]], [923,[3472.16,5791.6,-0.180697],[[950,2],[894,2]]], +[924,[3197.54,4547.81,-0.391166],[[895,2],[952,2],[953,2]]], [925,[3277.37,5209.01,-0.260719],[[898,2]]], [926,[3186.39,5345.92,-0.189401],[[898,2],[954,2]]], [927,[3134.59,5183.66,-0.0382004],[[898,2],[955,2]]], [928,[4249.48,3440.62,-0.120144],[[900,2],[956,2]]], [929,[4249.58,3642.84,0.0289971],[[901,2]]], +[930,[4340.33,3559.18,-0.604213],[[901,2],[930,2],[957,2],[958,2]]], [931,[3956.6,4121.23,0.0998306],[[903,2],[959,2],[960,2]]], [932,[7019.72,3373.36,0.815369],[[904,2],[961,2]]], [933,[6692.65,2856.85,-0.167886],[[906,2],[962,2],[963,2]]], [934,[6719,2891.29,0],[[906,2]]], [935,[5198.54,2875.59,12.7491],[[907,2],[964,2],[935,2]]], +[936,[5107.08,2747.21,-0.568437],[[907,2],[965,2]]], [937,[4861.95,3014.14,1.09428],[[908,2],[966,2]]], [938,[4663.42,7304.04,0.108055],[[909,2],[967,2]]], [939,[5190.14,6795.06,-0.247307],[[910,2],[968,2]]], [940,[5122.03,7282.88,0],[[912,2],[969,2]]], [941,[5240.88,7139.84,-0.848101],[[913,2]]], +[942,[4239.19,7439.56,-0.12471],[[915,2],[970,2]]], [943,[3061.66,6279.87,0.106372],[[916,2],[971,2]]], [944,[3252.48,6675.96,0.11371],[[917,2],[972,2],[944,2]]], [945,[3277.08,6245.57,0.100351],[[918,2],[919,2],[920,2]]], [946,[3192.97,5987.02,0.764039],[[919,2],[973,2],[974,2]]], [947,[3242.06,6144.74,0],[[919,2]]], +[948,[3265.32,6172.57,0],[[919,2]]], [949,[3281.3,6175.85,0],[[919,2]]], [950,[3499.14,5786.91,-0.000411987],[[921,2],[923,2],[950,2]]], [951,[3425.93,5726.1,0.774246],[[921,2],[922,2]]], [952,[3208.98,4464.35,0.353049],[[924,2],[975,2],[976,2],[952,2]]], [953,[3087.71,4629.45,0.200617],[[924,2],[977,2],[978,2],[979,2]]], +[954,[3172.43,5395.51,-0.172039],[[926,2],[980,2],[954,2]]], [955,[3052.28,5078.84,0.0455914],[[927,2],[981,2]]], [956,[4326.06,3374.09,0.201805],[[928,2],[982,2]]], [957,[4347.17,3510.74,-0.523349],[[930,2]]], [958,[4377.08,3609.3,0.0460355],[[930,2],[958,2],[983,2]]], [959,[4021.89,4114.84,0.290619],[[931,2]]], +[960,[3965.64,4228.27,0],[[931,2]]], [961,[7044.27,3231.08,-0.47397],[[932,2],[984,2]]], [962,[6644.52,2696.16,-0.0492306],[[933,2],[962,2],[985,2]]], [963,[6747.19,2815.08,-0.013998],[[933,2],[986,2]]], [964,[5198.74,2893.7,-1.74252],[[935,2]]], [965,[5012.94,2698.48,0.637827],[[936,2],[987,2]]], +[966,[4818.95,3015.49,0.151349],[[937,2],[988,2],[966,2]]], [967,[4715.45,7384.77,0.0340652],[[938,2],[989,2]]], [968,[5173.89,6780.46,0.0985177],[[939,2],[968,2],[990,2]]], [969,[5114.64,7373.88,-0.135448],[[940,2],[991,2]]], [970,[4326.19,7493.86,0.227112],[[942,2],[992,2],[993,2]]], [971,[2979.53,6264.26,0.404611],[[943,2],[994,2],[995,2]]], +[972,[3119.48,6665.44,0],[[944,2]]], [973,[3166.3,5812.31,-0.0195834],[[946,2],[996,2],[973,2],[997,2]]], [974,[3115.78,5980.31,-0.0365372],[[946,2],[997,2],[998,2]]], [975,[3174.33,4317.22,-0.201771],[[952,2],[999,2]]], [976,[3215.82,4475.53,0.231999],[[952,2]]], [977,[3022.8,4644.01,0.00108528],[[953,2]]], +[978,[3146.34,4763.38,-0.224412],[[953,2],[1000,2],[979,2],[978,2]]], [979,[3130.75,4739.42,0.0302658],[[978,2],[1023,2],[979,2],[953,2]]], [980,[3126.2,5445.1,0.537874],[[954,2],[1001,2],[980,2],[1002,2]]], [981,[3013.51,5060.6,0.542338],[[955,2],[1003,2],[1004,2]]], [982,[4445.77,3350.3,0.011282],[[956,2],[1005,2]]], [983,[4372.72,3650.01,-0.0164185],[[958,2]]], +[984,[7024.06,3101.11,0.388453],[[961,2],[1006,2]]], [985,[6647.1,2562.87,-0.754996],[[962,2],[1007,2],[1008,2]]], [986,[6784.22,2801.81,0.00274873],[[963,2]]], [987,[4991.64,2623.48,0.416763],[[965,2],[1009,2]]], [988,[4733.63,3030.49,0.173557],[[966,2],[1010,2]]], [989,[4707.86,7459.13,-0.323368],[[967,2],[1011,2]]], +[990,[5142.14,6787.13,0],[[968,2]]], [991,[5090.38,7479.88,-1.97161],[[969,2],[1012,2]]], [992,[4319.4,7521.58,0.454854],[[970,2],[992,2],[1013,2]]], [993,[4348.08,7508,0.41501],[[970,2]]], [994,[2974.38,6313.75,1.11166],[[971,2],[1014,2],[1015,2]]], [995,[2977.42,6105.34,-0.413693],[[971,2],[1016,2]]], +[996,[3181.52,5819.71,-0.0293751],[[973,2]]], [997,[3118.99,5830.08,-1.01645],[[973,2],[974,2],[997,2],[1017,2],[1018,2],[1019,2]]], [998,[3056.46,5985.52,-0.888468],[[974,2],[1020,2],[1016,2],[1021,2]]], [999,[3120.02,4264.33,-4.20266],[[975,2],[1022,2]]], [1000,[3162.58,4849.63,-0.00758839],[[978,2],[1003,2]]], [1001,[3146.98,5445.94,0.176527],[[980,2]]], +[1002,[3063.09,5439.62,0.0150715],[[980,2]]], [1003,[3106.14,4927.99,0.11272],[[981,2],[1000,2]]], [1004,[2874.54,5151.52,1.5957],[[981,2],[1024,2],[1025,2]]], [1005,[4475.91,3301.58,-1.07064],[[982,2],[1026,2]]], [1006,[7041.55,3011.43,-0.116169],[[984,2],[1027,2]]], [1007,[6632.72,2451.32,-0.667837],[[985,2],[1028,2],[1029,2]]], +[1008,[6715.52,2538.56,0.259899],[[985,2],[1030,2]]], [1009,[4969.09,2600.6,-0.396379],[[987,2],[1031,2],[1032,2]]], [1010,[4727.73,3086.46,-0.140047],[[988,2],[1033,2],[1034,2],[1035,2],[1010,2]]], [1011,[4624.53,7551.81,2.01615],[[989,2],[1036,2]]], [1012,[5097.2,7588.63,0.190109],[[991,2],[1037,2]]], [1013,[4293.23,7557.76,-0.24035],[[992,2],[1038,2],[1039,2],[1013,2]]], +[1014,[2968.71,6388.56,-0.580837],[[994,2],[1040,2],[1041,2]]], [1015,[3006.3,6322.55,0],[[994,2]]], [1016,[2960.8,6019.85,0.40658],[[995,2],[998,2],[1042,2]]], [1017,[3058.86,5815.92,-0.0469303],[[997,2]]], [1018,[3009.19,5838.3,-0.368146],[[997,2]]], [1019,[3143.56,5902.32,0.114754],[[997,2]]], +[1020,[2982.56,5993.59,0.130249],[[998,2],[1043,2],[1042,2]]], [1021,[3055.64,5953.52,-3.16352],[[998,2]]], [1022,[3126.28,4218.71,-0.609189],[[999,2],[1044,2],[1022,2],[1045,2]]], [1023,[3113.47,4707.46,0.847248],[[979,2]]], [1024,[2820.17,5238.42,-1.55129],[[1004,2],[1046,2]]], [1025,[2809.19,5043.83,0.175354],[[1004,2],[1047,2]]], +[1026,[4507.63,3200.35,-0.490005],[[1005,2],[1048,2]]], [1027,[7114.56,2996.44,0],[[1006,2],[1049,2]]], [1028,[6654.02,2341.78,0.579405],[[1007,2],[1050,2]]], [1029,[6473.17,2449.93,-0.0129409],[[1007,2],[1051,2]]], [1030,[6775.94,2498.25,0],[[1008,2],[1052,2]]], [1031,[4992.11,2529.01,0.192717],[[1009,2],[1053,2],[1054,2]]], +[1032,[4833.42,2625.95,-0.138387],[[1009,2],[1055,2]]], [1033,[4664.24,3057.16,0.0486903],[[1010,2],[1056,2],[1057,2],[1034,2]]], [1034,[4705.88,3094.3,0],[[1010,2],[1033,2]]], [1035,[4709.61,3177.87,0],[[1010,2],[1048,2]]], [1036,[4526.14,7665.04,-0.953016],[[1011,2],[1058,2]]], [1037,[5111.6,7616.5,0.282916],[[1012,2],[1059,2],[1060,2]]], +[1038,[4206,7598.89,-0.323663],[[1013,2],[1061,2],[1062,2]]], [1039,[4305.56,7549.02,-0.277953],[[1013,2]]], [1040,[2962.22,6453.65,-0.0890131],[[1014,2],[1063,2],[1064,2]]], [1041,[3056.91,6398.82,0.0317965],[[1014,2],[1065,2],[1066,2],[1041,2]]], [1042,[2972.85,6001.84,0.127077],[[1016,2],[1042,2],[1067,2],[1020,2]]], [1043,[2890.41,5905.7,0.275023],[[1020,2],[1068,2],[1069,2]]], +[1044,[3114.92,4232.59,-1.16111],[[1022,2]]], [1045,[3120.82,4148.05,-2.24998],[[1022,2],[1070,2],[1045,2],[1071,2],[1072,2]]], [1046,[2815.85,5276.03,-1.25581],[[1024,2],[1073,2],[1074,2]]], [1047,[2730.63,4970.53,0.464523],[[1025,2],[1075,2]]], [1048,[4598.13,3178.06,1.31513],[[1026,2],[1035,2]]], [1049,[7303.13,2996.08,0],[[1027,2],[1076,2]]], +[1050,[6701.34,2318.8,-0.658985],[[1028,2],[1077,2]]], [1051,[6378.1,2407.31,-0.167914],[[1029,2],[1078,2]]], [1052,[6797.16,2503.45,0],[[1030,2],[1052,2],[1079,2]]], [1053,[5079.13,2534.21,-0.22752],[[1031,2],[1080,2]]], [1054,[4889.31,2401.19,-0.00623894],[[1031,2],[1081,2]]], [1055,[4809.2,2670.42,0.00464153],[[1032,2],[1082,2],[1083,2]]], +[1056,[4484.17,3055.41,-1.56472],[[1033,2],[1084,2]]], [1057,[4684.78,2947.16,-0.0124893],[[1033,2],[1085,2]]], [1058,[4466.84,7691.45,0.345951],[[1036,2],[1086,2]]], [1059,[5223.06,7736.09,0.177745],[[1037,2],[1087,2]]], [1060,[5069.21,7653.72,0.0946811],[[1037,2],[1088,2],[1089,2]]], [1061,[4204.52,7685.12,-0.344056],[[1038,2],[1090,2],[1086,2]]], +[1062,[4200.86,7553.71,0],[[1038,2]]], [1063,[3015.07,6746.46,0.00801601],[[1040,2],[1063,2],[1091,2],[1092,2]]], [1064,[2934.87,6531.03,-0.379338],[[1040,2],[1064,2]]], [1065,[3138.3,6416.24,0.124855],[[1041,2],[1093,2]]], [1066,[3043.08,6401.32,0.5795],[[1041,2]]], [1067,[2997.2,5994,-1.34601],[[1042,2]]], +[1068,[2802.78,5886.54,0.0765204],[[1043,2],[1094,2]]], [1069,[2895.88,5893.74,0.307379],[[1043,2]]], [1070,[3139.2,4164.61,-0.95517],[[1045,2]]], [1071,[3072.55,4017.14,-0.0954946],[[1045,2],[1072,2],[1071,2],[1095,2]]], [1072,[3060.72,4028.86,0.0357819],[[1071,2],[1116,2],[1072,2],[1045,2]]], [1073,[2888.95,5287.98,-0.798511],[[1046,2],[1073,2],[1096,2]]], +[1074,[2765.19,5288.01,0],[[1046,2],[1097,2],[1098,2],[1096,2]]], [1075,[2648.98,4980.39,0.333998],[[1047,2],[1099,2]]], [1076,[7344.06,2994.88,0.0020105],[[1049,2],[1100,2],[1076,2]]], [1077,[6721.97,2273.35,0.312299],[[1050,2],[1101,2]]], [1078,[6232.97,2373.69,-0.176232],[[1051,2],[1102,2],[1103,2]]], [1079,[6801.55,2555.02,-0.0062499],[[1052,2]]], +[1080,[5223.72,2558.98,-1.14583],[[1053,2],[1104,2]]], [1081,[4824.42,2357.04,-0.0119069],[[1054,2],[1105,2],[1106,2],[1107,2],[1108,2]]], [1082,[4829.02,2735.79,0.14027],[[1055,2],[1082,2],[1109,2]]], [1083,[4788.08,2666.27,0.415542],[[1055,2]]], [1084,[4385.5,3092.41,-0.224483],[[1056,2],[1110,2]]], [1085,[4680.22,2897.52,0.0560818],[[1057,2],[1111,2]]], +[1086,[4316.86,7688.86,0.822996],[[1058,2],[1061,2]]], [1087,[5245.63,7762.04,-0.418953],[[1059,2]]], [1088,[5112.69,7733.06,0.752086],[[1060,2],[1088,2]]], [1089,[4998.17,7667.25,-0.624862],[[1060,2],[1112,2]]], [1090,[4208.11,7838.92,-0.524662],[[1061,2],[1113,2]]], [1091,[2853.8,6893.75,0.298959],[[1063,2],[1114,2]]], +[1092,[2961.06,7134.22,0],[[1063,2]]], [1093,[3158.3,6444.9,0],[[1065,2]]], [1094,[2786.25,5839.5,0],[[1068,2],[1115,2]]], [1095,[3094.55,3915.32,-3.51079],[[1071,2],[1117,2]]], [1096,[2882.89,5346.23,0],[[1073,2],[1074,2],[1118,2],[1096,2],[1119,2]]], [1097,[2699.77,5328.73,-0.723402],[[1074,2],[1120,2],[1097,2],[1121,2],[1098,2]]], +[1098,[2768.67,5335.89,0],[[1074,2],[1097,2],[1098,2],[1122,2],[1118,2]]], [1099,[2532.48,4946.5,0.182271],[[1075,2],[1123,2]]], [1100,[7488.53,2973.82,0],[[1076,2],[1124,2],[1125,2],[1126,2]]], [1101,[6719.25,2247.45,0.18005],[[1077,2],[1127,2],[1101,2],[1128,2]]], [1102,[6062.41,2351.01,-1.08695],[[1078,2],[1129,2]]], [1103,[6240.61,2256.25,0.00665855],[[1078,2],[1130,2]]], +[1104,[5307.04,2553.05,2.64427],[[1080,2],[1131,2],[1132,2],[1133,2]]], [1105,[4759.78,2227.35,-0.127546],[[1081,2],[1134,2],[1135,2]]], [1106,[4739.33,2391.38,0],[[1081,2],[1107,2],[1106,2],[1136,2]]], [1107,[4750.31,2365.98,0],[[1106,2],[1161,2],[1081,2],[1107,2]]], [1108,[4763.34,2266.32,-0.12533],[[1135,2],[1081,2]]], [1109,[4860.5,2829.18,0.257098],[[1082,2],[1137,2]]], +[1110,[4255.61,3102.2,-0.10935],[[1084,2],[1138,2]]], [1111,[4637.13,2829.1,-3.10786],[[1085,2]]], [1112,[4964.16,7722.54,0.473941],[[1089,2],[1139,2]]], [1113,[4291.41,7900.85,0.170385],[[1090,2],[1140,2]]], [1114,[2737.55,6868.16,0],[[1091,2],[1141,2]]], [1115,[2802.93,5757.2,0.542175],[[1094,2],[1115,2],[1142,2]]], +[1116,[3065.51,4056.8,-1.04697],[[1072,2]]], [1117,[3092.82,3890.5,-0.556595],[[1095,2],[1143,2],[1144,2]]], [1118,[2808.91,5465.51,0.11234],[[1096,2],[1098,2],[1145,2],[1146,2],[1142,2],[1122,2]]], [1119,[2856.81,5335.84,0],[[1096,2],[1119,2]]], [1120,[2709.35,5294.92,0.313523],[[1097,2]]], [1121,[2683.34,5448.09,0.035264],[[1097,2]]], +[1122,[2744.14,5430.14,0],[[1098,2],[1118,2]]], [1123,[2401.45,4886.01,0.1126],[[1099,2],[1147,2]]], [1124,[7481.91,2791.6,-0.466842],[[1100,2],[1148,2]]], [1125,[7582.29,2971.02,0],[[1100,2],[1149,2],[1125,2],[1150,2]]], [1126,[7544.53,3026.26,0],[[1100,2]]], [1127,[6691.16,2133.34,0.000126481],[[1101,2],[1151,2],[1152,2],[1153,2]]], +[1128,[6857.22,2242.08,0.268147],[[1101,2],[1154,2]]], [1129,[5948.08,2312.55,0.143036],[[1102,2],[1155,2]]], [1130,[6247.34,2183.78,0],[[1103,2],[1156,2]]], [1131,[5436.97,2494.67,-0.0973854],[[1104,2],[1157,2]]], [1132,[5233,2622,0.886297],[[1104,2],[1133,2],[1132,2],[1158,2]]], [1133,[5239.41,2599.32,0.360302],[[1132,2],[1184,2],[1133,2],[1104,2]]], +[1134,[4747.22,2180.15,0.414742],[[1105,2],[1159,2],[1160,2]]], [1135,[4688.67,2247,-0.217592],[[1702,2],[1108,2],[1105,2]]], [1136,[4686.52,2485.15,-0.00308609],[[1106,2]]], [1137,[4872.83,2879.11,0.0193396],[[1109,2]]], [1138,[4139.75,3086.52,0.148312],[[1110,2],[1162,2]]], [1139,[4979.58,7842.42,-1.13],[[1112,2],[1163,2]]], +[1140,[4320.17,7941.56,-0.103336],[[1113,2],[1164,2]]], [1141,[2697.42,6861.81,0],[[1114,2]]], [1142,[2795.32,5647.52,-0.424664],[[1115,2],[1118,2],[1142,2],[1146,2]]], [1143,[3035.28,3792.13,0],[[1117,2],[1165,2]]], [1144,[3183.94,3840.86,0.613846],[[1117,2],[1166,2]]], [1145,[2812.45,5427.91,0],[[1118,2]]], +[1146,[2775.14,5552.77,0.31696],[[1118,2],[1142,2]]], [1147,[2305.88,4903.59,-0.312428],[[1123,2],[1167,2]]], [1148,[7474.61,2685.46,0.0195144],[[1124,2],[1168,2],[1148,2],[1169,2],[1170,2]]], [1149,[7553.39,2975.04,0],[[1125,2]]], [1150,[7665.53,2952.14,-0.171948],[[1125,2],[1171,2],[1150,2],[1172,2]]], [1151,[6600.46,2164.94,2.00048],[[1151,2]]], +[1152,[6790.78,2122.21,0],[[1127,2],[1173,2]]], [1153,[6688.8,2029.62,-0.855307],[[1127,2],[1174,2],[1153,2],[1175,2]]], [1154,[6957.46,2243.7,0.096632],[[1128,2],[1176,2],[1177,2],[1178,2],[1179,2]]], [1155,[5853.23,2200.63,-0.0719395],[[1129,2],[1180,2]]], [1156,[6335.58,2106.33,0.0654335],[[1130,2],[1181,2]]], [1157,[5454.56,2427.7,0.466583],[[1131,2],[1182,2],[1183,2]]], +[1158,[5240.02,2707.17,-0.618401],[[1132,2],[1185,2],[1158,2],[1186,2]]], [1159,[4626.78,2082.53,1.58755],[[1134,2],[1187,2]]], [1160,[4802.34,2061.6,-0.453141],[[1134,2],[1188,2],[1160,2],[1189,2]]], [1161,[4774.12,2360.83,0.000111898],[[1107,2]]], [1162,[4104.41,3037.99,-0.153378],[[1138,2],[1190,2]]], [1163,[5020.94,7986.6,0.793999],[[1139,2],[1191,2]]], +[1164,[4285.23,8019.62,-0.74493],[[1140,2],[1192,2]]], [1165,[2974.19,3775.99,-0.00365829],[[1143,2],[1193,2],[1194,2]]], [1166,[3236.48,3818.21,-0.0476837],[[1144,2],[1195,2]]], [1167,[2183,4989.63,1.04349],[[1147,2],[1196,2]]], [1168,[7473.09,2734.15,0.544245],[[1148,2]]], [1169,[7321.56,2610.37,0.00360632],[[1148,2],[1197,2]]], +[1170,[7649.36,2698.26,0],[[1148,2],[1198,2]]], [1171,[7633.94,2958.74,0],[[1150,2]]], [1172,[7819.84,2928.48,-0.141862],[[1150,2],[1199,2],[1172,2],[1200,2],[1201,2]]], [1173,[6810.56,2139.16,0],[[1152,2],[1177,2],[1203,2]]], [1174,[6694.11,2051.94,-0.431733],[[1153,2]]], [1175,[6722.08,1871.94,-0.266943],[[1153,2],[1204,2]]], +[1176,[7087.4,2246.1,0.249863],[[1154,2],[1179,2],[1176,2],[1205,2]]], [1177,[6900.13,2182.81,0],[[1154,2],[1173,2]]], [1178,[6960.03,2321.97,0],[[1154,2]]], [1179,[7060.31,2245.63,0.273787],[[1176,2],[1228,2],[1154,2],[1179,2]]], [1180,[5785.8,2111.33,0.809474],[[1155,2],[1206,2],[1207,2]]], [1181,[6477.58,2105.16,-0.101686],[[1156,2],[1202,2]]], +[1182,[5520.75,2276.69,-0.0538864],[[1157,2],[1208,2],[1206,2]]], [1183,[5418.59,2315.9,0.164877],[[1157,2],[1209,2]]], [1184,[5260.42,2586.4,0.248268],[[1133,2]]], [1185,[5221.25,2685.3,-0.249214],[[1158,2]]], [1186,[5266.86,2791.94,2.35449],[[1158,2]]], [1187,[4521.28,2035.03,0],[[1159,2],[1210,2]]], +[1188,[4801.98,2081.91,-0.533616],[[1160,2]]], [1189,[4791.33,1942.91,0],[[1160,2],[1211,2],[1212,2]]], [1190,[4052.89,2962.62,-0.0690231],[[1162,2],[1213,2]]], [1191,[5022.44,8098.34,0.021446],[[1163,2],[1214,2]]], [1192,[4219.31,8052.28,1.59131],[[1164,2],[1215,2]]], [1193,[2950.22,3824.91,0.247379],[[1165,2],[1193,2],[1216,2]]], +[1194,[2991.57,3683.94,-0.0054512],[[1165,2],[1217,2],[1194,2],[1218,2]]], [1195,[3347.38,3834.96,2.07809],[[1166,2],[1219,2],[1220,2]]], [1196,[2060.13,5075.66,-1.90176],[[1167,2],[1221,2]]], [1197,[7344.64,2556.13,-0.230425],[[1169,2],[1222,2],[1223,2],[1224,2]]], [1198,[7711.07,2685.13,-0.00432285],[[1170,2],[1225,2],[1226,2]]], [1199,[7780.95,2926.7,-0.0510626],[[1172,2]]], +[1200,[7837.59,2856.53,-0.0197385],[[1172,2],[1226,2],[1200,2]]], [1201,[7893.33,3043.48,0],[[1172,2]]], [1202,[6541.66,2153.11,-0.034078],[[1151,2],[1181,2],[1202,2]]], [1203,[6806.38,2148.81,0],[[1173,2]]], [1204,[6720.66,1754.95,0.374523],[[1175,2],[1227,2]]], [1205,[7249.61,2264.19,-0.83753],[[1176,2],[1229,2],[1223,2]]], +[1206,[5637.13,2188.01,0.180948],[[1180,2],[1182,2],[1208,2]]], [1207,[5910.61,2036.32,0],[[1180,2],[1230,2]]], [1208,[5593.81,2213.01,-0.273045],[[1182,2],[1206,2],[1231,2]]], [1209,[5368.01,2292.42,0.887889],[[1183,2],[1232,2],[1209,2],[1233,2]]], [1210,[4470.85,2032.69,0],[[1187,2],[1234,2],[1235,2]]], [1211,[4701.72,1866.94,0],[[1189,2],[1236,2],[1237,2],[1212,2]]], +[1212,[4763.04,1874.81,0],[[1189,2],[1211,2]]], [1213,[4038.78,2878.08,0.343788],[[1190,2],[1238,2]]], [1214,[4937.14,8149.87,-0.015923],[[1191,2],[1239,2]]], [1215,[4161.47,8098.5,0.553049],[[1192,2],[1240,2]]], [1216,[2800.08,3784.45,0.464432],[[1193,2],[1241,2]]], [1217,[3082.5,3545.33,0.33371],[[1194,2],[1242,2]]], +[1218,[2948.57,3666.57,0.0780894],[[1194,2],[1243,2],[1218,2],[1244,2]]], [1219,[3492.06,3814.69,-0.722066],[[1195,2],[1245,2],[1219,2]]], [1220,[3341.39,3716.97,0.191971],[[1195,2],[1246,2]]], [1221,[2004.73,5098.46,-1.22513],[[1196,2],[1247,2]]], [1222,[7500.52,2489.34,-0.000719547],[[1197,2],[1248,2]]], [1223,[7274.61,2466.32,0],[[1197,2],[1205,2],[1249,2],[1223,2]]], +[1224,[7289.42,2507.29,0],[[1249,2],[1197,2]]], [1225,[7730.52,2650.8,0],[[1198,2],[1225,2],[1250,2]]], [1226,[7830.76,2754.56,-0.00320927],[[1198,2],[1200,2],[1251,2],[1252,2]]], [1227,[6742.71,1738.14,0.294484],[[1204,2],[1253,2],[1254,2]]], [1228,[7036.36,2245.21,-1.29136],[[1179,2]]], [1229,[7271.98,2157.79,0.00877428],[[1205,2],[1255,2]]], +[1230,[6007.03,1921.41,-1.12438],[[1207,2],[1256,2]]], [1231,[5591.64,2147.57,-0.0645218],[[1208,2]]], [1232,[5396.49,2303.44,1.15482],[[1209,2]]], [1233,[5329.1,2162.35,0.41421],[[1209,2],[1257,2],[1258,2]]], [1234,[4296.28,2035.03,0],[[1210,2],[1259,2]]], [1235,[4470.52,1893.59,0.439945],[[1210,2],[1237,2]]], +[1236,[4644.55,1892.48,0.00176048],[[1211,2],[1237,2],[1260,2]]], [1237,[4607.5,1829.17,0.621732],[[1211,2],[1235,2],[1236,2],[1261,2],[1237,2],[1260,2],[1262,2]]], [1238,[3993.47,2857.28,-0.181293],[[1213,2],[1263,2]]], [1239,[4832.13,8190.9,0.00160789],[[1214,2],[1264,2]]], [1240,[4065.25,8208.39,0.245684],[[1215,2],[1265,2],[1266,2]]], [1241,[2654.92,3799.02,3.72025],[[1216,2],[1267,2]]], +[1242,[2946.72,3475.76,0.389282],[[1217,2],[1268,2]]], [1243,[2960.87,3673.32,0.0650406],[[1218,2]]], [1244,[2866.73,3634.42,0],[[1218,2]]], [1245,[3511.53,3820,-0.472041],[[1219,2],[1245,2],[1269,2]]], [1246,[3336.42,3641.94,-1.64821],[[1220,2],[1270,2]]], [1247,[1976.66,5140.28,0.203752],[[1221,2],[1271,2]]], +[1248,[7563.73,2409.88,0],[[1222,2],[1272,2]]], [1249,[7272.22,2495.47,0],[[1223,2],[1224,2],[1249,2]]], [1250,[7752.95,2652.44,0],[[1225,2]]], [1251,[7917.23,2767,0],[[1226,2],[1273,2],[1252,2],[1251,2]]], [1252,[7901.41,2759.22,0],[[1251,2],[1297,2],[1252,2],[1226,2]]], [1253,[6725.78,1683.25,-0.318157],[[1227,2],[1253,2],[1274,2]]], +[1254,[6877.28,1775.61,0.412142],[[1227,2],[1275,2]]], [1255,[7296.63,2086.95,0.027586],[[1229,2],[1276,2],[1255,2],[1277,2],[1278,2]]], [1256,[6029.73,1843.77,0.0407863],[[1230,2],[1279,2]]], [1257,[5285.23,2133.99,0.409143],[[1233,2],[1280,2],[1257,2]]], [1258,[5441.19,2083.46,0.189957],[[1233,2],[1258,2]]], [1259,[4146.28,2035.03,0.39757],[[1234,2],[1281,2]]], +[1260,[4597.42,1877.85,0],[[1236,2],[1237,2]]], [1261,[4620.98,1778.28,-0.00984573],[[1237,2],[1282,2]]], [1262,[4618.7,1781.98,0],[[1237,2],[1283,2],[1262,2]]], [1263,[3918.09,2908.8,-1.06861],[[1238,2],[1284,2]]], [1264,[4710.78,8279.09,0.480645],[[1239,2],[1285,2],[1286,2]]], [1265,[4153.11,8309.74,0.512983],[[1240,2],[1287,2]]], +[1266,[3952.45,8232.63,2.69457],[[1240,2],[1288,2]]], [1267,[2547.66,3801.99,0.126724],[[1241,2],[1289,2]]], [1268,[2920.69,3428.19,0.417976],[[1242,2],[1290,2],[1291,2],[1268,2],[1292,2]]], [1269,[3438.83,3835.98,0.226349],[[1245,2]]], [1270,[3345.52,3612.21,0.00468445],[[1246,2]]], [1271,[1897.81,5187.34,-3.23493],[[1247,2],[1293,2]]], +[1272,[7570.33,2292.16,0],[[1248,2],[1294,2]]], [1273,[7966.18,2785.41,0],[[1251,2],[1273,2],[1295,2],[1296,2]]], [1274,[6778.21,1612.35,0],[[1253,2],[1274,2],[1298,2]]], [1275,[6971.97,1887.26,1.78656],[[1254,2],[1299,2]]], [1276,[7299.62,2118.1,-0.110406],[[1255,2]]], [1277,[7300.23,1978.2,-0.0773083],[[1255,2],[1300,2],[1277,2],[1301,2]]], +[1278,[7366.52,2079.01,0.00110706],[[1255,2],[1302,2],[1300,2],[1303,2]]], [1279,[6025.08,1733.37,-0.00919199],[[1256,2],[1304,2]]], [1280,[5293.39,2056.45,0.507399],[[1257,2],[1305,2],[1306,2],[1280,2]]], [1281,[4071.91,2034.35,0.294733],[[1259,2],[1307,2],[1308,2],[1309,2]]], [1282,[4646.54,1711.72,-0.118507],[[1261,2],[1310,2],[1311,2]]], [1283,[4617.89,1772.38,0.313042],[[1283,2],[1262,2]]], +[1284,[3814.92,2971.63,0.056406],[[1263,2],[1312,2]]], [1285,[4661.01,8366.17,0.470486],[[1264,2],[1286,2],[1285,2],[1313,2]]], [1286,[4641.16,8335.49,-0.0229959],[[1285,2],[1342,2],[1286,2],[1264,2]]], [1287,[4194.13,8371.39,-0.524218],[[1265,2],[1314,2]]], [1288,[3872.36,8227.79,0.273875],[[1266,2],[1315,2]]], [1289,[2452.41,3801.35,-0.433205],[[1267,2],[1316,2],[1317,2]]], +[1290,[2958.5,3345.93,0.721626],[[1268,2],[1292,2],[1290,2],[1318,2]]], [1291,[2919.17,3451.66,0.723223],[[1268,2]]], [1292,[2972.78,3380.06,-0.228821],[[1290,2],[1349,2],[1268,2],[1292,2]]], [1293,[1810.98,5277.1,-1.50363],[[1271,2],[1319,2]]], [1294,[7587.91,2188.17,0.0138993],[[1272,2],[1320,2]]], [1295,[8086.38,2787.2,-0.391054],[[1273,2],[1296,2],[1295,2],[1321,2]]], +[1296,[8058.91,2798.79,0],[[1295,2],[1352,2],[1296,2],[1273,2]]], [1297,[7885.27,2758.37,0],[[1252,2]]], [1298,[6797.12,1566.32,-0.416361],[[1274,2],[1322,2],[1298,2]]], [1299,[7044.19,1923.06,0.0731058],[[1275,2],[1323,2],[1324,2]]], [1300,[7309.54,1937.65,-0.0465122],[[1277,2],[1278,2],[1325,2],[1302,2],[1323,2]]], [1301,[7357.09,1998.6,0.0017128],[[1277,2]]], +[1302,[7396.28,1965.42,0.201339],[[1278,2],[1300,2],[1326,2],[1327,2],[1303,2]]], [1303,[7448.32,2037.79,0],[[1278,2],[1302,2],[1303,2],[1327,2],[1328,2],[1320,2]]], [1304,[6041.8,1708.89,-0.0317002],[[1279,2],[1329,2],[1304,2],[1330,2]]], [1305,[5176.31,1997.77,-0.0439491],[[1280,2],[1331,2]]], [1306,[5307.73,2073.09,0.736033],[[1280,2]]], [1307,[3891.31,2020.82,0.691724],[[1281,2],[1332,2],[1333,2],[1334,2]]], +[1308,[4072.58,2204.98,-0.03157],[[1281,2],[1335,2]]], [1309,[4081.33,1860.18,-0.68863],[[1281,2],[1336,2],[1337,2]]], [1310,[4636.11,1594.43,-0.476501],[[1282,2],[1338,2],[1310,2],[1339,2]]], [1311,[4781.84,1679.43,-0.0572433],[[1282,2],[1340,2]]], [1312,[3701.81,2927.72,0.0298424],[[1284,2],[1341,2]]], [1313,[4707.45,8452.58,-0.206407],[[1285,2],[1343,2],[1313,2],[1344,2],[1345,2]]], +[1314,[4146.02,8444.87,-0.0419636],[[1287,2],[1346,2]]], [1315,[3772.73,8169.05,-0.348221],[[1288,2],[1347,2]]], [1316,[2357.29,3817.2,-0.666756],[[1289,2],[1317,2],[1316,2],[1348,2]]], [1317,[2370.44,3785.78,0.00669098],[[1316,2],[1381,2],[1289,2],[1317,2]]], [1318,[2882.92,3234.01,0.225258],[[1290,2],[1350,2]]], [1319,[1750.75,5395.99,3.30036],[[1293,2],[1351,2]]], +[1320,[7567.58,2123.55,0],[[1294,2],[1303,2],[1328,2]]], [1321,[8262.7,2672.82,0],[[1295,2],[1353,2]]], [1322,[6830.18,1448.76,-0.119323],[[1298,2],[1354,2],[1322,2],[1355,2]]], [1323,[7155.05,1921.23,0.014099],[[1299,2],[1300,2],[1324,2],[1323,2]]], [1324,[7121.56,1920.61,-3.24249e-005],[[1323,2],[1390,2],[1299,2],[1324,2]]], [1325,[7332.8,1877.45,-0.104207],[[1300,2],[1356,2],[1325,2],[1326,2]]], +[1326,[7416.88,1912.62,-0.134415],[[1302,2],[1325,2],[1357,2]]], [1327,[7476.27,1990.31,0],[[1302,2],[1303,2],[1358,2],[1327,2]]], [1328,[7572.05,2087.01,0],[[1303,2],[1320,2],[1359,2],[1360,2]]], [1329,[6023.17,1673.53,-0.0286868],[[1304,2],[1329,2],[1361,2]]], [1330,[6093,1644.74,0],[[1304,2]]], [1331,[5094,1911.11,2.78123],[[1305,2],[1362,2]]], +[1332,[3778.61,2115.54,0.112677],[[1307,2],[1334,2],[1332,2],[1363,2]]], [1333,[3877.14,1969.12,1.80625],[[1307,2],[1364,2],[1365,2]]], [1334,[3805.59,2080.02,0.0801115],[[1332,2],[1397,2],[1334,2],[1307,2]]], [1335,[4068.85,2278.3,-0.177816],[[1308,2],[1366,2],[1367,2]]], [1336,[4072.5,1687.34,0],[[1309,2],[1368,2]]], [1337,[4115.12,1809.48,-0.033378],[[1309,2],[1369,2],[1370,2],[1337,2]]], +[1338,[4649.8,1475.72,0.0129013],[[1310,2],[1371,2]]], [1339,[4593.67,1595.08,-0.85803],[[1310,2],[1372,2],[1373,2]]], [1340,[4846.94,1818.14,0.0828285],[[1311,2],[1374,2],[1375,2]]], [1341,[3627.63,2874.51,-0.156548],[[1312,2],[1376,2]]], [1342,[4661.38,8315.46,-0.0856869],[[1286,2]]], [1343,[4701.56,8432.07,-0.41315],[[1313,2]]], +[1344,[4805.08,8445.02,0],[[1313,2],[1377,2]]], [1345,[4557.42,8556.79,-0.453671],[[1313,2],[1378,2]]], [1346,[4110.27,8486.18,0.126636],[[1314,2],[1379,2]]], [1347,[3648.09,8191.14,-0.059803],[[1315,2],[1380,2]]], [1348,[2284.2,3945.71,0.0491982],[[1316,2],[1348,2],[1382,2],[1383,2]]], [1349,[2954.88,3392.42,0.066302],[[1292,2]]], +[1350,[2865.58,3187.26,-0.132584],[[1318,2],[1384,2]]], [1351,[1694.55,5492.5,0.147196],[[1319,2],[1385,2]]], [1352,[8034.26,2792.45,0],[[1296,2]]], [1353,[8358.52,2601.33,0.00997658],[[1321,2],[1386,2],[1387,2],[1388,2]]], [1354,[6817.28,1480.59,0.39876],[[1322,2]]], [1355,[6833.5,1347.46,0.299202],[[1322,2],[1389,2]]], +[1356,[7344.26,1833.41,-0.0229617],[[1325,2],[1356,2],[1357,2]]], [1357,[7481.59,1910.57,0.000303109],[[1326,2],[1356,2],[1391,2],[1358,2]]], [1358,[7501.11,1983.97,0],[[1327,2],[1357,2],[1392,2]]], [1359,[7652.54,2108.67,0],[[1328,2],[1393,2],[1359,2],[1360,2]]], [1360,[7622.04,2014.72,0],[[1328,2],[1359,2],[1394,2],[1391,2],[1395,2]]], [1361,[5937.83,1669.79,0.176243],[[1329,2],[1396,2]]], +[1362,[5044.16,1880.46,0.0110779],[[1331,2],[1374,2]]], [1363,[3713.47,2188.13,-0.494848],[[1332,2],[1363,2],[1398,2]]], [1364,[3880.89,1895.42,0.0856069],[[1333,2],[1399,2],[1400,2]]], [1365,[3776.64,1961.43,0.333286],[[1333,2],[1401,2],[1402,2]]], [1366,[4064.02,2333.64,-0.132822],[[1335,2],[1403,2],[1404,2],[1405,2]]], [1367,[4050.16,2287.64,0],[[1335,2]]], +[1368,[4075.29,1588.68,-0.190817],[[1336,2],[1406,2],[1368,2],[1407,2]]], [1369,[4117.5,1616.17,0],[[1337,2],[1407,2]]], [1370,[4113.93,1831.14,-0.102428],[[1337,2]]], [1371,[4741.53,1417.09,-0.546844],[[1338,2],[1408,2]]], [1372,[4586.44,1740.46,0.117184],[[1339,2],[1409,2]]], [1373,[4574.73,1533.93,-0.033062],[[1339,2],[1410,2],[1373,2]]], +[1374,[4949.03,1851.33,-0.623468],[[1340,2],[1362,2],[1411,2],[1374,2]]], [1375,[4894.14,1849.84,-3.51683],[[1411,2],[1340,2]]], [1376,[3613.18,2822.58,0],[[1341,2],[1412,2],[1413,2]]], [1377,[4852.7,8523.14,0],[[1344,2],[1414,2]]], [1378,[4469.19,8614.99,-0.591567],[[1345,2],[1415,2]]], [1379,[4113.27,8556.54,0.662651],[[1346,2],[1379,2],[1416,2]]], +[1380,[3549.55,8256.51,0.422441],[[1347,2],[1417,2]]], [1381,[2400.05,3788.35,0.0192286],[[1317,2]]], [1382,[2354,4044.51,-0.382965],[[1348,2],[1418,2]]], [1383,[2175.91,4013.61,0.223862],[[1348,2],[1419,2]]], [1384,[2891.55,3109.28,-0.135658],[[1350,2],[1420,2]]], [1385,[1581.41,5527.03,-0.15003],[[1351,2],[1421,2]]], +[1386,[8340.71,2792.63,0],[[1353,2],[1422,2]]], [1387,[8375.43,2404.27,0],[[1353,2],[1423,2]]], [1388,[8480.4,2577.65,0],[[1353,2],[1424,2],[1425,2]]], [1389,[6903.17,1294.82,-3.28394],[[1355,2],[1426,2]]], [1390,[7090.17,1915.8,0.641793],[[1324,2]]], [1391,[7532.11,1945.55,0],[[1357,2],[1360,2],[1394,2]]], +[1392,[7522.09,1956.41,0],[[1358,2]]], [1393,[7653.14,2104.36,0],[[1359,2]]], [1394,[7575.19,1900.56,0],[[1360,2],[1391,2],[1427,2],[1394,2],[1428,2]]], [1395,[7660.55,2073.98,0],[[1360,2]]], [1396,[5882.3,1629.69,-0.59396],[[1361,2],[1429,2]]], [1397,[3824.57,2059.13,0.259508],[[1334,2]]], +[1398,[3698.42,2235.97,-0.873536],[[1363,2]]], [1399,[3825.6,1902.41,-0.110734],[[1364,2],[1430,2],[1402,2],[1431,2],[1399,2]]], [1400,[3846.19,1836.7,-0.0902023],[[1364,2],[1432,2]]], [1401,[3750.61,2010.76,-0.111999],[[1365,2]]], [1402,[3725.74,1955.14,1.02424],[[1365,2],[1399,2],[1433,2],[1430,2],[1434,2]]], [1403,[4112.63,2329.91,-0.0330565],[[1366,2],[1435,2],[1403,2],[1436,2],[1405,2]]], +[1404,[3958.39,2325.19,-0.00671816],[[1366,2],[1437,2],[1405,2],[1404,2],[1438,2],[1439,2],[1440,2],[1441,2]]], [1405,[4055.11,2400.68,0],[[1366,2],[1403,2],[1404,2],[1442,2],[1437,2],[1436,2]]], [1406,[3958.64,1520.38,-1.15683],[[1368,2],[1443,2],[1444,2],[1406,2]]], [1407,[4117.5,1600.55,0],[[1368,2],[1369,2],[1445,2]]], [1408,[4871.5,1342.1,1.28723],[[1371,2],[1446,2]]], [1409,[4527.59,1794.24,-0.504549],[[1372,2],[1447,2]]], +[1410,[4541.42,1461.49,0.431356],[[1373,2],[1448,2],[1449,2]]], [1411,[4916.83,1855.45,-0.197178],[[1374,2],[1375,2],[1411,2]]], [1412,[3592.52,2686.43,0],[[1376,2]]], [1413,[3563.35,2826.42,0],[[1376,2],[1450,2],[1451,2]]], [1414,[4921.18,8575.97,5.62115],[[1377,2],[1414,2],[1452,2]]], [1415,[4380.5,8697.87,-0.289427],[[1378,2],[1453,2]]], +[1416,[4122.14,8678.57,0.853146],[[1379,2],[1454,2]]], [1417,[3409.13,8254.36,0.226517],[[1380,2],[1455,2],[1456,2]]], [1418,[2351.61,4147.89,0.0670242],[[1382,2],[1418,2]]], [1419,[2091.67,4112.73,2.74694],[[1383,2],[1457,2]]], [1420,[2916.36,3024.56,-0.12883],[[1384,2],[1458,2]]], [1421,[1484.48,5582.51,-2.45182],[[1385,2],[1459,2]]], +[1422,[8311.92,2961.74,0],[[1386,2],[1460,2]]], [1423,[8363.04,2377.83,0],[[1387,2],[1461,2],[1462,2],[1463,2]]], [1424,[8621.77,2602.47,0],[[1388,2],[1464,2]]], [1425,[8515.82,2466.83,-9.53674e-007],[[1388,2],[1465,2]]], [1426,[6948.86,1266.86,0],[[1389,2]]], [1427,[7523.5,1843.56,0],[[1394,2],[1466,2],[1427,2]]], +[1428,[7612.8,1771.01,0],[[1394,2],[1467,2]]], [1429,[5856.43,1559.23,-0.594402],[[1396,2],[1468,2],[1429,2],[1469,2]]], [1430,[3745.52,1902.13,1.1002],[[1399,2],[1402,2],[1470,2],[1432,2],[1471,2]]], [1431,[3846.56,1899.36,-0.0720634],[[1399,2]]], [1432,[3820.26,1823.5,-1.6337],[[1400,2],[1430,2],[1470,2],[1472,2]]], [1433,[3626.27,2032.74,0.416402],[[1402,2],[1473,2],[1433,2],[1474,2]]], +[1434,[3670.05,2033.63,-0.458875],[[1473,2],[1402,2]]], [1435,[4157.1,2338.84,0.0146503],[[1403,2],[1475,2],[1476,2]]], [1436,[4094.64,2385.79,0],[[1403,2],[1405,2]]], [1437,[4007.56,2403.75,-0.530437],[[1404,2],[1405,2],[1477,2],[1478,2],[1442,2]]], [1438,[3844.05,2358.52,0.117289],[[1438,2],[1404,2],[1479,2]]], [1439,[3916.08,2321.21,0],[[1404,2]]], +[1440,[3938.84,2238.79,-0.129449],[[1404,2],[1480,2],[1440,2]]], [1441,[3965.02,2302.84,0],[[1404,2]]], [1442,[4055.64,2443.31,0],[[1405,2],[1437,2],[1442,2],[1478,2]]], [1443,[4067.29,1391.66,0.389645],[[1406,2],[1481,2],[1443,2],[1482,2]]], [1444,[3793.96,1586.43,-0.209108],[[1406,2],[1483,2],[1472,2],[1484,2],[1485,2],[1486,2]]], [1445,[4152.52,1608.34,0],[[1407,2],[1445,2],[1487,2]]], +[1446,[4944.3,1295.13,-0.579656],[[1408,2],[1488,2],[1489,2]]], [1447,[4428.89,1864.65,0.142153],[[1409,2],[1490,2],[1449,2]]], [1448,[4568.66,1476.58,0.051012],[[1410,2]]], [1449,[4345.88,1451.07,0],[[1410,2],[1447,2],[1490,2]]], [1450,[3397.53,2836.84,0.15535],[[1413,2],[1491,2]]], [1451,[3559.67,2836.37,0],[[1413,2]]], +[1452,[5115.38,8759.28,9.53674e-007],[[1414,2],[1492,2]]], [1453,[4335.65,8689.52,0.69796],[[1415,2],[1493,2],[1494,2],[1453,2]]], [1454,[4118.82,8688.16,0.290382],[[1416,2],[1495,2],[1496,2]]], [1455,[3236.05,8260.3,-0.665346],[[1417,2],[1497,2]]], [1456,[3405.77,8214.35,0.0521851],[[1417,2]]], [1457,[2013.58,4220.74,2.33274],[[1419,2],[1498,2]]], +[1458,[2962.73,3023.25,-0.415741],[[1420,2],[1499,2],[1458,2],[1500,2]]], [1459,[1404.59,5655.78,0.00717163],[[1421,2],[1501,2]]], [1460,[8334.73,3038.22,0],[[1422,2]]], [1461,[8406.01,2219.13,0],[[1423,2],[1502,2],[1461,2],[1503,2]]], [1462,[8226.07,2452.98,0],[[1423,2],[1504,2]]], [1463,[8256.82,2342.7,0],[[1423,2],[1505,2]]], +[1464,[8761.84,2584.04,0],[[1424,2],[1506,2]]], [1465,[8553.45,2465.43,0],[[1425,2]]], [1466,[7458.47,1785.01,0],[[1427,2],[1507,2],[1466,2]]], [1467,[7638.67,1631.16,0],[[1428,2],[1508,2]]], [1468,[5854.1,1581.13,-0.252486],[[1429,2]]], [1469,[5874,1385.9,0.398209],[[1429,2],[1509,2]]], +[1470,[3764.2,1842.65,-0.575736],[[1430,2],[1432,2],[1510,2],[1470,2],[1511,2]]], [1471,[3655.15,1913.77,-0.0517391],[[1430,2],[1512,2],[1471,2],[1513,2],[1514,2]]], [1472,[3795.46,1745.02,-0.719632],[[1432,2],[1444,2],[1515,2],[1472,2],[1516,2],[1511,2]]], [1473,[3650.44,2041.73,-0.0142784],[[1433,2],[1434,2],[1473,2]]], [1474,[3453.38,1993.31,-0.0368481],[[1433,2],[1517,2]]], [1475,[4217.22,2323.06,-0.181968],[[1435,2],[1518,2],[1519,2],[1520,2]]], +[1476,[4161.53,2378.47,0],[[1435,2]]], [1477,[3926.72,2399.76,0],[[1437,2]]], [1478,[4011.14,2456.62,-0.436967],[[1437,2],[1442,2],[1521,2],[1522,2]]], [1479,[3852.35,2339.48,-0.112977],[[1438,2]]], [1480,[3898.58,2245.53,0.79292],[[1440,2]]], [1481,[4023.11,1294.12,-0.213669],[[1443,2],[1481,2],[1523,2],[1524,2],[1525,2],[1482,2]]], +[1482,[4005.2,1387.28,0.0298211],[[1443,2],[1481,2],[1526,2]]], [1483,[3919.42,1631.45,-0.754831],[[1444,2],[1486,2],[1483,2],[1527,2]]], [1484,[3766.56,1532.55,0.0152922],[[1444,2]]], [1485,[3683.05,1596.66,-0.318178],[[1444,2],[1528,2],[1529,2],[1516,2]]], [1486,[3929.91,1603.2,0.131954],[[1483,2],[1565,2],[1486,2],[1444,2]]], [1487,[4202.33,1604.32,0],[[1445,2]]], +[1488,[5022.94,1421.21,0.0142326],[[1446,2],[1530,2]]], [1489,[4932.95,1204.22,0.169085],[[1446,2],[1531,2],[1489,2],[1532,2]]], [1490,[4322.07,1460.28,0.0557415],[[1447,2],[1449,2],[1490,2]]], [1491,[3300.23,2908.43,1.4994],[[1450,2],[1533,2]]], [1492,[5240.15,8874.66,0],[[1452,2],[1534,2]]], [1493,[4271.88,8626.11,0.0557861],[[1453,2],[1495,2]]], +[1494,[4348.99,8699.73,0.957417],[[1453,2]]], [1495,[4229.92,8629.96,0.00815344],[[1454,2],[1493,2]]], [1496,[4026.83,8717.73,-0.00815153],[[1454,2],[1535,2]]], [1497,[3097.95,8256.62,1.4437],[[1455,2],[1536,2]]], [1498,[1966.21,4287.76,-0.140467],[[1457,2],[1537,2],[1538,2]]], [1499,[2941.72,3017.18,-0.0943108],[[1458,2]]], +[1500,[3043.07,3037.12,-0.550626],[[1458,2],[1539,2],[1533,2]]], [1501,[1353.36,5650.5,0.152784],[[1459,2],[1540,2]]], [1502,[8407.58,2053.84,0],[[1461,2],[1541,2]]], [1503,[8543.38,2225.47,0],[[1461,2],[1542,2],[1543,2]]], [1504,[8149.02,2448.26,0],[[1462,2],[1544,2],[1545,2]]], [1505,[8189.23,2274.87,4.76837e-007],[[1463,2],[1546,2]]], +[1506,[8835.42,2570.8,-1.27157e-006],[[1464,2],[1547,2],[1548,2]]], [1507,[7384.16,1718.1,-1.19209e-007],[[1466,2],[1549,2],[1507,2],[1550,2]]], [1508,[7672.85,1534.63,-0.00376415],[[1467,2],[1551,2],[1508,2],[1552,2]]], [1509,[5813.63,1324.84,1.59476],[[1469,2],[1553,2]]], [1510,[3759.8,1862.53,0.0568132],[[1470,2]]], [1511,[3689.42,1776.65,-0.0533867],[[1470,2],[1472,2],[1516,2]]], +[1512,[3580,1863.05,-0.0512247],[[1471,2],[1554,2],[1512,2]]], [1513,[3682.09,1917.46,-0.703188],[[1471,2]]], [1514,[3622.95,1942.28,1.5031],[[1471,2]]], [1515,[3797.54,1779.92,-0.293383],[[1472,2]]], [1516,[3721.79,1727.79,-1.12919],[[1472,2],[1485,2],[1511,2],[1555,2],[1516,2],[1556,2]]], [1517,[3303.58,2001.18,0.0521221],[[1474,2],[1557,2]]], +[1518,[4205.2,2466.49,-0.00312519],[[1475,2]]], [1519,[4296.03,2298.46,-2.25492],[[1475,2]]], [1520,[4202.89,2261.73,0.115687],[[1475,2],[1558,2],[1559,2],[1520,2]]], [1521,[4019.08,2512.01,-1.63393],[[1478,2]]], [1522,[3941.44,2484.62,0.20232],[[1478,2]]], [1523,[4097.33,1215.01,0.108616],[[1481,2],[1523,2]]], +[1524,[3919.77,1239.92,0.452069],[[1481,2],[1560,2],[1561,2],[1562,2]]], [1525,[4029.91,1253.07,-0.015378],[[1481,2]]], [1526,[3948.44,1371.75,0.225019],[[1482,2],[1563,2],[1564,2],[1561,2]]], [1527,[3887.21,1661.75,-0.480275],[[1483,2],[1527,2],[1566,2]]], [1528,[3602.41,1598.04,0.200594],[[1485,2],[1567,2],[1528,2],[1568,2]]], [1529,[3683.51,1510.47,-0.365853],[[1485,2],[1569,2],[1570,2]]], +[1530,[5078.81,1433.85,0.619923],[[1488,2],[1571,2]]], [1531,[4917.84,1217.07,-0.0054884],[[1489,2]]], [1532,[5070.31,1097.33,0.293938],[[1489,2],[1572,2]]], [1533,[3194.16,3014.5,0.933151],[[1491,2],[1500,2]]], [1534,[5341.63,9020.58,0],[[1492,2],[1573,2]]], [1535,[3994.22,8821.18,-0.0371096],[[1496,2],[1574,2]]], +[1536,[3027.34,8186.3,0.284906],[[1497,2],[1575,2]]], [1537,[1990.55,4393.23,-0.016407],[[1498,2],[1576,2],[1577,2],[1537,2]]], [1538,[1899.88,4284.13,0.749925],[[1498,2],[1578,2],[1538,2],[1579,2]]], [1539,[3061.13,2986.3,0.20564],[[1500,2],[1580,2],[1539,2],[1581,2]]], [1540,[1324.52,5641.16,0.166012],[[1501,2],[1582,2],[1583,2]]], [1541,[8410.91,1994.96,0],[[1502,2],[1584,2],[1585,2],[1541,2]]], +[1542,[8551.43,2169.04,-9.53674e-007],[[1503,2]]], [1543,[8595.38,2258.46,-6.35783e-007],[[1503,2],[1543,2],[1586,2],[1587,2]]], [1544,[8147.02,2333.92,0],[[1504,2],[1546,2]]], [1545,[8006.48,2387.84,4.76837e-007],[[1504,2],[1588,2]]], [1546,[8158.98,2221.11,0],[[1505,2],[1544,2],[1589,2]]], [1547,[8985.22,2609.31,0],[[1506,2],[1590,2]]], +[1548,[8846.21,2460.48,0],[[1506,2]]], [1549,[7335.83,1687.37,-0.0130129],[[1507,2],[1550,2]]], [1550,[7295.91,1638.64,-0.0216947],[[1507,2],[1549,2],[1591,2],[1592,2],[1550,2]]], [1551,[7665.42,1554.18,-0.0116932],[[1508,2]]], [1552,[7726.59,1453.46,-0.111958],[[1508,2],[1593,2]]], [1553,[5799.85,1314.34,0.185287],[[1509,2],[1553,2],[1594,2]]], +[1554,[3527.62,1827.18,0.584777],[[1512,2],[1595,2],[1596,2],[1597,2]]], [1555,[3766.59,1728.85,-1.85429],[[1516,2]]], [1556,[3708.88,1681.66,0],[[1516,2]]], [1557,[3153.78,2009.06,-0.0219364],[[1517,2],[1598,2]]], [1558,[4186.46,2165.15,-0.000684738],[[1520,2],[1599,2],[1600,2],[1558,2]]], [1559,[4205.86,2273.34,-0.0665383],[[1520,2]]], +[1560,[3902.52,1153.41,0],[[1524,2]]], [1561,[3933.92,1290.84,0.0610933],[[1524,2],[1526,2],[1601,2],[1562,2],[1564,2]]], [1562,[3863.33,1274.08,-0.0356248],[[1524,2],[1561,2],[1602,2],[1601,2]]], [1563,[3924.14,1372.23,-0.0246716],[[1526,2]]], [1564,[3949.11,1331.1,0.464237],[[1526,2],[1561,2]]], [1565,[3897.68,1599.12,-0.550445],[[1486,2]]], +[1566,[3859.92,1662.07,0.0307236],[[1527,2]]], [1567,[3466.3,1525.56,0.161823],[[1528,2],[1603,2]]], [1568,[3559.63,1652.85,-0.054081],[[1528,2],[1596,2]]], [1569,[3680.72,1401.48,-0.137044],[[1529,2],[1604,2],[1605,2],[1606,2]]], [1570,[3720.95,1517.28,0.0653372],[[1529,2]]], [1571,[5101.47,1434.19,0.340847],[[1530,2],[1607,2],[1571,2],[1608,2]]], +[1572,[5128.97,1030.46,-0.749547],[[1532,2],[1609,2]]], [1573,[5464.13,9182.19,0],[[1534,2],[1610,2]]], [1574,[3984.9,8847.18,-0.00151952],[[1535,2],[1611,2],[1612,2]]], [1575,[3020.06,8120.03,0.000804186],[[1536,2],[1613,2],[1575,2],[1614,2],[1615,2]]], [1576,[2015.23,4546.31,0.0272627],[[1537,2],[1616,2]]], [1577,[1983.1,4381.64,0.0795307],[[1537,2]]], +[1578,[1918.59,4353.75,0.0262451],[[1538,2]]], [1579,[1840.08,4176.63,-0.501198],[[1538,2]]], [1580,[3052.42,3002.1,0.118877],[[1539,2]]], [1581,[3069.64,2855.45,0.402393],[[1539,2],[1617,2]]], [1582,[1273.27,5735.17,-3.63832],[[1540,2],[1618,2]]], [1583,[1203.09,5542.29,-0.432549],[[1540,2],[1619,2]]], +[1584,[8473.68,1819.45,0],[[1541,2],[1620,2],[1621,2]]], [1585,[8405.9,2025.51,0],[[1541,2],[1585,2]]], [1586,[8667.24,2225.94,0],[[1543,2],[1622,2],[1586,2],[1623,2]]], [1587,[8640.89,2218.74,0],[[1622,2],[1543,2]]], [1588,[7962.93,2376.42,0],[[1545,2]]], [1589,[8113.22,2059.68,4.76837e-007],[[1546,2],[1624,2]]], +[1590,[9046.63,2570.55,-6.35783e-007],[[1547,2],[1590,2],[1625,2]]], [1591,[7193.73,1546.64,-0.0700164],[[1550,2],[1591,2]]], [1592,[7247.29,1599.12,0.0380658],[[1550,2]]], [1593,[7793.31,1447.27,0.536523],[[1552,2],[1626,2]]], [1594,[5723.45,1277.03,-1.08391],[[1553,2],[1627,2],[1594,2],[1628,2]]], [1595,[3456.4,1859.14,-0.158005],[[1554,2],[1629,2],[1595,2],[1630,2]]], +[1596,[3498.42,1727.84,-0.461559],[[1554,2],[1568,2],[1597,2],[1596,2]]], [1597,[3474.28,1746.8,-0.146221],[[1596,2],[1664,2],[1597,2],[1554,2]]], [1598,[3003.98,2016.93,-0.732013],[[1557,2],[1631,2]]], [1599,[4191.34,2105,-0.00220744],[[1558,2],[1632,2],[1633,2],[1634,2]]], [1600,[4188.58,2199.43,-0.0546074],[[1558,2]]], [1601,[3883.19,1310.51,0],[[1561,2],[1562,2],[1635,2],[1602,2]]], +[1602,[3782.19,1359.39,0.0125319],[[1562,2],[1601,2],[1635,2],[1602,2],[1636,2],[1605,2]]], [1603,[3373.19,1548.57,-0.0512733],[[1567,2],[1637,2]]], [1604,[3560.17,1417.95,0],[[1569,2],[1638,2]]], [1605,[3674.89,1331.57,0],[[1569,2],[1602,2],[1636,2],[1639,2]]], [1606,[3629.02,1371.56,0],[[1569,2]]], [1607,[5228.7,1397.31,-0.0395203],[[1571,2],[1640,2]]], +[1608,[5085.17,1503.05,0.252932],[[1608,2]]], [1609,[5243.64,1015.41,0.418278],[[1572,2],[1641,2]]], [1610,[5522.02,9269.13,-6.35783e-007],[[1573,2],[1642,2],[1643,2]]], [1611,[3965.58,8896.14,0.00565211],[[1574,2],[1644,2],[1645,2],[1612,2]]], [1612,[3943.34,8865.14,0.0298357],[[1574,2],[1611,2],[1646,2]]], [1613,[3022.79,8046.97,0],[[1575,2],[1647,2],[1648,2]]], +[1614,[3109.7,8070.13,-0.0489483],[[1575,2],[1615,2],[1614,2],[1649,2]]], [1615,[3111.38,8101.25,-0.0101423],[[1614,2],[1682,2],[1575,2],[1615,2]]], [1616,[2006.84,4568.66,0.00681567],[[1576,2],[1650,2],[1616,2],[1651,2]]], [1617,[2984.17,2814.3,0.567947],[[1581,2],[1652,2]]], [1618,[1214.58,5776.26,-1.26858],[[1582,2],[1653,2]]], [1619,[1100.06,5530.65,-0.234102],[[1583,2],[1654,2]]], +[1620,[8523.07,1747.92,0],[[1584,2],[1621,2],[1620,2],[1655,2]]], [1621,[8511.64,1744.02,0],[[1620,2],[1687,2],[1621,2],[1584,2]]], [1622,[8650.02,2213.3,0],[[1586,2],[1587,2]]], [1623,[8755.79,2205.44,0],[[1586,2],[1656,2]]], [1624,[8083.1,2015.36,0],[[1589,2],[1657,2],[1658,2]]], [1625,[9077.75,2549.93,0],[[1590,2],[1659,2],[1625,2]]], +[1626,[7868.5,1355.14,1.37374],[[1593,2],[1660,2]]], [1627,[5752.98,1276.28,0.26163],[[1594,2]]], [1628,[5658.72,1234.75,-1.59917],[[1594,2],[1661,2],[1628,2],[1662,2],[1663,2]]], [1629,[3470.86,1864.44,-0.0235262],[[1595,2]]], [1630,[3401.23,1816.56,2.69824],[[1595,2]]], [1631,[2983.02,2018.79,-0.954837],[[1598,2],[1665,2],[1666,2]]], +[1632,[4301.72,2106.67,-0.0404479],[[1599,2],[1634,2],[1632,2],[1667,2]]], [1633,[4152.69,2090.75,-0.343801],[[1599,2]]], [1634,[4268.97,2090.61,0],[[1632,2],[1701,2],[1634,2],[1599,2]]], [1635,[3835.11,1341.71,0],[[1601,2],[1602,2]]], [1636,[3695.86,1290.15,0],[[1602,2],[1605,2],[1668,2],[1638,2],[1669,2]]], [1637,[3349.49,1593.23,-0.111696],[[1603,2],[1637,2],[1670,2],[1671,2]]], +[1638,[3524.19,1308.13,-0.62047],[[1604,2],[1636,2],[1672,2],[1673,2],[1674,2],[1675,2]]], [1639,[3595,1330.56,0],[[1605,2]]], [1640,[5243.61,1368.08,0.285271],[[1607,2]]], [1641,[5330.36,965.619,0.161936],[[1609,2],[1676,2]]], [1642,[5510.6,9436.29,0],[[1610,2],[1677,2]]], [1643,[5570.2,9232.15,0],[[1610,2],[1678,2],[1679,2]]], +[1644,[3957.39,9016.2,0.00322509],[[1611,2],[1680,2]]], [1645,[3947.49,8866,-0.0539986],[[1611,2],[1645,2]]], [1646,[3810.89,8868.13,0.0345569],[[1612,2],[1681,2]]], [1647,[3085.64,8037.54,0],[[1613,2]]], [1648,[3019.14,8020.96,0.21962],[[1613,2]]], [1649,[3124.08,7984.41,-0.0173302],[[1614,2]]], +[1650,[2015.23,4621.31,0],[[1616,2]]], [1651,[1937.48,4526.64,0.0470099],[[1616,2],[1683,2],[1651,2],[1684,2]]], [1652,[2873.98,2799.91,0.823334],[[1617,2],[1685,2]]], [1653,[1178.65,5802.44,0],[[1618,2]]], [1654,[1014.34,5587.03,0.0788651],[[1619,2],[1686,2]]], [1655,[8603.12,1770.25,0],[[1620,2],[1688,2],[1689,2]]], +[1656,[8766.46,2116.08,4.76837e-007],[[1623,2],[1690,2]]], [1657,[8069.92,1842.77,0],[[1624,2],[1691,2]]], [1658,[8049.35,2140.44,0],[[1624,2],[1692,2]]], [1659,[9056.2,2409.16,0],[[1625,2],[1693,2],[1694,2]]], [1660,[7923.08,1281.86,-0.173691],[[1626,2],[1695,2]]], [1661,[5666.8,1264.37,0.0610542],[[1628,2]]], +[1662,[5562.91,1154.06,-1.64431],[[1628,2],[1663,2],[1662,2],[1696,2],[1697,2]]], [1663,[5569.03,1197.55,-0.024353],[[1662,2],[1729,2],[1628,2],[1663,2]]], [1664,[3484.74,1775.18,0.087333],[[1597,2]]], [1665,[2804.27,2027.44,0.412378],[[1631,2],[1698,2]]], [1666,[2969.02,2100.71,-0.305086],[[1631,2],[1699,2],[1700,2]]], [1667,[4386.49,2146.33,-0.340541],[[1632,2],[1702,2],[1703,2],[1667,2]]], +[1668,[3635.5,1289,0],[[1636,2],[1704,2]]], [1669,[3723.88,1295.65,0],[[1636,2]]], [1670,[3265.53,1513.11,-0.0668106],[[1637,2],[1670,2],[1705,2],[1706,2]]], [1671,[3295.61,1622.37,0],[[1637,2]]], [1672,[3505,1325.79,0.200514],[[1638,2]]], [1673,[3610.5,1289,0],[[1638,2]]], +[1674,[3397.79,1290.58,0.035985],[[1638,2],[1707,2],[1708,2]]], [1675,[3493.53,1158.17,0.0863771],[[1638,2],[1709,2]]], [1676,[5457.45,897.421,0.171969],[[1641,2],[1710,2]]], [1677,[5501.32,9577.27,0],[[1642,2],[1711,2]]], [1678,[5672.6,9095.28,0],[[1643,2],[1712,2]]], [1679,[5646.91,9257.62,0],[[1643,2],[1713,2]]], +[1680,[4023.73,9049.09,-0.0766141],[[1644,2],[1714,2]]], [1681,[3717.92,8861.38,-0.487149],[[1646,2],[1715,2]]], [1682,[3085.74,8113.01,0.00608571],[[1615,2]]], [1683,[1942.12,4657.59,0.390339],[[1651,2],[1683,2],[1716,2]]], [1684,[1747.5,4469,-0.0382824],[[1651,2],[1717,2]]], [1685,[2795.14,2797.04,0.9327],[[1652,2],[1718,2],[1685,2],[1719,2]]], +[1686,[998.186,5591.14,-0.0471745],[[1654,2],[1686,2],[1720,2],[1721,2]]], [1687,[8497.01,1763.52,0],[[1621,2]]], [1688,[8762.98,1692.15,0],[[1655,2],[1722,2]]], [1689,[8671.54,1895.78,0],[[1655,2],[1723,2]]], [1690,[8766.61,2068.97,3.17891e-007],[[1656,2],[1724,2],[1723,2]]], [1691,[8023.53,1757.38,-9.53674e-007],[[1657,2]]], +[1692,[7916.94,2188.53,0],[[1658,2],[1725,2]]], [1693,[8940.07,2257.07,0],[[1659,2],[1726,2]]], [1694,[9163.58,2347.84,1.90735e-006],[[1659,2],[1727,2]]], [1695,[7979.88,1241.74,-0.172431],[[1660,2],[1728,2]]], [1696,[5576.86,1123.63,0.0874252],[[1662,2]]], [1697,[5537.22,1040.58,-1.23018],[[1662,2],[1730,2],[1710,2],[1731,2],[1697,2]]], +[1698,[2752.02,2051.8,0.0976191],[[1665,2],[1732,2]]], [1699,[2976.47,2151.47,-0.130514],[[1666,2],[1733,2],[1700,2],[1699,2]]], [1700,[2938.67,2142.6,-0.125037],[[1699,2],[1773,2],[1666,2],[1700,2]]], [1701,[4246.75,2100.2,0],[[1634,2]]], [1702,[4520.65,2196.59,0.00346629],[[1667,2],[1135,2],[1734,2]]], [1703,[4366.17,2138.47,-0.402295],[[1667,2]]], +[1704,[3636.83,1241.03,0.65145],[[1668,2]]], [1705,[3101.08,1540.66,1.46262],[[1670,2],[1735,2],[1736,2]]], [1706,[3291.52,1452.07,0.522636],[[1670,2],[1737,2],[1707,2]]], [1707,[3372.46,1341.29,-1.23568],[[1674,2],[1706,2],[1738,2],[1707,2],[1739,2]]], [1708,[3217.67,1283.38,0],[[1674,2],[1740,2]]], [1709,[3566.14,1084.14,-0.147321],[[1675,2],[1741,2]]], +[1710,[5528.71,898.607,-2.00517],[[1676,2],[1697,2],[1742,2],[1710,2],[1743,2]]], [1711,[5469.75,9680.21,3.8147e-007],[[1677,2],[1744,2],[1745,2],[1746,2],[1747,2]]], [1712,[5728.05,9062.69,-6.35783e-007],[[1678,2],[1748,2],[1712,2],[1749,2]]], [1713,[5747.96,9259.55,-1.90735e-006],[[1679,2],[1750,2]]], [1714,[4045.66,9088.94,-0.348174],[[1680,2],[1751,2],[1714,2],[1752,2]]], [1715,[3593.56,8818.12,-0.674343],[[1681,2],[1753,2]]], +[1716,[1910.54,4713.08,-0.182343],[[1683,2],[1754,2],[1716,2],[1755,2]]], [1717,[1702.76,4462.28,-0.567963],[[1684,2],[1717,2],[1756,2]]], [1718,[2818.92,2814.2,0.6524],[[1685,2]]], [1719,[2679.01,2685.22,0.716372],[[1685,2],[1757,2],[1758,2]]], [1720,[1012.06,5729.19,0],[[1686,2],[1759,2],[1760,2]]], [1721,[921.019,5580.25,-0.0480408],[[1686,2],[1761,2],[1762,2],[1763,2],[1764,2],[1760,2]]], +[1722,[8876.8,1639.48,0],[[1688,2],[1765,2]]], [1723,[8719.33,1960.11,0],[[1689,2],[1690,2]]], [1724,[8842.53,2111.11,0],[[1690,2],[1726,2]]], [1725,[7902.89,2193.46,0],[[1692,2]]], [1726,[8863.51,2152.74,0],[[1693,2],[1724,2]]], [1727,[9169.57,2327.07,9.53674e-007],[[1694,2],[1766,2],[1727,2],[1767,2]]], +[1728,[8030.14,1228.41,-0.289305],[[1695,2],[1768,2]]], [1729,[5592.89,1193.24,-0.935145],[[1663,2]]], [1730,[5582.81,954.901,0.0949135],[[1697,2],[1769,2],[1730,2]]], [1731,[5525.47,1070.05,-1.83691],[[1697,2]]], [1732,[2708.27,2116.74,0.861954],[[1698,2],[1770,2],[1771,2],[1772,2]]], [1733,[3006.81,2156.71,-0.335991],[[1699,2]]], +[1734,[4509.16,2237.22,-0.0643406],[[1702,2]]], [1735,[3014.33,1457.87,2.03612],[[1705,2],[1774,2],[1775,2]]], [1736,[2977.02,1642.79,2.3721],[[1705,2],[1776,2]]], [1737,[3351.53,1402.24,0.446064],[[1706,2],[1777,2],[1737,2]]], [1738,[3394.35,1334.24,-0.916089],[[1707,2]]], [1739,[3288.13,1413.31,7.6175],[[1707,2]]], +[1740,[3173.81,1283.38,-0.014171],[[1708,2],[1778,2],[1779,2]]], [1741,[3702.56,1032.47,0.0217628],[[1709,2],[1780,2]]], [1742,[5500.07,885.457,-1.03754],[[1710,2]]], [1743,[5582.3,946.254,-0.266695],[[1710,2]]], [1744,[5499.05,9876.39,0],[[1711,2]]], [1745,[5638.06,9628.45,-1.58946e-007],[[1711,2],[1781,2],[1745,2],[1782,2]]], +[1746,[5440.81,9671.34,0],[[1711,2]]], [1747,[5230.67,9611.22,0],[[1711,2],[1747,2]]], [1748,[5708.65,9066.24,0],[[1712,2]]], [1749,[5783.5,9067.02,0],[[1712,2],[1749,2],[1783,2]]], [1750,[5881.91,9293.98,0],[[1713,2],[1784,2]]], [1751,[4044.76,9070.97,0.0506066],[[1714,2]]], +[1752,[4050.81,9176.29,-0.336252],[[1714,2],[1785,2],[1786,2]]], [1753,[3545.83,8756.69,0.138449],[[1715,2],[1787,2]]], [1754,[1923.46,4730.88,0.41002],[[1716,2]]], [1755,[1898.38,4599.49,-0.816958],[[1716,2],[1788,2]]], [1756,[1625.92,4466.46,0.0364126],[[1717,2],[1789,2],[1790,2],[1756,2]]], [1757,[2712.59,2570.45,-0.244823],[[1719,2],[1791,2]]], +[1758,[2609.92,2698.4,0.256499],[[1719,2],[1792,2],[1793,2],[1758,2]]], [1759,[1050.81,5881.73,-7.62939e-006],[[1720,2],[1759,2],[1794,2],[1795,2]]], [1760,[915.426,5731.07,-9.53674e-007],[[1720,2],[1721,2],[1796,2],[1764,2],[1797,2]]], [1761,[925.109,5535.27,0.00134659],[[1721,2]]], [1762,[936.088,5642.57,0],[[1721,2]]], [1763,[850.911,5556.52,-0.0573845],[[1721,2],[1798,2],[1799,2]]], +[1764,[866.462,5681.92,-0.154254],[[1721,2],[1760,2],[1797,2],[1800,2]]], [1765,[8965.63,1604.5,0],[[1722,2],[1801,2]]], [1766,[9253.23,2337.36,-1.27157e-006],[[1727,2],[1802,2],[1803,2]]], [1767,[9181.96,2245.42,0],[[1727,2],[1804,2]]], [1768,[8059.27,1187.96,0.109642],[[1728,2],[1805,2]]], [1769,[5576.39,980.433,-2.0903],[[1730,2]]], +[1770,[2625.83,2043.03,3.17891e-007],[[1732,2],[1806,2],[1807,2]]], [1771,[2686.42,2248.36,0.0297644],[[1732,2],[1772,2],[1771,2],[1808,2],[1809,2],[1810,2]]], [1772,[2707.02,2237.07,-0.00512433],[[1771,2],[1843,2],[1772,2],[1732,2]]], [1773,[2946.04,2128.09,0.0373828],[[1700,2]]], [1774,[3057.84,1469.93,0.795879],[[1735,2]]], [1775,[2858.48,1446.84,0.61699],[[1735,2],[1811,2],[1775,2]]], +[1776,[2899.53,1694.77,-0.162727],[[1736,2],[1812,2]]], [1777,[3346.92,1428.27,1.03643],[[1737,2]]], [1778,[3037.69,1300.81,-0.134396],[[1740,2],[1813,2],[1814,2],[1779,2]]], [1779,[3125.34,1229.82,0],[[1740,2],[1778,2],[1815,2],[1779,2],[1816,2],[1817,2]]], [1780,[3754.16,1031.41,-0.440262],[[1741,2]]], [1781,[5719.91,9633.56,-2.86102e-007],[[1745,2],[1818,2],[1819,2],[1820,2]]], +[1782,[5719.52,9607.16,-4.76837e-007],[[1745,2]]], [1783,[5800.33,9087.67,-9.53674e-007],[[1783,2],[1821,2]]], [1784,[6024.55,9316.69,0],[[1750,2],[1822,2]]], [1785,[4028.94,9291.06,-0.00143099],[[1752,2],[1823,2]]], [1786,[4083.75,9202.41,0.00893617],[[1752,2]]], [1787,[3460.7,8738.23,-0.153297],[[1753,2],[1824,2]]], +[1788,[1845.3,4578.54,-0.460159],[[1755,2],[1825,2]]], [1789,[1600.17,4519.14,-0.0394376],[[1756,2],[1826,2],[1789,2]]], [1790,[1654.96,4441.06,0.0900284],[[1756,2]]], [1791,[2668.58,2484.54,0.10433],[[1757,2],[1791,2],[1827,2],[1809,2]]], [1792,[2508.53,2639.54,-0.00552249],[[1758,2],[1828,2]]], [1793,[2619.39,2708.78,0.0333079],[[1758,2],[1793,2]]], +[1794,[1069.1,6075.42,-9.53674e-007],[[1759,2],[1794,2],[1829,2],[1830,2]]], [1795,[967.081,5921.22,-9.53674e-007],[[1759,2],[1795,2],[1829,2],[1831,2]]], [1796,[903.604,5764.97,0],[[1760,2],[1832,2],[1797,2],[1831,2],[1796,2]]], [1797,[836.612,5775.55,1.43051e-006],[[1760,2],[1764,2],[1796,2],[1832,2],[1833,2]]], [1798,[693.922,5527.99,-0.11903],[[1763,2],[1834,2]]], [1799,[868.625,5414,-0.198067],[[1763,2],[1835,2]]], +[1800,[742.906,5679.07,0.0421906],[[1764,2],[1800,2]]], [1801,[9042.7,1563.77,0],[[1765,2],[1836,2]]], [1802,[9356.8,2209.89,0],[[1766,2],[1837,2]]], [1803,[9243.79,2449.07,0],[[1766,2],[1838,2]]], [1804,[9218.62,2201.21,0],[[1767,2],[1839,2]]], [1805,[8044.47,1150.15,-0.0220029],[[1768,2],[1840,2],[1805,2]]], +[1806,[2567.83,1943.63,1.90735e-006],[[1770,2],[1841,2]]], [1807,[2565.05,2069.45,9.53674e-007],[[1770,2],[1842,2]]], [1808,[2592.91,2186.52,0],[[1771,2],[1844,2]]], [1809,[2657.98,2392.49,-0.753258],[[1771,2],[1791,2],[1845,2],[1809,2]]], [1810,[2658.55,2349.04,-0.149047],[[1845,2],[1771,2]]], [1811,[2794.85,1378.41,0.870367],[[1775,2],[1846,2],[1811,2],[1847,2]]], +[1812,[2849.78,1780.34,-0.482758],[[1776,2],[1848,2]]], [1813,[2919.48,1301.97,0.420093],[[1778,2],[1849,2],[1847,2],[1813,2],[1850,2]]], [1814,[3034.56,1241.14,0],[[1778,2],[1851,2]]], [1815,[3163.61,1236.15,0],[[1779,2]]], [1816,[3035.92,1232.21,0],[[1779,2]]], [1817,[3103.61,1251.93,0],[[1779,2]]], +[1818,[5906.44,9711.85,0],[[1781,2],[1852,2]]], [1819,[5728.85,9742.86,-4.76837e-007],[[1781,2]]], [1820,[5840.15,9626.24,0],[[1781,2],[1853,2]]], [1821,[5872.08,9085.67,0],[[1783,2],[1854,2]]], [1822,[6175.72,9303.29,0],[[1784,2],[1855,2]]], [1823,[4022.22,9307.74,-0.323601],[[1785,2],[1856,2],[1857,2]]], +[1824,[3402.66,8763.94,-0.062088],[[1787,2],[1858,2]]], [1825,[1754.59,4569.71,0.69485],[[1788,2],[1826,2]]], [1826,[1686.47,4506.18,0.314591],[[1789,2],[1825,2]]], [1827,[2710.8,2474.52,-0.0285339],[[1791,2]]], [1828,[2460.25,2656.52,0],[[1792,2],[1859,2]]], [1829,[940.482,5964.5,0.0499563],[[1794,2],[1795,2],[1831,2],[1829,2]]], +[1830,[1039.67,6117.73,0],[[1794,2]]], [1831,[897.491,5889.46,0.0704536],[[1795,2],[1796,2],[1829,2],[1832,2],[1831,2],[1860,2]]], [1832,[869.695,5825.46,0],[[1796,2],[1797,2],[1831,2]]], [1833,[688.112,5784.77,0],[[1797,2],[1861,2],[1862,2],[1863,2]]], [1834,[630.563,5435.38,1.66851],[[1798,2],[1864,2]]], [1835,[835.819,5292.34,-0.0273752],[[1799,2],[1865,2],[1835,2],[1866,2]]], +[1836,[9111.71,1553.9,0],[[1801,2],[1867,2]]], [1837,[9390.34,2073.05,0],[[1802,2],[1868,2]]], [1838,[9261.33,2505.99,0],[[1803,2]]], [1839,[9208.24,2114.2,-1.90735e-006],[[1804,2],[1869,2]]], [1840,[8021.27,1043.19,0],[[1805,2],[1840,2]]], [1841,[2563.19,1931.57,-0.263482],[[1806,2],[1848,2],[1870,2]]], +[1842,[2540.5,2117.42,0],[[1807,2],[1871,2]]], [1843,[2710.95,2210.64,-0.0566227],[[1772,2]]], [1844,[2489.45,2203.13,9.53674e-007],[[1808,2],[1872,2]]], [1845,[2658,2370.88,0.263686],[[1809,2],[1810,2],[1845,2]]], [1846,[2796.97,1398.72,0.839308],[[1811,2]]], [1847,[2790.95,1323.55,0.172148],[[1811,2],[1813,2],[1847,2],[1873,2],[1849,2],[1874,2]]], +[1848,[2734.88,1876.76,3.87135],[[1812,2],[1841,2]]], [1849,[2857.61,1287.29,0.0225973],[[1813,2],[1847,2],[1875,2],[1850,2]]], [1850,[2921.2,1203.9,-0.0738113],[[1813,2],[1849,2],[1850,2],[1875,2],[1876,2]]], [1851,[3025.27,1161.01,0],[[1814,2]]], [1852,[6035.95,9742.62,0],[[1818,2],[1877,2]]], [1853,[5939.66,9592.63,0],[[1820,2],[1878,2]]], +[1854,[5953.43,9043.4,0],[[1821,2],[1879,2]]], [1855,[6348.25,9294.61,0],[[1822,2],[1880,2]]], [1856,[3983.84,9304.77,-0.223888],[[1823,2],[1856,2],[1881,2],[1882,2]]], [1857,[4065.11,9363.45,0],[[1823,2]]], [1858,[3353.28,8753.22,-0.489391],[[1824,2],[1883,2]]], [1859,[2353.92,2633.12,-0.0754209],[[1828,2],[1884,2]]], +[1860,[868.16,5860.96,0.193462],[[1831,2]]], [1861,[577.415,5787.54,0],[[1833,2],[1885,2],[1886,2]]], [1862,[688.854,5860.97,0],[[1833,2],[1887,2],[1862,2],[1888,2]]], [1863,[693.985,5845.61,0],[[1887,2],[1833,2]]], [1864,[579.875,5291.29,-0.130224],[[1834,2],[1889,2],[1864,2]]], [1865,[840.336,5209.42,0.662071],[[1835,2],[1890,2],[1891,2]]], +[1866,[880.141,5285.83,0],[[1835,2]]], [1867,[9159.5,1525.3,-1.90735e-006],[[1836,2],[1867,2]]], [1868,[9424.74,1924.5,0],[[1837,2],[1892,2]]], [1869,[9178.19,2034.1,-9.53674e-007],[[1839,2],[1893,2]]], [1870,[2398,1885.39,0.320807],[[1841,2],[1894,2]]], [1871,[2450.23,2142,0],[[1842,2],[1871,2]]], +[1872,[2432.11,2188.46,0],[[1844,2]]], [1873,[2857.18,1308.85,-0.519845],[[1847,2]]], [1874,[2647.48,1348.3,0.241245],[[1847,2],[1895,2],[1874,2]]], [1875,[2883.82,1209.45,0],[[1849,2],[1850,2]]], [1876,[2929.19,1167.71,0],[[1850,2]]], [1877,[6170.96,9763.36,0],[[1852,2],[1896,2]]], +[1878,[6083.17,9614.44,0],[[1853,2],[1897,2]]], [1879,[6005.66,9022.89,0],[[1854,2],[1898,2],[1899,2]]], [1880,[6505.16,9282.65,0],[[1855,2],[1900,2]]], [1881,[3976.45,9381.6,-0.0433168],[[1856,2]]], [1882,[3890.91,9281.48,1.25067],[[1856,2],[1901,2]]], [1883,[3303.5,8750.84,0.0535743],[[1858,2],[1902,2]]], +[1884,[2301.47,2620.29,-0.0136782],[[1859,2],[1903,2],[1904,2],[1905,2],[1906,2]]], [1885,[485.349,5735.46,0],[[1861,2],[1907,2],[1885,2],[1908,2]]], [1886,[475.623,5899.87,0],[[1861,2],[1909,2]]], [1887,[698.782,5854.8,9.53674e-007],[[1862,2],[1863,2]]], [1888,[585.852,5974.83,2.38419e-007],[[1862,2],[1910,2]]], [1889,[556.75,5298.71,0.0296497],[[1864,2]]], +[1890,[942.281,5196.55,0.225572],[[1865,2],[1911,2]]], [1891,[772.859,5160.71,-0.0546284],[[1865,2],[1912,2]]], [1892,[9452.81,1796.63,0],[[1868,2],[1913,2]]], [1893,[9151.53,1951.83,0],[[1869,2],[1914,2],[1915,2],[1893,2],[1916,2]]], [1894,[2288.3,1856.3,0.165966],[[1870,2],[1917,2],[1918,2],[1919,2]]], [1895,[2565.55,1344.19,-0.0154136],[[1874,2],[1920,2],[1921,2]]], +[1896,[6333.92,9773.64,-3.17891e-007],[[1877,2],[1922,2],[1923,2]]], [1897,[6204.77,9695.73,0],[[1878,2],[1924,2],[1923,2]]], [1898,[6044.97,9081.47,0],[[1879,2],[1925,2]]], [1899,[6056.09,8938.29,0],[[1879,2],[1926,2]]], [1900,[6654.29,9270.35,0],[[1880,2],[1927,2]]], [1901,[3780.27,9241.96,0.0954933],[[1882,2],[1928,2]]], +[1902,[3243.2,8809.34,-0.169562],[[1883,2],[1929,2]]], [1903,[2233.58,2588.85,0],[[1884,2]]], [1904,[2238.63,2706.93,-0.0159041],[[1884,2],[1906,2],[1904,2],[1930,2]]], [1905,[2305.03,2501.31,0],[[1884,2]]], [1906,[2273.83,2711.58,0.00140333],[[1904,2],[1955,2],[1884,2],[1906,2]]], [1907,[435.841,5664.03,0],[[1885,2],[1931,2],[1907,2],[1932,2]]], +[1908,[390.353,5790.93,0],[[1885,2],[1933,2]]], [1909,[401.044,5963.71,0],[[1886,2],[1934,2]]], [1910,[568.265,6079.8,-1.19209e-007],[[1888,2],[1935,2],[1910,2],[1936,2]]], [1911,[992.918,5109.76,0.602547],[[1890,2],[1937,2],[1911,2],[1938,2]]], [1912,[774.641,5097.76,-0.196268],[[1891,2],[1939,2]]], [1913,[9499.34,1699.04,0],[[1892,2],[1940,2]]], +[1914,[9100.85,1780.51,-6.35783e-007],[[1893,2],[1914,2],[1941,2]]], [1915,[9150.91,1960.66,0],[[1893,2]]], [1916,[9100.05,1966.15,0],[[1893,2],[1942,2]]], [1917,[2260.01,1953.46,0],[[1894,2],[1943,2],[1944,2]]], [1918,[2212.43,1819.75,0.122648],[[1894,2],[1945,2],[1946,2],[1943,2],[1919,2]]], [1919,[2225.06,1886.67,-9.53674e-007],[[1894,2],[1918,2],[1946,2]]], +[1920,[2489.45,1359.28,0],[[1895,2],[1947,2]]], [1921,[2555.77,1306.99,0.2019],[[1895,2]]], [1922,[6517.32,9812.28,0],[[1896,2],[1948,2]]], [1923,[6325.58,9707.13,0],[[1896,2],[1897,2],[1949,2]]], [1924,[6274.1,9709.47,0],[[1897,2],[1950,2]]], [1925,[6043.67,9111.65,0],[[1898,2]]], +[1926,[5992.11,8913.6,0],[[1899,2]]], [1927,[6815.04,9287.68,0],[[1900,2],[1951,2]]], [1928,[3752.51,9214.89,0.140474],[[1901,2],[1952,2],[1953,2]]], [1929,[3227.58,8893.04,0.266649],[[1902,2],[1954,2]]], [1930,[2176.56,2702.05,-0.0263898],[[1904,2],[1956,2],[1930,2],[1957,2]]], [1931,[364.506,5538.37,4.76837e-007],[[1907,2]]], +[1932,[348.658,5637.7,0],[[1907,2],[1958,2],[1932,2],[1959,2]]], [1933,[381.278,5804.2,0],[[1908,2]]], [1934,[337.709,5992.19,0],[[1909,2],[1960,2]]], [1935,[620.731,6209.18,0],[[1910,2],[1961,2]]], [1936,[510.757,6099.99,0],[[1910,2],[1936,2],[1962,2]]], [1937,[1082.34,5011.79,0.471512],[[1911,2],[1963,2]]], +[1938,[955.406,5055.84,-0.0963745],[[1911,2],[1964,2]]], [1939,[744.719,5038.92,0.135518],[[1912,2],[1965,2]]], [1940,[9521.51,1610.81,0],[[1913,2],[1966,2]]], [1941,[9119.83,1767.2,0],[[1914,2]]], [1942,[9082.71,1960.97,0],[[1916,2]]], [1943,[2200.72,1930.08,0],[[1917,2],[1918,2],[1946,2],[1944,2]]], +[1944,[2209.23,1944.93,0],[[1943,2],[1917,2]]], [1945,[2061.16,1773.21,-0.192409],[[1918,2],[1967,2]]], [1946,[2204.73,1875.58,0],[[1918,2],[1919,2],[1943,2]]], [1947,[2475.63,1353.57,0],[[1920,2],[1968,2],[1969,2]]], [1948,[6594.4,9852.55,0],[[1922,2],[1970,2],[1971,2]]], [1949,[6301.9,9710.4,0],[[1923,2]]], +[1950,[6153.4,9568.86,-4.76837e-007],[[1924,2],[1972,2]]], [1951,[6934.88,9330.55,0],[[1927,2],[1973,2],[1974,2],[1951,2]]], [1952,[3621.55,9315.38,-0.158282],[[1928,2],[1975,2]]], [1953,[3821.73,9194.79,0.604612],[[1928,2],[1976,2]]], [1954,[3101.83,8847.24,0.093483],[[1929,2],[1977,2]]], [1955,[2283.21,2689.23,-0.0127113],[[1906,2]]], +[1956,[2246.88,2800.35,0],[[1930,2],[1978,2]]], [1957,[2167.09,2524.48,-0.1043],[[1930,2],[1979,2]]], [1958,[237.354,5594.9,0],[[1932,2],[1980,2],[1981,2],[1958,2]]], [1959,[293.753,5716.19,0],[[1932,2],[1982,2]]], [1960,[319.471,5993.32,0],[[1934,2]]], [1961,[605.64,6281.73,0],[[1935,2],[1983,2]]], +[1962,[437.532,6107.92,0],[[1936,2],[1984,2]]], [1963,[1119.75,4995.91,-0.270307],[[1937,2]]], [1964,[917.336,4989.08,-0.32537],[[1938,2],[1985,2],[1965,2]]], [1965,[734.104,4972.13,-0.0550296],[[1939,2],[1964,2],[1986,2]]], [1966,[9573.51,1534.14,0],[[1940,2],[1987,2]]], [1967,[1975.36,1799.16,0.344854],[[1945,2],[1988,2],[1989,2]]], +[1968,[2486.53,1436.42,-0.23136],[[1947,2],[1990,2]]], [1969,[2486.03,1206.91,-0.0889587],[[1947,2],[1991,2]]], [1970,[6737.6,9912.07,0],[[1948,2],[1992,2]]], [1971,[6606.94,9708.72,0],[[1948,2],[1993,2]]], [1972,[6127.34,9547.31,0],[[1950,2]]], [1973,[6898.15,9482.93,0],[[1951,2],[1994,2]]], +[1974,[6935.28,9318.43,0],[[1951,2]]], [1975,[3528.55,9321.63,0.504083],[[1952,2],[1995,2]]], [1976,[3946.63,9203.57,0],[[1953,2],[1996,2]]], [1977,[3000.25,8901.46,0.10236],[[1954,2],[1997,2]]], [1978,[2393.21,2804.59,0],[[1956,2],[1998,2]]], [1979,[2160.52,2381.97,0],[[1957,2],[1999,2]]], +[1980,[204.376,5713.35,0],[[1958,2]]], [1981,[242.097,5587.98,0],[[1958,2]]], [1982,[295.852,5731.88,0],[[1959,2]]], [1983,[664.586,6338.53,0],[[1961,2],[2000,2]]], [1984,[379.818,6102.05,0],[[1962,2],[2001,2]]], [1985,[1005.14,4965.04,0.0187283],[[1964,2]]], +[1986,[674.047,4901.42,-0.820025],[[1965,2],[2002,2]]], [1987,[9585.38,1481.05,0],[[1966,2],[2003,2]]], [1988,[2083.67,1893.38,0],[[1967,2],[2004,2]]], [1989,[1905.59,1797.09,0.0976725],[[1967,2],[2005,2],[2006,2]]], [1990,[2489.2,1497.5,-0.382878],[[1968,2],[1990,2],[2007,2]]], [1991,[2489.66,1123.16,-1.17302],[[1969,2],[1991,2],[2008,2],[2009,2]]], +[1992,[6894.94,9870.2,0],[[1970,2],[2010,2]]], [1993,[6635.71,9667.19,1.19209e-007],[[1971,2],[1994,2],[2011,2],[2012,2]]], [1994,[6817.11,9589.69,2.38419e-007],[[1973,2],[1993,2]]], [1995,[3380.81,9295.61,0.344272],[[1975,2],[2013,2]]], [1996,[4012.25,9203.56,0.0154181],[[1976,2]]], [1997,[2900.72,8896.48,0.217069],[[1977,2],[2014,2]]], +[1998,[2526.91,2869.13,0],[[1978,2],[2015,2]]], [1999,[2159.41,2262.99,-4.76837e-007],[[1979,2],[2016,2]]], [2000,[682.553,6368.41,0],[[1983,2]]], [2001,[367.248,6102.54,0],[[1984,2]]], [2002,[649.219,4820.73,-0.659294],[[1986,2],[2017,2]]], [2003,[9614.27,1364.25,0],[[1987,2],[2018,2]]], +[2004,[2107.41,2014.09,0],[[1988,2],[2016,2]]], [2005,[1810.43,1799.64,0.429004],[[1989,2],[2005,2],[2019,2]]], [2006,[1920.56,1654.52,0],[[1989,2],[2020,2]]], [2007,[2410.18,1571.07,-0.0882314],[[1990,2],[2021,2],[2007,2],[2022,2]]], [2008,[2536.69,1127.8,0.568269],[[1991,2]]], [2009,[2423.24,1093.4,1.30344],[[1991,2],[2023,2],[2009,2],[2024,2]]], +[2010,[6943.32,9850.33,0],[[1992,2]]], [2011,[6509.76,9633.54,0],[[1993,2]]], [2012,[6701.78,9558.27,0],[[1993,2]]], [2013,[3289.33,9288.93,-0.10655],[[1995,2],[2025,2]]], [2014,[2837.61,8845.97,0.149282],[[1997,2],[2026,2]]], [2015,[2623.66,2980.03,0],[[1998,2],[2027,2]]], +[2016,[2121.15,2134.17,0],[[1999,2],[2004,2]]], [2017,[619.063,4698.69,-0.114603],[[2002,2],[2017,2]]], [2018,[9738.88,1294.92,-1.90735e-006],[[2003,2],[2028,2]]], [2019,[1651.42,1798.7,1.38536],[[2005,2],[2029,2]]], [2020,[2052.01,1626.12,0],[[2006,2],[2030,2]]], [2021,[2429.31,1563.26,-0.132347],[[2007,2]]], +[2022,[2295.68,1632.11,0],[[2007,2],[2030,2],[2031,2]]], [2023,[2433.56,1107.99,1.38982],[[2009,2]]], [2024,[2326.7,1012.66,-0.30428],[[2009,2],[2032,2]]], [2025,[3229.94,9313.36,0.280036],[[2013,2],[2033,2],[2034,2]]], [2026,[2768.63,8836.76,0.224651],[[2014,2],[2035,2],[2026,2],[2036,2]]], [2027,[2653.03,3075.8,0],[[2015,2],[2037,2]]], +[2028,[9760.66,1298.35,0],[[2018,2]]], [2029,[1552.5,1769.68,-0.348768],[[2019,2],[2038,2]]], [2030,[2199.23,1647.57,0],[[2020,2],[2022,2]]], [2031,[2263.15,1506.72,0],[[2022,2]]], [2032,[2185.08,1012.33,0.9137],[[2024,2],[2039,2]]], [2033,[3154.57,9368.93,-0.335943],[[2025,2],[2040,2],[2033,2],[2041,2],[2042,2],[2043,2]]], +[2034,[3230.16,9372.48,0],[[2025,2]]], [2035,[2789.56,8839.06,0.587919],[[2026,2]]], [2036,[2603.47,8810.38,-0.5163],[[2026,2],[2044,2]]], [2037,[2698.55,3198.73,0],[[2027,2],[2045,2]]], [2038,[1446.03,1822.94,1.27494],[[2029,2],[2046,2]]], [2039,[2097.57,1010.42,-0.280613],[[2032,2],[2047,2],[2048,2]]], +[2040,[3166.35,9319.99,0],[[2033,2]]], [2041,[3041.16,9352.57,0.174164],[[2033,2],[2049,2]]], [2042,[3211.58,9384.62,0],[[2033,2]]], [2043,[3110.85,9576.62,0],[[2033,2],[2050,2]]], [2044,[2545.97,8806.36,0.0352674],[[2036,2],[2051,2]]], [2045,[2612.28,3242.57,0],[[2037,2],[2052,2]]], +[2046,[1367.73,1847.56,0.672748],[[2038,2],[2053,2],[2054,2]]], [2047,[2084.41,1133.01,-0.0601358],[[2039,2],[2055,2],[2056,2]]], [2048,[2153.5,922.817,0],[[2039,2]]], [2049,[2990.64,9338,0.118985],[[2041,2],[2057,2]]], [2050,[3098.91,9661.83,0],[[2043,2],[2058,2],[2059,2],[2060,2]]], [2051,[2428.38,8885.31,0.533806],[[2044,2],[2061,2]]], +[2052,[2468.77,3216.81,0],[[2045,2],[2062,2]]], [2053,[1239.84,1813.56,0.86945],[[2046,2],[2063,2]]], [2054,[1357.42,1709.34,-0.105582],[[2046,2],[2064,2]]], [2055,[2118.25,1207.96,0.908389],[[2047,2]]], [2056,[1945.72,1133.56,-2.05111],[[2047,2],[2065,2]]], [2057,[2943.67,9358.32,0.151222],[[2049,2],[2066,2]]], +[2058,[3078.62,9787.24,0],[[2050,2],[2067,2],[2068,2],[2058,2],[2069,2]]], [2059,[3270.2,9689.04,0],[[2059,2]]], [2060,[3005.87,9618.05,0],[[2050,2],[2070,2]]], [2061,[2341.3,8917.54,0.106768],[[2051,2],[2071,2]]], [2062,[2378.04,3330.06,0],[[2052,2],[2072,2]]], [2063,[1148.61,1794.14,0.386193],[[2053,2],[2073,2]]], +[2064,[1386.16,1643.4,0.222844],[[2054,2],[2074,2]]], [2065,[1859.14,1138.05,-0.340076],[[2056,2],[2075,2]]], [2066,[2880.94,9334.45,-0.0968189],[[2057,2],[2076,2]]], [2067,[3020.29,9824.27,0],[[2058,2],[2077,2],[2078,2]]], [2068,[3088.7,9781.56,0],[[2058,2]]], [2069,[3126.54,9826.29,0],[[2058,2],[2079,2],[2080,2]]], +[2070,[3001.69,9581.71,0],[[2060,2]]], [2071,[2214.97,8878.08,-0.25644],[[2061,2],[2081,2]]], [2072,[2400.07,3482.56,0],[[2062,2],[2082,2]]], [2073,[1116.42,1789.89,-0.101377],[[2063,2],[2073,2],[2083,2],[2084,2]]], [2074,[1413.38,1578.49,-0.0803019],[[2064,2],[2085,2],[2086,2]]], [2075,[1802.92,1171.37,-0.954071],[[2065,2],[2087,2],[2088,2],[2075,2]]], +[2076,[2859.27,9299.31,0.217571],[[2066,2]]], [2077,[2915.51,9893.76,0],[[2067,2],[2089,2],[2090,2],[2091,2],[2080,2]]], [2078,[2986.54,9791.95,-1.58946e-007],[[2067,2],[2090,2],[2078,2]]], [2079,[3163.91,9884.84,0],[[2079,2],[2092,2]]], [2080,[3021.13,9875.76,0],[[2069,2],[2077,2]]], [2081,[2149.33,8776.14,-3.3515],[[2071,2],[2093,2]]], +[2082,[2435.85,3564.61,-7.62939e-006],[[2072,2],[2094,2]]], [2083,[1120.92,1714.23,-0.0432148],[[2073,2],[2095,2]]], [2084,[1078.59,1813.96,-0.0280657],[[2073,2],[2096,2],[2097,2]]], [2085,[1405.55,1535.13,-0.514855],[[2074,2],[2098,2],[2085,2],[2099,2]]], [2086,[1458.59,1617.9,-3.19997],[[2074,2]]], [2087,[1669.56,1216.05,0.850749],[[2075,2],[2100,2]]], +[2088,[1823.79,1168,-0.490624],[[2075,2]]], [2089,[2751.28,9965.17,0],[[2077,2],[2101,2]]], [2090,[2909.34,9827.69,1.58946e-007],[[2077,2],[2078,2],[2090,2]]], [2091,[2918.43,9941.11,0],[[2077,2],[2091,2],[2102,2],[2103,2]]], [2092,[3181.99,9946.15,0],[[2079,2]]], [2093,[2140.91,8717.98,0.189613],[[2081,2],[2104,2],[2093,2],[2105,2]]], +[2094,[2411.56,3637.56,0],[[2082,2],[2106,2]]], [2095,[1117.25,1628.44,0.00183821],[[2083,2]]], [2096,[1051.01,1862.37,-0.256577],[[2084,2],[2107,2],[2096,2],[2108,2],[2109,2]]], [2097,[1012.4,1761.53,-0.643721],[[2084,2],[2110,2],[2111,2],[2097,2],[2112,2]]], [2098,[1411.77,1456.74,0.119865],[[2085,2]]], [2099,[1358.06,1541.3,0.274281],[[2085,2]]], +[2100,[1634.05,1261.48,-0.045207],[[2087,2],[2113,2],[2114,2]]], [2101,[2601.91,10022.8,0],[[2089,2],[2115,2],[2101,2]]], [2102,[3048.28,9911.78,0],[[2091,2],[2102,2]]], [2103,[2820.26,9996.93,0],[[2091,2],[2116,2]]], [2104,[2145.78,8736.76,0.194373],[[2093,2]]], [2105,[2078.94,8647.6,0.162478],[[2093,2],[2117,2],[2118,2]]], +[2106,[2290.64,3650.85,0],[[2094,2],[2119,2]]], [2107,[1048.2,1852.76,-0.159726],[[2096,2]]], [2108,[1023.86,1907.1,-0.0181098],[[2096,2],[2120,2],[2121,2],[2108,2],[2122,2]]], [2109,[954.438,1807.42,-1.31641],[[2096,2],[2123,2]]], [2110,[968.57,1731.42,-0.7531],[[2097,2],[2124,2],[2110,2],[2125,2]]], [2111,[1022.74,1764.23,-0.287226],[[2097,2]]], +[2112,[1031.56,1746.66,0.096489],[[2097,2]]], [2113,[1637.03,1350.03,-0.151355],[[2100,2],[2126,2],[2113,2],[2127,2],[2128,2]]], [2114,[1649.2,1305.84,-0.00738049],[[2126,2],[2100,2]]], [2115,[2537.53,10069.5,0],[[2101,2],[2115,2],[2129,2],[2130,2],[2131,2],[2132,2],[2133,2],[2134,2]]], [2116,[2724.32,10037.9,0],[[2103,2],[2134,2]]], [2117,[2042.13,8614.84,0.00343426],[[2105,2],[2135,2],[2118,2]]], +[2118,[2043.3,8648.02,0.039575],[[2105,2],[2117,2],[2118,2],[2136,2]]], [2119,[2195.6,3676.94,-7.62939e-006],[[2106,2],[2137,2]]], [2120,[996.449,1933.14,0.0199656],[[2108,2],[2138,2],[2120,2],[2139,2]]], [2121,[1033.33,1907.22,-0.0877457],[[2108,2]]], [2122,[1055.13,1934.31,0],[[2108,2]]], [2123,[905.047,1799.38,-0.457328],[[2109,2],[2124,2],[2140,2],[2139,2]]], +[2124,[778.844,1649.1,0.674426],[[2110,2],[2123,2],[2141,2],[2142,2],[2143,2],[2144,2],[2145,2]]], [2125,[1006.45,1652.95,0],[[2110,2],[2125,2]]], [2126,[1659.83,1330.81,-0.00169563],[[2113,2],[2114,2],[2126,2]]], [2127,[1506.01,1439.28,0.453714],[[2113,2],[2128,2],[2127,2],[2146,2]]], [2128,[1545.45,1442.91,-0.282368],[[2127,2],[2160,2],[2128,2],[2113,2]]], [2129,[2481.34,10100.3,1.58946e-007],[[2115,2],[2147,2],[2133,2]]], +[2130,[2508.86,10156.4,2.38419e-007],[[2115,2]]], [2131,[2539.73,10177.6,0],[[2115,2]]], [2132,[2498.44,9939.99,0],[[2115,2],[2148,2],[2149,2]]], [2133,[2491.02,10051,0],[[2115,2],[2129,2],[2150,2]]], [2134,[2659.73,10049.8,0],[[2115,2],[2116,2]]], [2135,[1964.13,8495.86,0.0213704],[[2117,2],[2151,2]]], +[2136,[1958.19,8741.18,0],[[2118,2]]], [2137,[2070.18,3648.46,0],[[2119,2],[2152,2]]], [2138,[979.223,1980.22,-0.176366],[[2120,2],[2153,2],[2138,2],[2154,2]]], [2139,[919.672,1872.08,-0.915824],[[2120,2],[2123,2],[2155,2],[2139,2],[2140,2]]], [2140,[860.031,1821.72,0.40625],[[2123,2],[2139,2],[2140,2]]], [2141,[831.51,1540.94,0.0890484],[[2124,2],[2156,2],[2157,2],[2141,2]]], +[2142,[763.438,1609.92,0],[[2124,2]]], [2143,[606.781,1514.32,0.0493469],[[2124,2],[2158,2]]], [2144,[727.698,1696.4,0.000119527],[[2124,2],[2144,2],[2159,2]]], [2145,[705.734,1659.87,3.43323e-005],[[2124,2]]], [2146,[1354.94,1412.19,-0.143565],[[2127,2],[2146,2],[2161,2]]], [2147,[2437.81,10150.2,0],[[2129,2]]], +[2148,[2539.89,9797.28,0],[[2132,2],[2162,2]]], [2149,[2472.41,9924.09,0],[[2132,2]]], [2150,[2428,10035.7,1.93523],[[2133,2]]], [2151,[1929.39,8358.12,-0.103437],[[2135,2],[2163,2]]], [2152,[1950.55,3704.12,0],[[2137,2],[2164,2]]], [2153,[941.443,2049.77,0.265899],[[2138,2],[2165,2],[2166,2],[2167,2]]], +[2154,[1092.05,2039.79,0.553905],[[2138,2],[2168,2]]], [2155,[938.008,1887.43,0.0303469],[[2139,2]]], [2156,[828.453,1369.72,-0.618145],[[2141,2],[2169,2]]], [2157,[834.023,1554.41,0.369628],[[2141,2]]], [2158,[539.684,1370.57,0.162974],[[2143,2],[2170,2],[2158,2],[2171,2]]], [2159,[694.531,1780.12,-0.0442791],[[2144,2],[2172,2]]], +[2160,[1590.46,1421.79,-0.402066],[[2128,2]]], [2161,[1345.37,1356.65,0.125523],[[2146,2],[2173,2],[2161,2],[2174,2]]], [2162,[2502.08,9753.77,0],[[2148,2],[2175,2],[2162,2],[2176,2]]], [2163,[1874.47,8314.32,0.925937],[[2151,2],[2177,2],[2178,2]]], [2164,[1972.64,3842.93,0],[[2152,2],[2179,2]]], [2165,[914.13,2084.23,0.284644],[[2153,2],[2165,2],[2180,2]]], +[2166,[1065.96,2094.91,-0.0196619],[[2153,2],[2167,2],[2166,2],[2168,2]]], [2167,[1043.58,2106.9,0.390493],[[2166,2],[2199,2],[2167,2],[2153,2]]], [2168,[1107.8,2069.28,-0.0721235],[[2166,2],[2181,2]]], [2169,[820.5,1290.72,0.175585],[[2156,2],[2182,2],[2183,2]]], [2170,[420.578,1488.29,1.04011],[[2158,2],[2184,2]]], [2171,[644.766,1273.46,-0.0791168],[[2158,2],[2185,2]]], +[2172,[650.816,1822.14,0.196234],[[2159,2],[2186,2],[2172,2],[2187,2],[2188,2]]], [2173,[1350.19,1305.65,0.064451],[[2161,2],[2189,2],[2190,2],[2191,2]]], [2174,[1267,1357.91,-0.00865364],[[2161,2]]], [2175,[2526.28,9755.41,0],[[2162,2]]], [2176,[2290.6,9777.26,-1.19209e-007],[[2162,2],[2192,2],[2193,2],[2194,2]]], [2177,[1791.14,8245.71,-0.465],[[2163,2],[2178,2],[2177,2],[2195,2]]], +[2178,[1804.78,8266.96,0.0726453],[[2177,2],[2212,2],[2178,2],[2163,2]]], [2179,[1964.91,3978.85,7.62939e-006],[[2164,2],[2196,2]]], [2180,[863.188,2192.92,-0.340782],[[2165,2],[2197,2],[2198,2]]], [2181,[1129.25,2214.34,-0.78471],[[2168,2],[2200,2]]], [2182,[786.052,1232.25,0.307285],[[2169,2],[2183,2],[2182,2],[2201,2]]], [2183,[784.578,1258.55,0.0775871],[[2182,2],[2217,2],[2183,2],[2169,2]]], +[2184,[432.208,1537.94,0.251567],[[2170,2],[2202,2],[2203,2],[2184,2]]], [2185,[649.375,1197.08,-0.465815],[[2171,2],[2201,2],[2204,2]]], [2186,[693.109,1855.19,-0.0955582],[[2172,2],[2205,2],[2188,2],[2186,2]]], [2187,[592.367,1780.21,-0.137467],[[2172,2],[2206,2],[2187,2]]], [2188,[774.641,1951.25,0.616943],[[2172,2],[2186,2],[2207,2],[2205,2]]], [2189,[1347.92,1256.34,-0.122095],[[2173,2],[2208,2],[2209,2]]], +[2190,[1266.67,1305.65,0.100697],[[2173,2]]], [2191,[1408.48,1306.17,0.385219],[[2173,2]]], [2192,[2174.62,9714.62,0],[[2176,2],[2210,2]]], [2193,[2309.27,9843,0],[[2176,2]]], [2194,[2142.34,9808.32,0],[[2176,2],[2211,2]]], [2195,[1731.52,8178.8,0.140303],[[2177,2],[2213,2],[2195,2]]], +[2196,[1923.87,4106.37,-3.8147e-006],[[2179,2],[2214,2]]], [2197,[786.109,2320.25,0.78594],[[2180,2],[2215,2]]], [2198,[890.656,2213.49,0.0103626],[[2180,2]]], [2199,[1012.94,2093.78,-0.244681],[[2167,2]]], [2200,[1105.13,2297.56,-0.0732803],[[2181,2],[2216,2]]], [2201,[773.502,1156.51,-0.311338],[[2182,2],[2185,2],[2201,2],[2218,2]]], +[2202,[456.917,1623.17,-0.127836],[[2184,2],[2219,2],[2220,2],[2202,2]]], [2203,[416.625,1520.57,-0.0164051],[[2184,2]]], [2204,[524.672,1090.27,-0.033144],[[2185,2],[2221,2]]], [2205,[736.891,1918.45,-0.105209],[[2186,2],[2188,2],[2222,2]]], [2206,[545.195,1739.21,-0.287346],[[2187,2],[2223,2],[2206,2]]], [2207,[793.5,1967.65,0.29731],[[2188,2],[2224,2],[2207,2]]], +[2208,[1324.8,1252.37,0.312071],[[2189,2]]], [2209,[1381.19,1172.6,0.0733959],[[2189,2],[2209,2],[2225,2]]], [2210,[2125.86,9674.14,0],[[2192,2],[2210,2],[2226,2]]], [2211,[2026.93,9772.21,0],[[2194,2],[2227,2]]], [2212,[1827.76,8282.83,0.278643],[[2178,2]]], [2213,[1632.37,8090.51,-0.0615559],[[2195,2],[2213,2],[2228,2]]], +[2214,[1782.44,4126.61,0],[[2196,2]]], [2215,[775.402,2340.48,0.403932],[[2197,2],[2229,2],[2230,2],[2231,2]]], [2216,[1038.06,2393,-0.229578],[[2200,2],[2232,2],[2233,2],[2230,2],[2234,2]]], [2217,[799.109,1272.73,-0.0271212],[[2183,2]]], [2218,[887.32,1105.29,0.0567317],[[2201,2],[2235,2],[2218,2],[2236,2],[2237,2]]], [2219,[405.297,1713.32,-0.365814],[[2202,2],[2238,2]]], +[2220,[470.539,1604.22,-0.534643],[[2202,2]]], [2221,[503.156,1025.97,-0.0100727],[[2204,2],[2239,2]]], [2222,[862.922,2002.8,-0.44883],[[2205,2]]], [2223,[516.891,1714.6,-0.0137072],[[2206,2]]], [2224,[818.773,1977.03,0.732507],[[2207,2]]], [2225,[1429.16,1179.52,0.388218],[[2209,2]]], +[2226,[2106.8,9625.28,0],[[2210,2],[2240,2],[2226,2],[2241,2]]], [2227,[1930.15,9762.89,0],[[2211,2],[2242,2]]], [2228,[1530.63,7978.29,0.415942],[[2213,2],[2243,2]]], [2229,[743.578,2400.28,0.34959],[[2215,2]]], [2230,[825.458,2392.82,-0.188953],[[2215,2],[2216,2],[2233,2],[2244,2]]], [2231,[692.969,2260.28,0.037974],[[2215,2],[2245,2],[2246,2]]], +[2232,[1138.34,2440,0.608277],[[2216,2],[2247,2]]], [2233,[903.664,2380.94,0.720533],[[2216,2],[2230,2]]], [2234,[978.451,2465.83,3.17891e-007],[[2216,2],[2248,2],[2249,2]]], [2235,[967.969,995.176,-0.0304756],[[2218,2],[2250,2]]], [2236,[845.729,1032.23,-0.203654],[[2218,2],[2237,2],[2236,2],[2251,2]]], [2237,[858,1037.99,-0.0775032],[[2236,2],[2267,2],[2218,2],[2237,2]]], +[2238,[460.703,1785.97,-0.205233],[[2219,2],[2252,2]]], [2239,[519.078,993.636,0.071331],[[2221,2],[2253,2],[2254,2],[2239,2]]], [2240,[2113.56,9643.54,0],[[2226,2]]], [2241,[2163.92,9566.83,0],[[2226,2],[2255,2]]], [2242,[1902.12,9800.58,1.58946e-007],[[2227,2],[2242,2],[2256,2]]], [2243,[1498.49,7944.34,-0.134928],[[2228,2],[2257,2],[2243,2],[2258,2]]], +[2244,[740.078,2499.83,-1.95991],[[2230,2],[2259,2]]], [2245,[643.615,2289.62,0.124308],[[2231,2],[2260,2],[2245,2],[2261,2]]], [2246,[710.016,2152.08,-0.261158],[[2231,2],[2262,2]]], [2247,[1220.48,2456.66,0.642229],[[2232,2],[2263,2]]], [2248,[889.768,2559.44,-2.38419e-007],[[2234,2],[2248,2],[2264,2],[2265,2]]], [2249,[1012.15,2439.45,3.17891e-007],[[2234,2]]], +[2250,[1051.25,911.599,0.0597801],[[2235,2],[2266,2]]], [2251,[752.453,957.081,-0.266418],[[2236,2],[2268,2]]], [2252,[521.906,1858.72,0.115099],[[2238,2],[2269,2]]], [2253,[581.166,939.93,-0.514779],[[2239,2],[2268,2],[2270,2],[2253,2],[2271,2]]], [2254,[503.797,1006.76,0.0362778],[[2239,2]]], [2255,[2169.61,9508.67,0],[[2241,2],[2272,2]]], +[2256,[1879.46,9791.35,0],[[2242,2]]], [2257,[1421.11,7801.69,-1.0594],[[2243,2],[2273,2]]], [2258,[1403.78,8019.08,0.173954],[[2243,2],[2274,2]]], [2259,[628.359,2559.36,0.224073],[[2244,2],[2275,2]]], [2260,[658.453,2276.5,0.0400915],[[2245,2]]], [2261,[579.656,2381.88,-0.94978],[[2245,2],[2276,2]]], +[2262,[682,2069.6,0.340832],[[2246,2],[2277,2]]], [2263,[1226.45,2534.34,-0.254435],[[2247,2],[2278,2],[2263,2],[2279,2]]], [2264,[844.016,2576.75,0],[[2248,2],[2264,2],[2280,2]]], [2265,[891.043,2627.5,0],[[2248,2]]], [2266,[1127.06,874.318,-0.0434122],[[2250,2],[2281,2],[2282,2],[2266,2]]], [2267,[865.474,1052.36,-0.611403],[[2237,2]]], +[2268,[680.422,873.9,0.842584],[[2251,2],[2253,2],[2283,2]]], [2269,[557.823,1952.44,0.0979576],[[2252,2],[2277,2],[2284,2],[2285,2]]], [2270,[656,1048.22,0.148003],[[2253,2]]], [2271,[511.594,926.839,0],[[2253,2]]], [2272,[2096.26,9460.19,0],[[2255,2],[2286,2]]], [2273,[1411.28,7686.18,0.159242],[[2257,2],[2287,2]]], +[2274,[1331.31,8037.39,0.118365],[[2258,2],[2288,2]]], [2275,[559.859,2606.46,1.21306],[[2259,2],[2289,2]]], [2276,[529.313,2391.68,-0.721458],[[2261,2]]], [2277,[621.578,2035,0.214294],[[2262,2],[2269,2]]], [2278,[1237.48,2499.01,-0.138382],[[2263,2]]], [2279,[1204.39,2605.01,-0.486542],[[2263,2]]], +[2280,[816.667,2665.01,0],[[2264,2],[2290,2]]], [2281,[1117.05,779.8,0.195988],[[2266,2],[2291,2]]], [2282,[1120.07,884.821,-0.11108],[[2266,2]]], [2283,[622.625,792.753,-0.920414],[[2268,2]]], [2284,[528.359,2052.25,0.176741],[[2269,2],[2292,2],[2284,2],[2293,2]]], [2285,[539.938,2011.4,0.0857773],[[2292,2],[2269,2]]], +[2286,[1962.67,9427.17,0],[[2272,2],[2294,2]]], [2287,[1396.31,7641.91,-0.126121],[[2273,2],[2295,2],[2296,2]]], [2288,[1232.98,8015.13,0.0991535],[[2274,2],[2297,2]]], [2289,[544.781,2642.33,0.693769],[[2275,2]]], [2290,[812.942,2753.61,0],[[2280,2],[2298,2]]], [2291,[1165.19,717.912,-0.550461],[[2281,2],[2299,2],[2300,2],[2301,2]]], +[2292,[526.156,2032.78,0.0669003],[[2284,2],[2285,2],[2292,2]]], [2293,[555.365,2109.25,-0.616976],[[2284,2],[2302,2],[2303,2]]], [2294,[1895.11,9366.25,0],[[2286,2],[2304,2]]], [2295,[1323.78,7674.2,0.15489],[[2287,2],[2305,2]]], [2296,[1351.98,7562.54,-0.0435368],[[2287,2],[2306,2],[2296,2],[2307,2],[2308,2]]], [2297,[1136.08,8084.4,-1.15364],[[2288,2],[2309,2]]], +[2298,[709.669,2839.5,0],[[2290,2],[2310,2]]], [2299,[1135.76,591.056,1.09563],[[2291,2],[2311,2],[2299,2],[2312,2]]], [2300,[1248.34,768.145,-0.106689],[[2291,2],[2313,2]]], [2301,[1222.67,654.336,-3.19706],[[2291,2],[2314,2]]], [2302,[579.719,2081.01,0.0043602],[[2293,2]]], [2303,[618.875,2145.03,-1.44553],[[2293,2]]], +[2304,[1785.13,9344.34,0],[[2294,2],[2315,2]]], [2305,[1258.39,7771.03,-0.02495],[[2295,2],[2316,2]]], [2306,[1358.27,7590.18,0.0804497],[[2296,2]]], [2307,[1305.48,7406.15,0.0302269],[[2296,2],[2317,2]]], [2308,[1421.16,7524.64,-0.235005],[[2296,2]]], [2309,[1048.02,8165.19,0.159398],[[2297,2],[2318,2]]], +[2310,[681.904,2902.25,0],[[2298,2],[2319,2],[2320,2]]], [2311,[1154.55,620.688,0.452728],[[2299,2]]], [2312,[1086.09,460.694,1.04694],[[2299,2]]], [2313,[1304.38,779.744,3.30099],[[2300,2],[2321,2]]], [2314,[1317.66,628.887,-4.92123],[[2301,2],[2322,2]]], [2315,[1751.66,9334.34,-2.38419e-007],[[2304,2],[2323,2],[2315,2],[2324,2]]], +[2316,[1184.81,7782.11,1.26256],[[2305,2],[2325,2]]], [2317,[1311.85,7385.48,0.309354],[[2307,2],[2326,2],[2317,2],[2327,2]]], [2318,[976.25,8231.71,0.0659389],[[2309,2],[2328,2]]], [2319,[644.03,2947.83,-4.76837e-007],[[2310,2],[2320,2],[2319,2],[2329,2],[2330,2]]], [2320,[662.378,2939.39,0],[[2319,2],[2336,2],[2310,2]]], [2321,[1428.08,730.104,-2.02694],[[2313,2],[2331,2]]], +[2322,[1370.78,628.887,-0.17067],[[2314,2]]], [2323,[1762.85,9344.95,-1.19209e-007],[[2315,2]]], [2324,[1638.77,9279.16,0],[[2315,2],[2332,2]]], [2325,[1043.41,7774.4,0.0344486],[[2316,2],[2333,2]]], [2326,[1305.49,7333.51,-0.410392],[[2317,2],[2326,2],[2334,2]]], [2327,[1355.2,7391.75,0],[[2317,2]]], +[2328,[870.531,8223.08,0.128564],[[2318,2],[2335,2]]], [2329,[680.482,3028.45,0],[[2319,2],[2329,2],[2337,2],[2338,2],[2339,2]]], [2330,[557.455,2885.17,0],[[2319,2],[2340,2]]], [2331,[1504.36,672.404,0.995422],[[2321,2],[2341,2],[2342,2]]], [2332,[1554.92,9249.23,-3.17891e-007],[[2324,2],[2343,2],[2344,2]]], [2333,[1003.98,7743.89,0.180855],[[2325,2],[2345,2]]], +[2334,[1213.18,7318.11,0.0165513],[[2326,2],[2346,2],[2347,2]]], [2335,[848.568,8215.79,-0.0170937],[[2328,2],[2348,2],[2349,2]]], [2336,[670.391,2923.85,0],[[2320,2]]], [2337,[703.651,3108.9,0],[[2329,2],[2337,2],[2339,2]]], [2338,[755.81,3026.87,0],[[2329,2],[2350,2],[2339,2]]], [2339,[757.202,3102.84,0],[[2329,2],[2337,2],[2338,2],[2350,2],[2351,2],[2352,2],[2353,2]]], +[2340,[472.24,2839.01,0],[[2330,2],[2354,2]]], [2341,[1520.59,550.696,1.59479],[[2331,2],[2355,2],[2356,2],[2341,2]]], [2342,[1510.2,600.878,-1.17116],[[2356,2],[2331,2]]], [2343,[1411.91,9316.97,0],[[2332,2],[2357,2]]], [2344,[1542.66,9237.24,-0.290006],[[2332,2],[2344,2],[2358,2]]], [2345,[970.375,7686.24,0.344839],[[2333,2],[2359,2]]], +[2346,[1205.96,7280.08,0.187509],[[2334,2],[2346,2],[2360,2]]], [2347,[1165.69,7466.36,0.00969696],[[2334,2],[2361,2],[2362,2]]], [2348,[782.063,8283.11,0.0107392],[[2335,2]]], [2349,[834.943,8142,0.0100946],[[2335,2],[2363,2],[2349,2],[2364,2]]], [2350,[804.21,3056.33,0],[[2338,2],[2339,2],[2365,2],[2351,2]]], [2351,[847.827,3111.66,0],[[2339,2],[2350,2],[2366,2],[2351,2],[2367,2]]], +[2352,[789.33,3134.56,0],[[2339,2]]], [2353,[780.791,3176.82,0],[[2339,2]]], [2354,[422.353,2855.15,0],[[2340,2],[2368,2]]], [2355,[1547.49,529.812,1.39804],[[2341,2],[2355,2],[2369,2]]], [2356,[1499.23,571.589,-0.569237],[[2341,2],[2342,2],[2356,2]]], [2357,[1319.39,9401.88,-4.76837e-007],[[2343,2],[2370,2]]], +[2358,[1585.01,9260.36,7.29351],[[2344,2],[2371,2],[2358,2]]], [2359,[893.854,7684.1,-0.837921],[[2345,2],[2372,2],[2359,2],[2373,2]]], [2360,[1177.65,7216.5,-0.213662],[[2346,2],[2374,2],[2360,2],[2375,2]]], [2361,[1084.69,7377.69,-0.267797],[[2347,2],[2362,2],[2361,2],[2376,2]]], [2362,[1100.28,7376.52,-0.0065136],[[2361,2],[2385,2],[2347,2],[2362,2]]], [2363,[824.422,8163.47,0],[[2349,2]]], +[2364,[831.016,8056.64,-0.05513],[[2349,2]]], [2365,[945.851,3079.45,4.76837e-007],[[2350,2],[2377,2],[2365,2],[2366,2]]], [2366,[889.249,3138.88,0],[[2351,2],[2365,2],[2366,2],[2378,2]]], [2367,[904.954,3223.49,0],[[2351,2],[2379,2]]], [2368,[351.586,2868.02,0],[[2354,2],[2380,2]]], [2369,[1610.86,556.76,0.674706],[[2355,2],[2381,2]]], +[2370,[1232.14,9477.42,0],[[2357,2],[2382,2]]], [2371,[1597.52,9266.82,0],[[2358,2],[2383,2],[2371,2]]], [2372,[764.005,7687.86,-0.163721],[[2359,2],[2373,2],[2372,2],[2384,2]]], [2373,[766.609,7722.31,-0.0127258],[[2372,2],[2395,2],[2373,2],[2359,2]]], [2374,[1187.18,7235.03,-0.2498],[[2360,2]]], [2375,[1117.73,7156.84,0.284642],[[2360,2]]], +[2376,[1022.91,7353.35,0.298611],[[2361,2],[2386,2],[2376,2],[2387,2],[2388,2]]], [2377,[970.088,3108.3,0],[[2365,2],[2389,2],[2390,2]]], [2378,[819.827,3190.79,-1.90735e-006],[[2366,2]]], [2379,[829.107,3283.98,0],[[2367,2],[2391,2]]], [2380,[277.771,2908.09,0],[[2368,2],[2392,2]]], [2381,[1656.64,596.8,-0.755777],[[2369,2],[2393,2]]], +[2382,[1163.83,9561.74,0],[[2370,2],[2394,2]]], [2383,[1607.23,9271.53,-4.76837e-007],[[2371,2]]], [2384,[736.25,7604.64,-0.383168],[[2372,2]]], [2385,[1115.34,7395.65,-0.0953782],[[2362,2]]], [2386,[1040.71,7367.77,0.0754042],[[2376,2]]], [2387,[953.672,7265.73,1.88792],[[2376,2],[2396,2]]], +[2388,[990.344,7353.91,-0.675503],[[2376,2]]], [2389,[1009.3,3147.54,0],[[2377,2],[2397,2],[2389,2]]], [2390,[960.472,3136.38,0],[[2377,2]]], [2391,[760.823,3381.5,0],[[2379,2],[2398,2]]], [2392,[246.619,2970.16,0],[[2380,2],[2399,2]]], [2393,[1722.7,573.357,0.0363388],[[2381,2],[2400,2]]], +[2394,[1110.54,9646.26,0],[[2382,2],[2401,2]]], [2395,[806.323,7720.81,0.515998],[[2373,2]]], [2396,[907.052,7239.74,0.836545],[[2387,2],[2402,2],[2403,2]]], [2397,[994.122,3138.97,0],[[2389,2]]], [2398,[733.065,3511.8,0],[[2391,2],[2404,2]]], [2399,[239.893,3029.33,1.19209e-007],[[2392,2],[2405,2],[2406,2],[2407,2]]], +[2400,[1729.89,536.723,0.0685176],[[2393,2],[2400,2],[2408,2],[2409,2],[2410,2],[2411,2],[2412,2]]], [2401,[1043.79,9677.49,-4.76837e-007],[[2394,2],[2413,2]]], [2402,[886.479,7191.28,-0.0340411],[[2396,2],[2414,2],[2402,2]]], [2403,[856.766,7314.09,-0.100882],[[2396,2]]], [2404,[705.324,3515.46,0],[[2398,2],[2415,2],[2416,2]]], [2405,[293.747,3020.05,0],[[2399,2]]], +[2406,[290.385,3097.43,0],[[2399,2]]], [2407,[207.025,3041.69,0],[[2399,2]]], [2408,[1801.69,507.07,-0.0450306],[[2400,2]]], [2409,[1796.45,591.702,-0.0806565],[[2400,2],[2417,2],[2409,2],[2418,2]]], [2410,[1730.55,455.071,0],[[2400,2]]], [2411,[1712.27,415.822,0.256113],[[2400,2],[2419,2]]], +[2412,[1684.5,453.086,-0.000201225],[[2400,2]]], [2413,[996.008,9692.16,2.38419e-007],[[2401,2],[2413,2],[2420,2],[2421,2]]], [2414,[763.906,7243.69,0.0277328],[[2402,2],[2422,2]]], [2415,[801.633,3497.02,0],[[2404,2],[2423,2]]], [2416,[540.362,3489.28,0],[[2404,2],[2424,2]]], [2417,[1804.86,646.982,0.000559807],[[2409,2],[2425,2],[2417,2]]], +[2418,[1834.86,584.593,0.0437479],[[2409,2]]], [2419,[1708.67,393.974,0.367737],[[2411,2]]], [2420,[1033.73,9721.67,0],[[2413,2]]], [2421,[887.438,9645.87,-4.76837e-007],[[2413,2],[2426,2]]], [2422,[752.656,7253.29,0.042366],[[2414,2]]], [2423,[836.817,3472.7,0],[[2415,2],[2427,2],[2428,2],[2423,2]]], +[2424,[519.219,3532.23,0],[[2416,2]]], [2425,[1797.4,704.093,-0.0434151],[[2417,2],[2429,2],[2430,2],[2431,2],[2432,2]]], [2426,[834.395,9616.54,0],[[2421,2],[2433,2],[2426,2]]], [2427,[840.007,3529.83,0],[[2423,2],[2434,2],[2435,2],[2427,2]]], [2428,[837.073,3462.21,0],[[2423,2]]], [2429,[1869.64,664.241,0],[[2425,2],[2436,2],[2429,2]]], +[2430,[1828.08,737.078,0.570768],[[2425,2]]], [2431,[1728.52,783.163,2.61324],[[2425,2]]], [2432,[1813.17,787.707,-0.902967],[[2425,2]]], [2433,[809.856,9608.91,0],[[2426,2],[2437,2],[2438,2]]], [2434,[805.786,3579.1,0],[[2427,2],[2439,2]]], [2435,[837.961,3512.34,0],[[2427,2]]], +[2436,[1897.86,690.322,0],[[2429,2]]], [2437,[740.827,9749.26,0],[[2433,2],[2440,2]]], [2438,[756.076,9459.46,0],[[2433,2],[2441,2]]], [2439,[778.878,3605.28,0],[[2434,2],[2442,2]]], [2440,[717.16,9783.18,0],[[2437,2],[2443,2],[2444,2]]], [2441,[694.981,9349.96,0],[[2438,2],[2445,2]]], +[2442,[771.101,3624.44,0],[[2439,2]]], [2443,[675.682,9882.97,0],[[2440,2],[2446,2]]], [2444,[620.785,9813.19,0],[[2440,2],[2447,2]]], [2445,[594.263,9260.37,0],[[2441,2],[2448,2]]], [2446,[636.248,9930.46,0],[[2443,2],[2446,2],[2449,2],[2450,2]]], [2447,[590.695,9841.94,0],[[2444,2],[2451,2],[2452,2]]], +[2448,[570.198,9250.91,0],[[2445,2],[2453,2],[2454,2]]], [2449,[694.446,9973.53,0],[[2446,2],[2455,2],[2456,2],[2457,2]]], [2450,[585.456,9933.53,0],[[2446,2],[2450,2],[2458,2],[2451,2]]], [2451,[523.19,9920.05,0],[[2447,2],[2450,2],[2459,2]]], [2452,[496.989,9838.61,0],[[2447,2],[2460,2]]], [2453,[487.757,9174.17,0],[[2448,2],[2461,2],[2454,2]]], +[2454,[519.476,9154.99,0],[[2453,2],[2466,2],[2448,2]]], [2455,[728.283,9922.21,0],[[2449,2]]], [2456,[673.994,10019.7,0],[[2449,2],[2456,2],[2462,2]]], [2457,[754.781,9991.46,0],[[2449,2]]], [2458,[526.051,9946.81,0],[[2450,2],[2458,2]]], [2459,[530.144,9934.57,0],[[2451,2]]], +[2460,[421.926,9829.55,0],[[2452,2],[2463,2]]], [2461,[400.435,9039.62,0],[[2453,2],[2464,2],[2465,2]]], [2462,[683.414,10110,0],[[2456,2]]], [2463,[340.415,9799.1,0],[[2460,2],[2467,2]]], [2464,[256.211,9158.21,3.17891e-007],[[2461,2],[2468,2],[2464,2],[2469,2]]], [2465,[254.918,8944.54,0],[[2461,2],[2470,2]]], +[2466,[561.119,9058.96,1.58946e-007],[[2454,2],[2471,2],[2472,2]]], [2467,[257.186,9793.38,0],[[2463,2],[2473,2],[2474,2]]], [2468,[266.433,9142.07,3.5067],[[2464,2],[2468,2]]], [2469,[156.71,9271.96,0],[[2464,2],[2475,2]]], [2470,[251.568,8810.18,0],[[2465,2],[2476,2]]], [2471,[473.636,8928.53,0],[[2466,2],[2477,2]]], +[2472,[620.437,9074.31,0],[[2466,2],[2478,2]]], [2473,[195.172,9839.98,-4.76837e-007],[[2467,2]]], [2474,[219.015,9763.18,0],[[2467,2]]], [2475,[127.279,9300.33,0],[[2469,2]]], [2476,[269.059,8718.85,9.53674e-007],[[2470,2],[2479,2]]], [2477,[446.214,8813.54,0],[[2471,2],[2480,2]]], +[2478,[634.664,9068.72,0],[[2472,2],[2481,2],[2482,2]]], [2479,[199.589,8657.23,-9.53674e-007],[[2476,2],[2483,2]]], [2480,[508.369,8706.31,0],[[2477,2],[2484,2]]], [2481,[711.926,9062.06,0],[[2478,2],[2485,2]]], [2482,[645.727,8966.71,0],[[2478,2],[2486,2]]], [2483,[178.049,8547.62,-4.76837e-007],[[2479,2],[2487,2]]], +[2484,[485.685,8619.23,0],[[2480,2],[2488,2]]], [2485,[768.024,9080.18,0],[[2481,2],[2489,2]]], [2486,[661.789,8958.15,0],[[2482,2]]], [2487,[162.616,8521.55,0],[[2483,2]]], [2488,[463.083,8587.41,0],[[2484,2],[2490,2],[2491,2]]], [2489,[840.751,9069.08,0],[[2485,2],[2492,2]]], +[2490,[414.503,8515.68,0],[[2488,2],[2493,2],[2490,2],[2494,2]]], [2491,[436.142,8587.56,0],[[2488,2]]], [2492,[900.024,9047.48,0],[[2489,2],[2495,2],[2492,2]]], [2493,[425.101,8510.78,0],[[2490,2]]], [2494,[383.553,8498.06,0],[[2490,2]]], [2495,[990.727,9025.03,0],[[2492,2],[2496,2]]], +[2496,[1060.7,9088.01,0],[[2495,2],[2497,2]]], [2497,[1076.4,9114.94,0],[[2496,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridnapf.sqf b/A3-Antistasi/NavGrids/navGridnapf.sqf new file mode 100644 index 0000000000..84bcbbabda --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridnapf.sqf @@ -0,0 +1,638 @@ +navGrid = [[0,[14920.7,10718.6,0],[[1,2],[2,2],[3,2]]], [1,[14789.1,10732.6,7.62939e-006],[[0,2],[7,2]]], [2,[14916,10785.8,0],[[0,2],[8,2],[2,2],[9,2]]], [3,[15029,10676.8,0],[[0,2],[10,2]]], [4,[16599.5,18258.7,-1.90735e-006],[[5,2],[6,2]]], [5,[16572.2,18261.9,0],[[4,2],[5,2],[11,2]]], +[6,[16717.7,18325,0],[[4,2],[12,2]]], [7,[14700.1,10730,0],[[1,2],[13,2]]], [8,[14921.8,10766.7,0],[[2,2]]], [9,[14887.4,10914.8,7.62939e-006],[[2,2],[14,2]]], [10,[15126.1,10673.1,0],[[3,2],[15,2]]], [11,[16470.3,18352,0],[[5,2],[16,2]]], +[12,[16742.1,18356.8,-1.27157e-006],[[6,2],[17,2],[18,2]]], [13,[14634.2,10712.1,0],[[7,2],[19,2]]], [14,[14897.6,10998.7,0],[[9,2],[20,2]]], [15,[15179.9,10661.7,-1.52588e-005],[[10,2],[21,2]]], [16,[16352,18447.7,0],[[11,2],[22,2]]], [17,[16818.6,18436.6,1.27157e-006],[[12,2],[23,2],[24,2],[17,2]]], +[18,[16667.8,18475.2,0],[[12,2],[25,2],[26,2]]], [19,[14562.8,10729.8,-7.62939e-006],[[13,2],[27,2]]], [20,[14928.5,11085.8,-7.62939e-006],[[14,2],[28,2]]], [21,[15260.4,10616.5,0],[[15,2],[29,2]]], [22,[16249,18521.9,-3.8147e-006],[[16,2],[30,2],[31,2]]], [23,[16881.2,18532.1,0],[[17,2],[32,2]]], +[24,[16863.9,18460.8,0],[[17,2],[24,2],[33,2]]], [25,[16686,18424.4,0],[[25,2]]], [26,[16533.7,18640.4,0],[[18,2],[34,2]]], [27,[14447.9,10763.2,0],[[19,2],[35,2]]], [28,[14980.2,11193.7,0],[[20,2],[36,2],[37,2]]], [29,[15346.9,10583.8,0],[[21,2],[38,2]]], +[30,[16180,18639.9,0],[[22,2],[31,2],[30,2],[39,2]]], [31,[16214.5,18618.2,7.62939e-006],[[30,2],[22,2]]], [32,[16900.3,18596.2,0],[[23,2],[40,2]]], [33,[16976.9,18388.2,1.27157e-006],[[24,2],[41,2],[33,2],[42,2]]], [34,[16523.3,18828.2,-1.90735e-006],[[26,2],[43,2]]], [35,[14392.1,10784.5,0],[[27,2],[44,2]]], +[36,[14956.7,11303.4,2.54313e-006],[[28,2],[37,2],[36,2],[45,2]]], [37,[14953.5,11292.9,0],[[36,2],[55,2],[37,2],[28,2]]], [38,[15434.1,10514,0],[[29,2],[46,2]]], [39,[16125.6,18703.7,2.54313e-006],[[30,2],[47,2],[48,2],[39,2]]], [40,[16928.9,18681.1,0],[[32,2],[49,2]]], [41,[16954.4,18407.7,0],[[33,2]]], +[42,[17026.6,18332.4,-1.27157e-006],[[33,2],[42,2],[50,2]]], [43,[16500,18931.3,0],[[34,2],[51,2],[52,2],[43,2]]], [44,[14348.3,10836.8,-7.62939e-006],[[35,2],[53,2],[54,2]]], [45,[15005.9,11404.1,0],[[36,2],[56,2]]], [46,[15497.2,10443.6,0],[[38,2],[57,2]]], [47,[16083.1,18749.7,0],[[39,2]]], +[48,[16131.1,18694.1,3.8147e-006],[[39,2]]], [49,[16974.1,18761.7,0],[[40,2],[58,2]]], [50,[17045.4,18311.3,0],[[42,2],[50,2],[59,2]]], [51,[16395.5,19050.4,0],[[43,2],[60,2],[61,2],[51,2]]], [52,[16521.2,18900.6,0],[[43,2],[62,2],[52,2]]], [53,[14285.1,10889.2,1.27157e-006],[[44,2],[54,2],[53,2],[63,2]]], +[54,[14321.7,10891,0],[[53,2],[70,2],[44,2],[54,2]]], [55,[14957,11271.4,2.54313e-006],[[37,2]]], [56,[15017.1,11454.6,0],[[45,2],[64,2]]], [57,[15570,10378.9,0],[[46,2],[65,2]]], [58,[17064.7,18865.4,-4.76837e-007],[[49,2],[66,2]]], [59,[17076.5,18266.8,0],[[50,2],[59,2],[67,2]]], +[60,[16290.7,19147.7,6.35783e-007],[[51,2],[68,2],[60,2],[69,2]]], [61,[16417.3,19030.6,0],[[51,2]]], [62,[16519.1,18897.4,-1.14441e-006],[[52,2],[62,2]]], [63,[14186.3,10929.9,0],[[53,2],[71,2]]], [64,[14992.8,11535.6,0],[[56,2],[72,2]]], [65,[15639.7,10312.6,0],[[57,2],[73,2]]], +[66,[17133,18769,0],[[58,2]]], [67,[17100.4,18219.3,0],[[59,2],[67,2],[74,2]]], [68,[16315.2,19128.7,6.35783e-007],[[60,2]]], [69,[16222.7,19226.3,1.90735e-006],[[60,2],[69,2],[75,2]]], [70,[14336.6,10865.7,0],[[54,2]]], [71,[14153.2,10998.4,0],[[63,2],[76,2]]], +[72,[14990.6,11587.3,0],[[64,2],[77,2]]], [73,[15686.5,10249.3,0],[[65,2],[78,2]]], [74,[17123.4,18183.8,0],[[67,2],[74,2],[79,2]]], [75,[16148.7,19344.7,0],[[69,2],[80,2],[75,2]]], [76,[14109.2,11080.1,0],[[71,2],[81,2]]], [77,[15028.5,11662.8,7.62939e-006],[[72,2],[82,2]]], +[78,[15705.5,10234.1,-2.54313e-006],[[73,2],[83,2],[84,2]]], [79,[17166.7,18084.2,1.27157e-006],[[74,2],[85,2],[79,2]]], [80,[16080.5,19415.1,1.27157e-006],[[75,2],[80,2],[86,2]]], [81,[14043,11127.3,0],[[76,2],[87,2]]], [82,[15048,11745.1,-7.62939e-006],[[77,2],[88,2]]], [83,[15711.3,10129.1,7.62939e-006],[[78,2],[89,2]]], +[84,[15780.3,10251,0],[[78,2],[90,2],[84,2],[91,2]]], [85,[17201.5,17979.2,0],[[79,2],[92,2],[85,2],[93,2]]], [86,[15995.1,19438.5,2.54313e-006],[[80,2],[86,2],[94,2]]], [87,[14008.9,11141.8,0],[[81,2],[95,2],[96,2],[97,2]]], [88,[15074.6,11829,7.62939e-006],[[82,2],[98,2]]], [89,[15718.1,10017.8,0],[[83,2],[99,2]]], +[90,[15757.7,10246.2,0],[[84,2]]], [91,[15892.9,10309,0],[[84,2],[100,2],[91,2]]], [92,[17189.8,18007.4,0],[[85,2]]], [93,[17236.4,17876,-1.27157e-006],[[85,2],[93,2],[101,2]]], [94,[15924.2,19457.3,0],[[86,2],[102,2],[94,2],[103,2]]], [95,[14051.3,11278.7,0],[[87,2],[104,2],[97,2],[95,2]]], +[96,[13946.1,11078.6,0],[[87,2],[105,2],[96,2],[106,2],[107,2]]], [97,[14047.5,11255.9,0],[[95,2],[115,2],[97,2],[87,2]]], [98,[15094.9,11923.9,0],[[88,2],[108,2]]], [99,[15757.5,9907.21,7.62939e-006],[[89,2],[109,2]]], [100,[15861.2,10275.5,5.08626e-006],[[91,2]]], [101,[17242.9,17822.1,0],[[93,2],[101,2],[110,2]]], +[102,[15940.3,19449.2,0],[[94,2]]], [103,[15821,19580.7,-1.27157e-006],[[94,2],[103,2],[111,2]]], [104,[14075.9,11389.5,0],[[95,2],[112,2],[113,2],[104,2],[114,2]]], [105,[13960.1,11089.3,0],[[96,2]]], [106,[13814.9,10993,0],[[96,2],[107,2],[106,2],[116,2]]], [107,[13827.7,11003.9,-1.90735e-006],[[106,2],[121,2],[107,2],[96,2]]], +[108,[15130.8,11994.4,0],[[98,2],[108,2],[117,2]]], [109,[15776.5,9872.29,2.54313e-006],[[99,2],[109,2],[118,2]]], [110,[17254.3,17779.8,1.27157e-006],[[101,2],[110,2],[119,2]]], [111,[15745.2,19659.4,-3.8147e-006],[[103,2]]], [112,[14130.3,11521.7,-6.35783e-007],[[104,2],[114,2],[112,2],[120,2]]], [113,[14068,11364.3,-6.35783e-007],[[104,2]]], +[114,[14118.7,11504.7,0],[[112,2],[128,2],[114,2],[104,2]]], [115,[14039.2,11230.3,-6.35783e-007],[[97,2]]], [116,[13746.9,10930.7,0],[[106,2],[122,2],[116,2],[123,2]]], [117,[15217.3,12048.3,7.62939e-006],[[108,2],[124,2]]], [118,[15831.6,9815.37,-5.08626e-006],[[109,2],[125,2],[118,2],[126,2]]], [119,[17272.2,17747.3,1.27157e-006],[[110,2],[119,2],[127,2]]], +[120,[14181.9,11583.4,0],[[112,2],[129,2],[130,2],[120,2]]], [121,[13855.3,11020.9,6.35783e-007],[[107,2]]], [122,[13763.4,10948.9,0],[[116,2]]], [123,[13672.6,10853.4,0],[[116,2],[131,2],[123,2],[132,2],[133,2]]], [124,[15233.1,12061.6,2.54313e-006],[[117,2],[124,2],[134,2]]], [125,[15810,9833.98,0],[[118,2]]], +[126,[15904.5,9731.08,-5.08626e-006],[[118,2],[135,2],[126,2],[136,2]]], [127,[17300.9,17701.2,0],[[119,2],[127,2],[137,2]]], [128,[14108.2,11478.7,0],[[114,2]]], [129,[14255.8,11684.1,0],[[120,2],[138,2],[139,2],[129,2],[140,2]]], [130,[14168.6,11572,9.53674e-007],[[120,2]]], [131,[13699.6,10877.3,0],[[123,2]]], +[132,[13518.3,10717,-6.35783e-007],[[123,2],[141,2],[132,2],[142,2]]], [133,[13547,10747.6,-1.90735e-006],[[141,2],[123,2]]], [134,[15285.1,12140.3,0],[[124,2],[143,2]]], [135,[15892,9754.89,-7.62939e-006],[[126,2]]], [136,[15937.5,9586.11,0],[[126,2],[144,2],[136,2],[145,2]]], [137,[17324.4,17623.9,0],[[127,2],[137,2],[146,2]]], +[138,[14285.6,11842.8,-6.35783e-007],[[129,2],[147,2],[140,2],[138,2]]], [139,[14239.4,11645.6,-6.35783e-007],[[129,2]]], [140,[14285.8,11819.7,0],[[138,2],[156,2],[140,2],[129,2]]], [141,[13531.5,10733.1,0],[[132,2],[133,2],[141,2]]], [142,[13404.4,10581.7,0],[[132,2],[148,2],[149,2]]], [143,[15341.3,12179.2,-3.8147e-006],[[134,2],[150,2]]], +[144,[15942.1,9629.92,5.08626e-006],[[136,2]]], [145,[15905.4,9486.28,-5.08626e-006],[[136,2],[151,2],[152,2],[145,2]]], [146,[17327.2,17593.3,1.27157e-006],[[137,2],[146,2],[153,2]]], [147,[14280.7,11965.6,6.35783e-007],[[138,2],[154,2],[147,2],[155,2]]], [148,[13327.3,10497.3,0],[[142,2],[149,2],[148,2],[157,2]]], [149,[13342.6,10509.9,0],[[148,2],[166,2],[149,2],[142,2]]], +[150,[15349.9,12187.5,0],[[143,2],[150,2],[158,2]]], [151,[15865.7,9427.97,5.08626e-006],[[145,2],[159,2],[160,2],[161,2]]], [152,[15911.7,9503,-7.62939e-006],[[145,2]]], [153,[17326.4,17565.1,1.27157e-006],[[146,2],[153,2],[162,2]]], [154,[14284.7,11930.3,6.35783e-007],[[147,2]]], [155,[14279.6,12069.6,0],[[147,2],[163,2],[164,2],[155,2],[165,2]]], +[156,[14281.9,11791.9,-6.35783e-007],[[140,2]]], [157,[13189.4,10381.3,1.90735e-006],[[148,2],[167,2]]], [158,[15404.5,12263.4,0],[[150,2],[168,2]]], [159,[15933,9357.13,0],[[151,2],[169,2],[159,2],[170,2]]], [160,[15765.4,9351.17,0],[[151,2],[161,2],[160,2],[171,2]]], [161,[15778.5,9361.77,0],[[160,2],[180,2],[151,2],[161,2]]], +[162,[17328.5,17522.3,1.27157e-006],[[153,2],[162,2],[172,2]]], [163,[14311.4,12225.8,0],[[155,2],[173,2],[165,2],[163,2]]], [164,[14276.2,12048.7,0],[[155,2]]], [165,[14304.4,12207.2,0],[[163,2],[188,2],[165,2],[155,2]]], [166,[13362.9,10532.6,0],[[149,2]]], [167,[13140,10331.8,-1.27157e-006],[[157,2],[174,2],[167,2],[175,2],[176,2]]], +[168,[15498.9,12290,0],[[158,2],[177,2]]], [169,[15888.3,9369.95,0],[[159,2]]], [170,[16099.6,9438.07,-5.08626e-006],[[159,2],[178,2],[179,2]]], [171,[15679.8,9254.99,0],[[160,2],[181,2],[171,2],[182,2],[183,2]]], [172,[17333.9,17468.1,0],[[162,2],[184,2],[172,2],[185,2]]], [173,[14361.7,12375.3,-6.35783e-007],[[163,2],[186,2],[187,2]]], +[174,[13161.6,10356.1,-6.35783e-007],[[167,2]]], [175,[13023.5,10185.1,0],[[167,2],[176,2],[175,2],[189,2]]], [176,[13034.8,10205.2,0],[[175,2],[200,2],[176,2],[167,2]]], [177,[15553.3,12282.4,0],[[168,2],[190,2]]], [178,[16231.7,9535.13,0],[[170,2],[191,2],[178,2],[192,2]]], [179,[16105.1,9460.89,0],[[170,2],[179,2],[193,2]]], +[180,[15791.8,9376.15,0],[[161,2]]], [181,[15708.7,9294.52,5.08626e-006],[[171,2]]], [182,[15545.9,9038.62,5.08626e-006],[[171,2],[183,2],[182,2],[194,2]]], [183,[15536,9124.06,0],[[182,2],[208,2],[183,2],[171,2]]], [184,[17328.1,17490.2,0],[[172,2],[195,2],[184,2]]], [185,[17319.2,17367.6,0],[[172,2],[196,2],[185,2],[197,2]]], +[186,[14292.9,12531.6,0],[[173,2],[198,2]]], [187,[14396.3,12507.3,0],[[173,2],[199,2]]], [188,[14298.7,12179.2,0],[[165,2]]], [189,[12970.6,10084.6,-6.35783e-007],[[175,2],[201,2],[189,2],[202,2]]], [190,[15669,12297.7,-6.35783e-007],[[177,2],[203,2],[190,2],[204,2]]], [191,[16199.2,9503.24,0],[[178,2]]], +[192,[16366.1,9577.81,1.01725e-005],[[178,2],[205,2],[192,2],[206,2]]], [193,[16063.5,9421.87,0],[[179,2],[207,2],[193,2]]], [194,[15514.5,8812.21,0],[[182,2],[209,2],[194,2],[210,2]]], [195,[17327.8,17494.4,0],[[184,2]]], [196,[17339.2,17388.7,-1.27157e-006],[[185,2]]], [197,[17244.9,17343.4,0],[[185,2],[197,2],[211,2]]], +[198,[14274.1,12638.6,2.38419e-007],[[186,2],[212,2],[213,2],[214,2]]], [199,[14391.8,12591,0],[[187,2],[215,2],[213,2]]], [200,[13056.5,10232.6,0],[[176,2]]], [201,[12980.6,10109,-1.27157e-006],[[189,2]]], [202,[12949.6,10034,0],[[189,2],[216,2],[217,2]]], [203,[15654.9,12275.7,-9.53674e-007],[[190,2]]], +[204,[15703,12354.7,-6.35783e-007],[[190,2],[204,2],[218,2]]], [205,[16317,9583.69,0],[[192,2]]], [206,[16513.7,9618.35,0],[[192,2],[219,2],[206,2],[220,2]]], [207,[16074.2,9436.99,7.62939e-006],[[193,2],[207,2],[221,2]]], [208,[15575,9161.39,-5.08626e-006],[[183,2]]], [209,[15521.3,8852.42,0],[[194,2]]], +[210,[15490.4,8632.73,0],[[194,2],[222,2],[210,2],[223,2]]], [211,[17208.7,17348.8,0],[[197,2],[211,2],[224,2]]], [212,[14265.9,12706.8,0],[[198,2],[225,2],[226,2],[212,2]]], [213,[14323.9,12640.1,3.17891e-007],[[198,2],[199,2],[215,2]]], [214,[14225.9,12700,2.38419e-007],[[198,2],[227,2],[214,2],[228,2],[229,2],[230,2]]], [215,[14395.2,12628.3,1.90735e-006],[[199,2],[213,2],[231,2]]], +[216,[12913.5,9943.33,4.76837e-007],[[202,2],[232,2],[216,2],[233,2],[234,2]]], [217,[12850,10080.7,-1.90735e-006],[[202,2],[235,2],[236,2]]], [218,[15760.5,12434.6,0],[[204,2],[218,2],[237,2]]], [219,[16481.4,9589.31,0],[[206,2]]], [220,[16633.6,9687.79,-2.03451e-005],[[206,2],[238,2],[220,2],[239,2],[240,2]]], [221,[16040.1,9390.06,0],[[207,2]]], +[222,[15501.7,8673.41,0],[[210,2]]], [223,[15428.4,8531.93,0],[[210,2],[241,2],[223,2],[242,2]]], [224,[17175.1,17358.1,1.27157e-006],[[211,2],[224,2],[243,2]]], [225,[14270.1,12800.9,0],[[212,2],[244,2],[245,2],[225,2]]], [226,[14266.1,12689.3,0],[[212,2]]], [227,[14240.4,12651.3,0],[[214,2]]], +[228,[14219.9,12861.6,6.35783e-007],[[214,2],[230,2],[228,2],[246,2],[247,2]]], [229,[14117.7,12727.7,9.53674e-007],[[214,2],[248,2]]], [230,[14215.5,12838.3,0],[[228,2],[263,2],[214,2],[230,2]]], [231,[14424.9,12743.8,0],[[215,2],[249,2]]], [232,[12929.6,9976.74,0],[[216,2]]], [233,[13017,9853.27,-3.8147e-006],[[216,2],[250,2]]], +[234,[12800.4,9801.39,0],[[216,2],[251,2],[252,2]]], [235,[12783,10097.8,0],[[217,2],[253,2],[236,2],[235,2]]], [236,[12807.5,10098.2,0],[[235,2],[271,2],[217,2]]], [237,[15783.8,12546.7,1.90735e-006],[[218,2],[254,2]]], [238,[16603.2,9682.38,-1.52588e-005],[[220,2]]], [239,[16836.9,9705.36,1.52588e-005],[[220,2],[240,2],[239,2],[255,2],[256,2]]], +[240,[16792.9,9686.43,0],[[239,2],[273,2],[240,2],[220,2]]], [241,[15449.5,8553.39,0],[[223,2]]], [242,[15348.3,8417.54,0],[[223,2],[257,2],[242,2],[258,2]]], [243,[17104.5,17391.9,0],[[224,2],[259,2],[243,2],[260,2]]], [244,[14297.5,12959.4,4.76837e-007],[[225,2],[261,2],[262,2]]], [245,[14266.5,12774.8,0],[[225,2]]], +[246,[14244.1,13030.8,0],[[228,2],[247,2],[246,2],[264,2]]], [247,[14243.4,13003.4,0],[[246,2],[280,2],[247,2],[228,2]]], [248,[14056.9,12696.9,0],[[229,2],[265,2]]], [249,[14462.2,12828,0],[[231,2],[266,2]]], [250,[12885,9689.18,0],[[233,2],[267,2]]], [251,[12701.5,9701.47,0],[[234,2],[252,2],[251,2],[268,2],[269,2]]], +[252,[12736,9726.68,1.90735e-006],[[251,2],[286,2],[252,2],[234,2]]], [253,[12656.1,10110.7,0],[[235,2],[270,2]]], [254,[15822.8,12657.4,0],[[237,2],[272,2]]], [255,[17043.2,9767.59,0],[[239,2],[274,2],[256,2],[255,2]]], [256,[17006.5,9729.75,-1.52588e-005],[[255,2],[297,2],[256,2],[239,2]]], [257,[15367.4,8464.83,0],[[242,2]]], +[258,[15270.1,8227.51,0],[[242,2],[275,2],[258,2],[276,2]]], [259,[17125.2,17375.4,0],[[243,2],[277,2],[259,2]]], [260,[17042.3,17425.4,0],[[243,2],[260,2],[278,2]]], [261,[14325.3,13072,0],[[244,2],[262,2],[261,2],[279,2]]], [262,[14314.1,13045.5,0],[[261,2],[302,2],[262,2],[244,2]]], [263,[14214.6,12816.2,6.35783e-007],[[230,2]]], +[264,[14268.6,13207.2,0],[[246,2],[281,2]]], [265,[13997.8,12630.3,0],[[248,2],[282,2]]], [266,[14503,12910.7,0],[[249,2],[283,2]]], [267,[12836.8,9635.11,0],[[250,2],[268,2],[284,2],[285,2]]], [268,[12751.4,9583.34,0],[[251,2],[267,2],[287,2],[288,2],[284,2]]], [269,[12531.7,9601.37,0],[[251,2],[289,2],[290,2]]], +[270,[12559.1,10106.9,0],[[253,2],[291,2]]], [271,[12823.1,10093.8,0],[[236,2]]], [272,[15818.3,12689.2,3.17891e-007],[[254,2],[292,2],[293,2]]], [273,[16748.9,9689.19,0],[[240,2]]], [274,[17157.8,9901.72,5.08626e-006],[[255,2],[294,2],[274,2],[295,2],[296,2]]], [275,[15286.3,8274.96,0],[[258,2],[298,2],[275,2]]], +[276,[15244.6,8087.93,0],[[258,2],[299,2],[276,2],[300,2]]], [277,[17128.5,17373.8,0],[[259,2]]], [278,[16971,17439.6,1.27157e-006],[[260,2],[278,2],[301,2]]], [279,[14380.9,13195.9,0],[[261,2],[303,2],[304,2],[279,2]]], [280,[14238.9,12972.2,0],[[247,2]]], [281,[14287.7,13318.9,0],[[264,2],[303,2],[305,2]]], +[282,[13911.6,12554.3,0],[[265,2],[306,2]]], [283,[14540,12995.1,-1.90735e-006],[[266,2],[307,2]]], [284,[12873.1,9534.49,0],[[267,2],[268,2],[285,2],[284,2],[308,2]]], [285,[12885.5,9561.94,0],[[284,2],[330,2],[285,2],[267,2]]], [286,[12756,9748.97,0],[[252,2]]], [287,[12642.9,9511.08,0],[[268,2],[309,2],[310,2]]], +[288,[12817.2,9459.43,0],[[268,2],[311,2]]], [289,[12432.8,9537.94,-1.27157e-006],[[269,2],[290,2],[289,2],[312,2]]], [290,[12450.3,9552.99,0],[[289,2],[335,2],[290,2],[269,2]]], [291,[12488.8,10078,-7.62939e-006],[[270,2],[313,2],[314,2]]], [292,[15832.5,12791.4,0],[[272,2],[315,2]]], [293,[15721.2,12749.1,0],[[272,2],[316,2]]], +[294,[17122.5,9854.99,5.08626e-006],[[274,2]]], [295,[17325.6,9983.8,0],[[274,2],[296,2],[295,2],[317,2]]], [296,[17296.8,9982.87,0],[[295,2],[341,2],[296,2],[274,2]]], [297,[16962.7,9724.81,0],[[256,2]]], [298,[15290.6,8278.95,0],[[275,2],[318,2],[298,2]]], [299,[15248.1,8111.72,0],[[276,2]]], +[300,[15149.4,7939.05,1.01725e-005],[[276,2],[319,2],[300,2],[320,2]]], [301,[16906.2,17454.6,0],[[278,2],[321,2],[322,2]]], [302,[14308.1,13017.4,0],[[262,2]]], [303,[14410.1,13280.5,0],[[279,2],[281,2],[323,2]]], [304,[14367.2,13161.9,0],[[279,2]]], [305,[14265.7,13497.5,0],[[281,2],[324,2],[325,2],[326,2],[327,2]]], +[306,[13861.7,12495.5,0],[[282,2],[328,2]]], [307,[14595.8,13077.2,3.8147e-006],[[283,2],[329,2]]], [308,[12827.3,9463.39,0],[[284,2]]], [309,[12603.9,9500.69,0],[[287,2],[309,2],[331,2]]], [310,[12661,9458.32,0],[[287,2]]], [311,[12817.5,9386.1,0],[[288,2],[332,2],[311,2],[333,2],[334,2]]], +[312,[12331.8,9462.67,-1.27157e-006],[[289,2],[336,2],[312,2],[337,2]]], [313,[12407,10052.3,0],[[291,2],[338,2],[314,2],[313,2]]], [314,[12438.3,10042.4,0],[[313,2],[359,2],[314,2],[291,2]]], [315,[15803.4,12879.4,0],[[292,2],[339,2]]], [316,[15667.9,12827.9,0],[[293,2],[340,2]]], [317,[17445.5,10003.1,0],[[295,2],[342,2],[317,2],[343,2]]], +[318,[15259.6,8251.79,3.8147e-006],[[298,2],[318,2],[344,2]]], [319,[15200.6,7980.38,0],[[300,2]]], [320,[15020.4,7828.47,0],[[300,2],[345,2],[320,2],[346,2]]], [321,[16829.1,17431.5,3.8147e-006],[[301,2]]], [322,[16851.3,17484.4,-1.27157e-006],[[301,2],[322,2],[347,2]]], [323,[14475.7,13454.9,1.90735e-006],[[303,2],[348,2],[325,2]]], +[324,[14237.4,13609,0],[[305,2],[326,2],[324,2],[349,2]]], [325,[14396.5,13506.6,5.96046e-008],[[305,2],[323,2],[348,2],[327,2],[325,2],[350,2]]], [326,[14245.8,13590.3,0],[[324,2],[366,2],[305,2],[326,2]]], [327,[14364.4,13512.4,0],[[325,2],[371,2],[327,2],[305,2]]], [328,[13800.9,12407.9,0],[[306,2],[351,2]]], [329,[14663.9,13156.5,0],[[307,2],[352,2]]], +[330,[12873.7,9586.71,0],[[285,2]]], [331,[12576.1,9477.5,0],[[309,2],[331,2],[353,2]]], [332,[12814.2,9403.67,0],[[311,2]]], [333,[12848.6,9243.16,-1.27157e-006],[[311,2],[334,2],[333,2],[354,2],[355,2]]], [334,[12840.2,9265.29,0],[[333,2],[376,2],[334,2],[311,2]]], [335,[12476.1,9569.04,0],[[290,2]]], +[336,[12363,9481.96,-1.27157e-006],[[312,2]]], [337,[12211.4,9389.32,0],[[312,2],[356,2],[357,2]]], [338,[12286.7,10096.5,0],[[313,2],[358,2]]], [339,[15775.7,12928.1,-3.17891e-007],[[315,2],[339,2],[360,2]]], [340,[15613.6,12902.4,0],[[316,2],[361,2]]], [341,[17270.1,9979.14,0],[[296,2]]], +[342,[17422.7,9995.54,0],[[317,2]]], [343,[17486,10019.6,0],[[317,2],[343,2],[362,2]]], [344,[15281.9,8271.22,0],[[318,2]]], [345,[15059.7,7857.33,0],[[320,2]]], [346,[14861.4,7757.53,1.01725e-005],[[320,2],[363,2],[346,2],[364,2]]], [347,[16784.2,17509.7,1.90735e-006],[[322,2]]], +[348,[14474.3,13474.2,0],[[323,2],[325,2],[365,2]]], [349,[14181.1,13683,-2.38419e-007],[[324,2],[367,2],[349,2],[368,2],[369,2],[370,2]]], [350,[14466.2,13639.1,0],[[325,2],[372,2]]], [351,[13684,12375.7,0],[[328,2],[373,2]]], [352,[14745.2,13216.1,0],[[329,2],[374,2]]], [353,[12506.7,9400.37,0],[[331,2],[375,2]]], +[354,[12911.6,9074.13,-1.27157e-006],[[333,2],[355,2],[354,2],[377,2]]], [355,[12896.4,9107.59,0],[[354,2],[401,2],[355,2],[333,2]]], [356,[12157.2,9356,0],[[337,2],[378,2],[356,2],[379,2],[380,2]]], [357,[12294.7,9299.17,0],[[337,2],[381,2],[375,2]]], [358,[12218.8,10092.1,0],[[338,2],[382,2]]], [359,[12463,10057.9,0],[[314,2]]], +[360,[15685.9,13045,0],[[339,2],[383,2]]], [361,[15567.8,12957.4,9.53674e-007],[[340,2],[384,2],[361,2],[383,2]]], [362,[17569.6,10044,0],[[343,2],[385,2],[362,2],[386,2]]], [363,[14903.9,7781.26,1.52588e-005],[[346,2]]], [364,[14735.9,7612.44,0],[[346,2],[387,2],[364,2],[388,2]]], [365,[14549,13646.7,0],[[348,2],[389,2],[390,2],[391,2],[372,2],[392,2]]], +[366,[14250.2,13570.8,-1.58946e-007],[[326,2]]], [367,[14206.2,13667.7,-4.76837e-007],[[349,2]]], [368,[14087.4,13832.3,0],[[349,2],[370,2],[368,2],[393,2],[394,2]]], [369,[14103.7,13661.5,6.35783e-007],[[349,2],[395,2],[369,2],[396,2],[397,2]]], [370,[14101.6,13794.9,0],[[368,2],[422,2],[370,2],[349,2]]], [371,[14328.8,13508.7,7.94729e-008],[[327,2]]], +[372,[14478.2,13678,0],[[350,2],[365,2],[391,2],[398,2]]], [373,[13597.5,12343.4,0],[[351,2],[399,2]]], [374,[14836.7,13241.8,0],[[352,2],[400,2]]], [375,[12444.7,9371.76,0],[[353,2],[357,2]]], [376,[12834.4,9292.76,-1.27157e-006],[[334,2]]], [377,[12973.6,8928.34,0],[[354,2],[402,2],[377,2],[403,2]]], +[378,[12171,9367.35,0],[[356,2]]], [379,[12038.9,9268.66,0],[[356,2],[380,2],[379,2],[404,2],[405,2],[406,2]]], [380,[12062.1,9278.09,0],[[379,2],[433,2],[380,2],[356,2]]], [381,[12209.9,9222.78,0],[[357,2],[407,2]]], [382,[12166.6,10063.2,0],[[358,2],[408,2]]], [383,[15620.1,13098.4,0],[[360,2],[361,2],[409,2]]], +[384,[15483.2,13032.6,0],[[361,2],[410,2]]], [385,[17541.9,10039.2,0],[[362,2]]], [386,[17751.7,10079.7,-5.08626e-006],[[362,2],[411,2],[386,2],[412,2]]], [387,[14761,7656.65,0],[[364,2]]], [388,[14604.3,7447.29,0],[[364,2],[413,2],[388,2],[414,2]]], [389,[14599.9,13806.9,1.19209e-007],[[365,2],[415,2],[416,2],[417,2],[418,2]]], +[390,[14662.3,13616,-1.58946e-007],[[365,2],[392,2],[390,2],[419,2],[420,2]]], [391,[14531.7,13657.5,0],[[365,2],[372,2],[421,2],[391,2]]], [392,[14638.9,13619.9,-4.76837e-007],[[390,2],[453,2],[365,2],[392,2]]], [393,[13985.7,13991.5,0],[[368,2],[423,2],[424,2]]], [394,[14153.7,13913.9,0],[[368,2],[425,2],[426,2]]], [395,[14120.4,13667.8,9.53674e-007],[[369,2]]], +[396,[13978.8,13587.8,0],[[369,2],[397,2],[396,2],[427,2]]], [397,[13988.7,13618.1,3.8147e-006],[[396,2],[463,2],[397,2],[369,2]]], [398,[14336.8,13769.4,0],[[372,2],[428,2],[425,2]]], [399,[13549.9,12298.9,0],[[373,2],[429,2]]], [400,[14958.2,13261.9,-3.8147e-006],[[374,2],[430,2]]], [401,[12886.5,9137.51,0],[[355,2]]], +[402,[12969.6,8956.28,0],[[377,2]]], [403,[12960,8752.53,-3.8147e-006],[[377,2],[431,2],[432,2]]], [404,[11891,9179,0],[[379,2],[434,2],[435,2]]], [405,[11998.3,9348.93,1.27157e-006],[[379,2],[436,2],[405,2],[437,2]]], [406,[12011.7,9312.18,0],[[436,2],[379,2]]], [407,[12088.6,9153.1,-3.8147e-006],[[381,2],[438,2]]], +[408,[12099.4,10027.5,0],[[382,2],[439,2]]], [409,[15620.2,13202.3,0],[[383,2],[440,2],[441,2],[442,2]]], [410,[15413.8,13099.1,-1.90735e-006],[[384,2],[443,2]]], [411,[17668.2,10064.8,-5.08626e-006],[[386,2]]], [412,[17936.6,10046,-1.01725e-005],[[386,2],[444,2],[412,2],[445,2]]], [413,[14653.8,7504.85,0],[[388,2]]], +[414,[14408.1,7335.89,0],[[388,2],[446,2],[414,2],[447,2]]], [415,[14726.8,13770.2,5.96046e-008],[[389,2],[418,2],[415,2],[448,2],[449,2]]], [416,[14427.5,13868.1,-4.76837e-007],[[389,2],[450,2]]], [417,[14642.9,13920.6,0],[[389,2],[451,2],[449,2],[452,2]]], [418,[14687.4,13771.8,0],[[415,2],[482,2],[389,2],[418,2]]], [419,[14829.6,13579.9,0],[[390,2],[420,2],[419,2],[454,2]]], +[420,[14803.6,13589.6,0],[[419,2],[493,2],[420,2],[390,2]]], [421,[14528.1,13659.6,7.94729e-008],[[391,2]]], [422,[14121.1,13770.2,0],[[370,2]]], [423,[13929.5,14002.6,1.27157e-006],[[393,2],[455,2],[423,2],[456,2]]], [424,[13938.5,14121.2,9.53674e-008],[[393,2],[457,2],[424,2],[458,2],[459,2],[460,2],[461,2]]], [425,[14282.1,13811.5,0],[[394,2],[398,2],[428,2]]], +[426,[14203.6,13992,0],[[394,2],[450,2],[462,2],[458,2]]], [427,[13975.2,13455.7,0],[[396,2],[464,2],[427,2],[465,2]]], [428,[14320.4,13781.3,0],[[398,2],[425,2]]], [429,[13495.6,12224.5,0],[[399,2],[466,2]]], [430,[15050.6,13261.2,0],[[400,2],[467,2]]], [431,[12931.7,8619.95,0],[[403,2],[432,2],[431,2],[468,2]]], +[432,[12926.1,8648.23,0],[[431,2],[509,2],[432,2],[403,2]]], [433,[12084.2,9295.41,0],[[380,2]]], [434,[11786,9124.87,1.27157e-006],[[404,2],[435,2],[434,2],[469,2],[470,2]]], [435,[11808.3,9132.77,0],[[434,2],[513,2],[435,2],[404,2]]], [436,[12004.9,9340.14,0],[[405,2],[406,2],[436,2]]], [437,[11939.2,9414.56,3.8147e-006],[[405,2],[471,2]]], +[438,[12007.3,9119.48,0],[[407,2],[472,2]]], [439,[12081.1,10016.8,0],[[408,2],[439,2],[473,2]]], [440,[15679.3,13269.1,0],[[409,2],[474,2],[475,2]]], [441,[15496.3,13211.7,1.58946e-007],[[409,2],[442,2],[441,2],[476,2]]], [442,[15530.2,13200.3,0],[[441,2],[522,2],[442,2],[409,2]]], [443,[15328,13167,-6.35783e-007],[[410,2],[477,2],[478,2]]], +[444,[17913.4,10063.1,-1.52588e-005],[[412,2]]], [445,[18044.5,9911.64,2.54313e-006],[[412,2],[479,2],[445,2],[480,2]]], [446,[14455.8,7337.38,0],[[414,2]]], [447,[14206.2,7353.15,0],[[414,2],[481,2]]], [448,[14829.3,13752.4,0],[[415,2],[483,2],[448,2],[484,2]]], [449,[14769.8,13864.3,9.53674e-008],[[415,2],[417,2],[485,2],[449,2],[486,2],[487,2],[488,2]]], +[450,[14379.6,13891.8,4.76837e-007],[[416,2],[426,2],[489,2],[450,2]]], [451,[14690,14067.1,0],[[417,2],[490,2],[491,2]]], [452,[14479.6,13986.2,0],[[417,2],[492,2],[491,2]]], [453,[14614.9,13627.6,0],[[392,2]]], [454,[14963.3,13535.4,7.94729e-008],[[419,2],[494,2],[495,2]]], [455,[13952.4,13989,9.53674e-007],[[423,2]]], +[456,[13801,14074,0],[[423,2],[496,2]]], [457,[13947.5,14063.9,0],[[424,2]]], [458,[14129.9,14035.6,0],[[424,2],[426,2],[497,2]]], [459,[13976,14238.6,0],[[424,2],[498,2],[459,2],[499,2],[500,2]]], [460,[13751.2,14266.5,0],[[424,2],[501,2],[502,2]]], [461,[14089.1,14069.2,0],[[497,2],[424,2]]], +[462,[14275.8,14090.5,-2.38419e-007],[[426,2],[503,2],[504,2],[505,2]]], [463,[14014.7,13628.6,0],[[397,2]]], [464,[13972.2,13487.5,0],[[427,2]]], [465,[13981.1,13392,0],[[427,2]]], [466,[13414.9,12132,-6.35783e-007],[[429,2],[506,2],[507,2],[508,2]]], [467,[15141.5,13244.4,0],[[430,2],[477,2]]], +[468,[12936.7,8503.1,0],[[431,2],[510,2],[468,2],[511,2],[512,2]]], [469,[11627.4,9072.62,1.27157e-006],[[434,2],[470,2],[469,2],[514,2],[515,2]]], [470,[11650.7,9076.47,0],[[469,2],[548,2],[470,2],[434,2]]], [471,[11919.7,9479.75,3.8147e-006],[[437,2],[516,2]]], [472,[11921.4,9074.13,0],[[438,2],[517,2]]], [473,[12010.9,9979.32,0],[[439,2],[518,2],[519,2]]], +[474,[15870.9,13286,0],[[440,2]]], [475,[15654.6,13347.6,1.58946e-007],[[440,2],[520,2],[475,2],[521,2]]], [476,[15405.9,13262.8,-4.76837e-007],[[441,2],[523,2],[478,2],[524,2]]], [477,[15213.8,13218.6,7.62939e-006],[[443,2],[467,2]]], [478,[15343.8,13198.4,0],[[443,2],[476,2],[525,2],[478,2]]], [479,[18021,9959.5,5.08626e-006],[[445,2]]], +[480,[18220.5,9747.93,2.54313e-006],[[445,2],[526,2],[480,2],[527,2]]], [481,[14068.8,7279.2,-5.08626e-006],[[447,2],[528,2],[481,2],[529,2]]], [482,[14670.7,13777.1,-1.58946e-007],[[418,2]]], [483,[14807.5,13752.8,0],[[448,2]]], [484,[14933,13759.2,0],[[448,2],[530,2]]], [485,[14756.9,13806.5,0],[[449,2]]], +[486,[14857.6,14071.1,-3.17891e-007],[[449,2],[531,2],[486,2],[532,2]]], [487,[14912,13915.9,0],[[449,2],[533,2],[488,2],[487,2]]], [488,[14894.2,13872.4,0],[[487,2],[568,2],[488,2],[449,2]]], [489,[14399.5,13880.5,4.76837e-007],[[450,2]]], [490,[14730.5,14208.8,0],[[451,2],[534,2]]], [491,[14505,14127.5,-3.17891e-007],[[451,2],[452,2],[535,2],[503,2],[492,2]]], +[492,[14465.7,14031.8,-1.90735e-007],[[452,2],[491,2],[505,2],[536,2],[537,2]]], [493,[14772.7,13596,0],[[420,2]]], [494,[14982.9,13631.6,0],[[454,2],[538,2],[530,2]]], [495,[15119.2,13500.7,0],[[454,2],[539,2]]], [496,[13705.9,14105.9,-1.90735e-006],[[456,2],[540,2]]], [497,[14109.2,14106.3,0],[[543,2],[497,2],[461,2],[458,2]]], +[498,[13964.9,14210.9,0],[[459,2]]], [499,[14064.8,14363.9,0],[[459,2],[500,2],[499,2],[541,2]]], [500,[14024.7,14369,0],[[499,2],[459,2]]], [501,[13673.3,14324.8,3.17891e-007],[[460,2],[542,2],[502,2],[501,2]]], [502,[13693.4,14313.4,0],[[501,2],[582,2],[502,2],[460,2]]], [503,[14308.7,14164,-1.58946e-007],[[462,2],[491,2],[503,2],[535,2]]], +[504,[14169.1,14132.9,-9.53674e-007],[[462,2],[543,2]]], [505,[14336.9,14051.2,-3.17891e-007],[[462,2],[492,2],[544,2],[536,2]]], [506,[13311.2,12152.5,0],[[466,2],[545,2]]], [507,[13371.5,11940.2,6.35783e-007],[[466,2],[508,2],[507,2],[546,2]]], [508,[13353,11990.1,0],[[507,2],[585,2],[508,2],[466,2]]], [509,[12936.1,8685.32,-1.27157e-006],[[432,2]]], +[510,[12939.3,8534.29,0],[[468,2]]], [511,[12908,8358.18,0],[[468,2],[512,2],[511,2],[547,2]]], [512,[12914.9,8376.38,-7.62939e-006],[[511,2],[588,2],[512,2],[468,2]]], [513,[11835.2,9147.13,2.54313e-006],[[435,2]]], [514,[11468.8,9038.68,1.27157e-006],[[469,2],[515,2],[514,2],[549,2]]], [515,[11486,9046.24,3.8147e-006],[[514,2],[591,2],[515,2],[469,2]]], +[516,[11900.8,9514.44,-3.8147e-006],[[471,2],[550,2],[516,2],[551,2]]], [517,[11818.5,9018.92,-3.8147e-006],[[472,2],[552,2]]], [518,[11939.8,9931.39,0],[[473,2],[553,2],[519,2],[518,2]]], [519,[11951.5,9946.53,0],[[518,2],[599,2],[519,2],[473,2]]], [520,[15686.2,13323,3.17891e-007],[[475,2]]], [521,[15567.6,13401.9,0],[[475,2],[554,2],[524,2],[555,2]]], +[522,[15558.6,13199.6,3.17891e-007],[[442,2]]], [523,[15354.5,13308,0],[[476,2],[556,2],[557,2],[523,2]]], [524,[15493.4,13363.5,0],[[476,2],[521,2]]], [525,[15374.7,13230.5,-4.76837e-007],[[478,2]]], [526,[18179.6,9809.8,7.62939e-006],[[480,2],[558,2],[526,2]]], [527,[18427.5,9644.26,-1.27157e-006],[[480,2],[559,2],[560,2],[527,2]]], +[528,[14143.1,7344.67,0],[[481,2],[561,2],[528,2]]], [529,[13934.3,7126.24,5.08626e-006],[[481,2],[562,2],[529,2],[563,2]]], [530,[14984.9,13775.3,0],[[484,2],[494,2],[564,2],[538,2]]], [531,[14848.2,14053.9,0],[[486,2]]], [532,[14919.2,14162.4,0],[[486,2],[534,2],[565,2],[533,2],[566,2]]], [533,[14988.4,14058.9,0],[[487,2],[532,2],[567,2]]], +[534,[14735,14241.9,0],[[490,2],[532,2],[569,2],[570,2],[571,2]]], [535,[14377,14186.8,0.00344828],[[491,2],[503,2],[572,2],[535,2],[544,2],[573,2],[541,2],[574,2]]], [536,[14391.3,14050.7,0],[[492,2],[505,2],[544,2]]], [537,[14545.5,14024.1,0],[[492,2]]], [538,[14993.3,13729.8,0],[[494,2],[530,2]]], [539,[15204.7,13463.5,-3.17891e-007],[[495,2],[575,2],[539,2],[576,2],[556,2]]], +[540,[13676.4,14056.4,0],[[496,2],[577,2],[578,2],[540,2]]], [541,[14201.9,14297.7,-3.17891e-007],[[499,2],[535,2],[573,2],[579,2]]], [542,[13571.5,14376.8,3.17891e-007],[[501,2],[580,2],[542,2],[581,2]]], [543,[14131.8,14143.4,0],[[504,2],[579,2],[497,2]]], [544,[14349.6,14073.4,9.53674e-007],[[505,2],[535,2],[536,2]]], [545,[13190.1,12107.5,0],[[506,2],[583,2],[584,2]]], +[546,[13406.5,11815.9,6.35783e-007],[[507,2],[586,2],[587,2],[546,2]]], [547,[12855.9,8220.44,-5.08626e-006],[[511,2],[589,2],[590,2]]], [548,[11680.6,9086.32,0],[[470,2]]], [549,[11322,8958.94,3.8147e-006],[[514,2],[592,2],[593,2]]], [550,[11910.8,9500.54,0],[[516,2]]], [551,[11817.5,9557.44,0],[[516,2],[551,2],[594,2],[595,2]]], +[552,[11712.9,8967.29,3.8147e-006],[[517,2],[596,2]]], [553,[11874.7,9849.89,0],[[518,2],[597,2],[553,2],[598,2],[595,2]]], [554,[15468.4,13486.7,9.53674e-007],[[521,2],[600,2]]], [555,[15644.5,13454.8,-6.35783e-007],[[521,2],[601,2],[602,2]]], [556,[15304.7,13370.5,-3.17891e-007],[[523,2],[539,2],[576,2],[603,2],[600,2]]], [557,[15370.1,13289.7,0],[[523,2]]], +[558,[18216.1,9795.16,0],[[526,2],[604,2]]], [559,[18588,9524.03,0],[[527,2],[605,2]]], [560,[18400.5,9659.58,-1.90735e-006],[[527,2]]], [561,[14139.3,7346.81,-1.52588e-005],[[528,2],[606,2],[561,2]]], [562,[13948.6,7170.84,0],[[529,2]]], [563,[13946.6,7009.11,0],[[529,2],[607,2],[563,2],[608,2],[609,2]]], +[564,[15119.8,13828.7,-4.76837e-007],[[530,2],[610,2]]], [565,[15009.9,14090.1,-4.76837e-007],[[532,2],[565,2]]], [566,[14910.5,14320.9,0],[[532,2],[611,2],[566,2],[612,2]]], [567,[15036.1,14115.3,0],[[533,2]]], [568,[14853.1,13880.4,0],[[488,2]]], [569,[14730.2,14368.8,0],[[534,2],[613,2]]], +[570,[14579.7,14277.3,-1.58946e-007],[[534,2],[571,2],[614,2]]], [571,[14602.1,14269.9,-4.76837e-007],[[570,2],[640,2],[534,2]]], [572,[14451.6,14153.1,4.76837e-007],[[535,2]]], [573,[14257.4,14265.1,-2.38419e-007],[[535,2],[541,2]]], [574,[14409.7,14336.8,0],[[535,2],[614,2],[615,2]]], [575,[15180.4,13477.6,-3.17891e-007],[[539,2]]], +[576,[15252,13426.8,0],[[539,2],[556,2]]], [577,[13676.1,13929.9,0],[[540,2],[616,2]]], [578,[13679.2,14082.5,0],[[540,2]]], [579,[14159.5,14236.6,0],[[541,2],[543,2],[579,2]]], [580,[13597.1,14367.7,0],[[542,2]]], [581,[13492.3,14390.9,0],[[542,2],[617,2],[618,2],[581,2]]], +[582,[13709.5,14301.2,3.17891e-007],[[502,2]]], [583,[13093.5,12040.9,1.27157e-006],[[545,2],[619,2],[583,2],[620,2],[621,2]]], [584,[13141.8,12060.9,0],[[619,2],[545,2]]], [585,[13371.6,12036.3,0],[[508,2]]], [586,[13429.3,11711,0],[[546,2],[622,2],[586,2],[623,2]]], [587,[13402.1,11835.8,0],[[546,2]]], +[588,[12920.8,8403.84,0],[[512,2]]], [589,[12871.3,8137.78,0],[[547,2],[624,2],[589,2],[625,2]]], [590,[12742,8280.5,2.54313e-006],[[547,2],[626,2],[590,2],[627,2]]], [591,[11516.9,9052.63,0],[[515,2]]], [592,[11208.1,8905.27,0],[[549,2],[593,2],[592,2],[628,2]]], [593,[11230.6,8908.63,0],[[592,2],[653,2],[593,2],[549,2]]], +[594,[11813.1,9517.85,0],[[551,2],[594,2],[629,2]]], [595,[11753.7,9676.9,0],[[551,2],[553,2],[630,2],[595,2],[631,2],[598,2]]], [596,[11640,8925.35,0],[[552,2],[632,2]]], [597,[11898,9877.11,0],[[553,2]]], [598,[11813.5,9779.51,0],[[553,2],[595,2]]], [599,[11972.1,9959.89,0],[[519,2]]], +[600,[15437.8,13509.5,3.17891e-007],[[554,2],[556,2],[633,2],[603,2]]], [601,[15769,13399.6,1.90735e-006],[[555,2],[634,2]]], [602,[15640.4,13543.7,6.35783e-007],[[555,2],[635,2],[602,2],[636,2]]], [603,[15399.3,13463.8,9.53674e-007],[[556,2],[600,2],[603,2]]], [604,[18107.2,9816.91,3.8147e-006],[[558,2]]], [605,[18669.3,9481.97,0],[[559,2]]], +[606,[14093.5,7325.5,-7.62939e-006],[[561,2]]], [607,[13938.5,7033.64,0],[[563,2]]], [608,[13899.1,6855.21,0],[[563,2],[609,2],[608,2],[637,2]]], [609,[13960.8,6849.19,0],[[608,2],[665,2],[609,2],[563,2]]], [610,[15143.1,13839.4,-1.58946e-007],[[564,2],[638,2],[639,2]]], [611,[14922.8,14280.8,-6.35783e-007],[[566,2]]], +[612,[14871.9,14425.6,0],[[566,2]]], [613,[14705.3,14447.6,4.76837e-007],[[569,2]]], [614,[14507.9,14297.4,0],[[570,2],[574,2],[614,2]]], [615,[14356.1,14409.3,-1.58946e-007],[[574,2],[615,2]]], [616,[13676.7,13882.7,0],[[577,2],[616,2],[641,2],[642,2]]], [617,[13400.2,14395.5,0],[[581,2],[643,2],[644,2],[617,2]]], +[618,[13509.8,14390.7,0],[[581,2]]], [619,[13124.2,12041.9,0],[[583,2],[584,2],[619,2]]], [620,[13009.7,12000.4,0],[[583,2],[621,2],[620,2],[645,2]]], [621,[13011.2,12037.3,0],[[620,2],[674,2],[583,2]]], [622,[13422.5,11742.5,6.35783e-007],[[586,2]]], [623,[13444,11583,1.27157e-006],[[586,2],[646,2],[623,2],[647,2]]], +[624,[12867.1,8155.67,0],[[589,2]]], [625,[12921,7987.34,0],[[589,2],[648,2],[649,2]]], [626,[12769.1,8228.44,2.54313e-006],[[590,2]]], [627,[12659.6,8364.86,2.54313e-006],[[590,2],[650,2],[627,2],[651,2],[652,2]]], [628,[11110.7,8882.73,2.54313e-006],[[592,2],[654,2],[655,2]]], [629,[11746.3,9426.22,7.62939e-006],[[594,2],[656,2]]], +[630,[11755.5,9628.14,0],[[595,2]]], [631,[11655.5,9756.3,0],[[595,2],[657,2],[631,2],[658,2]]], [632,[11550.2,8850.15,0],[[596,2],[659,2]]], [633,[15345.1,13570.1,0],[[600,2],[660,2]]], [634,[15869.1,13374.6,3.8147e-006],[[601,2],[661,2]]], [635,[15637.4,13526.1,9.53674e-007],[[602,2]]], +[636,[15656.4,13607.8,0],[[602,2],[662,2],[663,2],[664,2]]], [637,[13808.1,6878.29,-5.08626e-006],[[608,2],[666,2],[637,2],[667,2],[668,2]]], [638,[15200,13760.8,0],[[610,2],[669,2]]], [639,[15297.9,13932.2,1.90735e-006],[[610,2],[670,2]]], [640,[14643.6,14260.8,-2.38419e-007],[[571,2]]], [641,[13547.8,13833,0],[[616,2],[671,2]]], +[642,[13741.6,13877.7,0],[[616,2]]], [643,[13287.5,14443.1,-2.54313e-006],[[617,2],[672,2],[673,2],[643,2]]], [644,[13424.5,14392.2,0],[[617,2]]], [645,[13046.5,11889.9,-7.62939e-006],[[620,2],[675,2]]], [646,[13440.1,11619.3,0],[[623,2]]], [647,[13436.6,11466.4,-1.27157e-006],[[623,2],[676,2],[647,2],[677,2]]], +[648,[12936.7,7835.18,0],[[625,2],[649,2],[648,2],[678,2],[679,2]]], [649,[12941.7,7860.08,0],[[648,2],[703,2],[649,2],[625,2]]], [650,[12695.7,8394.33,0],[[627,2],[680,2],[650,2]]], [651,[12540.2,8268.31,5.08626e-006],[[627,2],[681,2],[652,2],[651,2]]], [652,[12555.2,8280.58,0],[[651,2],[708,2],[652,2],[627,2]]], [653,[11262.4,8924.75,1.27157e-006],[[593,2]]], +[654,[11096.5,8920.08,0],[[628,2],[654,2],[682,2]]], [655,[11027.5,8819.38,0],[[628,2],[683,2],[655,2],[684,2]]], [656,[11670.5,9360.26,0],[[629,2],[685,2]]], [657,[11678.7,9708.3,-7.62939e-006],[[631,2],[686,2],[657,2]]], [658,[11548.5,9887.36,2.54313e-006],[[631,2],[687,2],[658,2],[688,2]]], [659,[11469.1,8810.94,-7.62939e-006],[[632,2],[689,2]]], +[660,[15284.3,13628.8,0],[[633,2],[669,2]]], [661,[15973,13351.9,0],[[634,2],[690,2]]], [662,[15764.3,13582.1,1.27157e-006],[[636,2],[664,2],[662,2],[691,2]]], [663,[15653.9,13696.5,-1.27157e-006],[[636,2],[692,2],[663,2],[693,2]]], [664,[15745.6,13590.5,0],[[662,2],[719,2],[636,2],[664,2]]], [665,[13962.8,6887.51,0],[[609,2]]], +[666,[13824.9,6871.96,-7.62939e-006],[[637,2]]], [667,[13675.7,6922.27,5.08626e-006],[[637,2],[668,2],[667,2],[694,2]]], [668,[13692.3,6919.58,1.52588e-005],[[667,2],[725,2],[668,2],[637,2]]], [669,[15259.4,13669.9,9.53674e-007],[[638,2],[660,2]]], [670,[15408.3,13997.3,-1.90735e-006],[[639,2],[695,2]]], [671,[13453.3,13821.4,0],[[641,2],[696,2]]], +[672,[13181.2,14528.1,-1.27157e-006],[[643,2],[697,2],[672,2],[698,2]]], [673,[13320.2,14418.8,-1.27157e-006],[[643,2]]], [674,[13029.4,12039.3,-1.27157e-006],[[621,2]]], [675,[13044.7,11861.5,0],[[645,2],[699,2],[700,2]]], [676,[13448.7,11500.7,-1.90735e-006],[[647,2]]], [677,[13355,11341.4,0],[[647,2],[701,2],[677,2],[702,2]]], +[678,[12921.6,7679.94,-5.08626e-006],[[648,2],[679,2],[678,2],[704,2]]], [679,[12917.1,7702.25,0],[[678,2],[739,2],[679,2],[648,2]]], [680,[12708,8390.45,0],[[650,2],[705,2],[680,2]]], [681,[12452.1,8218.5,-5.08626e-006],[[651,2],[706,2],[681,2],[707,2]]], [682,[11095.2,8974.41,0],[[654,2],[709,2],[710,2]]], [683,[11046.3,8842.38,0],[[655,2]]], +[684,[10958.6,8687.79,0],[[655,2],[711,2],[684,2],[712,2]]], [685,[11592.1,9328.09,0],[[656,2],[713,2]]], [686,[11694.1,9698.5,0],[[657,2],[686,2],[714,2]]], [687,[11574.5,9848.06,5.08626e-006],[[658,2]]], [688,[11568.5,10075.8,0],[[658,2],[715,2],[688,2],[716,2]]], [689,[11361.9,8763.94,0],[[659,2],[717,2]]], +[690,[16125.9,13296.4,0],[[661,2],[718,2]]], [691,[15875.3,13537.3,0],[[662,2],[720,2],[691,2],[721,2]]], [692,[15658,13675.5,-1.90735e-006],[[663,2]]], [693,[15638,13803,0],[[663,2],[722,2],[693,2],[723,2],[724,2]]], [694,[13564.7,6925.12,0],[[667,2],[726,2],[694,2],[727,2]]], [695,[15517.4,14088.8,0],[[670,2],[728,2]]], +[696,[13383.9,13852.6,0],[[671,2],[729,2]]], [697,[13221,14505.8,-1.27157e-006],[[672,2]]], [698,[13064.2,14579.8,0],[[672,2],[730,2],[731,2],[698,2]]], [699,[12996.9,11859.5,-2.54313e-006],[[675,2],[732,2],[699,2],[733,2]]], [700,[12997.9,11743.5,-2.54313e-006],[[675,2],[734,2],[700,2],[735,2]]], [701,[13383,11364.8,0],[[677,2]]], +[702,[13236.4,11263.3,9.53674e-007],[[677,2],[736,2],[702,2],[737,2],[738,2]]], [703,[12937,7897.98,0],[[649,2]]], [704,[12943.9,7567.57,2.54313e-006],[[678,2],[740,2],[704,2],[741,2],[742,2]]], [705,[12714.4,8384.59,0],[[680,2],[743,2],[705,2]]], [706,[12477.6,8221.12,-7.62939e-006],[[681,2]]], [707,[12401.1,8213.26,0],[[681,2]]], +[708,[12573.2,8300.6,5.08626e-006],[[652,2]]], [709,[11024.2,9116.69,0],[[682,2],[744,2],[709,2],[745,2]]], [710,[11201.9,9049,7.62939e-006],[[682,2],[746,2]]], [711,[10968,8728.66,0],[[684,2]]], [712,[10957.2,8605.95,2.54313e-006],[[684,2],[747,2],[748,2],[749,2]]], [713,[11493.9,9280.89,0],[[685,2],[750,2]]], +[714,[11661.4,9731.54,0],[[686,2]]], [715,[11522.5,10016.4,-2.54313e-006],[[688,2]]], [716,[11674,10222.2,-5.08626e-006],[[688,2],[751,2],[716,2],[752,2]]], [717,[11252.3,8710.27,0],[[689,2],[753,2]]], [718,[16153.6,13373.9,9.53674e-007],[[690,2],[754,2],[718,2],[755,2],[721,2]]], [719,[15720.2,13596,0],[[664,2]]], +[720,[15840.7,13546.5,0],[[691,2]]], [721,[15990.7,13509.4,0],[[691,2],[718,2],[756,2],[721,2]]], [722,[15638,13775,1.90735e-006],[[693,2]]], [723,[15677.1,13972.3,0],[[693,2],[724,2],[723,2],[757,2]]], [724,[15654.1,13940.3,0],[[723,2],[788,2],[724,2],[693,2]]], [725,[13719,6910.91,1.01725e-005],[[668,2]]], +[726,[13601.4,6932.19,0],[[694,2]]], [727,[13429.3,6877.63,0],[[694,2],[758,2],[727,2],[759,2],[760,2]]], [728,[15555.2,14139.8,-6.35783e-007],[[695,2],[761,2],[762,2]]], [729,[13304.6,13881.5,0],[[696,2],[763,2]]], [730,[12934,14644.1,3.94826],[[698,2],[764,2],[765,2],[730,2]]], [731,[13082.5,14570.2,1.90735e-006],[[698,2]]], +[732,[13017.3,11864.6,0],[[699,2]]], [733,[12897.9,11836.6,2.54313e-006],[[699,2],[766,2],[733,2],[767,2],[768,2]]], [734,[13038.1,11783.8,1.90735e-006],[[734,2]]], [735,[12927.8,11695,2.54313e-006],[[700,2],[769,2],[770,2]]], [736,[13274.8,11285.2,1.27157e-006],[[702,2]]], [737,[13155.3,11298.5,1.27157e-006],[[702,2],[771,2],[737,2],[772,2]]], +[738,[13114.1,11192.2,0],[[702,2],[773,2],[738,2],[774,2]]], [739,[12921.1,7735.86,0],[[679,2]]], [740,[12934.2,7605.88,0],[[704,2]]], [741,[12964.6,7378.17,-2.54313e-006],[[704,2],[742,2],[741,2],[775,2],[776,2]]], [742,[12960.3,7401.43,0],[[741,2],[805,2],[742,2],[704,2]]], [743,[12706.1,8391.54,0],[[705,2],[777,2],[743,2]]], +[744,[11052.3,9049.74,0],[[709,2]]], [745,[10918.2,9246.23,2.54313e-006],[[709,2],[778,2],[745,2],[779,2]]], [746,[11270.5,9104.1,0],[[710,2],[780,2]]], [747,[10919.1,8483.69,0],[[712,2],[749,2],[747,2],[781,2]]], [748,[11055.1,8620.27,0],[[712,2],[782,2],[753,2]]], [749,[10930.9,8511.33,0],[[747,2],[809,2],[749,2],[712,2]]], +[750,[11442.7,9250.14,0],[[713,2],[783,2]]], [751,[11664.6,10194.9,-7.62939e-006],[[716,2]]], [752,[11663.3,10325.7,0],[[716,2],[784,2],[785,2],[786,2]]], [753,[11136.9,8667.35,0],[[717,2],[748,2],[782,2]]], [754,[16151.5,13314.3,0],[[718,2]]], [755,[16291.8,13427.2,0],[[718,2],[787,2]]], +[756,[15965.4,13518.7,-1.27157e-006],[[721,2]]], [757,[15750.5,14077.4,0],[[723,2],[789,2],[761,2]]], [758,[13468.1,6888.91,0],[[727,2]]], [759,[13244.7,6862.32,0],[[727,2],[760,2],[759,2],[790,2]]], [760,[13279.9,6835.3,1.52588e-005],[[759,2],[818,2],[760,2],[727,2]]], [761,[15604.5,14118.2,0],[[728,2],[757,2],[791,2],[761,2]]], +[762,[15583.5,14221.9,6.35783e-007],[[728,2],[792,2],[762,2],[793,2]]], [763,[13195.9,13889.6,0],[[729,2],[794,2]]], [764,[12688.9,14710.9,0],[[730,2],[795,2],[764,2],[796,2],[797,2]]], [765,[12962.7,14635.9,0],[[730,2]]], [766,[12929,11846.6,3.8147e-006],[[733,2]]], [767,[12722.5,11720,1.90735e-006],[[733,2],[768,2],[767,2],[770,2],[798,2]]], +[768,[12760.1,11761.2,0],[[767,2],[826,2],[768,2],[733,2]]], [769,[12940.9,11598.6,0],[[735,2],[799,2],[769,2],[800,2],[772,2]]], [770,[12826,11703.4,-2.54313e-006],[[735,2],[767,2],[770,2]]], [771,[13184.7,11303.2,0],[[737,2],[801,2],[771,2]]], [772,[13020.2,11370.4,2.54313e-006],[[737,2],[769,2],[802,2],[772,2],[800,2]]], [773,[13144.4,11209.6,0],[[738,2]]], +[774,[13017.3,11106.4,0],[[738,2],[803,2],[804,2],[774,2]]], [775,[13001.6,7206.79,-2.54313e-006],[[741,2],[776,2],[775,2],[806,2],[790,2]]], [776,[12990.4,7236.75,0],[[775,2],[831,2],[776,2],[741,2]]], [777,[12702.1,8393.2,0],[[743,2],[807,2],[777,2]]], [778,[10942.9,9229.18,2.54313e-006],[[745,2]]], [779,[10875.9,9284.88,2.54313e-006],[[745,2],[779,2],[808,2]]], +[780,[11322.7,9152.65,0],[[746,2],[783,2]]], [781,[10811.2,8268.34,0],[[747,2],[810,2],[811,2]]], [782,[11102.8,8647.9,-7.62939e-006],[[748,2],[753,2],[812,2],[782,2]]], [783,[11384.7,9188.64,-7.62939e-006],[[750,2],[780,2]]], [784,[11806.6,10395.8,2.54313e-006],[[752,2],[786,2],[784,2],[813,2]]], [785,[11572.5,10374.3,0],[[752,2],[814,2],[785,2],[815,2]]], +[786,[11765.8,10365.8,-7.62939e-006],[[784,2],[841,2],[752,2],[786,2]]], [787,[16375.8,13431.6,0],[[755,2],[816,2]]], [788,[15647.7,13912.6,0],[[724,2]]], [789,[15918.7,14114.9,-1.90735e-006],[[757,2],[817,2]]], [790,[13106.9,6945.14,0],[[759,2],[775,2],[819,2],[790,2],[820,2],[806,2],[821,2]]], [791,[15581.4,14126.3,-6.35783e-007],[[761,2]]], +[792,[15581.1,14202.5,9.53674e-007],[[762,2]]], [793,[15562.8,14442,15.8481],[[762,2],[822,2]]], [794,[13112.8,13905.8,0],[[763,2],[823,2]]], [795,[12715.3,14690.5,0],[[764,2]]], [796,[12540.8,14873.1,-9.53674e-007],[[764,2],[797,2],[796,2],[824,2],[825,2]]], [797,[12582.8,14842,0],[[796,2],[855,2],[797,2],[764,2]]], +[798,[12577.1,11690.6,-1.90735e-006],[[767,2],[827,2],[798,2]]], [799,[12947.3,11648.2,-2.54313e-006],[[769,2]]], [800,[12938,11483.3,3.8147e-006],[[769,2],[772,2]]], [801,[13192.5,11299.3,0],[[771,2],[828,2],[801,2]]], [802,[13057.5,11330.6,0],[[772,2]]], [803,[12937.4,11010.4,0],[[774,2],[829,2],[803,2],[830,2]]], +[804,[13036.1,11132.2,-1.27157e-006],[[774,2]]], [805,[12959.4,7433.83,-5.08626e-006],[[742,2]]], [806,[13061.9,7034.63,-3.8147e-006],[[775,2],[790,2]]], [807,[12706.6,8384.23,0],[[777,2]]], [808,[10775.9,9350.75,0],[[779,2],[832,2],[808,2],[833,2]]], [809,[10936.5,8537.65,0],[[749,2]]], +[810,[10717.8,8211.26,0],[[781,2],[834,2],[810,2],[835,2],[836,2]]], [811,[10873.3,8172.75,0],[[781,2],[837,2],[811,2],[838,2]]], [812,[11117.1,8597.92,0],[[782,2],[839,2],[840,2]]], [813,[11900.4,10512,0],[[784,2],[842,2],[813,2],[843,2],[844,2]]], [814,[11595,10365.9,0],[[785,2]]], [815,[11477.8,10407.2,0],[[785,2],[845,2],[815,2],[846,2]]], +[816,[16455,13426.4,0],[[787,2],[847,2]]], [817,[15983.5,14111.1,6.35783e-007],[[789,2],[848,2],[817,2],[849,2]]], [818,[13322.8,6845.66,1.01725e-005],[[760,2]]], [819,[13152.4,6919.43,0],[[790,2]]], [820,[13056.2,6829.97,-2.54313e-006],[[790,2],[821,2],[820,2],[850,2],[851,2]]], [821,[13057.4,6850.97,0],[[820,2],[877,2],[821,2],[790,2]]], +[822,[15525.6,14638.5,9.55701],[[793,2],[852,2],[853,2]]], [823,[13045,13956.3,0],[[794,2],[854,2]]], [824,[12452.3,14927.4,6.35783e-007],[[796,2],[856,2],[857,2],[824,2]]], [825,[12498.3,14805,0],[[796,2],[858,2]]], [826,[12790,11785.3,2.54313e-006],[[768,2]]], [827,[12392.9,11564.9,0],[[798,2],[859,2],[827,2],[860,2]]], +[828,[13189.7,11299.2,9.53674e-007],[[801,2],[828,2],[861,2]]], [829,[12972.5,11039.3,-1.27157e-006],[[803,2]]], [830,[12761,10924.7,0],[[803,2],[862,2],[863,2]]], [831,[12983.9,7267.61,0],[[776,2]]], [832,[10838.6,9328.42,0],[[808,2]]], [833,[10607.7,9385.05,0],[[808,2],[864,2],[833,2],[865,2]]], +[834,[10749.8,8231.15,0],[[810,2]]], [835,[10540.3,8102.11,0],[[810,2],[866,2],[835,2],[867,2]]], [836,[10575.7,8128.87,0],[[866,2],[810,2]]], [837,[10849.1,8196,0],[[811,2]]], [838,[10953.2,8106.57,0],[[811,2],[868,2],[838,2],[869,2]]], [839,[11058.2,8548.39,0],[[812,2]]], +[840,[11267.1,8648.33,0],[[812,2],[870,2]]], [841,[11725.6,10350.6,0],[[786,2]]], [842,[11875.4,10479.3,0],[[813,2]]], [843,[12084,10628,2.54313e-006],[[813,2],[844,2],[843,2],[871,2]]], [844,[12048.3,10614.2,7.62939e-006],[[843,2],[894,2],[844,2],[813,2]]], [845,[11495.8,10404.4,0],[[815,2]]], +[846,[11383.5,10423,0],[[815,2],[872,2],[846,2],[873,2]]], [847,[16551.1,13439.6,3.8147e-006],[[816,2],[874,2]]], [848,[15966.2,14113.9,0],[[817,2]]], [849,[16073.5,14091.2,0],[[817,2],[875,2],[849,2],[876,2]]], [850,[13041.1,6702.93,0],[[820,2],[851,2],[850,2],[878,2],[879,2]]], [851,[13041.7,6721.72,0],[[850,2],[903,2],[820,2],[851,2]]], +[852,[15486.6,14741.9,-3.17891e-007],[[822,2],[880,2],[853,2],[852,2],[881,2]]], [853,[15508.8,14714.7,0],[[852,2],[907,2],[853,2],[822,2]]], [854,[12982.3,13983.1,0],[[823,2],[882,2]]], [855,[12599.7,14814.4,0],[[797,2]]], [856,[12357.3,14938.3,6.35783e-007],[[824,2],[883,2],[856,2],[884,2]]], [857,[12469.5,14924.2,9.53674e-007],[[824,2]]], +[858,[12470.5,14708.1,0],[[825,2],[885,2]]], [859,[12465.2,11593.5,-2.54313e-006],[[827,2]]], [860,[12300.4,11519.9,0],[[827,2],[860,2],[886,2]]], [861,[13210.8,11284,1.90735e-006],[[828,2]]], [862,[12633.2,10830.7,2.54313e-006],[[830,2],[863,2],[862,2],[887,2],[888,2]]], [863,[12676.3,10854.9,0],[[862,2],[914,2],[863,2],[830,2]]], +[864,[10626.3,9388.15,0],[[833,2]]], [865,[10566.4,9378.03,0],[[833,2],[865,2],[889,2]]], [866,[10557.9,8117.3,0],[[835,2],[836,2],[866,2]]], [867,[10449.7,8033.22,-1.27157e-006],[[835,2],[890,2],[867,2],[891,2]]], [868,[10930.6,8129.83,0],[[838,2]]], [869,[11029.6,7968.4,-2.54313e-006],[[838,2],[892,2],[869,2],[893,2]]], +[870,[11355.7,8680.39,0],[[840,2]]], [871,[12251.9,10681.7,0],[[843,2],[895,2],[871,2],[896,2],[887,2]]], [872,[11404.7,10417.9,0],[[846,2]]], [873,[11282.7,10450.4,-5.08626e-006],[[846,2],[897,2],[873,2],[898,2]]], [874,[16643.3,13428.1,0],[[847,2],[899,2],[900,2]]], [875,[16050.1,14098.7,0],[[849,2]]], +[876,[16158.6,14056,-1.27157e-006],[[849,2],[901,2],[876,2],[902,2]]], [877,[13061.4,6878.93,-5.08626e-006],[[821,2]]], [878,[13024.7,6573.92,5.08626e-006],[[850,2],[879,2],[878,2],[904,2]]], [879,[13025.6,6588.13,0],[[878,2],[924,2],[879,2],[850,2]]], [880,[15342.9,14922.7,6.35783e-007],[[852,2],[905,2],[880,2],[906,2]]], [881,[15372.8,14878.8,-1.90735e-006],[[905,2],[852,2]]], +[882,[12910.8,13986,0],[[854,2],[882,2],[908,2]]], [883,[12383.7,14938.6,6.35783e-007],[[856,2]]], [884,[12244.3,14912.2,0],[[856,2],[909,2],[910,2],[884,2]]], [885,[12469.5,14648.4,0],[[858,2],[911,2]]], [886,[12211.4,11540.7,0],[[860,2],[912,2],[886,2],[913,2]]], [887,[12423,10778.6,2.54313e-006],[[862,2],[871,2],[888,2],[887,2],[896,2]]], +[888,[12453.7,10798.3,0],[[887,2],[935,2],[888,2],[862,2]]], [889,[10513.8,9383.57,0],[[865,2],[915,2],[889,2],[916,2]]], [890,[10474.6,8048.68,0],[[867,2]]], [891,[10322.7,7985.53,0],[[867,2],[917,2],[891,2],[918,2],[919,2]]], [892,[11020.2,8009.48,-2.54313e-006],[[869,2]]], [893,[11039.5,7915.15,0],[[869,2]]], +[894,[12018.2,10602.2,2.54313e-006],[[844,2]]], [895,[12208.7,10662.3,-2.54313e-006],[[871,2]]], [896,[12332.8,10725.8,0],[[871,2],[887,2]]], [897,[11310.9,10441.5,-7.62939e-006],[[873,2]]], [898,[11204.7,10506.2,-5.08626e-006],[[873,2],[920,2],[898,2]]], [899,[16721.5,13452.6,0],[[874,2],[900,2],[899,2],[921,2]]], +[900,[16708.6,13435.5,-3.8147e-006],[[899,2],[943,2],[900,2],[874,2]]], [901,[16137,14067.5,-1.27157e-006],[[876,2]]], [902,[16243.2,14013.1,0],[[876,2],[922,2],[902,2],[923,2]]], [903,[13044.1,6741.02,0],[[851,2]]], [904,[13019.5,6526.17,2.54313e-006],[[878,2],[904,2],[925,2]]], [905,[15352.1,14904.4,0],[[880,2],[881,2],[905,2]]], +[906,[15314,14997.7,0],[[880,2],[926,2],[927,2],[906,2]]], [907,[15515.9,14688.3,1.47483],[[853,2]]], [908,[12884.9,13978.7,-5.08626e-006],[[882,2],[908,2],[928,2]]], [909,[12168.1,14868.3,0],[[884,2],[929,2],[930,2],[931,2]]], [910,[12273.4,14925,0],[[884,2]]], [911,[12494.4,14576.3,0],[[885,2],[932,2]]], +[912,[12235.9,11510.9,0],[[886,2]]], [913,[12104.7,11613.8,0],[[886,2],[933,2],[913,2],[934,2]]], [914,[12696.3,10873,0],[[863,2]]], [915,[10534.1,9368.86,0],[[889,2]]], [916,[10408,9458.87,0],[[889,2],[936,2],[916,2],[937,2]]], [917,[10367.3,7991.57,0],[[891,2]]], +[918,[10332.3,7859.89,0],[[891,2],[938,2]]], [919,[10169,8048.05,0],[[891,2],[939,2],[919,2],[940,2]]], [920,[11092.4,10590.5,-5.08626e-006],[[898,2],[941,2],[920,2],[942,2]]], [921,[16801.7,13571.8,0],[[899,2],[944,2]]], [922,[16219.4,14022.7,0],[[902,2]]], [923,[16316.9,13988.1,1.27157e-006],[[902,2],[945,2],[946,2]]], +[924,[13029.4,6614.79,2.54313e-006],[[879,2]]], [925,[13016.6,6498.66,0],[[904,2],[925,2],[947,2]]], [926,[15301.4,15092.5,-3.17891e-007],[[906,2],[948,2],[926,2],[949,2]]], [927,[15317.5,14980.6,0],[[906,2]]], [928,[12817.9,13956.2,-2.54313e-006],[[908,2],[928,2],[950,2]]], [929,[12214.8,14683.3,3.17891e-007],[[909,2],[931,2],[929,2],[951,2]]], +[930,[11960.8,14896.2,0],[[909,2],[952,2]]], [931,[12193.1,14716.5,0],[[929,2],[971,2],[931,2],[909,2]]], [932,[12539.5,14537.1,0],[[911,2],[953,2]]], [933,[12126.4,11611.3,0],[[913,2]]], [934,[12013.8,11620,5.08626e-006],[[913,2],[954,2],[934,2],[955,2]]], [935,[12494.1,10795.3,5.08626e-006],[[888,2]]], +[936,[10444.4,9446.85,0],[[916,2]]], [937,[10288.5,9514.56,0],[[916,2],[956,2],[937,2]]], [938,[10348.3,7736.12,3.8147e-006],[[918,2],[957,2]]], [939,[10207,8012.28,0],[[919,2]]], [940,[10062.9,8168.58,0],[[919,2],[958,2],[940,2],[959,2]]], [941,[11183,10602.3,0],[[920,2],[960,2],[941,2]]], +[942,[10883.5,10594.4,0],[[920,2],[961,2],[942,2],[962,2]]], [943,[16684.3,13429.9,0],[[900,2]]], [944,[16860.9,13638.3,0],[[921,2],[963,2]]], [945,[16372.7,13961,0],[[923,2],[964,2],[945,2],[965,2]]], [946,[16329.2,14010.6,0],[[923,2],[946,2],[966,2]]], [947,[13012.2,6466.82,0],[[925,2],[947,2],[967,2]]], +[948,[15301.6,15066.1,-6.35783e-007],[[926,2]]], [949,[15320.1,15199.5,3.17891e-007],[[926,2],[968,2],[949,2],[969,2]]], [950,[12796,13940.5,-2.54313e-006],[[928,2],[950,2],[970,2]]], [951,[12248.4,14554.5,-6.35783e-007],[[929,2],[972,2],[951,2],[973,2]]], [952,[11803.9,14923.9,0],[[930,2],[974,2]]], [953,[12566.8,14507.4,0],[[932,2],[975,2],[976,2]]], +[954,[12032.4,11619.9,7.62939e-006],[[934,2]]], [955,[11930.6,11631.3,0],[[934,2],[977,2],[955,2],[978,2]]], [956,[10172,9590.74,0],[[937,2],[979,2],[980,2]]], [957,[10393.5,7587.77,-3.8147e-006],[[938,2],[981,2]]], [958,[10099.8,8138.57,0],[[940,2]]], [959,[9846.15,8268.31,3.8147e-006],[[940,2],[982,2]]], +[960,[11161.5,10601.1,-7.62939e-006],[[960,2],[941,2]]], [961,[10913.9,10584.1,0],[[942,2]]], [962,[10745.6,10632.7,0],[[942,2],[983,2],[962,2],[984,2],[985,2]]], [963,[16938.5,13671.8,0],[[944,2],[986,2]]], [964,[16357.4,13969.6,0],[[945,2]]], [965,[16454.7,13919,-6.35783e-007],[[945,2],[987,2],[965,2],[988,2]]], +[966,[16373,14075.1,0],[[946,2],[989,2]]], [967,[13003,6411.82,2.54313e-006],[[947,2],[990,2],[967,2],[991,2]]], [968,[15311,15173.1,3.17891e-007],[[949,2]]], [969,[15392.7,15340.3,0],[[949,2],[992,2]]], [970,[12694.1,13868.3,-7.62939e-006],[[950,2],[993,2]]], [971,[12188.4,14761.3,6.35783e-007],[[931,2]]], +[972,[12248.3,14581.8,-6.35783e-007],[[951,2]]], [973,[12240.2,14482.7,0],[[951,2]]], [974,[11750.1,14927.9,0],[[952,2],[994,2],[995,2]]], [975,[12623.1,14592.9,0],[[953,2]]], [976,[12552.1,14396.2,-1.27157e-006],[[953,2],[996,2],[997,2],[976,2]]], [977,[11948.1,11625.1,0],[[955,2]]], +[978,[11819.7,11652.8,0],[[955,2],[998,2],[978,2],[999,2]]], [979,[10199.8,9550.05,0],[[956,2]]], [980,[10030.8,9698,0],[[956,2],[1000,2],[980,2],[1001,2]]], [981,[10404.6,7447.02,3.8147e-006],[[957,2],[1002,2]]], [982,[9772.86,8312.71,0],[[959,2],[1003,2],[1004,2]]], [983,[10771.4,10633.2,0],[[962,2]]], +[984,[10578.3,10594.2,-2.54313e-006],[[962,2],[1005,2],[985,2],[984,2]]], [985,[10594.9,10596.8,7.62939e-006],[[984,2],[1028,2],[985,2],[962,2]]], [986,[16984.9,13709.4,-1.90735e-006],[[963,2],[1006,2]]], [987,[16432,13928.2,6.35783e-007],[[965,2]]], [988,[16542.6,13891.2,-6.35783e-007],[[965,2],[1007,2],[988,2],[1008,2]]], [989,[16401,14168.9,0],[[966,2],[1009,2]]], +[990,[13006.5,6429.63,0],[[967,2]]], [991,[12986.4,6330.64,-2.54313e-006],[[967,2],[1010,2],[991,2],[1011,2]]], [992,[15419.4,15433.2,1.58946e-007],[[969,2],[1012,2],[1013,2],[992,2]]], [993,[12641.3,13847.4,0],[[970,2],[1014,2]]], [994,[11773.1,14962.6,-6.35783e-007],[[974,2],[994,2],[1015,2]]], [995,[11633.2,14879.6,3.17891e-007],[[974,2],[1016,2],[1017,2]]], +[996,[12555.8,14300.3,0],[[976,2],[1018,2]]], [997,[12558.3,14411,0],[[976,2]]], [998,[11855.7,11652.5,0],[[978,2]]], [999,[11688.6,11678.5,0],[[978,2],[1019,2],[999,2],[1020,2]]], [1000,[10085,9681.21,0],[[980,2]]], [1001,[9846.45,9777.66,0],[[980,2],[1021,2],[1001,2],[1022,2]]], +[1002,[10365.3,7337.94,0],[[981,2],[1023,2]]], [1003,[9735.87,8252.15,0],[[982,2],[1024,2]]], [1004,[9620.66,8441.13,0],[[982,2],[1025,2]]], [1005,[10459.4,10553.4,0],[[984,2],[1026,2],[1005,2],[1027,2]]], [1006,[17013.9,13761.6,0],[[986,2],[1029,2]]], [1007,[16518.6,13896.4,0],[[988,2]]], +[1008,[16634,13879,-1.27157e-006],[[988,2],[1030,2],[1008,2],[1031,2]]], [1009,[16409.8,14241.7,0],[[989,2],[1009,2],[1032,2],[1033,2]]], [1010,[12991.5,6350.14,-3.8147e-006],[[991,2]]], [1011,[12972.9,6241.79,5.08626e-006],[[991,2],[1034,2],[1011,2],[1035,2]]], [1012,[15446.2,15586.6,0],[[992,2],[1036,2],[1037,2],[1038,2]]], [1013,[15413.3,15403,1.58946e-007],[[992,2]]], +[1014,[12586.4,13836.8,0],[[993,2],[1039,2],[1040,2]]], [1015,[11813.3,15081.5,0],[[994,2],[1041,2]]], [1016,[11624,14793,1.58946e-007],[[995,2],[1042,2],[1016,2],[1043,2],[1044,2]]], [1017,[11538.4,14872.1,-3.17891e-007],[[995,2],[1045,2],[1017,2],[1046,2],[1047,2]]], [1018,[12558.2,14227.2,0],[[996,2],[1048,2]]], [1019,[11718.9,11654.3,0],[[999,2]]], +[1020,[11599,11747.4,0],[[999,2],[1049,2],[1020,2]]], [1021,[9877.06,9753.92,0],[[1001,2]]], [1022,[9784.99,9819.9,0],[[1001,2],[1050,2],[1051,2]]], [1023,[10302.1,7240.43,-1.27157e-006],[[1002,2],[1052,2],[1053,2]]], [1024,[9719.08,8161.29,0],[[1003,2],[1054,2]]], [1025,[9497.74,8513.07,0],[[1004,2],[1055,2]]], +[1026,[10500.9,10573.5,-2.54313e-006],[[1005,2]]], [1027,[10311.1,10493.4,1.90735e-006],[[1005,2],[1056,2],[1027,2],[1057,2],[1058,2]]], [1028,[10625.7,10607,-2.54313e-006],[[985,2]]], [1029,[17008.1,13838.9,0],[[1006,2],[1059,2],[1029,2]]], [1030,[16609.5,13880,-6.35783e-007],[[1008,2]]], [1031,[16726.1,13883,0],[[1008,2],[1060,2],[1031,2],[1061,2]]], +[1032,[16386,14340.5,0],[[1009,2],[1033,2],[1032,2],[1062,2]]], [1033,[16384.2,14326.9,0],[[1032,2],[1093,2],[1033,2],[1009,2]]], [1034,[12973.1,6264.39,7.62939e-006],[[1011,2]]], [1035,[12967.1,6124.8,0],[[1011,2],[1063,2],[1035,2],[1064,2]]], [1036,[15543.8,15595.7,-3.17891e-007],[[1012,2],[1065,2],[1066,2],[1036,2]]], [1037,[15413.5,15726.2,3.17891e-007],[[1012,2],[1067,2],[1038,2],[1037,2],[1068,2]]], +[1038,[15420.7,15708.1,0],[[1037,2],[1104,2],[1038,2],[1012,2]]], [1039,[12542.7,13920.6,0],[[1014,2],[1069,2],[1039,2],[1070,2]]], [1040,[12544.3,13760.5,0],[[1014,2],[1071,2],[1040,2],[1072,2]]], [1041,[11867.4,15156.9,0],[[1015,2],[1073,2]]], [1042,[11637.5,14836.8,3.17891e-007],[[1016,2]]], [1043,[11513.7,14638.4,0],[[1016,2],[1044,2],[1043,2],[1074,2]]], +[1044,[11529.4,14669.2,0],[[1043,2],[1107,2],[1044,2],[1016,2]]], [1045,[11565.8,14866.6,-4.76837e-007],[[1017,2]]], [1046,[11371.9,14926.3,0],[[1017,2],[1075,2],[1047,2],[1046,2]]], [1047,[11400.8,14926.9,0],[[1046,2],[1112,2],[1047,2],[1017,2]]], [1048,[12531.9,14144.2,0],[[1018,2],[1076,2],[1070,2]]], [1049,[11452.7,11790.6,5.08626e-006],[[1020,2],[1077,2],[1049,2],[1078,2]]], +[1050,[9813.19,9919.71,1.27157e-006],[[1022,2],[1079,2],[1080,2]]], [1051,[9709.31,9745.63,3.8147e-006],[[1022,2],[1081,2]]], [1052,[10226.2,7156.4,0],[[1023,2],[1082,2]]], [1053,[10359.7,7196.17,0],[[1023,2],[1083,2],[1053,2],[1084,2]]], [1054,[9727.19,8093.59,0],[[1024,2],[1085,2]]], [1055,[9382.92,8608.92,3.8147e-006],[[1025,2],[1086,2],[1087,2]]], +[1056,[10365.6,10512.6,0],[[1027,2]]], [1057,[10250.2,10584.4,0],[[1027,2],[1088,2]]], [1058,[10240.9,10409.4,0],[[1027,2],[1089,2]]], [1059,[17014.8,13838.2,0],[[1029,2],[1090,2],[1061,2],[1091,2]]], [1060,[16701.8,13879.7,6.35783e-007],[[1031,2]]], [1061,[16821.2,13893.2,1.27157e-006],[[1031,2],[1059,2],[1092,2],[1061,2],[1090,2]]], +[1062,[16417,14458.7,-3.8147e-006],[[1032,2],[1094,2]]], [1063,[12971.4,6155.25,0],[[1035,2]]], [1064,[12955.4,5981.76,3.8147e-006],[[1035,2],[1095,2],[1064,2],[1096,2],[1097,2],[1098,2]]], [1065,[15640.3,15624,6.35783e-007],[[1036,2],[1099,2],[1100,2],[1065,2],[1101,2]]], [1066,[15513.1,15588.1,-3.17891e-007],[[1036,2]]], [1067,[15337.7,15869.9,0],[[1037,2],[1102,2],[1068,2],[1067,2],[1103,2]]], +[1068,[15362.4,15850.5,0],[[1067,2],[1138,2],[1068,2],[1037,2]]], [1069,[12554.5,13886.9,0],[[1039,2]]], [1070,[12460,14044.8,0],[[1039,2],[1048,2],[1076,2]]], [1071,[12551.5,13781.2,0],[[1040,2]]], [1072,[12524.8,13633.8,2.54313e-006],[[1040,2],[1105,2],[1072,2]]], [1073,[11950.5,15227.3,0],[[1041,2],[1106,2]]], +[1074,[11442.7,14472.6,0],[[1043,2],[1108,2],[1109,2]]], [1075,[11252.6,14942.9,6.35783e-007],[[1046,2],[1110,2],[1111,2],[1075,2]]], [1076,[12508.5,14117.9,0],[[1048,2],[1070,2]]], [1077,[11480.8,11769.9,7.62939e-006],[[1049,2]]], [1078,[11298.1,11840.4,0],[[1049,2],[1113,2],[1078,2],[1114,2]]], [1079,[9869.3,9991.3,0],[[1050,2],[1115,2]]], +[1080,[9765.86,10007.2,-2.54313e-006],[[1050,2],[1116,2],[1080,2],[1117,2]]], [1081,[9656.3,9655.54,-3.8147e-006],[[1051,2],[1118,2]]], [1082,[10207.2,7113.37,-2.54313e-006],[[1052,2],[1119,2],[1120,2]]], [1083,[10343.3,7206.43,0],[[1053,2]]], [1084,[10431.6,7155.67,0],[[1053,2],[1121,2],[1084,2],[1122,2]]], [1085,[9768.05,7983.53,0],[[1054,2],[1123,2]]], +[1086,[9234.4,8668.74,-1.27157e-006],[[1055,2],[1087,2],[1086,2],[1124,2]]], [1087,[9285.6,8681.25,0],[[1086,2],[1156,2],[1087,2],[1055,2]]], [1088,[10259.5,10643.4,0],[[1057,2],[1125,2]]], [1089,[10198,10371.4,0],[[1058,2],[1126,2]]], [1090,[16885,13884.7,9.53674e-007],[[1059,2],[1061,2]]], [1091,[17144.2,13870.6,0],[[1059,2],[1127,2],[1128,2]]], +[1092,[16794.8,13893.5,6.35783e-007],[[1061,2]]], [1093,[16393,14298.1,0],[[1033,2]]], [1094,[16424.6,14513.2,0],[[1062,2],[1129,2]]], [1095,[12955.1,6030.72,0],[[1064,2]]], [1096,[12990.7,5771.17,5.08626e-006],[[1064,2],[1130,2],[1096,2],[1131,2]]], [1097,[12874.9,5919.26,0],[[1064,2],[1132,2],[1097,2],[1133,2],[1134,2]]], +[1098,[12987.2,5821.02,0],[[1130,2],[1064,2]]], [1099,[15790.1,15643.2,6.35783e-007],[[1065,2],[1101,2],[1099,2],[1135,2]]], [1100,[15615.2,15618.6,6.35783e-007],[[1065,2]]], [1101,[15761.5,15644.6,0],[[1099,2],[1171,2],[1101,2],[1065,2]]], [1102,[15214.6,15967.6,0],[[1067,2],[1136,2],[1103,2],[1102,2],[1137,2]]], [1103,[15235.4,15956.4,0],[[1102,2],[1175,2],[1103,2],[1067,2]]], +[1104,[15426.7,15681.9,3.17891e-007],[[1038,2]]], [1105,[12525,13671.5,5.08626e-006],[[1072,2]]], [1106,[11968.4,15240.6,-6.35783e-007],[[1073,2],[1139,2],[1140,2]]], [1107,[11553.2,14691.6,0],[[1044,2]]], [1108,[11390.8,14355.4,-1.27157e-006],[[1074,2],[1109,2],[1108,2],[1141,2]]], [1109,[11394.9,14386.8,-9.53674e-007],[[1108,2],[1178,2],[1109,2],[1074,2]]], +[1110,[11141.7,14986.4,0],[[1075,2],[1142,2],[1143,2],[1110,2],[1144,2]]], [1111,[11287,14933.4,6.35783e-007],[[1075,2]]], [1112,[11435.5,14910.5,0],[[1047,2]]], [1113,[11337.1,11842.7,0],[[1078,2]]], [1114,[11161.6,11824.1,0],[[1078,2],[1145,2],[1114,2],[1146,2]]], [1115,[9917.81,10039.4,7.62939e-006],[[1079,2],[1147,2]]], +[1116,[9775.09,9983.05,0],[[1080,2]]], [1117,[9743.21,10132.7,0],[[1080,2],[1148,2],[1117,2],[1149,2]]], [1118,[9598.06,9612.92,0],[[1081,2],[1150,2]]], [1119,[10174.1,6941.02,0],[[1082,2],[1151,2]]], [1120,[10164,7134.82,2.54313e-006],[[1082,2],[1120,2],[1152,2]]], [1121,[10411.7,7166.87,0],[[1084,2]]], +[1122,[10521.6,7101.32,-2.54313e-006],[[1084,2],[1153,2],[1154,2]]], [1123,[9813.27,7902.94,0],[[1085,2],[1155,2]]], [1124,[9072.7,8672.33,1.27157e-006],[[1086,2],[1157,2],[1124,2],[1158,2]]], [1125,[10304.8,10729.3,0],[[1088,2],[1159,2]]], [1126,[10097.2,10309.4,7.62939e-006],[[1089,2],[1160,2]]], [1127,[17194.3,13964.3,-0.00198841],[[1091,2],[1161,2],[1127,2],[1162,2]]], +[1128,[17201.9,13850.4,3.17891e-007],[[1091,2],[1163,2],[1162,2],[1164,2],[1165,2]]], [1129,[16393.2,14620.2,0],[[1094,2],[1166,2]]], [1130,[12989.8,5799.97,0],[[1096,2],[1098,2],[1130,2]]], [1131,[13015.6,5664.95,0],[[1096,2],[1167,2],[1131,2],[1168,2],[1169,2]]], [1132,[12899.5,5944.06,0],[[1097,2]]], [1133,[12770,5762.42,0],[[1097,2],[1134,2],[1133,2],[1170,2]]], +[1134,[12793.7,5787.85,-1.52588e-005],[[1133,2],[1201,2],[1134,2],[1097,2]]], [1135,[15963.3,15619.5,0],[[1099,2],[1172,2],[1173,2]]], [1136,[15076.6,16049.4,-6.35783e-007],[[1102,2],[1174,2],[1137,2],[1136,2]]], [1137,[15089.6,16038.6,0],[[1136,2],[1208,2],[1137,2],[1102,2]]], [1138,[15379.7,15814.9,0],[[1068,2]]], [1139,[12035.6,15204.7,1.90735e-006],[[1106,2],[1176,2]]], +[1140,[12016.8,15348.5,0],[[1106,2],[1177,2]]], [1141,[11390.7,14222.2,-6.35783e-007],[[1108,2],[1179,2],[1180,2],[1141,2]]], [1142,[11016.5,15073.5,0],[[1110,2],[1144,2],[1142,2],[1181,2]]], [1143,[11165.1,14974.2,0],[[1110,2]]], [1144,[11035.7,15048.6,0],[[1142,2],[1214,2],[1144,2],[1110,2]]], [1145,[11191.4,11836.7,0],[[1114,2]]], +[1146,[11002.2,11799.7,0],[[1114,2],[1146,2],[1182,2]]], [1147,[9938.54,10112.6,0],[[1115,2],[1183,2]]], [1148,[9740.99,10099.1,0],[[1117,2]]], [1149,[9756.14,10196.4,0],[[1117,2],[1149,2],[1184,2]]], [1150,[9507.97,9559.91,3.8147e-006],[[1118,2],[1185,2]]], [1151,[10126.2,6796.84,7.62939e-006],[[1119,2],[1186,2]]], +[1152,[10086.4,7187.09,-7.62939e-006],[[1120,2],[1187,2]]], [1153,[10503.7,7113.48,0],[[1122,2]]], [1154,[10621.5,7067.37,-2.54313e-006],[[1122,2],[1188,2],[1154,2],[1189,2]]], [1155,[9831.33,7820.16,0],[[1123,2],[1190,2]]], [1156,[9330.17,8652.94,0],[[1087,2]]], [1157,[9119.2,8659.75,2.54313e-006],[[1124,2]]], +[1158,[8893.01,8798.84,0],[[1124,2],[1191,2],[1192,2]]], [1159,[10356.7,10789.6,0],[[1125,2],[1193,2]]], [1160,[9999.13,10222.3,7.62939e-006],[[1126,2],[1183,2]]], [1161,[17184.3,13939.7,0],[[1127,2]]], [1162,[17221,14015.7,-0.00198873],[[1127,2],[1128,2],[1163,2],[1194,2],[1195,2]]], [1163,[17255.2,13969,2.38419e-007],[[1128,2],[1162,2],[1165,2],[1163,2],[1196,2]]], +[1164,[17264.1,13802.6,0],[[1128,2],[1197,2],[1164,2],[1196,2]]], [1165,[17239.5,13934.7,0],[[1163,2],[1228,2],[1165,2],[1128,2]]], [1166,[16341.3,14725.2,0],[[1129,2],[1198,2]]], [1167,[13000.4,5689.36,0],[[1131,2]]], [1168,[13147.5,5538,1.01725e-005],[[1131,2],[1169,2],[1168,2],[1199,2],[1200,2]]], [1169,[13126.9,5549.6,-1.52588e-005],[[1168,2],[1231,2],[1169,2],[1131,2]]], +[1170,[12677.5,5658.69,5.08626e-006],[[1133,2],[1202,2],[1203,2],[1170,2]]], [1171,[15733.7,15640.7,6.35783e-007],[[1101,2]]], [1172,[16072.2,15575.4,-6.35783e-007],[[1135,2],[1204,2],[1173,2],[1172,2],[1205,2]]], [1173,[16055.4,15585.3,0],[[1172,2],[1236,2],[1173,2],[1135,2]]], [1174,[15004.9,16113.4,-1.27157e-006],[[1136,2],[1206,2],[1207,2],[1174,2]]], [1175,[15257.8,15939.5,0],[[1103,2]]], +[1176,[12084.9,15224.2,0],[[1139,2],[1209,2],[1176,2],[1210,2]]], [1177,[12058.2,15416.6,-2.47955e-005],[[1140,2],[1211,2]]], [1178,[11407.6,14410.5,0],[[1109,2]]], [1179,[11386.7,14111.4,-1.27157e-006],[[1141,2],[1212,2],[1213,2],[1179,2]]], [1180,[11389.4,14253.9,-6.35783e-007],[[1141,2]]], [1181,[10938.4,15234.4,0],[[1142,2],[1215,2]]], +[1182,[10752,11878.2,0],[[1146,2],[1216,2],[1182,2],[1217,2]]], [1183,[9967.44,10182.9,-7.62939e-006],[[1147,2],[1160,2]]], [1184,[9778.82,10259.3,-2.54313e-006],[[1149,2],[1218,2],[1184,2],[1219,2]]], [1185,[9437.68,9499.94,0],[[1150,2],[1220,2]]], [1186,[10100.6,6666.45,0],[[1151,2],[1221,2]]], [1187,[10023.8,7293.14,0],[[1152,2],[1222,2]]], +[1188,[10585,7072.37,-3.8147e-006],[[1154,2]]], [1189,[10758,7038.01,-7.62939e-006],[[1154,2]]], [1190,[9876.26,7737.47,0],[[1155,2],[1223,2]]], [1191,[8743.35,8871.37,1.27157e-006],[[1158,2],[1192,2],[1191,2],[1224,2]]], [1192,[8775.85,8865.31,-3.8147e-006],[[1191,2],[1255,2],[1192,2],[1158,2]]], [1193,[10384.4,10829.5,-2.54313e-006],[[1159,2],[1225,2],[1193,2],[1226,2]]], +[1194,[17228.2,14145.8,0],[[1162,2],[1195,2],[1194,2],[1227,2]]], [1195,[17231.9,14119.9,0],[[1194,2],[1259,2],[1195,2],[1162,2]]], [1196,[17338.4,13926.2,-3.17891e-007],[[1163,2],[1164,2],[1229,2],[1196,2]]], [1197,[17292.8,13747.5,0],[[1164,2]]], [1198,[16282,14807.2,0],[[1166,2],[1230,2]]], [1199,[13292.5,5447.93,0],[[1168,2],[1200,2],[1199,2],[1232,2]]], +[1200,[13271.3,5464.88,0],[[1199,2],[1265,2],[1200,2],[1168,2]]], [1201,[12806.7,5817.85,-5.08626e-006],[[1134,2]]], [1202,[12623.9,5534.59,-5.08626e-006],[[1170,2],[1233,2],[1202,2],[1234,2]]], [1203,[12696.3,5684.32,0],[[1170,2]]], [1204,[16190.9,15502.2,0],[[1172,2],[1235,2],[1205,2],[1204,2]]], [1205,[16178.2,15513.2,0],[[1204,2],[1271,2],[1205,2],[1172,2]]], +[1206,[14888.5,16246.5,0],[[1174,2],[1237,2],[1238,2]]], [1207,[15024,16092.8,-6.35783e-007],[[1174,2]]], [1208,[15116.7,16022.5,0],[[1137,2]]], [1209,[12069.7,15212.4,0],[[1176,2]]], [1210,[12141.3,15310,0],[[1176,2],[1239,2]]], [1211,[12118.7,15487,1.90735e-006],[[1177,2],[1240,2],[1241,2]]], +[1212,[11378.7,14002.5,-6.35783e-007],[[1179,2],[1242,2],[1212,2],[1243,2]]], [1213,[11390.1,14136.4,-1.27157e-006],[[1179,2]]], [1214,[11059.5,15033.7,0],[[1144,2]]], [1215,[10899.4,15290.5,6.35783e-007],[[1181,2],[1244,2],[1215,2],[1245,2]]], [1216,[10767.6,11854.6,0],[[1182,2]]], [1217,[10599.6,11991.6,-3.8147e-006],[[1182,2],[1246,2],[1217,2],[1247,2],[1248,2]]], +[1218,[9770.37,10234.5,-3.8147e-006],[[1184,2]]], [1219,[9825.08,10398,2.54313e-006],[[1184,2],[1249,2],[1219,2],[1250,2]]], [1220,[9369.22,9433.87,3.8147e-006],[[1185,2],[1251,2]]], [1221,[10069.9,6556.03,0],[[1186,2],[1252,2]]], [1222,[9990.04,7372.76,0],[[1187,2],[1253,2]]], [1223,[9913.44,7663.57,0],[[1190,2],[1254,2]]], +[1224,[8671.32,8894.51,-1.27157e-006],[[1191,2],[1256,2],[1257,2]]], [1225,[10379.2,10816.8,-3.8147e-006],[[1193,2]]], [1226,[10418.1,10986.3,0],[[1193,2],[1258,2]]], [1227,[17208.8,14282.7,6.35783e-007],[[1194,2],[1260,2],[1227,2],[1261,2]]], [1228,[17225.1,13908.4,3.17891e-007],[[1165,2]]], [1229,[17339.1,13943.6,-4.76837e-007],[[1196,2]]], +[1230,[16253.1,14862.8,-1.27157e-006],[[1198,2],[1262,2],[1230,2],[1263,2],[1264,2]]], [1231,[13101.5,5569.68,5.08626e-006],[[1169,2]]], [1232,[13448.1,5350.54,0],[[1199,2],[1266,2]]], [1233,[12639,5582.18,-5.08626e-006],[[1202,2]]], [1234,[12570.3,5418.14,5.08626e-006],[[1202,2],[1267,2],[1234,2],[1268,2]]], [1235,[16260.6,15438,0],[[1204,2],[1269,2],[1270,2],[1235,2]]], +[1236,[16030.4,15595.4,0],[[1173,2]]], [1237,[14817.5,16335.7,0],[[1206,2],[1272,2],[1238,2],[1237,2],[1273,2]]], [1238,[14827.3,16318.9,0],[[1237,2],[1307,2],[1238,2],[1206,2]]], [1239,[12217.7,15383,0],[[1210,2],[1274,2],[1240,2]]], [1240,[12178,15513.1,6.35783e-007],[[1211,2],[1239,2],[1275,2],[1276,2],[1277,2]]], [1241,[12100,15505.3,1.90735e-006],[[1211,2]]], +[1242,[11376.2,14042.7,0],[[1212,2]]], [1243,[11405.5,13860,0],[[1212,2],[1278,2],[1243,2],[1279,2]]], [1244,[10912.1,15277,0],[[1215,2]]], [1245,[10834.8,15342.8,-1.27157e-006],[[1215,2],[1280,2],[1245,2],[1281,2]]], [1246,[10660.6,11962.1,-7.62939e-006],[[1217,2]]], [1247,[10483,11942,0],[[1217,2],[1282,2]]], +[1248,[10440.9,12059.9,-1.01725e-005],[[1217,2],[1283,2],[1284,2]]], [1249,[9817.3,10359.5,2.54313e-006],[[1219,2]]], [1250,[9845.73,10491.2,0],[[1219,2],[1285,2],[1250,2],[1286,2]]], [1251,[9278.25,9374.56,0],[[1220,2],[1287,2]]], [1252,[10006.5,6431.84,0],[[1221,2],[1288,2]]], [1253,[9969.3,7458.57,2.54313e-006],[[1222,2],[1254,2],[1289,2],[1290,2]]], +[1254,[9934.95,7548.15,7.62939e-006],[[1223,2],[1253,2]]], [1255,[8809.86,8847.96,1.27157e-006],[[1192,2]]], [1256,[8594.62,8914.38,-1.27157e-006],[[1224,2],[1291,2],[1256,2],[1292,2]]], [1257,[8705.94,8956.54,0],[[1224,2],[1293,2]]], [1258,[10439.2,11109.2,7.62939e-006],[[1226,2],[1294,2]]], [1259,[17228.2,14093.2,0],[[1195,2]]], +[1260,[17208.9,14245.6,-6.35783e-007],[[1227,2]]], [1261,[17213,14398.8,1.27157e-006],[[1227,2],[1295,2],[1261,2],[1296,2],[1297,2]]], [1262,[16260.7,14839.2,-1.27157e-006],[[1230,2]]], [1263,[16260.3,14946.4,0],[[1230,2],[1264,2],[1263,2],[1298,2]]], [1264,[16253.7,14937.6,0],[[1263,2],[1327,2],[1230,2]]], [1265,[13244.5,5481.44,5.08626e-006],[[1200,2]]], +[1266,[13548,5286.65,0],[[1232,2],[1299,2],[1266,2],[1300,2]]], [1267,[12586.5,5440.13,0],[[1234,2]]], [1268,[12467.3,5300.82,0],[[1234,2],[1301,2],[1268,2],[1302,2],[1303,2]]], [1269,[16340.8,15344.8,0],[[1269,2],[1304,2],[1235,2],[1305,2]]], [1270,[16243.4,15457,-1.27157e-006],[[1235,2]]], [1271,[16154.4,15528.1,0],[[1205,2]]], +[1272,[14734.2,16461.6,0],[[1237,2],[1306,2],[1273,2],[1272,2]]], [1273,[14753,16440.3,0],[[1272,2],[1335,2],[1273,2],[1237,2]]], [1274,[12240.2,15438.7,0],[[1239,2],[1308,2],[1274,2]]], [1275,[12200.2,15609.1,0],[[1240,2],[1309,2],[1277,2],[1275,2],[1310,2]]], [1276,[12214.8,15460.1,0],[[1240,2]]], [1277,[12186.5,15595.1,0],[[1275,2],[1337,2],[1240,2]]], +[1278,[11399.2,13895.9,0],[[1243,2]]], [1279,[11402.3,13727.8,-1.27157e-006],[[1243,2],[1311,2],[1312,2],[1279,2]]], [1280,[10850.7,15334.6,-9.53674e-007],[[1245,2]]], [1281,[10768.1,15369.4,1.90735e-006],[[1245,2],[1313,2],[1314,2]]], [1282,[10452.3,11886.9,5.08626e-006],[[1247,2],[1315,2],[1316,2]]], [1283,[10467.5,12047.5,-1.01725e-005],[[1248,2]]], +[1284,[10400.6,12148.1,0],[[1248,2],[1317,2]]], [1285,[9838.4,10474.1,0],[[1250,2]]], [1286,[9992.79,10604.1,0],[[1250,2]]], [1287,[9213.37,9325.14,0],[[1251,2],[1318,2]]], [1288,[9933.85,6335.89,0],[[1252,2],[1319,2]]], [1289,[10056.7,7507.93,-2.54313e-006],[[1253,2],[1320,2],[1289,2],[1321,2]]], +[1290,[10038.6,7488.42,0],[[1320,2],[1253,2]]], [1291,[8618.58,8909.17,-1.27157e-006],[[1256,2]]], [1292,[8491.95,8922.18,0],[[1256,2],[1322,2],[1292,2],[1323,2]]], [1293,[8787.21,9047.17,0],[[1257,2],[1324,2]]], [1294,[10440.3,11201.5,0],[[1258,2],[1325,2]]], [1295,[17216.4,14368.6,0],[[1261,2]]], +[1296,[17165.1,14534.2,0],[[1261,2],[1297,2],[1296,2],[1326,2]]], [1297,[17176.9,14514.3,0],[[1296,2],[1355,2],[1297,2],[1261,2]]], [1298,[16351.5,15015.9,0],[[1263,2],[1328,2]]], [1299,[13530.3,5300.82,0],[[1266,2]]], [1300,[13650.7,5201.5,0],[[1266,2],[1300,2],[1329,2]]], [1301,[12492.1,5335.61,0],[[1268,2]]], +[1302,[12437.3,5149.91,-5.08626e-006],[[1268,2],[1303,2],[1302,2],[1330,2],[1331,2]]], [1303,[12401.7,5185.68,0],[[1302,2],[1360,2],[1303,2],[1268,2]]], [1304,[16322,15365.6,-1.27157e-006],[[1269,2]]], [1305,[16410.8,15284.5,0],[[1332,2],[1363,2],[1305,2],[1269,2]]], [1306,[14615.2,16599.2,0],[[1272,2],[1334,2]]], [1307,[14846.5,16295.2,0],[[1238,2]]], +[1308,[12232.6,15421.1,0],[[1274,2]]], [1309,[12295.7,15623.9,1.58946e-007],[[1275,2],[1310,2],[1309,2],[1336,2]]], [1310,[12263.3,15643.1,0],[[1309,2],[1365,2],[1310,2],[1275,2]]], [1311,[11375.1,13630.1,0],[[1279,2],[1338,2],[1311,2],[1339,2]]], [1312,[11409.9,13758.7,-1.27157e-006],[[1279,2]]], [1313,[10725.5,15394.2,1.27157e-006],[[1281,2],[1340,2],[1341,2]]], +[1314,[10752.4,15308,2.54313e-006],[[1281,2],[1314,2],[1342,2]]], [1315,[10365.6,11868,0],[[1282,2],[1343,2],[1315,2],[1344,2]]], [1316,[10415.3,11802,0],[[1282,2],[1345,2],[1346,2],[1316,2]]], [1317,[10375.8,12204.8,-5.08626e-006],[[1284,2],[1347,2],[1317,2],[1348,2]]], [1318,[9136.86,9250.1,0],[[1287,2],[1349,2]]], [1319,[9844.22,6241.36,0],[[1288,2],[1350,2]]], +[1320,[10048.9,7496.37,0],[[1289,2],[1290,2]]], [1321,[10104.7,7566.44,0],[[1289,2]]], [1322,[8521.99,8924.6,0],[[1292,2]]], [1323,[8391.63,8911.03,0],[[1292,2],[1351,2],[1323,2],[1352,2]]], [1324,[8894.59,9136.86,0],[[1293,2],[1353,2]]], [1325,[10460,11266.8,0],[[1294,2],[1354,2]]], +[1326,[17102.2,14633,0],[[1296,2],[1356,2],[1326,2],[1357,2]]], [1327,[16249.6,14921.9,0],[[1264,2]]], [1328,[16414.6,15076.7,2.54313e-006],[[1298,2],[1358,2],[1328,2],[1333,2]]], [1329,[13748.7,5122.47,0],[[1300,2],[1359,2]]], [1330,[12598.3,5145.85,0],[[1302,2],[1361,2],[1331,2],[1330,2]]], [1331,[12584.1,5128.06,1.52588e-005],[[1330,2],[1389,2],[1331,2],[1302,2]]], +[1332,[16425.8,15266.2,0],[[1269,2],[1333,2],[1305,2],[1332,2]]], [1333,[16492.4,15175.9,1.27157e-006],[[1332,2],[1328,2],[1362,2]]], [1334,[14524.5,16703.5,0],[[1306,2],[1364,2]]], [1335,[14768.2,16416.7,-6.35783e-007],[[1273,2]]], [1336,[12386.1,15539.8,0],[[1309,2]]], [1337,[12181.3,15579.7,-6.35783e-007],[[1277,2]]], +[1338,[11379.4,13656.2,0],[[1311,2]]], [1339,[11375,13524.7,0],[[1311,2],[1366,2],[1367,2]]], [1340,[10552.1,15450.5,0],[[1313,2],[1368,2],[1369,2]]], [1341,[10747.4,15466.9,0],[[1313,2],[1370,2],[1371,2],[1341,2],[1372,2]]], [1342,[10707.5,15167.5,-1.27157e-006],[[1314,2],[1373,2],[1374,2]]], [1343,[10407.6,11879.9,0],[[1315,2],[1375,2],[1343,2]]], +[1344,[10222,11853.2,0],[[1315,2],[1344,2],[1376,2]]], [1345,[10383.8,11764,5.08626e-006],[[1316,2],[1377,2],[1345,2]]], [1346,[10450.1,11811.5,0],[[1316,2],[1378,2],[1346,2]]], [1347,[10387.1,12170,-7.62939e-006],[[1317,2]]], [1348,[10367.8,12300.5,2.54313e-006],[[1317,2],[1379,2],[1348,2],[1380,2]]], [1349,[9063.03,9191.73,0],[[1318,2],[1353,2]]], +[1350,[9769.96,6137.26,0],[[1319,2],[1381,2]]], [1351,[8419.15,8912.02,0],[[1323,2]]], [1352,[8304.19,8897.6,0],[[1323,2],[1382,2],[1383,2]]], [1353,[8972.35,9169.99,-3.8147e-006],[[1324,2],[1349,2]]], [1354,[10498,11342.4,-7.62939e-006],[[1325,2],[1384,2]]], [1355,[17187,14489.3,1.27157e-006],[[1297,2]]], +[1356,[17121.2,14608.7,-1.27157e-006],[[1326,2]]], [1357,[17033.9,14724.4,-1.27157e-006],[[1326,2],[1385,2],[1357,2],[1386,2]]], [1358,[16391.5,15046.5,1.27157e-006],[[1328,2]]], [1359,[13835.2,5089.8,0],[[1329,2],[1387,2]]], [1360,[12414.3,5209.43,0],[[1303,2]]], [1361,[12689,5233.68,0],[[1330,2],[1388,2],[1361,2]]], +[1362,[16582.6,15121,0],[[1333,2],[1390,2],[1362,2],[1391,2]]], [1363,[16396.6,15297.6,1.27157e-006],[[1305,2]]], [1364,[14432.3,16809.4,0],[[1334,2],[1392,2]]], [1365,[12241.5,15638.6,0],[[1310,2]]], [1366,[11342.3,13376.4,0],[[1339,2],[1393,2],[1366,2],[1394,2],[1395,2]]], [1367,[11371.7,13550.7,0],[[1339,2]]], +[1368,[10469.9,15474.5,6.35783e-007],[[1340,2],[1396,2],[1369,2],[1368,2],[1397,2]]], [1369,[10493.3,15470.6,0],[[1368,2],[1420,2],[1369,2],[1340,2]]], [1370,[10762.1,15619.1,0],[[1341,2],[1398,2],[1372,2],[1370,2]]], [1371,[10741.8,15441.2,1.27157e-006],[[1341,2]]], [1372,[10767.5,15589.4,0],[[1370,2],[1425,2],[1372,2],[1341,2]]], [1373,[10585.5,15128.1,0],[[1342,2],[1399,2]]], +[1374,[10741.8,15057.9,0],[[1342,2],[1400,2],[1374,2],[1401,2]]], [1375,[10375.7,11864.6,0],[[1343,2]]], [1376,[9992.26,11808.3,0],[[1344,2],[1402,2],[1403,2]]], [1377,[10468.2,11716.3,0],[[1345,2],[1404,2]]], [1378,[10451.1,11815.8,0],[[1346,2],[1405,2],[1378,2]]], [1379,[10362.3,12291.6,0],[[1348,2]]], +[1380,[10438.7,12388.6,0],[[1348,2],[1406,2]]], [1381,[9687.26,6040.08,0],[[1350,2],[1407,2]]], [1382,[8152.06,8920.77,0],[[1352,2],[1408,2],[1409,2]]], [1383,[8285.17,8799.3,-1.27157e-006],[[1352,2],[1410,2],[1383,2],[1411,2]]], [1384,[10494.4,11398.2,0],[[1354,2],[1412,2]]], [1385,[17047.3,14701,-1.27157e-006],[[1357,2]]], +[1386,[16975.2,14871.6,0],[[1357,2],[1413,2]]], [1387,[13915.6,5044.26,0],[[1359,2],[1414,2]]], [1388,[12646.9,5203.14,0],[[1361,2]]], [1389,[12556.8,5110.04,0],[[1331,2]]], [1390,[16554.3,15130,0],[[1362,2]]], [1391,[16685.9,15097,-2.54313e-006],[[1362,2],[1415,2],[1391,2],[1416,2]]], +[1392,[14400.8,16846,-6.35783e-007],[[1364,2],[1392,2],[1417,2]]], [1393,[11370.4,13431.9,0],[[1366,2]]], [1394,[11248.6,13201.4,0],[[1366,2],[1418,2],[1395,2],[1394,2]]], [1395,[11267.7,13223.3,3.8147e-006],[[1394,2],[1445,2],[1395,2],[1366,2]]], [1396,[10299.3,15499.6,6.35783e-007],[[1368,2],[1397,2],[1396,2],[1419,2]]], [1397,[10328.2,15498.6,9.53674e-007],[[1396,2],[1446,2],[1397,2],[1368,2]]], +[1398,[10734.4,15723.2,3.8147e-007],[[1370,2],[1398,2],[1421,2],[1422,2],[1423,2],[1424,2]]], [1399,[10531,15079.3,0],[[1373,2],[1426,2]]], [1400,[10728.7,15097.5,1.90735e-006],[[1374,2]]], [1401,[10799.9,14951.8,0],[[1374,2]]], [1402,[9987.54,11783.1,0],[[1376,2],[1402,2],[1427,2]]], [1403,[9916.3,11785.4,1.01725e-005],[[1376,2],[1403,2],[1428,2]]], +[1404,[10510.9,11641.1,-5.08626e-006],[[1377,2],[1412,2],[1429,2],[1404,2]]], [1405,[10442.3,11813.2,0],[[1378,2]]], [1406,[10504.5,12421.5,0],[[1380,2],[1430,2]]], [1407,[9604.75,5958.51,0],[[1381,2],[1431,2]]], [1408,[8123.93,8969.8,0],[[1382,2],[1432,2],[1408,2],[1433,2]]], [1409,[7972.38,8980.93,0],[[1382,2],[1434,2],[1435,2]]], +[1410,[8284.17,8829.78,0],[[1383,2]]], [1411,[8327.38,8659.42,0],[[1383,2],[1436,2],[1411,2],[1437,2]]], [1412,[10491.2,11457.3,0],[[1384,2],[1404,2]]], [1413,[16939.5,14925.7,2.54313e-006],[[1386,2],[1438,2],[1413,2],[1439,2],[1416,2]]], [1414,[14010.5,4965.75,0],[[1387,2],[1440,2]]], [1415,[16667.8,15101.2,-1.90735e-006],[[1391,2]]], +[1416,[16793.5,15055,0],[[1391,2],[1413,2],[1441,2],[1416,2],[1442,2]]], [1417,[14301.4,16964.4,0],[[1392,2],[1417,2]]], [1418,[11129.4,13076.7,-2.54313e-006],[[1394,2],[1443,2],[1418,2],[1444,2]]], [1419,[10075.9,15532,0],[[1396,2],[1447,2]]], [1420,[10512.6,15464.6,0],[[1369,2]]], [1421,[10835.4,15726.6,6.35783e-007],[[1398,2],[1448,2],[1421,2],[1449,2]]], +[1422,[10695.1,15746,0],[[1398,2],[1422,2],[1450,2]]], [1423,[10587.9,15903.7,0],[[1398,2],[1451,2],[1424,2],[1423,2]]], [1424,[10598.8,15883.8,-1.90735e-006],[[1423,2],[1474,2],[1424,2],[1398,2]]], [1425,[10763.9,15559.4,0],[[1372,2]]], [1426,[10484.2,15016,0],[[1399,2],[1452,2]]], [1427,[10036.7,11821,-7.62939e-006],[[1402,2]]], +[1428,[9890.77,11787.2,5.08626e-006],[[1403,2],[1428,2],[1453,2]]], [1429,[10505.1,11676.9,-3.8147e-006],[[1404,2]]], [1430,[10581.2,12493.3,0],[[1406,2],[1454,2]]], [1431,[9557.61,5874.24,0],[[1407,2],[1455,2]]], [1432,[8141.12,8957.63,0],[[1408,2]]], [1433,[7923.05,9060.25,0],[[1408,2],[1456,2]]], +[1434,[7824.97,9062.27,-6.35783e-007],[[1409,2],[1457,2],[1434,2],[1458,2]]], [1435,[7876.32,9016.1,1.90735e-006],[[1457,2],[1409,2]]], [1436,[8320.65,8707.62,0],[[1411,2]]], [1437,[8298.82,8475.36,-2.54313e-006],[[1411,2],[1459,2],[1437,2],[1460,2]]], [1438,[16950.6,14912.2,1.90735e-006],[[1413,2]]], [1439,[16882.6,14989.8,-3.8147e-006],[[1413,2],[1461,2]]], +[1440,[14080.5,4919.33,0],[[1414,2],[1462,2]]], [1441,[16763.2,15072.2,0],[[1416,2]]], [1442,[16868.2,15001.9,-3.8147e-006],[[1416,2]]], [1443,[11178.3,13125.3,0],[[1418,2]]], [1444,[10972.8,12888,0],[[1418,2],[1463,2],[1444,2],[1464,2],[1465,2]]], [1445,[11280.6,13253.3,0],[[1395,2]]], +[1446,[10359.4,15494.1,6.35783e-007],[[1397,2]]], [1447,[9927.12,15560.6,0],[[1419,2],[1466,2],[1467,2],[1468,2]]], [1448,[10806.9,15705.8,9.53674e-007],[[1421,2]]], [1449,[10908.1,15827.8,1.27157e-006],[[1421,2],[1469,2],[1449,2],[1470,2]]], [1450,[10638.3,15691.1,0],[[1422,2],[1471,2]]], [1451,[10540.3,16007.9,-3.17891e-007],[[1423,2],[1472,2],[1473,2],[1451,2]]], +[1452,[10453.4,14928.9,0],[[1426,2],[1475,2]]], [1453,[9858.65,11788.4,0],[[1428,2],[1453,2],[1476,2]]], [1454,[10633.9,12549.8,-7.62939e-006],[[1430,2],[1477,2],[1478,2]]], [1455,[9536.52,5773.48,0],[[1431,2],[1479,2]]], [1456,[7868.5,9169.57,0],[[1433,2],[1480,2],[1456,2],[1481,2],[1458,2]]], [1457,[7849.19,9028.28,0],[[1434,2],[1435,2],[1457,2]]], +[1458,[7752.96,9249.44,-6.35783e-007],[[1434,2],[1456,2],[1482,2],[1483,2]]], [1459,[8329.05,8511.08,-3.8147e-006],[[1437,2]]], [1460,[8168.7,8346.1,-2.54313e-006],[[1437,2],[1484,2],[1460,2],[1485,2],[1486,2]]], [1461,[16884.9,15006.5,0],[[1439,2]]], [1462,[14189.5,4882.7,1.52588e-005],[[1440,2],[1487,2]]], [1463,[11034.8,12931.3,0],[[1444,2]]], +[1464,[10876,12732.4,0],[[1444,2],[1488,2],[1464,2],[1489,2]]], [1465,[10852.2,12921,-2.54313e-006],[[1444,2],[1490,2],[1465,2],[1491,2]]], [1466,[9807.86,15584.2,-6.35783e-007],[[1447,2],[1492,2],[1468,2],[1466,2]]], [1467,[9897.44,15686.8,0],[[1447,2],[1493,2],[1467,2],[1494,2],[1495,2]]], [1468,[9825.35,15577.6,0],[[1466,2],[1519,2],[1468,2],[1447,2]]], [1469,[10907.7,15805.3,0],[[1449,2]]], +[1470,[10895.5,15924.1,0],[[1449,2],[1496,2],[1470,2],[1497,2]]], [1471,[10573.1,15672,0],[[1450,2],[1498,2]]], [1472,[10529.4,16140.4,0],[[1451,2],[1499,2],[1500,2],[1472,2],[1501,2],[1502,2]]], [1473,[10549.3,15973.5,3.17891e-007],[[1451,2]]], [1474,[10626.8,15857.8,-6.35783e-007],[[1424,2]]], [1475,[10449.9,14844.2,-1.90735e-006],[[1452,2],[1503,2]]], +[1476,[9833.12,11790.3,-5.08626e-006],[[1453,2],[1476,2],[1504,2]]], [1477,[10680,12613.2,0],[[1454,2],[1478,2],[1477,2],[1505,2]]], [1478,[10676.8,12593.8,-7.62939e-006],[[1477,2],[1531,2],[1478,2],[1454,2]]], [1479,[9505.7,5696.81,0],[[1455,2],[1506,2]]], [1480,[7877.95,9135.71,0],[[1456,2]]], [1481,[7817.1,9289.58,-3.8147e-007],[[1456,2],[1481,2],[1507,2],[1508,2],[1483,2]]], +[1482,[7798.05,9275.88,0],[[1458,2]]], [1483,[7692.48,9333.22,0],[[1458,2],[1481,2],[1509,2],[1510,2],[1508,2]]], [1484,[8197.21,8407.17,-7.62939e-006],[[1460,2],[1486,2],[1484,2]]], [1485,[8107.96,8222.7,0],[[1460,2],[1511,2],[1485,2]]], [1486,[8214.01,8410.68,0],[[1484,2],[1486,2],[1541,2],[1460,2]]], [1487,[14283.1,4869.47,0],[[1462,2],[1512,2]]], +[1488,[10886.2,12752.1,0],[[1464,2]]], [1489,[10855.5,12693,0],[[1464,2]]], [1490,[10872.9,12915.2,-3.8147e-006],[[1465,2]]], [1491,[10752.2,12948.1,-1.90735e-006],[[1465,2],[1513,2],[1491,2],[1514,2],[1515,2]]], [1492,[9660.89,15633.1,3.8147e-007],[[1466,2],[1492,2],[1516,2],[1517,2],[1518,2]]], [1493,[9920.98,15612.6,0],[[1467,2]]], +[1494,[9983.62,15731,0],[[1467,2],[1520,2]]], [1495,[9757.2,15727.4,-3.8147e-006],[[1467,2],[1521,2],[1518,2]]], [1496,[10901.1,15900.6,0],[[1470,2]]], [1497,[10884.9,16024.5,6.35783e-007],[[1470,2],[1522,2],[1497,2],[1523,2]]], [1498,[10494.8,15681.1,0],[[1471,2],[1524,2]]], [1499,[10545.4,16301.1,2.35161],[[1472,2],[1502,2],[1499,2],[1525,2],[1526,2]]], +[1500,[10524.9,16105.1,0],[[1472,2]]], [1501,[10593.1,16131.5,0],[[1472,2],[1527,2],[1501,2],[1525,2]]], [1502,[10547,16264.1,-4.76837e-007],[[1499,2],[1554,2],[1502,2],[1472,2]]], [1503,[10428.5,14716.1,1.90735e-006],[[1475,2],[1528,2]]], [1504,[9770.38,11796.5,0],[[1476,2],[1529,2],[1504,2],[1530,2]]], [1505,[10667.8,12725,-7.62939e-006],[[1477,2],[1532,2],[1533,2]]], +[1506,[9445.07,5633.32,0],[[1479,2],[1534,2]]], [1507,[7927.26,9323.51,0],[[1481,2],[1535,2]]], [1508,[7737.18,9375.87,0],[[1481,2],[1483,2],[1536,2],[1509,2],[1510,2]]], [1509,[7612.62,9372.8,4.76837e-007],[[1483,2],[1508,2],[1537,2],[1509,2],[1538,2],[1539,2],[1540,2]]], [1510,[7749.19,9365.75,-0.00310135],[[1483,2],[1508,2]]], [1511,[8095.27,8042.5,5.08626e-006],[[1485,2],[1542,2],[1511,2],[1543,2]]], +[1512,[14394.8,4872.02,0],[[1487,2],[1544,2]]], [1513,[10784.4,12944.1,-3.8147e-006],[[1491,2]]], [1514,[10728.5,13053.8,0],[[1491,2],[1545,2]]], [1515,[10689.8,12869,0],[[1491,2],[1532,2]]], [1516,[9654.7,15540,0],[[1492,2],[1546,2],[1516,2],[1547,2]]], [1517,[9485.37,15700.8,0],[[1492,2],[1548,2]]], +[1518,[9660.52,15683.8,0],[[1492,2],[1495,2],[1549,2],[1521,2]]], [1519,[9847.65,15572.7,0],[[1468,2]]], [1520,[10007.9,15731.6,0],[[1494,2],[1520,2],[1550,2]]], [1521,[9702.43,15692.4,0],[[1495,2],[1518,2]]], [1522,[10885.1,16000.2,9.53674e-007],[[1497,2]]], [1523,[10874.1,16121.3,0],[[1497,2],[1551,2],[1552,2]]], +[1524,[10397.1,15686.9,1.90735e-006],[[1498,2],[1553,2]]], [1525,[10629.6,16172.4,-5.96046e-008],[[1499,2],[1501,2],[1555,2],[1525,2],[1552,2]]], [1526,[10501.4,16565.4,0],[[1499,2],[1556,2]]], [1527,[10569.4,16142,0],[[1501,2]]], [1528,[10441.5,14628,0],[[1503,2],[1557,2]]], [1529,[9796.56,11794.4,0],[[1504,2]]], +[1530,[9648.96,11782,-5.08626e-006],[[1504,2],[1558,2],[1530,2],[1559,2]]], [1531,[10663.8,12577.6,0],[[1478,2]]], [1532,[10655.9,12795,0],[[1505,2],[1515,2],[1533,2],[1532,2]]], [1533,[10652.6,12784.5,0],[[1532,2],[1586,2],[1533,2],[1505,2]]], [1534,[9348.21,5623.62,-7.62939e-006],[[1506,2],[1560,2]]], [1535,[7942.93,9339.94,0],[[1507,2],[1561,2],[1562,2],[1563,2]]], +[1536,[7643.1,9445.3,0],[[1508,2],[1564,2]]], [1537,[7635.93,9353.93,9.53674e-007],[[1509,2]]], [1538,[7630.65,9430.42,0],[[1509,2]]], [1539,[7460.23,9422.12,0],[[1509,2],[1540,2],[1539,2],[1565,2],[1566,2]]], [1540,[7491.77,9416.83,0],[[1539,2],[1594,2],[1540,2],[1509,2]]], [1541,[8182.45,8391.82,0],[[1486,2]]], +[1542,[8090.46,8103.42,0],[[1511,2],[1542,2]]], [1543,[8205.04,7850.25,0],[[1511,2],[1567,2],[1543,2],[1568,2]]], [1544,[14482,4902.56,0],[[1512,2],[1569,2]]], [1545,[10713.5,13145,0],[[1514,2],[1570,2]]], [1546,[9656.04,15563.6,0],[[1516,2]]], [1547,[9636.03,15440.1,0],[[1516,2],[1571,2],[1572,2],[1547,2]]], +[1548,[9403.89,15698.9,6.35783e-007],[[1517,2],[1573,2],[1548,2],[1574,2]]], [1549,[9669.04,15787.4,6.35783e-007],[[1518,2],[1575,2],[1549,2],[1576,2],[1577,2]]], [1550,[10115.6,15733.7,0],[[1520,2],[1578,2],[1579,2],[1550,2]]], [1551,[10957.8,16122.6,0],[[1523,2],[1580,2]]], [1552,[10797.2,16101.1,0],[[1523,2],[1525,2]]], [1553,[10305,15675.4,0],[[1524,2],[1578,2]]], +[1554,[10543.1,16236.3,0],[[1502,2]]], [1555,[10592.4,16241,-1.19209e-007],[[1525,2]]], [1556,[10369.3,16645.8,-6.35783e-007],[[1526,2],[1581,2],[1582,2]]], [1557,[10469.8,14544.7,-1.90735e-006],[[1528,2],[1583,2]]], [1558,[9684.2,11787.4,-7.62939e-006],[[1530,2]]], [1559,[9507.7,11856.1,0],[[1530,2],[1584,2],[1585,2]]], +[1560,[9280.11,5569.56,0],[[1534,2],[1587,2]]], [1561,[8012.79,9312.95,0],[[1535,2],[1588,2],[1561,2],[1589,2]]], [1562,[7833.05,9460.35,-1.90735e-006],[[1535,2],[1563,2],[1590,2]]], [1563,[7813.15,9465.12,0],[[1562,2],[1563,2],[1621,2],[1535,2]]], [1564,[7540.34,9528.05,4.76837e-007],[[1536,2],[1591,2],[1564,2],[1592,2],[1593,2]]], [1565,[7250.88,9467.24,0],[[1539,2],[1595,2],[1565,2],[1596,2]]], +[1566,[7298.54,9450.95,0],[[1595,2],[1539,2]]], [1567,[8159.43,7885.92,0],[[1543,2]]], [1568,[8361.53,7771.8,0],[[1543,2],[1597,2],[1568,2],[1598,2]]], [1569,[14564.6,4907.31,1.52588e-005],[[1544,2],[1599,2]]], [1570,[10724.9,13228.9,0],[[1545,2],[1600,2]]], [1571,[9567.39,15337.9,0],[[1547,2],[1601,2],[1571,2],[1602,2],[1603,2]]], +[1572,[9644.14,15458.8,0],[[1547,2]]], [1573,[9435.87,15708.1,0],[[1548,2]]], [1574,[9292.67,15650.8,0],[[1548,2],[1604,2],[1605,2]]], [1575,[9664.98,15747.1,0],[[1549,2]]], [1576,[9704.25,15959.6,2.46108],[[1549,2],[1577,2],[1576,2],[1606,2]]], [1577,[9702.17,15926.4,0],[[1576,2],[1637,2],[1577,2],[1549,2]]], +[1578,[10229.6,15687.4,0],[[1550,2],[1553,2]]], [1579,[10082.4,15739.3,0],[[1550,2]]], [1580,[11060,16064.9,0],[[1551,2],[1607,2]]], [1581,[10327.3,16742.3,0],[[1556,2],[1608,2]]], [1582,[10234.3,16579.3,6.35783e-007],[[1556,2],[1609,2],[1610,2]]], [1583,[10528.3,14443.2,1.90735e-006],[[1557,2],[1611,2]]], +[1584,[9445.85,11719.7,0],[[1559,2],[1612,2],[1584,2],[1613,2]]], [1585,[9374.55,12038.6,-5.08626e-006],[[1559,2],[1614,2],[1585,2],[1615,2]]], [1586,[10655.7,12764,0],[[1533,2]]], [1587,[9215.06,5504.3,0],[[1560,2],[1616,2],[1617,2],[1618,2]]], [1588,[7983.9,9321.54,-6.35783e-007],[[1561,2]]], [1589,[8111.96,9240.14,-1.27157e-006],[[1561,2],[1619,2],[1620,2]]], +[1590,[7735.6,9524.6,0],[[1562,2],[1622,2],[1590,2],[1623,2],[1592,2]]], [1591,[7421.3,9561.4,0],[[1564,2],[1593,2],[1591,2],[1624,2]]], [1592,[7608.25,9555.2,-1.27157e-006],[[1564,2],[1590,2],[1625,2],[1592,2],[1623,2]]], [1593,[7441.3,9556.91,0],[[1591,2],[1656,2],[1564,2],[1593,2]]], [1594,[7517.37,9408.53,-6.35783e-007],[[1540,2]]], [1595,[7277.88,9455.74,-1.90735e-006],[[1565,2],[1566,2],[1595,2]]], +[1596,[7069.34,9562.41,-9.53674e-007],[[1565,2],[1626,2]]], [1597,[8339.27,7777.78,0],[[1568,2]]], [1598,[8470.46,7742.72,5.08626e-006],[[1568,2],[1627,2],[1598,2],[1628,2]]], [1599,[14652.6,4952.19,1.01725e-005],[[1569,2],[1629,2],[1630,2],[1599,2]]], [1600,[10707.3,13300.4,0],[[1570,2],[1631,2]]], [1601,[9599.12,15368.5,0],[[1571,2]]], +[1602,[9417.38,15244.5,0],[[1571,2],[1603,2],[1602,2],[1632,2]]], [1603,[9441.79,15259.8,-3.8147e-006],[[1602,2],[1668,2],[1603,2],[1571,2]]], [1604,[9235.91,15689.5,0],[[1574,2],[1633,2],[1634,2],[1605,2]]], [1605,[9186.48,15608.1,-1.19209e-006],[[1574,2],[1604,2],[1635,2],[1605,2],[1636,2],[1634,2]]], [1606,[9708.66,16172.1,15.1066],[[1576,2],[1638,2]]], [1607,[11125.3,16045.1,-1.90735e-006],[[1580,2],[1639,2]]], +[1608,[10290.3,16876.6,0],[[1581,2],[1640,2]]], [1609,[10051.8,16500.1,0],[[1582,2],[1641,2],[1609,2],[1642,2],[1643,2],[1644,2]]], [1610,[10237.2,16476.9,6.35783e-007],[[1582,2],[1645,2],[1610,2],[1646,2]]], [1611,[10564.8,14353.6,0],[[1583,2],[1647,2]]], [1612,[9465.61,11749.5,0],[[1584,2]]], [1613,[9382.34,11605.3,0],[[1584,2],[1648,2],[1613,2],[1649,2]]], +[1614,[9402.06,12018.9,-7.62939e-006],[[1585,2]]], [1615,[9304.61,12148.9,0],[[1585,2],[1615,2],[1650,2]]], [1616,[9090.84,5469.95,0],[[1587,2],[1651,2],[1616,2],[1652,2]]], [1617,[9210.2,5440.18,0],[[1587,2],[1653,2],[1618,2],[1617,2]]], [1618,[9229.8,5459.08,0],[[1617,2],[1698,2],[1618,2],[1587,2]]], [1619,[8117.47,9148.76,3.8147e-006],[[1589,2]]], +[1620,[8259.97,9234.21,0],[[1589,2],[1654,2],[1620,2],[1655,2]]], [1621,[7893.98,9419.02,-6.35783e-007],[[1563,2]]], [1622,[7753.64,9514.94,1.90735e-006],[[1590,2]]], [1623,[7686.65,9548.02,-1.90735e-006],[[1590,2],[1592,2]]], [1624,[7340.42,9592.69,-6.35783e-007],[[1591,2],[1657,2],[1624,2],[1658,2]]], [1625,[7583.06,9555.36,0],[[1592,2]]], +[1626,[6999.89,9570.27,-3.17891e-007],[[1596,2],[1659,2],[1660,2]]], [1627,[8438.36,7749.31,0],[[1598,2]]], [1628,[8704.64,7591.91,3.8147e-006],[[1598,2],[1661,2],[1628,2],[1662,2],[1663,2]]], [1629,[14558.7,5052.78,0],[[1599,2],[1664,2],[1665,2]]], [1630,[14659.2,4935.03,7.62939e-006],[[1599,2]]], [1631,[10687.6,13319.6,-2.54313e-006],[[1600,2],[1666,2],[1667,2]]], +[1632,[9278.44,15196.5,0],[[1602,2],[1669,2],[1632,2],[1670,2]]], [1633,[9204.78,15791.1,0],[[1604,2],[1671,2]]], [1634,[9133.44,15661.2,0],[[1604,2],[1605,2],[1672,2],[1673,2]]], [1635,[9230.3,15607.1,-1.90735e-006],[[1605,2]]], [1636,[9007.35,15565,0],[[1605,2],[1674,2]]], [1637,[9693.84,15900.8,-6.35783e-007],[[1577,2]]], +[1638,[9704.71,16347.3,0.487523],[[1606,2],[1675,2],[1638,2],[1676,2],[1677,2],[1678,2]]], [1639,[11218.9,16059.2,-1.90735e-006],[[1607,2],[1679,2]]], [1640,[10435.9,16927.2,-1.90735e-006],[[1608,2],[1680,2]]], [1641,[10168.8,16514,1.27157e-006],[[1609,2]]], [1642,[10017.6,16387.4,1.90735e-006],[[1609,2],[1681,2],[1646,2],[1682,2]]], [1643,[10015.8,16609.1,-1.27157e-006],[[1609,2],[1683,2],[1643,2],[1684,2]]], +[1644,[9865.36,16566.6,0],[[1609,2],[1685,2],[1686,2],[1644,2],[1687,2]]], [1645,[10243.9,16514.3,6.35783e-007],[[1610,2]]], [1646,[10161.2,16400.8,0],[[1610,2],[1642,2],[1688,2],[1646,2],[1681,2]]], [1647,[10572.4,14299.1,0],[[1611,2],[1689,2]]], [1648,[9394.79,11624.5,0],[[1613,2]]], [1649,[9334.62,11503.2,0],[[1613,2],[1690,2],[1649,2],[1691,2]]], +[1650,[9223.43,12335.1,1.01725e-005],[[1615,2],[1692,2],[1650,2],[1693,2]]], [1651,[9017.54,5438.4,-7.62939e-006],[[1616,2],[1694,2]]], [1652,[9066.68,5590.7,0],[[1616,2],[1695,2],[1652,2],[1696,2]]], [1653,[9149.39,5390.6,0],[[1617,2],[1653,2],[1697,2]]], [1654,[8163.25,9219.1,-1.27157e-006],[[1620,2]]], [1655,[8518.47,9277.37,0],[[1620,2],[1699,2],[1655,2],[1700,2]]], +[1656,[7463.89,9549.72,6.35783e-007],[[1593,2]]], [1657,[7360.08,9581.53,-9.53674e-007],[[1624,2]]], [1658,[7239.65,9645.06,-6.35783e-007],[[1624,2],[1701,2],[1658,2],[1702,2],[1703,2]]], [1659,[7006.82,9554.7,-6.35783e-007],[[1626,2],[1659,2],[1704,2]]], [1660,[6834.07,9553.88,0],[[1626,2],[1705,2]]], [1661,[8598.67,7687.34,-5.08626e-006],[[1628,2]]], +[1662,[8652.92,7447.42,0],[[1628,2],[1706,2],[1662,2],[1707,2]]], [1663,[8905.05,7447.5,5.08626e-006],[[1628,2],[1708,2],[1663,2],[1709,2]]], [1664,[14467.3,5119.46,0],[[1629,2],[1710,2],[1665,2],[1664,2]]], [1665,[14477,5102.34,0],[[1664,2],[1751,2],[1665,2],[1629,2]]], [1666,[10650.5,13411.8,0],[[1631,2],[1711,2]]], [1667,[10623.2,13240.6,1.27157e-006],[[1631,2],[1712,2],[1667,2],[1713,2]]], +[1668,[9465.99,15271.6,0],[[1603,2]]], [1669,[9330.34,15199.9,0],[[1632,2]]], [1670,[9129.25,15222.6,0],[[1632,2],[1714,2],[1715,2]]], [1671,[9198.83,15848.3,0],[[1633,2]]], [1672,[9116.95,15721.7,-3.17891e-007],[[1634,2],[1716,2],[1717,2],[1672,2]]], [1673,[9022.45,15630.7,0],[[1634,2],[1718,2],[1674,2]]], +[1674,[8934.48,15565.4,3.17891e-007],[[1636,2],[1673,2],[1719,2],[1720,2],[1718,2]]], [1675,[9706.89,16273.8,0.975045],[[1638,2]]], [1676,[9730.7,16376.7,6.35783e-007],[[1638,2],[1676,2],[1721,2],[1682,2]]], [1677,[9634.35,16545,0],[[1638,2],[1678,2],[1677,2],[1722,2],[1685,2]]], [1678,[9645.38,16532.3,0],[[1677,2],[1761,2],[1678,2],[1638,2]]], [1679,[11307.4,16063,0],[[1639,2],[1723,2]]], +[1680,[10457.8,16925.8,-1.27157e-006],[[1640,2],[1680,2],[1724,2]]], [1681,[10091.6,16349.9,3.8147e-006],[[1642,2],[1646,2],[1725,2]]], [1682,[9931.63,16357.2,0],[[1642,2],[1676,2],[1726,2],[1727,2],[1725,2]]], [1683,[10009.4,16571.4,0],[[1643,2]]], [1684,[9995.13,16759,-1.27157e-006],[[1643,2],[1728,2],[1729,2]]], [1685,[9707.56,16605.9,0],[[1644,2],[1677,2],[1687,2],[1685,2],[1722,2]]], +[1686,[9890.61,16556,-6.35783e-007],[[1644,2]]], [1687,[9749.57,16607.9,-1.90735e-006],[[1685,2],[1768,2],[1687,2],[1644,2]]], [1688,[10182,16413.3,0],[[1646,2]]], [1689,[10562.6,14215.1,0],[[1647,2],[1730,2]]], [1690,[9340.23,11529.3,0],[[1649,2]]], [1691,[9326.17,11391.1,5.08626e-006],[[1649,2],[1731,2],[1691,2],[1732,2]]], +[1692,[9260.56,12304.7,7.62939e-006],[[1650,2]]], [1693,[9032.71,12397.6,0],[[1650,2],[1733,2],[1693,2],[1734,2]]], [1694,[8986.01,5400.71,0],[[1651,2],[1697,2],[1735,2]]], [1695,[9076.82,5540.11,0],[[1652,2]]], [1696,[9072.95,5775.25,0],[[1652,2],[1736,2],[1696,2],[1737,2]]], [1697,[9097.32,5359.29,0],[[1653,2],[1694,2],[1697,2],[1738,2]]], +[1698,[9224.71,5476.26,0],[[1618,2]]], [1699,[8474.8,9269.38,0],[[1655,2]]], [1700,[8652.55,9344.28,2.54313e-006],[[1655,2],[1739,2],[1740,2]]], [1701,[7264.08,9634.99,-6.35783e-007],[[1658,2]]], [1702,[7107.26,9689.06,-6.35783e-007],[[1658,2],[1703,2],[1702,2],[1741,2]]], [1703,[7123.87,9686.37,0],[[1702,2],[1781,2],[1703,2],[1658,2]]], +[1704,[6987.39,9469.15,0],[[1659,2],[1742,2]]], [1705,[6781.29,9567.94,3.17891e-007],[[1660,2],[1743,2],[1744,2]]], [1706,[8679.23,7479.32,0],[[1662,2]]], [1707,[8501.01,7344.96,0],[[1662,2],[1745,2],[1707,2],[1746,2]]], [1708,[8877.49,7483.18,7.62939e-006],[[1663,2]]], [1709,[8994.97,7293.81,-5.08626e-006],[[1663,2],[1747,2],[1709,2],[1748,2]]], +[1710,[14452.8,5199.77,3.05176e-005],[[1664,2],[1749,2],[1750,2]]], [1711,[10603.6,13475,0],[[1666,2],[1752,2]]], [1712,[10633.2,13265.3,1.90735e-006],[[1667,2]]], [1713,[10603.2,13191.4,0],[[1667,2]]], [1714,[9049.18,15217.6,0],[[1670,2],[1753,2],[1754,2],[1755,2]]], [1715,[9154.06,15214.1,0],[[1670,2]]], +[1716,[9090.65,15845.4,0],[[1672,2],[1756,2],[1716,2],[1757,2]]], [1717,[9121.04,15699.5,-4.76837e-007],[[1672,2]]], [1718,[8946.06,15621.1,0],[[1673,2],[1674,2],[1758,2]]], [1719,[8767.05,15580.8,0],[[1674,2],[1759,2]]], [1720,[8953.25,15623.3,0],[[1720,2]]], [1721,[9822.66,16352.5,0],[[1676,2],[1760,2],[1721,2]]], +[1722,[9587.96,16585.4,4.76837e-007],[[1677,2],[1685,2],[1762,2],[1763,2],[1764,2]]], [1723,[11387.5,16090.6,0],[[1679,2],[1765,2]]], [1724,[10536.3,16924.8,0],[[1680,2],[1766,2]]], [1725,[10012.8,16304.5,0],[[1681,2],[1682,2],[1727,2]]], [1726,[9843.63,16349.2,1.90735e-006],[[1682,2]]], [1727,[9968.21,16326.5,0],[[1682,2],[1725,2]]], +[1728,[10009.6,16733.6,-2.54313e-006],[[1684,2]]], [1729,[9929.63,16863.9,-1.27157e-006],[[1684,2],[1767,2],[1729,2]]], [1730,[10577.5,14123.9,0],[[1689,2],[1769,2]]], [1731,[9321.64,11414,0],[[1691,2]]], [1732,[9340.22,11322.8,-5.08626e-006],[[1691,2],[1732,2],[1770,2]]], [1733,[9088.06,12397.9,0],[[1693,2]]], +[1734,[8911.32,12407.3,0],[[1693,2],[1734,2],[1771,2]]], [1735,[8918.41,5327.38,7.62939e-006],[[1694,2],[1772,2]]], [1736,[9068.71,5731.71,0],[[1696,2]]], [1737,[9109.06,5946.71,5.08626e-006],[[1696,2],[1773,2],[1737,2],[1774,2]]], [1738,[9167.07,5274.37,0],[[1697,2],[1775,2],[1776,2]]], [1739,[8609.42,9225.49,2.54313e-006],[[1700,2],[1777,2],[1739,2],[1778,2]]], +[1740,[8769.05,9558.71,2.54313e-006],[[1700,2],[1779,2],[1740,2],[1780,2]]], [1741,[7012.2,9701.23,0],[[1702,2],[1782,2],[1741,2],[1783,2]]], [1742,[6923.77,9388.61,0],[[1704,2],[1784,2]]], [1743,[6706.7,9574.27,-2.38419e-007],[[1705,2],[1785,2],[1743,2],[1786,2],[1787,2]]], [1744,[6800.03,9668,0],[[1705,2],[1788,2],[1744,2],[1789,2],[1783,2],[1790,2],[1786,2]]], [1745,[8541.92,7358.71,0],[[1707,2],[1791,2]]], +[1746,[8400.72,7301.15,2.54313e-006],[[1707,2],[1792,2],[1746,2],[1793,2]]], [1747,[8992.69,7333.13,-7.62939e-006],[[1709,2]]], [1748,[9044.85,7140.19,0],[[1709,2],[1794,2],[1748,2],[1795,2]]], [1749,[14494.3,5284.29,0],[[1710,2],[1796,2],[1750,2],[1749,2]]], [1750,[14475,5273.48,0],[[1749,2],[1840,2],[1750,2],[1710,2]]], [1751,[14505.9,5083.85,5.08626e-006],[[1665,2]]], +[1752,[10564.1,13585.6,0],[[1711,2],[1797,2]]], [1753,[8963.24,15257.7,0],[[1714,2],[1798,2],[1753,2],[1799,2],[1800,2]]], [1754,[9098.96,15056.3,2.54313e-006],[[1714,2],[1755,2],[1754,2],[1801,2]]], [1755,[9096.71,15087.6,0],[[1754,2],[1843,2],[1755,2],[1714,2]]], [1756,[9099.14,15808.9,0],[[1716,2]]], [1757,[9079.96,15915,0],[[1716,2],[1757,2],[1802,2]]], +[1758,[8820.19,15663.5,0],[[1718,2],[1803,2]]], [1759,[8606.69,15606.7,1.58946e-007],[[1719,2],[1804,2],[1805,2]]], [1760,[9776.5,16362.1,-6.35783e-007],[[1721,2]]], [1761,[9659.66,16509.5,-6.35783e-007],[[1678,2]]], [1762,[9536.77,16679.6,6.35783e-007],[[1722,2],[1806,2],[1762,2],[1807,2],[1808,2]]], [1763,[9426.69,16532.5,0],[[1722,2],[1809,2],[1764,2],[1763,2]]], +[1764,[9442.42,16538.5,0],[[1763,2],[1856,2],[1764,2],[1722,2]]], [1765,[11470.1,16132.2,0],[[1723,2],[1765,2]]], [1766,[10599.3,16967.5,3.8147e-006],[[1724,2],[1810,2]]], [1767,[9945.1,16831.4,-1.27157e-006],[[1729,2]]], [1768,[9776.27,16599.2,0],[[1687,2]]], [1769,[10566.8,14087.9,0],[[1730,2],[1811,2],[1812,2]]], +[1770,[9305.25,11245.6,-5.08626e-006],[[1732,2],[1813,2],[1770,2],[1814,2]]], [1771,[8837.82,12448.1,0],[[1734,2],[1815,2],[1771,2],[1816,2]]], [1772,[8802.41,5323.56,0],[[1735,2],[1817,2]]], [1773,[9090.93,5903.64,7.62939e-006],[[1737,2]]], [1774,[9130.52,6117.09,5.08626e-006],[[1737,2],[1818,2],[1774,2],[1819,2]]], [1775,[9165.8,5193.99,-2.54313e-006],[[1738,2],[1820,2],[1775,2],[1821,2]]], +[1776,[9268.74,5270.37,0],[[1738,2],[1822,2]]], [1777,[8616.18,9234.61,0],[[1739,2]]], [1778,[8595.92,9207.25,7.62939e-006],[[1739,2]]], [1779,[8752.93,9518.74,2.54313e-006],[[1740,2]]], [1780,[8770.69,9705.76,0],[[1740,2],[1823,2],[1780,2],[1824,2]]], [1781,[7150.57,9677.69,-6.35783e-007],[[1703,2]]], +[1782,[7038.72,9700.25,0],[[1741,2]]], [1783,[6944.17,9716.58,0],[[1741,2],[1744,2],[1789,2],[1825,2]]], [1784,[6784.5,9424.27,0],[[1742,2],[1826,2]]], [1785,[6732.56,9563.12,-4.76837e-007],[[1743,2]]], [1786,[6704.88,9627.61,0],[[1743,2],[1744,2],[1827,2],[1828,2]]], [1787,[6625.86,9595.49,-3.17891e-007],[[1743,2],[1829,2],[1787,2],[1830,2]]], +[1788,[6801.69,9638.33,0],[[1744,2]]], [1789,[6884.77,9700.1,0],[[1744,2],[1783,2]]], [1790,[6740.01,9688.4,0],[[1827,2],[1831,2],[1790,2],[1832,2]]], [1791,[8511.61,7342.16,0],[[1745,2]]], [1792,[8423.48,7315.51,3.8147e-006],[[1746,2]]], [1793,[8297.42,7228.8,0],[[1746,2],[1833,2],[1793,2],[1834,2]]], +[1794,[8990.4,7177.31,0],[[1748,2],[1835,2],[1794,2]]], [1795,[9179.06,7005.14,0],[[1748,2],[1836,2],[1795,2],[1837,2],[1838,2]]], [1796,[14568.5,5303.75,0],[[1749,2],[1839,2]]], [1797,[10538.1,13688.8,0],[[1752,2],[1841,2]]], [1798,[8987.78,15251.8,0],[[1753,2]]], [1799,[8812.07,15274,0],[[1753,2],[1800,2],[1799,2],[1842,2]]], +[1800,[8832.39,15277,0],[[1799,2],[1886,2],[1800,2],[1753,2]]], [1801,[9136.32,14943,1.27157e-006],[[1754,2],[1844,2],[1845,2]]], [1802,[9051.85,15983.2,0],[[1757,2],[1846,2],[1847,2]]], [1803,[8687.09,15686.9,-4.76837e-007],[[1758,2],[1804,2]]], [1804,[8596.96,15694,3.17891e-007],[[1759,2],[1803,2],[1848,2]]], [1805,[8518.71,15585,-3.17891e-007],[[1759,2],[1849,2],[1850,2],[1805,2],[1851,2]]], +[1806,[9555.61,16655.2,0],[[1762,2]]], [1807,[9431.36,16813.8,0],[[1762,2],[1808,2],[1807,2],[1852,2],[1853,2]]], [1808,[9445.48,16790.6,0],[[1807,2],[1898,2],[1808,2],[1762,2]]], [1809,[9341.49,16497.4,0],[[1763,2],[1854,2],[1855,2],[1809,2]]], [1810,[10644,17002.6,-1.27157e-006],[[1766,2],[1857,2],[1858,2]]], [1811,[10551.3,13966.4,0],[[1769,2],[1859,2]]], +[1812,[10492.1,14087.3,0],[[1769,2],[1860,2]]], [1813,[9324.85,11262.4,0],[[1770,2]]], [1814,[9232.15,11175.3,0],[[1770,2],[1861,2],[1814,2]]], [1815,[8865.93,12435.4,0],[[1771,2]]], [1816,[8723.24,12490.6,5.08626e-006],[[1771,2],[1862,2],[1816,2],[1863,2]]], [1817,[8684.03,5323.1,0],[[1772,2],[1864,2]]], +[1818,[9151.18,6088.03,0],[[1774,2]]], [1819,[9126.08,6229.88,-5.08626e-006],[[1774,2],[1865,2],[1819,2],[1866,2]]], [1820,[9160.26,5220.05,-3.8147e-006],[[1775,2]]], [1821,[9162.12,5076.03,0],[[1775,2],[1867,2],[1821,2],[1868,2]]], [1822,[9393.06,5248.61,0],[[1776,2],[1869,2]]], [1823,[8782.36,9669.33,0],[[1780,2]]], +[1824,[8745.77,9803.66,-2.54313e-006],[[1780,2],[1824,2],[1870,2]]], [1825,[6952.27,9765.74,6.35783e-007],[[1783,2],[1825,2],[1871,2]]], [1826,[6724.77,9423.16,0],[[1784,2],[1872,2]]], [1827,[6728.75,9673.38,-0.037178],[[1786,2],[1790,2],[1827,2]]], [1828,[6558.25,9688.04,3.17891e-007],[[1786,2],[1873,2],[1830,2],[1874,2],[1875,2],[1876,2]]], [1829,[6642.61,9593.28,0],[[1787,2]]], +[1830,[6522.74,9599.02,-2.38419e-007],[[1787,2],[1828,2],[1873,2],[1877,2],[1878,2]]], [1831,[6735.59,9682.8,-3.17891e-007],[[1790,2]]], [1832,[6644.28,9724.92,0],[[1875,2],[1931,2],[1790,2],[1832,2]]], [1833,[8320.53,7244.99,0],[[1793,2]]], [1834,[8231.43,7174.55,2.54313e-006],[[1793,2],[1879,2],[1834,2],[1880,2],[1881,2]]], [1835,[8989.37,7180.03,0],[[1794,2],[1882,2],[1835,2]]], +[1836,[9154.65,7062.82,0],[[1795,2],[1838,2],[1836,2]]], [1837,[9274.18,6835.19,-5.08626e-006],[[1795,2],[1883,2],[1837,2],[1884,2]]], [1838,[9141.17,7075.14,0],[[1836,2],[1838,2],[1935,2],[1795,2]]], [1839,[14644.1,5265.81,0],[[1796,2],[1885,2]]], [1840,[14463.4,5247.8,0],[[1750,2]]], [1841,[10510,13779.8,0],[[1797,2],[1859,2]]], +[1842,[8722.58,15250.9,-6.35783e-007],[[1799,2],[1887,2],[1842,2],[1888,2]]], [1843,[9081.05,15120.3,1.27157e-006],[[1755,2]]], [1844,[9176.97,14848.4,-1.27157e-006],[[1801,2],[1889,2],[1844,2],[1890,2]]], [1845,[9124.27,14966.3,1.27157e-006],[[1801,2]]], [1846,[8973.35,15920,0],[[1802,2],[1891,2],[1892,2]]], [1847,[8971.56,16104.8,0],[[1802,2],[1893,2],[1847,2],[1894,2],[1895,2]]], +[1848,[8616.1,15777.8,0],[[1804,2],[1896,2]]], [1849,[8346.96,15516.1,-1.58946e-007],[[1805,2],[1851,2],[1849,2],[1897,2]]], [1850,[8541.39,15593,-4.76837e-007],[[1805,2]]], [1851,[8364.33,15527.9,4.76837e-007],[[1849,2],[1953,2],[1851,2],[1805,2]]], [1852,[9342.16,16946.6,-6.35783e-007],[[1807,2],[1853,2],[1852,2],[1899,2]]], [1853,[9349.37,16925,-1.90735e-006],[[1852,2],[1958,2],[1853,2],[1807,2]]], +[1854,[9258.56,16440.1,0],[[1809,2],[1900,2],[1854,2],[1901,2]]], [1855,[9363.18,16508.8,0],[[1809,2]]], [1856,[9474.36,16545.1,0],[[1764,2]]], [1857,[10648,17089.9,0],[[1810,2],[1902,2]]], [1858,[10740.2,16964.9,-1.27157e-006],[[1810,2],[1903,2],[1858,2],[1904,2]]], [1859,[10512.2,13855.7,0],[[1811,2],[1841,2]]], +[1860,[10411.1,14063,0],[[1812,2],[1905,2]]], [1861,[9147.32,11068.3,0],[[1814,2],[1906,2],[1861,2],[1907,2]]], [1862,[8748.26,12488.8,7.62939e-006],[[1816,2]]], [1863,[8639.81,12496.1,5.08626e-006],[[1816,2],[1863,2],[1908,2]]], [1864,[8556.21,5285.77,-7.62939e-006],[[1817,2],[1909,2]]], [1865,[9104.94,6202.04,0],[[1819,2]]], +[1866,[9225.67,6391.1,1.01725e-005],[[1819,2],[1910,2],[1866,2],[1911,2],[1884,2]]], [1867,[9187.79,5109.55,-7.62939e-006],[[1821,2],[1912,2],[1867,2]]], [1868,[9075.68,4959.78,0],[[1821,2],[1913,2],[1868,2],[1914,2],[1915,2]]], [1869,[9507.65,5229.4,7.62939e-006],[[1822,2],[1916,2]]], [1870,[8754.67,9897.14,2.54313e-006],[[1824,2],[1917,2],[1870,2],[1918,2]]], [1871,[6886.42,9839.94,6.35783e-007],[[1825,2],[1919,2],[1871,2],[1920,2],[1921,2]]], +[1872,[6684.71,9385.01,-1.27157e-006],[[1826,2],[1922,2],[1872,2],[1923,2]]], [1873,[6519.62,9651.24,0],[[1828,2],[1830,2]]], [1874,[6540.09,9781.39,0],[[1828,2],[1924,2]]], [1875,[6620.85,9745.38,0],[[1790,2],[1828,2],[1832,2],[1875,2],[1876,2]]], [1876,[6549.87,9791.06,0],[[1875,2],[1932,2],[1828,2],[1876,2]]], [1877,[6426.57,9599.21,7.15256e-007],[[1830,2],[1924,2],[1925,2],[1926,2]]], +[1878,[6526.06,9494.26,0],[[1830,2],[1927,2],[1878,2],[1928,2],[1929,2],[1930,2]]], [1879,[8245.85,7187.84,0],[[1834,2]]], [1880,[8111.8,7080.71,-2.54313e-006],[[1834,2],[1881,2],[1880,2],[1933,2]]], [1881,[8127.36,7102.11,0],[[1880,2],[1985,2],[1881,2],[1834,2]]], [1882,[8988.61,7182.83,-1.52588e-005],[[1835,2],[1934,2],[1882,2]]], [1883,[9272.77,6885.85,-5.08626e-006],[[1837,2]]], +[1884,[9247.95,6674.3,-5.08626e-006],[[1837,2],[1866,2],[1936,2],[1884,2],[1937,2]]], [1885,[14694.6,5254.61,0],[[1839,2],[1938,2],[1939,2]]], [1886,[8859.24,15275.1,6.35783e-007],[[1800,2]]], [1887,[8747.71,15260.6,-9.53674e-007],[[1842,2]]], [1888,[8606.28,15230.2,0],[[1842,2],[1940,2],[1888,2],[1941,2]]], [1889,[9169.66,14882.1,0],[[1844,2]]], +[1890,[9192.41,14745.4,-1.27157e-006],[[1844,2],[1942,2],[1890,2],[1943,2]]], [1891,[8901.26,15820.7,0.0128365],[[1846,2],[1944,2]]], [1892,[8893.24,15966.1,0],[[1846,2],[1945,2],[1894,2],[1946,2]]], [1893,[8999.66,16061.4,0],[[1847,2]]], [1894,[8896.1,16197.4,-3.17891e-007],[[1847,2],[1892,2],[1947,2],[1945,2],[1948,2],[1946,2],[1949,2],[1950,2]]], [1895,[9037.09,16171.2,0],[[1847,2],[1951,2]]], +[1896,[8712.81,15788.3,1.90735e-006],[[1848,2],[1952,2],[1944,2]]], [1897,[8297.88,15486.1,0],[[1849,2],[1954,2],[1955,2],[1956,2],[1957,2]]], [1898,[9465.02,16765.9,0],[[1808,2]]], [1899,[9301.83,17038.7,6.35783e-007],[[1852,2],[1959,2],[1899,2],[1960,2],[1961,2]]], [1900,[9279.53,16458.8,0],[[1854,2]]], [1901,[9176.67,16374,-6.35783e-007],[[1854,2],[1962,2],[1947,2],[1963,2]]], +[1902,[10616.8,17159.4,0],[[1857,2],[1964,2]]], [1903,[10702.8,16979.6,-1.90735e-006],[[1858,2]]], [1904,[10877.2,16944.2,0],[[1858,2]]], [1905,[10327.1,14074.4,0],[[1860,2],[1965,2]]], [1906,[9159.84,11086.9,0],[[1861,2]]], [1907,[9037.95,11000.2,-5.08626e-006],[[1861,2],[1966,2],[1907,2],[1967,2]]], +[1908,[8612.2,12498,0],[[1863,2],[1908,2],[1968,2]]], [1909,[8469.48,5256.89,-7.62939e-006],[[1864,2],[1969,2]]], [1910,[9209.14,6333.97,5.08626e-006],[[1866,2]]], [1911,[9249.82,6512.48,0],[[1866,2],[1970,2],[1911,2]]], [1912,[9188.3,5115.33,0],[[1971,2],[1912,2]]], [1913,[9105.11,4976.02,0],[[1868,2]]], +[1914,[8928.76,4870.26,0],[[1868,2],[1915,2],[1914,2],[1972,2]]], [1915,[8946.3,4885.27,-1.52588e-005],[[1914,2],[2015,2],[1915,2],[1868,2]]], [1916,[9618.05,5246.41,0],[[1869,2],[1973,2]]], [1917,[8749.25,9870.83,0],[[1870,2]]], [1918,[8748.74,10014.9,0],[[1870,2],[1974,2],[1918,2],[1975,2]]], [1919,[6923.78,9825.33,9.53674e-007],[[1871,2]]], +[1920,[6767.77,9961.48,1.27157e-006],[[1871,2],[1976,2],[1920,2],[1977,2]]], [1921,[6774.95,9914.65,0],[[1976,2],[1871,2]]], [1922,[6696.32,9399.32,-1.90735e-006],[[1872,2]]], [1923,[6606.69,9316.1,0],[[1872,2],[1978,2]]], [1924,[6466.26,9821.96,0],[[1874,2],[1877,2],[1979,2],[1924,2],[1980,2]]], [1925,[6353.3,9664.24,-6.35783e-007],[[1877,2],[1981,2],[1925,2],[1982,2],[1979,2]]], +[1926,[6340.55,9535.51,0],[[1877,2],[1983,2],[1926,2],[1984,2]]], [1927,[6517.25,9539.83,0],[[1878,2]]], [1928,[6524.16,9377.98,-6.35783e-007],[[1878,2],[1930,2],[1928,2],[1978,2]]], [1929,[6620.47,9494.23,0],[[1878,2]]], [1930,[6519.3,9398.61,-1.90735e-006],[[1928,2],[2029,2],[1878,2],[1930,2]]], [1931,[6667.36,9714.42,0],[[1832,2]]], +[1932,[6537.68,9767.38,0],[[1876,2]]], [1933,[8004.73,7003.65,-1.27157e-006],[[1880,2],[1986,2],[1933,2],[1987,2]]], [1934,[8988.19,7190.06,0],[[1882,2],[1988,2],[1934,2]]], [1935,[9160.92,7046.59,0],[[1838,2]]], [1936,[9241.64,6725.23,0],[[1884,2],[1989,2],[1936,2]]], [1937,[9250.03,6550.02,0],[[1884,2]]], +[1938,[14791.6,5277.87,0],[[1885,2],[1990,2],[1991,2],[1938,2]]], [1939,[14759.4,5262.52,0],[[1991,2],[1885,2]]], [1940,[8643.91,15226.5,0],[[1888,2]]], [1941,[8484.45,15263.2,-6.35783e-007],[[1888,2],[1992,2],[1941,2],[1993,2]]], [1942,[9183.43,14771.3,0],[[1890,2],[1994,2],[1942,2]]], [1943,[9182.71,14607.4,-1.27157e-006],[[1890,2],[1995,2],[1943,2],[1996,2]]], +[1944,[8803.74,15806.7,-1.90735e-006],[[1891,2],[1896,2],[1952,2]]], [1945,[8892.51,16089.6,0],[[1892,2],[1894,2]]], [1946,[8755.63,16025.6,0],[[1892,2],[1894,2],[1997,2],[1952,2],[1998,2],[1948,2],[1999,2],[1946,2]]], [1947,[8988.9,16278.5,-4.76837e-007],[[1894,2],[1901,2],[2000,2],[1947,2],[1962,2],[1950,2]]], [1948,[8798.48,16128.9,1.90735e-006],[[1894,2],[1946,2],[1949,2]]], [1949,[8732.57,16200.3,-1.43051e-006],[[1894,2],[1948,2],[2001,2],[2002,2]]], +[1950,[8941.57,16331.7,0],[[1947,2],[2003,2],[1950,2]]], [1951,[9060.97,16217.1,0],[[1895,2],[1962,2]]], [1952,[8746.15,15830,0],[[1896,2],[1944,2],[1946,2],[1997,2],[2004,2]]], [1953,[8396.84,15540.8,-1.58946e-007],[[1851,2]]], [1954,[8189.91,15384.5,-6.35783e-007],[[1897,2],[2005,2],[1957,2],[1954,2]]], [1955,[8330.16,15454.4,-6.35783e-007],[[1897,2],[1955,2],[1993,2]]], +[1956,[8250.01,15591.2,0],[[1897,2],[2006,2]]], [1957,[8200.54,15397.5,0],[[1954,2],[2047,2],[1957,2],[1897,2]]], [1958,[9368.86,16898.8,-6.35783e-007],[[1853,2]]], [1959,[9313.81,17016,0],[[1899,2]]], [1960,[9209.75,17168.2,-6.35783e-007],[[1899,2],[1961,2],[1960,2],[2007,2]]], [1961,[9236.42,17148.7,-1.90735e-006],[[1960,2],[2049,2],[1961,2],[1899,2]]], +[1962,[9076.51,16328.4,4.76837e-007],[[1901,2],[1947,2],[1951,2],[2008,2],[1962,2]]], [1963,[9198.72,16388.2,0],[[1901,2]]], [1964,[10559.3,17232.1,0],[[1902,2],[2009,2]]], [1965,[10248.9,14054.2,0],[[1905,2],[2010,2]]], [1966,[9083.82,10992,0],[[1907,2]]], [1967,[8900.23,11029,0],[[1907,2],[2011,2],[1967,2],[2012,2]]], +[1968,[8542.55,12506.2,0],[[1908,2],[1968,2],[2013,2]]], [1969,[8348.51,5206.79,-7.62939e-006],[[1909,2],[2014,2]]], [1970,[9247.38,6504.49,0],[[1911,2]]], [1971,[9185.54,5113.12,0],[[1971,2],[1912,2]]], [1972,[8842.4,4791.17,5.08626e-006],[[1914,2],[2016,2],[1972,2],[2017,2]]], [1973,[9699.52,5241.58,7.62939e-006],[[1916,2],[2018,2]]], +[1974,[8758.01,9984.93,-2.54313e-006],[[1918,2]]], [1975,[8682.76,10126.8,0],[[1918,2],[2019,2],[1975,2],[2020,2]]], [1976,[6768.82,9928.38,-3.8147e-006],[[1920,2],[1921,2]]], [1977,[6722.21,10042.3,9.53674e-007],[[1920,2],[2021,2],[1977,2]]], [1978,[6539.4,9298.45,9.53674e-007],[[1923,2],[1928,2],[1978,2],[2022,2]]], [1979,[6382.71,9827.57,0],[[1924,2],[1925,2],[1982,2]]], +[1980,[6476.37,9928.94,1.58946e-007],[[1924,2],[2023,2],[1980,2],[2024,2]]], [1981,[6366.36,9638.11,-4.76837e-007],[[1925,2]]], [1982,[6303.04,9783.17,2.38419e-007],[[1925,2],[1979,2],[2025,2],[1982,2],[2026,2]]], [1983,[6367.21,9542.04,0],[[1926,2]]], [1984,[6212.38,9495.85,-3.17891e-007],[[1926,2],[2027,2],[1984,2],[2028,2]]], [1985,[8154.78,7120.18,-2.54313e-006],[[1881,2]]], +[1986,[8045.8,7011.28,0],[[1933,2]]], [1987,[7875.54,7016.66,1.27157e-006],[[1933,2],[2030,2],[2031,2],[1987,2]]], [1988,[8990.79,7193.1,6.10352e-006],[[1934,2]]], [1989,[9247.18,6738.97,0],[[1936,2],[1989,2],[2032,2]]], [1990,[14865.1,5341.31,0],[[1938,2],[2033,2]]], [1991,[14773,5266.03,0],[[1938,2],[1939,2]]], +[1992,[8505.97,15252.1,-9.53674e-007],[[1941,2]]], [1993,[8405.78,15308.7,3.17891e-007],[[1941,2],[1955,2],[2034,2]]], [1994,[9182.49,14775.6,0],[[1942,2],[2035,2],[1994,2]]], [1995,[9200.67,14647.6,-1.27157e-006],[[1943,2]]], [1996,[9128.24,14437,0],[[1943,2],[2036,2],[1996,2],[2037,2]]], [1997,[8765.83,15900,9.53674e-007],[[1946,2],[1952,2]]], +[1998,[8819.27,16128.4,0],[[1998,2]]], [1999,[8713.12,16078.6,1.90735e-006],[[1946,2],[2038,2],[2002,2],[1999,2]]], [2000,[8987.3,16234,0],[[1947,2]]], [2001,[8745.7,16375.3,0],[[1949,2],[2039,2],[2040,2]]], [2002,[8583.52,16114.8,0.0178194],[[1949,2],[1999,2],[2041,2],[2038,2]]], [2003,[8947.96,16393.4,1.27157e-006],[[1950,2],[2042,2],[2040,2],[2043,2]]], +[2004,[8612.19,15896.1,0],[[1952,2],[2044,2],[2038,2]]], [2005,[8133.76,15311.4,0],[[1954,2],[2045,2],[2046,2],[2005,2]]], [2006,[8250.44,15695.8,0],[[1956,2],[2048,2]]], [2007,[9111.4,17244.1,0],[[1960,2],[2050,2],[2051,2],[2052,2]]], [2008,[9111.92,16339.6,0],[[1962,2]]], [2009,[10489.2,17292.4,1.90735e-006],[[1964,2],[2053,2]]], +[2010,[10176.9,14007.8,0],[[1965,2],[2054,2]]], [2011,[8928.04,11024.9,7.62939e-006],[[1967,2]]], [2012,[8729.8,10968.8,5.08626e-006],[[1967,2],[2055,2],[2012,2],[2056,2]]], [2013,[8388.58,12585.7,-5.08626e-006],[[1968,2],[2057,2],[2013,2],[2058,2]]], [2014,[8213,5209.52,0],[[1969,2],[2059,2],[2014,2],[2060,2],[2061,2]]], [2015,[8969.11,4899.55,0],[[1915,2]]], +[2016,[8862.96,4814.06,5.08626e-006],[[1972,2]]], [2017,[8765.57,4707.55,5.08626e-006],[[1972,2],[2062,2],[2017,2],[2063,2],[2064,2]]], [2018,[9783.59,5241.48,0],[[1973,2],[2065,2]]], [2019,[8711.59,10096.1,0],[[1975,2]]], [2020,[8539.34,10226.5,2.54313e-006],[[1975,2],[2066,2],[2020,2],[2067,2]]], [2021,[6700.88,10147.2,0],[[1977,2],[2068,2],[2069,2]]], +[2022,[6409.97,9279.13,0],[[1978,2],[2070,2]]], [2023,[6470.04,9893.04,0],[[1980,2]]], [2024,[6498.68,10023.9,1.58946e-007],[[1980,2],[2071,2],[2024,2],[2072,2]]], [2025,[6312.27,9754.63,0],[[1982,2]]], [2026,[6255.61,9870.58,3.17891e-007],[[1982,2],[2073,2],[2026,2],[2074,2]]], [2027,[6245.81,9513.85,-3.17891e-007],[[1984,2]]], +[2028,[6129.17,9412.37,0],[[1984,2],[2075,2],[2076,2],[2077,2]]], [2029,[6521.45,9420.21,-6.35783e-007],[[1930,2]]], [2030,[7783.58,7086.39,-1.27157e-006],[[1987,2],[2078,2],[2030,2],[2079,2]]], [2031,[7891.62,7004.26,1.90735e-006],[[1987,2]]], [2032,[9238.27,6696.45,1.52588e-005],[[1989,2]]], [2033,[14913.7,5406.82,0],[[1990,2],[2080,2]]], +[2034,[8377.61,15207.8,0],[[1993,2],[2081,2]]], [2035,[9183.87,14772.6,-1.27157e-006],[[1994,2]]], [2036,[9129.96,14489.2,0],[[1996,2]]], [2037,[9127.35,14317.5,-1.27157e-006],[[1996,2],[2082,2],[2083,2]]], [2038,[8609.37,16069.4,1.90735e-006],[[1999,2],[2002,2],[2004,2],[2084,2]]], [2039,[8669.85,16346,-1.90735e-006],[[2001,2],[2085,2]]], +[2040,[8852.7,16406.5,0],[[2001,2],[2003,2]]], [2041,[8523.77,16113.4,-6.35783e-007],[[2002,2],[2086,2],[2087,2]]], [2042,[8990.31,16548.4,-6.35783e-007],[[2003,2],[2043,2],[2042,2],[2088,2]]], [2043,[8975.01,16523.1,0],[[2042,2],[2128,2],[2043,2],[2003,2]]], [2044,[8594.45,15980.3,0],[[2004,2],[2089,2],[2044,2]]], [2045,[8081.8,15231.6,3.17891e-007],[[2005,2],[2090,2],[2091,2],[2045,2]]], +[2046,[8146.8,15332.1,0],[[2005,2]]], [2047,[8224.05,15418.5,0],[[1957,2]]], [2048,[8244.77,15763.9,0],[[2006,2],[2092,2]]], [2049,[9254.55,17120.9,6.35783e-007],[[1961,2]]], [2050,[9046.62,17145.1,0],[[2007,2],[2093,2],[2050,2],[2094,2],[2095,2],[2096,2]]], [2051,[9189.92,17455.1,0],[[2007,2],[2052,2],[2051,2],[2097,2]]], +[2052,[9229.55,17381.8,-1.90735e-006],[[2051,2],[2136,2],[2052,2],[2007,2]]], [2053,[10442.5,17368.2,1.90735e-006],[[2009,2],[2098,2]]], [2054,[10126.1,13976.3,0],[[2010,2],[2099,2],[2100,2]]], [2055,[8789.86,11016.8,0],[[2012,2]]], [2056,[8634.31,10877.3,1.01725e-005],[[2012,2],[2056,2],[2101,2]]], [2057,[8424.69,12557.6,0],[[2013,2]]], +[2058,[8225.27,12694.2,0],[[2013,2],[2058,2],[2102,2]]], [2059,[8171.2,5164.96,0],[[2014,2],[2103,2],[2061,2],[2059,2]]], [2060,[8186.3,5300.57,0],[[2014,2],[2104,2]]], [2061,[8158.5,5201.46,0],[[2059,2],[2147,2],[2014,2]]], [2062,[8785.11,4725.33,0],[[2017,2]]], [2063,[8670.9,4545.12,5.08626e-006],[[2017,2],[2064,2],[2063,2],[2105,2]]], +[2064,[8660.91,4610.67,0],[[2063,2],[2149,2],[2064,2],[2017,2]]], [2065,[9898.98,5261.68,0],[[2018,2],[2106,2]]], [2066,[8592.71,10212,5.08626e-006],[[2020,2]]], [2067,[8416.44,10203.2,0],[[2020,2],[2107,2],[2067,2],[2108,2]]], [2068,[6684.78,10254.8,0],[[2021,2],[2109,2],[2068,2],[2110,2]]], [2069,[6707.46,10201.7,0],[[2109,2],[2021,2]]], +[2070,[6318.85,9294.42,-1.90735e-006],[[2022,2],[2111,2]]], [2071,[6495.44,10006.7,0],[[2024,2]]], [2072,[6503.21,10138.1,0],[[2024,2],[2112,2],[2072,2],[2113,2]]], [2073,[6267.19,9838.02,3.17891e-007],[[2026,2]]], [2074,[6217.71,10041.4,0],[[2026,2],[2114,2],[2115,2]]], [2075,[6038.97,9235.18,6.35783e-007],[[2028,2],[2116,2],[2075,2],[2117,2]]], +[2076,[6180.85,9356.45,0],[[2028,2],[2111,2]]], [2077,[6060.21,9303.35,0],[[2116,2],[2028,2]]], [2078,[7816.08,7062.68,-1.27157e-006],[[2030,2]]], [2079,[7619.09,7239.94,0],[[2030,2],[2118,2]]], [2080,[14997.7,5480.46,0],[[2033,2],[2119,2]]], [2081,[8364.35,15111.6,0],[[2034,2],[2120,2]]], +[2082,[9031.8,14327.5,0],[[2037,2],[2121,2],[2082,2],[2122,2]]], [2083,[9201.39,14247.7,-1.27157e-006],[[2037,2],[2123,2],[2083,2],[2124,2]]], [2084,[8590.4,16005.6,0],[[2038,2]]], [2085,[8609.58,16276,0],[[2039,2],[2086,2]]], [2086,[8510.13,16193.5,0],[[2041,2],[2085,2],[2125,2]]], [2087,[8428.96,16099.6,0],[[2041,2],[2126,2],[2127,2]]], +[2088,[9051.83,16685.1,-6.35783e-007],[[2042,2],[2129,2],[2130,2],[2131,2]]], [2089,[8603.47,15931.7,-9.53674e-007],[[2044,2]]], [2090,[7966.31,15093.3,0],[[2045,2],[2132,2]]], [2091,[8098.73,15253.3,0],[[2045,2]]], [2092,[8209.77,15823.2,0],[[2048,2],[2133,2]]], [2093,[9071.77,17191.4,0],[[2050,2]]], +[2094,[9087.74,16984.5,-3.17891e-007],[[2050,2],[2134,2],[2129,2],[2096,2],[2094,2]]], [2095,[8967.42,17107.6,0],[[2050,2],[2095,2],[2135,2]]], [2096,[9084.57,17003.7,0],[[2094,2],[2184,2],[2096,2],[2050,2]]], [2097,[9163.38,17683.8,0],[[2051,2]]], [2098,[10409,17449.5,0],[[2053,2],[2137,2]]], [2099,[10052.5,13955.1,-2.54313e-006],[[2054,2],[2099,2],[2138,2],[2139,2]]], +[2100,[10075.2,13880.3,7.62939e-006],[[2054,2],[2140,2],[2100,2],[2141,2]]], [2101,[8605.71,10833.3,0],[[2056,2],[2142,2],[2101,2],[2143,2]]], [2102,[8015.24,12858.2,-5.08626e-006],[[2058,2],[2144,2],[2102,2],[2145,2]]], [2103,[8187.39,5112.39,0],[[2059,2],[2146,2],[2103,2]]], [2104,[8197.64,5384.54,7.62939e-006],[[2060,2],[2148,2]]], [2105,[8634.01,4372.99,0],[[2063,2],[2150,2],[2105,2],[2151,2]]], +[2106,[9957.97,5252.33,-7.62939e-006],[[2065,2],[2152,2]]], [2107,[8427.91,10221.1,0],[[2067,2]]], [2108,[8311.76,10123.2,0],[[2067,2],[2153,2],[2108,2],[2154,2]]], [2109,[6706.94,10222.3,0],[[2068,2],[2069,2]]], [2110,[6661.02,10327.1,1.27157e-006],[[2068,2],[2110,2],[2155,2]]], [2111,[6231.76,9325.31,0],[[2070,2],[2076,2]]], +[2112,[6508.62,10098.2,0],[[2072,2]]], [2113,[6465.3,10269.2,-2.38419e-007],[[2072,2],[2156,2],[2157,2],[2158,2],[2159,2]]], [2114,[6173.88,10176.9,0],[[2074,2],[2115,2],[2114,2],[2160,2]]], [2115,[6177,10157.6,0],[[2114,2],[2207,2],[2115,2],[2074,2]]], [2116,[6044.98,9272.61,0],[[2075,2],[2077,2],[2116,2]]], [2117,[5989.62,9023.79,-3.17891e-007],[[2075,2],[2161,2],[2162,2]]], +[2118,[7474.88,7229.04,2.54313e-006],[[2079,2],[2163,2],[2164,2]]], [2119,[15044.9,5559.91,0],[[2080,2],[2165,2]]], [2120,[8369.58,15032.4,0],[[2081,2],[2166,2]]], [2121,[9067.95,14325.5,1.90735e-006],[[2082,2]]], [2122,[8879.27,14355.9,-1.27157e-006],[[2082,2],[2167,2],[2168,2],[2122,2]]], [2123,[9190.5,14264.8,-1.90735e-006],[[2083,2]]], +[2124,[9255.88,14173.5,2.54313e-006],[[2083,2],[2169,2],[2124,2],[2170,2],[2171,2]]], [2125,[8501.81,16269.7,0],[[2086,2],[2172,2],[2125,2],[2173,2]]], [2126,[8367.37,16167.7,0],[[2087,2],[2174,2],[2126,2],[2175,2]]], [2127,[8319.73,16043.4,8.27227],[[2087,2],[2176,2],[2127,2],[2177,2],[2133,2]]], [2128,[8966.63,16486.7,6.35783e-007],[[2043,2]]], [2129,[9095.94,16783,0],[[2088,2],[2094,2],[2131,2],[2129,2],[2134,2]]], +[2130,[8918.82,16683.1,6.35783e-007],[[2088,2],[2178,2],[2130,2],[2179,2]]], [2131,[9093.25,16766.3,0],[[2129,2],[2227,2],[2088,2],[2131,2]]], [2132,[7923.08,15049.3,0],[[2090,2],[2180,2],[2181,2],[2132,2],[2182,2]]], [2133,[8162.61,15927.4,0],[[2092,2],[2127,2],[2183,2]]], [2134,[9105.24,16862.6,4.76837e-007],[[2094,2],[2129,2]]], [2135,[8909.32,17086.4,0],[[2095,2],[2135,2],[2185,2]]], +[2136,[9188.42,17329.3,0],[[2052,2]]], [2137,[10362.8,17520.4,0],[[2098,2],[2186,2]]], [2138,[9940.62,13942.5,0],[[2099,2],[2187,2],[2188,2],[2138,2]]], [2139,[9986.34,13937,-7.62939e-006],[[2188,2],[2099,2]]], [2140,[10102.7,13904.8,3.8147e-006],[[2100,2]]], [2141,[9974.42,13769.3,2.54313e-006],[[2100,2],[2189,2],[2141,2],[2190,2]]], +[2142,[8617.99,10850.2,0],[[2101,2],[2142,2]]], [2143,[8551.8,10761,0],[[2101,2],[2191,2],[2143,2],[2192,2]]], [2144,[8023.27,12832.5,-3.8147e-006],[[2102,2]]], [2145,[7932.82,13004,0],[[2102,2],[2193,2],[2145,2],[2194,2]]], [2146,[8133.7,5036.51,0],[[2103,2],[2195,2]]], [2147,[8172.17,5201.92,0],[[2061,2]]], +[2148,[8186.45,5435.03,0],[[2104,2],[2196,2]]], [2149,[8693.22,4646.18,0],[[2064,2]]], [2150,[8642.81,4404.32,0],[[2105,2]]], [2151,[8592.03,4255.78,-5.08626e-006],[[2105,2],[2197,2],[2151,2],[2198,2],[2199,2]]], [2152,[10057.9,5226.37,-7.62939e-006],[[2106,2],[2200,2]]], [2153,[8377.93,10127.7,0],[[2108,2]]], +[2154,[8183.11,10172.8,0],[[2108,2],[2201,2],[2154,2],[2202,2]]], [2155,[6655.76,10377.8,0],[[2110,2],[2203,2],[2204,2],[2157,2]]], [2156,[6478.39,10237.3,-1.58946e-007],[[2113,2]]], [2157,[6466.04,10412.5,-3.17891e-007],[[2113,2],[2155,2],[2205,2],[2204,2],[2206,2]]], [2158,[6346.72,10248.6,-4.76837e-007],[[2113,2],[2159,2],[2158,2],[2160,2]]], [2159,[6367.29,10250.6,0],[[2158,2],[2251,2],[2159,2],[2113,2]]], +[2160,[6163.04,10240.2,-2.38419e-007],[[2114,2],[2158,2],[2208,2],[2209,2],[2210,2],[2211,2]]], [2161,[6041.8,8978.57,-3.17891e-007],[[2117,2],[2212,2],[2213,2]]], [2162,[5886,8890.85,0],[[2117,2],[2214,2]]], [2163,[7449.89,7326.67,3.8147e-006],[[2118,2],[2215,2]]], [2164,[7461.56,7134.92,0],[[2118,2],[2216,2]]], [2165,[15101.7,5549.37,0],[[2119,2],[2217,2],[2218,2],[2165,2]]], +[2166,[8368.55,14972.7,0],[[2120,2],[2219,2]]], [2167,[8764.09,14332.1,1.27157e-006],[[2122,2],[2220,2],[2167,2],[2221,2]]], [2168,[8907.41,14354.3,0],[[2122,2]]], [2169,[9239.75,14190.3,-2.54313e-006],[[2124,2]]], [2170,[9333.23,14092.6,0],[[2124,2],[2222,2],[2170,2],[2223,2]]], [2171,[9296.79,14125.9,-7.62939e-006],[[2222,2],[2124,2]]], +[2172,[8494.8,16243,0],[[2125,2]]], [2173,[8517.99,16368.8,0],[[2125,2],[2224,2],[2225,2],[2175,2]]], [2174,[8386.06,16145.7,0],[[2126,2]]], [2175,[8374.46,16311.2,0],[[2126,2],[2173,2],[2225,2]]], [2176,[8354.23,16056,0.83656],[[2127,2]]], [2177,[8144.29,15976.5,0],[[2127,2],[2226,2],[2183,2]]], +[2178,[8973.49,16695,1.27157e-006],[[2130,2]]], [2179,[8794.46,16655.4,0],[[2130,2],[2228,2],[2179,2],[2229,2],[2230,2]]], [2180,[7785.77,14960.2,-3.17891e-007],[[2132,2],[2231,2],[2182,2],[2180,2]]], [2181,[7942.11,15066.5,0],[[2132,2]]], [2182,[7818.16,14965.3,9.53674e-007],[[2180,2],[2273,2],[2182,2],[2132,2]]], [2183,[8140.76,15961.9,0],[[2133,2],[2183,2],[2232,2],[2177,2]]], +[2184,[9076.23,17029.3,0],[[2096,2]]], [2185,[8838.66,17077.5,-1.27157e-006],[[2135,2],[2185,2],[2233,2]]], [2186,[10291.6,17579.2,-3.8147e-006],[[2137,2],[2234,2]]], [2187,[9847.21,13958.2,-3.8147e-006],[[2138,2],[2235,2],[2236,2]]], [2188,[9960.95,13934.4,0],[[2138,2],[2139,2],[2188,2]]], [2189,[9992.32,13801,3.8147e-006],[[2141,2]]], +[2190,[9915.85,13656.1,2.54313e-006],[[2141,2],[2237,2],[2190,2]]], [2191,[8562.3,10783,0],[[2143,2]]], [2192,[8537.77,10596.9,-5.08626e-006],[[2143,2],[2238,2],[2192,2],[2239,2]]], [2193,[7979.6,12952.5,3.8147e-006],[[2193,2]]], [2194,[7808.26,13070.6,-2.54313e-006],[[2145,2],[2240,2],[2194,2],[2241,2]]], [2195,[8072.89,4990.07,0],[[2146,2],[2242,2]]], +[2196,[8146.15,5489.81,0],[[2148,2],[2243,2]]], [2197,[8604.77,4283.92,0],[[2151,2]]], [2198,[8542.14,4075.39,0],[[2151,2],[2199,2],[2198,2],[2244,2]]], [2199,[8548.93,4114.33,1.52588e-005],[[2198,2],[2283,2],[2199,2],[2151,2]]], [2200,[10155.6,5220.26,0],[[2152,2],[2245,2]]], [2201,[8184.75,10156.4,-3.8147e-006],[[2154,2]]], +[2202,[8205.65,10247.7,-5.08626e-006],[[2154,2],[2246,2],[2202,2]]], [2203,[6754.13,10405.8,0],[[2155,2],[2247,2],[2203,2],[2248,2]]], [2204,[6547.56,10388.8,4.76837e-007],[[2155,2],[2157,2]]], [2205,[6432.19,10567.6,0],[[2157,2],[2206,2],[2205,2],[2249,2],[2250,2]]], [2206,[6425.6,10539.7,0],[[2205,2],[2290,2],[2206,2],[2157,2]]], [2207,[6187.22,10126.9,0],[[2115,2]]], +[2208,[6152.14,10343.6,9.53674e-008],[[2160,2],[2252,2],[2208,2],[2253,2],[2254,2],[2255,2]]], [2209,[6037.11,10200.5,0],[[2160,2],[2211,2],[2209,2]]], [2210,[6253.71,10244.2,4.76837e-007],[[2160,2]]], [2211,[6061.29,10215,0],[[2209,2],[2296,2],[2211,2],[2160,2]]], [2212,[6151.39,8967.91,0],[[2161,2],[2256,2]]], [2213,[6019.77,8882.54,6.35783e-007],[[2161,2],[2257,2],[2213,2],[2258,2]]], +[2214,[5765.26,8789,1.90735e-006],[[2162,2],[2259,2]]], [2215,[7409.02,7381.25,-3.8147e-006],[[2163,2],[2260,2]]], [2216,[7422.18,7059.89,3.8147e-006],[[2164,2],[2261,2]]], [2217,[15175.5,5482.09,0],[[2165,2],[2262,2],[2263,2],[2217,2]]], [2218,[15076.6,5564.81,-1.01725e-005],[[2165,2]]], [2219,[8327.68,14862.6,-1.90735e-006],[[2166,2],[2264,2]]], +[2220,[8800.85,14339.5,1.27157e-006],[[2167,2]]], [2221,[8635.78,14294.2,0],[[2167,2],[2265,2],[2266,2],[2221,2]]], [2222,[9314.25,14102.8,0],[[2170,2],[2171,2],[2222,2]]], [2223,[9368.46,14065,0],[[2170,2],[2223,2],[2267,2]]], [2224,[8545.32,16473.2,0],[[2173,2],[2268,2],[2269,2],[2229,2]]], [2225,[8404.93,16342.7,-4.76837e-007],[[2173,2],[2175,2]]], +[2226,[7962.2,15910.7,0],[[2177,2],[2270,2]]], [2227,[9087.54,16747.8,0],[[2131,2]]], [2228,[8816.05,16661.9,0],[[2179,2]]], [2229,[8662.15,16578.8,0],[[2179,2],[2224,2],[2230,2],[2229,2],[2269,2]]], [2230,[8676.31,16596.6,-1.90735e-006],[[2229,2],[2312,2],[2230,2],[2179,2]]], [2231,[7601.49,14923.7,0],[[2180,2],[2271,2],[2272,2]]], +[2232,[8164.91,15982,6.20177],[[2183,2]]], [2233,[8739.53,17083.9,-3.8147e-006],[[2185,2],[2274,2]]], [2234,[10212.1,17626.4,0],[[2186,2],[2275,2]]], [2235,[9792.94,13929.7,0],[[2187,2],[2276,2],[2236,2],[2235,2]]], [2236,[9811.45,13945.8,0],[[2235,2],[2320,2],[2187,2]]], [2237,[9925.87,13680,0],[[2190,2]]], +[2238,[8559.5,10681.8,-2.54313e-006],[[2192,2]]], [2239,[8434.96,10436.8,5.08626e-006],[[2192,2],[2277,2],[2239,2],[2278,2],[2246,2]]], [2240,[7833.58,13065.2,-3.8147e-006],[[2194,2]]], [2241,[7689.01,13100.7,0],[[2194,2],[2279,2],[2241,2],[2280,2]]], [2242,[7999.17,4981.81,1.52588e-005],[[2195,2],[2281,2]]], [2243,[8095.17,5510.39,0],[[2196,2],[2282,2]]], +[2244,[8625.75,3903.58,0],[[2198,2],[2284,2]]], [2245,[10201.5,5215.52,-2.54313e-006],[[2200,2],[2285,2],[2286,2]]], [2246,[8277.66,10337.2,2.54313e-006],[[2202,2],[2239,2],[2287,2],[2246,2],[2278,2]]], [2247,[6734.23,10407.8,0],[[2203,2]]], [2248,[6852.88,10464.3,1.27157e-006],[[2203,2],[2288,2],[2248,2],[2289,2]]], [2249,[6466.15,10766,-3.17891e-007],[[2205,2],[2250,2],[2249,2],[2291,2]]], +[2250,[6478.21,10733.2,0],[[2249,2],[2334,2],[2250,2],[2205,2]]], [2251,[6393.22,10259.1,0],[[2159,2]]], [2252,[6150.52,10298,0],[[2208,2]]], [2253,[6109.42,10425,-1.58946e-007],[[2208,2],[2292,2],[2253,2],[2293,2]]], [2254,[6142.99,10467.5,0],[[2208,2],[2294,2]]], [2255,[6273.74,10349.4,0],[[2208,2],[2295,2]]], +[2256,[6235.77,8929.75,-1.90735e-006],[[2212,2],[2297,2]]], [2257,[6022,8923.57,0],[[2213,2],[2298,2],[2257,2]]], [2258,[5981.8,8771.99,0],[[2213,2],[2299,2],[2258,2],[2300,2]]], [2259,[5658.54,8698.01,1.90735e-006],[[2214,2],[2301,2]]], [2260,[7338.97,7441.51,0],[[2215,2],[2302,2]]], [2261,[7404.12,6977.1,0],[[2216,2],[2303,2]]], +[2262,[15271.1,5520.45,0],[[2217,2],[2304,2]]], [2263,[15145.8,5494.49,5.08626e-006],[[2217,2]]], [2264,[8275.87,14795.6,-1.90735e-006],[[2219,2],[2305,2]]], [2265,[8531.81,14293.9,-1.27157e-006],[[2221,2],[2306,2],[2265,2],[2307,2]]], [2266,[8655.72,14291.2,0],[[2221,2]]], [2267,[9398.16,14011.3,0],[[2223,2],[2267,2],[2308,2]]], +[2268,[8491.06,16567.8,0],[[2224,2],[2309,2]]], [2269,[8609.4,16521.4,0],[[2224,2],[2229,2]]], [2270,[7892.04,15918.3,0],[[2226,2],[2310,2],[2311,2],[2270,2]]], [2271,[7459.61,14886.4,-7.62939e-007],[[2231,2],[2272,2],[2271,2],[2313,2],[2314,2],[2315,2],[2316,2]]], [2272,[7508.39,14906.1,-1.90735e-006],[[2271,2],[2362,2],[2272,2],[2231,2]]], [2273,[7850.52,14988.1,0],[[2182,2]]], +[2274,[8650.36,17058.9,0],[[2233,2],[2317,2]]], [2275,[10122.7,17702.4,0],[[2234,2],[2318,2]]], [2276,[9727.66,13888.9,-1.27157e-006],[[2235,2],[2276,2],[2319,2]]], [2277,[8454.8,10441.2,7.62939e-006],[[2239,2]]], [2278,[8342.51,10404.5,-3.8147e-006],[[2239,2],[2246,2]]], [2279,[7723.5,13092.3,0],[[2241,2]]], +[2280,[7587.99,13155.5,0],[[2241,2],[2321,2],[2280,2],[2322,2],[2323,2]]], [2281,[7916.93,5053.24,0],[[2242,2],[2324,2],[2325,2],[2281,2]]], [2282,[8007.97,5528.23,0],[[2243,2],[2326,2]]], [2283,[8557.02,4146.09,0],[[2199,2]]], [2284,[8682.24,3727.99,-1.52588e-005],[[2244,2],[2327,2]]], [2285,[10325.2,5170.79,0],[[2245,2],[2328,2],[2329,2]]], +[2286,[10241.5,5280.16,2.54313e-006],[[2245,2],[2330,2],[2286,2],[2331,2]]], [2287,[8268.42,10320.9,0],[[2246,2]]], [2288,[6847.04,10440,1.90735e-006],[[2248,2]]], [2289,[6899.39,10551.1,0],[[2248,2],[2332,2],[2289,2],[2333,2]]], [2290,[6429.91,10503.7,1.58946e-007],[[2206,2]]], [2291,[6441.22,10846.8,-3.17891e-007],[[2249,2],[2335,2],[2336,2],[2337,2]]], +[2292,[6112.62,10407.8,-2.38419e-007],[[2253,2]]], [2293,[6084.05,10520.4,0],[[2253,2],[2338,2],[2293,2],[2339,2]]], [2294,[6149.22,10521,0],[[2254,2],[2340,2],[2341,2],[2339,2],[2342,2]]], [2295,[6353.35,10395.4,0],[[2255,2],[2343,2],[2295,2],[2344,2]]], [2296,[6085.14,10221.1,0],[[2211,2]]], [2297,[6297.33,8872.43,0],[[2256,2],[2345,2]]], +[2298,[6023.55,8928.47,0],[[2257,2]]], [2299,[5994.55,8787.44,0],[[2258,2]]], [2300,[5956.83,8631.98,0],[[2258,2],[2346,2],[2300,2],[2347,2]]], [2301,[5576.22,8559.55,0],[[2259,2],[2348,2],[2349,2]]], [2302,[7280.16,7512.78,0],[[2260,2],[2350,2]]], [2303,[7363.49,6884.83,0],[[2261,2],[2351,2]]], +[2304,[15352.6,5574.73,0],[[2262,2],[2352,2]]], [2305,[8230.33,14715.2,0],[[2264,2],[2353,2]]], [2306,[8564.14,14297.8,0],[[2265,2]]], [2307,[8403.83,14296.7,0],[[2265,2],[2354,2],[2307,2],[2355,2]]], [2308,[9450.25,13945.9,0],[[2267,2],[2356,2],[2308,2],[2357,2]]], [2309,[8448.67,16646.1,-1.90735e-006],[[2268,2],[2358,2]]], +[2310,[7768.19,15937.5,0],[[2270,2],[2359,2],[2310,2],[2360,2],[2361,2]]], [2311,[7910.8,15912.2,0],[[2270,2]]], [2312,[8703.58,16614.7,0],[[2230,2]]], [2313,[7322.39,14843.1,6.35783e-007],[[2271,2],[2363,2],[2316,2],[2313,2]]], [2314,[7398.13,14962.9,0],[[2271,2],[2364,2]]], [2315,[7447.29,14815.1,-6.35783e-007],[[2271,2],[2365,2],[2366,2]]], +[2316,[7339.49,14845.9,0],[[2313,2],[2406,2],[2316,2],[2271,2]]], [2317,[8583.81,17014.3,0],[[2274,2],[2367,2]]], [2318,[10063.9,17773.7,0],[[2275,2],[2368,2]]], [2319,[9639.97,13880.3,0],[[2276,2],[2357,2]]], [2320,[9826.26,13952.5,0],[[2236,2]]], [2321,[7610.13,13124.5,0],[[2280,2]]], +[2322,[7431.44,13212.8,0],[[2280,2],[2369,2],[2322,2],[2370,2],[2371,2]]], [2323,[7693.29,13234.6,1.27157e-006],[[2280,2],[2372,2],[2373,2]]], [2324,[7728.23,5063.16,0],[[2281,2],[2374,2]]], [2325,[7939.73,5053.01,0],[[2281,2]]], [2326,[7966.94,5559.71,0],[[2282,2],[2375,2]]], [2327,[8658.86,3623.16,0],[[2284,2],[2376,2],[2327,2],[2377,2]]], +[2328,[10462.8,5144.56,-2.54313e-006],[[2285,2],[2378,2],[2379,2],[2328,2]]], [2329,[10394.8,5169.84,7.62939e-006],[[2379,2],[2285,2]]], [2330,[10222.2,5261.26,3.8147e-006],[[2286,2]]], [2331,[10345.5,5379.32,0],[[2286,2],[2380,2],[2331,2],[2381,2]]], [2332,[6873.81,10550.2,0],[[2289,2]]], [2333,[7015.67,10534.4,0],[[2289,2],[2382,2],[2333,2],[2383,2]]], +[2334,[6465.97,10685.1,3.17891e-007],[[2250,2]]], [2335,[6305.53,10807.3,-1.90735e-007],[[2291,2],[2337,2],[2335,2],[2384,2],[2342,2],[2341,2],[2385,2]]], [2336,[6427.15,10992.6,-1.27157e-006],[[2291,2],[2386,2],[2336,2],[2387,2]]], [2337,[6347.96,10818.5,0],[[2335,2],[2430,2],[2291,2],[2337,2]]], [2338,[6093.69,10496.3,-1.58946e-007],[[2293,2]]], [2339,[6068.5,10584.9,0.0142919],[[2293,2],[2294,2],[2339,2],[2388,2],[2341,2]]], +[2340,[6343.75,10522.8,0],[[2294,2],[2344,2],[2342,2]]], [2341,[6141.85,10591.8,0],[[2339,2],[2389,2],[2341,2]]], [2342,[6247.87,10614.4,0],[[2335,2],[2432,2],[2294,2],[2340,2],[2389,2]]], [2343,[6347.38,10369.9,0],[[2295,2]]], [2344,[6362.1,10508,0],[[2295,2],[2340,2],[2390,2],[2344,2],[2391,2],[2384,2]]], [2345,[6331.73,8807.93,0],[[2297,2],[2392,2]]], +[2346,[5941.22,8682.66,1.27157e-006],[[2300,2]]], [2347,[6051.77,8531.92,-1.27157e-006],[[2300,2],[2393,2],[2347,2],[2394,2]]], [2348,[5510.87,8457.21,0],[[2301,2],[2349,2],[2348,2],[2395,2]]], [2349,[5525.92,8474.71,-1.90735e-006],[[2348,2],[2442,2],[2349,2],[2301,2]]], [2350,[7234.62,7593.18,0],[[2302,2],[2396,2]]], [2351,[7313.76,6838.18,0],[[2303,2],[2397,2]]], +[2352,[15410.3,5636.47,0],[[2304,2],[2398,2]]], [2353,[8222.63,14639.4,0],[[2305,2],[2399,2]]], [2354,[8439.34,14293.3,0],[[2307,2]]], [2355,[8311.55,14345.7,0],[[2307,2],[2400,2]]], [2356,[9428.72,13958.5,0],[[2308,2]]], [2357,[9555.23,13900.8,-2.54313e-006],[[2308,2],[2319,2],[2401,2],[2357,2]]], +[2358,[8435.46,16729.7,-1.90735e-006],[[2309,2],[2402,2]]], [2359,[7821.64,15941.2,0],[[2310,2]]], [2360,[7546.58,15875.3,0],[[2310,2],[2361,2],[2360,2],[2403,2]]], [2361,[7596.59,15866.3,0],[[2360,2],[2451,2],[2361,2],[2310,2]]], [2362,[7538.19,14912.3,-1.27157e-006],[[2272,2]]], [2363,[7242.37,14825.3,-6.35783e-007],[[2313,2],[2404,2],[2405,2]]], +[2364,[7327.63,15025.3,-3.8147e-006],[[2314,2],[2407,2]]], [2365,[7492.05,14733.6,6.35783e-007],[[2315,2],[2408,2],[2409,2]]], [2366,[7401.49,14798.9,6.35783e-007],[[2315,2],[2366,2],[2410,2],[2405,2]]], [2367,[8509.89,16995.6,0],[[2317,2],[2411,2],[2412,2]]], [2368,[10018.3,17854.1,0],[[2318,2],[2413,2]]], [2369,[7482.3,13166.9,0],[[2322,2]]], +[2370,[7303.18,13180.2,-1.27157e-006],[[2322,2],[2414,2],[2370,2],[2415,2]]], [2371,[7399.52,13372.6,1.27157e-006],[[2322,2],[2416,2],[2371,2],[2417,2]]], [2372,[7656.26,13226.1,0],[[2323,2]]], [2373,[7828.46,13252.6,0],[[2323,2],[2418,2],[2373,2],[2419,2],[2420,2]]], [2374,[7641.45,5115.31,0],[[2324,2],[2421,2]]], [2375,[7921.66,5631.33,0],[[2326,2],[2422,2]]], +[2376,[8656.09,3647.67,0],[[2327,2]]], [2377,[8692.52,3524.18,0],[[2327,2],[2423,2],[2377,2],[2424,2]]], [2378,[10572.2,5056.16,0],[[2328,2],[2425,2]]], [2379,[10441.9,5164.07,0],[[2328,2],[2329,2],[2379,2]]], [2380,[10321,5348.07,0],[[2331,2]]], [2381,[10407.6,5486.51,-5.08626e-006],[[2331,2],[2426,2],[2381,2],[2427,2]]], +[2382,[6982.84,10540.1,0],[[2333,2]]], [2383,[7127.08,10541.2,2.54313e-006],[[2333,2],[2428,2],[2383,2],[2429,2]]], [2384,[6322.59,10722.6,0],[[2335,2],[2344,2],[2391,2],[2431,2],[2384,2]]], [2385,[6246.93,10890.9,-1.58946e-007],[[2335,2],[2433,2],[2385,2],[2434,2]]], [2386,[6436.09,10949.9,-6.35783e-007],[[2336,2]]], [2387,[6397,11111.2,0],[[2336,2],[2435,2],[2387,2],[2436,2]]], +[2388,[5975.81,10691.8,0],[[2339,2],[2437,2],[2388,2],[2438,2]]], [2389,[6237.15,10608.8,0],[[2341,2],[2389,2],[2342,2]]], [2390,[6363.67,10475.5,0],[[2344,2]]], [2391,[6343,10625.9,0],[[2344,2],[2384,2]]], [2392,[6368.73,8723.5,-1.90735e-006],[[2345,2],[2439,2]]], [2393,[6022.34,8546.16,0],[[2347,2]]], +[2394,[6163.82,8418.39,1.27157e-006],[[2347,2],[2440,2],[2394,2],[2441,2]]], [2395,[5437.25,8360.85,6.35783e-007],[[2348,2],[2443,2],[2395,2],[2444,2],[2445,2]]], [2396,[7203.73,7680.27,0],[[2350,2],[2446,2]]], [2397,[7233.36,6792.64,0],[[2351,2],[2447,2]]], [2398,[15443.8,5714.1,0],[[2352,2],[2448,2]]], [2399,[8211.25,14580.8,0],[[2353,2],[2449,2]]], +[2400,[8268.91,14439.7,-1.90735e-006],[[2355,2],[2449,2]]], [2401,[9530.68,13912,-2.54313e-006],[[2357,2]]], [2402,[8457.75,16805.3,0],[[2358,2],[2450,2]]], [2403,[7383.71,15916.6,0],[[2360,2],[2452,2],[2453,2]]], [2404,[7063.52,14797,1.90735e-006],[[2363,2],[2454,2],[2455,2]]], [2405,[7256.33,14770.9,0],[[2363,2],[2366,2],[2410,2],[2456,2]]], +[2406,[7363,14853.4,6.35783e-007],[[2316,2]]], [2407,[7267.42,15082,0],[[2364,2],[2457,2]]], [2408,[7578.95,14666,0],[[2365,2],[2458,2]]], [2409,[7478.27,14753.7,6.35783e-007],[[2365,2]]], [2410,[7291.84,14777.2,0],[[2366,2],[2405,2]]], [2411,[8510.25,16917.5,0],[[2367,2],[2450,2]]], +[2412,[8455.08,17077.7,0],[[2367,2],[2459,2]]], [2413,[9976.25,17902,6.35783e-007],[[2368,2],[2460,2],[2461,2]]], [2414,[7322.11,13192.8,0],[[2370,2]]], [2415,[7226.21,13110.2,0],[[2370,2],[2462,2],[2415,2],[2463,2]]], [2416,[7408.96,13336.3,1.90735e-006],[[2371,2]]], [2417,[7333,13508,0],[[2371,2],[2464,2],[2417,2],[2465,2]]], +[2418,[7793.84,13248.7,0],[[2373,2]]], [2419,[7999.18,13272.5,1.27157e-006],[[2373,2],[2420,2],[2419,2],[2466,2]]], [2420,[7966.33,13261.2,0],[[2419,2],[2510,2],[2420,2],[2373,2]]], [2421,[7554.57,5169.25,0],[[2374,2],[2467,2]]], [2422,[7870.45,5662.08,0],[[2375,2],[2468,2]]], [2423,[8675.99,3547.72,0],[[2377,2]]], +[2424,[8761.04,3413.44,-5.08626e-006],[[2377,2],[2469,2],[2424,2],[2470,2]]], [2425,[10580.6,5043.41,0],[[2378,2]]], [2426,[10395,5461.5,-5.08626e-006],[[2381,2]]], [2427,[10449.1,5557.58,0],[[2381,2],[2471,2],[2427,2],[2472,2]]], [2428,[7112.12,10532,3.8147e-006],[[2383,2]]], [2429,[7211.14,10627.9,2.54313e-006],[[2383,2],[2473,2],[2429,2],[2474,2]]], +[2430,[6373.06,10823.9,-6.35783e-007],[[2337,2]]], [2431,[6319.17,10752.7,0],[[2384,2]]], [2432,[6254.04,10531.5,0],[[2342,2]]], [2433,[6252.75,10875,-2.38419e-007],[[2385,2]]], [2434,[6228.52,10984.1,0],[[2434,2],[2475,2]]], [2435,[6408.59,11086.9,0],[[2387,2]]], +[2436,[6332.62,11217.9,0],[[2387,2],[2476,2],[2436,2],[2477,2],[2478,2]]], [2437,[6013.35,10655.9,0],[[2388,2]]], [2438,[5901.42,10785.7,0],[[2388,2],[2479,2],[2438,2],[2480,2]]], [2439,[6420.01,8646.88,0],[[2392,2],[2481,2]]], [2440,[6151.37,8462.95,0],[[2394,2]]], [2441,[6148.91,8254.15,0],[[2394,2],[2482,2],[2441,2],[2483,2],[2484,2]]], +[2442,[5541.7,8500.15,-6.35783e-007],[[2349,2]]], [2443,[5455.88,8389.16,6.35783e-007],[[2395,2]]], [2444,[5334.64,8231.88,0],[[2395,2],[2445,2],[2444,2],[2485,2],[2486,2]]], [2445,[5356.48,8256.12,0],[[2444,2],[2525,2],[2445,2],[2395,2]]], [2446,[7201.3,7774.33,0],[[2396,2],[2487,2]]], [2447,[7146.93,6759.97,-3.8147e-006],[[2397,2],[2488,2]]], +[2448,[15467.4,5743.64,-5.08626e-006],[[2398,2],[2448,2],[2489,2]]], [2449,[8203.7,14560.3,0],[[2399,2],[2400,2],[2490,2]]], [2450,[8501.33,16893,0],[[2402,2],[2411,2]]], [2451,[7634.18,15890.7,0],[[2361,2]]], [2452,[7351.74,15859.4,0],[[2403,2],[2491,2],[2452,2],[2492,2],[2493,2]]], [2453,[7353.32,15967.2,-6.35783e-007],[[2403,2],[2494,2],[2495,2]]], +[2454,[6949.68,14789,-1.27157e-006],[[2404,2],[2455,2],[2454,2],[2496,2]]], [2455,[6996.31,14787.4,0],[[2454,2],[2539,2],[2455,2],[2404,2]]], [2456,[7285.2,14614.7,0],[[2405,2],[2497,2]]], [2457,[7261.14,15095.3,0],[[2407,2],[2457,2],[2498,2]]], [2458,[7636.26,14584.5,3.8147e-006],[[2408,2],[2499,2]]], [2459,[8450.66,17090.2,0],[[2412,2],[2500,2],[2501,2]]], +[2460,[9983.11,17995.4,6.35783e-007],[[2413,2],[2502,2],[2460,2],[2503,2]]], [2461,[9893.47,17958.4,0],[[2413,2],[2504,2],[2461,2],[2505,2]]], [2462,[7240.22,13128.9,0],[[2415,2]]], [2463,[7156.97,13035.5,0],[[2415,2],[2506,2],[2463,2],[2507,2]]], [2464,[7357.52,13474.1,0],[[2417,2]]], [2465,[7267.31,13583.1,0],[[2417,2],[2508,2],[2509,2]]], +[2466,[8143.31,13317.9,0],[[2419,2],[2511,2],[2466,2],[2512,2]]], [2467,[7425.26,5201.46,0],[[2421,2],[2513,2]]], [2468,[7767.36,5716.99,0],[[2422,2],[2514,2]]], [2469,[8749.38,3446.68,0],[[2424,2]]], [2470,[8856.91,3334.34,-5.08626e-006],[[2424,2],[2470,2],[2515,2],[2516,2]]], [2471,[10437.6,5538.12,0],[[2427,2]]], +[2472,[10426.5,5712.21,1.01725e-005],[[2427,2],[2517,2],[2472,2],[2518,2]]], [2473,[7175.85,10577,0],[[2429,2]]], [2474,[7320.34,10766.3,0],[[2429,2],[2474,2],[2519,2]]], [2475,[6225.68,11109.7,-4.76837e-007],[[2434,2],[2520,2]]], [2476,[6346.36,11194.5,-6.35783e-007],[[2436,2]]], [2477,[6271.03,11361.9,0],[[2436,2],[2478,2],[2477,2],[2521,2]]], +[2478,[6279.65,11347.5,0],[[2477,2],[2565,2],[2478,2],[2436,2]]], [2479,[5907.13,10769.8,0],[[2438,2]]], [2480,[5884.02,10831,0],[[2438,2],[2480,2],[2522,2]]], [2481,[6492.39,8573.28,0],[[2439,2],[2523,2]]], [2482,[6167.38,8303.51,0],[[2441,2]]], [2483,[6260.25,8082.29,0],[[2441,2],[2484,2],[2483,2],[2524,2]]], +[2484,[6242.84,8112.64,0],[[2483,2],[2572,2],[2484,2],[2441,2]]], [2485,[5362.33,8174.92,-6.35783e-007],[[2444,2],[2526,2],[2485,2],[2527,2]]], [2486,[5185.71,8145.56,0],[[2444,2],[2528,2]]], [2487,[7196.55,7856.93,1.90735e-006],[[2446,2],[2529,2]]], [2488,[7102.25,6723.74,9.53674e-007],[[2447,2],[2488,2],[2530,2],[2531,2]]], [2489,[15603.1,5625.16,0],[[2448,2],[2532,2]]], +[2490,[8117.42,14509,0],[[2449,2],[2533,2]]], [2491,[7353.74,15879.3,0],[[2452,2]]], [2492,[7358.63,15734.9,0],[[2452,2],[2493,2],[2492,2],[2534,2]]], [2493,[7364.23,15761.3,0],[[2492,2],[2588,2],[2452,2],[2493,2]]], [2494,[7391.8,16039.3,0],[[2453,2],[2535,2],[2494,2],[2536,2]]], [2495,[7246.82,15991.8,-6.35783e-007],[[2453,2],[2537,2],[2495,2],[2538,2]]], +[2496,[6708.55,14729.8,0],[[2454,2],[2540,2]]], [2497,[7281.57,14531.3,0],[[2456,2],[2541,2]]], [2498,[7239.46,15196.7,0],[[2457,2],[2542,2],[2543,2],[2498,2],[2544,2]]], [2499,[7621.21,14458,0],[[2458,2],[2545,2]]], [2500,[8357.14,17089.5,0],[[2459,2],[2546,2]]], [2501,[8488.85,17195.1,3.8147e-006],[[2459,2],[2547,2]]], +[2502,[9982.79,17967.1,0],[[2460,2]]], [2503,[10030.5,18119.5,0],[[2460,2],[2503,2],[2548,2]]], [2504,[9903.44,17937.6,0],[[2461,2]]], [2505,[9890.12,18089.4,0],[[2461,2],[2549,2],[2505,2]]], [2506,[7178.24,13052,0],[[2463,2]]], [2507,[7070.74,12984.5,0],[[2463,2],[2550,2],[2507,2],[2551,2]]], +[2508,[7280.32,13661.2,0],[[2465,2],[2552,2],[2553,2]]], [2509,[7166.78,13539.4,0],[[2465,2],[2554,2],[2555,2]]], [2510,[7933.7,13259.3,0],[[2420,2]]], [2511,[8104.71,13301,0],[[2466,2]]], [2512,[8256.05,13376.8,-1.27157e-006],[[2466,2],[2556,2],[2512,2],[2557,2]]], [2513,[7353,5239.45,0],[[2467,2],[2558,2]]], +[2514,[7678.39,5775.55,0],[[2468,2],[2559,2]]], [2515,[9065.69,3466.59,0],[[2470,2],[2516,2],[2515,2],[2560,2]]], [2516,[9026.58,3444.46,-3.05176e-005],[[2515,2],[2613,2],[2516,2],[2470,2]]], [2517,[10465.7,5665.42,0],[[2472,2]]], [2518,[10277.4,5773.55,5.08626e-006],[[2472,2],[2561,2],[2518,2],[2562,2]]], [2519,[7376.58,10825.6,2.54313e-006],[[2474,2],[2519,2],[2563,2]]], +[2520,[6205.77,11205,4.76837e-007],[[2475,2],[2564,2]]], [2521,[6221.54,11439.7,-1.90735e-006],[[2477,2],[2566,2],[2521,2],[2567,2]]], [2522,[5841.24,10914.1,0],[[2480,2],[2568,2],[2522,2],[2569,2],[2570,2]]], [2523,[6594.31,8510.32,0],[[2481,2],[2571,2]]], [2524,[6333.52,7973.23,0],[[2483,2],[2573,2],[2524,2],[2574,2]]], [2525,[5374.51,8276.11,-6.35783e-007],[[2445,2]]], +[2526,[5353.41,8189.95,-9.53674e-007],[[2485,2]]], [2527,[5404.93,8093.18,-6.35783e-007],[[2485,2],[2575,2],[2527,2],[2576,2]]], [2528,[5119.77,8127.64,-6.35783e-007],[[2486,2],[2577,2],[2528,2],[2578,2]]], [2529,[7179.89,7883.2,6.35783e-007],[[2487,2],[2579,2],[2580,2],[2529,2]]], [2530,[6993.08,6808.88,-1.27157e-006],[[2488,2],[2581,2],[2530,2],[2582,2]]], [2531,[7146.3,6615.91,5.08626e-006],[[2488,2],[2583,2],[2531,2],[2584,2]]], +[2532,[15677.6,5605.16,0],[[2489,2],[2585,2],[2586,2],[2532,2]]], [2533,[8070.96,14438.4,0],[[2490,2],[2587,2]]], [2534,[7363.34,15632.4,0],[[2492,2],[2589,2]]], [2535,[7392.06,16008.4,0],[[2494,2]]], [2536,[7384.27,16196.8,1.90735e-006],[[2494,2]]], [2537,[7271.24,15991.7,-9.53674e-007],[[2495,2]]], +[2538,[7112.95,16025.3,1.58946e-007],[[2495,2],[2590,2],[2591,2],[2538,2]]], [2539,[7022.19,14790,-6.35783e-007],[[2455,2]]], [2540,[6652.82,14692.8,-6.35783e-007],[[2496,2],[2592,2],[2593,2],[2540,2]]], [2541,[7269.66,14436.8,0],[[2497,2],[2594,2]]], [2542,[7269.41,15293.7,0],[[2498,2],[2595,2],[2596,2],[2542,2]]], [2543,[7242.8,15157,0],[[2498,2]]], +[2544,[7146.55,15196.3,0],[[2498,2],[2597,2],[2598,2],[2544,2]]], [2545,[7629.46,14380.4,0],[[2499,2],[2599,2]]], [2546,[8323.54,17148.4,3.8147e-006],[[2500,2],[2600,2]]], [2547,[8426.38,17241,0],[[2501,2],[2601,2]]], [2548,[10053.7,18213.6,0],[[2503,2],[2602,2]]], [2549,[9882.51,18043.5,0],[[2505,2]]], +[2550,[7088.54,12989.8,0],[[2507,2]]], [2551,[6975.36,12949.5,-1.27157e-006],[[2507,2],[2603,2],[2551,2],[2604,2],[2605,2]]], [2552,[7249.71,13808.9,0],[[2508,2],[2606,2],[2607,2]]], [2553,[7242.75,13747.4,-1.90735e-006],[[2606,2],[2508,2],[2553,2]]], [2554,[7077.96,13502,-7.62939e-006],[[2509,2],[2608,2],[2555,2],[2554,2]]], [2555,[7093.58,13501.4,0],[[2554,2],[2655,2],[2555,2],[2509,2]]], +[2556,[8225.69,13359.2,-1.90735e-006],[[2512,2]]], [2557,[8406.85,13409.2,1.27157e-006],[[2512,2],[2609,2],[2557,2],[2610,2]]], [2558,[7236.81,5313.24,0],[[2513,2],[2611,2]]], [2559,[7610.22,5841.87,0],[[2514,2],[2612,2]]], [2560,[9181.22,3539.68,0],[[2515,2],[2614,2],[2560,2],[2615,2]]], [2561,[10319.7,5770.81,5.08626e-006],[[2518,2]]], +[2562,[10190.9,5750.46,0],[[2518,2]]], [2563,[7415.86,10924,0],[[2519,2],[2616,2],[2563,2],[2617,2]]], [2564,[6169.12,11294.9,0],[[2520,2],[2618,2]]], [2565,[6291.59,11317.3,6.35783e-007],[[2478,2]]], [2566,[6236.59,11420.3,-6.35783e-007],[[2521,2]]], [2567,[6157.41,11554.9,9.53674e-007],[[2521,2],[2619,2],[2567,2],[2620,2],[2621,2]]], +[2568,[5858.97,10889.2,0],[[2522,2]]], [2569,[5736.05,11004.4,0],[[2522,2],[2570,2],[2569,2],[2622,2],[2623,2]]], [2570,[5753.02,10994.9,0],[[2569,2],[2669,2],[2570,2],[2522,2]]], [2571,[6637.16,8472.38,0],[[2523,2],[2624,2]]], [2572,[6198.15,8134.16,0],[[2484,2]]], [2573,[6310.22,8012.63,0],[[2524,2]]], +[2574,[6385.79,7813.08,0],[[2524,2],[2625,2],[2574,2],[2626,2]]], [2575,[5395.69,8115.9,-6.35783e-007],[[2527,2]]], [2576,[5454.17,7995.81,2.54313e-006],[[2527,2],[2627,2],[2576,2],[2628,2]]], [2577,[5138.23,8129.83,-9.53674e-007],[[2528,2]]], [2578,[5039.34,8127.51,0],[[2528,2],[2629,2],[2578,2],[2630,2]]], [2579,[7093.37,7934.9,0],[[2529,2],[2631,2]]], +[2580,[7186.63,7875.49,9.53674e-007],[[2529,2]]], [2581,[7012.22,6768.97,-1.27157e-006],[[2530,2]]], [2582,[7012.85,6914.27,0],[[2530,2],[2632,2],[2633,2],[2582,2],[2634,2]]], [2583,[7127.03,6626.7,2.54313e-006],[[2531,2]]], [2584,[7257.41,6613.36,0],[[2531,2],[2635,2],[2636,2]]], [2585,[15724.1,5743.93,0],[[2532,2],[2637,2]]], +[2586,[15667,5589.31,7.62939e-006],[[2532,2]]], [2587,[8022.45,14390.3,0],[[2533,2],[2638,2]]], [2588,[7357.78,15788.7,0],[[2493,2]]], [2589,[7412.82,15551.9,0],[[2534,2],[2639,2]]], [2590,[6999.51,16106.8,1.58946e-007],[[2538,2],[2640,2],[2590,2],[2641,2]]], [2591,[7148.47,16003.4,-1.58946e-007],[[2538,2]]], +[2592,[6529.25,14589.8,-1.90735e-006],[[2540,2],[2642,2],[2643,2]]], [2593,[6667.66,14705,-9.53674e-007],[[2540,2]]], [2594,[7303.23,14384.7,9.53674e-007],[[2541,2],[2644,2],[2594,2],[2645,2],[2646,2]]], [2595,[7345.58,15382.6,0],[[2542,2],[2639,2]]], [2596,[7256.87,15267.4,-1.27157e-006],[[2542,2]]], [2597,[7015.07,15125.6,0],[[2544,2],[2647,2],[2597,2],[2648,2]]], +[2598,[7183.52,15214.7,1.27157e-006],[[2544,2]]], [2599,[7634.84,14368.3,1.27157e-006],[[2545,2],[2599,2],[2649,2]]], [2600,[8344.68,17207.7,3.8147e-006],[[2546,2],[2601,2]]], [2601,[8387.45,17251.6,2.54313e-006],[[2547,2],[2600,2],[2650,2]]], [2602,[10091.3,18260,0],[[2548,2],[2651,2]]], [2603,[7007.12,12966.9,-1.90735e-006],[[2551,2]]], +[2604,[6836.03,12838.6,0],[[2551,2],[2605,2],[2604,2],[2652,2]]], [2605,[6858.25,12852.4,0],[[2604,2],[2698,2],[2605,2],[2551,2]]], [2606,[7223.74,13822.5,0],[[2552,2],[2606,2],[2553,2]]], [2607,[7295.96,13937.7,0],[[2552,2],[2653,2]]], [2608,[6980.48,13475.8,0],[[2554,2],[2654,2]]], [2609,[8370.2,13415.6,1.27157e-006],[[2557,2]]], +[2610,[8514.88,13376.8,-1.27157e-006],[[2557,2],[2656,2],[2610,2],[2657,2]]], [2611,[7120.56,5328.52,0],[[2558,2],[2658,2]]], [2612,[7569.2,5915.94,0],[[2559,2],[2659,2]]], [2613,[9011.19,3397.1,0],[[2516,2]]], [2614,[9153.96,3521.17,0],[[2560,2]]], [2615,[9274.97,3615.32,0],[[2560,2],[2660,2],[2615,2],[2661,2]]], +[2616,[7406.83,10887,-7.62939e-006],[[2563,2],[2662,2],[2616,2]]], [2617,[7470.81,11065.1,0],[[2563,2],[2663,2],[2617,2],[2664,2]]], [2618,[6106.73,11382.1,0],[[2564,2],[2665,2]]], [2619,[6175.51,11505.3,1.27157e-006],[[2567,2]]], [2620,[6050.79,11583.8,0],[[2567,2],[2666,2]]], [2621,[6129.26,11703.3,3.17891e-007],[[2567,2],[2667,2],[2621,2],[2668,2]]], +[2622,[5607.43,11072.9,0],[[2569,2],[2623,2],[2622,2],[2670,2]]], [2623,[5629.19,11065.2,0],[[2622,2],[2718,2],[2623,2],[2569,2]]], [2624,[6675.44,8397.03,1.90735e-006],[[2571,2],[2671,2]]], [2625,[6382.66,7872,0],[[2574,2]]], [2626,[6415.43,7556.19,0],[[2574,2],[2672,2],[2626,2],[2673,2]]], [2627,[5433.52,8024.83,1.27157e-006],[[2576,2]]], +[2628,[5508.98,7846.28,-1.27157e-006],[[2576,2],[2674,2],[2628,2],[2675,2]]], [2629,[5056.58,8124.68,0],[[2578,2]]], [2630,[4956.3,8143.22,-6.35783e-007],[[2578,2],[2676,2],[2677,2],[2678,2]]], [2631,[6997.21,7978.57,-1.90735e-006],[[2579,2],[2679,2]]], [2632,[7000.07,7062.79,0],[[2582,2],[2634,2],[2632,2],[2680,2]]], [2633,[7003.91,6895.47,0],[[2582,2]]], +[2634,[7060.49,7055.47,0],[[2632,2],[2729,2],[2634,2],[2582,2]]], [2635,[7332.5,6553.82,0],[[2584,2],[2681,2]]], [2636,[7372.17,6669.33,0],[[2584,2],[2682,2]]], [2637,[15777.4,5793.63,5.08626e-006],[[2585,2],[2683,2],[2684,2],[2637,2]]], [2638,[7964.44,14328.8,-3.8147e-006],[[2587,2],[2685,2]]], [2639,[7393.79,15438,-3.8147e-006],[[2589,2],[2595,2]]], +[2640,[7049.31,16083.5,1.58946e-007],[[2590,2]]], [2641,[6814.83,16152,0],[[2590,2],[2686,2],[2687,2],[2641,2]]], [2642,[6448.3,14514.7,0],[[2592,2],[2688,2],[2643,2],[2642,2]]], [2643,[6462.97,14532.5,0],[[2642,2],[2741,2],[2643,2],[2592,2]]], [2644,[7281.17,14410.4,1.90735e-006],[[2594,2]]], [2645,[7350.53,14306.5,-1.27157e-006],[[2594,2],[2689,2],[2690,2],[2645,2]]], +[2646,[7366.12,14393.9,0],[[2594,2]]], [2647,[7056.85,15137.4,0],[[2597,2]]], [2648,[6885.71,15109.5,0],[[2597,2],[2691,2],[2692,2]]], [2649,[7691.27,14292,0],[[2599,2],[2693,2]]], [2650,[8370.25,17350.7,0],[[2601,2],[2694,2],[2650,2],[2695,2],[2696,2]]], [2651,[10167.7,18303.5,0],[[2602,2],[2697,2]]], +[2652,[6752.23,12789.5,2.54313e-006],[[2604,2],[2699,2],[2652,2],[2700,2]]], [2653,[7356.97,13968.3,-2.54313e-006],[[2607,2],[2701,2],[2653,2],[2702,2]]], [2654,[6894.94,13439.7,-7.62939e-006],[[2608,2],[2703,2],[2704,2]]], [2655,[7123.53,13515.8,-5.08626e-006],[[2555,2]]], [2656,[8484.25,13386.6,-1.27157e-006],[[2610,2]]], [2657,[8589.56,13347.4,-7.62939e-006],[[2610,2]]], +[2658,[7011.05,5383.19,0],[[2611,2],[2705,2]]], [2659,[7548.61,6006.47,0],[[2612,2],[2706,2]]], [2660,[9244.23,3591.96,0],[[2615,2]]], [2661,[9407.78,3662.11,0],[[2615,2],[2707,2],[2661,2],[2708,2]]], [2662,[7411.75,10895,0],[[2616,2],[2709,2]]], [2663,[7464.84,11042.3,0],[[2617,2],[2710,2],[2663,2]]], +[2664,[7515,11250.8,-2.54313e-006],[[2617,2],[2711,2],[2664,2],[2712,2],[2713,2]]], [2665,[6040.06,11456.2,0],[[2618,2],[2714,2]]], [2666,[5920.79,11643.8,0],[[2620,2],[2715,2]]], [2667,[6143.9,11667.3,0],[[2621,2]]], [2668,[6071.91,11777.6,3.17891e-007],[[2621,2],[2716,2],[2668,2],[2717,2]]], [2669,[5774.24,10978.3,0],[[2570,2]]], +[2670,[5501.92,11107.1,-3.17891e-007],[[2622,2],[2719,2],[2670,2],[2720,2]]], [2671,[6701.33,8293.77,0],[[2624,2],[2721,2]]], [2672,[6384.15,7619.34,-2.54313e-006],[[2626,2]]], [2673,[6530.12,7440.55,0],[[2626,2],[2722,2],[2673,2],[2723,2],[2724,2]]], [2674,[5509.69,7899.84,-1.27157e-006],[[2628,2]]], [2675,[5415.29,7693.09,0],[[2628,2]]], +[2676,[4931.12,8040.34,6.35783e-007],[[2630,2],[2678,2],[2676,2],[2725,2]]], [2677,[4880.9,8165.41,6.35783e-007],[[2630,2],[2726,2],[2677,2],[2727,2]]], [2678,[4933.46,8074.48,0],[[2676,2],[2763,2],[2630,2],[2678,2]]], [2679,[6891.16,8041.2,0],[[2631,2],[2728,2]]], [2680,[6900.33,7085.26,-2.54313e-006],[[2632,2],[2730,2],[2680,2],[2731,2],[2723,2]]], [2681,[7385.76,6487.99,0],[[2635,2],[2732,2]]], +[2682,[7430.8,6657.95,0],[[2636,2],[2733,2]]], [2683,[15914.8,5769.49,0],[[2637,2],[2734,2],[2735,2],[2683,2]]], [2684,[15752,5787.31,5.08626e-006],[[2637,2]]], [2685,[7884.04,14283.3,0],[[2638,2],[2736,2]]], [2686,[6673.63,16177,0],[[2641,2],[2737,2],[2738,2],[2686,2]]], [2687,[6854.08,16141,7.94729e-008],[[2641,2]]], +[2688,[6380.07,14427.2,0],[[2642,2],[2739,2],[2740,2],[2688,2]]], [2689,[7393.83,14213.5,0],[[2645,2],[2742,2]]], [2690,[7343.62,14323.8,-1.90735e-006],[[2645,2]]], [2691,[6787.96,15098.1,-1.27157e-006],[[2648,2],[2743,2],[2744,2],[2691,2]]], [2692,[6911.7,15112.8,0],[[2648,2]]], [2693,[7705.86,14248.4,-2.54313e-006],[[2649,2],[2736,2],[2745,2]]], +[2694,[8376.14,17314.6,0],[[2650,2]]], [2695,[8275.22,17356.4,0],[[2650,2]]], [2696,[8412.77,17470.3,0],[[2650,2]]], [2697,[10224.3,18324,0],[[2651,2]]], [2698,[6876.25,12872.4,0],[[2605,2]]], [2699,[6768.7,12801.1,3.8147e-006],[[2652,2]]], +[2700,[6676.29,12749.9,0],[[2652,2],[2746,2],[2700,2]]], [2701,[7326.53,13961.5,-3.8147e-006],[[2653,2]]], [2702,[7475.53,13990.4,-2.54313e-006],[[2653,2],[2747,2],[2702,2],[2748,2]]], [2703,[6780.7,13358.4,-2.54313e-006],[[2654,2],[2749,2],[2750,2],[2703,2]]], [2704,[6812.75,13392.6,0],[[2750,2],[2654,2]]], [2705,[6869.28,5406.56,0],[[2658,2],[2751,2]]], +[2706,[7510.31,6081.33,0],[[2659,2],[2752,2]]], [2707,[9352.55,3658.58,-3.05176e-005],[[2661,2],[2753,2],[2707,2]]], [2708,[9564.59,3593.36,0],[[2661,2],[2754,2],[2708,2],[2755,2]]], [2709,[7394.5,10867.8,-3.8147e-006],[[2662,2]]], [2710,[7450.11,11019.5,0],[[2663,2]]], [2711,[7509.35,11171.6,-5.08626e-006],[[2664,2]]], +[2712,[7557.55,11497.2,0],[[2664,2],[2713,2],[2756,2]]], [2713,[7553.6,11515.1,0],[[2712,2],[2713,2],[2791,2],[2664,2]]], [2714,[5950.16,11527.9,0],[[2665,2],[2757,2]]], [2715,[5845.37,11689.8,0],[[2666,2],[2758,2]]], [2716,[6086.6,11766.6,4.76837e-007],[[2668,2]]], [2717,[5903.91,11900.6,0],[[2668,2],[2759,2]]], +[2718,[5653.98,11052,3.17891e-007],[[2623,2]]], [2719,[5526.59,11101.7,-3.17891e-007],[[2670,2]]], [2720,[5360.85,11125.3,-4.76837e-007],[[2670,2],[2760,2],[2720,2],[2761,2],[2762,2]]], [2721,[6745.99,8191.59,0],[[2671,2],[2728,2]]], [2722,[6508.15,7462.19,0],[[2673,2]]], [2723,[6704.04,7303.45,2.54313e-006],[[2673,2],[2680,2],[2724,2],[2723,2],[2731,2]]], +[2724,[6647.93,7339.85,0],[[2723,2],[2801,2],[2724,2],[2673,2]]], [2725,[4947.33,7850.1,0],[[2676,2],[2764,2],[2765,2]]], [2726,[4899.36,8163.21,0],[[2677,2]]], [2727,[4798.46,8165.18,0],[[2677,2],[2766,2],[2727,2],[2767,2]]], [2728,[6820.87,8101.17,0],[[2679,2],[2721,2]]], [2729,[7052.68,7013.07,0],[[2634,2]]], +[2730,[6920.66,7078.88,0],[[2680,2]]], [2731,[6829.25,7150.77,-3.8147e-006],[[2680,2],[2723,2]]], [2732,[7396.95,6437.5,7.62939e-006],[[2681,2],[2768,2]]], [2733,[7491.02,6611.59,0],[[2682,2],[2769,2],[2770,2]]], [2734,[16026.4,5704.08,3.8147e-006],[[2683,2],[2771,2]]], [2735,[15875.3,5777.51,-2.54313e-006],[[2683,2]]], +[2736,[7803.18,14258.6,0],[[2685,2],[2693,2]]], [2737,[6562.71,16099.7,1.58946e-007],[[2686,2],[2772,2],[2737,2],[2773,2]]], [2738,[6720.22,16184.4,0],[[2686,2]]], [2739,[6337.43,14345.5,0],[[2688,2],[2774,2],[2775,2],[2739,2]]], [2740,[6393.63,14448.5,0],[[2688,2]]], [2741,[6484.32,14551.7,0],[[2643,2]]], +[2742,[7464.47,14167.1,0],[[2689,2],[2776,2]]], [2743,[6655.24,15082.3,0],[[2691,2],[2777,2],[2743,2],[2778,2]]], [2744,[6817.96,15099,-1.27157e-006],[[2691,2]]], [2745,[7644.31,14211.3,-1.27157e-006],[[2693,2],[2779,2],[2748,2],[2780,2],[2776,2]]], [2746,[6555,12736.2,1.27157e-006],[[2700,2],[2781,2],[2746,2],[2782,2]]], [2747,[7454.09,13982.5,0],[[2702,2]]], +[2748,[7558.76,14079.4,0],[[2702,2],[2745,2],[2783,2],[2776,2],[2784,2]]], [2749,[6721.04,13239.5,0],[[2703,2],[2785,2],[2786,2]]], [2750,[6791.35,13378,0],[[2703,2],[2704,2],[2750,2]]], [2751,[6744.2,5368.59,0],[[2705,2],[2787,2]]], [2752,[7448.86,6171.32,-7.62939e-006],[[2706,2],[2788,2]]], [2753,[9350.29,3659.65,0],[[2707,2]]], +[2754,[9538.54,3621.43,0],[[2708,2]]], [2755,[9593.51,3468.05,0],[[2708,2],[2789,2],[2755,2],[2790,2]]], [2756,[7578.24,11595.3,0],[[2712,2],[2792,2],[2756,2],[2793,2]]], [2757,[5865.61,11572.8,0],[[2714,2],[2794,2]]], [2758,[5809.3,11697.7,1.27157e-006],[[2715,2],[2758,2],[2795,2]]], [2759,[5898.85,11988.4,-9.53674e-007],[[2717,2],[2796,2],[2797,2]]], +[2760,[5433.34,11118.3,-6.35783e-007],[[2720,2]]], [2761,[5250.54,11210.3,0],[[2720,2],[2798,2]]], [2762,[5203.32,11141.9,3.17891e-007],[[2720,2],[2799,2],[2800,2]]], [2763,[4940.29,8095.97,6.35783e-007],[[2678,2]]], [2764,[4913.72,7687.01,0],[[2725,2],[2765,2],[2764,2],[2802,2],[2803,2]]], [2765,[4924.94,7717.27,0],[[2764,2],[2832,2],[2765,2],[2725,2]]], +[2766,[4817.37,8168.3,0],[[2727,2]]], [2767,[4639.97,8137.49,-1.90735e-006],[[2727,2],[2804,2],[2805,2]]], [2768,[7387.46,6364.01,0],[[2732,2],[2806,2],[2807,2]]], [2769,[7531.38,6533.9,0],[[2733,2],[2808,2],[2770,2],[2769,2],[2809,2]]], [2770,[7531.57,6553.56,0],[[2769,2],[2838,2],[2770,2],[2733,2]]], [2771,[16118.7,5680.94,0],[[2734,2],[2810,2]]], +[2772,[6584.6,16131.2,0],[[2737,2]]], [2773,[6518.25,16027.2,1.58946e-007],[[2737,2],[2811,2],[2812,2]]], [2774,[6309.07,14254.6,6.35783e-007],[[2739,2],[2813,2],[2814,2],[2774,2]]], [2775,[6346.7,14368.2,0],[[2739,2]]], [2776,[7494.5,14176.4,0],[[2742,2],[2745,2],[2748,2],[2783,2],[2815,2],[2780,2]]], [2777,[6700.48,15096.5,0],[[2743,2]]], +[2778,[6444.03,14942.7,0],[[2743,2],[2816,2]]], [2779,[7600.75,14160.6,0],[[2745,2],[2817,2],[2779,2]]], [2780,[7604.26,14243.6,0],[[2745,2],[2776,2],[2780,2]]], [2781,[6574.79,12735.1,9.53674e-007],[[2746,2]]], [2782,[6474.99,12735.9,-6.35783e-007],[[2746,2],[2782,2],[2818,2]]], [2783,[7521.96,14112.1,0],[[2748,2],[2776,2]]], +[2784,[7586.73,14122.5,0],[[2748,2]]], [2785,[6664.43,13179.3,0],[[2749,2],[2819,2],[2786,2],[2785,2]]], [2786,[6685.84,13191.2,0],[[2785,2],[2856,2],[2786,2],[2749,2]]], [2787,[6616.43,5321.83,0],[[2751,2],[2820,2]]], [2788,[7396.32,6247.79,0],[[2752,2],[2806,2]]], [2789,[9610.04,3507,0],[[2755,2]]], +[2790,[9558.31,3303.6,-1.01725e-005],[[2755,2],[2821,2],[2790,2],[2822,2]]], [2791,[7540.34,11433.4,0],[[2713,2]]], [2792,[7575.52,11578.8,0],[[2756,2]]], [2793,[7598.29,11676.4,0],[[2756,2]]], [2794,[5743.6,11613.6,0],[[2757,2],[2823,2],[2795,2]]], [2795,[5737.27,11707.4,0],[[2758,2],[2794,2],[2824,2],[2795,2],[2823,2]]], +[2796,[5923.79,12074.5,3.17891e-007],[[2759,2],[2825,2],[2796,2],[2826,2]]], [2797,[5833.75,12005.7,-3.17891e-007],[[2759,2],[2827,2],[2797,2],[2828,2]]], [2798,[5171.1,11257.5,0],[[2761,2],[2829,2]]], [2799,[5228.88,11136.1,0],[[2762,2]]], [2800,[5099.96,11152.8,0],[[2762,2],[2830,2],[2800,2],[2831,2]]], [2801,[6616.47,7361.92,1.01725e-005],[[2724,2]]], +[2802,[4755.87,7509.63,-3.8147e-006],[[2764,2],[2833,2],[2802,2],[2834,2],[2835,2]]], [2803,[4857.84,7532.54,0],[[2833,2],[2764,2]]], [2804,[4529.82,8123.68,6.35783e-007],[[2767,2],[2805,2],[2804,2],[2836,2],[2837,2]]], [2805,[4553.46,8123.42,0],[[2804,2],[2870,2],[2805,2],[2767,2]]], [2806,[7381.46,6278.61,7.62939e-006],[[2768,2],[2788,2]]], [2807,[7420.41,6371.04,2.54313e-006],[[2768,2],[2808,2],[2807,2]]], +[2808,[7499.57,6443.03,-2.54313e-006],[[2769,2],[2807,2],[2809,2],[2808,2]]], [2809,[7513.24,6458.73,7.62939e-006],[[2808,2],[2873,2],[2809,2],[2769,2]]], [2810,[16188.1,5658.19,0],[[2771,2],[2839,2]]], [2811,[6439.14,15955.8,3.57628e-007],[[2773,2],[2840,2],[2811,2],[2841,2],[2842,2],[2843,2]]], [2812,[6471.58,16072.3,-1.58946e-007],[[2773,2],[2844,2],[2812,2],[2845,2]]], [2813,[6282.8,14171.8,-6.35783e-007],[[2774,2],[2846,2],[2847,2],[2848,2]]], +[2814,[6314.81,14281.6,6.35783e-007],[[2774,2]]], [2815,[7591.92,14226,0],[[2776,2]]], [2816,[6363.92,14933.4,0],[[2778,2],[2849,2],[2850,2],[2851,2]]], [2817,[7607.32,14166.6,0],[[2779,2]]], [2818,[6367.56,12749.1,0],[[2782,2],[2852,2],[2853,2],[2854,2]]], [2819,[6566.87,13102.8,0],[[2785,2],[2855,2]]], +[2820,[6500.79,5256.92,0],[[2787,2],[2857,2]]], [2821,[9555.13,3341.5,-1.01725e-005],[[2790,2]]], [2822,[9621.66,3218.36,1.01725e-005],[[2790,2],[2822,2],[2858,2]]], [2823,[5683.09,11674.3,-3.8147e-007],[[2794,2],[2795,2],[2859,2],[2823,2],[2860,2],[2861,2],[2862,2]]], [2824,[5759.74,11709.7,0],[[2795,2]]], [2825,[5911.72,12042.1,6.35783e-007],[[2796,2]]], +[2826,[6004.52,12229.7,0],[[2796,2],[2863,2]]], [2827,[5863.19,11996.2,-3.17891e-007],[[2797,2]]], [2828,[5698.73,12040.4,0],[[2797,2],[2864,2],[2828,2],[2865,2]]], [2829,[5097.11,11313.6,-1.90735e-006],[[2798,2],[2866,2]]], [2830,[5134.74,11153.1,0],[[2800,2]]], [2831,[4998.21,11136.7,0],[[2800,2],[2867,2],[2831,2],[2868,2]]], +[2832,[4931.52,7749.01,0],[[2765,2]]], [2833,[4831.14,7494.02,0],[[2802,2],[2803,2],[2833,2]]], [2834,[4534.04,7449.77,0],[[2802,2],[2835,2],[2834,2],[2869,2]]], [2835,[4560.49,7487.7,0],[[2834,2],[2906,2],[2835,2],[2802,2]]], [2836,[4366.94,8118.65,0],[[2804,2],[2837,2],[2836,2],[2871,2],[2872,2]]], [2837,[4386.07,8122.24,0],[[2836,2],[2909,2],[2837,2],[2804,2]]], +[2838,[7521,6572.59,0],[[2770,2]]], [2839,[16247.4,5610.09,0],[[2810,2],[2874,2]]], [2840,[6474.43,15975.7,2.38419e-007],[[2811,2]]], [2841,[6334.59,15924.2,-6.35783e-007],[[2811,2],[2875,2],[2841,2],[2876,2],[2877,2]]], [2842,[6443.16,15794.9,0],[[2811,2],[2878,2],[2842,2],[2879,2],[2880,2]]], [2843,[6443.24,15853.5,0],[[2878,2],[2811,2]]], +[2844,[6486.58,16054.7,-1.58946e-007],[[2812,2]]], [2845,[6428.64,16163.7,1.90735e-006],[[2812,2],[2881,2]]], [2846,[6272.54,14015.8,0],[[2813,2],[2882,2],[2846,2],[2883,2]]], [2847,[6155.41,14193.5,-1.27157e-006],[[2813,2],[2884,2],[2847,2],[2885,2]]], [2848,[6273.89,14057.1,-3.8147e-006],[[2882,2],[2813,2]]], [2849,[6360.71,14995.8,0],[[2816,2],[2886,2],[2849,2],[2887,2]]], +[2850,[6221.01,14920.7,1.27157e-006],[[2816,2],[2888,2],[2851,2],[2850,2]]], [2851,[6240.07,14924.3,0],[[2850,2],[2925,2],[2851,2],[2816,2]]], [2852,[6279.56,12690.8,-1.27157e-006],[[2818,2],[2889,2],[2852,2],[2890,2]]], [2853,[6426.24,12840.9,0],[[2818,2],[2891,2]]], [2854,[6273.48,12760.7,-6.35783e-007],[[2818,2],[2892,2],[2854,2],[2893,2],[2890,2]]], [2855,[6538.26,13040.8,0],[[2819,2],[2894,2]]], +[2856,[6699.3,13206.3,0],[[2786,2]]], [2857,[6417.25,5190.91,0],[[2820,2],[2895,2]]], [2858,[9785.37,3149.99,1.01725e-005],[[2822,2],[2896,2],[2858,2],[2897,2]]], [2859,[5711.21,11627.2,-6.35783e-007],[[2823,2]]], [2860,[5576.7,11687.9,0],[[2823,2],[2862,2]]], [2861,[5683.11,11798.9,0],[[2823,2],[2898,2],[2861,2],[2899,2],[2865,2]]], +[2862,[5586.29,11689.1,0],[[2860,2],[2823,2]]], [2863,[6073.98,12419.4,0],[[2826,2],[2900,2]]], [2864,[5745.14,12033.9,0],[[2828,2]]], [2865,[5615.35,12063.6,0],[[2828,2],[2861,2],[2901,2],[2902,2],[2899,2],[2903,2]]], [2866,[5031.09,11362.9,0],[[2829,2],[2866,2]]], [2867,[5019.5,11144.3,0],[[2831,2]]], +[2868,[4873.21,11114,-3.17891e-007],[[2831,2],[2904,2],[2905,2]]], [2869,[4443.86,7338.06,0],[[2834,2],[2907,2],[2869,2],[2908,2]]], [2870,[4581.91,8127.46,0],[[2805,2]]], [2871,[4216.05,8085.33,0],[[2836,2],[2872,2],[2871,2],[2910,2],[2911,2]]], [2872,[4246.02,8096.51,0],[[2871,2],[2945,2],[2872,2],[2836,2]]], [2873,[7522.06,6478.56,2.54313e-006],[[2809,2]]], +[2874,[16285.9,5522.8,0],[[2839,2],[2912,2],[2913,2]]], [2875,[6366.04,15926.7,0],[[2841,2]]], [2876,[6115.28,15916.9,-1.27157e-006],[[2841,2],[2877,2],[2876,2],[2914,2],[2915,2]]], [2877,[6156.62,15935.8,0],[[2876,2],[2950,2],[2877,2],[2841,2]]], [2878,[6449.02,15825.5,0],[[2842,2],[2843,2],[2878,2]]], [2879,[6389.55,15630.9,0],[[2842,2],[2916,2],[2880,2],[2879,2]]], +[2880,[6393.4,15647.3,0],[[2879,2],[2954,2],[2880,2],[2842,2]]], [2881,[6417.25,16222.3,0],[[2845,2],[2917,2]]], [2882,[6271.22,14035.3,0],[[2846,2],[2848,2],[2882,2]]], [2883,[6300.95,13829.7,0],[[2846,2],[2918,2]]], [2884,[6212.22,14187.8,0],[[2847,2]]], [2885,[6029.55,14162.9,1.27157e-006],[[2847,2],[2919,2],[2885,2],[2920,2]]], +[2886,[6362.88,14973.2,0],[[2849,2]]], [2887,[6344.11,15108.1,0],[[2849,2],[2921,2],[2887,2],[2922,2]]], [2888,[6124.8,14887.8,0],[[2850,2],[2923,2],[2924,2],[2888,2]]], [2889,[6314.47,12699.6,-9.53674e-007],[[2852,2]]], [2890,[6194.2,12669.9,-6.35783e-007],[[2852,2],[2854,2],[2893,2],[2926,2]]], [2891,[6446.01,12897.5,0],[[2853,2],[2891,2],[2927,2],[2894,2]]], +[2892,[6295.23,12772,0],[[2854,2],[2928,2],[2892,2]]], [2893,[6213.38,12749.6,-4.76837e-007],[[2854,2],[2890,2],[2893,2],[2929,2]]], [2894,[6491.84,12980.6,0],[[2855,2],[2891,2],[2927,2]]], [2895,[6298.83,5132.86,-7.62939e-006],[[2857,2],[2930,2]]], [2896,[9761.44,3164.64,1.52588e-005],[[2858,2]]], [2897,[9899.16,3085.04,-1.01725e-005],[[2858,2],[2931,2],[2897,2],[2932,2]]], +[2898,[5672.02,11747.5,0],[[2861,2],[2933,2],[2898,2]]], [2899,[5646.18,11944.6,1.19209e-007],[[2861,2],[2865,2]]], [2900,[6094.34,12459.2,0],[[2863,2],[2934,2],[2900,2],[2926,2]]], [2901,[5473.98,12116.9,-3.17891e-007],[[2865,2],[2903,2],[2901,2],[2935,2]]], [2902,[5633.27,12240.3,0],[[2865,2],[2936,2],[2937,2],[2902,2]]], [2903,[5498.55,12112.9,0],[[2901,2],[2972,2],[2903,2],[2865,2]]], +[2904,[4919.16,11040.4,3.17891e-007],[[2868,2],[2938,2],[2939,2],[2904,2]]], [2905,[4676.1,11172.8,0],[[2868,2],[2940,2],[2905,2],[2941,2],[2942,2]]], [2906,[4600.33,7498.09,2.54313e-006],[[2835,2]]], [2907,[4469.6,7363.77,0],[[2869,2]]], [2908,[4328.94,7263.41,0],[[2869,2],[2943,2],[2908,2],[2944,2]]], [2909,[4417.58,8123.17,0],[[2837,2]]], +[2910,[4018.55,8019.54,0],[[2871,2],[2946,2],[2910,2],[2947,2]]], [2911,[4061.61,8029.45,-1.90735e-006],[[2946,2],[2871,2]]], [2912,[16408.8,5511.97,3.17891e-007],[[2874,2],[2948,2],[2949,2],[2912,2]]], [2913,[16369.3,5519.97,9.53674e-007],[[2949,2],[2874,2]]], [2914,[5947.89,15792.7,0],[[2876,2],[2915,2],[2914,2],[2951,2]]], [2915,[5967.08,15821.3,0],[[2914,2],[2984,2],[2915,2],[2876,2]]], +[2916,[6369.09,15528.8,0],[[2879,2],[2952,2],[2916,2],[2953,2]]], [2917,[6428.64,16280.9,0],[[2881,2],[2955,2],[2956,2]]], [2918,[6319.65,13702.7,0],[[2883,2],[2957,2],[2958,2]]], [2919,[6045.79,14177.1,0],[[2885,2]]], [2920,[5925.24,14100.4,-1.27157e-006],[[2885,2],[2959,2],[2920,2],[2960,2]]], [2921,[6351.26,15079.9,0],[[2887,2]]], +[2922,[6318.04,15225.3,-6.35783e-007],[[2887,2],[2961,2],[2922,2],[2953,2]]], [2923,[6024.68,14828.8,-1.90735e-006],[[2888,2],[2962,2],[2923,2],[2963,2],[2964,2]]], [2924,[6141.89,14900.2,0],[[2888,2]]], [2925,[6272.47,14925.3,-1.27157e-006],[[2851,2]]], [2926,[6166.83,12594.2,0],[[2890,2],[2900,2],[2965,2],[2926,2]]], [2927,[6472.89,12963.5,0],[[2891,2],[2894,2],[2927,2]]], +[2928,[6297.76,12770.7,9.53674e-007],[[2928,2],[2892,2]]], [2929,[6201.51,12840.1,0],[[2893,2],[2966,2],[2929,2],[2967,2],[2968,2]]], [2930,[6182.01,5110.99,0],[[2895,2],[2969,2]]], [2931,[9865.26,3107.69,-1.01725e-005],[[2897,2]]], [2932,[10074.3,2915.82,-3.05176e-005],[[2897,2],[2970,2],[2971,2]]], [2933,[5673.54,11745.1,-4.76837e-007],[[2933,2],[2898,2]]], +[2934,[6084.01,12441,0],[[2900,2]]], [2935,[5347.6,12128.1,-9.53674e-007],[[2901,2],[2973,2],[2935,2],[2974,2]]], [2936,[5643.11,12349.6,0],[[2902,2],[2975,2],[2936,2],[2976,2]]], [2937,[5630.97,12209.6,6.35783e-007],[[2902,2]]], [2938,[4873.82,10933.5,0],[[2904,2],[2977,2]]], [2939,[4920.67,11052.6,4.76837e-007],[[2904,2]]], +[2940,[4717.59,11149.8,0],[[2905,2]]], [2941,[4497.98,11306.7,0],[[2905,2],[2942,2],[2941,2],[2978,2]]], [2942,[4564.31,11299.1,9.53674e-007],[[2941,2],[3009,2],[2942,2],[2905,2]]], [2943,[4363.09,7275.57,0],[[2908,2]]], [2944,[4219.72,7229.46,0],[[2908,2],[2979,2],[2944,2],[2980,2]]], [2945,[4273.48,8102.35,6.35783e-007],[[2872,2]]], +[2946,[4041.33,8023.27,0],[[2910,2],[2911,2],[2946,2]]], [2947,[3907.2,7993.3,6.35783e-007],[[2910,2],[2981,2],[2947,2],[2982,2]]], [2948,[16529.7,5501.5,0],[[2912,2],[2983,2]]], [2949,[16388.8,5519.97,0],[[2912,2],[2913,2]]], [2950,[6200.31,15931.4,6.35783e-007],[[2877,2]]], [2951,[5898.13,15632.3,1.27157e-006],[[2914,2],[2985,2],[2951,2],[2986,2]]], +[2952,[6373.64,15563.3,0],[[2916,2]]], [2953,[6337.92,15394.3,0],[[2916,2],[2922,2],[2987,2],[2953,2]]], [2954,[6405.73,15677.3,0],[[2880,2]]], [2955,[6475.29,16378.4,-1.27157e-006],[[2917,2],[2988,2],[2955,2],[2989,2]]], [2956,[6464.5,16343.4,0],[[2988,2],[2917,2]]], [2957,[6216.81,13706.9,3.8147e-006],[[2918,2],[2990,2]]], +[2958,[6320.13,13617.9,0],[[2918,2],[2991,2],[2958,2],[2992,2]]], [2959,[5964.57,14109.7,-1.90735e-006],[[2920,2]]], [2960,[5796.57,14092.8,0],[[2920,2],[2993,2],[2994,2]]], [2961,[6321.73,15191.6,-6.35783e-007],[[2922,2]]], [2962,[6056.16,14841.2,0],[[2923,2]]], [2963,[5974.81,14914.4,0],[[2923,2],[2995,2]]], +[2964,[5981.11,14737,0],[[2923,2],[2996,2]]], [2965,[6174.41,12611.8,0],[[2926,2]]], [2966,[6206.46,12812.5,0],[[2929,2]]], [2967,[6161.37,12992,0],[[2929,2],[2968,2],[2967,2],[2997,2],[2998,2]]], [2968,[6164.54,12972.8,0],[[2967,2],[3030,2],[2968,2],[2929,2]]], [2969,[6122.83,5079.05,2.54313e-006],[[2930,2],[2999,2],[3000,2]]], +[2970,[10259.3,2835.17,1.01725e-005],[[2932,2],[2971,2],[2970,2],[3001,2]]], [2971,[10228.4,2899.3,3.05176e-005],[[2970,2],[3034,2],[2971,2],[2932,2]]], [2972,[5523.91,12100,0],[[2903,2]]], [2973,[5391.11,12129.8,-6.35783e-007],[[2935,2]]], [2974,[5193.71,12138.9,-6.35783e-007],[[2935,2],[3002,2],[3003,2],[3004,2]]], [2975,[5643.42,12314.8,6.35783e-007],[[2936,2]]], +[2976,[5621.34,12454.6,6.35783e-007],[[2936,2],[3005,2],[3006,2],[2976,2]]], [2977,[4834.44,10839.1,-3.17891e-007],[[2938,2],[3007,2],[3008,2]]], [2978,[4333.75,11353.9,6.35783e-007],[[2941,2],[3010,2],[2978,2],[3011,2],[3012,2]]], [2979,[4247.13,7242.01,-2.54313e-006],[[2944,2]]], [2980,[4132.07,7185.79,2.54313e-006],[[2944,2],[3013,2],[2980,2],[3014,2]]], [2981,[3932.68,8002.76,-6.35783e-007],[[2947,2]]], +[2982,[3836.6,7951.19,6.35783e-007],[[2947,2],[3015,2],[2982,2],[3016,2]]], [2983,[16627.3,5560.19,3.17891e-007],[[2948,2],[3017,2],[3018,2],[2983,2]]], [2984,[5991.27,15842.9,1.27157e-006],[[2915,2]]], [2985,[5898.86,15685.5,1.27157e-006],[[2951,2]]], [2986,[5858.07,15445.5,0],[[2951,2],[3019,2],[2986,2],[3020,2],[3021,2]]], [2987,[6350.6,15432.7,0],[[2953,2]]], +[2988,[6474.66,16364.7,0],[[2955,2],[2956,2],[2988,2]]], [2989,[6459.67,16486.2,0],[[2955,2],[3022,2]]], [2990,[6125.86,13678.8,0],[[2957,2],[3023,2]]], [2991,[6324.38,13635.9,0],[[2958,2]]], [2992,[6287.01,13525.7,-1.27157e-006],[[2958,2],[3024,2],[2992,2],[3025,2]]], [2993,[5822.96,14191.4,0],[[2960,2],[3026,2]]], +[2994,[5767.28,13994.7,3.8147e-006],[[2960,2],[3027,2]]], [2995,[5931.05,14995.6,0],[[2963,2],[3028,2]]], [2996,[5957.98,14641.8,0],[[2964,2],[3029,2]]], [2997,[6147.21,13144.7,0],[[2967,2],[2998,2],[2997,2],[3031,2]]], [2998,[6140.81,13119,0],[[2997,2],[3064,2],[2998,2],[2967,2]]], [2999,[6018.92,4972.05,7.62939e-006],[[2969,2],[3032,2]]], +[3000,[6074.58,5143.47,0],[[2969,2],[3033,2]]], [3001,[10270.9,2683.87,0],[[2970,2],[3035,2],[3001,2],[3036,2]]], [3002,[5236.8,12130.8,-6.35783e-007],[[2974,2]]], [3003,[5031.23,12190,-6.35783e-007],[[2974,2],[3004,2],[3003,2],[3037,2]]], [3004,[5058.14,12189.7,0],[[3003,2],[3070,2],[2974,2],[3004,2]]], [3005,[5641.83,12623.8,-2.54313e-006],[[2976,2],[3038,2],[3005,2],[3039,2]]], +[3006,[5630.76,12436.6,9.53674e-007],[[2976,2]]], [3007,[4723.69,10845.2,0],[[2977,2],[3040,2]]], [3008,[4818.53,10736.9,0],[[2977,2],[3041,2],[3008,2],[3042,2],[3043,2]]], [3009,[4594.97,11259.8,-6.35783e-007],[[2942,2]]], [3010,[4380.53,11344.2,0],[[2978,2]]], [3011,[4138.62,11342.6,1.41993],[[2978,2],[3012,2],[3011,2],[3044,2]]], +[3012,[4168.78,11336.7,0],[[3011,2],[3077,2],[3012,2],[2978,2]]], [3013,[4154.78,7195.03,0],[[2980,2]]], [3014,[4039.46,7140.61,-2.54313e-006],[[2980,2],[3045,2],[3014,2],[3046,2]]], [3015,[3849.06,7962.61,9.53674e-007],[[2982,2]]], [3016,[3760.42,7876.46,0],[[2982,2],[3047,2],[3016,2],[3048,2]]], [3017,[16736.5,5540.93,3.17891e-007],[[2983,2],[3049,2],[3050,2],[3017,2],[3051,2]]], +[3018,[16575,5568.95,0],[[2983,2],[3052,2],[3018,2]]], [3019,[5891.63,15512.6,0],[[2986,2]]], [3020,[5856.44,15341.8,0],[[2986,2],[3053,2],[3020,2]]], [3021,[5773.38,15352.1,0],[[2986,2],[3054,2],[3021,2],[3055,2]]], [3022,[6480.63,16555.7,3.17891e-007],[[2989,2],[3056,2],[3022,2],[3057,2]]], [3023,[6067.93,13654.9,0],[[2990,2],[3058,2],[3059,2]]], +[3024,[6300,13555.3,-1.90735e-006],[[2992,2]]], [3025,[6237.8,13341,0],[[2992,2],[3031,2]]], [3026,[5867.52,14274.8,3.8147e-006],[[2993,2],[3060,2]]], [3027,[5778.48,13944.2,0],[[2994,2],[3061,2]]], [3028,[5896.78,15081.3,0],[[2995,2],[3062,2]]], [3029,[5914.48,14557.1,-3.8147e-006],[[2996,2],[3063,2]]], +[3030,[6172.88,12947.2,1.27157e-006],[[2968,2]]], [3031,[6175.6,13228.4,0],[[2997,2],[3025,2],[3065,2],[3031,2]]], [3032,[5925.54,4893.85,0],[[2999,2],[3066,2]]], [3033,[5998.74,5190.06,0],[[3000,2],[3067,2]]], [3034,[10179.1,2906.23,0],[[2971,2]]], [3035,[10292.8,2717.24,0],[[3001,2]]], +[3036,[10194,2576.37,1.01725e-005],[[3001,2],[3068,2],[3036,2],[3069,2]]], [3037,[4905.02,12200,0],[[3003,2],[3071,2],[3037,2],[3072,2]]], [3038,[5606.62,12556.4,-1.27157e-006],[[3005,2]]], [3039,[5731.52,12767.3,0],[[3005,2],[3073,2],[3039,2],[3074,2]]], [3040,[4671.46,10816.2,0],[[3007,2],[3075,2]]], [3041,[4828.09,10751.8,0],[[3008,2]]], +[3042,[4721.53,10606.2,-6.35783e-007],[[3008,2],[3076,2],[3043,2],[3042,2]]], [3043,[4732.82,10626.3,0],[[3042,2],[3111,2],[3043,2],[3008,2]]], [3044,[3950.55,11371.5,13.403],[[3011,2],[3078,2],[3079,2]]], [3045,[4064.29,7157.69,-2.54313e-006],[[3014,2]]], [3046,[3962.26,7070.97,2.54313e-006],[[3014,2],[3080,2],[3046,2],[3081,2]]], [3047,[3665.92,7755.24,0],[[3016,2],[3082,2],[3083,2]]], +[3048,[3614.27,7981.36,1.27157e-006],[[3016,2],[3084,2],[3085,2]]], [3049,[16767.1,5410.02,-3.17891e-007],[[3017,2],[3051,2],[3049,2],[3086,2]]], [3050,[16717,5565.84,3.17891e-007],[[3017,2]]], [3051,[16767.2,5424.9,9.53674e-007],[[3049,2],[3122,2],[3051,2],[3017,2]]], [3052,[16600.5,5579.32,-4.76837e-007],[[3018,2],[3052,2],[3087,2]]], [3053,[5873.77,15365.2,0],[[3020,2],[3088,2],[3053,2]]], +[3054,[5783.24,15365,0],[[3021,2]]], [3055,[5722.96,15284.1,-9.53674e-007],[[3021,2],[3089,2],[3090,2],[3091,2]]], [3056,[6466.06,16535.3,0],[[3022,2]]], [3057,[6545.38,16631.8,3.17891e-007],[[3022,2],[3092,2],[3093,2]]], [3058,[5972.45,13681.4,0],[[3023,2],[3094,2]]], [3059,[6072.67,13624.8,0],[[3023,2],[3059,2],[3095,2]]], +[3060,[5903.31,14380.6,0],[[3026,2],[3063,2]]], [3061,[5821.92,13856.5,0],[[3027,2],[3096,2]]], [3062,[5875.67,15179.6,3.8147e-006],[[3028,2],[3090,2]]], [3063,[5884.18,14484.5,0],[[3029,2],[3060,2]]], [3064,[6144.72,13085.4,0],[[2998,2]]], [3065,[6166.82,13212.8,0],[[3031,2]]], +[3066,[5813.35,4832.65,0],[[3032,2],[3097,2]]], [3067,[5941.43,5244.97,0],[[3033,2],[3098,2]]], [3068,[10211.5,2600.94,1.01725e-005],[[3036,2]]], [3069,[10129.5,2488.78,2.03451e-005],[[3036,2],[3099,2],[3069,2],[3100,2]]], [3070,[5080.9,12178.8,6.35783e-007],[[3004,2]]], [3071,[4929.35,12193.9,0],[[3037,2]]], +[3072,[4767.17,12233.1,0],[[3037,2],[3101,2],[3072,2],[3102,2],[3103,2],[3104,2],[3105,2]]], [3073,[5712.31,12737,0],[[3039,2]]], [3074,[5774.84,12897.1,0],[[3039,2],[3106,2],[3074,2],[3107,2]]], [3075,[4618.73,10754.2,-3.8147e-006],[[3040,2],[3108,2]]], [3076,[4662.11,10512.5,-6.35783e-007],[[3042,2],[3109,2],[3110,2],[3076,2]]], [3077,[4205.87,11346.8,0],[[3012,2]]], +[3078,[3830.03,11405.7,0],[[3044,2],[3079,2],[3078,2],[3112,2]]], [3079,[3854.85,11390.7,0],[[3078,2],[3149,2],[3079,2],[3044,2]]], [3080,[3982.25,7093.37,2.54313e-006],[[3046,2]]], [3081,[3812.52,6997.44,0],[[3046,2],[3113,2],[3081,2],[3114,2]]], [3082,[3575.15,7684.14,6.35783e-007],[[3047,2],[3083,2],[3082,2],[3115,2]]], [3083,[3590.26,7692.63,0],[[3082,2],[3154,2],[3083,2],[3047,2]]], +[3084,[3534.87,8095.31,0],[[3048,2],[3116,2],[3117,2],[3118,2]]], [3085,[3538.51,7918.12,4.76837e-007],[[3048,2],[3119,2],[3085,2],[3120,2],[3121,2]]], [3086,[16776.2,5268.14,0],[[3049,2],[3123,2],[3124,2]]], [3087,[16565.1,5528.59,-9.53674e-007],[[3052,2]]], [3088,[5873.21,15369.5,0],[[3053,2],[3125,2],[3088,2]]], [3089,[5633.1,15347.2,0],[[3055,2],[3126,2]]], +[3090,[5847.89,15223.2,0],[[3055,2],[3062,2]]], [3091,[5591.6,15220.8,0],[[3055,2],[3127,2],[3128,2],[3091,2]]], [3092,[6558.89,16742.7,0],[[3057,2],[3129,2],[3130,2]]], [3093,[6578.89,16627.3,4.76837e-007],[[3057,2]]], [3094,[5903.07,13710.5,0],[[3058,2],[3131,2],[3096,2]]], [3095,[6038.2,13532.6,1.27157e-006],[[3059,2],[3132,2],[3133,2],[3095,2]]], +[3096,[5853.22,13784.2,0],[[3061,2],[3094,2]]], [3097,[5753.05,4743.15,0],[[3066,2],[3134,2]]], [3098,[5852.15,5324.82,0],[[3067,2],[3135,2]]], [3099,[10150.6,2510.27,1.01725e-005],[[3069,2]]], [3100,[10020.1,2402.91,0],[[3069,2],[3136,2],[3100,2],[3137,2]]], [3101,[4821.94,12223.2,-1.27157e-006],[[3072,2]]], +[3102,[4586.36,12275.9,0],[[3072,2],[3105,2],[3102,2],[3138,2],[3104,2],[3139,2]]], [3103,[4758.74,12275.2,0],[[3072,2],[3103,2],[3140,2]]], [3104,[4680.88,12178.2,0],[[3072,2],[3102,2],[3141,2],[3104,2],[3142,2]]], [3105,[4645.16,12271.6,0],[[3102,2],[3172,2],[3105,2],[3072,2]]], [3106,[5775.83,12872.9,0],[[3074,2]]], [3107,[5800.52,13021.4,0],[[3074,2],[3143,2],[3107,2],[3144,2]]], +[3108,[4545.21,10718.7,1.27157e-006],[[3075,2],[3145,2],[3146,2],[3108,2]]], [3109,[4595.08,10440.5,0],[[3076,2],[3147,2],[3148,2],[3109,2]]], [3110,[4677.5,10532.5,-6.35783e-007],[[3076,2]]], [3111,[4752.95,10651.7,-6.35783e-007],[[3043,2]]], [3112,[3659.17,11445,1.90735e-006],[[3078,2],[3150,2],[3112,2],[3151,2]]], [3113,[3879.89,7003.29,0],[[3081,2]]], +[3114,[3605.78,6981.18,0],[[3081,2],[3152,2],[3114,2],[3153,2]]], [3115,[3411.19,7588.84,-9.53674e-007],[[3082,2],[3155,2]]], [3116,[3556.03,8064.08,0],[[3084,2]]], [3117,[3507.01,8209.25,-6.35783e-007],[[3084,2],[3156,2],[3117,2],[3157,2]]], [3118,[3473.43,8046.73,6.35783e-007],[[3084,2],[3158,2],[3118,2],[3121,2]]], [3119,[3567.14,7929.67,0],[[3085,2]]], +[3120,[3419.14,7856.62,1.27157e-006],[[3085,2],[3159,2],[3120,2],[3160,2]]], [3121,[3515.77,7947.09,-6.35783e-007],[[3085,2],[3118,2],[3121,2]]], [3122,[16763.5,5454.69,0],[[3051,2]]], [3123,[16773.7,5201.12,0],[[3086,2],[3161,2],[3124,2],[3123,2]]], [3124,[16769.6,5214.22,0],[[3123,2],[3194,2],[3124,2],[3086,2]]], [3125,[5869.22,15368,0],[[3088,2]]], +[3126,[5593.45,15403.4,-1.27157e-006],[[3089,2],[3126,2],[3162,2]]], [3127,[5494.31,15231.9,6.35783e-007],[[3091,2],[3163,2],[3164,2],[3127,2]]], [3128,[5611.74,15218.1,0],[[3091,2]]], [3129,[6555.54,16831,0],[[3092,2],[3130,2],[3129,2],[3165,2]]], [3130,[6548.64,16812.6,4.76837e-007],[[3129,2],[3199,2],[3092,2],[3130,2]]], [3131,[5880.2,13631.1,0],[[3094,2],[3166,2],[3131,2],[3167,2],[3132,2]]], +[3132,[5920.85,13496.6,0],[[3095,2],[3131,2],[3167,2]]], [3133,[6067.13,13567.1,1.27157e-006],[[3095,2]]], [3134,[5682.13,4626.29,0],[[3097,2],[3168,2]]], [3135,[5773.64,5366.26,0],[[3098,2],[3169,2]]], [3136,[10066.6,2438.36,0],[[3100,2]]], [3137,[9872.99,2281.28,0],[[3100,2],[3170,2],[3137,2],[3171,2]]], +[3138,[4601.14,12198.4,0],[[3102,2],[3173,2],[3138,2]]], [3139,[4484.64,12347.6,6.35783e-007],[[3102,2],[3174,2],[3139,2],[3175,2]]], [3140,[4761.38,12360.3,3.17891e-007],[[3103,2],[3176,2],[3140,2],[3177,2]]], [3141,[4708.68,12181.1,0],[[3104,2]]], [3142,[4621.33,12187.6,0],[[3104,2]]], [3143,[5785.88,12990.6,0],[[3107,2]]], +[3144,[5843.47,13130.5,1.27157e-006],[[3107,2],[3178,2],[3144,2],[3179,2]]], [3145,[4470.46,10775.9,0],[[3108,2],[3180,2]]], [3146,[4582.69,10722.6,0],[[3108,2]]], [3147,[4506.05,10348.8,2.54313e-006],[[3109,2],[3181,2],[3182,2],[3147,2]]], [3148,[4617.48,10460.5,0],[[3109,2]]], [3149,[3887.78,11382.8,2.94999],[[3079,2]]], +[3150,[3727.95,11446.3,6.35783e-007],[[3112,2]]], [3151,[3516.96,11445.1,0],[[3112,2],[3183,2],[3184,2]]], [3152,[3666.52,6987.79,0],[[3114,2]]], [3153,[3416.31,7006.63,0],[[3114,2],[3185,2],[3153,2],[3186,2]]], [3154,[3611.48,7709.19,0],[[3083,2]]], [3155,[3298.57,7524.62,0],[[3115,2],[3187,2]]], +[3156,[3505.24,8178.58,-9.53674e-007],[[3117,2]]], [3157,[3505.12,8363.54,-2.54313e-006],[[3117,2],[3188,2],[3157,2],[3189,2]]], [3158,[3473.19,8059.07,9.53674e-007],[[3118,2]]], [3159,[3448.87,7877.53,6.35783e-007],[[3120,2]]], [3160,[3316.67,7781.97,-1.27157e-006],[[3120,2],[3190,2],[3160,2],[3191,2],[3192,2]]], [3161,[16798.2,5085.05,-1.90735e-006],[[3123,2],[3193,2]]], +[3162,[5545.9,15484.3,0],[[3126,2],[3195,2]]], [3163,[5365.51,15142.5,0],[[3127,2],[3196,2],[3163,2],[3197,2],[3198,2]]], [3164,[5518.81,15231,1.27157e-006],[[3127,2]]], [3165,[6630.99,16938.9,0],[[3129,2],[3200,2],[3165,2]]], [3166,[5873.92,13663.1,0],[[3131,2],[3201,2],[3166,2]]], [3167,[5884.95,13503.2,7.62939e-007],[[3131,2],[3132,2],[3167,2],[3202,2],[3179,2],[3203,2]]], +[3168,[5608.41,4581.68,0],[[3134,2],[3204,2]]], [3169,[5681.6,5492.01,0],[[3135,2],[3205,2]]], [3170,[9905.27,2297.84,0],[[3137,2]]], [3171,[9731.87,2183.23,-1.01725e-005],[[3137,2],[3206,2],[3171,2],[3207,2]]], [3172,[4672.38,12263.2,0],[[3105,2]]], [3173,[4560.97,12229.1,2.72478e-007],[[3173,2]]], +[3174,[4492.63,12330.4,0],[[3139,2]]], [3175,[4367.27,12610.7,4.46817],[[3139,2],[3208,2],[3209,2]]], [3176,[4772.96,12329.1,0],[[3140,2]]], [3177,[4724.3,12437,3.17891e-007],[[3140,2],[3177,2],[3210,2]]], [3178,[5835.59,13104.8,0],[[3144,2]]], [3179,[5864.76,13280.4,0],[[3144,2],[3167,2],[3211,2],[3179,2],[3202,2]]], +[3180,[4415.62,10769.9,-2.54313e-006],[[3145,2],[3212,2],[3213,2],[3180,2]]], [3181,[4418.41,10239.7,-1.27157e-006],[[3147,2],[3214,2],[3215,2],[3181,2],[3216,2]]], [3182,[4526.83,10378.7,1.27157e-006],[[3147,2]]], [3183,[3443.6,11527.3,0],[[3151,2],[3217,2],[3183,2],[3218,2]]], [3184,[3470.23,11357.4,0],[[3151,2],[3219,2],[3220,2],[3184,2]]], [3185,[3457.49,7001.93,0],[[3153,2]]], +[3186,[3300.67,6989.24,0],[[3153,2],[3221,2],[3186,2],[3222,2]]], [3187,[3163.15,7474.63,0],[[3155,2],[3223,2]]], [3188,[3513.53,8322.72,-2.54313e-006],[[3157,2]]], [3189,[3463.4,8496.59,0],[[3157,2],[3224,2],[3189,2],[3225,2],[3226,2]]], [3190,[3345.91,7799.01,-1.27157e-006],[[3160,2]]], [3191,[3171.94,7727.31,0],[[3160,2],[3192,2],[3191,2],[3227,2]]], +[3192,[3194.72,7731.04,0],[[3191,2],[3262,2],[3192,2],[3160,2]]], [3193,[16797.4,4980.41,0],[[3161,2],[3228,2]]], [3194,[16771.7,5235.82,-1.27157e-006],[[3124,2]]], [3195,[5522.29,15522.5,0],[[3162,2],[3229,2],[3230,2],[3231,2]]], [3196,[5412,15207,0],[[3163,2]]], [3197,[5168.1,14984.9,0],[[3163,2],[3232,2],[3198,2],[3197,2]]], +[3198,[5199.67,15031,0],[[3197,2],[3273,2],[3198,2],[3163,2]]], [3199,[6551.32,16788.4,0],[[3130,2]]], [3200,[6676.6,16950.5,0],[[3165,2],[3233,2],[3200,2]]], [3201,[5875.75,13668.6,0],[[3166,2],[3234,2],[3201,2]]], [3202,[5878.26,13394.7,0],[[3167,2],[3179,2]]], [3203,[5755.41,13462.1,0],[[3167,2],[3235,2],[3203,2],[3236,2],[3237,2]]], +[3204,[5537.37,4565.71,0],[[3168,2],[3238,2]]], [3205,[5616.89,5554.69,-7.62939e-006],[[3169,2],[3239,2]]], [3206,[9766.45,2224.13,-5.08626e-006],[[3171,2]]], [3207,[9640.66,2093.16,-5.08626e-006],[[3171,2],[3240,2],[3207,2],[3241,2]]], [3208,[4399.61,12685.5,6.35783e-007],[[3175,2],[3242,2],[3208,2],[3243,2]]], [3209,[4254.52,12662.1,0],[[3175,2],[3244,2],[3209,2],[3245,2]]], +[3210,[4717.32,12541.4,3.17891e-007],[[3177,2],[3246,2],[3210,2],[3247,2]]], [3211,[5864.41,13231.5,1.27157e-006],[[3179,2]]], [3212,[4353,10683,0],[[3180,2],[3248,2]]], [3213,[4430.52,10778.8,-3.8147e-006],[[3180,2]]], [3214,[4272.56,10135.7,0],[[3181,2],[3216,2],[3214,2],[3249,2]]], [3215,[4447.32,10263.4,-1.27157e-006],[[3181,2]]], +[3216,[4300.53,10164.6,0],[[3214,2],[3288,2],[3216,2],[3181,2]]], [3217,[3464.81,11493.2,0],[[3183,2]]], [3218,[3247.97,11777.7,1.90735e-006],[[3183,2],[3250,2]]], [3219,[3383.1,11248.2,0],[[3184,2],[3251,2],[3219,2],[3252,2]]], [3220,[3491.34,11387.7,0],[[3184,2]]], [3221,[3331.4,6998.52,0],[[3186,2]]], +[3222,[3223.8,6972.09,-2.38419e-007],[[3186,2],[3253,2],[3254,2],[3255,2]]], [3223,[3107.37,7451.52,0],[[3187,2],[3256,2],[3257,2]]], [3224,[3476.46,8457.3,0],[[3189,2]]], [3225,[3430.24,8711.8,0],[[3189,2],[3258,2],[3259,2]]], [3226,[3376.42,8503.56,0],[[3189,2],[3226,2],[3260,2],[3261,2]]], [3227,[3045.5,7693,9.53674e-007],[[3191,2],[3263,2],[3227,2],[3264,2],[3265,2]]], +[3228,[16769.9,4900.33,0],[[3193,2],[3266,2],[3267,2]]], [3229,[5418.93,15500.5,-1.27157e-006],[[3195,2],[3268,2],[3229,2]]], [3230,[5595.17,15696.1,0],[[3195,2],[3269,2],[3270,2],[3230,2]]], [3231,[5581.59,15628.5,0],[[3270,2],[3195,2]]], [3232,[5075.58,14873.1,3.17891e-007],[[3197,2],[3271,2],[3272,2],[3232,2]]], [3233,[6680.9,16951.2,0],[[3200,2],[3274,2]]], +[3234,[5878.84,13669.3,0],[[3201,2]]], [3235,[5785.93,13470.8,0],[[3203,2]]], [3236,[5579.64,13423.1,0],[[3203,2],[3275,2],[3237,2],[3236,2]]], [3237,[5614.07,13416.5,-3.8147e-006],[[3236,2],[3320,2],[3237,2],[3203,2]]], [3238,[5456.87,4529.01,-7.62939e-006],[[3204,2],[3276,2]]], [3239,[5522.1,5597.86,-2.54313e-006],[[3205,2],[3239,2],[3277,2]]], +[3240,[9662.98,2105.15,0],[[3207,2]]], [3241,[9458.21,1959.4,-5.08626e-006],[[3207,2],[3278,2],[3241,2],[3279,2]]], [3242,[4384.5,12675,0],[[3208,2]]], [3243,[4469.56,12730,4.76837e-007],[[3208,2],[3280,2],[3243,2]]], [3244,[4289.5,12652.8,0],[[3209,2]]], [3245,[4119.85,12735.7,0],[[3209,2],[3281,2],[3245,2],[3282,2]]], +[3246,[4704.9,12514.3,4.76837e-007],[[3210,2]]], [3247,[4761.85,12693,0],[[3210,2],[3283,2],[3247,2],[3284,2],[3285,2],[3280,2]]], [3248,[4344.37,10622.8,5.08626e-006],[[3212,2],[3286,2],[3248,2],[3287,2]]], [3249,[4147.87,10053.9,1.27157e-006],[[3214,2],[3289,2],[3249,2],[3290,2]]], [3250,[3130.33,11816.3,-1.27157e-006],[[3218,2],[3291,2],[3292,2],[3250,2]]], [3251,[3412.63,11284.2,1.27157e-006],[[3219,2]]], +[3252,[3266.81,11157.7,0],[[3219,2],[3293,2],[3294,2],[3252,2]]], [3253,[3244.92,6831.13,0],[[3222,2],[3295,2]]], [3254,[3106.91,6882.54,0],[[3222,2],[3296,2],[3254,2],[3297,2]]], [3255,[3215.84,7088.58,9.53674e-007],[[3222,2],[3298,2]]], [3256,[3018.29,7427.9,0],[[3223,2],[3299,2],[3256,2],[3300,2],[3301,2]]], [3257,[3137.74,7380.72,0],[[3223,2],[3298,2],[3302,2],[3303,2]]], +[3258,[3400.51,8844.56,0],[[3225,2],[3304,2],[3258,2],[3305,2]]], [3259,[3414.45,8801.14,0],[[3304,2],[3225,2]]], [3260,[3247.02,8489.56,0],[[3226,2],[3306,2],[3261,2],[3260,2],[3307,2]]], [3261,[3274.61,8500.23,0],[[3260,2],[3348,2],[3261,2],[3226,2]]], [3262,[3220.33,7739.33,0],[[3192,2]]], [3263,[3081.94,7707.9,0],[[3227,2]]], +[3264,[2942.96,7639.62,-2.54313e-006],[[3227,2],[3308,2],[3264,2],[3309,2],[3310,2]]], [3265,[3010.49,7735.81,0],[[3227,2],[3311,2],[3312,2],[3313,2]]], [3266,[16722.5,4804.37,0],[[3228,2],[3267,2],[3266,2],[3314,2]]], [3267,[16736.3,4838.19,0],[[3266,2],[3353,2],[3267,2],[3228,2]]], [3268,[5441.26,15502.1,0],[[3229,2]]], [3269,[5534.98,15797.6,0],[[3230,2],[3315,2]]], +[3270,[5603.63,15663.8,0],[[3230,2],[3231,2],[3270,2]]], [3271,[4987.1,14810.4,9.53674e-007],[[3232,2],[3316,2],[3317,2],[3271,2]]], [3272,[5097.09,14895.3,0],[[3232,2]]], [3273,[5246.8,15038.7,-3.17891e-007],[[3198,2]]], [3274,[6708.17,16962.7,4.76837e-007],[[3233,2]]], [3275,[5423.19,13422.9,1.27157e-006],[[3236,2],[3318,2],[3275,2],[3319,2]]], +[3276,[5347.28,4493.71,0],[[3238,2],[3321,2]]], [3277,[5487.62,5614.82,0],[[3239,2],[3277,2],[3322,2]]], [3278,[9499.31,1984.63,-7.62939e-006],[[3241,2]]], [3279,[9305.16,1914.83,-2.54313e-006],[[3241,2],[3323,2],[3279,2],[3324,2]]], [3280,[4583.23,12748.7,0],[[3243,2],[3247,2],[3325,2],[3280,2],[3285,2]]], [3281,[4147.1,12706.8,0],[[3245,2]]], +[3282,[4067.81,12906,1.27157e-006],[[3245,2],[3326,2],[3282,2],[3327,2]]], [3283,[4767.1,12637.4,0],[[3247,2]]], [3284,[4816.2,12794.2,0],[[3247,2],[3328,2],[3284,2],[3329,2]]], [3285,[4677.56,12743.4,-9.53674e-007],[[3247,2],[3280,2]]], [3286,[4350.7,10657.9,2.54313e-006],[[3248,2]]], [3287,[4272.6,10557,0],[[3248,2],[3330,2]]], +[3288,[4328.81,10183.2,-1.27157e-006],[[3216,2]]], [3289,[4181.91,10066.3,0],[[3249,2]]], [3290,[3960.73,10010,0],[[3249,2],[3331,2],[3332,2]]], [3291,[3032.31,11843.9,0],[[3250,2],[3333,2],[3334,2],[3335,2]]], [3292,[3152.09,11805.6,0],[[3250,2]]], [3293,[3156.6,11106.1,2.54313e-006],[[3252,2],[3336,2],[3337,2],[3293,2]]], +[3294,[3296.17,11169.7,2.54313e-006],[[3252,2]]], [3295,[3231.29,6738.01,0],[[3253,2],[3338,2]]], [3296,[3137.41,6931.41,3.17891e-007],[[3254,2]]], [3297,[3048.74,6765.77,0],[[3254,2],[3339,2],[3340,2],[3297,2]]], [3298,[3198.86,7191.72,0],[[3255,2],[3257,2]]], [3299,[3047,7434,0],[[3256,2]]], +[3300,[2857.12,7404.01,3.17891e-007],[[3256,2],[3301,2],[3300,2],[3341,2],[3342,2]]], [3301,[2876.58,7403.74,0],[[3300,2],[3378,2],[3301,2],[3256,2]]], [3302,[3276.87,7431.32,0],[[3257,2],[3343,2]]], [3303,[3042.45,7352.59,0],[[3257,2]]], [3304,[3408.94,8825.84,0],[[3258,2],[3259,2],[3304,2]]], [3305,[3356.4,8919.08,-1.27157e-006],[[3258,2],[3344,2],[3305,2],[3345,2]]], +[3306,[3082.35,8437.23,2.54313e-006],[[3260,2],[3346,2],[3307,2],[3306,2],[3347,2]]], [3307,[3105.68,8441.08,0],[[3306,2],[3385,2],[3307,2],[3260,2]]], [3308,[2966.9,7648.46,-1.27157e-006],[[3264,2]]], [3309,[2805.79,7606.02,-1.27157e-006],[[3264,2],[3310,2],[3309,2],[3349,2]]], [3310,[2833.61,7615.06,0],[[3309,2],[3386,2],[3310,2],[3264,2]]], [3311,[2977.04,7724.71,0],[[3265,2],[3311,2],[3350,2]]], +[3312,[3017.63,7859.37,0],[[3265,2],[3313,2],[3312,2],[3351,2],[3352,2]]], [3313,[3047.06,7831.42,0],[[3312,2],[3265,2]]], [3314,[16655.6,4714.84,-1.27157e-006],[[3266,2],[3354,2],[3314,2]]], [3315,[5468.38,15856.7,-4.76837e-007],[[3269,2],[3355,2]]], [3316,[4874.39,14730.1,0],[[3271,2],[3356,2],[3316,2],[3357,2]]], [3317,[5014.33,14823.3,9.53674e-007],[[3271,2]]], +[3318,[5470.61,13431.6,2.54313e-006],[[3275,2]]], [3319,[5294.71,13387.3,-1.27157e-006],[[3275,2],[3358,2],[3319,2],[3359,2]]], [3320,[5651.16,13426.5,-1.27157e-006],[[3237,2]]], [3321,[5212.98,4470.61,0],[[3276,2]]], [3322,[5338.45,5670.52,0],[[3277,2],[3360,2]]], [3323,[9352.63,1914.34,-2.54313e-006],[[3279,2]]], +[3324,[9164.95,1858.18,-5.08626e-006],[[3279,2],[3361,2],[3324,2],[3362,2]]], [3325,[4558.03,12750.6,0],[[3280,2]]], [3326,[4060.65,12856.9,1.90735e-006],[[3282,2]]], [3327,[4045.24,13059.7,0],[[3282,2],[3363,2],[3327,2],[3364,2]]], [3328,[4808.68,12770.4,0],[[3284,2]]], [3329,[4864.96,12919.8,-3.17891e-007],[[3284,2],[3365,2],[3329,2],[3366,2]]], +[3330,[4224.82,10537.2,-3.8147e-006],[[3287,2],[3367,2]]], [3331,[3832.74,9875.95,0],[[3290,2],[3332,2],[3331,2],[3368,2]]], [3332,[3844.49,9912.51,0],[[3331,2],[3409,2],[3332,2],[3290,2]]], [3333,[3056.31,11958.4,0],[[3291,2],[3369,2]]], [3334,[2895.99,11732.5,0],[[3291,2],[3335,2],[3334,2],[3370,2],[3371,2]]], [3335,[2919.33,11755.5,0],[[3334,2],[3414,2],[3335,2],[3291,2]]], +[3336,[3071.97,11044.4,0],[[3293,2],[3372,2],[3373,2],[3336,2],[3374,2]]], [3337,[3182.11,11123.5,2.54313e-006],[[3293,2]]], [3338,[3204.55,6634.23,0],[[3295,2],[3375,2]]], [3339,[2970.98,6673.21,0],[[3297,2],[3376,2],[3339,2],[3377,2]]], [3340,[3061.12,6781.88,0],[[3297,2]]], [3341,[2701.42,7391.06,0],[[3300,2],[3342,2],[3341,2],[3379,2]]], +[3342,[2728.46,7401.55,0],[[3341,2],[3420,2],[3342,2],[3300,2]]], [3343,[3319.3,7446.87,0],[[3302,2]]], [3344,[3370.76,8901.63,-1.90735e-006],[[3305,2]]], [3345,[3247.79,9021.57,-9.53674e-007],[[3305,2],[3380,2],[3345,2],[3381,2],[3382,2]]], [3346,[2913.87,8395.65,-1.27157e-006],[[3306,2],[3383,2],[3347,2],[3346,2],[3384,2]]], [3347,[2935.57,8408.86,0],[[3346,2],[3428,2],[3347,2],[3306,2]]], +[3348,[3307.59,8502.17,0],[[3261,2]]], [3349,[2702.1,7581.58,1.90735e-006],[[3309,2],[3387,2],[3349,2],[3388,2],[3389,2],[3390,2]]], [3350,[2852.98,7683.59,0],[[3311,2],[3391,2]]], [3351,[2954.68,7896.22,-5.08626e-006],[[3312,2],[3351,2],[3392,2]]], [3352,[3053.6,7926.79,0],[[3312,2],[3393,2],[3352,2],[3394,2]]], [3353,[16747.1,4860.03,6.35783e-007],[[3267,2]]], +[3354,[16598,4609.94,0],[[3314,2],[3395,2]]], [3355,[5439.52,15912.4,-3.17891e-007],[[3315,2],[3355,2],[3396,2]]], [3356,[4909.56,14773.3,0],[[3316,2]]], [3357,[4812.52,14610.7,0],[[3316,2],[3397,2],[3398,2],[3357,2]]], [3358,[5321.99,13397.3,-1.90735e-006],[[3319,2]]], [3359,[5176.44,13334.4,0],[[3319,2],[3399,2],[3400,2],[3359,2]]], +[3360,[5268.38,5717.74,-7.62939e-006],[[3322,2],[3401,2]]], [3361,[9186.98,1882.3,-3.8147e-006],[[3324,2]]], [3362,[9051.35,1759.58,5.08626e-006],[[3324,2],[3402,2],[3362,2],[3403,2]]], [3363,[4064.64,13037.2,0],[[3327,2]]], [3364,[4029.52,13206.9,0],[[3327,2],[3404,2],[3364,2],[3405,2]]], [3365,[4841.6,12880.5,0],[[3329,2]]], +[3366,[4949.37,13036.9,0],[[3329,2],[3406,2],[3366,2],[3407,2],[3399,2]]], [3367,[4167.79,10474.5,-3.8147e-006],[[3330,2],[3408,2]]], [3368,[3814.72,9811.55,1.90735e-006],[[3331,2],[3368,2],[3410,2],[3411,2]]], [3369,[3109.41,12030.3,0],[[3333,2],[3412,2],[3369,2],[3413,2]]], [3370,[2767.72,11587.9,0],[[3334,2],[3371,2],[3370,2],[3415,2]]], [3371,[2803.11,11609.1,0],[[3370,2],[3452,2],[3371,2],[3334,2]]], +[3372,[2919.96,10951.7,2.54313e-006],[[3336,2],[3374,2],[3372,2],[3416,2]]], [3373,[3096.71,11059.8,0],[[3336,2]]], [3374,[2948.21,10971.3,0],[[3372,2],[3454,2],[3374,2],[3336,2]]], [3375,[3183.99,6539.33,0],[[3338,2],[3417,2]]], [3376,[3000.77,6707.96,0],[[3339,2]]], [3377,[2869.55,6505.56,0],[[3339,2],[3418,2],[3377,2],[3419,2]]], +[3378,[2907.78,7408.24,3.17891e-007],[[3301,2]]], [3379,[2624.7,7368.41,0],[[3341,2],[3421,2],[3389,2],[3379,2],[3422,2]]], [3380,[3295.11,8987.76,0],[[3345,2]]], [3381,[3165.08,9075.65,0],[[3345,2],[3423,2],[3381,2],[3424,2]]], [3382,[3296.47,9185.54,0],[[3345,2],[3425,2]]], [3383,[2775.85,8323.89,0],[[3346,2],[3384,2],[3383,2],[3426,2],[3427,2]]], +[3384,[2801.13,8333.77,0],[[3383,2],[3464,2],[3384,2],[3346,2]]], [3385,[3135.61,8450.97,0],[[3307,2]]], [3386,[2857.27,7619.93,1.27157e-006],[[3310,2]]], [3387,[2726.72,7587.45,1.90735e-006],[[3349,2]]], [3388,[2554.52,7636.9,0],[[3349,2],[3390,2],[3388,2],[3429,2]]], [3389,[2658.28,7493.01,0],[[3349,2],[3379,2],[3430,2],[3421,2],[3431,2]]], +[3390,[2584.62,7609.33,0],[[3388,2],[3466,2],[3390,2],[3349,2]]], [3391,[2764.91,7670.64,0],[[3350,2],[3432,2],[3433,2]]], [3392,[2889.87,7921.32,0],[[3351,2],[3434,2],[3392,2]]], [3393,[3025.17,7900.82,0],[[3352,2]]], [3394,[3136.9,8011.86,0],[[3352,2]]], [3395,[16529.9,4546.79,1.90735e-006],[[3354,2],[3435,2]]], +[3396,[5448.24,16014.5,0],[[3355,2],[3436,2],[3437,2]]], [3397,[4764.93,14499.5,6.35783e-007],[[3357,2],[3438,2],[3397,2],[3439,2],[3440,2]]], [3398,[4820.05,14632,0],[[3357,2]]], [3399,[5072.95,13218.5,0],[[3359,2],[3366,2],[3441,2],[3399,2],[3407,2]]], [3400,[5199.26,13350.9,0],[[3359,2]]], [3401,[5192.05,5806.93,0],[[3360,2],[3442,2]]], +[3402,[9085.3,1782,5.08626e-006],[[3362,2]]], [3403,[8948.5,1681.34,0],[[3362,2],[3443,2],[3403,2],[3444,2]]], [3404,[4009.59,13174.2,0],[[3364,2]]], [3405,[4100.62,13302.9,0],[[3364,2],[3445,2],[3405,2],[3446,2]]], [3406,[4932.23,13014.1,0],[[3366,2]]], [3407,[5008.4,13102.9,0],[[3366,2],[3399,2]]], +[3408,[4093.35,10410.3,0],[[3367,2],[3447,2]]], [3409,[3875.9,9943.2,-5.08626e-006],[[3332,2]]], [3410,[3674.37,9831.08,2.54313e-006],[[3368,2],[3448,2],[3449,2]]], [3411,[3952.97,9803.64,0],[[3368,2],[3450,2],[3411,2],[3451,2]]], [3412,[3078.97,11991.3,0],[[3369,2]]], [3413,[3163.9,12158.3,0],[[3369,2]]], +[3414,[2937.33,11775.5,0],[[3335,2]]], [3415,[2592.34,11442.5,0],[[3370,2],[3453,2]]], [3416,[2801.4,10888.5,0],[[3372,2],[3455,2],[3416,2],[3456,2],[3457,2]]], [3417,[3183.69,6467.8,-9.53674e-007],[[3375,2],[3458,2]]], [3418,[2897.68,6565.94,0],[[3377,2]]], [3419,[2847.37,6331,0],[[3377,2]]], +[3420,[2762.25,7403.5,0],[[3342,2]]], [3421,[2618.15,7411.69,0],[[3379,2],[3389,2],[3430,2]]], [3422,[2515.74,7367.53,-3.17891e-007],[[3379,2],[3459,2],[3422,2],[3460,2],[3461,2]]], [3423,[3178.95,9062.53,0],[[3381,2]]], [3424,[3039.79,9216.45,-1.90735e-006],[[3381,2],[3462,2]]], [3425,[3346.41,9294.75,-3.8147e-006],[[3382,2],[3463,2]]], +[3426,[2637.51,8244.51,-1.27157e-006],[[3383,2],[3465,2],[3427,2],[3426,2]]], [3427,[2658.69,8262.53,0],[[3426,2],[3498,2],[3427,2],[3383,2]]], [3428,[2971.9,8417.24,1.27157e-006],[[3347,2]]], [3429,[2476.91,7721.48,0],[[3388,2],[3467,2],[3429,2],[3468,2],[3469,2]]], [3430,[2622.36,7406.81,9.53674e-007],[[3389,2],[3421,2]]], [3431,[2668.99,7516.4,0],[[3389,2]]], +[3432,[2676.1,7693.62,1.27157e-006],[[3391,2],[3470,2],[3433,2],[3432,2]]], [3433,[2687.01,7685.29,0],[[3432,2],[3503,2],[3433,2],[3391,2]]], [3434,[2868.56,8047.8,0],[[3392,2],[3471,2]]], [3435,[16489.3,4482.6,0],[[3395,2],[3472,2]]], [3436,[5377.29,16059.4,0],[[3396,2]]], [3437,[5525.24,16092.3,0],[[3396,2]]], +[3438,[4781.74,14528.8,6.35783e-007],[[3397,2]]], [3439,[4664.16,14381.2,-6.35783e-007],[[3397,2],[3440,2],[3439,2],[3473,2]]], [3440,[4684.78,14394.4,0],[[3439,2],[3506,2],[3440,2],[3397,2]]], [3441,[5096.53,13268,0],[[3399,2]]], [3442,[5102.61,5882.98,0],[[3401,2],[3474,2]]], [3443,[8978.75,1711.05,0],[[3403,2]]], +[3444,[8859.78,1543.38,0],[[3403,2],[3475,2],[3444,2],[3476,2]]], [3445,[4087.38,13291.5,9.53674e-007],[[3405,2]]], [3446,[4174.97,13360.8,-1.90735e-006],[[3405,2],[3477,2],[3446,2],[3478,2],[3479,2]]], [3447,[4099.86,10319.7,-2.54313e-006],[[3408,2],[3480,2],[3481,2],[3447,2]]], [3448,[3686.96,9920.98,0],[[3410,2],[3482,2]]], [3449,[3592.17,9731.06,0],[[3410,2],[3483,2]]], +[3450,[3912.17,9813.55,0],[[3411,2]]], [3451,[4072.56,9759.62,0],[[3411,2],[3484,2],[3451,2],[3485,2]]], [3452,[2825.09,11640.7,0],[[3371,2]]], [3453,[2520.38,11347.6,0],[[3415,2],[3486,2],[3487,2],[3453,2]]], [3454,[2975.02,10987.9,0],[[3374,2]]], [3455,[2824.7,10899.4,0],[[3416,2]]], +[3456,[2650.06,10811.4,0],[[3416,2],[3457,2],[3456,2],[3488,2],[3489,2],[3490,2]]], [3457,[2673.59,10836.6,0],[[3456,2],[3519,2],[3457,2],[3416,2]]], [3458,[3211.04,6379.09,-9.53674e-007],[[3417,2],[3491,2]]], [3459,[2544.2,7359.35,-4.76837e-007],[[3422,2]]], [3460,[2329.95,7436.71,0],[[3422,2],[3461,2],[3460,2],[3492,2]]], [3461,[2349.8,7424.92,0],[[3460,2],[3525,2],[3461,2],[3422,2]]], +[3462,[2905.99,9296.4,0],[[3424,2],[3493,2]]], [3463,[3348.32,9349.7,0],[[3425,2],[3494,2]]], [3464,[2825.89,8346.99,-1.27157e-006],[[3384,2]]], [3465,[2572.64,8191.06,0],[[3426,2],[3495,2],[3496,2],[3497,2]]], [3466,[2621.75,7599.42,1.27157e-006],[[3390,2]]], [3467,[2487.42,7698.74,0],[[3429,2],[3467,2]]], +[3468,[2424.2,7863.45,9.53674e-007],[[3429,2],[3469,2],[3468,2],[3499,2],[3497,2],[3500,2],[3501,2]]], [3469,[2436.45,7823.13,0],[[3468,2],[3533,2],[3429,2],[3469,2]]], [3470,[2598.92,7782.78,3.8147e-006],[[3432,2],[3502,2]]], [3471,[2837.75,8088.4,0],[[3434,2],[3504,2],[3471,2],[3496,2]]], [3472,[16478.9,4410.26,0],[[3435,2],[3505,2]]], [3473,[4541.45,14327.3,1.27157e-006],[[3439,2],[3507,2],[3508,2]]], +[3474,[5030.99,5928.27,0],[[3442,2],[3509,2]]], [3475,[8874.1,1579.96,2.54313e-006],[[3444,2]]], [3476,[8773.75,1434.17,0],[[3444,2],[3510,2],[3476,2],[3511,2]]], [3477,[4154.44,13346.8,-6.35783e-007],[[3446,2]]], [3478,[4315.44,13451.3,-3.17891e-007],[[3446,2],[3479,2],[3478,2],[3512,2]]], [3479,[4274.97,13436.1,9.53674e-007],[[3478,2],[3545,2],[3479,2],[3446,2]]], +[3480,[4056.33,10258.4,7.62939e-006],[[3447,2],[3513,2]]], [3481,[4102.56,10332.9,-3.8147e-006],[[3447,2]]], [3482,[3706.45,10003.2,0],[[3448,2],[3514,2]]], [3483,[3569.29,9653.81,-2.54313e-006],[[3449,2],[3515,2],[3483,2],[3516,2]]], [3484,[4038.97,9768.44,-2.54313e-006],[[3451,2]]], [3485,[4219.2,9730.94,-7.62939e-006],[[3451,2],[3485,2]]], +[3486,[2414.43,11271,-2.54313e-006],[[3453,2],[3517,2],[3486,2],[3518,2]]], [3487,[2545.02,11365.9,0],[[3453,2]]], [3488,[2550.18,10893.6,-2.54313e-006],[[3456,2],[3490,2],[3488,2],[3520,2],[3521,2]]], [3489,[2623.13,10688,2.54313e-006],[[3456,2],[3522,2],[3523,2]]], [3490,[2562.61,10879.9,-7.62939e-006],[[3488,2],[3552,2],[3490,2],[3456,2]]], [3491,[3239.6,6308.62,9.53674e-007],[[3458,2],[3524,2]]], +[3492,[2225.76,7490.22,6.35783e-007],[[3460,2],[3526,2],[3492,2],[3527,2]]], [3493,[2799.08,9357.37,-1.90735e-006],[[3462,2],[3528,2]]], [3494,[3335.25,9437.74,0],[[3463,2],[3529,2]]], [3495,[2485.22,8307.76,0],[[3465,2],[3495,2]]], [3496,[2667.86,8118.55,-1.27157e-006],[[3465,2],[3471,2],[3530,2]]], [3497,[2501.32,8125.05,1.27157e-006],[[3465,2],[3468,2],[3531,2],[3532,2],[3497,2]]], +[3498,[2681.51,8276.82,-1.27157e-006],[[3427,2]]], [3499,[2440.13,8036.66,0],[[3468,2],[3501,2],[3499,2]]], [3500,[2282.51,7868.26,-3.8147e-006],[[3468,2],[3534,2]]], [3501,[2423.43,7987.41,-3.8147e-006],[[3499,2],[3562,2],[3468,2],[3501,2]]], [3502,[2574.54,7854.96,0],[[3470,2],[3535,2]]], [3503,[2716.28,7678.61,2.54313e-006],[[3433,2]]], +[3504,[2855.44,8073.31,2.54313e-006],[[3471,2]]], [3505,[16474.2,4331.61,0],[[3472,2],[3536,2]]], [3506,[4702.81,14414.4,0],[[3440,2]]], [3507,[4530.59,14142.1,0],[[3473,2],[3537,2],[3507,2],[3538,2]]], [3508,[4500.8,14367,-1.27157e-006],[[3473,2],[3539,2],[3508,2],[3540,2],[3541,2]]], [3509,[4966.74,5991.62,0],[[3474,2],[3542,2]]], +[3510,[8801.92,1452.93,0],[[3476,2]]], [3511,[8659.04,1369,0],[[3476,2],[3543,2],[3511,2],[3544,2]]], [3512,[4442.34,13577.8,0],[[3478,2],[3546,2],[3512,2],[3547,2]]], [3513,[3972.98,10218.6,0],[[3480,2],[3548,2]]], [3514,[3744.61,10087.6,0],[[3482,2],[3549,2]]], [3515,[3579.75,9677.79,0],[[3483,2]]], +[3516,[3491.52,9573.1,0],[[3483,2],[3529,2]]], [3517,[2435.13,11288.6,-2.54313e-006],[[3486,2]]], [3518,[2368.88,11204.3,2.54313e-006],[[3486,2],[3550,2],[3520,2],[3551,2]]], [3519,[2705.15,10849.7,0],[[3457,2]]], [3520,[2439.11,11063.8,0],[[3488,2],[3518,2],[3521,2],[3520,2],[3550,2]]], [3521,[2440.63,11000.6,0],[[3520,2],[3575,2],[3521,2],[3488,2]]], +[3522,[2614.86,10564.7,0],[[3489,2],[3553,2],[3522,2],[3554,2]]], [3523,[2626.48,10714,2.54313e-006],[[3489,2]]], [3524,[3255.13,6242.23,0],[[3491,2],[3555,2]]], [3525,[2382.3,7412.04,0],[[3461,2]]], [3526,[2254.29,7478.73,6.35783e-007],[[3492,2]]], [3527,[2122.18,7578.59,0],[[3492,2],[3556,2],[3527,2],[3557,2]]], +[3528,[2630.08,9419.35,0],[[3493,2],[3558,2]]], [3529,[3354,9481.33,-2.54313e-006],[[3494,2],[3516,2],[3559,2],[3529,2]]], [3530,[2639.97,8056.97,0],[[3496,2],[3560,2],[3530,2],[3561,2]]], [3531,[2447.83,8056.43,0],[[3497,2]]], [3532,[2512.71,8138.3,0],[[3497,2]]], [3533,[2442.16,7804.64,2.54313e-006],[[3469,2]]], +[3534,[2196.41,7860.91,0],[[3500,2],[3563,2],[3534,2],[3564,2]]], [3535,[2564.95,7949.58,3.8147e-006],[[3502,2],[3561,2]]], [3536,[16458.3,4257.26,1.90735e-006],[[3505,2],[3565,2]]], [3537,[4504.68,14243.5,0],[[3507,2]]], [3538,[4539.98,13923,0],[[3507,2],[3566,2],[3538,2],[3547,2]]], [3539,[4511.09,14360.4,-1.90735e-006],[[3508,2]]], +[3540,[4418.48,14399.2,0],[[3508,2],[3541,2],[3540,2],[3567,2]]], [3541,[4427.27,14392.5,0],[[3540,2],[3585,2],[3508,2],[3541,2]]], [3542,[4887.56,6065.92,0],[[3509,2],[3568,2]]], [3543,[8687.82,1391.93,0],[[3511,2]]], [3544,[8604.47,1277.5,0],[[3511,2],[3569,2],[3544,2],[3570,2]]], [3545,[4245.48,13415,-6.35783e-007],[[3479,2]]], +[3546,[4413.69,13519.6,0],[[3512,2]]], [3547,[4478.66,13774.3,0],[[3512,2],[3538,2],[3571,2],[3547,2]]], [3548,[3864.47,10164.6,0],[[3513,2],[3572,2]]], [3549,[3745.6,10101.6,0],[[3514,2],[3573,2],[3572,2]]], [3550,[2398.1,11173.6,7.62939e-006],[[3518,2],[3520,2]]], [3551,[2287.35,11013.5,-7.62939e-006],[[3518,2],[3574,2]]], +[3552,[2582.04,10862.7,-5.08626e-006],[[3490,2]]], [3553,[2615.59,10611,0],[[3522,2]]], [3554,[2582.76,10447.5,-2.54313e-006],[[3522,2],[3576,2],[3554,2],[3577,2],[3578,2]]], [3555,[3240.68,6167.3,0],[[3524,2],[3579,2]]], [3556,[2139.11,7539.6,-1.58946e-007],[[3527,2]]], [3557,[2109.09,7754.08,0],[[3527,2],[3580,2],[3564,2]]], +[3558,[2469.36,9477.71,3.8147e-006],[[3528,2],[3581,2]]], [3559,[3343.08,9463.17,0],[[3529,2]]], [3560,[2666.01,8078.85,3.8147e-006],[[3530,2],[3582,2],[3560,2]]], [3561,[2572.46,7983.46,0],[[3530,2],[3535,2]]], [3562,[2421.46,7958.72,0],[[3501,2]]], [3563,[2233.9,7845.92,6.35783e-007],[[3534,2]]], +[3564,[2130,7895.52,3.17891e-007],[[3534,2],[3557,2],[3580,2],[3583,2]]], [3565,[16439.6,4175.29,-1.90735e-006],[[3536,2],[3584,2]]], [3566,[4554.23,13950.2,0],[[3538,2]]], [3567,[4312.75,14489.8,6.35783e-007],[[3540,2],[3586,2],[3587,2]]], [3568,[4833.42,6123.16,0],[[3542,2],[3588,2]]], [3569,[8610.11,1302.33,0],[[3544,2]]], +[3570,[8570.06,1179.4,0],[[3544,2],[3589,2],[3570,2],[3590,2]]], [3571,[4468.1,13737.9,9.53674e-007],[[3547,2]]], [3572,[3776.71,10127.7,0],[[3548,2],[3549,2]]], [3573,[3696.32,10134.9,-2.54313e-006],[[3549,2],[3591,2],[3573,2],[3592,2],[3593,2]]], [3574,[2264.14,10966.8,2.54313e-006],[[3551,2],[3594,2],[3574,2],[3595,2],[3596,2]]], [3575,[2473.85,10962.1,0],[[3521,2]]], +[3576,[2595.92,10472.3,0],[[3554,2]]], [3577,[2548.88,10291.2,0],[[3554,2],[3578,2],[3577,2],[3597,2]]], [3578,[2543.28,10311.7,0],[[3577,2],[3611,2],[3578,2],[3554,2]]], [3579,[3230.36,6063.26,0],[[3555,2],[3598,2]]], [3580,[2111.84,7838.9,-2.38419e-007],[[3557,2],[3564,2]]], [3581,[2408.44,9506.54,-1.27157e-006],[[3558,2],[3599,2],[3581,2],[3600,2]]], +[3582,[2668.99,8085.71,1.27157e-006],[[3560,2]]], [3583,[2156.11,7986,0],[[3564,2],[3601,2],[3583,2],[3602,2]]], [3584,[16403.7,4098.88,-1.90735e-006],[[3565,2],[3603,2]]], [3585,[4448.31,14387.2,6.35783e-007],[[3541,2]]], [3586,[4285.77,14583.7,-6.35783e-007],[[3567,2],[3604,2],[3586,2],[3605,2]]], [3587,[4212.48,14477.8,0],[[3567,2],[3587,2],[3606,2]]], +[3588,[4754.38,6153.54,0],[[3568,2],[3607,2]]], [3589,[8581.56,1201.43,0],[[3570,2]]], [3590,[8523.14,1091.92,3.17891e-007],[[3570,2],[3608,2],[3590,2],[3609,2]]], [3591,[3710.16,10123.6,-3.8147e-006],[[3573,2]]], [3592,[3584.82,10236.2,0],[[3573,2],[3593,2],[3592,2]]], [3593,[3602.67,10214.6,0],[[3592,2],[3625,2],[3593,2],[3573,2]]], +[3594,[2273.69,10981.6,3.8147e-006],[[3574,2]]], [3595,[2166.94,10828.7,2.54313e-006],[[3574,2],[3596,2],[3595,2],[3610,2]]], [3596,[2176.74,10857.6,-7.62939e-006],[[3595,2],[3626,2],[3596,2],[3574,2]]], [3597,[2571.96,10170.6,0],[[3577,2],[3612,2],[3597,2],[3613,2]]], [3598,[3284.76,6004.74,1.58946e-007],[[3579,2],[3598,2],[3614,2]]], [3599,[2432.46,9492.58,1.27157e-006],[[3581,2]]], +[3600,[2343.74,9552.55,-1.27157e-006],[[3581,2],[3615,2],[3616,2]]], [3601,[2150.7,7961.33,3.17891e-007],[[3583,2]]], [3602,[2176.65,8075.9,0],[[3583,2],[3617,2],[3602,2],[3618,2]]], [3603,[16363.9,3988.7,0],[[3584,2],[3619,2]]], [3604,[4312.67,14559.6,-6.35783e-007],[[3586,2]]], [3605,[4156.12,14584.3,0],[[3586,2],[3620,2],[3605,2],[3621,2]]], +[3606,[4132.21,14414.9,0],[[3587,2],[3622,2]]], [3607,[4630.19,6176.04,0],[[3588,2],[3623,2]]], [3608,[8537.58,1114.78,0],[[3590,2]]], [3609,[8451.8,973.703,3.17891e-007],[[3590,2],[3624,2],[3609,2]]], [3610,[2166.87,10648.6,0],[[3595,2],[3627,2]]], [3611,[2547.02,10343.4,-2.54313e-006],[[3578,2]]], +[3612,[2572.68,10212.7,0],[[3597,2]]], [3613,[2464.21,10022.8,0],[[3597,2],[3628,2],[3629,2]]], [3614,[3343.12,5912.5,0],[[3598,2],[3630,2]]], [3615,[2288.45,9487.03,0],[[3600,2]]], [3616,[2216.5,9657.64,0],[[3600,2],[3631,2],[3616,2],[3632,2],[3633,2]]], [3617,[2169.17,8052.55,0],[[3602,2]]], +[3618,[2217.39,8183.71,-3.17891e-007],[[3602,2],[3634,2],[3618,2],[3635,2]]], [3619,[16360.1,3920.62,0],[[3603,2],[3636,2]]], [3620,[4187.03,14594.1,0],[[3605,2]]], [3621,[4069.08,14551.6,-1.58946e-007],[[3605,2],[3637,2],[3621,2],[3638,2]]], [3622,[4081.14,14394.3,0],[[3606,2],[3639,2]]], [3623,[4515.53,6194.88,-7.62939e-006],[[3607,2],[3640,2]]], +[3624,[8468.33,1008.56,6.35783e-007],[[3609,2]]], [3625,[3623.53,10195.8,0],[[3593,2]]], [3626,[2198.31,10881.8,2.54313e-006],[[3596,2]]], [3627,[2161,10580,0],[[3610,2],[3641,2],[3627,2],[3642,2]]], [3628,[2331.66,9958.38,0],[[3613,2],[3629,2],[3628,2],[3643,2],[3644,2]]], [3629,[2357.18,9979.38,3.8147e-006],[[3628,2],[3660,2],[3629,2],[3613,2]]], +[3630,[3389.03,5881.81,-6.35783e-007],[[3614,2],[3645,2],[3646,2],[3630,2]]], [3631,[2290.13,9614.88,0],[[3616,2]]], [3632,[2105.54,9731.9,0],[[3616,2],[3647,2],[3648,2],[3633,2]]], [3633,[2107.74,9644.97,0],[[3616,2],[3632,2],[3649,2],[3650,2],[3648,2]]], [3634,[2201.28,8140.87,0],[[3618,2]]], [3635,[2255.87,8336.89,0],[[3618,2],[3651,2],[3635,2],[3652,2]]], +[3636,[16379.3,3855.36,-3.8147e-006],[[3619,2],[3653,2]]], [3637,[4091.74,14562.7,0],[[3621,2]]], [3638,[3963.43,14483.2,-1.19209e-007],[[3621,2],[3654,2],[3638,2],[3655,2],[3656,2],[3639,2]]], [3639,[3984.24,14381.5,1.58946e-007],[[3622,2],[3638,2],[3657,2],[3656,2]]], [3640,[4422.42,6181.24,0],[[3623,2],[3658,2]]], [3641,[2165.4,10598.6,0],[[3627,2]]], +[3642,[2102.24,10407,0],[[3627,2],[3659,2]]], [3643,[2195.51,9866.77,-1.27157e-006],[[3628,2],[3644,2],[3643,2],[3647,2]]], [3644,[2215.85,9883.08,0],[[3643,2],[3677,2],[3644,2],[3628,2]]], [3645,[3502.93,5858.34,0],[[3630,2],[3661,2]]], [3646,[3374.03,5888.44,-9.53674e-007],[[3630,2]]], [3647,[2080.47,9788.7,-1.27157e-006],[[3632,2],[3643,2],[3662,2],[3647,2]]], +[3648,[2050.21,9695.93,0],[[3632,2],[3633,2],[3663,2],[3662,2]]], [3649,[2070.1,9545.54,0],[[3633,2],[3664,2]]], [3650,[2052.61,9696.5,1.27157e-006],[[3650,2]]], [3651,[2246.47,8304.62,0],[[3635,2]]], [3652,[2301.21,8417.79,0],[[3635,2],[3665,2],[3652,2],[3666,2]]], [3653,[16424.8,3823.65,-1.27157e-006],[[3636,2],[3667,2],[3668,2],[3653,2]]], +[3654,[3986.45,14510.2,0],[[3638,2],[3669,2],[3654,2]]], [3655,[3853.22,14414.7,-1.58946e-007],[[3638,2],[3670,2],[3655,2],[3671,2],[3657,2]]], [3656,[3958.57,14432.6,-2.38419e-007],[[3638,2],[3639,2]]], [3657,[3903.65,14330.4,-1.58946e-007],[[3639,2],[3655,2],[3672,2],[3657,2],[3671,2]]], [3658,[4318.61,6154.58,7.62939e-006],[[3640,2],[3673,2]]], [3659,[2063.98,10351.5,0],[[3642,2],[3674,2],[3659,2],[3675,2],[3676,2]]], +[3660,[2387.18,9992.36,-1.27157e-006],[[3629,2]]], [3661,[3550.71,5878.13,0],[[3645,2],[3678,2]]], [3662,[2025.66,9867.31,0.0493927],[[3647,2],[3648,2],[3663,2],[3679,2],[3675,2]]], [3663,[1978.82,9822.61,1.90735e-006],[[3648,2],[3662,2]]], [3664,[2026.66,9457.78,0],[[3649,2],[3680,2]]], [3665,[2288.23,8402.03,4.76837e-007],[[3652,2]]], +[3666,[2337.61,8461.78,-3.17891e-007],[[3652,2],[3666,2],[3681,2]]], [3667,[16528.2,3813.54,0],[[3653,2],[3682,2]]], [3668,[16401.3,3836.26,-2.54313e-006],[[3653,2]]], [3669,[3992.25,14511.8,0],[[3654,2]]], [3670,[3871.54,14442.5,-1.58946e-007],[[3655,2]]], [3671,[3821.61,14336.4,0],[[3655,2],[3657,2],[3683,2]]], +[3672,[3935.53,14337.8,-2.38419e-007],[[3657,2]]], [3673,[4232.78,6109.16,7.62939e-006],[[3658,2],[3684,2]]], [3674,[2075.97,10364.5,0],[[3659,2]]], [3675,[1959.56,10164,-1.27157e-006],[[3659,2],[3662,2],[3676,2],[3675,2],[3685,2]]], [3676,[1942.13,10227.9,-3.8147e-006],[[3675,2],[3695,2],[3676,2],[3659,2]]], [3677,[2238.69,9897.33,-1.27157e-006],[[3644,2]]], +[3678,[3627.42,5959.04,0],[[3661,2],[3686,2]]], [3679,[1978.61,10002.3,0],[[3662,2],[3687,2],[3679,2]]], [3680,[2018.85,9419.05,0],[[3664,2],[3688,2],[3689,2],[3680,2]]], [3681,[2375.44,8524.61,-9.53674e-007],[[3666,2],[3690,2]]], [3682,[16516.4,3728.52,0],[[3667,2],[3691,2]]], [3683,[3789.2,14256.6,1.58946e-007],[[3671,2],[3692,2],[3683,2],[3693,2]]], +[3684,[4159.09,6087.37,-7.62939e-006],[[3673,2],[3694,2]]], [3685,[1977.05,10011,0.111359],[[3675,2]]], [3686,[3680.4,6010.12,0],[[3678,2],[3696,2]]], [3687,[1987.8,9959.52,-1.27157e-006],[[3679,2]]], [3688,[2053.58,9321.37,0],[[3680,2],[3697,2]]], [3689,[2020.09,9436.15,0],[[3680,2]]], +[3690,[2398.35,8619.42,0],[[3681,2],[3698,2]]], [3691,[16446.3,3668.25,0],[[3682,2],[3699,2]]], [3692,[3792.11,14276.5,2.38419e-007],[[3683,2]]], [3693,[3762.68,14143.5,0],[[3683,2],[3700,2],[3693,2],[3701,2]]], [3694,[4066.26,6066.26,0],[[3684,2],[3702,2]]], [3695,[1984.59,10279,0],[[3676,2]]], +[3696,[3730.89,6021.32,0],[[3686,2],[3703,2]]], [3697,[2128.45,9230.95,0],[[3688,2],[3704,2]]], [3698,[2455.6,8776.17,0],[[3690,2],[3705,2]]], [3699,[16391,3586.11,0],[[3691,2],[3706,2]]], [3700,[3772.58,14176.8,0],[[3693,2]]], [3701,[3748.52,14044.9,0],[[3693,2]]], +[3702,[3990.71,6028.31,0],[[3694,2],[3707,2]]], [3703,[3814.86,6009.98,3.8147e-006],[[3696,2],[3707,2]]], [3704,[2198.75,9170.98,0],[[3697,2],[3708,2]]], [3705,[2468.17,8846.07,1.90735e-006],[[3698,2],[3709,2]]], [3706,[16335.6,3497.97,0],[[3699,2],[3710,2]]], [3707,[3906.05,6024.9,3.8147e-006],[[3702,2],[3703,2]]], +[3708,[2299.85,9111.29,0],[[3704,2],[3711,2]]], [3709,[2452.63,8912.46,0],[[3705,2],[3712,2]]], [3710,[16245.8,3390.71,0],[[3706,2],[3713,2]]], [3711,[2356.77,9051.23,0],[[3708,2],[3712,2]]], [3712,[2405.78,8992.1,0],[[3709,2],[3711,2]]], [3713,[16191.9,3315.18,0],[[3710,2],[3714,2]]], +[3714,[16182.9,3297.2,0],[[3713,2],[3714,2],[3715,2],[3716,2]]], [3715,[16195.1,3195.23,2.54313e-006],[[3714,2],[3717,2],[3715,2],[3718,2]]], [3716,[16089.9,3213.26,0],[[3714,2],[3719,2],[3716,2]]], [3717,[16204.4,3245.17,2.54313e-006],[[3715,2]]], [3718,[16225.2,3042.63,-5.08626e-006],[[3715,2],[3720,2],[3718,2],[3721,2]]], [3719,[16071.1,3166.11,0],[[3716,2],[3722,2],[3719,2]]], +[3720,[16199.4,3066.76,-7.62939e-006],[[3718,2]]], [3721,[16331.9,2974.98,0],[[3718,2],[3723,2],[3721,2],[3724,2]]], [3722,[15942.7,3138.77,0],[[3719,2],[3725,2]]], [3723,[16302.6,2983.01,0],[[3721,2]]], [3724,[16458,2937.83,0],[[3721,2],[3726,2],[3724,2],[3727,2]]], [3725,[15915,3126.81,0],[[3722,2],[3728,2],[3725,2]]], +[3726,[16410.4,2953.87,0],[[3724,2]]], [3727,[16658.9,2936,7.62939e-006],[[3724,2],[3729,2]]], [3728,[15813.9,3022.59,0],[[3725,2],[3730,2]]], [3729,[16758.2,2916.27,2.54313e-006],[[3727,2],[3731,2],[3732,2]]], [3730,[15734.4,2975.4,0],[[3728,2],[3733,2]]], [3731,[16733.2,2924.09,5.08626e-006],[[3729,2]]], +[3732,[16856.6,2888.26,2.54313e-006],[[3729,2],[3734,2],[3732,2],[3735,2],[3736,2]]], [3733,[15721,2927.45,0],[[3730,2],[3737,2],[3738,2],[3733,2]]], [3734,[16824,2894.01,0],[[3732,2]]], [3735,[17005.8,2885.35,0],[[3732,2],[3736,2],[3735,2],[3739,2]]], [3736,[16988.7,2882.11,-3.05176e-005],[[3735,2],[3742,2],[3736,2],[3732,2]]], [3737,[15774.7,2859.61,-3.8147e-006],[[3733,2],[3740,2],[3741,2]]], +[3738,[15720.3,2941.86,0],[[3733,2]]], [3739,[17101.8,2922.19,0],[[3735,2],[3743,2],[3739,2],[3744,2]]], [3740,[15810.8,2794.66,0],[[3737,2],[3745,2],[3741,2],[3740,2]]], [3741,[15838.8,2813.7,3.8147e-006],[[3740,2],[3750,2],[3741,2],[3737,2]]], [3742,[16961.8,2881.14,0],[[3736,2]]], [3743,[17073.4,2911.25,-7.62939e-006],[[3739,2]]], +[3744,[17203.7,2905.49,0],[[3739,2],[3746,2],[3744,2],[3747,2],[3748,2]]], [3745,[15734,2787.78,1.90735e-006],[[3740,2],[3749,2]]], [3746,[17178.5,2923.21,0],[[3744,2]]], [3747,[17397.8,2892.05,-1.01725e-005],[[3744,2],[3748,2],[3747,2],[3751,2]]], [3748,[17341.4,2844.47,0],[[3747,2],[3753,2],[3748,2],[3744,2]]], [3749,[15592.2,2788.62,0],[[3745,2],[3752,2]]], +[3750,[15817.8,2833.72,0],[[3741,2]]], [3751,[17547.4,2993.38,0],[[3747,2],[3754,2],[3751,2],[3755,2]]], [3752,[15475,2799.5,-1.90735e-006],[[3749,2],[3756,2]]], [3753,[17305.3,2851.7,-5.08626e-006],[[3748,2]]], [3754,[17523.1,2982.65,7.62939e-006],[[3751,2]]], [3755,[17664.3,2997.89,0],[[3751,2],[3757,2],[3755,2],[3758,2]]], +[3756,[15382.6,2800.64,0],[[3752,2],[3759,2]]], [3757,[17624.7,3017.98,0],[[3755,2]]], [3758,[17801.3,2882.98,0],[[3755,2],[3760,2],[3758,2],[3761,2]]], [3759,[15300.6,2821.04,0],[[3756,2],[3762,2]]], [3760,[17771.4,2916.43,5.08626e-006],[[3758,2]]], [3761,[17929.1,2779.32,-5.08626e-006],[[3758,2],[3763,2],[3761,2],[3764,2]]], +[3762,[15220.2,2866.58,0],[[3759,2],[3765,2]]], [3763,[17884.4,2807.79,0],[[3761,2]]], [3764,[18044.8,2642.29,0],[[3761,2],[3766,2],[3764,2],[3767,2]]], [3765,[15151,2928.28,0],[[3762,2],[3768,2]]], [3766,[18029.9,2675.1,-5.08626e-006],[[3764,2]]], [3767,[18088.4,2563.41,0],[[3764,2]]], +[3768,[15096.4,2981.34,0],[[3765,2],[3769,2]]], [3769,[15007.2,3006.35,1.90735e-006],[[3768,2],[3770,2]]], [3770,[14925.4,3006.76,9.53674e-007],[[3769,2],[3771,2]]], [3771,[14811.7,2989.52,-9.53674e-007],[[3770,2],[3772,2]]], [3772,[14722.7,2987.09,0],[[3771,2],[3773,2]]], [3773,[14635.5,2956.56,0],[[3772,2],[3774,2]]], +[3774,[14543.7,2943.08,0],[[3773,2],[3775,2]]], [3775,[14449.3,2950.28,0],[[3774,2],[3776,2],[3777,2]]], [3776,[14307.9,2963.52,-9.53674e-007],[[3775,2],[3778,2],[3779,2]]], [3777,[14440.4,2922.08,6.35783e-007],[[3775,2],[3777,2],[3780,2]]], [3778,[14231.6,2972.14,0],[[3776,2],[3781,2]]], [3779,[14363.4,2907.13,0],[[3780,2],[3785,2],[3779,2],[3776,2]]], +[3780,[14436.5,2887.35,0],[[3777,2],[3782,2],[3779,2]]], [3781,[14141.7,3008.86,0],[[3778,2],[3783,2]]], [3782,[14449.7,2841.28,0],[[3780,2],[3782,2],[3784,2]]], [3783,[14060.7,3071.92,0],[[3781,2],[3786,2]]], [3784,[14452.9,2790.53,0],[[3782,2]]], [3785,[14385,2888.39,0],[[3779,2]]], +[3786,[13998.8,3141.21,-9.53674e-007],[[3783,2],[3787,2],[3788,2]]], [3787,[13932.7,3175.69,0],[[3786,2],[3789,2],[3790,2],[3787,2]]], [3788,[13964.4,3170.88,0],[[3790,2],[3786,2]]], [3789,[13792.1,3135.63,0],[[3787,2],[3791,2]]], [3790,[13952.3,3175.88,0],[[3787,2],[3788,2]]], [3791,[13700.2,3111.9,0],[[3789,2],[3792,2]]], +[3792,[13589.3,3124.31,0],[[3791,2],[3793,2]]], [3793,[13476.9,3157.15,9.53674e-007],[[3792,2],[3794,2]]], [3794,[13386.3,3201.01,0],[[3793,2],[3795,2]]], [3795,[13326.4,3226.62,0],[[3794,2],[3796,2]]], [3796,[13203.3,3227.48,1.90735e-006],[[3795,2],[3797,2]]], [3797,[13108.4,3234.76,1.90735e-006],[[3796,2],[3798,2]]], +[3798,[13003.7,3227.7,-1.90735e-006],[[3797,2],[3799,2]]], [3799,[12900.6,3210.4,0],[[3798,2],[3800,2]]], [3800,[12800.3,3220.98,0],[[3799,2],[3801,2]]], [3801,[12705.8,3209.33,-3.8147e-006],[[3800,2],[3802,2]]], [3802,[12635.1,3188.82,0],[[3801,2],[3803,2]]], [3803,[12561.1,3132.78,0],[[3802,2],[3804,2]]], +[3804,[12475.6,3096.71,0],[[3803,2],[3805,2]]], [3805,[12381.1,3050.78,0],[[3804,2],[3806,2]]], [3806,[12283.2,3014.22,0],[[3805,2],[3807,2]]], [3807,[12196.1,2944.29,9.53674e-007],[[3806,2],[3808,2]]], [3808,[12132.4,2900.55,0],[[3807,2],[3809,2]]], [3809,[12052.1,2838.84,0],[[3808,2],[3810,2]]], +[3810,[11911.3,2757.39,0],[[3809,2],[3811,2]]], [3811,[11830.4,2691.11,0],[[3810,2],[3812,2]]], [3812,[11757.8,2615.3,0],[[3811,2],[3813,2]]], [3813,[11712.5,2543.68,0],[[3812,2],[3814,2]]], [3814,[11646.9,2495.27,-1.90735e-006],[[3813,2],[3815,2]]], [3815,[11581.1,2451.9,0],[[3814,2],[3816,2]]], +[3816,[11523.2,2356.39,0],[[3815,2],[3817,2]]], [3817,[11485.2,2313.54,0],[[3816,2],[3818,2]]], [3818,[11404.8,2268,-3.8147e-006],[[3817,2],[3819,2]]], [3819,[11318.4,2235.33,3.8147e-006],[[3818,2],[3820,2]]], [3820,[11233.6,2167.32,0],[[3819,2],[3821,2]]], [3821,[11142.1,2100.06,0],[[3820,2],[3822,2]]], +[3822,[11052,2047.06,0],[[3821,2],[3823,2]]], [3823,[10991.4,1978.72,0],[[3822,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridtakistan.sqf b/A3-Antistasi/NavGrids/navGridtakistan.sqf new file mode 100644 index 0000000000..3ef38beca2 --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridtakistan.sqf @@ -0,0 +1,254 @@ +navGrid = [[0,[5150.83,6111.47,0],[[1,2],[2,2],[3,2]]], [1,[5180.75,6134.8,-5.08626e-006],[[0,2],[4,2],[5,2]]], [2,[5046.87,6114.19,0],[[0,2],[6,2]]], [3,[5165.25,6058.7,0],[[0,2]]], [4,[5222.82,6153.63,-3.8147e-006],[[1,2],[4,2],[7,2],[8,2]]], [5,[5113.24,6279.71,0],[[1,2],[9,2]]], +[6,[4961.51,6061.03,0],[[2,2],[10,2]]], [7,[5292.34,6068.2,0],[[4,2],[11,2]]], [8,[5284.91,6232.83,0],[[4,2],[8,2],[12,2]]], [9,[5066.16,6424.88,-1.52588e-005],[[5,2],[13,2]]], [10,[4905.36,5990.36,0],[[6,2],[14,2]]], [11,[5319.12,6025.46,0],[[7,2]]], +[12,[5376.51,6276.82,0],[[8,2],[15,2]]], [13,[5040.98,6522.09,0],[[9,2],[16,2]]], [14,[4802.89,5875.72,0],[[10,2],[17,2]]], [15,[5520.37,6356.73,0],[[12,2],[18,2]]], [16,[5021.78,6579.9,0],[[13,2],[19,2]]], [17,[4735.73,5814.56,-1.52588e-005],[[14,2],[20,2]]], +[18,[5627.18,6434.48,0],[[15,2],[21,2]]], [19,[4962.68,6642.83,0],[[16,2],[22,2]]], [20,[4681.36,5789.07,1.01725e-005],[[17,2],[23,2],[24,2]]], [21,[5680.62,6510.94,1.52588e-005],[[18,2],[25,2]]], [22,[4890.36,6683.18,0],[[19,2],[26,2]]], [23,[4533.6,5768.18,0],[[20,2],[27,2]]], +[24,[4717.04,5688.47,0],[[20,2],[28,2]]], [25,[5744.21,6604.91,0],[[21,2],[29,2]]], [26,[4801.09,6702.48,0],[[22,2],[30,2],[31,2]]], [27,[4396.93,5747.12,0],[[23,2],[32,2]]], [28,[4780.21,5625,0],[[24,2],[33,2]]], [29,[5814.54,6663.74,0],[[25,2],[34,2]]], +[30,[4797.03,6750.66,5.08626e-006],[[26,2],[35,2],[31,2],[30,2]]], [31,[4770.47,6722.37,0],[[30,2],[41,2],[26,2]]], [32,[4277.23,5726.77,0],[[27,2],[36,2]]], [33,[4847.27,5546.48,0],[[28,2],[37,2]]], [34,[5855.32,6685.16,-5.08626e-006],[[29,2],[38,2],[39,2]]], [35,[4959.46,6787.4,0],[[30,2],[40,2]]], +[36,[4125.44,5675.51,0],[[32,2],[42,2]]], [37,[4911.74,5497.43,5.08626e-006],[[33,2],[43,2],[44,2],[37,2]]], [38,[5890.4,6558.44,0],[[34,2],[45,2]]], [39,[5910.65,6759.42,1.52588e-005],[[34,2],[46,2]]], [40,[5031.99,6806.19,-3.05176e-005],[[35,2],[47,2]]], [41,[4784.11,6711.13,-5.08626e-006],[[31,2]]], +[42,[4051.39,5651.57,0],[[36,2],[48,2]]], [43,[5097.59,5413.09,0],[[37,2],[49,2]]], [44,[4888.89,5512.05,7.62939e-006],[[37,2]]], [45,[5888.61,6417.08,0],[[38,2],[50,2]]], [46,[5931.29,6862.85,0],[[39,2],[51,2]]], [47,[5040.41,6811.55,0],[[40,2]]], +[48,[3949.49,5653.36,0],[[42,2],[52,2]]], [49,[5175.41,5397.42,5.08626e-006],[[43,2],[53,2],[54,2]]], [50,[5872.92,6288.25,0],[[45,2],[55,2]]], [51,[5968.71,6968.17,1.52588e-005],[[46,2],[56,2]]], [52,[3815.87,5648.9,0],[[48,2],[57,2]]], [53,[5171.79,5275.91,0],[[49,2],[58,2]]], +[54,[5322.52,5441.57,0],[[49,2],[59,2]]], [55,[5849.4,6172.21,1.52588e-005],[[50,2],[60,2]]], [56,[5971.83,7019.3,0],[[51,2],[61,2]]], [57,[3651.34,5601.44,0],[[52,2],[62,2],[63,2]]], [58,[5214.58,5156.53,0],[[53,2],[64,2]]], [59,[5482.11,5477.33,0],[[54,2],[65,2]]], +[60,[5807.32,6027.62,0],[[55,2],[66,2]]], [61,[5917.98,7121.4,1.52588e-005],[[56,2],[67,2]]], [62,[3492.7,5561.43,1.52588e-005],[[57,2],[68,2]]], [63,[3617.45,5519.15,0],[[57,2],[69,2],[70,2],[63,2]]], [64,[5296.81,5009.27,0],[[58,2],[71,2]]], [65,[5560.92,5507.8,0],[[59,2],[72,2]]], +[66,[5794.32,5931.27,0],[[60,2],[73,2]]], [67,[5896.51,7171.32,0],[[61,2],[74,2],[75,2]]], [68,[3362.25,5520.2,-1.52588e-005],[[62,2],[76,2]]], [69,[3607.44,5340.48,0],[[63,2],[77,2]]], [70,[3616.21,5543.28,0],[[63,2],[78,2],[70,2]]], [71,[5316.95,4943.02,0],[[64,2],[79,2]]], +[72,[5613.08,5579.7,0],[[65,2],[80,2]]], [73,[5802.08,5915.08,-5.08626e-006],[[66,2],[81,2],[82,2]]], [74,[5877.33,7210.79,-2.54313e-006],[[67,2],[74,2],[83,2]]], [75,[6002.54,7216.01,0],[[67,2]]], [76,[3237.6,5494.55,0],[[68,2],[84,2]]], [77,[3585.41,5241.56,0],[[69,2],[85,2]]], +[78,[3619.41,5546.93,5.08626e-006],[[70,2]]], [79,[5309.17,4843.62,-1.52588e-005],[[71,2],[86,2]]], [80,[5673.65,5658.06,3.05176e-005],[[72,2],[87,2]]], [81,[5833.17,5802.01,0],[[73,2],[88,2],[81,2],[89,2],[87,2]]], [82,[5868.01,5894.73,0],[[73,2],[90,2]]], [83,[5907.33,7305.44,7.62939e-006],[[74,2],[91,2]]], +[84,[3115.6,5468.19,-1.52588e-005],[[76,2],[92,2]]], [85,[3571.44,5114.2,0],[[77,2],[93,2]]], [86,[5300.99,4724.09,1.52588e-005],[[79,2],[94,2]]], [87,[5775.62,5713.56,0],[[80,2],[81,2],[89,2]]], [88,[5825.15,5823.27,0],[[81,2]]], [89,[5829.24,5731.86,0],[[81,2],[87,2],[95,2]]], +[90,[5938.23,5860.89,0],[[82,2],[96,2]]], [91,[5938.72,7391.9,-2.54313e-006],[[83,2],[97,2],[98,2]]], [92,[3007.86,5419.02,0],[[84,2],[99,2]]], [93,[3577.67,5048.26,1.52588e-005],[[85,2],[100,2]]], [94,[5325.38,4615.4,0],[[86,2],[101,2]]], [95,[5895.02,5647.1,-7.62939e-006],[[89,2],[102,2],[95,2],[103,2],[104,2]]], +[96,[6042.16,5846.72,-3.05176e-005],[[90,2],[105,2]]], [97,[5998.99,7358.22,0],[[91,2],[106,2]]], [98,[5963.47,7584.19,0],[[91,2],[107,2]]], [99,[2893.36,5339.39,-1.52588e-005],[[92,2],[108,2]]], [100,[3622.54,4915.05,0],[[93,2],[109,2]]], [101,[5358.18,4450.6,0],[[94,2],[110,2]]], +[102,[5881.41,5683.97,0],[[95,2]]], [103,[5835.39,5583.41,-3.05176e-005],[[95,2],[111,2]]], [104,[5987.06,5520.17,0],[[95,2],[112,2]]], [105,[6070.8,5859.31,0],[[96,2],[105,2],[113,2]]], [106,[6050.79,7319.92,0],[[97,2],[114,2]]], [107,[5966.92,7723.19,0],[[98,2],[115,2]]], +[108,[2787.61,5250.2,0],[[99,2],[116,2]]], [109,[3632.83,4857.41,-5.08626e-006],[[100,2],[109,2],[117,2]]], [110,[5373.55,4311.33,3.05176e-005],[[101,2],[118,2]]], [111,[5772.13,5558.63,0],[[103,2]]], [112,[6068.95,5383.87,0],[[104,2],[119,2]]], [113,[6137.62,5910.95,0],[[105,2],[120,2]]], +[114,[6111.33,7310.23,7.62939e-006],[[106,2],[121,2]]], [115,[5969.45,7866.1,0],[[107,2],[122,2]]], [116,[2698.28,5183.18,0],[[108,2],[123,2]]], [117,[3630.74,4774.84,1.52588e-005],[[109,2],[124,2]]], [118,[5380.5,4161.23,3.05176e-005],[[110,2],[125,2]]], [119,[6139.53,5284.51,0],[[112,2],[126,2]]], +[120,[6191.5,5923.45,1.01725e-005],[[113,2],[127,2],[128,2]]], [121,[6238.54,7324.14,1.52588e-005],[[114,2],[129,2]]], [122,[5990.74,7952.85,0],[[115,2],[130,2]]], [123,[2569.81,5112.36,-1.52588e-005],[[116,2],[131,2]]], [124,[3636.94,4732.73,-5.08626e-006],[[117,2],[132,2],[133,2],[124,2]]], [125,[5357.99,4038.58,0],[[118,2],[134,2]]], +[126,[6177.48,5247.05,0],[[119,2],[135,2],[136,2],[137,2]]], [127,[6163.31,5778.9,0],[[120,2],[138,2]]], [128,[6232.97,5981.49,0],[[120,2],[139,2],[128,2]]], [129,[6393.97,7348.69,0],[[121,2],[140,2]]], [130,[5921.97,8035.36,7.62939e-006],[[122,2],[141,2]]], [131,[2518.5,5096.66,0],[[123,2],[142,2],[143,2]]], +[132,[3646.2,4610.35,1.52588e-005],[[124,2],[144,2]]], [133,[3636.8,4752.25,0],[[124,2]]], [134,[5375.5,3983.12,0],[[125,2],[145,2]]], [135,[6296.42,5171.17,0],[[126,2],[146,2]]], [136,[6167.22,5207.56,0],[[126,2],[147,2],[136,2],[148,2]]], [137,[6187.83,5275.48,0],[[137,2]]], +[138,[6119.63,5641.26,0],[[127,2],[149,2],[150,2]]], [139,[6238.92,5984.74,0],[[128,2],[151,2]]], [140,[6542.52,7365.51,0],[[129,2],[152,2]]], [141,[5837.61,8126.5,0],[[130,2],[153,2]]], [142,[2455.85,5120.04,0],[[131,2],[154,2]]], [143,[2491.04,5009.09,0],[[131,2],[155,2]]], +[144,[3658.95,4584.57,0],[[132,2],[144,2],[156,2]]], [145,[5413.77,3901.69,-1.01725e-005],[[134,2],[157,2],[145,2],[158,2]]], [146,[6425.63,5134.04,0],[[135,2],[159,2]]], [147,[6162.06,5225.08,0],[[136,2]]], [148,[6263.36,5074.03,0],[[136,2],[160,2]]], [149,[6085.9,5549.25,0],[[138,2],[161,2],[149,2],[162,2]]], +[150,[6237.57,5613.28,0],[[138,2],[163,2]]], [151,[6335.47,5990.87,0],[[139,2],[164,2]]], [152,[6680.74,7366.52,0],[[140,2],[165,2]]], [153,[5822.01,8155.9,5.08626e-006],[[141,2],[166,2],[153,2]]], [154,[2445.41,5127.37,0],[[142,2],[154,2],[167,2]]], [155,[2428.14,4886.97,-1.52588e-005],[[143,2],[168,2]]], +[156,[3719.48,4530.35,0],[[144,2],[169,2]]], [157,[5414.68,3911.52,0],[[145,2]]], [158,[5380.96,3807.98,3.05176e-005],[[145,2],[170,2]]], [159,[6509.84,5118.09,3.05176e-005],[[146,2],[171,2]]], [160,[6321.78,5019.62,0],[[148,2]]], [161,[6137.11,5398.1,3.05176e-005],[[137,2],[162,2],[149,2]]], +[162,[6102.62,5485.04,-1.52588e-005],[[161,2],[149,2]]], [163,[6379.79,5607.16,0],[[150,2],[172,2]]], [164,[6450.48,5975.89,0],[[151,2],[173,2]]], [165,[6751.17,7344.91,0],[[152,2],[174,2]]], [166,[5788.87,8281.93,0],[[153,2],[175,2]]], [167,[2384.96,5198.25,0],[[154,2],[176,2]]], +[168,[2352.05,4747.39,0],[[155,2],[177,2]]], [169,[3742.59,4467.41,5.08626e-006],[[156,2],[178,2],[179,2],[169,2]]], [170,[5325.87,3737.7,0],[[158,2],[180,2]]], [171,[6638.53,5071.8,0],[[159,2],[181,2]]], [172,[6476.65,5637.42,0],[[163,2],[182,2]]], [173,[6554.95,5983.34,0],[[164,2],[183,2]]], +[174,[6788.86,7282.91,0],[[165,2],[184,2]]], [175,[5745.27,8414.01,0],[[166,2],[185,2]]], [176,[2324.05,5331.68,0],[[167,2],[186,2]]], [177,[2317.94,4648.25,-1.52588e-005],[[168,2],[187,2]]], [178,[3684.12,4376.5,0],[[169,2],[188,2],[189,2]]], [179,[3745.73,4481.52,0],[[169,2]]], +[180,[5226.61,3658.75,0],[[170,2],[190,2]]], [181,[6804.78,5025.2,0],[[171,2],[191,2]]], [182,[6569.07,5670.11,-7.62939e-006],[[172,2],[192,2],[193,2],[182,2]]], [183,[6662.91,6042.56,0],[[173,2],[194,2]]], [184,[6826.15,7177.13,0],[[174,2],[195,2]]], [185,[5682.93,8546.2,0],[[175,2],[196,2]]], +[186,[2283.1,5411.19,-1.52588e-005],[[176,2],[197,2]]], [187,[2232.93,4527.33,0],[[177,2],[198,2]]], [188,[3571.86,4285.24,0],[[188,2]]], [189,[3757.77,4360.16,0],[[178,2],[199,2]]], [190,[5173.35,3598.46,-3.05176e-005],[[180,2],[200,2]]], [191,[6861.31,5003.03,-7.62939e-006],[[181,2],[201,2],[191,2],[202,2]]], +[192,[6627.54,5655.31,-3.05176e-005],[[182,2]]], [193,[6556.77,5670.66,1.01725e-005],[[182,2]]], [194,[6730.92,6059.73,0],[[183,2],[203,2],[204,2]]], [195,[6811.3,7061.85,0],[[184,2],[205,2]]], [196,[5618.19,8684.25,7.62939e-006],[[185,2],[206,2]]], [197,[2221.82,5452.92,0],[[186,2],[207,2],[208,2]]], +[198,[2155.24,4437.79,0],[[187,2],[209,2]]], [199,[3872.19,4376.01,0],[[189,2]]], [200,[5168.13,3551.2,0],[[190,2],[212,2],[200,2],[213,2]]], [201,[7014.04,4962.51,0],[[191,2],[214,2]]], [202,[6805.48,4876.7,3.05176e-005],[[191,2],[215,2]]], [203,[6814.36,6033.47,0],[[194,2],[216,2]]], +[204,[6740.71,6247.69,-3.05176e-005],[[194,2],[217,2]]], [205,[6773.01,6909.11,-1.52588e-005],[[195,2],[218,2]]], [206,[5572.5,8819.14,0],[[196,2],[219,2]]], [207,[2103.31,5502.15,-1.52588e-005],[[197,2],[208,2],[207,2],[220,2]]], [208,[2118.17,5489.11,0],[[207,2],[232,2],[208,2],[197,2]]], [209,[2055.05,4323.93,0],[[198,2],[221,2]]], +[210,[3536.39,4176.02,0],[[188,2],[211,2]]], [211,[3530.92,4147.12,0],[[210,2],[222,2],[223,2]]], [212,[5166.47,3568.72,0],[[200,2]]], [213,[5187.57,3427.98,0],[[200,2],[224,2]]], [214,[7147.28,4920.36,0],[[201,2],[225,2]]], [215,[6718.76,4761.88,0],[[202,2],[226,2]]], +[216,[6885.75,5973.26,0],[[203,2],[227,2]]], [217,[6758.62,6401.54,0],[[204,2],[228,2]]], [218,[6736.76,6777.58,0],[[205,2],[229,2]]], [219,[5529.52,8915.64,0],[[206,2],[230,2],[231,2]]], [220,[2019.14,5557.46,-7.62939e-006],[[220,2],[233,2]]], [221,[1979.99,4219.5,0],[[209,2],[234,2]]], +[222,[3564.25,3995.48,0],[[211,2],[235,2]]], [223,[3440.66,4093.9,0],[[211,2],[236,2]]], [224,[5170.27,3392.92,-2.03451e-005],[[213,2],[237,2],[224,2],[238,2]]], [225,[7273.04,4901.23,0],[[214,2],[239,2]]], [226,[6651.48,4678.95,0],[[215,2],[240,2]]], [227,[6991.64,5863.22,0],[[216,2],[241,2]]], +[228,[6762.13,6526.21,3.05176e-005],[[217,2],[229,2]]], [229,[6743.15,6660.01,3.05176e-005],[[218,2],[228,2]]], [230,[5498.34,9041.99,0],[[219,2],[242,2]]], [231,[5661.45,8943.15,-7.62939e-006],[[219,2],[243,2]]], [232,[2150.95,5477.21,-5.08626e-006],[[208,2]]], [233,[1923.56,5571.43,0],[[220,2],[233,2],[244,2]]], +[234,[1950.83,4126.2,0],[[221,2],[245,2]]], [235,[3606.57,3947.59,0],[[222,2],[246,2]]], [236,[3410,4049.18,0],[[223,2],[247,2]]], [237,[5178.79,3403.62,-3.05176e-005],[[224,2]]], [238,[5025.98,3294.83,0],[[224,2],[248,2]]], [239,[7385.84,4891.9,0],[[225,2],[249,2]]], +[240,[6592.14,4556.85,0],[[226,2],[240,2]]], [241,[7074.96,5809.85,0],[[227,2],[250,2]]], [242,[5503.53,9127.81,0],[[230,2],[251,2]]], [243,[5685.8,8958.22,-3.8147e-006],[[231,2],[252,2],[253,2],[254,2]]], [244,[1855.4,5637.04,0],[[233,2],[255,2]]], [245,[1913.54,4001.56,0],[[234,2],[256,2]]], +[246,[3698.6,3866.77,3.05176e-005],[[235,2],[257,2]]], [247,[3386.32,3957.15,0],[[236,2],[258,2]]], [248,[4907.41,3230.22,-6.10352e-005],[[238,2],[259,2]]], [249,[7504.69,4906.35,0],[[239,2],[260,2],[249,2],[261,2]]], [250,[7205.12,5749.51,3.05176e-005],[[241,2],[262,2]]], [251,[5523.71,9245.82,0],[[242,2],[263,2]]], +[252,[5887.42,8991.55,-7.62939e-006],[[243,2],[264,2]]], [253,[5729.53,8813.19,0],[[243,2],[265,2]]], [254,[5654.28,9127.26,0],[[243,2],[266,2]]], [255,[1789.51,5668.9,0],[[244,2],[267,2]]], [256,[1879.3,3894.52,0],[[245,2],[268,2]]], [257,[3795.66,3752.58,0],[[246,2],[269,2]]], +[258,[3361.3,3853.82,0],[[247,2],[270,2]]], [259,[4769.4,3151.01,0],[[248,2],[271,2]]], [260,[7494.91,4890.66,0],[[249,2]]], [261,[7538.98,4970.67,-1.01725e-005],[[249,2],[272,2],[261,2]]], [262,[7374.63,5683.42,3.05176e-005],[[250,2],[273,2]]], [263,[5526.73,9313.78,-1.90735e-006],[[251,2],[274,2],[263,2],[275,2],[266,2]]], +[264,[6023.14,9011.71,0],[[252,2],[276,2]]], [265,[5774.79,8675.44,7.62939e-006],[[253,2],[277,2]]], [266,[5655.94,9260.67,0],[[254,2],[263,2],[275,2]]], [267,[1686.39,5674.32,-1.52588e-005],[[255,2],[278,2]]], [268,[1844.92,3854.2,5.08626e-006],[[256,2],[279,2],[280,2]]], [269,[3840.11,3658.23,0],[[257,2],[281,2]]], +[270,[3340.7,3774.58,3.05176e-005],[[258,2],[282,2]]], [271,[4740.71,3108.98,2.03451e-005],[[259,2],[283,2],[271,2],[284,2]]], [272,[7652.54,5021.8,0],[[261,2],[285,2]]], [273,[7523.1,5645.91,0],[[262,2],[286,2]]], [274,[5513.29,9481.92,0],[[263,2],[287,2]]], [275,[5629.93,9303.28,0],[[263,2],[266,2]]], +[276,[6135.11,8999.14,0],[[264,2],[288,2]]], [277,[5793.82,8562.12,0],[[265,2]]], [278,[1620.24,5690.26,0],[[267,2],[289,2]]], [279,[1716.14,3718.8,0],[[268,2],[290,2]]], [280,[1817.94,3861,0],[[268,2],[280,2],[291,2]]], [281,[3857.88,3508.72,0],[[269,2],[292,2]]], +[282,[3280.51,3659.75,3.05176e-005],[[270,2],[293,2]]], [283,[4746.33,3125.64,3.05176e-005],[[271,2]]], [284,[4701.1,3021.78,0],[[271,2],[294,2]]], [285,[7793.15,5060.47,-3.05176e-005],[[272,2],[295,2]]], [286,[7675.79,5619.12,0],[[273,2],[296,2]]], [287,[5533.35,9579.79,0],[[274,2],[297,2]]], +[288,[6265.04,8974.17,2.54313e-006],[[276,2],[298,2],[288,2],[299,2]]], [289,[1595.2,5695.1,-5.08626e-006],[[278,2],[300,2],[301,2]]], [290,[1631.17,3642.21,0],[[279,2],[302,2],[303,2],[290,2]]], [291,[1697.51,3781.89,0],[[280,2],[304,2]]], [292,[3887.54,3377.12,0],[[281,2],[305,2]]], [293,[3198.5,3547.87,-3.05176e-005],[[282,2]]], +[294,[4623.98,2951.15,0],[[284,2],[306,2]]], [295,[7910.41,5093.94,0],[[285,2],[307,2]]], [296,[7811.83,5594.06,0],[[286,2],[308,2]]], [297,[5577.57,9733.27,0],[[287,2],[309,2]]], [298,[6243.63,8976.5,3.8147e-006],[[288,2]]], [299,[6442.34,8976.67,7.62939e-006],[[288,2],[310,2]]], +[300,[1460.14,5782.16,0],[[289,2],[311,2],[312,2]]], [301,[1500.98,5541.34,0],[[289,2],[313,2]]], [302,[1528.82,3537.12,-1.01725e-005],[[290,2],[314,2],[315,2],[302,2]]], [303,[1645.27,3656.27,0],[[290,2]]], [304,[1539.32,3680.6,-1.52588e-005],[[291,2],[316,2]]], [305,[3932,3249.72,3.05176e-005],[[292,2],[317,2]]], +[306,[4505.4,2886.36,6.10352e-005],[[294,2],[318,2]]], [307,[8014.69,5101.32,0],[[295,2],[319,2]]], [308,[7948.61,5568.78,0],[[296,2],[320,2]]], [309,[5604.25,9861.81,0],[[297,2],[321,2],[322,2]]], [310,[6542.61,8991.83,-7.62939e-006],[[299,2],[323,2]]], [311,[1316.1,5854,0],[[300,2],[324,2]]], +[312,[1480.7,5860.69,0],[[300,2],[325,2]]], [313,[1429.26,5463.59,0],[[301,2],[326,2]]], [314,[1417.18,3512.07,0],[[302,2],[327,2],[328,2]]], [315,[1544.57,3541.67,-7.62939e-006],[[302,2]]], [316,[1441.2,3644.88,0],[[304,2],[329,2]]], [317,[3982.37,3167.81,3.05176e-005],[[305,2],[330,2]]], +[318,[4384.03,2814.26,0],[[306,2],[331,2]]], [319,[8126.75,5085.09,0],[[307,2],[332,2]]], [320,[8087.85,5544.81,0],[[308,2],[333,2]]], [321,[5471.2,9897.56,7.62939e-006],[[309,2],[334,2]]], [322,[5680.56,9953.35,-1.90735e-006],[[309,2],[335,2],[336,2],[337,2]]], [323,[6622.4,8967.04,0],[[310,2],[338,2]]], +[324,[1245.88,5864.06,0],[[311,2],[339,2]]], [325,[1466.86,5980.12,-3.05176e-005],[[312,2],[340,2]]], [326,[1326.76,5398.88,0],[[313,2],[341,2]]], [327,[1334.9,3452.84,1.01725e-005],[[314,2],[342,2],[343,2],[327,2]]], [328,[1420.02,3548.43,0],[[314,2],[328,2],[344,2]]], [329,[1352.22,3702.91,0],[[316,2],[345,2]]], +[330,[4069.35,3065.01,0],[[317,2],[346,2]]], [331,[4291.3,2781.33,0],[[318,2],[347,2]]], [332,[8222.17,5097.09,3.05176e-005],[[319,2],[348,2]]], [333,[8166.82,5525.33,0],[[320,2],[349,2]]], [334,[5340.13,9890.63,0],[[321,2],[350,2]]], [335,[5782.34,10088.1,0],[[322,2],[351,2]]], +[336,[5600.65,10001,2.54313e-006],[[322,2],[352,2],[353,2]]], [337,[5749.22,9885.6,-2.54313e-006],[[322,2],[337,2],[354,2]]], [338,[6772.48,8928.69,-7.62939e-006],[[323,2],[355,2]]], [339,[1135.94,5837.54,0],[[324,2],[356,2]]], [340,[1456.47,6133.64,0],[[325,2],[357,2]]], [341,[1195.91,5332.68,0],[[326,2],[358,2]]], +[342,[1216.19,3310.43,-1.52588e-005],[[327,2],[359,2]]], [343,[1355.14,3473.06,5.08626e-006],[[327,2]]], [344,[1433.89,3589.3,0],[[328,2]]], [345,[1274,3786.08,-3.05176e-005],[[329,2],[360,2]]], [346,[4075.03,3032.1,0],[[330,2],[361,2],[362,2],[346,2]]], [347,[4209.01,2849.58,0],[[331,2],[363,2]]], +[348,[8344.29,5130.55,0],[[332,2],[364,2]]], [349,[8227.98,5485.24,0],[[333,2],[365,2]]], [350,[5203.39,9874.92,7.62939e-006],[[334,2],[366,2]]], [351,[5844.91,10201.1,0],[[335,2],[367,2]]], [352,[5594.94,10050.9,0],[[336,2],[368,2]]], [353,[5436.32,10006.1,0],[[336,2],[369,2]]], +[354,[5841.64,9852.44,7.62939e-006],[[337,2],[370,2]]], [355,[6799.42,8922.58,-2.54313e-006],[[338,2],[371,2],[372,2]]], [356,[1037.98,5792.29,0],[[339,2],[373,2]]], [357,[1469.17,6258.67,0],[[340,2],[374,2]]], [358,[1122.74,5285.44,-3.05176e-005],[[341,2],[375,2]]], [359,[1095.42,3205.57,0],[[342,2],[376,2]]], +[360,[1234.12,3868.93,0],[[345,2],[377,2]]], [361,[4089.64,2922.08,0],[[346,2],[363,2]]], [362,[4074.91,3048.83,0],[[346,2]]], [363,[4108.06,2871.2,-4.06901e-005],[[347,2],[361,2],[378,2]]], [364,[8427.31,5167.14,0],[[348,2],[379,2]]], [365,[8254.82,5476.34,-1.01725e-005],[[349,2],[380,2],[381,2],[365,2],[382,2]]], +[366,[5091.87,9861.17,0],[[350,2],[383,2]]], [367,[5897.41,10341.9,-7.62939e-006],[[351,2],[384,2]]], [368,[5537.06,10148,0],[[352,2],[385,2]]], [369,[5291.41,9998.19,-7.62939e-006],[[353,2],[386,2]]], [370,[5902.26,9787.42,0],[[354,2]]], [371,[6849.6,8922.52,0],[[355,2],[387,2],[388,2]]], +[372,[6767.67,8839.95,0],[[355,2],[389,2]]], [373,[934.945,5728.16,0],[[356,2],[390,2]]], [374,[1490.5,6348.59,-3.05176e-005],[[357,2],[391,2]]], [375,[1038.1,5187.42,0],[[358,2],[392,2]]], [376,[1024.27,3156.91,0],[[359,2],[393,2]]], [377,[1150.72,3992.77,0],[[360,2],[394,2]]], +[378,[4115.36,2741.71,0],[[363,2],[395,2]]], [379,[8487.32,5173.98,-3.05176e-005],[[364,2],[396,2]]], [380,[8347.61,5479.69,0],[[380,2],[382,2]]], [381,[8246.63,5477.84,0],[[365,2]]], [382,[8331.05,5481.88,-3.05176e-005],[[380,2],[430,2],[382,2],[365,2]]], [383,[4969.72,9835.48,0],[[366,2],[397,2]]], +[384,[5921.73,10388.6,1.90735e-006],[[367,2],[398,2],[384,2],[399,2]]], [385,[5485.24,10190.7,0],[[368,2],[400,2],[401,2],[385,2]]], [386,[5114.9,9981.1,-7.62939e-006],[[369,2],[402,2]]], [387,[6962.88,8858.89,0],[[371,2],[403,2]]], [388,[6897.24,9048.06,0],[[371,2],[404,2]]], [389,[6761.26,8819.42,0],[[372,2]]], +[390,[895.783,5714.25,0],[[373,2],[390,2],[405,2]]], [391,[1479.72,6404.98,-3.05176e-005],[[374,2],[406,2]]], [392,[950.392,5044.34,0],[[375,2],[407,2]]], [393,[939.583,3124.69,0],[[376,2],[408,2]]], [394,[1046.7,4134.86,-3.05176e-005],[[377,2],[409,2]]], [395,[4140.59,2625.31,0],[[378,2],[410,2]]], +[396,[8573.88,5147.31,0],[[379,2],[411,2]]], [397,[4855.34,9799.38,-7.62939e-006],[[383,2],[414,2]]], [398,[5986.92,10571,-7.62939e-006],[[384,2],[415,2]]], [399,[5987.06,10367.4,0],[[399,2],[416,2],[384,2]]], [400,[5399.23,10216.4,-7.62939e-006],[[385,2],[417,2]]], [401,[5498.75,10187.8,0],[[385,2]]], +[402,[4981.77,9959.98,0],[[386,2],[418,2]]], [403,[7082.97,8779.07,0],[[387,2],[419,2]]], [404,[6940.7,9182.53,0],[[388,2],[420,2]]], [405,[840.204,5710.42,-1.01725e-005],[[390,2],[421,2],[405,2],[422,2]]], [406,[1434.1,6525.94,0],[[391,2],[423,2]]], [407,[865.95,4916.26,0],[[392,2],[424,2]]], +[408,[847.378,3067.52,-1.52588e-005],[[393,2],[425,2]]], [409,[969.236,4206.7,0],[[394,2],[426,2]]], [410,[4134.06,2566.46,-6.10352e-005],[[395,2],[427,2]]], [411,[8673.27,5145.13,0],[[396,2],[428,2]]], [412,[8490.34,5411.71,0],[[380,2],[413,2]]], [413,[8563.49,5394.42,0],[[412,2],[429,2]]], +[414,[4731.59,9745.55,0],[[397,2],[431,2]]], [415,[6043.79,10717.9,0],[[398,2],[432,2]]], [416,[5971.29,10368,0],[[399,2]]], [417,[5357.73,10263.9,0],[[400,2],[435,2]]], [418,[4859.57,9932.94,0],[[402,2],[436,2]]], [419,[7230.54,8657.03,0],[[403,2],[437,2]]], +[420,[7007.55,9297.6,0],[[404,2],[438,2]]], [421,[861.145,5714.08,0],[[405,2]]], [422,[664.492,5648.79,0],[[405,2],[439,2]]], [423,[1419.71,6631.28,0],[[406,2],[440,2]]], [424,[765.176,4804.51,0],[[407,2],[441,2]]], [425,[770.448,3009.31,0],[[408,2],[442,2]]], +[426,[848.917,4275.84,0],[[409,2],[443,2]]], [427,[4110.04,2519.43,0],[[427,2]]], [428,[8714.92,5151.2,-2.03451e-005],[[411,2],[444,2],[445,2]]], [429,[8711.84,5413.97,0],[[413,2],[446,2]]], [430,[8307.59,5478.82,1.01725e-005],[[382,2]]], [431,[4643.65,9700.57,0],[[414,2],[447,2],[448,2]]], +[432,[6105.6,10887.4,-7.62939e-006],[[415,2],[449,2]]], [433,[6120.14,10460,0],[[399,2],[434,2]]], [434,[6157.67,10496.7,0],[[433,2]]], [435,[5343.82,10294.1,0],[[417,2],[450,2],[451,2],[452,2]]], [436,[4739.05,9900.73,0],[[418,2],[453,2]]], [437,[7305.95,8563.92,0],[[419,2],[454,2]]], +[438,[7069.69,9350.86,0],[[420,2],[455,2],[456,2]]], [439,[537.93,5588.79,0],[[422,2],[457,2]]], [440,[1398.23,6693.06,0],[[423,2],[458,2]]], [441,[685.333,4690.03,0],[[424,2],[459,2]]], [442,[674.369,2904.36,0],[[425,2],[460,2]]], [443,[749.754,4358.69,3.05176e-005],[[426,2],[461,2]]], +[444,[8727.85,5013.53,0],[[428,2],[464,2]]], [445,[8798.24,5233.66,3.05176e-005],[[428,2],[465,2]]], [446,[8790.62,5405.76,0],[[429,2],[466,2]]], [447,[4510.38,9635.36,7.62939e-006],[[431,2],[467,2]]], [448,[4678.17,9546.24,0],[[431,2],[468,2]]], [449,[6119.9,10909.2,-5.08626e-006],[[432,2],[469,2],[470,2]]], +[450,[5430.86,10336.4,2.54313e-006],[[435,2],[450,2],[471,2]]], [451,[5160.69,10253.8,0],[[435,2],[472,2]]], [452,[5270.6,10390.3,0],[[435,2],[473,2]]], [453,[4699.26,9916.83,0],[[436,2],[453,2],[474,2],[475,2]]], [454,[7400.84,8399.32,0],[[437,2],[476,2]]], [455,[7136.37,9346.96,5.08626e-006],[[438,2],[477,2],[455,2]]], +[456,[7041.73,9342.62,0],[[438,2]]], [457,[432.339,5553.86,0],[[439,2],[478,2]]], [458,[1339.58,6759.92,0],[[440,2],[479,2]]], [459,[646.938,4582.39,0],[[441,2],[461,2]]], [460,[603.078,2848.35,0],[[442,2],[480,2]]], [461,[663.931,4465.04,0],[[461,2]]], +[462,[4139.79,2386.35,0],[[427,2],[463,2]]], [463,[4189.21,2256.81,0],[[462,2],[481,2]]], [464,[8735.65,4875.7,0],[[444,2],[482,2]]], [465,[8909.11,5329.83,0],[[445,2],[483,2],[465,2],[466,2]]], [466,[8864.7,5367.36,-3.05176e-005],[[446,2],[465,2]]], [467,[4389.92,9559.71,0],[[447,2],[484,2]]], +[468,[4691.77,9514.65,-5.08626e-006],[[448,2],[485,2],[486,2]]], [469,[6177.22,11059.6,0],[[449,2],[487,2]]], [470,[6218.59,10858.4,-7.62939e-006],[[449,2],[488,2]]], [471,[5526.52,10374.6,7.62939e-006],[[450,2],[489,2]]], [472,[5041.98,10235.6,-7.62939e-006],[[451,2],[490,2]]], [473,[5181.99,10451.3,0],[[452,2],[491,2]]], +[474,[4621.58,9893.29,2.54313e-006],[[453,2],[492,2],[493,2]]], [475,[4746.56,9993.59,0],[[453,2],[494,2]]], [476,[7483.33,8267.28,0],[[454,2],[495,2]]], [477,[7284.12,9405.28,-7.62939e-006],[[455,2],[496,2]]], [478,[331.562,5612.58,0],[[457,2],[497,2],[478,2],[498,2]]], [479,[1233.07,6857.37,0],[[458,2],[499,2]]], +[480,[513.258,2820.22,0],[[460,2],[500,2]]], [481,[4220.8,2162.43,0],[[463,2],[501,2]]], [482,[8738.05,4795.24,0],[[464,2],[502,2]]], [483,[8962.34,5390.14,0],[[465,2],[503,2]]], [484,[4278.87,9491.91,7.62939e-006],[[467,2],[504,2]]], [485,[4545.4,9434.83,0],[[468,2],[505,2]]], +[486,[4767.14,9538.89,-1.01725e-005],[[468,2],[506,2],[486,2]]], [487,[6218.49,11121,-9.53674e-007],[[469,2],[507,2],[508,2],[509,2]]], [488,[6246.84,10828.6,0],[[470,2],[488,2],[510,2]]], [489,[5584.77,10432.2,0],[[471,2],[511,2]]], [490,[4981.05,10245.7,7.62939e-006],[[472,2],[512,2]]], [491,[5156.48,10467.4,0],[[473,2],[491,2],[513,2]]], +[492,[4484.58,9794.77,0],[[474,2],[514,2]]], [493,[4595.53,10005.5,7.62939e-006],[[474,2],[515,2]]], [494,[4794.41,10094.3,0],[[475,2],[516,2]]], [495,[7570.48,8171.23,0],[[476,2],[517,2]]], [496,[7304.61,9425.57,-2.54313e-006],[[477,2],[518,2],[519,2]]], [497,[351.536,5617.87,0],[[478,2]]], +[498,[144.539,5537.76,0],[[478,2],[520,2]]], [499,[1136.71,6972.29,0],[[479,2],[521,2]]], [500,[412.061,2819.13,0],[[480,2],[522,2]]], [501,[4217.96,2141.3,0],[[481,2],[523,2],[501,2]]], [502,[8716.12,4712.48,3.05176e-005],[[482,2],[524,2]]], [503,[8981.68,5476.65,0],[[483,2],[525,2]]], +[504,[4241.68,9492.84,0],[[484,2],[526,2],[527,2]]], [505,[4428.2,9371.03,0],[[485,2],[528,2]]], [506,[4875.61,9519.63,0],[[486,2],[529,2]]], [507,[6296.93,11245.2,-2.54313e-006],[[487,2],[530,2],[531,2]]], [508,[6138.77,11152.3,0],[[487,2],[532,2],[533,2]]], [509,[6294.77,11024.4,-3.8147e-006],[[509,2]]], +[510,[6262.29,10711.1,0],[[488,2],[534,2]]], [511,[5671.96,10570.8,0],[[489,2],[535,2]]], [512,[4946.17,10247.5,0],[[490,2],[516,2],[512,2]]], [513,[5123.19,10516,7.62939e-006],[[491,2],[536,2]]], [514,[4369.08,9714.8,0],[[492,2],[526,2]]], [515,[4568.09,10074.8,0],[[493,2],[537,2]]], +[516,[4827.22,10172,0],[[494,2],[512,2],[516,2]]], [517,[7694.22,8076.51,0],[[495,2],[538,2]]], [518,[7376.58,9361.11,7.62939e-006],[[496,2],[539,2]]], [519,[7275.4,9502.48,0],[[519,2],[540,2],[496,2]]], [520,[9.66501,5500.15,0],[[498,2]]], [521,[1133.31,7016.98,-1.01725e-005],[[499,2],[541,2],[542,2],[521,2]]], +[522,[273.025,2837.14,3.05176e-005],[[500,2],[543,2]]], [523,[4177.95,2059.79,0],[[501,2],[544,2]]], [524,[8721.21,4642.37,3.05176e-005],[[502,2],[545,2]]], [525,[8984.17,5608.04,0],[[503,2],[546,2]]], [526,[4258.55,9665.1,0],[[504,2],[514,2],[547,2],[526,2]]], [527,[4097.57,9396.6,-7.62939e-006],[[504,2],[548,2]]], +[528,[4402.68,9364.62,-5.08626e-006],[[505,2],[549,2],[550,2]]], [529,[4998.31,9457.05,3.8147e-006],[[506,2],[551,2],[529,2],[552,2]]], [530,[6325.57,11291.6,-1.27157e-006],[[507,2],[553,2],[554,2],[532,2]]], [531,[6329.54,11235.7,-2.54313e-006],[[507,2],[555,2],[556,2],[531,2]]], [532,[6199.73,11287,1.27157e-006],[[508,2],[530,2],[554,2],[557,2],[532,2]]], [533,[6028.51,11007.8,0],[[508,2],[558,2]]], +[534,[6253.64,10589.5,0],[[510,2]]], [535,[5737.25,10675.9,0],[[511,2],[559,2]]], [536,[5091.45,10635.7,7.62939e-006],[[513,2],[560,2]]], [537,[4485.68,10175.5,0],[[515,2],[561,2]]], [538,[7812.58,8008.86,0],[[517,2],[562,2]]], [539,[7439.66,9331.48,0],[[518,2],[563,2]]], +[540,[7280.77,9485.04,-2.54313e-006],[[519,2]]], [541,[1191.75,7048.75,0],[[521,2],[566,2]]], [542,[1128.48,7000.35,-1.01725e-005],[[521,2]]], [543,[193.591,2828.45,-1.52588e-005],[[522,2],[567,2]]], [544,[4174.68,2042.09,0],[[544,2]]], [545,[8752.22,4592.1,0],[[524,2],[568,2]]], +[546,[8975.66,5749.7,0],[[525,2],[569,2]]], [547,[4287.37,9762.63,-7.62939e-006],[[526,2],[570,2]]], [548,[4010.89,9328.06,0],[[527,2],[571,2]]], [549,[4380.49,9326.83,0],[[528,2],[549,2],[572,2]]], [550,[4318.75,9366.54,5.08626e-006],[[528,2],[573,2],[550,2],[574,2]]], [551,[5113.16,9388.9,0],[[529,2]]], +[552,[5047.13,9564.35,0],[[529,2]]], [553,[6418.9,11407.7,-1.27157e-006],[[530,2],[575,2],[576,2]]], [554,[6236.03,11343.9,0],[[530,2],[532,2],[577,2]]], [555,[6407.02,11246.4,-2.54313e-006],[[531,2],[578,2],[555,2],[579,2]]], [556,[6317.11,11235.3,-1.90735e-006],[[531,2]]], [557,[6187.02,11267.2,1.90735e-006],[[532,2]]], +[558,[5955.2,10922.6,7.62939e-006],[[533,2],[559,2]]], [559,[5841.59,10816,-7.62939e-006],[[535,2],[558,2]]], [560,[5017.06,10786,-7.62939e-006],[[536,2],[580,2]]], [561,[4395.88,10276,0],[[537,2],[581,2]]], [562,[7933.98,7970.19,0],[[538,2],[582,2]]], [563,[7559.15,9309.93,0],[[539,2],[583,2]]], +[564,[7294.13,9635.23,0],[[519,2],[565,2]]], [565,[7355.23,9794.93,-7.62939e-006],[[564,2],[584,2]]], [566,[1300.9,7048.3,0],[[541,2],[585,2]]], [567,[86.5127,2789.12,0],[[543,2],[567,2]]], [568,[8834.54,4539.19,0],[[545,2],[588,2]]], [569,[8988.99,5829.19,0],[[546,2],[589,2]]], +[570,[4295.45,9839.33,0],[[547,2],[590,2]]], [571,[3930.73,9234.21,-1.52588e-005],[[548,2],[591,2]]], [572,[4459.38,9217.93,0],[[549,2],[592,2],[593,2]]], [573,[4333.84,9373.28,7.62939e-006],[[550,2]]], [574,[4188.49,9286.03,0],[[550,2],[594,2]]], [575,[6546.47,11490.8,0],[[553,2],[595,2]]], +[576,[6329.06,11481.6,0],[[553,2]]], [577,[6078.91,11456.4,0],[[554,2],[596,2]]], [578,[6386.52,11245,-1.90735e-006],[[555,2]]], [579,[6460.89,11244.7,0],[[555,2],[597,2],[579,2],[598,2]]], [580,[4930.88,10909,0],[[560,2],[599,2]]], [581,[4346.13,10370.9,0],[[561,2],[600,2]]], +[582,[8032.99,7927.64,0],[[562,2],[601,2]]], [583,[7695.22,9284.86,0],[[563,2],[602,2]]], [584,[7407.04,9917.31,0],[[565,2],[603,2]]], [585,[1425.93,7061.81,0],[[566,2],[604,2]]], [586,[4194.37,1931.68,0],[[544,2],[587,2]]], [587,[4186.34,1890.72,7.62939e-006],[[586,2],[605,2],[606,2],[587,2]]], +[588,[8914.59,4514.08,0],[[568,2],[607,2]]], [589,[9041.85,5910.21,1.52588e-005],[[569,2],[608,2]]], [590,[4277.54,9982.14,0],[[570,2],[609,2]]], [591,[3837.52,9101.25,0],[[571,2],[610,2]]], [592,[4394.09,9116.3,0],[[572,2],[611,2]]], [593,[4524.26,9188.98,0],[[572,2],[612,2]]], +[594,[4087.88,9242.67,0],[[574,2]]], [595,[6663.23,11558.6,0],[[575,2],[613,2]]], [596,[6037.46,11499.6,0],[[577,2],[614,2],[615,2]]], [597,[6540.12,11156,0],[[579,2],[616,2]]], [598,[6575.15,11364.7,0],[[579,2],[617,2]]], [599,[4832.22,11032.5,0],[[580,2],[618,2]]], +[600,[4293.26,10429.7,-3.8147e-006],[[581,2],[619,2]]], [601,[8167.91,7839.91,0],[[582,2],[620,2]]], [602,[7848.88,9240.99,0],[[583,2],[621,2]]], [603,[7460.43,10046.7,-7.62939e-006],[[584,2],[622,2]]], [604,[1568.05,7099.19,-3.05176e-005],[[585,2],[623,2]]], [605,[4137.44,1799.62,3.05176e-005],[[587,2],[624,2]]], +[606,[4193.59,1905.32,0],[[587,2]]], [607,[8982.34,4517.88,-3.05176e-005],[[588,2],[625,2]]], [608,[9118.89,5993.26,0],[[589,2],[626,2]]], [609,[4244.33,10060.5,0],[[590,2],[627,2]]], [610,[3760.55,8947.67,-1.52588e-005],[[591,2],[628,2]]], [611,[4346.19,9000.95,0],[[592,2],[629,2]]], +[612,[4643.1,9185.16,0],[[593,2],[630,2]]], [613,[6699.98,11579.2,-1.27157e-006],[[595,2],[631,2],[632,2]]], [614,[5941.05,11407.1,0],[[596,2],[633,2],[634,2],[614,2]]], [615,[6134.77,11610,0],[[596,2],[635,2]]], [616,[6551.69,11145.3,0],[[597,2],[616,2],[636,2]]], [617,[6693.5,11473,3.8147e-006],[[598,2],[637,2],[632,2]]], +[618,[4756.89,11141.3,0],[[599,2],[638,2]]], [619,[4279.24,10471.5,0],[[600,2],[639,2],[640,2],[619,2]]], [620,[8256.61,7784.09,-5.08626e-006],[[601,2],[641,2],[642,2]]], [621,[8025.45,9181.73,0],[[602,2],[643,2]]], [622,[7498.72,10159.4,7.62939e-006],[[603,2],[644,2]]], [623,[1681.69,7138.55,0],[[604,2],[645,2]]], +[624,[4094.87,1667.08,0],[[605,2],[646,2]]], [625,[9105.2,4558.3,0],[[607,2],[647,2]]], [626,[9169.44,6079.71,0],[[608,2],[648,2]]], [627,[4173.62,10121.9,0],[[609,2],[649,2]]], [628,[3744.5,8927.27,-5.08626e-006],[[610,2],[650,2],[651,2]]], [629,[4301.27,8947.15,0],[[611,2]]], +[630,[4714.98,9195.97,0],[[612,2]]], [631,[6740.03,11641.1,0],[[613,2],[652,2]]], [632,[6715.38,11563.5,-2.54313e-006],[[613,2],[617,2],[632,2],[637,2]]], [633,[5904.76,11325.4,0],[[614,2],[653,2],[654,2]]], [634,[5951.92,11421.1,0],[[614,2]]], [635,[6220.18,11698.7,0],[[615,2],[655,2]]], +[636,[6567.96,11124.2,-2.54313e-006],[[616,2],[636,2],[656,2]]], [637,[6720.64,11519.3,0],[[617,2],[632,2]]], [638,[4706.48,11252.6,0],[[618,2],[657,2]]], [639,[4252,10555.2,2.54313e-006],[[619,2],[658,2],[639,2],[659,2]]], [640,[4278.73,10456,-1.90735e-006],[[619,2]]], [641,[8388.72,7625.3,0],[[620,2],[660,2]]], +[642,[8321.37,7865.52,0],[[620,2],[661,2]]], [643,[8091.49,9112.82,-5.08626e-006],[[621,2],[662,2],[643,2],[663,2]]], [644,[7496.63,10234.8,7.62939e-006],[[622,2],[664,2]]], [645,[1734.06,7196.71,0],[[623,2],[665,2]]], [646,[4053.83,1527.59,-3.05176e-005],[[624,2],[666,2]]], [647,[9276.9,4604.76,3.05176e-005],[[625,2],[667,2],[668,2]]], +[648,[9178.79,6185.12,1.52588e-005],[[626,2],[669,2]]], [649,[4029.83,10213.5,0],[[627,2],[670,2]]], [650,[3685.52,8780.04,0],[[628,2],[671,2]]], [651,[3709.5,8992.06,-1.52588e-005],[[628,2],[672,2]]], [652,[6756.14,11760.8,-3.8147e-006],[[631,2],[673,2]]], [653,[5885.55,11296.3,0],[[633,2],[653,2],[674,2]]], +[654,[5965.27,11314.7,0],[[633,2]]], [655,[6230.65,11722,0],[[635,2],[655,2],[675,2]]], [656,[6586.15,11084.4,-7.62939e-006],[[636,2],[676,2]]], [657,[4676.38,11392.7,0],[[638,2],[677,2]]], [658,[4265.53,10540.7,1.90735e-006],[[639,2]]], [659,[4221.86,10663.8,0],[[639,2],[678,2]]], +[660,[8512.04,7506.98,0],[[641,2],[679,2]]], [661,[8368.03,7977.46,0],[[642,2],[680,2]]], [662,[8084.66,9138.61,0],[[643,2]]], [663,[8110.11,8935.24,1.52588e-005],[[643,2],[681,2]]], [664,[7447.48,10325,0],[[644,2],[682,2]]], [665,[1808.8,7310.92,-3.05176e-005],[[645,2],[683,2]]], +[666,[4046.89,1462.5,0],[[646,2],[684,2]]], [667,[9332.98,4566.11,0],[[647,2],[685,2],[667,2],[686,2]]], [668,[9338.72,4612.15,0],[[685,2],[647,2]]], [669,[9162.08,6338.96,1.52588e-005],[[648,2],[687,2]]], [670,[3965.17,10270.4,0],[[649,2],[688,2]]], [671,[3643.63,8656.2,1.52588e-005],[[650,2],[689,2]]], +[672,[3710.81,9124.1,0],[[651,2],[690,2]]], [673,[6749.51,11872,3.8147e-006],[[652,2],[691,2]]], [674,[5822.93,11221.2,0],[[653,2]]], [675,[6147.78,11848.5,0],[[655,2],[692,2]]], [676,[6717.37,11044.5,0],[[656,2],[693,2]]], [677,[4664.75,11518.6,0],[[657,2],[694,2]]], +[678,[4210.53,10690.2,0],[[659,2],[695,2],[696,2],[697,2]]], [679,[8610.92,7425.74,0],[[660,2],[698,2]]], [680,[8419.67,8086.17,0],[[661,2],[699,2]]], [681,[8127.62,8885.94,0],[[663,2],[700,2]]], [682,[7357.46,10435.2,0],[[664,2],[701,2]]], [683,[1907.69,7445.68,0],[[665,2],[702,2]]], +[684,[4068.74,1409.16,-3.05176e-005],[[666,2],[703,2]]], [685,[9362.27,4602.39,0],[[667,2],[668,2],[685,2]]], [686,[9193.05,4446.66,0],[[667,2],[704,2]]], [687,[9146.91,6484.87,0],[[669,2],[705,2]]], [688,[3941.74,10326.1,0],[[670,2],[706,2]]], [689,[3599.04,8513.59,0],[[671,2],[707,2]]], +[690,[3709.65,9238.39,0],[[672,2],[708,2]]], [691,[6732.61,12006,3.8147e-006],[[673,2],[709,2]]], [692,[6104.67,11858.8,0],[[675,2],[710,2],[692,2],[711,2]]], [693,[6820.37,11034.5,0],[[676,2],[712,2],[713,2]]], [694,[4669.08,11538.3,0],[[677,2],[714,2],[715,2]]], [695,[4304.44,10772.8,0],[[678,2],[716,2]]], +[696,[4103.44,10564.5,0],[[678,2],[717,2]]], [697,[4167.13,10797.9,0],[[678,2],[718,2]]], [698,[8708.45,7320.49,0],[[679,2],[719,2]]], [699,[8478.87,8152.66,0],[[680,2],[720,2]]], [700,[8218.35,8800.79,0],[[681,2],[721,2]]], [701,[7265.57,10537.4,7.62939e-006],[[682,2],[722,2]]], +[702,[1991.76,7558.6,0],[[683,2],[723,2]]], [703,[4155.01,1331.9,0],[[684,2],[724,2]]], [704,[9071.41,4346.22,0],[[686,2],[725,2]]], [705,[9122.45,6623.31,-1.52588e-005],[[687,2],[726,2]]], [706,[3957.33,10393.7,-3.8147e-006],[[688,2],[717,2]]], [707,[3542.92,8406.55,0],[[689,2],[727,2]]], +[708,[3673.28,9291.51,-5.08626e-006],[[690,2],[728,2],[729,2],[708,2]]], [709,[6739.17,12112.1,3.8147e-006],[[691,2],[730,2]]], [710,[6121.51,11859.1,0],[[692,2]]], [711,[5956.41,11830,0],[[692,2],[731,2],[732,2]]], [712,[6880.39,10991.4,2.54313e-006],[[693,2],[713,2],[712,2],[733,2]]], [713,[6866.95,11009.8,-7.62939e-006],[[712,2],[751,2],[713,2],[693,2]]], +[714,[4679.41,11690.7,0],[[694,2],[734,2]]], [715,[4810.16,11562.8,0],[[694,2],[735,2]]], [716,[4349.71,10839.2,3.8147e-006],[[695,2]]], [717,[4016.69,10481.7,0],[[696,2],[706,2]]], [718,[4104.04,10910.3,9.53674e-007],[[697,2],[736,2],[737,2],[738,2]]], [719,[8804.17,7223.18,-1.52588e-005],[[698,2],[739,2]]], +[720,[8527.03,8265.88,0],[[699,2],[740,2]]], [721,[8291.54,8713.48,0],[[700,2],[741,2]]], [722,[7194.84,10615.1,0],[[701,2],[742,2]]], [723,[2035.78,7644.17,0],[[702,2],[743,2]]], [724,[4249.15,1241.15,0],[[703,2],[744,2]]], [725,[8983.88,4290.07,0],[[704,2],[745,2]]], +[726,[9115.72,6724.77,1.52588e-005],[[705,2],[746,2]]], [727,[3451.86,8310.38,0],[[707,2],[747,2]]], [728,[3550.99,9362.47,0],[[708,2],[748,2]]], [729,[3693.5,9280.34,-1.52588e-005],[[708,2],[749,2],[729,2]]], [730,[6763.04,12154.4,0],[[730,2]]], [731,[5925.16,11892.5,0],[[711,2]]], +[732,[5837.66,11730.5,0],[[711,2],[750,2]]], [733,[6972.91,10906.8,0],[[712,2],[752,2]]], [734,[4691.6,11800.1,0],[[714,2],[753,2]]], [735,[4852.25,11557.4,2.54313e-006],[[715,2],[754,2],[755,2],[735,2]]], [736,[4171.42,11052.3,0],[[718,2],[756,2]]], [737,[4030.04,10780.5,3.8147e-006],[[718,2],[757,2]]], +[738,[3951.18,11003.3,0],[[718,2],[758,2]]], [739,[8840.33,7156.95,0],[[719,2],[759,2]]], [740,[8560.45,8318.38,0],[[720,2],[740,2],[760,2]]], [741,[8356.9,8645.92,0],[[721,2],[761,2]]], [742,[7153.88,10730.8,-7.62939e-006],[[722,2],[762,2]]], [743,[2039.06,7694.93,0],[[723,2],[763,2],[764,2]]], +[744,[4311.96,1159.49,0],[[724,2],[765,2]]], [745,[8907.5,4239.38,0],[[725,2],[766,2]]], [746,[9118.2,6750.69,5.08626e-006],[[726,2],[767,2],[768,2]]], [747,[3382.7,8221.77,0],[[727,2],[769,2]]], [748,[3471.33,9419.05,0],[[728,2],[770,2]]], [749,[3702.28,9262.29,-7.62939e-006],[[729,2]]], +[750,[5785.15,11666.9,0],[[732,2],[773,2]]], [751,[6850.06,11020.7,-2.54313e-006],[[713,2]]], [752,[7027.16,10826.6,0],[[733,2],[774,2],[762,2]]], [753,[4679.82,11871.9,0],[[734,2],[775,2]]], [754,[5025.16,11497.8,0],[[735,2],[776,2]]], [755,[4837.3,11562.7,3.8147e-006],[[735,2]]], +[756,[4194.77,11145.7,0],[[736,2],[777,2]]], [757,[3970.31,10675.9,0],[[737,2],[778,2]]], [758,[3848.27,11051.5,0],[[738,2],[779,2],[780,2]]], [759,[8887.19,7040.72,0],[[739,2],[767,2]]], [760,[8605.43,8340.28,-5.08626e-006],[[740,2],[781,2],[782,2]]], [761,[8412.93,8614.31,0],[[741,2],[783,2]]], +[762,[7145.73,10764.1,-5.08626e-006],[[742,2],[752,2],[784,2],[774,2]]], [763,[2176.24,7729.6,0],[[743,2],[785,2]]], [764,[1952.65,7792.94,0],[[743,2],[786,2]]], [765,[4334.82,1065.84,0],[[744,2],[787,2]]], [766,[8844.95,4152.84,0],[[745,2],[788,2]]], [767,[8990.69,6891.95,0],[[746,2],[759,2]]], +[768,[9243.08,6685.36,0],[[746,2],[789,2]]], [769,[3372.37,8212.53,0],[[747,2],[769,2],[790,2]]], [770,[3410.48,9512.04,7.62939e-006],[[748,2],[791,2]]], [771,[6883.53,12226.6,0],[[730,2],[772,2]]], [772,[6921.05,12289.2,0],[[771,2],[792,2]]], [773,[5723.77,11561,-7.62939e-006],[[750,2],[793,2]]], +[774,[7116.69,10767.2,0],[[752,2],[762,2],[774,2]]], [775,[4640.98,11989.3,0],[[753,2],[775,2],[794,2],[795,2]]], [776,[5126.45,11451.1,0],[[754,2],[796,2]]], [777,[4190.22,11277.9,0],[[756,2],[797,2]]], [778,[3899.99,10570.9,-3.8147e-006],[[757,2],[798,2]]], [779,[3688.99,11083.9,0],[[758,2],[799,2],[800,2]]], +[780,[3886.08,11155.2,0],[[758,2],[801,2]]], [781,[8581.64,8470.07,0],[[760,2],[802,2],[783,2]]], [782,[8691.46,8298.86,0],[[760,2],[803,2]]], [783,[8511.65,8588.21,0],[[761,2],[781,2],[804,2]]], [784,[7123.78,10939.1,-7.62939e-006],[[762,2],[805,2]]], [785,[2303.62,7756.34,0],[[763,2],[806,2]]], +[786,[1865.12,7855.12,-3.05176e-005],[[764,2],[807,2]]], [787,[4354.68,957.105,1.01725e-005],[[765,2],[787,2],[808,2]]], [788,[8791.06,4088.15,0],[[766,2],[809,2]]], [789,[9280.04,6654.46,0],[[768,2],[789,2],[810,2]]], [790,[3277.18,8155.78,0],[[769,2],[811,2]]], [791,[3354.51,9628.96,0],[[770,2],[812,2]]], +[792,[6957.81,12365.9,0],[[772,2],[813,2]]], [793,[5646.72,11474.2,0],[[773,2],[814,2]]], [794,[4571.5,11950.5,0],[[775,2],[815,2]]], [795,[4690.77,12094.8,0],[[775,2],[816,2]]], [796,[5250.22,11348.3,0],[[776,2],[817,2]]], [797,[4169.48,11406.2,0],[[777,2],[818,2]]], +[798,[3823.88,10501.8,-3.8147e-006],[[778,2],[819,2]]], [799,[3584.88,11097.2,7.62939e-006],[[779,2],[820,2]]], [800,[3665.76,10947.7,-7.62939e-006],[[779,2],[821,2]]], [801,[3895.97,11169.8,0],[[780,2]]], [802,[8550.51,8559.61,0],[[781,2],[822,2],[802,2]]], [803,[8756.47,8244.33,0],[[782,2],[823,2]]], +[804,[8546.5,8564.4,0],[[783,2]]], [805,[7103.75,11075.5,0],[[784,2],[824,2]]], [806,[2449.85,7789.76,-1.52588e-005],[[785,2],[825,2]]], [807,[1721.75,7892.19,0],[[786,2],[826,2]]], [808,[4412.62,878.5,0],[[787,2],[827,2]]], [809,[8686.71,4030.78,0],[[788,2],[828,2]]], +[810,[9329.53,6600.94,-1.01725e-005],[[789,2],[829,2],[810,2],[830,2]]], [811,[3241.18,8140.04,0],[[790,2],[831,2],[832,2]]], [812,[3275.07,9713.7,5.08626e-006],[[791,2],[833,2],[834,2],[812,2]]], [813,[7046.4,12454.1,0],[[792,2],[835,2]]], [814,[5551.95,11389.9,0],[[793,2],[836,2]]], [815,[4501.7,11934.8,0],[[794,2],[815,2],[837,2]]], +[816,[4699.67,12215.6,9.53674e-007],[[816,2]]], [817,[5326.81,11305.7,0],[[796,2],[838,2]]], [818,[4152.72,11526,0],[[797,2],[839,2]]], [819,[3710.38,10421.1,0],[[798,2],[840,2]]], [820,[3564.76,11098.8,0],[[799,2],[841,2],[820,2],[842,2]]], [821,[3676.28,10857.6,0],[[800,2],[843,2],[821,2],[844,2]]], +[822,[8554.4,8554.21,0],[[802,2]]], [823,[8817.2,8226.08,0],[[803,2],[845,2]]], [824,[7062,11193.9,0],[[805,2],[846,2]]], [825,[2583.74,7822.28,0],[[806,2],[847,2]]], [826,[1645.53,7894.02,0],[[807,2],[848,2],[826,2],[849,2]]], [827,[4401.32,812.961,0],[[808,2],[850,2],[851,2]]], +[828,[8574.6,3947.45,0],[[809,2],[852,2]]], [829,[9310.78,6611.14,-1.01725e-005],[[810,2]]], [830,[9450.62,6578.52,0],[[810,2],[853,2]]], [831,[3199.21,8074.1,5.08626e-006],[[811,2],[854,2],[831,2],[855,2]]], [832,[3181.13,8205.89,0],[[811,2]]], [833,[3205.9,9724.76,-7.62939e-006],[[833,2],[856,2],[812,2]]], +[834,[3283.67,9710.35,7.62939e-006],[[812,2]]], [835,[7075.36,12498.3,-2.54313e-006],[[813,2],[835,2],[857,2]]], [836,[5462.88,11329,0],[[814,2],[838,2]]], [837,[4380.19,11886,0],[[815,2],[858,2]]], [838,[5399.77,11303.9,0],[[817,2],[836,2]]], [839,[4145.16,11643.2,0],[[818,2],[861,2]]], +[840,[3593.7,10316.9,0],[[819,2],[862,2]]], [841,[3373.56,11081.4,0],[[820,2],[863,2]]], [842,[3579.41,11197.6,0],[[820,2],[864,2]]], [843,[3715.66,10728.4,7.62939e-006],[[821,2],[843,2]]], [844,[3768.05,10875,0],[[821,2]]], [845,[8899.84,8238.07,3.05176e-005],[[823,2],[865,2]]], +[846,[6996.47,11304,-3.8147e-006],[[824,2],[866,2]]], [847,[2712.76,7842.14,0],[[825,2],[867,2]]], [848,[1664.99,7895.47,0],[[826,2]]], [849,[1468.25,7891.8,-3.05176e-005],[[826,2],[868,2]]], [850,[4499.33,751.048,-1.01725e-005],[[827,2],[850,2],[869,2]]], [851,[4295.57,757.117,0],[[827,2],[870,2]]], +[852,[8467.66,3826.7,0],[[828,2],[871,2]]], [853,[9585.35,6544.44,0],[[830,2],[872,2]]], [854,[3209.1,8090.72,0],[[831,2]]], [855,[3166.88,8029.6,1.01725e-005],[[831,2],[855,2],[873,2]]], [856,[3225.35,9722.57,-5.08626e-006],[[833,2]]], [857,[7094.08,12621.7,0],[[835,2],[876,2]]], +[858,[4302.74,11865.3,0],[[837,2],[877,2],[861,2],[878,2]]], [859,[4643.23,12327.4,-4.76837e-007],[[816,2],[860,2]]], [860,[4612.52,12338.9,-3.17891e-007],[[859,2],[879,2],[880,2]]], [861,[4143.75,11750.9,-6.35783e-007],[[839,2],[858,2],[881,2],[882,2]]], [862,[3478.3,10196.8,0],[[840,2],[883,2]]], [863,[3238.13,11066.6,0],[[841,2],[884,2]]], +[864,[3620.45,11280,0],[[842,2],[864,2]]], [865,[8925.22,8256.28,1.52588e-005],[[865,2],[885,2]]], [866,[6977.64,11342.1,9.53674e-007],[[846,2],[886,2],[866,2],[887,2]]], [867,[2791.74,7863.56,0],[[847,2],[888,2],[889,2]]], [868,[1327.68,7899.65,3.05176e-005],[[849,2],[890,2]]], [869,[4613.04,708.787,0],[[850,2],[891,2]]], +[870,[4271.76,715.789,0],[[851,2],[892,2],[870,2],[893,2]]], [871,[8446.81,3790.93,1.01725e-005],[[852,2],[894,2],[895,2]]], [872,[9699.95,6504.01,-1.52588e-005],[[853,2],[896,2]]], [873,[3063.18,7947.94,0],[[855,2],[897,2]]], [874,[3134.88,9778.46,7.62939e-006],[[833,2],[875,2]]], [875,[3103.76,9852.33,0],[[874,2],[898,2]]], +[876,[7127.08,12710.7,0],[[857,2],[899,2]]], [877,[4211.92,11786,0],[[858,2],[900,2],[877,2]]], [878,[4245.76,11840.2,0],[[900,2],[858,2]]], [879,[4643.85,12465.1,0],[[860,2],[901,2]]], [880,[4586.42,12300.8,-1.58946e-007],[[860,2],[902,2],[903,2],[880,2]]], [881,[4103.48,11858.3,0],[[861,2],[904,2]]], +[882,[4202.74,11764,0],[[861,2]]], [883,[3384.4,10133.8,0],[[862,2],[905,2]]], [884,[3112.35,11006.4,0],[[863,2],[906,2]]], [885,[8996.48,8353.21,0],[[865,2],[907,2]]], [886,[6919.8,11428.5,0],[[866,2],[908,2]]], [887,[7149.47,11376.3,0],[[866,2],[909,2]]], +[888,[2875.36,7896.49,-5.08626e-006],[[867,2],[888,2],[897,2]]], [889,[2724.58,7958.91,1.52588e-005],[[867,2],[889,2]]], [890,[1182.02,7904.58,0],[[868,2],[910,2]]], [891,[4659.88,702.999,0],[[869,2],[911,2],[912,2]]], [892,[4275.08,729.185,0],[[870,2]]], [893,[4245.76,606.516,0],[[870,2],[913,2]]], +[894,[8252.54,3790.84,0],[[871,2],[914,2]]], [895,[8627.65,3776.2,0],[[871,2],[915,2]]], [896,[9838.58,6470.34,0],[[872,2],[916,2]]], [897,[2984.65,7916.03,0],[[873,2],[888,2]]], [898,[3093.94,9875.49,2.54313e-006],[[875,2],[917,2],[918,2]]], [899,[7182.68,12794.6,0],[[876,2],[919,2],[899,2]]], +[900,[4230.01,11828.2,-3.8147e-006],[[877,2],[878,2],[900,2]]], [901,[4654.48,12545.3,0],[[879,2],[920,2]]], [902,[4504.15,12224.6,0],[[880,2],[921,2]]], [903,[4593.57,12310.5,-2.38419e-007],[[880,2]]], [904,[4071.48,11971.4,0],[[881,2],[922,2]]], [905,[3324.32,10096.3,0],[[883,2],[923,2],[924,2]]], +[906,[3034.09,10961.6,0],[[884,2],[925,2],[906,2],[926,2]]], [907,[9122.61,8464.83,0],[[885,2],[927,2]]], [908,[6904.61,11549,0],[[886,2],[928,2]]], [909,[7176.38,11380.4,0],[[887,2],[909,2],[929,2]]], [910,[1074.86,7891.94,3.05176e-005],[[890,2],[930,2]]], [911,[4559.72,591.347,-3.05176e-005],[[891,2],[931,2]]], +[912,[4822.8,785.595,0],[[891,2],[932,2]]], [913,[4226.98,553.865,0],[[893,2],[933,2],[934,2]]], [914,[8212.46,3818.06,0],[[894,2],[935,2]]], [915,[8711.41,3753.54,0],[[895,2],[936,2]]], [916,[9964.39,6445.72,0],[[896,2],[937,2]]], [917,[3083.55,9952.97,1.90735e-006],[[898,2],[938,2],[923,2],[939,2]]], +[918,[3019.06,9855.96,0],[[898,2],[940,2]]], [919,[7173.14,12774.1,-1.90735e-006],[[899,2]]], [920,[4618.03,12672.1,0],[[901,2],[941,2]]], [921,[4395.49,12190.6,0],[[902,2],[942,2]]], [922,[4070.59,11985.3,0],[[904,2],[922,2],[943,2]]], [923,[3212.06,10038.5,-3.8147e-006],[[905,2],[917,2]]], +[924,[3372.28,10025.9,0],[[905,2],[944,2]]], [925,[3056.19,10973.5,0],[[906,2]]], [926,[2869.53,10901.5,0],[[906,2],[945,2]]], [927,[9221.84,8563.35,0],[[907,2],[946,2]]], [928,[6912.78,11642.8,0],[[908,2]]], [929,[7228.45,11385.4,0],[[909,2]]], +[930,[948.962,7845.56,0],[[910,2],[947,2]]], [931,[4483.76,550.406,0],[[911,2],[948,2]]], [932,[4959.6,831.982,0],[[912,2],[949,2]]], [933,[4290.92,534.796,3.05176e-005],[[913,2],[950,2],[948,2]]], [934,[4078.36,525.319,0],[[913,2],[951,2]]], [935,[8153.66,3892.14,0],[[914,2],[952,2]]], +[936,[8831.04,3663.22,3.05176e-005],[[915,2],[953,2]]], [937,[10127.9,6408.57,0],[[916,2],[954,2]]], [938,[2976.99,9949.85,3.8147e-006],[[917,2],[955,2],[956,2]]], [939,[3041.62,10119.1,0],[[917,2],[957,2]]], [940,[2978.16,9859.22,1.27157e-006],[[918,2],[940,2],[958,2]]], [941,[4578.25,12783.4,0],[[920,2]]], +[942,[4321.06,12134.2,0],[[921,2],[959,2]]], [943,[4083.52,12020.5,0],[[922,2],[960,2],[943,2]]], [944,[3439.2,9995.92,0],[[924,2],[961,2]]], [945,[2788.54,10868.3,0],[[926,2],[962,2]]], [946,[9265.47,8629.74,0],[[927,2],[963,2]]], [947,[807.617,7794.01,0],[[930,2],[964,2]]], +[948,[4388.25,506.74,0],[[931,2],[933,2],[950,2]]], [949,[5090.22,873.895,3.05176e-005],[[932,2],[965,2]]], [950,[4361.63,501.13,0],[[933,2],[948,2]]], [951,[3947.14,521.578,0],[[934,2],[966,2]]], [952,[8116.63,3870.85,-1.01725e-005],[[935,2],[952,2],[967,2]]], [953,[8916.56,3571.65,3.05176e-005],[[936,2],[968,2]]], +[954,[10256,6382.14,0],[[937,2],[969,2]]], [955,[2877.97,9943.99,0],[[938,2],[956,2]]], [956,[2888.3,9941.64,0],[[955,2],[938,2]]], [957,[3001.05,10214.9,0],[[939,2],[970,2]]], [958,[2913.14,9834.25,0],[[940,2],[971,2]]], [959,[4244.23,12103.8,0],[[942,2],[960,2]]], +[960,[4173.04,12086.5,-9.53674e-007],[[943,2],[959,2]]], [961,[3476.1,9987.05,-7.62939e-006],[[944,2]]], [962,[2700.84,10801.7,0],[[945,2],[972,2]]], [963,[9273.54,8740.28,0],[[946,2],[973,2]]], [964,[768.849,7764.64,0],[[947,2],[964,2],[974,2]]], [965,[5218.97,895.473,0],[[949,2],[975,2]]], +[966,[3850.68,516.921,0],[[951,2],[976,2]]], [967,[8035.93,3793.48,-3.05176e-005],[[952,2],[977,2]]], [968,[8936.87,3497.98,0],[[953,2],[978,2],[968,2],[979,2]]], [969,[10368.5,6371.04,-3.05176e-005],[[954,2],[980,2]]], [970,[2942.06,10256.6,-2.54313e-006],[[957,2],[981,2],[982,2],[970,2]]], [971,[2847.48,9757.9,0],[[958,2]]], +[972,[2608.35,10760.4,1.01725e-005],[[962,2],[983,2],[984,2]]], [973,[9281.22,8902.6,-1.52588e-005],[[963,2],[985,2]]], [974,[739.102,7717.72,0],[[964,2],[974,2],[986,2]]], [975,[5284.43,875.332,0],[[965,2],[987,2]]], [976,[3753.14,537.744,0],[[966,2],[988,2]]], [977,[7929.62,3737.86,3.05176e-005],[[967,2],[977,2],[989,2]]], +[978,[8932.25,3530.4,0],[[968,2]]], [979,[8952.69,3363.99,0],[[968,2],[990,2]]], [980,[10401.8,6363.74,1.01725e-005],[[969,2],[991,2],[992,2]]], [981,[2870.25,10359.5,0],[[970,2],[993,2]]], [982,[2952.6,10243.6,-3.8147e-006],[[970,2]]], [983,[2548.14,10908,-5.08626e-006],[[972,2],[983,2],[994,2]]], +[984,[2667.56,10612.3,0],[[972,2],[993,2]]], [985,[9310.55,9031.21,-1.52588e-005],[[973,2],[995,2]]], [986,[746.283,7634.6,0],[[974,2],[996,2],[997,2]]], [987,[5342.46,810.049,0],[[975,2],[998,2]]], [988,[3720.69,569.456,0],[[976,2],[999,2],[988,2]]], [989,[7879.8,3653.04,3.05176e-005],[[977,2],[1000,2]]], +[990,[8973.17,3316.37,0],[[979,2],[1001,2],[1002,2]]], [991,[10467.8,6300,3.05176e-005],[[980,2],[1003,2]]], [992,[10523.3,6461.41,3.05176e-005],[[980,2],[992,2]]], [993,[2762.27,10469.2,-1.52588e-005],[[981,2],[984,2]]], [994,[2474.35,10990.6,0],[[983,2],[1004,2]]], [995,[9321.71,9127.71,0],[[985,2],[1005,2]]], +[996,[727.812,7530.94,0],[[986,2],[997,2],[996,2],[1006,2]]], [997,[745.375,7546.45,0],[[996,2],[997,2],[986,2]]], [998,[5386.32,783.798,0],[[987,2],[1007,2],[998,2],[1008,2]]], [999,[3700.86,614.288,0],[[988,2],[999,2],[1009,2]]], [1000,[7875.49,3552.8,0],[[989,2],[1010,2]]], [1001,[8936.32,3228.14,0],[[990,2],[1011,2]]], +[1002,[9124.83,3307.65,3.05176e-005],[[990,2],[1012,2]]], [1003,[10478.4,6293.51,-1.01725e-005],[[991,2],[1003,2],[1013,2]]], [1004,[2468.03,11001.7,0],[[994,2],[1004,2],[1014,2]]], [1005,[9304.9,9222.58,1.52588e-005],[[995,2],[1015,2]]], [1006,[555.547,7433.67,0],[[996,2],[1016,2]]], [1007,[5366.97,790.337,0],[[998,2]]], +[1008,[5474.39,801.352,-3.05176e-005],[[998,2],[1017,2]]], [1009,[3620.18,703.755,0],[[999,2],[1018,2]]], [1010,[7895.83,3411.39,0],[[1000,2],[1019,2]]], [1011,[8866.98,3107.68,0],[[1001,2],[1020,2]]], [1012,[9262.04,3306.21,3.05176e-005],[[1002,2],[1021,2]]], [1013,[10580,6285.21,0],[[1003,2],[1022,2]]], +[1014,[2442.2,11106.9,0],[[1004,2],[1023,2]]], [1015,[9238.69,9346.12,0],[[1005,2],[1024,2]]], [1016,[414.594,7376.43,0],[[1006,2],[1025,2]]], [1017,[5554.92,834.871,0],[[1008,2],[1026,2]]], [1018,[3607.89,727.242,1.01725e-005],[[1009,2],[1018,2],[1027,2]]], [1019,[7887.03,3337.68,-1.01725e-005],[[1010,2],[1019,2],[1028,2]]], +[1020,[8824.67,3069.74,-3.05176e-005],[[1011,2],[1029,2]]], [1021,[9405.78,3306.03,-3.05176e-005],[[1012,2],[1030,2]]], [1022,[10711.5,6294.23,0],[[1013,2],[1031,2]]], [1023,[2390.64,11244.8,0],[[1014,2],[1032,2]]], [1024,[9162.4,9483.33,0],[[1015,2],[1033,2]]], [1025,[301.337,7337.04,3.05176e-005],[[1016,2],[1034,2]]], +[1026,[5663.99,841.542,0],[[1017,2],[1035,2]]], [1027,[3594.91,818.042,-3.05176e-005],[[1018,2],[1036,2]]], [1028,[7871.48,3271.27,0],[[1019,2],[1037,2],[1038,2]]], [1029,[8716.02,3046.36,0],[[1020,2],[1039,2]]], [1030,[9464.03,3285.96,1.01725e-005],[[1021,2],[1030,2],[1040,2]]], [1031,[10844.9,6305.71,0],[[1022,2],[1041,2]]], +[1032,[2340.07,11345.5,0],[[1023,2],[1042,2]]], [1033,[9148.17,9558.08,0],[[1024,2],[1043,2]]], [1034,[172.344,7296.4,0],[[1025,2],[1044,2]]], [1035,[5773.27,886.169,3.05176e-005],[[1026,2],[1045,2]]], [1036,[3626.19,940.032,0],[[1027,2],[1046,2]]], [1037,[7819.77,3131.4,0],[[1028,2],[1047,2]]], +[1038,[7915.32,3247.23,0],[[1028,2],[1048,2],[1049,2],[1038,2]]], [1039,[8629.68,3041.87,3.05176e-005],[[1029,2],[1050,2]]], [1040,[9514.05,3212.41,0],[[1030,2],[1051,2]]], [1041,[10873.8,6307.95,1.01725e-005],[[1031,2],[1052,2],[1053,2]]], [1042,[2309.94,11408.2,0],[[1032,2],[1054,2],[1055,2]]], [1043,[9171.45,9646.45,0],[[1033,2],[1056,2]]], +[1044,[120.495,7265.88,0],[[1034,2],[1057,2]]], [1045,[5856.13,944.139,-3.05176e-005],[[1035,2],[1058,2]]], [1046,[3642.71,1050.08,0],[[1036,2],[1059,2]]], [1047,[7788.31,3023.35,0],[[1037,2],[1060,2],[1061,2]]], [1048,[7945.57,3119.24,0],[[1038,2],[1062,2]]], [1049,[7907.82,3256.17,0],[[1038,2]]], +[1050,[8512.68,3079.38,0],[[1039,2],[1063,2]]], [1051,[9540.95,3108.54,0],[[1040,2],[1064,2]]], [1052,[11012.7,6294.06,0],[[1041,2],[1065,2]]], [1053,[10922.9,6441.21,-3.05176e-005],[[1041,2],[1066,2]]], [1054,[2300.93,11494.7,-5.08626e-006],[[1042,2],[1067,2],[1055,2],[1054,2]]], [1055,[2308.72,11470.4,0],[[1054,2],[1078,2],[1055,2],[1042,2]]], +[1056,[9192.48,9785.97,1.52588e-005],[[1043,2],[1068,2]]], [1057,[81.3691,7200.43,0],[[1044,2],[1069,2]]], [1058,[5914.14,1008.78,0],[[1045,2],[1058,2],[1070,2],[1071,2]]], [1059,[3640.86,1076.62,0],[[1046,2],[1059,2],[1072,2]]], [1060,[7683.54,3009.99,0],[[1047,2],[1061,2],[1060,2],[1073,2]]], [1061,[7694.41,3024.01,0],[[1060,2],[1083,2],[1061,2],[1047,2]]], +[1062,[7980.63,3025.44,0],[[1048,2],[1074,2]]], [1063,[8368.64,3133.05,3.05176e-005],[[1050,2],[1075,2]]], [1064,[9554.36,2946.44,-3.05176e-005],[[1051,2],[1076,2]]], [1065,[11045,6290.18,0],[[1052,2]]], [1066,[10956.5,6491.51,0],[[1053,2],[1066,2]]], [1067,[2233.41,11673.1,0],[[1054,2],[1077,2]]], +[1068,[9232.79,9947.02,0],[[1056,2],[1079,2]]], [1069,[30.2074,7066.53,0],[[1057,2]]], [1070,[5988.32,1061.72,1.01725e-005],[[1058,2],[1071,2],[1070,2],[1080,2],[1081,2]]], [1071,[5978.48,1036.09,0],[[1070,2],[1094,2],[1058,2],[1071,2]]], [1072,[3634.49,1104.65,1.01725e-005],[[1059,2],[1072,2],[1082,2]]], [1073,[7639.26,2902.46,0],[[1060,2],[1084,2]]], +[1074,[8001.39,2929.51,0],[[1062,2],[1085,2]]], [1075,[8267.6,3139.01,0],[[1063,2],[1086,2]]], [1076,[9546.62,2905.91,0],[[1064,2],[1076,2],[1087,2]]], [1077,[2154.6,11653.4,0],[[1067,2],[1088,2],[1089,2]]], [1078,[2309.29,11446.2,0],[[1055,2]]], [1079,[9277.78,10043.3,6.10352e-006],[[1068,2],[1090,2],[1079,2],[1091,2],[1092,2],[1093,2]]], +[1080,[6039.76,1142.49,-1.01725e-005],[[1070,2],[1081,2],[1080,2],[1095,2]]], [1081,[6027.46,1135.73,0],[[1080,2],[1106,2],[1070,2]]], [1082,[3583.56,1228.86,0],[[1072,2],[1096,2]]], [1083,[7722.55,3021.74,0],[[1061,2]]], [1084,[7583.34,2769.37,0],[[1073,2],[1097,2]]], [1085,[8017.6,2919,2.03451e-005],[[1074,2],[1098,2],[1099,2]]], +[1086,[8194.01,3110.05,0],[[1075,2],[1099,2]]], [1087,[9504.84,2838.11,-1.01725e-005],[[1076,2],[1100,2],[1087,2],[1101,2]]], [1088,[2130.52,11509.6,0],[[1077,2],[1102,2]]], [1089,[2050.8,11721.2,0],[[1077,2],[1103,2]]], [1090,[9259.96,10027.7,5.08626e-006],[[1079,2]]], [1091,[9160.07,10099.5,1.52588e-005],[[1079,2],[1104,2]]], +[1092,[9403.92,9998.71,-1.52588e-005],[[1079,2]]], [1093,[9318.8,10092.8,5.08626e-006],[[1079,2],[1093,2],[1105,2]]], [1094,[5958.69,1025.69,0],[[1071,2]]], [1095,[6082.45,1166.48,-7.62939e-006],[[1080,2],[1095,2],[1107,2],[1108,2]]], [1096,[3565.31,1242.79,0],[[1082,2],[1109,2],[1110,2]]], [1097,[7542.82,2638.86,-3.05176e-005],[[1084,2],[1111,2]]], +[1098,[8000.24,2779.83,0],[[1085,2],[1112,2]]], [1099,[8086.33,3013.37,0],[[1085,2],[1086,2]]], [1100,[9523.18,2852.02,-1.01725e-005],[[1087,2]]], [1101,[9347.6,2764.12,0],[[1087,2],[1113,2]]], [1102,[2082.43,11390.1,0],[[1088,2],[1114,2]]], [1103,[1933.22,11772.8,0],[[1089,2],[1115,2]]], +[1104,[9121.93,10143.5,0],[[1091,2],[1116,2],[1117,2]]], [1105,[9458.01,10162.3,0],[[1093,2],[1118,2]]], [1106,[6018.34,1122.77,-1.01725e-005],[[1081,2]]], [1107,[6217.03,1174.05,3.05176e-005],[[1095,2],[1119,2]]], [1108,[6003.38,1237.72,0],[[1095,2],[1120,2]]], [1109,[3551.65,1299.31,-2.03451e-005],[[1096,2],[1109,2],[1121,2]]], +[1110,[3450.56,1138.3,0],[[1096,2],[1122,2],[1123,2],[1110,2]]], [1111,[7494.03,2496.83,0],[[1097,2],[1124,2]]], [1112,[7968.27,2695.15,3.05176e-005],[[1098,2],[1125,2]]], [1113,[9229.66,2713.81,-1.01725e-005],[[1101,2],[1113,2],[1126,2]]], [1114,[2049.22,11323.3,-3.8147e-006],[[1102,2],[1127,2],[1114,2],[1128,2]]], [1115,[1858.81,11810.5,1.52588e-005],[[1103,2],[1129,2]]], +[1116,[9074.01,10215.3,5.08626e-006],[[1104,2],[1117,2],[1116,2],[1130,2]]], [1117,[9092.42,10208.8,1.52588e-005],[[1116,2],[1142,2],[1117,2],[1104,2]]], [1118,[9543.32,10212.9,0],[[1105,2],[1131,2]]], [1119,[6359.1,1204.76,0],[[1107,2],[1132,2]]], [1120,[5928.59,1317.08,0],[[1108,2],[1133,2],[1134,2]]], [1121,[3546.66,1356.39,0],[[1109,2]]], +[1122,[3347.12,1113.29,0],[[1110,2],[1135,2]]], [1123,[3462.28,1141.26,0],[[1110,2]]], [1124,[7451.25,2369.07,0],[[1111,2],[1136,2]]], [1125,[7969.3,2607.99,0],[[1112,2],[1137,2]]], [1126,[9093.23,2686.19,0],[[1113,2],[1138,2]]], [1127,[1976.67,11146.8,0],[[1114,2],[1139,2]]], +[1128,[1968.18,11382.4,0],[[1114,2],[1140,2]]], [1129,[1844.23,11868.9,0],[[1115,2],[1141,2]]], [1130,[8958.23,10264.3,0],[[1116,2],[1143,2],[1144,2]]], [1131,[9608.02,10284.5,0],[[1118,2],[1145,2]]], [1132,[6498.35,1226.92,0],[[1119,2],[1146,2]]], [1133,[5889.61,1408.37,-2.03451e-005],[[1120,2],[1147,2],[1134,2],[1133,2]]], +[1134,[5888.18,1397.01,0],[[1133,2],[1161,2],[1134,2],[1120,2]]], [1135,[3272.56,1064.34,0],[[1122,2],[1148,2]]], [1136,[7480.99,2236.88,0],[[1124,2],[1149,2]]], [1137,[7959.38,2475.02,0],[[1125,2],[1150,2]]], [1138,[9009.83,2655.36,0],[[1126,2],[1151,2],[1152,2]]], [1139,[1935.85,11024.2,0],[[1127,2],[1153,2]]], +[1140,[1932.32,11441.8,0],[[1128,2],[1154,2]]], [1141,[1843.85,11900.1,-5.08626e-006],[[1129,2],[1141,2],[1155,2]]], [1142,[9105.68,10189.1,-5.08626e-006],[[1117,2]]], [1143,[8862.51,10346.8,0],[[1130,2],[1156,2]]], [1144,[8887.06,10183,0],[[1130,2],[1157,2]]], [1145,[9679.69,10392.8,-1.52588e-005],[[1131,2],[1158,2]]], +[1146,[6649.37,1234.78,0],[[1132,2],[1159,2]]], [1147,[5916.19,1498.61,0],[[1133,2],[1160,2]]], [1148,[3246.37,976.902,0],[[1135,2],[1162,2]]], [1149,[7528.19,2100.12,0],[[1136,2],[1163,2]]], [1150,[7964.99,2376.57,0],[[1137,2],[1150,2],[1164,2]]], [1151,[8845.65,2604.5,0],[[1138,2],[1165,2]]], +[1152,[9046.26,2556.88,0],[[1138,2],[1166,2],[1152,2],[1167,2]]], [1153,[1926.68,10895.3,0],[[1139,2],[1168,2]]], [1154,[1909.87,11500,-5.08626e-006],[[1140,2],[1154,2],[1169,2]]], [1155,[1817.75,11942.3,3.8147e-006],[[1141,2],[1170,2],[1171,2],[1172,2]]], [1156,[8805.56,10432.1,1.52588e-005],[[1143,2],[1173,2]]], [1157,[8788.33,10079.6,0],[[1144,2],[1174,2]]], +[1158,[9727.77,10493.4,0],[[1145,2],[1175,2]]], [1159,[6723.9,1218.57,3.05176e-005],[[1146,2],[1176,2]]], [1160,[6009.11,1614.7,0],[[1147,2],[1177,2]]], [1161,[5897.7,1372.08,-1.01725e-005],[[1134,2]]], [1162,[3222.11,926.197,0],[[1148,2],[1178,2],[1179,2],[1162,2]]], [1163,[7550.14,2041.2,1.01725e-005],[[1149,2],[1163,2],[1180,2]]], +[1164,[8019.46,2266.68,0],[[1150,2],[1181,2]]], [1165,[8720.13,2540.49,0],[[1151,2],[1182,2]]], [1166,[9029.87,2566.83,0],[[1166,2],[1152,2]]], [1167,[9191.65,2484.86,0],[[1152,2],[1183,2]]], [1168,[1908.12,10778.1,0],[[1153,2],[1184,2]]], [1169,[1861.03,11529.2,0],[[1154,2],[1185,2]]], +[1170,[1751.48,11980.2,3.8147e-006],[[1155,2],[1186,2],[1187,2],[1170,2]]], [1171,[1712.26,11809.8,0],[[1155,2],[1188,2]]], [1172,[1949.81,12025,0],[[1155,2],[1189,2]]], [1173,[8748.52,10458.3,-1.52588e-005],[[1156,2],[1190,2]]], [1174,[8675.68,9964.92,0],[[1157,2]]], [1175,[9749,10602.6,-1.52588e-005],[[1158,2],[1191,2]]], +[1176,[6798.82,1177.8,-3.05176e-005],[[1159,2],[1192,2]]], [1177,[6078.24,1676,0],[[1160,2],[1193,2]]], [1178,[3102.3,853.13,0],[[1162,2],[1194,2]]], [1179,[3237.81,937.018,0],[[1162,2]]], [1180,[7542.26,1901.83,0],[[1163,2],[1195,2],[1196,2]]], [1181,[8060.66,2201.23,1.01725e-005],[[1164,2],[1197,2],[1198,2]]], +[1182,[8565.12,2465.78,0],[[1165,2],[1199,2]]], [1183,[9344.53,2429.08,0],[[1167,2],[1200,2]]], [1184,[1870.66,10650.2,0],[[1168,2],[1201,2]]], [1185,[1802.45,11524.4,1.52588e-005],[[1169,2],[1202,2]]], [1186,[1684.38,11985.1,0],[[1170,2],[1203,2],[1186,2]]], [1187,[1769.22,11978.7,0],[[1170,2]]], +[1188,[1631.91,11704.2,0],[[1171,2],[1204,2]]], [1189,[2061.01,12117.7,-7.62939e-006],[[1172,2],[1205,2]]], [1190,[8687.94,10464.6,0],[[1173,2],[1190,2],[1206,2]]], [1191,[9747.44,10738.3,0],[[1175,2],[1207,2]]], [1192,[6929.17,1095.81,0],[[1176,2],[1208,2]]], [1193,[6154.27,1707.59,0],[[1177,2],[1209,2]]], +[1194,[3021.04,849.223,-3.05176e-005],[[1178,2],[1210,2]]], [1195,[7509.58,1846.75,0],[[1180,2],[1211,2],[1195,2],[1212,2],[1213,2]]], [1196,[7624.09,1932.08,0],[[1180,2],[1214,2]]], [1197,[7910.99,2109.27,0],[[1181,2],[1214,2]]], [1198,[8203.24,2236.46,0],[[1181,2],[1198,2],[1215,2],[1216,2]]], [1199,[8467.29,2451.3,0],[[1182,2],[1217,2]]], +[1200,[9427.28,2393.42,3.05176e-005],[[1183,2],[1218,2]]], [1201,[1869.74,10630.2,0],[[1184,2]]], [1202,[1773.03,11533.4,-5.08626e-006],[[1185,2],[1219,2],[1202,2],[1204,2]]], [1203,[1605.41,12021.7,0],[[1186,2],[1220,2],[1221,2],[1203,2]]], [1204,[1616.03,11662.6,5.08626e-006],[[1188,2],[1202,2],[1222,2]]], [1205,[2111.36,12179.4,-7.62939e-006],[[1189,2],[1223,2]]], +[1206,[8603.21,10502,0],[[1190,2],[1224,2]]], [1207,[9748.34,10884.1,0],[[1191,2],[1225,2]]], [1208,[7039.46,1051.28,0],[[1192,2],[1226,2]]], [1209,[6230.72,1735.95,0],[[1193,2],[1227,2],[1228,2],[1209,2]]], [1210,[2853.25,861.321,0],[[1194,2],[1229,2]]], [1211,[7518.36,1854.54,1.52588e-005],[[1195,2]]], +[1212,[7463.65,1768.73,0],[[1195,2],[1230,2],[1212,2],[1231,2],[1232,2]]], [1213,[7459.63,1796.93,0],[[1230,2],[1195,2]]], [1214,[7747.77,2014.18,0],[[1196,2],[1197,2]]], [1215,[8221.18,2133.73,0],[[1198,2],[1215,2],[1233,2]]], [1216,[8345.03,2247.18,0],[[1198,2],[1234,2]]], [1217,[8452.14,2444.15,0],[[1199,2],[1235,2],[1236,2]]], +[1218,[9472.79,2359.22,0],[[1200,2],[1237,2],[1238,2]]], [1219,[1781.22,11528.3,-7.62939e-006],[[1202,2]]], [1220,[1517.49,12003.7,0],[[1203,2]]], [1221,[1622.05,12020.8,1.01725e-005],[[1203,2]]], [1222,[1590.34,11540.1,0],[[1204,2],[1239,2]]], [1223,[2139.21,12229.4,1.90735e-006],[[1205,2],[1240,2],[1241,2],[1242,2]]], +[1224,[8529.18,10568.5,-1.52588e-005],[[1206,2],[1243,2]]], [1225,[9783.87,11055.3,1.52588e-005],[[1207,2],[1244,2]]], [1226,[7108.13,1047.08,0],[[1208,2],[1245,2]]], [1227,[6322.94,1872.54,0],[[1209,2],[1246,2]]], [1228,[6220.5,1728.92,0],[[1209,2]]], [1229,[2783.78,881.813,0],[[1210,2],[1247,2]]], +[1230,[7456.74,1785.57,0],[[1212,2],[1213,2]]], [1231,[7479.63,1658.74,-1.01725e-005],[[1212,2],[1232,2],[1231,2],[1248,2]]], [1232,[7491.83,1672.11,0],[[1231,2],[1265,2],[1212,2],[1232,2]]], [1233,[8103.04,2064.64,0],[[1215,2],[1249,2]]], [1234,[8449.95,2248.82,0],[[1216,2],[1250,2]]], [1235,[8443.72,2537.79,3.05176e-005],[[1217,2]]], +[1236,[8482.88,2387.77,1.01725e-005],[[1217,2],[1251,2],[1236,2],[1252,2]]], [1237,[9334.41,2281.74,0],[[1218,2],[1253,2]]], [1238,[9629.82,2375.79,0],[[1218,2],[1254,2]]], [1239,[1594.28,11367.4,0],[[1222,2],[1255,2]]], [1240,[2098.36,12317.9,0],[[1223,2],[1256,2]]], [1241,[2194.84,12120.9,0],[[1223,2],[1257,2]]], +[1242,[2183.47,12422.8,0],[[1223,2],[1258,2]]], [1243,[8470.02,10681.5,0],[[1224,2],[1259,2]]], [1244,[9794.36,11174.6,-1.52588e-005],[[1225,2],[1260,2]]], [1245,[7145.29,1052.79,1.01725e-005],[[1226,2],[1261,2],[1262,2]]], [1246,[6375.03,1949.31,-1.01725e-005],[[1227,2],[1263,2]]], [1247,[2755.99,884.814,2.03451e-005],[[1229,2],[1247,2],[1264,2]]], +[1248,[7374.66,1566.93,-3.05176e-005],[[1231,2],[1266,2]]], [1249,[7994.43,2004.57,0],[[1233,2]]], [1250,[8532.18,2251.62,0],[[1234,2],[1267,2]]], [1251,[8465.08,2397.16,1.52588e-005],[[1236,2]]], [1252,[8613.91,2311.58,0],[[1236,2],[1268,2],[1252,2],[1269,2],[1267,2]]], [1253,[9255.64,2248.78,0],[[1237,2],[1270,2]]], +[1254,[9765.65,2362.45,-3.05176e-005],[[1238,2],[1271,2]]], [1255,[1577.63,11315.5,5.08626e-006],[[1239,2],[1255,2],[1272,2]]], [1256,[2062.77,12418.7,-3.8147e-006],[[1240,2],[1273,2]]], [1257,[2271.84,12047,-7.62939e-006],[[1241,2]]], [1258,[2219.57,12486.7,3.8147e-006],[[1242,2],[1274,2]]], [1259,[8434.11,10820.3,0],[[1243,2],[1275,2]]], +[1260,[9815.1,11274,-7.62939e-006],[[1244,2],[1276,2]]], [1261,[7058.79,1217.21,0],[[1245,2],[1277,2]]], [1262,[7207.5,1003.32,1.01725e-005],[[1245,2],[1278,2],[1279,2]]], [1263,[6470.28,2011.31,0],[[1246,2],[1280,2],[1281,2],[1263,2]]], [1264,[2673.86,861.509,0],[[1247,2],[1282,2]]], [1265,[7489.3,1691.06,1.01725e-005],[[1232,2]]], +[1266,[7278.79,1490.41,0],[[1248,2],[1283,2]]], [1267,[8648.74,2221.27,-3.05176e-005],[[1250,2],[1252,2],[1284,2]]], [1268,[8597.63,2324.89,0],[[1252,2]]], [1269,[8716.8,2219.6,0],[[1252,2],[1285,2],[1284,2]]], [1270,[9161.21,2239.48,0],[[1253,2],[1286,2]]], [1271,[9903.17,2332.87,0],[[1254,2],[1287,2]]], +[1272,[1543.74,11281.9,0],[[1255,2],[1272,2],[1288,2]]], [1273,[1988.13,12520.5,0],[[1256,2],[1289,2]]], [1274,[2306.02,12579.3,-3.8147e-006],[[1258,2],[1290,2]]], [1275,[8427.68,10879,0],[[1259,2],[1291,2],[1292,2]]], [1276,[9818.81,11302,0],[[1260,2],[1276,2],[1293,2]]], [1277,[6993.66,1339.62,0],[[1261,2],[1294,2]]], +[1278,[7253.4,1073.21,0],[[1262,2],[1295,2]]], [1279,[7190.15,925.252,0],[[1262,2],[1296,2]]], [1280,[6505.66,2082.51,-3.05176e-005],[[1263,2]]], [1281,[6462.87,2000.61,-1.01725e-005],[[1263,2]]], [1282,[2604.02,807.115,0],[[1264,2],[1297,2]]], [1283,[7250.61,1421.78,0],[[1266,2],[1298,2]]], +[1284,[8710.27,2210.06,-1.01725e-005],[[1267,2],[1284,2],[1299,2],[1269,2]]], [1285,[8826.46,2183.16,-7.62939e-006],[[1269,2],[1300,2],[1285,2],[1301,2],[1302,2]]], [1286,[9064.46,2216.97,-7.62939e-006],[[1270,2],[1301,2],[1286,2],[1303,2]]], [1287,[10040.5,2324.83,3.05176e-005],[[1271,2],[1304,2]]], [1288,[1456.37,11125.4,0],[[1272,2],[1305,2]]], [1289,[1908.78,12610.4,0],[[1273,2]]], +[1290,[2413.26,12695.4,0],[[1274,2],[1306,2]]], [1291,[8403.66,11025.4,0],[[1275,2]]], [1292,[8509.25,10901.8,0],[[1275,2],[1307,2]]], [1293,[9801.72,11417.3,-7.62939e-006],[[1276,2],[1308,2]]], [1294,[6974.16,1435.54,0],[[1277,2],[1309,2]]], [1295,[7264.14,1180.64,0],[[1278,2],[1298,2]]], +[1296,[7207.9,819.123,0],[[1279,2],[1310,2]]], [1297,[2545.71,764.577,0],[[1282,2],[1311,2]]], [1298,[7248.25,1307.57,0],[[1283,2],[1295,2]]], [1299,[8709.34,2229.66,0],[[1284,2]]], [1300,[8794.96,2190.16,-1.52588e-005],[[1285,2]]], [1301,[8959.4,2219,0],[[1285,2],[1286,2]]], +[1302,[8844.11,2070.38,-1.01725e-005],[[1285,2],[1312,2],[1313,2]]], [1303,[9074.8,2156.26,-1.01725e-005],[[1286,2],[1314,2],[1315,2],[1303,2]]], [1304,[10119.1,2331.28,0],[[1287,2],[1316,2],[1317,2]]], [1305,[1406.96,11081.6,-1.01725e-005],[[1288,2],[1318,2],[1305,2],[1319,2]]], [1306,[2484.6,12783.5,0],[[1290,2],[1306,2]]], [1307,[8549.85,10953,-1.52588e-005],[[1292,2],[1320,2]]], +[1308,[9770.28,11513.3,0],[[1293,2],[1321,2]]], [1309,[6975.07,1531.59,0],[[1294,2],[1322,2]]], [1310,[7263.02,759.414,0],[[1296,2],[1323,2],[1310,2],[1324,2]]], [1311,[2467.07,736.99,0],[[1297,2],[1325,2]]], [1312,[8719.87,2054.74,0],[[1302,2],[1326,2]]], [1313,[8848.65,1986.23,0],[[1302,2],[1327,2]]], +[1314,[9103.23,2031.35,0],[[1303,2],[1328,2]]], [1315,[9064.45,2177.18,-1.01725e-005],[[1303,2]]], [1316,[10250.8,2368.23,0],[[1304,2],[1329,2]]], [1317,[10197.8,2410.16,0],[[1304,2],[1330,2]]], [1318,[1424.18,11088.8,0],[[1305,2]]], [1319,[1350.01,11055.8,0],[[1305,2],[1319,2],[1331,2]]], +[1320,[8597.44,11043.2,0],[[1307,2],[1332,2]]], [1321,[9761.89,11550.1,-2.54313e-006],[[1308,2],[1333,2],[1334,2]]], [1322,[6887.04,1647.51,0],[[1309,2],[1335,2]]], [1323,[7231.47,781.924,0],[[1310,2]]], [1324,[7325.77,587.336,0],[[1310,2],[1336,2]]], [1325,[2376.74,638.433,0],[[1311,2],[1337,2]]], +[1326,[8589.01,2002.28,0],[[1312,2],[1338,2]]], [1327,[8809.83,1904.46,3.05176e-005],[[1313,2],[1339,2],[1327,2]]], [1328,[9119.19,1997.41,-1.01725e-005],[[1314,2],[1340,2],[1341,2],[1328,2]]], [1329,[10347.5,2397.66,-3.05176e-005],[[1316,2],[1342,2]]], [1330,[10213.8,2438.13,0],[[1317,2]]], [1331,[1311.61,11009.3,3.05176e-005],[[1319,2],[1343,2]]], +[1332,[8632.11,11083.1,0],[[1320,2],[1344,2],[1345,2]]], [1333,[9611.4,11691.9,0],[[1321,2],[1346,2]]], [1334,[9876.19,11516.5,0],[[1321,2],[1347,2]]], [1335,[6820.81,1733.58,0],[[1322,2],[1348,2]]], [1336,[7325.83,458.377,0],[[1324,2],[1349,2]]], [1337,[2304.94,545.41,0],[[1325,2],[1350,2]]], +[1338,[8451.37,1952.74,0],[[1326,2],[1351,2]]], [1339,[8791.08,1866.53,0],[[1327,2],[1352,2],[1339,2]]], [1340,[9250.15,1840.03,0],[[1328,2],[1353,2]]], [1341,[9109.85,2011.36,-1.52588e-005],[[1328,2]]], [1342,[10405.9,2394.62,1.01725e-005],[[1329,2],[1342,2],[1354,2]]], [1343,[1304.65,10904.5,-3.05176e-005],[[1331,2],[1355,2]]], +[1344,[8712.15,11019.3,0],[[1332,2]]], [1345,[8670.51,11236.2,1.52588e-005],[[1332,2],[1356,2]]], [1346,[9530.64,11779.1,-7.62939e-006],[[1333,2],[1357,2]]], [1347,[10010.7,11424.8,-7.62939e-006],[[1334,2],[1358,2]]], [1348,[6794.42,1825.71,0],[[1335,2],[1359,2]]], [1349,[7313.09,382.292,0],[[1336,2],[1360,2]]], +[1350,[2201.45,478.075,0],[[1337,2],[1361,2]]], [1351,[8357.82,1911.48,0],[[1338,2],[1362,2]]], [1352,[8684.43,1825.69,0],[[1339,2],[1363,2]]], [1353,[9327.29,1781.19,3.05176e-005],[[1340,2]]], [1354,[10508.7,2372.37,0],[[1342,2],[1364,2]]], [1355,[1324.3,10795.6,-3.05176e-005],[[1343,2],[1365,2]]], +[1356,[8671.61,11290.7,0],[[1345,2],[1366,2],[1367,2]]], [1357,[9475.1,11834.1,0],[[1346,2],[1368,2]]], [1358,[10175.7,11322.3,0],[[1347,2],[1369,2]]], [1359,[6764.61,1908.84,0],[[1348,2],[1370,2]]], [1360,[7295.5,313.92,0],[[1349,2],[1371,2]]], [1361,[2178.54,460.465,0],[[1350,2],[1361,2],[1372,2]]], +[1362,[8224.54,1826.64,0],[[1351,2],[1362,2]]], [1363,[8644.76,1771.01,0],[[1352,2],[1373,2],[1363,2]]], [1364,[10626.1,2382,0],[[1354,2],[1374,2]]], [1365,[1334.6,10710.5,3.05176e-005],[[1355,2],[1375,2]]], [1366,[8677.93,11369,0],[[1356,2]]], [1367,[8578.23,11320.9,0],[[1356,2],[1376,2]]], +[1368,[9439.02,11916.1,0],[[1357,2],[1377,2]]], [1369,[10290.8,11246.1,0],[[1358,2],[1378,2]]], [1370,[6717.23,1968.79,0],[[1359,2],[1379,2]]], [1371,[7310.63,279.12,-1.01725e-005],[[1360,2],[1380,2],[1371,2]]], [1372,[2110.4,354.466,-3.05176e-005],[[1361,2],[1381,2]]], [1373,[8670.46,1710.14,0],[[1363,2],[1382,2]]], +[1374,[10787.7,2415.84,0],[[1364,2],[1383,2]]], [1375,[1317.59,10584.1,0],[[1365,2],[1384,2]]], [1376,[8513.89,11327.4,0],[[1367,2]]], [1377,[9425.41,12026.9,0],[[1368,2],[1385,2]]], [1378,[10395.3,11165.9,0],[[1369,2],[1386,2]]], [1379,[6644.51,2022.92,0],[[1370,2],[1387,2]]], +[1380,[7411.5,223.708,0],[[1371,2],[1388,2],[1389,2],[1380,2]]], [1381,[2095.98,323.197,1.01725e-005],[[1372,2],[1390,2],[1391,2]]], [1382,[8762.34,1644.05,-3.05176e-005],[[1373,2],[1392,2]]], [1383,[10892,2456.93,0],[[1374,2],[1393,2]]], [1384,[1318.29,10488.8,0],[[1375,2],[1394,2]]], [1385,[9379.72,12087,0],[[1377,2],[1395,2]]], +[1386,[10524.9,11091.4,1.01725e-005],[[1378,2],[1396,2],[1397,2]]], [1387,[6534.73,2087.42,0],[[1379,2]]], [1388,[7421.73,64.2747,0],[[1380,2],[1398,2]]], [1389,[7400.52,238.972,1.01725e-005],[[1380,2]]], [1390,[1980.38,367.111,-3.05176e-005],[[1381,2],[1399,2]]], [1391,[2135.33,286.51,0],[[1381,2]]], +[1392,[8823.92,1593.14,3.05176e-005],[[1382,2],[1400,2]]], [1393,[10948.7,2473.54,0],[[1383,2],[1401,2],[1402,2],[1403,2]]], [1394,[1346.43,10398.3,0],[[1384,2],[1404,2]]], [1395,[9326.1,12149.1,7.62939e-006],[[1385,2],[1405,2]]], [1396,[10620.4,10980.8,-1.52588e-005],[[1386,2],[1406,2]]], [1397,[10666.1,11037.6,0],[[1386,2],[1407,2]]], +[1398,[7416.17,30.8869,3.05176e-005],[[1388,2]]], [1399,[1901.99,381.584,0],[[1390,2]]], [1400,[8834.38,1554.14,0],[[1392,2],[1408,2],[1409,2],[1400,2]]], [1401,[11074.2,2428.24,-1.01725e-005],[[1393,2],[1410,2],[1401,2],[1411,2]]], [1402,[11034.6,2572.37,0],[[1393,2],[1402,2]]], [1403,[11031.1,2431.8,-3.05176e-005],[[1410,2],[1393,2]]], +[1404,[1350.42,10316.3,0],[[1394,2],[1412,2]]], [1405,[9284.58,12204.3,0],[[1395,2],[1413,2],[1405,2],[1414,2]]], [1406,[10725.3,10889.1,0],[[1396,2],[1415,2]]], [1407,[10804.3,10973.3,-1.52588e-005],[[1397,2],[1416,2]]], [1408,[8766.34,1447.76,0],[[1400,2],[1417,2]]], [1409,[8836.34,1572.46,-1.01725e-005],[[1400,2]]], +[1410,[11052.3,2420.05,0],[[1401,2],[1403,2],[1410,2]]], [1411,[11173.5,2445.46,3.05176e-005],[[1401,2],[1418,2]]], [1412,[1326.28,10277.1,0],[[1404,2],[1419,2]]], [1413,[9289.13,12186.2,0],[[1405,2]]], [1414,[9259.46,12326.3,0],[[1405,2],[1420,2]]], [1415,[10828.3,10794.4,0],[[1406,2],[1421,2]]], +[1416,[10909,10945.9,0],[[1407,2],[1422,2]]], [1417,[8729.41,1438.59,-1.52588e-005],[[1417,2]]], [1418,[11254.5,2432.73,0],[[1411,2],[1423,2]]], [1419,[1252.24,10243,3.05176e-005],[[1412,2],[1424,2]]], [1420,[9210.66,12434.9,7.62939e-006],[[1414,2],[1425,2]]], [1421,[10955.7,10705.8,-1.52588e-005],[[1415,2],[1426,2]]], +[1422,[11068.9,10929.2,0],[[1416,2],[1427,2]]], [1423,[11351.3,2450.59,0],[[1418,2],[1429,2]]], [1424,[1202.83,10240.1,0],[[1419,2],[1430,2]]], [1425,[9210.1,12526.7,0],[[1420,2],[1431,2]]], [1426,[11083.1,10615.8,0],[[1421,2],[1432,2]]], [1427,[11213.8,10924.7,0],[[1422,2],[1433,2]]], +[1428,[8670.16,1436.81,-3.05176e-005],[[1417,2]]], [1429,[11490.5,2488.04,0],[[1423,2],[1434,2]]], [1430,[1148.67,10272.7,0],[[1424,2],[1435,2]]], [1431,[9199.44,12629.1,-7.62939e-006],[[1425,2],[1436,2]]], [1432,[11220.9,10519.1,0],[[1426,2],[1437,2]]], [1433,[11380.3,10929.5,-1.52588e-005],[[1427,2],[1438,2]]], +[1434,[11634.7,2529.12,0],[[1429,2],[1439,2]]], [1435,[1051.13,10372.8,0],[[1430,2],[1440,2]]], [1436,[9167.07,12717.5,0],[[1431,2],[1436,2]]], [1437,[11363.3,10430.1,0],[[1432,2],[1441,2]]], [1438,[11511.4,10945.5,0],[[1433,2],[1442,2]]], [1439,[11747.5,2568.97,0],[[1434,2],[1443,2]]], +[1440,[968.136,10419,0],[[1435,2],[1444,2]]], [1441,[11484.3,10340.8,1.52588e-005],[[1437,2],[1445,2]]], [1442,[11626.2,10937.8,0],[[1438,2],[1446,2]]], [1443,[11838.4,2600.18,-1.01725e-005],[[1439,2],[1447,2],[1448,2]]], [1444,[832.037,10474.3,6.10352e-005],[[1440,2],[1444,2]]], [1445,[11567.8,10263.2,0],[[1441,2],[1449,2]]], +[1446,[11712.1,10908.5,0],[[1442,2],[1450,2]]], [1447,[11876.4,2539.58,0],[[1443,2],[1447,2]]], [1448,[11890.3,2612.47,0],[[1443,2]]], [1449,[11599,10207.3,-1.52588e-005],[[1445,2],[1451,2]]], [1450,[11777.9,10849.4,0],[[1446,2],[1452,2]]], [1451,[11629.8,10097.6,0],[[1449,2],[1453,2]]], +[1452,[11893.1,10756.5,0],[[1450,2],[1454,2]]], [1453,[11640.7,9942.12,-1.52588e-005],[[1451,2],[1455,2]]], [1454,[11983.9,10696.3,0],[[1452,2],[1456,2]]], [1455,[11639.8,9836.54,0],[[1453,2],[1457,2]]], [1456,[12043.9,10678.2,0],[[1454,2],[1458,2]]], [1457,[11616.6,9678.7,1.52588e-005],[[1455,2],[1459,2]]], +[1458,[12127.7,10679.8,1.52588e-005],[[1456,2],[1460,2]]], [1459,[11603.5,9507.9,0],[[1457,2],[1461,2]]], [1460,[12223.6,10686.2,0],[[1458,2],[1462,2],[1463,2]]], [1461,[11622.8,9376.66,0],[[1459,2],[1464,2]]], [1462,[12240.4,10765.6,0],[[1460,2],[1462,2],[1465,2]]], [1463,[12251.6,10557.7,0],[[1460,2],[1466,2]]], +[1464,[11658.9,9244.39,0],[[1461,2],[1467,2]]], [1465,[12306.8,10874.8,-7.62939e-006],[[1462,2],[1468,2]]], [1466,[12285.6,10463,0],[[1463,2],[1469,2]]], [1467,[11677,9118.51,0],[[1464,2],[1470,2]]], [1468,[12343.1,10927.7,2.54313e-006],[[1465,2],[1471,2],[1472,2],[1468,2]]], [1469,[12275.8,10362.4,0],[[1466,2],[1473,2],[1469,2],[1474,2]]], +[1470,[11658,8986.2,-1.52588e-005],[[1467,2],[1475,2]]], [1471,[12376.6,10970.5,5.08626e-006],[[1468,2],[1476,2],[1471,2],[1477,2]]], [1472,[12336,10920.4,3.8147e-006],[[1468,2]]], [1473,[12222.2,10173.2,1.52588e-005],[[1469,2],[1478,2]]], [1474,[12343.1,10337.9,0],[[1469,2],[1479,2]]], [1475,[11638,8884.47,0],[[1470,2],[1480,2]]], +[1476,[12373.1,10957.3,7.62939e-006],[[1471,2]]], [1477,[12320.3,11113.7,-5.08626e-006],[[1471,2],[1481,2],[1482,2],[1483,2]]], [1478,[12203.3,10024.9,0],[[1473,2],[1484,2]]], [1479,[12390.3,10291.3,0],[[1474,2],[1485,2]]], [1480,[11608,8821.93,0],[[1475,2],[1486,2]]], [1481,[12204.4,11065.7,0],[[1477,2],[1483,2],[1481,2],[1487,2]]], +[1482,[12340,11197.7,2.54313e-006],[[1477,2],[1488,2],[1489,2]]], [1483,[12218.1,11078.8,0],[[1481,2],[1492,2],[1483,2],[1477,2]]], [1484,[12200.1,9947.39,0],[[1478,2]]], [1485,[12424.3,10228.5,1.52588e-005],[[1479,2],[1490,2]]], [1486,[11602,8740.62,0],[[1480,2],[1491,2]]], [1487,[12147.2,11034.2,0],[[1481,2],[1487,2]]], +[1488,[12456.4,11127.8,0],[[1482,2],[1493,2]]], [1489,[12188.1,11272.4,0],[[1482,2],[1494,2]]], [1490,[12452.3,10109.4,0],[[1485,2],[1495,2]]], [1491,[11590.3,8600.9,0],[[1486,2],[1496,2]]], [1492,[12242.5,11089.4,0],[[1483,2]]], [1493,[12543,11088.3,-7.62939e-006],[[1488,2],[1497,2]]], +[1494,[12053,11333.8,0],[[1489,2],[1498,2]]], [1495,[12481.2,9993.39,-1.52588e-005],[[1490,2],[1499,2]]], [1496,[11557.6,8458.18,0],[[1491,2],[1500,2]]], [1497,[12632.8,11058.2,0],[[1493,2],[1501,2]]], [1498,[11949.6,11409.5,7.62939e-006],[[1494,2],[1502,2]]], [1499,[12516.7,9954.1,1.01725e-005],[[1495,2],[1503,2],[1504,2]]], +[1500,[11506.6,8320.06,0],[[1496,2],[1505,2]]], [1501,[12704.3,10997.3,0],[[1497,2],[1506,2]]], [1502,[11841.3,11481.4,0],[[1498,2],[1507,2]]], [1503,[12563.2,9995.83,0],[[1499,2]]], [1504,[12621.3,9843.03,0],[[1499,2],[1508,2]]], [1505,[11445.9,8194.85,0],[[1500,2]]], +[1506,[12794.5,10941.6,0],[[1501,2]]], [1507,[11726,11574.2,-7.62939e-006],[[1502,2],[1509,2]]], [1508,[12641.6,9828.55,1.52588e-005],[[1504,2]]], [1509,[11651.2,11665.6,0],[[1507,2],[1510,2]]], [1510,[11638.6,11699.6,5.08626e-006],[[1509,2],[1510,2],[1511,2]]], [1511,[11633.2,11830.8,-7.62939e-006],[[1510,2],[1512,2]]], +[1512,[11633,11899.6,0],[[1511,2],[1513,2]]], [1513,[11627.9,11909.1,5.08626e-006],[[1512,2],[1513,2],[1514,2]]], [1514,[11541.2,12014,0],[[1513,2],[1515,2]]], [1515,[11481.8,12114.2,0],[[1514,2],[1516,2]]], [1516,[11436,12200.3,0],[[1515,2],[1517,2]]], [1517,[11363.5,12287.2,-7.62939e-006],[[1516,2],[1518,2]]], +[1518,[11305.3,12376.4,-7.62939e-006],[[1517,2],[1519,2]]], [1519,[11219.4,12463.5,0],[[1518,2],[1520,2]]], [1520,[11183.8,12527.3,0],[[1519,2],[1521,2]]], [1521,[11145,12622,0],[[1520,2],[1522,2]]], [1522,[11078.4,12715.8,7.62939e-006],[[1521,2],[1523,2]]], [1523,[11024.1,12794.4,0],[[1522,2]]]]; diff --git a/A3-Antistasi/NavGrids/navGridtem_anizay.sqf b/A3-Antistasi/NavGrids/navGridtem_anizay.sqf new file mode 100644 index 0000000000..9639e202ef --- /dev/null +++ b/A3-Antistasi/NavGrids/navGridtem_anizay.sqf @@ -0,0 +1,574 @@ +navGrid = [[0,[2450.59,8022.89,-1.01725e-005],[[1,2],[2,2],[3,2]]], [1,[2524.83,8109.28,-1.52588e-005],[[0,2],[4,2]]], [2,[2397.28,7940.3,0],[[0,2],[5,2],[6,2]]], [3,[2438.9,8088.2,0],[[0,2],[4,2]]], [4,[2534.83,8152.34,0],[[1,2],[3,2],[7,2]]], [5,[2305.97,7929.56,0],[[2,2],[8,2],[9,2]]], +[6,[2490.68,7890.61,0],[[2,2],[10,2]]], [7,[2569.02,8191.74,3.8147e-006],[[4,2],[11,2],[7,2],[12,2]]], [8,[2247.96,7922.54,-3.8147e-006],[[5,2],[13,2],[14,2],[15,2]]], [9,[2293.84,7846.93,0],[[5,2],[16,2],[15,2]]], [10,[2579.86,7898.29,1.52588e-005],[[6,2],[17,2]]], [11,[2643.19,8218.02,0],[[7,2],[18,2],[12,2],[19,2],[20,2],[21,2]]], +[12,[2546.9,8242.16,0],[[7,2],[11,2],[22,2],[18,2],[23,2]]], [13,[2266.49,8094.47,1.52588e-005],[[8,2],[24,2]]], [14,[2143.03,7859.5,0],[[8,2],[25,2]]], [15,[2255.37,7850.89,0],[[8,2],[9,2],[16,2]]], [16,[2262.17,7831.94,0],[[9,2],[15,2],[26,2],[16,2]]], [17,[2644.13,7943.07,-1.52588e-005],[[10,2],[27,2]]], +[18,[2604.75,8256.27,3.8147e-006],[[11,2],[12,2],[28,2],[29,2]]], [19,[2653.64,8092.3,1.52588e-005],[[11,2],[27,2]]], [20,[2683.61,8271.15,0],[[11,2],[30,2]]], [21,[2724.19,8094.65,1.52588e-005],[[11,2],[31,2]]], [22,[2516.59,8317.74,0],[[12,2],[32,2],[22,2]]], [23,[2385.96,8226.06,0],[[12,2],[24,2]]], +[24,[2267.45,8217.08,-3.8147e-006],[[13,2],[23,2],[33,2],[34,2]]], [25,[2109.45,7816.8,0],[[14,2],[35,2],[36,2],[26,2]]], [26,[2241.46,7810.45,0],[[16,2],[25,2],[37,2]]], [27,[2666.7,7954.41,-1.01725e-005],[[17,2],[19,2],[38,2]]], [28,[2585.28,8437.93,0],[[18,2],[39,2]]], [29,[2664.04,8267.08,0],[[18,2]]], +[30,[2732.74,8287.13,0],[[20,2],[40,2],[41,2]]], [31,[2745.17,8071.32,5.08626e-006],[[21,2],[38,2],[42,2]]], [32,[2482.44,8403.82,-5.08626e-006],[[22,2],[43,2],[44,2]]], [33,[2287.57,8359.12,-1.52588e-005],[[24,2],[43,2]]], [34,[2160.56,8202.95,-7.62939e-006],[[24,2],[45,2],[46,2],[47,2]]], [35,[2092.02,7997.54,0],[[25,2],[48,2]]], +[36,[2026.54,7726.79,0],[[25,2],[49,2],[36,2],[50,2],[51,2]]], [37,[2281.85,7706.33,0],[[26,2],[52,2]]], [38,[2736.37,7952.84,-3.8147e-006],[[27,2],[31,2],[53,2],[54,2]]], [39,[2599.92,8602.46,-1.52588e-005],[[28,2],[55,2]]], [40,[2889.27,8316.47,0],[[30,2],[56,2],[57,2]]], [41,[2770.62,8317.96,5.08626e-006],[[30,2],[58,2],[41,2],[59,2]]], +[42,[2819.73,7979.54,0],[[31,2],[60,2],[53,2]]], [43,[2380.38,8387.52,0],[[32,2],[33,2]]], [44,[2476.27,8483.29,-3.8147e-006],[[32,2],[61,2],[62,2],[63,2]]], [45,[2070.5,8195.73,-5.08626e-006],[[34,2],[64,2],[65,2]]], [46,[2191.95,8358.92,-1.52588e-005],[[34,2],[66,2]]], [47,[2169.56,8069.01,0],[[34,2],[48,2]]], +[48,[2081.95,8011.27,0],[[35,2],[47,2],[67,2]]], [49,[1895.36,7739.76,1.52588e-005],[[36,2],[68,2]]], [50,[2093.24,7574.71,-1.52588e-005],[[36,2],[69,2],[70,2]]], [51,[2054.04,7601.06,0],[[70,2],[36,2]]], [52,[2214.88,7629.84,0],[[37,2],[71,2],[69,2]]], [53,[2823.21,7912.08,-5.08626e-006],[[38,2],[42,2],[60,2],[72,2]]], +[54,[2728.44,7854.53,0],[[38,2],[73,2]]], [55,[2592.61,8684.57,0],[[39,2],[74,2],[75,2]]], [56,[2925.72,8334.78,0],[[40,2],[76,2],[77,2]]], [57,[2897.64,8191.33,0],[[40,2],[78,2]]], [58,[2769.13,8321.71,5.08626e-006],[[41,2]]], [59,[2764.13,8394.46,-1.52588e-005],[[41,2],[79,2]]], +[60,[2834.27,7941.53,0],[[42,2],[53,2],[60,2]]], [61,[2501.51,8558.06,0],[[44,2],[80,2]]], [62,[2379.5,8473.33,-5.08626e-006],[[44,2],[81,2],[66,2],[82,2]]], [63,[2465.39,8527.81,-5.08626e-006],[[44,2],[83,2],[82,2]]], [64,[1912.32,8176.22,-5.08626e-006],[[45,2],[84,2],[85,2]]], [65,[2063.62,8329.66,1.52588e-005],[[45,2],[86,2]]], +[66,[2198,8427.6,3.8147e-006],[[46,2],[62,2],[81,2],[66,2],[87,2]]], [67,[1957.28,8035.47,0],[[48,2],[88,2]]], [68,[1838.68,7734.25,3.05176e-006],[[49,2],[89,2],[90,2],[91,2],[92,2]]], [69,[2168.41,7488.64,0],[[50,2],[52,2],[93,2],[94,2],[95,2]]], [70,[2029.92,7557.14,0],[[149,2],[217,2],[51,2],[50,2]]], [71,[2205.37,7561.41,0],[[52,2],[96,2]]], +[72,[2971.36,7854.42,-3.8147e-006],[[53,2],[97,2],[98,2],[99,2]]], [73,[2728.74,7758.45,0],[[54,2],[100,2]]], [74,[2583.82,8730.11,0],[[55,2],[74,2],[101,2]]], [75,[2676.83,8703.49,1.52588e-005],[[55,2],[102,2]]], [76,[3057.49,8358.64,5.08626e-006],[[56,2],[103,2],[104,2]]], [77,[2906.3,8469.23,0],[[56,2],[105,2]]], +[78,[2905.72,8169.69,0],[[57,2],[97,2],[104,2]]], [79,[2739.15,8416.14,-5.08626e-006],[[59,2],[106,2],[79,2]]], [80,[2495.39,8642.72,0],[[61,2],[107,2]]], [81,[2298.86,8482.67,0],[[62,2],[66,2],[82,2],[108,2],[83,2],[109,2]]], [82,[2377.34,8505.72,0],[[62,2],[63,2],[81,2],[110,2],[108,2]]], [83,[2434.48,8619.43,0],[[63,2],[81,2],[110,2],[111,2],[108,2]]], +[84,[1825.6,8172.35,-3.8147e-006],[[64,2],[112,2],[88,2],[113,2],[114,2]]], [85,[1899.71,8248.67,0],[[64,2],[115,2]]], [86,[2044.27,8397.96,0],[[65,2],[116,2],[117,2]]], [87,[2226.38,8505.43,0],[[66,2],[118,2]]], [88,[1900.21,8063.83,0],[[67,2],[84,2],[114,2],[119,2]]], [89,[1853.09,7637.65,-1.52588e-005],[[68,2],[120,2]]], +[90,[1836.2,7843.24,0],[[68,2],[119,2]]], [91,[1756.92,7741.7,0],[[68,2],[121,2],[122,2],[123,2]]], [92,[1798.73,7566.64,0],[[68,2],[124,2]]], [93,[2119.64,7323.83,0],[[69,2],[125,2]]], [94,[2199.88,7541.28,0],[[69,2]]], [95,[2333.45,7488.95,-1.52588e-005],[[69,2],[126,2]]], +[96,[2290.25,7574.26,0],[[71,2],[127,2]]], [97,[2912.32,7960.83,0],[[72,2],[78,2],[128,2]]], [98,[3162.38,7912.16,0],[[72,2],[129,2]]], [99,[3012.41,7758.46,-5.08626e-006],[[72,2],[130,2],[131,2]]], [100,[2723.74,7725.1,0],[[73,2],[132,2],[133,2]]], [101,[2591.96,8792.96,-6.10352e-006],[[74,2],[101,2],[134,2],[111,2],[135,2]]], +[102,[2720.96,8693.42,0],[[75,2],[136,2]]], [103,[3146,8377.21,5.08626e-006],[[76,2],[137,2],[138,2]]], [104,[2971.88,8221.07,0],[[76,2],[78,2]]], [105,[2891.76,8573.66,0],[[77,2],[139,2]]], [106,[2738.8,8546,0],[[79,2],[136,2]]], [107,[2475.85,8705.68,0],[[80,2],[111,2]]], +[108,[2353.86,8631.65,0],[[81,2],[82,2],[83,2],[110,2],[118,2]]], [109,[2278.65,8617.2,3.05176e-006],[[118,2],[109,2],[185,2],[81,2]]], [110,[2350.32,8601.09,0],[[82,2],[83,2],[108,2]]], [111,[2475.93,8737.11,5.08626e-006],[[83,2],[101,2],[107,2],[140,2]]], [112,[1687.87,8148.63,3.8147e-006],[[84,2],[113,2],[141,2],[142,2]]], [113,[1800.15,8256.18,-7.62939e-006],[[84,2],[112,2],[143,2],[115,2],[144,2]]], +[114,[1858.49,8099.83,-1.01725e-005],[[88,2],[84,2],[148,2]]], [115,[1881.96,8268.41,-1.01725e-005],[[85,2],[113,2],[143,2]]], [116,[2008.16,8463.25,1.52588e-005],[[86,2],[145,2]]], [117,[1951.29,8393.95,0],[[86,2],[146,2]]], [118,[2190.12,8594.29,5.08626e-006],[[87,2],[109,2],[108,2],[147,2]]], [119,[1896.39,7908.82,-1.52588e-005],[[88,2],[90,2]]], +[120,[1929.79,7618.92,0],[[89,2],[149,2]]], [121,[1770.58,7830.54,0],[[91,2],[150,2]]], [122,[1727.55,7663.75,0],[[91,2],[151,2]]], [123,[1646.75,7698.09,1.01725e-005],[[91,2],[152,2],[153,2],[151,2]]], [124,[1785.31,7541.48,-5.08626e-006],[[92,2],[154,2],[155,2]]], [125,[2096.74,7293.49,0],[[93,2],[156,2],[157,2],[158,2]]], +[126,[2494.1,7480.17,0],[[95,2],[159,2]]], [127,[2415.85,7614.08,0],[[96,2],[160,2]]], [128,[3026.92,8035.34,0],[[97,2],[161,2]]], [129,[3271.5,7910.96,3.05176e-006],[[98,2],[162,2],[163,2],[164,2],[165,2]]], [130,[3067.75,7756.52,0],[[99,2]]], [131,[3022.93,7690.7,-5.08626e-006],[[99,2],[166,2],[167,2]]], +[132,[2751.71,7711.7,-5.08626e-006],[[100,2],[168,2],[169,2]]], [133,[2644.87,7644.33,0],[[100,2],[160,2],[168,2],[170,2]]], [134,[2709.12,8846.62,0],[[101,2],[171,2]]], [135,[2635.31,8835.99,0],[[101,2],[172,2],[173,2]]], [136,[2742.27,8667.33,0],[[102,2],[106,2],[174,2],[136,2],[175,2],[139,2]]], [137,[3217.33,8347.39,0],[[103,2],[176,2],[177,2]]], +[138,[3130.67,8308.9,0],[[103,2],[178,2]]], [139,[2861.93,8635.87,0],[[105,2],[136,2],[179,2],[180,2]]], [140,[2449.65,8815.04,0],[[207,2],[279,2],[111,2],[280,2]]], [141,[1510.43,8147.71,0],[[112,2],[181,2]]], [142,[1671.99,7999.53,1.52588e-005],[[112,2],[182,2]]], [143,[1858.34,8291.93,-1.52588e-005],[[113,2],[115,2],[146,2]]], +[144,[1754.92,8387.53,0],[[113,2],[183,2]]], [145,[2019.79,8485.26,-5.08626e-006],[[116,2],[145,2],[184,2]]], [146,[1894.63,8360.07,0],[[117,2],[143,2]]], [147,[2128.2,8638.52,0],[[118,2],[186,2]]], [148,[1849.79,7975.63,0],[[114,2],[150,2]]], [149,[2019.96,7599.59,-1.52588e-005],[[120,2],[70,2]]], +[150,[1794.95,7916.48,0],[[121,2],[148,2],[182,2]]], [151,[1662.91,7630.49,0],[[122,2],[123,2],[153,2]]], [152,[1648.43,7854.42,0],[[123,2],[187,2]]], [153,[1616.92,7620.86,3.05176e-006],[[123,2],[151,2],[188,2],[153,2],[189,2]]], [154,[1812.33,7429.08,0],[[124,2],[190,2]]], [155,[1751.89,7413.71,-1.52588e-005],[[124,2],[191,2]]], +[156,[2079.16,7243.08,0],[[125,2],[192,2],[193,2]]], [157,[2203.55,7297.44,0],[[125,2],[194,2]]], [158,[1986.65,7305.53,0],[[125,2],[193,2],[195,2]]], [159,[2510.37,7469.46,0],[[126,2],[170,2],[159,2],[196,2]]], [160,[2528.27,7638.09,1.52588e-005],[[127,2],[133,2]]], [161,[3112.64,8113.8,0],[[128,2],[178,2]]], +[162,[3431.63,7913.09,0],[[129,2],[197,2]]], [163,[3250.19,8098.05,0],[[129,2],[176,2]]], [164,[3418.49,7770.68,0],[[129,2],[198,2]]], [165,[3284.13,7772.36,0],[[129,2],[199,2]]], [166,[3030.42,7579.85,-5.08626e-006],[[131,2],[200,2],[201,2],[166,2]]], [167,[3100.88,7717.64,0],[[131,2],[202,2]]], +[168,[2723.37,7640.03,0],[[132,2],[133,2]]], [169,[2817.96,7592.15,0],[[132,2],[203,2]]], [170,[2662.84,7493.53,3.8147e-006],[[133,2],[159,2],[203,2],[204,2]]], [171,[2815.39,8901.37,0],[[134,2],[205,2]]], [172,[2760.83,8977.55,0],[[135,2],[206,2]]], [173,[2584.13,8856.54,0],[[135,2],[207,2]]], +[174,[2732.47,8681.6,0],[[136,2]]], [175,[2790.75,8640.41,0],[[136,2],[208,2],[175,2]]], [176,[3243.33,8153.83,1.52588e-005],[[137,2],[163,2],[209,2]]], [177,[3264.17,8471.59,0],[[137,2],[210,2]]], [178,[3129.27,8208.89,1.52588e-005],[[138,2],[161,2]]], [179,[2875.84,8709.31,0],[[139,2],[211,2]]], +[180,[2801.78,8638.38,0],[[139,2]]], [181,[1366.57,8150.53,0],[[141,2],[212,2]]], [182,[1663.43,7972.53,3.05176e-006],[[142,2],[150,2],[182,2],[213,2],[187,2]]], [183,[1714.45,8439.61,0],[[144,2],[214,2]]], [184,[2038.56,8532.67,0],[[145,2],[215,2],[186,2]]], [185,[2252.17,8639.42,-5.08626e-006],[[109,2],[216,2],[185,2]]], +[186,[2081.55,8624.35,0],[[147,2],[184,2],[215,2]]], [187,[1634.09,7868.56,3.8147e-006],[[152,2],[182,2],[218,2],[187,2]]], [188,[1578.17,7414.45,0],[[153,2],[219,2]]], [189,[1540.36,7643.28,0],[[153,2],[220,2]]], [190,[1820.96,7413.06,-5.08626e-006],[[154,2],[191,2],[221,2]]], [191,[1752.05,7376.19,0],[[155,2],[190,2],[222,2],[219,2]]], +[192,[2138.14,7134.3,-1.52588e-005],[[156,2],[223,2]]], [193,[1995.4,7223.86,-5.08626e-006],[[156,2],[158,2],[224,2]]], [194,[2230.98,7280.58,5.08626e-006],[[157,2],[225,2],[226,2]]], [195,[1900.36,7318.87,0],[[158,2],[227,2],[224,2],[222,2],[221,2]]], [196,[2529.76,7380.01,0],[[159,2],[228,2]]], [197,[3463.69,7906.86,5.08626e-006],[[162,2],[229,2],[230,2]]], +[198,[3499.73,7693.77,0],[[164,2],[231,2]]], [199,[3285.62,7736.08,0],[[165,2],[232,2],[233,2]]], [200,[3035,7453.39,3.8147e-006],[[166,2],[234,2],[235,2],[236,2]]], [201,[3018.43,7587.54,-1.52588e-005],[[166,2],[235,2]]], [202,[3099.44,7812.25,-1.52588e-005],[[167,2],[237,2]]], [203,[2770.02,7500.3,0],[[169,2],[170,2]]], +[204,[2648.31,7441.99,5.08626e-006],[[170,2],[228,2],[238,2]]], [205,[2883.69,8906.71,-3.8147e-006],[[171,2],[206,2],[211,2],[239,2]]], [206,[2854.4,9032.93,5.08626e-006],[[172,2],[205,2],[240,2]]], [207,[2502.39,8837,0],[[173,2],[140,2]]], [208,[2777.5,8651.45,0],[[175,2]]], [209,[3252.39,8142.86,3.8147e-006],[[176,2],[209,2],[241,2]]], +[210,[3237.16,8583.87,-1.01725e-005],[[177,2],[242,2],[243,2]]], [211,[2899.87,8763.34,5.08626e-006],[[179,2],[205,2],[244,2]]], [212,[1309.52,8133.09,-5.08626e-006],[[181,2],[245,2],[246,2]]], [213,[1592.19,7955.51,0],[[182,2],[218,2]]], [214,[1701.45,8550.99,0],[[183,2],[247,2]]], [215,[2007.42,8625.39,0],[[184,2],[186,2],[248,2]]], +[216,[2205.9,8676.62,0],[[185,2],[249,2],[250,2],[216,2]]], [217,[1891.44,7493.03,0],[[70,2],[221,2]]], [218,[1518.45,7854.57,3.8147e-006],[[187,2],[213,2],[251,2],[220,2]]], [219,[1625.75,7305.56,-3.8147e-006],[[188,2],[191,2],[252,2],[219,2],[253,2],[254,2]]], [220,[1478.07,7667.78,0],[[189,2],[218,2],[255,2]]], [221,[1865.58,7417.11,0],[[190,2],[195,2],[217,2]]], +[222,[1716.05,7317.7,0],[[191,2],[195,2],[256,2]]], [223,[2186.63,7126.14,0],[[192,2],[257,2],[226,2],[258,2]]], [224,[1912.76,7211.27,0],[[193,2],[195,2],[259,2]]], [225,[2336.06,7246.77,0],[[194,2],[260,2]]], [226,[2243.94,7180.87,0],[[194,2],[223,2]]], [227,[1902.7,7272.74,0],[[195,2],[256,2]]], +[228,[2610.8,7427.36,0],[[196,2],[204,2]]], [229,[3501.88,7918.26,0],[[197,2],[261,2],[229,2],[262,2]]], [230,[3484.99,7805.31,0],[[197,2],[231,2]]], [231,[3521.7,7685.77,0],[[198,2],[230,2],[263,2],[264,2]]], [232,[3214.95,7730.88,-5.08626e-006],[[199,2],[232,2],[265,2],[237,2]]], [233,[3305.87,7598.48,0],[[199,2],[266,2]]], +[234,[3033.75,7388.66,0],[[200,2],[234,2],[267,2],[268,2],[269,2]]], [235,[2939.79,7474.21,0],[[200,2],[201,2],[270,2]]], [236,[3140.84,7464.35,1.52588e-005],[[200,2],[271,2]]], [237,[3160.69,7834.22,0],[[202,2],[232,2],[272,2],[265,2]]], [238,[2645.09,7309.29,0],[[204,2],[273,2],[274,2]]], [239,[2940.3,8948.14,0],[[205,2],[275,2]]], +[240,[2916.19,9159.95,0],[[206,2],[276,2],[277,2],[278,2]]], [241,[3297.08,8225.89,0],[[209,2],[281,2]]], [242,[3131.84,8704.64,0],[[210,2],[282,2]]], [243,[3275.66,8641.59,0],[[210,2],[283,2],[284,2]]], [244,[2966.13,8819.39,1.52588e-005],[[211,2],[285,2]]], [245,[1298.13,8295.1,1.01725e-005],[[212,2],[286,2],[287,2]]], +[246,[1257.34,8086.37,0],[[212,2],[288,2],[246,2],[289,2]]], [247,[1696.85,8564.56,0],[[214,2],[290,2],[291,2]]], [248,[1989.17,8761.25,-1.52588e-005],[[215,2],[292,2]]], [249,[2207.87,8757.72,5.08626e-006],[[216,2],[293,2],[249,2]]], [250,[2209.09,8653.13,0],[[216,2]]], [251,[1310.97,7835.55,0],[[218,2],[289,2]]], +[252,[1546.59,7251.37,3.8147e-006],[[219,2],[294,2],[295,2],[296,2],[254,2]]], [253,[1694.02,7213.33,0],[[219,2],[297,2]]], [254,[1627.36,7167.72,3.8147e-006],[[294,2],[398,2],[399,2],[219,2],[252,2]]], [255,[1426.41,7569.94,0],[[220,2],[298,2]]], [256,[1758.53,7284.11,1.01725e-005],[[222,2],[227,2],[299,2],[297,2]]], [257,[2079.35,7081.61,-1.52588e-005],[[223,2],[300,2]]], +[258,[2229.22,7067.47,0],[[223,2],[301,2],[302,2]]], [259,[1924.42,7154.33,0],[[224,2],[299,2],[303,2]]], [260,[2400.04,7233.34,0],[[225,2],[304,2],[305,2]]], [261,[3617.57,7951.55,0],[[229,2],[306,2],[307,2]]], [262,[3422.24,8045.86,0],[[229,2],[308,2]]], [263,[3463.63,7621.3,0],[[231,2],[309,2]]], +[264,[3640.14,7537.06,0],[[231,2],[310,2]]], [265,[3191.87,7833.81,0],[[232,2],[237,2]]], [266,[3343.72,7528.75,5.08626e-006],[[233,2],[311,2],[309,2]]], [267,[3024.54,7277.72,-3.8147e-006],[[234,2],[270,2],[312,2],[313,2]]], [268,[3129.07,7382.24,1.52588e-005],[[234,2],[269,2]]], [269,[3151.23,7398.02,-3.05176e-006],[[234,2],[268,2],[311,2],[314,2],[271,2],[315,2]]], +[270,[2922.95,7290.3,-7.62939e-006],[[235,2],[267,2],[316,2],[317,2]]], [271,[3172.3,7479.99,0],[[236,2],[269,2],[314,2],[318,2]]], [272,[3174.78,7682.87,-1.52588e-005],[[237,2],[318,2]]], [273,[2645.48,7242.13,0],[[238,2],[319,2],[320,2],[321,2]]], [274,[2529.03,7298.19,0],[[238,2],[304,2]]], [275,[2946.39,9022.38,0],[[239,2],[322,2]]], +[276,[3021.25,9177.42,0],[[240,2],[323,2],[324,2]]], [277,[2816.5,9157.38,0],[[240,2],[325,2]]], [278,[2917.61,9206.62,0],[[240,2],[326,2],[278,2],[327,2]]], [279,[2448.17,8747.25,0],[[140,2]]], [280,[2422.59,8959.7,0],[[140,2],[328,2],[329,2]]], [281,[3376.34,8263.74,1.52588e-005],[[241,2],[330,2]]], +[282,[3098.09,8746.62,0],[[242,2],[331,2],[332,2],[285,2],[333,2]]], [283,[3423.07,8696.76,0],[[243,2],[334,2]]], [284,[3326.56,8792.17,0],[[243,2],[335,2]]], [285,[3027.65,8870.12,0],[[244,2],[282,2],[332,2]]], [286,[1309.44,8516.59,0],[[245,2],[336,2]]], [287,[1437.97,8298.55,-1.52588e-005],[[245,2],[337,2]]], +[288,[1105.57,7999.49,0],[[246,2],[338,2]]], [289,[1243.31,7879.97,0],[[246,2],[251,2],[339,2]]], [290,[1597.42,8515.45,0],[[247,2],[340,2]]], [291,[1699.46,8674.93,0],[[247,2],[341,2]]], [292,[1987.3,8794.44,-5.08626e-006],[[248,2],[342,2],[343,2]]], [293,[2213.72,8866.06,0],[[249,2],[344,2]]], +[294,[1556.89,7170.45,-1.01725e-005],[[252,2],[254,2],[297,2],[345,2]]], [295,[1477.19,7280.96,0],[[252,2],[295,2],[346,2],[347,2],[348,2]]], [296,[1442.76,7198.44,0],[[252,2],[349,2]]], [297,[1695.83,7184.86,-5.08626e-006],[[253,2],[256,2],[294,2],[299,2],[350,2]]], [298,[1436.46,7536.17,0],[[255,2],[351,2],[346,2]]], [299,[1768.09,7190.5,0],[[256,2],[259,2],[297,2]]], +[300,[2059.87,7037.94,5.08626e-006],[[257,2],[352,2],[303,2]]], [301,[2199.44,7016.04,5.08626e-006],[[258,2],[353,2],[352,2]]], [302,[2344.9,7067.52,5.08626e-006],[[258,2],[354,2],[305,2]]], [303,[1927.35,7069.01,-3.8147e-006],[[259,2],[300,2],[355,2],[356,2]]], [304,[2483.12,7272.11,0],[[260,2],[274,2]]], [305,[2388.77,7150.88,5.08626e-006],[[260,2],[302,2],[357,2]]], +[306,[3686.17,7926.45,0],[[261,2],[358,2],[359,2]]], [307,[3613.37,8070.2,0],[[261,2],[360,2]]], [308,[3436.81,8132.16,-5.08626e-006],[[262,2],[361,2],[362,2]]], [309,[3413.98,7578.95,1.52588e-005],[[263,2],[266,2]]], [310,[3686.89,7488.79,0],[[264,2],[363,2],[364,2],[310,2]]], [311,[3293.19,7444.69,0],[[266,2],[269,2],[365,2]]], +[312,[3032.1,7217.75,-5.08626e-006],[[267,2],[366,2],[367,2],[313,2]]], [313,[3091.38,7253.62,0],[[267,2],[312,2],[315,2],[367,2]]], [314,[3172.45,7442.63,7.62939e-006],[[269,2],[271,2]]], [315,[3151.11,7355.83,-3.05176e-006],[[269,2],[313,2],[315,2],[368,2],[369,2]]], [316,[2833.39,7143.88,0],[[270,2],[370,2]]], [317,[2863.7,7305.24,0],[[270,2],[371,2]]], +[318,[3176.88,7603.58,-1.52588e-005],[[271,2],[272,2]]], [319,[2642.7,7067.15,0],[[273,2],[372,2]]], [320,[2547.02,7197.34,0],[[273,2],[357,2]]], [321,[2745.66,7227.49,0],[[273,2],[371,2]]], [322,[2984.57,9031.04,0],[[275,2]]], [323,[3038.36,9131.43,5.08626e-006],[[276,2],[332,2],[373,2]]], +[324,[3073.41,9204.81,-1.01725e-005],[[276,2],[374,2],[373,2],[327,2]]], [325,[2740.95,9106.53,0],[[277,2],[375,2]]], [326,[2901.86,9398.14,0],[[278,2],[376,2],[377,2]]], [327,[2958.17,9221.82,-5.08626e-006],[[278,2],[324,2],[377,2]]], [328,[2364.35,8920.66,-1.52588e-005],[[280,2]]], [329,[2429.94,9036.75,0],[[280,2],[378,2],[379,2]]], +[330,[3410.81,8331.19,0],[[281,2],[380,2]]], [331,[3153.18,8801.97,-1.52588e-005],[[282,2],[381,2]]], [332,[3062.13,8906.14,0],[[282,2],[285,2],[323,2]]], [333,[3123.39,8600.46,0],[[282,2],[382,2]]], [334,[3558.21,8691.85,0],[[283,2],[383,2]]], [335,[3363.25,8900.57,0],[[284,2],[384,2],[385,2]]], +[336,[1326.66,8718.31,7.62939e-006],[[286,2],[386,2],[387,2],[388,2]]], [337,[1547.08,8333.17,0],[[287,2],[340,2]]], [338,[1088.2,7981.43,5.08626e-006],[[288,2],[389,2],[390,2]]], [339,[1252.5,7843.89,0],[[289,2],[391,2],[390,2]]], [340,[1580.66,8422.5,0],[[290,2],[337,2]]], [341,[1697.36,8763.52,0],[[291,2],[392,2]]], +[342,[1975.68,8918.85,5.08626e-006],[[292,2],[393,2],[394,2]]], [343,[2050.73,8809.85,-1.52588e-005],[[292,2],[395,2]]], [344,[2151.17,8883.91,0],[[293,2],[396,2],[397,2]]], [345,[1463.03,7101.92,0],[[294,2],[400,2]]], [346,[1522.73,7380.82,0],[[295,2],[298,2]]], [347,[1369.65,7229.6,0],[[295,2],[401,2],[402,2]]], +[348,[1415.8,7343.91,0],[[295,2],[402,2]]], [349,[1378.11,7162.14,-1.52588e-005],[[296,2],[403,2]]], [350,[1651.86,7101.33,0],[[297,2],[398,2]]], [351,[1272.13,7547.4,0],[[298,2],[404,2]]], [352,[2069.5,6990.37,0],[[300,2],[301,2],[405,2]]], [353,[2216.96,6871.39,0],[[301,2],[406,2]]], +[354,[2464.32,6992.81,0],[[302,2],[407,2]]], [355,[1803.58,7019.09,1.52588e-005],[[303,2],[408,2]]], [356,[1930.44,6930.51,0],[[303,2],[409,2]]], [357,[2485.42,7151.2,0],[[305,2],[320,2]]], [358,[3665.85,7863.11,0],[[306,2],[410,2]]], [359,[3759.84,7904.58,5.08626e-006],[[306,2],[411,2],[412,2]]], +[360,[3616.06,8111.11,-3.8147e-006],[[307,2],[362,2],[413,2],[414,2]]], [361,[3504.35,8175.59,5.08626e-006],[[308,2],[362,2],[415,2]]], [362,[3515.19,8125.91,5.08626e-006],[[308,2],[360,2],[361,2]]], [363,[3744.72,7453.7,0],[[310,2],[416,2],[417,2],[418,2],[419,2]]], [364,[3667.59,7490.56,0],[[310,2],[420,2]]], [365,[3292.56,7336.8,0],[[311,2],[421,2]]], +[366,[3022.22,7153.57,0],[[312,2],[366,2],[422,2],[423,2]]], [367,[3092.85,7216.02,0],[[312,2],[313,2],[424,2]]], [368,[3184.87,7364.69,-1.52588e-005],[[315,2]]], [369,[3199.68,7298.27,-1.52588e-005],[[315,2],[425,2]]], [370,[2806.92,7062.7,0],[[316,2],[426,2],[370,2],[427,2]]], [371,[2776.34,7309.93,-1.52588e-005],[[317,2],[321,2]]], +[372,[2638.36,6942.89,-1.52588e-005],[[319,2],[428,2]]], [373,[3146.68,9143.33,3.8147e-006],[[323,2],[324,2],[374,2],[429,2]]], [374,[3135.57,9205.78,-3.8147e-006],[[324,2],[373,2],[430,2],[431,2]]], [375,[2650.54,9091.06,0],[[325,2],[432,2]]], [376,[2882.11,9544.1,1.52588e-005],[[326,2],[433,2]]], [377,[2938.85,9322.04,-1.52588e-005],[[326,2],[327,2]]], +[378,[2346.74,9052.16,-5.08626e-006],[[329,2],[434,2],[435,2]]], [379,[2515.41,9075.75,-5.08626e-006],[[329,2],[432,2],[436,2]]], [380,[3463.65,8371.1,0],[[330,2],[437,2]]], [381,[3155.99,8885.81,0],[[331,2],[438,2]]], [382,[3078.89,8539.86,0],[[333,2],[439,2]]], [383,[3724.26,8705.66,0],[[334,2],[440,2]]], +[384,[3397.31,8937.75,5.08626e-006],[[335,2],[384,2],[441,2]]], [385,[3300.26,8917.67,0],[[335,2],[438,2]]], [386,[1263.76,8675.43,0],[[336,2],[442,2]]], [387,[1331.35,8913.47,0],[[336,2],[443,2]]], [388,[1425.81,8758.57,0],[[336,2],[444,2]]], [389,[1005.73,7928.12,3.8147e-006],[[338,2],[445,2],[446,2],[447,2]]], +[390,[1089.98,7784.18,-5.08626e-006],[[338,2],[339,2],[448,2]]], [391,[1234.13,7692.29,-1.52588e-005],[[339,2],[404,2]]], [392,[1681.38,8856.11,0],[[341,2],[449,2],[450,2],[451,2]]], [393,[2030.99,8937.19,0],[[342,2],[452,2],[395,2],[397,2],[453,2]]], [394,[1934.43,8919.52,0],[[342,2],[454,2],[455,2]]], [395,[2059.11,8838.5,-1.01725e-005],[[343,2],[393,2],[396,2],[452,2]]], +[396,[2105.22,8842.56,0],[[344,2],[395,2]]], [397,[2080.57,8879.68,-1.52588e-005],[[344,2],[393,2],[452,2]]], [398,[1630.1,7044.55,0],[[254,2],[350,2],[456,2]]], [399,[1616.52,7247.17,-5.08626e-006],[[254,2]]], [400,[1455.42,6986.57,0],[[345,2],[457,2]]], [401,[1275.71,7180.13,0],[[347,2],[458,2],[459,2]]], +[402,[1368.48,7331.37,5.08626e-006],[[347,2],[348,2],[460,2]]], [403,[1332.76,7117.16,5.08626e-006],[[349,2],[461,2],[462,2]]], [404,[1234.14,7577.88,5.08626e-006],[[351,2],[391,2],[463,2]]], [405,[2088.45,6817.51,3.8147e-006],[[352,2],[464,2],[465,2],[405,2],[406,2]]], [406,[2138.21,6849.44,-1.52588e-005],[[353,2],[405,2],[466,2]]], [407,[2558.89,6938.35,-1.52588e-005],[[354,2],[428,2]]], +[408,[1797.17,7003.21,5.08626e-006],[[355,2],[467,2],[468,2]]], [409,[1935.36,6754.15,0],[[356,2],[469,2]]], [410,[3657.41,7803.91,-1.52588e-005],[[358,2],[470,2]]], [411,[3749.36,7805.69,0],[[359,2],[471,2]]], [412,[3888.01,7909.08,-1.52588e-005],[[359,2],[472,2]]], [413,[3621.99,8237.52,0],[[360,2],[473,2]]], +[414,[3666.96,8133.47,0],[[360,2],[474,2],[414,2],[475,2]]], [415,[3538.41,8284.98,0],[[361,2],[473,2]]], [416,[3845.67,7366.76,0],[[363,2],[476,2],[477,2]]], [417,[3738.71,7367.76,0],[[363,2],[478,2],[476,2],[479,2]]], [418,[3739.62,7583.7,1.52588e-005],[[363,2],[480,2]]], [419,[3844.02,7481.08,-1.52588e-005],[[363,2],[481,2]]], +[420,[3631.49,7479.82,0],[[364,2],[482,2],[420,2]]], [421,[3295.37,7238.8,0],[[365,2],[424,2]]], [422,[2916.08,7138.03,0],[[366,2],[427,2]]], [423,[3022.04,7037.22,5.08626e-006],[[366,2],[483,2],[484,2]]], [424,[3168.04,7204.74,0],[[367,2],[421,2],[425,2],[485,2]]], [425,[3185.82,7274.73,0],[[369,2],[424,2],[425,2]]], +[426,[2786.98,7005.49,0],[[370,2],[486,2],[487,2]]], [427,[2899.6,7064.77,0],[[370,2],[422,2]]], [428,[2628.37,6905.75,5.08626e-006],[[372,2],[407,2],[488,2],[486,2]]], [429,[3189.64,9100.58,0],[[373,2],[489,2]]], [430,[3264.18,9239.9,0],[[374,2],[490,2]]], [431,[3109.36,9353.52,1.52588e-005],[[374,2],[491,2]]], +[432,[2577.51,9088.66,0],[[375,2],[379,2]]], [433,[2877.11,9667.52,0],[[376,2],[492,2]]], [434,[2257,9027.7,0],[[378,2],[493,2]]], [435,[2319.92,9152.91,1.52588e-005],[[378,2],[494,2]]], [436,[2494.07,9210.51,0],[[379,2],[495,2]]], [437,[3492.71,8390.16,-5.08626e-006],[[380,2],[496,2],[437,2]]], +[438,[3246.63,8900.57,0],[[381,2],[385,2]]], [439,[3114.32,8477.8,0],[[382,2],[497,2]]], [440,[3786.11,8712.67,0],[[383,2],[498,2],[499,2],[500,2]]], [441,[3522.7,9007.93,1.52588e-005],[[384,2],[501,2]]], [442,[1194.2,8672.48,0],[[386,2],[502,2],[503,2]]], [443,[1332.83,9076.92,0],[[387,2],[504,2]]], +[444,[1455.46,8767.38,0],[[388,2],[444,2],[505,2]]], [445,[882.813,7854.12,0],[[389,2],[506,2],[507,2]]], [446,[1019.81,7994.62,-1.52588e-005],[[389,2],[508,2]]], [447,[982.102,7781.02,0],[[389,2],[509,2]]], [448,[1071.73,7600.45,0],[[390,2],[510,2]]], [449,[1783.02,8868.51,-1.52588e-005],[[392,2],[511,2],[455,2]]], +[450,[1591.46,8822.34,0],[[392,2],[512,2],[505,2]]], [451,[1651.99,8999.42,-1.52588e-005],[[392,2],[513,2]]], [452,[2050.45,8876.13,0],[[395,2],[397,2],[514,2],[452,2]]], [453,[2110.85,8972.05,0],[[393,2],[515,2]]], [454,[1908.8,9015.47,0],[[394,2],[516,2]]], [455,[1847.86,8871.89,-5.08626e-006],[[394,2],[449,2],[517,2],[511,2],[518,2]]], +[456,[1624.83,6898.1,1.52588e-005],[[398,2],[519,2]]], [457,[1438.15,6867.42,0],[[400,2],[520,2]]], [458,[1265.72,7225.31,0],[[401,2]]], [459,[1129.15,7154.89,1.52588e-005],[[401,2],[521,2]]], [460,[1326.8,7453.76,1.52588e-005],[[402,2],[463,2]]], [461,[1324.07,6970.97,-1.52588e-005],[[403,2],[522,2],[520,2]]], +[462,[1210.89,7049.02,0],[[403,2],[523,2]]], [463,[1226.34,7471.85,-5.08626e-006],[[404,2],[460,2],[524,2]]], [464,[1982.39,6741.54,0],[[405,2],[469,2]]], [465,[2092.46,6830.62,5.08626e-006],[[405,2]]], [466,[2113.91,6848.56,0],[[406,2]]], [467,[1818.57,6828.68,0],[[408,2],[525,2]]], +[468,[1741.01,6966.06,0],[[408,2],[526,2]]], [469,[1938.02,6696.86,0],[[409,2],[464,2],[527,2],[525,2]]], [470,[3663.91,7772.99,0],[[410,2],[470,2],[471,2]]], [471,[3742.32,7779.15,0],[[411,2],[470,2],[480,2]]], [472,[3905.54,7918.11,-3.8147e-006],[[412,2],[528,2],[472,2],[529,2]]], [473,[3623.85,8295.34,0],[[413,2],[415,2],[530,2]]], +[474,[3699.98,8058.74,3.8147e-006],[[414,2],[531,2],[474,2],[532,2]]], [475,[3727.77,8190.24,0],[[414,2],[533,2]]], [476,[3810.63,7333.93,0],[[416,2],[417,2],[478,2],[534,2],[479,2],[477,2]]], [477,[3862.79,7294.24,-6.10352e-006],[[416,2],[476,2],[535,2],[536,2],[537,2],[477,2]]], [478,[3760.47,7352.37,0],[[417,2],[476,2],[478,2],[534,2]]], [479,[3742.48,7294.17,-3.8147e-006],[[417,2],[476,2],[534,2],[538,2],[539,2],[535,2]]], +[480,[3740.67,7656.25,0],[[418,2],[471,2]]], [481,[3972.14,7478.03,0],[[419,2],[540,2]]], [482,[3611.75,7413.18,0],[[482,2]]], [483,[3111.06,7032.66,0],[[423,2],[541,2]]], [484,[3017.97,6945.86,0],[[423,2],[542,2],[487,2],[543,2],[544,2]]], [485,[3153.97,7124.77,1.52588e-005],[[424,2],[545,2],[546,2]]], +[486,[2661.24,6891.23,0],[[426,2],[428,2],[547,2]]], [487,[2918.71,6947.29,0],[[426,2],[484,2],[542,2]]], [488,[2648.04,6872.64,0],[[428,2],[548,2]]], [489,[3285.27,9153.51,0],[[429,2],[490,2]]], [490,[3335.76,9246.77,0],[[430,2],[489,2],[549,2]]], [491,[3149.18,9402.23,0],[[431,2],[550,2]]], +[492,[2860.75,9753.82,6.10352e-006],[[433,2],[551,2],[552,2],[492,2],[553,2]]], [493,[2200.79,9005.78,0],[[434,2],[515,2]]], [494,[2306.81,9269.45,0],[[435,2],[554,2]]], [495,[2506.02,9317.31,0],[[436,2],[555,2]]], [496,[3592.53,8416.24,0],[[437,2],[556,2]]], [497,[3127.9,8469.24,1.52588e-005],[[439,2]]], +[498,[3981.17,8721.78,0],[[440,2],[557,2]]], [499,[3791.99,8637.33,0],[[440,2],[558,2]]], [500,[3816.73,8760.6,5.08626e-006],[[440,2],[559,2],[560,2]]], [501,[3588.28,9086.68,0],[[441,2],[561,2]]], [502,[1204.81,8566.84,0],[[442,2],[562,2]]], [503,[1124.87,8669.17,0],[[442,2],[563,2],[564,2]]], +[504,[1328.24,9176.75,0],[[443,2],[504,2],[565,2],[566,2],[567,2]]], [505,[1538.55,8776.48,-3.05176e-005],[[444,2],[450,2],[512,2]]], [506,[801.576,7806.52,-5.08626e-006],[[445,2],[568,2],[569,2]]], [507,[873.884,7923.69,0],[[445,2],[570,2]]], [508,[990.734,8031.04,0],[[446,2],[571,2]]], [509,[982.102,7609.75,1.52588e-005],[[447,2],[572,2]]], +[510,[1056.51,7449.67,0],[[448,2],[573,2],[524,2]]], [511,[1814.95,8880.65,-1.52588e-005],[[449,2],[455,2],[574,2],[516,2]]], [512,[1559.91,8786.3,0],[[450,2],[505,2]]], [513,[1651.5,9140.71,0],[[451,2],[575,2]]], [514,[2054.91,8878.03,-3.8147e-006],[[452,2]]], [515,[2139.01,8991.72,0],[[453,2],[493,2],[576,2]]], +[516,[1869.08,9020.15,0],[[454,2],[511,2],[577,2],[574,2]]], [517,[1810.3,8875.63,0],[[455,2]]], [518,[1869.21,8775.79,0],[[455,2],[578,2]]], [519,[1634.45,6857.45,-1.01725e-005],[[456,2],[579,2],[526,2]]], [520,[1353.54,6840.19,0],[[457,2],[461,2],[522,2]]], [521,[1009.06,7163.22,0],[[459,2],[580,2],[581,2],[573,2]]], +[522,[1317,6828.59,0],[[461,2],[520,2],[582,2],[583,2]]], [523,[1123.53,7034.03,0],[[462,2],[581,2]]], [524,[1120.95,7383.93,0],[[463,2],[510,2],[573,2]]], [525,[1819.06,6680,-5.08626e-006],[[467,2],[469,2],[584,2]]], [526,[1667.47,6907.74,1.52588e-005],[[468,2],[519,2]]], [527,[1914.24,6528.41,1.52588e-005],[[469,2],[585,2]]], +[528,[4024.44,7964.11,0],[[472,2],[586,2],[587,2],[588,2]]], [529,[3884.6,8025.73,-1.52588e-005],[[472,2],[589,2]]], [530,[3701.92,8313.13,3.8147e-006],[[473,2],[590,2],[556,2],[530,2],[533,2]]], [531,[3726.09,7967.27,0],[[474,2],[591,2],[589,2]]], [532,[3748.96,8082.71,5.08626e-006],[[474,2],[592,2],[532,2]]], [533,[3715.41,8260.12,0],[[475,2],[530,2]]], +[534,[3766.4,7314.28,0],[[476,2],[478,2],[479,2]]], [535,[3827.7,7290.55,0],[[477,2],[479,2],[539,2],[593,2]]], [536,[3862.45,7187.07,5.08626e-006],[[477,2],[594,2],[595,2],[593,2]]], [537,[3943.62,7291.08,0],[[477,2],[596,2],[597,2]]], [538,[3754.55,7187.03,5.08626e-006],[[479,2],[598,2],[595,2]]], [539,[3774.16,7286.88,0],[[479,2],[535,2],[599,2],[593,2]]], +[540,[3988.17,7491.41,-1.01725e-005],[[481,2],[600,2],[601,2]]], [541,[3133.71,7026.25,0],[[483,2],[543,2],[605,2]]], [542,[2949.1,6933.11,0],[[484,2],[487,2],[606,2]]], [543,[3124.31,6964.74,-3.8147e-006],[[484,2],[541,2],[607,2],[544,2],[605,2]]], [544,[3036.95,6868.01,-3.05176e-006],[[484,2],[543,2],[606,2],[607,2],[608,2]]], [545,[3184.46,7085.56,0],[[485,2],[546,2],[545,2],[609,2],[605,2]]], +[546,[3166.71,7083.37,0],[[545,2],[671,2],[485,2],[546,2]]], [547,[2649.65,6883.18,0],[[486,2]]], [548,[2657.1,6831.63,5.08626e-006],[[488,2],[610,2],[611,2]]], [549,[3429.22,9304.27,1.52588e-005],[[490,2],[612,2]]], [550,[3229.51,9479.99,0],[[491,2],[613,2]]], [551,[2884.61,9907.04,1.52588e-005],[[492,2],[614,2]]], +[552,[2968.53,9807.62,1.52588e-005],[[492,2],[615,2]]], [553,[2756.31,9746.64,0],[[492,2],[616,2]]], [554,[2310.56,9353.39,0],[[494,2],[617,2]]], [555,[2491.73,9454.09,0],[[495,2],[618,2]]], [556,[3671.93,8424.44,-1.52588e-005],[[496,2],[530,2],[619,2]]], [557,[4080.24,8742.21,-3.8147e-006],[[498,2],[620,2],[621,2],[622,2]]], +[558,[3805.81,8576.2,0],[[499,2],[623,2]]], [559,[3802.21,8922.26,0],[[500,2],[624,2]]], [560,[3893.23,8800.81,0],[[500,2],[625,2]]], [561,[3669.8,9134.17,1.52588e-005],[[501,2],[626,2]]], [562,[1202.47,8435.45,0],[[502,2],[627,2]]], [563,[996.935,8664.12,5.08626e-006],[[503,2],[628,2],[629,2]]], +[564,[1120.98,8758.3,0],[[503,2],[630,2]]], [565,[1327.3,9350.23,0],[[504,2],[631,2]]], [566,[1458.7,9224.06,0],[[504,2],[632,2]]], [567,[1249.96,9159.74,-1.52588e-005],[[504,2],[633,2]]], [568,[646.917,7695.87,0],[[506,2],[634,2]]], [569,[808.568,7921.56,0],[[506,2],[635,2]]], +[570,[849.902,8015.12,-1.52588e-005],[[507,2],[636,2],[571,2]]], [571,[916.837,8060.87,0],[[508,2],[570,2],[637,2],[636,2]]], [572,[937.456,7473.62,0],[[509,2],[638,2]]], [573,[1060.2,7380.22,-3.8147e-006],[[510,2],[521,2],[524,2],[573,2]]], [574,[1822.52,8995.33,0],[[511,2],[516,2]]], [575,[1654.31,9234.63,0],[[513,2],[639,2],[632,2]]], +[576,[2169.77,9110.5,0],[[515,2],[640,2]]], [577,[1849.4,9175.75,-1.52588e-005],[[516,2],[641,2]]], [578,[1859.46,8746.56,0],[[518,2]]], [579,[1643.97,6683.83,0],[[519,2],[642,2],[584,2]]], [580,[919.658,7154.7,0],[[521,2],[643,2],[644,2],[645,2]]], [581,[1011.03,6998.87,-5.08626e-006],[[521,2],[523,2],[646,2]]], +[582,[1191.94,6818.24,-1.52588e-005],[[522,2],[646,2]]], [583,[1319.66,6661.03,1.52588e-005],[[522,2],[647,2]]], [584,[1668.47,6658.46,0],[[525,2],[579,2],[648,2]]], [585,[1890.57,6481.92,5.08626e-006],[[527,2],[649,2],[650,2]]], [586,[4017.58,7857.73,-1.01725e-005],[[528,2],[651,2],[652,2],[587,2]]], [587,[4075.47,7991.2,-5.08626e-006],[[528,2],[586,2],[652,2],[653,2]]], +[588,[3995.92,8090.6,-5.08626e-006],[[528,2],[654,2],[655,2]]], [589,[3798.66,8019.05,5.08626e-006],[[529,2],[531,2],[656,2],[589,2]]], [590,[3711.99,8428.98,-1.52588e-005],[[530,2],[657,2]]], [591,[3754.38,7994.63,-1.52588e-005],[[531,2],[658,2],[591,2]]], [592,[3781.32,8160.15,0],[[532,2],[659,2]]], [593,[3819.07,7234.87,-5.08626e-006],[[535,2],[536,2],[539,2],[599,2],[660,2]]], +[594,[3894.15,7092.29,0],[[536,2],[598,2],[597,2]]], [595,[3829.08,7196.73,1.52588e-005],[[536,2],[538,2]]], [596,[4054.72,7316.94,0],[[537,2],[600,2],[661,2],[596,2]]], [597,[3975.24,7057.76,3.05176e-006],[[594,2],[727,2],[597,2],[728,2],[537,2],[729,2],[730,2]]], [598,[3751.4,7153.24,3.8147e-006],[[538,2],[594,2],[598,2],[662,2]]], [599,[3789,7238.52,0],[[539,2],[593,2]]], +[600,[4053.99,7391.05,1.52588e-005],[[540,2],[596,2],[663,2]]], [601,[3993.68,7618.79,0],[[540,2],[664,2]]], [602,[3591.08,7328.55,0],[[482,2],[603,2],[604,2],[602,2]]], [603,[3574.22,7246.24,0],[[602,2],[665,2],[662,2],[603,2]]], [604,[3593.76,7340.76,0],[[602,2]]], [605,[3190.04,7015.48,-5.08626e-006],[[541,2],[543,2],[545,2],[666,2],[605,2]]], +[606,[2950.31,6878.32,-5.08626e-006],[[542,2],[544,2],[667,2]]], [607,[3121.45,6855.58,-3.05176e-006],[[543,2],[544,2],[668,2],[669,2]]], [608,[2990.48,6753.22,0],[[544,2],[670,2]]], [609,[3324.57,7099.93,-1.52588e-005],[[545,2],[672,2]]], [610,[2717.45,6863.71,1.52588e-005],[[548,2],[673,2]]], [611,[2639.06,6788.13,5.08626e-006],[[548,2],[674,2],[675,2]]], +[612,[3495.32,9358.68,0],[[549,2],[676,2]]], [613,[3250.75,9491.84,1.01725e-005],[[550,2],[677,2],[678,2]]], [614,[2889.16,9961.41,0],[[551,2],[679,2],[680,2],[681,2]]], [615,[3073.34,9828.12,0],[[552,2],[682,2]]], [616,[2637.44,9725.06,0],[[553,2],[683,2]]], [617,[2330.23,9435.83,0],[[554,2],[684,2]]], +[618,[2488.92,9574,0],[[555,2],[685,2]]], [619,[3710.35,8436.01,0],[[556,2]]], [620,[4261.03,8750.98,0],[[557,2],[686,2]]], [621,[4111.28,8582.33,0],[[557,2],[687,2]]], [622,[4078.15,8823.16,-3.8147e-006],[[557,2],[688,2],[689,2],[625,2]]], [623,[3807.88,8542.96,-1.01725e-005],[[558,2],[657,2],[690,2]]], +[624,[3810.41,9040.77,0],[[559,2],[691,2]]], [625,[3975.67,8818.84,0],[[560,2],[622,2]]], [626,[3730.69,9190.38,0],[[561,2],[692,2]]], [627,[1079.75,8423.74,-1.52588e-005],[[562,2],[693,2]]], [628,[935.034,8592.38,0],[[563,2],[694,2],[695,2]]], [629,[986.101,8726.67,-3.8147e-006],[[563,2],[696,2],[629,2],[630,2]]], +[630,[1085,8748.74,0],[[564,2],[629,2],[630,2]]], [631,[1322,9511.04,0],[[565,2],[697,2]]], [632,[1531.87,9253.04,0],[[566,2],[575,2],[698,2],[699,2],[632,2]]], [633,[1161.73,9151.05,0],[[567,2],[700,2]]], [634,[628.01,7681.37,3.8147e-006],[[568,2],[701,2],[702,2],[703,2]]], [635,[776.491,7991.86,0],[[569,2],[704,2]]], +[636,[869.083,8069.85,0],[[570,2],[571,2],[705,2]]], [637,[863.764,8063.84,0],[[571,2]]], [638,[936.453,7320.93,0],[[572,2],[644,2]]], [639,[1640.82,9282.7,0],[[575,2],[706,2]]], [640,[2165.7,9219.58,0],[[576,2],[707,2],[708,2]]], [641,[1824.33,9328.53,0],[[577,2],[709,2],[706,2]]], +[642,[1644.85,6666.56,0],[[579,2],[710,2]]], [643,[750.264,7123.21,0],[[580,2],[711,2],[712,2]]], [644,[918.097,7207.09,0],[[580,2],[638,2],[713,2]]], [645,[815.655,7025,-1.52588e-005],[[580,2],[714,2]]], [646,[1034.73,6830.25,3.8147e-006],[[581,2],[582,2],[715,2],[716,2]]], [647,[1326.65,6633.57,1.14441e-005],[[583,2],[717,2],[647,2],[710,2]]], +[648,[1645.82,6656.73,0],[[584,2]]], [649,[1807.83,6380.12,0],[[585,2],[718,2]]], [650,[1951.01,6417.16,0],[[585,2],[719,2]]], [651,[3926,7758.61,0],[[586,2],[664,2]]], [652,[4107.31,7893.44,0],[[586,2],[587,2],[720,2],[721,2]]], [653,[4098.8,8022.3,0],[[587,2],[722,2],[723,2]]], +[654,[3946.76,8185.63,0],[[588,2],[724,2]]], [655,[3942.23,8083.14,5.08626e-006],[[588,2],[725,2],[655,2],[726,2]]], [656,[3758.87,8006.43,-1.52588e-005],[[589,2]]], [657,[3764.82,8484.16,0],[[590,2],[623,2]]], [658,[3742.82,7975.58,-5.08626e-006],[[591,2]]], [659,[3864.32,8172.33,0],[[592,2],[724,2]]], +[660,[3832.64,7200.31,7.62939e-006],[[593,2]]], [661,[4065.95,7299.92,-1.52588e-005],[[596,2],[731,2]]], [662,[3588.76,7159.18,0],[[598,2],[603,2],[665,2]]], [663,[4057.03,7373.25,-1.52588e-005],[[600,2],[732,2]]], [664,[3996.1,7637.22,0],[[601,2],[651,2],[733,2]]], [665,[3559.49,7158.97,3.8147e-006],[[603,2],[662,2],[734,2],[672,2]]], +[666,[3190.03,7035.52,-5.08626e-006],[[605,2]]], [667,[2860.32,6855.81,0],[[606,2],[673,2]]], [668,[3134.42,6809.16,-5.08626e-006],[[607,2],[735,2],[736,2]]], [669,[3308.34,6882.79,0],[[607,2],[737,2]]], [670,[2944.93,6683.85,5.08626e-006],[[608,2],[738,2],[739,2]]], [671,[3156.53,7095.42,0],[[546,2]]], +[672,[3412.16,7150.28,0],[[609,2],[665,2]]], [673,[2760.45,6859.07,0],[[610,2],[667,2],[740,2]]], [674,[2675.43,6666.39,0],[[611,2],[741,2]]], [675,[2574.35,6695.11,0],[[611,2],[742,2]]], [676,[3520.87,9385.01,0],[[612,2],[743,2],[744,2]]], [677,[3304.97,9570.24,0],[[613,2],[745,2]]], +[678,[3293.55,9419.25,0],[[613,2],[746,2]]], [679,[2902.17,10119.7,0],[[614,2],[747,2],[748,2]]], [680,[2984.4,9960.85,-1.52588e-005],[[614,2],[749,2]]], [681,[2743.04,9943.85,-1.52588e-005],[[614,2],[750,2]]], [682,[3201.72,9848.71,1.52588e-005],[[615,2],[751,2]]], [683,[2618.16,9720.54,-1.01725e-005],[[616,2],[752,2],[753,2]]], +[684,[2273.83,9509.46,0],[[617,2],[754,2]]], [685,[2473.22,9610.69,0],[[618,2],[753,2],[755,2]]], [686,[4340.14,8755.19,-5.08626e-006],[[620,2],[756,2],[757,2]]], [687,[4119.11,8524.12,0],[[621,2],[758,2],[759,2]]], [688,[4128.01,8988.25,-1.52588e-005],[[622,2],[760,2]]], [689,[4153.9,8818.84,0],[[622,2],[761,2]]], +[690,[3855.62,8460.19,0],[[623,2],[762,2],[690,2]]], [691,[3815.79,9141.01,0],[[624,2],[763,2]]], [692,[3759.18,9244.84,1.52588e-005],[[626,2],[764,2],[763,2]]], [693,[961.24,8421.87,0],[[627,2],[694,2]]], [694,[933.824,8480.4,5.08626e-006],[[628,2],[693,2],[765,2]]], [695,[818.626,8599.02,0],[[628,2],[766,2],[767,2]]], +[696,[950.67,8859.16,0],[[629,2],[768,2]]], [697,[1323.2,9543.95,0],[[631,2],[769,2],[770,2]]], [698,[1613.65,9275.21,0],[[632,2]]], [699,[1522.95,9263.27,0],[[632,2],[771,2]]], [700,[1059.85,9125.29,0],[[633,2],[772,2]]], [701,[453.273,7584.55,-1.52588e-005],[[634,2],[773,2]]], +[702,[631.496,7585.56,0],[[634,2],[774,2],[775,2]]], [703,[550.308,7743.03,0],[[634,2],[776,2]]], [704,[693.151,7996.66,0],[[635,2],[777,2]]], [705,[866.24,8156.62,0],[[636,2],[778,2]]], [706,[1692.03,9305.07,0],[[639,2],[641,2],[779,2]]], [707,[2060.56,9235.98,0],[[640,2],[780,2]]], +[708,[2167.7,9357.85,-1.52588e-005],[[640,2],[781,2]]], [709,[1892.78,9349.04,0],[[641,2],[782,2],[780,2]]], [710,[1485.58,6644.5,-1.52588e-005],[[642,2],[647,2]]], [711,[538.907,7102.27,5.08626e-006],[[643,2],[783,2],[784,2],[785,2]]], [712,[619.096,7129.29,0],[[785,2],[643,2]]], [713,[798.396,7233.19,0],[[644,2],[786,2]]], +[714,[664.495,6957.8,0],[[645,2],[784,2]]], [715,[1023.87,6650.81,0],[[646,2],[787,2]]], [716,[830.969,6792.47,0],[[646,2],[788,2]]], [717,[1327.39,6487.39,0],[[647,2],[789,2]]], [718,[1665.71,6354.72,0],[[649,2],[790,2]]], [719,[2032.04,6391.87,0],[[650,2],[791,2]]], +[720,[4149.43,7679.63,0],[[652,2],[792,2],[733,2]]], [721,[4258.48,7923.72,1.52588e-005],[[652,2],[793,2]]], [722,[4083.69,8134.98,1.52588e-005],[[653,2],[794,2]]], [723,[4132.64,8029.98,0],[[653,2],[723,2],[794,2],[795,2]]], [724,[3934.28,8202.34,-5.08626e-006],[[654,2],[659,2],[796,2]]], [725,[3956.09,8085.42,7.62939e-006],[[655,2]]], +[726,[3905.71,8102.7,0],[[655,2]]], [727,[3960.14,7072.64,5.08626e-006],[[597,2]]], [728,[3961.21,7188.26,-3.8147e-006],[[597,2],[730,2],[728,2]]], [729,[4047.77,6916.19,3.8147e-006],[[597,2],[797,2],[798,2],[799,2]]], [730,[4035.41,7084.49,0],[[597,2],[728,2]]], [731,[4108,7121.16,0],[[661,2],[799,2]]], +[732,[4193.17,7362.19,-1.52588e-005],[[663,2],[800,2]]], [733,[4128.82,7657.2,0],[[664,2],[720,2],[801,2]]], [734,[3487.9,7089.97,0],[[665,2],[802,2]]], [735,[3238.51,6721.81,-1.52588e-005],[[668,2],[803,2]]], [736,[3101.44,6707.52,0],[[668,2],[804,2]]], [737,[3416.04,6897.31,5.08626e-006],[[669,2],[802,2],[805,2]]], +[738,[2903.35,6562.81,1.52588e-005],[[670,2],[806,2]]], [739,[2821.14,6746.67,0],[[670,2],[740,2]]], [740,[2787.18,6768.68,1.52588e-005],[[673,2],[739,2]]], [741,[2690.11,6539.45,0],[[674,2],[807,2],[808,2]]], [742,[2555.67,6674.96,5.08626e-006],[[675,2],[809,2],[810,2]]], [743,[3653.71,9439.44,1.52588e-005],[[676,2],[811,2]]], +[744,[3517.9,9499.51,1.52588e-005],[[676,2],[812,2]]], [745,[3380.07,9683.89,0],[[677,2],[813,2]]], [746,[3343.54,9444.55,5.08626e-006],[[678,2],[814,2],[746,2],[815,2]]], [747,[2892.25,10225,0],[[679,2]]], [748,[3028.7,10124.4,0],[[679,2],[816,2]]], [749,[3050.95,9957.49,0],[[680,2],[817,2]]], +[750,[2667.16,9929.04,-1.52588e-005],[[681,2],[818,2]]], [751,[3296.93,9862.15,0],[[682,2],[819,2]]], [752,[2540.14,9717.68,0],[[683,2],[820,2]]], [753,[2538.4,9657.71,0],[[683,2],[685,2]]], [754,[2235.55,9530.18,0],[[684,2],[755,2],[781,2]]], [755,[2332.36,9570.64,0],[[685,2],[754,2],[821,2]]], +[756,[4538.47,8765.58,0],[[686,2],[822,2]]], [757,[4351.33,8674.97,0],[[686,2],[823,2],[824,2]]], [758,[4155.44,8433.7,-5.08626e-006],[[687,2],[825,2],[826,2]]], [759,[4037.87,8484.59,0],[[687,2],[827,2],[762,2],[828,2]]], [760,[4175.56,9058.04,0],[[688,2],[829,2]]], [761,[4272.65,8828.21,0],[[689,2],[830,2]]], +[762,[3947.3,8466.67,0],[[690,2],[759,2],[831,2],[832,2]]], [763,[3817.67,9208,1.52588e-005],[[691,2],[692,2],[833,2]]], [764,[3807.55,9236.16,0],[[692,2],[834,2]]], [765,[872.629,8320.85,0],[[694,2],[778,2]]], [766,[778.702,8710.16,0],[[695,2],[835,2]]], [767,[801.052,8549.62,0],[[695,2],[836,2],[837,2]]], +[768,[925.765,8996.01,0],[[696,2],[838,2],[772,2]]], [769,[1255.58,9533.53,0],[[697,2],[839,2]]], [770,[1331.84,9596.94,0],[[697,2],[840,2],[841,2],[842,2]]], [771,[1502.11,9420.32,0],[[699,2],[843,2]]], [772,[950.993,9091.58,-5.08626e-006],[[700,2],[768,2],[844,2]]], [773,[337.596,7510.3,0],[[701,2],[845,2]]], +[774,[556.677,7520.98,0],[[702,2],[846,2]]], [775,[630.426,7421.66,0],[[702,2],[847,2]]], [776,[500.968,7789.93,-5.08626e-006],[[703,2],[848,2],[776,2]]], [777,[672.915,8073.25,1.52588e-005],[[704,2],[849,2]]], [778,[872.28,8197.37,-5.08626e-006],[[705,2],[765,2],[850,2]]], [779,[1707.12,9387.24,0],[[706,2],[851,2]]], +[780,[2027.44,9351.85,0],[[707,2],[709,2]]], [781,[2144.78,9489.19,-3.05176e-006],[[708,2],[754,2],[852,2],[781,2],[853,2]]], [782,[1905,9407.61,-5.08626e-006],[[709,2],[782,2],[853,2]]], [783,[479.984,7123.08,-3.8147e-006],[[711,2],[854,2],[783,2],[855,2]]], [784,[530.487,6928.46,-5.08626e-006],[[711,2],[714,2],[856,2]]], [785,[617.983,7155.98,0],[[847,2],[712,2],[711,2]]], +[786,[735.087,7319.56,0],[[713,2],[847,2]]], [787,[1029.68,6495.56,-1.52588e-005],[[715,2],[857,2]]], [788,[780.942,6758.23,5.08626e-006],[[716,2],[858,2],[859,2]]], [789,[1365.43,6395.42,-5.08626e-006],[[717,2],[860,2],[790,2]]], [790,[1567.65,6352.58,0],[[718,2],[789,2],[790,2],[861,2]]], [791,[2102.6,6402.58,0],[[719,2],[862,2],[863,2]]], +[792,[4158.21,7662.43,0],[[720,2],[864,2]]], [793,[4282.83,7915.84,0],[[721,2],[865,2],[866,2]]], [794,[4149.88,8173.3,5.08626e-006],[[722,2],[723,2],[867,2],[825,2]]], [795,[4215.22,8049.06,0],[[723,2],[868,2]]], [796,[3964.69,8245.39,5.08626e-006],[[724,2],[832,2],[869,2]]], [797,[3831.6,6904.83,0],[[729,2],[870,2]]], +[798,[4096.47,6766.16,0],[[729,2],[871,2]]], [799,[4167.52,6909.9,-5.08626e-006],[[729,2],[731,2],[872,2]]], [800,[4319.64,7395.86,1.52588e-005],[[732,2],[873,2]]], [801,[4150.29,7662.76,0],[[733,2]]], [802,[3435.07,7029.45,0],[[734,2],[737,2]]], [803,[3245.93,6549.14,0],[[735,2],[874,2]]], +[804,[3068.18,6567.47,0],[[736,2],[875,2]]], [805,[3591.66,6910.45,0],[[737,2],[876,2],[870,2]]], [806,[2894.77,6536.87,5.08626e-006],[[738,2],[807,2],[877,2]]], [807,[2784.37,6537.52,-1.52588e-005],[[741,2],[806,2]]], [808,[2635.89,6451.8,0],[[741,2],[878,2]]], [809,[2487.86,6554.81,0],[[742,2],[879,2]]], +[810,[2469.54,6695.87,1.52588e-005],[[742,2],[880,2]]], [811,[3764.98,9462.95,0],[[743,2],[881,2],[882,2]]], [812,[3493.95,9546.08,5.08626e-006],[[744,2],[815,2],[812,2]]], [813,[3410.89,9756.08,0],[[745,2],[883,2]]], [814,[3329.01,9432.64,0],[[746,2]]], [815,[3422.94,9498.53,0],[[746,2],[812,2]]], +[816,[3171.57,10154.2,-3.05176e-005],[[748,2],[884,2]]], [817,[3103.22,9970.58,0],[[749,2],[885,2]]], [818,[2588.47,9904.31,-1.52588e-005],[[750,2],[886,2]]], [819,[3386.26,9884.49,0],[[751,2],[887,2]]], [820,[2445.41,9709.28,0],[[752,2],[821,2]]], [821,[2322.82,9674.89,3.8147e-006],[[755,2],[820,2],[888,2]]], +[822,[4609.48,8769.55,3.8147e-006],[[756,2],[889,2],[890,2],[891,2]]], [823,[4277.71,8603.02,0],[[757,2],[892,2]]], [824,[4362.55,8578.88,-1.52588e-005],[[757,2],[893,2]]], [825,[4150.87,8352.11,-5.08626e-006],[[758,2],[794,2],[894,2],[867,2]]], [826,[4223.68,8393.35,1.52588e-005],[[758,2],[895,2]]], [827,[3988.35,8469.84,0],[[759,2],[828,2]]], +[828,[4053.38,8400.01,0],[[759,2],[827,2],[896,2],[894,2]]], [829,[4251.99,9099.99,0],[[760,2],[897,2],[898,2]]], [830,[4350.27,8841.73,-1.01725e-005],[[761,2],[899,2],[900,2]]], [831,[3982.59,8465.77,0],[[762,2]]], [832,[3965.54,8347.71,0],[[762,2],[796,2],[901,2]]], [833,[3813.67,9234.84,-1.52588e-005],[[763,2]]], +[834,[3837.26,9295.65,5.08626e-006],[[764,2],[902,2],[903,2]]], [835,[761.564,8758.53,0],[[766,2],[904,2],[835,2]]], [836,[687.114,8548.39,0],[[767,2],[905,2],[906,2]]], [837,[800.942,8456.29,0],[[767,2],[837,2],[907,2]]], [838,[790.274,8963.92,0],[[768,2],[908,2]]], [839,[1157.85,9512.69,0],[[769,2],[909,2]]], +[840,[1344.62,9760.37,0],[[770,2],[910,2]]], [841,[1471.99,9614.6,0],[[770,2],[911,2],[912,2]]], [842,[1179.97,9558.1,1.52588e-005],[[770,2],[913,2]]], [843,[1622.43,9453.69,0],[[771,2],[851,2]]], [844,[908.641,9139.82,-5.08626e-006],[[772,2],[844,2],[914,2]]], [845,[219.93,7447.55,0],[[773,2],[915,2]]], +[846,[535.88,7429.73,0],[[774,2],[916,2]]], [847,[634.085,7336.64,0],[[775,2],[786,2],[785,2]]], [848,[447.632,7868.19,0],[[776,2],[917,2]]], [849,[668.813,8190.35,0],[[777,2],[918,2]]], [850,[1032.5,8181.8,0],[[778,2],[919,2]]], [851,[1708.16,9464.13,5.08626e-006],[[779,2],[843,2],[920,2]]], +[852,[2063.46,9646.57,1.01725e-005],[[781,2],[921,2],[922,2]]], [853,[2013.68,9453.77,-1.52588e-005],[[781,2],[782,2]]], [854,[274.71,7139.7,0],[[783,2],[923,2]]], [855,[514.832,7177.98,0],[[783,2],[924,2],[925,2],[855,2]]], [856,[486.17,6794.52,-3.8147e-006],[[784,2],[926,2],[927,2],[928,2]]], [857,[1020.73,6335.31,0],[[787,2],[929,2]]], +[858,[631.447,6667.28,0],[[788,2],[930,2],[926,2]]], [859,[786.851,6631.69,0],[[788,2],[931,2]]], [860,[1248.26,6302.18,-1.01725e-005],[[789,2],[932,2],[929,2]]], [861,[1532.67,6213.19,0],[[790,2],[933,2]]], [862,[2198.76,6366.64,-1.52588e-005],[[791,2],[934,2]]], [863,[2120.57,6519.51,0],[[791,2],[935,2]]], +[864,[4318.13,7682.19,-1.52588e-005],[[792,2],[936,2],[865,2]]], [865,[4296.75,7810.37,0],[[793,2],[937,2],[864,2]]], [866,[4451.34,7939.82,1.52588e-005],[[793,2],[938,2]]], [867,[4142.27,8247.04,0],[[794,2],[825,2],[939,2],[867,2],[869,2]]], [868,[4279.68,8057.41,-1.52588e-005],[[795,2],[940,2]]], [869,[4048.73,8261.94,-5.08626e-006],[[796,2],[867,2],[941,2],[901,2]]], +[870,[3763.27,6899.29,0],[[797,2],[805,2],[876,2],[870,2],[942,2]]], [871,[4129.57,6648.38,0],[[798,2],[943,2]]], [872,[4263.46,6917.26,-3.8147e-006],[[799,2],[944,2],[945,2],[946,2]]], [873,[4336.08,7408.04,1.01725e-005],[[800,2],[936,2],[947,2]]], [874,[3300.54,6450.45,0],[[803,2],[948,2]]], [875,[3052.49,6427.41,0],[[804,2],[949,2]]], +[876,[3685.92,6924.99,0],[[805,2],[870,2],[950,2]]], [877,[2875.48,6411.75,0],[[806,2],[951,2]]], [878,[2643.69,6425.81,3.8147e-006],[[808,2],[952,2],[953,2],[951,2]]], [879,[2413.22,6462.33,0],[[809,2],[954,2]]], [880,[2330.42,6693.99,0],[[810,2],[955,2]]], [881,[3733.37,9545.42,0],[[811,2],[956,2]]], +[882,[3879.01,9495.42,0],[[811,2],[957,2]]], [883,[3426.36,9818.43,0],[[813,2],[958,2]]], [884,[3214.63,10167.6,0],[[816,2],[959,2],[960,2]]], [885,[3177.64,9976.77,0],[[817,2],[961,2]]], [886,[2503.4,9885.39,0],[[818,2],[962,2]]], [887,[3407.6,9884.14,0],[[819,2],[958,2],[963,2]]], +[888,[2228.06,9648.58,0],[[821,2],[921,2]]], [889,[4813.79,8777.33,1.52588e-005],[[822,2],[964,2]]], [890,[4623.31,8608.58,0],[[822,2],[965,2]]], [891,[4599.43,8843.05,0],[[822,2],[966,2],[967,2]]], [892,[4290.3,8495.99,0],[[823,2],[968,2]]], [893,[4367.14,8563.13,-5.08626e-006],[[824,2],[969,2],[968,2],[970,2]]], +[894,[4085.48,8339.81,0],[[825,2],[828,2],[896,2]]], [895,[4280.46,8421.31,0],[[826,2],[968,2]]], [896,[4065.09,8344.77,0],[[828,2],[894,2],[901,2]]], [897,[4291.19,9005.94,-5.08626e-006],[[829,2],[971,2],[897,2]]], [898,[4218.29,9213.79,1.52588e-005],[[829,2],[972,2]]], [899,[4365.31,8887.78,0],[[830,2],[899,2],[973,2]]], +[900,[4434.09,8856.8,0],[[830,2],[967,2]]], [901,[4008.63,8335.4,0],[[832,2],[869,2],[896,2],[974,2]]], [902,[3922,9265,0],[[834,2],[975,2]]], [903,[3843.19,9404.03,0],[[834,2],[976,2]]], [904,[656.24,8798.72,0],[[835,2],[977,2]]], [905,[569.242,8547.57,0],[[836,2],[905,2],[978,2],[979,2]]], +[906,[705.254,8408.17,0],[[836,2],[980,2]]], [907,[810.375,8362.6,0],[[837,2],[981,2]]], [908,[738.368,8991.29,0],[[838,2],[982,2]]], [909,[1062.52,9498.15,0],[[839,2],[983,2]]], [910,[1347,9787.28,-3.8147e-006],[[840,2],[984,2],[985,2],[986,2]]], [911,[1529.23,9572.27,-1.52588e-005],[[841,2],[987,2]]], +[912,[1624.79,9636.8,-1.52588e-005],[[841,2],[988,2]]], [913,[1098.91,9549.3,5.08626e-006],[[842,2],[989,2],[990,2]]], [914,[739.792,9121.04,-1.52588e-005],[[844,2],[991,2],[982,2]]], [915,[195.088,7438.2,-5.08626e-006],[[845,2],[992,2],[993,2]]], [916,[505.339,7344.86,0],[[846,2],[924,2]]], [917,[438.171,7983.14,0],[[848,2],[994,2]]], +[918,[668.85,8203.31,-5.08626e-006],[[849,2],[995,2],[996,2]]], [919,[1152.03,8191.17,0],[[850,2],[997,2]]], [920,[1712.48,9571.52,0],[[851,2],[998,2],[988,2],[987,2]]], [921,[2150.42,9625.34,0],[[852,2],[888,2]]], [922,[2076.95,9759.03,0],[[852,2],[999,2],[1000,2],[1001,2]]], [923,[147.688,7164.45,1.52588e-005],[[854,2],[1002,2]]], +[924,[502.341,7279.09,0],[[855,2],[916,2]]], [925,[510.117,7154.59,0],[[925,2]]], [926,[498.153,6624.09,3.8147e-006],[[856,2],[858,2],[1003,2],[930,2],[1004,2]]], [927,[362.252,6718.64,-5.08626e-006],[[856,2],[1005,2],[1006,2]]], [928,[344.458,6925.45,0],[[856,2],[1007,2]]], [929,[1025.61,6322.51,0],[[857,2],[860,2],[1008,2]]], +[930,[587.98,6652.54,0],[[858,2],[926,2],[1009,2]]], [931,[793.098,6489,-1.52588e-005],[[859,2],[1010,2]]], [932,[1272.51,6166.38,0],[[860,2],[1011,2]]], [933,[1535.91,6069.06,0],[[861,2],[1012,2]]], [934,[2229.91,6293.1,1.52588e-005],[[862,2],[1013,2]]], [935,[2136.42,6541.52,0],[[863,2],[935,2],[1014,2]]], +[936,[4321.79,7520.07,0],[[864,2],[873,2]]], [937,[4305.92,7707.86,0],[[865,2]]], [938,[4575.21,7936.06,-5.08626e-006],[[866,2],[1015,2],[1016,2]]], [939,[4252.18,8226.77,0],[[867,2],[1017,2]]], [940,[4339.54,8091.56,0],[[868,2],[1018,2]]], [941,[4007.66,8293.21,-1.52588e-005],[[869,2],[941,2]]], +[942,[3692.67,6855.35,0],[[870,2],[1019,2]]], [943,[4162.55,6509.7,0],[[871,2],[1020,2]]], [944,[4463.96,6947.55,0],[[872,2],[1021,2]]], [945,[4370.25,6859.84,-1.52588e-005],[[872,2],[1022,2]]], [946,[4259.56,7039.34,-1.52588e-005],[[872,2],[1023,2]]], [947,[4442.19,7236.46,0],[[873,2],[1024,2]]], +[948,[3361.41,6412.57,0],[[874,2],[1025,2],[1026,2]]], [949,[3059.51,6305.86,1.52588e-005],[[875,2],[1027,2]]], [950,[3679.79,6849.2,1.52588e-005],[[876,2]]], [951,[2755.51,6390.33,0],[[877,2],[878,2],[1028,2]]], [952,[2535.05,6420.11,0],[[878,2],[1029,2]]], [953,[2661.18,6309.64,-1.52588e-005],[[878,2],[1030,2]]], +[954,[2339.02,6365.8,0],[[879,2],[1031,2]]], [955,[2304.43,6646.45,1.52588e-005],[[880,2],[1014,2]]], [956,[3719.94,9642.07,1.52588e-005],[[881,2],[1032,2]]], [957,[3953.07,9522.32,-3.8147e-006],[[882,2],[1033,2],[976,2],[1034,2]]], [958,[3426.72,9830.99,0],[[883,2],[887,2],[958,2]]], [959,[3351.38,10183.1,0],[[884,2],[1035,2]]], +[960,[3208.11,10229.2,-1.52588e-005],[[884,2]]], [961,[3267.58,9989.67,1.52588e-005],[[885,2],[1036,2]]], [962,[2398.85,9846.6,1.52588e-005],[[886,2],[1037,2]]], [963,[3437.86,9907.2,0],[[887,2],[1038,2],[1039,2]]], [964,[4896.56,8793.25,0],[[889,2],[1040,2],[1041,2],[1042,2]]], [965,[4618.66,8588.27,0],[[890,2],[1043,2],[1044,2]]], +[966,[4657.79,8900.41,-3.8147e-006],[[891,2],[1045,2],[966,2],[1046,2]]], [967,[4532.9,8840.94,-7.62939e-006],[[891,2],[900,2],[1047,2],[967,2]]], [968,[4310.34,8478.13,0],[[892,2],[893,2],[895,2],[1048,2],[1049,2]]], [969,[4380.99,8493.45,0],[[893,2],[1050,2]]], [970,[4461.27,8576.06,0],[[893,2],[970,2],[1043,2]]], [971,[4387.67,9037.22,-1.01725e-005],[[897,2],[1051,2],[971,2]]], +[972,[4180.15,9304.64,-5.08626e-006],[[898,2],[1052,2],[975,2]]], [973,[4491.68,8930.5,0],[[899,2],[1046,2],[1053,2]]], [974,[4009.01,8305.2,0],[[901,2]]], [975,[4053.34,9285.8,0],[[902,2],[972,2]]], [976,[3915.44,9476.71,0],[[903,2],[957,2]]], [977,[557.873,8835.44,0],[[904,2],[1054,2]]], +[978,[527.385,8499.01,-1.52588e-005],[[905,2],[1055,2],[979,2]]], [979,[471.698,8532.63,0],[[905,2],[978,2],[1055,2],[1056,2]]], [980,[722.116,8296.13,0],[[906,2],[1057,2],[980,2],[995,2]]], [981,[808.211,8345.39,0],[[907,2],[1058,2],[1057,2]]], [982,[729,9089.89,1.52588e-005],[[908,2],[914,2],[991,2]]], [983,[1069.27,9405.82,-1.52588e-005],[[909,2],[1059,2]]], +[984,[1359.77,9830.47,3.8147e-006],[[910,2],[1060,2],[986,2],[1061,2]]], [985,[1492.04,9780.58,0],[[910,2],[1062,2]]], [986,[1210.79,9813.63,-5.08626e-006],[[910,2],[984,2],[1063,2]]], [987,[1654.39,9601.13,0],[[911,2],[920,2],[998,2]]], [988,[1704.5,9646.88,5.08626e-006],[[912,2],[920,2],[1064,2],[998,2]]], [989,[953.672,9501.02,0],[[913,2],[1065,2]]], +[990,[1071.61,9710.93,0],[[913,2],[1063,2]]], [991,[729.996,9119.65,1.52588e-005],[[914,2],[982,2],[1066,2]]], [992,[228.806,7582.16,0],[[915,2],[1067,2]]], [993,[51.1218,7338.33,-3.8147e-006],[[915,2],[1068,2],[993,2],[1002,2]]], [994,[437.198,7998.12,0],[[917,2],[1069,2],[1070,2]]], [995,[746.333,8266.39,0],[[918,2],[980,2],[1071,2]]], +[996,[577.684,8210.75,-1.01725e-005],[[918,2],[1072,2],[1073,2]]], [997,[1190.26,8216.28,-5.08626e-006],[[919,2],[997,2],[1074,2]]], [998,[1701.05,9609.37,1.52588e-005],[[920,2],[987,2],[988,2],[1075,2],[998,2]]], [999,[2069.77,9825.36,-1.01725e-005],[[922,2],[1076,2],[1077,2]]], [1000,[1937.22,9746.25,0],[[922,2],[1064,2]]], [1001,[2111.43,9822.62,0],[[922,2],[1078,2]]], +[1002,[77.0482,7164.89,7.62939e-006],[[923,2],[993,2],[1007,2],[1079,2],[1080,2]]], [1003,[496.778,6468.01,0],[[926,2],[1081,2]]], [1004,[372.802,6548.31,-1.52588e-005],[[926,2],[1082,2]]], [1005,[188.43,6677.28,0],[[927,2],[1083,2]]], [1006,[310.656,6575.54,0],[[927,2],[1082,2]]], [1007,[230.775,7008.83,0],[[928,2],[1002,2],[1080,2]]], +[1008,[908.166,6274.47,0],[[929,2],[1084,2],[1085,2]]], [1009,[615.168,6517.17,0],[[930,2],[1086,2]]], [1010,[794.064,6356.18,1.52588e-005],[[931,2],[1084,2]]], [1011,[1228.9,6052.54,0],[[932,2],[1087,2]]], [1012,[1556.87,5941.29,-2.54313e-006],[[933,2],[1088,2],[1089,2]]], [1013,[2237.34,6260.38,0],[[934,2],[1090,2],[1031,2]]], +[1014,[2197.16,6605,0],[[935,2],[955,2]]], [1015,[4575.12,7813.28,0],[[938,2],[1091,2]]], [1016,[4571.69,8071.98,0],[[938,2],[1092,2],[1093,2]]], [1017,[4280.32,8234.71,0],[[939,2],[1094,2],[1095,2]]], [1018,[4376.46,8090.76,-5.08626e-006],[[940,2],[1094,2],[1093,2]]], [1019,[3704.9,6718.23,0],[[942,2],[1096,2]]], +[1020,[4175.29,6489.09,0],[[943,2],[1097,2],[1098,2],[1099,2]]], [1021,[4616.65,6987.8,0],[[944,2],[1100,2]]], [1022,[4428.33,6791.45,0],[[945,2],[1101,2]]], [1023,[4374.04,7054.52,-1.52588e-005],[[946,2],[1102,2]]], [1024,[4501.39,7192.56,5.08626e-006],[[947,2],[1103,2],[1104,2]]], [1025,[3298.09,6301.21,0],[[948,2],[1105,2]]], +[1026,[3445.76,6392.66,0],[[948,2],[1106,2],[1107,2]]], [1027,[3064.67,6177.75,1.52588e-005],[[949,2],[1108,2]]], [1028,[2773.55,6235.83,0],[[951,2],[1109,2]]], [1029,[2477.34,6324.37,1.52588e-005],[[952,2],[1110,2]]], [1030,[2676.09,6251.03,0],[[953,2],[1111,2],[1112,2]]], [1031,[2280.11,6307.79,0],[[954,2],[1013,2]]], +[1032,[3719.62,9804.33,1.52588e-005],[[956,2],[1113,2]]], [1033,[4081.98,9579.52,-1.52588e-005],[[957,2],[1114,2]]], [1034,[3913.78,9654.55,0],[[957,2],[1115,2]]], [1035,[3450.49,10200.1,0],[[959,2],[1116,2]]], [1036,[3357.21,10008.9,0],[[961,2],[1117,2]]], [1037,[2287.93,9849.04,1.52588e-005],[[962,2],[1078,2]]], +[1038,[3508.65,9858.53,1.52588e-005],[[963,2],[1118,2]]], [1039,[3535.82,9948.28,0],[[963,2],[1119,2]]], [1040,[5021,8796.71,-3.8147e-006],[[964,2],[1120,2],[1121,2],[1122,2]]], [1041,[4906.92,8710.67,-5.08626e-006],[[964,2],[1123,2],[1120,2]]], [1042,[4916.75,8912.68,0],[[964,2],[1124,2]]], [1043,[4508.89,8565.21,0],[[965,2],[970,2]]], +[1044,[4616.47,8541.18,0],[[965,2],[1125,2],[1126,2]]], [1045,[4759.02,8907.85,0],[[966,2],[1127,2]]], [1046,[4613.61,8949.44,5.08626e-006],[[966,2],[973,2],[1128,2]]], [1047,[4545.73,8838.1,-1.01725e-005],[[967,2]]], [1048,[4315.5,8415.88,0],[[1048,2],[1129,2],[968,2]]], [1049,[4376.95,8485.2,0],[[968,2]]], +[1050,[4417.64,8406.18,0],[[969,2],[1130,2]]], [1051,[4466.52,9085.34,0],[[971,2],[1131,2],[1053,2]]], [1052,[4218.04,9382.85,0],[[972,2],[1132,2]]], [1053,[4488.35,9051.88,-1.52588e-005],[[973,2],[1051,2],[1131,2]]], [1054,[484.466,8842.96,1.01725e-005],[[977,2],[1133,2],[1134,2]]], [1055,[494.973,8475.96,0],[[978,2],[979,2],[1073,2],[1135,2]]], +[1056,[429.262,8646.13,-5.08626e-006],[[979,2],[1133,2],[1136,2]]], [1057,[742.352,8299.5,1.52588e-005],[[980,2],[981,2]]], [1058,[820.319,8276.38,0],[[981,2],[1137,2]]], [1059,[1070.67,9333.02,0],[[983,2],[1138,2]]], [1060,[1496.28,9927.39,-7.62939e-006],[[984,2],[1061,2],[1139,2],[1140,2]]], [1061,[1433.2,9840.33,-1.01725e-005],[[984,2],[1060,2],[1141,2]]], +[1062,[1616,9774.88,0],[[985,2],[1142,2]]], [1063,[1100.65,9773.7,0],[[986,2],[990,2]]], [1064,[1854.33,9740.63,0],[[988,2],[1000,2],[1142,2],[1077,2]]], [1065,[944.814,9482.13,0],[[989,2],[1143,2],[1138,2],[1065,2],[1144,2]]], [1066,[698.319,9256.42,0],[[991,2],[1145,2]]], [1067,[225.454,7710.5,0],[[992,2],[1146,2]]], +[1068,[59.531,7472.09,1.52588e-005],[[993,2],[1147,2]]], [1069,[330.944,7990.33,0],[[994,2],[1148,2]]], [1070,[498.352,8115.05,0],[[994,2],[1072,2]]], [1071,[758.515,8303.36,1.01725e-005],[[995,2],[1071,2]]], [1072,[530.294,8137.12,0],[[996,2],[1070,2]]], [1073,[553.275,8305.66,-5.08626e-006],[[996,2],[1055,2],[1149,2]]], +[1074,[1191.57,8339.94,0],[[997,2],[1150,2]]], [1075,[1691.99,9615.87,0],[[998,2]]], [1076,[2129.68,10015.7,0],[[999,2],[1151,2]]], [1077,[1983.95,9804.06,0],[[999,2],[1064,2],[1152,2]]], [1078,[2181.88,9845.86,0],[[1001,2],[1037,2]]], [1079,[41.4563,7153.62,5.08626e-006],[[1002,2],[1079,2],[1153,2]]], +[1080,[201.97,7014.84,-5.08626e-006],[[1007,2],[1002,2],[1159,2]]], [1081,[490.41,6327.11,0],[[1003,2],[1154,2]]], [1082,[328.618,6517.24,0],[[1004,2],[1006,2],[1155,2],[1156,2]]], [1083,[148.409,6663.64,-5.08626e-006],[[1005,2],[1157,2],[1158,2]]], [1084,[807.544,6236.49,5.08626e-006],[[1008,2],[1010,2],[1160,2]]], [1085,[925.841,6148.56,0],[[1008,2],[1161,2]]], +[1086,[621.784,6390.92,0],[[1009,2],[1162,2]]], [1087,[1209.06,5922.14,-1.52588e-005],[[1011,2],[1163,2]]], [1088,[1522.39,5871.44,2.54313e-006],[[1012,2],[1164,2],[1165,2]]], [1089,[1690.78,5978.68,0],[[1012,2],[1166,2]]], [1090,[2178.94,6162.25,1.52588e-005],[[1013,2],[1167,2]]], [1091,[4585.78,7765.27,5.08626e-006],[[1015,2],[1168,2],[1169,2]]], +[1092,[4642.07,8104.29,-5.08626e-006],[[1016,2],[1170,2],[1171,2]]], [1093,[4464.58,8077.83,1.01725e-005],[[1016,2],[1018,2],[1172,2]]], [1094,[4341.35,8197.74,5.08626e-006],[[1017,2],[1018,2],[1094,2]]], [1095,[4303.63,8337.45,0],[[1017,2],[1048,2],[1173,2]]], [1096,[3720.99,6613.39,0],[[1019,2],[1174,2],[1175,2]]], [1097,[4206.25,6332.02,0],[[1020,2],[1176,2]]], +[1098,[4100.36,6401.07,0],[[1020,2],[1177,2]]], [1099,[4313.26,6559.86,0],[[1020,2],[1178,2]]], [1100,[4716.27,7020.19,0],[[1021,2],[1179,2],[1180,2],[1181,2]]], [1101,[4456.91,6634.07,-1.52588e-005],[[1022,2],[1182,2],[1178,2]]], [1102,[4514.18,7058.08,1.52588e-005],[[1023,2],[1104,2]]], [1103,[4533.86,7274.49,0],[[1024,2],[1183,2]]], +[1104,[4568.15,7124.03,0],[[1024,2],[1102,2]]], [1105,[3292.8,6222,0],[[1025,2],[1184,2],[1185,2]]], [1106,[3515.85,6250.52,-5.08626e-006],[[1026,2],[1185,2],[1186,2]]], [1107,[3472.63,6499.23,1.52588e-005],[[1026,2],[1175,2]]], [1108,[3040.78,6066.97,0],[[1027,2],[1187,2]]], [1109,[2787.26,6113.74,-5.08626e-006],[[1028,2],[1187,2],[1188,2]]], +[1110,[2367.73,6296.45,0],[[1029,2],[1189,2]]], [1111,[2577.34,6220.64,0],[[1030,2],[1190,2]]], [1112,[2734.1,6227.14,0],[[1030,2],[1191,2],[1112,2]]], [1113,[3695.26,9957.41,0],[[1032,2],[1192,2],[1113,2],[1119,2]]], [1114,[4121.7,9608.3,0],[[1033,2],[1193,2]]], [1115,[3876.55,9820.84,0],[[1034,2],[1194,2]]], +[1116,[3562.73,10188.9,-1.52588e-005],[[1035,2],[1195,2]]], [1117,[3448.95,10026.8,0],[[1036,2],[1196,2]]], [1118,[3611.89,9876.52,0],[[1038,2],[1197,2]]], [1119,[3611.8,9945.56,0],[[1039,2],[1113,2]]], [1120,[5007.67,8739,5.08626e-006],[[1040,2],[1041,2],[1198,2]]], [1121,[5119.91,8804.69,-5.08626e-006],[[1040,2],[1199,2],[1200,2]]], +[1122,[5041.59,8892.13,0],[[1040,2],[1201,2],[1202,2],[1122,2]]], [1123,[4932.86,8610.09,0],[[1041,2],[1203,2]]], [1124,[4933.05,8988.57,1.52588e-005],[[1042,2],[1204,2]]], [1125,[4692.27,8530.01,5.08626e-006],[[1044,2],[1205,2],[1125,2]]], [1126,[4560.73,8426.09,0],[[1044,2],[1206,2]]], [1127,[4774.01,8963.85,0],[[1045,2],[1207,2]]], +[1128,[4618.08,9078.14,0],[[1046,2],[1208,2]]], [1129,[4319.69,8435.54,0],[[1048,2]]], [1130,[4425.44,8394.67,0],[[1050,2],[1209,2],[1210,2]]], [1131,[4487.03,9085.92,0],[[1051,2],[1053,2],[1211,2]]], [1132,[4309.63,9330.64,1.52588e-005],[[1052,2],[1212,2]]], [1133,[451.244,8740.84,0],[[1054,2],[1056,2]]], +[1134,[455.096,8921.63,0],[[1054,2],[1213,2]]], [1135,[479.264,8394.62,-3.8147e-006],[[1055,2],[1135,2],[1149,2],[1214,2]]], [1136,[393.357,8636.21,0],[[1056,2],[1215,2],[1136,2]]], [1137,[827.664,8252.85,0],[[1058,2]]], [1138,[975.89,9353.8,-1.01725e-005],[[1059,2],[1065,2],[1143,2],[1138,2]]], [1139,[1643.13,9919.13,5.08626e-006],[[1060,2],[1216,2],[1141,2],[1217,2]]], +[1140,[1549.92,10029.3,-1.52588e-005],[[1060,2],[1218,2]]], [1141,[1576.32,9847.47,0],[[1061,2],[1139,2],[1219,2]]], [1142,[1744.31,9764.24,0],[[1062,2],[1064,2]]], [1143,[921.259,9375.9,0],[[1065,2],[1138,2],[1143,2],[1220,2]]], [1144,[913.275,9492.61,0],[[1065,2],[1221,2],[1222,2]]], [1145,[719.662,9366.38,0],[[1066,2],[1223,2],[1220,2],[1222,2],[1224,2],[1225,2]]], +[1146,[218.864,7814.72,0],[[1067,2],[1226,2]]], [1147,[65.3394,7598.93,0],[[1068,2],[1227,2]]], [1148,[260.936,8007.48,-5.08626e-006],[[1069,2],[1228,2],[1229,2]]], [1149,[506.22,8365.97,0],[[1073,2],[1135,2]]], [1150,[1109.31,8340.88,0],[[1074,2]]], [1151,[2143.08,10111.2,-5.08626e-006],[[1076,2],[1230,2],[1231,2]]], +[1152,[1867.21,9842.32,0],[[1077,2],[1232,2]]], [1153,[35.7483,6976.51,0],[[1079,2],[1233,2]]], [1154,[488.355,6202.25,-1.52588e-005],[[1081,2],[1234,2]]], [1155,[318.637,6385.27,0],[[1082,2],[1235,2]]], [1156,[176.069,6458.14,0],[[1082,2],[1236,2],[1157,2]]], [1157,[147.077,6467.59,0],[[1083,2],[1156,2],[1237,2]]], +[1158,[152.646,6751.49,0],[[1083,2],[1238,2],[1159,2]]], [1159,[173.754,6853.85,0],[[1080,2],[1158,2]]], [1160,[657.5,6162.29,-1.01725e-005],[[1084,2],[1234,2],[1162,2]]], [1161,[978.904,6043.17,-1.52588e-005],[[1085,2],[1239,2]]], [1162,[635.033,6252.92,0],[[1086,2],[1160,2]]], [1163,[1206.25,5836.55,0],[[1087,2],[1165,2],[1240,2]]], +[1164,[1529.19,5775.27,-1.01725e-005],[[1088,2],[1241,2],[1242,2]]], [1165,[1385.78,5841.44,0],[[1088,2],[1163,2],[1165,2],[1241,2]]], [1166,[1815.38,5975.12,0],[[1089,2],[1243,2]]], [1167,[2110.28,6083.7,0],[[1090,2],[1244,2]]], [1168,[4724.94,7787.14,0],[[1091,2],[1245,2],[1168,2],[1246,2],[1247,2]]], [1169,[4487.31,7717.88,1.52588e-005],[[1091,2],[1248,2]]], +[1170,[4769.16,8165.62,5.08626e-006],[[1092,2],[1249,2],[1250,2]]], [1171,[4648.21,8217.19,1.52588e-005],[[1092,2],[1251,2]]], [1172,[4494.4,8132.67,1.01725e-005],[[1093,2],[1252,2],[1172,2]]], [1173,[4300.27,8364.07,0],[[1048,2],[1095,2],[1209,2]]], [1174,[3720.71,6455.4,0],[[1096,2],[1253,2]]], [1175,[3576.92,6589.67,-1.52588e-005],[[1096,2],[1107,2]]], +[1176,[4239.82,6202.64,1.52588e-005],[[1097,2],[1254,2]]], [1177,[4027.29,6334.79,0],[[1098,2],[1255,2]]], [1178,[4431.06,6590.31,0],[[1099,2],[1101,2],[1256,2]]], [1179,[4802.22,7040.2,0],[[1100,2],[1257,2],[1258,2],[1179,2],[1259,2]]], [1180,[4725.22,7104.23,0],[[1100,2],[1260,2]]], [1181,[4766.25,6897.38,0],[[1100,2],[1261,2]]], +[1182,[4461.12,6617.44,0],[[1101,2],[1262,2]]], [1183,[4533.44,7353.87,-5.08626e-006],[[1103,2],[1263,2],[1264,2]]], [1184,[3211.9,6140.31,0],[[1105,2],[1265,2]]], [1185,[3424.14,6231.55,0],[[1105,2],[1106,2]]], [1186,[3534.58,6193.27,-1.01725e-005],[[1106,2],[1266,2],[1267,2],[1253,2]]], [1187,[2928.36,6103.97,-1.52588e-005],[[1108,2],[1109,2]]], +[1188,[2765.82,5986.63,0],[[1109,2],[1268,2]]], [1189,[2299.35,6255.79,1.52588e-005],[[1110,2],[1269,2]]], [1190,[2494.89,6204.71,1.52588e-005],[[1111,2],[1270,2]]], [1191,[2725.77,6146.8,0],[[1112,2],[1271,2],[1191,2]]], [1192,[3752.91,9982.56,7.62939e-006],[[1113,2],[1192,2],[1272,2]]], [1193,[4167.89,9642.72,-5.08626e-006],[[1114,2],[1193,2],[1273,2]]], +[1194,[3890.36,9902.81,0],[[1115,2],[1274,2]]], [1195,[3650.04,10221.5,0],[[1116,2],[1275,2]]], [1196,[3554.17,10044.2,0],[[1117,2],[1276,2]]], [1197,[3628.84,9878.98,0],[[1118,2]]], [1198,[5039.02,8610.03,-3.8147e-006],[[1120,2],[1198,2],[1277,2],[1278,2],[1203,2]]], [1199,[5166.72,8888.68,1.52588e-005],[[1121,2],[1279,2]]], +[1200,[5098.8,8735.98,0],[[1121,2],[1280,2]]], [1201,[5112.55,8958.94,1.52588e-005],[[1122,2],[1281,2]]], [1202,[5032.35,8885.24,0],[[1122,2]]], [1203,[4935.45,8570.53,-3.8147e-006],[[1123,2],[1198,2],[1282,2],[1203,2],[1278,2]]], [1204,[4919.7,9058.77,3.8147e-006],[[1124,2],[1207,2],[1283,2]]], [1205,[4723.72,8433.22,1.52588e-005],[[1125,2],[1284,2]]], +[1206,[4553.23,8335.59,0],[[1126,2],[1285,2],[1210,2]]], [1207,[4792.78,9015.18,0],[[1127,2],[1204,2],[1207,2],[1286,2]]], [1208,[4621.58,9109.16,0],[[1128,2],[1287,2],[1211,2],[1288,2]]], [1209,[4329.18,8358.92,5.08626e-006],[[1173,2],[1130,2],[1289,2]]], [1210,[4488.47,8344.72,0],[[1130,2],[1206,2],[1290,2],[1285,2]]], [1211,[4504.15,9135.69,0],[[1131,2],[1208,2],[1291,2],[1292,2]]], +[1212,[4406.01,9340.23,0],[[1132,2],[1293,2]]], [1213,[441.066,9000.66,0],[[1134,2],[1294,2]]], [1214,[399.969,8351.93,0],[[1135,2],[1295,2]]], [1215,[305.675,8681.11,-5.08626e-006],[[1136,2],[1296,2],[1297,2]]], [1216,[1640.03,9850.75,0],[[1139,2],[1232,2]]], [1217,[1748.28,10008.5,0],[[1139,2],[1298,2]]], +[1218,[1561.03,10027.8,-5.08626e-006],[[1140,2],[1218,2],[1299,2]]], [1219,[1618.72,9849.35,0],[[1141,2]]], [1220,[846.299,9349.13,0],[[1143,2],[1145,2],[1300,2]]], [1221,[927.836,9667.42,0],[[1144,2],[1301,2]]], [1222,[793.055,9441.03,-5.08626e-006],[[1144,2],[1145,2],[1302,2]]], [1223,[812.843,9354.52,0],[[1145,2],[1225,2],[1223,2]]], +[1224,[548.248,9370.89,0],[[1145,2],[1303,2]]], [1225,[803.13,9348.89,0],[[1223,2],[1376,2],[1225,2],[1145,2]]], [1226,[187.759,7818.23,0],[[1146,2],[1304,2],[1305,2],[1229,2]]], [1227,[54.6595,7709.11,0],[[1147,2],[1304,2]]], [1228,[255.998,8123.92,0],[[1148,2],[1306,2]]], [1229,[224.719,7939.3,1.52588e-005],[[1148,2],[1226,2],[1307,2]]], +[1230,[2283.54,10205.9,0],[[1151,2],[1308,2]]], [1231,[2039.24,10108.2,0],[[1151,2],[1309,2]]], [1232,[1734.18,9850.75,0],[[1152,2],[1216,2]]], [1233,[13.9357,6795.37,0],[[1153,2],[1310,2],[1238,2]]], [1234,[501.293,6094.32,-3.8147e-006],[[1154,2],[1160,2],[1311,2],[1312,2]]], [1235,[295.915,6222.56,0],[[1155,2],[1313,2],[1314,2]]], +[1236,[163.187,6438.82,0],[[1156,2],[1315,2]]], [1237,[160.434,6447.4,0],[[1157,2]]], [1238,[30.5201,6767.77,0],[[1158,2],[1233,2],[1310,2]]], [1239,[971.219,5924.24,0],[[1161,2],[1316,2]]], [1240,[1180.65,5687.87,0],[[1163,2],[1317,2]]], [1241,[1372.8,5721.5,-5.08626e-006],[[1164,2],[1165,2],[1318,2],[1317,2]]], +[1242,[1626.33,5774.98,0],[[1164,2],[1319,2]]], [1243,[1904,5978.3,1.52588e-005],[[1166,2],[1244,2]]], [1244,[2079.6,6051.72,0],[[1167,2],[1243,2],[1320,2],[1321,2]]], [1245,[4700.22,7768.54,0],[[1168,2],[1322,2]]], [1246,[4717.09,7902.06,0],[[1168,2],[1323,2]]], [1247,[4862.98,7798.82,0],[[1168,2],[1324,2]]], +[1248,[4447.59,7638.43,0],[[1169,2],[1325,2]]], [1249,[4843.45,8204.2,0],[[1170,2],[1326,2],[1327,2],[1249,2],[1328,2]]], [1250,[4786.55,8251.7,0],[[1170,2],[1329,2]]], [1251,[4673.69,8270.03,0],[[1171,2],[1284,2]]], [1252,[4537.25,8156.53,0],[[1172,2],[1330,2],[1252,2]]], [1253,[3760.91,6290.85,0],[[1174,2],[1186,2],[1331,2],[1332,2],[1267,2],[1253,2],[1333,2]]], +[1254,[4279.48,6060.53,0],[[1176,2],[1334,2]]], [1255,[3995.79,6315.94,0],[[1177,2],[1331,2],[1335,2]]], [1256,[4467.13,6612.32,0],[[1178,2]]], [1257,[4890.05,7017.19,0],[[1179,2],[1336,2],[1337,2],[1338,2]]], [1258,[4790.6,7047.72,0],[[1179,2]]], [1259,[4792.13,7167.24,0],[[1179,2],[1339,2]]], +[1260,[4735.86,7176.18,0],[[1180,2],[1340,2]]], [1261,[4787.8,6801.26,0],[[1181,2],[1341,2]]], [1262,[4525.21,6634.1,0],[[1182,2],[1342,2],[1262,2]]], [1263,[4523.08,7452.88,0],[[1183,2],[1343,2]]], [1264,[4459.77,7374.06,1.52588e-005],[[1183,2],[1344,2]]], [1265,[3169.51,6059.5,0],[[1184,2],[1345,2]]], +[1266,[3434.78,6046.58,1.52588e-005],[[1186,2],[1346,2]]], [1267,[3663.73,6248.41,1.52588e-005],[[1186,2],[1253,2],[1347,2]]], [1268,[2782.21,5840.26,0],[[1188,2],[1348,2]]], [1269,[2264.87,6154.05,1.52588e-005],[[1189,2],[1320,2]]], [1270,[2446.18,6140.77,0],[[1190,2],[1349,2]]], [1271,[2722.63,6117.57,0],[[1191,2],[1350,2],[1271,2]]], +[1272,[3927.04,10000.6,0],[[1192,2],[1351,2]]], [1273,[4236.97,9669.19,1.52588e-005],[[1193,2],[1352,2]]], [1274,[3933.46,9951.99,1.52588e-005],[[1194,2],[1351,2]]], [1275,[3746.72,10208.7,0],[[1195,2],[1353,2]]], [1276,[3633.01,10066.9,0],[[1196,2],[1354,2]]], [1277,[5058.13,8550.05,-5.08626e-006],[[1198,2],[1355,2],[1356,2]]], +[1278,[4971.94,8587.39,0],[[1198,2],[1203,2]]], [1279,[5158.05,8952.15,0],[[1199,2],[1357,2]]], [1280,[5062.73,8688.9,-1.52588e-005],[[1200,2],[1358,2]]], [1281,[5113.41,8982.98,1.01725e-005],[[1201,2],[1359,2],[1360,2]]], [1282,[4916.11,8474.74,0],[[1203,2],[1361,2],[1362,2],[1355,2]]], [1283,[5025.38,9110.18,0],[[1204,2],[1359,2]]], +[1284,[4739.83,8338.79,-1.52588e-005],[[1205,2],[1251,2]]], [1285,[4497.46,8325.61,0],[[1206,2],[1210,2],[1330,2]]], [1286,[4808.32,9103.56,5.08626e-006],[[1207,2],[1363,2],[1288,2]]], [1287,[4562.45,9132.42,0],[[1208,2],[1291,2]]], [1288,[4667.85,9126.51,0],[[1208,2],[1286,2],[1364,2]]], [1289,[4354.48,8281.53,1.52588e-005],[[1209,2]]], +[1290,[4506.14,8333.97,-7.62939e-006],[[1210,2]]], [1291,[4504.74,9196.08,-5.08626e-006],[[1211,2],[1287,2],[1293,2]]], [1292,[4551.21,9134.11,0],[[1211,2]]], [1293,[4488.46,9344.38,-5.08626e-006],[[1212,2],[1291,2],[1365,2]]], [1294,[440.706,9071.89,0],[[1213,2],[1366,2]]], [1295,[294.931,8355.73,0],[[1214,2],[1295,2],[1367,2],[1368,2]]], +[1296,[225.613,8656.23,0],[[1215,2],[1369,2],[1370,2],[1296,2]]], [1297,[283.845,8774.05,5.08626e-006],[[1215,2],[1371,2],[1372,2]]], [1298,[1748.4,10080.7,7.62939e-006],[[1217,2],[1373,2],[1299,2],[1309,2]]], [1299,[1643.85,10051.4,0],[[1218,2],[1298,2]]], [1300,[829.271,9349.72,-1.52588e-005],[[1220,2]]], [1301,[941.926,9785.69,0],[[1221,2],[1374,2]]], +[1302,[783.468,9518.72,-1.52588e-005],[[1222,2],[1375,2]]], [1303,[429.963,9382.63,7.62939e-006],[[1224,2],[1377,2],[1378,2],[1379,2]]], [1304,[71.2419,7814.14,5.08626e-006],[[1226,2],[1227,2],[1380,2]]], [1305,[195.627,7923.1,0],[[1226,2],[1381,2]]], [1306,[266.99,8188.88,5.08626e-006],[[1228,2],[1367,2],[1382,2]]], [1307,[196.563,7934.91,0],[[1229,2]]], +[1308,[2315.68,10234.9,-1.52588e-005],[[1230,2]]], [1309,[1902.84,10094.4,1.52588e-005],[[1231,2],[1298,2]]], [1310,[8.78959,6771.36,1.52588e-005],[[1233,2],[1238,2],[1310,2]]], [1311,[495.43,5930.65,0],[[1234,2],[1383,2]]], [1312,[442.398,6059.52,0],[[1234,2],[1384,2],[1313,2],[1385,2]]], [1313,[281.676,6048.96,-1.52588e-005],[[1235,2],[1312,2],[1384,2],[1386,2]]], +[1314,[224.081,6153.68,-1.52588e-005],[[1387,2],[1386,2],[1235,2]]], [1315,[164.012,6359.27,-3.8147e-006],[[1236,2],[1387,2],[1315,2],[1388,2]]], [1316,[942.309,5833.85,0],[[1239,2],[1389,2]]], [1317,[1188.49,5671.91,0],[[1240,2],[1241,2],[1390,2],[1389,2],[1318,2],[1391,2]]], [1318,[1256.72,5687.15,0],[[1241,2],[1317,2],[1392,2]]], [1319,[1718.91,5813.77,-7.62939e-006],[[1242,2],[1393,2]]], +[1320,[2222.15,6114.89,1.52588e-005],[[1244,2],[1269,2]]], [1321,[2071.16,5960.6,0],[[1244,2],[1394,2]]], [1322,[4702.22,7717.56,-5.08626e-006],[[1245,2],[1395,2],[1396,2]]], [1323,[4797.19,7923.84,0],[[1246,2],[1397,2]]], [1324,[4886.44,7817.05,0],[[1247,2],[1398,2],[1399,2],[1397,2]]], [1325,[4430.85,7592.47,0],[[1248,2],[1344,2],[1325,2]]], +[1326,[4903.63,8234.05,0],[[1249,2],[1400,2],[1401,2]]], [1327,[4841.07,8196.34,-5.08626e-006],[[1249,2]]], [1328,[4872.33,8120.43,0],[[1249,2],[1402,2]]], [1329,[4828.07,8298.28,-1.52588e-005],[[1250,2],[1403,2]]], [1330,[4517.45,8269.45,1.52588e-005],[[1252,2],[1285,2]]], [1331,[3800.94,6268,5.08626e-006],[[1253,2],[1255,2],[1404,2]]], +[1332,[3744.72,6294.65,0],[[1253,2]]], [1333,[3667.54,6253.96,1.52588e-005],[[1253,2]]], [1334,[4283.84,6025.14,3.8147e-006],[[1254,2],[1405,2],[1406,2],[1407,2]]], [1335,[4021.63,6152.43,0],[[1255,2],[1408,2]]], [1336,[4906.99,7082.09,0],[[1257,2],[1409,2]]], [1337,[5065.42,6981.79,0],[[1257,2],[1410,2]]], +[1338,[4879.36,6938.38,0],[[1257,2],[1411,2]]], [1339,[4792.25,7188.22,0],[[1259,2],[1412,2],[1413,2]]], [1340,[4697.69,7218.05,0],[[1260,2],[1414,2],[1340,2],[1415,2]]], [1341,[4831.08,6688.28,0],[[1261,2],[1416,2]]], [1342,[4580.95,6569.93,1.52588e-005],[[1262,2],[1417,2]]], [1343,[4626.51,7473.67,0],[[1263,2],[1418,2]]], +[1344,[4449.28,7443.2,0],[[1264,2],[1325,2]]], [1345,[3194.34,5916.87,0],[[1265,2],[1419,2]]], [1346,[3412.67,5937.52,5.08626e-006],[[1266,2],[1420,2],[1421,2]]], [1347,[3704.22,6095.2,0],[[1267,2],[1422,2]]], [1348,[2802,5778.91,-3.8147e-006],[[1268,2],[1423,2],[1424,2],[1425,2]]], [1349,[2390.91,6091.82,0],[[1270,2],[1426,2]]], +[1350,[2701.2,5960.34,0],[[1271,2],[1427,2]]], [1351,[3963.07,10001.9,7.62939e-006],[[1272,2],[1274,2],[1428,2],[1351,2]]], [1352,[4276.92,9686.39,5.08626e-006],[[1273,2],[1429,2],[1352,2]]], [1353,[3836.84,10212.8,0],[[1275,2],[1430,2]]], [1354,[3715.3,10083.2,0],[[1276,2],[1431,2]]], [1355,[4977.52,8512.38,0],[[1277,2],[1282,2]]], +[1356,[5081.29,8530.83,0],[[1277,2],[1432,2],[1358,2],[1433,2]]], [1357,[5159.93,9013.98,1.52588e-005],[[1279,2],[1434,2]]], [1358,[5074.44,8605.76,1.52588e-005],[[1280,2],[1356,2]]], [1359,[5101.99,9093.32,-5.08626e-006],[[1281,2],[1283,2],[1435,2]]], [1360,[5108.33,8989.26,1.52588e-005],[[1281,2]]], [1361,[4848.79,8489.61,0],[[1282,2],[1361,2],[1436,2]]], +[1362,[4932.02,8378.74,3.8147e-006],[[1282,2],[1403,2],[1400,2],[1437,2]]], [1363,[4848.54,9186.81,0],[[1286,2],[1438,2]]], [1364,[4672.3,9219.82,1.52588e-005],[[1288,2],[1439,2]]], [1365,[4609.71,9342.63,0],[[1293,2],[1440,2]]], [1366,[439.133,9101.78,0],[[1294,2],[1441,2],[1442,2]]], [1367,[286.726,8276.25,0],[[1295,2],[1306,2]]], +[1368,[166.232,8341.81,0],[[1295,2],[1369,2],[1443,2]]], [1369,[159.015,8601.96,0],[[1296,2],[1368,2],[1371,2],[1444,2]]], [1370,[238.044,8668.7,7.62939e-006],[[1296,2]]], [1371,[147.362,8769.97,0],[[1297,2],[1369,2],[1445,2],[1371,2]]], [1372,[320.908,8806.77,0],[[1297,2],[1446,2],[1447,2]]], [1373,[1691.48,10207.8,5.08626e-006],[[1298,2],[1448,2],[1373,2],[1449,2]]], +[1374,[940.848,9827.41,-5.08626e-006],[[1301,2],[1450,2],[1451,2]]], [1375,[769.918,9553.25,7.62939e-006],[[1375,2]]], [1376,[777.402,9348.83,5.08626e-006],[[1225,2]]], [1377,[346.185,9387.95,-5.08626e-006],[[1303,2],[1452,2],[1453,2]]], [1378,[395.52,9244.31,0],[[1303,2],[1442,2]]], [1379,[443.452,9526.83,0],[[1303,2],[1454,2]]], +[1380,[37.2346,7929.26,-1.52588e-005],[[1304,2],[1455,2]]], [1381,[116.703,7965.07,0],[[1305,2],[1455,2]]], [1382,[233.702,8223.6,0],[[1306,2]]], [1383,[496.629,5739.38,-1.52588e-005],[[1311,2],[1456,2],[1457,2]]], [1384,[303.999,6013.1,-1.52588e-005],[[1312,2],[1313,2],[1458,2]]], [1385,[461.641,5915.7,0],[[1312,2],[1459,2],[1458,2]]], +[1386,[283.678,6159.09,1.52588e-005],[[1314,2],[1313,2]]], [1387,[211.785,6240.63,0],[[1315,2],[1314,2]]], [1388,[128.09,6353.54,0],[[1315,2],[1460,2],[1388,2],[1461,2]]], [1389,[1010.01,5702.84,0],[[1316,2],[1317,2],[1390,2]]], [1390,[1025.02,5631.49,0],[[1317,2],[1389,2],[1462,2],[1463,2]]], [1391,[1224.05,5494.9,0],[[1317,2],[1464,2],[1392,2]]], +[1392,[1261.15,5523.1,0],[[1318,2],[1391,2],[1464,2]]], [1393,[1805.13,5796.82,0],[[1319,2],[1465,2],[1466,2]]], [1394,[2072.67,5948.02,0],[[1321,2],[1394,2],[1467,2]]], [1395,[4754.27,7619.32,5.08626e-006],[[1322,2],[1468,2],[1469,2]]], [1396,[4681.42,7618.76,1.52588e-005],[[1322,2],[1470,2],[1469,2]]], [1397,[4839.7,7918.72,0],[[1323,2],[1324,2],[1471,2],[1397,2],[1399,2]]], +[1398,[4899.84,7760.64,-3.8147e-006],[[1324,2],[1472,2],[1398,2],[1473,2]]], [1399,[4894.03,7911.81,0],[[1324,2],[1397,2],[1402,2]]], [1400,[4961.02,8251.33,0],[[1326,2],[1362,2],[1474,2],[1400,2]]], [1401,[4927.77,8187.95,5.08626e-006],[[1326,2],[1401,2],[1475,2]]], [1402,[4878.89,8024.08,0],[[1328,2],[1399,2]]], [1403,[4867.36,8340.75,5.08626e-006],[[1329,2],[1362,2],[1403,2]]], +[1404,[3815.13,6168.18,0],[[1331,2],[1476,2]]], [1405,[4301.39,5898.12,0],[[1334,2],[1477,2],[1478,2]]], [1406,[4471.14,6029.19,-1.52588e-005],[[1334,2],[1479,2]]], [1407,[4131.44,5971.5,0],[[1334,2],[1480,2]]], [1408,[3944.34,6011.91,0],[[1335,2],[1481,2],[1480,2]]], [1409,[4953.27,7147.29,0],[[1336,2],[1482,2]]], +[1410,[5094.7,6987.46,3.8147e-006],[[1337,2],[1483,2],[1484,2],[1485,2]]], [1411,[4878.24,6842.27,1.52588e-005],[[1338,2],[1486,2]]], [1412,[4796.6,7296.88,0],[[1339,2],[1487,2],[1415,2],[1412,2],[1488,2]]], [1413,[4849.66,7206.5,1.52588e-005],[[1339,2],[1489,2],[1482,2]]], [1414,[4702.29,7206.83,0],[[1340,2]]], [1415,[4682.79,7300.35,0],[[1340,2],[1412,2],[1418,2],[1487,2]]], +[1416,[4821.53,6591.22,0],[[1341,2],[1490,2]]], [1417,[4642.87,6563.3,5.08626e-006],[[1342,2],[1491,2],[1492,2]]], [1418,[4644.76,7471.36,0],[[1343,2],[1415,2],[1493,2]]], [1419,[3200.81,5853.19,5.08626e-006],[[1345,2],[1420,2],[1494,2]]], [1420,[3328.2,5859.34,0],[[1346,2],[1419,2],[1495,2]]], [1421,[3450.13,5783.67,0],[[1346,2],[1496,2]]], +[1422,[3649.09,5978.52,0],[[1347,2],[1497,2]]], [1423,[2689.16,5680.33,5.08626e-006],[[1348,2],[1427,2],[1498,2]]], [1424,[2810.88,5684.84,1.52588e-005],[[1348,2],[1499,2]]], [1425,[2975.4,5807.76,0],[[1348,2],[1494,2]]], [1426,[2338.21,6061.14,0],[[1349,2],[1500,2]]], [1427,[2690.81,5828.59,0],[[1350,2],[1423,2]]], +[1428,[3991.78,10042.5,-5.08626e-006],[[1351,2],[1501,2],[1502,2]]], [1429,[4327.55,9704.6,7.62939e-006],[[1352,2],[1503,2],[1429,2]]], [1430,[3902.98,10213.4,0],[[1353,2],[1504,2]]], [1431,[3792.8,10099.1,0],[[1354,2],[1505,2]]], [1432,[5082.88,8418.83,-7.62939e-006],[[1356,2],[1432,2],[1506,2],[1437,2]]], [1433,[5187.94,8541.75,0],[[1356,2],[1507,2]]], +[1434,[5160.4,9089.63,0],[[1357,2],[1508,2]]], [1435,[5080.02,9219.16,0],[[1359,2],[1509,2]]], [1436,[4806.83,8544.39,0],[[1361,2]]], [1437,[5021.12,8396.54,0],[[1362,2],[1432,2]]], [1438,[4907.68,9224.97,5.08626e-006],[[1363,2],[1438,2],[1510,2]]], [1439,[4674.68,9257.63,0],[[1364,2],[1439,2],[1440,2]]], +[1440,[4673.59,9341.51,-1.01725e-005],[[1365,2],[1439,2],[1511,2]]], [1441,[538.88,9108.5,0],[[1441,2],[1512,2]]], [1442,[402.256,9118.65,0],[[1366,2],[1378,2],[1513,2],[1442,2]]], [1443,[84.2345,8326.76,-5.08626e-006],[[1368,2],[1514,2],[1515,2]]], [1444,[107.817,8569.54,-1.52588e-005],[[1369,2],[1516,2]]], [1445,[38.1116,8794.09,0],[[1371,2]]], +[1446,[344.454,8929.74,0],[[1372,2],[1513,2]]], [1447,[207.411,8829.88,0],[[1372,2],[1517,2]]], [1448,[1715.67,10210.6,0],[[1373,2]]], [1449,[1487.42,10173.9,-1.52588e-005],[[1373,2],[1518,2]]], [1450,[820.375,9826.78,0],[[1374,2],[1519,2]]], [1451,[951.161,9817.29,-5.08626e-006],[[1374,2]]], +[1452,[214.768,9381.32,0],[[1377,2],[1522,2]]], [1453,[262.005,9288.56,-1.52588e-005],[[1377,2],[1523,2]]], [1454,[444.705,9607.85,3.8147e-006],[[1379,2],[1524,2],[1525,2],[1521,2]]], [1455,[35.2147,7959.64,0],[[1380,2],[1381,2],[1526,2],[1455,2]]], [1456,[489.764,5554.34,0],[[1383,2],[1527,2],[1528,2]]], [1457,[408.099,5676.52,0],[[1459,2],[1528,2],[1383,2],[1596,2]]], +[1458,[367.592,5844.34,-1.52588e-005],[[1384,2],[1385,2],[1529,2]]], [1459,[401.373,5843.38,0],[[1385,2],[1457,2]]], [1460,[61.1729,6347.81,-5.08626e-006],[[1388,2],[1460,2],[1530,2]]], [1461,[111.716,6140.94,0],[[1388,2],[1531,2]]], [1462,[1051.81,5496.23,5.08626e-006],[[1390,2],[1532,2],[1533,2]]], [1463,[872.107,5611.69,0],[[1390,2],[1534,2]]], +[1464,[1268.15,5412.52,-1.52588e-006],[[1391,2],[1392,2],[1535,2],[1536,2],[1532,2],[1537,2]]], [1465,[1942.14,5896.84,0],[[1393,2],[1538,2]]], [1466,[1784.08,5731.11,0],[[1393,2],[1539,2],[1540,2]]], [1467,[2050.67,5912.02,-1.01725e-005],[[1394,2],[1467,2],[1538,2]]], [1468,[4838.76,7626.97,0],[[1395,2],[1541,2]]], [1469,[4712.25,7564.49,0],[[1395,2],[1396,2],[1470,2]]], +[1470,[4692.37,7564.63,0],[[1396,2],[1469,2],[1493,2]]], [1471,[4817.98,7919.85,5.08626e-006],[[1397,2]]], [1472,[4893.64,7693.81,0],[[1398,2],[1542,2],[1541,2],[1543,2]]], [1473,[4930.25,7754.26,5.08626e-006],[[1398,2],[1473,2],[1544,2]]], [1474,[4990.64,8234.45,0],[[1400,2],[1545,2],[1546,2]]], [1475,[4965.69,8095.68,-5.08626e-006],[[1401,2],[1546,2],[1547,2]]], +[1476,[3832.14,6070.75,0],[[1404,2],[1548,2]]], [1477,[4297.43,5731.94,0],[[1405,2],[1549,2]]], [1478,[4441.04,5895.31,0],[[1405,2],[1550,2]]], [1479,[4612.05,6055.16,0],[[1406,2],[1551,2],[1552,2]]], [1480,[4007.82,5916.92,0],[[1407,2],[1408,2],[1481,2],[1553,2]]], [1481,[3963.57,5924.51,0],[[1408,2],[1480,2],[1554,2]]], +[1482,[4935.66,7246.03,0],[[1409,2],[1413,2],[1555,2]]], [1483,[5145.01,7005.38,-2.54313e-006],[[1410,2],[1556,2],[1557,2]]], [1484,[5054.63,7150.03,0],[[1410,2],[1558,2]]], [1485,[5104.95,6923.19,0],[[1410,2],[1559,2],[1560,2],[1486,2]]], [1486,[4951.68,6816.03,0],[[1411,2],[1485,2]]], [1487,[4715.29,7301.44,0],[[1412,2],[1415,2],[1561,2]]], +[1488,[4893.31,7302.8,-1.52588e-005],[[1412,2],[1562,2]]], [1489,[4874.57,7245.66,0],[[1413,2],[1489,2]]], [1490,[4814.91,6570.73,0],[[1416,2],[1563,2],[1492,2],[1564,2]]], [1491,[4679.89,6474.36,0],[[1417,2],[1565,2]]], [1492,[4752.63,6558.69,1.52588e-005],[[1417,2],[1490,2],[1563,2]]], [1493,[4681.76,7489.38,0],[[1418,2],[1470,2],[1561,2]]], +[1494,[3046.06,5810.37,0],[[1419,2],[1425,2]]], [1495,[3335.07,5717.86,0],[[1420,2],[1566,2]]], [1496,[3446.92,5715.38,0],[[1421,2],[1567,2],[1566,2],[1568,2]]], [1497,[3562.18,5887.49,0],[[1422,2],[1567,2]]], [1498,[2694.12,5556.84,-5.72205e-006],[[1423,2],[1569,2],[1570,2],[1571,2],[1499,2]]], [1499,[2787.32,5583.7,0],[[1424,2],[1498,2],[1571,2]]], +[1500,[2334.7,5953.17,0],[[1426,2],[1572,2]]], [1501,[3902.52,10061.3,0],[[1428,2],[1505,2]]], [1502,[4090.75,10064.3,0],[[1428,2],[1573,2]]], [1503,[4397.31,9723.09,0],[[1429,2],[1574,2],[1575,2],[1576,2]]], [1504,[4021.96,10220.9,0],[[1430,2],[1577,2]]], [1505,[3869.09,10084.5,0],[[1431,2],[1501,2]]], +[1506,[5128.34,8273.9,0],[[1432,2],[1578,2],[1545,2]]], [1507,[5198.43,8422.21,1.52588e-005],[[1433,2],[1579,2]]], [1508,[5175.39,9164.11,0],[[1434,2],[1580,2]]], [1509,[5075.37,9308.5,0],[[1435,2],[1581,2]]], [1510,[4970.14,9279.74,0],[[1438,2],[1582,2]]], [1511,[4721.64,9367.31,1.01725e-005],[[1440,2],[1583,2],[1584,2]]], +[1512,[533.999,9208.17,1.52588e-005],[[1441,2]]], [1513,[343.109,9113.75,-5.08626e-006],[[1442,2],[1446,2],[1585,2]]], [1514,[65.7216,8235.8,0],[[1443,2],[1526,2]]], [1515,[6.91321,8317.13,0],[[1443,2]]], [1516,[39.9162,8534.02,0],[[1444,2],[1586,2]]], [1517,[37.9243,8837.37,0],[[1447,2],[1587,2]]], +[1518,[1372.55,10154.7,-1.52588e-005],[[1449,2],[1588,2]]], [1519,[739.793,9836.18,1.52588e-005],[[1450,2],[1589,2]]], [1520,[631.418,9571.72,0],[[1375,2],[1521,2]]], [1521,[532.369,9589.11,0],[[1520,2],[1454,2]]], [1522,[106.768,9382.02,-3.8147e-006],[[1452,2],[1522,2],[1590,2],[1591,2]]], [1523,[181.25,9257.27,0],[[1453,2],[1592,2]]], +[1524,[446.018,9768.38,0],[[1454,2],[1593,2]]], [1525,[318.858,9636.03,0],[[1454,2],[1594,2]]], [1526,[30.347,8106.42,0],[[1455,2],[1514,2]]], [1527,[491.233,5391.87,0],[[1456,2],[1595,2]]], [1528,[490.319,5666.25,7.62939e-006],[[1457,2],[1534,2],[1456,2],[1653,2]]], [1529,[388.199,5837.52,0],[[1458,2]]], +[1530,[36.7101,6187.77,0],[[1460,2],[1597,2]]], [1531,[104.397,5993.46,0],[[1461,2],[1598,2]]], [1532,[1131.5,5365.07,0],[[1462,2],[1464,2],[1536,2]]], [1533,[1000.94,5430.34,0],[[1462,2],[1599,2]]], [1534,[718.54,5646.87,0],[[1463,2],[1600,2],[1528,2]]], [1535,[1195.39,5319.53,0],[[1464,2],[1536,2],[1535,2],[1601,2]]], +[1536,[1172.58,5366.66,-5.08626e-006],[[1464,2],[1532,2],[1535,2]]], [1537,[1471.1,5390.69,0],[[1464,2],[1602,2]]], [1538,[1994.11,5871.59,0],[[1465,2],[1467,2],[1603,2]]], [1539,[1712.13,5652.55,0],[[1466,2],[1604,2]]], [1540,[1800.46,5708.06,0],[[1466,2],[1603,2],[1605,2]]], [1541,[4851.19,7626.77,0],[[1468,2],[1472,2],[1541,2],[1542,2]]], +[1542,[4878.46,7654.06,7.62939e-006],[[1472,2],[1541,2]]], [1543,[4933.8,7635.22,0],[[1472,2],[1606,2]]], [1544,[4977.59,7740.62,0],[[1473,2],[1547,2],[1607,2],[1606,2]]], [1545,[5099.09,8229.49,0],[[1474,2],[1506,2],[1578,2]]], [1546,[5014.08,8111.61,-1.52588e-005],[[1474,2],[1475,2]]], [1547,[4991.38,7981.06,-3.8147e-006],[[1475,2],[1544,2],[1608,2],[1609,2]]], +[1548,[3880.48,5994.31,0],[[1476,2],[1554,2]]], [1549,[4318.63,5658.21,0],[[1477,2],[1610,2],[1611,2]]], [1550,[4481.3,5815.54,0],[[1478,2],[1612,2]]], [1551,[4666.82,6072.34,3.8147e-006],[[1479,2],[1613,2],[1552,2],[1614,2]]], [1552,[4664.5,5964.11,3.8147e-006],[[1479,2],[1551,2],[1615,2],[1616,2]]], [1553,[4033.37,5784.46,0],[[1480,2],[1617,2]]], +[1554,[3911.79,5920.12,5.08626e-006],[[1481,2],[1548,2],[1618,2]]], [1555,[4895,7245.66,-1.52588e-005],[[1482,2]]], [1556,[5253.38,7037.22,0],[[1483,2],[1619,2],[1620,2]]], [1557,[5092.6,7207.66,-7.62939e-006],[[1483,2],[1621,2]]], [1558,[5031.45,7264.32,0],[[1484,2],[1562,2]]], [1559,[5206.32,6919.91,-7.62939e-006],[[1485,2],[1622,2]]], +[1560,[5111.01,6852.26,0],[[1485,2],[1623,2],[1624,2]]], [1561,[4693.04,7368.72,-1.52588e-005],[[1487,2],[1493,2]]], [1562,[5007.37,7336.51,0],[[1488,2],[1558,2],[1625,2]]], [1563,[4772.3,6556.81,0],[[1490,2],[1492,2],[1626,2]]], [1564,[4862.19,6472.24,0],[[1490,2],[1627,2]]], [1565,[4676.14,6390.75,0],[[1491,2],[1628,2]]], +[1566,[3334.8,5694.72,7.62939e-006],[[1495,2],[1496,2],[1629,2],[1630,2]]], [1567,[3582.02,5751.17,-5.08626e-006],[[1496,2],[1497,2],[1618,2]]], [1568,[3458.62,5596.2,0],[[1496,2],[1631,2]]], [1569,[2644.79,5380.55,0],[[1498,2],[1632,2]]], [1570,[2555.02,5526.85,0],[[1498,2],[1633,2]]], [1571,[2782.32,5564.4,-7.62939e-006],[[1498,2],[1499,2],[1634,2]]], +[1572,[2335.87,5872.14,0],[[1500,2],[1635,2]]], [1573,[4154.92,10073.7,1.52588e-005],[[1502,2],[1636,2]]], [1574,[4394.13,9736.18,0],[[1503,2]]], [1575,[4444.53,9774.68,1.52588e-005],[[1503,2],[1637,2]]], [1576,[4505.71,9730.15,0],[[1503,2],[1638,2]]], [1577,[4140.37,10222.4,0],[[1504,2],[1639,2]]], +[1578,[5150.77,8222.55,0],[[1506,2],[1545,2],[1640,2],[1579,2],[1641,2]]], [1579,[5184.38,8307.17,0],[[1507,2],[1578,2]]], [1580,[5189.44,9229.45,0],[[1508,2],[1642,2]]], [1581,[5088.67,9392.08,0],[[1509,2],[1582,2],[1642,2],[1643,2]]], [1582,[4938.07,9351.35,0],[[1510,2],[1581,2],[1584,2]]], [1583,[4752.64,9501.17,0],[[1511,2],[1644,2]]], +[1584,[4812.12,9352.84,0],[[1511,2],[1582,2]]], [1585,[220.523,9144.49,0],[[1513,2],[1645,2]]], [1586,[17.7321,8591.27,0],[[1516,2],[1646,2]]], [1587,[9.11357,8835.07,0],[[1517,2]]], [1588,[1216.59,10133.1,0],[[1518,2],[1647,2]]], [1589,[649.456,9818.57,0],[[1519,2],[1648,2]]], +[1590,[117.518,9281.19,0],[[1522,2],[1592,2]]], [1591,[8.29733,9386.79,1.52588e-005],[[1522,2]]], [1592,[143.838,9224.84,5.08626e-006],[[1523,2],[1590,2],[1645,2]]], [1593,[447.09,9806.1,0],[[1524,2],[1649,2],[1648,2]]], [1594,[222.807,9658.33,0],[[1525,2],[1650,2]]], [1595,[483.376,5333.26,-5.08626e-006],[[1527,2],[1651,2],[1652,2]]], +[1596,[244.634,5624.4,1.52588e-005],[[1457,2],[1654,2]]], [1597,[20.3852,6037.4,0],[[1530,2],[1655,2]]], [1598,[65.1345,5868.21,5.08626e-006],[[1531,2],[1655,2],[1656,2]]], [1599,[892.623,5413.87,0],[[1533,2],[1657,2]]], [1600,[614.571,5654.23,0],[[1534,2],[1658,2]]], [1601,[1080.76,5277.03,5.08626e-006],[[1535,2],[1659,2],[1660,2]]], +[1602,[1539.83,5420.75,0],[[1537,2],[1661,2],[1662,2]]], [1603,[1941.35,5807,0],[[1538,2],[1540,2],[1663,2]]], [1604,[1621.63,5595.4,0],[[1539,2],[1664,2]]], [1605,[1746.45,5633.29,0],[[1540,2],[1665,2]]], [1606,[4974.97,7584.11,0],[[1543,2],[1544,2],[1666,2],[1625,2]]], [1607,[5063.69,7716.04,0],[[1544,2],[1667,2]]], +[1608,[5067.27,8095.43,0],[[1547,2],[1668,2]]], [1609,[5023.56,7909.33,0],[[1547,2],[1669,2],[1670,2]]], [1610,[4311.29,5586.72,3.8147e-006],[[1549,2],[1671,2],[1610,2],[1672,2]]], [1611,[4498.15,5660.46,0],[[1549,2],[1673,2]]], [1612,[4533.26,5819.56,0],[[1550,2],[1674,2]]], [1613,[4790.75,6108.39,0],[[1551,2],[1675,2],[1676,2],[1677,2]]], +[1614,[4641.48,6205.96,0],[[1551,2],[1628,2]]], [1615,[4759.63,5799.49,-1.52588e-005],[[1552,2],[1678,2]]], [1616,[4651.46,5859.45,1.52588e-005],[[1552,2],[1679,2]]], [1617,[4053.76,5697.82,-1.52588e-005],[[1553,2],[1680,2]]], [1618,[3771.55,5890.55,0],[[1554,2],[1567,2],[1681,2]]], [1619,[5368.73,7160.27,0],[[1556,2],[1682,2]]], +[1620,[5188.15,7146.49,0],[[1556,2],[1683,2]]], [1621,[5145.29,7316.71,0],[[1557,2],[1684,2]]], [1622,[5296.96,6832.78,0],[[1559,2],[1685,2]]], [1623,[5093.16,6761.21,-5.08626e-006],[[1560,2],[1686,2],[1687,2]]], [1624,[5211.24,6802.1,0],[[1560,2],[1685,2]]], [1625,[5004.37,7431.13,1.01725e-005],[[1562,2],[1606,2],[1684,2]]], +[1626,[4779.64,6433.58,0],[[1563,2],[1688,2]]], [1627,[4944.03,6459.58,-5.08626e-006],[[1564,2],[1676,2],[1689,2]]], [1628,[4689.73,6324.94,-1.52588e-005],[[1565,2],[1614,2]]], [1629,[3290.57,5679.87,0],[[1566,2],[1690,2],[1629,2]]], [1630,[3266.37,5598.41,0],[[1566,2],[1691,2]]], [1631,[3481.04,5582.96,-5.08626e-006],[[1568,2],[1631,2],[1692,2]]], +[1632,[2601.53,5235.2,-5.08626e-006],[[1569,2],[1693,2],[1694,2],[1695,2]]], [1633,[2533.74,5532.9,5.08626e-006],[[1570,2],[1633,2],[1696,2]]], [1634,[2874.96,5603.76,0],[[1571,2],[1697,2]]], [1635,[2301.91,5778.46,0],[[1572,2],[1698,2]]], [1636,[4214.88,10094.3,1.52588e-005],[[1573,2],[1699,2]]], [1637,[4463.87,9818.58,-1.52588e-005],[[1575,2],[1700,2]]], +[1638,[4558.1,9725.72,-5.08626e-006],[[1576,2],[1638,2],[1701,2]]], [1639,[4250.54,10223.9,0],[[1577,2],[1702,2]]], [1640,[5141.38,8159.67,5.08626e-006],[[1578,2],[1703,2],[1668,2]]], [1641,[5285.69,8091.82,0],[[1578,2],[1704,2]]], [1642,[5217.06,9292.73,0],[[1580,2],[1581,2],[1705,2]]], [1643,[5057.84,9456.74,0],[[1581,2],[1706,2]]], +[1644,[4781.04,9619.16,0],[[1583,2],[1707,2]]], [1645,[190.287,9152.37,0],[[1585,2],[1592,2],[1708,2],[1709,2]]], [1646,[6.04055,8620.35,0],[[1586,2]]], [1647,[1084.96,10112.1,1.52588e-005],[[1588,2],[1710,2]]], [1648,[606.082,9819.49,-5.08626e-006],[[1589,2],[1593,2],[1711,2]]], [1649,[378.351,9828.16,-5.08626e-006],[[1593,2],[1712,2],[1713,2]]], +[1650,[120.881,9620.8,0],[[1594,2],[1714,2]]], [1651,[492.507,5194.89,0],[[1595,2],[1715,2],[1716,2],[1717,2]]], [1652,[446.587,5317.66,-5.08626e-006],[[1595,2],[1718,2],[1716,2]]], [1653,[580.264,5651.94,0],[[1528,2]]], [1654,[225.239,5493.76,0],[[1596,2],[1719,2]]], [1655,[4.92315,5877.28,1.52588e-005],[[1597,2],[1598,2]]], +[1656,[53.7766,5760.67,0],[[1598,2],[1720,2]]], [1657,[850.904,5322.75,0],[[1599,2],[1721,2],[1660,2]]], [1658,[627.31,5480.1,0],[[1600,2],[1722,2]]], [1659,[1074.72,5157.57,0],[[1601,2],[1723,2]]], [1660,[894.086,5260.54,0],[[1601,2],[1657,2],[1724,2]]], [1661,[1587.19,5318.1,1.52588e-005],[[1602,2],[1725,2]]], +[1662,[1673.28,5461.87,-3.8147e-006],[[1602,2],[1726,2],[1727,2],[1665,2]]], [1663,[1961.18,5626.44,0],[[1603,2],[1728,2]]], [1664,[1549.31,5565.8,-1.52588e-005],[[1604,2],[1729,2]]], [1665,[1697.64,5581.41,0],[[1605,2],[1662,2]]], [1666,[5083.08,7539.48,0],[[1606,2],[1684,2],[1730,2]]], [1667,[5089.55,7639.41,1.52588e-005],[[1607,2],[1730,2]]], +[1668,[5102.5,8123.61,0],[[1608,2],[1640,2]]], [1669,[5091.18,7952.73,0],[[1609,2],[1731,2]]], [1670,[5057.91,7865.54,-5.08626e-006],[[1609,2],[1732,2],[1733,2]]], [1671,[4323.58,5410.14,0],[[1610,2],[1734,2]]], [1672,[4169.31,5588.24,-1.52588e-005],[[1610,2],[1735,2],[1680,2]]], [1673,[4591.77,5645.31,5.08626e-006],[[1611,2],[1679,2],[1736,2]]], +[1674,[4532.33,5855.44,0],[[1612,2]]], [1675,[4791.17,6194.92,-1.52588e-005],[[1613,2],[1737,2]]], [1676,[4877.01,6257,0],[[1613,2],[1627,2]]], [1677,[4849.03,6001.89,0],[[1613,2],[1738,2]]], [1678,[4777.7,5777.36,-7.62939e-006],[[1615,2],[1739,2],[1679,2],[1740,2]]], [1679,[4653.03,5734.27,-3.8147e-006],[[1616,2],[1673,2],[1678,2],[1741,2]]], +[1680,[4069.79,5597.84,0],[[1617,2],[1672,2],[1742,2],[1735,2]]], [1681,[3778.27,5752.66,0],[[1618,2],[1743,2]]], [1682,[5485.41,7250.55,0],[[1619,2],[1744,2]]], [1683,[5224.74,7308.76,0],[[1620,2],[1745,2]]], [1684,[5118.92,7440.08,-3.8147e-006],[[1621,2],[1625,2],[1666,2],[1684,2]]], [1685,[5285.19,6742.59,-2.54313e-006],[[1622,2],[1624,2],[1746,2]]], +[1686,[5033.95,6696.73,1.52588e-005],[[1623,2],[1747,2]]], [1687,[5180.28,6768.74,0],[[1623,2],[1746,2]]], [1688,[4785.08,6361.2,5.08626e-006],[[1626,2],[1688,2],[1737,2]]], [1689,[5017.92,6526.61,5.08626e-006],[[1627,2],[1748,2],[1749,2],[1747,2]]], [1690,[3162.76,5655.78,0],[[1629,2],[1750,2]]], [1691,[3266.07,5508.63,3.8147e-006],[[1630,2],[1750,2],[1751,2],[1752,2]]], +[1692,[3551.55,5464.48,-1.52588e-005],[[1631,2],[1753,2]]], [1693,[2510.23,5122.1,0],[[1632,2],[1754,2]]], [1694,[2772.1,5201.22,0],[[1632,2],[1755,2],[1756,2]]], [1695,[2635.96,5096.58,0],[[1973,2],[1756,2],[1632,2]]], [1696,[2368.56,5525.8,0],[[1633,2],[1757,2]]], [1697,[2974.79,5598.37,0],[[1634,2],[1750,2]]], +[1698,[2274.93,5645.61,2.54313e-006],[[1635,2],[1758,2],[1757,2]]], [1699,[4271.56,10113.7,-1.52588e-005],[[1636,2],[1759,2]]], [1700,[4496.34,9853.42,5.08626e-006],[[1637,2],[1760,2],[1700,2],[1761,2]]], [1701,[4613.36,9741.67,-5.08626e-006],[[1638,2],[1762,2],[1763,2]]], [1702,[4322.31,10234.4,-1.52588e-005],[[1639,2]]], [1703,[5171.97,8095.12,0],[[1640,2],[1764,2],[1731,2]]], +[1704,[5293.31,7954.2,0],[[1641,2],[1765,2]]], [1705,[5282.18,9342.34,0],[[1642,2],[1766,2]]], [1706,[5040.5,9523.29,0],[[1643,2],[1767,2],[1706,2]]], [1707,[4783.15,9736.2,0],[[1644,2],[1768,2]]], [1708,[159.727,9177.46,-1.52588e-005],[[1645,2],[1769,2],[1708,2]]], [1709,[138.357,9058.14,0],[[1645,2],[1770,2],[1771,2],[1709,2]]], +[1710,[934.168,10088.3,1.52588e-005],[[1647,2],[1772,2]]], [1711,[674.372,9943.34,0],[[1648,2],[1773,2],[1772,2]]], [1712,[381.707,9968.09,0],[[1649,2],[1774,2]]], [1713,[285.97,9829.93,0],[[1649,2],[1775,2]]], [1714,[36.941,9591.54,0],[[1650,2],[1776,2]]], [1715,[494.833,5021.71,0],[[1651,2],[1777,2]]], +[1716,[413.657,5189.86,-1.90735e-006],[[1651,2],[1652,2],[1778,2],[1779,2]]], [1717,[607.347,5216.51,1.01725e-005],[[1651,2],[1722,2],[1780,2]]], [1718,[363.798,5362.18,-1.52588e-005],[[1652,2],[1781,2]]], [1719,[235.862,5418.74,3.8147e-006],[[1654,2],[1782,2],[1719,2],[1781,2]]], [1720,[47.7905,5697.36,-1.52588e-005],[[1656,2],[1783,2]]], [1721,[852.002,5276.64,0],[[1657,2],[1784,2]]], +[1722,[614.868,5397.4,-1.52588e-005],[[1658,2],[1717,2]]], [1723,[1046.85,5060.61,0],[[1659,2],[1785,2]]], [1724,[846.147,5265.66,0],[[1660,2]]], [1725,[1643.03,5233.04,0],[[1661,2],[1786,2]]], [1726,[1676,5305.92,0],[[1662,2],[1786,2]]], [1727,[1838.69,5446.6,2.54313e-006],[[1662,2],[1787,2],[1788,2]]], +[1728,[1970.43,5595.99,0],[[1663,2],[1758,2],[1787,2]]], [1729,[1448.22,5496.38,0],[[1664,2],[1729,2]]], [1730,[5108.2,7551.84,-2.54313e-006],[[1666,2],[1667,2],[1789,2]]], [1731,[5135.78,8010.82,0],[[1669,2],[1703,2],[1764,2]]], [1732,[5130.46,7781.53,-5.08626e-006],[[1670,2],[1789,2],[1790,2]]], [1733,[5136.3,7884.53,0],[[1670,2],[1791,2],[1790,2]]], +[1734,[4323.73,5388.6,3.8147e-006],[[1671,2],[1792,2],[1793,2],[1794,2]]], [1735,[4075.97,5570.17,0],[[1672,2],[1680,2],[1795,2]]], [1736,[4596.58,5510.66,0],[[1673,2],[1796,2]]], [1737,[4831.92,6290.71,0],[[1675,2],[1688,2]]], [1738,[4854.67,5925.96,1.52588e-005],[[1677,2],[1740,2]]], [1739,[4844.64,5666.92,0],[[1678,2],[1797,2],[1798,2],[1799,2]]], +[1740,[4804.81,5869.08,0],[[1678,2],[1738,2]]], [1741,[4709.81,5599.16,0],[[1679,2],[1800,2],[1798,2]]], [1742,[4092.22,5578.76,0],[[1680,2]]], [1743,[3765.52,5673.76,0],[[1681,2],[1801,2],[1802,2]]], [1744,[5647.22,7282.32,0],[[1682,2],[1803,2]]], [1745,[5269.62,7459.57,-1.52588e-005],[[1683,2],[1804,2]]], +[1746,[5290.73,6710.86,-2.54313e-006],[[1685,2],[1687,2],[1805,2]]], [1747,[5029.45,6619.24,0],[[1686,2],[1689,2],[1806,2],[1749,2]]], [1748,[5097.07,6516.13,0],[[1689,2],[1807,2]]], [1749,[5025.31,6593.09,0],[[1689,2],[1747,2],[1808,2]]], [1750,[3131.36,5608.77,0],[[1690,2],[1691,2],[1697,2],[1809,2]]], [1751,[3328.97,5493.75,7.62939e-006],[[1751,2],[1810,2],[1691,2]]], +[1752,[3274.88,5346.21,-3.8147e-006],[[1691,2],[1811,2],[1812,2],[1813,2]]], [1753,[3599.14,5361.25,-1.52588e-005],[[1692,2],[1814,2]]], [1754,[2390.47,5044.35,-2.54313e-006],[[1693,2],[1815,2],[1816,2]]], [1755,[2904.06,5139.68,-2.54313e-006],[[1694,2],[1817,2],[1818,2],[1819,2],[1820,2],[1821,2]]], [1756,[2637.21,5209.01,0],[[1695,2],[1694,2]]], [1757,[2295.41,5501.53,0],[[1696,2],[1698,2],[1822,2],[1823,2]]], +[1758,[2127.48,5622.8,0],[[1698,2],[1728,2]]], [1759,[4344.63,10120.7,0],[[1699,2],[1824,2]]], [1760,[4480.14,9845.44,0],[[1700,2]]], [1761,[4581.37,9859.53,5.08626e-006],[[1700,2],[1825,2],[1763,2]]], [1762,[4681.69,9760,0],[[1701,2],[1826,2],[1768,2]]], [1763,[4603.79,9819.57,0],[[1701,2],[1761,2]]], +[1764,[5173.46,8040.48,0],[[1703,2],[1731,2],[1827,2]]], [1765,[5270.42,7818.2,0],[[1704,2],[1804,2]]], [1766,[5321.3,9396.21,0],[[1705,2],[1828,2]]], [1767,[5005.07,9618.03,0],[[1706,2],[1829,2]]], [1768,[4776.34,9780.82,5.08626e-006],[[1707,2],[1762,2],[1830,2],[1831,2]]], [1769,[144.941,9174.81,0],[[1708,2],[1832,2]]], +[1770,[18.3965,8986.93,-1.52588e-005],[[1709,2],[1770,2]]], [1771,[153.049,9057.81,-1.52588e-005],[[1709,2],[1833,2]]], [1772,[783.437,10074.2,1.52588e-005],[[1710,2],[1711,2],[1773,2]]], [1773,[741.703,10060,0],[[1711,2],[1772,2],[1834,2]]], [1774,[379.102,10041.6,3.8147e-006],[[1712,2],[1835,2],[1836,2],[1837,2]]], [1775,[204.428,9828.49,0],[[1713,2],[1838,2]]], +[1776,[5.44826,9585.85,0],[[1714,2]]], [1777,[501.313,4878,0],[[1715,2],[1839,2]]], [1778,[293.536,5184.19,0],[[1716,2],[1840,2]]], [1779,[408.071,5069.01,1.52588e-005],[[1716,2],[1841,2]]], [1780,[674.435,5238.92,3.8147e-006],[[1717,2],[1784,2],[1780,2],[1842,2]]], [1781,[297.986,5445.33,0],[[1718,2],[1719,2]]], +[1782,[150.509,5394.6,9.15527e-006],[[1719,2],[1843,2],[1844,2],[1845,2],[1846,2]]], [1783,[23.9228,5630.97,0],[[1720,2],[1847,2]]], [1784,[762.184,5242.3,0],[[1721,2],[1780,2],[1848,2]]], [1785,[975.645,5034.59,0],[[1723,2],[1849,2],[1850,2]]], [1786,[1676.67,5235.39,2.54313e-006],[[1725,2],[1726,2],[1851,2]]], [1787,[1970.13,5448.66,3.8147e-006],[[1727,2],[1728,2],[1823,2],[1852,2]]], +[1788,[1832.15,5343.3,1.52588e-005],[[1727,2],[1853,2]]], [1789,[5170.3,7658.33,0],[[1730,2],[1732,2]]], [1790,[5186.36,7861.59,0],[[1732,2],[1733,2],[1791,2]]], [1791,[5176.02,7885.13,0],[[1733,2],[1790,2],[1827,2]]], [1792,[4326.46,5251.72,0],[[1734,2],[1854,2],[1855,2]]], [1793,[4163,5343.26,5.08626e-006],[[1734,2],[1856,2],[1857,2]]], +[1794,[4492.92,5440.54,0],[[1734,2],[1796,2]]], [1795,[4056.6,5482.27,0],[[1735,2],[1858,2]]], [1796,[4598.33,5478.9,-3.8147e-006],[[1736,2],[1794,2],[1859,2],[1800,2]]], [1797,[4930.9,5512.78,0],[[1739,2],[1860,2]]], [1798,[4770.23,5585.18,0],[[1739,2],[1741,2],[1861,2]]], [1799,[4948.6,5747.52,0],[[1739,2],[1862,2]]], +[1800,[4729.9,5555.8,1.52588e-005],[[1741,2],[1796,2]]], [1801,[3846.13,5675.52,0],[[1743,2],[1863,2]]], [1802,[3775.46,5546.93,0],[[1743,2],[1864,2]]], [1803,[5760.67,7233.42,0],[[1744,2],[1865,2]]], [1804,[5261.72,7617.53,0],[[1745,2],[1765,2]]], [1805,[5406.8,6769.5,0],[[1746,2],[1866,2]]], +[1806,[5019.49,6598.85,0],[[1747,2]]], [1807,[5105.11,6513.21,0],[[1748,2],[1808,2],[1867,2],[1868,2]]], [1808,[5057.07,6575.12,0],[[1749,2],[1807,2],[1808,2]]], [1809,[3058.17,5514.71,0],[[1932,2],[1750,2]]], [1810,[3313.27,5496.91,0],[[1751,2]]], [1811,[3321.67,5196.9,0],[[1752,2],[1871,2],[1872,2],[1873,2]]], +[1812,[3125.17,5314.97,0],[[1752,2],[1874,2]]], [1813,[3123.75,5345.77,0],[[1752,2],[1874,2]]], [1814,[3634.55,5417.08,-1.52588e-005],[[1753,2],[1875,2]]], [1815,[2350.44,4994.38,-5.08626e-006],[[1754,2],[1876,2],[1877,2]]], [1816,[2294.26,5157.64,-1.90735e-006],[[1754,2],[1822,2],[1878,2],[1876,2]]], [1817,[2987.7,4937.94,0],[[1755,2],[1879,2]]], +[1818,[2862.91,5040.94,0],[[1755,2],[1880,2]]], [1819,[2883.17,5333.71,1.52588e-005],[[1755,2],[1881,2]]], [1820,[2935.93,5254.83,0],[[1755,2],[1882,2]]], [1821,[3034.59,5100.77,0],[[1755,2],[1883,2]]], [1822,[2315.72,5299.17,0],[[1757,2],[1816,2]]], [1823,[2118.66,5458.27,1.52588e-005],[[1757,2],[1787,2]]], +[1824,[4410.68,10129.6,0],[[1759,2],[1884,2]]], [1825,[4637.93,9887.62,0],[[1761,2],[1885,2],[1886,2]]], [1826,[4735.34,9780.36,0],[[1762,2],[1826,2]]], [1827,[5204.5,7950.18,0],[[1764,2],[1791,2]]], [1828,[5354.79,9470.92,0],[[1766,2],[1887,2]]], [1829,[5004.77,9690.42,0],[[1767,2],[1888,2]]], +[1830,[4915.56,9893.34,0],[[1768,2],[1889,2]]], [1831,[4747.85,9777.26,0],[[1768,2]]], [1832,[51.9448,9166.44,0],[[1769,2],[1890,2]]], [1833,[283.928,9056.52,0],[[1771,2]]], [1834,[645.583,10042.6,0],[[1773,2],[1835,2]]], [1835,[495.571,10033.3,0],[[1774,2],[1834,2]]], +[1836,[373.565,10232.6,0],[[1774,2]]], [1837,[220.339,10059.7,0],[[1774,2],[1891,2]]], [1838,[141.471,9820.59,0],[[1775,2],[1892,2],[1893,2]]], [1839,[510.835,4701.2,0],[[1777,2],[1894,2]]], [1840,[214.659,5161.18,2.54313e-006],[[1778,2],[1843,2],[1895,2]]], [1841,[346.465,4981.18,0],[[1779,2],[1896,2]]], +[1842,[750.146,5141.72,0],[[1780,2],[1897,2]]], [1843,[186.294,5348.45,5.08626e-006],[[1782,2],[1840,2],[1844,2]]], [1844,[140.53,5347.91,0],[[1782,2],[1843,2],[1898,2]]], [1845,[65.6181,5344.27,1.01725e-005],[[1782,2],[1899,2],[1898,2],[1900,2]]], [1846,[69.9422,5455.8,1.52588e-005],[[1782,2],[1847,2]]], [1847,[52.4048,5564.77,0],[[1783,2],[1846,2]]], +[1848,[826.732,5143.9,0],[[1784,2],[1850,2]]], [1849,[1111.71,4908.38,0],[[1785,2],[1901,2]]], [1850,[898.118,5067.96,0],[[1785,2],[1848,2],[1850,2]]], [1851,[1759,5258.89,-7.62939e-006],[[1786,2],[1853,2]]], [1852,[2014.91,5345.32,0],[[1787,2],[1902,2]]], [1853,[1808.84,5291.31,0],[[1788,2],[1851,2]]], +[1854,[4434.32,5243.85,-1.52588e-005],[[1792,2],[1903,2]]], [1855,[4276.75,5276.91,0],[[1792,2],[1904,2]]], [1856,[4111.61,5320.33,7.62939e-006],[[1793,2],[1905,2],[1906,2],[1907,2]]], [1857,[4170.14,5261.36,0],[[1793,2],[1908,2],[1904,2]]], [1858,[4038.47,5429.96,-1.52588e-005],[[1795,2],[1907,2]]], [1859,[4603.89,5328.54,0],[[1796,2],[1903,2]]], +[1860,[5016.86,5373.49,0],[[1797,2],[1909,2]]], [1861,[4743.84,5565.25,0],[[1798,2]]], [1862,[4971.43,5804.27,-3.05176e-006],[[1799,2],[1862,2],[1910,2],[1911,2]]], [1863,[3865.99,5570.41,0],[[1801,2],[1912,2]]], [1864,[3714.38,5509.08,0],[[1802,2],[1875,2]]], [1865,[5866.08,7155.93,0],[[1803,2],[1913,2]]], +[1866,[5524.61,6786.77,0],[[1805,2],[1914,2],[1915,2]]], [1867,[5064.21,6457.95,1.01725e-005],[[1867,2],[1916,2]]], [1868,[5066.71,6485.88,0],[[1916,2],[1807,2]]], [1869,[3397.59,5403.79,1.52588e-005],[[1751,2],[1870,2]]], [1870,[3433.22,5312.02,-1.52588e-005],[[1869,2],[1917,2]]], [1871,[3239.57,5163.54,0],[[1811,2],[1918,2]]], +[1872,[3297.9,5131.88,-5.08626e-006],[[1811,2],[1872,2],[1919,2]]], [1873,[3456.86,5168.13,0],[[1811,2],[1920,2],[1917,2],[1921,2]]], [1874,[3094.78,5313.79,5.08626e-006],[[1812,2],[1813,2],[1882,2],[1922,2]]], [1875,[3666.47,5420.02,0],[[1814,2],[1864,2],[1923,2]]], [1876,[2297.38,4999.83,0],[[1815,2],[1816,2],[1924,2]]], [1877,[2347.7,4968.83,-1.01725e-005],[[1815,2],[1925,2],[1926,2]]], +[1878,[2175.74,5128.58,0],[[1816,2],[1927,2]]], [1879,[3100.1,4825.53,0],[[1817,2],[1928,2],[1929,2]]], [1880,[2851.83,4984.84,-5.08626e-006],[[1818,2],[1930,2],[1931,2]]], [1881,[2867.21,5452.05,0],[[1819,2],[1932,2]]], [1882,[2989.33,5300.92,0],[[1820,2],[1874,2]]], [1883,[3123.21,5117.07,-1.52588e-005],[[1821,2],[1918,2]]], +[1884,[4505.76,10151.9,0],[[1824,2],[1933,2]]], [1885,[4710.77,9908.52,0],[[1825,2],[1934,2]]], [1886,[4612.26,10041,0],[[1825,2],[1935,2],[1933,2]]], [1887,[5404.21,9500.66,0],[[1828,2],[1936,2]]], [1888,[5019.31,9808.54,1.52588e-005],[[1829,2],[1937,2]]], [1889,[5003.15,9937.66,0],[[1830,2],[1938,2],[1937,2]]], +[1890,[27.3625,9150.85,0],[[1832,2]]], [1891,[144.643,10068,-1.52588e-005],[[1837,2],[1939,2]]], [1892,[50.4589,9827.29,0],[[1838,2],[1940,2]]], [1893,[136.927,9715.18,5.08626e-006],[[1838,2],[1893,2],[1941,2]]], [1894,[503.558,4681.75,1.52588e-005],[[1839,2]]], [1895,[125.376,5156.31,0],[[1840,2],[1942,2]]], +[1896,[286.808,4934.86,0],[[1841,2],[1943,2]]], [1897,[781.74,5063.4,0],[[1842,2],[1944,2]]], [1898,[84.624,5294.03,1.52588e-005],[[1844,2],[1845,2],[1899,2]]], [1899,[62.4278,5291.16,0],[[1845,2],[1898,2],[1942,2]]], [1900,[11.41,5342.33,0],[[1845,2]]], [1901,[1170.7,4746.72,0],[[1849,2],[1945,2]]], +[1902,[2042.19,5227.66,0],[[1852,2],[1927,2]]], [1903,[4520.14,5267.58,0],[[1854,2],[1859,2],[1903,2]]], [1904,[4221.48,5259.3,0],[[1855,2],[1857,2],[1908,2]]], [1905,[3993.93,5225.89,0],[[1856,2],[1946,2]]], [1906,[4078.56,5132.21,0],[[1856,2],[1947,2]]], [1907,[4059.55,5379.25,-3.8147e-006],[[1856,2],[1858,2],[1948,2],[1907,2],[1949,2]]], +[1908,[4198.62,5250.87,0],[[1857,2],[1904,2],[1908,2]]], [1909,[5101.97,5236.35,0],[[1860,2],[1950,2]]], [1910,[5023.99,5828.62,0],[[1862,2],[1951,2]]], [1911,[4964.04,5910.45,0],[[1862,2],[1952,2]]], [1912,[3917.15,5520,0],[[1863,2],[1953,2]]], [1913,[5954.62,7145.65,0],[[1865,2],[1954,2],[1955,2],[1956,2]]], +[1914,[5659.75,6762.75,-7.62939e-006],[[1866,2],[1957,2]]], [1915,[5507.79,6652.92,0],[[1866,2],[1958,2]]], [1916,[5063.87,6474.19,-1.52588e-005],[[1867,2],[1868,2]]], [1917,[3515.93,5240.77,0],[[1870,2],[1873,2],[1920,2]]], [1918,[3169.68,5139,0],[[1871,2],[1883,2]]], [1919,[3308.88,5040.39,0],[[1872,2],[1919,2],[1961,2]]], +[1920,[3529.44,5193.73,0],[[1873,2],[1917,2],[1962,2]]], [1921,[3471.47,5073.7,1.52588e-005],[[1873,2],[1963,2]]], [1922,[3087.19,5325.7,0],[[1874,2],[1922,2]]], [1923,[3688.34,5302.79,-7.62939e-006],[[1875,2],[1964,2]]], [1924,[2101.53,5023.05,-9.15527e-006],[[1876,2],[1965,2],[1966,2],[1927,2],[1967,2]]], [1925,[2253.91,4865.21,0],[[1877,2],[1965,2]]], +[1926,[2498.23,4979.88,-1.52588e-005],[[1877,2],[1968,2]]], [1927,[2090.91,5112.93,0],[[1878,2],[1902,2],[1924,2]]], [1928,[3218.14,4748.05,0],[[1879,2],[1969,2]]], [1929,[3200.11,4848.39,0],[[1879,2],[1970,2]]], [1930,[2845.82,4919.45,-5.08626e-006],[[1880,2],[1971,2],[1972,2]]], [1931,[2725.88,4980.44,0],[[1880,2],[1973,2],[1968,2]]], +[1932,[2967.19,5466.29,0],[[1881,2],[1809,2]]], [1933,[4582.51,10142.3,-5.08626e-006],[[1884,2],[1886,2],[1974,2],[1975,2]]], [1934,[4769.79,9944.89,0],[[1885,2],[1976,2]]], [1935,[4605,10067,0],[[1886,2],[1977,2]]], [1936,[5445.66,9545.63,0],[[1887,2],[1978,2]]], [1937,[5031.46,9887.23,0],[[1888,2],[1889,2]]], +[1938,[5098.55,10012.6,-3.8147e-006],[[1889,2],[1979,2],[1980,2],[1981,2]]], [1939,[12.8001,10084,-1.52588e-005],[[1891,2],[1939,2]]], [1940,[30.4333,9819.37,0],[[1892,2]]], [1941,[51.4283,9681.57,0],[[1893,2]]], [1942,[79.5383,5153.21,1.90735e-006],[[1895,2],[1899,2],[1982,2],[1983,2]]], [1943,[232.921,4914.95,-1.52588e-005],[[1896,2],[1984,2],[1985,2]]], +[1944,[787.961,4943.62,0],[[1897,2],[1986,2]]], [1945,[1257.3,4640.26,0],[[1901,2],[1987,2]]], [1946,[3886.61,5127.11,0],[[1905,2],[1988,2]]], [1947,[4124.37,4969.02,-1.52588e-005],[[1906,2],[1989,2]]], [1948,[4077.7,5364.91,0],[[1907,2]]], [1949,[3945.04,5363.31,0],[[1907,2],[1990,2],[1953,2]]], +[1950,[5181.94,5098.7,1.01725e-005],[[1909,2],[1991,2],[1992,2]]], [1951,[5126.35,5924.07,-1.52588e-005],[[1910,2],[1993,2]]], [1952,[4930.31,5968.46,0],[[1911,2],[1994,2]]], [1953,[3926.89,5405.15,0],[[1912,2],[1949,2]]], [1954,[6014.83,6997.71,-7.62939e-006],[[1913,2],[1995,2]]], [1955,[6155.69,7248.19,0],[[1913,2],[1996,2]]], +[1956,[6025.26,7076.35,0],[[1913,2],[1997,2]]], [1957,[5803.85,6765.75,0],[[1914,2],[1998,2]]], [1958,[5561.59,6506.54,0],[[1915,2],[1999,2]]], [1959,[5023.99,6361.77,0],[[1867,2],[1960,2]]], [1960,[5022.64,6297.62,0],[[1959,2],[1960,2],[2000,2]]], [1961,[3324.88,4921.52,0],[[1919,2],[2001,2]]], +[1962,[3515.33,5041.52,0],[[1920,2],[2002,2]]], [1963,[3477.76,4978.82,0],[[1921,2],[2003,2]]], [1964,[3705.01,5174.45,0],[[1923,2],[2004,2]]], [1965,[2166.22,4883.2,0],[[1924,2],[1925,2]]], [1966,[1907.08,5003.86,1.52588e-005],[[1924,2],[2005,2]]], [1967,[2118.92,4871.8,0],[[1924,2],[2006,2]]], +[1968,[2583.49,4980.81,0],[[1926,2],[1931,2],[2007,2]]], [1969,[3266.95,4657.04,0],[[1928,2],[2008,2]]], [1970,[3271.87,4859.07,0],[[1929,2],[2001,2]]], [1971,[2927.11,4767.67,0],[[1930,2],[2009,2]]], [1972,[2704.24,4856.76,1.52588e-005],[[1930,2],[2010,2]]], [1973,[2628.64,4974.07,1.52588e-005],[[1931,2],[1695,2]]], +[1974,[4735.76,10166.9,0],[[1933,2],[2011,2]]], [1975,[4597.27,10092.8,0],[[1933,2]]], [1976,[4829.15,9964.33,0],[[1934,2],[2012,2],[2013,2],[1976,2]]], [1977,[4733.63,10097.5,0],[[1935,2],[2014,2]]], [1978,[5494.38,9610.51,0],[[1936,2],[2015,2]]], [1979,[5268.66,10073.5,0],[[1938,2],[2016,2]]], +[1980,[5113.48,10080.5,-5.08626e-006],[[1938,2],[2017,2],[1981,2]]], [1981,[5069.4,10068.3,0],[[1938,2],[1980,2],[2018,2],[2019,2]]], [1982,[70.3158,5074.56,-5.08626e-006],[[1942,2],[2020,2],[2021,2]]], [1983,[7.40356,5159.33,0],[[1942,2]]], [1984,[199.195,4968.67,0],[[1943,2],[2022,2],[1984,2],[2023,2],[2020,2]]], [1985,[215.424,4948.97,0],[[2022,2],[1943,2]]], +[1986,[743.315,4872.38,-1.52588e-005],[[1944,2],[2024,2]]], [1987,[1290.58,4618.84,0],[[1945,2],[2025,2],[2026,2]]], [1988,[3810.02,5019.34,0],[[1946,2],[2027,2]]], [1989,[4114.87,4809.95,-1.52588e-005],[[1947,2],[2028,2]]], [1990,[3890.69,5288.93,0],[[1949,2],[2029,2]]], [1991,[5225.05,5046.52,0],[[1950,2],[2030,2],[2031,2]]], +[1992,[5036.39,5051.08,0],[[1950,2],[2032,2]]], [1993,[5185.23,6000.58,0],[[1951,2],[2033,2]]], [1994,[4914.87,6028.11,0],[[1952,2],[2034,2]]], [1995,[6059.62,6909.88,0],[[1954,2],[2035,2]]], [1996,[6294.4,7240.33,-1.90735e-006],[[1955,2],[2036,2],[2037,2],[2038,2]]], [1997,[6071.42,7015.65,0],[[1956,2],[2039,2]]], +[1998,[5924.33,6775.3,0],[[1957,2],[2040,2]]], [1999,[5530.21,6386.91,0],[[1958,2],[2041,2]]], [2000,[4959.09,6254.75,0],[[1960,2],[2042,2]]], [2001,[3323.44,4889.42,5.08626e-006],[[1961,2],[1970,2],[2043,2]]], [2002,[3598.45,4964.84,1.52588e-005],[[1962,2],[2044,2]]], [2003,[3482.86,4898.17,0],[[1963,2],[2043,2]]], +[2004,[3754.66,5187,0],[[1964,2],[2045,2],[2004,2]]], [2005,[1759.88,4953.8,7.62939e-006],[[1966,2],[2046,2]]], [2006,[2256.88,4818.56,1.52588e-005],[[1967,2],[2047,2]]], [2007,[2609.9,4974.26,-1.52588e-005],[[1968,2]]], [2008,[3320.55,4567.82,0],[[1969,2],[2048,2]]], [2009,[3058.27,4673.11,0],[[1971,2],[2049,2]]], +[2010,[2543.34,4820.61,0],[[1972,2],[2047,2],[2050,2]]], [2011,[4844.97,10204.2,1.01725e-005],[[1974,2],[2051,2],[2052,2]]], [2012,[4897.88,9991.71,0],[[1976,2],[2019,2]]], [2013,[4817.63,9960.96,0],[[1976,2]]], [2014,[4769.79,10042.1,1.52588e-005],[[1977,2],[2053,2]]], [2015,[5536.62,9668.6,-1.01725e-005],[[1978,2],[2054,2],[2055,2]]], +[2016,[5397.59,10041.2,0],[[1979,2],[2056,2]]], [2017,[5222.5,10216.8,0],[[1980,2],[2017,2]]], [2018,[5025.82,10176.5,0],[[1981,2],[2057,2],[2052,2]]], [2019,[4978.23,10021.7,0],[[1981,2],[2012,2]]], [2020,[140.36,5051.34,0],[[1982,2],[1984,2],[2058,2]]], [2021,[6.88136,5045.46,0],[[1982,2]]], +[2022,[208.118,4967.32,-1.52588e-005],[[1984,2],[1985,2],[2022,2]]], [2023,[167.044,4993.85,1.52588e-005],[[1984,2],[2023,2]]], [2024,[706.598,4777.96,0],[[1986,2],[2059,2]]], [2025,[1397.04,4521.27,0],[[1987,2],[2060,2],[2061,2],[2062,2]]], [2026,[1343.81,4656.73,7.62939e-006],[[1987,2]]], [2027,[3716.18,4909.02,0],[[1988,2],[2063,2],[2044,2]]], +[2028,[4112.7,4768.45,0],[[1989,2],[2064,2],[2065,2]]], [2029,[3765.91,5251.27,0],[[1990,2],[2045,2]]], [2030,[5310.71,4900.74,0],[[1991,2],[2066,2]]], [2031,[5355.19,5103.71,0],[[1991,2],[2067,2]]], [2032,[4865.11,5016.33,0],[[1992,2],[2068,2]]], [2033,[5219.41,6060.65,-7.62939e-006],[[1993,2],[2069,2]]], +[2034,[4906.78,6082.37,0],[[1994,2],[2070,2]]], [2035,[6131.35,6820.59,0],[[1995,2],[2071,2]]], [2036,[6462.74,7195.7,0],[[1996,2],[2072,2]]], [2037,[6273.96,7148.72,0],[[1996,2],[2073,2]]], [2038,[6355.38,7334.62,0],[[1996,2],[2074,2]]], [2039,[6147.12,6991.06,0],[[1997,2],[2075,2]]], +[2040,[6031.5,6773.62,0],[[1998,2],[2076,2]]], [2041,[5473.23,6315.71,0],[[1999,2],[2077,2],[2078,2]]], [2042,[4940.95,6200.19,0],[[2000,2],[2070,2]]], [2043,[3412.86,4881.24,0],[[2001,2],[2003,2]]], [2044,[3648.56,4859.38,0],[[2002,2],[2027,2],[2063,2]]], [2045,[3749.98,5194.12,0],[[2004,2],[2029,2]]], +[2046,[1698.26,4837.95,-7.62939e-006],[[2005,2],[2079,2]]], [2047,[2388.8,4836.12,0],[[2006,2],[2010,2]]], [2048,[3415.64,4522.5,0],[[2008,2],[2080,2]]], [2049,[3116.56,4604.88,-5.08626e-006],[[2009,2],[2081,2],[2082,2]]], [2050,[2567.53,4805.26,0],[[2143,2],[2010,2]]], [2051,[4679.59,10175.1,0],[[2011,2],[2083,2]]], +[2052,[4998.11,10222.7,0],[[2011,2],[2018,2],[2057,2]]], [2053,[4717.52,10003.5,1.52588e-005],[[2014,2]]], [2054,[5609.44,9803.92,1.52588e-005],[[2015,2],[2084,2]]], [2055,[5456.16,9779.44,0],[[2015,2],[2056,2]]], [2056,[5467.96,9940.6,0],[[2016,2],[2055,2]]], [2057,[5020.41,10222.9,0],[[2018,2],[2052,2],[2057,2]]], +[2058,[160.794,4994.05,0],[[2020,2]]], [2059,[656.341,4703.56,0],[[2024,2],[2085,2]]], [2060,[1429.93,4505.3,0],[[2025,2]]], [2061,[1430.87,4603.96,0],[[2025,2]]], [2062,[1340.86,4372.05,0],[[2025,2],[2086,2]]], [2063,[3670.83,4817.13,7.62939e-006],[[2027,2],[2044,2],[2087,2],[2088,2]]], +[2064,[3977.44,4724.79,0],[[2028,2],[2089,2]]], [2065,[4256.95,4806.57,0],[[2028,2],[2090,2]]], [2066,[5392.98,4755.85,0],[[2030,2],[2091,2]]], [2067,[5505.49,5141.97,0],[[2031,2],[2092,2]]], [2068,[4719.82,4975.89,0],[[2032,2],[2093,2]]], [2069,[5301.67,6108.5,0],[[2033,2],[2077,2]]], +[2070,[4920.12,6149.83,0],[[2034,2],[2042,2]]], [2071,[6146.03,6804.36,1.90735e-006],[[2035,2],[2094,2],[2076,2],[2071,2],[2095,2]]], [2072,[6578.39,7126.9,0],[[2036,2],[2096,2]]], [2073,[6314.13,7055.09,0],[[2037,2],[2097,2]]], [2074,[6371.93,7419.84,7.62939e-006],[[2038,2],[2098,2]]], [2075,[6169.34,6988.93,0],[[2039,2],[2099,2],[2100,2],[2101,2]]], +[2076,[6137.55,6724.34,7.62939e-006],[[2040,2],[2071,2],[2102,2]]], [2077,[5376.97,6232.25,0],[[2041,2],[2069,2]]], [2078,[5469.58,6183.91,0],[[2041,2],[2103,2]]], [2079,[1693.39,4680.41,0],[[2046,2],[2104,2]]], [2080,[3442.6,4528.37,0],[[2048,2],[2105,2],[2106,2]]], [2081,[2968.48,4645.24,0],[[2049,2],[2107,2]]], +[2082,[3198.88,4414.03,0],[[2049,2],[2108,2]]], [2083,[4552.18,10173.2,-1.52588e-005],[[2051,2],[2109,2]]], [2084,[5674.14,9924.83,1.52588e-005],[[2054,2],[2110,2]]], [2085,[718.553,4629.51,0],[[2059,2],[2111,2]]], [2086,[1226.33,4313.97,0],[[2062,2],[2112,2]]], [2087,[3590.42,4689.28,0],[[2063,2],[2105,2]]], +[2088,[3724.24,4751.31,0],[[2063,2],[2113,2]]], [2089,[3839.29,4662.92,0],[[2064,2],[2114,2]]], [2090,[4392.46,4886.43,0],[[2065,2],[2093,2]]], [2091,[5470.19,4629.37,0],[[2066,2],[2115,2]]], [2092,[5595.39,5166.76,0],[[2067,2],[2116,2],[2117,2]]], [2093,[4572.09,4956.34,0],[[2068,2],[2090,2]]], +[2094,[6169.7,6728.66,7.62939e-006],[[2071,2],[2118,2]]], [2095,[6205.28,6879.84,7.62939e-006],[[2071,2],[2099,2]]], [2096,[6739.07,7108.39,1.90735e-006],[[2072,2],[2119,2],[2096,2],[2120,2]]], [2097,[6308.13,7028.37,0],[[2073,2]]], [2098,[6303.27,7513.19,0],[[2074,2],[2121,2]]], [2099,[6174.25,6908.17,0],[[2075,2],[2095,2]]], +[2100,[6252.34,6968.72,-0.169889],[[2075,2],[2122,2],[2100,2]]], [2101,[6111.45,7027.19,0],[[2075,2],[2123,2]]], [2102,[6168.23,6721.34,0],[[2076,2]]], [2103,[5450.59,6057.99,0],[[2078,2],[2124,2]]], [2104,[1663.61,4521.38,0],[[2079,2],[2104,2],[2125,2]]], [2105,[3510.4,4549.28,-1.01725e-005],[[2080,2],[2087,2],[2114,2]]], +[2106,[3448.66,4440.38,0],[[2080,2],[2126,2]]], [2107,[2835.14,4646.71,0],[[2081,2],[2127,2]]], [2108,[3284.31,4305.85,0],[[2082,2],[2128,2]]], [2109,[4529.59,10228.4,-1.52588e-005],[[2083,2]]], [2110,[5744.98,10017.3,1.52588e-005],[[2084,2],[2129,2]]], [2111,[691.594,4523.14,0],[[2085,2],[2130,2]]], +[2112,[1104.43,4275.29,0],[[2086,2],[2131,2]]], [2113,[3757.04,4678.25,0],[[2088,2],[2114,2]]], [2114,[3722.02,4564.66,0],[[2089,2],[2105,2],[2113,2],[2114,2]]], [2115,[5555.99,4495.53,0],[[2091,2],[2132,2]]], [2116,[5712.2,5051.97,0],[[2092,2],[2133,2]]], [2117,[5469.58,5201.23,-1.52588e-005],[[2092,2],[2134,2]]], +[2118,[6310.32,6653,0],[[2094,2],[2135,2]]], [2119,[6909.31,7134.59,7.62939e-006],[[2096,2],[2136,2]]], [2120,[6734.25,7253.71,0],[[2096,2],[2137,2]]], [2121,[6333.94,7637.76,0],[[2098,2],[2138,2]]], [2122,[6301.42,7005.11,0],[[2100,2]]], [2123,[6113.69,7096.61,0],[[2101,2]]], +[2124,[5404.45,5941.84,-7.62939e-006],[[2103,2],[2139,2]]], [2125,[1669.19,4478.91,0],[[2104,2],[2140,2],[2125,2],[2141,2]]], [2126,[3510.12,4349.85,0],[[2106,2],[2142,2]]], [2127,[2706.53,4644.93,0],[[2107,2],[2143,2]]], [2128,[3357.47,4195.62,0],[[2108,2],[2144,2]]], [2129,[5795.63,9901.7,0],[[2110,2],[2145,2]]], +[2130,[672.077,4416.29,0],[[2111,2],[2146,2]]], [2131,[1005.83,4228.19,0],[[2112,2],[2147,2],[2148,2]]], [2132,[5669.49,4400.33,0],[[2115,2],[2149,2]]], [2133,[5813.43,5007.19,0],[[2116,2],[2150,2]]], [2134,[5446.67,5349.44,1.52588e-005],[[2117,2],[2151,2]]], [2135,[6444.41,6628.11,7.62939e-006],[[2118,2],[2152,2]]], +[2136,[7036.32,7108.82,-7.62939e-006],[[2119,2],[2153,2]]], [2137,[6632.14,7326.98,0],[[2120,2],[2154,2]]], [2138,[6337.47,7786.48,0],[[2121,2],[2155,2]]], [2139,[5412.97,5796.34,0],[[2124,2],[2156,2]]], [2140,[1687.81,4252.67,0],[[2125,2],[2157,2],[2158,2]]], [2141,[1811.32,4496.54,0],[[2125,2],[2159,2]]], +[2142,[3506.67,4276.55,0],[[2126,2],[2160,2]]], [2143,[2573.92,4642.13,0],[[2127,2],[2161,2],[2162,2],[2050,2]]], [2144,[3456.26,4113.84,5.08626e-006],[[2128,2],[2163,2],[2164,2]]], [2145,[5819.82,9892.87,1.52588e-005],[[2129,2]]], [2146,[586.079,4401.16,0],[[2130,2],[2165,2]]], [2147,[808.485,4197.46,0],[[2131,2],[2166,2]]], +[2148,[1198.37,4143.04,1.52588e-005],[[2131,2],[2167,2]]], [2149,[5770.65,4280.72,0],[[2132,2],[2168,2]]], [2150,[5930.67,4964.85,-1.52588e-005],[[2133,2],[2169,2]]], [2151,[5507.85,5423.22,0],[[2134,2],[2170,2]]], [2152,[6589.03,6632.8,-7.62939e-006],[[2135,2],[2171,2]]], [2153,[7165.19,7006.4,0],[[2136,2],[2172,2]]], +[2154,[6601.27,7424.68,0],[[2137,2],[2173,2]]], [2155,[6336.92,7931.67,0],[[2138,2],[2174,2]]], [2156,[5475.56,5662.03,0],[[2139,2],[2170,2]]], [2157,[1740.49,4063.88,0],[[2140,2],[2175,2]]], [2158,[1532.93,4250.42,0],[[2140,2],[2176,2]]], [2159,[1944.74,4506.86,0],[[2141,2],[2177,2]]], +[2160,[3579.37,4217.04,1.52588e-005],[[2142,2],[2163,2]]], [2161,[2388.92,4577.63,0],[[2143,2],[2178,2]]], [2162,[2618.35,4482.33,0],[[2143,2],[2179,2]]], [2163,[3529.45,4177.47,-1.52588e-005],[[2144,2],[2160,2]]], [2164,[3500.11,3965.67,0],[[2144,2],[2180,2]]], [2165,[616.748,4309.57,0],[[2146,2],[2166,2],[2181,2]]], +[2166,[660.615,4216.94,0],[[2147,2],[2165,2]]], [2167,[1360.77,4195.1,0],[[2148,2],[2176,2]]], [2168,[5831.52,4190.95,0],[[2149,2],[2182,2]]], [2169,[5995.53,5066.89,0],[[2150,2],[2183,2]]], [2170,[5510.83,5577.37,0],[[2151,2],[2156,2]]], [2171,[6744.72,6693.65,0],[[2152,2],[2184,2]]], +[2172,[7190.06,6985.78,2.54313e-006],[[2153,2],[2185,2],[2186,2]]], [2173,[6624.33,7540.7,0],[[2154,2],[2187,2]]], [2174,[6334.75,8103.18,1.52588e-005],[[2155,2],[2188,2]]], [2175,[1728.09,3899.27,0],[[2157,2],[2189,2]]], [2176,[1416.53,4220.77,0],[[2158,2],[2167,2]]], [2177,[2106.01,4531.34,0],[[2159,2],[2178,2]]], +[2178,[2237.35,4548.7,1.52588e-005],[[2161,2],[2177,2]]], [2179,[2680.75,4364.9,0],[[2162,2],[2190,2]]], [2180,[3512.32,3919.28,0],[[2164,2],[2191,2],[2192,2]]], [2181,[557.73,4209.96,1.52588e-005],[[2165,2],[2193,2]]], [2182,[5934.19,4096.76,1.52588e-005],[[2168,2],[2194,2]]], [2183,[6004.21,5199.33,-1.52588e-005],[[2169,2],[2195,2]]], +[2184,[6872.13,6671.74,0],[[2171,2],[2196,2]]], [2185,[7326.36,6935.87,-1.52588e-006],[[2172,2],[2197,2],[2198,2],[2199,2],[2200,2]]], [2186,[7135.86,6871.8,0],[[2172,2],[2201,2]]], [2187,[6594.48,7660.79,0],[[2173,2],[2202,2]]], [2188,[6316.3,8211.74,0],[[2174,2],[2203,2]]], [2189,[1717.74,3730.51,0],[[2175,2],[2204,2]]], +[2190,[2660.6,4243.04,0],[[2179,2],[2205,2]]], [2191,[3511.03,3772.91,0],[[2180,2],[2206,2]]], [2192,[3705.48,3902.59,0],[[2180,2],[2207,2]]], [2193,[532.723,4137.26,0],[[2181,2],[2208,2]]], [2194,[6012.01,3993.54,1.52588e-005],[[2182,2],[2209,2]]], [2195,[5968.39,5309.78,-7.62939e-006],[[2183,2],[2210,2]]], +[2196,[6887.55,6667.84,0],[[2184,2],[2211,2],[2196,2],[2212,2]]], [2197,[7417.7,6870.99,1.90735e-006],[[2185,2],[2213,2],[2197,2],[2214,2]]], [2198,[7322.28,6770.37,0],[[2185,2],[2215,2]]], [2199,[7289.37,7090.26,0],[[2185,2],[2216,2]]], [2200,[7422.04,7069.32,7.62939e-006],[[2185,2],[2217,2]]], [2201,[7188.2,6732.62,-7.62939e-006],[[2186,2],[2218,2]]], +[2202,[6690.71,7779.88,0],[[2187,2],[2219,2]]], [2203,[6230.54,8289.63,1.52588e-005],[[2188,2],[2220,2]]], [2204,[1728.45,3649.03,0],[[2189,2],[2221,2],[2222,2]]], [2205,[2544.83,4170.84,-1.52588e-005],[[2190,2],[2223,2]]], [2206,[3501.68,3638.03,0],[[2191,2],[2224,2]]], [2207,[3844.22,3974.27,-1.52588e-005],[[2192,2],[2225,2]]], +[2208,[487.108,4106.19,5.08626e-006],[[2193,2],[2226,2],[2227,2]]], [2209,[6072.87,3874.43,0],[[2194,2],[2228,2]]], [2210,[6015.22,5360.21,0],[[2195,2],[2229,2],[2230,2]]], [2211,[7014.99,6661.49,7.62939e-006],[[2196,2],[2218,2]]], [2212,[6826.21,6599.68,0],[[2196,2],[2231,2]]], [2213,[7545.23,6771.75,0],[[2197,2],[2232,2]]], +[2214,[7497.36,6954.82,-7.62939e-006],[[2197,2],[2233,2]]], [2215,[7306.83,6636.43,2.54313e-006],[[2198,2],[2234,2],[2218,2]]], [2216,[7280.89,7211.71,0],[[2199,2],[2235,2]]], [2217,[7512.29,7174.9,-7.62939e-006],[[2200,2],[2236,2]]], [2218,[7204.49,6676.28,1.90735e-006],[[2201,2],[2211,2],[2215,2],[2237,2]]], [2219,[6735.23,7901.58,0],[[2202,2],[2238,2]]], +[2220,[6197.7,8380.54,0],[[2203,2],[2239,2]]], [2221,[1713.04,3496.35,0],[[2204,2],[2240,2],[2241,2]]], [2222,[1849,3670.71,0],[[2204,2],[2242,2]]], [2223,[2459.62,4064.05,0],[[2205,2],[2243,2]]], [2224,[3517.98,3490.69,0],[[2206,2],[2244,2]]], [2225,[4000.39,3971.66,0],[[2207,2],[2245,2]]], +[2226,[375.576,4019.04,0],[[2208,2],[2246,2]]], [2227,[523.941,3997.41,-1.52588e-005],[[2208,2],[2247,2]]], [2228,[6085.24,3838.31,-3.8147e-006],[[2209,2],[2248,2],[2249,2],[2250,2]]], [2229,[6085.2,5481.33,0],[[2210,2],[2251,2]]], [2230,[6055.93,5253.27,0],[[2210,2],[2252,2]]], [2231,[6762.51,6528.95,0],[[2212,2],[2253,2]]], +[2232,[7692.76,6696.27,0],[[2213,2],[2254,2]]], [2233,[7559.9,7067.72,0],[[2214,2],[2255,2]]], [2234,[7364.39,6496.33,-3.8147e-006],[[2215,2],[2256,2]]], [2235,[7248.33,7353.84,0],[[2216,2],[2257,2]]], [2236,[7504.06,7312.19,0],[[2217,2],[2258,2]]], [2237,[7208.23,6501.4,0],[[2218,2],[2259,2]]], +[2238,[6848.45,8010.98,0],[[2219,2],[2260,2]]], [2239,[6207.68,8444.94,0],[[2220,2],[2261,2],[2239,2],[2262,2]]], [2240,[1672.03,3334.49,0],[[2221,2],[2263,2],[2264,2]]], [2241,[1829.63,3374.42,0],[[2221,2],[2265,2]]], [2242,[1965.74,3740.29,0],[[2222,2],[2266,2]]], [2243,[2467.87,3946.13,0],[[2223,2],[2267,2]]], +[2244,[3547.65,3345.51,0],[[2224,2],[2268,2]]], [2245,[4124.06,3941.64,0],[[2225,2],[2269,2]]], [2246,[260.074,4066.69,0],[[2226,2],[2270,2]]], [2247,[609.328,4056.42,0],[[2227,2],[2271,2]]], [2248,[6229.19,3841.05,0],[[2228,2],[2272,2]]], [2249,[6152.91,3669.68,1.52588e-005],[[2228,2],[2273,2]]], +[2250,[6018.42,3691.29,0],[[2228,2],[2274,2]]], [2251,[6167.76,5556.86,0],[[2229,2],[2275,2]]], [2252,[6091.35,5157.24,0],[[2230,2],[2276,2]]], [2253,[6690.61,6467.35,0],[[2231,2],[2277,2]]], [2254,[7842.08,6701.74,0],[[2232,2],[2278,2]]], [2255,[7647.89,7138.75,7.62939e-006],[[2233,2],[2279,2]]], +[2256,[7501.17,6427.48,0],[[2234,2],[2280,2]]], [2257,[7260.88,7490.89,0],[[2235,2],[2281,2]]], [2258,[7553.87,7444.17,0],[[2236,2],[2282,2]]], [2259,[7126.01,6363.13,0],[[2237,2],[2283,2]]], [2260,[6890.86,8147.1,0],[[2238,2],[2284,2]]], [2261,[6300.83,8567.52,0],[[2239,2],[2285,2]]], +[2262,[6154.09,8454.44,1.52588e-005],[[2239,2]]], [2263,[1751.66,3144.62,0],[[2240,2],[2286,2]]], [2264,[1619.12,3242.77,1.52588e-005],[[2240,2],[2287,2]]], [2265,[1915.18,3261.84,0],[[2241,2],[2288,2]]], [2266,[2071.37,3836.52,0],[[2242,2],[2289,2]]], [2267,[2337.76,3843.53,-1.52588e-005],[[2243,2],[2289,2]]], +[2268,[3600.52,3212.71,0],[[2244,2],[2290,2]]], [2269,[4259.3,3873.71,1.52588e-005],[[2245,2],[2291,2]]], [2270,[174.495,4105.19,0],[[2246,2],[2292,2]]], [2271,[659.951,4012.65,0],[[2247,2],[2293,2]]], [2272,[6383.44,3796.56,0],[[2248,2],[2294,2]]], [2273,[6202.87,3536.22,0],[[2249,2],[2295,2]]], +[2274,[5899.7,3698.05,1.52588e-005],[[2250,2],[2296,2]]], [2275,[6276.37,5630.34,0],[[2251,2],[2297,2]]], [2276,[6125.02,5008.23,0],[[2252,2],[2298,2]]], [2277,[6670.7,6358.92,0],[[2253,2],[2299,2]]], [2278,[7985.78,6744.46,-7.62939e-006],[[2254,2],[2300,2]]], [2279,[7741.71,7234.16,7.62939e-006],[[2255,2],[2301,2]]], +[2280,[7608.37,6353.63,0],[[2256,2],[2302,2],[2303,2]]], [2281,[7243.24,7616.41,0],[[2257,2],[2304,2]]], [2282,[7584.96,7590.01,0],[[2258,2],[2305,2]]], [2283,[7098.33,6173.95,0],[[2259,2],[2306,2]]], [2284,[6881.47,8235.67,3.8147e-006],[[2260,2],[2307,2],[2308,2],[2309,2]]], [2285,[6373.02,8605.25,0],[[2261,2],[2310,2]]], +[2286,[1863.48,2979.5,0],[[2263,2],[2311,2]]], [2287,[1560.42,3212.43,0],[[2264,2],[2312,2]]], [2288,[1977.21,3126.92,0],[[2265,2],[2313,2]]], [2289,[2193.11,3811.69,0],[[2266,2],[2267,2]]], [2290,[3514.36,3121.74,-1.52588e-005],[[2268,2],[2314,2]]], [2291,[4383.3,3877.68,0],[[2269,2],[2315,2]]], +[2292,[90.4417,4112.81,0],[[2270,2],[2316,2]]], [2293,[654.919,3923.3,0],[[2271,2],[2317,2]]], [2294,[6521.93,3726.02,0],[[2272,2],[2318,2]]], [2295,[6243.39,3397.16,0],[[2273,2],[2319,2]]], [2296,[5770.45,3758.62,0],[[2274,2],[2320,2]]], [2297,[6335.8,5731.64,0],[[2275,2],[2321,2]]], +[2298,[6123.26,4863.61,0],[[2276,2],[2322,2]]], [2299,[6629.04,6278.02,7.62939e-006],[[2277,2],[2323,2]]], [2300,[8116.18,6683.29,0],[[2278,2],[2324,2]]], [2301,[7811.15,7271.79,0],[[2279,2],[2325,2]]], [2302,[7732.8,6250.65,0],[[2280,2],[2326,2]]], [2303,[7543.31,6278.19,-7.62939e-006],[[2280,2],[2327,2]]], +[2304,[7156.4,7698.16,0],[[2281,2],[2328,2]]], [2305,[7680.04,7702.19,0],[[2282,2],[2329,2]]], [2306,[7098.36,5996.74,7.62939e-006],[[2283,2],[2330,2]]], [2307,[6877.78,8377.11,0],[[2284,2],[2331,2]]], [2308,[6842.26,8313.94,0],[[2284,2],[2332,2]]], [2309,[6996.39,8273.82,7.62939e-006],[[2284,2],[2333,2]]], +[2310,[6431.34,8666.67,5.08626e-006],[[2285,2],[2334,2],[2335,2]]], [2311,[1911.28,2801.67,0],[[2286,2],[2336,2]]], [2312,[1486.31,3245.82,0],[[2287,2],[2337,2]]], [2313,[2089.42,3069.9,0],[[2288,2],[2338,2]]], [2314,[3493.15,3106.71,-5.08626e-006],[[2290,2],[2339,2],[2340,2],[2341,2]]], [2315,[4461.87,3751.4,0],[[2291,2],[2342,2]]], +[2316,[9.46208,4035.65,0],[[2292,2],[2316,2]]], [2317,[633.42,3814.43,1.52588e-005],[[2293,2],[2343,2]]], [2318,[6628.71,3724.42,0],[[2294,2],[2344,2],[2318,2],[2345,2]]], [2319,[6303.25,3249.04,-1.52588e-005],[[2295,2],[2346,2]]], [2320,[5618.12,3699.43,1.52588e-005],[[2296,2],[2347,2]]], [2321,[6380.35,5843.08,0],[[2297,2],[2348,2]]], +[2322,[6096.1,4704.56,0],[[2298,2],[2349,2]]], [2323,[6606.73,6251.91,2.54313e-006],[[2299,2],[2350,2],[2351,2]]], [2324,[8230.32,6602.73,0],[[2300,2],[2352,2]]], [2325,[7930.41,7279.74,-7.62939e-006],[[2301,2],[2353,2]]], [2326,[7868.88,6195.38,0],[[2302,2],[2354,2]]], [2327,[7507.18,6221.39,0],[[2303,2],[2355,2]]], +[2328,[7160.01,7722.22,0],[[2304,2],[2356,2],[2357,2]]], [2329,[7725.85,7774.26,0],[[2305,2],[2358,2],[2359,2],[2360,2]]], [2330,[7102.49,5835.89,0],[[2306,2],[2361,2]]], [2331,[6763.41,8441.98,-5.08626e-006],[[2307,2],[2362,2],[2332,2]]], [2332,[6791.79,8381.78,0],[[2308,2],[2331,2]]], [2333,[7091.71,8194.44,0],[[2309,2],[2363,2]]], +[2334,[6569.01,8621.6,0],[[2310,2],[2362,2]]], [2335,[6384.96,8768.83,3.8147e-006],[[2310,2],[2364,2],[2365,2],[2335,2],[2366,2]]], [2336,[1832.28,2675.6,-1.01725e-005],[[2311,2],[2367,2],[2368,2]]], [2337,[1406.41,3234.08,-1.52588e-005],[[2312,2],[2369,2]]], [2338,[2198.87,2998.55,0],[[2313,2],[2370,2]]], [2339,[3390.13,2962.71,0],[[2314,2],[2371,2],[2372,2]]], +[2340,[3560.73,2985.22,0],[[2314,2],[2373,2]]], [2341,[3434.71,3002.15,-1.52588e-005],[[2372,2],[2314,2]]], [2342,[4499.05,3638.47,-1.52588e-005],[[2315,2],[2374,2]]], [2343,[582.187,3717.15,0],[[2317,2],[2375,2]]], [2344,[6750.71,3833.25,0],[[2318,2],[2376,2]]], [2345,[6747.85,3613.89,1.52588e-005],[[2318,2],[2377,2]]], +[2346,[6345.7,3137.26,0],[[2319,2],[2378,2],[2379,2]]], [2347,[5474.65,3683.93,1.52588e-005],[[2320,2],[2380,2]]], [2348,[6403.06,5939.57,0],[[2321,2],[2381,2]]], [2349,[6195.28,4651.36,0],[[2322,2],[2382,2]]], [2350,[6653.96,6165.04,0],[[2323,2],[2383,2]]], [2351,[6573.37,6196.3,0],[[2323,2],[2384,2]]], +[2352,[8348.63,6633.5,0],[[2324,2],[2385,2]]], [2353,[8036.42,7296.71,0],[[2325,2],[2386,2]]], [2354,[8027.43,6195.14,0],[[2326,2],[2387,2]]], [2355,[7462.54,6153.13,0],[[2327,2],[2388,2]]], [2356,[7255.15,7862.67,0],[[2328,2],[2389,2]]], [2357,[7114.78,7860.98,7.62939e-006],[[2328,2],[2390,2]]], +[2358,[7824.64,7846.27,0],[[2329,2],[2391,2],[2360,2]]], [2359,[7829.17,7629.58,-7.62939e-006],[[2329,2],[2392,2]]], [2360,[7656.94,7899.51,0],[[2329,2],[2358,2],[2393,2],[2394,2]]], [2361,[7140.94,5755.67,0],[[2330,2],[2395,2],[2396,2]]], [2362,[6639.82,8550.78,-1.52588e-005],[[2331,2],[2334,2]]], [2363,[7085.27,8057.39,0],[[2333,2],[2390,2]]], +[2364,[6412.78,8842.71,0],[[2335,2],[2397,2],[2398,2]]], [2365,[6377.26,8762.35,0],[[2335,2]]], [2366,[6283.35,8810.4,0],[[2335,2],[2399,2]]], [2367,[1705.97,2575.47,0],[[2336,2],[2400,2]]], [2368,[1869.34,2557.12,0],[[2336,2],[2401,2]]], [2369,[1305.54,3202.26,0],[[2337,2],[2402,2]]], +[2370,[2293.65,2945.12,0],[[2338,2],[2403,2],[2404,2]]], [2371,[3282.96,2982.2,0],[[2339,2],[2405,2]]], [2372,[3489.15,2929.48,0],[[2373,2],[2441,2],[2341,2],[2339,2]]], [2373,[3576.92,2962.02,3.8147e-006],[[2340,2],[2406,2],[2372,2],[2407,2]]], [2374,[4515.24,3508.25,0],[[2342,2],[2408,2]]], [2375,[444.194,3639.69,1.52588e-005],[[2343,2],[2409,2]]], +[2376,[6762.71,3955.56,0],[[2344,2],[2410,2]]], [2377,[6872.16,3533.54,0],[[2345,2],[2411,2]]], [2378,[6465.11,2965.39,0],[[2346,2],[2412,2]]], [2379,[6467.38,3143.9,1.52588e-005],[[2346,2],[2413,2]]], [2380,[5362.57,3595.8,0],[[2347,2],[2414,2]]], [2381,[6419.72,6031.54,-2.54313e-006],[[2348,2],[2415,2],[2381,2]]], +[2382,[6329.07,4593.39,1.52588e-005],[[2349,2],[2416,2]]], [2383,[6691.06,6103.02,0],[[2350,2],[2417,2]]], [2384,[6545.19,6134.66,0],[[2351,2],[2418,2],[2415,2]]], [2385,[8426.01,6724.67,0],[[2352,2],[2419,2]]], [2386,[7991.36,7440.35,0],[[2353,2],[2392,2]]], [2387,[8153.37,6175.43,0],[[2354,2],[2420,2]]], +[2388,[7431.11,6094.43,-7.62939e-006],[[2355,2],[2421,2]]], [2389,[7357.27,7967.09,1.90735e-006],[[2356,2],[2422,2],[2389,2],[2394,2]]], [2390,[7087.86,8008,7.62939e-006],[[2357,2],[2363,2]]], [2391,[7960.73,7895.41,0],[[2358,2],[2423,2]]], [2392,[7908.15,7523.57,7.62939e-006],[[2359,2],[2386,2]]], [2393,[7675.94,8054.72,-7.62939e-006],[[2360,2],[2424,2]]], +[2394,[7508.04,7941.19,0],[[2360,2],[2389,2]]], [2395,[7133.67,5690.41,-5.08626e-006],[[2361,2],[2425,2],[2426,2]]], [2396,[7252.56,5791.69,0],[[2361,2],[2427,2]]], [2397,[6463.42,8963.37,-1.52588e-005],[[2364,2],[2428,2]]], [2398,[6339.33,8956.34,0],[[2364,2],[2429,2]]], [2399,[6171.38,8767.38,0],[[2366,2],[2430,2]]], +[2400,[1700.34,2490.54,3.8147e-006],[[2367,2],[2431,2],[2400,2],[2432,2]]], [2401,[1921.03,2405.71,0],[[2368,2],[2433,2]]], [2402,[1190.12,3214.3,0],[[2369,2],[2434,2]]], [2403,[2456.87,2904.13,1.52588e-005],[[2370,2],[2435,2],[2404,2]]], [2404,[2404.46,2802.44,0],[[2841,2],[2901,2],[2403,2],[2370,2]]], [2405,[3194.22,2998.84,1.52588e-005],[[2371,2],[2436,2]]], +[2406,[3655,2888.31,0],[[2373,2],[2437,2],[2438,2],[2439,2],[2440,2]]], [2407,[3506.1,2891.24,0],[[2373,2],[2442,2],[2437,2]]], [2408,[4594.43,3391.41,-1.52588e-005],[[2374,2],[2443,2]]], [2409,[317.79,3562.23,-1.52588e-005],[[2375,2],[2444,2]]], [2410,[6710.83,4004.5,0],[[2376,2],[2445,2],[2446,2]]], [2411,[6967.94,3490.5,0],[[2377,2],[2447,2],[2448,2],[2411,2]]], +[2412,[6537.18,2849.13,3.8147e-006],[[2378,2],[2449,2],[2412,2],[2450,2]]], [2413,[6588.61,3139.22,0],[[2379,2],[2451,2]]], [2414,[5305.23,3553.47,0],[[2380,2],[2452,2],[2453,2]]], [2415,[6473.24,6098.69,7.62939e-006],[[2381,2],[2384,2],[2418,2]]], [2416,[6355.71,4592.25,5.08626e-006],[[2382,2],[2454,2],[2455,2]]], [2417,[6712.98,6049.43,0],[[2383,2],[2456,2]]], +[2418,[6511.55,6103.96,0],[[2415,2],[2457,2]]], [2419,[8445.98,6802.03,0],[[2385,2],[2419,2]]], [2420,[8289.98,6152.52,3.8147e-006],[[2387,2],[2458,2]]], [2421,[7394.11,6014.88,7.62939e-006],[[2388,2],[2459,2]]], [2422,[7342.08,8131.93,0],[[2389,2],[2460,2]]], [2423,[8110.79,7914.28,7.62939e-006],[[2391,2],[2461,2]]], +[2424,[7770.25,8071.08,0],[[2393,2],[2462,2]]], [2425,[7178.8,5511.71,-7.62939e-006],[[2395,2],[2463,2]]], [2426,[7033.29,5660.05,0],[[2395,2],[2464,2]]], [2427,[7325.68,5812.01,0],[[2396,2],[2465,2]]], [2428,[6484.2,9035.46,0],[[2397,2],[2466,2]]], [2429,[6277.31,9052.28,0],[[2398,2],[2467,2]]], +[2430,[6164.18,8644.83,1.52588e-005],[[2399,2],[2468,2]]], [2431,[1760.05,2331.42,0],[[2400,2],[2469,2]]], [2432,[1557.44,2405.22,0],[[2400,2],[2470,2]]], [2433,[1958.09,2273.97,0],[[2401,2],[2471,2]]], [2434,[1073.16,3175.88,0],[[2402,2],[2472,2]]], [2435,[2571.41,2906.7,0],[[2403,2],[2473,2]]], +[2436,[3074.64,2975.95,-1.52588e-005],[[2405,2],[2474,2]]], [2437,[3591.68,2861.41,0],[[2406,2],[2407,2],[2442,2],[2437,2],[2440,2]]], [2438,[3703.81,2797.5,-5.08626e-006],[[2406,2],[2475,2],[2476,2]]], [2439,[3592.89,2827.09,0],[[2406,2],[2477,2]]], [2440,[3590.04,2920.32,0],[[2437,2],[2406,2]]], [2441,[3490.21,2846.72,0],[[2372,2],[2478,2],[2477,2]]], +[2442,[3550.1,2836.08,0],[[2407,2],[2437,2]]], [2443,[4645.54,3283.03,0],[[2408,2],[2479,2]]], [2444,[269.302,3413.57,1.52588e-005],[[2409,2],[2480,2]]], [2445,[6708.87,4054.41,0],[[2410,2],[2481,2],[2482,2]]], [2446,[6575.15,3950.2,0],[[2410,2],[2483,2]]], [2447,[7100.52,3396.4,0],[[2411,2],[2484,2]]], +[2448,[6969.22,3454.96,0],[[2411,2],[2485,2],[2448,2]]], [2449,[6584.23,2797.14,3.8147e-006],[[2412,2],[2486,2],[2487,2],[2488,2]]], [2450,[6491.83,2781.68,0],[[2412,2],[2489,2]]], [2451,[6682.86,3131.19,0],[[2413,2],[2490,2]]], [2452,[5237.69,3522.05,-5.08626e-006],[[2414,2],[2491,2],[2492,2]]], [2453,[5244.14,3676.55,-1.52588e-005],[[2414,2],[2493,2],[2491,2]]], +[2454,[6308.75,4744.12,0],[[2416,2],[2494,2]]], [2455,[6383.03,4435.15,0],[[2416,2],[2495,2]]], [2456,[6712.92,6037.57,0],[[2417,2],[2456,2],[2496,2]]], [2457,[6540.48,5979.18,0],[[2418,2],[2497,2]]], [2458,[8418.27,6092.93,3.8147e-006],[[2420,2],[2498,2]]], [2459,[7428.15,5926.13,0],[[2421,2],[2465,2]]], +[2460,[7255.68,8268.69,0],[[2422,2],[2499,2]]], [2461,[8251.1,8012.64,0],[[2423,2],[2500,2]]], [2462,[7899.2,8078.29,7.62939e-006],[[2424,2],[2501,2]]], [2463,[7340.44,5514.64,7.62939e-006],[[2425,2],[2502,2]]], [2464,[6925.2,5617.29,0],[[2426,2],[2503,2],[2504,2]]], [2465,[7365.45,5877.15,0],[[2427,2],[2459,2]]], +[2466,[6444.77,9101.61,0],[[2428,2],[2505,2]]], [2467,[6224.31,9120.66,0],[[2429,2],[2506,2]]], [2468,[6127.16,8567.08,0],[[2430,2]]], [2469,[1790.75,2187.59,0],[[2431,2],[2507,2]]], [2470,[1404.75,2324.52,-1.52588e-005],[[2432,2],[2508,2]]], [2471,[1985.91,2223.3,-1.01725e-005],[[2433,2],[2509,2],[2510,2]]], +[2472,[956.976,3168.56,0],[[2434,2],[2511,2]]], [2473,[2681.56,3017.21,0],[[2435,2],[2512,2]]], [2474,[2983.77,2906.16,0],[[2436,2],[2513,2]]], [2475,[3630.08,2649.57,0],[[2438,2],[2514,2]]], [2476,[3863.5,2756.47,0],[[2438,2],[2515,2]]], [2477,[3543.83,2801.3,-5.08626e-006],[[2439,2],[2441,2],[2478,2],[2516,2]]], +[2478,[3511.21,2833.34,0],[[2441,2],[2477,2],[2516,2]]], [2479,[4763.24,3249.22,0],[[2443,2],[2517,2]]], [2480,[343.711,3319.79,0],[[2444,2],[2518,2]]], [2481,[6831.22,4157.15,0],[[2445,2],[2519,2]]], [2482,[6582.21,4090.68,0],[[2445,2],[2520,2]]], [2483,[6460.79,3998.65,0],[[2446,2],[2521,2]]], +[2484,[7137.14,3340.07,1.01725e-005],[[2447,2],[2522,2],[2523,2]]], [2485,[6873.41,3455.32,0],[[2448,2],[2524,2]]], [2486,[6654.21,2601.77,0],[[2449,2],[2525,2]]], [2487,[6722.47,2901.79,0],[[2449,2],[2526,2]]], [2488,[6526.41,2648.38,0],[[2449,2],[2527,2]]], [2489,[6439.55,2717.69,0],[[2450,2],[2528,2]]], +[2490,[6713.88,3139.19,-3.8147e-006],[[2451,2],[2490,2],[2529,2],[2530,2]]], [2491,[5192.65,3627.36,0],[[2452,2],[2453,2],[2493,2]]], [2492,[5153.97,3459.31,0],[[2452,2],[2531,2],[2532,2]]], [2493,[5178.16,3661.25,0],[[2453,2],[2491,2],[2533,2],[2532,2]]], [2494,[6279.77,4869.92,1.52588e-005],[[2454,2],[2534,2]]], [2495,[6360.27,4301.79,0],[[2455,2],[2535,2]]], +[2496,[6727.78,5987.23,0],[[2456,2],[2536,2]]], [2497,[6571.35,5849.26,0],[[2457,2],[2537,2]]], [2498,[8538,6035.18,0],[[2458,2],[2538,2]]], [2499,[7150.54,8373.68,0],[[2460,2],[2539,2]]], [2500,[8383.47,8021.83,-7.62939e-006],[[2461,2],[2540,2]]], [2501,[8046.88,8158.47,7.62939e-006],[[2462,2],[2541,2]]], +[2502,[7384,5361.86,0],[[2463,2],[2542,2]]], [2503,[6869.86,5580.73,0],[[2464,2],[2543,2],[2544,2]]], [2504,[6901.65,5719.11,0],[[2464,2],[2545,2]]], [2505,[6418.05,9188.96,0],[[2466,2],[2546,2]]], [2506,[6198.87,9238.33,0],[[2467,2],[2547,2]]], [2507,[1787.54,2032.76,1.52588e-005],[[2469,2],[2548,2]]], +[2508,[1256.77,2270.72,0],[[2470,2],[2549,2]]], [2509,[2094.4,2080.01,0],[[2471,2],[2550,2]]], [2510,[2127.82,2218.09,1.52588e-005],[[2471,2],[2551,2]]], [2511,[844.142,3208.81,0],[[2472,2],[2552,2]]], [2512,[2767.99,2984.11,-1.52588e-005],[[2473,2],[2553,2]]], [2513,[2898.98,2902.88,-1.52588e-005],[[2474,2],[2553,2]]], +[2514,[3607.17,2468.56,0],[[2475,2],[2554,2]]], [2515,[4002.85,2703.83,0],[[2476,2],[2555,2]]], [2516,[3504.91,2834.91,-5.08626e-006],[[2477,2],[2478,2]]], [2517,[4891.06,3295.23,0],[[2479,2],[2531,2]]], [2518,[363.991,3199.95,0],[[2480,2],[2556,2]]], [2519,[6845.86,4342.77,0],[[2481,2],[2557,2]]], +[2520,[6464.84,4170.06,0],[[2482,2],[2558,2]]], [2521,[6414.06,4105.65,0],[[2483,2],[2559,2]]], [2522,[7016.18,3231.04,0],[[2484,2],[2560,2]]], [2523,[7144.89,3398.77,0],[[2484,2],[2561,2],[2562,2]]], [2524,[6827,3407.35,0],[[2485,2],[2563,2]]], [2525,[6719.54,2492.3,0],[[2486,2],[2564,2],[2565,2]]], +[2526,[6780.32,3024.16,0],[[2487,2],[2566,2],[2560,2]]], [2527,[6467.96,2501.41,0],[[2488,2],[2567,2]]], [2528,[6420.26,2649.58,0],[[2489,2],[2568,2]]], [2529,[6787.86,3131.72,0],[[2490,2],[2566,2]]], [2530,[6768.36,3212.25,0],[[2490,2],[2569,2]]], [2531,[5025.68,3341.22,0],[[2492,2],[2517,2]]], +[2532,[5079.02,3567.77,1.52588e-005],[[2492,2],[2493,2],[2570,2]]], [2533,[5074.64,3622.92,1.52588e-005],[[2493,2],[2533,2]]], [2534,[6394.58,4933.05,0],[[2494,2],[2571,2]]], [2535,[6308.13,4388.7,0],[[2495,2],[2572,2]]], [2536,[6727.4,5924.27,-7.62939e-006],[[2496,2],[2573,2]]], [2537,[6605.62,5696.6,0],[[2497,2],[2574,2]]], +[2538,[8628.42,5948.89,0],[[2498,2],[2575,2],[2538,2],[2576,2]]], [2539,[7060.63,8478.59,0],[[2499,2],[2577,2]]], [2540,[8470.53,8031.2,0],[[2500,2],[2578,2],[2579,2]]], [2541,[8189.75,8247.93,0],[[2501,2],[2580,2]]], [2542,[7391.07,5298.37,-1.90735e-006],[[2502,2],[2581,2],[2582,2],[2542,2],[2583,2]]], [2543,[6722.03,5526.61,0],[[2503,2],[2584,2],[2574,2]]], +[2544,[6932.7,5484.03,0],[[2503,2],[2585,2]]], [2545,[6837.58,5824.97,0],[[2504,2],[2573,2]]], [2546,[6416.36,9291.58,0],[[2505,2],[2586,2]]], [2547,[6227.9,9361.42,0],[[2506,2],[2587,2]]], [2548,[1805.42,1840.41,0],[[2507,2],[2588,2]]], [2549,[1155.53,2200.61,0],[[2508,2],[2589,2]]], +[2550,[2060.09,1959.25,0],[[2509,2],[2590,2]]], [2551,[2291.94,2259.75,-1.52588e-005],[[2510,2],[2591,2]]], [2552,[720.329,3224.21,0],[[2511,2],[2592,2]]], [2553,[2847.22,2927,0],[[2512,2],[2513,2]]], [2554,[3671.33,2337.64,0],[[2514,2],[2593,2]]], [2555,[4122.91,2631.9,0],[[2515,2],[2594,2]]], +[2556,[447.701,3132.4,0],[[2518,2],[2595,2]]], [2557,[6867.2,4401.02,5.08626e-006],[[2519,2],[2596,2],[2597,2]]], [2558,[6454.32,4286.08,0],[[2520,2],[2598,2]]], [2559,[6348.84,4213.5,1.52588e-005],[[2521,2],[2572,2]]], [2560,[6864.26,3173.37,-1.52588e-005],[[2522,2],[2526,2],[2599,2]]], [2561,[7277.54,3338.37,3.05176e-005],[[2523,2],[2600,2]]], +[2562,[7139.9,3509.83,0],[[2523,2],[2601,2]]], [2563,[6805.66,3335.28,0],[[2524,2],[2569,2]]], [2564,[6814.84,2370.01,0],[[2525,2],[2602,2]]], [2565,[6594.83,2447.34,0],[[2525,2],[2603,2]]], [2566,[6830.23,3121.39,0],[[2526,2],[2529,2]]], [2567,[6365.12,2413.19,4.35965e-006],[[2527,2],[2603,2],[2604,2],[2567,2],[2605,2],[2606,2],[2607,2]]], +[2568,[6382.11,2571.25,5.08626e-006],[[2528,2],[2608,2],[2606,2]]], [2569,[6791.39,3274.97,0],[[2530,2],[2563,2]]], [2570,[5072.93,3608.23,-1.52588e-005],[[2532,2]]], [2571,[6466.86,4992.51,0],[[2534,2],[2609,2]]], [2572,[6285.55,4337.57,0],[[2535,2],[2559,2]]], [2573,[6769.37,5869.19,7.62939e-006],[[2536,2],[2545,2]]], +[2574,[6599.9,5547.03,0],[[2537,2],[2543,2],[2584,2]]], [2575,[8754.18,5854.14,0],[[2538,2],[2610,2]]], [2576,[8584.85,5932.4,0],[[2538,2],[2611,2],[2612,2],[2576,2]]], [2577,[7092.96,8613.75,0],[[2539,2],[2613,2]]], [2578,[8400.68,8204.92,0],[[2540,2],[2614,2]]], [2579,[8474.41,7867.59,0],[[2540,2],[2615,2]]], +[2580,[8260.19,8390.38,0],[[2541,2],[2616,2]]], [2581,[7343.71,5161.89,2.54313e-006],[[2542,2],[2617,2],[2618,2]]], [2582,[7397,5310.89,0],[[2542,2]]], [2583,[7512.81,5324.34,0],[[2542,2],[2619,2]]], [2584,[6615.3,5504.67,1.90735e-006],[[2543,2],[2574,2],[2620,2],[2621,2]]], [2585,[6996.81,5369.56,0],[[2544,2],[2622,2]]], +[2586,[6376.07,9394.62,-1.52588e-005],[[2546,2],[2623,2]]], [2587,[6197.81,9524.55,1.52588e-005],[[2547,2],[2624,2]]], [2588,[1892,1710.95,0],[[2548,2],[2625,2]]], [2589,[1084.3,2053.32,0],[[2549,2],[2626,2]]], [2590,[2093.9,1812.07,0],[[2550,2],[2627,2]]], [2591,[2476.88,2270.53,0],[[2551,2],[2628,2]]], +[2592,[619.392,3177.07,0],[[2552,2],[2595,2]]], [2593,[3652.64,2223.25,1.52588e-005],[[2554,2],[2629,2]]], [2594,[4220.14,2515.38,0],[[2555,2],[2630,2]]], [2595,[558.401,3123.25,-1.52588e-005],[[2556,2],[2592,2]]], [2596,[6809.36,4590.46,0],[[2557,2],[2631,2]]], [2597,[6978.04,4349.6,0],[[2557,2],[2632,2]]], +[2598,[6485.19,4390.56,0],[[2558,2],[2633,2]]], [2599,[6833.68,3133.44,0],[[2560,2]]], [2600,[7399.33,3278.66,1.52588e-005],[[2561,2],[2634,2]]], [2601,[7110.22,3557.94,0],[[2562,2]]], [2602,[6909.39,2332.86,1.52588e-005],[[2564,2],[2635,2]]], [2603,[6455.58,2381.91,0],[[2565,2],[2567,2],[2605,2],[2636,2]]], +[2604,[6366.94,2441.47,5.08626e-006],[[2567,2]]], [2605,[6375.4,2330.61,-5.08626e-006],[[2567,2],[2603,2],[2637,2],[2638,2],[2605,2],[2639,2]]], [2606,[6367.6,2499.35,0],[[2567,2],[2568,2]]], [2607,[6273.46,2411.16,0],[[2567,2],[2640,2]]], [2608,[6203.74,2505.8,0],[[2568,2],[2641,2]]], [2609,[6438.29,5156.8,1.52588e-005],[[2571,2],[2642,2]]], +[2610,[8886.5,5841.72,0],[[2575,2],[2643,2]]], [2611,[8509.99,5832.64,3.8147e-006],[[2576,2],[2644,2]]], [2612,[8600.47,5938.66,0],[[2576,2]]], [2613,[7106.73,8680.05,0],[[2577,2],[2645,2],[2646,2]]], [2614,[8367.26,8343.36,0],[[2578,2],[2616,2]]], [2615,[8474.54,7704.78,-7.62939e-006],[[2579,2],[2647,2]]], +[2616,[8293.95,8494.28,0],[[2580,2],[2614,2],[2648,2]]], [2617,[7290.03,5130.85,5.08626e-006],[[2581,2],[2649,2],[2650,2]]], [2618,[7446.78,5167.41,0],[[2581,2],[2651,2]]], [2619,[7567.81,5319.18,3.8147e-006],[[2583,2],[2652,2],[2651,2],[2653,2]]], [2620,[6473.77,5451.28,1.52588e-005],[[2584,2],[2654,2]]], [2621,[6683.06,5387.24,-7.62939e-006],[[2584,2],[2655,2]]], +[2622,[7048.93,5223.18,1.52588e-005],[[2585,2],[2656,2]]], [2623,[6432.89,9451.44,0],[[2586,2],[2657,2]]], [2624,[6183.99,9711.22,1.52588e-005],[[2587,2],[2658,2]]], [2625,[1974.47,1586.12,-1.52588e-005],[[2588,2],[2659,2]]], [2626,[1073.15,1913.52,-1.52588e-005],[[2589,2],[2660,2]]], [2627,[2157.62,1662.42,1.52588e-005],[[2590,2],[2661,2]]], +[2628,[2601.91,2242.79,0],[[2591,2],[2662,2]]], [2629,[3604.61,2111.71,-1.52588e-005],[[2593,2],[2663,2]]], [2630,[4378.12,2531.41,0],[[2594,2],[2664,2]]], [2631,[6905.15,4705.28,0],[[2596,2],[2665,2]]], [2632,[7015.17,4337.68,0],[[2597,2],[2666,2],[2667,2],[2668,2]]], [2633,[6551.34,4556.11,0],[[2598,2],[2669,2]]], +[2634,[7525.45,3200.54,0],[[2600,2],[2670,2]]], [2635,[6961.96,2275.23,0],[[2602,2],[2671,2]]], [2636,[6489.47,2278.57,-5.08626e-006],[[2603,2],[2672,2],[2636,2]]], [2637,[6310.67,2166.79,0],[[2605,2],[2673,2]]], [2638,[6373.16,2290.61,0],[[2605,2],[2674,2]]], [2639,[6379.78,2299.63,-1.52588e-005],[[2605,2]]], +[2640,[6210.26,2383.46,0],[[2607,2],[2675,2]]], [2641,[6042.84,2462.36,5.08626e-006],[[2608,2],[2676,2],[2677,2]]], [2642,[6385.83,5232.54,0],[[2609,2],[2678,2]]], [2643,[9001.03,5862.8,0],[[2610,2],[2679,2]]], [2644,[8440.94,5789.06,0],[[2611,2],[2680,2],[2644,2],[2681,2]]], [2645,[7208.71,8774.94,0],[[2613,2],[2682,2]]], +[2646,[7203.08,8831.17,0],[[2613,2],[2683,2]]], [2647,[8470.64,7556.49,0],[[2615,2],[2684,2]]], [2648,[8254.95,8669.82,0],[[2616,2],[2685,2]]], [2649,[7264.31,5038.54,1.01725e-005],[[2617,2],[2686,2],[2687,2]]], [2650,[7195.6,5199.17,0],[[2617,2],[2656,2]]], [2651,[7482.76,5233.66,7.62939e-006],[[2618,2],[2619,2]]], +[2652,[7664.69,5196.13,7.62939e-006],[[2619,2],[2688,2]]], [2653,[7658.28,5369.92,0],[[2619,2],[2689,2]]], [2654,[6407.01,5360.13,0],[[2620,2],[2678,2]]], [2655,[6590.35,5262.72,0],[[2621,2],[2690,2]]], [2656,[7162.22,5238.11,1.52588e-005],[[2622,2],[2650,2]]], [2657,[6439.68,9539.64,0],[[2623,2],[2691,2]]], +[2658,[6164.06,9730.21,5.08626e-006],[[2624,2],[2692,2],[2693,2]]], [2659,[1972.9,1480.97,5.08626e-006],[[2625,2],[2694,2],[2695,2]]], [2660,[988.913,1796.07,0],[[2626,2],[2696,2]]], [2661,[2190.32,1517.15,0],[[2627,2],[2697,2]]], [2662,[2742.03,2205.47,0],[[2628,2],[2698,2]]], [2663,[3568.44,2013.69,0],[[2629,2],[2699,2],[2700,2],[2663,2],[2701,2]]], +[2664,[4530.91,2531.31,0],[[2630,2],[2702,2]]], [2665,[7025.11,4823.12,0],[[2631,2],[2686,2]]], [2666,[7187.07,4327.35,0],[[2632,2],[2703,2]]], [2667,[7032.76,4435.51,0],[[2632,2],[2704,2]]], [2668,[7017.75,4192.97,0],[[2632,2],[2705,2]]], [2669,[6548.97,4692.82,0],[[2633,2],[2706,2]]], +[2670,[7648.06,3131.15,0],[[2634,2],[2707,2]]], [2671,[6962.26,2257.8,0],[[2635,2],[2671,2],[2708,2],[2709,2]]], [2672,[6524.13,2192.57,0],[[2636,2],[2710,2]]], [2673,[6208.68,2100.55,0],[[2637,2],[2711,2]]], [2674,[6354.66,2180.36,1.52588e-005],[[2638,2],[2712,2]]], [2675,[6146.23,2412.84,0],[[2640,2],[2677,2]]], +[2676,[5874.8,2441.31,0],[[2641,2],[2713,2]]], [2677,[6146.59,2454.21,0],[[2641,2],[2675,2]]], [2678,[6336.74,5289.5,7.62939e-006],[[2642,2],[2654,2]]], [2679,[9124.95,5901.44,0],[[2643,2],[2714,2]]], [2680,[8381.17,5696.8,0],[[2644,2],[2715,2]]], [2681,[8308.18,5747.49,0],[[2644,2],[2716,2]]], +[2682,[7314.82,8868.57,0],[[2645,2],[2717,2]]], [2683,[7240.4,8951.18,0],[[2646,2],[2718,2]]], [2684,[8468.22,7380.87,0],[[2647,2],[2719,2]]], [2685,[8252.34,8695.54,0],[[2648,2],[2720,2],[2721,2]]], [2686,[7118.85,4905.33,0],[[2649,2],[2665,2]]], [2687,[7309.68,4985.43,-1.52588e-005],[[2649,2],[2722,2]]], +[2688,[7712.48,5136,-3.8147e-006],[[2652,2],[2723,2],[2724,2],[2725,2]]], [2689,[7727.53,5427.02,0],[[2653,2],[2726,2]]], [2690,[6510.22,5152.55,0],[[2655,2],[2727,2]]], [2691,[6494.38,9609.61,0],[[2657,2],[2728,2]]], [2692,[6033.84,9627.83,-1.52588e-005],[[2658,2],[2729,2]]], [2693,[6191.28,9869.12,-1.52588e-005],[[2658,2],[2730,2]]], +[2694,[2052.18,1344.24,0],[[2659,2],[2731,2]]], [2695,[1821.66,1441.69,0],[[2659,2],[2732,2]]], [2696,[927.147,1661.65,0],[[2660,2],[2733,2]]], [2697,[2220.65,1349.49,-1.52588e-005],[[2661,2],[2734,2]]], [2698,[2805.93,2202.37,0],[[2662,2],[2735,2],[2736,2]]], [2699,[3542.59,1817.52,1.52588e-005],[[2663,2],[2737,2]]], +[2700,[3561.12,2024.01,-5.08626e-006],[[2663,2]]], [2701,[3438.28,2045.26,0],[[2663,2],[2738,2]]], [2702,[4649.65,2579.26,0],[[2664,2],[2739,2]]], [2703,[7245.01,4237.41,0],[[2666,2],[2740,2]]], [2704,[7079.04,4517.95,-1.52588e-005],[[2667,2],[2741,2]]], [2705,[7011.45,4081.9,0],[[2668,2],[2742,2]]], +[2706,[6559.82,4812.57,0],[[2669,2],[2743,2]]], [2707,[7766.99,3069.4,1.52588e-005],[[2670,2],[2744,2]]], [2708,[6931.85,2150.96,0],[[2671,2],[2745,2]]], [2709,[7016.06,2288.66,0],[[2671,2],[2746,2]]], [2710,[6511.39,2122.87,0],[[2672,2],[2747,2]]], [2711,[6066.11,2056.88,0],[[2673,2],[2748,2]]], +[2712,[6351.31,2105.77,0],[[2674,2],[2749,2]]], [2713,[5743.56,2417.51,0],[[2676,2],[2750,2]]], [2714,[9239.69,5831.65,0],[[2679,2],[2751,2]]], [2715,[8418.94,5592.87,0],[[2680,2],[2752,2]]], [2716,[8279.98,5714.51,2.54313e-006],[[2681,2],[2753,2],[2754,2]]], [2717,[7399.69,8938.79,0],[[2682,2],[2755,2],[2756,2]]], +[2718,[7188.08,9050.67,0],[[2683,2],[2757,2]]], [2719,[8414.32,7252.39,0],[[2684,2],[2758,2]]], [2720,[8329.38,8784.24,0],[[2685,2],[2759,2],[2760,2]]], [2721,[8163.96,8779.27,1.52588e-005],[[2685,2],[2761,2]]], [2722,[7332.73,4886.88,0],[[2687,2],[2762,2]]], [2723,[7813.15,5010.35,0],[[2688,2],[2763,2]]], +[2724,[7691.56,5034,0],[[2688,2],[2764,2]]], [2725,[7747.96,5202.44,0],[[2688,2],[2765,2]]], [2726,[7782.24,5501.22,0],[[2689,2],[2766,2]]], [2727,[6540.11,5016.5,0],[[2690,2],[2743,2]]], [2728,[6512.19,9702.22,0],[[2691,2],[2767,2]]], [2729,[6018.31,9480.9,0],[[2692,2],[2768,2]]], +[2730,[6196.03,9975.3,0],[[2693,2],[2769,2]]], [2731,[2131.53,1221.21,0],[[2694,2],[2770,2]]], [2732,[1763.67,1323.74,0],[[2695,2],[2771,2]]], [2733,[966.202,1515.07,0],[[2696,2],[2772,2]]], [2734,[2237.75,1215.52,0],[[2697,2],[2773,2]]], [2735,[3004.99,2181.39,1.52588e-005],[[2698,2],[2774,2]]], +[2736,[2711.56,2294.87,-1.52588e-005],[[2698,2],[2775,2]]], [2737,[3439.29,1693.19,0],[[2699,2],[2776,2]]], [2738,[3309.09,2091.38,0],[[2701,2],[2774,2]]], [2739,[4776.15,2630.48,0],[[2702,2],[2777,2]]], [2740,[7349.26,4235.42,0],[[2703,2],[2778,2]]], [2741,[7141.43,4583.72,0],[[2704,2],[2779,2]]], +[2742,[7037.09,4028,0],[[2705,2]]], [2743,[6558.46,4926.21,0],[[2706,2],[2727,2]]], [2744,[7843.94,3038.5,1.52588e-005],[[2707,2],[2780,2]]], [2745,[7031.85,2065.24,0],[[2708,2],[2781,2]]], [2746,[7087.2,2301.17,0],[[2709,2],[2782,2]]], [2747,[6529.75,2069.09,0],[[2710,2],[2783,2]]], +[2748,[5926.47,1923.23,0],[[2711,2],[2784,2]]], [2749,[6334.28,2043.06,0],[[2712,2],[2785,2]]], [2750,[5593.36,2422.36,0],[[2713,2],[2786,2]]], [2751,[9347.66,5746.4,0],[[2714,2],[2787,2]]], [2752,[8412.21,5483.38,-7.62939e-006],[[2715,2],[2788,2]]], [2753,[8219.93,5676.5,0],[[2716,2],[2753,2],[2789,2]]], +[2754,[8259.49,5620.19,0],[[2716,2],[2790,2]]], [2755,[7399.22,9100.88,-1.52588e-005],[[2717,2],[2791,2]]], [2756,[7486.65,9045.79,0],[[2717,2],[2792,2]]], [2757,[7137.06,9092.46,0],[[2718,2],[2793,2]]], [2758,[8389.57,7194.55,0],[[2719,2]]], [2759,[8321.05,8796.22,0],[[2720,2]]], +[2760,[8434.72,8786.08,1.52588e-005],[[2720,2],[2794,2]]], [2761,[8198.5,8893.81,0],[[2721,2],[2795,2]]], [2762,[7279.71,4840.22,0],[[2722,2],[2796,2]]], [2763,[7882.53,4860.34,0],[[2723,2],[2797,2]]], [2764,[7649.22,4959.8,7.62939e-006],[[2724,2],[2798,2]]], [2765,[7793.49,5244.03,-7.62939e-006],[[2725,2],[2799,2]]], +[2766,[7889.86,5510.96,-7.62939e-006],[[2726,2],[2800,2]]], [2767,[6519.99,9795.17,0],[[2728,2],[2801,2]]], [2768,[6006.41,9315.21,0],[[2729,2],[2768,2]]], [2769,[6256.07,10084.2,0],[[2730,2],[2802,2]]], [2770,[2217.01,1053.18,0],[[2731,2],[2803,2]]], [2771,[1628.23,1290.76,0],[[2732,2],[2804,2]]], +[2772,[981.539,1368.14,0],[[2733,2],[2805,2]]], [2773,[2256,1081.47,0],[[2734,2],[2803,2]]], [2774,[3138.94,2113.54,-1.52588e-005],[[2735,2],[2738,2]]], [2775,[2591.6,2394.16,1.52588e-005],[[2736,2],[2806,2]]], [2776,[3416.09,1561.83,0],[[2737,2],[2807,2]]], [2777,[4922.01,2625.65,0],[[2739,2],[2808,2]]], +[2778,[7388.57,4252.47,0],[[2740,2],[2778,2],[2809,2],[2810,2]]], [2779,[7165.79,4664.47,0],[[2741,2],[2811,2]]], [2780,[7915.13,3003.58,1.01725e-005],[[2744,2],[2812,2],[2813,2]]], [2781,[7122.26,2000.84,0],[[2745,2],[2814,2]]], [2782,[7191.65,2302.39,0],[[2746,2],[2815,2]]], [2783,[6579.22,1990.77,0],[[2747,2],[2816,2]]], +[2784,[5818.61,1767.02,0],[[2748,2],[2817,2]]], [2785,[6307.3,1984.66,0],[[2749,2],[2818,2]]], [2786,[5468.64,2512.2,0],[[2750,2],[2819,2]]], [2787,[9389.45,5714.95,-2.54313e-006],[[2751,2],[2820,2],[2821,2]]], [2788,[8379.44,5394.14,0],[[2752,2],[2822,2]]], [2789,[8151.58,5696.08,0],[[2753,2],[2823,2]]], +[2790,[8250.1,5521.15,0],[[2754,2],[2824,2]]], [2791,[7348.2,9222.46,1.52588e-005],[[2755,2],[2825,2]]], [2792,[7595.2,9098.03,0],[[2756,2],[2826,2]]], [2793,[7110.46,9186.91,0],[[2757,2],[2827,2]]], [2794,[8511.45,8728.34,0],[[2760,2],[2828,2]]], [2795,[8091.93,9032.15,0],[[2761,2],[2829,2]]], +[2796,[7245.79,4792.07,0],[[2762,2],[2811,2]]], [2797,[7958.32,4743.11,7.62939e-006],[[2763,2],[2830,2]]], [2798,[7623.18,4890.66,0],[[2764,2],[2831,2]]], [2799,[7873.5,5256.03,0],[[2765,2],[2832,2]]], [2800,[7896.46,5566.27,0],[[2766,2],[2833,2]]], [2801,[6490.14,9862.33,0],[[2767,2],[2834,2]]], +[2802,[6348.25,10115.1,0],[[2769,2],[2835,2]]], [2803,[2246.6,989.084,3.05176e-006],[[2770,2],[2773,2],[2836,2],[2837,2],[2838,2]]], [2804,[1507.5,1305.65,0],[[2771,2],[2839,2]]], [2805,[1083.14,1243.14,0],[[2772,2],[2840,2]]], [2806,[2493.21,2490.32,0],[[2775,2],[2841,2]]], [2807,[3504.61,1416.77,0],[[2776,2],[2842,2]]], +[2808,[5043.08,2584.56,0],[[2777,2],[2843,2]]], [2809,[7429.76,4400.6,0],[[2778,2],[2844,2]]], [2810,[7466.95,4154.62,-1.52588e-005],[[2778,2],[2845,2]]], [2811,[7203.26,4734.55,0],[[2779,2],[2796,2]]], [2812,[7973.99,3076.85,1.52588e-005],[[2780,2],[2846,2]]], [2813,[7873.08,2889.13,-1.52588e-005],[[2780,2],[2847,2]]], +[2814,[7231.16,1971.33,0],[[2781,2],[2848,2]]], [2815,[7268.55,2325.8,0],[[2782,2],[2849,2]]], [2816,[6612.76,1910.12,0],[[2783,2],[2850,2]]], [2817,[5709.53,1670.55,-1.52588e-005],[[2784,2],[2851,2]]], [2818,[6253.1,1937.05,0],[[2785,2],[2852,2]]], [2819,[5310.64,2492.08,0],[[2786,2],[2843,2]]], +[2820,[9494.43,5567.38,-3.8147e-006],[[2787,2],[2853,2]]], [2821,[9333.87,5856.36,-3.8147e-006],[[2787,2],[2854,2]]], [2822,[8436.47,5353.33,0],[[2788,2],[2855,2],[2856,2],[2822,2],[2857,2]]], [2823,[8091.17,5738.2,0],[[2789,2],[2858,2]]], [2824,[8248.79,5460.44,0],[[2790,2],[2859,2]]], [2825,[7270.85,9291.66,0],[[2791,2],[2860,2]]], +[2826,[7694.26,9132.29,1.52588e-005],[[2792,2],[2861,2]]], [2827,[7075.46,9281.89,0],[[2793,2],[2862,2]]], [2828,[8582.65,8686.37,0],[[2794,2],[2863,2]]], [2829,[8001.32,9081.44,0],[[2795,2],[2864,2]]], [2830,[7991.11,4614.19,0],[[2797,2],[2865,2]]], [2831,[7589.07,4830.14,0],[[2798,2],[2866,2]]], +[2832,[7941.13,5272.14,0],[[2799,2],[2867,2]]], [2833,[7898.11,5638.07,-7.62939e-006],[[2800,2],[2868,2]]], [2834,[6446.04,9956.3,0],[[2801,2],[2835,2]]], [2835,[6400.58,10003.8,0],[[2802,2],[2834,2]]], [2836,[2424.8,924.466,1.52588e-005],[[2803,2],[2869,2]]], [2837,[2160.71,872.063,0],[[2803,2],[2870,2]]], +[2838,[2282,785.632,0],[[2803,2],[2871,2]]], [2839,[1405.03,1213.04,0],[[2804,2],[2872,2]]], [2840,[1085.3,1184.39,0],[[2805,2],[2873,2],[2874,2]]], [2841,[2458.02,2646.19,0],[[2806,2],[2404,2]]], [2842,[3589.61,1278.08,0],[[2807,2],[2875,2]]], [2843,[5187.78,2523.18,1.52588e-005],[[2808,2],[2819,2]]], +[2844,[7497.46,4538.75,1.52588e-005],[[2809,2],[2876,2]]], [2845,[7428.89,4036.05,0],[[2810,2],[2877,2]]], [2846,[8013.82,3140.77,0],[[2812,2],[2878,2]]], [2847,[7862.77,2802,0],[[2813,2],[2879,2]]], [2848,[7306.81,1937.13,0],[[2814,2],[2880,2]]], [2849,[7346.98,2356.73,0],[[2815,2],[2881,2]]], +[2850,[6633.83,1821.92,1.52588e-005],[[2816,2],[2882,2]]], [2851,[5590.25,1629.54,0],[[2817,2],[2883,2]]], [2852,[6231.63,1901.08,0],[[2818,2],[2884,2]]], [2853,[9616.51,5543.96,0],[[2820,2],[2885,2]]], [2854,[9278.98,5991.76,0],[[2821,2],[2886,2]]], [2855,[8475.37,5291.16,2.54313e-006],[[2822,2],[2857,2],[2887,2]]], +[2856,[8426.01,5346.9,0],[[2822,2]]], [2857,[8389.58,5291.54,0],[[2822,2],[2855,2],[2888,2]]], [2858,[8022.82,5766.38,0],[[2823,2],[2889,2]]], [2859,[8165.22,5414.72,0],[[2824,2],[2890,2]]], [2860,[7175.05,9351.91,0],[[2825,2],[2862,2]]], [2861,[7795.76,9179.15,0],[[2826,2],[2891,2]]], +[2862,[7070.03,9361.41,0],[[2827,2],[2860,2]]], [2863,[8639.89,8654.4,0],[[2828,2],[2892,2]]], [2864,[8029.94,9208.65,-1.52588e-005],[[2829,2],[2891,2],[2893,2]]], [2865,[8060.78,4473.6,0],[[2830,2],[2894,2]]], [2866,[7536.99,4788.17,-1.52588e-005],[[2831,2],[2876,2]]], [2867,[7973.92,5322.35,0],[[2832,2],[2895,2]]], +[2868,[7942.78,5705.22,0],[[2833,2],[2889,2]]], [2869,[2561.1,925.513,0],[[2836,2],[2896,2]]], [2870,[2095.51,745.508,0],[[2837,2],[2897,2]]], [2871,[2285.14,747.791,0],[[2838,2],[2898,2],[2871,2],[2899,2]]], [2872,[1298.72,1162.83,0],[[2839,2],[2874,2]]], [2873,[949.428,1082.64,0],[[2840,2],[2900,2]]], +[2874,[1244.39,1122.7,0],[[2840,2],[2872,2]]], [2875,[3618.92,1127.63,0],[[2842,2],[2902,2]]], [2876,[7518.5,4664.54,1.52588e-005],[[2844,2],[2866,2]]], [2877,[7361.54,3954.7,-1.52588e-005],[[2845,2],[2903,2]]], [2878,[8032.08,3183.97,0],[[2846,2],[2904,2],[2878,2]]], [2879,[7889,2708.09,0],[[2847,2],[2905,2]]], +[2880,[7388.78,1915.35,0],[[2848,2],[2906,2]]], [2881,[7411.83,2412.68,0],[[2849,2],[2907,2]]], [2882,[6640.06,1743.26,0],[[2850,2],[2908,2]]], [2883,[5479.54,1584.32,1.52588e-005],[[2851,2],[2909,2]]], [2884,[6225.28,1838.12,0],[[2852,2],[2910,2]]], [2885,[9684.14,5639.11,3.8147e-006],[[2853,2],[2911,2]]], +[2886,[9201.4,6108.13,0],[[2854,2],[2912,2]]], [2887,[8472.49,5242.25,-7.62939e-006],[[2855,2],[2888,2],[2913,2]]], [2888,[8364.38,5244.49,0],[[2857,2],[2887,2],[2914,2]]], [2889,[7962.71,5760.23,0],[[2858,2],[2868,2]]], [2890,[8114.63,5362.08,7.62939e-006],[[2859,2],[2895,2]]], [2891,[7865.63,9245.23,0],[[2861,2],[2864,2],[2893,2]]], +[2892,[8718.96,8635.3,0],[[2863,2],[2892,2],[2915,2]]], [2893,[7895.33,9261.66,0],[[2891,2],[2864,2],[2936,2]]], [2894,[8134.75,4373.58,0],[[2865,2],[2916,2]]], [2895,[8045.12,5351.02,0],[[2867,2],[2890,2]]], [2896,[2692.49,930.289,0],[[2869,2],[2917,2]]], [2897,[1999.68,639.855,-1.52588e-005],[[2870,2],[2918,2]]], +[2898,[2273.17,585.345,0],[[2871,2],[2919,2]]], [2899,[2370.51,671.336,0],[[2871,2],[2920,2]]], [2900,[815.949,988.841,0],[[2873,2],[2921,2]]], [2901,[2383.03,2910.8,5.08626e-006],[[2404,2]]], [2902,[3562.49,1026.07,0],[[2875,2],[2922,2]]], [2903,[7442.3,3965.19,0],[[2877,2],[2923,2]]], +[2904,[7970.29,3217.87,0],[[2878,2],[2924,2]]], [2905,[7963.25,2638.29,1.52588e-005],[[2879,2],[2925,2]]], [2906,[7468.65,1899.42,0],[[2880,2],[2926,2]]], [2907,[7484.36,2452.58,-1.52588e-005],[[2881,2],[2927,2]]], [2908,[6621.36,1677.78,0],[[2882,2],[2928,2]]], [2909,[5366.81,1513.71,-1.52588e-005],[[2883,2],[2929,2]]], +[2910,[6209.13,1779.53,0],[[2884,2],[2930,2],[2931,2],[2910,2]]], [2911,[9785.43,5631.2,0],[[2885,2],[2932,2]]], [2912,[9107.71,6269.88,3.8147e-006],[[2886,2],[2933,2]]], [2913,[8481.94,5189.6,-2.54313e-006],[[2887,2],[2914,2],[2934,2]]], [2914,[8328.87,5190.08,0],[[2888,2],[2913,2],[2935,2]]], [2915,[8801.03,8615.24,0],[[2892,2],[2937,2]]], +[2916,[8167.87,4354.75,0],[[2894,2],[2938,2],[2939,2],[2940,2],[2941,2]]], [2917,[2851.35,959.218,-1.52588e-005],[[2896,2],[2942,2]]], [2918,[1889.6,533.291,-1.52588e-005],[[2897,2],[2943,2]]], [2919,[2347.82,466.203,0],[[2898,2],[2944,2]]], [2920,[2389.82,583.058,1.52588e-005],[[2899,2],[2945,2]]], [2921,[778.385,825.881,0],[[2900,2],[2946,2]]], +[2922,[3576.71,884.434,-1.52588e-005],[[2902,2],[2947,2]]], [2923,[7480.52,3915.35,0],[[2903,2],[2948,2]]], [2924,[7944.99,3283.1,0],[[2904,2],[2949,2]]], [2925,[8045.22,2598.25,0],[[2905,2],[2950,2]]], [2926,[7563.03,1831.27,0],[[2906,2],[2951,2]]], [2927,[7564.38,2484.74,0],[[2907,2],[2952,2]]], +[2928,[6622.92,1609.19,-1.52588e-005],[[2908,2],[2953,2]]], [2929,[5251.39,1443.08,0],[[2909,2],[2954,2]]], [2930,[6196.38,1693.63,-1.52588e-005],[[2910,2],[2955,2]]], [2931,[6203.21,1790.64,0],[[2910,2],[2931,2]]], [2932,[9857.16,5502.1,0],[[2911,2],[2956,2]]], [2933,[9065.25,6410.92,0],[[2912,2],[2957,2]]], +[2934,[8492.91,5142.02,-2.54313e-006],[[2913,2],[2935,2],[2958,2]]], [2935,[8314.99,5144.58,0],[[2914,2],[2934,2],[2959,2]]], [2936,[7922.6,9408.68,-1.52588e-005],[[2893,2],[2960,2]]], [2937,[8821.07,8659.27,1.52588e-005],[[2915,2],[2961,2]]], [2938,[8234.01,4207.53,0],[[2916,2],[2962,2]]], [2939,[8216.06,4525.9,0],[[2916,2],[2963,2]]], +[2940,[8273.87,4408.45,0],[[2916,2],[2964,2]]], [2941,[8157.33,4263.05,0],[[2916,2],[2965,2]]], [2942,[3010.59,922.313,0],[[2917,2],[2966,2]]], [2943,[1755.81,472.104,0],[[2918,2],[2967,2]]], [2944,[2340.06,312.65,0],[[2919,2],[2968,2]]], [2945,[2443.8,521.762,0],[[2920,2],[2969,2]]], +[2946,[666.046,738.625,0],[[2921,2],[2970,2]]], [2947,[3674.62,732.969,-1.52588e-005],[[2922,2],[2971,2]]], [2948,[7495.81,3900.55,-5.08626e-006],[[2923,2],[2972,2],[2973,2]]], [2949,[7918.96,3346.66,0],[[2924,2],[2974,2]]], [2950,[8154.13,2568.97,-7.62939e-006],[[2925,2],[2975,2]]], [2951,[7645.94,1752.11,0],[[2926,2],[2976,2]]], +[2952,[7675.47,2531.93,0],[[2927,2],[2977,2]]], [2953,[6636.35,1547.32,0],[[2928,2],[2978,2]]], [2954,[5231.95,1422.07,5.08626e-006],[[2929,2],[2979,2],[2980,2]]], [2955,[6190.02,1623.72,0],[[2930,2],[2981,2]]], [2956,[9955.19,5383.53,0],[[2932,2],[2982,2]]], [2957,[8970.12,6479.57,0],[[2933,2],[2983,2]]], +[2958,[8556.76,5059.42,-2.54313e-006],[[2934,2],[2984,2],[2985,2]]], [2959,[8273.44,4998.99,-7.62939e-006],[[2935,2],[2986,2],[2987,2]]], [2960,[7926.42,9566.42,0],[[2936,2],[2988,2]]], [2961,[8862.48,8710.98,0],[[2937,2],[2989,2]]], [2962,[8286.4,4086.58,-7.62939e-006],[[2938,2],[2990,2],[2962,2],[2991,2]]], [2963,[8222.78,4677.82,-7.62939e-006],[[2939,2],[2986,2]]], +[2964,[8349.05,4510.8,0],[[2940,2],[2992,2]]], [2965,[8147.26,4189.74,0],[[2941,2],[2993,2]]], [2966,[3169.17,807.159,0],[[2942,2],[2994,2]]], [2967,[1630.81,395.109,0],[[2943,2],[2995,2]]], [2968,[2350.44,189.93,0],[[2944,2],[2996,2]]], [2969,[2529.34,495.231,0],[[2945,2],[2997,2]]], +[2970,[651.233,583.753,0],[[2946,2],[2998,2]]], [2971,[3714.19,689.25,-5.08626e-006],[[2947,2],[2999,2],[3000,2]]], [2972,[7598.05,3987.68,0],[[2948,2],[3001,2]]], [2973,[7415.96,3760.92,0],[[2948,2],[3002,2]]], [2974,[7880.52,3382.84,0],[[2949,2],[3003,2]]], [2975,[8235.4,2574.82,0],[[2950,2],[3004,2]]], +[2976,[7739.86,1698.71,0],[[2951,2],[3005,2]]], [2977,[7772.07,2556.2,0],[[2952,2],[3006,2]]], [2978,[6662.57,1494.62,5.08626e-006],[[2953,2],[3007,2],[3008,2]]], [2979,[5117.84,1314.96,0],[[2954,2],[3009,2]]], [2980,[5237.59,1276.97,0],[[2954,2],[3010,2]]], [2981,[6182.47,1557.4,0],[[2955,2],[3011,2]]], +[2982,[10049.2,5268.18,0],[[2956,2],[3012,2]]], [2983,[8881.93,6587.89,0],[[2957,2],[3013,2]]], [2984,[8508.34,4908.82,7.62939e-006],[[2958,2],[2987,2]]], [2985,[8636.83,5009.81,-7.62939e-006],[[2958,2],[3014,2]]], [2986,[8269,4825.39,0],[[2959,2],[2963,2]]], [2987,[8413.62,4921.23,0],[[2959,2],[2984,2]]], +[2988,[8029.23,9645.39,0],[[2960,2],[3015,2]]], [2989,[8929.37,8694.87,1.52588e-005],[[2961,2],[3016,2]]], [2990,[8377.59,3994.35,1.52588e-005],[[2962,2],[3017,2]]], [2991,[8198.52,4055.2,0],[[2962,2],[3018,2]]], [2992,[8425.64,4592.31,0],[[2964,2],[3019,2]]], [2993,[8086.6,4159.29,-1.52588e-005],[[2965,2],[3020,2]]], +[2994,[3330.41,717.907,0],[[2966,2],[2999,2]]], [2995,[1472.13,371.103,0],[[2967,2],[3021,2]]], [2996,[2377.93,33.6786,1.52588e-005],[[2968,2],[3022,2]]], [2997,[2580.11,437.136,0],[[2969,2],[3023,2]]], [2998,[767.725,485.567,0],[[2970,2],[3024,2]]], [2999,[3508.54,639.297,0],[[2971,2],[2994,2]]], +[3000,[3887.29,785.498,0],[[2971,2],[3025,2]]], [3001,[7698.76,4033.06,0],[[2972,2],[3026,2]]], [3002,[7456.25,3709.47,-1.52588e-005],[[2973,2],[3027,2]]], [3003,[7855.58,3430.56,0],[[2974,2],[3028,2],[3003,2],[3029,2]]], [3004,[8345.24,2540.63,0],[[2975,2],[3030,2]]], [3005,[7825.58,1653.27,0],[[2976,2],[3031,2]]], +[3006,[7824.54,2498.55,1.52588e-005],[[2977,2],[3032,2]]], [3007,[6633.46,1388.74,0],[[2978,2],[3033,2]]], [3008,[6738.16,1556.96,0],[[2978,2],[3034,2],[3008,2]]], [3009,[5011,1177.1,0],[[2979,2],[3035,2]]], [3010,[5250.42,1138.19,0],[[2980,2],[3036,2]]], [3011,[6172.27,1490.85,0],[[2981,2],[3037,2]]], +[3012,[10189.7,5249.84,0],[[2982,2],[3038,2],[3012,2]]], [3013,[8862.9,6714.88,0],[[2983,2],[3039,2]]], [3014,[8676.88,4925.73,0],[[2985,2],[3040,2]]], [3015,[8111.24,9752.73,0],[[2988,2],[3041,2]]], [3016,[8959.41,8648.93,0],[[2989,2],[3042,2],[3016,2],[3043,2]]], [3017,[8427.22,3901.04,0],[[2990,2],[3044,2]]], +[3018,[8133.94,4014.09,-1.52588e-005],[[2991,2],[3045,2]]], [3019,[8527.29,4637.51,0],[[2992,2],[3046,2]]], [3020,[8026.18,4162.57,0],[[2993,2],[3047,2]]], [3021,[1344.09,380.61,0],[[2995,2],[3048,2]]], [3022,[2497.29,50.2073,0],[[2996,2],[3049,2]]], [3023,[2688.52,365.319,0],[[2997,2],[3050,2]]], +[3024,[939.665,437.279,1.52588e-005],[[2998,2],[3051,2]]], [3025,[3994.69,946.326,0],[[3000,2],[3052,2]]], [3026,[7790.98,4042.43,0],[[3001,2],[3053,2]]], [3027,[7511.63,3672.19,0],[[3002,2],[3054,2]]], [3028,[7863.97,3425.17,0],[[3003,2]]], [3029,[7785.67,3469.29,0],[[3003,2],[3055,2]]], +[3030,[8462.37,2486.21,0],[[3004,2],[3056,2]]], [3031,[7927.69,1622.83,0],[[3005,2],[3057,2]]], [3032,[7877.11,2480.32,0],[[3006,2],[3058,2]]], [3033,[6598.79,1323.54,1.52588e-005],[[3007,2],[3059,2]]], [3034,[6745.19,1551.58,0],[[3008,2],[3060,2]]], [3035,[4926.26,1029.09,0],[[3009,2],[3061,2]]], +[3036,[5236.18,1031.06,0],[[3010,2],[3062,2]]], [3037,[6110.04,1440.37,0],[[3011,2],[3063,2]]], [3038,[10222.5,5233.74,0],[[3012,2],[3064,2],[3038,2]]], [3039,[8856.68,6856.5,0],[[3013,2],[3065,2]]], [3040,[8747.68,4912.64,0],[[3014,2],[3066,2]]], [3041,[8265.25,9742.22,0],[[3015,2],[3067,2]]], +[3042,[8934.5,8539.63,1.52588e-005],[[3016,2],[3068,2]]], [3043,[9029.73,8725.45,1.52588e-005],[[3016,2],[3069,2]]], [3044,[8554.21,3832.56,-1.52588e-005],[[3017,2],[3070,2]]], [3045,[8075.1,3940.61,0],[[3018,2],[3071,2]]], [3046,[8596.84,4713.63,0],[[3019,2],[3072,2]]], [3047,[7973.72,4150.39,0],[[3020,2],[3053,2]]], +[3048,[1228.67,445.533,0],[[3021,2],[3051,2]]], [3049,[2595.87,135.874,0],[[3022,2],[3073,2]]], [3050,[2689.44,274.289,0],[[3023,2],[3074,2]]], [3051,[1101.55,433.338,0],[[3024,2],[3048,2]]], [3052,[4056.64,1080.52,0],[[3025,2],[3075,2]]], [3053,[7883.55,4075.68,0],[[3026,2],[3047,2]]], +[3054,[7552.2,3654.53,0],[[3027,2],[3076,2],[3054,2]]], [3055,[7739.5,3499.03,0],[[3029,2],[3077,2]]], [3056,[8546.42,2428.91,0],[[3030,2],[3078,2]]], [3057,[7983.44,1650.93,0],[[3031,2],[3079,2]]], [3058,[8003.17,2495.1,0],[[3032,2],[3080,2]]], [3059,[6567.5,1236.41,0],[[3033,2],[3081,2]]], +[3060,[6792.03,1583.43,1.52588e-005],[[3034,2],[3082,2]]], [3061,[4844.27,922.366,1.52588e-005],[[3035,2],[3083,2]]], [3062,[5234.83,1013.98,0],[[3036,2],[3084,2],[3062,2],[3085,2]]], [3063,[6070.71,1376.97,5.08626e-006],[[3037,2],[3063,2],[3086,2]]], [3064,[10139.3,5140.15,0],[[3038,2],[3087,2]]], [3065,[8782.75,6985.31,0],[[3039,2],[3088,2]]], +[3066,[8800.78,4912.61,0],[[3040,2],[3089,2]]], [3067,[8376.61,9711.53,0],[[3041,2],[3090,2]]], [3068,[8919.03,8466.28,0],[[3042,2],[3091,2]]], [3069,[9116.14,8777.99,0],[[3043,2],[3092,2]]], [3070,[8638.71,3748.63,1.01725e-005],[[3044,2],[3093,2],[3094,2]]], [3071,[8012.74,3844,-1.52588e-005],[[3045,2],[3095,2]]], +[3072,[8703.41,4745.24,0],[[3046,2],[3096,2]]], [3073,[2587.69,231.773,0],[[3049,2],[3074,2]]], [3074,[2560.44,302.193,0],[[3050,2],[3073,2]]], [3075,[4233.6,1123.63,-1.52588e-005],[[3052,2],[3097,2]]], [3076,[7622.71,3603.8,0],[[3054,2],[3098,2],[3076,2]]], [3077,[7696.69,3535.49,0],[[3055,2],[3098,2]]], +[3078,[8675.94,2349.52,0],[[3056,2],[3099,2]]], [3079,[8031.35,1640.58,0],[[3057,2],[3100,2],[3101,2],[3102,2]]], [3080,[8180.64,2466.03,0],[[3058,2],[3103,2]]], [3081,[6567.25,1140.64,0],[[3059,2],[3104,2]]], [3082,[6872.36,1576.87,0],[[3060,2],[3105,2]]], [3083,[4721.15,829.867,0],[[3061,2],[3106,2]]], +[3084,[5351.06,979.806,1.52588e-005],[[3062,2],[3107,2]]], [3085,[5126.09,942.882,0],[[3062,2],[3108,2]]], [3086,[6013.27,1356.55,0],[[3063,2],[3109,2]]], [3087,[10050.4,5144.05,0],[[3064,2],[3110,2]]], [3088,[8743.03,7091.23,0],[[3065,2],[3111,2]]], [3089,[8910.87,4878.51,0],[[3066,2],[3112,2]]], +[3090,[8486.09,9785.3,0],[[3067,2],[3113,2]]], [3091,[8908.16,8380.28,0],[[3068,2],[3114,2]]], [3092,[9157.04,8818.38,0],[[3069,2],[3115,2],[3116,2]]], [3093,[8587.25,3669.52,0],[[3070,2],[3117,2]]], [3094,[8739.97,3864.75,-1.52588e-005],[[3070,2],[3118,2]]], [3095,[7990.49,3757.34,0],[[3071,2],[3119,2]]], +[3096,[8769.22,4756.72,0],[[3072,2],[3120,2]]], [3097,[4366.19,1112.27,0],[[3075,2],[3121,2]]], [3098,[7675.95,3556.11,0],[[3076,2],[3077,2]]], [3099,[8726.14,2338.8,-1.90735e-006],[[3078,2],[3122,2],[3123,2],[3124,2]]], [3100,[8176.19,1602.22,0],[[3079,2],[3125,2]]], [3101,[8123.37,1764.24,1.52588e-005],[[3079,2],[3126,2]]], +[3102,[8022.53,1473.46,0],[[3079,2],[3127,2]]], [3103,[8315.52,2426.89,0],[[3080,2],[3128,2]]], [3104,[6592.87,1029.03,0],[[3081,2],[3129,2]]], [3105,[6936.83,1641.54,0],[[3082,2]]], [3106,[4591.29,847.312,0],[[3083,2],[3121,2]]], [3107,[5443.12,950.073,0],[[3084,2],[3130,2]]], +[3108,[5060.22,837.489,0],[[3085,2],[3131,2]]], [3109,[5974.42,1320.18,0],[[3086,2],[3132,2],[3133,2]]], [3110,[9975.15,5148.4,0],[[3087,2],[3134,2]]], [3111,[8755.62,7173.67,0],[[3088,2],[3135,2]]], [3112,[8948.78,4842.75,0],[[3089,2],[3136,2],[3120,2]]], [3113,[8648.25,9814.13,0],[[3090,2],[3137,2]]], +[3114,[8844.64,8297.47,7.62939e-006],[[3091,2],[3138,2]]], [3115,[9207.11,8948.2,7.62939e-006],[[3092,2],[3139,2]]], [3116,[9257.06,8698.07,0],[[3092,2],[3140,2]]], [3117,[8679.11,3562.78,1.52588e-005],[[3093,2],[3141,2]]], [3118,[8849.45,3820.36,0],[[3094,2],[3142,2]]], [3119,[8088.57,3724.84,1.52588e-005],[[3095,2],[3143,2]]], +[3120,[8864.31,4757.89,0],[[3096,2],[3112,2]]], [3121,[4457.07,1005.79,0],[[3097,2],[3106,2]]], [3122,[8875.11,2357.87,0],[[3099,2],[3144,2],[3122,2]]], [3123,[8800.9,2215.18,0],[[3099,2],[3145,2]]], [3124,[8768.83,2512.26,-7.62939e-006],[[3099,2],[3146,2]]], [3125,[8292.98,1588.02,7.62939e-006],[[3100,2],[3147,2]]], +[3126,[8253.09,1842.28,-1.52588e-005],[[3101,2],[3148,2]]], [3127,[8127.28,1412.16,0],[[3102,2],[3149,2]]], [3128,[8417.11,2343.14,0],[[3103,2],[3150,2]]], [3129,[6699,980.355,0],[[3104,2],[3151,2]]], [3130,[5548.88,955.159,0],[[3107,2],[3152,2]]], [3131,[5025.46,720.751,0],[[3108,2],[3153,2]]], +[3132,[5991.96,1227.46,0],[[3109,2],[3154,2]]], [3133,[5907.5,1229.08,0],[[3109,2],[3155,2]]], [3134,[9899.31,5113.47,-3.8147e-006],[[3110,2],[3156,2]]], [3135,[8741.88,7208.85,0],[[3111,2],[3157,2],[3135,2],[3158,2]]], [3136,[9052.44,4808.14,7.62939e-006],[[3112,2],[3159,2]]], [3137,[8762.57,9867.73,0],[[3113,2],[3160,2]]], +[3138,[8802.67,8222.15,0],[[3114,2],[3161,2]]], [3139,[9162.38,9047.85,7.62939e-006],[[3115,2],[3162,2]]], [3140,[9344.29,8595.4,0],[[3116,2],[3163,2]]], [3141,[8791.32,3472.99,0],[[3117,2],[3164,2]]], [3142,[8954.92,3733.08,1.52588e-005],[[3118,2],[3165,2]]], [3143,[8171.13,3676.83,0],[[3119,2],[3166,2]]], +[3144,[8948.71,2297.13,0],[[3122,2],[3167,2]]], [3145,[8923.12,2176.22,0],[[3123,2],[3168,2]]], [3146,[8670.48,2610.15,0],[[3124,2],[3169,2]]], [3147,[8387.51,1510.58,0],[[3125,2],[3170,2]]], [3148,[8393.96,1872.32,0],[[3126,2],[3171,2]]], [3149,[8153.36,1296.89,0],[[3127,2],[3172,2]]], +[3150,[8475.34,2315.99,0],[[3128,2],[3173,2]]], [3151,[6764.13,952.543,0],[[3129,2],[3174,2]]], [3152,[5636.7,964.527,0],[[3130,2],[3175,2]]], [3153,[4988.13,614.26,0],[[3131,2],[3176,2]]], [3154,[6089.38,1138.93,0],[[3132,2],[3177,2]]], [3155,[5842.03,1202.1,0],[[3133,2],[3178,2]]], +[3156,[9864.02,5053.95,-1.27157e-006],[[3134,2],[3179,2],[3156,2]]], [3157,[8744.53,7197.43,0],[[3135,2]]], [3158,[8719.2,7297.33,-7.62939e-006],[[3135,2],[3180,2]]], [3159,[9079.42,4803.27,-2.54313e-006],[[3136,2],[3181,2],[3182,2]]], [3160,[8892.15,9873.16,7.62939e-006],[[3137,2],[3183,2]]], [3161,[8803.05,8129.77,7.62939e-006],[[3138,2],[3184,2]]], +[3162,[9082.49,9045.68,0],[[3139,2],[3185,2]]], [3163,[9458.09,8501.45,0],[[3140,2],[3186,2]]], [3164,[8893.43,3418.84,-1.52588e-005],[[3141,2],[3187,2]]], [3165,[9026.2,3810.85,0],[[3142,2],[3188,2]]], [3166,[8235.22,3624.72,0],[[3143,2],[3189,2],[3190,2],[3166,2]]], [3167,[9042.14,2254.74,-7.62939e-006],[[3144,2],[3191,2],[3168,2]]], +[3168,[9069.36,2173.76,-7.62939e-006],[[3145,2],[3167,2],[3191,2]]], [3169,[8663.16,2720.85,0],[[3146,2],[3192,2]]], [3170,[8493.52,1458.66,0],[[3147,2],[3193,2]]], [3171,[8547.21,1944.61,-7.62939e-006],[[3148,2],[3194,2]]], [3172,[8297.7,1298.6,-7.62939e-006],[[3149,2],[3195,2]]], [3173,[8643.7,2245.87,0],[[3150,2],[3196,2]]], +[3174,[6829.27,956.568,-1.52588e-005],[[3151,2],[3197,2]]], [3175,[5709.55,1016.95,1.52588e-005],[[3152,2],[3198,2],[3199,2]]], [3176,[5000.21,478.86,0],[[3153,2],[3200,2]]], [3177,[6089.62,1027.68,-1.52588e-005],[[3154,2],[3201,2]]], [3178,[5776.44,1223.08,0],[[3155,2],[3202,2]]], [3179,[9795.67,4950.91,0],[[3156,2],[3203,2]]], +[3180,[8704.92,7343.65,-7.62939e-006],[[3158,2],[3204,2]]], [3181,[9172.1,4826.49,0],[[3159,2],[3205,2]]], [3182,[9039.01,4727.18,0],[[3159,2],[3206,2]]], [3183,[9009.87,9894.19,-7.62939e-006],[[3160,2],[3207,2]]], [3184,[8823.28,8035.15,0],[[3161,2],[3208,2]]], [3185,[8998.68,9084.33,0],[[3162,2],[3209,2]]], +[3186,[9554.49,8401.36,0],[[3163,2],[3210,2]]], [3187,[9027.42,3465.2,0],[[3164,2],[3211,2]]], [3188,[9009.74,3974.06,-1.52588e-005],[[3165,2],[3212,2]]], [3189,[8349.42,3551.82,0],[[3166,2],[3213,2]]], [3190,[8220.09,3630.93,0],[[3166,2]]], [3191,[9133.28,2182.24,3.8147e-006],[[3167,2],[3168,2],[3214,2],[3215,2]]], +[3192,[8663.25,2794.46,0],[[3169,2],[3216,2]]], [3193,[8612.88,1440.41,0],[[3170,2],[3217,2]]], [3194,[8687.37,1974.62,7.62939e-006],[[3171,2],[3218,2]]], [3195,[8425.92,1364.19,-7.62939e-006],[[3172,2],[3219,2]]], [3196,[8720.26,2194.71,-5.08626e-006],[[3173,2],[3220,2],[3218,2]]], [3197,[6918.56,924.365,0],[[3174,2],[3221,2]]], +[3198,[5760.73,945.005,0],[[3175,2],[3222,2]]], [3199,[5711.45,1104.01,-1.52588e-005],[[3175,2],[3223,2]]], [3200,[5068.27,419.21,0],[[3176,2],[3224,2]]], [3201,[6062.92,975.456,0],[[3177,2],[3225,2]]], [3202,[5707.37,1208.82,0],[[3178,2],[3223,2]]], [3203,[9710.04,4857.6,0],[[3179,2],[3226,2]]], +[3204,[8739.58,7402.86,7.62939e-006],[[3180,2],[3227,2]]], [3205,[9269.81,4898.22,0],[[3181,2],[3228,2]]], [3206,[8966.92,4658.38,0],[[3182,2],[3229,2]]], [3207,[9138.85,9834.58,0],[[3183,2],[3230,2]]], [3208,[8830.03,7959.46,0],[[3184,2],[3231,2]]], [3209,[8889.61,9135.2,0],[[3185,2],[3232,2]]], +[3210,[9592.93,8510.67,0],[[3186,2],[3233,2]]], [3211,[9153.48,3457.55,0],[[3187,2],[3234,2]]], [3212,[9014.13,4132.15,0],[[3188,2],[3235,2]]], [3213,[8420.55,3479.51,-1.52588e-005],[[3189,2],[3236,2]]], [3214,[9165.05,2146.97,5.08626e-006],[[3191,2],[3237,2],[3238,2]]], [3215,[9320.16,2199,0],[[3191,2],[3239,2]]], +[3216,[8588.01,2881.11,0],[[3192,2],[3240,2]]], [3217,[8714.72,1472.41,0],[[3193,2],[3241,2]]], [3218,[8643.82,2074.53,7.62939e-006],[[3194,2],[3196,2]]], [3219,[8587.84,1405.36,0],[[3195,2],[3242,2]]], [3220,[8910.87,2101.78,0],[[3196,2],[3243,2]]], [3221,[6972.85,821.428,-1.01725e-005],[[3197,2],[3244,2],[3245,2]]], +[3222,[5803.66,924.499,-3.05176e-005],[[3198,2],[3222,2]]], [3223,[5687.94,1170.56,0],[[3199,2],[3202,2]]], [3224,[5147.68,355.535,0],[[3200,2],[3246,2]]], [3225,[6011.16,927.444,0],[[3201,2],[3247,2]]], [3226,[9685.52,4786.97,0],[[3203,2],[3248,2]]], [3227,[8811.1,7430.71,0],[[3204,2],[3249,2]]], +[3228,[9386.18,4909.93,7.62939e-006],[[3205,2],[3250,2]]], [3229,[8830.42,4633.13,0],[[3206,2],[3251,2]]], [3230,[9242.78,9752.28,7.62939e-006],[[3207,2],[3252,2]]], [3231,[8857.01,7870.27,0],[[3208,2],[3253,2]]], [3232,[8890.33,9239.23,0],[[3209,2],[3254,2]]], [3233,[9576.83,8670.04,0],[[3210,2],[3255,2]]], +[3234,[9257.67,3425.15,0],[[3211,2],[3256,2]]], [3235,[9062.43,4279.99,0],[[3212,2],[3257,2]]], [3236,[8479.11,3418.62,0],[[3213,2],[3258,2]]], [3237,[9125.04,2101.34,0],[[3214,2],[3259,2],[3243,2]]], [3238,[9293.18,2073.96,-7.62939e-006],[[3214,2],[3260,2]]], [3239,[9473.7,2202.01,0],[[3215,2],[3261,2]]], +[3240,[8548.49,2991.48,0],[[3216,2],[3262,2]]], [3241,[8792.97,1490.16,5.08626e-006],[[3217,2],[3263,2],[3242,2]]], [3242,[8719.74,1437.68,7.62939e-006],[[3219,2],[3241,2]]], [3243,[9073.95,2080.1,0],[[3220,2],[3237,2],[3259,2]]], [3244,[6840.35,734.421,0],[[3221,2],[3264,2]]], [3245,[7077.39,752.369,0],[[3221,2],[3265,2]]], +[3246,[5279.42,396.887,0],[[3224,2],[3266,2]]], [3247,[6014.63,836.223,0],[[3225,2],[3267,2]]], [3248,[9582.69,4776.35,0],[[3226,2],[3250,2]]], [3249,[8856.45,7505.47,0],[[3227,2],[3268,2]]], [3250,[9520.85,4901.14,0],[[3228,2],[3248,2]]], [3251,[8767.11,4536.89,0],[[3229,2],[3269,2]]], +[3252,[9262.18,9626.81,0],[[3230,2],[3270,2]]], [3253,[8915.09,7784.09,0],[[3231,2],[3271,2]]], [3254,[8941.78,9351.55,0],[[3232,2],[3272,2]]], [3255,[9597.94,8803.72,0],[[3233,2],[3273,2]]], [3256,[9338.62,3359.38,0],[[3234,2],[3274,2]]], [3257,[8988.51,4373.67,-7.62939e-006],[[3235,2],[3269,2]]], +[3258,[8560.2,3357.72,0],[[3236,2],[3275,2]]], [3259,[9106.87,2074.04,1.90735e-006],[[3237,2],[3243,2],[3276,2],[3277,2]]], [3260,[9405.98,2031.32,0],[[3238,2],[3278,2]]], [3261,[9506.4,2198.97,0],[[3239,2],[3279,2],[3280,2]]], [3262,[8498.43,3060.87,0],[[3240,2],[3281,2]]], [3263,[8874.68,1490.65,0],[[3241,2],[3282,2],[3283,2]]], +[3264,[6694.93,636.96,0],[[3244,2],[3284,2]]], [3265,[7179.64,704.948,0],[[3245,2],[3285,2]]], [3266,[5384.27,301.043,0],[[3246,2],[3286,2]]], [3267,[6055.25,708.141,0],[[3247,2],[3287,2]]], [3268,[8907.6,7563.37,0],[[3249,2],[3271,2]]], [3269,[8883.48,4443.21,0],[[3251,2],[3257,2]]], +[3270,[9260.1,9611.17,2.54313e-006],[[3252,2],[3288,2],[3289,2]]], [3271,[8971.68,7670.17,0],[[3253,2],[3268,2]]], [3272,[8994.33,9469.42,0],[[3254,2],[3290,2]]], [3273,[9604.09,8945.14,0],[[3255,2],[3291,2]]], [3274,[9410.57,3336.9,0],[[3256,2],[3292,2]]], [3275,[8559.62,3274,1.52588e-005],[[3258,2],[3293,2]]], +[3276,[9299.58,2040.67,7.62939e-006],[[3259,2],[3294,2]]], [3277,[9071.83,1940.02,0],[[3259,2],[3295,2]]], [3278,[9477.25,1968.57,0],[[3260,2],[3296,2],[3294,2]]], [3279,[9542.4,2114.14,-3.8147e-006],[[3261,2],[3297,2]]], [3280,[9507.89,2301.14,-2.54313e-006],[[3261,2],[3298,2],[3299,2]]], [3281,[8495.5,3136.69,0],[[3262,2],[3293,2]]], +[3282,[9037.16,1549.65,0],[[3263,2],[3300,2]]], [3283,[8822.93,1419.66,-7.62939e-006],[[3263,2],[3301,2]]], [3284,[6574.76,545.505,0],[[3264,2],[3302,2]]], [3285,[7265.48,622.092,0],[[3265,2],[3303,2]]], [3286,[5519.67,277.623,1.52588e-005],[[3266,2],[3304,2]]], [3287,[6102.32,602.278,0],[[3267,2],[3305,2]]], +[3288,[9121.86,9614.41,0],[[3270,2],[3290,2]]], [3289,[9330.41,9479.27,0],[[3270,2],[3306,2]]], [3290,[9043.99,9563.32,7.62939e-006],[[3272,2],[3288,2]]], [3291,[9610.44,9100.27,0],[[3273,2],[3307,2]]], [3292,[9483.23,3292.74,0],[[3274,2],[3308,2]]], [3293,[8491.69,3219.25,0],[[3275,2],[3281,2]]], +[3294,[9437.24,1951.55,0],[[3276,2],[3278,2],[3309,2]]], [3295,[9091.75,1869.95,5.08626e-006],[[3277,2],[3295,2],[3310,2]]], [3296,[9458.03,1942.49,0],[[3278,2]]], [3297,[9575.75,2005.09,0],[[3279,2],[3311,2]]], [3298,[9596.9,2344.13,0],[[3280,2],[3312,2],[3313,2]]], [3299,[9484.14,2374.64,0],[[3280,2],[3299,2],[3314,2]]], +[3300,[9097.02,1617.57,0],[[3282,2],[3315,2],[3316,2]]], [3301,[8777.12,1390.13,0],[[3283,2],[3317,2]]], [3302,[6518.68,435.441,0],[[3284,2],[3318,2]]], [3303,[7332.82,551.464,0],[[3285,2],[3319,2]]], [3304,[5631.28,199.676,1.52588e-005],[[3286,2],[3320,2]]], [3305,[6188.08,548.401,0],[[3287,2],[3321,2]]], +[3306,[9419.11,9358.06,-7.62939e-006],[[3289,2],[3307,2]]], [3307,[9545.75,9210.74,0],[[3291,2],[3306,2]]], [3308,[9498.37,3223.79,0],[[3292,2],[3322,2]]], [3309,[9495.76,1818.88,0],[[3294,2],[3323,2]]], [3310,[9048.6,1785.44,0],[[3295,2],[3316,2]]], [3311,[9611.91,1898.11,3.8147e-006],[[3297,2],[3324,2]]], +[3312,[9755.65,2326,0],[[3298,2],[3325,2]]], [3313,[9670.26,2411.44,0],[[3298,2],[3326,2]]], [3314,[9468.85,2453.98,0],[[3299,2],[3327,2]]], [3315,[9283.67,1596.04,0],[[3300,2],[3328,2]]], [3316,[9032.67,1718.18,7.62939e-006],[[3300,2],[3310,2]]], [3317,[8730.51,1328.69,0],[[3301,2],[3329,2]]], +[3318,[6497.09,327.853,0],[[3302,2],[3330,2]]], [3319,[7451.02,564.272,7.62939e-006],[[3303,2],[3331,2]]], [3320,[5786.81,154.298,1.52588e-005],[[3304,2],[3332,2]]], [3321,[6292.09,505.555,0],[[3305,2],[3333,2]]], [3322,[9566.35,3187.48,0],[[3308,2],[3334,2]]], [3323,[9467.75,1669.71,0],[[3309,2],[3335,2]]], +[3324,[9599.92,1794.68,7.62939e-006],[[3311,2],[3336,2]]], [3325,[9882.48,2264.79,-1.52588e-005],[[3312,2],[3337,2]]], [3326,[9715,2497.63,7.62939e-006],[[3313,2],[3338,2]]], [3327,[9481.7,2552.95,0],[[3314,2],[3339,2]]], [3328,[9424.8,1510.65,0],[[3315,2],[3340,2],[3335,2]]], [3329,[8708.26,1249.06,-7.62939e-006],[[3317,2],[3341,2]]], +[3330,[6387.67,325.291,0],[[3318,2],[3333,2]]], [3331,[7528.97,653.197,-7.62939e-006],[[3319,2],[3342,2]]], [3332,[5949.2,133.33,-1.52588e-005],[[3320,2],[3343,2]]], [3333,[6358.03,376.89,0],[[3321,2],[3330,2],[3344,2]]], [3334,[9588.53,3117.03,0],[[3322,2],[3345,2]]], [3335,[9494.32,1524.95,0],[[3323,2],[3328,2],[3340,2]]], +[3336,[9591.48,1690.32,0],[[3324,2],[3346,2]]], [3337,[10013,2236.11,0],[[3325,2],[3347,2]]], [3338,[9722.49,2602.08,0],[[3326,2],[3348,2]]], [3339,[9412.45,2617.41,0],[[3327,2],[3349,2]]], [3340,[9540.18,1447.09,0],[[3328,2],[3335,2],[3350,2],[3351,2]]], [3341,[8633.61,1203.09,0],[[3329,2],[3352,2]]], +[3342,[7634.51,682.555,0],[[3331,2],[3353,2]]], [3343,[6081.03,159.055,0],[[3332,2],[3354,2]]], [3344,[6362.71,356.822,3.8147e-006],[[3333,2],[3344,2],[3355,2]]], [3345,[9595.32,3090.78,0],[[3334,2],[3356,2],[3345,2],[3357,2]]], [3346,[9653.13,1593.64,-3.8147e-006],[[3336,2],[3358,2]]], [3347,[10126.3,2134.88,0],[[3337,2],[3359,2]]], +[3348,[9724.6,2689.91,7.62939e-006],[[3338,2],[3360,2]]], [3349,[9353.39,2656.83,0],[[3339,2],[3361,2]]], [3350,[9525.34,1350.65,0],[[3340,2],[3362,2]]], [3351,[9701.57,1348.04,1.90735e-006],[[3340,2],[3358,2],[3363,2],[3364,2]]], [3352,[8578.56,1153.79,-7.62939e-006],[[3341,2],[3365,2]]], [3353,[7710.15,691.455,0],[[3342,2],[3366,2]]], +[3354,[6208.76,175.666,0],[[3343,2],[3367,2]]], [3355,[6264.87,364.388,7.62939e-006],[[3344,2],[3367,2]]], [3356,[9547.01,3043.29,7.62939e-006],[[3345,2],[3368,2]]], [3357,[9718.39,3097.31,0],[[3345,2],[3369,2]]], [3358,[9626.19,1447.31,0],[[3346,2],[3351,2]]], [3359,[10228,2174.73,0],[[3347,2]]], +[3360,[9746.62,2785.93,0],[[3348,2],[3370,2]]], [3361,[9356.09,2753.81,0],[[3349,2],[3371,2]]], [3362,[9491.43,1260.91,0],[[3350,2],[3372,2]]], [3363,[9878.81,1262.67,0],[[3351,2],[3373,2]]], [3364,[9886.01,1294.23,3.8147e-006],[[3351,2],[3374,2]]], [3365,[8581.23,1029.69,0],[[3352,2],[3375,2]]], +[3366,[7811.57,677.871,0],[[3353,2],[3376,2]]], [3367,[6232.89,278.38,0],[[3354,2],[3355,2]]], [3368,[9476.68,3033.92,0],[[3356,2],[3377,2]]], [3369,[9800.48,3048.71,0],[[3357,2],[3378,2]]], [3370,[9749.66,2881.02,7.62939e-006],[[3360,2],[3378,2]]], [3371,[9384.72,2805.67,7.62939e-006],[[3361,2],[3379,2]]], +[3372,[9406.01,1184.92,0],[[3362,2],[3380,2]]], [3373,[10006.3,1207.89,0],[[3363,2],[3381,2]]], [3374,[10022,1251.73,0],[[3364,2],[3382,2]]], [3375,[8649.7,910.269,0],[[3365,2],[3383,2]]], [3376,[7876.44,610.654,0],[[3366,2],[3384,2]]], [3377,[9463.67,2967.59,0],[[3368,2],[3379,2]]], +[3378,[9772.61,2975.17,0],[[3369,2],[3370,2]]], [3379,[9438.94,2887.77,0],[[3371,2],[3377,2]]], [3380,[9344.65,1105.52,7.62939e-006],[[3372,2],[3385,2]]], [3381,[10120.6,1124.82,-1.90735e-006],[[3373,2],[3386,2]]], [3382,[10192.8,1203.41,0],[[3374,2],[3387,2]]], [3383,[8713.89,816.409,0],[[3375,2],[3388,2]]], +[3384,[7948.11,538.752,0],[[3376,2],[3389,2]]], [3385,[9292.89,1016.03,0],[[3380,2],[3390,2]]], [3386,[10206.9,1013.69,1.90735e-006],[[3381,2],[3391,2]]], [3387,[10230.6,1189.35,0],[[3382,2]]], [3388,[8699.94,677.976,0],[[3383,2],[3392,2]]], [3389,[8030.31,519.079,0],[[3384,2],[3393,2]]], +[3390,[9275.19,944.66,0],[[3385,2],[3394,2]]], [3391,[10235.3,952.376,0],[[3386,2]]], [3392,[8710.18,611.227,0],[[3388,2],[3395,2]]], [3393,[8137.35,453.735,7.62939e-006],[[3389,2],[3396,2]]], [3394,[9283.88,885.302,0],[[3394,2],[3397,2]]], [3395,[8789.52,611.52,0],[[3392,2],[3398,2]]], +[3396,[8163.14,444.274,2.54313e-006],[[3393,2],[3399,2],[3400,2]]], [3397,[9225.27,831.491,0],[[3394,2],[3404,2]]], [3398,[8859.2,570.533,0],[[3395,2],[3401,2]]], [3399,[8274.36,476.688,0],[[3396,2],[3402,2]]], [3400,[8122.98,363.424,-7.62939e-006],[[3396,2],[3403,2]]], [3401,[8915.99,531.304,0],[[3398,2],[3405,2]]], +[3402,[8359.38,498.235,-7.62939e-006],[[3399,2],[3406,2]]], [3403,[8099.56,294.099,0],[[3400,2],[3407,2]]], [3404,[9172.53,754.718,7.62939e-006],[[3397,2],[3408,2]]], [3405,[8946.73,480.071,0],[[3401,2],[3409,2]]], [3406,[8414.18,429.378,0],[[3402,2],[3410,2]]], [3407,[8071.45,205.568,0],[[3403,2],[3411,2]]], +[3408,[9169.9,674.795,0],[[3404,2],[3412,2]]], [3409,[8995.15,439.787,0],[[3405,2],[3413,2]]], [3410,[8472.5,377.852,7.62939e-006],[[3406,2],[3414,2]]], [3411,[8070.28,145.846,0],[[3407,2],[3415,2]]], [3412,[9193.42,643.86,2.54313e-006],[[3408,2],[3412,2],[3416,2]]], [3413,[9014.59,367.183,0],[[3409,2],[3417,2]]], +[3414,[8557.28,337.1,0],[[3410,2],[3418,2]]], [3415,[8169.23,194.151,0],[[3411,2],[3419,2]]], [3416,[9205.23,610.583,0],[[3412,2],[3416,2],[3420,2]]], [3417,[9024.67,292.94,3.8147e-006],[[3413,2],[3421,2]]], [3418,[8650.26,276.207,0],[[3414,2],[3422,2]]], [3419,[8258.82,212.302,0],[[3415,2],[3423,2]]], +[3420,[9221.72,560.717,0],[[3416,2],[3420,2],[3424,2]]], [3421,[9043.97,207.505,-1.27157e-006],[[3417,2],[3425,2],[3426,2]]], [3422,[8706.94,239.202,0],[[3418,2],[3427,2],[3425,2]]], [3423,[8308.59,214.742,0],[[3419,2],[3428,2],[3423,2]]], [3424,[9272.37,476.305,0],[[3420,2],[3429,2]]], [3425,[8886.96,195.11,0],[[3421,2],[3422,2],[3430,2]]], +[3426,[9207.65,154.628,0],[[3421,2],[3431,2]]], [3427,[8835.99,203.693,0],[[3422,2],[3432,2]]], [3428,[8399.05,231.624,0],[[3423,2],[3433,2]]], [3429,[9282.61,411.605,0],[[3424,2],[3434,2]]], [3430,[8849.8,194.794,0],[[3425,2]]], [3431,[9295.65,182.228,9.53674e-007],[[3426,2],[3435,2],[3431,2],[3436,2]]], +[3432,[8715.52,185.368,0],[[3427,2],[3437,2]]], [3433,[8358.94,127.987,0],[[3428,2],[3438,2]]], [3434,[9279.29,377.45,0],[[3429,2],[3439,2],[3436,2],[3434,2]]], [3435,[9419.9,165.753,1.90735e-006],[[3431,2],[3440,2]]], [3436,[9289.05,250.295,0],[[3431,2],[3434,2],[3441,2]]], [3437,[8570.9,182.44,0],[[3432,2],[3438,2]]], +[3438,[8440.04,108.08,0],[[3433,2],[3437,2]]], [3439,[9303.1,285.719,0],[[3434,2],[3439,2]]], [3440,[9458.25,82.0244,0],[[3435,2],[3442,2]]], [3441,[9304.86,263.177,-3.8147e-006],[[3436,2]]], [3442,[9580.92,30.4989,0],[[3440,2],[3443,2]]], [3443,[9586.3,9.50179,0],[[3442,2]]]]; diff --git a/A3-Antistasi/REINF/FIAinit.sqf b/A3-Antistasi/REINF/FIAinit.sqf deleted file mode 100644 index 2c382c955a..0000000000 --- a/A3-Antistasi/REINF/FIAinit.sqf +++ /dev/null @@ -1,313 +0,0 @@ -private ["_unit","_victim","_killer","_skill","_nameX","_typeX"]; - -_unit = _this select 0; - -[_unit] call A3A_fnc_initRevive; -_unit setVariable ["spawner",true,true]; - -_unit allowFleeing 0; -_typeX = typeOf _unit; -//_skill = if (_typeX in sdkTier1) then {(skillFIA * 0.2)} else {if (_typeX in sdkTier2) then {0.1 + (skillFIA * 0.2)} else {0.1 + (skillFIA * 0.2)}}; -_skill = skillFIA * 0.05 * skillMult; -if (!activeGREF) then {if (not((uniform _unit) in uniformsSDK)) then {[_unit] call A3A_fnc_reDress}}; - -if ((!isMultiplayer) and (leader _unit == theBoss)) then {_skill = _skill + 0.1}; -_unit setSkill _skill; -if (_typeX in SDKSniper) then - { - if (count unlockedSN > 0) then - { - _magazines = getArray (configFile / "CfgWeapons" / (primaryWeapon _unit) / "magazines"); - {_unit removeMagazines _x} forEach _magazines; - _unit removeWeaponGlobal (primaryWeapon _unit); - [_unit, selectRandom unlockedSN, 8, 0] call BIS_fnc_addWeapon; - if (count unlockedOptics > 0) then - { - _compatibleX = [primaryWeapon _unit] call BIS_fnc_compatibleItems; - _potentials = unlockedOptics select {_x in _compatibleX}; - if (count _potentials > 0) then {_unit addPrimaryWeaponItem (_potentials select 0)}; - }; - } - else - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - }; - } -else - { - if (_unit skill "aimingAccuracy" > 0.35) then {_unit setSkill ["aimingAccuracy",0.35]}; - if (random 40 < skillFIA) then - { - if (getNumber (configfile >> "CfgWeapons" >> headgear _unit >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") < 2) then {removeHeadgear _unit;_unit addHeadgear (selectRandom helmets)}; - }; - if ((_typeX in SDKMil) or (_typeX == staticCrewTeamPlayer)) then - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - if ((loadAbs _unit < 340) and (_typeX in SDKMil)) then - { - if ((random 20 < skillFIA) and (count unlockedAA > 0)) then - { - _unit addbackpack (unlockedBackpacks select 0); - [_unit, selectRandom unlockedAA, 2, 0] call BIS_fnc_addWeapon; - //removeBackpack _unit; - }; - }; - } - else - { - if (_typeX in SDKMG) then - { - if (count unlockedMG > 0) then - { - [_unit,unlockedMG] call A3A_fnc_randomRifle; - } - else - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - }; - } - else - { - if (_typeX in SDKGL) then - { - if (count unlockedGL > 0) then - { - [_unit,unlockedGL] call A3A_fnc_randomRifle; - } - else - { - [_unit,unlockedRifles] call A3A_fnc_randomRifle; - }; - } - else - { - if (_typeX != SDKUnarmed) then {[_unit,unlockedRifles] call A3A_fnc_randomRifle}; - if (_typeX in SDKExp) then - { - _unit setUnitTrait ["explosiveSpecialist",true]; - } - else - { - if (_typeX in SDKMedic) then - { - _unit setUnitTrait ["medic",true]; - if ({_x == "FirstAidKit"} count (items _unit) < 10) then - { - for "_i" from 1 to 10 do {_unit addItemToBackpack "FirstAidKit"}; - }; - } - else - { - if (_typeX in SDKATman) then - { - if !(unlockedAT isEqualTo []) then - { - _rlauncher = selectRandom unlockedAT; - if (_rlauncher != secondaryWeapon _unit) then - { - _magazines = getArray (configFile / "CfgWeapons" / (secondaryWeapon _unit) / "magazines"); - {_unit removeMagazines _x} forEach _magazines; - _unit removeWeaponGlobal (secondaryWeapon _unit); - [_unit, _rlauncher, 4, 0] call BIS_fnc_addWeapon; - }; - } - else - { - if (hasIFA) then - { - [_unit, "LIB_PTRD", 10, 0] call BIS_fnc_addWeapon; - }; - }; - } - else - { - if (_typeX in squadLeaders) then - { - _unit setskill ["courage",_skill + 0.2]; - _unit setskill ["commanding",_skill + 0.2]; - }; - }; - }; - }; - }; - }; - }; - }; - -_unit setUnitTrait ["camouflageCoef",0.8]; -_unit setUnitTrait ["audibleCoef",0.8]; - -_unit selectWeapon (primaryWeapon _unit); - -if (!haveRadio) then - { - if ((_unit != leader _unit) and (_typeX != staticCrewTeamPlayer)) then {_unit unlinkItem (_unit call A3A_fnc_getRadio)}; - }; - -if ({if (_x in smokeX) exitWith {1}} count unlockedMagazines > 0) then {_unit addMagazines [selectRandom smokeX,2]}; -if !(hasIFA) then - { - if ((sunOrMoon < 1) and (_typeX != SDKUnarmed)) then - { - if (haveNV) then - { - if (hmd _unit == "") then {_unit linkItem (selectRandom NVGoggles)}; - _pointers = pointers arrayIntersect unlockedItems; - if !(_pointers isEqualTo []) then - { - _pointers = _pointers arrayIntersect ((primaryWeapon _unit) call BIS_fnc_compatibleItems); - if !(_pointers isEqualTo []) then - { - _pointer = selectRandom _pointers; - _unit addPrimaryWeaponItem _pointer; - _unit assignItem _pointer; - _unit enableIRLasers true; - }; - }; - } - else - { - _hmd = hmd _unit; - if (_hmd != "") then - { - _unit unassignItem _hmd; - _unit removeItem _hmd; - }; - _flashlights = flashlights arrayIntersect unlockedItems; - if !(_flashlights isEqualTo []) then - { - _flashlights = _flashlights arrayIntersect ((primaryWeapon _unit) call BIS_fnc_compatibleItems); - if !(_flashlights isEqualTo []) then - { - _flashlight = selectRandom _flashlights; - _unit addPrimaryWeaponItem _flashlight; - _unit assignItem _flashlight; - _unit enableGunLights _flashlight; - }; - }; - }; - } - else - { - _hmd = hmd _unit; - if (_hmd != "") then - { - _unit unassignItem _hmd; - _unit removeItem _hmd; - }; - }; - }; -/* -if ((_typeX != "B_G_Soldier_M_F") and (_typeX != "B_G_Sharpshooter_F")) then {if (_aiming > 0.35) then {_aiming = 0.35}}; - -_unit setskill ["aimingAccuracy",_aiming]; -_unit setskill ["spotDistance",_spotD]; -_unit setskill ["spotTime",_spotT]; -_unit setskill ["courage",_cour]; -_unit setskill ["commanding",_comm]; -_unit setskill ["aimingShake",_aimingSh]; -_unit setskill ["aimingSpeed",_aimingSp]; -_unit setskill ["reloadSpeed",_reload]; -*/ -if (player == leader _unit) then - { - _unit setVariable ["owner",player]; - _EHkilledIdx = _unit addEventHandler ["killed", { - _victim = _this select 0; - [_victim] spawn A3A_fnc_postmortem; - _killer = _this select 1; - if !(hasIFA) then {arrayids pushBackUnique (name _victim)}; - if (side _killer == Occupants) then - { - _nul = [0.25,0,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; - [-0.25,0] remoteExec ["A3A_fnc_prestige",2]; - } - else - { - if (side _killer == Invaders) then - { - [0,-0.25] remoteExec ["A3A_fnc_prestige",2] - } - else - { - if (isPlayer _killer) then - { - _killer addRating 1000; - }; - }; - }; - _victim setVariable ["spawner",nil,true]; - }]; - if ((typeOf _unit != SDKUnarmed) and !hasIFA) then - { - _idUnit = arrayids call BIS_Fnc_selectRandom; - arrayids = arrayids - [_idunit]; - _unit setIdentity _idUnit; - }; - if (captive player) then {[_unit] spawn A3A_fnc_undercoverAI}; - - _unit setVariable ["rearming",false]; - if ((!haveRadio) and !(hasIFA)) then - { - while {alive _unit} do - { - sleep 10; - if (([player] call A3A_fnc_hasRadio) && (_unit call A3A_fnc_getRadio != "")) exitWith {_unit groupChat format ["This is %1, radiocheck OK",name _unit]}; - if (unitReady _unit) then - { - if ((alive _unit) and (_unit distance (getMarkerPos respawnTeamPlayer) > 50) and (_unit distance leader group _unit > 500) and ((vehicle _unit == _unit) or ((typeOf (vehicle _unit)) in arrayCivVeh))) then - { - hint format ["%1 lost communication, he will come back with you if possible", name _unit]; - [_unit] join stragglers; - if ((vehicle _unit isKindOf "StaticWeapon") or (isNull (driver (vehicle _unit)))) then {unassignVehicle _unit; [_unit] orderGetIn false}; - _unit doMove position player; - _timeX = time + 900; - waitUntil {sleep 1;(!alive _unit) or (_unit distance player < 500) or (time > _timeX)}; - if ((_unit distance player >= 500) and (alive _unit)) then {_unit setPos (getMarkerPos respawnTeamPlayer)}; - [_unit] join group player; - }; - }; - }; - }; - } -else - { - _EHkilledIdx = _unit addEventHandler ["killed", { - _victim = _this select 0; - _killer = _this select 1; - [_victim] remoteExec ["A3A_fnc_postmortem",2]; - if ((isPlayer _killer) and (side _killer == teamPlayer)) then - { - if (!isMultiPlayer) then - { - _nul = [0,20] remoteExec ["A3A_fnc_resourcesFIA",2]; - _killer addRating 1000; - }; - } - else - { - if (side _killer == Occupants) then - { - _nul = [0.25,0,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; - [-0.25,0] remoteExec ["A3A_fnc_prestige",2]; - } - else - { - if (side _killer == Invaders) then - { - [0,-0.25] remoteExec ["A3A_fnc_prestige",2] - } - else - { - if (isPlayer _killer) then - { - _killer addRating 1000; - }; - }; - }; - }; - _victim setVariable ["spawner",nil,true]; - }]; - }; - - diff --git a/A3-Antistasi/REINF/dismissSquad.sqf b/A3-Antistasi/REINF/dismissSquad.sqf index e50dcbc9b1..04ea4470c0 100644 --- a/A3-Antistasi/REINF/dismissSquad.sqf +++ b/A3-Antistasi/REINF/dismissSquad.sqf @@ -20,51 +20,60 @@ if (_leave) exitWith {hint "You cannot dismiss NATO groups"}; _pos = getMarkerPos respawnTeamPlayer; { -theBoss sideChat format ["%2, I'm sending %1 back to base", _x,name petros]; -theBoss hcRemoveGroup _x; -_wp = _x addWaypoint [_pos, 0]; -_wp setWaypointType "MOVE"; -sleep 3} forEach _groups; + theBoss sideChat format ["%2, I'm sending %1 back to base", _x,name petros]; + theBoss hcRemoveGroup _x; + _wp = _x addWaypoint [_pos, 0]; + _wp setWaypointType "MOVE"; + sleep 3 +} forEach _groups; sleep 100; -{_groupX = _x; -{ +private _assignedVehicles = []; -if (alive _x) then +{ + _groupX = _x; { - _hr = _hr + 1; - _resourcesFIA = _resourcesFIA + (server getVariable [typeOf _x,0]); - if (!isNull (assignedVehicle _x)) then + if (alive _x) then { - _veh = assignedVehicle _x; - if ((typeOf _veh) in vehFIA) then + _hr = _hr + 1; + _resourcesFIA = _resourcesFIA + (server getVariable [typeOf _x,0]); + if (!isNull (assignedVehicle _x)) then { - _resourcesFIA = _resourcesFIA + ([(typeOf _veh)] call A3A_fnc_vehiclePrice); - if (count attachedObjects _veh > 0) then + _assignedVehicles pushBackUnique (assignedVehicle _x); + }; + _backpck = backpack _x; + if (_backpck != "") then + { + switch (_backpck) do { - _subVeh = (attachedObjects _veh) select 0; - _resourcesFIA = _resourcesFIA + ([(typeOf _subVeh)] call A3A_fnc_vehiclePrice); - deleteVehicle _subVeh; + case MortStaticSDKB: {_resourcesFIA = _resourcesFIA + ([SDKMortar] call A3A_fnc_vehiclePrice)}; + case AAStaticSDKB: {_resourcesFIA = _resourcesFIA + ([staticAAteamPlayer] call A3A_fnc_vehiclePrice)}; + case MGStaticSDKB: {_resourcesFIA = _resourcesFIA + ([SDKMGStatic] call A3A_fnc_vehiclePrice)}; + case ATStaticSDKB: {_resourcesFIA = _resourcesFIA + ([staticATteamPlayer] call A3A_fnc_vehiclePrice)}; }; - deleteVehicle _veh; }; }; - _backpck = backpack _x; - if (_backpck != "") then + deleteVehicle _x; + } forEach units _groupX; + deleteGroup _groupX; +} forEach _groups; + +{ + private _veh = _x; + if ((typeOf _veh) in vehFIA) then + { + _resourcesFIA = _resourcesFIA + ([(typeOf _veh)] call A3A_fnc_vehiclePrice); + if (count attachedObjects _veh > 0) then { - switch (_backpck) do - { - case MortStaticSDKB: {_resourcesFIA = _resourcesFIA + ([SDKMortar] call A3A_fnc_vehiclePrice)}; - case AAStaticSDKB: {_resourcesFIA = _resourcesFIA + ([staticAAteamPlayer] call A3A_fnc_vehiclePrice)}; - case MGStaticSDKB: {_resourcesFIA = _resourcesFIA + ([SDKMGStatic] call A3A_fnc_vehiclePrice)}; - case ATStaticSDKB: {_resourcesFIA = _resourcesFIA + ([staticATteamPlayer] call A3A_fnc_vehiclePrice)}; - }; + _subVeh = (attachedObjects _veh) select 0; + _resourcesFIA = _resourcesFIA + ([(typeOf _subVeh)] call A3A_fnc_vehiclePrice); + deleteVehicle _subVeh; }; + deleteVehicle _veh; }; -deleteVehicle _x; -} forEach units _groupX; -deleteGroup _groupX;} forEach _groups; +} forEach _assignedVehicles; + _nul = [_hr,_resourcesFIA] remoteExec ["A3A_fnc_resourcesFIA",2]; diff --git a/A3-Antistasi/Scripts/UPSMON.sqf b/A3-Antistasi/Scripts/UPSMON.sqf index 1ac0f94fb6..95246f6189 100644 --- a/A3-Antistasi/Scripts/UPSMON.sqf +++ b/A3-Antistasi/Scripts/UPSMON.sqf @@ -66,7 +66,7 @@ _grp setvariable ["UPSMON_Origin",[_currpos,_behaviour,_speed,_formation,_member // == get the name of area marker ============================================== _areamarker = _this select 1; -if (typename _areamarker != "STRING" || isNil ("_areamarker")) exitWith +if (!(_areamarker isEqualType "STRING") || isNil ("_areamarker")) exitWith { hint "UPSMON: Area marker not defined.\n(Typo, or name not enclosed in quotation marks?)"; }; diff --git a/A3-Antistasi/Scripts/UPSMON/COMMON/Core/fnc/UPSMON_Getnearestplayer.sqf b/A3-Antistasi/Scripts/UPSMON/COMMON/Core/fnc/UPSMON_Getnearestplayer.sqf index 9420f3c54f..17d195f040 100644 --- a/A3-Antistasi/Scripts/UPSMON/COMMON/Core/fnc/UPSMON_Getnearestplayer.sqf +++ b/A3-Antistasi/Scripts/UPSMON/COMMON/Core/fnc/UPSMON_Getnearestplayer.sqf @@ -28,7 +28,7 @@ _nearest = objNull; }; }; }; -} forEach playableUnits; +} forEach (call A3A_fnc_playableUnits); //playableUnits; _nearest diff --git a/A3-Antistasi/Scripts/UPSMON/COMMON/Group/fnc/UPSMON_Supressfire.sqf b/A3-Antistasi/Scripts/UPSMON/COMMON/Group/fnc/UPSMON_Supressfire.sqf index a41b2a65b9..f1dbc7306d 100644 --- a/A3-Antistasi/Scripts/UPSMON/COMMON/Group/fnc/UPSMON_Supressfire.sqf +++ b/A3-Antistasi/Scripts/UPSMON/COMMON/Group/fnc/UPSMON_Supressfire.sqf @@ -12,7 +12,7 @@ while {_timeout > time && {alive _x} count _units > 0} do { _unit = _x; _target = _targetpos; - If (typename _targetpos == "ARRAY") then + If (_targetpos isEqualType []) then { _Pos = [_targetpos,[0,20],[0,360],0,[0,100],0] call UPSMON_pos; _target = createVehicle ["UserTexture1m_F",[_Pos select 0,_Pos select 1,1], [], 0, "NONE"]; diff --git a/A3-Antistasi/Scripts/UPSMON/COMMON/Params/fnc/UPSMON_GetParams.sqf b/A3-Antistasi/Scripts/UPSMON/COMMON/Params/fnc/UPSMON_GetParams.sqf index 6758140bc9..2a47f7a458 100644 --- a/A3-Antistasi/Scripts/UPSMON/COMMON/Params/fnc/UPSMON_GetParams.sqf +++ b/A3-Antistasi/Scripts/UPSMON/COMMON/Params/fnc/UPSMON_GetParams.sqf @@ -18,7 +18,7 @@ _UCthis = []; for [{_i=0},{_i 0) then { diff --git a/A3-Antistasi/Scripts/UPSMON/COMMON/buildings/fnc/UPSMON_Checkfreebldpos2.sqf b/A3-Antistasi/Scripts/UPSMON/COMMON/buildings/fnc/UPSMON_Checkfreebldpos2.sqf index e697260af0..b3096e686b 100644 --- a/A3-Antistasi/Scripts/UPSMON/COMMON/buildings/fnc/UPSMON_Checkfreebldpos2.sqf +++ b/A3-Antistasi/Scripts/UPSMON/COMMON/buildings/fnc/UPSMON_Checkfreebldpos2.sqf @@ -19,7 +19,7 @@ _unitnear = []; { _id = _id + 1; - If (typename _x == "ARRAY") then + If (_x isEqualType []) then { _altura = _x; If (count _altura > 0) then diff --git a/A3-Antistasi/Scripts/UPSMON/COMMON/terrain/fnc/UPSMON_TerraCognita.sqf b/A3-Antistasi/Scripts/UPSMON/COMMON/terrain/fnc/UPSMON_TerraCognita.sqf index 9881fef958..1c7e4d7704 100644 --- a/A3-Antistasi/Scripts/UPSMON/COMMON/terrain/fnc/UPSMON_TerraCognita.sqf +++ b/A3-Antistasi/Scripts/UPSMON/COMMON/terrain/fnc/UPSMON_TerraCognita.sqf @@ -11,7 +11,7 @@ _samples = _this select 1; _rds = 100; if ((count _this) > 2) then {_rds = _this select 2}; -if !((typeName _position) == "ARRAY") then {_position = getPosATL _position}; +if !(_position isEqualType []) then {_position = getPosATL _position}; _posX = _position select 0; _posY = _position select 1; diff --git a/A3-Antistasi/Scripts/UPSMON/COMMON/unit/fnc/UPSMON_dowatch.sqf b/A3-Antistasi/Scripts/UPSMON/COMMON/unit/fnc/UPSMON_dowatch.sqf index d474c5b09a..5e86e31fb3 100644 --- a/A3-Antistasi/Scripts/UPSMON/COMMON/unit/fnc/UPSMON_dowatch.sqf +++ b/A3-Antistasi/Scripts/UPSMON/COMMON/unit/fnc/UPSMON_dowatch.sqf @@ -17,7 +17,7 @@ _target = _this select 1; _height = 1; If (count _this > 2) then {_height = _this select 2}; -If (typename _target == "ARRAY") then +If (_target isEqualType []) then { _target = [(_this select 1) select 0,(_this select 1) select 1,_height]; } diff --git a/A3-Antistasi/Scripts/UPSMON/COMMON/unit/fnc/UPSMON_throw_stone.sqf b/A3-Antistasi/Scripts/UPSMON/COMMON/unit/fnc/UPSMON_throw_stone.sqf index 2e749e70d8..5805d81f25 100644 --- a/A3-Antistasi/Scripts/UPSMON/COMMON/unit/fnc/UPSMON_throw_stone.sqf +++ b/A3-Antistasi/Scripts/UPSMON/COMMON/unit/fnc/UPSMON_throw_stone.sqf @@ -23,7 +23,7 @@ _npc switchmove "AwopPercMstpSgthWnonDnon_end"; _npc addmagazine "HandGrenade_Stone"; _npc selectWeapon "throw"; sleep .1; -_npc forceWeaponFire ["HandGrenade_Stone","HandGrenade_Stone"]; +_npc forceWeaponFire ["HandGrenade_Stone"]; _time = time + 5; _npc setvariable ["UPSMON_ThrowStone",_time]; sleep 1; diff --git a/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_getpos.sqf b/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_getpos.sqf index 0be58a4362..b3ad3a9f9c 100644 --- a/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_getpos.sqf +++ b/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_getpos.sqf @@ -14,7 +14,7 @@ _empty = if (count _this > 5) then {_this select 5} else {[]}; if (typename _org == "OBJECT") then {_org = getpos _org}; // Distance given as an array of min and max. Pick a random between them. -if (typename _dst == "ARRAY") then { +if (_dst isEqualType []) then { private ["_min","_max"]; _min = _dst select 0; _max = _dst select 1; @@ -22,7 +22,7 @@ if (typename _dst == "ARRAY") then { }; // Direction given as an array of min and max. Pick a random dir between them. -if (typename _dir == "ARRAY") then { +if (_dir isEqualType []) then { private ["_min","_max","_ang"]; _min = _dir select 0; _max = _dir select 1; @@ -152,7 +152,7 @@ switch (typename _empty) do { if (count _empty > 0) then { _dst = _empty select 0; _veh = _empty select 1; - if (typename _veh == typename objNull) then { _veh = typeof _veh }; + if (_veh isEqualType objNull) then { _veh = typeof _veh }; }; }; }; diff --git a/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_getposmarker.sqf b/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_getposmarker.sqf index ca865fab58..b0badd8bab 100644 --- a/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_getposmarker.sqf +++ b/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_getposmarker.sqf @@ -9,7 +9,7 @@ _blist = if (count _this > 2) then {_this select 2} else {[]}; _empty = if (count _this > 3) then {_this select 3} else {[]}; _pos = []; -if (typename _blist == "STRING") then {_blist = [_blist]}; +if (_blist isEqualType "STRING") then {_blist = [_blist]}; private ["_shape"]; _shape = _area call UPSMON_pos_fnc_getMarkerShape; @@ -38,7 +38,7 @@ for [{_i = 0}, {_i < 1000 && !_exit}, {_i = _i + 1}] do { if (count _empty > 0) then { _dst = _empty select 0; _veh = _empty select 1; - if (typename _veh == typename objNull) then { _veh = typeof _veh }; + if (_veh isEqualType objNull) then { _veh = typeof _veh }; }; }; }; diff --git a/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_init.sqf b/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_init.sqf index 556b93ba9d..9ec3638912 100644 --- a/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_init.sqf +++ b/A3-Antistasi/Scripts/UPSMON/Get_pos/UPSMON_pos_init.sqf @@ -88,12 +88,12 @@ UPSMON_pos = { _pos = []; // Only marker is given as parameter - if (typename _this == "STRING") then { + if (_this isEqualType "STRING") then { _pos = [_this] call UPSMON_pos_getPosMarker; // Parameter array } else { - if (typename (_this select 0) == "STRING") then { + if ((_this select 0) isEqualType "STRING") then { _pos = _this call UPSMON_pos_getPosMarker; } else { _pos = _this call UPSMON_pos_getPos; diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/AMBUSH/fnc/UPSMON_getAmbushpos.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/AMBUSH/fnc/UPSMON_getAmbushpos.sqf index 15d7569357..89fa8813c0 100644 --- a/A3-Antistasi/Scripts/UPSMON/MODULES/AMBUSH/fnc/UPSMON_getAmbushpos.sqf +++ b/A3-Antistasi/Scripts/UPSMON/MODULES/AMBUSH/fnc/UPSMON_getAmbushpos.sqf @@ -82,8 +82,8 @@ if ( UPSMON_useMines && _ambushType == 1 ) then diag_log format["%1: Roads #:%2 Pos:%3 Dir:%4",_grp getvariable ["UPSMON_grpid",0], _roads,_positiontoambush,_npcdir] }; - _minetype1 = UPSMON_Minestype1 call BIS_fnc_selectRandom; - _minetype2 = UPSMON_Minestype2 call BIS_fnc_selectRandom; + _minetype1 = selectRandom UPSMON_Minestype1; + _minetype2 = selectRandom UPSMON_Minestype2; switch (_Minestype) do { diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artilleryBatteryout.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artilleryBatteryout.sqf index 7c03f8fadf..a73a4ed96a 100644 --- a/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artilleryBatteryout.sqf +++ b/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artilleryBatteryout.sqf @@ -13,7 +13,7 @@ private ["_batteryunits","_staticteam"]; _batteryunits = _this select 0; -If (typename (_batteryunits select 0) == "ARRAY") then +If ((_batteryunits select 0) isEqualType []) then { _staticteam = _batteryunits select 0; { diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artillerydofire.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artillerydofire.sqf index c0e93f4f11..fa3ad09ad8 100644 --- a/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artillerydofire.sqf +++ b/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artillerydofire.sqf @@ -35,7 +35,7 @@ _result = [0,Objnull,0,0]; If (count (_grp getvariable ["UPSMON_Mortarmun",[]]) > 0) then { - If (typename ((_grp getvariable ["UPSMON_Battery",[]])select 0) == "ARRAY") then + If (((_grp getvariable ["UPSMON_Battery",[]])select 0) isEqualType []) then { _result = [_askmission,typeof (vehicle ((_batteryunits select 0) select 0))] call UPSMON_getmuninfosbackpack; _batteryunits = []; diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artillerysetBattery.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artillerysetBattery.sqf index 1b82a0f6f4..9dc5c4ca51 100644 --- a/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artillerysetBattery.sqf +++ b/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_artillerysetBattery.sqf @@ -47,7 +47,7 @@ If (count (_grp getvariable ["UPSMON_Battery",[]]) > 0) then [_grp,_pos,"HOLD","LINE","LIMITED","COMBAT","YELLOW",1] spawn UPSMON_DocreateWP; - If (typename ((_grp getvariable ["UPSMON_Battery",[]])select 0) == "ARRAY") then + If (((_grp getvariable ["UPSMON_Battery",[]])select 0) isEqualType []) then { sleep 2; _staticteam = (_grp getvariable ["UPSMON_Battery",[]])select 0; diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_selectartillery.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_selectartillery.sqf index 077935a766..48f2f941d7 100644 --- a/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_selectartillery.sqf +++ b/A3-Antistasi/Scripts/UPSMON/MODULES/ARTILLERY/fnc/UPSMON_selectartillery.sqf @@ -42,7 +42,7 @@ _artiarray = [_artillerysidegrps, [], { _npcpos vectorDistance (leader _x) }, "A If (count (_grp getvariable ["UPSMON_Mortarmun",[]]) > 0) then { - If (typename ((_grp getvariable ["UPSMON_Battery",[]])select 0) == "ARRAY") then + If (((_grp getvariable ["UPSMON_Battery",[]])select 0) isEqualType []) then { _backpack = backpack (_vehicledemo select 0); _vehicledemo = ([_backpack] call UPSMON_checkbackpack) select 0; diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_spawn.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_spawn.sqf index 09ec4f96d0..a553d2cb33 100644 --- a/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_spawn.sqf +++ b/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_spawn.sqf @@ -44,7 +44,7 @@ _newpos=[]; _vehicle=[]; //Gets parameters of UPSMON -for [{_i=0},{_i Load previous session? Load previous session? - Load previous session? - Load previous session? - Load previous session? - Load previous session? - Load previous session? - Load previous session? + + Charger votre ancienne session ? + + + + Š—Š°Š³Ń€ŃƒŠ·Šøть ŠæрŠµŠ“ыŠ“ущŠµŠµ сŠ¾Ń…Ń€Š°Š½ŠµŠ½ŠøŠµ? - Load previous session? + HQ Options: Commander Only HQ Options: Commander Only + Options du QG : Commandants Uniquement ŠžŠæцŠøŠø ŠØтŠ°Š±Š°: Š¢Š¾Š»ŃŒŠŗŠ¾ Š“Š»Ń ŠšŠ¾Š¼Š°Š½Š“ŠøрŠ° Close Close + Fermer Š—Š°Šŗрыть Grab 100ā‚¬ from Pool Grab $100 from Pool + Prendre 100ā‚¬ de la cagnotte Š’Š·ŃŃ‚ŃŒ 100$ ŠøŠ· Š¾Š±Ń‰Š°ŠŗŠ° Take 100ā‚¬ from faction pool and add it to your personal account. It will damage your position among the faction in the commander career Take $100 from faction pool and add it to your personal account. It will damage your position among the faction in the commander career + Prendre 100ā‚¬ de la cagnotte de la faction pour l'ajouter sur votre compte. Cela va nuire Ć  votre rĆ©putation au sein de la faction et ralentir votre progression des rangs. ŠŸŠµŃ€ŠµŠ²ŠµŃŃ‚Šø 100$ ŠøŠ· фŠ¾Š½Š“Š° сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя сŠµŠ±Šµ Š½Š° счёт. Š­Ń‚Š¾ Š²Ń€ŠµŠ“Šøт Š²Š°ŃˆŠµŠ¹ рŠµŠæутŠ°Ń†ŠøŠø ŠŗŠ°Šŗ ŠŗŠ¾Š¼Š°Š½Š“ŠøрŠ° Manage Garrisons Manage Garrisons + GĆ©rer Garnisons ŠŸŠ¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŠµ ŠžŠ±Š¾Ń€Š¾Š½Ń‹ Add or remove units to garrisons Add or remove units to garrisons + Ajouter ou Supprimer une garnison ŠžŃ€Š³Š°Š½ŠøŠ·Š°Ń†Šøя Šø ŠæŠ¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŠµ ŠžŠ±Š¾Ń€Š¾Š½Ń‹ Move HQ to another Zone Move HQ to another Zone + DĆ©placer le QG vers une autre Zone ŠŸŠµŃ€ŠµŠ¼ŠµŃŃ‚Šøть ŠØтŠ°Š± Maru will join your group. Ammobox must be empty. To rebuild, select the Build action near Maru Maru will join your group. Ammobox must be empty. To rebuild, select the Build action near Maru + Petros va rejoindre votre groupe. L'Arsenal doit ĆŖtre vide. Pour reconstruire, sĆ©lectionnez l'action "Construire" Ć  cĆ“tĆ© de Petros. ŠŸŠµŃ‚Ń€Š¾Ń ŠæрŠøсŠ¾ŠµŠ“ŠøŠ½Šøтся Šŗ Š²Š°ŃˆŠµŠ¹ Š³Ń€ŃƒŠæŠæŠµ. Š§Ń‚Š¾Š±Ń‹ ŠæŠ¾ŃŃ‚Ń€Š¾Šøть ŠØтŠ°Š±, Š²Ń‹Š±ŠµŃ€ŠøтŠµ Š½Š° Š½Ń‘Š¼ ŠæуŠ½Šŗт "ŠŸŠ¾ŃŃ‚Ń€Š¾Šøть ŠØтŠ°Š±". ŠŃ€ŃŠµŠ½Š°Š» Š“Š¾Š»Š¶ŠµŠ½ Š±Ń‹Ń‚ŃŒ Šæуст. Ingame Member List Ingame Member List + Liste des membres en ligne Š”ŠæŠøсŠ¾Šŗ Š˜Š³Ń€Š¾ŠŗŠ¾Š² Displays which server members are currently playing Displays which server members are currently playing + Affiche quels membres du serveur sont actuellement en jeu ŠŸŠ¾ŠŗŠ°Š·Ń‹Š²Š°ŠµŃ‚, ŠŗтŠ¾ ŠøŠ· Š˜Š³Ń€Š¾ŠŗŠ¾Š² сŠµŠ¹Ń‡Š°Ń Š½Š° сŠµŃ€Š²ŠµŃ€Šµ Rebuild Assets Rebuild Assets + Reconstruire les (biens) Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŠµ ŠžŠ±ŃŠŠµŠŗтŠ¾Š² Cost: ā‚¬5000 Cost: ā‚¬5000 + CoĆ»t : 5000ā‚¬ Š¦ŠµŠ½Š°: 5000$ Train FIA Troops Train FIA Troops + Entrainer les troupes de la FIA Š¢Ń€ŠµŠ½ŠøрŠ¾Š²Š°Ń‚ŃŒ Š’Š¾Š¹ŃŠŗŠ° Upgrades the AI skill level Upgrades the AI skill level + AmĆ©liorer le niveau de l'IA Š£Š²ŠµŠ»ŠøчŠøŠ²Š°ŠµŃ‚ урŠ¾Š²ŠµŠ½ŃŒ Š³Š¾Ń‚Š¾Š²Š½Š¾ŃŃ‚Šø Š²Š¾Š¹ŃŠŗ Garage Access Garage Access + AccĆØs au garage Š“Š°Ń€Š°Š¶ Š”Š¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя Check Faction garage Check Faction garage + Examiner le garage de la faction ŠŸŃ€Š¾Š²ŠµŃ€Šøть Š“Š°Ń€Š°Š¶ Š”Š¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя @@ -101,51 +117,61 @@ Building - Garrison Options Building - Garrison Options + Construction - Options de Garnison ŠŸŠ¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŠµ ŠžŠ±Š¾Ń€Š¾Š½Ń‹ Back Back + Retour ŠŠ°Š·Š°Š“ Minefield Options Minefield Options + Options de Champ de Mines ŠœŠøŠ½Š½Ń‹Šµ ŠæŠ¾Š»Ń AI will deploy or remove mines on desired objectives, using current arsenal mine stock AI will deploy or remove mines on desired objectives, using current arsenal mine stock + L'IA va dĆ©ployer ou retirer des mines sur les objectifs dĆ©sirĆ©s, en utilisant le stock disponible dans l'arsenal Š˜Š½Š¶ŠµŠ½ŠµŃ€Ń‹ устŠ°Š½Š¾Š²ŃŃ‚ ŠøŠ»Šø уŠ“Š°Š»ŃŃ‚ Š¼ŠøŠ½Ń‹ Š½Š° Š²Ń‹Š±Ń€Š°Š½Š½Š¾Š¹ ŠæŠ¾Š·ŠøцŠøŠø, ŠøсŠæŠ¾Š»ŃŒŠ·ŃƒŃ Š¼ŠøŠ½Ń‹ ŠøŠ· Š°Ń€ŃŠµŠ½Š°Š»Š° Outpost or Roadblock Outpost or Roadblock + Avant-Poste ou Barrage Routier Š‘ŠŸ ŠøŠ»Šø ŠŠŸ Establish a new watchpost or roadblock depending on the type of terrain you select. Establish a new watchpost or roadblock depending on the type of terrain you select. + CrĆ©er un nouvel avant-poste ou barrage routier en fonction du type de terrain sĆ©lectionnĆ© Š£ŃŃ‚Š°Š½Š¾Š²Šøть ŠŠ°Š±Š»ŃŽŠ“Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠŸŠ¾ŃŃ‚ ŠøŠ»Šø Š‘Š»Š¾Šŗ ŠŸŠ¾ŃŃ‚ Š² Š·Š°Š²ŠøсŠøŠ¼Š¾ŃŃ‚Šø Š¾Ń‚ Š²Ń‹Š±Ń€Š°Š½Š½Š¾Š³Š¾ Š¼ŠµŃŃ‚Š°. Recruit Units Recruit Units + Recruter des unitĆ©s Š”Š¾Š±Š°Š²Šøть Š² Š“Š°Ń€Š½ŠøŠ·Š¾Š½ Add units to an existing garrison. Add units to an existing garrison. + Ajouter des unitĆ©s Ć  une garnison existante Š”Š¾Š±Š°Š²Šøть Š“Š¾Š±Ń€Š¾Š²Š¾Š»ŃŒŃ†Š° Š² Š³Š°Ń€Š½ŠøŠ·Š¾Š½. Disband Units or Posts Disband Units or Posts + Dissoudre des unitĆ©s ou rĆ“les Š£Š“Š°Š»Šøть Š“Š°Ń€Š½ŠøŠ·Š¾Š½ ŠøŠ»Šø ŠŸŠ¾ŃŃ‚ Remove whole garrisons or posts. Remove whole garrisons or posts. + Supprimer des garnisons ou rĆ“les entiers Š Š°ŃŠæустŠøть Š²ŠµŃŃŒ Š“Š°Ń€Š½ŠøŠ·Š¾Š½ ŠøŠ»Šø ŠŸŠ¾ŃŃ‚. @@ -153,46 +179,55 @@ Garrison Recruitment Options Garrison Recruitment Options + Options de recrutement de la Garnison Š”Š¾Š±Š°Š²Šøть Š² Š“Š°Ń€Š½ŠøŠ·Š¾Š½ Recruit Rifleman Recruit Rifleman + Recruter un Fusillier Š”трŠµŠ»Š¾Šŗ Recruit Autorifleman Recruit Autorifleman + Recruter un Mitrailleur ŠŸŃƒŠ»ŠµŠ¼Ń‘тчŠøŠŗ Recruit Medic Recruit Medic + Recruter un MĆ©decin ŠœŠµŠ“ŠøŠŗ Recruit Squad Leader Recruit Squad Leader + Recruter un Chef d'Escouade Š”ŠµŃ€Š¶Š°Š½Ń‚ Recruit Mortar Recruit Mortar + Recruter un Mortier ŠœŠøŠ½Š¾Š¼Ń‘тчŠøŠŗ Recruit Grenadier Recruit Grenadier + Recruter un Grenadier Š”трŠµŠ»Š¾Šŗ с Š“ŠŸ Recruit Marksman Recruit Marksman + Recruter un Tireur d'Elite Š”Š½Š°Š¹ŠæŠµŃ€ Recruit AT Recruit AT + Recruter un AT Š“Ń€Š°Š½Š°Ń‚Š¾Š¼Ń‘тчŠøŠŗ @@ -200,36 +235,43 @@ Build Minefield Build Minefield + Construire un Champ de Mines ŠœŠøŠ½Š½Š¾Šµ ŠŸŠ¾Š»Šµ APERS Mines APERS Mines + APERS Mines ŠŸŠŸ ŠœŠøŠ½Ń‹ Creates an APERS Minefield in the designated location Creates an APERS Minefield in the designated location + CrĆ©er un Champ de Mines APERS sur le lieu indiquĆ© Š”Š¾Š·Š“Š°Ń‘Ń‚ ŠœŠøŠ½Š½Š¾Šµ ŠŸŠ¾Š»Šµ с ŠæрŠ¾Ń‚ŠøŠ²Š¾ŠæŠµŃ…Š¾Ń‚Š½Ń‹Š¼Šø Š¼ŠøŠ½Š°Š¼Šø Š½Š° Š²Ń‹Š±Ń€Š°Š½Š½Š¾Š¹ ŠæŠ¾Š·ŠøцŠøŠø Remove Minefield Remove Minefield + Supprimer un Champ de Mines Š£Š“Š°Š»Šøть ŠœŠøŠ½Š½Š¾Šµ ŠŸŠ¾Š»Šµ Spawn an AI Engineer which will clear any mine in it's surroundings Spawn an AI Engineer which will clear any mine in it's surroundings + Fait apparaĆ®tre un IngĆ©nieur contrĆ“llĆ© par l'IA qui va retirer toutes les mines dans ses alentours Š”Š¾Š·Š“Š°Ń‘Ń‚ Š˜Š½Š¶ŠµŠ½ŠµŃ€Š°, ŠŗŠ¾Ń‚Š¾Ń€Ń‹Š¹ рŠ°Š·Š¼ŠøŠ½ŠøруŠµŃ‚ Š²ŃŠµ Š¼ŠøŠ½Ń‹ Š²Š¾ŠŗруŠ³ сŠµŠ±Ń AT Mines AT Mines + Mines AT ŠŸŠ¢ ŠœŠøŠ½Ń‹ Creates an Anti Tank minefield at designated location Creates an Anti Tank minefield at designated location + CrĆ©er un Champ de Mines AT sur le lieu indiquĆ© Š”Š¾Š·Š“Š°Ń‘Ń‚ ŠœŠøŠ½Š½Š¾Šµ ŠŸŠ¾Š»Šµ с ŠæрŠ¾Ń‚ŠøŠ²Š¾Ń‚Š°Š½ŠŗŠ¾Š²Ń‹Š¼Šø Š¼ŠøŠ½Š°Š¼Šø Š½Š° Š²Ń‹Š±Ń€Š°Š½Š½Š¾Š¹ ŠæŠ¾Š·ŠøцŠøŠø @@ -237,134 +279,157 @@ Recruitment Options Recruitment Options + Options de Recrutement ŠŸŃ€ŠøŠ·Š²Š°Ń‚ŃŒ Š”Š¾Š±Ń€Š¾Š²Š¾Š»ŃŒŃ†Š° ŠæŠ¾ сŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾ŃŃ‚Šø Recruit Militiaman Recruit Militiaman + Recruter un Milicien ŠŠ¾Š²Š¾Š±Ń€Š°Š½ŠµŃ† Recruit Autorifleman Recruit Autorifleman + Recruter un Fusilier ŠŸŃƒŠ»ŠµŠ¼Ń‘тчŠøŠŗ Recruit Medic Recruit Medic + Recruter un MĆ©decin ŠœŠµŠ“ŠøŠŗ Recruit Engineer Recruit Engineer + Recruter un IngĆ©nieur Š˜Š½Š¶ŠµŠ½ŠµŃ€ Recruit Bomb Specialist Recruit Bomb Specialist + Recruter un Expert en DĆ©molition ŠŸŠ¾Š“рыŠ²Š½ŠøŠŗ Recruit Grenadier Recruit Grenadier + Recruter un Grenadier Š”трŠµŠ»Š¾Šŗ с Š“ŠŸ Recruit Marksman Recruit Marksman + Recruter un Tireur d'Ć©lite Š”Š½Š°Š¹ŠæŠµŃ€ Recruit Antitank Solider Recruit Antitank Solider + Recruter un Soldat Antichar Š“Ń€Š°Š½Š°Ń‚Š¾Š¼Ń‘тчŠøŠŗ - + Back Back + Retour ŠŠ°Š·Š°Š“ Back Back + Retour ŠŠ°Š·Š°Š“ Yes Yes + Oui Š”Š° No No + Non ŠŠµŃ‚ - + - + - The Official AntiStasi Community - AntiStasi Community + The Official Antistasi Community and Barbolani + The Official Antistasi Community and Barbolani + La CommunautĆ© Officielle d'Antistasi et Barbolani Š”Š¾Š¾Š±Ń‰ŠµŃŃ‚Š²Š¾ Antistasi Build FIA Army from scratch and defeat the AAF and CSAT forces in a whole map Dynamic Mission. Build FIA Army from scratch and defeat the AAF and CSAT forces in a whole map Dynamic Mission. + Recrutez une armĆ©e de la FIA Ć  partir de rien et vainquez les forces de l'AAF et CSAT Ć  travers toute la carte dans une Mission Dynamique Š”Š¾Š·Š“Š°Š¹Ń‚Šµ сŠ²Š¾ŃŽ Š°Ń€Š¼Šøю с Š½ŃƒŠ»Ń Šø Š·Š°ŃŃ‚Š°Š²ŃŒŃ‚Šµ сŠøŠ»Ń‹ AAF Šø CSAT Š¾Ń‚ŃŃ‚ŃƒŠæŠøть Š² Š”ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¹ ŠœŠøссŠøŠø Š½Š° Š²ŃŠµŠ¹ ŠŗŠ°Ń€Ń‚Šµ. Antistasi Altis Antistasi Altis + Antistasi Altis Antistasi ŠŠ»ŃŒŃ‚Šøс Be a Resistance leader, be a hero. Be a Resistance leader, be a hero. + Devenez un chef de la rĆ©sistance, soyez un hĆ©ros. Š‘Ń‹Ń‚ŃŒ Š›ŠøŠ“ŠµŃ€Š¾Š¼ Š”Š¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя Š·Š½Š°Ń‡Šøт Š±Ń‹Ń‚ŃŒ Š³ŠµŃ€Š¾ŠµŠ¼. - 2.1.2 + 2.2 Buy Vehicle Buy Vehicle + Acheter un vĆ©hicule ŠšŃƒŠæŠøть Š¢ŠµŃ…Š½ŠøŠŗу Allows you to buy a vehicle Allows you to buy a vehicle + Vous permet d'acheter un vĆ©hicule ŠŸŠ¾Š·Š²Š¾Š»ŃŠµŃ‚ Š’Š°Š¼ ŠŗуŠæŠøть тŠµŃ…Š½ŠøŠŗу Civilian Vehicle Civilian Vehicle + VĆ©hicule civil Š“Ń€Š°Š¶Š“Š°Š½ŃŠŗŠ°Ń тŠµŃ…Š½ŠøŠŗŠ° Civilian vehicles will allow you to travel in Undercover mode, while you stay close to roads and not entering bases, outposts and roadblocks. Civilian vehicles will allow you to travel in Undercover mode, while you stay close to roads and not entering bases, outposts and roadblocks. + Les vĆ©hicules civils vous permettent de vous dĆ©placer "Sous Couverture", tant que vous restez prĆØs des routes et ne pĆ©nĆ©trez pas les bases, avant-postes et barrages routiers. Š“Ń€Š°Š¶Š“Š°Š½ŃŠŗŠ°Ń тŠµŃ…Š½ŠøŠŗŠ° ŠæŠ¾Š·Š²Š¾Š»ŃŠµŃ‚ Š’Š°Š¼ ŠæŠµŃ€ŠµŠ“Š²ŠøŠ³Š°Ń‚ŃŒŃŃ ŠŗŠ°Šŗ Š³Ń€Š°Š¶Š“Š°Š½ŃŠŗŠ¾Š¼Ńƒ Š»Šøцу, ŠæŠ¾ŠŗŠ° Š’Ń‹ Š“Š²ŠøŠ¶ŠµŃ‚ŠµŃŃŒ ŠæŠ¾ Š“Š¾Ń€Š¾Š³Š°Š¼ Š²Š“Š°Š»ŠµŠŗŠµ Š¾Ń‚ Š±Š°Š·, Š¾ŠæŠ¾Ń€Š½Ń‹Ń… ŠæуŠ½ŠŗтŠ¾Š² Šø Š±Š»Š¾ŠŗŠæŠ¾ŃŃ‚Š¾Š². Military Vehicle Military Vehicle + VĆ©hicule Militaire Š’Š¾ŠµŠ½Š½Š°Ń Š¢ŠµŃ…Š½ŠøŠŗŠ° Wide variety of available faction vehicles Wide variety of available faction vehicles + Une large variĆ©tĆ© de vĆ©hicules de faction disponibles ŠØŠøрŠ¾ŠŗŠøŠ¹ Š²Ń‹Š±Š¾Ń€ Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾Š¹ тŠµŃ…Š½ŠøŠŗŠø Š²Š°ŃˆŠµŠ¹ стŠ¾Ń€Š¾Š½Ń‹ @@ -372,61 +437,73 @@ ATV Quadbike + Quad ŠšŠ²Š°Š“рŠ¾Ń†ŠøŠŗŠ» Machine Gun Machine Gun + Mitrailleuse Š”тŠ°Š½ŠŗŠ¾Š²Ń‹Š¹ ŠŸŃƒŠ»ŠµŠ¼Ń‘Ń‚ Buy Static Machinegun Emplacement Buy Static Machinegun Emplacement + Acheter un emplacement de mitrailleuse fixe ŠšŃƒŠæŠøть Š”тŠ°Š½ŠŗŠ¾Š²Ń‹Š¹ ŠŸŃƒŠ»ŠµŠ¼Ń‘Ń‚ Mortar Mortar + Mortier ŠœŠøŠ½Š¾Š¼Ń‘Ń‚ Buy Static Mortar Emplacement Buy Static Mortar Emplacement + Acheter un emplacement de mortier fixe ŠšŃƒŠæŠøть Š”тŠ°Š½ŠŗŠ¾Š²Ń‹Š¹ ŠœŠøŠ½Š¾Š¼Ń‘Ń‚ Static AA Static AA + DCA fixe Š£ŃŃ‚Š°Š½Š¾Š²ŠŗŠ° ŠŸŠ’Šž Buy Static Anti-Air emplacement Buy Static Anti-Air emplacement + Acheter un emplacement de DCA fixe ŠšŃƒŠæŠøть Š”тŠ°Š½ŠŗŠ¾Š²ŃƒŃŽ Š£ŃŃ‚Š°Š½Š¾Š²Šŗу ŠŸŠ’Šž Static AT Static AT + AT Fixe Š”тŠ°Š½ŠŗŠ¾Š²Ń‹Š¹ ŠŸŠ¢Š Šš Buy Static Anti-Tank emplacement Buy Static Anti-Tank emplacement + Acheter un emplacement antichar fixe ŠšŃƒŠæŠøть Š”тŠ°Š½ŠŗŠ¾Š²ŃƒŃŽ Š£ŃŃ‚Š°Š½Š¾Š²Šŗу ŠŸŠ¢Š Šš Pickup Truck Pickup Truck + 4x4 ŠŸŠøŠŗŠ°Šæ Offroad Truck Offroad Truck + Camion Tout-Terrain Š“Ń€ŃƒŠ·Š¾Š²ŠøŠŗ Armed Pickup Truck Armed Pickup Truck + 4x4 ArmĆ© Š’Š¾Š¾Ń€ŃƒŠ¶Ń‘Š½Š½Ń‹Š¹ ŠŸŠøŠŗŠ°Šæ @@ -434,89 +511,692 @@ Buy Civilian Vehicle Buy Civilian Vehicle + Acheter un VĆ©hicule Civil Š“Ń€Š°Š¶Š“Š°Š½ŃŠŗŠ°Ń Š¢ŠµŃ…Š½ŠøŠŗŠ° Offroad Offroad + Tout-Terrain ŠŸŠøŠŗŠ°Šæ Truck Truck + Camion Š“Ń€ŃƒŠ·Š¾Š²ŠøŠŗ Boat Boat + Bateau Š›Š¾Š“ŠŗŠ° Helicopter Helicopter + HĆ©licoptĆØre Š’ŠµŃ€Ń‚Š¾Š»Ń‘Ń‚ + + 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. + 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... + Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. + + + Antistasi - Liberation of Altis + Antistasi - Liberation of Altis + + + Antistasi Altis + Antistasi Altis + + + Antistasi - Liberation of Altis (BLUFOR) + Antistasi - Liberation of Altis (BLUFOR) + + + Antistasi Altis (BLUFOR) + Antistasi Altis (BLUFOR) + + + Because nothing is more important than Freedom. + Because nothing is more important than Freedom. + 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. 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. - Warlords of the Pacific - Warlords of the Pacific - Š„Š¾Š·ŃŠµŠ²Š° Š¢ŠøхŠ¾Š³Š¾ ŠžŠŗŠµŠ°Š½Š° + Antistasi - Warlords of the Pacific + Antistasi - Warlords of the Pacific + Antistasi - Les Seigneurs de Guerre du Pacifique + Antistasi - Š„Š¾Š·ŃŠµŠ²Š° Š¢ŠøхŠ¾Š³Š¾ ŠžŠŗŠµŠ°Š½Š° + + + Antistasi Tanoa + Antistasi Tanoa Business and War... Business and War... + Les Affaires et la Guerre... Š‘ŠøŠ·Š½ŠµŃ Šø Š’Š¾Š¹Š½Š° ... 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. 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... + Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. + + + 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. + 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. - Armia Krajowa - Armia Krajowa - ŠŃ€Š¼Šøя ŠšŃ€Š°Š¹Š¾Š²Š° + Antistasi - Kolkhoz in revolt + Antistasi - Kolkhoz in revolt + + + + + Antistasi - Chilled revolt + Antistasi - Chilled revolt + + + + + Antistasi Chernarus + Antistasi Chernarus + + + Antistasi Chernarus Winter + Antistasi Chernarus Winter Between the anvil and a steamroller. Between the anvil and a steamroller. + Entre l'enclume et un rouleau compresseur ŠœŠµŠ¶Š“у ŠŗŠ°Ń‚ŠŗŠ¾Š¼ Šø Š½Š°ŠŗŠ¾Š²Š°Š»ŃŒŠ½ŠµŠ¹. + + Beware: Santa Claus is hunting you! + Beware: Santa Claus is hunting you! + + + 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. 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. - Liberation of Malden - Liberation of Malden - ŠžŃŠ²Š¾Š±Š¾Š¶Š“ŠµŠ½ŠøŠµ ŠœŠ°Š»ŃŒŠ“ŠµŠ½Š° + Antistasi - Liberation of Malden + Antistasi - Liberation of Malden + Antistasi - La LibĆ©ration de Malden + Antistasi - ŠžŃŠ²Š¾Š±Š¾Š¶Š“ŠµŠ½ŠøŠµ ŠœŠ°Š»ŃŒŠ“ŠµŠ½Š° + + + Antistasi Malden + Antistasi Malden + Antistasi Malden + Antistasi ŠœŠ°Š»ŃŒŠ“ŠµŠ½Š° The island is small but packed with enemies. Look out! The island is small but packed with enemies. Look out! + L'Ć®le est petite mais remplie d'ennemis. Attention! ŠžŃŃ‚Ń€Š¾Š² Š½ŠµŠ±Š¾Š»ŃŒŃˆŠ¾Š¹, Š½Š¾ ŠæŠ¾Š»Š¾Š½ Š²Ń€Š°Š³Š¾Š². Š‘ŃƒŠ“ь Š½Š°Ń‡ŠµŠŗу! 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. 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. - The Baltic Revolution - The Baltic Revolution - Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š ŠµŠ²Š¾Š»ŃŽŃ†Šøя + Antistasi - The Baltic Revolution + Antistasi - The Baltic Revolution + Antistasi - La RĆ©volution Baltique + Antistasi - Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š ŠµŠ²Š¾Š»ŃŽŃ†Šøя + + + Antistasi Livonia + Antistasi Livonia + Antistasi Livonia - Stuck between two fronts - Stuck between two fronts - ŠœŠµŠ¶Š“у Š“Š²ŃƒŃ… фрŠ¾Š½Ń‚Š¾Š² + Stuck between two fronts. + Stuck between two fronts. + Pris entre deux feux. + ŠœŠµŠ¶Š“у Š“Š²ŃƒŃ… фрŠ¾Š½Ń‚Š¾Š². + + + 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. + 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... + Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. + + + Antistasi - Battle of Kunduz + Antistasi - Battle of Kunduz + Antistasi - La Bataille de Kanduz + Antistasi - Š‘ŠøтŠ²Š° Š·Š° ŠšŃƒŠ½Š“уŠ· + + + Antistasi Kunduz + Antistasi Kunduz + Antistasi Kanduz + Antistasi ŠšŃƒŠ½Š“уŠ· + + + Sand and blood + Sand and blood + Du Sable et du Sang + ŠšŃ€Š¾Š²ŃŒ Šø ŠæŠµŃŠ¾Šŗ + + + Antistasi - Liberation of Tembelan Island + Antistasi - Liberation of Tembelan Island + + + Antistasi Tembelan + Antistasi Tembelan + Antistasi Tembelan + + + Beauty and destruction + Beauty and destruction + + + 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. + 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... + Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. + + + Antistasi Anizay + Antistasi Anizay + Antistasi Anizay + + + 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. + 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. + Devenez le Chef de la RĆ©sistance. Battez-vous contre un ennemi en surnombre et avec un niveau technologique supĆ©rieur. Utilisez les tactiques des Guerrillas dans un monde complĆ©tement dynamique, avec environ 18 missions. Quand vous voulez, oĆ¹ vous voulez, avec ce que vous voulez... + Š”тŠ°Š½ŃŒ Š»ŠøŠ“ŠµŃ€Š¾Š¼ сŠ¾ŠæрŠ¾Ń‚ŠøŠ²Š»ŠµŠ½Šøя. Š”рŠ°Š¶Š°Š¹ŃŃ ŠæрŠ¾Ń‚ŠøŠ² Š²Ń€Š°Š³Š° ŠæрŠµŠ²Š¾ŃŃ…Š¾Š“ящŠµŠ³Š¾ Š² тŠµŃ…Š½Š¾Š»Š¾Š³ŠøŠø, ŠŗŠ¾Š»ŠøчŠøстŠ²Šµ, Š²Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠø Šø тŠµŃ…Š½ŠøŠŗŠµ. Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹ ŠæŠ°Ń€Ń‚ŠøŠ·Š°Š½ŃŠŗую тŠ°ŠŗтŠøŠŗу Š² ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š“ŠøŠ½Š°Š¼ŠøчŠµŃŠŗŠ¾Š¼ Š¼ŠøрŠµ. + + + Antistasi - Liberation of Anizay + Antistasi - Liberation of Anizay + + + Fought on the camel's back + Fought on the camel's back + + + + + Early Beginning + Early Beginning + + + Don't expect to be able to conquer anything in the early stages. First you have to gather enough resources (HR and Money) in order to be able to conquer and hold your positions. This mission tries to simulate real life guerilla situations. If in doubt, ask yourself what would you do in real life. Don't expect to win every time. Hit and Run is the basic manoeuvre here. Earn every resource, weapon and ammunition to gather enough assets in order to be a real challenge for the enemy. In the meantime, disturb its operations and gain support from the population. + Don't expect to be able to conquer anything in the early stages. First you have to gather enough resources (HR and Money) in order to be able to conquer and hold your positions. This mission tries to simulate real life guerilla situations. If in doubt, ask yourself what would you do in real life. Don't expect to win every time. Hit and Run is the basic manoeuvre here. Earn every resource, weapon and ammunition to gather enough assets in order to be a real challenge for the enemy. In the meantime, disturb its operations and gain support from the population. + + + Aggro Effects + Aggro Effects + + + Keep an eye on those. If it's too high, you will have to face more attacks with better troops. + Keep an eye on those. If it's too high, you will have to face more attacks with better troops. + + + Strategy + Strategy + + + Once you have a nice amount of resources, focus on enemy communications. If you disturb them enough, you won't have to face big counter-attacks. + Once you have a nice amount of resources, focus on enemy communications. If you disturb them enough, you won't have to face big counter-attacks. + + + Conquer and Hold + Conquer and Hold + + + Don't expect a light counter-attack when you conquer strategic zones such as resources or airportsX. The enemy will send everything they can, if available. If you conquer a zone and expect a counter-attack, fleeing is a nice option. + Don't expect a light counter-attack when you conquer strategic zones such as resources or airportsX. The enemy will send everything they can, if available. If you conquer a zone and expect a counter-attack, fleeing is a nice option. + + + Resources + Resources + + + Having a good amount of resources for bigger operations is mandatory, especially weapons and ammo. In the initial stages, your main source of resources is accomplishing side-missions. + Having a good amount of resources for bigger operations is mandatory, especially weapons and ammo. In the initial stages, your main source of resources is accomplishing side-missions. + + + Starting Position + Starting Position + + + Find a good spot to begin the mission. Your experience is very different from one start spot to another. Study the surrounding markers and roads between them well. If you start near a road between enemy zones, a patrol may appear and kill Petros. + Find a good spot to begin the mission. Your experience is very different from one start spot to another. Study the surrounding markers and roads between them well. If you start near a road between enemy zones, a patrol may appear and kill Petros. + + + Undercover + Undercover + + + In the early stages, especially when accomplishing certain missions, being undercover can be extremely helpful. Just as for real resistance fighters, your ability to disappear is something the enemy cannot counter. See Features section for a deep explanation of Undercover Mode. + In the early stages, especially when accomplishing certain missions, being undercover can be extremely helpful. Just as for real resistance fighters, your ability to disappear is something the enemy cannot counter. See Features section for a deep explanation of Undercover Mode. + + + General + + + Having a commander is necessary because he is the commander of the Faction attacking ground forces. Many options are available only to the commander and, depending on your settings, if you play MP, the most experienced player will usually occupy this position. + + + Garrisons + + + The Commander is responsible for assigning units as garrisons in conquered areas. Use the Garrison Management option in the HQ flag in order to add or remove garrison troops at each zone. Check Map Info screen for a quick overview of how many soldiers are assigned to each zone. + + + Faction Skill Upgrade + + + For a price, you can upgrade Faction training so that future recruits will have better skills. + + + Side Missions - Petros + + + Ask Petros for any type of mission you want. Mission availability is subject to HQ positioning, current allocated tasks and ownership of the surrounding areas. + + + Move HQ + + + The Commander may select this option on the HQ Flag in order to move the HQ emplacement to another spot. This will allow you to move your HQ to a safer location or move closer to the front-lines. The closer your HQ is to the enemy, the greater the number of possibile side-missions you will have available. Remember! Keep Petros Safe or you will lose the game! + + + Rest - Camp-fire + + + Use the action menu on your HQ Camp-fire to rest for 8 hours. + + + Bomb Run + + + Use your Airstrike points to perform a bombing run of the specified type. + + + Artillery + + + Mounted mortar teams may be used as artillery support. Select a mortar team using the High Command bar, and press SHIFT + Y in-game to call in a mortar fire mission. + + + Recruit Squad + + + The Commander may recruit an AI manned squad at base camp flags. Use the High Command module (CTRL + SPACE) to give orders to your squads. Also you may temporally control and dismiss the squad leader in the same way you do with squad-mates. + + + Minefields + + + Take the engineers truck to the desired position to build a minefield. Cover them while they deploy mines. From then on, no one will be able to pass the area safely (even your own units - so use with caution). Mines (AT and AP) are taken from your Ammobox. The quantity of mines in the field will depend on the contents of your ammobox, up to a max. number depending on the type of minefield. Delete those minefields to recover the mines. + + + Sell Vehicle + + + Use this option to sell captured vehicles and increase Faction funds. + + + Observation Post + + + Use the radio and select a spot on the map with good field of vision. A group of snipers will join you. Send them to the selected place and they will spot for you, attempting to remain hidden and not engaging enemies upon contact. + + + Roadblocks + + + Use the menu and select a spot on the map. Click where a road is. A group of AT soldiers will join you. Send them to the selected place and they will establish a roadblock there. + + + Grab Faction Funds + + + Use this option to grab money from the Faction pool to your personal account. Please note this will have an impact on your score and future promotion chances. Corrupt Commanders may find themselves loosing their command. + + + In-game Members + + + In the HQ Flag, if the Server Member feature is enabled, you may check which of the Server Members are in game and the total number of non members. + + + Battle Options + + + Press Y in-game to have access any time to several options. Most of them are explained in the Commander or Features sections. + + + High Command + + + When you are the Commander, hit CTRL + SPACE to give way-points and other orders to your AI squads using the HC mode. Non commanders may use it to check enemy contacts reported by the Faction communications network. + + + Artillery + + + Press SHIFT + Y in-game while having an artillery squad selected on the HC bar. + + + Group Manager + + + MP Only: Press U in-game to join another player's group + + + Earplugs + + + Press END to enable / disable earplugs. Disabled with ACE. + + + Faction Leader + + + Just as with any resistance movement, leadership is not as stable as in organised states. Any player can take the role of Faction Force Commander if the current one is not very popular... Demonstrate your skill while accomplishing missions and killing enemies and maybe you will become the next leader. + + + Garage + + + Add any vehicle near your personal Virtual Garage (or factions garage if you are the commander) and keep it safe for future use. Vehicle add option is under the Y menu. Garage management is in HQ options (Flag). Garage recovery capacities may depend on where you are: Air Units can be recovered only near Airbases, boats, near the shore etc. + + + Undercover + + + Click on this button to go undercover. If you meet the requirements, the enemy won't attack you on sight. On foot, to go undercover you must have no weapons or military equipment visible.<br/>You will lose undercover status when you change load-out, get spotted by enemy guard-dogs, plant mines, and can also be reported by some civilians to the enemy. If you are discovered you won't be able to go undercover on foot again for 30 minutes. You can also go undercover by getting into any civilian vehicle. You will lose undercover status by firing any weapon or being spotted far from a road. If you are discovered you won't be able to go undercover in that vehicle again. Getting close to enemy Airbases, outposts and roadblocks will also make you lose undercover status. + + + Arsenal + + + Scavenge for items, weapons and magazines and put them in your HQ Ammobox. Once you have a specific amount of an them, they will be unlocked and added to the Arsenal for personal use (and for your Faction squads).<br/>The amount required to unlock depends on how many assets the Faction has unlocked and the number of factories owned. Unlocked weapons, optics and night-vision Googles may also change AI load-out. Basic militiamen are especially affected by this: their load-out will start from small SMGs and progress to having an extra AA / AT launcher. Please note this will not affect their dress, which will depend on the current Faction Skill Level (helmets and uniform). Arsenal is the standard BIS Arsenal, check their documentation for interaction and use.<br/><br/>To see the amounts required to unlock each group of items, open the HQ Ammobox and you will receive a detailed report on the right. + + + Politics + + + This is a civil war. People are not conquered if you cannot conquer their hearts. In game mechanics, this means you cannot conquer cities. The citizens of each town support the enemy or Faction to some amount.<br/>The dominant faction is the one who owns the city and benefits from their support in terms of money and human resources (HR). Your actions may lower enemy Support or raise yours, or both. Killing enemies, accomplishing missions, conquering resources, and power-stations, affect the amount of citizen support. + + + Radio Towers + + + Destroy or capture Radio Towers in order to build trust with %1 citizens. + + + Vehicles + + + You may buy vehicles for your squad at Faction flags. + + + Static Weapons + + + You may steal static weapons found in enemy airports. You must use the 'Steal Static' action to do so. DO NOT disassemble them before using the 'Steal Static' action! + + + Conquer + + + Some zones, like airports require you to use the ""Take the Flag"" action on their respective flags in order to conquer them. Some others, like roadblocks and some outposts, simply require you to defeat the garrison. + + + Ammobox Transfer + + + When you mount a truck, you may use the Transfer action in the action menu. It will search for nearby ammoboxes and load the contents of the nearest one into the truck's cargo space. You may then unload the truck in your ammobox at HQ for future use. Before transferring, make sure to unload backpack/vest contents into the Truck cargo space and then transfer. TIP: If your HQ Ammobox is full, use this functionality from a nearby truck to add more content to the ammobox as it will then accept everything :) + + + Fast Travel + + + When there are no enemies nearby, fast travel to Faction controlled places. The Commander also has the ability to use this option on HC groups, selecting the group on HC bar and clicking on this button. + + + Base Static Emplacement + + + Purchased static weapons won't despawn if you leave them in a base or zone, AI garrison will man them. Reinforce places as you desire. + + + Group Selection + + + You can build groups with up to 10 human players. Commander is excluded of this function. + + + Server Members + + + If enabled, this feature will exclude all non-members from using the HQ Ammobox and become Commander. This feature is intended to avoid having your game ruined by the casual troll in open server environments. + + + Player and Money + + + Use this option to donate money to other players or your faction funds. Commanders may add or remove players from the Server Members List if the feature is enabled. + + + Breach Vehicles + + + Tanks and APC can be breached by engineers with explosives to open them and get their crew out. Check 'Breaching charges' for the charges needed. Breaching vehicles applies damage, so take care when breaching heavily damaged vehicles. To breach a vehicle, get close to it and select the breaching option! + + + Breaching charges + + + To breach an APC you need %1 %2To breach a tank you need %3 + + + Recruit + + + You may recruit up to 9 AI squad-mates at some Faction flags and the HQ flag. + + + AI Control + + + Select a squad-mate or HC Group to gain direct control over them for a limited time. Selecting this option for a HC squad will give you control over the squad's leader. + + + AI Radio + + + This feature aims to simulate the lack of radio communications with AI fighters. Your AI squad-mates won't have a radio until you unlock it from the Arsenal. Without a radio, if an AI squad-mate gets too far away, they will get lost and return to the leader's position after completing the last order they received. To avoid this, you may scavenge some radios from enemy (AutoRearm feature will do) or let the AI use a military vehicle which has long range radios. If it takes too long to find their leader, they will automatically return to the HQ. + + + Auto Heal + + + AI Medic squad-mates will heal other AIā€™s automatically without the need to give any orders. If in combat, your AI will use smoke grenades for cover. If there is no medic in the group, the AI will use their own medikits. + + + Auto Rearm \ Loot + + + Your AI squad-mates will automatically look for and scavenge any ammunition from nearby corpses, vehicles and ammoboxes if needed. Also they will try to renew their weapons with more powerful ones. If AI is inside a vehicle, they will loot weapons and launchers, and drop them in their truck until there is nothing in the area. Use this instead of the vanilla Rearm radio option. + + + Vehicle Squad + + + Commander Only. Use this option to assign the vehicle you are looking at to any HC squad. Check vehicle status, order them to mount or disembark, and automate mounted static squads. + + + Dismiss Squad-mate + + + Select the unit and use the 'Dismiss Squad-mate' option to send them back to HQ. You will recover some of the money you spent on them. + + + Map Info + + + Click on a city to learn the strength of their support for the enemy or Faction. Click on other zones to know relevant info about them. + + + AI Limiter + + + Commander Only. Sets the the maximum amount of AI in map per server or HC. Up to 200 AI may behave decently. + + + Persistent Save-game + + + Commander Only. You may save the game at your HQ Map. This will allow you to continue playing upon mission update or server restart, preserving stats, player's equipment, conquered zones, enemy asset availability and many more things. WARNING: Normal save and load runs badly in this mission. This system is your only guarantee of saving the game properly + + + Music ON/OFF + + + Antistasi has a situational music script, depending on a player's stance and time of day. The default in MP is OFF, and ON in Singleplayer + + + Civ Spawn + + + Increase or decrease the percentage of city civilian population that spawn. At 0% only one civilian will spawn in each city. + + + Spawn Distance + + + Commander only. Increase or decrease general spawn and despawn distance. Use it carefully combined with other options. + + + Garbage Cleaner + + + Commander only. Will delete things like dropped weapons, magazines, clothing etc.<br/><br/> Beware, it freezes the game for some time. + + + Reinit UI + + + Select this option when the Y key or Statistics bar are not working. + + + %1 and %2 Aggro + + + There is an All vs All war in %4. %1 and %2 are constantly attacking each other, but that does not mean they don't shoot at %3 on first sight.<br/><br/>%1 and %2 Aggro points represent how much threat they see in %3 faction.<br/><br/>Generally speaking those points will low or raise depending on your actions against them and civilians. + + + HR + + + HR or Manpower comes from citizen support on each city. Manpower is needed to recruit more units (1 HR Points = 1 Soldier) + + + Money - MP + + + In MP games there are two money pools. Faction Money -which is for Commander use only- and personal money. Personal money can be used by any player to recruit AI or buy vehicles. Faction earns money by taxes and accomplishing missions. Personal money comes from killing enemies and accomplishing missions. Options to transfer or donate money are found in the Y menu. Commander can grab money from the Faction Pool to his own account. + + + Money + + + Money comes from a combination of citizens support on each city, resources conquered, factories conquered (which boost the economy) and power provided to all of them with a nearby friendly power plant (you may also conquer them to cut off Money supply to the enemy). Money is used to purchase vehicles, units and squads. + + + Resources + + + Every 10 minutes each faction receives Money and Manpower according to the zones they own, and the state they are in. Having a good amount of resource zones and some factories is the way of getting enough resources to win this war. + + + HQ - Basics + + + Flag: Vehicle and Squad Unit Recruitment. Commander Options.<br/>Maru: Side-missions (Commander Only).<br/>Map: Game Options.<br/>Camp-fire: Rest for 8 hours and Clear Forest (Commander Only). + + + AI Rules of Engagement + + + %2 vs %1 war. + + + %2 vs %1 war. + + + %3 vs All war.<br/><br/>%1 and %2 will attack only %3 and act independently. Both can conquer. + + + All vs All war.<br/><br/>%1 and %2 will attack each other and both to %3. + + + Welcome + + + Welcome to Arma 3 - %1. This mission aims to simulate guerilla combat, tactics and strategic situations. It is not a quick and easy mod, it is long term, step-by-step mission with LOTS of features and enhanced AI. + + + Win + + + You will win the game when most of the population supports Faction and you have conquered all the Airbases. + + + Lose + + + You will loose the game if %1 has murdered 1/3 of the total population. + + + Script Credits + + + UPSMon by Monsada, Kronzy and Cool=Azroul13 <br/>Persistent Save by zooloo75.<br/>Tags by Marker and Melbo.<br/>JAS by Jeroen (sorry for including you that late)<br/>Tags by Marker and Melbo.<br/>Advanced Towing by Seth Duda. + + + Mods + + + Integrated (optional) Mods:<br/>TFAR: Radio integrated in Arsenal. Sound disabled when player is unconscious.<br/>ACE Medical: Will disable Antistasi revive system.<br/><br/>CAUTION: The use of Persistent Save system with TFAR and any weapon mod activated will make them mandatory in future.<br/><br/>Any client sided Mod, such as JSRS, Blastcore, UI Mod should work.<br/><br/>Units and vehicles mods won't work. AI Mods may cause malfunctions (in any case Antistasi has heavy AI tweaking). + + + Thanks + + + LanCommi for his artwork.<br/>Goon and jw custom: Part of the code for the NAPALM script.<br/>rebel12340: Radio Jam script<br/>Manko: Earplug snippet<br/>bobchaos: Managing the community despite all difficulties.<br/>And all those players who spend their time on making comments, suggestions and reports on Steam, Github and BIS forums diff --git a/A3-Antistasi/Templates/Invaders3CBTKM.sqf b/A3-Antistasi/Templates/3CB_Inv_TKM_Arid.sqf similarity index 55% rename from A3-Antistasi/Templates/Invaders3CBTKM.sqf rename to A3-Antistasi/Templates/3CB_Inv_TKM_Arid.sqf index 9b7f313420..514ef9a3a0 100644 --- a/A3-Antistasi/Templates/Invaders3CBTKM.sqf +++ b/A3-Antistasi/Templates/3CB_Inv_TKM_Arid.sqf @@ -1,19 +1,27 @@ -if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\Invaders3CBAFRFT.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "TKM"; -CSATGrunt = "UK3CB_TKM_O_RIF_1"; -CSATOfficer = "UK3CB_TKM_O_WAR"; -CSATBodyG = "UK3CB_TKM_O_IED"; -CSATCrew = "UK3CB_TKM_O_RIF_2"; -CSATMarksman = "UK3CB_TKM_O_MK";; -staticCrewInvaders = "UK3CB_TKM_O_RIF_2"; -CSATPilot = "UK3CB_TKA_O_HELI_PILOT"; +//SF Faction +factionMaleInvaders = "UK3CB_TKM_B"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "UK3CB_TKP_O"}; -CSATMortar = "UK3CB_TKM_O_2b14_82mm"; -CSATMG = "UK3CB_TKM_O_KORD_high"; -staticATInvaders = "UK3CB_TKM_O_SPG9"; -staticAAInvaders = "UK3CB_TKM_O_ZU23"; +//Flag Images +CSATFlag = "Flag_TKM_O_Army"; +CSATFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_TKM\Flag\tkm_o_flag_co.paa"; +flagCSATmrk = "UK3CB_Marker_O_TKM"; +if (isServer) then {"CSAT_carrier" setMarkerText "Takistani Carrier"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; -//CSAT PvP Loadouts +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts CSATPlayerLoadouts = [ //Team Leader "UK3CB_TKM_O_SL", @@ -25,69 +33,139 @@ CSATPlayerLoadouts = [ "UK3CB_TKM_O_MK", //Anti-tank Scout "UK3CB_TKM_O_LAT", - //Anti-tank Scout + //AT2 "UK3CB_TKM_O_LAT" ]; -vehCSATPVP = ["UK3CB_TKM_O_BTR40","UK3CB_TKM_O_Hilux_Open","UK3CB_TKM_O_UAZ_Closed","UK3CB_TKM_O_Datsun_Pkm","UK3CB_TKM_O_Hilux_Dshkm"];//This array contains the vehicles CSAT-PvP players can spawn near their flag. +//PVP Player Vehicles +vehCSATPVP = ["UK3CB_TKM_O_BTR40","UK3CB_TKM_O_Hilux_Open","UK3CB_TKM_O_UAZ_Closed","UK3CB_TKM_O_Datsun_Pkm","UK3CB_TKM_O_Hilux_Dshkm"]; -vehCSATLightArmed = ["UK3CB_TKM_O_Datsun_Pkm","UK3CB_TKM_O_Hilux_Dshkm","UK3CB_TKM_O_Hilux_GMG","UK3CB_TKM_O_Hilux_Rocket","UK3CB_TKM_O_Hilux_Spg9","UK3CB_TKM_O_Hilux_Zu23"];//zu may be too much +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "UK3CB_TKM_O_RIF_1"; +CSATOfficer = "UK3CB_TKM_O_WAR"; +CSATBodyG = "UK3CB_TKM_O_IED"; +CSATCrew = "UK3CB_TKM_O_RIF_2"; +CSATMarksman = "UK3CB_TKM_O_MK";; +staticCrewInvaders = "UK3CB_TKM_O_RIF_2"; +CSATPilot = "UK3CB_TKA_O_HELI_PILOT"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "UK3CB_TKP_O_RIF_1"; + FIAMarksman = "UK3CB_TKP_O_MK"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["UK3CB_TKM_O_TL","UK3CB_TKM_O_RIF_1"]; +groupsCSATSniper = ["UK3CB_TKM_O_SPOT","UK3CB_TKM_O_SPOT"]; +groupsCSATsmall = [groupsCSATSentry,["UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_RIF_2"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_AA","UK3CB_TKM_O_AA","UK3CB_TKM_O_AA_ASST"]; +groupsCSATAT = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT_ASST"]; +groupsCSATmid = [["UK3CB_TKM_O_SL","UK3CB_TKM_O_RIF_1","UK3CB_TKM_O_RIF_1","UK3CB_TKM_O_MD"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_GL","UK3CB_TKM_O_MG","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT_ASST","UK3CB_TKM_O_AR","UK3CB_TKM_O_MD"]; +CSATSpecOp = ["UK3CB_TKA_O_SL","UK3CB_TKA_O_MK","UK3CB_TKA_O_TL","UK3CB_TKA_O_AR","UK3CB_TKA_O_AA","UK3CB_TKA_O_ENG","UK3CB_TKA_O_AT","UK3CB_TKA_O_MD"]; +groupsCSATSquad = + [ + CSATSquad, + ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_MG","UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_MK","UK3CB_TKM_O_MG_ASST","UK3CB_TKA_O_LAT","UK3CB_TKM_O_MD"], + ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_AR","UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_MK","UK3CB_TKM_O_IED","UK3CB_TKM_O_AA","UK3CB_TKM_O_MD"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["UK3CB_TKP_O_STATIC_GUN_NSV","UK3CB_TKP_O_STATIC_TRI_NSV"], + ["UK3CB_TKP_O_AT","UK3CB_TKP_O_RIF_2"], + ["UK3CB_TKP_O_OFF","UK3CB_TKP_O_MK"] + ]; + //Fireteams + groupsFIAMid = + [ + ["UK3CB_TKP_O_QRF_SL","UK3CB_TKP_O_QRF_MK","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_ENG"], + ["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_RIF_1","UK3CB_TKP_O_QRF_AT"], + ["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_ENG","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_AT"] + ]; + //Squads + FIASquad = ["UK3CB_TKP_O_CIB_SL","UUK3CB_TKP_O_CIB_RIF_2","UK3CB_TKP_O_CIB_AT","UK3CB_TKP_O_CIB_MD","UK3CB_TKP_O_CIB_TL","UK3CB_TKP_O_CIB_AR","UK3CB_TKP_O_CIB_RIF_1","UK3CB_TKP_O_CIB_ENG"]; + groupsFIASquad = [FIASquad]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATLightArmed = ["UK3CB_TKM_O_Datsun_Pkm","UK3CB_TKM_O_Hilux_Dshkm","UK3CB_TKM_O_Hilux_GMG","UK3CB_TKM_O_Hilux_Rocket","UK3CB_TKM_O_Hilux_Spg9","UK3CB_TKM_O_Hilux_Zu23"]; vehCSATLightUnarmed = ["UK3CB_TKM_O_BTR40","UK3CB_TKM_O_Hilux_Open","UK3CB_TKM_O_UAZ_Closed"]; vehCSATTrucks = ["UK3CB_TKM_O_Ural_Covered","UK3CB_TKM_O_V3S_Closed","UK3CB_TKM_O_V3S_Open","UK3CB_TKM_O_Ural_Open"]; vehCSATAmmoTruck = "UK3CB_TKM_O_V3S_Reammo"; vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored vehCSATAPC = ["UK3CB_TKM_O_BMP1","UK3CB_TKM_O_BRDM2_ATGM","UK3CB_TKM_O_BTR60","UK3CB_TKM_O_BRDM2","UK3CB_TKM_O_BRDM2_HQ","UK3CB_TKM_O_MTLB_PKT"]; vehCSATTank = "UK3CB_TKM_O_T34"; vehCSATAA = "UK3CB_TKM_O_V3S_Zu23"; vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats vehCSATBoat = "UK3CB_TKA_O_RHIB_Gunboat"; vehCSATRBoat = "UK3CB_TKM_O_MTLB_PKT"; vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"UK3CB_TKM_O_BTR60"]; +//Planes vehCSATPlane = "UK3CB_TKA_O_Su25SM_CAS"; vehCSATPlaneAA = "UK3CB_TKA_O_L39_AA"; vehCSATTransportPlanes = []; +//Heli vehCSATPatrolHeli = "UK3CB_TKA_O_UH1H_M240"; vehCSATTransportHelis = ["UK3CB_TKA_O_Mi8AMTSh","UK3CB_TKA_O_Mi8","UK3CB_TKC_O_Mi8AMT",vehCSATPatrolHeli]; vehCSATAttackHelis = ["UK3CB_TKA_O_Mi_24P","UK3CB_TKA_O_Mi_24V"]; -vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; +//UAV vehCSATUAV = "rhs_pchela1t_vvs"; vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery vehCSATMRLS = "UK3CB_TKM_O_Hilux_Rocket_Arty"; vehCSATMRLSMags = "122mm_10rnds"; +//Combined Arrays vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "UK3CB_TKM_O_Ural_Repair","UK3CB_TKM_O_V3S_Refuel"]; -vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; -CSATFlag = "Flag_TKM_O_Army"; -CSATFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_TKM\Flag\tkm_o_flag_co.paa"; -CSATAmmoBox = "O_supplyCrate_F"; -//cfgCSATInf = (configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "Infantry"); -groupsCSATSentry = ["UK3CB_TKM_O_TL","UK3CB_TKM_O_RIF_1"];///"O_T_InfSentry";/// -groupsCSATSniper = ["UK3CB_TKM_O_SPOT","UK3CB_TKM_O_SPOT"]; -groupsCSATsmall = [groupsCSATSentry,["UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_RIF_2"],groupsCSATSniper];///[groupsCSATSentry,"O_T_reconSentry","O_T_SniperTeam"];/// -groupsCSATAA = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_AA","UK3CB_TKM_O_AA","UK3CB_TKM_O_AA_ASST"]; -groupsCSATAT = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT_ASST"]; -groupsCSATmid = [["UK3CB_TKM_O_SL","UK3CB_TKM_O_RIF_1","UK3CB_TKM_O_RIF_1","UK3CB_TKM_O_MD"],groupsCSATAA,groupsCSATAT];///["O_T_InfTeam","O_T_InfTeam_AA","O_T_InfTeam_AT"];/// -CSATSquad = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_GL","UK3CB_TKM_O_MG","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT_ASST","UK3CB_TKM_O_AR","UK3CB_TKM_O_MD"];///"O_T_InfSquad";/// -CSATSpecOp = ["UK3CB_TKA_O_SL","UK3CB_TKA_O_MK","UK3CB_TKA_O_TL","UK3CB_TKA_O_AR","UK3CB_TKA_O_AA","UK3CB_TKA_O_ENG","UK3CB_TKA_O_AT","UK3CB_TKA_O_MD"];///(configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "SpecOps" >> "O_T_ViperTeam");/// -factionMaleInvaders = "UK3CB_TKM_B"; -groupsCSATSquad = [CSATSquad,["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_MG","UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_MK","UK3CB_TKM_O_MG_ASST","UK3CB_TKA_O_LAT","UK3CB_TKM_O_MD"],["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_AR","UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_MK","UK3CB_TKM_O_IED","UK3CB_TKM_O_AA","UK3CB_TKM_O_MD"]];//[CSATSquad,"O_T_InfSquad_Weapons"];/// +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "UK3CB_TKP_O_Datsun_Pickup_PKM"; + vehFIATruck = "UK3CB_TKP_O_Hilux_Open"; + vehFIACar = "UK3CB_TKP_O_Lada_Police"; + }; -supportStaticCSATB = "RHS_Kord_Tripod_Bag"; -ATStaticCSATB = "RHS_Kornet_Gun_Bag"; +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "UK3CB_TKM_O_KORD_high"; +staticATInvaders = "UK3CB_TKM_O_SPG9"; +staticAAInvaders = "UK3CB_TKM_O_ZU23"; +CSATMortar = "UK3CB_TKM_O_2b14_82mm"; + +//Static Weapon Bags MGStaticCSATB = "RHS_Kord_Gun_Bag"; -supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; +ATStaticCSATB = "RHS_Kornet_Gun_Bag"; AAStaticCSATB = "O_AA_01_weapon_F"; MortStaticCSATB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticCSATB = "RHS_Kord_Tripod_Bag"; +//Tall Support +supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; +//Mortar Support supportStaticCSATB3 = "RHS_Podnos_Bipod_Bag"; - -weaponsCSAT append ["UK3CB_RPK","rhs_weap_ak103","rhs_weap_ak104_npz","rhs_weap_ak105_npz","arifle_AK12_F","arifle_AK12_GL_F","rhs_weap_ak74_2","rhs_weap_ak74_gp25","rhs_weap_ak74m_2mag","rhs_weap_ak74m_gp25_1p29","rhs_weap_ak74n_gp25","rhs_weap_akm","rhs_weap_akm_gp25","rhs_weap_asval","rhs_weap_svdp","rhs_weap_svds","rhs_weap_t5000","rhs_weap_vss","rhs_weap_aks74u","rhs_weap_rpg26","rhs_weap_rpg7","hgun_Pistol_heavy_01_F","rhs_weap_igla","rhs_weap_pya","rhs_weap_pkm","rhs_weap_pkp","rhs_weap_makarov_pm","rhs_weap_rpg7_pgo","rhs_weap_rshg2"]; -ammunitionCSAT append ["rhs_mag_nspn_yellow","rhs_mag_nspn_red","rhs_mag_nspn_green"]; -smokeX = smokeX + ["rhs_mag_nspd","rhs_mag_rdg2_white","rhs_mag_rdg2_black"]; -NVGoggles = NVGoggles + ["rhs_1PN138"]; -//opticsAAF = opticsAAF + ["rhs_acc_1p29","rhs_acc_1p63","rhs_acc_rakursPM","rhs_acc_1p78","rhs_acc_1pn93_1","rhs_acc_1pn93_2","rhs_acc_dh520x56","rhs_acc_ekp1","rhs_acc_pgo7v","rhs_acc_pgo7v2","rhs_acc_pgo7v3","rhs_acc_pkas","rhs_acc_pso1m2","rhs_acc_pso1m21"]; -itemsAAF = itemsAAF + ["rhs_acc_2dpZenit","rhs_acc_2dpZenit_ris","rhs_acc_uuk","rhs_acc_dtk1l","rhs_acc_ak5","rhs_acc_dtk","rhs_acc_dtk1983","rhs_acc_dtk1","rhs_acc_dtk1p","rhs_acc_dtk2","rhs_acc_dtk3","rhs_acc_dtk4short","rhs_acc_dtk4screws","rhs_acc_dtk4long","rhs_item_flightrecorder","rhs_acc_pbs1","rhs_acc_pbs4","rhs_acc_perst1ik","rhs_acc_perst1ik_ris","rhs_acc_perst3","rhs_acc_perst3_top","rhs_acc_perst3_2dp_h","rhs_acc_perst3_2dp_light_h","rhs_acc_pgs64","rhs_acc_pgs64_74u","rhs_acc_pgs64_74un","rhs_acc_grip_rk2","rhs_acc_grip_rk6","rhs_acc_tgpa","rhs_acc_tgpv"]; - -lampInvaders = "rhs_acc_2dpZenit"; -flagCSATmrk = "UK3CB_Marker_O_TKM"; -nameInvaders = "TKM"; -if (isServer) then {"CSAT_carrier" setMarkerText "Takistani Carrier"}; diff --git a/A3-Antistasi/Templates/3CB_Inv_UKN_Temp.sqf b/A3-Antistasi/Templates/3CB_Inv_UKN_Temp.sqf new file mode 100644 index 0000000000..514ef9a3a0 --- /dev/null +++ b/A3-Antistasi/Templates/3CB_Inv_UKN_Temp.sqf @@ -0,0 +1,171 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "TKM"; + +//SF Faction +factionMaleInvaders = "UK3CB_TKM_B"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "UK3CB_TKP_O"}; + +//Flag Images +CSATFlag = "Flag_TKM_O_Army"; +CSATFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_TKM\Flag\tkm_o_flag_co.paa"; +flagCSATmrk = "UK3CB_Marker_O_TKM"; +if (isServer) then {"CSAT_carrier" setMarkerText "Takistani Carrier"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +CSATPlayerLoadouts = [ + //Team Leader + "UK3CB_TKM_O_SL", + //Medic + "UK3CB_TKM_O_MD", + //Autorifleman + "UK3CB_TKM_O_AR", + //Marksman + "UK3CB_TKM_O_MK", + //Anti-tank Scout + "UK3CB_TKM_O_LAT", + //AT2 + "UK3CB_TKM_O_LAT" +]; + +//PVP Player Vehicles +vehCSATPVP = ["UK3CB_TKM_O_BTR40","UK3CB_TKM_O_Hilux_Open","UK3CB_TKM_O_UAZ_Closed","UK3CB_TKM_O_Datsun_Pkm","UK3CB_TKM_O_Hilux_Dshkm"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "UK3CB_TKM_O_RIF_1"; +CSATOfficer = "UK3CB_TKM_O_WAR"; +CSATBodyG = "UK3CB_TKM_O_IED"; +CSATCrew = "UK3CB_TKM_O_RIF_2"; +CSATMarksman = "UK3CB_TKM_O_MK";; +staticCrewInvaders = "UK3CB_TKM_O_RIF_2"; +CSATPilot = "UK3CB_TKA_O_HELI_PILOT"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "UK3CB_TKP_O_RIF_1"; + FIAMarksman = "UK3CB_TKP_O_MK"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["UK3CB_TKM_O_TL","UK3CB_TKM_O_RIF_1"]; +groupsCSATSniper = ["UK3CB_TKM_O_SPOT","UK3CB_TKM_O_SPOT"]; +groupsCSATsmall = [groupsCSATSentry,["UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_RIF_2"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_AA","UK3CB_TKM_O_AA","UK3CB_TKM_O_AA_ASST"]; +groupsCSATAT = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT_ASST"]; +groupsCSATmid = [["UK3CB_TKM_O_SL","UK3CB_TKM_O_RIF_1","UK3CB_TKM_O_RIF_1","UK3CB_TKM_O_MD"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_GL","UK3CB_TKM_O_MG","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT_ASST","UK3CB_TKM_O_AR","UK3CB_TKM_O_MD"]; +CSATSpecOp = ["UK3CB_TKA_O_SL","UK3CB_TKA_O_MK","UK3CB_TKA_O_TL","UK3CB_TKA_O_AR","UK3CB_TKA_O_AA","UK3CB_TKA_O_ENG","UK3CB_TKA_O_AT","UK3CB_TKA_O_MD"]; +groupsCSATSquad = + [ + CSATSquad, + ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_MG","UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_MK","UK3CB_TKM_O_MG_ASST","UK3CB_TKA_O_LAT","UK3CB_TKM_O_MD"], + ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_AR","UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_MK","UK3CB_TKM_O_IED","UK3CB_TKM_O_AA","UK3CB_TKM_O_MD"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["UK3CB_TKP_O_STATIC_GUN_NSV","UK3CB_TKP_O_STATIC_TRI_NSV"], + ["UK3CB_TKP_O_AT","UK3CB_TKP_O_RIF_2"], + ["UK3CB_TKP_O_OFF","UK3CB_TKP_O_MK"] + ]; + //Fireteams + groupsFIAMid = + [ + ["UK3CB_TKP_O_QRF_SL","UK3CB_TKP_O_QRF_MK","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_ENG"], + ["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_RIF_1","UK3CB_TKP_O_QRF_AT"], + ["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_ENG","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_AT"] + ]; + //Squads + FIASquad = ["UK3CB_TKP_O_CIB_SL","UUK3CB_TKP_O_CIB_RIF_2","UK3CB_TKP_O_CIB_AT","UK3CB_TKP_O_CIB_MD","UK3CB_TKP_O_CIB_TL","UK3CB_TKP_O_CIB_AR","UK3CB_TKP_O_CIB_RIF_1","UK3CB_TKP_O_CIB_ENG"]; + groupsFIASquad = [FIASquad]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATLightArmed = ["UK3CB_TKM_O_Datsun_Pkm","UK3CB_TKM_O_Hilux_Dshkm","UK3CB_TKM_O_Hilux_GMG","UK3CB_TKM_O_Hilux_Rocket","UK3CB_TKM_O_Hilux_Spg9","UK3CB_TKM_O_Hilux_Zu23"]; +vehCSATLightUnarmed = ["UK3CB_TKM_O_BTR40","UK3CB_TKM_O_Hilux_Open","UK3CB_TKM_O_UAZ_Closed"]; +vehCSATTrucks = ["UK3CB_TKM_O_Ural_Covered","UK3CB_TKM_O_V3S_Closed","UK3CB_TKM_O_V3S_Open","UK3CB_TKM_O_Ural_Open"]; +vehCSATAmmoTruck = "UK3CB_TKM_O_V3S_Reammo"; +vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored +vehCSATAPC = ["UK3CB_TKM_O_BMP1","UK3CB_TKM_O_BRDM2_ATGM","UK3CB_TKM_O_BTR60","UK3CB_TKM_O_BRDM2","UK3CB_TKM_O_BRDM2_HQ","UK3CB_TKM_O_MTLB_PKT"]; +vehCSATTank = "UK3CB_TKM_O_T34"; +vehCSATAA = "UK3CB_TKM_O_V3S_Zu23"; +vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats +vehCSATBoat = "UK3CB_TKA_O_RHIB_Gunboat"; +vehCSATRBoat = "UK3CB_TKM_O_MTLB_PKT"; +vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"UK3CB_TKM_O_BTR60"]; +//Planes +vehCSATPlane = "UK3CB_TKA_O_Su25SM_CAS"; +vehCSATPlaneAA = "UK3CB_TKA_O_L39_AA"; +vehCSATTransportPlanes = []; +//Heli +vehCSATPatrolHeli = "UK3CB_TKA_O_UH1H_M240"; +vehCSATTransportHelis = ["UK3CB_TKA_O_Mi8AMTSh","UK3CB_TKA_O_Mi8","UK3CB_TKC_O_Mi8AMT",vehCSATPatrolHeli]; +vehCSATAttackHelis = ["UK3CB_TKA_O_Mi_24P","UK3CB_TKA_O_Mi_24V"]; +//UAV +vehCSATUAV = "rhs_pchela1t_vvs"; +vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery +vehCSATMRLS = "UK3CB_TKM_O_Hilux_Rocket_Arty"; +vehCSATMRLSMags = "122mm_10rnds"; +//Combined Arrays +vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "UK3CB_TKM_O_Ural_Repair","UK3CB_TKM_O_V3S_Refuel"]; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; + +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "UK3CB_TKP_O_Datsun_Pickup_PKM"; + vehFIATruck = "UK3CB_TKP_O_Hilux_Open"; + vehFIACar = "UK3CB_TKP_O_Lada_Police"; + }; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "UK3CB_TKM_O_KORD_high"; +staticATInvaders = "UK3CB_TKM_O_SPG9"; +staticAAInvaders = "UK3CB_TKM_O_ZU23"; +CSATMortar = "UK3CB_TKM_O_2b14_82mm"; + +//Static Weapon Bags +MGStaticCSATB = "RHS_Kord_Gun_Bag"; +ATStaticCSATB = "RHS_Kornet_Gun_Bag"; +AAStaticCSATB = "O_AA_01_weapon_F"; +MortStaticCSATB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticCSATB = "RHS_Kord_Tripod_Bag"; +//Tall Support +supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; +//Mortar Support +supportStaticCSATB3 = "RHS_Podnos_Bipod_Bag"; diff --git a/A3-Antistasi/Templates/3CB_Inv_UKN_Trop.sqf b/A3-Antistasi/Templates/3CB_Inv_UKN_Trop.sqf new file mode 100644 index 0000000000..514ef9a3a0 --- /dev/null +++ b/A3-Antistasi/Templates/3CB_Inv_UKN_Trop.sqf @@ -0,0 +1,171 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "TKM"; + +//SF Faction +factionMaleInvaders = "UK3CB_TKM_B"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "UK3CB_TKP_O"}; + +//Flag Images +CSATFlag = "Flag_TKM_O_Army"; +CSATFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_TKM\Flag\tkm_o_flag_co.paa"; +flagCSATmrk = "UK3CB_Marker_O_TKM"; +if (isServer) then {"CSAT_carrier" setMarkerText "Takistani Carrier"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +CSATPlayerLoadouts = [ + //Team Leader + "UK3CB_TKM_O_SL", + //Medic + "UK3CB_TKM_O_MD", + //Autorifleman + "UK3CB_TKM_O_AR", + //Marksman + "UK3CB_TKM_O_MK", + //Anti-tank Scout + "UK3CB_TKM_O_LAT", + //AT2 + "UK3CB_TKM_O_LAT" +]; + +//PVP Player Vehicles +vehCSATPVP = ["UK3CB_TKM_O_BTR40","UK3CB_TKM_O_Hilux_Open","UK3CB_TKM_O_UAZ_Closed","UK3CB_TKM_O_Datsun_Pkm","UK3CB_TKM_O_Hilux_Dshkm"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "UK3CB_TKM_O_RIF_1"; +CSATOfficer = "UK3CB_TKM_O_WAR"; +CSATBodyG = "UK3CB_TKM_O_IED"; +CSATCrew = "UK3CB_TKM_O_RIF_2"; +CSATMarksman = "UK3CB_TKM_O_MK";; +staticCrewInvaders = "UK3CB_TKM_O_RIF_2"; +CSATPilot = "UK3CB_TKA_O_HELI_PILOT"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "UK3CB_TKP_O_RIF_1"; + FIAMarksman = "UK3CB_TKP_O_MK"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["UK3CB_TKM_O_TL","UK3CB_TKM_O_RIF_1"]; +groupsCSATSniper = ["UK3CB_TKM_O_SPOT","UK3CB_TKM_O_SPOT"]; +groupsCSATsmall = [groupsCSATSentry,["UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_RIF_2"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_AA","UK3CB_TKM_O_AA","UK3CB_TKM_O_AA_ASST"]; +groupsCSATAT = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT_ASST"]; +groupsCSATmid = [["UK3CB_TKM_O_SL","UK3CB_TKM_O_RIF_1","UK3CB_TKM_O_RIF_1","UK3CB_TKM_O_MD"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_GL","UK3CB_TKM_O_MG","UK3CB_TKM_O_AT","UK3CB_TKM_O_AT_ASST","UK3CB_TKM_O_AR","UK3CB_TKM_O_MD"]; +CSATSpecOp = ["UK3CB_TKA_O_SL","UK3CB_TKA_O_MK","UK3CB_TKA_O_TL","UK3CB_TKA_O_AR","UK3CB_TKA_O_AA","UK3CB_TKA_O_ENG","UK3CB_TKA_O_AT","UK3CB_TKA_O_MD"]; +groupsCSATSquad = + [ + CSATSquad, + ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_MG","UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_MK","UK3CB_TKM_O_MG_ASST","UK3CB_TKA_O_LAT","UK3CB_TKM_O_MD"], + ["UK3CB_TKM_O_SL","UK3CB_TKM_O_TL","UK3CB_TKM_O_AR","UK3CB_TKM_O_RIF_2","UK3CB_TKM_O_MK","UK3CB_TKM_O_IED","UK3CB_TKM_O_AA","UK3CB_TKM_O_MD"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["UK3CB_TKP_O_STATIC_GUN_NSV","UK3CB_TKP_O_STATIC_TRI_NSV"], + ["UK3CB_TKP_O_AT","UK3CB_TKP_O_RIF_2"], + ["UK3CB_TKP_O_OFF","UK3CB_TKP_O_MK"] + ]; + //Fireteams + groupsFIAMid = + [ + ["UK3CB_TKP_O_QRF_SL","UK3CB_TKP_O_QRF_MK","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_ENG"], + ["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_RIF_1","UK3CB_TKP_O_QRF_AT"], + ["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_ENG","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_AT"] + ]; + //Squads + FIASquad = ["UK3CB_TKP_O_CIB_SL","UUK3CB_TKP_O_CIB_RIF_2","UK3CB_TKP_O_CIB_AT","UK3CB_TKP_O_CIB_MD","UK3CB_TKP_O_CIB_TL","UK3CB_TKP_O_CIB_AR","UK3CB_TKP_O_CIB_RIF_1","UK3CB_TKP_O_CIB_ENG"]; + groupsFIASquad = [FIASquad]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATLightArmed = ["UK3CB_TKM_O_Datsun_Pkm","UK3CB_TKM_O_Hilux_Dshkm","UK3CB_TKM_O_Hilux_GMG","UK3CB_TKM_O_Hilux_Rocket","UK3CB_TKM_O_Hilux_Spg9","UK3CB_TKM_O_Hilux_Zu23"]; +vehCSATLightUnarmed = ["UK3CB_TKM_O_BTR40","UK3CB_TKM_O_Hilux_Open","UK3CB_TKM_O_UAZ_Closed"]; +vehCSATTrucks = ["UK3CB_TKM_O_Ural_Covered","UK3CB_TKM_O_V3S_Closed","UK3CB_TKM_O_V3S_Open","UK3CB_TKM_O_Ural_Open"]; +vehCSATAmmoTruck = "UK3CB_TKM_O_V3S_Reammo"; +vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored +vehCSATAPC = ["UK3CB_TKM_O_BMP1","UK3CB_TKM_O_BRDM2_ATGM","UK3CB_TKM_O_BTR60","UK3CB_TKM_O_BRDM2","UK3CB_TKM_O_BRDM2_HQ","UK3CB_TKM_O_MTLB_PKT"]; +vehCSATTank = "UK3CB_TKM_O_T34"; +vehCSATAA = "UK3CB_TKM_O_V3S_Zu23"; +vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats +vehCSATBoat = "UK3CB_TKA_O_RHIB_Gunboat"; +vehCSATRBoat = "UK3CB_TKM_O_MTLB_PKT"; +vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"UK3CB_TKM_O_BTR60"]; +//Planes +vehCSATPlane = "UK3CB_TKA_O_Su25SM_CAS"; +vehCSATPlaneAA = "UK3CB_TKA_O_L39_AA"; +vehCSATTransportPlanes = []; +//Heli +vehCSATPatrolHeli = "UK3CB_TKA_O_UH1H_M240"; +vehCSATTransportHelis = ["UK3CB_TKA_O_Mi8AMTSh","UK3CB_TKA_O_Mi8","UK3CB_TKC_O_Mi8AMT",vehCSATPatrolHeli]; +vehCSATAttackHelis = ["UK3CB_TKA_O_Mi_24P","UK3CB_TKA_O_Mi_24V"]; +//UAV +vehCSATUAV = "rhs_pchela1t_vvs"; +vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery +vehCSATMRLS = "UK3CB_TKM_O_Hilux_Rocket_Arty"; +vehCSATMRLSMags = "122mm_10rnds"; +//Combined Arrays +vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "UK3CB_TKM_O_Ural_Repair","UK3CB_TKM_O_V3S_Refuel"]; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; + +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "UK3CB_TKP_O_Datsun_Pickup_PKM"; + vehFIATruck = "UK3CB_TKP_O_Hilux_Open"; + vehFIACar = "UK3CB_TKP_O_Lada_Police"; + }; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "UK3CB_TKM_O_KORD_high"; +staticATInvaders = "UK3CB_TKM_O_SPG9"; +staticAAInvaders = "UK3CB_TKM_O_ZU23"; +CSATMortar = "UK3CB_TKM_O_2b14_82mm"; + +//Static Weapon Bags +MGStaticCSATB = "RHS_Kord_Gun_Bag"; +ATStaticCSATB = "RHS_Kornet_Gun_Bag"; +AAStaticCSATB = "O_AA_01_weapon_F"; +MortStaticCSATB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticCSATB = "RHS_Kord_Tripod_Bag"; +//Tall Support +supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; +//Mortar Support +supportStaticCSATB3 = "RHS_Podnos_Bipod_Bag"; diff --git a/A3-Antistasi/Templates/3CB_Occ_TKA_Arid.sqf b/A3-Antistasi/Templates/3CB_Occ_TKA_Arid.sqf new file mode 100644 index 0000000000..f438326ddf --- /dev/null +++ b/A3-Antistasi/Templates/3CB_Occ_TKA_Arid.sqf @@ -0,0 +1,190 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "TKA"; + +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "UK3CB_BAF_Faction_Army_Desert"; +//Miltia Faction +if (gameMode != 4) then {factionFIA = "UK3CB_TKP_I"}; + +//Flag Images +NATOFlag = "Flag_TKA_O_Army"; +NATOFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_TKA\Flag\tka_o_army_co.paa"; +flagNATOmrk = "UK3CB_MARKER_TKA_O_Army"; +if (isServer) then {"NATO_carrier" setMarkerText "Takistani Carrier"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + "UK3CB_TKA_B_SF_SL", + //Medic + "UK3CB_TKA_B_SF_MD", + //Autorifleman + "UK3CB_TKA_B_SF_AR", + //Marksman + "UK3CB_TKA_B_SF_MK", + //Anti-tank Scout + "UK3CB_TKA_B_SF_LAT", + //AT2 + "UK3CB_TKA_B_SF_LAT" +]; + +//PVP Player Vehicles +vehNATOPVP = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Green","UK3CB_BAF_LandRover_Hard_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical","UK3CB_BAF_LandRover_Soft_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_WMIK_HMG_FFR_Green_B_Tropical_RM"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "UK3CB_TKA_I_RIF_1"; +NATOOfficer = "UK3CB_TKA_I_OFF"; +NATOOfficer2 = "UK3CB_TKA_I_CREW_COMM"; +NATOBodyG = "UK3CB_BAF_Crewman_RTR_DDPM"; +NATOCrew = "UK3CB_TKA_I_CREW"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "UK3CB_TKA_I_MK"; +staticCrewOccupants = "UK3CB_TKA_I_NAVY_CREW"; +NATOPilot = "UK3CB_TKA_I_JET_PILOT"; + +//Militia Units +if (gameMode != 4) then + { + FIARifleman = "UK3CB_TKP_I_RIF_1"; + FIAMarksman = "UK3CB_TKP_I_MK"; + }; + +//Police Units +policeOfficer = "UK3CB_TKP_I_TL"; +policeGrunt = "UK3CB_TKP_I_RIF_2"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["UK3CB_TKA_I_GL",NATOGrunt]; +groupsNATOSniper = ["UK3CB_TKA_I_SF_SNI","UK3CB_TKA_I_SF_SPOT"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AA","UK3CB_TKA_I_AA","UK3CB_TKA_I_AA_ASST"]; +groupsNATOAT = ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST"]; +groupsNATOmid = [["UK3CB_TKA_I_SL","UK3CB_TKA_I_MG","UK3CB_TKA_I_MG_ASST","UK3CB_TKA_I_RIF_2"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["UK3CB_TKA_I_SL",NATOGrunt,"UK3CB_TKA_I_DEM",NATOMarksman,"UK3CB_TKA_I_TL","UK3CB_TKA_I_AR","UK3CB_TKA_I_LAT","UK3CB_TKA_I_MD"]; +NATOSpecOp = ["UK3CB_TKA_I_SF_SL","UK3CB_TKA_I_SF_RIF_1","UK3CB_TKA_I_SF_RIF_2","UK3CB_TKA_I_SF_LAT","UK3CB_TKA_I_SF_TL","UK3CB_TKA_I_SF_DEM","UK3CB_TKA_I_SF_AR","UK3CB_TKA_I_SF_MD"]; +groupsNATOSquad = + [ + NATOSquad, + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL",NATOMarksman,"UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST","UK3CB_TKA_I_DEM","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_ENG","UK3CB_TKA_I_TL","UK3CB_TKA_I_MG","UK3CB_TKA_I_MG_ASST","UK3CB_TKA_I_GL","UK3CB_TKA_I_RIF_2","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL",NATOMarksman,"UK3CB_TKA_I_TL","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL","UK3CB_TKA_I_MK","UK3CB_TKA_I_ENG","UK3CB_TKA_I_LAT","UK3CB_TKA_I_DEM","UK3CB_TKA_I_MD"] + ]; + +//Militia Groups +if (gameMode != 4) then + { + //Teams + groupsFIASmall = + [ + ["UK3CB_TKP_I_STATIC_GUN_NSV","UK3CB_TKP_I_STATIC_TRI_NSV"], + ["UK3CB_TKP_I_AT","UK3CB_TKP_I_RIF_2"], + ["UK3CB_TKP_I_IFF","UK3CB_TKP_I_MK"] + ]; + //Fireteams + groupsFIAMid = + [ + ["UK3CB_TKP_I_QRF_SL","UK3CB_TKP_I_QRF_MK","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_ENG"], + ["UK3CB_TKP_I_QRF_TL","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_RIF_1","UK3CB_TKP_I_QRF_AT"], + ["UK3CB_TKP_I_QRF_TL","UK3CB_TKP_I_QRF_ENG","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_AT"] + ]; + //Squads + FIASquad = ["UK3CB_TKP_I_CIB_SL","UUK3CB_TKP_I_CIB_RIF_2","UK3CB_TKP_I_CIB_AT","UK3CB_TKP_I_CIB_TL","UK3CB_TKP_I_CIB_AR","UK3CB_TKP_I_CIB_RIF_1","UK3CB_TKP_I_CIB_ENG","UK3CB_TKP_I_CIB_MD"]; + groupsFIASquad = [FIASquad]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; +vehNATOLightArmed = ["UK3CB_TKA_I_LR_M2","UK3CB_TKA_I_LR_AGS30","UK3CB_TKA_I_LR_SPG9","UK3CB_TKA_I_GAZ_Vodnik_PKT","UK3CB_TKA_I_LR_SF_M2","UK3CB_TKA_I_LR_SF_AGS30","UK3CB_TKA_I_BTR40_MG","UK3CB_TKA_I_BRDM2","UK3CB_TKA_I_BRDM2_ATGM"]; +vehNATOLightUnarmed = ["UK3CB_TKA_I_BTR40","UK3CB_TKA_I_GAZ_Vodnik","UK3CB_TKA_I_LR_Open","UK3CB_TKA_I_Hilux_Closed","UK3CB_TKA_I_BRDM2_HQ"]; +vehNATOTrucks = ["UK3CB_TKA_I_V3S_Closed","UK3CB_TKA_I_V3S_Open","UK3CB_TKA_I_V3S_Recovery"]; +vehNATOCargoTrucks = []; +vehNATOAmmoTruck = "UK3CB_TKA_I_M113_supply"; +vehNATORepairTruck = "UK3CB_TKA_I_V3S_Repair"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["UK3CB_TKA_I_MTLB_PKT","UK3CB_TKA_I_BMP1","UK3CB_TKA_I_BMP2","UK3CB_TKA_I_BMP2K","UK3CB_TKA_I_BTR60","UK3CB_TKA_I_GAZ_Vodnik_KVPT","UK3CB_TKA_I_GAZ_Vodnik_Cannon"]; +vehNATOTank = "UK3CB_TKA_I_T55"; +vehNATOAA = "UK3CB_TKA_I_ZsuTank"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "UK3CB_TKA_I_RHIB"; +vehNATORBoat = "UK3CB_TKA_I_RHIB_Gunboat"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes +vehNATOPlane = "UK3CB_TKA_I_Su25SM_CAS"; +vehNATOPlaneAA = "UK3CB_TKA_I_L39_AA"; +vehNATOTransportPlanes = []; +//Heli +vehNATOPatrolHeli = "UK3CB_TKA_I_UH1H_M240"; +vehNATOTransportHelis = ["UK3CB_TKA_I_Mi8","UK3CB_TKA_I_Mi8AMT",vehNATOPatrolHeli,"UK3CB_TKA_I_UH1H"]; +vehNATOAttackHelis = ["UK3CB_TKA_I_UH1H_M240","UK3CB_TKA_I_Mi_24P","UK3CB_TKA_I_Mi_24V","UK3CB_TKA_I_Mi8AMTSh"]; +//UAV +vehNATOUAV = "B_UAV_02_F"; +vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery +vehNATOMRLS = "UK3CB_TKA_I_BM21"; +vehNATOMRLSMags = "rhs_mag_40Rnd_122mm_rockets"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "UK3CB_TKA_I_V3S_Refuel", "UK3CB_TKA_I_Hilux_Open", vehNATORepairTruck,"UK3CB_TKA_I_UAZ_Closed"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if (gameMode != 4) then + { + vehFIAArmedCar = "UK3CB_TKP_I_Datsun_Pickup_PKM"; + vehFIATruck = "UK3CB_TKP_I_Hilux_Ipen"; + vehFIACar = "UK3CB_TKP_I_Lada_Police"; + }; + +//Police Vehicles +vehPoliceCar = "UK3CB_TKP_I_Lada_Police"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "UK3CB_TKA_I_KORD_high"; +staticATOccupants = "UK3CB_TKA_I_Kornet"; +staticAAOccupants = "UK3CB_TKA_I_Igla_AA_pod"; +NATOMortar = "UK3CB_TKA_I_D30"; + +//Static Weapon Bags +MGStaticNATOB = "RHS_Kord_Gun_Bag"; +ATStaticNATOB = "RHS_Kornet_Gun_Bag"; +AAStaticNATOB = "B_AA_01_weapon_F"; +MortStaticNATOB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticNATOB = "RHS_Kornet_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "RHS_Kord_Tripod_Bag"; +//Mortar Support +supportStaticNATOB3 = "RHS_Podnos_Tripod_Bag"; diff --git a/A3-Antistasi/Templates/Occupants3CBTKA.sqf b/A3-Antistasi/Templates/3CB_Occ_UKN-G_Temp.sqf similarity index 52% rename from A3-Antistasi/Templates/Occupants3CBTKA.sqf rename to A3-Antistasi/Templates/3CB_Occ_UKN-G_Temp.sqf index 05ec77d8db..bbb28e0cc6 100644 --- a/A3-Antistasi/Templates/Occupants3CBTKA.sqf +++ b/A3-Antistasi/Templates/3CB_Occ_UKN-G_Temp.sqf @@ -1,21 +1,29 @@ -//if (worldName == "Chernarus_summer") exitWith {call compile preProcessFileLineNumbers "Templates\Occupants3CBBAFT.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "TKA"; -NATOGrunt = "UK3CB_TKA_I_RIF_1"; -NATOOfficer = "UK3CB_TKA_I_OFF"; -NATOOfficer2 = "UK3CB_TKA_I_CREW_COMM"; -NATOBodyG = "UK3CB_BAF_Crewman_RTR_DDPM"; -NATOCrew = "UK3CB_TKA_I_CREW"; -NATOUnarmed = "B_G_Survivor_F"; -NATOMarksman = "UK3CB_TKA_I_MK"; -staticCrewOccupants = "UK3CB_TKA_I_NAVY_CREW"; -NATOPilot = "UK3CB_TKA_I_JET_PILOT"; +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "UK3CB_BAF_Faction_Army_Desert"; +//Miltia Faction +if (gameMode != 4) then {factionFIA = "UK3CB_TKP_I"}; -NATOMG = "UK3CB_TKA_I_KORD_high"; -NATOMortar = "UK3CB_TKA_I_D30"; -staticATOccupants = "UK3CB_TKA_I_Kornet"; -staticAAOccupants = "UK3CB_TKA_I_Igla_AA_pod"; +//Flag Images +NATOFlag = "Flag_TKA_O_Army"; +NATOFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_TKA\Flag\tka_o_army_co.paa"; +flagNATOmrk = "UK3CB_MARKER_TKA_O_Army"; +if (isServer) then {"NATO_carrier" setMarkerText "Takistani Carrier"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; -//NATO PvP Loadouts +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts NATOPlayerLoadouts = [ //Team Leader "UK3CB_TKA_B_SF_SL", @@ -27,12 +35,94 @@ NATOPlayerLoadouts = [ "UK3CB_TKA_B_SF_MK", //Anti-tank Scout "UK3CB_TKA_B_SF_LAT", - //Anti-tank Scout + //AT2 "UK3CB_TKA_B_SF_LAT" ]; -vehNATOPVP = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Green","UK3CB_BAF_LandRover_Hard_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical","UK3CB_BAF_LandRover_Soft_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_WMIK_HMG_FFR_Green_B_Tropical_RM"];//This array contains the vehicles Nato-PvP players can spawn near their flag. +//PVP Player Vehicles +vehNATOPVP = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Green","UK3CB_BAF_LandRover_Hard_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical","UK3CB_BAF_LandRover_Soft_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_WMIK_HMG_FFR_Green_B_Tropical_RM"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "UK3CB_TKA_I_RIF_1"; +NATOOfficer = "UK3CB_TKA_I_OFF"; +NATOOfficer2 = "UK3CB_TKA_I_CREW_COMM"; +NATOBodyG = "UK3CB_BAF_Crewman_RTR_DDPM"; +NATOCrew = "UK3CB_TKA_I_CREW"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "UK3CB_TKA_I_MK"; +staticCrewOccupants = "UK3CB_TKA_I_NAVY_CREW"; +NATOPilot = "UK3CB_TKA_I_JET_PILOT"; + +//Militia Units +if (gameMode != 4) then + { + FIARifleman = "UK3CB_TKP_I_RIF_1"; + FIAMarksman = "UK3CB_TKP_I_MK"; + }; + +//Police Units +policeOfficer = "UK3CB_TKP_I_TL"; +policeGrunt = "UK3CB_TKP_I_RIF_2"; +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["UK3CB_TKA_I_GL",NATOGrunt]; +groupsNATOSniper = ["UK3CB_TKA_I_SF_SNI","UK3CB_TKA_I_SF_SPOT"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AA","UK3CB_TKA_I_AA","UK3CB_TKA_I_AA_ASST"]; +groupsNATOAT = ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST"]; +groupsNATOmid = [["UK3CB_TKA_I_SL","UK3CB_TKA_I_MG","UK3CB_TKA_I_MG_ASST","UK3CB_TKA_I_RIF_2"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["UK3CB_TKA_I_SL",NATOGrunt,"UK3CB_TKA_I_DEM",NATOMarksman,"UK3CB_TKA_I_TL","UK3CB_TKA_I_AR","UK3CB_TKA_I_LAT","UK3CB_TKA_I_MD"]; +NATOSpecOp = ["UK3CB_TKA_I_SF_SL","UK3CB_TKA_I_SF_RIF_1","UK3CB_TKA_I_SF_RIF_2","UK3CB_TKA_I_SF_LAT","UK3CB_TKA_I_SF_TL","UK3CB_TKA_I_SF_DEM","UK3CB_TKA_I_SF_AR","UK3CB_TKA_I_SF_MD"]; +groupsNATOSquad = + [ + NATOSquad, + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL",NATOMarksman,"UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST","UK3CB_TKA_I_DEM","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_ENG","UK3CB_TKA_I_TL","UK3CB_TKA_I_MG","UK3CB_TKA_I_MG_ASST","UK3CB_TKA_I_GL","UK3CB_TKA_I_RIF_2","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL",NATOMarksman,"UK3CB_TKA_I_TL","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL","UK3CB_TKA_I_MK","UK3CB_TKA_I_ENG","UK3CB_TKA_I_LAT","UK3CB_TKA_I_DEM","UK3CB_TKA_I_MD"] + ]; + +//Militia Groups +if (gameMode != 4) then + { + //Teams + groupsFIASmall = + [ + ["UK3CB_TKP_I_STATIC_GUN_NSV","UK3CB_TKP_I_STATIC_TRI_NSV"], + ["UK3CB_TKP_I_AT","UK3CB_TKP_I_RIF_2"], + ["UK3CB_TKP_I_IFF","UK3CB_TKP_I_MK"] + ]; + //Fireteams + groupsFIAMid = + [ + ["UK3CB_TKP_I_QRF_SL","UK3CB_TKP_I_QRF_MK","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_ENG"], + ["UK3CB_TKP_I_QRF_TL","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_RIF_1","UK3CB_TKP_I_QRF_AT"], + ["UK3CB_TKP_I_QRF_TL","UK3CB_TKP_I_QRF_ENG","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_AT"] + ]; + //Squads + FIASquad = ["UK3CB_TKP_I_CIB_SL","UUK3CB_TKP_I_CIB_RIF_2","UK3CB_TKP_I_CIB_AT","UK3CB_TKP_I_CIB_TL","UK3CB_TKP_I_CIB_AR","UK3CB_TKP_I_CIB_RIF_1","UK3CB_TKP_I_CIB_ENG","UK3CB_TKP_I_CIB_MD"]; + groupsFIASquad = [FIASquad]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; vehNATOLightArmed = ["UK3CB_TKA_I_LR_M2","UK3CB_TKA_I_LR_AGS30","UK3CB_TKA_I_LR_SPG9","UK3CB_TKA_I_GAZ_Vodnik_PKT","UK3CB_TKA_I_LR_SF_M2","UK3CB_TKA_I_LR_SF_AGS30","UK3CB_TKA_I_BTR40_MG","UK3CB_TKA_I_BRDM2","UK3CB_TKA_I_BRDM2_ATGM"]; vehNATOLightUnarmed = ["UK3CB_TKA_I_BTR40","UK3CB_TKA_I_GAZ_Vodnik","UK3CB_TKA_I_LR_Open","UK3CB_TKA_I_Hilux_Closed","UK3CB_TKA_I_BRDM2_HQ"]; vehNATOTrucks = ["UK3CB_TKA_I_V3S_Closed","UK3CB_TKA_I_V3S_Open","UK3CB_TKA_I_V3S_Recovery"]; @@ -40,56 +130,61 @@ vehNATOCargoTrucks = []; vehNATOAmmoTruck = "UK3CB_TKA_I_M113_supply"; vehNATORepairTruck = "UK3CB_TKA_I_V3S_Repair"; vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; -vehNATOAPC = ["UK3CB_TKA_I_MTLB_PKT","UK3CB_TKA_I_BMP1","UK3CB_TKA_I_BMP2","UK3CB_TKA_I_BMP2K","UK3CB_TKA_I_BTR60","UK3CB_TKA_I_GAZ_Vodnik_KVPT","UK3CB_TKA_I_GAZ_Vodnik_Cannon"];//"B_T_APC_Tracked_01_CRV_F" has no cargo seats +//Armored +vehNATOAPC = ["UK3CB_TKA_I_MTLB_PKT","UK3CB_TKA_I_BMP1","UK3CB_TKA_I_BMP2","UK3CB_TKA_I_BMP2K","UK3CB_TKA_I_BTR60","UK3CB_TKA_I_GAZ_Vodnik_KVPT","UK3CB_TKA_I_GAZ_Vodnik_Cannon"]; vehNATOTank = "UK3CB_TKA_I_T55"; vehNATOAA = "UK3CB_TKA_I_ZsuTank"; vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats vehNATOBoat = "UK3CB_TKA_I_RHIB"; vehNATORBoat = "UK3CB_TKA_I_RHIB_Gunboat"; vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes vehNATOPlane = "UK3CB_TKA_I_Su25SM_CAS"; vehNATOPlaneAA = "UK3CB_TKA_I_L39_AA"; vehNATOTransportPlanes = []; +//Heli vehNATOPatrolHeli = "UK3CB_TKA_I_UH1H_M240"; vehNATOTransportHelis = ["UK3CB_TKA_I_Mi8","UK3CB_TKA_I_Mi8AMT",vehNATOPatrolHeli,"UK3CB_TKA_I_UH1H"]; vehNATOAttackHelis = ["UK3CB_TKA_I_UH1H_M240","UK3CB_TKA_I_Mi_24P","UK3CB_TKA_I_Mi_24V","UK3CB_TKA_I_Mi8AMTSh"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; +//UAV vehNATOUAV = "B_UAV_02_F"; vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery vehNATOMRLS = "UK3CB_TKA_I_BM21"; -vehNATOMRLSMags = "rhs_mag_40Rnd_122mm_rockets";//["Sh_155mm_AMOS","rhs_mag_155mm_m795_28",,B Alpha 1-1:3 (Alberto)] +vehNATOMRLSMags = "rhs_mag_40Rnd_122mm_rockets"; +//Combined Arrays vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "UK3CB_TKA_I_V3S_Refuel", "UK3CB_TKA_I_Hilux_Open", vehNATORepairTruck,"UK3CB_TKA_I_UAZ_Closed"]; -vehNATOBike = "B_T_Quadbike_01_F"; -NATOFlag = "Flag_TKA_O_Army"; -NATOFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_TKA\Flag\tka_o_army_co.paa"; -NATOAmmobox = "B_supplyCrate_F"; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["UK3CB_TKA_I_GL",NATOGrunt];//"B_T_InfSentry";// -groupsNATOSniper = ["UK3CB_TKA_I_SF_SNI","UK3CB_TKA_I_SF_SPOT"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AA","UK3CB_TKA_I_AA","UK3CB_TKA_I_AA_ASST"]; -groupsNATOAT = ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST"]; -groupsNATOmid = [["UK3CB_TKA_I_SL","UK3CB_TKA_I_MG","UK3CB_TKA_I_MG_ASST","UK3CB_TKA_I_RIF_2"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["UK3CB_TKA_I_SL",NATOGrunt,"UK3CB_TKA_I_DEM",NATOMarksman,"UK3CB_TKA_I_TL","UK3CB_TKA_I_AR","UK3CB_TKA_I_LAT","UK3CB_TKA_I_MD"];//"B_T_InfSquad";// -NATOSpecOp = ["UK3CB_TKA_I_SF_SL","UK3CB_TKA_I_SF_RIF_1","UK3CB_TKA_I_SF_MD","UK3CB_TKA_I_SF_RIF_2","UK3CB_TKA_I_SF_LAT","UK3CB_TKA_I_SF_TL","UK3CB_TKA_I_SF_DEM","UK3CB_TKA_I_SF_AR"];//(configfile >> "CfgGroups" >> "West" >> "BLU_CTRG_F" >> "Infantry" >> "CTRG_InfSquad"); -factionMaleOccupants = "UK3CB_BAF_Faction_Army_Desert"; -groupsNATOSquad = [NATOSquad,["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL",NATOMarksman,"UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST","UK3CB_TKA_I_DEM","UK3CB_TKA_I_MD"],["UK3CB_TKA_I_SL","UK3CB_TKA_I_ENG","UK3CB_TKA_I_TL","UK3CB_TKA_I_MG","UK3CB_TKA_I_MG_ASST","UK3CB_TKA_I_MD","UK3CB_TKA_I_GL","UK3CB_TKA_I_RIF_2"],["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL",NATOMarksman,"UK3CB_TKA_I_TL","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST","UK3CB_TKA_I_MD"],["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL","UK3CB_TKA_I_MK","UK3CB_TKA_I_ENG","UK3CB_TKA_I_LAT","UK3CB_TKA_I_DEM","UK3CB_TKA_I_MD"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];/// +//Militia Vehicles +if (gameMode != 4) then + { + vehFIAArmedCar = "UK3CB_TKP_I_Datsun_Pickup_PKM"; + vehFIATruck = "UK3CB_TKP_I_Hilux_Ipen"; + vehFIACar = "UK3CB_TKP_I_Lada_Police"; + }; -supportStaticNATOB = "RHS_Kornet_Tripod_Bag"; -ATStaticNATOB = "RHS_Kornet_Gun_Bag"; +//Police Vehicles +vehPoliceCar = "UK3CB_TKP_I_Lada_Police"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "UK3CB_TKA_I_KORD_high"; +staticATOccupants = "UK3CB_TKA_I_Kornet"; +staticAAOccupants = "UK3CB_TKA_I_Igla_AA_pod"; +NATOMortar = "UK3CB_TKA_I_D30"; + +//Static Weapon Bags MGStaticNATOB = "RHS_Kord_Gun_Bag"; -supportStaticNATOB2 = "RHS_Kord_Tripod_Bag"; +ATStaticNATOB = "RHS_Kornet_Gun_Bag"; AAStaticNATOB = "B_AA_01_weapon_F"; MortStaticNATOB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticNATOB = "RHS_Kornet_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "RHS_Kord_Tripod_Bag"; +//Mortar Support supportStaticNATOB3 = "RHS_Podnos_Tripod_Bag"; - -weaponsNato append ["UK3CB_FNFAL_FULL","UK3CB_FNFAL_PARA","UK3CB_Enfield_Rail","rhs_weap_igla","rhs_weap_svdp_wd_npz","rhs_weap_makarov_pm","rhs_weap_pb_6p9","UK3CB_RPK","UK3CB_M79","rhs_weap_pkp","rhs_weap_m21a","rhs_weap_m21s","rhs_weap_m70ab2","rhs_weap_m70b1","rhs_weap_m76","rhs_weap_savz58p","rhs_weap_savz58v","rhs_weap_savz58p_rail","rhs_weap_savz58v_rail","rhs_weap_pm63","rhs_weap_ak74m_camo","rhs_weap_ak74m_desert"];//possible weapons that spawn in NATO ammoboxes -smokeX = smokeX + ["UK3CB_BAF_SmokeShell","UK3CB_BAF_SmokeShellRed","UK3CB_BAF_SmokeShellGreen","UK3CB_BAF_SmokeShellYellow","UK3CB_BAF_SmokeShellPurple","UK3CB_BAF_SmokeShellBlue","UK3CB_BAF_SmokeShellOrange"]; -NVGoggles = NVGoggles + ["rhs_1PN138"/*,"rhsusf_ANPVS_15"*/]; -itemsAAF = itemsAAF + ["muzzle_snds_b","uk3cb_fnfal_suit","rhs_acc_dtk3","rhs_acc_dtk4long","rhs_acc_dtk4screws","rhs_acc_dtk4short","rhs_acc_pbs1","rhs_acc_pbs4","rhs_acc_tgpa","rhs_acc_tgpv","rhs_acc_ak5","rhs_acc_dtk","rhs_acc_dtk1","rhs_acc_dtk2","rhs_acc_dtkakm","rhs_acc_uuk","rhs_acc_1p29","rhs_acc_1p63","rhs_acc_1p78","rhs_acc_1p87","rhs_acc_1pn93_1","rhs_acc_1pn93_2","rhs_acc_rakursPM","rhs_acc_pgo7v","rhs_acc_pgo7v2","rhs_acc_pgo7v3","rhs_acc_pkas","rhs_acc_dh520x56","rhs_acc_pso1m2","rhs_acc_pso1m21","rhs_acc_ekp1","rhs_acc_ekp8_02","rhs_acc_ekp8_18","rhs_acc_nita"]; -flagNATOmrk = "UK3CB_MARKER_TKA_O_Army";//ok - -lampOccupants = "acc_flashlight"; -nameOccupants = "TKA"; -if (isServer) then {"NATO_carrier" setMarkerText "Takistani Carrier"}; diff --git a/A3-Antistasi/Templates/3CB_Occ_UKN-G_Trop.sqf b/A3-Antistasi/Templates/3CB_Occ_UKN-G_Trop.sqf new file mode 100644 index 0000000000..bbb28e0cc6 --- /dev/null +++ b/A3-Antistasi/Templates/3CB_Occ_UKN-G_Trop.sqf @@ -0,0 +1,190 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "TKA"; + +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "UK3CB_BAF_Faction_Army_Desert"; +//Miltia Faction +if (gameMode != 4) then {factionFIA = "UK3CB_TKP_I"}; + +//Flag Images +NATOFlag = "Flag_TKA_O_Army"; +NATOFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_TKA\Flag\tka_o_army_co.paa"; +flagNATOmrk = "UK3CB_MARKER_TKA_O_Army"; +if (isServer) then {"NATO_carrier" setMarkerText "Takistani Carrier"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + "UK3CB_TKA_B_SF_SL", + //Medic + "UK3CB_TKA_B_SF_MD", + //Autorifleman + "UK3CB_TKA_B_SF_AR", + //Marksman + "UK3CB_TKA_B_SF_MK", + //Anti-tank Scout + "UK3CB_TKA_B_SF_LAT", + //AT2 + "UK3CB_TKA_B_SF_LAT" +]; + +//PVP Player Vehicles +vehNATOPVP = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Green","UK3CB_BAF_LandRover_Hard_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical","UK3CB_BAF_LandRover_Soft_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_WMIK_HMG_FFR_Green_B_Tropical_RM"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "UK3CB_TKA_I_RIF_1"; +NATOOfficer = "UK3CB_TKA_I_OFF"; +NATOOfficer2 = "UK3CB_TKA_I_CREW_COMM"; +NATOBodyG = "UK3CB_BAF_Crewman_RTR_DDPM"; +NATOCrew = "UK3CB_TKA_I_CREW"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "UK3CB_TKA_I_MK"; +staticCrewOccupants = "UK3CB_TKA_I_NAVY_CREW"; +NATOPilot = "UK3CB_TKA_I_JET_PILOT"; + +//Militia Units +if (gameMode != 4) then + { + FIARifleman = "UK3CB_TKP_I_RIF_1"; + FIAMarksman = "UK3CB_TKP_I_MK"; + }; + +//Police Units +policeOfficer = "UK3CB_TKP_I_TL"; +policeGrunt = "UK3CB_TKP_I_RIF_2"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["UK3CB_TKA_I_GL",NATOGrunt]; +groupsNATOSniper = ["UK3CB_TKA_I_SF_SNI","UK3CB_TKA_I_SF_SPOT"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AA","UK3CB_TKA_I_AA","UK3CB_TKA_I_AA_ASST"]; +groupsNATOAT = ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST"]; +groupsNATOmid = [["UK3CB_TKA_I_SL","UK3CB_TKA_I_MG","UK3CB_TKA_I_MG_ASST","UK3CB_TKA_I_RIF_2"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["UK3CB_TKA_I_SL",NATOGrunt,"UK3CB_TKA_I_DEM",NATOMarksman,"UK3CB_TKA_I_TL","UK3CB_TKA_I_AR","UK3CB_TKA_I_LAT","UK3CB_TKA_I_MD"]; +NATOSpecOp = ["UK3CB_TKA_I_SF_SL","UK3CB_TKA_I_SF_RIF_1","UK3CB_TKA_I_SF_RIF_2","UK3CB_TKA_I_SF_LAT","UK3CB_TKA_I_SF_TL","UK3CB_TKA_I_SF_DEM","UK3CB_TKA_I_SF_AR","UK3CB_TKA_I_SF_MD"]; +groupsNATOSquad = + [ + NATOSquad, + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL",NATOMarksman,"UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST","UK3CB_TKA_I_DEM","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_ENG","UK3CB_TKA_I_TL","UK3CB_TKA_I_MG","UK3CB_TKA_I_MG_ASST","UK3CB_TKA_I_GL","UK3CB_TKA_I_RIF_2","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL",NATOMarksman,"UK3CB_TKA_I_TL","UK3CB_TKA_I_AT","UK3CB_TKA_I_AT_ASST","UK3CB_TKA_I_MD"], + ["UK3CB_TKA_I_SL","UK3CB_TKA_I_AR","UK3CB_TKA_I_GL","UK3CB_TKA_I_MK","UK3CB_TKA_I_ENG","UK3CB_TKA_I_LAT","UK3CB_TKA_I_DEM","UK3CB_TKA_I_MD"] + ]; + +//Militia Groups +if (gameMode != 4) then + { + //Teams + groupsFIASmall = + [ + ["UK3CB_TKP_I_STATIC_GUN_NSV","UK3CB_TKP_I_STATIC_TRI_NSV"], + ["UK3CB_TKP_I_AT","UK3CB_TKP_I_RIF_2"], + ["UK3CB_TKP_I_IFF","UK3CB_TKP_I_MK"] + ]; + //Fireteams + groupsFIAMid = + [ + ["UK3CB_TKP_I_QRF_SL","UK3CB_TKP_I_QRF_MK","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_ENG"], + ["UK3CB_TKP_I_QRF_TL","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_RIF_1","UK3CB_TKP_I_QRF_AT"], + ["UK3CB_TKP_I_QRF_TL","UK3CB_TKP_I_QRF_ENG","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_AT"] + ]; + //Squads + FIASquad = ["UK3CB_TKP_I_CIB_SL","UUK3CB_TKP_I_CIB_RIF_2","UK3CB_TKP_I_CIB_AT","UK3CB_TKP_I_CIB_TL","UK3CB_TKP_I_CIB_AR","UK3CB_TKP_I_CIB_RIF_1","UK3CB_TKP_I_CIB_ENG","UK3CB_TKP_I_CIB_MD"]; + groupsFIASquad = [FIASquad]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; +vehNATOLightArmed = ["UK3CB_TKA_I_LR_M2","UK3CB_TKA_I_LR_AGS30","UK3CB_TKA_I_LR_SPG9","UK3CB_TKA_I_GAZ_Vodnik_PKT","UK3CB_TKA_I_LR_SF_M2","UK3CB_TKA_I_LR_SF_AGS30","UK3CB_TKA_I_BTR40_MG","UK3CB_TKA_I_BRDM2","UK3CB_TKA_I_BRDM2_ATGM"]; +vehNATOLightUnarmed = ["UK3CB_TKA_I_BTR40","UK3CB_TKA_I_GAZ_Vodnik","UK3CB_TKA_I_LR_Open","UK3CB_TKA_I_Hilux_Closed","UK3CB_TKA_I_BRDM2_HQ"]; +vehNATOTrucks = ["UK3CB_TKA_I_V3S_Closed","UK3CB_TKA_I_V3S_Open","UK3CB_TKA_I_V3S_Recovery"]; +vehNATOCargoTrucks = []; +vehNATOAmmoTruck = "UK3CB_TKA_I_M113_supply"; +vehNATORepairTruck = "UK3CB_TKA_I_V3S_Repair"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["UK3CB_TKA_I_MTLB_PKT","UK3CB_TKA_I_BMP1","UK3CB_TKA_I_BMP2","UK3CB_TKA_I_BMP2K","UK3CB_TKA_I_BTR60","UK3CB_TKA_I_GAZ_Vodnik_KVPT","UK3CB_TKA_I_GAZ_Vodnik_Cannon"]; +vehNATOTank = "UK3CB_TKA_I_T55"; +vehNATOAA = "UK3CB_TKA_I_ZsuTank"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "UK3CB_TKA_I_RHIB"; +vehNATORBoat = "UK3CB_TKA_I_RHIB_Gunboat"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes +vehNATOPlane = "UK3CB_TKA_I_Su25SM_CAS"; +vehNATOPlaneAA = "UK3CB_TKA_I_L39_AA"; +vehNATOTransportPlanes = []; +//Heli +vehNATOPatrolHeli = "UK3CB_TKA_I_UH1H_M240"; +vehNATOTransportHelis = ["UK3CB_TKA_I_Mi8","UK3CB_TKA_I_Mi8AMT",vehNATOPatrolHeli,"UK3CB_TKA_I_UH1H"]; +vehNATOAttackHelis = ["UK3CB_TKA_I_UH1H_M240","UK3CB_TKA_I_Mi_24P","UK3CB_TKA_I_Mi_24V","UK3CB_TKA_I_Mi8AMTSh"]; +//UAV +vehNATOUAV = "B_UAV_02_F"; +vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery +vehNATOMRLS = "UK3CB_TKA_I_BM21"; +vehNATOMRLSMags = "rhs_mag_40Rnd_122mm_rockets"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "UK3CB_TKA_I_V3S_Refuel", "UK3CB_TKA_I_Hilux_Open", vehNATORepairTruck,"UK3CB_TKA_I_UAZ_Closed"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if (gameMode != 4) then + { + vehFIAArmedCar = "UK3CB_TKP_I_Datsun_Pickup_PKM"; + vehFIATruck = "UK3CB_TKP_I_Hilux_Ipen"; + vehFIACar = "UK3CB_TKP_I_Lada_Police"; + }; + +//Police Vehicles +vehPoliceCar = "UK3CB_TKP_I_Lada_Police"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "UK3CB_TKA_I_KORD_high"; +staticATOccupants = "UK3CB_TKA_I_Kornet"; +staticAAOccupants = "UK3CB_TKA_I_Igla_AA_pod"; +NATOMortar = "UK3CB_TKA_I_D30"; + +//Static Weapon Bags +MGStaticNATOB = "RHS_Kord_Gun_Bag"; +ATStaticNATOB = "RHS_Kornet_Gun_Bag"; +AAStaticNATOB = "B_AA_01_weapon_F"; +MortStaticNATOB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticNATOB = "RHS_Kornet_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "RHS_Kord_Tripod_Bag"; +//Mortar Support +supportStaticNATOB3 = "RHS_Podnos_Tripod_Bag"; diff --git a/A3-Antistasi/Templates/3CB_Reb_CNM_Temp.sqf b/A3-Antistasi/Templates/3CB_Reb_CNM_Temp.sqf new file mode 100644 index 0000000000..6fe9e045f1 --- /dev/null +++ b/A3-Antistasi/Templates/3CB_Reb_CNM_Temp.sqf @@ -0,0 +1,108 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "CCM"; +SDKFlag = "Flag_CCM_B"; +SDKFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_CCM\Flag\ccm_i_flag_co.paa"; +typePetros = "UK3CB_TKP_I_OFF"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "UK3CB_CCM_I_COM"; +SDKUnarmed = "UK3CB_CHC_I_SPY"; +SDKSniper = ["UK3CB_CCM_I_MK","UK3CB_CCM_I_SNI"]; +SDKATman = ["UK3CB_CCM_I_AT","UK3CB_CCM_I_AT"]; +SDKMedic = ["UK3CB_CCM_I_MD","UK3CB_CCM_I_MD"]; +SDKMG = ["UK3CB_CCM_I_AR","UK3CB_CCM_I_AR"]; +SDKExp = ["UK3CB_CCM_I_DEM","UK3CB_CCM_I_DEM"]; +SDKGL = ["UK3CB_CCM_I_RIF_LITE","UK3CB_CCM_I_RIF_LITE"]; +SDKMil = ["UK3CB_CCM_I_RIF_BOLT","UK3CB_CCM_I_RIF_1"]; +SDKSL = ["UK3CB_CCM_I_TL","UK3CB_CCM_I_OFF"]; +SDKEng = ["UK3CB_CCM_I_ENG","UK3CB_CCM_I_ENG"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "UK3CB_CCM_I_Golf"; +vehSDKLightArmed = "UK3CB_CCM_I_Datsun_Pkm"; +vehSDKAT = "UK3CB_CCM_I_Hilux_Spg"; +vehSDKLightUnarmed = "UK3CB_CCM_I_Datsun_Open"; +vehSDKTruck = "UK3CB_CCM_I_V3S_Closed"; +//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; +vehSDKPlane = "UK3CB_CHC_I_Antonov_AN2"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "UK3CB_CCM_I_V3S_Repair"; + +//Civilian Vehicles +civCar = "UK3CB_CHC_C_Ikarus"; +civTruck = "UK3CB_CHC_C_V3S_Recovery"; +civHeli = "UK3CB_CHC_C_Mi8AMT"; +civBoat = "C_Rubberboat"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "UK3CB_TKP_I_NSV"; +staticATteamPlayer = "UK3CB_UN_I_SPG9"; +staticAAteamPlayer = "UK3CB_UN_I_ZU23"; +SDKMortar = "rhsgref_ins_g_2b14"; +SDKMortarHEMag = "rhs_mag_3vo18_10"; +SDKMortarSmokeMag = "rhs_mag_d832du_10"; + +//Static Weapon Bags +MGStaticSDKB = "RHS_DShkM_Gun_Bag"; +ATStaticSDKB = "RHS_SPG9_Gun_Bag"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "rhs_mine_smine35_press_mag"; +APERSMineMag = "rhs_mine_pmn2_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["rhs_ec200_mag", 1], ["rhs_ec200_camo_mag", 1], ["rhsusf_m112_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["rhs_ec400_mag", 1], ["rhs_ec400_camo_mag", 1], ["rhs_ec200_mag", 2], ["rhs_ec200_camo_mag", 2], ["rhsusf_m112x4_mag", 1], ["rhs_charge_M2tet_x2_mag", 1]]; + +//Starting Unlocks +initialRebelEquipment append ["UK3CB_BAF_L9A1","UK3CB_BAF_L107A1","UK3CB_Enfield","UK3CB_Enfield_rail","rhs_weap_rpg75"]; +initialRebelEquipment append ["UK3CB_Enfield","UK3CB_Enfield_rail"]; +initialRebelEquipment append ["rhs_weap_rpg75"]; +initialRebelEquipment append ["UK3CB_BAF_9_13rnd","UK3CB_BAF_9_15rnd","UK3CB_Enfield_mag","rhs_grenade_mkii_mag","rhs_grenade_mki_mag","rhs_mag_rdg2_black","rhs_grenade_m15_mag"]; +initialRebelEquipment append ["UK3CB_CHC_C_B_MED","UK3CB_B_Bedroll_Backpack","UK3CB_TKC_C_B_Sidor_MED","UK3CB_CW_SOV_O_LATE_B_Sidor_RIF","UK3CB_CW_SOV_O_EARLY_B_Sidor_RIF"]; +initialRebelEquipment append ["UK3CB_V_CW_Chestrig","UK3CB_V_CW_Chestrig_2_Small","UK3CB_V_Belt_KHK","UK3CB_V_Belt_Rig_KHK","UK3CB_V_Belt_Rig_Lite_KHK","UK3CB_V_Pouch","UK3CB_V_Chestrig_TKA_OLI","UK3CB_V_Chestrig_2_small_OLI","UK3CB_V_Chestrig_TKA_BRUSH","UK3CB_V_Chestrig_Lite_KHK","UK3CB_V_Chestrig_Lite_2_Small_KHK"]; +initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"]; +//TFAR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]}; +if (startLR) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"}; diff --git a/A3-Antistasi/Templates/3CB_Reb_CNM_Trop.sqf b/A3-Antistasi/Templates/3CB_Reb_CNM_Trop.sqf new file mode 100644 index 0000000000..6fe9e045f1 --- /dev/null +++ b/A3-Antistasi/Templates/3CB_Reb_CNM_Trop.sqf @@ -0,0 +1,108 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "CCM"; +SDKFlag = "Flag_CCM_B"; +SDKFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_CCM\Flag\ccm_i_flag_co.paa"; +typePetros = "UK3CB_TKP_I_OFF"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "UK3CB_CCM_I_COM"; +SDKUnarmed = "UK3CB_CHC_I_SPY"; +SDKSniper = ["UK3CB_CCM_I_MK","UK3CB_CCM_I_SNI"]; +SDKATman = ["UK3CB_CCM_I_AT","UK3CB_CCM_I_AT"]; +SDKMedic = ["UK3CB_CCM_I_MD","UK3CB_CCM_I_MD"]; +SDKMG = ["UK3CB_CCM_I_AR","UK3CB_CCM_I_AR"]; +SDKExp = ["UK3CB_CCM_I_DEM","UK3CB_CCM_I_DEM"]; +SDKGL = ["UK3CB_CCM_I_RIF_LITE","UK3CB_CCM_I_RIF_LITE"]; +SDKMil = ["UK3CB_CCM_I_RIF_BOLT","UK3CB_CCM_I_RIF_1"]; +SDKSL = ["UK3CB_CCM_I_TL","UK3CB_CCM_I_OFF"]; +SDKEng = ["UK3CB_CCM_I_ENG","UK3CB_CCM_I_ENG"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "UK3CB_CCM_I_Golf"; +vehSDKLightArmed = "UK3CB_CCM_I_Datsun_Pkm"; +vehSDKAT = "UK3CB_CCM_I_Hilux_Spg"; +vehSDKLightUnarmed = "UK3CB_CCM_I_Datsun_Open"; +vehSDKTruck = "UK3CB_CCM_I_V3S_Closed"; +//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; +vehSDKPlane = "UK3CB_CHC_I_Antonov_AN2"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "UK3CB_CCM_I_V3S_Repair"; + +//Civilian Vehicles +civCar = "UK3CB_CHC_C_Ikarus"; +civTruck = "UK3CB_CHC_C_V3S_Recovery"; +civHeli = "UK3CB_CHC_C_Mi8AMT"; +civBoat = "C_Rubberboat"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "UK3CB_TKP_I_NSV"; +staticATteamPlayer = "UK3CB_UN_I_SPG9"; +staticAAteamPlayer = "UK3CB_UN_I_ZU23"; +SDKMortar = "rhsgref_ins_g_2b14"; +SDKMortarHEMag = "rhs_mag_3vo18_10"; +SDKMortarSmokeMag = "rhs_mag_d832du_10"; + +//Static Weapon Bags +MGStaticSDKB = "RHS_DShkM_Gun_Bag"; +ATStaticSDKB = "RHS_SPG9_Gun_Bag"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "rhs_mine_smine35_press_mag"; +APERSMineMag = "rhs_mine_pmn2_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["rhs_ec200_mag", 1], ["rhs_ec200_camo_mag", 1], ["rhsusf_m112_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["rhs_ec400_mag", 1], ["rhs_ec400_camo_mag", 1], ["rhs_ec200_mag", 2], ["rhs_ec200_camo_mag", 2], ["rhsusf_m112x4_mag", 1], ["rhs_charge_M2tet_x2_mag", 1]]; + +//Starting Unlocks +initialRebelEquipment append ["UK3CB_BAF_L9A1","UK3CB_BAF_L107A1","UK3CB_Enfield","UK3CB_Enfield_rail","rhs_weap_rpg75"]; +initialRebelEquipment append ["UK3CB_Enfield","UK3CB_Enfield_rail"]; +initialRebelEquipment append ["rhs_weap_rpg75"]; +initialRebelEquipment append ["UK3CB_BAF_9_13rnd","UK3CB_BAF_9_15rnd","UK3CB_Enfield_mag","rhs_grenade_mkii_mag","rhs_grenade_mki_mag","rhs_mag_rdg2_black","rhs_grenade_m15_mag"]; +initialRebelEquipment append ["UK3CB_CHC_C_B_MED","UK3CB_B_Bedroll_Backpack","UK3CB_TKC_C_B_Sidor_MED","UK3CB_CW_SOV_O_LATE_B_Sidor_RIF","UK3CB_CW_SOV_O_EARLY_B_Sidor_RIF"]; +initialRebelEquipment append ["UK3CB_V_CW_Chestrig","UK3CB_V_CW_Chestrig_2_Small","UK3CB_V_Belt_KHK","UK3CB_V_Belt_Rig_KHK","UK3CB_V_Belt_Rig_Lite_KHK","UK3CB_V_Pouch","UK3CB_V_Chestrig_TKA_OLI","UK3CB_V_Chestrig_2_small_OLI","UK3CB_V_Chestrig_TKA_BRUSH","UK3CB_V_Chestrig_Lite_KHK","UK3CB_V_Chestrig_Lite_2_Small_KHK"]; +initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"]; +//TFAR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]}; +if (startLR) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"}; diff --git a/A3-Antistasi/Templates/3CB_Reb_TPGM_Arid.sqf b/A3-Antistasi/Templates/3CB_Reb_TPGM_Arid.sqf new file mode 100644 index 0000000000..d8c78f0966 --- /dev/null +++ b/A3-Antistasi/Templates/3CB_Reb_TPGM_Arid.sqf @@ -0,0 +1,108 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "UN"; +SDKFlag = "Flag_CCM_B"; +SDKFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_CCM\Flag\ccm_i_flag_co.paa"; +typePetros = "UK3CB_UN_B_OFF"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "UK3CB_UN_B_FIELD_OP"; +SDKUnarmed = "UK3CB_UN_B_FIELD_OP"; +SDKSniper = ["UK3CB_UN_B_MK","UK3CB_UN_B_MK"]; +SDKATman = ["UK3CB_UN_B_AT","UK3CB_UN_B_AT"]; +SDKMedic = ["UK3CB_UN_B_MD","UK3CB_UN_B_MD"]; +SDKMG = ["UK3CB_UN_B_AR","UK3CB_UN_B_MG"]; +SDKExp = ["UK3CB_UN_B_DEM","UK3CB_UN_B_DEM"]; +SDKGL = ["UK3CB_UN_B_GL","UK3CB_UN_B_GL"]; +SDKMil = ["UK3CB_UN_B_RIF_1","UK3CB_UN_B_RIF_2"]; +SDKSL = ["UK3CB_UN_B_TL","UK3CB_UN_B_SL"]; +SDKEng = ["UK3CB_UN_B_ENG","UK3CB_UN_B_ENG"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "UK3CB_UN_B_UAZ_Closed"; +vehSDKLightArmed = "UK3CB_UN_B_Hilux_Pkm"; +vehSDKAT = "UK3CB_UN_B_LR_SPG9"; +vehSDKLightUnarmed = "UK3CB_CCM_I_Hilux_Closed"; +vehSDKTruck = "UK3CB_UN_B_V3S_Closed"; +//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; +vehSDKPlane = "UK3CB_UN_B_C130J"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "UK3CB_UN_B_V3S_Repair"; + +//Civilian Vehicles +civCar = "UK3CB_CHC_C_Ikarus"; +civTruck = "UK3CB_CHC_C_V3S_Recovery"; +civHeli = "UK3CB_CHC_C_Mi8AMT"; +civBoat = "C_Rubberboat"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "UK3CB_UN_B_NSV"; +staticATteamPlayer = "UK3CB_UN_B_SPG9"; +staticAAteamPlayer = "UK3CB_UN_B_ZU23"; +SDKMortar = "rhsgref_UN_B_2b14_82mm"; +SDKMortarHEMag = "rhs_mag_3vo18_10"; +SDKMortarSmokeMag = "rhs_mag_d832du_10"; + +//Static Weapon Bags +MGStaticSDKB = "RHS_DShkM_Gun_Bag"; +ATStaticSDKB = "RHS_SPG9_Gun_Bag"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "rhs_mine_smine35_press_mag"; +APERSMineMag = "rhs_mine_pmn2_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["rhs_ec200_mag", 1], ["rhs_ec200_camo_mag", 1], ["rhsusf_m112_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["rhs_ec400_mag", 1], ["rhs_ec400_camo_mag", 1], ["rhs_ec200_mag", 2], ["rhs_ec200_camo_mag", 2], ["rhsusf_m112x4_mag", 1], ["rhs_charge_M2tet_x2_mag", 1]]; + +//Starting Unlocks +initialRebelEquipment append ["UK3CB_BAF_L9A1","UK3CB_BAF_L107A1","UK3CB_Enfield","UK3CB_Enfield_rail","rhs_weap_rpg75"]; +initialRebelEquipment append ["UK3CB_Enfield","UK3CB_Enfield_rail"]; +initialRebelEquipment append ["rhs_weap_rpg75"]; +initialRebelEquipment append ["UK3CB_BAF_9_13rnd","UK3CB_BAF_9_15rnd","UK3CB_Enfield_mag","rhs_grenade_mkii_mag","rhs_grenade_mki_mag","rhs_mag_rdg2_black","rhs_grenade_m15_mag"]; +initialRebelEquipment append ["UK3CB_CHC_C_B_MED","UK3CB_B_Bedroll_Backpack","UK3CB_TKC_C_B_Sidor_MED","UK3CB_CW_SOV_O_LATE_B_Sidor_RIF","UK3CB_CW_SOV_O_EARLY_B_Sidor_RIF"]; +initialRebelEquipment append ["UK3CB_V_CW_Chestrig","UK3CB_V_CW_Chestrig_2_Small","UK3CB_V_Belt_KHK","UK3CB_V_Belt_Rig_KHK","UK3CB_V_Belt_Rig_Lite_KHK","UK3CB_V_Pouch","UK3CB_V_Chestrig_TKA_OLI","UK3CB_V_Chestrig_2_small_OLI","UK3CB_V_Chestrig_TKA_BRUSH","UK3CB_V_Chestrig_Lite_KHK","UK3CB_V_Chestrig_Lite_2_Small_KHK"]; +initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"]; +//TAFR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_rf7800str"]}; +if (startLR) then {initialRebelEquipment pushBack "UK3CB_B_B_Radio_Backpack"}; diff --git a/A3-Antistasi/Templates/3CB_Reb_TTF_Arid.sqf b/A3-Antistasi/Templates/3CB_Reb_TTF_Arid.sqf new file mode 100644 index 0000000000..9a7777c569 --- /dev/null +++ b/A3-Antistasi/Templates/3CB_Reb_TTF_Arid.sqf @@ -0,0 +1,112 @@ +//3CB Blufor ALtis Template Call +if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\3CB_Reb_TPGM_Arid.sqf"}; +//Tanoa Template Call +if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\3CB_Reb_CNM_Trop.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "CCM"; +SDKFlag = "Flag_CCM_B"; +SDKFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_CCM\Flag\ccm_i_flag_co.paa"; +typePetros = "UK3CB_TKP_I_OFF"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "UK3CB_CCM_I_COM"; +SDKUnarmed = "UK3CB_CHC_I_SPY"; +SDKSniper = ["UK3CB_CCM_I_MK","UK3CB_CCM_I_SNI"]; +SDKATman = ["UK3CB_CCM_I_AT","UK3CB_CCM_I_AT"]; +SDKMedic = ["UK3CB_CCM_I_MD","UK3CB_CCM_I_MD"]; +SDKMG = ["UK3CB_CCM_I_AR","UK3CB_CCM_I_AR"]; +SDKExp = ["UK3CB_CCM_I_DEM","UK3CB_CCM_I_DEM"]; +SDKGL = ["UK3CB_CCM_I_RIF_LITE","UK3CB_CCM_I_RIF_LITE"]; +SDKMil = ["UK3CB_CCM_I_RIF_BOLT","UK3CB_CCM_I_RIF_1"]; +SDKSL = ["UK3CB_CCM_I_TL","UK3CB_CCM_I_OFF"]; +SDKEng = ["UK3CB_CCM_I_ENG","UK3CB_CCM_I_ENG"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "UK3CB_CCM_I_Golf"; +vehSDKLightArmed = "UK3CB_CCM_I_Datsun_Pkm"; +vehSDKAT = "UK3CB_CCM_I_Hilux_Spg"; +vehSDKLightUnarmed = "UK3CB_CCM_I_Datsun_Open"; +vehSDKTruck = "UK3CB_CCM_I_V3S_Closed"; +//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; +vehSDKPlane = "UK3CB_CHC_I_Antonov_AN2"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "UK3CB_CCM_I_V3S_Repair"; + +//Civilian Vehicles +civCar = "UK3CB_CHC_C_Ikarus"; +civTruck = "UK3CB_CHC_C_V3S_Recovery"; +civHeli = "UK3CB_CHC_C_Mi8AMT"; +civBoat = "C_Rubberboat"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "UK3CB_TKP_I_NSV"; +staticATteamPlayer = "UK3CB_UN_I_SPG9"; +staticAAteamPlayer = "UK3CB_UN_I_ZU23"; +SDKMortar = "rhsgref_ins_g_2b14"; +SDKMortarHEMag = "rhs_mag_3vo18_10"; +SDKMortarSmokeMag = "rhs_mag_d832du_10"; + +//Static Weapon Bags +MGStaticSDKB = "RHS_DShkM_Gun_Bag"; +ATStaticSDKB = "RHS_SPG9_Gun_Bag"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "rhs_mine_smine35_press_mag"; +APERSMineMag = "rhs_mine_pmn2_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["rhs_ec200_mag", 1], ["rhs_ec200_camo_mag", 1], ["rhsusf_m112_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["rhs_ec400_mag", 1], ["rhs_ec400_camo_mag", 1], ["rhs_ec200_mag", 2], ["rhs_ec200_camo_mag", 2], ["rhsusf_m112x4_mag", 1], ["rhs_charge_M2tet_x2_mag", 1]]; + +//Starting Unlocks +initialRebelEquipment append ["UK3CB_BAF_L9A1","UK3CB_BAF_L107A1","UK3CB_Enfield","UK3CB_Enfield_rail","rhs_weap_rpg75"]; +initialRebelEquipment append ["UK3CB_Enfield","UK3CB_Enfield_rail"]; +initialRebelEquipment append ["rhs_weap_rpg75"]; +initialRebelEquipment append ["UK3CB_BAF_9_13rnd","UK3CB_BAF_9_15rnd","UK3CB_Enfield_mag","rhs_grenade_mkii_mag","rhs_grenade_mki_mag","rhs_mag_rdg2_black","rhs_grenade_m15_mag"]; +initialRebelEquipment append ["UK3CB_CHC_C_B_MED","UK3CB_B_Bedroll_Backpack","UK3CB_TKC_C_B_Sidor_MED","UK3CB_CW_SOV_O_LATE_B_Sidor_RIF","UK3CB_CW_SOV_O_EARLY_B_Sidor_RIF"]; +initialRebelEquipment append ["UK3CB_V_CW_Chestrig","UK3CB_V_CW_Chestrig_2_Small","UK3CB_V_Belt_KHK","UK3CB_V_Belt_Rig_KHK","UK3CB_V_Belt_Rig_Lite_KHK","UK3CB_V_Pouch","UK3CB_V_Chestrig_TKA_OLI","UK3CB_V_Chestrig_2_small_OLI","UK3CB_V_Chestrig_TKA_BRUSH","UK3CB_V_Chestrig_Lite_KHK","UK3CB_V_Chestrig_Lite_2_Small_KHK"]; +initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"]; +//TFAR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]}; +if (startLR) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"}; diff --git a/A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/description.ext b/A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/description.ext deleted file mode 100644 index 650ed3ff2d..0000000000 --- a/A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/description.ext +++ /dev/null @@ -1,437 +0,0 @@ -#include "defines.hpp" -#include "dialogs.hpp" - -author = $STR_antistasi_credits_generic_author_text; -OnLoadName = $STR_antistasi_credits_generic_missionname_text; -OnLoadMission = $STR_antistasi_credits_generic_missiondesc_text; -loadScreen = "pic.jpg"; - -overviewText = $STR_antistasi_credits_generic_overview_text + " " + $STR_antistasi_credits_generic_version_text; -overviewPicture = "pic.jpg"; - -allowFunctionsLog = 1; -enableDebugConsole[] = {"76561197979729653","76561198034977762","76561198127254055","76561197981991967","76561198274184887","76561198011383725","76561198304402577","76561197993874267"}; - -//If we have CBA for TFAR, then load the mission's settings. -cba_settings_hasSettingsFile = 1; - -respawn = "BASE"; -respawnDelay = 15; -respawnVehicleDelay = 120; -respawnDialog = 1; -aiKills = 0; -disabledAI=1; -Saving = 0; -showCompass=1; -showRadio=1; -showGPS=1; -showMap=1; -showBinocular=1; -showNotepad=1; -showWatch=1; -debriefing=1; - -//showGroupIndicator = 1; - -class CfgTaskEnhancements - { - enable = 1; //0: disable new task features (default), 1: enable new task features & add new task markers and task widgets into the map - 3d = 1; //0: do not use new 3D markers (default), 1: replace task waypoints with new 3D markers - 3dDrawDist = 3500; //3d marker draw distance (default: 2000) - share = 1; //0: do not count assigned players (default), 1: count how many players have the task assigned - propagate = 1; //0: do not propagate (default), 1: propagate shared tasks to subordinates - }; - -class CfgFunctions { - #include "functions.hpp" - #include "JeroenArsenal\functions.hpp" -}; -class Header -{ -gameType = COOP; -minplayers=1; -maxplayers=32; -}; - -class CfgSounds -{ - class fire - { - name="fire"; - sound[]={"Music\fire.ogg",db+12,1.0}; - titles[]={}; - }; -}; - -class Params -{ - class loadSave - { - title = "Load last Persistent Save"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class gameMode - { - title = "Game Mode"; // Param name visible in the list - values[] = {1,2,3,4}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Reb vs Gov vs Inv","Reb vs Gov & Inv","Reb vs Gov","Reb vs Inv"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class autoSave - { - title = "Enable Autosave (every hour)"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class membership - { - title = "Enable Server Membership"; - texts[] = {"Yes","No"}; - values[] = {1,0}; - default = 1; - //function = "BIS_fnc_paramDaytime"; // (Optional) [[Functions_Library_(Arma_3)|Function]] [[call]]ed when player joins, selected value is passed as an argument - //isGlobal = 1; // (Optional) 1 to execute script / function locally for every player who joins, 0 to do it only on server - }; - class switchComm - { - title = "Enable Commander Switch (highest ranked player)"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class tkPunish - { - title = "Enable Teamkill Punish"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class mRadius - { - title = "Distance from HQ for Sidemissions"; - values[] = {4000,8000,12000}; - // When 'texts' are missing, values will be displayed directly instead - default = 4000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowPvP - { - title = "Allow PvP Slots"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class pMarkers - { - title = "Allow Friendly Player Markers"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class AISkill - { - title = "AI Skill"; - values[] = {0.5,1,2}; - texts[] = {"Easy","Normal","Hard"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class unlockItem - { - title = "Number of the same weapons required to unlock"; - values[] = {15,25,40}; - default = 25; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberOnlyMagLimit - { - title = "Number of magazines needed for guests to be able to use them"; - values[] = {10,20,30,40,50,60}; - default = 40; - }; - class civTraffic - { - title = "Rate of Civ Traffic"; - values[] = {0.5,1,3}; - texts[] = {"Low","Medium","JAM"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberSlots - { - title = "Percentage of Reserved Slots for Members"; - values[] = {0,20,40,60,80,100}; - texts[] = {"None","20%","40%","60%","80%","All"}; - default = 20; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberDistance - { - title = "Max distance non members can be from the closest member or HQ (they will be teleported to HQ after some timeout)"; - values[] = {4000,5000,6000,7000,8000,16000}; - texts[] = {"4 Kmts","5 Kmts","6 Kmts","7 Kmts","8 Kmts","Unlimited"}; - default = 5000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowFT - { - title = "Limited Fast Travel"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 1; - }; - class napalmEnabled - { - title = "Enable Napalm Bombing for AI"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 0; - }; - class teamSwitchDelay - { - title = "Delay After Leaving Before a Player Can Join Another Team"; - values[] = {0, 900, 1800, 3600}; - texts[] = {"No delay","15 minutes","30 minutes","60 minutes"}; - default = 3600; - }; -}; - -class CfgIdentities -{ - class protagonista - { - name = "Stavros"; - nameSound = "Stavrou"; - face="GreekHead_A3_01"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class friendlyX - { - name = "Petros"; - nameSound = "Petros"; - face="GreekHead_A3_01"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Anthis - { - name = "Anthis"; - nameSound = "Anthis"; - face="GreekHead_A3_02"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Costa - { - name = "Costa"; - nameSound = "Costa"; - face="GreekHead_A3_03"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Dimitirou - { - name = "Dimitirou"; - nameSound = "Dimitirou"; - face="GreekHead_A3_04"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Elias - { - name = "Elias"; - nameSound = "Elias"; - face="GreekHead_A3_05"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Gekas - { - name = "Gekas"; - nameSound = "Gekas"; - face="GreekHead_A3_06"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Kouris - { - name = "Kouris"; - nameSound = "Kouris"; - face="GreekHead_A3_07"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Leventis - { - name = "Leventis"; - nameSound = "Leventis"; - face="GreekHead_A3_08"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Markos - { - name = "Markos"; - nameSound = "Markos"; - face="GreekHead_A3_09"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Nikas - { - name = "Nikas"; - nameSound = "Nikas"; - face="WhiteHead_02"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Nicolo - { - name = "Nicolo"; - nameSound = "Nicolo"; - face="WhiteHead_03"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Panas - { - name = "Panas"; - nameSound = "Panas"; - face="WhiteHead_04"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Rosi - { - name = "Rosi"; - nameSound = "Rosi"; - face="WhiteHead_05"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Samaras - { - name = "Samaras"; - nameSound = "Samaras"; - face="WhiteHead_06"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Thanos - { - name = "Thanos"; - nameSound = "Thanos"; - face="WhiteHead_07"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Vega - { - name = "Vega"; - nameSound = "Vega"; - face="WhiteHead_08"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; -}; - - -/* -class CfgMusic -{ - tracks[]={}; - - class DBS - { - name = ""; - sound[] = {"\music\dbs.ogg", db+5, 1.0}; - }; - -}; -*/ -class CfgDebriefing -{ - class End1 - { - title = "V I C T O R Y"; - subtitle = "Altis is Ours!"; - description = "The population of Altis loves you!
The brave soldiers have proven their valour, and Petros, Altis new Prime Minister, could at last to have a nice holidays. 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 rebels without a leader, you may think about joining them, and free Altis"; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class destroyedCities - { - title = "Altis is Destroyed"; - subtitle = "Altis got Destroyed by OPFOR"; - description = "One third of the population in Altis has been murdered by the OPFOR.
Altis no longer exists, nobody wants to live here."; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class modUnautorized - { - title = "Incompatible Mods"; - subtitle = "Incompatible Mods detected"; - description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class serverFull - { - title = "Reserved Slot"; - subtitle = "This slot is reserved"; - description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class noPvP - { - title = "Slot Unavailable"; - subtitle = "This slot is unavailable"; - description = "Sorry, but this slot is unavailable for some reason: player not member, match not initialized, lack of rebel commander or recent role as rebel."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class hcDown - { - title = "HC Disconnected"; - subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; -}; diff --git a/A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/mission.sqm b/A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/mission.sqm deleted file mode 100644 index 7199a58e63..0000000000 --- a/A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/mission.sqm +++ /dev/null @@ -1,9017 +0,0 @@ -version=53; -class EditorData -{ - moveGridStep=1; - angleGridStep=0.2617994; - scaleGridStep=1; - autoGroupingDist=10; - toggles=1538; - class ItemIDProvider - { - nextID=1653; - }; - class MarkerIDProvider - { - nextID=176; - }; - class LayerIndexProvider - { - nextID=468; - }; - class Camera - { - pos[]={27646.66,38.373638,24528.084}; - dir[]={0,-0.70710683,0.70710683}; - up[]={0,0.70710677,0.70710677}; - aside[]={0.99999994,0,-0}; - }; -}; -binarizationWanted=0; -addons[]= -{ - "A3_Ui_F", - "A3_Weapons_F_Ammoboxes", - "A3_Modules_F", - "A3_Characters_F", - "A3_Modules_F_Hc", - "A3_Structures_F_EPC_Civ_InfoBoards", - "A3_Structures_F_Ind_AirPort", - "A3_Structures_F_Mil_Cargo", - "A3_Structures_F_Mil_TentHangar", - "A3_Structures_F_Exp_Infrastructure_Airports", - "A3_Structures_F_Mil_Flags", - "A3_Ui_F_Exp", - "A3_Characters_F_Exp", - "A3_Structures_F_Exp_Military_Flags", - "A3_Props_F_Enoch_Military_Camps", - "A3_Modules_F_Curator_Curator" -}; -class AddonsMetaData -{ - class List - { - items=13; - class Item0 - { - className="A3_Ui_F"; - name="Arma 3 - User Interface"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item1 - { - className="A3_Weapons_F"; - name="Arma 3 Alpha - Weapons and Accessories"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item2 - { - className="A3_Modules_F"; - name="Arma 3 Alpha - Scripted Modules"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item3 - { - className="A3_Characters_F"; - name="Arma 3 Alpha - Characters and Clothing"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item4 - { - className="A3_Structures_F_EPC"; - name="Arma 3 Win Episode - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item5 - { - className="A3_Structures_F_Ind"; - name="Arma 3 - Industrial Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item6 - { - className="A3_Structures_F_Mil"; - name="Arma 3 - Military Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item7 - { - className="A3_Structures_F_Exp_Infrastructure"; - name="Arma 3 Apex - Infrastructure Objects"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item8 - { - className="A3_Ui_F_Exp"; - name="Arma 3 Apex - User Interface"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item9 - { - className="A3_Characters_F_Exp"; - name="Arma 3 Apex - Characters and Clothing"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item10 - { - className="A3_Structures_F_Exp"; - name="Arma 3 Apex - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item11 - { - className="A3_Props_F_Enoch"; - name="Arma 3 Enoch - Decorative and Mission Objects"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item12 - { - className="A3_Modules_F_Curator"; - name="Arma 3 Zeus Update - Scripted Modules"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - }; -}; -randomSeed=8109385; -class ScenarioData -{ - author=$STR_antistasi_credits_generic_author_text; -}; -class Mission -{ - class Intel - { - briefingName=$STR_antistasi_credits_generic_missionname_text; - overviewText=$STR_antistasi_credits_generic_version_text; - resistanceWest=0; - startWeather=0; - startWind=0; - forecastWeather=0.16536765; - forecastWind=0; - forecastWaves=0.34750906; - forecastLightnings=0.099999994; - year=2035; - month=6; - day=1; - hour=6; - minute=0; - startFogDecay=0.013; - forecastFogDecay=0.013; - }; - class Entities - { - items=299; - class Item0 - { - dataType="Marker"; - position[]={20671.299,17.236,15727.05}; - name="factory_6"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=240; - b=100; - angle=324.89685; - id=0; - atlOffset=0.00019645691; - }; - class Item1 - { - dataType="Marker"; - position[]={27005.279,21.662001,21521.68}; - name="factory_7"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=100; - b=100; - angle=227.32204; - id=2; - atlOffset=-0.00027656555; - }; - class Item2 - { - dataType="Marker"; - position[]={20082.896,101.02,6728.3408}; - name="outpost_38"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=60; - b=60; - angle=36.850998; - id=4; - atlOffset=-9.1552734e-005; - }; - class Item3 - { - dataType="Marker"; - position[]={17439.697,13.962,13172.287}; - name="outpost_39"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=108; - b=99.474937; - angle=46.794998; - id=5; - atlOffset=0.074101448; - }; - class Item4 - { - dataType="Marker"; - position[]={21034.047,24.11792,7372.8638}; - name="airport"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=304.48093; - b=195.76086; - angle=123.77294; - id=6; - atlOffset=2.2368183; - }; - class Item5 - { - dataType="Marker"; - position[]={23090.766,0,18740.426}; - name="airport_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=289.47849; - b=276.12943; - angle=304.40527; - id=7; - atlOffset=-3.1900001; - }; - class Item6 - { - dataType="Marker"; - position[]={19618.135,28.11537,15633.374}; - name="resource"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=80; - b=40; - angle=281.88538; - id=8; - }; - class Item7 - { - dataType="Marker"; - position[]={18479.752,24.496305,14279.162}; - name="resource_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=80; - b=64.364899; - angle=76.925522; - id=9; - }; - class Item8 - { - dataType="Marker"; - position[]={17098.65,24.885092,11295.575}; - name="resource_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=100; - b=80; - angle=64.347397; - id=10; - }; - class Item9 - { - dataType="Marker"; - position[]={18292.928,47.48,15534.244}; - name="resource_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=160; - b=70; - angle=181.06282; - id=11; - }; - class Item10 - { - dataType="Marker"; - position[]={25413.35,9.8909998,20337.379}; - name="factory_5"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=80; - b=80; - angle=324.89685; - id=12; - atlOffset=0.0003528595; - }; - class Item11 - { - dataType="Marker"; - position[]={12621.304,0,16387.543}; - name="factory"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=129.34793; - b=81.033745; - angle=43.014816; - id=13; - atlOffset=-33.919998; - }; - class Item12 - { - dataType="Marker"; - position[]={14340.091,36.934258,18940.465}; - name="factory_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=120; - b=80; - angle=317.49139; - id=14; - }; - class Item13 - { - dataType="Marker"; - position[]={23073.609,48.248886,7288.5493}; - name="outpost"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=118.64331; - b=79.797096; - angle=146.76511; - id=15; - }; - class Item14 - { - dataType="Marker"; - position[]={14819.295,7.0902076,11126.992}; - name="outpost_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=100; - b=80; - angle=223.67722; - id=16; - }; - class Item15 - { - dataType="Marker"; - position[]={16660.588,2.5780001,12298.751}; - name="seaport"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=60; - b=90; - angle=270.22116; - id=17; - atlOffset=0.00044870377; - }; - class Item16 - { - dataType="Marker"; - position[]={15389.049,0,15864.561}; - name="seaport_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=90; - b=60; - angle=169.33798; - id=18; - atlOffset=-4.3269897; - }; - class Item17 - { - dataType="Marker"; - position[]={19354.988,195.72502,9680.9551}; - name="outpost_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=104.95305; - b=78.904907; - angle=263.16; - id=20; - }; - class Item18 - { - dataType="Marker"; - position[]={16829.84,5.0080833,12053.885}; - name="outpost_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=48.509682; - b=50; - angle=180.25404; - id=21; - }; - class Item19 - { - dataType="Marker"; - position[]={24070.148,-0.050999999,29143.369}; - name="CSAT_carrier"; - type="flag_CSAT"; - id=22; - atlOffset=185.91901; - }; - class Item20 - { - dataType="Marker"; - position[]={11722.869,-186.03819,4256.5566}; - name="NATO_carrier"; - type="flag_AltisColonial"; - id=23; - }; - class Item21 - { - dataType="Marker"; - position[]={20926.391,0,19235.641}; - name="outpost_37"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=120; - b=120; - angle=16.886997; - id=24; - atlOffset=-11.187176; - }; - class Item22 - { - dataType="Marker"; - position[]={23595.451,93.855141,21104.182}; - name="outpost_36"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=215.98628; - b=121.21648; - angle=20.485994; - id=25; - }; - class Item23 - { - dataType="Marker"; - position[]={21920.961,17.583811,20977.025}; - name="outpost_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=216.05266; - b=120; - angle=319.12381; - id=26; - }; - class Item24 - { - dataType="Marker"; - position[]={28323.75,14.583267,25748.178}; - name="outpost_5"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=91.013351; - b=105.59671; - angle=148.493; - id=27; - atlOffset=-0.00035858154; - }; - class Item25 - { - dataType="Marker"; - position[]={25269.508,84.86631,21821.742}; - name="outpost_6"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=108.17197; - b=70; - angle=358.83786; - id=29; - }; - class Item26 - { - dataType="Marker"; - position[]={14705.343,0,16359.673}; - name="airport_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=704.23785; - b=180; - angle=135.513; - id=31; - atlOffset=-17.887102; - }; - class Item27 - { - dataType="Marker"; - position[]={15326.955,0,16239.884}; - name="factory_8"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=50; - b=50; - id=32; - atlOffset=-10.010416; - }; - class Item28 - { - dataType="Marker"; - position[]={12825.523,0,16704.488}; - name="outpost_31"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=138.4487; - b=110.1012; - angle=305.90884; - id=35; - atlOffset=-86.687683; - }; - class Item29 - { - dataType="Marker"; - position[]={14200.564,74.147003,21215.023}; - name="outpost_34"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=60; - b=40; - angle=108.33795; - id=36; - atlOffset=-0.00045013428; - }; - class Item30 - { - dataType="Marker"; - position[]={16583.684,35.308327,19002.846}; - name="outpost_13"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=83.501091; - b=64.180611; - angle=320.76587; - id=37; - }; - class Item31 - { - dataType="Marker"; - position[]={20603.313,37.078934,18816.676}; - name="outpost_8"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=38.14537; - b=39.083458; - angle=321.35321; - id=38; - }; - class Item32 - { - dataType="Marker"; - position[]={20609.713,0,20106}; - name="outpost_9"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=68.976608; - b=100.23182; - angle=91.816483; - id=39; - atlOffset=-51.561615; - }; - class Item33 - { - dataType="Marker"; - position[]={9925.7383,243.52464,19380.475}; - name="outpost_28"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=125.35593; - b=94.237045; - angle=11.914993; - id=41; - }; - class Item34 - { - dataType="Marker"; - position[]={12293.328,123.94665,8899.8809}; - name="outpost_40"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=81.934753; - b=75.253113; - angle=243.71994; - id=42; - }; - class Item35 - { - dataType="Marker"; - position[]={8291.4668,75.940002,10064.611}; - name="outpost_41"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=85.112152; - b=100.4333; - angle=54.859959; - id=43; - atlOffset=-0.87072754; - }; - class Item36 - { - dataType="Marker"; - position[]={5375.4243,44.961426,14243.869}; - name="outpost_42"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=195; - b=100; - angle=345.10986; - id=44; - atlOffset=-1.428833; - }; - class Item37 - { - dataType="Marker"; - position[]={11494.834,0,11749.009}; - name="airport_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=274.87442; - b=149.97537; - angle=307; - id=45; - atlOffset=-23.574762; - }; - class Item38 - { - dataType="Marker"; - position[]={9083.0645,15.348633,21515.064}; - name="airport_5"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=205.79118; - b=114.87317; - angle=143.36978; - id=46; - atlOffset=-0.50217724; - }; - class Item39 - { - dataType="Marker"; - position[]={12475.135,74.552666,15193.846}; - name="outpost_11"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=93.068176; - b=65.989471; - angle=179.33261; - id=47; - }; - class Item40 - { - dataType="Marker"; - position[]={3912.4871,50.217579,12297.194}; - name="outpost_14"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=20; - b=20; - angle=208.80701; - id=50; - }; - class Item41 - { - dataType="Marker"; - position[]={18083.652,18.420723,19180.961}; - name="outpost_18"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=67.274925; - b=64.522896; - angle=5.8140187; - id=53; - }; - class Item42 - { - dataType="Marker"; - position[]={9708.3408,2.5917308,22294.498}; - name="outpost_19"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=60; - b=51.537628; - angle=176.89899; - id=54; - }; - class Item43 - { - dataType="Marker"; - position[]={3205.2832,0,12909.09}; - name="seaport_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=90; - b=96.527061; - angle=97.696968; - id=55; - atlOffset=-2.0339258; - }; - class Item44 - { - dataType="Marker"; - position[]={4420.7388,0,12621.028}; - name="resource_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=74.850113; - b=72.464348; - angle=111.93681; - id=56; - atlOffset=-37.166481; - }; - class Item45 - { - dataType="Marker"; - position[]={5890.0864,217.63792,20206.713}; - name="resource_5"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=120; - b=100; - angle=281.88538; - id=57; - }; - class Item46 - { - dataType="Marker"; - position[]={5955.3052,107.53288,12531.119}; - name="resource_6"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=80; - b=60; - angle=139.39099; - id=58; - atlOffset=7.6293945e-006; - }; - class Item47 - { - dataType="Marker"; - position[]={6342.7144,0,14897.494}; - name="factory_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=64.182625; - b=60.422844; - angle=27.999996; - id=59; - atlOffset=-35.133381; - }; - class Item48 - { - dataType="Marker"; - position[]={6191,0,16249}; - name="factory_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=110; - b=60; - angle=178.99994; - id=60; - atlOffset=-43; - }; - class Item49 - { - dataType="Marker"; - position[]={3269.7837,6.9041038,12451.454}; - name="factory_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=40; - b=40; - angle=72.913567; - id=61; - }; - class Item50 - { - dataType="Marker"; - position[]={11013,0,12655}; - name="factory_9"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=100; - b=100; - angle=26.999985; - id=62; - atlOffset=-18.755997; - }; - class Item51 - { - dataType="Marker"; - position[]={8224.6279,14.302917,10928.141}; - name="factory_10"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=147.30019; - b=150.74289; - angle=357.22217; - id=63; - atlOffset=-9.5367432e-007; - }; - class Item52 - { - dataType="Marker"; - position[]={4227.8091,18.129999,15052.771}; - name="factory_11"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=75; - b=60; - angle=180.3139; - id=64; - atlOffset=-0.00013160706; - }; - class Item53 - { - dataType="Marker"; - position[]={18729.775,209.32524,10209.634}; - name="outpost_20"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=76.466064; - b=104.56676; - angle=79.841003; - id=67; - }; - class Item54 - { - dataType="Marker"; - position[]={17860.234,88.914497,11745.42}; - name="outpost_21"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=50; - b=50; - angle=148.493; - id=68; - }; - class Item55 - { - dataType="Marker"; - position[]={6836.2881,0,16093.281}; - name="outpost_22"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=76.293129; - b=71.06485; - angle=147.99994; - id=69; - atlOffset=-64.202461; - }; - class Item56 - { - dataType="Marker"; - position[]={26420.232,66.039474,22140.607}; - name="outpost_24"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=100; - b=80; - angle=187.06653; - id=71; - }; - class Item57 - { - dataType="Marker"; - position[]={10011.299,16.417982,11235.339}; - name="outpost_25"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=60; - b=40; - angle=103.32623; - id=91; - }; - class Item58 - { - dataType="Marker"; - position[]={4550.9399,260.89819,15428.41}; - name="outpost_26"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=94.368439; - b=99.098572; - angle=311.44165; - id=93; - atlOffset=-1.4588318; - }; - class Item59 - { - dataType="Marker"; - position[]={8388.5381,180.12085,18246.57}; - name="outpost_27"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=30; - b=40; - angle=246.62001; - id=94; - }; - class Item60 - { - dataType="Marker"; - position[]={3336.6682,-76.557083,17040.561}; - name="seaPatrol"; - type="Empty"; - id=167; - }; - class Item61 - { - dataType="Marker"; - position[]={3246.4033,-106.48155,15365.642}; - name="seaPatrol_1"; - type="Empty"; - id=168; - atlOffset=7.6293945e-006; - }; - class Item62 - { - dataType="Marker"; - position[]={3003.3965,-32.717815,13714.215}; - name="seaPatrol_2"; - type="Empty"; - id=169; - atlOffset=-3.8146973e-006; - }; - class Item63 - { - dataType="Marker"; - position[]={2778.6235,-22.222387,12865.009}; - name="seaPatrol_3"; - type="Empty"; - id=170; - }; - class Item64 - { - dataType="Marker"; - position[]={2677.7971,-27.117685,12421.866}; - name="seaPatrol_4"; - type="Empty"; - id=171; - }; - class Item65 - { - dataType="Marker"; - position[]={2716.6533,-51.24736,10868.366}; - name="seaPatrol_5"; - type="Empty"; - id=172; - }; - class Item66 - { - dataType="Marker"; - position[]={14517.476,-138.09663,9156.4111}; - name="seaPatrol_6"; - type="Empty"; - id=173; - }; - class Item67 - { - dataType="Marker"; - position[]={13563.509,-95.191154,11121.483}; - name="seaPatrol_7"; - type="Empty"; - id=174; - atlOffset=7.6293945e-006; - }; - class Item68 - { - dataType="Marker"; - position[]={15388.874,-90.985153,12976.936}; - name="seaPatrol_8"; - type="Empty"; - id=175; - atlOffset=7.6293945e-006; - }; - class Item69 - { - dataType="Marker"; - position[]={15372.398,-56.407341,14833.389}; - name="seaPatrol_9"; - type="Empty"; - id=176; - atlOffset=3.8146973e-006; - }; - class Item70 - { - dataType="Marker"; - position[]={20687.582,0,19461.459}; - name="seaport_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=80; - b=72.305153; - angle=128.327; - id=192; - atlOffset=-4.4250956; - }; - class Item71 - { - dataType="Marker"; - position[]={27645.506,3.9791944,24584.898}; - name="seaport_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=95.609772; - b=91.161003; - angle=212.98586; - id=193; - }; - class Item72 - { - dataType="Marker"; - position[]={27998.135,-27.567476,24279.234}; - name="seaPatrol_10"; - type="Empty"; - id=194; - }; - class Item73 - { - dataType="Marker"; - position[]={28477.717,-38.469158,24855.266}; - name="seaPatrol_11"; - type="Empty"; - id=195; - }; - class Item74 - { - dataType="Marker"; - position[]={28748.32,-32.852638,25988.58}; - name="seaPatrol_12"; - type="Empty"; - id=196; - }; - class Item75 - { - dataType="Marker"; - position[]={27754.328,-41.639271,25876.051}; - name="seaPatrol_13"; - type="Empty"; - id=197; - }; - class Item76 - { - dataType="Marker"; - position[]={26996.111,-30.678017,25463.451}; - name="seaPatrol_14"; - type="Empty"; - id=198; - }; - class Item77 - { - dataType="Marker"; - position[]={25961.938,-20.205185,24429.273}; - name="seaPatrol_16"; - type="Empty"; - id=200; - }; - class Item78 - { - dataType="Marker"; - position[]={26494.361,-15.289934,24999.549}; - name="seaPatrol_15"; - type="Empty"; - id=202; - }; - class Item79 - { - dataType="Marker"; - position[]={21036.824,-6.1421623,19983.729}; - name="seaPatrol_17"; - type="Empty"; - id=203; - atlOffset=4.7683716e-007; - }; - class Item80 - { - dataType="Marker"; - position[]={21439.777,-34.234825,20565.129}; - name="seaPatrol_18"; - type="Empty"; - id=204; - }; - class Item81 - { - dataType="Marker"; - position[]={20829.301,-111.35175,21007.574}; - name="seaPatrol_19"; - type="Empty"; - id=205; - atlOffset=-7.6293945e-006; - }; - class Item82 - { - dataType="Marker"; - position[]={19648.564,-57.419949,20357.688}; - name="seaPatrol_20"; - type="Empty"; - id=206; - }; - class Item83 - { - dataType="Marker"; - position[]={18765.316,-69.89045,19432.197}; - name="seaPatrol_21"; - type="Empty"; - id=207; - atlOffset=-7.6293945e-006; - }; - class Item84 - { - dataType="Marker"; - position[]={18104.803,-14.177645,18433.744}; - name="seaPatrol_22"; - type="Empty"; - id=208; - atlOffset=-9.5367432e-007; - }; - class Item85 - { - dataType="Marker"; - position[]={17654.916,-45.156113,19878.459}; - name="seaPatrol_23"; - type="Empty"; - id=209; - }; - class Item86 - { - dataType="Marker"; - position[]={17094.244,-35.017235,20416.088}; - name="seaPatrol_24"; - type="Empty"; - id=210; - }; - class Item87 - { - dataType="Marker"; - position[]={24401.896,-46.708607,24632.064}; - name="seaPatrol_25"; - type="Empty"; - id=211; - }; - class Item88 - { - dataType="Marker"; - position[]={21877.271,-84.539009,22557.137}; - name="seaPatrol_26"; - type="Empty"; - id=213; - }; - class Item89 - { - dataType="Marker"; - position[]={22721.441,-93.355537,24119.252}; - name="seaPatrol_27"; - type="Empty"; - id=214; - }; - class Item90 - { - dataType="Marker"; - position[]={16096.998,15.869781,16996.32}; - name="outpost_10"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=161.16826; - b=157.68202; - angle=69.383179; - id=40; - atlOffset=0.22096157; - }; - class Item91 - { - dataType="Marker"; - position[]={15201.26,0,17315.594}; - name="outpost_23"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=146.17787; - b=102.46973; - angle=135.83093; - id=822; - atlOffset=-17.932499; - }; - class Item92 - { - dataType="Marker"; - position[]={3083.3718,0,13205.114}; - name="outpost_29"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=125.26378; - b=95.629669; - angle=195.57715; - id=863; - atlOffset=-47.84948; - }; - class Item93 - { - dataType="Marker"; - position[]={6564.3276,0,22680.568}; - name="outpost_30"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=69.1586; - b=69.295418; - angle=207.99992; - id=864; - atlOffset=-90.893692; - }; - class Item94 - { - dataType="Marker"; - position[]={8850.3701,0,23450.855}; - name="outpost_32"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=85.127136; - b=88.4842; - angle=207.99992; - id=866; - atlOffset=-78.78997; - }; - class Item95 - { - dataType="Marker"; - position[]={5476.2837,0,15006.967}; - name="outpost_33"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=80; - b=109.71587; - angle=41.942497; - id=867; - atlOffset=-27.299999; - }; - class Item96 - { - dataType="Marker"; - position[]={4831.0332,0,21945.127}; - name="outpost_7"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=156.13892; - b=107.38486; - angle=10.999998; - id=868; - atlOffset=-338.65887; - }; - class Item97 - { - dataType="Marker"; - position[]={7550.8413,0,12182.686}; - name="resource_7"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=40; - b=40; - angle=139.39099; - id=869; - atlOffset=-32.556042; - }; - class Item98 - { - dataType="Marker"; - position[]={8914.2949,0,7482.6426}; - name="outpost_15"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=124.50774; - b=120.69016; - angle=180.99997; - id=871; - atlOffset=-67.327797; - }; - class Item99 - { - dataType="Marker"; - position[]={13786,0,6390}; - name="outpost_16"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=120; - b=90; - angle=180.99997; - id=872; - atlOffset=-60.323318; - }; - class Item100 - { - dataType="Marker"; - position[]={4281.084,0,20681.605}; - name="outpost_35"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=79.428841; - b=76.658554; - angle=10.999998; - id=898; - atlOffset=-293.07449; - }; - class Item101 - { - dataType="Marker"; - position[]={3605.7151,17.347,10279.321}; - name="Synd_HQ"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorPink"; - a=50; - b=50; - id=933; - atlOffset=1.603302; - }; - class Item102 - { - dataType="Marker"; - position[]={3607.0481,2.7037606e+012,10281.5}; - name="respawn_west"; - text="Your Headquarters"; - type="hd_flag"; - colorName="ColorWEST"; - id=934; - atlOffset=2.7037606e+012; - }; - class Item103 - { - dataType="Object"; - class PositionInfo - { - position[]={3611.6396,16.176582,10280.448}; - angles[]={6.2725158,0,6.2392135}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="vehicleBox"; - }; - id=935; - type="Box_East_AmmoVeh_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item104 - { - dataType="Logic"; - class PositionInfo - { - position[]={3603.4663,15.792626,10272.64}; - angles[]={6.2631893,0,6.2485328}; - }; - name="server"; - id=939; - type="Logic"; - }; - class Item105 - { - dataType="Logic"; - class PositionInfo - { - position[]={3605.0405,15.709817,10271.228}; - angles[]={6.2631893,0,6.2485328}; - }; - name="garrison"; - id=940; - type="Logic"; - }; - class Item106 - { - dataType="Logic"; - class PositionInfo - { - position[]={3606.8276,15.619447,10269.807}; - angles[]={6.2631893,0,6.2485328}; - }; - name="spawner"; - id=941; - type="Logic"; - }; - class Item107 - { - dataType="Logic"; - class PositionInfo - { - position[]={3599.2339,15.983887,10269.939}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc"; - isPlayable=1; - id=942; - type="HeadlessClient_F"; - }; - class Item108 - { - dataType="Logic"; - class PositionInfo - { - position[]={3608.7026,15.474901,10268.476}; - angles[]={6.2631893,0,6.2046809}; - }; - name="roadsX"; - id=945; - type="Logic"; - }; - class Item109 - { - dataType="Logic"; - class PositionInfo - { - position[]={3597.7456,16.048376,10273.652}; - angles[]={6.2818484,4.511023,6.2432065}; - }; - name="HC_commanderX"; - id=946; - type="HighCommand"; - }; - class Item110 - { - dataType="Logic"; - class PositionInfo - { - position[]={3592.0493,16.267527,10272.373}; - angles[]={6.2631893,1.3577622,6.1506338}; - }; - id=947; - type="HighCommandSubordinate"; - }; - class Item111 - { - dataType="Logic"; - class PositionInfo - { - position[]={3610.1187,15.338509,10267.392}; - angles[]={6.2325621,0,6.2046804}; - }; - name="timer"; - id=949; - type="Logic"; - }; - class Item112 - { - dataType="Object"; - class PositionInfo - { - position[]={3610.7017,16.36245,10275.696}; - angles[]={0.014664836,0,6.213963}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="boxX"; - }; - id=950; - type="IG_supplyCrate_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - nAttributes=1; - }; - }; - class Item113 - { - dataType="Logic"; - class PositionInfo - { - position[]={3611.3882,15.175223,10266.14}; - angles[]={6.2325621,0,6.2046804}; - }; - name="sidesX"; - id=1010; - type="Logic"; - }; - class Item114 - { - dataType="Logic"; - class PositionInfo - { - position[]={3612.2993,15.061396,10265.308}; - angles[]={6.2325621,0,6.2046804}; - }; - name="killZones"; - id=1011; - type="Logic"; - }; - class Item115 - { - dataType="Object"; - class PositionInfo - { - position[]={3604.6182,16.735788,10282.353}; - angles[]={0.014664836,0,6.2232571}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="mapX"; - }; - id=1098; - type="MapBoard_seismic_F"; - }; - class Item116 - { - dataType="Marker"; - position[]={21332.969,18.857756,7321.6826}; - name="spawnpoint"; - type="hd_start"; - angle=28.14724; - id=1099; - }; - class Item117 - { - dataType="Marker"; - position[]={22912.727,9.9300003,19079.26}; - name="spawnPoint_1"; - type="hd_start"; - angle=311.68082; - id=1100; - atlOffset=-1.441308; - }; - class Item118 - { - dataType="Marker"; - position[]={26932.104,21.379999,24763.527}; - name="airport_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=279.32584; - b=133.11584; - angle=130.22887; - id=1101; - atlOffset=1.5478401; - }; - class Item119 - { - dataType="Marker"; - position[]={26833.08,27.041002,24434.344}; - name="spawnPoint_2"; - type="hd_start"; - angle=220.45634; - id=1102; - }; - class Item120 - { - dataType="Marker"; - position[]={14415.215,16.554316,16811.631}; - name="spawnPoint_3"; - type="hd_start"; - angle=223.34677; - id=1103; - }; - class Item121 - { - dataType="Marker"; - position[]={11565.08,25.18574,12096.762}; - name="spawnPoint_4"; - type="hd_start"; - angle=286.13657; - id=1104; - }; - class Item122 - { - dataType="Marker"; - position[]={9184.3438,14.790446,21734.248}; - name="spawnPoint_5"; - type="hd_start"; - angle=143.57869; - id=1105; - }; - class Item123 - { - dataType="Marker"; - position[]={9207.8809,272.26337,19283.068}; - name="outpost_12"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=79.986519; - b=87.525208; - angle=11.914993; - id=1106; - }; - class Item124 - { - dataType="Marker"; - position[]={3181.1331,2.4200001,12482.095}; - name="control"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1107; - atlOffset=9.059906e-006; - }; - class Item125 - { - dataType="Marker"; - position[]={4219.2031,46.111389,12251.489}; - name="control_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1108; - }; - class Item126 - { - dataType="Marker"; - position[]={5096.9497,24.480274,13859.174}; - name="control_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1109; - }; - class Item127 - { - dataType="Marker"; - position[]={5202.4297,18.541693,14485.633}; - name="control_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1110; - }; - class Item128 - { - dataType="Marker"; - position[]={3631.2336,7.4565849,13874.588}; - name="control_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1111; - }; - class Item129 - { - dataType="Marker"; - position[]={4386.7471,71.040924,16015.587}; - name="control_5"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1112; - }; - class Item130 - { - dataType="Marker"; - position[]={5952.9072,236.78763,19864.762}; - name="control_6"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1113; - }; - class Item131 - { - dataType="Marker"; - position[]={9128.2422,20.68099,22068.809}; - name="control_7"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1114; - }; - class Item132 - { - dataType="Marker"; - position[]={8409.0273,55.321545,20834.262}; - name="control_8"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1115; - }; - class Item133 - { - dataType="Marker"; - position[]={9351.292,38.454903,21243.428}; - name="control_9"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1116; - }; - class Item134 - { - dataType="Marker"; - position[]={9466.1748,14.863552,21870.887}; - name="control_10"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1117; - }; - class Item135 - { - dataType="Marker"; - position[]={8783.5254,99.873222,15788.32}; - name="control_11"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1118; - }; - class Item136 - { - dataType="Marker"; - position[]={7240.957,4.4888473,11029.49}; - name="control_12"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1119; - }; - class Item137 - { - dataType="Marker"; - position[]={10771.739,3.4747643,10873.154}; - name="control_13"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1120; - }; - class Item138 - { - dataType="Marker"; - position[]={10830.928,17.216188,12156.106}; - name="control_14"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1121; - }; - class Item139 - { - dataType="Marker"; - position[]={10093.558,18.734219,12919.797}; - name="control_15"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1122; - }; - class Item140 - { - dataType="Marker"; - position[]={12377.377,21.578207,15871.573}; - name="control_16"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1123; - }; - class Item141 - { - dataType="Marker"; - position[]={11293.307,58.806793,17517.594}; - name="control_17"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1124; - }; - class Item142 - { - dataType="Marker"; - position[]={13547.545,19.099752,18669.258}; - name="control_18"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1125; - }; - class Item143 - { - dataType="Marker"; - position[]={14299.458,28.614883,19467.055}; - name="control_19"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1126; - }; - class Item144 - { - dataType="Marker"; - position[]={13645.276,19.155266,16084.521}; - name="control_20"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1127; - atlOffset=-3.8146973e-006; - }; - class Item145 - { - dataType="Marker"; - position[]={15868.175,14.615435,17421.17}; - name="control_21"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1128; - }; - class Item146 - { - dataType="Marker"; - position[]={15986.493,8.0299902,16130.729}; - name="control_22"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1129; - atlOffset=3.1471252e-005; - }; - class Item147 - { - dataType="Marker"; - position[]={18362.127,19.228302,17342.16}; - name="control_23"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1130; - }; - class Item148 - { - dataType="Marker"; - position[]={17490.688,5.5569239,14324.797}; - name="control_24"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1131; - }; - class Item149 - { - dataType="Marker"; - position[]={18271.459,27.275703,12900.734}; - name="control_25"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1132; - }; - class Item150 - { - dataType="Marker"; - position[]={20228.654,52.020004,9768.0547}; - name="control_26"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1133; - }; - class Item151 - { - dataType="Marker"; - position[]={21586.922,14.105127,7801.9902}; - name="control_27"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1134; - }; - class Item152 - { - dataType="Marker"; - position[]={20792.029,36.949718,16645.305}; - name="control_28"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1135; - }; - class Item153 - { - dataType="Marker"; - position[]={21685.58,22.36945,17643.285}; - name="control_29"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1136; - }; - class Item154 - { - dataType="Marker"; - position[]={22971.109,13.492899,19366.07}; - name="control_30"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1137; - }; - class Item155 - { - dataType="Marker"; - position[]={24790.133,20.474581,20720.881}; - name="control_31"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1138; - }; - class Item156 - { - dataType="Marker"; - position[]={25990.26,24.751326,21568.287}; - name="control_32"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1139; - }; - class Item157 - { - dataType="Marker"; - position[]={26981.279,11.84,23830.973}; - name="control_33"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1140; - }; - class Item158 - { - dataType="Marker"; - position[]={5931.3213,35.499817,22072.861}; - name="control_34"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1141; - atlOffset=-180.69971; - }; - class Item159 - { - dataType="Marker"; - position[]={4078.9751,133.23485,22090.877}; - name="control_35"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1142; - }; - class Item160 - { - dataType="Marker"; - position[]={3876.7268,150.10907,21272.254}; - name="control_36"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1143; - }; - class Item161 - { - dataType="Marker"; - position[]={7787.8447,98.140869,21684.877}; - name="control_37"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1144; - atlOffset=-25.776688; - }; - class Item162 - { - dataType="Marker"; - position[]={3261.9119,122.53696,19385.77}; - name="control_38"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1145; - atlOffset=-42.672791; - }; - class Item163 - { - dataType="Marker"; - position[]={4095.1401,290.75259,19930.941}; - name="control_39"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1146; - }; - class Item164 - { - dataType="Marker"; - position[]={5528.4966,173.61342,21299.682}; - name="control_40"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1147; - }; - class Item165 - { - dataType="Marker"; - position[]={8185.0068,83.494675,22893.648}; - name="control_41"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1148; - }; - class Item166 - { - dataType="Marker"; - position[]={14258.698,96.381104,22076.549}; - name="control_42"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1149; - atlOffset=24.824684; - }; - class Item167 - { - dataType="Marker"; - position[]={8006.2344,70.981575,20042.875}; - name="control_43"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1150; - }; - class Item168 - { - dataType="Marker"; - position[]={5771.7959,189.49142,19094.035}; - name="control_44"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1151; - }; - class Item169 - { - dataType="Marker"; - position[]={11738.693,45.491325,8850.6113}; - name="control_45"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1152; - }; - class Item170 - { - dataType="Marker"; - position[]={21060.4,1.3683789,14717.646}; - name="control_46"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1153; - atlOffset=-3.4213066e-005; - }; - class Item171 - { - dataType="Marker"; - position[]={17992.082,69.924828,10671.903}; - name="control_47"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1154; - }; - class Item172 - { - dataType="Marker"; - position[]={22960.973,24.957481,21887.336}; - name="control_48"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1155; - }; - class Item173 - { - dataType="Marker"; - position[]={24232.799,66.273628,21795.674}; - name="control_49"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1156; - }; - class Item174 - { - dataType="Marker"; - position[]={23923.436,45.721985,22723.762}; - name="control_50"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1157; - }; - class Item175 - { - dataType="Marker"; - position[]={24347.379,25.81115,23560.189}; - name="control_51"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1158; - }; - class Item176 - { - dataType="Marker"; - position[]={28045.74,39.501999,25409.574}; - name="control_52"; - markerType="RECTANGLE"; - type="rectangle"; - a=200; - b=200; - angle=231.22296; - id=1159; - atlOffset=0.00048828125; - }; - class Item177 - { - dataType="Marker"; - position[]={25963.797,66.576874,22488.859}; - name="control_53"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1160; - }; - class Item178 - { - dataType="Marker"; - position[]={8799.5547,129.67937,15250.9}; - name="control_54"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1161; - }; - class Item179 - { - dataType="Marker"; - position[]={10822.622,106.28155,15025.045}; - name="control_55"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1162; - }; - class Item180 - { - dataType="Marker"; - position[]={6641.7202,132.51106,12197.677}; - name="control_56"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1163; - }; - class Item181 - { - dataType="Marker"; - position[]={9522.5645,52.498535,7532.7705}; - name="control_57"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1165; - atlOffset=-6.007225; - }; - class Item182 - { - dataType="Marker"; - position[]={23662.633,5.3028078,16239.605}; - name="control_58"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1166; - }; - class Item183 - { - dataType="Marker"; - position[]={3376.6011,0,12753.058}; - name="seaSpawn"; - type="mil_objective"; - id=1167; - atlOffset=2.941112; - }; - class Item184 - { - dataType="Marker"; - position[]={3535.1458,2.8441161e-009,13774.347}; - name="seaSpawn_1"; - type="mil_objective"; - id=1168; - atlOffset=1.2454736; - }; - class Item185 - { - dataType="Marker"; - position[]={3807.0403,8.2976584e-008,17341.869}; - name="seaSpawn_2"; - type="mil_objective"; - id=1169; - atlOffset=4.6103921; - }; - class Item186 - { - dataType="Marker"; - position[]={16582.131,0,12303.811}; - name="seaSpawn_3"; - type="mil_objective"; - id=1170; - atlOffset=8.3859863; - }; - class Item187 - { - dataType="Marker"; - position[]={12749.965,2.2184195e-006,14198.212}; - name="seaSpawn_4"; - type="mil_objective"; - id=1171; - atlOffset=9.9826164; - }; - class Item188 - { - dataType="Marker"; - position[]={11837.512,-2.1113763e-006,13530.187}; - name="seaSpawn_5"; - type="mil_objective"; - id=1172; - atlOffset=4.5436969; - }; - class Item189 - { - dataType="Marker"; - position[]={2255.782,0,13234.797}; - name="seaAttackSpawn"; - type="mil_ambush"; - angle=28.695; - id=1174; - atlOffset=126.38051; - }; - class Item190 - { - dataType="Marker"; - position[]={3172.9761,2.8623674e-008,16757.107}; - name="seaAttackSpawn_1"; - type="mil_ambush"; - angle=327.2157; - id=1176; - atlOffset=107.35194; - }; - class Item191 - { - dataType="Marker"; - position[]={19879.293,0,21958.814}; - name="seaAttackSpawn_2"; - type="mil_ambush"; - angle=111.40697; - id=1177; - atlOffset=171.26703; - }; - class Item192 - { - dataType="Marker"; - position[]={25805.57,0,25990.992}; - name="seaAttackSpawn_3"; - type="mil_ambush"; - angle=28.695; - id=1178; - atlOffset=178.77411; - }; - class Item193 - { - dataType="Marker"; - position[]={24006.145,-6.4275355e-008,6603.1455}; - name="seaAttackSpawn_4"; - type="mil_ambush"; - angle=216.66417; - id=1179; - atlOffset=180.55885; - }; - class Item194 - { - dataType="Marker"; - position[]={15241.775,0,13870.712}; - name="seaAttackSpawn_5"; - type="mil_ambush"; - angle=28.695; - id=1180; - atlOffset=67.766624; - }; - class Item195 - { - dataType="Marker"; - position[]={13681.933,-8.68244e-008,10426.626}; - name="seaAttackSpawn_6"; - type="mil_ambush"; - angle=218.59846; - id=1181; - atlOffset=141.36031; - }; - class Item196 - { - dataType="Marker"; - position[]={14289.93,19.299,16295.807}; - name="outpost_17"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=170; - b=100; - angle=135.83093; - id=1183; - atlOffset=-0.00031089783; - }; - class Item197 - { - dataType="Marker"; - position[]={3239.0374,7.4641165e-010,12861.445}; - name="seaSpawn_6"; - type="mil_objective"; - id=1184; - atlOffset=8.8429317; - }; - class Item198 - { - dataType="Marker"; - position[]={20649.865,0,19497.082}; - name="seaSpawn_7"; - type="mil_objective"; - id=1185; - atlOffset=2.1248169; - }; - class Item199 - { - dataType="Marker"; - position[]={27619.545,1.5190345e-008,24543.322}; - name="seaSpawn_8"; - type="mil_objective"; - id=1186; - atlOffset=4.5166793; - }; - class Item200 - { - dataType="Marker"; - position[]={15382.954,-4.1486221e-008,15813.717}; - name="seaSpawn_9"; - type="mil_objective"; - id=1187; - atlOffset=6.1902537; - }; - class Item201 - { - dataType="Object"; - class PositionInfo - { - position[]={8977.3438,27.781113,21410.1}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1188; - type="Land_Airport_Tower_F"; - }; - class Item202 - { - dataType="Object"; - class PositionInfo - { - position[]={23033.316,8.6534567,18750.721}; - angles[]={0,4.7067919,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1200; - type="Land_Hangar_F"; - }; - class Item203 - { - dataType="Object"; - class PositionInfo - { - position[]={4842.5225,341.48743,22001.531}; - angles[]={0,4.7289844,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=1235; - type="Land_Cargo_HQ_V1_F"; - atlOffset=0.3626709; - }; - class Item204 - { - dataType="Object"; - class PositionInfo - { - position[]={8996.4727,21.45295,21409.941}; - angles[]={0,2.4943135,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1237; - type="Land_Cargo_HQ_V1_F"; - }; - class Item205 - { - dataType="Object"; - class PositionInfo - { - position[]={11422.4,29.309406,11671.359}; - angles[]={0,1.0115303,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=1238; - type="Land_Cargo_HQ_V1_F"; - atlOffset=1.0188999; - }; - class Item206 - { - dataType="Object"; - class PositionInfo - { - position[]={22995.125,8.8610163,18852.758}; - angles[]={0,5.6882114,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=1243; - type="Land_Cargo_HQ_V1_F"; - atlOffset=0.94216871; - class CustomAttributes - { - class Attribute0 - { - property="DoorStates"; - expression="['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;"; - class Value - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=3; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - class Item2 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - }; - }; - }; - nAttributes=1; - }; - }; - class Item207 - { - dataType="Object"; - class PositionInfo - { - position[]={26736.508,25.002501,24583.18}; - angles[]={0,2.2082093,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1244; - type="Land_Cargo_HQ_V1_F"; - }; - class Item208 - { - dataType="Object"; - class PositionInfo - { - position[]={20941.527,32.202915,7185.3008}; - angles[]={0,1.5555797,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1245; - type="Land_Cargo_HQ_V1_F"; - atlOffset=9.5367432e-006; - }; - class Item209 - { - dataType="Object"; - class PositionInfo - { - position[]={9293.0469,22.007439,21566.828}; - angles[]={0,4.30966,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1262; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item210 - { - dataType="Object"; - class PositionInfo - { - position[]={9170.5498,22.457399,21446.398}; - angles[]={0,5.6333933,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1264; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item211 - { - dataType="Object"; - class PositionInfo - { - position[]={9027.7578,23.531631,21343.953}; - angles[]={0,5.6333933,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1265; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item212 - { - dataType="Object"; - class PositionInfo - { - position[]={26822.635,28.719749,24575.076}; - angles[]={0,0.78758019,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1271; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item213 - { - dataType="Object"; - class PositionInfo - { - position[]={21135.934,28.32896,7179.5508}; - angles[]={0,4.8921785,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1273; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item214 - { - dataType="Object"; - class PositionInfo - { - position[]={20974.73,29.950148,7330.9082}; - angles[]={0,4.8921785,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1274; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=1.5258789e-005; - }; - class Item215 - { - dataType="Object"; - class PositionInfo - { - position[]={20725.863,36.504616,7208.3887}; - angles[]={0,0.99436247,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1275; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=2.0980835e-005; - }; - class Item216 - { - dataType="Object"; - class PositionInfo - { - position[]={9126.1553,27.412918,21637.201}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1286; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-0.0099000931; - }; - class Item217 - { - dataType="Object"; - class PositionInfo - { - position[]={11477.765,35.963001,11723.507}; - angles[]={0,4.2127972,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1287; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-0.017017365; - }; - class Item218 - { - dataType="Object"; - class PositionInfo - { - position[]={22988.684,16.9498,18911.826}; - angles[]={0,4.0796099,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1289; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-4.7683716e-007; - }; - class Item219 - { - dataType="Object"; - class PositionInfo - { - position[]={26799.561,31.617382,24688.488}; - angles[]={0,5.3050466,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1292; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-1.011385; - }; - class Item220 - { - dataType="Object"; - class PositionInfo - { - position[]={21047.531,34.702774,7278.1133}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1293; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-1.9073486e-006; - }; - class Item221 - { - dataType="Object"; - class PositionInfo - { - position[]={9061.2451,19.961628,21534.646}; - angles[]={0,2.360858,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1318; - type="Land_TentHangar_V1_F"; - atlOffset=-9.5367432e-007; - }; - class Item222 - { - dataType="Object"; - class PositionInfo - { - position[]={9091.042,19.327972,21561.338}; - angles[]={0,5.8653936,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1319; - type="Land_TentHangar_V1_F"; - atlOffset=9.5367432e-007; - }; - class Item223 - { - dataType="Object"; - class PositionInfo - { - position[]={21180.666,22.782005,7366.3877}; - angles[]={0,4.1899118,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1331; - type="Land_TentHangar_V1_F"; - atlOffset=1.9073486e-006; - }; - class Item224 - { - dataType="Object"; - class PositionInfo - { - position[]={21157.563,25.296978,7247.1904}; - angles[]={0,5.3663549,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1332; - type="Land_TentHangar_V1_F"; - }; - class Item225 - { - dataType="Object"; - class PositionInfo - { - position[]={23221.844,5.8685412,18859.59}; - angles[]={0,1.5504203,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1336; - type="Land_Airport_01_hangar_F"; - }; - class Item226 - { - dataType="Object"; - class PositionInfo - { - position[]={23218.164,8.0950003,18804.531}; - angles[]={0,5.2616692,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1337; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item227 - { - dataType="Object"; - class PositionInfo - { - position[]={26850.596,31.404058,24470.365}; - angles[]={0,6.2068391,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1338; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item228 - { - dataType="Object"; - class PositionInfo - { - position[]={26949.387,29.005325,24593.477}; - angles[]={0,4.8006735,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1339; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item229 - { - dataType="Object"; - class PositionInfo - { - position[]={26734.734,31.658321,24606.318}; - angles[]={0,3.7836525,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=1340; - type="Land_Airport_Tower_F"; - atlOffset=0.48480988; - }; - class Item230 - { - dataType="Object"; - class PositionInfo - { - position[]={23073.195,8.0950003,18689.061}; - angles[]={0,0.71987998,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1343; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item231 - { - dataType="Object"; - class PositionInfo - { - position[]={11553.854,27.335001,11559.937}; - angles[]={0,5.1253457,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1344; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item232 - { - dataType="Object"; - class PositionInfo - { - position[]={11638.675,27.272053,11798.894}; - angles[]={0,4.1140165,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1345; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item233 - { - dataType="Object"; - class PositionInfo - { - position[]={11661.325,27.89052,11990.291}; - angles[]={0,3.8163784,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1346; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item234 - { - dataType="Object"; - class PositionInfo - { - position[]={11542.937,28.960028,11928.523}; - angles[]={0,1.3898941,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1347; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item235 - { - dataType="Object"; - class PositionInfo - { - position[]={14827.185,22.847755,16421.967}; - angles[]={0,4.4921894,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1350; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item236 - { - dataType="Object"; - class PositionInfo - { - position[]={14730.716,30.796209,16571.352}; - angles[]={0,0.78664351,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1351; - type="Land_Cargo_Tower_V1_F"; - }; - class Item237 - { - dataType="Object"; - class PositionInfo - { - position[]={14770.462,21.7854,16646.947}; - angles[]={0,3.2631023,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1357; - type="Land_Cargo_HQ_V1_F"; - }; - class Item238 - { - dataType="Object"; - class PositionInfo - { - position[]={14897.738,22.811348,16668.238}; - angles[]={0,3.867835,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1358; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item239 - { - dataType="Object"; - class PositionInfo - { - position[]={13537.357,18.774933,12085.127}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="if !(isMultiplayer) then {deleteVehicle this}"; - }; - id=1389; - type="Flag_NATO_F"; - atlOffset=-0.6429987; - }; - class Item240 - { - dataType="Marker"; - position[]={13537.383,17.983999,12063.334}; - name="respawn_guerrila"; - type="flag_Altis"; - id=1390; - atlOffset=4.0481062; - }; - class Item241 - { - dataType="Marker"; - position[]={10027.582,17.59524,12814.658}; - name="road"; - type="hd_arrow"; - angle=227.508; - id=1440; - }; - class Item242 - { - dataType="Marker"; - position[]={8780.8975,35.592316,12043.754}; - name="road_1"; - type="hd_arrow"; - angle=223.50795; - id=1441; - }; - class Item243 - { - dataType="Marker"; - position[]={7336.4771,16.04541,11418.288}; - name="road_2"; - type="hd_arrow"; - angle=13.06902; - id=1442; - atlOffset=3.2962132; - }; - class Item244 - { - dataType="Marker"; - position[]={10432.575,14.689998,11982.5}; - name="road_4"; - type="hd_arrow"; - angle=227.508; - id=1445; - }; - class Item245 - { - dataType="Marker"; - position[]={9615.0332,12.606598,11695.909}; - name="road_5"; - type="hd_arrow"; - angle=266.26797; - id=1446; - atlOffset=0.63069153; - }; - class Item246 - { - dataType="Marker"; - position[]={11034.368,63.11581,12973.104}; - name="road_3"; - type="hd_arrow"; - angle=41.155243; - id=1443; - atlOffset=43.66288; - }; - class Item247 - { - dataType="Marker"; - position[]={11738.429,13.323238,13913.249}; - name="road_6"; - type="hd_arrow"; - angle=26.564579; - id=1447; - }; - class Item248 - { - dataType="Marker"; - position[]={13483.127,15.282019,16028.804}; - name="road_7"; - type="hd_arrow"; - angle=254.67212; - id=1448; - }; - class Item249 - { - dataType="Marker"; - position[]={12479.82,32.146729,15886.568}; - name="road_8"; - type="hd_arrow"; - angle=263.33395; - id=1450; - atlOffset=12.854931; - }; - class Item250 - { - dataType="Marker"; - position[]={14286.374,17.269678,18161.129}; - name="road_9"; - type="hd_arrow"; - angle=333.82483; - id=1451; - }; - class Item251 - { - dataType="Marker"; - position[]={14310.426,26.728813,19600.521}; - name="road_10"; - type="hd_arrow"; - angle=14.435917; - id=1452; - }; - class Item252 - { - dataType="Marker"; - position[]={14772.154,14.778986,17175.191}; - name="road_11"; - type="hd_arrow"; - angle=53.226994; - id=1453; - }; - class Item253 - { - dataType="Marker"; - position[]={16953.045,16.280811,17813.107}; - name="road_12"; - type="hd_arrow"; - angle=64.545609; - id=1454; - }; - class Item254 - { - dataType="Marker"; - position[]={15896.649,11.202651,16178.266}; - name="road_13"; - type="hd_arrow"; - angle=120.79032; - id=1455; - }; - class Item255 - { - dataType="Marker"; - position[]={17469.98,4.3621092,14443.852}; - name="road_14"; - type="hd_arrow"; - angle=148.54735; - id=1456; - }; - class Item256 - { - dataType="Marker"; - position[]={17045.52,15.683575,12893.139}; - name="road_15"; - type="hd_arrow"; - angle=227.508; - id=1457; - }; - class Item257 - { - dataType="Marker"; - position[]={9380.7666,47.546509,21152.375}; - name="road_16"; - type="hd_arrow"; - angle=155.2245; - id=1458; - }; - class Item258 - { - dataType="Marker"; - position[]={9718.4492,183.56577,19929.207}; - name="road_17"; - type="hd_arrow"; - angle=117.23835; - id=1459; - }; - class Item259 - { - dataType="Marker"; - position[]={9819.0234,94.69236,18539.961}; - name="road_18"; - type="hd_arrow"; - angle=227.508; - id=1460; - }; - class Item260 - { - dataType="Marker"; - position[]={7528.1772,171.76268,17280.842}; - name="road_19"; - type="hd_arrow"; - angle=227.508; - id=1462; - }; - class Item261 - { - dataType="Marker"; - position[]={6922.4834,188.9752,19240.162}; - name="road_20"; - type="hd_arrow"; - angle=1.5074006; - id=1463; - }; - class Item262 - { - dataType="Marker"; - position[]={5246.1899,230.57468,20359.127}; - name="road_21"; - type="hd_arrow"; - angle=284.62128; - id=1464; - }; - class Item263 - { - dataType="Marker"; - position[]={21951.461,14.131549,7363.1597}; - name="road_22"; - type="hd_arrow"; - angle=128.61185; - id=1465; - }; - class Item264 - { - dataType="Marker"; - position[]={21274.943,15.456692,8186.6035}; - name="road_23"; - type="hd_arrow"; - angle=317.16461; - id=1466; - }; - class Item265 - { - dataType="Marker"; - position[]={20046.328,55.846924,8865.0693}; - name="road_24"; - type="hd_arrow"; - angle=290.07159; - id=1467; - }; - class Item266 - { - dataType="Marker"; - position[]={20573.68,19.865625,10695.808}; - name="road_25"; - type="hd_arrow"; - angle=354.21683; - id=1468; - }; - class Item267 - { - dataType="Marker"; - position[]={22282.488,15.448867,18421.662}; - name="road_26"; - type="hd_arrow"; - angle=227.508; - id=1469; - }; - class Item268 - { - dataType="Marker"; - position[]={21706.1,22.576994,17678.889}; - name="road_27"; - type="hd_arrow"; - angle=213.26985; - id=1470; - }; - class Item269 - { - dataType="Marker"; - position[]={21005.709,35.480789,17676.527}; - name="road_28"; - type="hd_arrow"; - angle=2.0592506; - id=1471; - }; - class Item270 - { - dataType="Marker"; - position[]={20651.492,34.118702,18726.168}; - name="road_29"; - type="hd_arrow"; - angle=353.88327; - id=1472; - }; - class Item271 - { - dataType="Marker"; - position[]={20633.316,30.614683,16457.666}; - name="road_30"; - type="hd_arrow"; - angle=227.508; - id=1473; - }; - class Item272 - { - dataType="Marker"; - position[]={19814.211,16.058229,15687.382}; - name="road_31"; - type="hd_arrow"; - angle=227.508; - id=1474; - }; - class Item273 - { - dataType="Marker"; - position[]={23162.15,14.283377,19607.332}; - name="road_32"; - type="hd_arrow"; - angle=34.257725; - id=1475; - }; - class Item274 - { - dataType="Marker"; - position[]={22555.17,27.099434,20589.469}; - name="road_33"; - type="hd_arrow"; - angle=335.03088; - id=1476; - }; - class Item275 - { - dataType="Marker"; - position[]={23029.904,51.844334,21113.5}; - name="road_34"; - type="hd_arrow"; - angle=63.785625; - id=1477; - }; - class Item276 - { - dataType="Marker"; - position[]={24637.473,21.285206,20648.904}; - name="road_35"; - type="hd_arrow"; - angle=57.619133; - id=1478; - }; - class Item277 - { - dataType="Marker"; - position[]={25174.367,14.661154,20623.25}; - name="road_36"; - type="hd_arrow"; - angle=127.69429; - id=1479; - }; - class Item278 - { - dataType="Marker"; - position[]={25325.771,17.582952,21110.881}; - name="road_37"; - type="hd_arrow"; - angle=334.7471; - id=1480; - }; - class Item279 - { - dataType="Marker"; - position[]={24739.473,75.226112,21810.691}; - name="road_38"; - type="hd_arrow"; - angle=69.393608; - id=1481; - }; - class Item280 - { - dataType="Marker"; - position[]={26280.432,40.25845,21788.68}; - name="road_39"; - type="hd_arrow"; - angle=52.54501; - id=1482; - }; - class Item281 - { - dataType="Marker"; - position[]={26493.066,20.179955,21324.83}; - name="road_40"; - type="hd_arrow"; - angle=113.11617; - id=1483; - }; - class Item282 - { - dataType="Marker"; - position[]={27080.533,11.835176,24018.773}; - name="road_41"; - type="hd_arrow"; - angle=227.508; - id=1484; - atlOffset=9.5367432e-007; - }; - class Item283 - { - dataType="Marker"; - position[]={26716.645,23.527546,22928.643}; - name="road_42"; - type="hd_arrow"; - angle=227.508; - id=1485; - }; - class Item284 - { - dataType="Group"; - side="West"; - class Entities - { - items=60; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={3606.198,15.751395,10275.502}; - }; - side="West"; - flags=7; - class Attributes - { - name="commanderX"; - description="Default Commander"; - isPlayer=1; - }; - id=1487; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={3611.3052,15.357435,10272.316}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1492; - type="B_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.7786,14.942623,10277.655}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1502; - type="B_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={3623.3313,14.7978,10277.673}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1504; - type="B_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={3626.3606,14.680888,10277.655}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1506; - type="B_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={3629.23,14.596958,10277.691}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1508; - type="B_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.9236,14.522006,10277.673}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1510; - type="B_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={3618.2109,15.07185,10277.62}; - }; - side="West"; - flags=5; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1512; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.6335,14.914344,10280.802}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1514; - type="B_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={3623.1863,14.765662,10280.819}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1516; - type="B_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={3626.2156,14.677603,10280.802}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1518; - type="B_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item11 - { - dataType="Object"; - class PositionInfo - { - position[]={3629.085,14.608832,10280.838}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1520; - type="B_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item12 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.7786,14.536454,10280.819}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1522; - type="B_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item13 - { - dataType="Object"; - class PositionInfo - { - position[]={3618.0659,15.082511,10280.767}; - }; - side="West"; - flags=5; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1524; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item14 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.5249,14.972713,10283.839}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1526; - type="B_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item15 - { - dataType="Object"; - class PositionInfo - { - position[]={3623.0776,14.776744,10283.856}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1528; - type="B_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item16 - { - dataType="Object"; - class PositionInfo - { - position[]={3626.1069,14.703787,10283.839}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1530; - type="B_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item17 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.9763,14.635045,10283.875}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1532; - type="B_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item18 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.6699,14.622231,10283.856}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1534; - type="B_G_Soldier_GL_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item19 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.9573,15.138463,10283.804}; - }; - side="West"; - flags=5; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1536; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item20 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.4529,15.050589,10286.695}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1538; - type="B_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item21 - { - dataType="Object"; - class PositionInfo - { - position[]={3623.0056,14.820369,10286.713}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1540; - type="B_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item22 - { - dataType="Object"; - class PositionInfo - { - position[]={3626.0349,14.747169,10286.695}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1542; - type="B_G_medic_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item23 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.9043,14.674952,10286.731}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1544; - type="B_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item24 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.5979,14.65974,10286.713}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1546; - type="B_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item25 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.8853,15.303119,10286.66}; - }; - side="West"; - flags=5; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1548; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item26 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.4165,15.095855,10289.518}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1550; - type="B_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item27 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.9692,14.862626,10289.535}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1552; - type="B_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item28 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.9985,14.785713,10289.518}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1554; - type="B_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item29 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.8679,14.713508,10289.554}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1556; - type="B_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item30 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.5615,14.698468,10289.535}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1558; - type="B_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item31 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.8489,15.369222,10289.482}; - }; - side="West"; - flags=5; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1560; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item32 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.5378,15.507857,10292.378}; - }; - side="West"; - flags=1; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1583; - type="B_G_Soldier_AR_F"; - atlOffset=0.31138611; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item33 - { - dataType="Object"; - class PositionInfo - { - position[]={3623.0906,15.274629,10292.396}; - }; - side="West"; - flags=1; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1585; - type="B_G_Soldier_LAT_F"; - atlOffset=0.31738853; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item34 - { - dataType="Object"; - class PositionInfo - { - position[]={3626.1199,15.197716,10292.378}; - }; - side="West"; - flags=1; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1587; - type="B_G_medic_F"; - atlOffset=0.31792545; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item35 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.9893,15.12551,10292.414}; - }; - side="West"; - flags=1; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1589; - type="B_G_engineer_F"; - atlOffset=0.33147812; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item36 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.6829,15.110471,10292.396}; - }; - side="West"; - flags=1; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1591; - type="B_G_Soldier_GL_F"; - atlOffset=0.33759689; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item37 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.9702,15.781224,10292.343}; - }; - side="West"; - flags=1; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1593; - type="B_G_officer_F"; - atlOffset=0.3096056; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item38 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.4919,15.320822,10294.948}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1595; - type="B_G_Soldier_AR_F"; - atlOffset=0.019706726; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item39 - { - dataType="Object"; - class PositionInfo - { - position[]={3623.0447,15.087593,10294.966}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1597; - type="B_G_Soldier_LAT_F"; - atlOffset=0.029860497; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item40 - { - dataType="Object"; - class PositionInfo - { - position[]={3626.074,15.01068,10294.948}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1599; - type="B_G_medic_F"; - atlOffset=0.040740967; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item41 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.9434,14.938475,10294.984}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1601; - type="B_G_engineer_F"; - atlOffset=0.070830345; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item42 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.637,14.923435,10294.966}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1603; - type="B_G_Soldier_GL_F"; - atlOffset=0.07905674; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item43 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.9243,15.594189,10294.913}; - }; - side="West"; - flags=5; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1605; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item44 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.3542,15.447033,10297.748}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1607; - type="B_G_Soldier_AR_F"; - atlOffset=0.019241333; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item45 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.907,15.213804,10297.766}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1609; - type="B_G_Soldier_LAT_F"; - atlOffset=0.048957825; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item46 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.9363,15.136891,10297.748}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1611; - type="B_G_medic_F"; - atlOffset=0.081747055; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item47 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.8057,15.064686,10297.784}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1613; - type="B_G_engineer_F"; - atlOffset=0.11147594; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item48 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.4993,15.049646,10297.766}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1615; - type="B_G_Soldier_GL_F"; - atlOffset=0.094394684; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item49 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.7866,15.7204,10297.713}; - }; - side="West"; - flags=5; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1617; - type="B_G_officer_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item50 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.4919,15.557705,10300.18}; - }; - side="West"; - flags=5; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1619; - type="B_G_Soldier_AR_F"; - atlOffset=0.028369904; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item51 - { - dataType="Object"; - class PositionInfo - { - position[]={3623.0447,15.324476,10300.197}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1621; - type="B_G_Soldier_LAT_F"; - atlOffset=0.07380867; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item52 - { - dataType="Object"; - class PositionInfo - { - position[]={3626.074,15.247563,10300.18}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1623; - type="B_G_medic_F"; - atlOffset=0.1065979; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item53 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.9434,15.175358,10300.216}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1625; - type="B_G_engineer_F"; - atlOffset=0.093374252; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item54 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.637,15.160318,10300.197}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1627; - type="B_G_Soldier_GL_F"; - atlOffset=0.045767784; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item55 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.9243,15.831072,10300.145}; - }; - side="West"; - flags=5; - class Attributes - { - description="Officer"; - isPlayable=1; - }; - id=1629; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item56 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.4502,14.762181,10272.334}; - }; - side="West"; - flags=5; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1500; - type="B_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item57 - { - dataType="Object"; - class PositionInfo - { - position[]={3619.7566,14.877787,10272.353}; - }; - side="West"; - flags=5; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1498; - type="B_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item58 - { - dataType="Object"; - class PositionInfo - { - position[]={3616.8872,15.00565,10272.316}; - }; - side="West"; - flags=5; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1496; - type="B_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item59 - { - dataType="Object"; - class PositionInfo - { - position[]={3613.8579,15.180957,10272.334}; - }; - side="West"; - flags=5; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1494; - type="B_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=1486; - class CustomAttributes - { - class Attribute0 - { - property="groupID"; - expression="_this setGroupID [_value];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Guerillas"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item285 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={3600.1211,15.997869,10278.858}; - angles[]={0,2.0248263,0}; - }; - side="West"; - flags=7; - class Attributes - { - name="petros"; - }; - id=1488; - type="B_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.05; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=1489; - class CustomAttributes - { - class Attribute0 - { - property="groupID"; - expression="_this setGroupID [_value];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Petros"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item286 - { - dataType="Object"; - class PositionInfo - { - position[]={3608.8811,19.602364,10284.22}; - angles[]={6.2272439,0,6.2392135}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="flagX"; - }; - id=1490; - type="Flag_FIA_F"; - atlOffset=9.5367432e-007; - }; - class Item287 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=6; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={13537.176,16.839275,12079.607}; - }; - side="Independent"; - flags=3; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; - name="pvp_green_1"; - isPlayable=1; - }; - id=1562; - type="I_Soldier_SL_F"; - atlOffset=1.1369991; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={13532.44,16.044815,12074.052}; - }; - side="Independent"; - flags=1; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; - name="pvp_green_2"; - isPlayable=1; - }; - id=1563; - type="I_medic_F"; - atlOffset=1.2700014; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={13540.869,15.886252,12074.554}; - }; - side="Independent"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; - name="pvp_green_4"; - isPlayable=1; - }; - id=1564; - type="I_Soldier_M_F"; - atlOffset=-1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={13536.766,15.660179,12076.168}; - }; - side="Independent"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; - name="pvp_green_3"; - isPlayable=1; - }; - id=1649; - type="I_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={13540.1,15.931467,12079.609}; - }; - side="Independent"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; - name="pvp_green_6"; - isPlayable=1; - }; - id=1650; - type="I_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={13538.076,15.801028,12082.178}; - }; - side="Independent"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; - name="pvp_green_5"; - isPlayable=1; - }; - id=1651; - type="I_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=1561; - atlOffset=1.1369991; - }; - class Item288 - { - dataType="Marker"; - position[]={8431.7119,115.93193,25106.738}; - name="respawn_east"; - type="flag_Viper"; - id=1571; - atlOffset=5.68927; - }; - class Item289 - { - dataType="Group"; - side="East"; - class Entities - { - items=6; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8430.2979,111.02246,25110.721}; - }; - side="East"; - flags=7; - class Attributes - { - init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; - name="pvp_red_1"; - isPlayable=1; - }; - id=1573; - type="O_T_Recon_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={8425.4854,110.56212,25106.207}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; - name="pvp_red_2"; - isPlayable=1; - }; - id=1574; - type="O_T_Recon_Medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8434.96,109.85142,25106.357}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; - name="pvp_red_4"; - isPlayable=1; - }; - id=1575; - type="O_T_Recon_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8421.1982,110.12845,25101.018}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; - name="pvp_red_5"; - isPlayable=1; - }; - id=1576; - type="O_T_Recon_LAT_F"; - atlOffset=7.6293945e-006; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={8436.4316,109.33715,25104.035}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; - name="pvp_red_3"; - isPlayable=1; - }; - id=1644; - type="O_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01PER"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={8433.3594,110.63219,25111.08}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; - name="pvp_red_6"; - isPlayable=1; - }; - id=1646; - type="O_T_Recon_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=1572; - }; - class Item290 - { - dataType="Object"; - class PositionInfo - { - position[]={8422.2021,115.51098,25112.369}; - angles[]={6.2711902,0,0.04796192}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="if !(isMultiplayer) then {deleteVehicle this}"; - }; - id=1581; - type="Flag_Viper_F"; - }; - class Item291 - { - dataType="Logic"; - class PositionInfo - { - position[]={3602.1523,15.835608,10267.798}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_1"; - isPlayable=1; - id=1633; - type="HeadlessClient_F"; - atlOffset=1.7166138e-005; - }; - class Item292 - { - dataType="Logic"; - class PositionInfo - { - position[]={3605.4236,15.676936,10265.767}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_2"; - isPlayable=1; - id=1634; - type="HeadlessClient_F"; - atlOffset=2.9563904e-005; - }; - class Item293 - { - dataType="Logic"; - class PositionInfo - { - position[]={3606.6885,15.61832,10264.818}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_3"; - isPlayable=1; - id=1635; - type="HeadlessClient_F"; - atlOffset=2.5749207e-005; - }; - class Item294 - { - dataType="Logic"; - class PositionInfo - { - position[]={3608.7256,15.415653,10263.688}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_4"; - isPlayable=1; - id=1636; - type="HeadlessClient_F"; - atlOffset=3.9100647e-005; - }; - class Item295 - { - dataType="Logic"; - class PositionInfo - { - position[]={3610.2454,15.214238,10262.688}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_5"; - isPlayable=1; - id=1637; - type="HeadlessClient_F"; - atlOffset=3.528595e-005; - }; - class Item296 - { - dataType="Object"; - class PositionInfo - { - position[]={3607.073,16.1,10278.632}; - angles[]={0.014660765,0,6.2232509}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="fireX"; - }; - id=1641; - type="Land_TentSolar_01_olive_F"; - atlOffset=-0.14473438; - }; - class Item297 - { - dataType="Logic"; - class PositionInfo - { - position[]={3593.9009,16.122522,10260.412}; - }; - id=1643; - type="ModuleCurator_F"; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#adminLogged"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - }; - nAttributes=4; - }; - }; - class Item298 - { - dataType="Logic"; - class PositionInfo - { - position[]={3613.3989,14.92534,10264.33}; - }; - name="pathfinding"; - id=1652; - type="Logic"; - atlOffset=9.5367432e-007; - }; - }; - class Connections - { - class LinkIDProvider - { - nextID=61; - }; - class Links - { - items=61; - class Item0 - { - linkID=0; - item0=946; - item1=947; - class CustomData - { - type="Sync"; - }; - }; - class Item1 - { - linkID=1; - item0=1487; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item2 - { - linkID=2; - item0=1492; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item3 - { - linkID=3; - item0=1502; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item4 - { - linkID=4; - item0=1504; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item5 - { - linkID=5; - item0=1506; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item6 - { - linkID=6; - item0=1508; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item7 - { - linkID=7; - item0=1510; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item8 - { - linkID=8; - item0=1512; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item9 - { - linkID=9; - item0=1514; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item10 - { - linkID=10; - item0=1516; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item11 - { - linkID=11; - item0=1518; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item12 - { - linkID=12; - item0=1520; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item13 - { - linkID=13; - item0=1522; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item14 - { - linkID=14; - item0=1524; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item15 - { - linkID=15; - item0=1526; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item16 - { - linkID=16; - item0=1528; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item17 - { - linkID=17; - item0=1530; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item18 - { - linkID=18; - item0=1532; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item19 - { - linkID=19; - item0=1534; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item20 - { - linkID=20; - item0=1536; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item21 - { - linkID=21; - item0=1538; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item22 - { - linkID=22; - item0=1540; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item23 - { - linkID=23; - item0=1542; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item24 - { - linkID=24; - item0=1544; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item25 - { - linkID=25; - item0=1546; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item26 - { - linkID=26; - item0=1548; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item27 - { - linkID=27; - item0=1550; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item28 - { - linkID=28; - item0=1552; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item29 - { - linkID=29; - item0=1554; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item30 - { - linkID=30; - item0=1556; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item31 - { - linkID=31; - item0=1558; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item32 - { - linkID=32; - item0=1560; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item33 - { - linkID=33; - item0=1583; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item34 - { - linkID=34; - item0=1585; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item35 - { - linkID=35; - item0=1587; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item36 - { - linkID=36; - item0=1589; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item37 - { - linkID=37; - item0=1591; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item38 - { - linkID=38; - item0=1593; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item39 - { - linkID=39; - item0=1595; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item40 - { - linkID=40; - item0=1597; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item41 - { - linkID=41; - item0=1599; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item42 - { - linkID=42; - item0=1601; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item43 - { - linkID=43; - item0=1603; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item44 - { - linkID=44; - item0=1605; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item45 - { - linkID=45; - item0=1607; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item46 - { - linkID=46; - item0=1609; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item47 - { - linkID=47; - item0=1611; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item48 - { - linkID=48; - item0=1613; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item49 - { - linkID=49; - item0=1615; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item50 - { - linkID=50; - item0=1617; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item51 - { - linkID=51; - item0=1619; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item52 - { - linkID=52; - item0=1621; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item53 - { - linkID=53; - item0=1623; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item54 - { - linkID=54; - item0=1625; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item55 - { - linkID=55; - item0=1627; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item56 - { - linkID=56; - item0=1629; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item57 - { - linkID=57; - item0=1500; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item58 - { - linkID=58; - item0=1498; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item59 - { - linkID=59; - item0=1496; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - class Item60 - { - linkID=60; - item0=1494; - item1=946; - class CustomData - { - type="Sync"; - }; - }; - }; - }; -}; diff --git a/A3-Antistasi/Templates/A3-AATemplate.Altis/PIC.jpg b/A3-Antistasi/Templates/A3-AATemplate.Altis/PIC.jpg deleted file mode 100644 index 532876af94..0000000000 Binary files a/A3-Antistasi/Templates/A3-AATemplate.Altis/PIC.jpg and /dev/null differ diff --git a/A3-Antistasi/Templates/A3-AATemplate.Altis/description.ext b/A3-Antistasi/Templates/A3-AATemplate.Altis/description.ext deleted file mode 100644 index 688744f4eb..0000000000 --- a/A3-Antistasi/Templates/A3-AATemplate.Altis/description.ext +++ /dev/null @@ -1,434 +0,0 @@ -#include "defines.hpp" -#include "dialogs.hpp" - -author = $STR_antistasi_credits_generic_author_text; -OnLoadName = $STR_antistasi_credits_generic_missionname_text; -OnLoadMission = $STR_antistasi_credits_generic_missiondesc_text; -loadScreen = "pic.jpg"; - -overviewText = $STR_antistasi_credits_generic_overview_text + " " + $STR_antistasi_credits_generic_version_text; -overviewPicture = "pic.jpg"; - -allowFunctionsLog = 1; -enableDebugConsole[] = {"76561197979729653","76561198034977762","76561198127254055","76561197981991967","76561198274184887","76561198011383725","76561198304402577","76561197993874267"}; - -respawn = "BASE"; -respawnDelay = 15; -respawnVehicleDelay = 120; -respawnDialog = 1; -aiKills = 0; -disabledAI=1; -Saving = 0; -showCompass=1; -showRadio=1; -showGPS=1; -showMap=1; -showBinocular=1; -showNotepad=1; -showWatch=1; -debriefing=1; - -//showGroupIndicator = 1; - -class CfgTaskEnhancements - { - enable = 1; //0: disable new task features (default), 1: enable new task features & add new task markers and task widgets into the map - 3d = 1; //0: do not use new 3D markers (default), 1: replace task waypoints with new 3D markers - 3dDrawDist = 3500; //3d marker draw distance (default: 2000) - share = 1; //0: do not count assigned players (default), 1: count how many players have the task assigned - propagate = 1; //0: do not propagate (default), 1: propagate shared tasks to subordinates - }; - -class CfgFunctions { - #include "functions.hpp" - #include "JeroenArsenal\functions.hpp" -}; -class Header -{ -gameType = COOP; -minplayers=1; -maxplayers=32; -}; - -class CfgSounds -{ - class fire - { - name="fire"; - sound[]={"Music\fire.ogg",db+12,1.0}; - titles[]={}; - }; -}; - -class Params -{ - class loadSave - { - title = "Load last Persistent Save"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class gameMode - { - title = "Game Mode"; // Param name visible in the list - values[] = {1,2,3,4}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Reb vs Gov vs Inv","Reb vs Gov & Inv","Reb vs Gov","Reb vs Inv"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class autoSave - { - title = "Enable Autosave (every hour)"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class membership - { - title = "Enable Server Membership"; - texts[] = {"Yes","No"}; - values[] = {1,0}; - default = 1; - //function = "BIS_fnc_paramDaytime"; // (Optional) [[Functions_Library_(Arma_3)|Function]] [[call]]ed when player joins, selected value is passed as an argument - //isGlobal = 1; // (Optional) 1 to execute script / function locally for every player who joins, 0 to do it only on server - }; - class switchComm - { - title = "Enable Commander Switch (highest ranked player)"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class tkPunish - { - title = "Enable Teamkill Punish"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class mRadius - { - title = "Distance from HQ for Sidemissions"; - values[] = {4000,8000,12000}; - // When 'texts' are missing, values will be displayed directly instead - default = 4000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowPvP - { - title = "Allow PvP Slots"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class pMarkers - { - title = "Allow Friendly Player Markers"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class AISkill - { - title = "AI Skill"; - values[] = {0.5,1,2}; - texts[] = {"Easy","Normal","Hard"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class unlockItem - { - title = "Number of the same weapons required to unlock"; - values[] = {15,25,40}; - default = 25; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberOnlyMagLimit - { - title = "Number of magazines needed for guests to be able to use them"; - values[] = {10,20,30,40,50,60}; - default = 40; - }; - class civTraffic - { - title = "Rate of Civ Traffic"; - values[] = {0.5,1,3}; - texts[] = {"Low","Medium","JAM"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberSlots - { - title = "Percentage of Reserved Slots for Members"; - values[] = {0,20,40,60,80,100}; - texts[] = {"None","20%","40%","60%","80%","All"}; - default = 20; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberDistance - { - title = "Max distance non members can be from the closest member or HQ (they will be teleported to HQ after some timeout)"; - values[] = {4000,5000,6000,7000,8000,16000}; - texts[] = {"4 Kmts","5 Kmts","6 Kmts","7 Kmts","8 Kmts","Unlimited"}; - default = 5000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowFT - { - title = "Limited Fast Travel"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 1; - }; - class napalmEnabled - { - title = "Enable Napalm Bombing for AI"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 0; - }; - class teamSwitchDelay - { - title = "Delay After Leaving Before a Player Can Join Another Team"; - values[] = {0, 900, 1800, 3600}; - texts[] = {"No delay","15 minutes","30 minutes","60 minutes"}; - default = 3600; - }; -}; - -class CfgIdentities -{ - class protagonista - { - name = "Stavros"; - nameSound = "Stavrou"; - face="GreekHead_A3_01"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class friendlyX - { - name = "Petros"; - nameSound = "Petros"; - face="GreekHead_A3_01"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Anthis - { - name = "Anthis"; - nameSound = "Anthis"; - face="GreekHead_A3_02"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Costa - { - name = "Costa"; - nameSound = "Costa"; - face="GreekHead_A3_03"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Dimitirou - { - name = "Dimitirou"; - nameSound = "Dimitirou"; - face="GreekHead_A3_04"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Elias - { - name = "Elias"; - nameSound = "Elias"; - face="GreekHead_A3_05"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Gekas - { - name = "Gekas"; - nameSound = "Gekas"; - face="GreekHead_A3_06"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Kouris - { - name = "Kouris"; - nameSound = "Kouris"; - face="GreekHead_A3_07"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Leventis - { - name = "Leventis"; - nameSound = "Leventis"; - face="GreekHead_A3_08"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Markos - { - name = "Markos"; - nameSound = "Markos"; - face="GreekHead_A3_09"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Nikas - { - name = "Nikas"; - nameSound = "Nikas"; - face="WhiteHead_02"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Nicolo - { - name = "Nicolo"; - nameSound = "Nicolo"; - face="WhiteHead_03"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Panas - { - name = "Panas"; - nameSound = "Panas"; - face="WhiteHead_04"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Rosi - { - name = "Rosi"; - nameSound = "Rosi"; - face="WhiteHead_05"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Samaras - { - name = "Samaras"; - nameSound = "Samaras"; - face="WhiteHead_06"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Thanos - { - name = "Thanos"; - nameSound = "Thanos"; - face="WhiteHead_07"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Vega - { - name = "Vega"; - nameSound = "Vega"; - face="WhiteHead_08"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; -}; - - -/* -class CfgMusic -{ - tracks[]={}; - - class DBS - { - name = ""; - sound[] = {"\music\dbs.ogg", db+5, 1.0}; - }; - -}; -*/ -class CfgDebriefing -{ - class End1 - { - title = "V I C T O R Y"; - subtitle = "Altis is Ours!"; - description = "The population of Altis loves you!
The brave soldiers have proven their valour, and Petros, Altis new Prime Minister, could at last to have a nice holidays. 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 rebels without a leader, you may think about joining them, and free Altis"; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class destroyedCities - { - title = "Altis is Destroyed"; - subtitle = "Altis got Destroyed by OPFOR"; - description = "One third of the population in Altis has been murdered by the OPFOR.
Altis no longer exists, nobody wants to live here."; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class modUnautorized - { - title = "Incompatible Mods"; - subtitle = "Incompatible Mods detected"; - description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class serverFull - { - title = "Reserved Slot"; - subtitle = "This slot is reserved"; - description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class noPvP - { - title = "Slot Unavailable"; - subtitle = "This slot is unavailable"; - description = "Sorry, but this slot is unavailable for some reason: player not member, match not initialized, lack of rebel commander or recent role as rebel."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class hcDown - { - title = "HC Disconnected"; - subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; -}; diff --git a/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/PIC.jpg b/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/PIC.jpg deleted file mode 100644 index 9ab5c1307e..0000000000 Binary files a/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/PIC.jpg and /dev/null differ diff --git a/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/description.ext b/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/description.ext deleted file mode 100644 index ab0b801ae6..0000000000 --- a/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/description.ext +++ /dev/null @@ -1,287 +0,0 @@ -#include "defines.hpp" -#include "dialogs.hpp" - -author = $STR_antistasi_credits_generic_author_text; -OnLoadName = $STR_antistasi_mission_info_cherna_mapname_text; -OnLoadMission = $STR_antistasi_mission_info_cherna_blurb_text; -loadScreen = "pic.JPG"; - -overviewText = $STR_antistasi_mission_info_cherna_description_text; -overviewPicture = "pic.jpg"; - -allowFunctionsLog = 1; -enableDebugConsole[] = {"76561197979729653","76561198034977762","76561198127254055","76561197981991967","76561198274184887","76561198011383725","76561198304402577","76561197993874267"}; - -//If we have CBA for TFAR, then load the mission's settings. -cba_settings_hasSettingsFile = 1; - -respawn = "BASE"; -respawnDelay = 15; -respawnVehicleDelay = 120; -respawnDialog = 1; -aiKills = 0; -disabledAI=1; -Saving = 0; -showCompass=1; -showRadio=1; -showGPS=1; -showMap=1; -showBinocular=1; -showNotepad=1; -showWatch=1; -debriefing=1; - -//showGroupIndicator = 1; - -class CfgTaskEnhancements - { - enable = 1; //0: disable new task features (default), 1: enable new task features & add new task markers and task widgets into the map - 3d = 1; //0: do not use new 3D markers (default), 1: replace task waypoints with new 3D markers - 3dDrawDist = 3500; //3d marker draw distance (default: 2000) - share = 1; //0: do not count assigned players (default), 1: count how many players have the task assigned - propagate = 1; //0: do not propagate (default), 1: propagate shared tasks to subordinates - }; - -class CfgFunctions { - #include "functions.hpp" - #include "JeroenArsenal\functions.hpp" -}; -class Header -{ -gameType = COOP; -minplayers=1; -maxplayers=32; -}; - -class CfgSounds -{ - class fire - { - name="fire"; - sound[]={"Music\fire.ogg",db+12,1.0}; - titles[]={}; - }; -}; -class Params -{ - class loadSave - { - title = "Load last Persistent Save"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class gameMode - { - title = "Game Mode"; // Param name visible in the list - values[] = {1,2,3,4}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Reb vs Gov vs Inv","Reb vs Gov & Inv","Reb vs Gov","Reb vs Inv"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class autoSave - { - title = "Enable Autosave (every hour)"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class membership - { - title = "Enable Server Membership"; - texts[] = {"Yes","No"}; - values[] = {1,0}; - default = 1; - //function = "BIS_fnc_paramDaytime"; // (Optional) [[Functions_Library_(Arma_3)|Function]] [[call]]ed when player joins, selected value is passed as an argument - //isGlobal = 1; // (Optional) 1 to execute script / function locally for every player who joins, 0 to do it only on server - }; - class switchComm - { - title = "Enable Commander Switch (highest ranked player)"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class tkPunish - { - title = "Enable Teamkill Punish"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class mRadius - { - title = "Distance from HQ for Sidemissions"; - values[] = {2500,5000,10000}; - // When 'texts' are missing, values will be displayed directly instead - default = 2500; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowPvP - { - title = "Allow PvP Slots"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class pMarkers - { - title = "Allow Friendly Player Markers"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class AISkill - { - title = "AI Skill"; - values[] = {0.5,1,2}; - texts[] = {"Easy","Normal","Hard"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class unlockItem - { - title = "Number of the same weapons required to unlock"; - values[] = {15,25,40}; - default = 25; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberOnlyMagLimit - { - title = "Number of magazines needed for guests to be able to use them"; - values[] = {10,20,30,40,50,60}; - default = 40; - }; - class civTraffic - { - title = "Rate of Civ Traffic"; - values[] = {0.5,1,3}; - texts[] = {"Low","Medium","JAM"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberSlots - { - title = "Percentage of Reserved Slots for Members"; - values[] = {0,20,40,60,80,100}; - texts[] = {"None","20%","40%","60%","80%","All"}; - default = 20; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberDistance - { - title = "Max distance non members can be from the closest member or HQ (they will be teleported to HQ after some timeout)"; - values[] = {4000,5000,6000,7000,8000,16000}; - texts[] = {"4 Kmts","5 Kmts","6 Kmts","7 Kmts","8 Kmts","Unlimited"}; - default = 5000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowFT - { - title = "Limited Fast Travel"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 1; - }; - class napalmEnabled - { - title = "Enable Napalm Bombing for AI"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 0; - }; - class teamSwitchDelay - { - title = "Delay After Leaving Before a Player Can Join Another Team"; - values[] = {0, 900, 1800, 3600}; - texts[] = {"No delay","15 minutes","30 minutes","60 minutes"}; - default = 3600; - }; -}; - -class CfgIdentities -{ -class protagonista - { - name = "Stavros"; - nameSound = "Stavrou"; - face="GreekHead_A3_01"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class friendlyX - { - name = "Petros"; - nameSound = "Petros"; - face="GreekHead_A3_01"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; -}; - -class CfgDebriefing -{ - class End1 - { - title = "V I C T O R Y"; - subtitle = "Chernarus is Ours!"; - description = "The population of Chernarus loves you!
The SDK brave soldiers have proven their valour, and Petros, Chernarus 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 Chernarus"; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class destroyedCities - { - title = "Chernarus is Destroyed"; - subtitle = "Chernarus got Destroyed by Soviets"; - description = "One third of the population in Chernarus has been murdered by the Soviets.
Chernarus no longer exists, nobody wants to live here."; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class modUnautorized - { - title = "Incompatible Mods"; - subtitle = "Incompatible Mods detected"; - description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class serverFull - { - title = "Reserved Slot"; - subtitle = "This slot is reserved"; - description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class noPvP - { - title = "Slot Unavailable"; - subtitle = "This slot is unavailable"; - description = "Sorry, but this slot is unavailable for some reson: player not member, match not initialised, lack of Syndikat commander or recent role as Syndikat."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class hcDown - { - title = "HC Disconnected"; - subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; -}; diff --git a/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/description.ext b/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/description.ext deleted file mode 100644 index e6636033e4..0000000000 --- a/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/description.ext +++ /dev/null @@ -1,436 +0,0 @@ -#include "defines.hpp" -#include "dialogs.hpp" - -author = $STR_antistasi_credits_generic_author_text; -OnLoadName = $STR_antistasi_mission_info_livonia_mapname_text; -OnLoadMission = $STR_antistasi_mission_info_livonia_blurb_text; -loadScreen = "pic.jpg"; - -overviewText = $STR_antistasi_mission_info_livonia_description_text; -overviewPicture = "pic.jpg"; - -allowFunctionsLog = 1; -enableDebugConsole[] = {"76561197979729653","76561198034977762","76561198127254055","76561197981991967","76561198274184887","76561198011383725","76561198304402577","76561197993874267"}; - -//If we have CBA for TFAR, then load the mission's settings. -cba_settings_hasSettingsFile = 1; - -respawn = "BASE"; -respawnDelay = 15; -respawnVehicleDelay = 120; -respawnDialog = 1; -aiKills = 0; -disabledAI=1; -Saving = 0; -showCompass=1; -showRadio=1; -showGPS=1; -showMap=1; -showBinocular=1; -showNotepad=1; -showWatch=1; -debriefing=1; - -//showGroupIndicator = 1; - -class CfgTaskEnhancements - { - enable = 1; //0: disable new task features (default), 1: enable new task features & add new task markers and task widgets into the map - 3d = 1; //0: do not use new 3D markers (default), 1: replace task waypoints with new 3D markers - 3dDrawDist = 3500; //3d marker draw distance (default: 2000) - share = 1; //0: do not count assigned players (default), 1: count how many players have the task assigned - propagate = 1; //0: do not propagate (default), 1: propagate shared tasks to subordinates - }; - -class CfgFunctions { - #include "functions.hpp" - #include "JeroenArsenal\functions.hpp" -}; -class Header -{ -gameType = COOP; -minplayers=1; -maxplayers=61; -}; - -class CfgSounds -{ - class fire - { - name="fire"; - sound[]={"Music\fire.ogg",db+12,1.0}; - titles[]={}; - }; -}; -class Params -{ - class loadSave - { - title = "Load last Persistent Save"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class gameMode - { - title = "Game Mode"; // Param name visible in the list - values[] = {1,2,3,4}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Reb vs Gov vs Inv","Reb vs Gov & Inv","Reb vs Gov","Reb vs Inv"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class autoSave - { - title = "Enable Autosave (every hour)"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class membership - { - title = "Enable Server Membership"; - texts[] = {"Yes","No"}; - values[] = {1,0}; - default = 1; - //function = "BIS_fnc_paramDaytime"; // (Optional) [[Functions_Library_(Arma_3)|Function]] [[call]]ed when player joins, selected value is passed as an argument - //isGlobal = 1; // (Optional) 1 to execute script / function locally for every player who joins, 0 to do it only on server - }; - class switchComm - { - title = "Enable Commander Switch (highest ranked player)"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class tkPunish - { - title = "Enable Teamkill Punish"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class mRadius - { - title = "Distance from HQ for Sidemissions"; - values[] = {2500,5000,10000}; - // When 'texts' are missing, values will be displayed directly instead - default = 2500; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowPvP - { - title = "Allow PvP Slots"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class pMarkers - { - title = "Allow Friendly Player Markers"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class AISkill - { - title = "AI Skill"; - values[] = {0.5,1,2}; - texts[] = {"Easy","Normal","Hard"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class unlockItem - { - title = "Number of the same weapons required to unlock"; - values[] = {15,25,40}; - default = 25; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberOnlyMagLimit - { - title = "Number of magazines needed for guests to be able to use them"; - values[] = {10,20,30,40,50,60}; - default = 40; - }; - class civTraffic - { - title = "Rate of Civ Traffic"; - values[] = {0.5,1,3}; - texts[] = {"Low","Medium","JAM"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberSlots - { - title = "Percentage of Reserved Slots for Members"; - values[] = {0,20,40,60,80,100}; - texts[] = {"None","20%","40%","60%","80%","All"}; - default = 20; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberDistance - { - title = "Max distance non members can be from the closest member or HQ (they will be teleported to HQ after some timeout)"; - values[] = {4000,5000,6000,7000,8000,16000}; - texts[] = {"4 Kmts","5 Kmts","6 Kmts","7 Kmts","8 Kmts","Unlimited"}; - default = 5000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowFT - { - title = "Limited Fast Travel"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class napalmEnabled - { - title = "Enable Napalm Bombing for AI"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 0; - }; - class teamSwitchDelay - { - title = "Delay After Leaving Before a Player Can Join Another Team"; - values[] = {0, 900, 1800, 3600}; - texts[] = {"No delay","15 minutes","30 minutes","60 minutes"}; - default = 3600; - }; -}; - -class CfgIdentities -{ - class protagonista - { - name = "Pulu"; - nameSound = "Warlock"; - face="TanoanBossHead"; - glasses="None"; - speaker="Male01ENGFRE"; - pitch=1.1; - }; - class friendlyX - { - name = "Maru"; - nameSound = "Warlock"; - face="TanoanBossHead"; - glasses="None"; - speaker="Male01ENGFRE"; - pitch=1.1; - }; - class Anthis - { - name = "Anthis"; - nameSound = "Anthis"; - face="TanoanHead_A3_01"; - glasses="None"; - speaker="Male02CHI"; - pitch=1.1; - }; - class Costa - { - name = "Costa"; - nameSound = "Costa"; - face="TanoanHead_A3_02"; - glasses="None"; - speaker="Male03CHI"; - pitch=1.1; - }; - class Dimitirou - { - name = "Dimitirou"; - nameSound = "Dimitirou"; - face="TanoanHead_A3_03"; - glasses="None"; - speaker="Male01FRE"; - pitch=1.1; - }; - class Elias - { - name = "Elias"; - nameSound = "Elias"; - face="TanoanHead_A3_04"; - glasses="None"; - speaker="Male02FRE"; - pitch=1.1; - }; - class Gekas - { - name = "Gekas"; - nameSound = "Gekas"; - face="TanoanHead_A3_05"; - glasses="None"; - speaker="Male03FRE"; - pitch=1.1; - }; - class Kouris - { - name = "Kouris"; - nameSound = "Kouris"; - face="TanoanHead_A3_06"; - glasses="None"; - speaker="Male01CHI"; - pitch=1.1; - }; - class Leventis - { - name = "Leventis"; - nameSound = "Leventis"; - face="TanoanHead_A3_07"; - glasses="None"; - speaker="Male02CHI"; - pitch=1.1; - }; - class Markos - { - name = "Markos"; - nameSound = "Markos"; - face="TanoanHead_A3_08"; - glasses="None"; - speaker="Male03CHI"; - pitch=1.1; - }; - class Nikas - { - name = "Nikas"; - nameSound = "Nikas"; - face="CamoHead_Asian_03_F"; - glasses="None"; - speaker="Male03FRE"; - pitch=1.1; - }; - class Nicolo - { - name = "Nicolo"; - nameSound = "Nicolo"; - face="CamoHead_Asian_02_F"; - glasses="None"; - speaker="Male02FRE"; - pitch=1.1; - }; - class Panas - { - name = "Panas"; - nameSound = "Panas"; - face="CamoHead_Asian_01_F"; - glasses="None"; - speaker="Male01FRE"; - pitch=1.1; - }; - class Rosi - { - name = "Rosi"; - nameSound = "Rosi"; - face="AsianHead_A3_01"; - glasses="None"; - speaker="Male01CHI"; - pitch=1.1; - }; - class Samaras - { - name = "Samaras"; - nameSound = "Samaras"; - face="WhiteHead_06"; - glasses="None"; - speaker="AsianHead_A3_02"; - pitch=1.1; - }; - class Thanos - { - name = "Thanos"; - nameSound = "Thanos"; - face="AsianHead_A3_03"; - glasses="None"; - speaker="Male02ENGFRE"; - pitch=1.1; - }; - class Vega - { - name = "Vega"; - nameSound = "Vega"; - face="AsianHead_A3_04"; - glasses="None"; - speaker="Male02ENGFRE"; - pitch=1.1; - }; -}; - -/* -class CfgMusic -{ - tracks[]={}; - - class DBS - { - name = ""; - sound[] = {"\music\dbs.ogg", db+5, 1.0}; - }; - -}; -*/ -class CfgDebriefing -{ - class End1 - { - title = "V I C T O R Y"; - subtitle = "Livonia is Ours!"; - description = "The population of Livonia loves you!
The SDK brave soldiers have proven their valour, and Petros, Livonias 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 = "Maru is Dead"; - subtitle = "Maru is Dead"; - description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Livonia"; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class destroyedCities - { - title = "Livonia is Destroyed"; - subtitle = "Livonia got Destroyed by CSAT"; - description = "One third of the population in Livonia has been murdered by CSAT.
Livonia no longer exists, nobody wants to live here."; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class modUnautorized - { - title = "Incompatible Mods"; - subtitle = "Incompatible Mods detected"; - description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class serverFull - { - title = "Reserved Slot"; - subtitle = "This slot is reserved"; - description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class noPvP - { - title = "Slot Unavailable"; - subtitle = "This slot is unavailable"; - description = "Sorry, but this slot is unavailable for some reson: player not member, match not initialised, lack of Syndikat commander or recent role as Syndikat."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class hcDown - { - title = "HC Disconnected"; - subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; -}; diff --git a/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/roadsDBLivonia.sqf b/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/roadsDBLivonia.sqf deleted file mode 100644 index fd3be92ad3..0000000000 --- a/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/roadsDBLivonia.sqf +++ /dev/null @@ -1 +0,0 @@ -[["Bielawa",[[1138,9587,0],[1125,9595,0],[1123,9829,0],[1150,9830,0],[1159,9574,0],[1183,9559,0],[1177,9832,0],[1205,9360,0],[1225,9382,0],[1243,9404,0],[1233,9528,0],[1203,9547,0],[1216,9538,0],[1202,9834,0],[1227,9836,0],[1259,9307,0],[1259,9337,0],[1263,9393,0],[1261,9363,0],[1257,9425,0],[1266,9420,0],[1265,9440,0],[1268,9436,0],[1284,9482,0],[1273,9457,0],[1287,9496,0],[1274,9504,0],[1254,9515,0],[1292,9501,0],[1299,9507,0],[1250,9837,0],[1271,9838,0],[1290,9839,0],[1343,9493,0],[1300,9521,0],[1317,9501,0],[1309,9541,0],[1304,9505,0],[1331,9582,0],[1318,9558,0],[1342,9604,0],[1310,9840,0],[1331,9839,0],[1374,9483,0],[1400,9474,0],[1362,9639,0],[1351,9619,0],[1376,9662,0],[1399,9662,0],[1387,9682,0],[1396,9696,0],[1390,9676,0],[1351,9836,0],[1387,9823,0],[1371,9830,0],[1435,9462,0],[1416,9493,0],[1418,9468,0],[1410,9475,0],[1413,9483,0],[1431,9537,0],[1422,9511,0],[1426,9597,0],[1433,9579,0],[1437,9558,0],[1437,9568,0],[1418,9619,0],[1412,9637,0],[1407,9649,0],[1445,9749,0],[1432,9731,0],[1416,9718,0],[1404,9707,0],[1429,9794,0],[1445,9782,0],[1407,9811,0],[1493,9445,0],[1456,9455,0],[1472,9450,0],[1462,9788,0],[1478,9755,0],[1454,9766,0],[1457,9757,0],[1452,9777,0],[1463,9756,0],[1483,9823,0],[1471,9807,0],[1497,9837,0],[1539,9434,0],[1518,9439,0],[1505,9752,0],[1531,9751,0],[1512,9846,0],[1535,9859,0],[1562,9428,0],[1586,9422,0],[1569,9750,0],[1587,9752,0],[1553,9750,0],[1574,9879,0],[1556,9870,0],[1592,9887,0],[1608,9417,0],[1645,9408,0],[1627,9413,0],[1613,9755,0],[1639,9757,0],[1610,9894,0],[1629,9902,0],[1648,9909,0],[1684,9399,0],[1663,9404,0],[1699,9693,0],[1685,9714,0],[1665,9741,0],[1653,9755,0],[1667,9916,0],[1686,9922,0],[1708,9400,0],[1701,9397,0],[1731,9446,0],[1724,9426,0],[1716,9409,0],[1738,9466,0],[1743,9484,0],[1747,9494,0],[1740,9670,0],[1723,9677,0],[1709,9684,0],[1724,9939,0],[1704,9930,0],[1743,9950,0],[1787,9547,0],[1768,9524,0],[1755,9506,0],[1761,9663,0],[1794,9678,0],[1780,9656,0],[1790,9656,0],[1792,9662,0],[1796,9703,0],[1800,9719,0],[1796,9996,0],[1761,9963,0],[1776,9976,0],[1783,9983,0],[1778,9974,0],[1783,9973,0],[1810,9574,0],[1832,9600,0],[1801,9648,0],[1822,9638,0],[1839,9625,0],[1845,9616,0],[1834,9731,0],[1816,9728,0],[1804,9724,0],[1848,9891,0],[1844,9915,0],[1841,9937,0],[1802,9973,0],[1837,9956,0],[1834,9967,0],[1830,9971,0],[1824,9972,0],[1818,10019,0],[1839,10042,0],[1827,10044,0],[1829,10035,0],[1820,10081,0],[1825,10059,0],[1808,10111,0],[1877,9600,0],[1890,9595,0],[1856,9613,0],[1887,9613,0],[1882,9640,0],[1875,9690,0],[1879,9659,0],[1878,9671,0],[1871,9715,0],[1853,9734,0],[1870,9732,0],[1866,9736,0],[1869,9750,0],[1863,9793,0],[1867,9774,0],[1856,9837,0],[1859,9813,0],[1852,9865,0],[1858,10062,0],[1926,9576,0],[1902,9587,0],[1998,9544,0],[1954,9564,0],[1977,9553,0],[2037,9508,0],[2027,9524,0],[2019,9534,0],[2035,9540,0],[2012,9539,0],[2026,9540,0],[2019,9539,0]]],["Lukow",[[3060,12067,0],[3088,12084,0],[3108,11719,0],[3144,11739,0],[3131,11742,0],[3123,11734,0],[3131,11738,0],[3147,11756,0],[3112,12097,0],[3135,12110,0],[3165,11739,0],[3186,11736,0],[3188,11787,0],[3168,11773,0],[3165,12088,0],[3173,12103,0],[3177,12133,0],[3156,12121,0],[3183,12123,0],[3197,12144,0],[3190,12137,0],[3190,12140,0],[3245,11712,0],[3223,11727,0],[3206,11733,0],[3235,11721,0],[3248,11833,0],[3208,11803,0],[3227,11817,0],[3247,11886,0],[3246,11901,0],[3247,11922,0],[3238,12171,0],[3213,12155,0],[3229,12364,0],[3285,11532,0],[3277,11674,0],[3259,11696,0],[3294,11653,0],[3263,11844,0],[3259,11865,0],[3251,11877,0],[3266,11857,0],[3267,11850,0],[3251,11940,0],[3286,11997,0],[3273,11977,0],[3263,11960,0],[3257,11950,0],[3299,12017,0],[3290,12070,0],[3279,12094,0],[3261,12134,0],[3269,12114,0],[3263,12187,0],[3284,12200,0],[3254,12159,0],[3252,12176,0],[3298,12208,0],[3255,12378,0],[3269,12385,0],[3306,11546,0],[3346,11571,0],[3349,11591,0],[3323,11557,0],[3312,11632,0],[3332,11610,0],[3331,11986,0],[3346,11954,0],[3316,12018,0],[3302,12045,0],[3306,12029,0],[3330,12221,0],[3311,12214,0],[3386,11590,0],[3369,11582,0],[3359,11581,0],[3387,11893,0],[3360,11927,0],[3374,11907,0],[3354,12230,0],[3374,12238,0],[3395,12245,0],[3400,12232,0],[3386,12242,0],[3405,11599,0],[3428,11608,0],[3438,11850,0],[3418,11866,0],[3401,11881,0],[3439,12123,0],[3427,12150,0],[3416,12176,0],[3408,12199,0],[3402,12217,0],[3402,12246,0],[3400,12243,0],[3425,12281,0],[3409,12261,0],[3405,12253,0],[3446,12302,0],[3492,11641,0],[3451,11618,0],[3472,11628,0],[3458,11833,0],[3478,11817,0],[3482,12033,0],[3500,12008,0],[3451,12097,0],[3461,12073,0],[3470,12055,0],[3485,12296,0],[3493,12336,0],[3468,12318,0],[3467,12311,0],[3471,12308,0],[3527,11678,0],[3544,11699,0],[3511,11659,0],[3500,11799,0],[3537,11772,0],[3519,11784,0],[3527,11972,0],[3540,11956,0],[3515,11988,0],[3545,12233,0],[3536,12250,0],[3508,12278,0],[3523,12265,0],[3544,12372,0],[3518,12354,0],[3592,11748,0],[3574,11733,0],[3559,11718,0],[3580,11742,0],[3564,11754,0],[3568,11922,0],[3585,11903,0],[3553,11941,0],[3589,12169,0],[3574,12182,0],[3560,12196,0],[3551,12214,0],[3570,12391,0],[3596,12410,0],[3620,11647,0],[3649,11677,0],[3631,11658,0],[3616,11764,0],[3642,11782,0],[3649,11847,0],[3624,11868,0],[3603,11886,0],[3630,12136,0],[3608,12154,0],[3624,12430,0],[3646,12446,0],[3668,11696,0],[3695,11737,0],[3681,11710,0],[3689,11721,0],[3662,11797,0],[3670,11829,0],[3689,11813,0],[3687,11839,0],[3682,11816,0],[3677,11810,0],[3672,11805,0],[3673,11830,0],[3686,12085,0],[3652,12117,0],[3670,12100,0],[3746,11772,0],[3724,11787,0],[3706,11800,0],[3711,11764,0],[3724,11781,0],[3703,11755,0],[3718,11774,0],[3701,11752,0],[3713,11855,0],[3741,11872,0],[3741,11988,0],[3750,11959,0],[3747,11973,0],[3731,12011,0],[3723,12033,0],[3718,12047,0],[3705,12064,0],[3773,11755,0],[3764,11885,0],[3785,11890,0],[3777,11896,0],[3795,11890,0],[3776,11890,0],[3764,11921,0],[3754,11941,0],[3773,11904,0],[3827,11586,0],[3838,11615,0],[3848,11642,0],[3803,11735,0],[3830,11717,0],[3849,11703,0],[3811,11899,0],[3849,11926,0],[3831,11913,0],[3881,11678,0],[3865,11691,0],[3878,11691,0],[3856,11664,0],[3864,11678,0],[3894,11797,0],[3883,11805,0],[3876,11810,0],[3866,11938,0],[3883,11950,0],[3901,11663,0],[3901,11707,0],[3927,11724,0],[3949,11738,0],[3927,11772,0],[3910,11785,0],[3943,11759,0],[3926,11981,0],[3948,11997,0],[3904,11965,0],[3966,11749,0],[3957,11748,0],[3959,11744,0],[3983,11759,0],[3952,11752,0],[3994,12029,0],[3970,12012,0],[4012,12042,0]]],["Gliniska",[[4648,10274,0],[4674,10245,0],[4686,10231,0],[4698,10217,0],[4661,10260,0],[4749,10160,0],[4736,10175,0],[4723,10189,0],[4711,10203,0],[4751,9514,0],[4762,9539,0],[4774,9567,0],[4785,9594,0],[4797,9616,0],[4775,10130,0],[4762,10145,0],[4788,10114,0],[4811,9642,0],[4836,9680,0],[4846,9697,0],[4825,9664,0],[4845,10049,0],[4802,10099,0],[4815,10085,0],[4827,10070,0],[4870,9735,0],[4857,9713,0],[4883,9758,0],[4892,9777,0],[4899,9785,0],[4868,10024,0],[4888,10001,0],[4902,9799,0],[4945,9753,0],[4912,9778,0],[4928,9767,0],[4915,9826,0],[4930,9855,0],[4943,9880,0],[4938,9943,0],[4905,9981,0],[4920,9964,0],[4989,9695,0],[4974,9716,0],[4960,9737,0],[4958,9904,0],[4975,9928,0],[4954,9927,0],[4962,9920,0],[4993,9951,0],[5000,9953,0],[5031,9641,0],[5049,9621,0],[5003,9679,0],[5015,9663,0],[5046,9822,0],[5042,9843,0],[5038,9867,0],[5033,9893,0],[5013,9942,0],[5030,9914,0],[5027,9925,0],[5025,9931,0],[5024,9989,0],[5009,9971,0],[5038,10007,0],[5082,9582,0],[5097,9562,0],[5065,9603,0],[5099,9729,0],[5068,9778,0],[5085,9752,0],[5087,9794,0],[5056,9796,0],[5076,9782,0],[5097,9829,0],[5052,9805,0],[5097,9808,0],[5096,9855,0],[5095,9874,0],[5096,9886,0],[5068,10043,0],[5053,10024,0],[5085,10064,0],[5098,10087,0],[5127,9532,0],[5110,9547,0],[5144,9519,0],[5137,9678,0],[5124,9695,0],[5112,9711,0],[5105,9895,0],[5120,9905,0],[5132,9911,0],[5112,10140,0],[5132,10110,0],[5107,10111,0],[5119,10124,0],[5113,10130,0],[5115,10175,0],[5138,10239,0],[5120,10204,0],[5126,10221,0],[5166,9509,0],[5193,9504,0],[5186,9503,0],[5194,9605,0],[5164,9644,0],[5178,9627,0],[5151,9661,0],[5152,9913,0],[5179,9915,0],[5152,10089,0],[5188,10055,0],[5171,10071,0],[5158,10259,0],[5179,10273,0],[5198,10346,0],[5190,10354,0],[5249,9531,4],[5216,9532,0],[5203,9513,0],[5238,9540,0],[5231,9546,0],[5225,9546,0],[5210,9580,0],[5222,9559,0],[5223,9935,0],[5247,9946,0],[5202,9924,0],[5233,10017,0],[5208,10038,0],[5226,10293,0],[5201,10284,0],[5212,10330,0],[5228,10312,0],[5236,10302,0],[5271,9514,6],[5261,9994,0],[5275,9954,0],[5284,9976,0],[5298,9964,0],[5297,9961,0],[5292,9959,0],[5252,10303,0],[5280,10312,0],[5312,9950,0],[5339,9916,0],[5327,9932,0],[5393,9848,0],[5381,9863,0],[5353,9899,0],[5366,9883,0]]],["Brena",[[6124,11233,0],[6148,11253,0],[6188,10960,0],[6191,11230,0],[6174,11247,0],[6173,11274,0],[6164,11259,0],[6219,10962,0],[6234,11192,0],[6212,11211,0],[6200,11298,0],[6249,11344,0],[6234,11330,0],[6220,11317,0],[6251,10964,0],[6281,10965,0],[6278,11139,0],[6293,11116,0],[6264,11162,0],[6252,11177,0],[6265,11359,0],[6281,11375,0],[6297,11390,0],[6307,10966,0],[6332,10996,0],[6326,10967,0],[6339,10968,0],[6333,10974,0],[6332,10981,0],[6329,11024,0],[6324,11057,0],[6307,11100,0],[6319,11078,0],[6316,11088,0],[6318,11409,0],[6343,11431,0],[6378,10972,0],[6354,10969,0],[6366,11448,0],[6391,11466,0],[6381,11537,0],[6391,11512,0],[6370,11562,0],[6360,11584,0],[6351,11606,0],[6417,10771,0],[6426,10794,0],[6434,10817,0],[6439,10839,0],[6446,10893,6],[6443,10858,0],[6446,10879,0],[6445,10871,0],[6449,10949,7],[6448,10921,7],[6406,10974,0],[6429,10977,0],[6443,10978,0],[6445,11395,0],[6430,11425,0],[6439,11407,0],[6417,11455,0],[6419,11485,0],[6400,11491,0],[6408,11476,0],[6405,11479,0],[6442,11504,0],[6479,10994,0],[6462,10985,0],[6452,10980,0],[6450,10963,0],[6450,10986,0],[6450,10973,0],[6450,10993,0],[6450,11010,0],[6451,11036,0],[6451,11059,0],[6452,11082,0],[6453,11130,0],[6453,11105,0],[6454,11150,0],[6457,11172,0],[6462,11205,0],[6471,11241,0],[6466,11227,0],[6478,11260,0],[6483,11286,0],[6482,11273,0],[6487,11272,0],[6477,11339,0],[6484,11306,0],[6482,11328,0],[6484,11321,0],[6455,11378,0],[6467,11356,0],[6481,11537,0],[6463,11521,0],[6498,11553,0],[6503,10743,0],[6535,10758,0],[6533,11022,0],[6504,11007,0],[6506,11274,0],[6538,11277,0],[6516,11568,0],[6536,11585,0],[6591,10766,0],[6563,10773,0],[6579,10797,0],[6580,10783,0],[6592,10786,0],[6584,10785,0],[6583,10787,0],[6581,10820,0],[6587,10832,0],[6587,10843,0],[6576,10809,0],[6571,10861,0],[6555,10875,0],[6563,11039,0],[6592,11054,0],[6590,11238,0],[6572,11264,0],[6559,11276,0],[6573,11615,0],[6554,11601,0],[6593,11629,0],[6603,10733,0],[6643,10800,0],[6606,10785,0],[6619,10782,0],[6635,10788,0],[6629,10783,0],[6616,11068,0],[6634,11077,0],[6647,11084,0],[6621,11197,0],[6636,11179,0],[6647,11164,0],[6607,11215,0],[6617,11646,0],[6639,11664,0],[6650,11669,0],[6675,10827,0],[6654,10813,0],[6668,11094,0],[6664,11141,0],[6673,11124,0],[6681,11111,0],[6688,11103,0],[6656,11154,0],[6683,11633,0],[6699,11613,0],[6657,11684,0],[6662,11656,0],[6673,11704,0],[6703,10844,0],[6725,10854,0],[6720,10853,0],[6703,11106,0],[6726,11109,0],[6741,11110,0],[6740,11563,0],[6726,11581,0],[6712,11598,0],[6759,11110,0],[6783,11109,0],[6796,11495,0],[6771,11525,0],[6755,11544,0],[6784,11509,0],[6827,11106,0],[6804,11108,0],[6849,11105,0],[6840,11444,0],[6825,11462,0],[6810,11479,0],[6878,11104,0],[6893,11136,0],[6883,11118,0],[6877,11107,0],[6888,11388,0],[6872,11407,0],[6856,11425,0],[6912,11103,0],[6943,11105,0],[6922,11174,0],[6940,11194,0],[6905,11154,0],[6934,11335,0],[6947,11319,0],[6904,11370,0],[6919,11352,0],[6974,11113,0],[6999,11126,0],[6972,11231,0],[6956,11212,0],[6962,11299,0],[6978,11278,0],[6983,11250,0],[6984,11264,0],[7015,11141,0],[7045,11175,0],[7030,11157,0],[7061,11193,0],[7097,11231,0],[7077,11211,0]]],["Tarnow",[[8860,10763,0],[8871,10786,0],[8896,10826,0],[8881,10805,0],[8895,10948,0],[8897,10967,0],[8895,11079,0],[8899,11063,0],[8884,11102,0],[8915,10849,0],[8928,10867,0],[8934,10879,0],[8934,10890,0],[8933,10898,0],[8919,10913,0],[8901,10932,0],[8902,10991,0],[8902,11043,0],[8904,11016,0],[8968,11229,0],[8993,11219,0],[9047,11192,0],[9011,11211,0],[9028,11202,0],[9071,11176,0],[9089,11161,0],[9150,10456,0],[9142,11092,0],[9102,11146,0],[9128,11112,0],[9115,11129,0],[9180,10498,0],[9163,10476,0],[9195,10518,0],[9192,11037,0],[9173,11055,0],[9156,11075,0],[9206,10534,0],[9219,10553,0],[9236,10573,0],[9249,10982,0],[9227,11005,0],[9207,11023,0],[9255,10589,0],[9278,10596,0],[9300,10781,0],[9283,10804,0],[9272,10820,0],[9268,10840,0],[9269,10828,0],[9272,10883,0],[9269,10859,0],[9275,10894,0],[9299,10927,0],[9267,10944,0],[9272,10907,0],[9287,10910,0],[9270,10927,0],[9280,10901,0],[9262,10961,0],[9305,10594,0],[9335,10592,0],[9340,10729,0],[9319,10756,0],[9313,10949,0],[9339,10997,0],[9326,10973,0],[9393,10518,0],[9386,10550,0],[9382,10578,0],[9360,10592,0],[9377,10592,0],[9372,10591,0],[9379,10605,0],[9376,10628,0],[9374,10656,0],[9369,10684,0],[9358,10704,0],[9352,11022,0],[9364,11043,0],[9383,11044,0],[9373,11049,0],[9399,11069,0],[9377,11056,0],[9429,10435,0],[9418,10456,0],[9401,10492,0],[9409,10475,0],[9406,11034,0],[9439,11022,0],[9425,11086,0],[9438,11098,0],[9445,11125,0],[9443,11108,0],[9447,11153,0],[9450,11180,0],[9498,10976,0],[9481,10998,0],[9493,11010,0],[9466,11014,0],[9471,11011,0],[9455,11226,0],[9452,11203,0],[9457,11249,0],[9460,11278,0],[9463,11313,0],[9465,11341,0],[9468,11367,0],[9534,10932,0],[9516,10954,0],[9520,11005,0],[9539,11002,0],[9587,10862,0],[9570,10887,0],[9553,10908,0],[9595,10992,0],[9558,10999,0],[9577,10996,0],[9649,10800,0],[9630,10817,0],[9614,10831,0],[9602,10842,0],[9637,10985,0],[9615,10989,0],[9668,10782,0],[9685,10765,0],[9699,10753,0],[9664,10980,0],[9691,10975,0],[9741,10736,0],[9717,10745,0],[9747,10960,0],[9713,10971,0],[9730,10968,0],[9768,10726,0],[9784,10944,0],[9766,10951,0],[9808,10936,0]]],["Sitnik",[[11135,9262,0],[11150,9280,0],[11165,9297,0],[11197,9335,0],[11179,9313,0],[11190,9493,0],[11192,9505,0],[11235,9382,0],[11216,9359,0],[11217,9442,0],[11232,9421,0],[11242,9405,0],[11201,9470,0],[11238,9529,0],[11210,9516,0],[11219,9948,0],[11239,9924,0],[11270,9544,0],[11294,9557,0],[11299,9836,0],[11286,9858,0],[11269,9883,0],[11264,9897,0],[11255,9903,0],[11287,9928,0],[11273,9909,0],[11330,9576,0],[11311,9566,0],[11333,9782,0],[11345,9762,0],[11321,9802,0],[11310,9820,0],[11304,9949,0],[11346,9997,0],[11324,9972,0],[11354,9588,0],[11379,9600,0],[11386,9695,0],[11396,9678,0],[11372,9719,0],[11357,9743,0],[11391,10046,0],[11369,10021,0],[11441,9100,0],[11444,9127,0],[11437,9546,0],[11447,9528,0],[11428,9574,0],[11421,9606,0],[11447,9626,0],[11417,9632,0],[11401,9611,0],[11415,9618,0],[11426,9622,0],[11408,9656,0],[11475,9193,0],[11462,9172,0],[11452,9150,0],[11492,9218,0],[11497,9457,0],[11482,9479,0],[11469,9496,0],[11458,9512,0],[11476,9632,0],[11512,9246,0],[11528,9271,0],[11537,9287,0],[11543,9308,0],[11545,9336,0],[11535,9385,0],[11542,9361,0],[11513,9431,0],[11526,9408,0],[11530,9413,0],[11539,9417,0],[11546,9421,0],[11532,9639,0],[11503,9636,0],[11563,9444,0],[11553,9430,0],[11586,9468,0],[11573,9455,0],[11560,9641,0],[11585,9643,0],[11600,9644,0],[11609,9489,0],[11634,9514,0],[11643,9584,0],[11628,9609,0],[11615,9629,0],[11606,9640,0],[11648,9679,0],[11615,9658,0],[11630,9668,0],[11604,9650,0],[11626,10038,0],[11641,10022,0],[11610,10056,0],[11653,9533,0],[11681,9539,0],[11661,9542,0],[11665,9539,0],[11657,9562,0],[11662,9550,0],[11667,9691,0],[11687,9703,0],[11690,9966,0],[11670,9989,0],[11654,10008,0],[11736,9534,0],[11706,9538,0],[11705,9714,0],[11738,9734,0],[11722,9724,0],[11734,9917,0],[11711,9943,0],[11781,9523,0],[11763,9528,0],[11754,9744,0],[11789,9766,0],[11771,9754,0],[11788,9858,0],[11754,9894,0],[11770,9877,0],[11849,9495,0],[11806,9513,0],[11832,9503,0],[11848,9787,0],[11809,9778,0],[11826,9788,0],[11836,9794,0],[11831,9808,0],[11815,9827,0],[11803,9841,0],[11874,9483,0],[11888,9743,0],[11869,9764,0],[11903,9468,0],[11930,9453,0],[11935,9691,0],[11918,9709,0],[11903,9726,0],[11957,9436,0],[11983,9638,0],[11951,9674,0],[11967,9656,0]]],["Borek",[[9315,8495,0],[9339,8495,0],[9392,8293,0],[9382,8268,0],[9388,8278,0],[9396,8314,0],[9362,8494,0],[9384,8493,0],[9392,8749,0],[9401,8341,0],[9407,8369,0],[9412,8396,0],[9418,8423,0],[9448,8491,0],[9424,8451,0],[9429,8475,0],[9405,8493,0],[9424,8492,0],[9432,8488,0],[9444,8738,0],[9418,8744,0],[9478,8490,0],[9492,8494,0],[9487,8530,0],[9490,8507,0],[9483,8555,0],[9475,8597,0],[9479,8578,0],[9467,8634,0],[9471,8615,0],[9464,8653,0],[9461,8672,0],[9459,8691,0],[9458,8715,0],[9469,8735,0],[9490,8733,0],[9458,8732,0],[9543,8079,0],[9530,8489,0],[9505,8490,0],[9512,8733,0],[9533,8734,0],[9552,8099,0],[9568,8136,0],[9560,8117,0],[9584,8175,0],[9576,8156,0],[9591,8194,0],[9598,8201,0],[9557,8489,0],[9580,8488,0],[9555,8737,0],[9589,8737,0],[9574,8739,0],[9641,8190,0],[9618,8193,0],[9606,8198,0],[9600,8217,0],[9611,8242,0],[9628,8264,0],[9647,8282,0],[9637,8479,0],[9605,8485,0],[9643,8679,0],[9632,8702,0],[9622,8724,0],[9614,8743,0],[9603,8733,0],[9614,8731,0],[9607,8786,0],[9608,8761,0],[9615,8836,0],[9609,8813,0],[9635,8876,0],[9624,8857,0],[9648,8901,0],[9675,8188,0],[9663,8297,0],[9691,8346,0],[9677,8317,0],[9691,8457,0],[9667,8469,0],[9682,8613,0],[9663,8639,0],[9671,8628,0],[9654,8657,0],[9670,8943,0],[9661,8924,0],[9680,8961,0],[9689,8978,0],[9744,8186,0],[9703,8187,0],[9722,8186,0],[9707,8376,0],[9714,8446,0],[9722,8402,0],[9745,8448,0],[9732,8423,0],[9732,8440,0],[9738,8436,0],[9746,8545,0],[9701,8590,0],[9726,8564,0],[9768,8187,0],[9786,8185,0],[9756,8467,0],[9762,8488,0],[9789,8524,0],[9766,8510,0],[9761,8535,0],[9774,8530,0],[9767,8527,0],[9837,8134,0],[9819,8153,0],[9800,8179,0],[9808,8170,0],[9849,8499,0],[9829,8507,0],[9809,8516,0],[9879,8009,0],[9879,8028,0],[9887,8081,0],[9881,8050,0],[9896,8111,0],[9856,8121,0],[9873,8112,0],[9883,8106,0],[9889,8101,0],[9891,8478,0],[9867,8490,0],[9908,8140,0],[9923,8171,0],[9936,8199,0],[9948,8225,0],[9916,8467,0],[9936,8461,0],[9957,8248,0],[9966,8299,0],[9962,8270,0],[9970,8330,0],[9974,8363,0],[9976,8392,0],[9999,8439,0],[9979,8416,0],[9986,8449,0],[9983,8432,0],[9989,8442,0],[9993,8480,0],[9954,8458,0],[9969,8458,0],[9985,8467,0],[9979,8462,0],[9978,8457,0],[10018,8429,0],[10038,8417,0],[10021,8527,0],[10004,8501,0],[10043,8553,0],[10080,8389,0],[10058,8404,0],[10093,8598,0],[10076,8584,0],[10061,8572,0],[10128,8357,0],[10103,8374,0],[10137,8631,0],[10114,8614,0],[10183,8320,0],[10155,8339,0],[10159,8648,0],[10179,8661,0],[10195,8672,0],[10180,8760,0],[10156,8771,0],[10164,8767,0],[10236,8283,0],[10210,8301,0],[10212,8683,0],[10227,8693,0],[10224,8723,0],[10204,8747,0],[10243,8703,0],[10234,8702,0],[10221,8748,0],[10217,8742,0],[10234,8755,0]]],["Zapadlisko",[[7743,8938,0],[7748,8908,0],[7737,8970,0],[7731,9003,0],[7726,9036,0],[7720,9067,0],[7791,8642,0],[7796,8622,0],[7799,8614,0],[7787,8668,0],[7784,8689,0],[7777,8734,0],[7780,8711,0],[7774,8758,0],[7770,8781,0],[7765,8811,0],[7760,8838,0],[7753,8881,0],[7757,8858,0],[7831,8287,0],[7842,8617,0],[7823,8611,0],[7810,8608,0],[7802,8609,0],[7858,8299,0],[7887,8311,0],[7864,8625,0],[7885,8633,0],[7898,8638,0],[7914,8323,0],[7939,8334,0],[7923,8648,0],[7906,8641,0],[7944,8656,0],[7958,8342,0],[7980,8352,0],[7987,8680,0],[7961,8663,0],[7974,8670,0],[7993,8692,0],[7988,8710,0],[7981,8749,0],[7982,8731,0],[7982,8770,0],[7986,8789,0],[7992,8806,0],[8035,8393,0],[8017,8377,0],[8001,8365,0],[8004,8694,0],[8022,8705,0],[8037,8714,0],[8048,8717,0],[8001,8831,0],[8008,8849,0],[8018,8862,0],[8028,8870,0],[8049,8887,0],[8012,8855,0],[8038,8873,0],[8048,8877,0],[8045,8874,0],[8034,9091,0],[8045,9076,0],[8029,9146,0],[8025,9108,0],[8021,9135,0],[8020,9120,0],[8019,9127,0],[8050,9162,0],[8055,8412,0],[8072,8426,0],[8096,8439,0],[8084,8434,0],[8065,8719,0],[8093,8721,0],[8081,8720,0],[8051,8913,0],[8054,8941,0],[8057,8990,0],[8056,8962,0],[8056,9022,0],[8055,9049,0],[8052,9065,0],[8072,9186,0],[8066,9176,0],[8079,9202,0],[8105,8447,0],[8118,8499,0],[8115,8478,0],[8111,8460,0],[8130,8464,0],[8115,8465,0],[8121,8524,0],[8124,8548,0],[8127,8568,0],[8131,8583,0],[8135,8594,0],[8134,8618,0],[8131,8634,0],[8137,8603,0],[8141,8669,0],[8134,8650,0],[8114,8728,0],[8127,8731,0],[8140,8728,0],[8104,8723,0],[8150,8725,0],[8195,8463,0],[8153,8465,0],[8175,8464,0],[8152,8695,0],[8184,8707,0],[8164,8716,0],[8160,8735,0],[8156,8721,0],[8172,8747,0],[8156,8726,0],[8164,8744,0],[8159,8715,0],[8192,8792,0],[8189,8774,0],[8186,8760,0],[8181,8751,0],[8195,8834,0],[8194,8812,0],[8196,8858,0],[8196,8883,0],[8194,8937,0],[8195,8909,0],[8192,8964,0],[8190,8988,0],[8182,9041,0],[8188,9013,0],[8172,9071,0],[8161,9132,0],[8164,9102,0],[8162,9198,0],[8161,9177,0],[8160,9157,0],[8219,8460,0],[8243,8458,0],[8230,8694,0],[8209,8700,0],[8273,8455,0],[8253,8688,0],[8276,8683,0],[8308,8453,0],[8340,8451,0],[8302,8676,0],[8329,8669,0],[8350,8665,0],[8369,8449,0],[8390,8664,0],[8369,8664,0],[8402,8446,0],[8429,8443,0],[8448,8440,0],[8414,8664,0],[8437,8665,0],[8475,8438,0],[8462,8667,0],[8489,8671,0],[8548,8673,0],[8516,8673,0],[8549,8763,0],[8542,8790,0],[8537,8808,0],[8532,8827,0],[8527,8845,0],[8520,8870,0],[8502,8932,0],[8511,8901,0]]],["Nidek",[[5752,7696,0],[5769,7735,0],[5761,7717,0],[5778,7754,0],[5787,7774,0],[5796,7792,0],[5814,7835,0],[5803,7810,0],[5826,7864,0],[5834,7888,0],[5846,7914,0],[5860,7946,0],[5882,7985,0],[5872,7969,0],[5897,8008,0],[5914,8033,0],[5940,8046,0],[5926,8045,0],[5962,7575,0],[5951,7551,0],[5973,7595,0],[5985,7612,0],[5997,7630,0],[5977,8039,0],[5998,8025,0],[5953,8047,0],[5962,8048,0],[5962,8060,0],[5958,8079,0],[5958,8091,0],[5999,8135,0],[5977,8115,0],[5964,8101,0],[6009,7646,0],[6019,7663,0],[6028,7680,0],[6038,7705,0],[6048,7730,0],[6050,8004,0],[6020,8016,0],[6050,8181,0],[6021,8153,0],[6035,8166,0],[6057,7747,0],[6071,7770,0],[6090,7799,0],[6100,7976,0],[6077,7989,0],[6065,8199,0],[6080,8221,0],[6098,8246,0],[6108,7825,0],[6123,7844,0],[6140,7858,0],[6121,7965,0],[6139,7957,0],[6140,8233,0],[6120,8249,0],[6119,8269,0],[6137,8287,0],[6110,8256,0],[6165,7874,0],[6188,7889,0],[6160,7947,0],[6181,7933,0],[6197,7919,0],[6196,8189,0],[6163,8214,0],[6176,8204,0],[6182,8202,0],[6192,8343,0],[6164,8315,0],[6150,8300,0],[6178,8328,0],[6201,7897,0],[6211,7908,0],[6224,7933,0],[6205,7909,0],[6221,7920,0],[6226,7980,0],[6225,7954,0],[6240,8043,0],[6231,8023,0],[6227,8003,0],[6229,8158,0],[6214,8171,0],[6209,8358,0],[6248,8379,0],[6228,8370,0],[6257,8064,0],[6274,8083,0],[6287,8098,0],[6250,8140,0],[6276,8119,0],[6300,8112,0],[6291,8106,0],[6272,8388,0],[6295,8397,0],[6327,8141,0],[6313,8126,0],[6341,8157,0],[6316,8406,0],[6335,8415,0],[6376,8194,0],[6358,8174,0],[6394,8215,0],[6395,8423,0],[6374,8435,0],[6354,8425,0],[6386,8436,0],[6413,8235,0],[6443,8268,0],[6429,8253,0],[6424,8382,0],[6444,8358,0],[6408,8404,0],[6497,8300,0],[6458,8284,0],[6472,8298,0],[6477,8320,0],[6461,8338,0],[6482,8308,0],[6543,8251,0],[6529,8266,0],[6515,8281,0],[6558,8237,0],[6573,8222,0],[6586,8208,0]]],["Topolin",[[1393,7200,0],[1390,7263,0],[1365,7256,0],[1379,7375,0],[1395,7377,0],[1436,7195,0],[1416,7198,0],[1420,7271,0],[1450,7278,0],[1427,7388,0],[1409,7380,0],[1450,7544,0],[1429,7579,7],[1445,7552,3],[1458,7192,0],[1477,7189,0],[1495,7187,0],[1480,7284,0],[1454,7402,0],[1478,7415,0],[1495,7424,0],[1481,7490,0],[1494,7466,0],[1468,7514,0],[1485,7536,0],[1457,7531,0],[1471,7529,0],[1528,7184,0],[1543,7182,0],[1512,7186,0],[1511,7289,0],[1540,7294,0],[1541,7388,0],[1507,7444,0],[1518,7424,0],[1529,7406,0],[1540,7427,0],[1528,7418,0],[1508,7430,0],[1506,7545,0],[1529,7556,0],[1549,7565,0],[1532,7704,0],[1598,6941,0],[1574,6938,0],[1577,7147,0],[1588,7133,0],[1579,7137,0],[1581,7133,0],[1555,7177,0],[1567,7169,0],[1574,7159,0],[1565,7298,0],[1570,7347,0],[1585,7326,0],[1588,7302,0],[1596,7310,0],[1555,7368,0],[1564,7443,0],[1552,7436,0],[1582,7450,0],[1569,7574,0],[1590,7584,0],[1597,7725,0],[1577,7715,0],[1557,7707,0],[1627,6946,0],[1605,7138,0],[1630,7143,0],[1615,7308,0],[1641,7315,0],[1631,7465,0],[1606,7457,0],[1647,7594,0],[1607,7591,0],[1626,7595,0],[1639,7743,0],[1616,7734,0],[1671,6964,0],[1651,6953,0],[1689,6976,0],[1655,7151,0],[1676,7158,0],[1687,7162,0],[1696,7163,0],[1680,7324,0],[1660,7319,0],[1660,7474,0],[1690,7483,0],[1684,7588,0],[1665,7590,0],[1666,7752,0],[1690,7759,0],[1733,6869,0],[1735,6898,0],[1735,6936,0],[1736,6920,0],[1731,6953,0],[1723,6970,0],[1706,6988,0],[1719,6988,0],[1716,6995,0],[1743,7034,0],[1730,7018,0],[1721,7004,0],[1726,7045,0],[1723,7032,0],[1724,7018,0],[1723,7024,0],[1730,7081,0],[1729,7063,0],[1729,7098,0],[1724,7111,0],[1716,7122,0],[1712,7133,0],[1711,7143,0],[1704,7160,0],[1709,7153,0],[1700,7330,0],[1720,7335,0],[1739,7339,0],[1749,7333,0],[1715,7491,0],[1733,7496,0],[1742,7493,0],[1746,7487,0],[1705,7594,0],[1728,7605,0],[1711,7766,0],[1733,7773,0],[1776,7074,0],[1795,7097,0],[1759,7052,0],[1793,7248,0],[1768,7282,0],[1780,7264,0],[1763,7345,0],[1758,7302,0],[1752,7319,0],[1793,7352,0],[1798,7390,0],[1777,7427,0],[1766,7448,0],[1788,7407,0],[1754,7471,0],[1756,7503,0],[1797,7501,0],[1780,7507,0],[1794,7515,0],[1785,7512,0],[1752,7620,0],[1768,7631,0],[1774,7638,0],[1778,7784,0],[1755,7779,0],[1811,7118,0],[1823,7137,0],[1844,7153,0],[1830,7161,0],[1829,7185,0],[1835,7170,0],[1808,7229,0],[1821,7206,0],[1821,7358,0],[1847,7364,0],[1808,7373,0],[1817,7360,0],[1839,7453,0],[1824,7471,0],[1811,7488,0],[1827,7527,0],[1808,7521,0],[1804,7789,0],[1847,7800,0],[1827,7794,0],[1890,7080,0],[1898,7054,0],[1898,7065,0],[1874,7104,0],[1858,7130,0],[1894,7299,0],[1884,7321,0],[1876,7341,0],[1897,7336,0],[1884,7333,0],[1871,7370,0],[1895,7376,0],[1869,7362,0],[1871,7353,0],[1865,7445,0],[1893,7449,0],[1878,7544,0],[1850,7534,0],[1869,7806,0],[1890,7813,0],[1924,6972,0],[1943,6962,0],[1912,6986,0],[1909,6997,0],[1931,7049,0],[1948,7039,0],[1906,7026,0],[1901,7041,0],[1909,7009,0],[1911,7061,0],[1945,7233,0],[1932,7248,0],[1916,7261,0],[1902,7283,0],[1924,7254,0],[1908,7270,0],[1904,7277,0],[1914,7340,0],[1932,7342,0],[1947,7389,0],[1919,7382,0],[1941,7460,0],[1915,7456,0],[1904,7552,0],[1934,7560,0],[1922,7557,0],[1945,7561,0],[1910,7818,0],[1930,7823,0],[1986,6889,0],[1983,6871,0],[1981,6861,0],[1986,6944,0],[1987,6915,0],[1984,6970,0],[1982,6990,0],[1962,6960,0],[1974,6959,0],[1982,6959,0],[1966,7027,0],[1986,7034,0],[1979,7010,0],[1993,7046,0],[1978,7022,0],[1999,7075,0],[1996,7057,0],[1999,7134,0],[1982,7190,0],[1997,7156,0],[1994,7170,0],[1990,7179,0],[1963,7214,0],[1974,7202,0],[1976,7344,0],[1951,7342,0],[1998,7344,0],[1975,7396,0],[1999,7401,0],[1994,7451,0],[1970,7458,0],[1985,7481,0],[1969,7471,0],[1960,7463,0],[1981,7527,0],[1995,7517,0],[1969,7538,0],[1960,7549,0],[1953,7557,0],[2002,7091,0],[2001,7109,0],[2014,7335,0],[2008,7342,0],[2035,7389,0],[2026,7394,0],[2011,7431,0],[2032,7410,0],[2013,7405,0],[2021,7401,0],[2018,7410,0],[2008,7495,0],[2034,7507,0],[2009,7509,0],[2019,7503,0],[2083,7379,0],[2054,7382,0],[2088,7443,0],[2068,7429,0],[2053,7419,0],[2054,7515,0],[2070,7521,0],[2084,7526,0],[2096,7526,0],[2134,7370,0],[2111,7376,0],[2109,7459,0],[2127,7472,0],[2144,7484,0],[2136,7479,0],[2126,7493,0],[2147,7464,0],[2131,7486,0],[2138,7473,0],[2142,7468,0],[2119,7501,0],[2112,7511,0],[2104,7520,0],[2199,7348,0],[2175,7350,0],[2156,7359,0],[2161,7494,0],[2180,7460,0],[2158,7460,0],[2185,7508,0],[2226,7348,0],[2248,7348,0],[2209,7462,0],[2240,7465,0],[2240,7539,0],[2223,7529,0],[2207,7520,0],[2287,7326,0],[2266,7341,0],[2293,7466,0],[2268,7465,0],[2257,7548,0],[2275,7558,0],[2292,7568,0],[2343,7285,0],[2325,7298,0],[2308,7311,0],[2316,7469,0],[2336,7472,0]]],["AdamĆ³w",[[2635,6948,0],[2603,6975,0],[2619,6958,0],[2656,6938,0],[2678,6928,0],[2700,6920,0],[2722,6915,0],[2743,6913,0],[2794,6465,0],[2776,6895,0],[2791,6872,0],[2783,6916,0],[2765,6909,0],[2757,6912,0],[2767,6912,0],[2804,6488,0],[2825,6511,0],[2845,6793,0],[2820,6830,0],[2832,6811,0],[2805,6851,0],[2842,6945,0],[2802,6922,0],[2817,6928,0],[2829,6934,0],[2851,6531,0],[2876,6549,0],[2868,6543,0],[2891,6555,0],[2883,6553,0],[2878,6731,0],[2891,6706,0],[2865,6757,0],[2856,6774,0],[2860,6960,0],[2878,6973,0],[2896,6982,0],[2928,6560,0],[2907,6557,0],[2939,6636,0],[2935,6643,0],[2902,6687,0],[2935,6690,0],[2925,6677,0],[2914,6677,0],[2934,6663,0],[2934,6652,0],[2934,6673,0],[2934,6680,0],[2945,6721,0],[2940,6708,0],[2919,6989,0],[2943,6993,0],[2955,6566,0],[2993,6592,0],[2976,6574,0],[2984,6581,0],[2993,6597,0],[2956,6622,0],[2980,6606,0],[2951,6732,0],[2963,6747,0],[2956,6741,0],[2978,6758,0],[2968,6997,0],[2997,7000,0],[2994,7342,0],[3048,6635,0],[3022,6619,0],[3004,6605,0],[3001,6773,0],[3023,6788,0],[3041,6842,0],[3043,6800,0],[3029,6812,0],[3035,6803,0],[3026,6829,0],[3025,6820,0],[3050,7008,0],[3024,7004,0],[3025,7342,0],[3074,6651,0],[3099,6663,0],[3066,6785,0],[3089,6765,0],[3077,6768,0],[3080,6765,0],[3061,6812,0],[3077,6820,0],[3092,6825,0],[3055,6804,0],[3069,6858,0],[3100,6863,0],[3098,7012,0],[3074,7012,0],[3054,7343,0],[3080,7345,0],[3099,7347,0],[3142,6677,0],[3120,6671,0],[3146,6747,0],[3123,6759,0],[3105,6764,0],[3116,6824,0],[3145,6844,0],[3141,6821,0],[3143,6826,0],[3126,6860,0],[3142,6857,0],[3147,6991,0],[3132,7002,0],[3118,7008,0],[3166,6685,0],[3188,6691,0],[3192,6726,0],[3164,6736,0],[3173,6727,0],[3179,6721,0],[3183,6721,0],[3196,6770,0],[3180,6790,0],[3166,6805,0],[3184,6825,0],[3158,6814,0],[3152,6819,0],[3169,6822,0],[3162,6816,0],[3165,6819,0],[3153,6865,0],[3167,6883,0],[3178,6898,0],[3184,6946,0],[3183,6912,0],[3185,6928,0],[3163,6978,0],[3175,6967,0],[3181,6959,0],[3246,6715,0],[3227,6735,0],[3210,6700,0],[3230,6710,0],[3206,6736,0],[3215,6742,0],[3240,6717,0],[3212,6752,0],[3233,6831,0],[3207,6828,0],[3265,6698,0],[3284,6683,0],[3295,6844,0],[3262,6836,0],[3346,6606,0],[3336,6627,0],[3327,6645,0],[3304,6667,0],[3319,6655,0],[3329,6867,0],[3345,6888,0],[3315,6852,0],[3391,6541,0],[3370,6565,0],[3356,6587,0],[3356,6904,0],[3364,6927,0],[3364,6940,0],[3363,6913,0],[3364,6918,0],[3382,6998,0],[3373,6976,0],[3365,6951,0],[3367,6961,0],[3389,7024,0],[3394,7051,0],[3412,6519,0],[3430,6501,0],[3401,7079,0],[3406,7099,0],[3434,7139,0],[3422,7125,0],[3413,7112,0],[3451,7156,0]]],["Muratyn",[[4081,6367,0],[4124,6293,0],[4146,6260,0],[4127,6273,0],[4133,6265,0],[4129,6344,0],[4145,6334,0],[4125,6315,0],[4133,6330,0],[4129,6325,0],[4104,6360,0],[4117,6354,0],[4176,6259,0],[4191,6258,0],[4161,6258,0],[4179,6339,0],[4159,6332,0],[4209,6249,0],[4230,6234,0],[4244,6346,0],[4204,6348,0],[4225,6350,0],[4238,6387,0],[4231,6394,0],[4231,6414,0],[4247,6418,0],[4238,6419,0],[4228,6407,0],[4228,6401,0],[4300,6194,0],[4276,6205,0],[4252,6221,0],[4264,6339,0],[4292,6342,0],[4282,6336,0],[4270,6371,0],[4251,6379,0],[4288,6364,0],[4294,6354,0],[4258,6412,0],[4295,6407,0],[4268,6406,0],[4279,6403,0],[4287,6404,0],[4348,6184,0],[4322,6189,0],[4312,6414,0],[4334,6420,0],[4334,6799,0],[4311,6806,0],[4374,6178,0],[4398,6410,0],[4372,6417,0],[4352,6421,0],[4387,6776,0],[4360,6789,0],[4422,5941,0],[4409,5922,0],[4435,5959,0],[4447,5977,0],[4431,6149,0],[4401,6168,0],[4419,6158,0],[4439,6398,0],[4448,6398,0],[4422,6402,0],[4431,6441,0],[4426,6426,0],[4423,6414,0],[4420,6406,0],[4443,6473,0],[4437,6457,0],[4450,6487,0],[4447,6733,0],[4434,6747,0],[4421,6758,0],[4405,6766,0],[4412,6762,0],[4427,6754,0],[4458,5998,0],[4469,6023,0],[4478,6045,0],[4493,6089,0],[4485,6063,0],[4453,6135,0],[4485,6121,0],[4471,6123,0],[4496,6116,0],[4497,6109,0],[4478,6432,0],[4465,6412,0],[4455,6401,0],[4490,6452,0],[4484,6478,0],[4466,6487,0],[4494,6451,0],[4456,6494,0],[4454,6496,0],[4497,6470,0],[4480,6535,0],[4467,6518,0],[4456,6501,0],[4460,6508,0],[4494,6553,0],[4483,6694,0],[4464,6714,0],[4511,6118,0],[4539,6116,0],[4531,6437,0],[4509,6446,0],[4511,6483,0],[4500,6469,0],[4529,6502,0],[4544,6519,0],[4521,6590,0],[4506,6570,0],[4538,6611,0],[4549,6631,0],[4531,6649,0],[4542,6642,0],[4548,6624,0],[4546,6644,0],[4500,6677,0],[4516,6661,0],[4549,6658,0],[4579,6113,0],[4560,6115,0],[4597,6393,0],[4597,6427,0],[4555,6425,0],[4578,6411,0],[4589,6408,0],[4590,6488,0],[4599,6456,0],[4576,6534,0],[4581,6514,0],[4551,6531,0],[4556,6544,0],[4560,6567,0],[4570,6555,0],[4560,6593,0],[4565,6574,0],[4561,6589,0],[4555,6612,0],[4567,6694,0],[4556,6677,0],[4582,6711,0],[4600,6725,0],[4604,6111,0],[4648,6107,0],[4628,6109,0],[4646,6310,0],[4631,6339,0],[4615,6368,0],[4640,6745,0],[4618,6735,0],[4669,6103,0],[4683,6105,0],[4692,6111,0],[4698,6216,0],[4685,6240,0],[4662,6280,0],[4676,6256,0],[4696,6749,0],[4663,6755,0],[4682,6764,0],[4691,6763,0],[4693,6770,0],[4705,6126,0],[4723,6147,0],[4713,6190,0],[4741,6167,0],[4723,6172,0],[4730,6162,0],[4748,6590,0],[4729,6646,0],[4739,6617,0],[4720,6676,0],[4711,6704,0],[4703,6729,0],[4704,6783,0],[4716,6799,0],[4728,6831,0],[4723,6812,0],[4734,6853,0],[4762,6191,0],[4785,6218,0],[4794,6455,0],[4785,6479,0],[4763,6545,0],[4770,6522,0],[4777,6501,0],[4755,6568,0],[4807,6244,0],[4827,6267,0],[4845,6286,0],[4843,6335,0],[4826,6376,0],[4835,6354,0],[4804,6428,0],[4816,6401,0],[4892,6203,0],[4882,6229,0],[4874,6253,0],[4866,6275,0],[4860,6293,0],[4855,6298,0],[4868,6336,0],[4852,6313,0],[4850,6328,0],[4899,6350,0],[4947,6070,0],[4941,6087,0],[4935,6119,0],[4923,6136,0],[4935,6108,0],[4930,6123,0],[4902,6178,0],[4912,6155,0],[4927,6364,0],[4966,6092,0],[4950,6104,0],[4978,6388,0],[4951,6375,0],[5038,6418,0],[5007,6403,0]]],["Radunin",[[7072,6047,0],[7087,6080,0],[7072,6068,0],[7067,6057,0],[7105,6092,0],[7128,6108,0],[7149,6126,0],[7139,6893,0],[7128,6919,0],[7122,6944,0],[7167,6150,0],[7180,6175,0],[7185,6196,0],[7188,6241,0],[7186,6230,0],[7187,6212,0],[7186,6222,0],[7198,6272,0],[7192,6255,0],[7177,6826,0],[7190,6805,0],[7165,6846,0],[7152,6869,0],[7206,6290,0],[7233,6331,0],[7214,6307,0],[7247,6341,0],[7221,6319,0],[7245,6660,0],[7240,6688,0],[7222,6748,0],[7229,6730,0],[7234,6711,0],[7212,6767,0],[7202,6785,0],[7276,5995,0],[7288,5999,0],[7283,5997,0],[7299,6012,0],[7273,6348,0],[7258,6345,0],[7295,6350,0],[7300,6453,0],[7295,6478,0],[7291,6499,0],[7280,6545,0],[7286,6521,0],[7286,6536,0],[7291,6540,0],[7272,6571,0],[7262,6602,0],[7253,6631,0],[7325,6047,0],[7312,6031,0],[7341,6070,0],[7348,6154,0],[7343,6174,0],[7340,6196,0],[7334,6248,0],[7338,6221,0],[7329,6278,0],[7323,6311,0],[7318,6337,0],[7319,6348,0],[7316,6350,0],[7336,6360,0],[7314,6366,0],[7310,6389,0],[7311,6352,0],[7304,6429,0],[7308,6408,0],[7302,6548,0],[7321,6562,0],[7342,6577,0],[7359,6097,0],[7395,6085,0],[7380,6104,0],[7359,6133,0],[7368,6118,0],[7369,6113,0],[7357,6377,0],[7371,6389,0],[7386,6403,0],[7397,6416,0],[7400,6416,0],[7389,6575,0],[7360,6588,0],[7377,6591,0],[7370,6594,0],[7361,6638,0],[7366,6617,0],[7371,6602,0],[7360,6697,0],[7359,6677,0],[7359,6658,0],[7363,6741,0],[7362,6717,0],[7365,6770,0],[7367,6797,0],[7369,6821,0],[7372,6847,0],[7375,6898,0],[7374,6870,0],[7389,6932,0],[7379,6922,0],[7436,6037,0],[7421,6054,0],[7407,6070,0],[7411,6298,0],[7428,6286,0],[7445,6291,0],[7416,6285,0],[7408,6319,0],[7406,6342,0],[7401,6397,0],[7404,6367,0],[7400,6428,0],[7402,6442,0],[7411,6494,0],[7409,6472,0],[7405,6456,0],[7412,6517,0],[7410,6546,0],[7412,6535,0],[7403,6558,0],[7410,6937,0],[7434,6937,0],[7453,6019,0],[7457,6293,0],[7463,6293,0],[7477,6934,0],[7453,6935,0],[7538,6927,0],[7506,6931,0]]],["Lembork",[[8243,6823,0],[8224,6815,0],[8292,6345,0],[8278,6849,0],[8261,6837,0],[8296,6861,0],[8320,6359,0],[8314,6872,0],[8349,6881,0],[8334,6881,0],[8325,6879,0],[8352,6375,0],[8382,6388,0],[8375,6880,0],[8405,6397,0],[8447,6411,0],[8423,6404,0],[8407,6876,0],[8435,6868,0],[8444,6867,0],[8446,7018,0],[8440,7040,0],[8443,7030,0],[8435,7061,0],[8478,6418,0],[8482,6831,0],[8499,6821,0],[8459,6850,0],[8471,6894,0],[8454,6877,0],[8493,6885,0],[8482,6906,0],[8469,6927,0],[8460,6942,0],[8482,6905,0],[8452,6995,0],[8454,6975,0],[8454,6961,0],[8456,6950,0],[8511,6425,0],[8539,6429,0],[8513,6846,0],[8534,6801,0],[8516,6811,0],[8516,6827,0],[8510,6818,0],[8502,6866,0],[8560,6431,0],[8581,6433,0],[8588,6753,0],[8569,6776,0],[8551,6791,0],[8630,6435,0],[8602,6434,0],[8630,6701,0],[8608,6727,0],[8663,6437,0],[8697,6442,0],[8684,6438,0],[8654,6678,0],[8675,6664,0],[8710,6449,0],[8729,6463,0],[8748,6481,0],[8731,6647,0],[8700,6655,0],[8763,6182,0],[8772,6152,0],[8756,6229,0],[8758,6208,0],[8754,6293,0],[8754,6252,0],[8753,6273,0],[8761,6335,0],[8757,6314,0],[8766,6359,0],[8770,6381,0],[8775,6408,0],[8778,6436,0],[8761,6497,0],[8779,6482,0],[8779,6458,0],[8787,6528,0],[8781,6504,0],[8770,6507,0],[8775,6512,0],[8780,6514,0],[8795,6552,0],[8764,6640,0],[8797,6635,0],[8814,6591,0],[8803,6570,0],[8828,6619,0],[8843,6646,0],[8820,6634,0],[8841,6635,0],[8832,6634,0],[8885,6642,0],[8868,6638,0],[8854,6636,0],[8856,6670,0],[8868,6691,0],[8878,6709,0],[8888,6727,0],[8897,6744,0],[8905,6648,0],[8931,6656,0],[8930,6790,0],[8906,6764,0],[8912,6785,0],[8915,6778,0],[8917,6829,0],[8915,6805,0],[8923,6882,0],[8920,6854,0],[8927,6915,0],[8931,6947,0],[8935,6977,0],[8937,7001,0],[8940,7044,0],[8939,7022,0],[8997,6676,0],[8974,6669,0],[8955,6663,0],[8951,6807,0],[8973,6823,0],[8995,6838,0],[9022,6685,0],[9049,6693,0],[9019,6854,0],[9044,6869,0],[9074,6701,0],[9096,6708,0],[9088,6891,0],[9065,6880,0],[9132,6717,0],[9113,6713,0],[9156,6718,0]]],["GieraltĆ³w",[[10787,4248,0],[10797,4243,0],[10765,4264,0],[10776,4255,0],[10803,4142,0],[10828,4138,0],[10842,4239,0],[10824,4241,0],[10809,4242,0],[10858,4133,0],[10884,4129,0],[10890,4249,0],[10864,4241,0],[10889,4280,0],[10899,4268,0],[10881,4294,0],[10887,4327,0],[10879,4309,0],[10898,4699,0],[10889,4733,0],[10893,4714,0],[10914,4020,0],[10916,4040,0],[10918,4066,0],[10920,4094,0],[10939,4143,0],[10921,4132,0],[10903,4129,0],[10919,4112,0],[10917,4124,0],[10928,4141,0],[10924,4178,0],[10927,4153,0],[10919,4237,0],[10922,4210,0],[10911,4258,0],[10908,4256,0],[10907,4347,0],[10932,4363,0],[10939,4611,0],[10921,4647,0],[10930,4629,0],[10911,4667,0],[10903,4685,0],[10988,4188,0],[10971,4171,0],[10956,4157,0],[10993,4396,0],[10969,4383,0],[10952,4374,0],[10984,4523,0],[10999,4500,0],[10973,4540,0],[10952,4586,0],[10965,4558,0],[11020,4218,0],[11038,4234,0],[11004,4203,0],[11020,4411,0],[11037,4445,0],[11037,4421,0],[11047,4427,0],[11046,4432,0],[11023,4465,0],[11011,4484,0],[11054,4248,0],[11091,4277,0],[11069,4261,0],[11085,4412,0],[11060,4423,0],[11121,3899,0],[11147,3910,0],[11117,4293,0],[11138,4284,0],[11130,4297,0],[11140,4305,0],[11143,4389,0],[11114,4401,0],[11183,3892,0],[11181,3947,0],[11168,3921,0],[11183,3917,0],[11180,3927,0],[11178,3976,0],[11177,3997,0],[11196,4045,0],[11182,4028,0],[11177,4014,0],[11179,4240,0],[11162,4249,0],[11199,4236,0],[11150,4265,0],[11168,4318,0],[11169,4379,0],[11191,4369,0],[11234,4083,0],[11216,4066,0],[11247,4182,0],[11238,4202,0],[11231,4217,0],[11224,4228,0],[11214,4233,0],[11200,4332,0],[11230,4345,0],[11215,4344,0],[11206,4359,0],[11212,4351,0],[11250,4818,0],[11249,4839,0],[11248,4861,0],[11254,4105,0],[11266,4139,0],[11268,4121,0],[11270,4128,0],[11258,4158,0],[11296,4375,0],[11270,4363,0],[11252,4354,0],[11298,4562,0],[11293,4593,0],[11290,4616,0],[11286,4635,0],[11273,4679,0],[11280,4654,0],[11266,4708,0],[11260,4737,0],[11252,4792,0],[11255,4764,0],[11328,4389,0],[11338,4500,0],[11323,4510,0],[11303,4536,0],[11308,4525,0],[11313,4518,0],[11377,4419,0],[11399,4438,0],[11353,4402,0],[11361,4486,0],[11395,4459,0],[11382,4472,0],[11405,4450,0],[11425,4470,0],[11440,4490,0],[11411,4453,0],[11468,4526,0],[11453,4508,0],[11482,4545,0],[11495,4563,0],[11520,4599,0],[11506,4578,0],[11535,4624,0],[11547,4644,0],[11564,4679,0],[11579,4660,0],[11556,4660,0],[11596,4652,0],[11563,4667,0],[11578,4724,0],[11571,4701,0],[11629,4625,0],[11609,4642,0],[11673,4587,0],[11687,4576,0],[11699,4568,0],[11652,4605,0]]],["NadbĆ³r",[[5628,3918,0],[5644,3932,0],[5650,3907,0],[5641,3915,0],[5638,3921,0],[5644,3910,0],[5660,3945,0],[5674,3907,0],[5657,3904,0],[5675,3958,0],[5691,3971,0],[5697,3982,0],[5697,3991,0],[5699,4016,0],[5697,4002,0],[5703,3914,0],[5731,3921,0],[5709,3986,0],[5730,4003,0],[5748,4016,0],[5704,4049,0],[5701,4029,0],[5703,4038,0],[5710,4086,0],[5707,4066,0],[5715,4109,0],[5719,4130,0],[5726,4154,0],[5734,4178,0],[5741,4198,0],[5736,4167,0],[5722,4238,0],[5743,4243,0],[5700,4241,0],[5745,4216,0],[5747,4229,0],[5743,4235,0],[5737,4236,0],[5732,4264,0],[5719,4288,0],[5779,3945,0],[5751,3925,0],[5762,3930,0],[5771,3937,0],[5789,3951,0],[5798,4046,0],[5764,4026,0],[5780,4036,0],[5757,4166,0],[5786,4166,0],[5779,4348,0],[5804,3953,0],[5842,3952,0],[5824,3953,0],[5818,4057,0],[5837,4067,0],[5812,4172,0],[5833,4181,0],[5826,4370,0],[5802,4359,0],[5863,3953,0],[5884,3954,0],[5899,3955,0],[5859,4078,0],[5884,4089,0],[5853,4191,0],[5875,4203,0],[5899,4215,0],[5852,4382,0],[5876,4393,0],[5943,3895,0],[5926,3934,0],[5931,3916,0],[5935,3908,0],[5920,3949,0],[5936,3963,0],[5912,3953,0],[5925,3950,0],[5929,3955,0],[5904,4097,0],[5925,4104,0],[5948,4111,0],[5940,4206,0],[5929,4219,0],[5917,4221,0],[5928,4449,0],[5938,4426,0],[5900,4403,0],[5923,4412,0],[5947,4407,0],[5938,4418,0],[5970,3845,0],[5989,3803,0],[5981,3820,0],[5956,3874,0],[5971,3985,0],[5952,3974,0],[5984,3996,0],[5999,4020,0],[5991,4005,0],[5995,4012,0],[5986,4120,0],[5965,4115,0],[5970,4139,0],[6000,4118,0],[5973,4123,0],[5953,4188,0],[5992,4185,0],[5961,4171,0],[5966,4157,0],[5975,4181,0],[5963,4179,0],[5993,4326,0],[5979,4349,0],[5994,4348,0],[5988,4342,0],[5957,4385,0],[5969,4365,0],[6047,3737,0],[6005,3782,0],[6029,3757,0],[6009,4040,0],[6003,4027,0],[6015,4077,0],[6015,4057,0],[6012,4093,0],[6011,4125,0],[6039,4130,0],[6006,4106,0],[6024,4197,0],[6009,4190,0],[6048,4232,0],[6038,4207,0],[6025,4271,0],[6015,4288,0],[6035,4254,0],[6006,4305,0],[6037,4347,0],[6048,4332,0],[6006,4355,0],[6030,4358,0],[6017,4361,0],[6024,4362,0],[6094,3618,0],[6085,3635,0],[6079,3654,0],[6072,3681,0],[6058,3720,0],[6066,3701,0],[6099,4094,0],[6091,4138,0],[6064,4134,0],[6069,4119,0],[6083,4107,0],[6058,4128,0],[6098,4144,0],[6087,4163,0],[6074,4187,0],[6062,4207,0],[6080,4229,0],[6096,4229,0],[6050,4215,0],[6060,4221,0],[6068,4226,0],[6091,4307,0],[6066,4319,0],[6141,3488,0],[6129,3529,0],[6134,3510,0],[6121,3556,0],[6106,3595,0],[6113,3580,0],[6117,4080,0],[6131,4069,0],[6144,4068,0],[6141,4125,0],[6129,4134,0],[6144,4143,0],[6115,4139,0],[6128,4140,0],[6109,4221,0],[6121,4213,0],[6143,4213,0],[6132,4211,0],[6135,4279,0],[6113,4294,0],[6197,4027,0],[6183,4053,0],[6158,4079,0],[6176,4078,0],[6169,4099,0],[6168,4091,0],[6172,4092,0],[6181,4118,0],[6169,4149,0],[6191,4140,0],[6152,4115,0],[6162,4106,0],[6173,4101,0],[6180,4194,0],[6198,4174,0],[6194,4159,0],[6164,4207,0],[6153,4213,0],[6159,4267,0],[6180,4258,0],[6200,4253,0],[6220,3999,0],[6235,3983,0],[6250,3969,0],[6209,4012,0],[6226,4187,0],[6212,4172,0],[6201,4157,0],[6239,4205,0],[6233,4263,0],[6217,4255,0],[6292,3929,0],[6274,3946,0],[6261,3958,0],[6264,4238,0],[6251,4222,0],[6293,4278,0],[6278,4257,0],[6254,4269,0],[6272,4270,0],[6282,4268,0],[6345,3791,0],[6337,3815,0],[6332,3836,0],[6318,3871,0],[6309,3895,0],[6326,3850,0],[6310,3915,0],[6343,3904,0],[6326,3908,0],[6304,3908,0],[6303,3916,0],[6309,4299,0],[6327,4325,0],[6347,4355,0],[6387,3730,0],[6367,3755,0],[6354,3774,0],[6398,3912,0],[6365,3904,0],[6380,3905,0],[6362,4379,0],[6373,4399,0],[6418,3696,0],[6435,3684,0],[6403,3710,0],[6438,3931,0],[6420,3921,0],[6450,3674,0],[6466,3668,0],[6481,3664,0],[6457,3941,0],[6474,3950,0],[6490,3957,0],[6510,3964,0],[6548,3964,0],[6530,3967,0],[6578,3948,0],[6596,3936,0],[6562,3959,0]]],["Zalesie",[[593,5175,0],[578,5162,0],[610,5189,0],[647,5220,0],[627,5204,0],[666,5235,0],[689,5254,0],[696,5944,0],[691,5989,0],[693,5971,0],[718,5278,0],[741,5298,0],[749,5771,0],[739,5791,0],[729,5812,0],[719,5833,0],[705,5883,0],[711,5856,0],[700,5912,0],[761,5317,0],[781,5336,0],[798,5355,0],[793,5593,0],[784,5614,0],[780,5635,0],[794,5645,0],[783,5645,0],[782,5661,0],[783,5690,0],[778,5714,0],[770,5732,0],[760,5750,0],[813,5375,0],[825,5396,0],[847,5432,0],[836,5416,0],[832,5408,0],[827,5544,0],[844,5527,0],[807,5569,0],[817,5652,0],[868,5452,0],[891,5485,0],[898,5470,0],[882,5497,0],[891,5469,0],[884,5464,0],[881,5527,0],[900,5545,0],[857,5516,0],[871,5507,0],[867,5515,0],[851,5663,0],[876,5674,0],[892,5685,0],[940,5394,0],[926,5416,0],[912,5438,0],[904,5454,0],[919,5562,0],[939,5579,0],[908,5697,0],[931,5712,0],[984,5347,0],[965,5361,0],[951,5377,0],[953,5591,0],[967,5600,0],[984,5610,0],[977,5726,0],[956,5722,0],[1048,5323,0],[1002,5337,0],[1018,5333,0],[1031,5331,0],[1029,5635,0],[1001,5618,0],[1042,5645,0],[1016,5626,0],[1049,5655,0],[1002,5728,0],[1027,5730,0],[1050,5731,0],[1095,5290,0],[1071,5307,0],[1067,5678,0],[1056,5666,0],[1078,5687,0],[1089,5692,0],[1098,5726,0],[1074,5730,0],[1119,5274,0],[1144,5258,0],[1101,5695,0],[1109,5698,0],[1120,5733,0],[1116,5718,0],[1113,5703,0],[1115,5710,0],[1114,5723,0],[1139,5786,0],[1128,5758,0],[1188,5229,0],[1166,5244,0],[1151,5812,0],[1164,5832,0],[1194,5874,0],[1176,5850,0],[1232,5189,0],[1211,5210,0],[1213,5897,0]]],["Huta",[[4846,5149,0],[4813,5123,0],[4831,5135,0],[4878,5190,0],[4862,5168,0],[4895,5214,0],[4876,5339,0],[4886,5320,0],[4892,5307,0],[4873,5374,0],[4885,5390,0],[4869,5357,0],[4899,5403,0],[4910,5236,0],[4924,5258,0],[4918,5293,0],[4934,5289,0],[4932,5275,0],[4932,5285,0],[4928,5288,0],[4947,5302,0],[4903,5300,0],[4917,5421,0],[4935,5437,0],[4949,5444,0],[4966,5318,0],[4986,5329,0],[4969,5447,0],[4991,5446,0],[4993,5935,0],[5003,5340,0],[5019,5357,0],[5046,5400,0],[5033,5378,0],[5030,5440,0],[5010,5444,0],[5048,5436,0],[5048,5817,0],[5029,5843,0],[5037,5830,0],[5018,5868,0],[5008,5893,0],[5001,5913,0],[5061,5424,0],[5074,5445,0],[5060,5433,0],[5090,5464,0],[5062,5795,0],[5094,5753,0],[5077,5773,0],[5145,5237,0],[5128,5226,0],[5122,5221,0],[5112,5483,0],[5135,5502,0],[5144,5699,0],[5148,5695,0],[5113,5732,0],[5132,5711,0],[5173,5255,0],[5196,5270,0],[5187,5441,0],[5173,5430,0],[5159,5526,0],[5185,5549,0],[5194,5635,0],[5168,5670,0],[5182,5652,0],[5154,5688,0],[5186,5953,0],[5234,5294,0],[5214,5281,0],[5245,5343,0],[5244,5365,0],[5239,5353,0],[5239,5360,0],[5226,5470,0],[5208,5456,0],[5243,5483,0],[5214,5571,0],[5243,5566,0],[5237,5586,0],[5218,5597,0],[5232,5578,0],[5226,5585,0],[5206,5615,0],[5203,5926,0],[5213,5911,0],[5228,5906,0],[5220,5907,0],[5252,5330,0],[5251,5305,0],[5257,5318,0],[5258,5310,0],[5259,5312,0],[5279,5392,0],[5257,5376,0],[5258,5495,0],[5276,5532,0],[5296,5510,0],[5274,5508,0],[5285,5517,0],[5258,5552,0],[5254,5596,0],[5279,5610,0],[5250,5909,0],[5277,5914,0],[5296,5917,0],[5305,5412,0],[5331,5431,0],[5347,5442,0],[5316,5487,0],[5333,5466,0],[5345,5451,0],[5324,5640,0],[5304,5626,0],[5348,5658,0],[5343,5913,0],[5317,5917,0],[5384,5387,0],[5394,5366,0],[5358,5432,0],[5372,5409,0],[5374,5680,0],[5396,5702,0],[5393,5891,0],[5369,5903,0],[5442,5265,0],[5428,5291,0],[5414,5319,0],[5402,5346,0],[5423,5741,0],[5410,5719,0],[5442,5790,0],[5434,5768,0],[5418,5874,0],[5443,5852,0],[5486,5188,0],[5498,5168,0],[5458,5237,0],[5473,5211,0],[5452,5814,0],[5476,5832,0],[5460,5838,0],[5461,5831,0],[5516,5146,0],[5508,5155,0],[5576,5231,0],[5563,5281,0],[5569,5256,0],[5559,5313,0],[5557,5342,0],[5556,5364,0],[5555,5386,0],[5553,5437,0],[5554,5408,0],[5552,5470,0],[5552,5496,0],[5557,5537,0],[5553,5516,0],[5562,5565,0],[5567,5588,0],[5573,5646,0],[5569,5607,0],[5571,5626,0],[5575,5668,0],[5577,5690,0],[5582,5700,0],[5579,5710,0]]],["Radacz",[[3800,7486,0],[3825,7491,0],[3851,7497,0],[3885,7528,0],[3876,7538,0],[3869,7505,0],[3872,7515,0],[3871,7526,0],[3871,7540,0],[3870,7533,0],[3872,7544,0],[3868,7564,0],[3863,7592,0],[3861,7612,0],[3860,7645,0],[3860,7629,0],[3862,7669,0],[3866,7693,0],[3884,7745,0],[3874,7721,0],[3869,7707,0],[3896,7775,0],[3899,7922,0],[3923,7492,0],[3939,7475,0],[3947,7464,0],[3902,7512,0],[3916,7835,0],[3907,7804,0],[3926,7862,0],[3946,7895,0],[3936,7880,0],[3923,7924,0],[3949,7924,0],[3906,7923,0],[3939,8178,0],[3948,8155,0],[3930,8203,0],[3923,8226,0],[3918,8245,0],[3915,8271,0],[3916,8296,0],[3924,8337,0],[3919,8315,0],[3932,8360,0],[3940,8381,0],[3947,8401,0],[3950,7455,0],[3995,7927,0],[3955,7911,0],[3972,7925,0],[3961,7921,0],[3992,8090,0],[3967,8121,0],[3979,8105,0],[3956,8138,0],[3954,8420,0],[4019,7932,0],[4036,7946,0],[4030,7938,0],[4041,7983,0],[4041,7962,0],[4037,8009,0],[4027,8043,0],[4034,8029,0],[4032,8034,0],[4005,8074,0],[4017,8059,0],[4142,8361,0],[4131,8389,0],[4119,8416,0],[4180,8297,0],[4192,8281,0],[4154,8337,0],[4167,8316,0],[4243,8213,0],[4229,8234,0],[4204,8266,0],[4217,8251,0],[4288,8136,0],[4259,8188,0],[4274,8162,0],[4338,8045,0],[4316,8083,0],[4327,8063,0],[4303,8108,0],[4397,7968,0],[4385,7983,0],[4370,8003,0],[4352,8026,0],[4438,7920,0],[4423,7936,0],[4410,7952,0],[4468,7887,0],[4495,7857,0],[4482,7872,0],[4453,7903,0]]],["Olszanka",[[4438,7920,0],[4423,7936,0],[4410,7952,0],[4468,7887,0],[4495,7857,0],[4482,7872,0],[4453,7903,0],[4541,7779,0],[4530,7803,0],[4518,7824,0],[4507,7842,0],[4568,7725,0],[4586,7702,0],[4553,7752,0],[4608,7684,0],[4630,7672,0],[4698,7648,0],[4676,7656,0],[4652,7664,0],[4717,7640,0],[4734,7631,0],[4748,7621,0],[4783,7191,0],[4788,7221,0],[4792,7244,0],[4798,7268,0],[4796,7563,0],[4777,7587,0],[4776,7635,0],[4761,7607,0],[4758,7619,0],[4805,7295,0],[4819,7346,0],[4812,7321,0],[4833,7400,0],[4826,7373,0],[4832,7388,0],[4843,7400,0],[4839,7428,0],[4844,7453,0],[4847,7492,0],[4847,7473,0],[4816,7541,0],[4831,7522,0],[4841,7508,0],[4801,7659,0],[4820,7682,0],[4841,7723,0],[4832,7703,0],[4863,7421,0],[4882,7440,0],[4896,7455,0],[4851,7742,0],[4861,7760,0],[4872,7778,0],[4881,7794,0],[4891,7809,0],[4942,7500,0],[4947,7479,0],[4910,7470,0],[4925,7484,0],[4935,7488,0],[4905,7825,0],[4922,7838,0],[4939,7848,0],[4992,7439,0],[4977,7453,0],[4962,7466,0],[4972,7533,0],[4959,7517,0],[4987,7554,0],[4999,7575,0],[4957,7879,0],[4950,7857,0],[4954,7863,0],[4959,7905,0],[4975,7948,0],[4967,7935,0],[4963,7927,0],[4961,7921,0],[4988,7963,0],[5046,7354,0],[5038,7378,0],[5028,7397,0],[5017,7413,0],[5005,7426,0],[5006,7596,0],[5013,7620,0],[5020,7642,0],[5031,7678,0],[5026,7659,0],[5034,7706,0],[5035,7734,0],[5036,7776,0],[5039,7800,0],[5035,7754,0],[5040,7824,0],[5040,7849,0],[5033,7893,0],[5037,7871,0],[5029,7913,0],[5027,7932,0],[5009,7979,0],[5026,7979,0],[5026,7953,0],[5026,7998,0],[5024,7990,0],[5037,8037,0],[5030,8014,0],[5047,8064,0],[5064,7242,0],[5059,7296,0],[5062,7272,0],[5053,7324,0],[5057,8093,0]]],["Lipina",[[5685,6396,0],[5678,6444,0],[5682,6420,0],[5675,6472,0],[5670,6501,0],[5666,6530,0],[5662,6557,0],[5659,6582,0],[5656,6622,0],[5657,6601,0],[5658,6644,0],[5656,6637,0],[5692,6668,0],[5674,6660,0],[5664,6653,0],[5714,6676,0],[5732,6681,0],[5747,6684,0],[5784,6681,0],[5764,6684,0],[5804,6675,0],[5842,6682,0],[5849,6693,0],[5819,6672,0],[5829,6673,0],[5835,6675,0],[5870,6693,0],[5893,6691,0],[5856,6697,0],[5859,6712,0],[5880,6738,0],[5868,6730,0],[5891,6744,0],[5918,6699,0],[5937,6743,0],[5944,6712,0],[5901,6746,0],[5929,6776,0],[5935,6795,0],[5921,6760,0],[5913,6751,0],[5922,6751,0],[5946,6832,0],[5941,6812,0],[5948,6988,0],[5949,6963,0],[5949,7018,0],[5948,7040,0],[5937,7096,0],[5942,7075,0],[5946,7057,0],[5929,7141,0],[5933,7116,0],[5923,7196,0],[5926,7170,0],[5921,7224,0],[5917,7280,0],[5918,7251,0],[5918,7310,0],[5964,6730,0],[5990,6717,0],[5962,6720,0],[5975,6722,0],[5951,6853,0],[5954,6873,0],[5956,6893,0],[5954,6919,0],[5951,6945,0],[6010,6707,0],[6047,6702,0],[6028,6701,0],[6087,6716,0],[6067,6708,0],[6110,6727,0],[6130,6737,0],[6150,6747,0],[6176,6764,0],[6199,6780,0],[6215,6792,0],[6236,6808,0],[6263,6826,0],[6278,6837,0]]],["Kolembrody",[[7941,11837,4],[7949,11823,0],[7942,12115,0],[7989,11750,0],[7998,11740,0],[7994,11723,0],[7999,11732,0],[7972,11780,0],[7981,11763,0],[7959,11803,0],[7957,12132,0],[7973,12148,0],[7988,12163,0],[8029,11728,0],[8009,11733,0],[8020,12197,0],[8002,12178,0],[8042,12217,0],[8087,11730,0],[8056,11727,0],[8060,12233,0],[8076,12244,0],[8097,12255,0],[8132,11736,0],[8113,11733,0],[8125,12269,0],[8197,11745,0],[8175,11742,0],[8153,11739,0],[8155,12284,0],[8179,12295,0],[8197,12304,0],[8220,11748,0],[8243,11751,0],[8215,12313,0],[8232,12322,0],[8289,11757,0],[8263,11754,0],[8254,12332,0],[8279,12342,0],[8319,11761,0],[8347,11764,0],[8304,12348,0],[8331,12350,0],[8398,11772,0],[8372,11767,0],[8399,12176,0],[8398,12190,0],[8390,12202,0],[8383,12227,0],[8370,12276,0],[8376,12251,0],[8364,12306,0],[8360,12333,0],[8361,12393,0],[8360,12373,0],[8359,12353,0],[8352,12351,0],[8367,12438,0],[8363,12413,0],[8373,12464,0],[8442,11737,0],[8449,11788,0],[8428,11763,0],[8421,11788,0],[8427,11780,0],[8417,11777,0],[8416,11807,0],[8413,11826,0],[8412,11850,0],[8412,11840,0],[8408,11890,5],[8411,11858,2],[8406,11921,3],[8405,11932,0],[8404,11942,0],[8409,11985,0],[8404,11953,0],[8406,11969,0],[8415,12005,0],[8419,12027,0],[8434,12018,0],[8421,12016,0],[8423,12079,0],[8422,12051,0],[8407,12150,0],[8415,12126,0],[8421,12105,0],[8410,12194,0],[8429,12202,0],[8496,11679,0],[8483,11693,0],[8470,11707,0],[8457,11720,0],[8477,11798,0],[8481,12020,0],[8457,12020,0],[8455,12213,0],[8498,12234,0],[8480,12225,0],[8545,11627,0],[8527,11646,0],[8510,11664,0],[8530,11814,0],[8502,11806,0],[8508,12016,0],[8536,12012,0],[8542,12175,0],[8528,12199,0],[8517,12221,0],[8517,12243,0],[8509,12235,0],[8536,12252,0],[8585,11585,0],[8564,11606,0],[8561,11822,0],[8590,11827,0],[8566,12024,0],[8557,12012,0],[8567,12042,0],[8567,12087,0],[8567,12060,0],[8557,12148,0],[8565,12123,0],[8566,12108,0],[8598,12281,0],[8576,12271,0],[8556,12261,0],[8627,11540,0],[8606,11563,0],[8615,11828,0],[8640,11828,0],[8622,12293,0],[8647,12305,0],[8692,11822,0],[8664,11826,0],[8691,12324,0],[8668,12315,0],[8723,11815,0],[8746,11810,0],[8735,12327,0],[8714,12329,0],[8783,11800,0],[8764,11805,0],[8759,12323,0],[8782,12321,0],[8829,11788,0],[8802,11795,0],[8861,11780,0]]],["Karlin",[[9584,7044,0],[9631,7044,0],[9605,7046,0],[9648,7196,0],[9696,7030,0],[9674,7034,0],[9656,7039,0],[9686,7047,0],[9686,7035,0],[9686,7040,0],[9679,7082,0],[9683,7062,0],[9674,7106,0],[9668,7130,0],[9663,7153,0],[9658,7175,0],[9683,7177,0],[9669,7179,0],[9660,7179,0],[9722,7025,0],[9748,7020,0],[9731,7163,0],[9704,7171,0],[9798,7010,0],[9773,7016,0],[9783,7149,0],[9759,7156,0],[9848,7000,0],[9822,7005,0],[9848,7134,0],[9805,7144,0],[9827,7139,0],[9898,6988,0],[9873,6994,0],[9900,7122,0],[9873,7129,0],[9941,6972,0],[9921,6981,0],[9927,7115,0],[9986,6949,0],[9964,6960,0],[9998,7093,0],[9975,7101,0],[9950,7109,0],[10005,6940,0],[10025,6931,0],[10044,6923,0],[10038,7076,0],[10016,7085,0],[10064,6913,0],[10088,6902,0],[10061,7064,0],[10084,7054,0],[10136,6880,0],[10111,6892,0],[10132,6945,0],[10116,6924,0],[10106,6910,0],[10101,6900,0],[10135,7029,0],[10105,7045,0],[10119,7038,0],[10196,6849,0],[10177,6860,0],[10158,6870,0],[10154,6969,0],[10173,6992,0],[10189,7003,0],[10171,7011,0],[10154,7020,0],[10184,7005,0],[10241,6827,0],[10216,6839,0],[10231,6983,0],[10207,6994,0],[10274,6813,0],[10299,6817,0],[10292,6808,0],[10259,6971,0],[10282,6961,0],[10305,6798,0],[10347,6777,0],[10329,6786,0],[10314,6837,0],[10335,6864,0],[10306,6948,0],[10330,6936,0],[10372,6764,0],[10399,6751,0],[10351,6887,0],[10375,6916,0],[10352,6926,0],[10364,6905,0],[10396,6907,0],[10372,6917,0],[10432,6748,0],[10418,6745,0],[10446,6763,0],[10422,6895,0],[10448,6883,0],[10471,6798,0],[10459,6781,0],[10485,6818,0],[10491,6861,0],[10469,6874,0],[10500,6840,0],[10543,6900,0],[10528,6879,0],[10515,6860,0],[10506,6853,0],[10559,6921,0]]],["SobĆ³tka",[[5815,10086,0],[5840,10099,0],[5880,10118,0],[5862,10109,0],[5897,10127,0],[5931,10147,0],[5913,10136,0],[5947,10156,0],[5964,10166,0],[5982,10176,0],[6000,10188,0],[6044,10216,0],[6020,10201,0],[6073,10231,0],[6098,10241,0],[6141,10230,0],[6119,10240,0],[6127,10240,0],[6134,10254,0],[6200,10195,0],[6179,10207,0],[6161,10218,0],[6152,10276,0],[6172,10298,0],[6197,10344,0],[6186,10319,0],[6224,10090,0],[6218,10075,0],[6234,10112,0],[6244,10135,0],[6238,10171,0],[6219,10183,0],[6220,10393,0],[6207,10370,0],[6241,10405,0],[6252,10153,0],[6288,10181,0],[6264,10172,0],[6274,10178,0],[6257,10164,0],[6252,10162,0],[6300,10233,0],[6297,10253,0],[6296,10273,0],[6295,10287,0],[6295,10307,0],[6295,10331,0],[6291,10396,0],[6293,10373,0],[6295,10351,0],[6288,10422,0],[6262,10405,0],[6276,10404,0],[6286,10405,0],[6289,10479,0],[6287,10450,0],[6294,10503,0],[6345,9818,0],[6338,9849,0],[6334,9873,0],[6332,9887,0],[6336,9889,0],[6343,9886,0],[6333,9904,0],[6334,9929,0],[6335,9977,0],[6335,9952,0],[6331,10024,0],[6334,10001,0],[6328,10045,0],[6321,10084,0],[6325,10064,0],[6317,10105,0],[6314,10124,0],[6312,10143,0],[6308,10169,0],[6305,10195,0],[6302,10184,0],[6348,10245,0],[6328,10227,0],[6302,10214,0],[6314,10214,0],[6306,10207,0],[6302,10525,0],[6315,10553,0],[6328,10581,0],[6341,10609,0],[6350,9792,0],[6353,9773,0],[6393,9848,0],[6374,9863,0],[6354,9879,0],[6369,10262,0],[6384,10276,0],[6395,10282,0],[6356,10640,0],[6369,10669,0],[6381,10693,0],[6387,10689,0],[6390,10713,0],[6442,9808,0],[6423,9823,0],[6407,9836,0],[6431,10275,0],[6410,10281,0],[6403,10697,0],[6431,10710,0],[6487,10254,0],[6457,10265,0],[6520,10242,0],[6548,10232,0],[6582,10242,0],[6563,10228,0],[6575,10233,0],[6570,10230,0],[6594,10262,0],[6610,10287,0],[6649,10320,0],[6626,10308,0],[6648,10395,0],[6648,10418,0],[6698,10292,0],[6676,10312,0],[6661,10339,0],[6681,10325,0],[6654,10368,0],[6659,10441,0],[6676,10468,0],[6694,10487,0],[6743,10238,0],[6718,10273,0],[6733,10255,0],[6728,10330,0],[6707,10328,0],[6753,10220,0]]],["Roztoka",[[7383,4935,0],[7402,4943,0],[7423,4951,0],[7441,4959,0],[7466,4970,0],[7493,4986,0],[7492,5374,0],[7481,5370,0],[7472,5368,0],[7490,5712,0],[7475,5736,0],[7464,5752,0],[7535,4864,0],[7545,4879,0],[7515,5002,0],[7533,5018,0],[7544,5031,0],[7546,5397,0],[7514,5389,0],[7502,5381,0],[7528,5394,0],[7534,5630,0],[7546,5604,0],[7506,5686,0],[7521,5658,0],[7556,4895,0],[7571,4917,0],[7591,4941,0],[7595,5032,0],[7552,5047,0],[7573,5050,0],[7574,5095,0],[7566,5076,0],[7559,5062,0],[7561,5059,0],[7582,5121,0],[7590,5150,0],[7596,5193,0],[7597,5178,0],[7596,5181,0],[7594,5167,0],[7596,5174,0],[7598,5238,0],[7596,5212,0],[7585,5407,0],[7566,5400,0],[7587,5529,0],[7598,5505,0],[7560,5578,0],[7574,5553,0],[7608,4960,0],[7621,4973,0],[7628,4985,0],[7629,4997,0],[7615,5016,0],[7625,5005,0],[7631,5176,0],[7610,5176,0],[7607,5288,0],[7601,5263,0],[7615,5316,0],[7624,5346,0],[7636,5365,0],[7646,5409,0],[7607,5415,0],[7629,5434,0],[7636,5423,0],[7623,5419,0],[7635,5420,0],[7631,5420,0],[7619,5457,0],[7608,5484,0],[7633,5782,0],[7650,5765,0],[7617,5800,0],[7696,5192,0],[7700,5169,0],[7653,5176,0],[7674,5177,0],[7694,5178,0],[7687,5177,0],[7689,5247,0],[7691,5218,0],[7696,5300,0],[7690,5275,0],[7652,5375,0],[7671,5384,0],[7690,5390,0],[7657,5395,0],[7667,5387,0],[7663,5390,0],[7697,5685,0],[7685,5713,0],[7674,5735,0],[7663,5750,0],[7719,5098,0],[7731,5070,0],[7727,5085,0],[7735,5057,0],[7706,5128,0],[7702,5150,0],[7710,5110,0],[7706,5327,0],[7716,5359,0],[7723,5386,0],[7708,5395,0],[7722,5398,0],[7738,5447,0],[7736,5428,0],[7728,5404,0],[7732,5415,0],[7740,5468,0],[7742,5483,0],[7743,5492,0],[7746,5500,0],[7738,5584,0],[7747,5562,0],[7738,5623,0],[7718,5639,0],[7730,5608,0],[7725,5625,0],[7707,5659,0],[7774,5043,0],[7791,5034,0],[7750,5051,0],[7751,5519,0],[7752,5543,0],[7785,5607,0],[7761,5614,0],[7772,5610,0],[7805,5024,0],[7821,5016,0],[7838,5013,0],[7840,5609,0],[7843,5630,0],[7825,5618,0],[7806,5609,0],[7819,5612,0],[7893,4974,0],[7874,4995,0],[7852,5010,0],[7863,5005,0],[7874,5602,0],[7856,5643,0],[7868,5679,0],[7863,5659,0],[7873,5732,0],[7870,5705,0],[7878,5775,0],[7875,5756,0],[7947,4926,0],[7927,4939,0],[7912,4953,0],[7907,5593,0],[7933,5587,0],[7969,4918,0],[7984,4913,0],[7978,5573,0],[7951,5581,0],[8040,5545,0],[8005,5564,0],[8023,5555,0],[8064,5533,0],[8089,5521,0],[8129,5494,0],[8145,5477,0],[8110,5509,0],[8176,5438,0],[8163,5444,0],[8155,5458,0]]],["Polana",[[2841,1930,0],[2827,2296,0],[2812,2287,0],[2846,2316,0],[2889,1973,0],[2865,1951,0],[2864,2337,0],[2898,2368,0],[2878,2351,0],[2912,1990,0],[2931,2004,0],[2936,2389,0],[2915,2380,0],[2925,2384,0],[2957,2020,0],[2982,2033,0],[2953,2399,0],[2973,2411,0],[2992,2423,0],[3002,2039,0],[3022,2042,0],[3042,2045,0],[3012,2438,0],[3047,2475,0],[3031,2457,0],[3069,2048,0],[3099,2051,0],[3064,2496,0],[3078,2515,0],[3087,2547,0],[3085,2527,0],[3088,2535,0],[3085,2571,0],[3115,1695,0],[3100,1674,0],[3135,1723,0],[3126,2050,0],[3103,2537,0],[3145,2542,0],[3126,2537,0],[3152,1744,0],[3174,1792,0],[3167,1770,0],[3162,1757,0],[3196,1848,0],[3184,1820,0],[3154,2045,0],[3178,2037,0],[3185,2543,0],[3165,2545,0],[3218,1885,0],[3206,1868,0],[3236,1902,0],[3202,2028,0],[3226,2022,0],[3244,2021,0],[3207,2539,0],[3228,2534,0],[3251,1915,0],[3262,1928,0],[3267,1941,0],[3270,1959,0],[3272,1981,0],[3275,1996,0],[3270,2022,0],[3297,2023,0],[3280,2009,0],[3284,2020,0],[3265,2545,0],[3253,2528,0],[3281,2520,0],[3251,2531,0],[3290,2564,0],[3320,2022,0],[3339,2021,0],[3347,2182,0],[3339,2213,0],[3339,2241,0],[3347,2282,0],[3342,2261,0],[3347,2465,0],[3333,2486,0],[3318,2501,0],[3302,2511,0],[3319,2576,0],[3342,2587,0],[3384,1943,0],[3395,1917,0],[3374,1966,0],[3365,1986,0],[3360,2004,0],[3359,2037,0],[3359,2021,0],[3353,2020,0],[3363,2079,0],[3360,2055,0],[3390,2092,0],[3373,2091,0],[3368,2106,0],[3368,2133,0],[3359,2157,0],[3361,2330,0],[3354,2305,0],[3366,2357,0],[3368,2381,0],[3362,2424,0],[3357,2444,0],[3366,2402,0],[3359,2596,0],[3382,2610,0],[3444,1786,0],[3428,1829,0],[3435,1812,0],[3422,1847,0],[3406,1889,0],[3416,1864,0],[3438,2096,0],[3411,2092,0],[3479,1697,0],[3468,1725,0],[3456,1754,0],[3496,2111,0],[3467,2102,0],[3522,2125,0],[3541,2140,0],[3574,2165,0],[3556,2152,0],[3594,2174,0],[3642,2167,0],[3613,2176,0],[3625,2172,0],[3670,2159,0],[3698,2151,0],[3727,2148,0],[3774,2154,0],[3752,2151,0]]],["Dolnik",[[10850,724,0],[10817,717,0],[10831,722,0],[10823,721,0],[10878,727,0],[10876,900,0],[10909,732,0],[10936,738,0],[10929,876,0],[10903,887,0],[10921,895,0],[10917,887,0],[10905,890,0],[10905,897,0],[10937,900,0],[10900,923,0],[10904,915,0],[10905,905,0],[10956,744,0],[10976,750,0],[10995,755,0],[10955,864,0],[10982,852,0],[10984,898,0],[10961,900,0],[11018,757,0],[11046,755,0],[11005,841,0],[11024,830,0],[11040,819,0],[11007,895,0],[11028,894,0],[11038,1025,0],[11020,1038,0],[11094,740,0],[11071,748,0],[11063,812,0],[11088,809,0],[11084,898,0],[11054,894,0],[11075,993,0],[11092,973,0],[11056,1012,0],[11122,731,0],[11145,725,0],[11145,803,0],[11126,806,0],[11107,808,0],[11102,915,0],[11106,939,0],[11102,958,0],[11165,745,0],[11156,726,0],[11196,785,0],[11168,796,0],[11175,772,0],[11180,788,0],[11224,769,0],[11243,752,0],[11287,707,0],[11273,722,0],[11258,738,0],[11335,659,0],[11318,676,0],[11302,692,0],[11354,639,0],[11372,619,0],[11389,602,0],[11438,556,0],[11405,586,0],[11421,570,0],[11461,537,0],[11481,521,0],[11496,509,0],[11516,493,0],[11539,474,0],[11576,443,0],[11593,430,0],[11558,458,0],[11639,395,0],[11609,417,0],[11624,405,0],[11658,387,0],[11687,382,0],[11673,382,0],[11681,380,0],[11691,392,0],[11691,387,0],[11691,396,0],[11698,428,0],[11694,417,0],[11692,409,0],[11691,401,0],[11715,447,0],[11706,438,0],[11732,460,0],[11758,475,0]]],["Grabin",[[10229,10845,0],[10249,10861,0],[10283,10888,0],[10265,10873,0],[10288,11296,0],[10266,11308,0],[10318,10927,0],[10302,10905,0],[10333,10948,0],[10346,10966,0],[10343,11254,0],[10325,11270,0],[10308,11283,0],[10360,10985,0],[10395,11024,0],[10375,11003,0],[10361,11240,0],[10377,11227,0],[10391,11215,0],[10420,11047,0],[10444,11068,0],[10445,11187,0],[10425,11195,0],[10407,11204,0],[10468,11089,0],[10458,11080,0],[10490,11106,0],[10468,11179,0],[10489,11171,0],[10518,11125,0],[10532,11149,0],[10543,11142,0],[10538,11138,0],[10549,11145,0],[10513,11160,0],[10547,11481,0],[10534,11494,0],[10531,11506,0],[10598,11078,0],[10581,11098,0],[10556,11129,0],[10569,11113,0],[10584,11165,0],[10564,11153,0],[10570,11465,0],[10590,11451,0],[10627,11044,0],[10641,11028,0],[10614,11059,0],[10628,11191,0],[10605,11178,0],[10650,11203,0],[10609,11436,0],[10644,11410,0],[10627,11423,0],[10691,10969,0],[10670,10994,0],[10696,10998,0],[10684,10986,0],[10654,11013,0],[10685,11219,0],[10668,11212,0],[10699,11372,0],[10662,11396,0],[10679,11384,0],[10740,10912,0],[10724,10931,0],[10709,10948,0],[10715,11016,0],[10735,11035,0],[10742,11248,0],[10723,11234,0],[10704,11225,0],[10721,11363,0],[10739,11363,0],[10797,10847,0],[10776,10871,0],[10757,10893,0],[10774,11071,0],[10753,11052,0],[10794,11087,0],[10761,11259,0],[10799,11259,0],[10780,11262,0],[10759,11369,0],[10781,11378,0],[10839,10800,0],[10819,10823,0],[10811,11099,0],[10829,11112,0],[10845,11123,0],[10835,11241,0],[10848,11234,0],[10819,11250,0],[10826,11384,0],[10803,11382,0],[10898,10727,0],[10859,10776,0],[10880,10751,0],[10878,11144,0],[10860,11133,0],[10891,11195,0],[10897,11156,0],[10863,11223,0],[10878,11211,0],[10888,11388,0],[10854,11386,0],[10926,10605,0],[10950,10628,0],[10944,10644,0],[10940,10626,0],[10946,10636,0],[10927,10678,0],[10937,10659,0],[10914,10702,0],[10950,11062,0],[10940,11085,0],[10915,11143,0],[10931,11106,0],[10923,11123,0],[10916,11169,0],[10934,11184,0],[10901,11181,0],[10907,11171,0],[10908,11159,0],[10922,11389,0],[10986,11013,0],[10972,11028,0],[10961,11043,0],[10966,11220,0],[10951,11201,0],[10980,11238,0],[10992,11254,0],[10955,11389,0],[10986,11389,0],[11001,10998,0],[11017,10985,0],[11032,10974,0],[11007,11274,0],[11019,11289,0],[11028,11301,6],[11045,11323,6],[11084,10944,0],[11055,10961,0],[11114,10926,0],[11142,10911,0]]]] diff --git a/A3-Antistasi/Templates/A3-Malden-Template.Malden/description.ext b/A3-Antistasi/Templates/A3-Malden-Template.Malden/description.ext deleted file mode 100644 index c5677c72d8..0000000000 --- a/A3-Antistasi/Templates/A3-Malden-Template.Malden/description.ext +++ /dev/null @@ -1,436 +0,0 @@ -#include "defines.hpp" -#include "dialogs.hpp" - -author = $STR_antistasi_credits_generic_author_text; -OnLoadName = $STR_antistasi_mission_info_malden_mapname_text; -OnLoadMission = $STR_antistasi_mission_info_malden_blurb_text; -loadScreen = "pic.jpg"; - -overviewText = $STR_antistasi_mission_info_malden_description_text; -overviewPicture = "pic.jpg"; - -allowFunctionsLog = 1; -enableDebugConsole[] = {"76561197979729653","76561198034977762","76561198127254055","76561197981991967","76561198274184887","76561198011383725","76561198304402577","76561197993874267"}; - -//If we have CBA for TFAR, then load the mission's settings. -cba_settings_hasSettingsFile = 1; - -respawn = "BASE"; -respawnDelay = 15; -respawnVehicleDelay = 120; -respawnDialog = 1; -aiKills = 0; -disabledAI=1; -Saving = 0; -showCompass=1; -showRadio=1; -showGPS=1; -showMap=1; -showBinocular=1; -showNotepad=1; -showWatch=1; -debriefing=1; - -//showGroupIndicator = 1; - -class CfgTaskEnhancements - { - enable = 1; //0: disable new task features (default), 1: enable new task features & add new task markers and task widgets into the map - 3d = 1; //0: do not use new 3D markers (default), 1: replace task waypoints with new 3D markers - 3dDrawDist = 3500; //3d marker draw distance (default: 2000) - share = 1; //0: do not count assigned players (default), 1: count how many players have the task assigned - propagate = 1; //0: do not propagate (default), 1: propagate shared tasks to subordinates - }; - -class CfgFunctions { - #include "functions.hpp" - #include "JeroenArsenal\functions.hpp" -}; -class Header -{ -gameType = COOP; -minplayers=1; -maxplayers=61; -}; - -class CfgSounds -{ - class fire - { - name="fire"; - sound[]={"Music\fire.ogg",db+12,1.0}; - titles[]={}; - }; -}; -class Params -{ - class loadSave - { - title = "Load last Persistent Save"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class gameMode - { - title = "Game Mode"; // Param name visible in the list - values[] = {1,2,3,4}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Reb vs Gov vs Inv","Reb vs Gov & Inv","Reb vs Gov","Reb vs Inv"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class autoSave - { - title = "Enable Autosave (every hour)"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class membership - { - title = "Enable Server Membership"; - texts[] = {"Yes","No"}; - values[] = {1,0}; - default = 1; - //function = "BIS_fnc_paramDaytime"; // (Optional) [[Functions_Library_(Arma_3)|Function]] [[call]]ed when player joins, selected value is passed as an argument - //isGlobal = 1; // (Optional) 1 to execute script / function locally for every player who joins, 0 to do it only on server - }; - class switchComm - { - title = "Enable Commander Switch (highest ranked player)"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class tkPunish - { - title = "Enable Teamkill Punish"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class mRadius - { - title = "Distance from HQ for Sidemissions"; - values[] = {2500,5000,10000}; - // When 'texts' are missing, values will be displayed directly instead - default = 2500; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowPvP - { - title = "Allow PvP Slots"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class pMarkers - { - title = "Allow Friendly Player Markers"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class AISkill - { - title = "AI Skill"; - values[] = {0.5,1,2}; - texts[] = {"Easy","Normal","Hard"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class unlockItem - { - title = "Number of the same weapons required to unlock"; - values[] = {15,25,40}; - default = 25; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberOnlyMagLimit - { - title = "Number of magazines needed for guests to be able to use them"; - values[] = {10,20,30,40,50,60}; - default = 40; - }; - class civTraffic - { - title = "Rate of Civ Traffic"; - values[] = {0.5,1,3}; - texts[] = {"Low","Medium","JAM"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberSlots - { - title = "Percentage of Reserved Slots for Members"; - values[] = {0,20,40,60,80,100}; - texts[] = {"None","20%","40%","60%","80%","All"}; - default = 20; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberDistance - { - title = "Max distance non members can be from the closest member or HQ (they will be teleported to HQ after some timeout)"; - values[] = {4000,5000,6000,7000,8000,16000}; - texts[] = {"4 Kmts","5 Kmts","6 Kmts","7 Kmts","8 Kmts","Unlimited"}; - default = 5000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowFT - { - title = "Limited Fast Travel"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class napalmEnabled - { - title = "Enable Napalm Bombing for AI"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 0; - }; - class teamSwitchDelay - { - title = "Delay After Leaving Before a Player Can Join Another Team"; - values[] = {0, 900, 1800, 3600}; - texts[] = {"No delay","15 minutes","30 minutes","60 minutes"}; - default = 3600; - }; -}; - -class CfgIdentities -{ - class protagonista - { - name = "Pulu"; - nameSound = "Warlock"; - face="TanoanBossHead"; - glasses="None"; - speaker="Male01ENGFRE"; - pitch=1.1; - }; - class friendlyX - { - name = "Maru"; - nameSound = "Warlock"; - face="TanoanBossHead"; - glasses="None"; - speaker="Male01ENGFRE"; - pitch=1.1; - }; - class Anthis - { - name = "Anthis"; - nameSound = "Anthis"; - face="TanoanHead_A3_01"; - glasses="None"; - speaker="Male02CHI"; - pitch=1.1; - }; - class Costa - { - name = "Costa"; - nameSound = "Costa"; - face="TanoanHead_A3_02"; - glasses="None"; - speaker="Male03CHI"; - pitch=1.1; - }; - class Dimitirou - { - name = "Dimitirou"; - nameSound = "Dimitirou"; - face="TanoanHead_A3_03"; - glasses="None"; - speaker="Male01FRE"; - pitch=1.1; - }; - class Elias - { - name = "Elias"; - nameSound = "Elias"; - face="TanoanHead_A3_04"; - glasses="None"; - speaker="Male02FRE"; - pitch=1.1; - }; - class Gekas - { - name = "Gekas"; - nameSound = "Gekas"; - face="TanoanHead_A3_05"; - glasses="None"; - speaker="Male03FRE"; - pitch=1.1; - }; - class Kouris - { - name = "Kouris"; - nameSound = "Kouris"; - face="TanoanHead_A3_06"; - glasses="None"; - speaker="Male01CHI"; - pitch=1.1; - }; - class Leventis - { - name = "Leventis"; - nameSound = "Leventis"; - face="TanoanHead_A3_07"; - glasses="None"; - speaker="Male02CHI"; - pitch=1.1; - }; - class Markos - { - name = "Markos"; - nameSound = "Markos"; - face="TanoanHead_A3_08"; - glasses="None"; - speaker="Male03CHI"; - pitch=1.1; - }; - class Nikas - { - name = "Nikas"; - nameSound = "Nikas"; - face="CamoHead_Asian_03_F"; - glasses="None"; - speaker="Male03FRE"; - pitch=1.1; - }; - class Nicolo - { - name = "Nicolo"; - nameSound = "Nicolo"; - face="CamoHead_Asian_02_F"; - glasses="None"; - speaker="Male02FRE"; - pitch=1.1; - }; - class Panas - { - name = "Panas"; - nameSound = "Panas"; - face="CamoHead_Asian_01_F"; - glasses="None"; - speaker="Male01FRE"; - pitch=1.1; - }; - class Rosi - { - name = "Rosi"; - nameSound = "Rosi"; - face="AsianHead_A3_01"; - glasses="None"; - speaker="Male01CHI"; - pitch=1.1; - }; - class Samaras - { - name = "Samaras"; - nameSound = "Samaras"; - face="WhiteHead_06"; - glasses="None"; - speaker="AsianHead_A3_02"; - pitch=1.1; - }; - class Thanos - { - name = "Thanos"; - nameSound = "Thanos"; - face="AsianHead_A3_03"; - glasses="None"; - speaker="Male02ENGFRE"; - pitch=1.1; - }; - class Vega - { - name = "Vega"; - nameSound = "Vega"; - face="AsianHead_A3_04"; - glasses="None"; - speaker="Male02ENGFRE"; - pitch=1.1; - }; -}; - -/* -class CfgMusic -{ - tracks[]={}; - - class DBS - { - name = ""; - sound[] = {"\music\dbs.ogg", db+5, 1.0}; - }; - -}; -*/ -class CfgDebriefing -{ - class End1 - { - title = "V I C T O R Y"; - subtitle = "Malden is Ours!"; - description = "The population of Malden loves you!
The SDK brave soldiers have proven their valour, and Petros, Maldens 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 = "Maru is Dead"; - subtitle = "Maru is Dead"; - description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Malden"; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class destroyedCities - { - title = "Malden is Destroyed"; - subtitle = "Malden got Destroyed by CSAT"; - description = "One third of the population in Malden has been murdered by CSAT.
Malden no longer exists, nobody wants to live here."; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class modUnautorized - { - title = "Incompatible Mods"; - subtitle = "Incompatible Mods detected"; - description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class serverFull - { - title = "Reserved Slot"; - subtitle = "This slot is reserved"; - description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class noPvP - { - title = "Slot Unavailable"; - subtitle = "This slot is unavailable"; - description = "Sorry, but this slot is unavailable for some reson: player not member, match not initialised, lack of Syndikat commander or recent role as Syndikat."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class hcDown - { - title = "HC Disconnected"; - subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; -}; diff --git a/A3-Antistasi/Templates/A3-Malden-Template.Malden/roadsDBmalden.sqf b/A3-Antistasi/Templates/A3-Malden-Template.Malden/roadsDBmalden.sqf deleted file mode 100644 index 139727c926..0000000000 --- a/A3-Antistasi/Templates/A3-Malden-Template.Malden/roadsDBmalden.sqf +++ /dev/null @@ -1 +0,0 @@ -{roadsX setVariable [_x select 0,_x select 1]} forEach [["Larche",[[5539,8701,0],[5567,8691,0],[5557,8696,0],[5599,8632,0],[5594,8643,0],[5587,8661,0],[5591,8652,0],[5578,8678,0],[5620,8613,0],[5608,8621,0],[5639,8603,0],[5661,8590,0],[5678,8582,0],[5692,8579,0],[5721,8587,0],[5707,8581,0],[5739,8598,0],[5759,8607,0],[5777,8613,0],[5795,8621,0],[5818,8628,0],[5842,8637,0],[5862,8643,0],[5881,8491,0],[5879,8481,0],[5886,8518,0],[5883,8505,0],[5895,8529,0],[5880,8642,0],[5924,8545,0],[5909,8538,0],[5904,8641,0],[5937,8551,0],[5944,8555,0],[5929,8641,0],[5946,8641,0],[5964,8568,0],[5954,8560,0],[5963,8557,0],[5971,8555,0],[5959,8563,0],[5971,8576,0],[5967,8644,0],[5957,8643,0],[5999,8544,0],[5981,8551,0],[5996,8600,0],[5979,8583,0],[5987,8591,0],[6000,8640,0],[5981,8644,0],[6017,8538,0],[6004,8611,0],[6007,8622,0],[6020,8635,0],[6012,8644,0],[6009,8631,0],[6020,8669,0],[6015,8654,0],[6023,8839,0],[6018,8852,0],[6018,8863,0],[6017,8880,0],[6016,8894,0],[6034,8535,0],[6049,8532,0],[6026,8541,0],[6029,8557,0],[6036,8583,0],[6044,8596,0],[6050,8595,0],[6043,8608,0],[6045,8623,0],[6037,8630,0],[6026,8685,0],[6033,8695,0],[6039,8704,0],[6042,8714,0],[6040,8737,0],[6037,8766,0],[6037,8789,0],[6032,8823,0],[6038,8806,0],[6058,8530,0],[6066,8587,0],[6074,8581,0],[6057,8592,0],[6070,8623,0],[6055,8625,0],[6092,8574,0],[6082,8577,0],[6096,8634,0],[6082,8626,0],[6108,8574,0],[6123,8576,0],[6118,8648,0],[6136,8577,0],[6150,8577,0],[6139,8659,0],[6165,8578,0],[6153,8665,0],[6165,8667,0],[6197,8574,0],[6182,8577,0],[6199,8675,0],[6180,8669,0],[6216,8572,0],[6225,8683,0],[6238,8572,0],[6261,8571,0],[6254,8689,0],[6275,8693,0],[6282,8569,0],[6297,8567,0],[6297,8699,0],[6320,8561,0],[6307,8565,0],[6321,8707,0],[6342,8552,0],[6340,8715,0],[6371,8542,0],[6363,8724,0],[6364,8847,0],[6369,8836,0],[6360,8860,0],[6356,8873,0],[6352,8884,0],[6354,8879,0],[6397,8533,0],[6393,8735,0],[6396,8795,0],[6383,8814,0],[6390,8804,0],[6375,8825,0],[6414,8527,0],[6416,8762,0],[6412,8771,0],[6419,8755,0],[6402,8787,0],[6408,8779,0],[6445,8499,0],[6428,8519,0],[6426,8745,0],[6463,8472,0],[6457,8753,0],[6484,8760,0]]],["La TrinitĆ©",[[6798,8028,0],[6799,8040,0],[6782,8039,0],[6819,8012,0],[6819,8040,0],[6848,7966,0],[6835,7990,0],[6838,8036,0],[6874,7878,0],[6861,7902,0],[6856,7925,0],[6854,7945,0],[6864,8029,0],[6900,7842,0],[6888,7858,0],[6892,8026,0],[6923,7814,0],[6912,7826,0],[6914,8023,0],[6942,7801,0],[6934,8018,0],[6965,7787,0],[6958,8015,0],[6974,8014,0],[6973,8074,0],[6970,8085,0],[6967,8096,0],[6974,8125,0],[6970,8115,0],[6967,8105,0],[6995,7739,0],[6985,7764,0],[6978,7777,0],[6992,8009,0],[6979,8013,0],[6992,8060,0],[6978,8064,0],[6975,8067,0],[6978,8134,0],[6999,8146,0],[6988,8145,0],[6982,8140,0],[7018,7692,0],[7007,7711,0],[7013,8003,0],[7000,8005,0],[7012,8054,0],[7024,8051,0],[7017,8149,0],[7009,8146,0],[7024,8151,0],[7049,7592,0],[7040,7614,0],[7034,7633,0],[7032,7647,0],[7034,7660,0],[7039,7670,0],[7031,7681,0],[7040,7677,0],[7046,7862,0],[7041,7896,0],[7039,7877,0],[7048,7918,0],[7034,8002,0],[7033,8021,0],[7030,8006,0],[7031,8013,0],[7031,8041,0],[7028,8048,0],[7034,8034,0],[7034,8030,0],[7057,7570,0],[7065,7552,0],[7052,7678,0],[7071,7684,0],[7060,7848,0],[7053,7941,0],[7054,7970,0],[7054,7998,0],[7054,7989,0],[7057,8001,0],[7074,8165,0],[7053,8166,0],[7092,7512,0],[7078,7532,0],[7095,7692,0],[7092,7813,0],[7075,7833,0],[7077,8000,0],[7092,7997,0],[7113,7465,0],[7102,7496,0],[7109,7481,0],[7120,7703,0],[7123,7750,0],[7118,7762,0],[7110,7782,0],[7103,7796,0],[7123,7966,0],[7111,7983,0],[7102,7993,0],[7104,7998,0],[7113,8002,0],[7100,8160,0],[7115,8151,0],[7145,7717,0],[7143,7722,0],[7135,7734,0],[7126,7744,0],[7137,7944,0],[7149,7927,0],[7140,8017,0],[7126,8007,0],[7126,8139,0],[7141,8134,0],[7174,7734,0],[7159,7917,0],[7168,7913,0],[7165,8049,0],[7154,8030,0],[7162,8137,0],[7194,7744,0],[7190,7912,0],[7180,8069,0],[7185,8143,0],[7211,7749,0],[7220,7911,0],[7208,7916,0],[7212,7934,0],[7219,7947,0],[7217,7957,0],[7222,7976,0],[7225,7991,0],[7218,8092,0],[7200,8082,0],[7204,8150,0],[7219,8158,0],[7231,7758,0],[7243,7770,0],[7249,7766,0],[7248,7780,0],[7245,7911,0],[7232,7947,0],[7234,8106,0],[7245,8123,0],[7250,8134,0],[7247,8162,0],[7228,8165,0],[7238,8174,0],[7233,8170,0],[7240,8182,0],[7237,8218,0],[7236,8201,0],[7239,8240,0],[7243,8261,0],[7248,8288,0],[7258,7771,0],[7251,7795,0],[7273,7776,0],[7254,7814,0],[7261,7835,0],[7267,7857,0],[7272,7870,0],[7269,7899,0],[7268,7878,0],[7264,7911,0],[7269,7928,0],[7250,7946,0],[7265,7946,0],[7270,7959,0],[7270,7983,0],[7271,8025,0],[7271,8003,0],[7269,8048,0],[7265,8071,0],[7261,8095,0],[7256,8123,0],[7252,8147,0],[7262,8166,0],[7253,8164,0],[7269,8168,0],[7255,8323,0],[7260,8356,0],[7266,8387,0],[7270,8412,0],[7287,7781,0],[7284,7882,0],[7290,7889,0],[7278,7876,0],[7297,7921,0],[7294,7902,0],[7300,7917,0],[7288,7973,0],[7275,7973,0],[7299,8010,0],[7276,8012,0],[7283,8012,0],[7283,8169,0],[7298,8170,0],[7303,7788,0],[7319,7794,0],[7308,7915,0],[7301,7941,0],[7305,7963,0],[7301,7973,0],[7310,7987,0],[7324,8008,0],[7313,8005,0],[7312,8170,0],[7342,7794,0],[7331,7797,0],[7326,7911,0],[7346,7906,0],[7342,8007,0],[7341,8164,0],[7325,8170,0],[7357,7785,0],[7373,7776,0],[7359,7899,0],[7371,7889,0],[7367,8001,0],[7356,8004,0],[7366,8151,0],[7356,8157,0],[7389,7764,0],[7381,7770,0],[7398,7875,0],[7379,7883,0],[7397,7980,0],[7380,7993,0],[7383,8141,0],[7398,8132,0],[7403,7761,0],[7417,7762,0],[7425,7865,0],[7418,7964,0],[7415,7994,0],[7404,7979,0],[7407,8126,0],[7430,7768,0],[7442,7773,0],[7449,7775,0],[7444,7858,0],[7442,7948,0],[7429,8014,0],[7436,8025,0],[7441,8038,0],[7442,8060,0],[7438,8069,0],[7445,8052,0],[7458,7778,0],[7467,7835,0],[7462,7848,0],[7457,7853,0],[7463,7932,0],[7477,7782,0],[7483,7798,0],[7495,7786,0],[7488,7788,0],[7475,7815,0],[7488,7914,0],[7516,7793,0],[7505,7789,0],[7513,7896,0],[7530,7798,0],[7545,7803,0],[7534,7881,0],[7560,7809,0],[7573,7815,0],[7567,7860,0],[7552,7870,0],[7597,7822,0],[7583,7820,0],[7589,7822,0],[7581,7844,0],[7590,7830,0],[7603,7818,0],[7617,7807,0],[7612,7812,0],[7627,7799,0],[7642,7794,0],[7657,7792,0],[7667,7790,0],[7692,7790,0],[7678,7788,0],[7719,7787,0],[7705,7792,0],[7731,7777,0]]],["La Pessagne",[[2998,6049,0],[2999,6069,0],[3020,5844,0],[3007,5922,0],[3009,5913,0],[3005,5938,0],[3010,5965,0],[3005,5954,0],[3017,5975,0],[3015,5988,0],[3007,6008,0],[3001,6030,0],[3001,6092,0],[3004,6112,0],[3010,6130,0],[3020,6155,0],[3041,5847,0],[3049,5906,0],[3039,5932,0],[3027,5962,0],[3028,6179,0],[3032,6202,0],[3036,6228,0],[3040,6251,0],[3043,6276,0],[3047,6299,0],[3062,5835,0],[3056,5848,0],[3058,5862,0],[3054,5884,0],[3050,6316,0],[3057,6332,0],[3068,6340,0],[3087,6340,0],[3118,6334,0],[3102,6342,0],[3106,6359,0],[3112,6382,0],[3119,6392,0],[3119,6403,0],[3104,6823,0],[3122,6815,0],[3133,6388,0],[3126,6422,0],[3135,6442,0],[3145,6462,0],[3146,6597,0],[3141,6611,0],[3140,6622,0],[3146,6634,0],[3139,6804,0],[3153,6326,0],[3172,6337,0],[3171,6327,0],[3174,6350,0],[3174,6365,0],[3154,6383,0],[3169,6376,0],[3150,6480,0],[3154,6503,0],[3155,6531,0],[3154,6559,0],[3152,6581,0],[3157,6650,0],[3172,6667,0],[3173,6761,0],[3152,6790,0],[3162,6776,0],[3188,6318,0],[3187,6685,0],[3198,6702,0],[3186,6748,0],[3194,6738,0],[3199,6728,0],[3218,6311,0],[3202,6716,0],[3243,6302,0],[3268,6291,0],[3296,6275,0],[3323,6261,0],[3345,6257,0],[3372,6256,0],[3398,6258,0],[3423,6264,0],[3457,6273,0],[3483,6283,0],[3503,6293,0],[3524,6307,0],[3545,6328,0],[3565,6357,0],[3580,6382,0],[3591,6401,0],[3602,6421,0]]],["Chapoi",[[5344,3561,0],[5368,3551,0],[5397,3541,0],[5381,3735,0],[5422,3534,0],[5401,3743,0],[5418,3751,0],[5443,3532,0],[5435,3760,0],[5471,3526,0],[5455,3771,0],[5472,3783,0],[5499,3518,0],[5489,3799,0],[5515,3513,0],[5501,3822,0],[5505,3844,0],[5508,3864,0],[5515,3880,0],[5535,3512,0],[5532,3899,0],[5560,3512,0],[5570,3924,0],[5552,3915,0],[5579,3512,0],[5596,3937,0],[5605,3515,0],[5618,3951,0],[5634,3519,0],[5631,3970,0],[5654,3067,0],[5658,3094,0],[5655,3083,0],[5665,3105,0],[5674,3463,0],[5670,3483,0],[5660,3524,0],[5668,3503,0],[5668,3517,0],[5670,3543,0],[5668,3533,0],[5672,3555,0],[5674,3567,0],[5670,3994,0],[5677,3123,0],[5695,3147,0],[5688,3400,0],[5686,3413,0],[5682,3437,0],[5683,3528,0],[5682,3581,0],[5696,3602,0],[5693,3979,0],[5712,3171,0],[5723,3358,0],[5725,3353,0],[5702,3531,0],[5706,3623,0],[5715,3612,0],[5707,3614,0],[5711,3642,0],[5715,3660,0],[5718,3677,0],[5723,3686,0],[5722,3701,0],[5712,3969,0],[5725,3189,0],[5738,3206,0],[5747,3320,0],[5733,3333,0],[5726,3346,0],[5730,3536,0],[5728,3611,0],[5745,3610,0],[5742,3682,0],[5731,3684,0],[5726,3724,0],[5730,3739,0],[5739,3754,0],[5748,3948,0],[5731,3958,0],[5765,3042,0],[5753,3226,0],[5772,3250,0],[5764,3315,0],[5759,3539,0],[5761,3609,0],[5774,3608,0],[5765,3676,0],[5759,3775,0],[5770,3928,0],[5760,3938,0],[5780,3061,0],[5793,3080,0],[5792,3235,0],[5780,3245,0],[5787,3270,0],[5793,3281,0],[5794,3290,0],[5780,3316,0],[5795,3306,0],[5794,3314,0],[5790,3318,0],[5792,3329,0],[5790,3355,0],[5789,3383,0],[5789,3400,0],[5789,3412,3],[5789,3424,0],[5789,3445,0],[5789,3430,0],[5790,3469,0],[5799,3475,0],[5792,3495,0],[5794,3520,0],[5782,3540,0],[5793,3535,0],[5783,3607,0],[5794,3670,0],[5781,3796,0],[5799,3813,0],[5787,3912,0],[5806,3096,0],[5819,3110,0],[5808,3220,0],[5810,3475,0],[5821,3475,0],[5800,3540,0],[5813,3538,0],[5823,3545,0],[5813,3668,0],[5813,3829,0],[5810,3894,0],[5834,3129,0],[5831,3202,0],[5838,3482,0],[5847,3524,0],[5826,3532,0],[5837,3527,0],[5826,3559,0],[5835,3586,0],[5846,3615,0],[5826,3668,0],[5833,3669,0],[5828,3846,0],[5849,3861,0],[5841,3860,0],[5837,3857,0],[5831,3878,0],[5851,3150,0],[5864,3167,0],[5851,3185,0],[5861,3177,0],[5860,3493,0],[5868,3523,0],[5852,3649,0],[5853,3638,0],[5851,3630,0],[5850,3661,0],[5868,3675,0],[5868,3839,0],[5879,3186,0],[5898,3209,0],[5896,3523,0],[5879,3503,0],[5895,3511,0],[5890,3696,0],[5877,3682,0],[5888,3815,0],[5920,3233,0],[5923,3524,0],[5905,3516,0],[5908,3520,0],[5910,3545,0],[5910,3532,0],[5910,3560,0],[5911,3576,0],[5912,3597,0],[5911,3587,0],[5924,3616,0],[5916,3607,0],[5904,3712,0],[5920,3728,0],[5906,3795,0],[5924,3778,0],[5936,3251,0],[5943,3259,0],[5946,3486,0],[5948,3524,0],[5939,3509,0],[5936,3520,0],[5936,3623,0],[5945,3629,0],[5949,3750,0],[5933,3737,0],[5945,3742,0],[5940,3740,0],[5939,3763,0],[5962,3445,0],[5956,3459,0],[5973,3526,0],[5972,3646,0],[5950,3636,0],[5953,3645,0],[5960,3648,0],[5954,3660,0],[5954,3682,0],[5954,3711,0],[5953,3736,0],[5995,3527,0],[5991,3644,0],[6016,3526,0],[6015,3642,0],[6047,3357,0],[6050,3387,0],[6039,3524,0],[6038,3639,0],[6052,3082,0],[6051,3089,0],[6054,3103,0],[6061,3128,0],[6067,3146,0],[6072,3162,0],[6073,3217,0],[6075,3236,0],[6061,3321,0],[6050,3337,0],[6055,3416,0],[6058,3443,0],[6059,3470,0],[6060,3495,0],[6064,3520,0],[6063,3510,0],[6059,3636,0],[6075,3633,0],[6078,3179,0],[6080,3191,0],[6088,3183,0],[6077,3205,0],[6080,3262,0],[6084,3283,0],[6083,3297,0],[6076,3306,0],[6089,3519,0],[6092,3623,0],[6105,3182,0],[6114,3524,0],[6114,3606,0],[6130,3178,0],[6139,3530,0],[6148,3571,0],[6130,3593,0],[6140,3584,0],[6151,3173,0],[6168,3534,0],[6158,3539,0],[6155,3553,0],[6178,3172,0],[6200,3536,0],[6244,3536,0],[6225,3536,0],[6266,3535,0],[6292,3536,0],[6319,3536,0]]],["Vigny",[[3068,6340,0],[3060,6848,0],[3087,6340,0],[3079,6837,0],[3102,6342,0],[3106,6359,0],[3112,6382,0],[3119,6392,0],[3119,6403,0],[3104,6823,0],[3122,6815,0],[3133,6388,0],[3126,6422,0],[3135,6442,0],[3145,6462,0],[3146,6597,0],[3141,6611,0],[3140,6622,0],[3146,6634,0],[3139,6804,0],[3174,6350,0],[3174,6365,0],[3154,6383,0],[3169,6376,0],[3150,6480,0],[3154,6503,0],[3155,6531,0],[3154,6559,0],[3152,6581,0],[3157,6650,0],[3172,6667,0],[3173,6761,0],[3152,6790,0],[3162,6776,0],[3187,6685,0],[3198,6702,0],[3186,6748,0],[3194,6738,0],[3199,6728,0],[3202,6716,0]]],["Sainte Marie",[[5061,4232,0],[5084,4215,0],[5095,4202,0],[5101,4198,0],[5167,4548,0],[5183,4536,0],[5218,4496,0],[5201,4517,0],[5245,4471,0],[5231,4480,0],[5272,4438,0],[5261,4456,0],[5295,4382,0],[5280,4420,0],[5286,4401,0],[5315,4364,0],[5338,4344,0],[5360,4328,0],[5399,4321,0],[5379,4321,0],[5422,4319,0],[5435,3760,0],[5442,4313,0],[5455,3771,0],[5472,3783,0],[5459,4305,0],[5489,3799,0],[5481,4293,0],[5501,3822,0],[5505,3844,0],[5508,3864,0],[5515,3880,0],[5519,4246,0],[5523,4239,0],[5522,4234,0],[5514,4259,0],[5503,4277,0],[5532,3899,0],[5546,4234,0],[5530,4234,0],[5570,3924,0],[5552,3915,0],[5573,4122,0],[5569,4142,0],[5567,4159,0],[5566,4177,0],[5562,4194,0],[5560,4209,0],[5559,4220,0],[5567,4234,0],[5559,4229,0],[5596,3937,0],[5598,4035,0],[5589,4043,0],[5581,4074,0],[5585,4055,0],[5577,4098,0],[5580,4234,0],[5618,3951,0],[5616,4026,0],[5631,3970,0],[5641,3992,0],[5642,4012,0],[5646,4003,0],[5670,3994,0],[5693,3979,0],[5712,3969,0],[5748,3948,0],[5731,3958,0],[5770,3928,0],[5760,3938,0],[5781,3796,0],[5799,3813,0],[5787,3912,0],[5813,3829,0],[5810,3894,0],[5828,3846,0],[5849,3861,0],[5841,3860,0],[5837,3857,0],[5831,3878,0]]],["La RiviĆØre",[[3440,3522,0],[3431,3527,0],[3468,3511,0],[3452,3515,0],[3488,3509,0],[3517,3512,0],[3545,3514,0],[3571,3276,0],[3570,3516,0],[3586,3273,0],[3577,3275,0],[3599,3519,0],[3604,3273,0],[3624,3273,0],[3618,3521,0],[3625,3532,0],[3623,3548,0],[3622,3568,0],[3623,3595,0],[3625,3624,0],[3625,3672,0],[3624,3687,0],[3642,3273,0],[3648,3469,0],[3635,3496,0],[3628,3518,0],[3626,3651,0],[3631,3657,0],[3630,3706,0],[3642,3735,0],[3668,3264,0],[3656,3271,0],[3662,3444,0],[3652,3658,0],[3679,3256,0],[3694,3255,0],[3686,3255,0],[3698,3354,0],[3698,3371,0],[3693,3379,0],[3688,3399,0],[3677,3419,0],[3682,3656,0],[3704,3256,0],[3717,3259,0],[3711,3257,0],[3724,3277,0],[3716,3301,0],[3706,3327,0],[3710,3371,0],[3721,3643,0],[3704,3650,0],[3739,3066,0],[3736,3055,0],[3742,3084,0],[3747,3103,0],[3750,3119,0],[3750,3157,0],[3748,3179,0],[3745,3200,0],[3737,3226,0],[3730,3254,0],[3749,3281,0],[3725,3288,0],[3733,3287,0],[3732,3372,0],[3740,3636,0],[3750,3137,0],[3764,3197,0],[3771,3196,0],[3751,3192,0],[3757,3194,0],[3770,3272,0],[3772,3389,0],[3750,3376,0],[3758,3383,0],[3762,3574,0],[3759,3559,0],[3767,3602,0],[3770,3622,0],[3760,3629,0],[3795,3021,0],[3793,3036,0],[3791,3066,0],[3790,3050,0],[3796,3089,0],[3800,3114,0],[3795,3145,0],[3787,3162,0],[3778,3182,0],[3793,3209,0],[3776,3202,0],[3783,3268,0],[3791,3267,0],[3800,3267,0],[3792,3391,0],[3786,3623,0],[3821,2968,0],[3811,2987,0],[3800,3004,0],[3801,3130,0],[3815,3219,0],[3820,3262,0],[3810,3266,0],[3803,3267,0],[3812,3390,0],[3814,3617,0],[3838,2936,0],[3849,2926,0],[3829,2951,0],[3842,3231,0],[3837,3254,0],[3841,3353,0],[3833,3375,0],[3831,3397,0],[3826,3390,0],[3836,3413,0],[3836,3605,0],[3873,2908,0],[3861,2919,0],[3859,3245,0],[3866,3241,0],[3861,3238,0],[3858,3339,0],[3857,3420,0],[3860,3586,0],[3900,2821,0],[3894,2870,0],[3899,2857,0],[3885,2889,0],[3886,3243,0],[3889,3250,0],[3896,3264,0],[3896,3320,0],[3878,3329,0],[3890,3428,0],[3887,3569,0],[3911,2795,0],[3905,2809,0],[3900,2835,0],[3901,2848,0],[3913,3242,0],[3905,3285,0],[3906,3305,0],[3908,3439,0],[3911,3462,0],[3915,3486,0],[3914,3557,0],[3939,3236,0],[3931,3502,0],[3949,3521,0],[3936,3544,0],[3949,3536,0],[3966,3228,0],[3958,3539,0],[3968,3558,0],[3986,3221,0],[3977,3583,0],[3984,3615,0],[3989,3645,0],[3994,3671,0],[4005,3214,0],[4028,3204,0],[4051,3194,0],[4071,3184,0],[4099,3161,0],[4085,3173,0],[4114,3146,0],[4147,3120,0],[4129,3133,0],[4168,3110,0],[4194,3108,0]]],["Cancon",[[5017,3097,0],[5040,2490,0],[5045,3040,0],[5034,3060,0],[5025,3078,0],[5057,2501,0],[5057,3020,0],[5068,3002,0],[5076,2511,0],[5094,2522,0],[5088,2942,0],[5085,2954,0],[5082,2969,0],[5077,2984,0],[5111,2533,0],[5116,2914,0],[5100,2927,0],[5128,2542,0],[5150,2900,0],[5130,2908,0],[5150,2555,0],[5178,2571,0],[5198,2873,0],[5175,2887,0],[5204,2585,0],[5216,2863,0],[5220,3063,0],[5214,3084,0],[5207,3107,0],[5204,3122,0],[5216,3133,0],[5207,3128,0],[5225,2598,0],[5239,2607,0],[5243,2783,0],[5231,2780,0],[5236,2853,0],[5246,3021,0],[5226,3047,0],[5233,3035,0],[5229,3138,0],[5245,3144,0],[5238,3142,0],[5251,2618,0],[5265,2635,0],[5274,2788,0],[5259,2787,0],[5260,2844,0],[5265,3006,0],[5282,2655,0],[5297,2674,0],[5291,2787,0],[5297,2830,0],[5280,2837,0],[5284,2991,0],[5315,2696,0],[5306,2684,0],[5308,2787,0],[5320,2786,0],[5320,2823,0],[5324,2942,0],[5313,2959,0],[5301,2976,0],[5327,2710,0],[5345,2731,0],[5347,2771,0],[5332,2781,0],[5347,2817,0],[5344,2915,0],[5335,2926,0],[5364,2733,0],[5356,2739,0],[5366,2753,0],[5362,2759,0],[5357,2763,0],[5369,2813,0],[5350,2824,0],[5352,2843,0],[5355,2865,0],[5373,2871,0],[5363,2873,0],[5355,2889,0],[5356,2877,0],[5351,2903,0],[5377,2722,0],[5396,2710,0],[5388,2713,0],[5390,2779,0],[5393,2807,0],[5387,2869,0],[5425,2696,0],[5416,2703,0],[5406,2707,0],[5403,2796,0],[5413,2800,0],[5403,2867,0],[5417,2864,0],[5442,2338,0],[5449,2350,0],[5434,2688,0],[5443,2682,0],[5444,2774,0],[5427,2792,0],[5445,2852,0],[5432,2859,0],[5462,2370,0],[5475,2648,0],[5462,2661,0],[5468,2654,0],[5458,2669,0],[5465,2670,0],[5452,2676,0],[5462,2750,0],[5471,2774,0],[5457,2763,0],[5466,2834,0],[5456,2844,0],[5479,2391,0],[5495,2414,0],[5499,2549,0],[5493,2633,0],[5482,2642,0],[5476,2680,0],[5488,2693,0],[5493,2711,0],[5495,2701,0],[5477,2731,0],[5491,2790,0],[5477,2823,0],[5487,2812,0],[5496,2802,0],[5493,2805,0],[5505,2442,0],[5508,2471,0],[5508,2501,0],[5504,2527,0],[5500,2541,0],[5502,2565,0],[5507,2586,0],[5505,2622,0],[5510,2603,0],[5511,2613,0],[5512,2691,0],[5506,2800,0],[5518,2803,0],[5531,2670,0],[5547,2652,0],[5530,2800,0],[5544,2796,0],[5564,2638,0],[5569,2797,0],[5557,2794,0],[5595,2613,0],[5582,2626,0],[5581,2806,0],[5594,2818,0],[5607,2599,0],[5618,2583,0],[5621,2841,0],[5607,2829,0],[5631,2567,0],[5648,2552,0],[5632,2855,0],[5638,2871,0],[5644,2886,0],[5649,2917,0],[5645,2937,0],[5645,2958,0],[5647,2980,0],[5649,3005,0],[5662,2544,0],[5650,2900,0],[5655,2911,0],[5670,2928,0],[5651,3028,0],[5653,3048,0],[5654,3067,0],[5658,3094,0],[5655,3083,0],[5665,3105,0],[5678,2538,0],[5690,2950,0],[5677,3123,0],[5695,3147,0],[5701,2530,0],[5706,2968,0],[5721,2986,0],[5712,3171,0],[5726,2521,0],[5749,2512,0],[5750,3022,0],[5735,3003,0],[5770,2504,0],[5765,3042,0],[5793,2495,0],[5780,3061,0],[5793,3080,0]]],["Le Port",[[7744,3290,0],[7730,3305,0],[7765,3273,0],[7788,3253,0],[7821,3163,0],[7816,3187,0],[7811,3208,0],[7807,3225,0],[7802,3239,0],[7842,3100,0],[7830,3122,0],[7833,3111,0],[7825,3142,0],[7828,3130,0],[7865,3083,0],[7890,3069,0],[7920,3050,0],[7907,3057,0],[7930,3048,0],[7945,3053,0],[7966,3063,0],[7972,3277,0],[7963,3285,0],[7992,3067,0],[7986,3264,0],[8019,3067,0],[8003,3250,0],[8018,3237,0],[8043,3066,0],[8042,3157,0],[8033,3183,0],[8032,3210,0],[8028,3227,0],[8063,3067,0],[8070,3115,0],[8058,3135,0],[8079,3071,0],[8096,3078,0],[8077,3095,0],[8080,3081,0],[8122,3089,0],[8140,3098,0],[8144,3103,0],[8151,3113,0],[8170,3145,0],[8158,3125,0],[8169,3129,0],[8186,3119,0],[8182,3170,0],[8192,3196,0],[8195,3588,0],[8176,3614,0],[8207,3108,0],[8220,3104,0],[8202,3219,0],[8215,3238,0],[8218,3578,0],[8247,3106,0],[8232,3104,0],[8231,3256,0],[8243,3271,0],[8247,3558,0],[8242,3582,0],[8234,3579,0],[8238,3603,0],[8241,3613,0],[8266,2873,0],[8269,2878,0],[8274,2984,0],[8271,2997,0],[8270,3006,0],[8267,3108,0],[8271,3284,0],[8251,3286,0],[8258,3292,0],[8261,3306,0],[8272,3326,0],[8273,3437,0],[8265,3461,0],[8258,3485,0],[8255,3511,0],[8251,3536,0],[8288,2891,0],[8277,2884,0],[8297,2900,0],[8299,2943,0],[8292,2956,0],[8283,2965,0],[8277,2973,0],[8276,3015,0],[8286,3029,0],[8290,3042,0],[8293,3063,0],[8292,3052,0],[8298,3084,0],[8296,3109,0],[8284,3110,0],[8292,3271,0],[8280,3341,0],[8284,3359,0],[8282,3396,0],[8284,3377,0],[8278,3416,0],[8287,3408,0],[8300,2912,0],[8301,2927,0],[8315,3107,0],[8302,3102,0],[8312,3262,0],[8306,3408,0],[8339,3103,0],[8346,3257,0],[8328,3258,0],[8335,3407,0],[8356,3100,0],[8368,3257,0],[8373,3424,0],[8358,3405,0],[8370,3410,0],[8370,3402,0],[8385,3259,0],[8394,3266,0],[8399,3272,0],[8400,3380,0],[8381,3394,0],[8377,3447,0],[8381,3474,0],[8384,3500,0],[8386,3522,0],[8387,3544,0],[8395,3538,0],[8381,3571,0],[8417,3275,0],[8407,3275,0],[8413,3370,0],[8416,3537,0],[8403,3538,0],[8428,3272,0],[8437,3268,0],[8441,3531,0],[8428,3534,0],[8451,3262,0],[8471,3254,0],[8451,3537,0],[8498,3237,0],[8486,3247,0],[8520,3217,0],[8510,3226,0],[8527,3214,0],[8534,3213,0]]],["Houdan",[[6648,6067,0],[6633,6054,0],[6669,6075,0],[6692,6076,0],[6725,6074,0],[6712,6075,0],[6729,5791,0],[6741,5801,0],[6750,5900,0],[6739,5913,0],[6731,5927,0],[6726,5940,0],[6730,5970,0],[6727,5952,0],[6736,5991,0],[6741,6013,0],[6742,6041,0],[6743,6029,0],[6742,6056,0],[6736,6073,0],[6743,6068,0],[6751,5812,0],[6754,5822,0],[6758,5849,0],[6755,5834,0],[6761,5864,0],[6760,5878,0],[6757,5889,0],[6773,6073,0],[6753,6072,0],[6794,6073,0],[6820,6072,0],[6847,6072,0],[6866,6073,0],[6883,6076,0],[6903,6077,0],[6926,6077,0],[6954,6076,0],[6982,6076,0],[7019,6072,0],[7003,6076,0],[7023,6100,0],[7046,6063,0],[7035,6065,0],[7030,6068,0],[7032,6071,0],[7026,6092,0],[7030,6084,0],[7032,6078,0],[7060,6060,0],[7073,6060,0],[7075,6053,0],[7074,6348,0],[7071,6366,0],[7067,6387,0],[7063,6407,0],[7058,6433,0],[7063,6434,0],[7069,6435,0],[7054,6463,0],[7052,6487,0],[7051,6507,0],[7052,6548,0],[7051,6526,0],[7097,5852,0],[7095,5873,0],[7099,5888,0],[7091,6018,0],[7090,6009,0],[7091,6003,0],[7082,6032,0],[7076,6040,0],[7077,6035,0],[7088,6029,0],[7075,6047,0],[7090,6028,0],[7091,6025,0],[7085,6063,0],[7098,6065,0],[7098,6213,0],[7093,6239,0],[7099,6226,0],[7089,6263,0],[7085,6284,0],[7082,6298,0],[7081,6308,0],[7077,6327,4],[7093,6440,0],[7078,6437,0],[7116,5793,0],[7106,5821,0],[7106,5907,0],[7113,5927,0],[7121,5951,0],[7100,5996,0],[7112,5988,0],[7119,5983,0],[7125,6053,0],[7121,6073,0],[7116,6068,0],[7108,6067,0],[7119,6088,0],[7115,6107,0],[7110,6135,0],[7106,6164,0],[7102,6188,0],[7117,6221,0],[7116,6441,0],[7142,5723,0],[7149,5701,0],[7134,5746,0],[7125,5769,0],[7126,5975,0],[7127,6000,0],[7127,6027,0],[7142,6080,0],[7127,6080,0],[7133,6080,0],[7147,6211,0],[7141,6441,0],[7173,5637,0],[7165,5660,0],[7157,5681,0],[7165,6079,0],[7152,6080,0],[7175,6155,0],[7166,6188,0],[7161,6442,0],[7181,5597,0],[7178,5617,0],[7185,6077,0],[7182,6093,0],[7182,6082,0],[7183,6109,0],[7180,6128,0],[7200,6443,0],[7176,6443,0],[7224,6075,0],[7205,6076,0],[7231,6445,0],[7251,6074,0],[7258,6447,0],[7283,6074,0],[7282,6445,0],[7297,6435,0],[7309,6070,0],[7315,6279,0],[7312,6298,0],[7312,6321,0],[7310,6343,0],[7308,6367,0],[7305,6391,0],[7303,6415,0],[7331,6065,0],[7330,6268,0],[7355,6063,0],[7360,6267,0],[7384,6062,0],[7389,6269,0],[7411,6061,0],[7412,6271,0],[7439,5990,0],[7434,6013,0],[7435,6034,0],[7428,6059,0],[7435,6050,0],[7434,6274,0],[7473,5959,0],[7453,5971,0],[7454,6278,0],[7495,5947,0],[7492,6099,0],[7481,6280,0],[7504,5760,0],[7507,5785,0],[7510,5813,0],[7514,5842,0],[7518,5871,0],[7521,5896,0],[7523,5915,0],[7517,5935,0],[7503,5947,0],[7522,5973,0],[7510,5957,0],[7525,6072,0],[7502,6100,0],[7518,6100,0],[7524,6101,0],[7511,6100,0],[7517,6273,0],[7509,6280,0],[7503,6282,0],[7542,5918,0],[7525,5928,0],[7529,5992,0],[7530,6015,0],[7528,6043,0],[7528,6149,0],[7526,6128,0],[7532,6176,0],[7542,6203,0],[7548,6241,0],[7531,6259,0],[7565,5898,0],[7556,6219,0],[7570,6217,0],[7575,6214,0],[7569,6228,0],[7558,6230,0],[7584,6214,0],[7583,6243,0]]],["Dourdan",[[6671,7404,0],[6651,7424,0],[6662,7415,0],[6689,7386,0],[6710,7369,0],[6747,7340,0],[6728,7356,0],[6767,7323,0],[6781,6685,0],[6787,7306,0],[6802,6685,0],[6811,7285,0],[6827,6684,0],[6840,7262,0],[6829,7272,0],[6845,7292,0],[6836,7281,0],[6874,6678,0],[6851,6683,0],[6862,7233,0],[6851,7249,0],[6858,7308,0],[6892,7196,0],[6877,7213,0],[6876,7325,0],[6898,7342,0],[6901,6673,0],[6923,6669,0],[6924,7175,0],[6908,7183,0],[6920,7369,0],[6912,7355,0],[6924,7386,0],[6948,6666,0],[6941,7168,0],[6930,7398,0],[6943,7407,0],[6960,7162,0],[6964,7411,0],[6977,6666,0],[6999,6667,0],[6986,7152,0],[6988,7411,0],[7012,6669,0],[7024,6806,0],[7019,6828,0],[7017,6851,0],[7017,6881,0],[7017,6916,0],[7018,6949,0],[7022,6977,0],[7016,7141,0],[7013,7412,0],[7048,6620,0],[7044,6637,4],[7041,6656,0],[7039,6667,0],[7038,6680,0],[7037,6695,0],[7035,6719,0],[7034,6750,0],[7030,6780,0],[7040,6966,0],[7026,6968,0],[7027,7007,0],[7031,7030,0],[7033,7052,0],[7034,7078,0],[7039,7122,0],[7036,7100,0],[7044,7141,0],[7038,7134,0],[7032,7136,0],[7049,7164,0],[7037,7414,0],[7049,7592,0],[7063,6962,0],[7073,7150,0],[7056,7154,0],[7054,7191,0],[7058,7216,0],[7063,7243,0],[7070,7273,0],[7070,7254,0],[7061,7414,0],[7057,7570,0],[7065,7552,0],[7088,6956,0],[7095,7146,0],[7087,7166,0],[7085,7152,0],[7090,7184,0],[7093,7206,0],[7096,7223,0],[7083,7241,0],[7095,7230,0],[7077,7302,0],[7084,7329,0],[7090,7349,0],[7100,7373,0],[7085,7411,0],[7092,7512,0],[7078,7532,0],[7115,6950,0],[7118,6974,0],[7114,6960,0],[7117,7142,0],[7108,7221,0],[7109,7403,0],[7100,7409,0],[7113,7427,0],[7114,7448,0],[7113,7465,0],[7102,7496,0],[7109,7481,0],[7141,6945,0],[7125,6995,0],[7136,7022,0],[7139,7137,0],[7133,7207,0],[7163,6943,0],[7151,7055,0],[7163,7083,0],[7171,7107,0],[7169,7124,0],[7157,7131,0],[7164,7128,0],[7161,7195,0],[7190,6933,0],[7178,6940,0],[7179,7128,0],[7187,7147,0],[7191,7159,0],[7176,7188,0],[7220,6916,0],[7203,6924,0],[7242,6907,0],[7266,6899,0],[7290,6892,0],[7318,6881,0],[7344,6870,0],[7365,6861,0],[7386,6854,0],[7407,6847,0],[7428,6839,0],[7449,6828,0]]],["Arudy",[[5161,6669,0],[5186,6679,0],[5214,6688,0],[5240,6696,0],[5250,6954,0],[5244,6975,0],[5243,6987,0],[5246,7006,0],[5264,6702,0],[5271,6845,0],[5268,6861,0],[5265,6883,0],[5262,6906,0],[5257,6928,0],[5257,7046,0],[5251,7027,0],[5264,7067,0],[5271,7086,0],[5286,6715,0],[5277,6707,0],[5295,6729,0],[5292,6792,0],[5298,6782,0],[5285,6806,0],[5277,6826,0],[5283,7109,0],[5296,7133,0],[5302,6749,0],[5305,6767,0],[5309,6782,0],[5304,6777,0],[5321,6803,0],[5307,7151,0],[5318,7171,0],[5336,6828,0],[5348,6848,0],[5328,7191,0],[5338,7212,0],[5348,7233,0],[5360,6870,0],[5374,6892,0],[5362,7255,0],[5384,6911,0],[5389,6923,0],[5394,6947,0],[5391,6934,0],[5379,7278,0],[5396,7300,0],[5422,6970,0],[5402,6959,0],[5411,6965,0],[5411,7319,0],[5422,7340,0],[5437,6973,0],[5431,7361,0],[5439,7379,0],[5451,6975,0],[5464,6977,0],[5450,7402,0],[5462,7428,0],[5470,7449,0],[5473,7468,0],[5481,6985,0],[5504,6998,0],[5526,7010,0],[5544,7019,0],[5560,7024,0],[5573,7025,0],[5591,7023,0],[5610,7017,0],[5620,7011,0],[5633,7001,0],[5668,6978,0],[5650,6989,0],[5688,6968,0],[5711,6958,0],[5734,6948,0],[5769,6924,0],[5754,6937,0],[5782,6916,0],[5796,6915,0],[5820,6919,0],[5821,7005,0],[5815,7024,0],[5816,7040,0],[5822,7051,0],[5844,6926,0],[5849,6962,0],[5834,6984,0],[5834,7060,0],[5855,6935,0],[5857,6945,0],[5850,7068,0],[5871,7076,0],[5890,7089,0],[5900,7102,0],[5906,7121,0],[5912,7141,0],[5920,7156,0],[5932,7166,0],[5943,7171,0],[5970,7171,0],[5955,7173,0],[5984,7171,0]]],["Goisse",[[3129,8411,0],[3165,8415,0],[3198,8419,0],[3226,8423,0],[3248,8426,0],[3267,8431,0],[3286,8145,0],[3279,8129,0],[3283,8437,0],[3294,8443,0],[3305,8162,0],[3310,8467,0],[3303,8451,0],[3314,8488,0],[3317,8508,0],[3322,8522,0],[3327,8178,0],[3343,8190,0],[3327,8531,0],[3331,8539,0],[3332,8549,0],[3332,8575,7],[3332,8559,0],[3332,8588,0],[3332,8618,0],[3331,8601,0],[3332,8639,0],[3332,8662,0],[3336,8685,0],[3346,8706,0],[3353,8200,0],[3361,8214,0],[3373,8233,0],[3362,8721,0],[3387,8249,0],[3399,8263,0],[3382,8729,0],[3417,8278,0],[3402,8731,0],[3432,8294,0],[3446,8311,0],[3426,8729,0],[3471,8342,0],[3460,8328,0],[3453,8725,0],[3481,8357,0],[3490,8366,0],[3496,8375,0],[3499,8391,0],[3480,8722,0],[3508,8424,0],[3503,8410,0],[3512,8438,0],[3516,8453,0],[3523,8465,0],[3520,8461,0],[3505,8717,0],[3525,8468,0],[3536,8476,0],[3549,8485,0],[3527,8712,0],[3547,8707,0],[3561,8493,0],[3572,8504,0],[3566,8699,0],[3588,8522,0],[3582,8515,0],[3587,8513,0],[3593,8508,0],[3598,8534,5],[3583,8689,0],[3599,8678,0],[3621,8481,0],[3603,8498,0],[3608,8545,0],[3613,8568,0],[3612,8552,0],[3614,8559,0],[3611,8578,0],[3609,8588,0],[3610,8599,0],[3621,8622,0],[3616,8615,0],[3612,8608,0],[3616,8669,0],[3641,8461,0],[3645,8646,0],[3636,8636,0],[3628,8629,0],[3632,8659,0],[3643,8651,0],[3661,8440,0],[3653,8655,0],[3667,8671,0],[3662,8665,0],[3674,8678,0],[3677,8423,0],[3689,8410,0],[3682,8687,0],[3689,8697,0],[3698,8706,0],[3716,8396,0],[3702,8402,0],[3712,8713,0],[3747,8380,0],[3730,8390,0],[3733,8724,0],[3771,8306,0],[3767,8324,0],[3767,8338,0],[3766,8352,0],[3764,8364,0],[3759,8371,0],[3754,8736,0],[3768,8746,0],[3798,8260,0],[3790,8267,0],[3783,8277,0],[3777,8289,0],[3787,8774,0],[3781,8764,0],[3775,8754,0],[3794,8784,0],[3813,8251,0],[3803,8791,0],[3814,8797,0],[3825,8805,0],[3829,8242,0],[3845,8233,0],[3839,8819,0],[3870,8222,0],[3859,8227,0],[3863,8845,0],[3852,8833,0],[3872,8858,0],[3885,8222,0],[3878,8873,0],[3884,8889,0],[3890,8904,0],[3901,8223,0],[3910,8227,0],[3928,8234,0],[3947,8241,0],[3967,8244,0],[3956,8243,0],[3982,8244,0]]],["Saint Louis",[[6690,8806,0],[6712,8810,0],[6733,8815,0],[6750,9254,0],[6775,8818,0],[6755,8818,0],[6772,9246,0],[6796,8819,0],[6789,9241,0],[6815,8819,0],[6807,9233,0],[6832,8819,0],[6846,8820,0],[6830,9218,0],[6860,8824,0],[6869,9186,0],[6852,9201,0],[6880,8831,0],[6886,9171,0],[6904,8840,0],[6917,9144,0],[6902,9157,0],[6929,8849,0],[6932,9131,0],[6970,8863,0],[6950,8856,0],[6974,9098,0],[6951,9116,0],[6997,8873,0],[7000,9077,0],[7019,8882,0],[7034,8892,0],[7049,8906,0],[7049,9035,0],[7026,9054,0],[7066,8919,0],[7066,9020,0],[7088,8932,0],[7086,9004,0],[7109,8945,0],[7123,8970,0],[7123,8956,0],[7106,8986,0],[7139,8955,0],[7139,8969,0],[7149,8978,0],[7142,9047,0],[7165,8929,0],[7152,8941,0],[7167,8993,0],[7162,9023,0],[7170,9013,0],[7151,9036,0],[7200,8910,0],[7182,8919,0],[7198,9014,0],[7186,9008,0],[7176,9005,0],[7180,9004,0],[7218,8900,0],[7218,9020,0],[7238,8885,0],[7243,9027,0],[7263,8865,0],[7267,9036,0],[7289,8500,0],[7294,8522,0],[7300,8542,0],[7295,8631,0],[7287,8653,0],[7282,8673,0],[7282,8692,0],[7285,8724,0],[7283,8709,0],[7289,8748,0],[7295,8775,0],[7299,8796,0],[7285,8848,0],[7296,8837,0],[7285,9043,0],[7304,8562,0],[7306,8581,0],[7305,8598,0],[7302,8613,0],[7302,8812,0],[7300,8826,0],[7311,8825,0],[7301,8831,0],[7303,9052,0],[7326,8819,0],[7341,8817,0],[7327,9063,0],[7349,9072,0],[7360,8818,0],[7368,9079,0],[7388,8821,0],[7394,9089,0],[7395,9161,0],[7389,9174,0],[7391,9169,0],[7385,9182,0],[7422,8824,0],[7420,9098,0],[7413,9115,0],[7416,9106,0],[7407,9130,0],[7400,9147,0],[7441,9105,0],[7455,8826,0],[7471,9120,0],[7458,9112,0],[7479,8827,0],[7493,8827,0],[7496,8832,0],[7499,8835,0],[7487,9133,0],[7504,8848,0],[7508,8827,0],[7523,8828,0],[7510,8876,0],[7517,8905,0],[7507,9150,0],[7522,9167,0],[7550,8823,0],[7537,8828,0],[7526,8929,0],[7537,8955,0],[7549,8981,0],[7533,9181,0],[7542,9197,0],[7564,8815,0],[7558,9006,0],[7564,9029,0],[7569,9051,0],[7573,9073,0],[7551,9212,0],[7592,8795,0],[7580,8804,0],[7578,9094,0],[7585,9117,0],[7603,8786,0],[7601,9140,0]]],["Lolisse",[[5548,11192,0],[5537,11194,0],[5541,11349,0],[5537,11369,0],[5539,11392,0],[5547,11416,0],[5547,11544,0],[5535,11558,0],[5532,11585,0],[5531,11611,0],[5530,11623,0],[5567,11189,0],[5558,11232,0],[5558,11239,0],[5560,11257,0],[5565,11277,0],[5567,11307,0],[5552,11328,0],[5559,11441,0],[5572,11466,0],[5565,11533,0],[5594,11184,0],[5599,11295,0],[5576,11286,0],[5578,11294,0],[5578,11491,0],[5577,11515,0],[5609,10698,0],[5620,10712,0],[5623,11180,0],[5633,10728,0],[5646,10744,0],[5626,11303,0],[5659,10758,0],[5670,10771,0],[5652,11175,0],[5653,11314,0],[5682,10786,0],[5690,10797,0],[5696,10797,0],[5690,10797,0],[5697,10804,0],[5682,11169,0],[5677,11326,0],[5695,11334,0],[5715,10773,0],[5704,10790,0],[5710,10821,0],[5709,11164,0],[5715,11340,0],[5728,10758,0],[5741,10752,0],[5729,10843,0],[5747,10863,0],[5735,11157,0],[5735,11347,0],[5757,10750,0],[5767,10886,0],[5765,11149,0],[5751,11355,0],[5767,11361,0],[5783,10749,0],[5787,10911,0],[5799,11044,0],[5795,11067,0],[5793,11088,0],[5792,11109,0],[5795,11145,0],[5792,11128,0],[5792,11142,0],[5788,11357,0],[5806,10750,0],[5803,10933,0],[5815,10952,0],[5821,10969,0],[5816,10992,0],[5806,11020,0],[5822,11143,0],[5809,11346,0],[5849,11139,0],[5835,11334,0],[5874,11136,0],[5869,11322,0],[5895,11136,0],[5898,11313,0],[5918,11136,0],[5918,11311,0],[5942,11137,0],[5937,11323,0],[5966,11135,0],[5951,11341,0],[5962,11362,0],[5974,11386,0],[5986,11130,0],[5992,11405,0],[6006,11123,0],[6025,11116,0],[6043,11109,0]]],["Airport",[[7699,10240,0],[7713,10214,0],[7743,10142,0],[7734,10167,0],[7725,10189,0],[7768,10073,0],[7758,10099,0],[7752,10118,0],[7799,9952,0],[7796,9972,0],[7795,9989,0],[7792,10007,0],[7778,10046,0],[7786,10027,0],[7821,9837,0],[7817,9856,0],[7810,9895,0],[7814,9875,0],[7804,9923,0],[7816,10390,0],[7814,10409,0],[7815,10449,0],[7812,10434,0],[7834,9763,0],[7830,9782,0],[7825,9809,0],[7911,9697,0],[7911,9717,0],[7911,9737,0],[7911,9757,0],[7911,9777,0],[7911,9797,0],[7911,9817,0],[7911,9837,0],[7911,9857,0],[7911,9877,0],[7911,9897,0],[7911,9918,0],[7911,9938,0],[7911,9958,0],[7910,9998,0],[7911,9978,0],[7910,10018,0],[7910,10038,0],[7910,10058,0],[7910,10098,0],[7910,10078,0],[7910,10118,0],[7910,10138,0],[7910,10158,0],[7910,10178,0],[7910,10198,0],[7910,10218,0],[7910,10238,0],[7910,10258,0],[7910,10298,0],[7910,10278,0],[7910,10318,0],[7910,10339,0],[7910,10359,0],[7910,10379,0],[7910,10399,0],[7910,10419,0],[7910,10439,0],[7910,10459,0],[7910,10499,0],[7910,10479,0],[7910,10519,0],[7910,10539,0],[7931,9697,0],[7931,9677,0],[7931,9717,0],[7931,9737,0],[7931,9757,0],[7931,9777,0],[7931,9797,0],[7931,9817,0],[7931,9837,0],[7931,9857,0],[7931,9877,0],[7931,9897,0],[7931,9918,0],[7931,9938,0],[7931,9958,0],[7931,9978,0],[7930,9998,0],[7930,10018,0],[7930,10038,0],[7930,10058,0],[7930,10078,0],[7930,10098,0],[7930,10118,0],[7930,10138,0],[7930,10158,0],[7930,10178,0],[7930,10198,0],[7930,10218,0],[7930,10238,0],[7930,10258,0],[7930,10298,0],[7930,10278,0],[7930,10318,0],[7930,10339,0],[7930,10359,0],[7930,10379,0],[7930,10399,0],[7930,10419,0],[7930,10439,0],[7930,10459,0],[7931,10479,0],[7931,10499,0],[7931,10519,0],[7931,10539,0],[8047,9845,0],[8026,9844,0],[8067,9645,0],[8051,9645,0],[8090,9645,0],[8078,9845,0],[8114,9644,0],[8106,9845,0],[8119,9849,0],[8119,9862,0],[8120,9882,0],[8120,9907,0],[8120,9936,0],[8120,9967,0],[8120,9996,0],[8120,10023,0],[8121,10044,0],[8121,10059,0],[8105,10066,0],[8113,10146,0],[8137,9645,0],[8142,9749,0],[8129,9749,0],[8134,9844,0],[8126,10066,0],[8135,10146,0],[8160,9628,0],[8153,9645,0],[8160,9653,0],[8160,9682,0],[8160,9709,0],[8160,9736,0],[8156,9749,0],[8160,9763,0],[8160,9792,0],[8159,9819,0],[8160,9840,0],[8154,9844,0],[8172,9865,0],[8161,9850,0],[8175,10067,0],[8152,10066,0],[8161,10146,0],[8167,10225,0],[8175,10444,0],[8172,10466,0],[8170,10487,0],[8167,10514,0],[8165,10536,0],[8189,9885,0],[8197,10067,0],[8182,10145,0],[8187,10235,0],[8190,10370,0],[8184,10386,0],[8180,10403,0],[8177,10425,0],[8223,9924,0],[8205,9904,0],[8219,10067,0],[8203,10145,0],[8223,10145,0],[8216,10249,0],[8213,10318,0],[8221,10300,0],[8201,10343,0],[8240,9944,0],[8246,10067,0],[8248,10145,0],[8244,10251,0],[8235,10259,0],[8232,10276,0],[8258,9966,0],[8270,9984,0],[8274,10008,0],[8267,10068,0],[8275,10128,0],[8266,10145,0],[8274,10153,0],[8273,10172,0],[8271,10186,0],[8263,10207,0],[8253,10231,0],[8275,10039,0],[8276,10068,0],[8275,10099,0]]],["Moray",[[590,12275,0],[590,12295,0],[610,12275,0],[610,12294,0],[649,12275,0],[629,12275,0],[629,12295,0],[649,12294,0],[669,12274,0],[669,12294,0],[689,12274,0],[689,12294,0],[708,12274,0],[708,12294,0],[750,12037,0],[745,12052,0],[741,12071,0],[737,12086,0],[737,12101,0],[737,12122,0],[738,12136,0],[747,12274,0],[728,12274,0],[747,12294,0],[728,12294,0],[774,11996,0],[758,12020,0],[767,12274,0],[767,12294,0],[797,11971,0],[787,12274,0],[787,12294,0],[816,11953,0],[806,12275,0],[806,12295,0],[834,11944,0],[846,11945,0],[849,11951,0],[846,12275,0],[826,12275,0],[846,12294,0],[826,12295,0],[852,11935,0],[869,11933,0],[862,11958,0],[865,12275,0],[865,12294,0],[891,11932,0],[897,11969,0],[880,11965,0],[885,12274,0],[885,12294,0],[913,11929,0],[920,11974,0],[905,12274,0],[924,12274,0],[905,12294,0],[924,12294,0],[945,11890,0],[930,11916,0],[941,11900,0],[940,11975,0],[944,12274,0],[944,12294,0],[957,11969,0],[970,11962,0],[963,12275,0],[963,12294,0],[988,11952,0],[976,11958,0],[983,12274,0],[983,12294,0],[1007,11945,0],[1022,12274,0],[1003,12274,0],[1003,12294,0],[1022,12294,0],[1028,11941,0],[1044,11940,0],[1042,12274,0],[1042,12294,0],[1057,11944,0],[1062,12274,0],[1062,12294,0],[1079,11957,0],[1082,12274,0],[1082,12294,0],[1105,11973,0],[1122,11983,0],[1121,12274,0],[1101,12274,0],[1121,12294,0],[1101,12294,0],[1136,11994,0],[1148,12009,0],[1141,12275,0],[1141,12295,0],[1151,12031,0],[1152,12055,0],[1157,12073,0],[1153,12068,0],[1161,12078,0],[1160,12275,0],[1160,12294,0],[1200,12274,0],[1180,12274,0],[1200,12294,0],[1180,12294,0],[1219,12275,0],[1219,12295,0],[1239,12275,0],[1239,12295,0],[1259,12275,0],[1259,12294,0]]]]; diff --git a/A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/description.ext b/A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/description.ext deleted file mode 100644 index 0c67b75f95..0000000000 --- a/A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/description.ext +++ /dev/null @@ -1,436 +0,0 @@ -#include "defines.hpp" -#include "dialogs.hpp" - -author = $STR_antistasi_credits_generic_author_text; -OnLoadName = $STR_antistasi_mission_info_tanoa_mapname_text; -OnLoadMission = $STR_antistasi_mission_info_tanoa_blurb_text; -loadScreen = "pic.jpg"; - -overviewText = $STR_antistasi_mission_info_tanoa_description_text; -overviewPicture = "pic.jpg"; - -allowFunctionsLog = 1; -enableDebugConsole[] = {"76561197979729653","76561198034977762","76561198127254055","76561197981991967","76561198274184887","76561198011383725","76561198304402577","76561197993874267"}; - -//If we have CBA for TFAR, then load the mission's settings. -cba_settings_hasSettingsFile = 1; - -respawn = "BASE"; -respawnDelay = 15; -respawnVehicleDelay = 120; -respawnDialog = 1; -aiKills = 0; -disabledAI=1; -Saving = 0; -showCompass=1; -showRadio=1; -showGPS=1; -showMap=1; -showBinocular=1; -showNotepad=1; -showWatch=1; -debriefing=1; - -//showGroupIndicator = 1; - -class CfgTaskEnhancements - { - enable = 1; //0: disable new task features (default), 1: enable new task features & add new task markers and task widgets into the map - 3d = 1; //0: do not use new 3D markers (default), 1: replace task waypoints with new 3D markers - 3dDrawDist = 3500; //3d marker draw distance (default: 2000) - share = 1; //0: do not count assigned players (default), 1: count how many players have the task assigned - propagate = 1; //0: do not propagate (default), 1: propagate shared tasks to subordinates - }; - -class CfgFunctions { - #include "functions.hpp" - #include "JeroenArsenal\functions.hpp" -}; -class Header -{ -gameType = COOP; -minplayers=1; -maxplayers=32; -}; - -class CfgSounds -{ - class fire - { - name="fire"; - sound[]={"Music\fire.ogg",db+12,1.0}; - titles[]={}; - }; -}; -class Params -{ - class loadSave - { - title = "Load last Persistent Save"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class gameMode - { - title = "Game Mode"; // Param name visible in the list - values[] = {1,2,3,4}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Reb vs Gov vs Inv","Reb vs Gov & Inv","Reb vs Gov","Reb vs Inv"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class autoSave - { - title = "Enable Autosave (every hour)"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class membership - { - title = "Enable Server Membership"; - texts[] = {"Yes","No"}; - values[] = {1,0}; - default = 1; - //function = "BIS_fnc_paramDaytime"; // (Optional) [[Functions_Library_(Arma_3)|Function]] [[call]]ed when player joins, selected value is passed as an argument - //isGlobal = 1; // (Optional) 1 to execute script / function locally for every player who joins, 0 to do it only on server - }; - class switchComm - { - title = "Enable Commander Switch (highest ranked player)"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class tkPunish - { - title = "Enable Teamkill Punish"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class mRadius - { - title = "Distance from HQ for Sidemissions"; - values[] = {2500,5000,10000}; - // When 'texts' are missing, values will be displayed directly instead - default = 2500; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowPvP - { - title = "Allow PvP Slots"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class pMarkers - { - title = "Allow Friendly Player Markers"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class AISkill - { - title = "AI Skill"; - values[] = {0.5,1,2}; - texts[] = {"Easy","Normal","Hard"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class unlockItem - { - title = "Number of the same weapons required to unlock"; - values[] = {15,25,40}; - default = 25; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberOnlyMagLimit - { - title = "Number of magazines needed for guests to be able to use them"; - values[] = {10,20,30,40,50,60}; - default = 40; - }; - class civTraffic - { - title = "Rate of Civ Traffic"; - values[] = {0.5,1,3}; - texts[] = {"Low","Medium","JAM"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberSlots - { - title = "Percentage of Reserved Slots for Members"; - values[] = {0,20,40,60,80,100}; - texts[] = {"None","20%","40%","60%","80%","All"}; - default = 20; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberDistance - { - title = "Max distance non members can be from the closest member or HQ (they will be teleported to HQ after some timeout)"; - values[] = {4000,5000,6000,7000,8000,16000}; - texts[] = {"4 Kmts","5 Kmts","6 Kmts","7 Kmts","8 Kmts","Unlimited"}; - default = 5000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowFT - { - title = "Limited Fast Travel"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class napalmEnabled - { - title = "Enable Napalm Bombing for AI"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 0; - }; - class teamSwitchDelay - { - title = "Delay After Leaving Before a Player Can Join Another Team"; - values[] = {0, 900, 1800, 3600}; - texts[] = {"No delay","15 minutes","30 minutes","60 minutes"}; - default = 3600; - }; -}; - -class CfgIdentities -{ - class protagonista - { - name = "Pulu"; - nameSound = "Warlock"; - face="TanoanBossHead"; - glasses="None"; - speaker="Male01ENGFRE"; - pitch=1.1; - }; - class friendlyX - { - name = "Maru"; - nameSound = "Warlock"; - face="TanoanBossHead"; - glasses="None"; - speaker="Male01ENGFRE"; - pitch=1.1; - }; - class Anthis - { - name = "Anthis"; - nameSound = "Anthis"; - face="TanoanHead_A3_01"; - glasses="None"; - speaker="Male02CHI"; - pitch=1.1; - }; - class Costa - { - name = "Costa"; - nameSound = "Costa"; - face="TanoanHead_A3_02"; - glasses="None"; - speaker="Male03CHI"; - pitch=1.1; - }; - class Dimitirou - { - name = "Dimitirou"; - nameSound = "Dimitirou"; - face="TanoanHead_A3_03"; - glasses="None"; - speaker="Male01FRE"; - pitch=1.1; - }; - class Elias - { - name = "Elias"; - nameSound = "Elias"; - face="TanoanHead_A3_04"; - glasses="None"; - speaker="Male02FRE"; - pitch=1.1; - }; - class Gekas - { - name = "Gekas"; - nameSound = "Gekas"; - face="TanoanHead_A3_05"; - glasses="None"; - speaker="Male03FRE"; - pitch=1.1; - }; - class Kouris - { - name = "Kouris"; - nameSound = "Kouris"; - face="TanoanHead_A3_06"; - glasses="None"; - speaker="Male01CHI"; - pitch=1.1; - }; - class Leventis - { - name = "Leventis"; - nameSound = "Leventis"; - face="TanoanHead_A3_07"; - glasses="None"; - speaker="Male02CHI"; - pitch=1.1; - }; - class Markos - { - name = "Markos"; - nameSound = "Markos"; - face="TanoanHead_A3_08"; - glasses="None"; - speaker="Male03CHI"; - pitch=1.1; - }; - class Nikas - { - name = "Nikas"; - nameSound = "Nikas"; - face="CamoHead_Asian_03_F"; - glasses="None"; - speaker="Male03FRE"; - pitch=1.1; - }; - class Nicolo - { - name = "Nicolo"; - nameSound = "Nicolo"; - face="CamoHead_Asian_02_F"; - glasses="None"; - speaker="Male02FRE"; - pitch=1.1; - }; - class Panas - { - name = "Panas"; - nameSound = "Panas"; - face="CamoHead_Asian_01_F"; - glasses="None"; - speaker="Male01FRE"; - pitch=1.1; - }; - class Rosi - { - name = "Rosi"; - nameSound = "Rosi"; - face="AsianHead_A3_01"; - glasses="None"; - speaker="Male01CHI"; - pitch=1.1; - }; - class Samaras - { - name = "Samaras"; - nameSound = "Samaras"; - face="WhiteHead_06"; - glasses="None"; - speaker="AsianHead_A3_02"; - pitch=1.1; - }; - class Thanos - { - name = "Thanos"; - nameSound = "Thanos"; - face="AsianHead_A3_03"; - glasses="None"; - speaker="Male02ENGFRE"; - pitch=1.1; - }; - class Vega - { - name = "Vega"; - nameSound = "Vega"; - face="AsianHead_A3_04"; - glasses="None"; - speaker="Male02ENGFRE"; - pitch=1.1; - }; -}; - -/* -class CfgMusic -{ - tracks[]={}; - - class DBS - { - name = ""; - sound[] = {"\music\dbs.ogg", db+5, 1.0}; - }; - -}; -*/ -class CfgDebriefing -{ - class End1 - { - title = "V I C T O R Y"; - subtitle = "Tanoa is Ours!"; - description = "The population of Tanoa loves you!
The SDK brave soldiers have proven their valour, and Petros, Tanoa 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 = "Maru is Dead"; - subtitle = "Maru is Dead"; - description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Tanoa"; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class destroyedCities - { - title = "Tanoa is Destroyed"; - subtitle = "Tanoa got Destroyed by CSAT"; - description = "One third of the population in Tanoa has been murdered by CSAT.
Tanoa no longer exists, nobody wants to live here."; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class modUnautorized - { - title = "Incompatible Mods"; - subtitle = "Incompatible Mods detected"; - description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class serverFull - { - title = "Reserved Slot"; - subtitle = "This slot is reserved"; - description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class noPvP - { - title = "Slot Unavailable"; - subtitle = "This slot is unavailable"; - description = "Sorry, but this slot is unavailable for some reson: player not member, match not initialised, lack of Syndikat commander or recent role as Syndikat."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class hcDown - { - title = "HC Disconnected"; - subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; -}; diff --git a/A3-Antistasi/Templates/Occupants3CBBAF.sqf b/A3-Antistasi/Templates/BAF_Occ_BAF_Arid.sqf similarity index 51% rename from A3-Antistasi/Templates/Occupants3CBBAF.sqf rename to A3-Antistasi/Templates/BAF_Occ_BAF_Arid.sqf index cef57a884e..ce4bfeec6a 100644 --- a/A3-Antistasi/Templates/Occupants3CBBAF.sqf +++ b/A3-Antistasi/Templates/BAF_Occ_BAF_Arid.sqf @@ -1,22 +1,31 @@ -if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\Occupants3CBTKA.sqf"}; -if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\Occupants3CBBAFT.sqf"}; +if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\3CB_Occ_TKA_Arid.sqf"}; +if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\BAF_Occ_BAF_Trop.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "BAF"; -NATOGrunt = "UK3CB_BAF_Rifleman_DDPM"; -NATOOfficer = "UK3CB_BAF_SL_DDPM"; -NATOOfficer2 = "UK3CB_BAF_Officer_DDPM"; -NATOBodyG = "UK3CB_BAF_Crewman_RTR_DDPM"; -NATOCrew = "UK3CB_BAF_Crewman_DDPM"; -NATOUnarmed = "B_G_Survivor_F"; -NATOMarksman = "UK3CB_BAF_Marksman_DDPM"; -staticCrewOccupants = "UK3CB_BAF_GunnerStatic_DDPM";; -NATOPilot = "UK3CB_BAF_HeliPilot_RAF_DDPM"; +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "UK3CB_BAF_Faction_Army_Desert"; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "UK3CB_TKP_B"}; -NATOMG = "UK3CB_BAF_Static_L111A1_Deployed_High_DDPM_RM"; -NATOMortar = "UK3CB_BAF_Static_L16_Deployed_DDPM_RM"; -staticATOccupants = "RHS_TOW_TriPod_USMC_D"; -staticAAOccupants = "RHS_Stinger_AA_pod_D"; +//Flag Images +NATOFlag = "Flag_UK_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_UK.paa"; +flagNATOmrk = "flag_UK"; +if (isServer) then {"NATO_carrier" setMarkerText "HMS Ark Royal"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; -//NATO PvP Loadouts +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts NATOPlayerLoadouts = [ //Team Leader "UK3CB_BAF_SC_DDPM_REC", @@ -28,12 +37,94 @@ NATOPlayerLoadouts = [ "UK3CB_BAF_Marksman_DDPM_REC", //Anti-tank Scout "UK3CB_BAF_Explosive_DDPM_REC", - //Anti-tank Scout + //AT2 "UK3CB_BAF_FAC_DDPM_REC" ]; -vehNATOPVP = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Sand","UK3CB_BAF_LandRover_Hard_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_Snatch_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_Soft_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_WMIK_HMG_FFR_Sand_A_DDPM"];//This array contains the vehicles Nato-PvP players can spawn near their flag. +//PVP Player Vehicles +vehNATOPVP = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Sand","UK3CB_BAF_LandRover_Hard_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_Snatch_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_Soft_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_WMIK_HMG_FFR_Sand_A_DDPM"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "UK3CB_BAF_Rifleman_DDPM"; +NATOOfficer = "UK3CB_BAF_SL_DDPM"; +NATOOfficer2 = "UK3CB_BAF_Officer_DDPM"; +NATOBodyG = "UK3CB_BAF_Crewman_RTR_DDPM"; +NATOCrew = "UK3CB_BAF_Crewman_DDPM"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "UK3CB_BAF_Marksman_DDPM"; +staticCrewOccupants = "UK3CB_BAF_GunnerStatic_DDPM";; +NATOPilot = "UK3CB_BAF_HeliPilot_RAF_DDPM"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "UK3CB_BAF_Rifleman_Smock_DPMW"; + FIAMarksman = "UK3CB_BAF_Pointman_Smock_DPMW"; + }; + +//Police Units +policeOfficer = "UK3CB_ANP_B_TL"; +policeGrunt = "UK3CB_ANP_B_RIF_1"; +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["UK3CB_BAF_Grenadier_DDPM",NATOGrunt]; +groupsNATOSniper = ["UK3CB_BAF_Sniper_DDPM_Ghillie_L115_RM","UK3CB_BAF_Spotter_DDPM_Ghillie_L129_RM"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["rhsusf_army_ocp_fso","rhsusf_army_ocp_aa","rhsusf_army_ocp_aa","rhsusf_army_ocp_aa"]; +groupsNATOAT = ["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_MAT_DDPM","UK3CB_BAF_MAT_DDPM","UK3CB_BAF_MATC_DDPM"]; +groupsNATOmid = [["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_MGLMG_DDPM","UK3CB_BAF_Grenadier_DDPM","UK3CB_BAF_GunnerM6_DDPM"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["UK3CB_BAF_Officer_DDPM",NATOGrunt,"UK3CB_BAF_GunnerM6_DDPM",NATOMarksman,"UK3CB_BAF_Officer_DDPM","UK3CB_BAF_LSW_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM"]; +NATOSpecOp = ["UK3CB_BAF_Officer_DDPM_RM","UK3CB_BAF_Rifleman_DDPM_RM",NATOBodyG,"UK3CB_BAF_LAT_DDPM_RM","UK3CB_BAF_FAC_DDPM_RM","UK3CB_BAF_Explosive_DDPM_RM","UK3CB_BAF_LSW_DDPM_RM","UK3CB_BAF_Medic_DDPM_RM"]; +groupsNATOSquad = + [ + NATOSquad, + ["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_LSW_DDPM","UK3CB_BAF_Grenadier_DDPM",NATOMarksman,"UK3CB_BAF_LAT_DDPM","UK3CB_BAF_MATC_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM"], + ["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_GunnerM6_DDPM","UK3CB_BAF_Officer_DDPM","UK3CB_BAF_MGLMG_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Grenadier_DDPM","UK3CB_BAF_Grenadier_762_DDPM","UK3CB_BAF_Medic_DDPM"], + ["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_LSW_DDPM","UK3CB_BAF_Grenadier_DDPM",NATOMarksman,"UK3CB_BAF_MAT_DDPM","UK3CB_BAF_MAT_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM"], + ["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_LSW_DDPM","UK3CB_BAF_Grenadier_DDPM",NATOMarksman,"UK3CB_BAF_Engineer_DDPM","UK3CB_BAF_Engineer_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["UK3CB_BAF_Grenadier_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW"], + ["UK3CB_BAF_LAT_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW"], + ["UK3CB_BAF_Sniper_Smock_DPMW_Ghillie","UK3CB_BAF_Spotter_Smock_DPMW_Ghillie"] + ]; + //Fireteams + groupsFIAMid = + [ + ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_Pointman_Smock_DPMW","UK3CB_BAF_MGGPMG_Smock_DPMW","UK3CB_BAF_MGGPMGA_Smock_DPMW"], + ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_GunnerM6_Smock_DPMW","UK3CB_BAF_Grenadier_Smock_DPMW","UK3CB_BAF_MAT_Smock_DPMW"], + ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_MAT_Smock_DPMW","UK3CB_BAF_MATC_Smock_DPMW","UK3CB_BAF_Engineer_Smock_DPMW"] + ]; + //Squads + FIASquad = ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW","UK3CB_BAF_LAT_Smock_DPMW","UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_MGGPMG_Smock_DPMW","UK3CB_BAF_MGGPMGA_Smock_DPMW","UK3CB_BAF_Marksman_Smock_DPMW","UK3CB_BAF_Medic_Smock_DPMW"]; + groupsFIASquad = [FIASquad]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; vehNATOLightArmed = ["UK3CB_BAF_LandRover_WMIK_HMG_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_WMIK_GMG_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_WMIK_Milan_FFR_Sand_A_DDPM","UK3CB_BAF_Jackal2_L2A1_D_DDPM","UK3CB_BAF_Coyote_Logistics_L111A1_D_DDPM","UK3CB_BAF_Coyote_Passenger_L111A1_D_DDPM"]; vehNATOLightUnarmed = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Sand","UK3CB_BAF_LandRover_Hard_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_Snatch_FFR_Sand_A_DDPM","UK3CB_BAF_LandRover_Soft_FFR_Sand_A_DDPM"]; vehNATOTrucks = ["UK3CB_BAF_MAN_HX58_Transport_Sand_DDPM","UK3CB_BAF_MAN_HX60_Transport_Sand_DDPM"]; @@ -41,56 +132,60 @@ vehNATOCargoTrucks = ["UK3CB_BAF_MAN_HX58_Cargo_Sand_A_DDPM","UK3CB_BAF_MAN_HX60 vehNATOAmmoTruck = "rhsusf_M977A4_AMMO_usarmy_d"; vehNATORepairTruck = "UK3CB_BAF_MAN_HX58_Repair_Sand_DDPM"; vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; -vehNATOAPC = ["RHS_M2A3_BUSKIII_d","RHS_M2A3_BUSKI_d","RHS_M2A3_d","RHS_M2A3_d","UK3CB_BAF_FV432_Mk3_GPMG_Sand_DDPM","UK3CB_BAF_FV432_Mk3_RWS_Sand_DDPM"];//"B_T_APC_Tracked_01_CRV_F" has no cargo seats +//Armored +vehNATOAPC = ["RHS_M2A3_BUSKIII_d","RHS_M2A3_BUSKI_d","RHS_M2A3_d","RHS_M2A3_d","UK3CB_BAF_FV432_Mk3_GPMG_Sand_DDPM","UK3CB_BAF_FV432_Mk3_RWS_Sand_DDPM"]; vehNATOTank = "rhsusf_m1a2sep1d_usarmy"; vehNATOAA = "RHS_M6"; vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats vehNATOBoat = "UK3CB_BAF_RHIB_HMG_DDPM_RM"; vehNATORBoat = "UK3CB_BAF_RHIB_GPMG_DDPM_RM"; vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes vehNATOPlane = "RHS_A10_AT"; vehNATOPlaneAA = "rhsusf_f22"; vehNATOTransportPlanes = ["UK3CB_BAF_Hercules_C3"]; +//Heli vehNATOPatrolHeli = "UK3CB_BAF_Merlin_HC3_CSAR"; vehNATOTransportHelis = ["UK3CB_BAF_Wildcat_AH1_TRN_8A_DDPM_RM","UK3CB_BAF_Merlin_HC3_18_GPMG_DDPM_RM",vehNATOPatrolHeli,"UK3CB_BAF_Chinook_HC1_DDPM"]; vehNATOAttackHelis = ["UK3CB_BAF_Apache_AH1_CAS_DDPM_RM","UK3CB_BAF_Apache_AH1_DDPM_RM","UK3CB_BAF_Wildcat_AH1_CAS_6A_DDPM_RM","UK3CB_BAF_Wildcat_AH1_CAS_8A"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; +//UAV vehNATOUAV = "B_UAV_02_F"; vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery vehNATOMRLS = "rhsusf_m109d_usarmy"; -vehNATOMRLSMags = "rhs_mag_155mm_m795_28";//["Sh_155mm_AMOS","rhs_mag_155mm_m795_28",,B Alpha 1-1:3 (Alberto)] +vehNATOMRLSMags = "rhs_mag_155mm_m795_28"; +//Combined Arrays vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "UK3CB_BAF_MAN_HX58_Fuel_Green_DDPM", "UK3CB_BAF_LandRover_Amb_FFR_Sand_A_DDPM", vehNATORepairTruck,"UK3CB_BAF_FV432_Mk3_RWS_Sand_DDPM"]; -vehNATOBike = "B_T_Quadbike_01_F"; -NATOFlag = "Flag_UK_F"; -NATOFlagTexture = "\A3\Data_F\Flags\Flag_UK.paa"; -NATOAmmobox = "B_supplyCrate_F"; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["UK3CB_BAF_Grenadier_DDPM",NATOGrunt];//"B_T_InfSentry";// -groupsNATOSniper = ["UK3CB_BAF_Sniper_DDPM_Ghillie_L115_RM","UK3CB_BAF_Spotter_DDPM_Ghillie_L129_RM"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["rhsusf_army_ocp_fso","rhsusf_army_ocp_aa","rhsusf_army_ocp_aa","rhsusf_army_ocp_aa"]; -groupsNATOAT = ["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_MAT_DDPM","UK3CB_BAF_MAT_DDPM","UK3CB_BAF_MATC_DDPM"]; -groupsNATOmid = [["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_MGLMG_DDPM","UK3CB_BAF_Grenadier_DDPM","UK3CB_BAF_GunnerM6_DDPM"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["UK3CB_BAF_Officer_DDPM",NATOGrunt,"UK3CB_BAF_GunnerM6_DDPM",NATOMarksman,"UK3CB_BAF_Officer_DDPM","UK3CB_BAF_LSW_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM"];//"B_T_InfSquad";// -NATOSpecOp = ["UK3CB_BAF_Officer_DDPM_RM","UK3CB_BAF_Rifleman_DDPM_RM","UK3CB_BAF_Medic_DDPM_RM",NATOBodyG,"UK3CB_BAF_LAT_DDPM_RM","UK3CB_BAF_FAC_DDPM_RM","UK3CB_BAF_Explosive_DDPM_RM","UK3CB_BAF_LSW_DDPM_RM"];//(configfile >> "CfgGroups" >> "West" >> "BLU_CTRG_F" >> "Infantry" >> "CTRG_InfSquad"); -factionMaleOccupants = "UK3CB_BAF_Faction_Army_Desert"; -groupsNATOSquad = [NATOSquad,["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_LSW_DDPM","UK3CB_BAF_Grenadier_DDPM",NATOMarksman,"UK3CB_BAF_LAT_DDPM","UK3CB_BAF_MATC_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM"],["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_GunnerM6_DDPM","UK3CB_BAF_Officer_DDPM","UK3CB_BAF_MGLMG_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM","UK3CB_BAF_Grenadier_DDPM","UK3CB_BAF_Grenadier_762_DDPM"],["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_LSW_DDPM","UK3CB_BAF_Grenadier_DDPM",NATOMarksman,"UK3CB_BAF_MAT_DDPM","UK3CB_BAF_MAT_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM"],["UK3CB_BAF_Officer_DDPM","UK3CB_BAF_LSW_DDPM","UK3CB_BAF_Grenadier_DDPM",NATOMarksman,"UK3CB_BAF_Engineer_DDPM","UK3CB_BAF_Engineer_DDPM","UK3CB_BAF_Explosive_DDPM","UK3CB_BAF_Medic_DDPM"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];/// +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "UK3CB_BAF_LandRover_WMIK_Milan_FFR_Green_B_DPMW"; + vehFIATruck = "UK3CB_BAF_MAN_HX60_Cargo_Sand_A_DDPM"; + vehFIACar = "UK3CB_BAF_LandRover_Snatch_FFR_Green_A_DPMW"; + }; -supportStaticNATOB = "rhs_TOW_Tripod_Bag"; -ATStaticNATOB = "rhs_Tow_Gun_Bag"; +//Police Vehicles +vehPoliceCar = "UK3CB_TKP_B_Lada_Police"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "UK3CB_BAF_Static_L111A1_Deployed_High_DDPM_RM"; +staticATOccupants = "RHS_TOW_TriPod_USMC_D"; +staticAAOccupants = "RHS_Stinger_AA_pod_D"; +NATOMortar = "UK3CB_BAF_Static_L16_Deployed_DDPM_RM"; + +//Static Weapon Bags MGStaticNATOB = "UK3CB_BAF_L111A1"; -supportStaticNATOB2 = "UK3CB_BAF_Tripod"; +ATStaticNATOB = "rhs_Tow_Gun_Bag"; AAStaticNATOB = "B_AA_01_weapon_F"; -MortStaticNATOB = "UK3CB_BAF_L16"; +//Short Support +supportStaticNATOB = "rhs_TOW_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "UK3CB_BAF_Tripod"; +//Mortar Support supportStaticNATOB3 = "UK3CB_BAF_L16_Tripod"; - -weaponsNato append ["UK3CB_BAF_L1A1","UK3CB_BAF_L1A1_Wood","UK3CB_BAF_L110A3","UK3CB_BAF_L115A3","UK3CB_BAF_L118A1_Covert","UK3CB_BAF_L119A1_CQB","UK3CB_BAF_L22","UK3CB_BAF_L22A2","UK3CB_BAF_L7A2","UK3CB_BAF_L135A1","UK3CB_BAF_L85A2","UK3CB_BAF_L85A2_UGL_HWS","UK3CB_BAF_L86A2","UK3CB_BAF_L86A3","UK3CB_BAF_L91A1","UK3CB_BAF_L92A1","UK3CB_BAF_L128A1","UK3CB_BAF_L129A1","UK3CB_BAF_M6"];//possible weapons that spawn in NATO ammoboxes -smokeX = smokeX + ["UK3CB_BAF_SmokeShell","UK3CB_BAF_SmokeShellRed","UK3CB_BAF_SmokeShellGreen","UK3CB_BAF_SmokeShellYellow","UK3CB_BAF_SmokeShellPurple","UK3CB_BAF_SmokeShellBlue","UK3CB_BAF_SmokeShellOrange"]; -NVGoggles = NVGoggles + ["UK3CB_BAF_HMNVS"/*,"rhsusf_ANPVS_15"*/]; -itemsAAF = itemsAAF + ["rhsusf_acc_grip2","rhsusf_acc_grip2_tan","rhsusf_acc_anpeq15side_bk","rhsusf_acc_anpeq15_bk_top","rhsusf_acc_anpeq15","rhsusf_acc_anpeq15_light","rhsusf_acc_anpeq15_bk","rhsusf_acc_anpeq15_bk_light","rhsusf_acc_anpeq15A","rhsusf_acc_ARDEC_M240","rhsusf_acc_nt4_black","rhsusf_acc_nt4_tan","rhsusf_acc_SFMB556","UK3CB_BAF_SUIT","UK3CB_BAF_SUSAT","UK3CB_BAF_SUSAT_3D","UK3CB_BAF_TA648","UK3CB_BAF_TA648_308","UK3CB_BAF_TA31F","UK3CB_BAF_TA31F_Hornbill","UK3CB_BAF_TA31F_3D","UK3CB_BAF_TA31F_Hornbill_3D","UK3CB_BAF_Eotech","UK3CB_BAF_SB31250","UK3CB_BAF_SB31250_Ghillie","UK3CB_BAF_SB31250_Desert","UK3CB_BAF_SB31250_Desert_Ghillie","UK3CB_BAF_SpecterLDS","UK3CB_BAF_SpecterLDS_3D","UK3CB_BAF_SpecterLDS_Dot","UK3CB_BAF_SpecterLDS_Dot_3D","UK3CB_BAF_LLM_IR_Tan","UK3CB_BAF_LLM_IR_Black","UK3CB_BAF_LLM_Flashlight_Tan","UK3CB_BAF_LLM_Flashlight_Black","UK3CB_BAF_Flashlight_L131A1","UK3CB_BAF_SFFH","UK3CB_BAF_BFA_L85","UK3CB_BAF_BFA_L110","UK3CB_BAF_BFA_L129","UK3CB_BAF_BFA_L7","UK3CB_BAF_Silencer_L85","UK3CB_BAF_Silencer_L110","UK3CB_BAF_Silencer_L115A3","UK3CB_BAF_Silencer_L91A1","RKSL_optic_PMII_312","RKSL_optic_PMII_312_sunshade","RKSL_optic_PMII_312_wdl","RKSL_optic_PMII_312_sunshade_wdl","RKSL_optic_PMII_312_des","RKSL_optic_PMII_312_sunshade_des","RKSL_optic_PMII_525","RKSL_optic_PMII_525_wdl","RKSL_optic_PMII_525_des"]; -flagNATOmrk = "flag_UK";//ok - -lampOccupants = "acc_flashlight"; -nameOccupants = "BAF"; -if (isServer) then {"NATO_carrier" setMarkerText "HMS Ark Royal"}; diff --git a/A3-Antistasi/Templates/BAF_Occ_BAF_Trop.sqf b/A3-Antistasi/Templates/BAF_Occ_BAF_Trop.sqf new file mode 100644 index 0000000000..aa89d35df6 --- /dev/null +++ b/A3-Antistasi/Templates/BAF_Occ_BAF_Trop.sqf @@ -0,0 +1,190 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "BAF"; + +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "UK3CB_BAF_Faction_Army_Tropical"; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "UK3CB_TKP_B"}; + +//Flag Images +NATOFlag = "Flag_UK_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_UK.paa"; +flagNATOmrk = "flag_UK"; +if (isServer) then {"NATO_carrier" setMarkerText "HMS Ark Royal"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + ["vanilla_blufor_teamLeader"] call A3A_fnc_getLoadout, + //Medic + ["vanilla_blufor_medic"] call A3A_fnc_getLoadout, + //Autorifleman + ["vanilla_blufor_machineGunner"] call A3A_fnc_getLoadout, + //Marksman + ["vanilla_blufor_marksman"] call A3A_fnc_getLoadout, + //Anti-tank Scout + ["vanilla_blufor_AT"] call A3A_fnc_getLoadout, + //AT2 + ["vanilla_blufor_rifleman"] call A3A_fnc_getLoadout +]; + +//PVP Player Vehicles +vehNATOPVP = ["B_T_MRAP_01_F","B_MRAP_01_hmg_F"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "UK3CB_BAF_Rifleman_762_Tropical"; +NATOOfficer = "UK3CB_BAF_Officer_Tropical"; +NATOOfficer2 = "UK3CB_BAF_FAC_Tropical"; +NATOBodyG = "UK3CB_BAF_HeliCrew_Tropical_RM"; +NATOCrew = "UK3CB_BAF_Crewman_Tropical"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "UK3CB_BAF_Sharpshooter_Tropical"; +staticCrewOccupants = "UK3CB_BAF_GunnerStatic_Tropical";; +NATOPilot = "UK3CB_BAF_HeliPilot_RAF_Tropical"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "UK3CB_BAF_Rifleman_Smock_DPMW"; + FIAMarksman = "UK3CB_BAF_Pointman_Smock_DPMW"; + }; + +//Police Units +policeOfficer = "UK3CB_ANP_B_TL"; +policeGrunt = "UK3CB_ANP_B_RIF_1"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["UK3CB_BAF_Officer_Tropical","UK3CB_BAF_RO_Tropical"]; +groupsNATOSniper = ["UK3CB_BAF_Sniper_Tropical_Ghillie_L115_RM","UK3CB_BAF_Spotter_Tropical_Ghillie_L129_RM"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["rhsusf_army_ucp_fso","rhsusf_army_ucp_aa","rhsusf_army_ucp_aa","rhsusf_army_ucp_aa"]; +groupsNATOAT = ["UK3CB_BAF_FT_762_Tropical","UK3CB_BAF_MAT_Tropical","UK3CB_BAF_MAT_Tropical","UK3CB_BAF_MATC_Tropical"]; +groupsNATOmid = [["UK3CB_BAF_SC_Tropical","UK3CB_BAF_MGLMG_Tropical","UK3CB_BAF_Grenadier_762_Tropical","UK3CB_BAF_LAT_Tropical"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["UK3CB_BAF_SC_Tropical",NATOGrunt,"UK3CB_BAF_GunnerM6_Tropical",NATOMarksman,"UK3CB_BAF_FT_762_Tropical","UK3CB_BAF_LSW_Tropical","UK3CB_BAF_Explosive_Tropical","UK3CB_BAF_Medic_Tropical"]; +NATOSpecOp = ["UK3CB_BAF_SC_Tropical_BPT_RM","UK3CB_BAF_Pointman_Tropical_BPT_RM","UK3CB_BAF_Pointman_Tropical_BPT_RM","UK3CB_BAF_Marksman_Tropical_BPT_RM","UK3CB_BAF_FAC_Tropical_BPT_RM","UK3CB_BAF_Explosive_Tropical_BPT_RM","UK3CB_BAF_MGLMG_Tropical_BPT_RM","UK3CB_BAF_Medic_Tropical_BPT_RM"]; +groupsNATOSquad = + [ + NATOSquad, + ["UK3CB_BAF_SC_Tropical","UK3CB_BAF_LSW_Tropical","UK3CB_BAF_Grenadier_762_Tropical",NATOMarksman,"UK3CB_BAF_LAT_ILAW_762_Tropical","UK3CB_BAF_Pointman_Tropical","UK3CB_BAF_Engineer_Tropical","UK3CB_BAF_Medic_Tropical"], + ["UK3CB_BAF_SC_Tropical","UK3CB_BAF_GunnerM6_Tropical","UK3CB_BAF_Repair_Tropical","UK3CB_BAF_MGGPMG_Tropical","UK3CB_BAF_FT_762_Tropical","UK3CB_BAF_Sharpshooter_Tropical","UK3CB_BAF_Grenadier_762_Tropical","UK3CB_BAF_Medic_Tropical"], + ["UK3CB_BAF_SC_Tropical","UK3CB_BAF_Marksman_Tropical","UK3CB_BAF_Explosive_Tropical","UK3CB_BAF_Engineer_Tropical","UK3CB_BAF_Repair_Tropical","UK3CB_BAF_Pointman_Tropical","UK3CB_BAF_LAT_762_Tropical","UK3CB_BAF_Medic_Tropical"], + ["UK3CB_BAF_SC_Tropical","UK3CB_BAF_LSW_Tropical","UK3CB_BAF_MGGPMG_Tropical","UK3CB_BAF_MGLMG_Tropical","UK3CB_BAF_Grenadier_762_Tropical","UK3CB_BAF_LAT_ILAW_762_Tropical","UK3CB_BAF_LAT_762_Tropical","UK3CB_BAF_Medic_Tropical"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["UK3CB_BAF_Grenadier_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW"], + ["UK3CB_BAF_LAT_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW"], + ["UK3CB_BAF_Sniper_Smock_DPMW_Ghillie","UK3CB_BAF_Spotter_Smock_DPMW_Ghillie"] + ]; + //Fireteams + groupsFIAMid = + [ + ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_Pointman_Smock_DPMW","UK3CB_BAF_MGGPMG_Smock_DPMW","UK3CB_BAF_MGGPMGA_Smock_DPMW"], + ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_GunnerM6_Smock_DPMW","UK3CB_BAF_Grenadier_Smock_DPMW","UK3CB_BAF_MAT_Smock_DPMW"], + ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_MAT_Smock_DPMW","UK3CB_BAF_MATC_Smock_DPMW","UK3CB_BAF_Engineer_Smock_DPMW"] + ]; + //Squads + FIASquad = ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW","UK3CB_BAF_LAT_Smock_DPMW","UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_MGGPMG_Smock_DPMW","UK3CB_BAF_MGGPMGA_Smock_DPMW","UK3CB_BAF_Marksman_Smock_DPMW","UK3CB_BAF_Medic_Smock_DPMW"]; + groupsFIASquad = [FIASquad]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; +vehNATOLightArmed = ["UK3CB_BAF_LandRover_WMIK_HMG_FFR_Green_B_Tropical_RM","UK3CB_BAF_LandRover_WMIK_GMG_FFR_Green_B_Tropical_RM","UK3CB_BAF_LandRover_WMIK_Milan_FFR_Green_B_Tropical_RM","UK3CB_BAF_Jackal2_GMG_W_Tropical_RM","UK3CB_BAF_Jackal2_L2A1_W_Tropical_RM","UK3CB_BAF_Coyote_Logistics_L111A1_W_Tropical_RM","UK3CB_BAF_Coyote_Passenger_L111A1_W_Tropical_RM"]; +vehNATOLightUnarmed = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Green","UK3CB_BAF_LandRover_Hard_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical","UK3CB_BAF_LandRover_Soft_FFR_Green_B_Tropical"]; +vehNATOTrucks = ["UK3CB_BAF_MAN_HX60_Transport_Green_Tropical","UK3CB_BAF_MAN_HX58_Transport_Green_Tropical"]; +vehNATOCargoTrucks = ["UK3CB_BAF_MAN_HX60_Cargo_Green_A_Tropical","UK3CB_BAF_MAN_HX58_Cargo_Green_A_Tropical"]; +vehNATOAmmoTruck = "rhsusf_M977A4_AMMO_usarmy_wd"; +vehNATORepairTruck = "UK3CB_BAF_MAN_HX58_Repair_Green_Tropical"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["RHS_M2A3_BUSKIII_wd","RHS_M2A3_BUSKI_wd","RHS_M2A3_wd","RHS_M2A3_wd","UK3CB_BAF_FV432_Mk3_GPMG_Green_Tropical_RM","UK3CB_BAF_FV432_Mk3_RWS_Green_Tropical_RM"]; +vehNATOTank = "rhsusf_m1a2sep1wd_usarmy"; +vehNATOAA = "RHS_M6_wd"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "UK3CB_BAF_RHIB_HMG_Tropical_RM"; +vehNATORBoat = "UK3CB_BAF_RHIB_GPMG_Tropical_RM"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes +vehNATOPlane = "RHS_A10_AT"; +vehNATOPlaneAA = "rhsusf_f22"; +vehNATOTransportPlanes = ["UK3CB_BAF_Hercules_C4_Tropical"]; +//Heli +vehNATOPatrolHeli = "UK3CB_BAF_Merlin_HC4_CSAR_Tropical_RM"; +vehNATOTransportHelis = ["UK3CB_BAF_Wildcat_AH1_TRN_8A_Tropical_RM","UK3CB_BAF_Merlin_HC3_18_GPMG_Tropical_RM",vehNATOPatrolHeli,"UK3CB_BAF_Chinook_HC2_Tropical_RM"]; +vehNATOAttackHelis = ["UK3CB_BAF_Apache_AH1_Tropical_RM","UK3CB_BAF_Apache_AH1_CAS_Tropical_RM","UK3CB_BAF_Wildcat_AH1_CAS_6A_Tropical_RM","UK3CB_BAF_Wildcat_AH1_CAS_8A_Tropical_RM"]; +//UAV +vehNATOUAV = "B_UAV_02_F"; +vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery +vehNATOMRLS = "rhsusf_m109d_usarmy"; +vehNATOMRLSMags = "rhs_mag_155mm_m795_28"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "UK3CB_BAF_MAN_HX60_Fuel_Green_Tropical_RM", "UK3CB_BAF_LandRover_Amb_FFR_Green_A_Tropical_RM", vehNATORepairTruck,"UK3CB_BAF_FV432_Mk3_RWS_Green_Tropical_RM"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "UK3CB_BAF_LandRover_WMIK_Milan_FFR_Green_B_Tropical_RM"; + vehFIATruck = "UK3CB_BAF_MAN_HX60_Cargo_Green_A_Tropical"; + vehFIACar = "UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical"; + }; + +//Police Vehicles +vehPoliceCar = "UK3CB_TKP_B_Lada_Police"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "UK3CB_BAF_Static_L111A1_Deployed_High_Tropical_RM"; +staticATOccupants = "RHS_TOW_TriPod_USMC_WD"; +staticAAOccupants = "RHS_Stinger_AA_pod_WD"; +NATOMortar = "UK3CB_BAF_Static_L16_Deployed_Tropical_RM"; + +//Static Weapon Bags +MGStaticNATOB = "UK3CB_BAF_L111A1"; +ATStaticNATOB = "rhs_Tow_Gun_Bag"; +AAStaticNATOB = "B_AA_01_weapon_F"; +MortStaticNATOB = "UK3CB_BAF_L16"; +//Short Support +supportStaticNATOB = "rhs_TOW_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "UK3CB_BAF_Tripod"; +//Mortar Support +supportStaticNATOB3 = "UK3CB_BAF_L16_Tripod"; diff --git a/A3-Antistasi/Templates/OccupantsFFAA.sqf b/A3-Antistasi/Templates/FFAA_Occ_FFAA_Arid.sqf similarity index 99% rename from A3-Antistasi/Templates/OccupantsFFAA.sqf rename to A3-Antistasi/Templates/FFAA_Occ_FFAA_Arid.sqf index 9ab70beced..466329b0ae 100644 --- a/A3-Antistasi/Templates/OccupantsFFAA.sqf +++ b/A3-Antistasi/Templates/FFAA_Occ_FFAA_Arid.sqf @@ -3,7 +3,6 @@ FIAMarksman = "ffaa_brilat_tirador"; vehFIAArmedCar = "ffaa_et_lince_m2"; vehFIATruck = "ffaa_et_m250_carga_blin"; vehFIACar = "ffaa_et_anibal"; - groupsFIASmall = [["ffaa_brilat_jefe_peloton","ffaa_brilat_granadero"],["ffaa_brilat_francotirador_barrett","ffaa_brilat_observador"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// groupsFIAMid = [["ffaa_brilat_jefe_peloton","ffaa_brilat_tirador_ameli","ffaa_brilat_soldierX","ffaa_brilat_alcotan"],["ffaa_brilat_jefe_peloton","ffaa_brilat_tirador_ameli","ffaa_brilat_soldierX","ffaa_brilat_c90"]];//["IRG_InfAssault","IRG_InfTeam","IRG_InfTeam_AT"];/// FIASquad = ["ffaa_brilat_jefe_escuadra","ffaa_brilat_jefe_peloton","ffaa_brilat_mg4","ffaa_brilat_soldierX","ffaa_brilat_tirador_ameli","ffaa_brilat_soldierX","ffaa_brilat_tirador","ffaa_brilat_medicX"];//"IRG_InfSquad";/// diff --git a/A3-Antistasi/Templates/FFAA_Occ_FFAA_Temp.sqf b/A3-Antistasi/Templates/FFAA_Occ_FFAA_Temp.sqf new file mode 100644 index 0000000000..466329b0ae --- /dev/null +++ b/A3-Antistasi/Templates/FFAA_Occ_FFAA_Temp.sqf @@ -0,0 +1,10 @@ +FIARifleman = "ffaa_brilat_granadero"; +FIAMarksman = "ffaa_brilat_tirador"; +vehFIAArmedCar = "ffaa_et_lince_m2"; +vehFIATruck = "ffaa_et_m250_carga_blin"; +vehFIACar = "ffaa_et_anibal"; +groupsFIASmall = [["ffaa_brilat_jefe_peloton","ffaa_brilat_granadero"],["ffaa_brilat_francotirador_barrett","ffaa_brilat_observador"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// +groupsFIAMid = [["ffaa_brilat_jefe_peloton","ffaa_brilat_tirador_ameli","ffaa_brilat_soldierX","ffaa_brilat_alcotan"],["ffaa_brilat_jefe_peloton","ffaa_brilat_tirador_ameli","ffaa_brilat_soldierX","ffaa_brilat_c90"]];//["IRG_InfAssault","IRG_InfTeam","IRG_InfTeam_AT"];/// +FIASquad = ["ffaa_brilat_jefe_escuadra","ffaa_brilat_jefe_peloton","ffaa_brilat_mg4","ffaa_brilat_soldierX","ffaa_brilat_tirador_ameli","ffaa_brilat_soldierX","ffaa_brilat_tirador","ffaa_brilat_medicX"];//"IRG_InfSquad";/// +groupsFIASquad = [FIASquad]; +factionFIA = "FFAA"; \ No newline at end of file diff --git a/A3-Antistasi/Templates/IFA_Inv_SOV_Arct.sqf b/A3-Antistasi/Templates/IFA_Inv_SOV_Arct.sqf new file mode 100644 index 0000000000..cf35bba145 --- /dev/null +++ b/A3-Antistasi/Templates/IFA_Inv_SOV_Arct.sqf @@ -0,0 +1,167 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "Soviets"; + +//SF Faction +factionMaleInvaders = ""; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "LIB_NKVD"}; + +//Flag Images +CSATFlag = "LIB_FlagCarrier_SU"; +CSATFlagTexture = "ww2\core_t\if_decals_t\ussr\flag_su_co.paa"; +flagCSATmrk = "LIB_faction_RKKA"; +if (isServer) then {"CSAT_carrier" setMarkerText "Soviet Reinforcements"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +CSATPlayerLoadouts = [ + //Team Leader + "LIB_SOV_scout_p_officer", + //Medic + "LIB_SOV_medic", + //Autorifleman + "LIB_SOV_mgunner", + //Marksman + "LIB_SOV_scout_sniper", + //Anti-tank Scout + "LIB_SOV_LAT_Soldier", + //AT2 + "LIB_SOV_LAT_Soldier" +]; + +//PVP Player Vehicles +vehCSATPVP = ["LIB_GazM1_SOV","LIB_GazM1_SOV_camo_sand","LIB_Willys_MB","LIB_Scout_M3"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "LIB_SOV_rifleman"; +CSATOfficer = "LIB_SOV_captain_summer"; +CSATBodyG = "LIB_SOV_scout_mgunner"; +CSATCrew = "LIB_SOV_tank_crew"; +CSATMarksman = "LIB_SOV_scout_sniper"; +staticCrewInvaders = "LIB_SOV_gun_crew"; +CSATPilot = "LIB_SOV_pilot"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "LIB_NKVD_rifleman"; + FIAMarksman = "LIB_NKVD_LC_rifleman"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["LIB_SOV_LC_rifleman_summer","LIB_SOV_rifleman"]; +groupsCSATSniper = ["LIB_SOV_scout_sniper_autumn","LIB_SOV_scout_sergeant"]; +groupsCSATsmall = [groupsCSATSentry,groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_smgunner_summer","LIB_SOV_smgunner_summer"]; +groupsCSATAT = ["LIB_SOV_sergeant","LIB_SOV_rifleman","LIB_SOV_AT_soldier","LIB_SOV_AT_grenadier"]; +groupsCSATmid = [["LIB_SOV_sergeant","LIB_SOV_LC_rifleman_summer","LIB_SOV_smgunner_summer","LIB_SOV_LC_rifleman_summer"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_LC_rifleman_summer","LIB_SOV_smgunner_summer","LIB_SOV_smgunner_summer","LIB_SOV_AT_soldier","LIB_SOV_AT_grenadier","LIB_SOV_medic"]; +CSATSpecOp = ["LIB_SOV_scout_p_officer","LIB_SOV_scout_sergeant","LIB_SOV_scout_mgunner","LIB_SOV_scout_smgunner","LIB_SOV_scout_rifleman","LIB_SOV_scout_smgunner","LIB_SOV_scout_sniper","LIB_SOV_scout_sniper"]; +groupsCSATSquad = + [ + CSATSquad, + ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_LC_rifleman_summer","LIB_SOV_sapper","LIB_SOV_smgunner_summer","LIB_SOV_AT_soldier","LIB_SOV_assault_smgunner","LIB_SOV_medic"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + [FIARifleman,FIARifleman], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["LIB_NKVD_p_officer","LIB_NKVD_smgunner","LIB_NKVD_LC_rifleman","LIB_NKVD_rifleman"] + ]; + //Squads + FIASquad = ["LIB_NKVD_lieutenant","LIB_NKVD_smgunner","LIB_NKVD_smgunner","LIB_NKVD_p_officer","LIB_NKVD_p_officer","LIB_NKVD_LC_rifleman","LIB_NKVD_rifleman","LIB_SOV_medic"]; + groupsFIASquad = [FIASquad]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATLightArmed = ["LIB_Scout_M3"]; +vehCSATLightUnarmed = ["LIB_GazM1_SOV","LIB_GazM1_SOV_camo_sand","LIB_Willys_MB"]; +vehCSATTrucks = ["LIB_Zis5v","LIB_US6_Tent","LIB_US6_Open"]; +vehCSATAmmoTruck = "LIB_US6_Ammo"; +vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored +vehCSATAPC = ["LIB_SdKfz251_captured","LIB_SU85","LIB_T34_76","LIB_T34_85"]; +vehCSATTank = "LIB_JS2_43"; +vehCSATAA = "LIB_Zis5v_61K"; +vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats +vehCSATBoat = "O_T_Boat_Armed_01_hmg_F"; +vehCSATRBoat = "O_T_Boat_Transport_01_F"; +vehCSATBoats = [vehCSATBoat,vehCSATRBoat]; +//Planes +vehCSATPlane = "LIB_Pe2"; +vehCSATPlaneAA = "LIB_P39"; +vehCSATTransportPlanes = ["LIB_Li2", "LIB_Li2", "LIB_Li2", "LIB_Li2"]; +//Heli +vehCSATPatrolHeli = "LIB_Li2"; +vehCSATTransportHelis = []; +vehCSATAttackHelis = ["LIB_RA_P39_3","LIB_RA_P39_2"]; +//UAV +vehCSATUAV = "not_supported"; +vehCSATUAVSmall = "not_supported"; +//Artillery +vehCSATMRLS = "LIB_US6_BM13"; +vehCSATMRLSMags = "LIB_16Rnd_BM13"; +//Combined Arrays +vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck,"LIB_Zis5v_Med","LIB_Zis5v_Fuel","LIB_Zis6_Parm"]; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; + +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "LIB_Scout_m3_w"; + vehFIATruck = "LIB_Zis5v_w"; + vehFIACar = "LIB_Willys_MB_w"; + }; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "LIB_Maxim_M30_Trench"; +staticATInvaders = "LIB_Zis3"; +staticAAInvaders = "LIB_61k"; +CSATMortar = "LIB_BM37"; + +//Static Weapon Bags +MGStaticCSATB = "not_supported"; +ATStaticCSATB = "not_supported"; +AAStaticCSATB = "not_supported"; +MortStaticCSATB = "not_supported"; +//Short Support +supportStaticCSATB = "not_supported"; +//Tall Support +supportStaticCSATB2 = "not_supported"; +//Mortar Support +supportStaticCSATB3 = "not_supported"; diff --git a/A3-Antistasi/Templates/InvadersIFA.sqf b/A3-Antistasi/Templates/IFA_Inv_SOV_Arid.sqf similarity index 59% rename from A3-Antistasi/Templates/InvadersIFA.sqf rename to A3-Antistasi/Templates/IFA_Inv_SOV_Arid.sqf index 574bcf6525..88418c495f 100644 --- a/A3-Antistasi/Templates/InvadersIFA.sqf +++ b/A3-Antistasi/Templates/IFA_Inv_SOV_Arid.sqf @@ -1,17 +1,27 @@ -CSATGrunt = "LIB_SOV_rifleman"; -CSATOfficer = "LIB_SOV_captain_summer"; -CSATBodyG = "LIB_SOV_scout_mgunner"; -CSATCrew = "LIB_SOV_tank_crew"; -CSATMarksman = "LIB_SOV_scout_sniper"; -staticCrewInvaders = "LIB_SOV_gun_crew"; -CSATPilot = "LIB_SOV_pilot"; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "Soviets"; -CSATMortar = "LIB_BM37"; -CSATMG = "LIB_Maxim_M30_Trench"; -staticATInvaders = "LIB_Zis3"; -staticAAInvaders = "LIB_61k"; +//SF Faction +factionMaleInvaders = ""; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "LIB_NKVD"}; -//CSAT PvP Loadouts +//Flag Images +CSATFlag = "LIB_FlagCarrier_SU"; +CSATFlagTexture = "ww2\core_t\if_decals_t\ussr\flag_su_co.paa"; +flagCSATmrk = "LIB_faction_RKKA"; +if (isServer) then {"CSAT_carrier" setMarkerText "Soviet Reinforcements"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts CSATPlayerLoadouts = [ //Team Leader "LIB_SOV_scout_p_officer", @@ -23,65 +33,135 @@ CSATPlayerLoadouts = [ "LIB_SOV_scout_sniper", //Anti-tank Scout "LIB_SOV_LAT_Soldier", - //Anti-tank Scout + //AT2 "LIB_SOV_LAT_Soldier" ]; -vehCSATPVP = ["LIB_GazM1_SOV","LIB_GazM1_SOV_camo_sand","LIB_Willys_MB","LIB_Scout_M3"];//This array contains the vehicles CSAT-PvP players can spawn near their flag. +//PVP Player Vehicles +vehCSATPVP = ["LIB_GazM1_SOV","LIB_GazM1_SOV_camo_sand","LIB_Willys_MB","LIB_Scout_M3"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "LIB_SOV_rifleman"; +CSATOfficer = "LIB_SOV_captain_summer"; +CSATBodyG = "LIB_SOV_scout_mgunner"; +CSATCrew = "LIB_SOV_tank_crew"; +CSATMarksman = "LIB_SOV_scout_sniper"; +staticCrewInvaders = "LIB_SOV_gun_crew"; +CSATPilot = "LIB_SOV_pilot"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "LIB_NKVD_rifleman"; + FIAMarksman = "LIB_NKVD_LC_rifleman"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["LIB_SOV_LC_rifleman_summer","LIB_SOV_rifleman"]; +groupsCSATSniper = ["LIB_SOV_scout_sniper_autumn","LIB_SOV_scout_sergeant"]; +groupsCSATsmall = [groupsCSATSentry,groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_smgunner_summer","LIB_SOV_smgunner_summer"]; +groupsCSATAT = ["LIB_SOV_sergeant","LIB_SOV_rifleman","LIB_SOV_AT_soldier","LIB_SOV_AT_grenadier"]; +groupsCSATmid = [["LIB_SOV_sergeant","LIB_SOV_LC_rifleman_summer","LIB_SOV_smgunner_summer","LIB_SOV_LC_rifleman_summer"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_LC_rifleman_summer","LIB_SOV_smgunner_summer","LIB_SOV_smgunner_summer","LIB_SOV_AT_soldier","LIB_SOV_AT_grenadier","LIB_SOV_medic"]; +CSATSpecOp = ["LIB_SOV_scout_p_officer","LIB_SOV_scout_sergeant","LIB_SOV_scout_mgunner","LIB_SOV_scout_smgunner","LIB_SOV_scout_rifleman","LIB_SOV_scout_smgunner","LIB_SOV_scout_sniper","LIB_SOV_scout_sniper"]; +groupsCSATSquad = + [ + CSATSquad, + ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_LC_rifleman_summer","LIB_SOV_sapper","LIB_SOV_smgunner_summer","LIB_SOV_AT_soldier","LIB_SOV_assault_smgunner","LIB_SOV_medic"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + [FIARifleman,FIARifleman], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["LIB_NKVD_p_officer","LIB_NKVD_smgunner","LIB_NKVD_LC_rifleman","LIB_NKVD_rifleman"] + ]; + //Squads + FIASquad = ["LIB_NKVD_lieutenant","LIB_NKVD_smgunner","LIB_NKVD_smgunner","LIB_NKVD_p_officer","LIB_NKVD_p_officer","LIB_NKVD_LC_rifleman","LIB_NKVD_rifleman","LIB_SOV_medic"]; + groupsFIASquad = [FIASquad]; + }; +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; vehCSATLightArmed = ["LIB_Scout_M3"]; vehCSATLightUnarmed = ["LIB_GazM1_SOV","LIB_GazM1_SOV_camo_sand","LIB_Willys_MB"]; vehCSATTrucks = ["LIB_Zis5v","LIB_US6_Tent","LIB_US6_Open"]; vehCSATAmmoTruck = "LIB_US6_Ammo"; vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored vehCSATAPC = ["LIB_SdKfz251_captured","LIB_SU85","LIB_T34_76","LIB_T34_85"]; vehCSATTank = "LIB_JS2_43"; vehCSATAA = "LIB_Zis5v_61K"; vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats vehCSATBoat = "O_T_Boat_Armed_01_hmg_F"; vehCSATRBoat = "O_T_Boat_Transport_01_F"; vehCSATBoats = [vehCSATBoat,vehCSATRBoat]; +//Planes vehCSATPlane = "LIB_Pe2"; vehCSATPlaneAA = "LIB_P39"; vehCSATTransportPlanes = ["LIB_Li2", "LIB_Li2", "LIB_Li2", "LIB_Li2"]; +//Heli vehCSATPatrolHeli = "LIB_Li2"; vehCSATTransportHelis = []; vehCSATAttackHelis = ["LIB_RA_P39_3","LIB_RA_P39_2"]; -vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; +//UAV vehCSATUAV = "not_supported"; vehCSATUAVSmall = "not_supported"; +//Artillery vehCSATMRLS = "LIB_US6_BM13"; vehCSATMRLSMags = "LIB_16Rnd_BM13"; +//Combined Arrays vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck,"LIB_Zis5v_Med","LIB_Zis5v_Fuel","LIB_Zis6_Parm"]; -vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; -CSATFlag = "LIB_FlagCarrier_SU"; -CSATFlagTexture = "ww2\core_t\if_decals_t\ussr\flag_su_co.paa"; -CSATAmmoBox = "O_supplyCrate_F"; -//cfgCSATInf = (configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "Infantry"); -groupsCSATSentry = ["LIB_SOV_LC_rifleman_summer","LIB_SOV_rifleman"];///"O_T_InfSentry";/// -groupsCSATSniper = ["LIB_SOV_scout_sniper_autumn","LIB_SOV_scout_sergeant"]; -groupsCSATsmall = [groupsCSATSentry,groupsCSATSniper];///[groupsCSATSentry,"O_T_reconSentry","O_T_SniperTeam"];/// -groupsCSATAA = ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_smgunner_summer","LIB_SOV_smgunner_summer"]; -groupsCSATAT = ["LIB_SOV_sergeant","LIB_SOV_rifleman","LIB_SOV_AT_soldier","LIB_SOV_AT_grenadier"]; -groupsCSATmid = [["LIB_SOV_sergeant","LIB_SOV_LC_rifleman_summer","LIB_SOV_smgunner_summer","LIB_SOV_LC_rifleman_summer"],groupsCSATAA,groupsCSATAT];///["O_T_InfTeam","O_T_InfTeam_AA","O_T_InfTeam_AT"];/// -CSATSquad = ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_LC_rifleman_summer","LIB_SOV_smgunner_summer","LIB_SOV_smgunner_summer","LIB_SOV_AT_soldier","LIB_SOV_AT_grenadier","LIB_SOV_medic"];///"O_T_InfSquad";/// -CSATSpecOp = ["LIB_SOV_scout_p_officer","LIB_SOV_scout_sergeant","LIB_SOV_scout_mgunner","LIB_SOV_scout_smgunner","LIB_SOV_scout_rifleman","LIB_SOV_scout_smgunner","LIB_SOV_scout_sniper","LIB_SOV_scout_sniper"];///(configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "SpecOps" >> "O_T_ViperTeam");/// -factionMaleInvaders = ""; -groupsCSATSquad = [CSATSquad,["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_LC_rifleman_summer","LIB_SOV_sapper","LIB_SOV_smgunner_summer","LIB_SOV_AT_soldier","LIB_SOV_assault_smgunner","LIB_SOV_medic"]];//[CSATSquad,"O_T_InfSquad_Weapons"];///"O_T_Engineer_F" +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "LIB_Scout_m3_w"; + vehFIATruck = "LIB_Zis5v_w"; + vehFIACar = "LIB_Willys_MB_w"; + }; -supportStaticCSATB = "not_supported"; -ATStaticCSATB = "not_supported"; +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "LIB_Maxim_M30_Trench"; +staticATInvaders = "LIB_Zis3"; +staticAAInvaders = "LIB_61k"; +CSATMortar = "LIB_BM37"; + +//Static Weapon Bags MGStaticCSATB = "not_supported"; -supportStaticCSATB2 = "not_supported"; +ATStaticCSATB = "not_supported"; AAStaticCSATB = "not_supported"; MortStaticCSATB = "not_supported"; +//Short Support +supportStaticCSATB = "not_supported"; +//Tall Support +supportStaticCSATB2 = "not_supported"; +//Mortar Support supportStaticCSATB3 = "not_supported"; - -weaponsCSAT append ["LIB_SVT_40","LIB_M9130","LIB_DP28","LIB_PPSh41_m","LIB_PPSh41_d","LIB_M9130PU","LIB_RPzB","LIB_FLARE_PISTOL","LIB_TT33"]; -ammunitionCSAT append ["LIB_10Rnd_762x54","LIB_5Rnd_762x54","LIB_1Rnd_flare_red","LIB_F1","LIB_1Rnd_flare_green","LIB_1Rnd_flare_yellow","LIB_Rg42","LIB_47Rnd_762x54","LIB_35Rnd_762x25","LIB_8Rnd_762x25","LIB_71Rnd_762x25","LIB_1Rnd_RPzB","LIB_Rpg6","LIB_RDG"]; -flagCSATmrk = "LIB_faction_RKKA"; -nameInvaders = "Soviets"; -if (isServer) then {"CSAT_carrier" setMarkerText "Soviet Reinforcements"}; - -{helmets pushBackUnique (getUnitLoadout _x select 6)} forEach CSATSquad; diff --git a/A3-Antistasi/Templates/IFA_Inv_SOV_Temp.sqf b/A3-Antistasi/Templates/IFA_Inv_SOV_Temp.sqf new file mode 100644 index 0000000000..88418c495f --- /dev/null +++ b/A3-Antistasi/Templates/IFA_Inv_SOV_Temp.sqf @@ -0,0 +1,167 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "Soviets"; + +//SF Faction +factionMaleInvaders = ""; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "LIB_NKVD"}; + +//Flag Images +CSATFlag = "LIB_FlagCarrier_SU"; +CSATFlagTexture = "ww2\core_t\if_decals_t\ussr\flag_su_co.paa"; +flagCSATmrk = "LIB_faction_RKKA"; +if (isServer) then {"CSAT_carrier" setMarkerText "Soviet Reinforcements"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +CSATPlayerLoadouts = [ + //Team Leader + "LIB_SOV_scout_p_officer", + //Medic + "LIB_SOV_medic", + //Autorifleman + "LIB_SOV_mgunner", + //Marksman + "LIB_SOV_scout_sniper", + //Anti-tank Scout + "LIB_SOV_LAT_Soldier", + //AT2 + "LIB_SOV_LAT_Soldier" +]; + +//PVP Player Vehicles +vehCSATPVP = ["LIB_GazM1_SOV","LIB_GazM1_SOV_camo_sand","LIB_Willys_MB","LIB_Scout_M3"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "LIB_SOV_rifleman"; +CSATOfficer = "LIB_SOV_captain_summer"; +CSATBodyG = "LIB_SOV_scout_mgunner"; +CSATCrew = "LIB_SOV_tank_crew"; +CSATMarksman = "LIB_SOV_scout_sniper"; +staticCrewInvaders = "LIB_SOV_gun_crew"; +CSATPilot = "LIB_SOV_pilot"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "LIB_NKVD_rifleman"; + FIAMarksman = "LIB_NKVD_LC_rifleman"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["LIB_SOV_LC_rifleman_summer","LIB_SOV_rifleman"]; +groupsCSATSniper = ["LIB_SOV_scout_sniper_autumn","LIB_SOV_scout_sergeant"]; +groupsCSATsmall = [groupsCSATSentry,groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_smgunner_summer","LIB_SOV_smgunner_summer"]; +groupsCSATAT = ["LIB_SOV_sergeant","LIB_SOV_rifleman","LIB_SOV_AT_soldier","LIB_SOV_AT_grenadier"]; +groupsCSATmid = [["LIB_SOV_sergeant","LIB_SOV_LC_rifleman_summer","LIB_SOV_smgunner_summer","LIB_SOV_LC_rifleman_summer"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_LC_rifleman_summer","LIB_SOV_smgunner_summer","LIB_SOV_smgunner_summer","LIB_SOV_AT_soldier","LIB_SOV_AT_grenadier","LIB_SOV_medic"]; +CSATSpecOp = ["LIB_SOV_scout_p_officer","LIB_SOV_scout_sergeant","LIB_SOV_scout_mgunner","LIB_SOV_scout_smgunner","LIB_SOV_scout_rifleman","LIB_SOV_scout_smgunner","LIB_SOV_scout_sniper","LIB_SOV_scout_sniper"]; +groupsCSATSquad = + [ + CSATSquad, + ["LIB_SOV_sergeant","LIB_SOV_mgunner","LIB_SOV_LC_rifleman_summer","LIB_SOV_sapper","LIB_SOV_smgunner_summer","LIB_SOV_AT_soldier","LIB_SOV_assault_smgunner","LIB_SOV_medic"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + [FIARifleman,FIARifleman], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["LIB_NKVD_p_officer","LIB_NKVD_smgunner","LIB_NKVD_LC_rifleman","LIB_NKVD_rifleman"] + ]; + //Squads + FIASquad = ["LIB_NKVD_lieutenant","LIB_NKVD_smgunner","LIB_NKVD_smgunner","LIB_NKVD_p_officer","LIB_NKVD_p_officer","LIB_NKVD_LC_rifleman","LIB_NKVD_rifleman","LIB_SOV_medic"]; + groupsFIASquad = [FIASquad]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATLightArmed = ["LIB_Scout_M3"]; +vehCSATLightUnarmed = ["LIB_GazM1_SOV","LIB_GazM1_SOV_camo_sand","LIB_Willys_MB"]; +vehCSATTrucks = ["LIB_Zis5v","LIB_US6_Tent","LIB_US6_Open"]; +vehCSATAmmoTruck = "LIB_US6_Ammo"; +vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored +vehCSATAPC = ["LIB_SdKfz251_captured","LIB_SU85","LIB_T34_76","LIB_T34_85"]; +vehCSATTank = "LIB_JS2_43"; +vehCSATAA = "LIB_Zis5v_61K"; +vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats +vehCSATBoat = "O_T_Boat_Armed_01_hmg_F"; +vehCSATRBoat = "O_T_Boat_Transport_01_F"; +vehCSATBoats = [vehCSATBoat,vehCSATRBoat]; +//Planes +vehCSATPlane = "LIB_Pe2"; +vehCSATPlaneAA = "LIB_P39"; +vehCSATTransportPlanes = ["LIB_Li2", "LIB_Li2", "LIB_Li2", "LIB_Li2"]; +//Heli +vehCSATPatrolHeli = "LIB_Li2"; +vehCSATTransportHelis = []; +vehCSATAttackHelis = ["LIB_RA_P39_3","LIB_RA_P39_2"]; +//UAV +vehCSATUAV = "not_supported"; +vehCSATUAVSmall = "not_supported"; +//Artillery +vehCSATMRLS = "LIB_US6_BM13"; +vehCSATMRLSMags = "LIB_16Rnd_BM13"; +//Combined Arrays +vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck,"LIB_Zis5v_Med","LIB_Zis5v_Fuel","LIB_Zis6_Parm"]; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; + +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "LIB_Scout_m3_w"; + vehFIATruck = "LIB_Zis5v_w"; + vehFIACar = "LIB_Willys_MB_w"; + }; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "LIB_Maxim_M30_Trench"; +staticATInvaders = "LIB_Zis3"; +staticAAInvaders = "LIB_61k"; +CSATMortar = "LIB_BM37"; + +//Static Weapon Bags +MGStaticCSATB = "not_supported"; +ATStaticCSATB = "not_supported"; +AAStaticCSATB = "not_supported"; +MortStaticCSATB = "not_supported"; +//Short Support +supportStaticCSATB = "not_supported"; +//Tall Support +supportStaticCSATB2 = "not_supported"; +//Mortar Support +supportStaticCSATB3 = "not_supported"; diff --git a/A3-Antistasi/Templates/IFA_Occ_WEH_Arct.sqf b/A3-Antistasi/Templates/IFA_Occ_WEH_Arct.sqf new file mode 100644 index 0000000000..cc1c3dfb70 --- /dev/null +++ b/A3-Antistasi/Templates/IFA_Occ_WEH_Arct.sqf @@ -0,0 +1,192 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "Wehrmacht"; + +//Police Faction +factionGEN = "SG_STURMPANZER"; +//SF Faction +factionMaleOccupants = "LIB_FSJ"; +//Miltia Faction +if (gameMode != 4) then {factionFIA = "LIB_DAK"}; + +//Flag Images +NATOFlag = "LIB_FlagCarrier_GER"; +NATOFlagTexture = "ww2\core_t\if_decals_t\german\flag_ger_co.paa"; +flagNATOmrk = "LIB_faction_WEHRMACHT"; +if (isServer) then {"NATO_carrier" setMarkerText "Wehrmacht Reinforcements"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + "LIB_FSJ_NCO", + //Medic + "LIB_FSJ_medic", + //Autorifleman + "LIB_FSJ_Soldier_2", + //Marksman + "LIB_FSJ_Sniper", + //Anti-tank Scout + "LIB_FSJ_LAT_Soldier", + //AT2 + "LIB_FSJ_LAT_Soldier" +]; + +//PVP Player Vehicles +vehNATOPVP = ["LIB_Kfz1_Hood_sernyt","LIB_Kfz1_sernyt","LIB_Kfz1_MG42_sernyt"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "LIB_GER_rifleman"; +NATOOfficer = "LIB_GER_oberst"; +NATOOfficer2 = "LIB_GER_hauptmann"; +NATOBodyG = "SG_sturmtrooper_stggunner"; +NATOCrew = "LIB_GER_tank_crew"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "LIB_GER_scout_sniper"; +staticCrewOccupants = "LIB_GER_gun_crew"; +NATOPilot = "LIB_GER_pilot"; + +//Militia Units +if (gameMode != 4) then + { + FIARifleman = "LIB_DAK_Soldier"; + FIAMarksman = "LIB_DAK_Sniper"; + }; + +//Police Units +policeOfficer = "SG_sturmpanzer_unterofficer"; +policeGrunt = "SG_sturmpanzer_crew"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["LIB_GER_Soldier3_base","LIB_GER_ober_rifleman"]; +groupsNATOSniper = ["LIB_GER_scout_sniper","LIB_GER_soldier_camo5_base"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["LIB_GER_unterofficer","LIB_GER_stggunner","LIB_GER_stggunner","LIB_GER_mgunner"]; +groupsNATOAT = ["LIB_GER_unterofficer","LIB_GER_AT_soldier","LIB_GER_AT_grenadier","LIB_GER_mgunner"]; +groupsNATOmid = [["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_scout_ober_rifleman","LIB_GER_AT_grenadier"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_Soldier2_base","LIB_GER_scout_ober_rifleman","LIB_GER_stggunner","LIB_GER_AT_soldier","LIB_GER_AT_grenadier","LIB_GER_medic"]; +NATOSpecOp = ["LIB_FSJ_NCO","LIB_FSJ_Mgunner","LIB_FSJ_Soldier_2","LIB_FSJ_AT_soldier","LIB_FSJ_Soldier_2","LIB_FSJ_sapper","LIB_FSJ_Sniper","LIB_FSJ_medic"]; +groupsNATOSquad = + [ + NATOSquad, + ["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_smgunner","LIB_GER_AT_grenadier","LIB_GER_ober_rifleman","LIB_GER_sapper","LIB_GER_sapper_gefr","LIB_GER_medic"] + ]; + +//Militia Groups +if (gameMode != 4) then + { + //Teams + groupsFIASmall = + [ + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_AT_soldier","LIB_DAK_AT_grenadier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier","LIB_DAK_Sniper"] + ]; + //Squads + FIASquad = ["LIB_DAK_NCO_2","LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_3","LIB_DAK_AT_grenadier","LIB_DAK_AT_soldier","LIB_DAK_radioman","LIB_DAK_medic"]; + groupsFIASquad = + [ + FIASquad, + ["LIB_DAK_NCO_2","LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_3","LIB_DAK_AT_grenadier","LIB_DAK_Sniper","LIB_DAK_radioman","LIB_DAK_medic"] + ]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; +vehNATOLightArmed = ["LIB_Kfz1_MG42_sernyt","LIB_SdKfz222"]; +vehNATOLightUnarmed = ["LIB_Kfz1_Hood_sernyt","LIB_Kfz1_sernyt"]; +vehNATOTrucks = ["LIB_OpelBlitz_Open_Y_Camo","LIB_OpelBlitz_Tent_Y_Camo"]; +vehNATOCargoTrucks = []; +vehNATOAmmoTruck = "LIB_OpelBlitz_Ammo"; +vehNATORepairTruck = "LIB_OpelBlitz_Parm"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["LIB_SdKfz251","LIB_SdKfz234_4","LIB_SdKfz234_3","LIB_SdKfz234_2"]; +vehNATOTank = "LIB_PzKpfwVI_B_tarn51d"; +vehNATOAA = "LIB_FlakPanzerIV_Wirbelwind"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "B_T_Boat_Armed_01_minigun_F"; +vehNATORBoat = "B_T_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes +vehNATOPlane = "LIB_ARR_Ju87"; +vehNATOPlaneAA = "LIB_FW190F8"; +vehNATOTransportPlanes = ["LIB_Ju52","LIB_Ju52","LIB_Ju52","LIB_Ju52"]; +//Heli +vehNATOPatrolHeli = "LIB_Ju52"; +vehNATOTransportHelis = []; +vehNATOAttackHelis = ["LIB_Ju87"]; +//UAV +vehNATOUAV = "not_supported"; +vehNATOUAVSmall = "not_supported"; +//Artillery +vehNATOMRLS = "LIB_SdKfz124"; +vehNATOMRLSMags = "LIB_20x_Shell_105L28_Gr39HlC"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck,"LIB_OpelBlitz_Fuel","LIB_OpelBlitz_Ambulance", vehNATORepairTruck,"LIB_SdKfz_7"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if (gameMode != 4) then + { + vehFIAArmedCar = "LIB_Kfz1_MG42_camo"; + vehFIATruck = "LIB_OpelBlitz_Open_Y_Camo_w"; + vehFIACar = "LIB_Kfz1_hood_w"; + }; + +//Police Vehicles +vehPoliceCar = "LIB_Kfz1_sernyt"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "LIB_MG42_Lafette_Deployed"; +staticATOccupants = "LIB_FlaK_36"; +staticAAOccupants = "LIB_Flakvierling_38"; +NATOMortar = "LIB_GrWr34_g"; + +//Static Weapon Bags +MGStaticNATOB = "not_supported"; +ATStaticNATOB = "not_supported"; +AAStaticNATOB = "not_supported"; +MortStaticNATOB = "not_supported"; +//Short Support +supportStaticNATOB = "not_supported"; +//Tall Support +supportStaticNATOB2 = "not_supported"; +//Mortar Support +supportStaticNATOB3 = "not_supported"; diff --git a/A3-Antistasi/Templates/OccupantsIFA.sqf b/A3-Antistasi/Templates/IFA_Occ_WEH_Arid.sqf similarity index 54% rename from A3-Antistasi/Templates/OccupantsIFA.sqf rename to A3-Antistasi/Templates/IFA_Occ_WEH_Arid.sqf index fdd697055a..a9d21585fe 100644 --- a/A3-Antistasi/Templates/OccupantsIFA.sqf +++ b/A3-Antistasi/Templates/IFA_Occ_WEH_Arid.sqf @@ -1,19 +1,29 @@ -NATOGrunt = "LIB_GER_rifleman"; -NATOOfficer = "LIB_GER_oberst"; -NATOOfficer2 = "LIB_GER_hauptmann"; -NATOBodyG = "SG_sturmtrooper_stggunner"; -NATOCrew = "LIB_GER_tank_crew"; -NATOUnarmed = "B_G_Survivor_F"; -NATOMarksman = "LIB_GER_scout_sniper"; -staticCrewOccupants = "LIB_GER_gun_crew"; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "Wehrmacht"; -NATOMG = "LIB_MG42_Lafette_Deployed"; -NATOMortar = "LIB_GrWr34_g"; -staticATOccupants = "LIB_FlaK_36"; -staticAAOccupants = "LIB_Flakvierling_38"; -NATOPilot = "LIB_GER_pilot"; +//Police Faction +factionGEN = "SG_STURMPANZER"; +//SF Faction +factionMaleOccupants = "LIB_FSJ"; +//Miltia Faction +if (gameMode != 4) then {factionFIA = "LIB_DAK"}; + +//Flag Images +NATOFlag = "LIB_FlagCarrier_GER"; +NATOFlagTexture = "ww2\core_t\if_decals_t\german\flag_ger_co.paa"; +flagNATOmrk = "LIB_faction_WEHRMACHT"; +if (isServer) then {"NATO_carrier" setMarkerText "Wehrmacht Reinforcements"}; -//NATO PvP Loadouts +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts NATOPlayerLoadouts = [ //Team Leader "LIB_FSJ_NCO", @@ -25,13 +35,96 @@ NATOPlayerLoadouts = [ "LIB_FSJ_Sniper", //Anti-tank Scout "LIB_FSJ_LAT_Soldier", - //Anti-tank Scout + //AT2 "LIB_FSJ_LAT_Soldier" ]; +//PVP Player Vehicles +vehNATOPVP = ["LIB_Kfz1_Hood_sernyt","LIB_Kfz1_sernyt","LIB_Kfz1_MG42_sernyt"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "LIB_GER_rifleman"; +NATOOfficer = "LIB_GER_oberst"; +NATOOfficer2 = "LIB_GER_hauptmann"; +NATOBodyG = "SG_sturmtrooper_stggunner"; +NATOCrew = "LIB_GER_tank_crew"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "LIB_GER_scout_sniper"; +staticCrewOccupants = "LIB_GER_gun_crew"; +NATOPilot = "LIB_GER_pilot"; + +//Militia Units +if (gameMode != 4) then + { + FIARifleman = "LIB_DAK_Soldier"; + FIAMarksman = "LIB_DAK_Sniper"; + }; -vehNATOPVP = ["LIB_Kfz1_Hood_sernyt","LIB_Kfz1_sernyt","LIB_Kfz1_MG42_sernyt"];//This array contains the vehicles Nato-PvP players can spawn near their flag. +//Police Units +policeOfficer = "SG_sturmpanzer_unterofficer"; +policeGrunt = "SG_sturmpanzer_crew"; +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["LIB_GER_Soldier3_base","LIB_GER_ober_rifleman"]; +groupsNATOSniper = ["LIB_GER_scout_sniper","LIB_GER_soldier_camo5_base"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["LIB_GER_unterofficer","LIB_GER_stggunner","LIB_GER_stggunner","LIB_GER_mgunner"]; +groupsNATOAT = ["LIB_GER_unterofficer","LIB_GER_AT_soldier","LIB_GER_AT_grenadier","LIB_GER_mgunner"]; +groupsNATOmid = [["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_scout_ober_rifleman","LIB_GER_AT_grenadier"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_Soldier2_base","LIB_GER_scout_ober_rifleman","LIB_GER_stggunner","LIB_GER_AT_soldier","LIB_GER_AT_grenadier","LIB_GER_medic"]; +NATOSpecOp = ["LIB_FSJ_NCO","LIB_FSJ_Mgunner","LIB_FSJ_Soldier_2","LIB_FSJ_AT_soldier","LIB_FSJ_Soldier_2","LIB_FSJ_sapper","LIB_FSJ_Sniper","LIB_FSJ_medic"]; +groupsNATOSquad = + [ + NATOSquad, + ["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_smgunner","LIB_GER_AT_grenadier","LIB_GER_ober_rifleman","LIB_GER_sapper","LIB_GER_sapper_gefr","LIB_GER_medic"] + ]; + +//Militia Groups +if (gameMode != 4) then + { + //Teams + groupsFIASmall = + [ + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_AT_soldier","LIB_DAK_AT_grenadier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier","LIB_DAK_Sniper"] + ]; + //Squads + FIASquad = ["LIB_DAK_NCO_2","LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_3","LIB_DAK_AT_grenadier","LIB_DAK_AT_soldier","LIB_DAK_radioman","LIB_DAK_medic"]; + groupsFIASquad = + [ + FIASquad, + ["LIB_DAK_NCO_2","LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_3","LIB_DAK_AT_grenadier","LIB_DAK_Sniper","LIB_DAK_radioman","LIB_DAK_medic"] + ]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; vehNATOLightArmed = ["LIB_Kfz1_MG42_sernyt","LIB_SdKfz222"]; vehNATOLightUnarmed = ["LIB_Kfz1_Hood_sernyt","LIB_Kfz1_sernyt"]; vehNATOTrucks = ["LIB_OpelBlitz_Open_Y_Camo","LIB_OpelBlitz_Tent_Y_Camo"]; @@ -39,55 +132,61 @@ vehNATOCargoTrucks = []; vehNATOAmmoTruck = "LIB_OpelBlitz_Ammo"; vehNATORepairTruck = "LIB_OpelBlitz_Parm"; vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored vehNATOAPC = ["LIB_SdKfz251","LIB_SdKfz234_4","LIB_SdKfz234_3","LIB_SdKfz234_2"]; vehNATOTank = "LIB_PzKpfwVI_B_tarn51d"; vehNATOAA = "LIB_FlakPanzerIV_Wirbelwind"; vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats vehNATOBoat = "B_T_Boat_Armed_01_minigun_F"; vehNATORBoat = "B_T_Boat_Transport_01_F"; vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes vehNATOPlane = "LIB_ARR_Ju87"; vehNATOPlaneAA = "LIB_FW190F8"; vehNATOTransportPlanes = ["LIB_Ju52","LIB_Ju52","LIB_Ju52","LIB_Ju52"]; +//Heli vehNATOPatrolHeli = "LIB_Ju52"; vehNATOTransportHelis = []; vehNATOAttackHelis = ["LIB_Ju87"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; +//UAV vehNATOUAV = "not_supported"; vehNATOUAVSmall = "not_supported"; +//Artillery vehNATOMRLS = "LIB_SdKfz124"; vehNATOMRLSMags = "LIB_20x_Shell_105L28_Gr39HlC"; +//Combined Arrays vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck,"LIB_OpelBlitz_Fuel","LIB_OpelBlitz_Ambulance", vehNATORepairTruck,"LIB_SdKfz_7"]; -vehNATOBike = "B_T_Quadbike_01_F"; -NATOFlag = "LIB_FlagCarrier_GER"; -NATOFlagTexture = "ww2\core_t\if_decals_t\german\flag_ger_co.paa"; -NATOAmmobox = "B_supplyCrate_F"; -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["LIB_GER_Soldier3_base","LIB_GER_ober_rifleman"];//"B_T_InfSentry";// -groupsNATOSniper = ["LIB_GER_scout_sniper","LIB_GER_soldier_camo5_base"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["LIB_GER_unterofficer","LIB_GER_stggunner","LIB_GER_stggunner","LIB_GER_mgunner"]; -groupsNATOAT = ["LIB_GER_unterofficer","LIB_GER_AT_soldier","LIB_GER_AT_grenadier","LIB_GER_mgunner"]; -groupsNATOmid = [["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_scout_ober_rifleman","LIB_GER_AT_grenadier"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_Soldier2_base","LIB_GER_scout_ober_rifleman","LIB_GER_stggunner","LIB_GER_AT_soldier","LIB_GER_AT_grenadier","LIB_GER_medic"];//"B_T_InfSquad";// -NATOSpecOp = ["LIB_FSJ_NCO","LIB_FSJ_Mgunner","LIB_FSJ_Soldier_2","LIB_FSJ_AT_soldier","LIB_FSJ_Soldier_2","LIB_FSJ_sapper","LIB_FSJ_Sniper","LIB_FSJ_medic"]; -groupsNATOSquad = [NATOSquad,["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_smgunner","LIB_GER_AT_grenadier","LIB_GER_ober_rifleman","LIB_GER_sapper","LIB_GER_sapper_gefr","LIB_GER_medic"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];/// -factionMaleOccupants = "LIB_FSJ"; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; +//Militia Vehicles +if (gameMode != 4) then + { + vehFIAArmedCar = "LIB_Kfz1_MG42_camo"; + vehFIATruck = "LIB_OpelBlitz_Open_Y_Camo_w"; + vehFIACar = "LIB_Kfz1_hood_w"; + }; -supportStaticNATOB = "not_supported"; -ATStaticNATOB = "not_supported"; +//Police Vehicles +vehPoliceCar = "LIB_Kfz1_sernyt"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "LIB_MG42_Lafette_Deployed"; +staticATOccupants = "LIB_FlaK_36"; +staticAAOccupants = "LIB_Flakvierling_38"; +NATOMortar = "LIB_GrWr34_g"; + +//Static Weapon Bags MGStaticNATOB = "not_supported"; -supportStaticNATOB2 = "not_supported"; +ATStaticNATOB = "not_supported"; AAStaticNATOB = "not_supported"; MortStaticNATOB = "not_supported"; +//Short Support +supportStaticNATOB = "not_supported"; +//Tall Support +supportStaticNATOB2 = "not_supported"; +//Mortar Support supportStaticNATOB3 = "not_supported"; - -weaponsNato append ["LIB_MP40","LIB_MP44","LIB_K98","LIB_G43","LIB_MG42","LIB_MP40","LIB_K98ZF39","LIB_RPzB","LIB_M1908"];// -ammunitionNATO append ["LIB_32Rnd_9x19","LIB_NB39","LIB_30Rnd_792x33","LIB_Shg24","LIB_5Rnd_792x57","LIB_10Rnd_792x57","LIB_50Rnd_792x57","LIB_1Rnd_RPzB","LIB_8Rnd_9x19_P08","LIB_Pwm"];//possible ammo that spawn in NATO ammoboxes -flagNATOmrk = "LIB_faction_WEHRMACHT"; - -nameOccupants = "Wehrmacht"; -if (isServer) then {"NATO_carrier" setMarkerText "Wehrmacht Reinforcements"}; - -{helmets pushBackUnique (getUnitLoadout _x select 6)} forEach NATOSquad; diff --git a/A3-Antistasi/Templates/IFA_Occ_WEH_Temp.sqf b/A3-Antistasi/Templates/IFA_Occ_WEH_Temp.sqf new file mode 100644 index 0000000000..a9d21585fe --- /dev/null +++ b/A3-Antistasi/Templates/IFA_Occ_WEH_Temp.sqf @@ -0,0 +1,192 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "Wehrmacht"; + +//Police Faction +factionGEN = "SG_STURMPANZER"; +//SF Faction +factionMaleOccupants = "LIB_FSJ"; +//Miltia Faction +if (gameMode != 4) then {factionFIA = "LIB_DAK"}; + +//Flag Images +NATOFlag = "LIB_FlagCarrier_GER"; +NATOFlagTexture = "ww2\core_t\if_decals_t\german\flag_ger_co.paa"; +flagNATOmrk = "LIB_faction_WEHRMACHT"; +if (isServer) then {"NATO_carrier" setMarkerText "Wehrmacht Reinforcements"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + "LIB_FSJ_NCO", + //Medic + "LIB_FSJ_medic", + //Autorifleman + "LIB_FSJ_Soldier_2", + //Marksman + "LIB_FSJ_Sniper", + //Anti-tank Scout + "LIB_FSJ_LAT_Soldier", + //AT2 + "LIB_FSJ_LAT_Soldier" +]; + +//PVP Player Vehicles +vehNATOPVP = ["LIB_Kfz1_Hood_sernyt","LIB_Kfz1_sernyt","LIB_Kfz1_MG42_sernyt"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "LIB_GER_rifleman"; +NATOOfficer = "LIB_GER_oberst"; +NATOOfficer2 = "LIB_GER_hauptmann"; +NATOBodyG = "SG_sturmtrooper_stggunner"; +NATOCrew = "LIB_GER_tank_crew"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "LIB_GER_scout_sniper"; +staticCrewOccupants = "LIB_GER_gun_crew"; +NATOPilot = "LIB_GER_pilot"; + +//Militia Units +if (gameMode != 4) then + { + FIARifleman = "LIB_DAK_Soldier"; + FIAMarksman = "LIB_DAK_Sniper"; + }; + +//Police Units +policeOfficer = "SG_sturmpanzer_unterofficer"; +policeGrunt = "SG_sturmpanzer_crew"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["LIB_GER_Soldier3_base","LIB_GER_ober_rifleman"]; +groupsNATOSniper = ["LIB_GER_scout_sniper","LIB_GER_soldier_camo5_base"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["LIB_GER_unterofficer","LIB_GER_stggunner","LIB_GER_stggunner","LIB_GER_mgunner"]; +groupsNATOAT = ["LIB_GER_unterofficer","LIB_GER_AT_soldier","LIB_GER_AT_grenadier","LIB_GER_mgunner"]; +groupsNATOmid = [["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_scout_ober_rifleman","LIB_GER_AT_grenadier"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_Soldier2_base","LIB_GER_scout_ober_rifleman","LIB_GER_stggunner","LIB_GER_AT_soldier","LIB_GER_AT_grenadier","LIB_GER_medic"]; +NATOSpecOp = ["LIB_FSJ_NCO","LIB_FSJ_Mgunner","LIB_FSJ_Soldier_2","LIB_FSJ_AT_soldier","LIB_FSJ_Soldier_2","LIB_FSJ_sapper","LIB_FSJ_Sniper","LIB_FSJ_medic"]; +groupsNATOSquad = + [ + NATOSquad, + ["LIB_GER_unterofficer","LIB_GER_mgunner","LIB_GER_smgunner","LIB_GER_AT_grenadier","LIB_GER_ober_rifleman","LIB_GER_sapper","LIB_GER_sapper_gefr","LIB_GER_medic"] + ]; + +//Militia Groups +if (gameMode != 4) then + { + //Teams + groupsFIASmall = + [ + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_2","LIB_DAK_Soldier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_AT_soldier","LIB_DAK_AT_grenadier"], + ["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier","LIB_DAK_Sniper"] + ]; + //Squads + FIASquad = ["LIB_DAK_NCO_2","LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_3","LIB_DAK_AT_grenadier","LIB_DAK_AT_soldier","LIB_DAK_radioman","LIB_DAK_medic"]; + groupsFIASquad = + [ + FIASquad, + ["LIB_DAK_NCO_2","LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_3","LIB_DAK_AT_grenadier","LIB_DAK_Sniper","LIB_DAK_radioman","LIB_DAK_medic"] + ]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; +vehNATOLightArmed = ["LIB_Kfz1_MG42_sernyt","LIB_SdKfz222"]; +vehNATOLightUnarmed = ["LIB_Kfz1_Hood_sernyt","LIB_Kfz1_sernyt"]; +vehNATOTrucks = ["LIB_OpelBlitz_Open_Y_Camo","LIB_OpelBlitz_Tent_Y_Camo"]; +vehNATOCargoTrucks = []; +vehNATOAmmoTruck = "LIB_OpelBlitz_Ammo"; +vehNATORepairTruck = "LIB_OpelBlitz_Parm"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["LIB_SdKfz251","LIB_SdKfz234_4","LIB_SdKfz234_3","LIB_SdKfz234_2"]; +vehNATOTank = "LIB_PzKpfwVI_B_tarn51d"; +vehNATOAA = "LIB_FlakPanzerIV_Wirbelwind"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "B_T_Boat_Armed_01_minigun_F"; +vehNATORBoat = "B_T_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes +vehNATOPlane = "LIB_ARR_Ju87"; +vehNATOPlaneAA = "LIB_FW190F8"; +vehNATOTransportPlanes = ["LIB_Ju52","LIB_Ju52","LIB_Ju52","LIB_Ju52"]; +//Heli +vehNATOPatrolHeli = "LIB_Ju52"; +vehNATOTransportHelis = []; +vehNATOAttackHelis = ["LIB_Ju87"]; +//UAV +vehNATOUAV = "not_supported"; +vehNATOUAVSmall = "not_supported"; +//Artillery +vehNATOMRLS = "LIB_SdKfz124"; +vehNATOMRLSMags = "LIB_20x_Shell_105L28_Gr39HlC"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck,"LIB_OpelBlitz_Fuel","LIB_OpelBlitz_Ambulance", vehNATORepairTruck,"LIB_SdKfz_7"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if (gameMode != 4) then + { + vehFIAArmedCar = "LIB_Kfz1_MG42_camo"; + vehFIATruck = "LIB_OpelBlitz_Open_Y_Camo_w"; + vehFIACar = "LIB_Kfz1_hood_w"; + }; + +//Police Vehicles +vehPoliceCar = "LIB_Kfz1_sernyt"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "LIB_MG42_Lafette_Deployed"; +staticATOccupants = "LIB_FlaK_36"; +staticAAOccupants = "LIB_Flakvierling_38"; +NATOMortar = "LIB_GrWr34_g"; + +//Static Weapon Bags +MGStaticNATOB = "not_supported"; +ATStaticNATOB = "not_supported"; +AAStaticNATOB = "not_supported"; +MortStaticNATOB = "not_supported"; +//Short Support +supportStaticNATOB = "not_supported"; +//Tall Support +supportStaticNATOB2 = "not_supported"; +//Mortar Support +supportStaticNATOB3 = "not_supported"; diff --git a/A3-Antistasi/Templates/IFA_Reb_POL_Arct.sqf b/A3-Antistasi/Templates/IFA_Reb_POL_Arct.sqf new file mode 100644 index 0000000000..ebe8eee5ad --- /dev/null +++ b/A3-Antistasi/Templates/IFA_Reb_POL_Arct.sqf @@ -0,0 +1,106 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "AK"; +SDKFlag = "Flag_Syndikat_F"; +SDKFlagTexture = "ak.jpg"; if (isServer) then {flagX setFlagTexture SDKFlagTexture}; +typePetros = "LIB_WP_Sierzant"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "LIB_US_Bomber_Crew"; +SDKUnarmed = "I_G_Survivor_F"; +SDKSniper = ["LIB_WP_Sniper","LIB_WP_Sniper"]; +SDKATman = ["LIB_WP_AT_grenadier","LIB_WP_AT_grenadier"]; +SDKMedic = ["LIB_WP_Medic","LIB_WP_Medic"]; +SDKMG = ["LIB_WP_Mgunner","LIB_WP_Mgunner"]; +SDKExp = ["LIB_WP_Saper","LIB_WP_Saper"]; +SDKGL = ["LIB_WP_Radioman","LIB_WP_Radioman"]; +SDKMil = ["LIB_WP_Strzelec","LIB_WP_Strzelec"]; +SDKSL = ["LIB_WP_Porucznic","LIB_WP_Porucznic"]; +SDKEng = ["LIB_WP_Starszy_saper","LIB_WP_Starszy_saper"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "LIB_DAK_Kfz1"; +vehSDKLightArmed = "LIB_DAK_Kfz1_MG42"; +vehSDKAT = "not_supported"; +vehSDKLightUnarmed = "LIB_US_Willys_MB"; +vehSDKTruck = "LIB_US_GMC_Open"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "LIB_US_NAC_P39"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "LIB_US_GMC_Parm"; + +//Civilian Vehicles +civCar = "LIB_GazM1_dirty"; +civTruck = "LIB_DAK_OpelBlitz_Open"; +civHeli = "not_supported"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "LIB_M1919_M2"; +staticATteamPlayer = "LIB_Pak40"; +staticAAteamPlayer = "LIB_FlaK_38"; +SDKMortar = "LIB_M2_60"; +SDKMortarHEMag = "LIB_8Rnd_60mmHE_M2"; +SDKMortarSmokeMag = "not_supported"; + +//Static Weapon Bags +MGStaticSDKB = "not_supported"; +ATStaticSDKB = "not_supported"; +AAStaticSDKB = "not_supported"; +MortStaticSDKB = "not_supported"; +//Short Support +supportStaticSDKB = "not_supported"; +//Tall Support +supportStaticsSDKB2 = "not_supported"; +//Mortar Support +supportStaticsSDKB3 = "not_supported"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "LIB_TMI_42_MINE_mag"; +APERSMineMag = "LIB_shumine_42_MINE_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["LIB_Ladung_Small_MINE_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["LIB_Ladung_Big_MINE_mag", 1], ["LIB_Ladung_Small_MINE_mag", 2]]; + +//Starting Unlocks +initialRebelEquipment append ["LIB_PTRD","LIB_M38","LIB_Webley_Mk6","LIB_Webley_Flare"]; +initialRebelEquipment append ["LIB_M38"]; +initialRebelEquipment append ["LIB_1Rnd_145x114","LIB_5Rnd_762x54","LIB_6Rnd_455","LIB_1Rnd_flare_red","LIB_1Rnd_flare_green","LIB_1Rnd_flare_white","LIB_1Rnd_flare_yellow","LIB_US_TNT_4pound_mag","LIB_Shg24","LIB_Shg24x7","LIB_No77"]; +initialRebelEquipment append ["B_LIB_SOV_RA_Gasbag"]; +initialRebelEquipment append ["V_LIB_WP_OfficerVest","V_LIB_WP_SniperBela","V_LIB_WP_Kar98Vest","V_LIB_SOV_RA_Belt"]; +initialRebelEquipment append ["LIB_Binocular_PL"]; +//TFAR Unlocks +if (startLR) then {initialRebelEquipment pushBack "B_LIB_US_Radio"}; diff --git a/A3-Antistasi/Templates/IFA_Reb_POL_Arid.sqf b/A3-Antistasi/Templates/IFA_Reb_POL_Arid.sqf new file mode 100644 index 0000000000..adc250c37e --- /dev/null +++ b/A3-Antistasi/Templates/IFA_Reb_POL_Arid.sqf @@ -0,0 +1,106 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "AK"; +SDKFlag = "Flag_Syndikat_F"; +SDKFlagTexture = "ak.jpg"; if (isServer) then {flagX setFlagTexture SDKFlagTexture}; +typePetros = "LIB_WP_Sierzant"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "LIB_US_Bomber_Crew"; +SDKUnarmed = "I_G_Survivor_F"; +SDKSniper = ["LIB_WP_Sniper","LIB_WP_Sniper"]; +SDKATman = ["LIB_WP_AT_grenadier","LIB_WP_AT_grenadier"]; +SDKMedic = ["LIB_WP_Medic","LIB_WP_Medic"]; +SDKMG = ["LIB_WP_Mgunner","LIB_WP_Mgunner"]; +SDKExp = ["LIB_WP_Saper","LIB_WP_Saper"]; +SDKGL = ["LIB_WP_Radioman","LIB_WP_Radioman"]; +SDKMil = ["LIB_WP_Strzelec","LIB_WP_Strzelec"]; +SDKSL = ["LIB_WP_Porucznic","LIB_WP_Porucznic"]; +SDKEng = ["LIB_WP_Starszy_saper","LIB_WP_Starszy_saper"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "LIB_DAK_Kfz1"; +vehSDKLightArmed = "LIB_DAK_Kfz1_MG42"; +vehSDKAT = "not_supported"; +vehSDKLightUnarmed = "LIB_US_Willys_MB"; +vehSDKTruck = "LIB_US_GMC_Open"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "LIB_US_NAC_P39"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "LIB_US_GMC_Parm"; + +//Civilian Vehicles +civCar = "LIB_GazM1_dirty"; +civTruck = "LIB_DAK_OpelBlitz_Open"; +civHeli = "not_supported"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "LIB_M1919_M2"; +staticATteamPlayer = "LIB_Pak40"; +staticAAteamPlayer = "LIB_FlaK_30"; +SDKMortar = "LIB_M2_60"; +SDKMortarHEMag = "LIB_8Rnd_60mmHE_M2"; +SDKMortarSmokeMag = "not_supported"; + +//Static Weapon Bags +MGStaticSDKB = "not_supported"; +ATStaticSDKB = "not_supported"; +AAStaticSDKB = "not_supported"; +MortStaticSDKB = "not_supported"; +//Short Support +supportStaticSDKB = "not_supported"; +//Tall Support +supportStaticsSDKB2 = "not_supported"; +//Mortar Support +supportStaticsSDKB3 = "not_supported"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "LIB_TMI_42_MINE_mag"; +APERSMineMag = "LIB_shumine_42_MINE_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["LIB_Ladung_Small_MINE_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["LIB_Ladung_Big_MINE_mag", 1], ["LIB_Ladung_Small_MINE_mag", 2]]; + +//Starting Unlocks +initialRebelEquipment append ["LIB_PTRD","LIB_M38","LIB_Webley_Mk6","LIB_Webley_Flare"]; +initialRebelEquipment append ["LIB_M38"]; +initialRebelEquipment append ["LIB_1Rnd_145x114","LIB_5Rnd_762x54","LIB_6Rnd_455","LIB_1Rnd_flare_red","LIB_1Rnd_flare_green","LIB_1Rnd_flare_white","LIB_1Rnd_flare_yellow","LIB_US_TNT_4pound_mag","LIB_Shg24","LIB_Shg24x7","LIB_No77"]; +initialRebelEquipment append ["B_LIB_SOV_RA_Gasbag"]; +initialRebelEquipment append ["V_LIB_WP_OfficerVest","V_LIB_WP_SniperBela","V_LIB_WP_Kar98Vest","V_LIB_SOV_RA_Belt"]; +initialRebelEquipment append ["LIB_Binocular_PL"]; +//TFAR Unlocks +if (startLR) then {initialRebelEquipment pushBack "B_LIB_US_Radio"}; diff --git a/A3-Antistasi/Templates/IFA_Reb_POL_Temp.sqf b/A3-Antistasi/Templates/IFA_Reb_POL_Temp.sqf new file mode 100644 index 0000000000..adc250c37e --- /dev/null +++ b/A3-Antistasi/Templates/IFA_Reb_POL_Temp.sqf @@ -0,0 +1,106 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "AK"; +SDKFlag = "Flag_Syndikat_F"; +SDKFlagTexture = "ak.jpg"; if (isServer) then {flagX setFlagTexture SDKFlagTexture}; +typePetros = "LIB_WP_Sierzant"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "LIB_US_Bomber_Crew"; +SDKUnarmed = "I_G_Survivor_F"; +SDKSniper = ["LIB_WP_Sniper","LIB_WP_Sniper"]; +SDKATman = ["LIB_WP_AT_grenadier","LIB_WP_AT_grenadier"]; +SDKMedic = ["LIB_WP_Medic","LIB_WP_Medic"]; +SDKMG = ["LIB_WP_Mgunner","LIB_WP_Mgunner"]; +SDKExp = ["LIB_WP_Saper","LIB_WP_Saper"]; +SDKGL = ["LIB_WP_Radioman","LIB_WP_Radioman"]; +SDKMil = ["LIB_WP_Strzelec","LIB_WP_Strzelec"]; +SDKSL = ["LIB_WP_Porucznic","LIB_WP_Porucznic"]; +SDKEng = ["LIB_WP_Starszy_saper","LIB_WP_Starszy_saper"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "LIB_DAK_Kfz1"; +vehSDKLightArmed = "LIB_DAK_Kfz1_MG42"; +vehSDKAT = "not_supported"; +vehSDKLightUnarmed = "LIB_US_Willys_MB"; +vehSDKTruck = "LIB_US_GMC_Open"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "LIB_US_NAC_P39"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "LIB_US_GMC_Parm"; + +//Civilian Vehicles +civCar = "LIB_GazM1_dirty"; +civTruck = "LIB_DAK_OpelBlitz_Open"; +civHeli = "not_supported"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "LIB_M1919_M2"; +staticATteamPlayer = "LIB_Pak40"; +staticAAteamPlayer = "LIB_FlaK_30"; +SDKMortar = "LIB_M2_60"; +SDKMortarHEMag = "LIB_8Rnd_60mmHE_M2"; +SDKMortarSmokeMag = "not_supported"; + +//Static Weapon Bags +MGStaticSDKB = "not_supported"; +ATStaticSDKB = "not_supported"; +AAStaticSDKB = "not_supported"; +MortStaticSDKB = "not_supported"; +//Short Support +supportStaticSDKB = "not_supported"; +//Tall Support +supportStaticsSDKB2 = "not_supported"; +//Mortar Support +supportStaticsSDKB3 = "not_supported"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "LIB_TMI_42_MINE_mag"; +APERSMineMag = "LIB_shumine_42_MINE_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["LIB_Ladung_Small_MINE_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["LIB_Ladung_Big_MINE_mag", 1], ["LIB_Ladung_Small_MINE_mag", 2]]; + +//Starting Unlocks +initialRebelEquipment append ["LIB_PTRD","LIB_M38","LIB_Webley_Mk6","LIB_Webley_Flare"]; +initialRebelEquipment append ["LIB_M38"]; +initialRebelEquipment append ["LIB_1Rnd_145x114","LIB_5Rnd_762x54","LIB_6Rnd_455","LIB_1Rnd_flare_red","LIB_1Rnd_flare_green","LIB_1Rnd_flare_white","LIB_1Rnd_flare_yellow","LIB_US_TNT_4pound_mag","LIB_Shg24","LIB_Shg24x7","LIB_No77"]; +initialRebelEquipment append ["B_LIB_SOV_RA_Gasbag"]; +initialRebelEquipment append ["V_LIB_WP_OfficerVest","V_LIB_WP_SniperBela","V_LIB_WP_Kar98Vest","V_LIB_SOV_RA_Belt"]; +initialRebelEquipment append ["LIB_Binocular_PL"]; +//TFAR Unlocks +if (startLR) then {initialRebelEquipment pushBack "B_LIB_US_Radio"}; diff --git a/A3-Antistasi/Templates/Invaders3CBAFRFT.sqf b/A3-Antistasi/Templates/Invaders3CBAFRFT.sqf deleted file mode 100644 index ceeb5e5fad..0000000000 --- a/A3-Antistasi/Templates/Invaders3CBAFRFT.sqf +++ /dev/null @@ -1,96 +0,0 @@ -//if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\teamPlayer3CBBAFT.sqf"} else { - -CSATGrunt = "rhs_msv_rifleman"; -CSATOfficer = "rhs_msv_officer"; -CSATBodyG = "rhs_msv_efreitor"; -CSATCrew = "rhs_msv_armoredcrew"; -CSATMarksman = "rhs_msv_marksman"; -staticCrewInvaders = "rhs_msv_armoredcrew"; -CSATPilot = "rhs_pilot"; - -CSATMortar = "rhs_2b14_82mm_vmf"; -CSATMG = "rhs_KORD_high_VMF"; -staticATInvaders = "rhs_Kornet_9M133_2_vmf"; -staticAAInvaders = "RHS_ZU23_MSV"; - -//CSAT PvP Loadouts -CSATPlayerLoadouts = [ - //Team Leader - "rhs_vdv_recon_sergeant", - //Medic - "rhs_vdv_recon_medic", - //Autorifleman - "rhs_vdv_recon_arifleman", - //Marksman - "rhs_vdv_recon_marksman", - //Anti-tank Scout - "rhs_vdv_recon_rifleman_lat", - //Anti-tank Scout - "rhs_vdv_recon_rifleman_lat" -] - -vehCSATPVP = ["rhs_tigr_msv","rhs_uaz_msv","rhsgref_BRDM2UM_msv","rhs_tigr_m_msv","rhs_tigr_sts_msv"];//This array contains the vehicles Nato-PvP players can spawn near their flag. - -vehCSATLightArmed = ["rhsgref_BRDM2_msv","rhsgref_BRDM2_HQ_msv","rhsgref_BRDM2_ATGM_msv","rhs_tigr_sts_msv"]; -vehCSATLightUnarmed = ["rhs_tigr_msv","rhs_uaz_msv","rhsgref_BRDM2UM_msv","rhs_tigr_m_msv"]; -vehCSATTrucks = ["rhs_kamaz5350_msv","rhs_kamaz5350_open_msv","RHS_Ural_Open_MSV_01","rhs_gaz66_msv"]; -vehCSATAmmoTruck = "rhs_gaz66_ammo_msv"; -vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; -vehCSATAPC = ["rhs_btr60_msv","rhs_btr70_msv","rhs_btr80_msv","rhs_btr80a_msv","rhs_bmp1_msv","rhs_bmp1d_msv","rhs_bmp1k_msv","rhs_bmp1p_msv","rhs_bmp2e_msv","rhs_bmp2_msv","rhs_bmp2d_msv","rhs_bmp2k_msv","rhs_bmp3_msv","rhs_bmp3_late_msv","rhs_bmp3m_msv","rhs_bmp3mera_msv","rhs_brm1k_msv","rhs_Ob_681_2","rhs_prp3_msv"]; -vehCSATTank = "rhs_t90a_tv"; -vehCSATAA = "rhs_zsu234_aa"; -vehCSATAttack = vehCSATAPC + [vehCSATTank]; -vehCSATBoat = "O_T_Boat_Armed_01_hmg_F"; -vehCSATRBoat = "O_T_Boat_Transport_01_F"; -vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"rhs_btr80a_msv"]; -vehCSATPlane = "RHS_Su25SM_CAS_vvs"; -vehCSATPlaneAA = "RHS_T50_vvs_blueonblue"; -vehCSATTransportPlanes = []; -vehCSATPatrolHeli = "RHS_ka60_gray"; -vehCSATTransportHelis = ["RHS_Mi24V_vdv","RHS_Mi24P_vdv","RHS_Mi8MTV3_vdv",vehCSATPatrolHeli]; -vehCSATAttackHelis = ["RHS_Ka52_vvs","RHS_mi28n_vvs"]; -vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; -vehCSATUAV = "rhs_pchela1t_vvs"; -vehCSATUAVSmall = "O_UAV_01_F"; -vehCSATMRLS = "rhs_2s3_tv"; -vehCSATMRLSMags = "rhs_mag_HE_2a33"; -vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "rhs_gaz66_repair_msv","RHS_Ural_Fuel_MSV_01"]; -vehCSATBike = "O_T_Quadbike_01_ghex_F"; - -CSATFlag = "rhs_Flag_Russia_F"; -CSATFlagTexture = "rhsafrf\addons\rhs_main\data\flag_rus_co.paa"; -CSATAmmoBox = "O_supplyCrate_F"; -//cfgCSATInf = (configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "Infantry"); -groupsCSATSentry = ["rhs_msv_sergeant","rhs_msv_rifleman"];///"O_T_InfSentry";/// -groupsCSATSniper = ["rhs_msv_marksman","rhs_msv_rifleman"]; -groupsCSATsmall = [groupsCSATSentry,["rhs_msv_medic","rhs_msv_RShG2"],groupsCSATSniper];///[groupsCSATSentry,"O_T_reconSentry","O_T_SniperTeam"];/// -groupsCSATAA = ["rhs_msv_junior_sergeant","rhs_msv_aa","rhs_msv_aa","rhs_msv_aa"]; -groupsCSATAT = ["rhs_msv_junior_sergeant","rhs_msv_at","rhs_msv_strelok_rpg_assist","rhs_msv_LAT"]; -groupsCSATmid = [["rhs_msv_efreitor","rhs_msv_rifleman","rhs_msv_rifleman","rhs_msv_medic"],groupsCSATAA,groupsCSATAT];///["O_T_InfTeam","O_T_InfTeam_AA","O_T_InfTeam_AT"];/// -CSATSquad = ["rhs_msv_sergeant","rhs_msv_junior_sergeant","rhs_msv_grenadier_rpg","rhs_msv_strelok_rpg_assist","rhs_msv_at","rhs_msv_strelok_rpg_assist","rhs_msv_rifleman","rhs_msv_medic"];///"O_T_InfSquad";/// -CSATSpecOp = ["rhs_vdv_recon_sergeant","rhs_vdv_recon_rifleman_scout","rhs_vdv_recon_efreitor","rhs_vdv_recon_arifleman","rhs_vdv_recon_machinegunner_assistant","rhs_vdv_flora_engineer","rhs_vdv_recon_rifleman_lat","rhs_vdv_recon_medic"];///(configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "SpecOps" >> "O_T_ViperTeam");/// -factionMaleInvaders = "rhs_faction_msv"; -groupsCSATSquad = [CSATSquad,["rhs_msv_sergeant","rhs_msv_junior_sergeant","rhs_msv_arifleman","rhs_msv_rifleman","rhs_msv_marksman","rhs_msv_machinegunner_assistant","rhs_msv_LAT","rhs_msv_medic"],["rhs_msv_sergeant","rhs_msv_junior_sergeant","rhs_msv_arifleman","rhs_msv_rifleman","rhs_msv_marksman","rhs_msv_machinegunner_assistant","rhs_msv_aa","rhs_msv_medic"]];//[CSATSquad,"O_T_InfSquad_Weapons"];/// - -supportStaticCSATB = "RHS_Kord_Tripod_Bag"; -ATStaticCSATB = "RHS_Kornet_Gun_Bag"; -MGStaticCSATB = "RHS_Kord_Gun_Bag"; -supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; -AAStaticCSATB = "O_AA_01_weapon_F"; -MortStaticCSATB = "RHS_Podnos_Gun_Bag"; -supportStaticCSATB3 = "RHS_Podnos_Bipod_Bag"; - -weaponsCSAT append ["rhs_weap_ak103","rhs_weap_ak104_npz","rhs_weap_ak105_npz","arifle_AK12_F","arifle_AK12_GL_F","rhs_weap_ak74_2","rhs_weap_ak74_gp25","rhs_weap_ak74m_2mag","rhs_weap_ak74m_gp25_1p29","rhs_weap_ak74n_gp25","rhs_weap_akm","rhs_weap_akm_gp25","rhs_weap_asval","rhs_weap_svdp","rhs_weap_svds","rhs_weap_t5000","rhs_weap_vss","rhs_weap_aks74u","rhs_weap_rpg26","rhs_weap_rpg7","hgun_Pistol_heavy_01_F","rhs_weap_igla","rhs_weap_pya","rhs_weap_pkm","rhs_weap_pkp","rhs_weap_makarov_pm","rhs_weap_rpg7_pgo","rhs_weap_rshg2"]; -ammunitionCSAT append ["rhs_mag_nspn_yellow","rhs_mag_nspn_red","rhs_mag_nspn_green"]; -smokeX = smokeX + ["rhs_mag_nspd","rhs_mag_rdg2_white","rhs_mag_rdg2_black"]; -NVGoggles = NVGoggles + ["rhs_1PN138"]; -//opticsAAF = opticsAAF + ["rhs_acc_1p29","rhs_acc_1p63","rhs_acc_rakursPM","rhs_acc_1p78","rhs_acc_1pn93_1","rhs_acc_1pn93_2","rhs_acc_dh520x56","rhs_acc_ekp1","rhs_acc_pgo7v","rhs_acc_pgo7v2","rhs_acc_pgo7v3","rhs_acc_pkas","rhs_acc_pso1m2","rhs_acc_pso1m21"]; -itemsAAF = itemsAAF + ["rhs_acc_2dpZenit","rhs_acc_2dpZenit_ris","rhs_acc_uuk","rhs_acc_dtk1l","rhs_acc_ak5","rhs_acc_dtk","rhs_acc_dtk1983","rhs_acc_dtk1","rhs_acc_dtk1p","rhs_acc_dtk2","rhs_acc_dtk3","rhs_acc_dtk4short","rhs_acc_dtk4screws","rhs_acc_dtk4long","rhs_item_flightrecorder","rhs_acc_pbs1","rhs_acc_pbs4","rhs_acc_perst1ik","rhs_acc_perst1ik_ris","rhs_acc_perst3","rhs_acc_perst3_top","rhs_acc_perst3_2dp_h","rhs_acc_perst3_2dp_light_h","rhs_acc_pgs64","rhs_acc_pgs64_74u","rhs_acc_pgs64_74un","rhs_acc_grip_rk2","rhs_acc_grip_rk6","rhs_acc_tgpa","rhs_acc_tgpv"]; - -lampInvaders = "rhs_acc_2dpZenit"; -flagCSATmrk = "rhs_flag_Russia"; -nameInvaders = "AFRF"; -if (isServer) then {"CSAT_carrier" setMarkerText "RFS Minsk"}; - - -//}; diff --git a/A3-Antistasi/Templates/Loadouts/rhs_afrf_AT.sqf b/A3-Antistasi/Templates/Loadouts/rhs_afrf_AT.sqf index 1aaa30c7d3..c92d506981 100644 --- a/A3-Antistasi/Templates/Loadouts/rhs_afrf_AT.sqf +++ b/A3-Antistasi/Templates/Loadouts/rhs_afrf_AT.sqf @@ -1,40 +1,80 @@ -[ - [ - "rhs_weap_ak105", - "rhs_acc_pgs64", - "rhs_acc_perst1ik", - "rhs_acc_ekp8_02", - ["rhs_30Rnd_545x39_7N22_AK",30], - [], +[//Loadout + [//Primary Weapon + "rhs_weap_ak104_npz", //Weapon + "rhs_acc_1p87", //Muzzle + "rhs_acc_perst1ik", //Rail + ["rhs_acc_dtk4long"], //Sight + ["rhs_30Rnd_762x39",30], //Primary Magazine + [], //Secondary Magazine "" ], - [], - [], - [ - "rhs_uniform_gorka_r_g", + + [//Launcher + "rhs_weap_rpg7", //Weapon + "", //Muzzle + "", //Rail + "", //Sight + ["rhs_rpg7_PG7VL_mag",1], //Primary Magazine + [], //Secondary Magazine + "" //Bipod + ], + + [//Secondary Weapon + "rhs_weap_pb_6p9", //Weapon + "rhs_acc_6p9_suppressor", //Muzzle + "", //Rail + "", //Sight + ["rhs_mag_9x18_8_57n181S",8], //Primary Magazine + [], //Secondary Magazine + "" //Bipod + ], + + [//Uniform + "rhs_uniform_vdv_flora", //Uniform [] + _basicMedicalSupplies + _basicMiscItems ], - [ - "rhs_6b23_6sh116_od", - [ + + [//Vest + selectRandom //vest + ["rhs_6b23_6sh116_od"], + [//Inventory ["rhs_1PN138",1], - ["rhs_30Rnd_545x39_7N22_AK",4,30], + ["rhs_mag_9x18_8_57n181S",2,8], + ["rhs_30Rnd_762x39",4,30], ["rhs_mag_rgn",1,1], ["rhs_mag_rdg2_white",1,1], - ["rhs_mag_rgo",1,1]]], - [ - "RHS_Kornet_Gun_Bag", - [] + ["rhs_mag_rgo",1,1] + ] + _aceFlashlight ], - "rhs_altyn_novisor_ess", - "rhs_balaclava", - [], - [ - "ItemMap", + + [//Backpack + "rhs_rpg_empty", //Backpack + [//Inventory + ["rhs_rpg7_PG7VL_mag",2,1], + ["rhs_rpg7_type69_airburst_mag",2,1] + ] + + _aceClacker + ], + + "rhs_altyn_novisor_ess", //Headgear + ["rhs_balaclava"], //Facewear + + [//Binocular + "Binocular", //Binocular + "", "", - ["tf_fadak_1"] call _fnc_tfarRadio, - "ItemCompass", - "ItemWatch", + "", + [], + [], "" + ], + + [//Item + "ItemMap", //Map + "ItemGPS", //Terminal + ["tf_fadak_1"] call _fnc_tfarRadio, //Radio + "ItemCompass", //Compass + _tfarMicroDAGRNoArray, //Watch + "" //Goggles ] ]; diff --git a/A3-Antistasi/Templates/Loadouts/rhs_afrf_AT2.sqf b/A3-Antistasi/Templates/Loadouts/rhs_afrf_AT2.sqf index 86ce4f4b17..c92d506981 100644 --- a/A3-Antistasi/Templates/Loadouts/rhs_afrf_AT2.sqf +++ b/A3-Antistasi/Templates/Loadouts/rhs_afrf_AT2.sqf @@ -1,34 +1,66 @@ -[ - ["rhs_weap_ak105", - "rhs_acc_pgs64", - "rhs_acc_perst1ik", - "", - ["rhs_30Rnd_545x39_7N22_AK",30], - [], +[//Loadout + [//Primary Weapon + "rhs_weap_ak104_npz", //Weapon + "rhs_acc_1p87", //Muzzle + "rhs_acc_perst1ik", //Rail + ["rhs_acc_dtk4long"], //Sight + ["rhs_30Rnd_762x39",30], //Primary Magazine + [], //Secondary Magazine "" ], - [], - [], - [ - "rhs_uniform_gorka_r_g", + + [//Launcher + "rhs_weap_rpg7", //Weapon + "", //Muzzle + "", //Rail + "", //Sight + ["rhs_rpg7_PG7VL_mag",1], //Primary Magazine + [], //Secondary Magazine + "" //Bipod + ], + + [//Secondary Weapon + "rhs_weap_pb_6p9", //Weapon + "rhs_acc_6p9_suppressor", //Muzzle + "", //Rail + "", //Sight + ["rhs_mag_9x18_8_57n181S",8], //Primary Magazine + [], //Secondary Magazine + "" //Bipod + ], + + [//Uniform + "rhs_uniform_vdv_flora", //Uniform [] + _basicMedicalSupplies + _basicMiscItems ], - [ - "rhs_6b23_6sh116_od", - [ + + [//Vest + selectRandom //vest + ["rhs_6b23_6sh116_od"], + [//Inventory ["rhs_1PN138",1], - ["rhs_30Rnd_545x39_7N22_AK",4,30], + ["rhs_mag_9x18_8_57n181S",2,8], + ["rhs_30Rnd_762x39",4,30], ["rhs_mag_rgn",1,1], ["rhs_mag_rdg2_white",1,1], - ["rhs_mag_rgo",1,1]]], - [ - "RHS_Kornet_Tripod_Bag", - [] + ["rhs_mag_rgo",1,1] + ] + _aceFlashlight ], - "rhs_altyn", - "rhs_balaclava", - [ - "Binocular", + + [//Backpack + "rhs_rpg_empty", //Backpack + [//Inventory + ["rhs_rpg7_PG7VL_mag",2,1], + ["rhs_rpg7_type69_airburst_mag",2,1] + ] + + _aceClacker + ], + + "rhs_altyn_novisor_ess", //Headgear + ["rhs_balaclava"], //Facewear + + [//Binocular + "Binocular", //Binocular "", "", "", @@ -36,12 +68,13 @@ [], "" ], - [ - "ItemMap", - "", - ["tf_fadak_1"] call _fnc_tfarRadio, - "ItemCompass", - "ItemWatch", - "" + + [//Item + "ItemMap", //Map + "ItemGPS", //Terminal + ["tf_fadak_1"] call _fnc_tfarRadio, //Radio + "ItemCompass", //Compass + _tfarMicroDAGRNoArray, //Watch + "" //Goggles ] ]; diff --git a/A3-Antistasi/Templates/Loadouts/rhs_usaf_AT.sqf b/A3-Antistasi/Templates/Loadouts/rhs_usaf_AT.sqf index 698bd6d52c..d09aef64bd 100644 --- a/A3-Antistasi/Templates/Loadouts/rhs_usaf_AT.sqf +++ b/A3-Antistasi/Templates/Loadouts/rhs_usaf_AT.sqf @@ -51,7 +51,6 @@ [//Backpack "RHSUSF_Assault_EagleAIII_OCP", //Backpack [//Inventory - ["Democharge_Remote_Mag",1,1], ["RHS_Mag_SMAW_HEAA",1,1] ] + _aceClacker @@ -79,4 +78,4 @@ _tfarMicroDAGRNoArray, //Watch "" //Goggles ] -]; \ No newline at end of file +]; diff --git a/A3-Antistasi/Templates/Occupants3CBBAFT.sqf b/A3-Antistasi/Templates/Occupants3CBBAFT.sqf deleted file mode 100644 index 7955ddf16c..0000000000 --- a/A3-Antistasi/Templates/Occupants3CBBAFT.sqf +++ /dev/null @@ -1,79 +0,0 @@ -//if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\teamPlayer3CBBAFT.sqf"} else { - -NATOGrunt = "UK3CB_BAF_Rifleman_762_Tropical"; -NATOOfficer = "UK3CB_BAF_Officer_Tropical"; -NATOOfficer2 = "UK3CB_BAF_FAC_Tropical"; -NATOBodyG = "UK3CB_BAF_HeliCrew_Tropical_RM"; -NATOCrew = "UK3CB_BAF_Crewman_Tropical"; -NATOUnarmed = "B_G_Survivor_F"; -NATOMarksman = "UK3CB_BAF_Sharpshooter_Tropical"; -staticCrewOccupants = "UK3CB_BAF_GunnerStatic_Tropical";; -NATOPilot = "UK3CB_BAF_HeliPilot_RAF_Tropical"; - -NATOMG = "UK3CB_BAF_Static_L111A1_Deployed_High_Tropical_RM"; -NATOMortar = "UK3CB_BAF_Static_L16_Deployed_Tropical_RM"; -staticATOccupants = "RHS_TOW_TriPod_USMC_WD"; -staticAAOccupants = "RHS_Stinger_AA_pod_WD"; - -vehNATOLightArmed = ["UK3CB_BAF_LandRover_WMIK_HMG_FFR_Green_B_Tropical_RM","UK3CB_BAF_LandRover_WMIK_GMG_FFR_Green_B_Tropical_RM","UK3CB_BAF_LandRover_WMIK_Milan_FFR_Green_B_Tropical_RM","UK3CB_BAF_Jackal2_GMG_W_Tropical_RM","UK3CB_BAF_Jackal2_L2A1_W_Tropical_RM","UK3CB_BAF_Coyote_Logistics_L111A1_W_Tropical_RM","UK3CB_BAF_Coyote_Passenger_L111A1_W_Tropical_RM"]; -vehNATOLightUnarmed = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Green","UK3CB_BAF_LandRover_Hard_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical","UK3CB_BAF_LandRover_Soft_FFR_Green_B_Tropical"]; -vehNATOTrucks = ["UK3CB_BAF_MAN_HX60_Transport_Green_Tropical","UK3CB_BAF_MAN_HX58_Transport_Green_Tropical"]; -vehNATOCargoTrucks = ["UK3CB_BAF_MAN_HX60_Cargo_Green_A_Tropical","UK3CB_BAF_MAN_HX58_Cargo_Green_A_Tropical"]; -vehNATOAmmoTruck = "rhsusf_M977A4_AMMO_usarmy_wd"; -vehNATORepairTruck = "UK3CB_BAF_MAN_HX58_Repair_Green_Tropical"; -vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; -vehNATOAPC = ["RHS_M2A3_BUSKIII_wd","RHS_M2A3_BUSKI_wd","RHS_M2A3_wd","RHS_M2A3_wd","UK3CB_BAF_FV432_Mk3_GPMG_Green_Tropical_RM","UK3CB_BAF_FV432_Mk3_RWS_Green_Tropical_RM"];//"B_T_APC_Tracked_01_CRV_F" has no cargo seats -vehNATOTank = "rhsusf_m1a2sep1wd_usarmy"; -vehNATOAA = "RHS_M6_wd"; -vehNATOAttack = vehNATOAPC + [vehNATOTank]; -vehNATOBoat = "UK3CB_BAF_RHIB_HMG_Tropical_RM"; -vehNATORBoat = "UK3CB_BAF_RHIB_GPMG_Tropical_RM"; -vehNATOBoats = [vehNATOBoat,vehNATORBoat]; -vehNATOPlane = "RHS_A10_AT"; -vehNATOPlaneAA = "rhsusf_f22"; -vehNATOTransportPlanes = ["UK3CB_BAF_Hercules_C4_Tropical"]; -vehNATOPatrolHeli = "UK3CB_BAF_Merlin_HC4_CSAR_Tropical_RM"; -vehNATOTransportHelis = ["UK3CB_BAF_Wildcat_AH1_TRN_8A_Tropical_RM","UK3CB_BAF_Merlin_HC3_18_GPMG_Tropical_RM",vehNATOPatrolHeli,"UK3CB_BAF_Chinook_HC2_Tropical_RM"]; -vehNATOAttackHelis = ["UK3CB_BAF_Apache_AH1_Tropical_RM","UK3CB_BAF_Apache_AH1_CAS_Tropical_RM","UK3CB_BAF_Wildcat_AH1_CAS_6A_Tropical_RM","UK3CB_BAF_Wildcat_AH1_CAS_8A_Tropical_RM"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -vehNATOUAV = "B_UAV_02_F"; -vehNATOUAVSmall = "B_UAV_01_F"; -vehNATOMRLS = "rhsusf_m109d_usarmy"; -vehNATOMRLSMags = "rhs_mag_155mm_m795_28";//["Sh_155mm_AMOS","rhs_mag_155mm_m795_28",,B Alpha 1-1:3 (Alberto)] -vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "UK3CB_BAF_MAN_HX60_Fuel_Green_Tropical_RM", "UK3CB_BAF_LandRover_Amb_FFR_Green_A_Tropical_RM", vehNATORepairTruck,"UK3CB_BAF_FV432_Mk3_RWS_Green_Tropical_RM"]; -vehNATOBike = "B_T_Quadbike_01_F"; -NATOFlag = "Flag_UK_F"; -NATOFlagTexture = "\A3\Data_F\Flags\Flag_UK.paa"; -NATOAmmobox = "B_supplyCrate_F"; - -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["UK3CB_BAF_Officer_Tropical","UK3CB_BAF_RO_Tropical"];//"B_T_InfSentry";// -groupsNATOSniper = ["UK3CB_BAF_Sniper_Tropical_Ghillie_L115_RM","UK3CB_BAF_Spotter_Tropical_Ghillie_L129_RM"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["rhsusf_army_ucp_fso","rhsusf_army_ucp_aa","rhsusf_army_ucp_aa","rhsusf_army_ucp_aa"]; -groupsNATOAT = ["UK3CB_BAF_FT_762_Tropical","UK3CB_BAF_MAT_Tropical","UK3CB_BAF_MAT_Tropical","UK3CB_BAF_MATC_Tropical"]; -groupsNATOmid = [["UK3CB_BAF_SC_Tropical","UK3CB_BAF_MGLMG_Tropical","UK3CB_BAF_Grenadier_762_Tropical","UK3CB_BAF_LAT_Tropical"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["UK3CB_BAF_SC_Tropical",NATOGrunt,"UK3CB_BAF_GunnerM6_Tropical",NATOMarksman,"UK3CB_BAF_FT_762_Tropical","UK3CB_BAF_LSW_Tropical","UK3CB_BAF_Explosive_Tropical","UK3CB_BAF_Medic_Tropical"];//"B_T_InfSquad";// -NATOSpecOp = ["UK3CB_BAF_SC_Tropical_BPT_RM","UK3CB_BAF_Pointman_Tropical_BPT_RM","UK3CB_BAF_Medic_Tropical_BPT_RM","UK3CB_BAF_Pointman_Tropical_BPT_RM","UK3CB_BAF_Marksman_Tropical_BPT_RM","UK3CB_BAF_FAC_Tropical_BPT_RM","UK3CB_BAF_Explosive_Tropical_BPT_RM","UK3CB_BAF_MGLMG_Tropical_BPT_RM"];//(configfile >> "CfgGroups" >> "West" >> "BLU_CTRG_F" >> "Infantry" >> "CTRG_InfSquad"); -factionMaleOccupants = "UK3CB_BAF_Faction_Army_Tropical"; -groupsNATOSquad = [NATOSquad,["UK3CB_BAF_SC_Tropical","UK3CB_BAF_LSW_Tropical","UK3CB_BAF_Grenadier_762_Tropical",NATOMarksman,"UK3CB_BAF_LAT_ILAW_762_Tropical","UK3CB_BAF_Pointman_Tropical","UK3CB_BAF_Engineer_Tropical","UK3CB_BAF_Medic_Tropical"],["UK3CB_BAF_SC_Tropical","UK3CB_BAF_GunnerM6_Tropical","UK3CB_BAF_Repair_Tropical","UK3CB_BAF_MGGPMG_Tropical","UK3CB_BAF_FT_762_Tropical","UK3CB_BAF_Medic_Tropical","UK3CB_BAF_Sharpshooter_Tropical","UK3CB_BAF_Grenadier_762_Tropical"],["UK3CB_BAF_SC_Tropical","UK3CB_BAF_Marksman_Tropical","UK3CB_BAF_Explosive_Tropical","UK3CB_BAF_Engineer_Tropical","UK3CB_BAF_Repair_Tropical","UK3CB_BAF_Pointman_Tropical","UK3CB_BAF_LAT_762_Tropical","UK3CB_BAF_Medic_Tropical"],["UK3CB_BAF_SC_Tropical","UK3CB_BAF_LSW_Tropical","UK3CB_BAF_MGGPMG_Tropical","UK3CB_BAF_MGLMG_Tropical","UK3CB_BAF_Grenadier_762_Tropical","UK3CB_BAF_LAT_ILAW_762_Tropical","UK3CB_BAF_LAT_762_Tropical","UK3CB_BAF_Medic_Tropical"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];/// - -supportStaticNATOB = "rhs_TOW_Tripod_Bag"; -ATStaticNATOB = "rhs_Tow_Gun_Bag"; -MGStaticNATOB = "UK3CB_BAF_L111A1"; -supportStaticNATOB2 = "UK3CB_BAF_Tripod"; -AAStaticNATOB = "B_AA_01_weapon_F"; -MortStaticNATOB = "UK3CB_BAF_L16"; -supportStaticNATOB3 = "UK3CB_BAF_L16_Tripod"; - -weaponsNato append ["UK3CB_BAF_L1A1","UK3CB_BAF_L1A1_Wood","UK3CB_BAF_L110A3","UK3CB_BAF_L115A3","UK3CB_BAF_L118A1_Covert","UK3CB_BAF_L119A1_CQB","UK3CB_BAF_L22","UK3CB_BAF_L22A2","UK3CB_BAF_L7A2","UK3CB_BAF_L135A1","UK3CB_BAF_L85A2","UK3CB_BAF_L85A2_UGL_HWS","UK3CB_BAF_L86A2","UK3CB_BAF_L86A3","UK3CB_BAF_L91A1","UK3CB_BAF_L92A1","UK3CB_BAF_L128A1","UK3CB_BAF_L129A1","UK3CB_BAF_M6"];//possible weapons that spawn in NATO ammoboxes -smokeX = smokeX + ["UK3CB_BAF_SmokeShell","UK3CB_BAF_SmokeShellRed","UK3CB_BAF_SmokeShellGreen","UK3CB_BAF_SmokeShellYellow","UK3CB_BAF_SmokeShellPurple","UK3CB_BAF_SmokeShellBlue","UK3CB_BAF_SmokeShellOrange"]; -NVGoggles = NVGoggles + ["UK3CB_BAF_HMNVS"/*,"rhsusf_ANPVS_15"*/]; -itemsAAF = itemsAAF + ["rhsusf_acc_grip2","rhsusf_acc_grip2_tan","rhsusf_acc_anpeq15side_bk","rhsusf_acc_anpeq15_bk_top","rhsusf_acc_anpeq15","rhsusf_acc_anpeq15_light","rhsusf_acc_anpeq15_bk","rhsusf_acc_anpeq15_bk_light","rhsusf_acc_anpeq15A","rhsusf_acc_ARDEC_M240","rhsusf_acc_nt4_black","rhsusf_acc_nt4_tan","rhsusf_acc_SFMB556","UK3CB_BAF_SUIT","UK3CB_BAF_SUSAT","UK3CB_BAF_SUSAT_3D","UK3CB_BAF_TA648","UK3CB_BAF_TA648_308","UK3CB_BAF_TA31F","UK3CB_BAF_TA31F_Hornbill","UK3CB_BAF_TA31F_3D","UK3CB_BAF_TA31F_Hornbill_3D","UK3CB_BAF_Eotech","UK3CB_BAF_SB31250","UK3CB_BAF_SB31250_Ghillie","UK3CB_BAF_SB31250_Desert","UK3CB_BAF_SB31250_Desert_Ghillie","UK3CB_BAF_SpecterLDS","UK3CB_BAF_SpecterLDS_3D","UK3CB_BAF_SpecterLDS_Dot","UK3CB_BAF_SpecterLDS_Dot_3D","UK3CB_BAF_LLM_IR_Tan","UK3CB_BAF_LLM_IR_Black","UK3CB_BAF_LLM_Flashlight_Tan","UK3CB_BAF_LLM_Flashlight_Black","UK3CB_BAF_Flashlight_L131A1","UK3CB_BAF_SFFH","UK3CB_BAF_BFA_L85","UK3CB_BAF_BFA_L110","UK3CB_BAF_BFA_L129","UK3CB_BAF_BFA_L7","UK3CB_BAF_Silencer_L85","UK3CB_BAF_Silencer_L110","UK3CB_BAF_Silencer_L115A3","UK3CB_BAF_Silencer_L91A1","RKSL_optic_PMII_312","RKSL_optic_PMII_312_sunshade","RKSL_optic_PMII_312_wdl","RKSL_optic_PMII_312_sunshade_wdl","RKSL_optic_PMII_312_des","RKSL_optic_PMII_312_sunshade_des","RKSL_optic_PMII_525","RKSL_optic_PMII_525_wdl","RKSL_optic_PMII_525_des"]; -flagNATOmrk = "flag_UK";//ok - -lampOccupants = "acc_flashlight"; -nameOccupants = "BAF"; -if (isServer) then {"NATO_carrier" setMarkerText "HMS Ark Royal"}; - -//}; diff --git a/A3-Antistasi/Templates/OccupantsRHSGREF.sqf b/A3-Antistasi/Templates/OccupantsRHSGREF.sqf deleted file mode 100644 index ea77614fc7..0000000000 --- a/A3-Antistasi/Templates/OccupantsRHSGREF.sqf +++ /dev/null @@ -1,95 +0,0 @@ -NATOGrunt = "rhsgref_cdf_reg_rifleman"; -NATOOfficer = "rhsgref_cdf_reg_general"; -NATOOfficer2 = "rhsgref_cdf_ngd_commander"; -NATOBodyG = "rhsgref_cdf_ngd_rifleman_lite"; -NATOCrew = "rhsgref_cdf_ngd_crew"; -NATOUnarmed = "I_G_Survivor_F"; -NATOMarksman = "rhsgref_cdf_reg_marksman"; -staticCrewOccupants = "rhsgref_cdf_ngd_rifleman_lite"; -NATOPilot = "rhsgref_cdf_air_pilot"; - -NATOMG = "rhsgref_cdf_DSHKM"; -NATOMortar = "rhsgref_cdf_reg_m252"; -staticATOccupants = "rhsgref_cdf_SPG9M"; -staticAAOccupants = "rhsgref_cdf_Igla_AA_pod"; - -//NATO PvP Loadouts -NATOPlayerLoadouts = [ - //Team Leader - "rhsgref_cdf_para_squadleader", - //Medic - "rhsgref_cdf_para_medic", - //Autorifleman - "rhsgref_cdf_para_autorifleman", - //Marksman - "rhsgref_cdf_para_marksman", - //Anti-tank Scout - "rhsgref_cdf_para_grenadier", - //Anti-tank Scout - "rhsgref_cdf_para_grenadier" -]; - -vehNATOPVP = ["rhsgref_ins_g_uaz","rhsgref_ins_g_uaz_open","rhsgref_BRDM2UM_ins_g","rhsgref_ins_g_uaz_dshkm_chdkz"];//This array contains the vehicles Nato-PvP players can spawn near their flag. - -vehNATOLightArmed = ["rhsgref_cdf_uaz_ags","rhsgref_cdf_reg_uaz_dshkm","rhsgref_cdf_reg_uaz_spg9","rhsgref_BRDM2_HQ"]; -vehNATOLightUnarmed = ["rhsgref_cdf_reg_uaz","rhsgref_cdf_reg_uaz_open","rhsgref_BRDM2UM"]; -vehNATOTrucks = ["rhsgref_cdf_gaz66","rhsgref_cdf_ural","rhsgref_cdf_ural_open","rhsgref_cdf_gaz66o","rhsgref_cdf_zil131","rhsgref_cdf_zil131_open"]; -vehNATOCargoTrucks = []; -vehNATOAmmoTruck = "rhsgref_cdf_gaz66_ammo"; -vehNATORepairTruck = "rhsgref_cdf_gaz66_repair"; -vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; -vehNATOAPC = ["rhsgref_cdf_btr60","rhsgref_cdf_btr70","rhsgref_BRDM2","rhsgref_cdf_bmp2k","rhsgref_cdf_bmp2e","rhsgref_cdf_bmd2","rhsgref_cdf_bmd1k","rhsgref_cdf_bmp1"];//"B_T_APC_Tracked_01_CRV_F" has no cargo seats -vehNATOTank = "rhsgref_cdf_t72ba_tv"; -vehNATOAA = "rhsgref_cdf_zsu234"; -vehNATOAttack = vehNATOAPC + [vehNATOTank]; -vehNATOBoat = "I_Boat_Armed_01_minigun_F"; -vehNATORBoat = "I_Boat_Transport_01_F"; -vehNATOBoats = [vehNATOBoat,vehNATORBoat]; -vehNATOPlane = "rhs_l159_CDF"; -vehNATOPlaneAA = "rhsgref_cdf_mig29s"; -vehNATOTransportPlanes = []; -vehNATOPatrolHeli = "rhsgref_cdf_reg_Mi8amt"; -vehNATOTransportHelis = ["rhsgref_cdf_reg_Mi8amt"]; -vehNATOAttackHelis = ["rhsgref_cdf_Mi24D","rhsgref_cdf_Mi35","rhsgref_cdf_reg_Mi17Sh","rhsgref_mi24g_CAS"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -vehNATOUAV = "I_UAV_02_dynamicLoadout_F"; -vehNATOUAVSmall = "I_UAV_01_F"; -vehNATOMRLS = "rhsgref_cdf_reg_BM21"; -vehNATOMRLSMags = "rhs_mag_9m28f_1";//[R Alpha 1-1:1 (Alberto),"rhs_weap_grad","rhs_weap_grad","Close_salvo","rhs_ammo_m21OF_HE",,73: rocket_230mm_f.p3d,R Alpha 1-1:1 (Alberto)] -vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "rhsgref_BRDM2_ATGM", vehNATORepairTruck]; -vehNATOBike = "I_Quadbike_01_F"; -NATOFlag = "Flag_AltisColonial_F"; -NATOFlagTexture = "\A3\Data_F\Flags\Flag_AltisColonial_CO.paa"; -NATOAmmobox = "I_supplyCrate_F"; - -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["rhsgref_cdf_reg_grenadier",NATOGrunt];//"B_T_InfSentry";// -groupsNATOSniper = ["rhsgref_cdf_reg_marksman","rhsgref_cdf_para_marksman"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_specialist_aa"]; -groupsNATOAT = ["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_grenadier_rpg","rhsgref_cdf_reg_grenadier_rpg"]; -groupsNATOmid = [["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_rifleman_akm","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_medic"];//"B_T_InfSquad";// -NATOSpecOp = ["rhsgref_cdf_para_grenadier_rpg","rhsgref_cdf_para_squadleader","rhsgref_cdf_para_grenadier","rhsgref_cdf_para_autorifleman","rhsgref_cdf_para_marksman","rhsgref_cdf_para_engineer","rhsgref_cdf_para_specialist_aa","rhsgref_cdf_para_medic"];//(configfile >> "CfgGroups" >> "West" >> "BLU_CTRG_F" >> "Infantry" >> "CTRG_InfSquad"); -factionMaleOccupants = ""; -groupsNATOSquad = [NATOSquad,["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_medic"],["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman_akm","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_ins_g_grenadier_rpg","rhsgref_cdf_reg_medic","rhsgref_ins_g_grenadier_rpg"],["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_medic","rhsgref_ins_g_engineer","rhsgref_ins_g_saboteur"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];/// - -supportStaticNATOB = "RHS_SPG9_Tripod_Bag"; -ATStaticNATOB = "RHS_SPG9_Gun_Bag"; -MGStaticNATOB = "RHS_DShkM_Gun_Bag"; -supportStaticNATOB2 = "RHS_DShkM_TripodHigh_Bag"; -AAStaticNATOB = "no_exists"; -MortStaticNATOB = "RHS_Podnos_Gun_Bag"; -supportStaticNATOB3 = "RHS_Podnos_Bipod_Bag"; - -weaponsNato append ["rhs_weap_akm_gp25","rhs_weap_pkm","rhs_weap_akms","rhs_weap_ak103","rhs_weap_akm","rhs_weap_aks74_2","rhs_weap_aks74u"];//possible weapons that spawn in NATO ammoboxes -smokeX = smokeX + ["rhs_mag_an_m8hc","rhs_mag_m18_purple","rhs_mag_m18_red","rhs_mag_m18_green","rhs_mag_m18_yellow","rhs_mag_rdg2_white"]; -NVGoggles = NVGoggles + ["rhsusf_ANPVS_14"/*,"rhsusf_ANPVS_15"*/]; -itemsAAF = itemsAAF + ["rhsusf_acc_grip2","rhsusf_acc_grip2_tan","rhsusf_acc_anpeq15side_bk","rhsusf_acc_anpeq15_bk_top","rhsusf_acc_anpeq15","rhsusf_acc_anpeq15_light","rhsusf_acc_anpeq15_bk","rhsusf_acc_anpeq15_bk_light","rhsusf_acc_anpeq15A","rhsusf_acc_ARDEC_M240","rhsusf_acc_nt4_black","rhsusf_acc_nt4_tan","rhsusf_acc_SFMB556"]; - - -flagNATOmrk = "rhs_flag_insurgents";//ok - -lampOccupants = "rhs_acc_2dpZenit"; -nameOccupants = "CDF"; -if (isServer) then {"NATO_carrier" setMarkerText "CDF Carrier"}; diff --git a/A3-Antistasi/Templates/OccupantsVanilla.sqf b/A3-Antistasi/Templates/OccupantsVanilla.sqf deleted file mode 100644 index ed3058a754..0000000000 --- a/A3-Antistasi/Templates/OccupantsVanilla.sqf +++ /dev/null @@ -1,91 +0,0 @@ -if (worldName == "Altis") exitWith {call compile preProcessFileLineNumbers "Templates\OccupantsVanillaAltis.sqf"}; - -NATOGrunt = "B_T_Soldier_F"; -NATOOfficer = "B_T_Officer_F"; -NATOOfficer2 = "B_G_officer_F"; -NATOBodyG = "B_CTRG_Soldier_tna_F"; -NATOCrew = "B_T_Crew_F"; -NATOUnarmed = "B_G_Survivor_F"; -NATOMarksman = "B_T_Soldier_M_F"; -staticCrewOccupants = "B_T_support_MG_F"; - -NATOMG = "B_HMG_01_high_F"; -NATOMortar = "B_T_Mortar_01_F"; -staticATOccupants = "B_T_static_AT_F"; -staticAAOccupants = "B_static_AA_F"; -NATOPilot = "B_T_Pilot_F"; - -//NATO PvP Loadouts -NATOPlayerLoadouts = [ - //Team Leader - ["vanilla_blufor_teamLeader"] call A3A_fnc_getLoadout, - //Medic - ["vanilla_blufor_medic"] call A3A_fnc_getLoadout, - //Autorifleman - ["vanilla_blufor_machineGunner"] call A3A_fnc_getLoadout, - //Marksman - ["vanilla_blufor_marksman"] call A3A_fnc_getLoadout, - //Anti-tank Scout - ["vanilla_blufor_AT"] call A3A_fnc_getLoadout, - //Anti-tank Scout - ["vanilla_blufor_rifleman"] call A3A_fnc_getLoadout -]; - -vehNATOPVP = ["B_T_MRAP_01_F","B_T_LSV_01_unarmed_F","B_T_LSV_01_armed_F"];//This array contains the vehicles Nato-PvP players can spawn near their flag. - -vehNATOLightArmed = ["B_T_LSV_01_armed_F"]; -vehNATOLightUnarmed = ["B_T_MRAP_01_F","B_T_LSV_01_unarmed_F"]; -vehNATOTrucks = ["B_T_Truck_01_transport_F","B_T_Truck_01_covered_F"]; -vehNATOCargoTrucks = ["B_T_Truck_01_cargo_F", "B_T_Truck_01_flatbed_F"]; -vehNATOAmmoTruck = "B_T_Truck_01_ammo_F"; -vehNATORepairTruck = "B_T_Truck_01_repair_F"; -vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; -vehNATOAPC = ["B_T_APC_Wheeled_01_cannon_F","B_T_APC_Tracked_01_rcws_F"];//"B_T_APC_Tracked_01_CRV_F" has no cargo seats -vehNATOTank = "B_T_MBT_01_cannon_F"; -vehNATOAA = "B_T_APC_Tracked_01_AA_F"; -vehNATOAttack = vehNATOAPC + [vehNATOTank]; -vehNATOBoat = "B_T_Boat_Armed_01_minigun_F"; -vehNATORBoat = "B_T_Boat_Transport_01_F"; -vehNATOBoats = [vehNATOBoat,vehNATORBoat,"B_T_APC_Wheeled_01_cannon_F"]; -vehNATOPlane = "B_Plane_CAS_01_F"; -vehNATOPlaneAA = "B_Plane_Fighter_01_F"; -vehNATOTransportPlanes = ["B_T_VTOL_01_infantry_F"]; -vehNATOPatrolHeli = "B_Heli_Light_01_F"; -vehNATOTransportHelis = ["B_Heli_Transport_03_F",vehNATOPatrolHeli,"B_Heli_Transport_01_camo_F"]; -vehNATOAttackHelis = ["B_T_VTOL_01_armed_F","B_Heli_Light_01_armed_F","B_Heli_Attack_01_F"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -vehNATOUAV = "B_UAV_02_F"; -vehNATOUAVSmall = "B_UAV_01_F"; -vehNATOMRLS = "B_T_MBT_01_arty_F"; -vehNATOMRLSMags = "32Rnd_155mm_Mo_shells"; -vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "B_T_Truck_01_fuel_F", "B_T_Truck_01_medical_F", vehNATORepairTruck,"B_T_APC_Tracked_01_CRV_F"]; -vehNATOBike = "B_T_Quadbike_01_F"; -NATOFlag = "Flag_NATO_F"; -NATOFlagTexture = "\A3\Data_F\Flags\Flag_NATO_CO.paa"; -NATOAmmobox = "B_supplyCrate_F"; -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["B_T_soldier_GL_F",NATOGrunt];//"B_T_InfSentry";// -groupsNATOSniper = ["B_T_sniper_F","B_T_spotter_F"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper,["B_T_recon_M_F","B_T_recon_F"]]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["B_T_soldier_TL_F","B_T_soldier_AA_F","B_T_soldier_AA_F","B_T_soldier_AAA_F"]; -groupsNATOAT = ["B_T_soldier_TL_F","B_T_soldier_AT_F","B_T_soldier_AT_F","B_T_soldier_AAT_F"]; -groupsNATOmid = [["B_T_soldier_TL_F","B_T_soldier_AR_F","B_T_soldier_GL_F","B_T_soldier_LAT_F"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["B_T_soldier_SL_F",NATOGrunt,"B_T_soldier_LAT_F",NATOMarksman,"B_T_soldier_TL_F","B_T_soldier_AR_F","B_T_soldier_A_F","B_T_medic_F"];//"B_T_InfSquad";// -NATOSpecOp = ["B_CTRG_Soldier_TL_tna_F","B_CTRG_Soldier_M_tna_F","B_CTRG_Soldier_Medic_tna_F",NATOBodyG,"B_CTRG_Soldier_LAT_tna_F","B_CTRG_Soldier_JTAC_tna_F","B_CTRG_Soldier_Exp_tna_F","B_CTRG_Soldier_AR_tna_F"]; -groupsNATOSquad = [NATOSquad,["B_T_soldier_SL_F","B_T_soldier_AR_F","B_T_soldier_GL_F",NATOMarksman,"B_T_soldier_AT_F","B_T_soldier_AAT_F","B_T_soldier_A_F","B_T_medic_F"],["B_T_soldier_SL_F","B_T_soldier_LAT_F","B_T_soldier_TL_F","B_T_soldier_AR_F","B_T_soldier_A_F","B_T_medic_F","B_T_Support_Mort_F","B_support_AMort_F"],["B_T_soldier_SL_F","B_T_soldier_AR_F","B_T_soldier_GL_F",NATOMarksman,"B_T_soldier_AA_F","B_T_soldier_AAA_F","B_T_soldier_A_F","B_T_medic_F"],["B_T_soldier_SL_F","B_T_soldier_AR_F","B_T_soldier_GL_F",NATOMarksman,"B_T_engineer_F","B_T_engineer_F","B_T_soldier_A_F","B_T_medic_F"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];/// -factionMaleOccupants = "BLU_CTRG_F"; - -supportStaticNATOB = "B_HMG_01_support_grn_F"; -ATStaticNATOB = "B_AT_01_weapon_F"; -MGStaticNATOB = "B_HMG_01_Weapon_grn_F"; -supportStaticNATOB2 = "B_HMG_01_support_high_F"; -AAStaticNATOB = "B_AA_01_weapon_F"; -MortStaticNATOB = "B_Mortar_01_Weapon_grn_F"; -supportStaticNATOB3 = "B_Mortar_01_support_grn_F"; - -weaponsNato append ["arifle_MX_F","arifle_MX_GL_F","arifle_MX_SW_F","srifle_EBR_F","srifle_LRR_F","srifle_DMR_03_F","srifle_DMR_02_F","MMG_02_sand_F","arifle_MXM_F","SMG_01_F","arifle_AK12_F","arifle_AK12_GL_F"];//possible weapons that spawn in NATO ammoboxes -ammunitionNATO append ["30Rnd_65x39_Caseless_mag","30Rnd_65x39_caseless_mag_Tracer","100Rnd_65x39_Caseless_mag","100Rnd_65x39_caseless_mag_Tracer","20Rnd_762x51_Mag","7Rnd_408_Mag","30Rnd_45ACP_Mag_SMG_01","30Rnd_45ACP_Mag_SMG_01_tracer_green","11Rnd_45ACP_Mag","1Rnd_HE_Grenade_shell","UGL_FlareWhite_F","UGL_FlareGreen_F","1Rnd_Smoke_Grenade_shell","3Rnd_HE_Grenade_shell","HandGrenade","20Rnd_762x51_Mag","10Rnd_338_Mag","130Rnd_338_Mag"];//possible ammo that spawn in NATO ammoboxes -flagNATOmrk = "flag_NATO"; - -nameOccupants = "NATO"; -if (isServer) then {"NATO_carrier" setMarkerText "NATO Carrier"}; diff --git a/A3-Antistasi/Templates/OccupantsVanillaAltis.sqf b/A3-Antistasi/Templates/OccupantsVanillaAltis.sqf deleted file mode 100644 index 27c8aa35d0..0000000000 --- a/A3-Antistasi/Templates/OccupantsVanillaAltis.sqf +++ /dev/null @@ -1,91 +0,0 @@ -if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\OccupantsVanillaAltisB.sqf"}; - -NATOGrunt = "B_Soldier_F"; -NATOOfficer = "B_Officer_F"; -NATOOfficer2 = "B_G_officer_F"; -NATOBodyG = "B_Patrol_Soldier_TL_F"; -NATOCrew = "B_Crew_F"; -NATOUnarmed = "B_G_Survivor_F"; -NATOMarksman = "B_Sharpshooter_F"; -staticCrewOccupants = "B_support_MG_F"; - -NATOMG = "B_HMG_01_high_F"; -NATOMortar = "B_Mortar_01_F"; -staticATOccupants = "B_static_AT_F"; -staticAAOccupants = "B_static_AA_F"; -NATOPilot = "B_Helipilot_F"; - -//NATO PvP Loadouts -NATOPlayerLoadouts = [ - //Team Leader - ["vanilla_blufor_teamLeader"] call A3A_fnc_getLoadout, - //Medic - ["vanilla_blufor_medic"] call A3A_fnc_getLoadout, - //Autorifleman - ["vanilla_blufor_machineGunner"] call A3A_fnc_getLoadout, - //Marksman - ["vanilla_blufor_marksman"] call A3A_fnc_getLoadout, - //Anti-tank Scout - ["vanilla_blufor_AT"] call A3A_fnc_getLoadout, - //Anti-tank Scout - ["vanilla_blufor_rifleman"] call A3A_fnc_getLoadout -]; - -vehNATOPVP = ["B_T_MRAP_01_F","B_MRAP_01_hmg_F"];//This array contains the vehicles Nato-PvP players can spawn near their flag. - -vehNATOLightArmed = ["B_MRAP_01_hmg_F"]; -vehNATOLightUnarmed = ["B_T_MRAP_01_F"]; -vehNATOTrucks = ["B_Truck_01_transport_F","B_Truck_01_covered_F"]; -vehNATOCargoTrucks = ["B_Truck_01_cargo_F", "B_Truck_01_flatbed_F"]; -vehNATOAmmoTruck = "B_Truck_01_ammo_F"; -vehNATORepairTruck = "B_Truck_01_repair_F"; -vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; -vehNATOAPC = ["B_APC_Wheeled_01_cannon_F","B_APC_Tracked_01_rcws_F"];//"B_T_APC_Tracked_01_CRV_F" has no cargo seats -vehNATOTank = "B_MBT_01_cannon_F"; -vehNATOAA = "B_APC_Tracked_01_AA_F"; -vehNATOAttack = vehNATOAPC + [vehNATOTank]; -vehNATOBoat = "B_Boat_Armed_01_minigun_F"; -vehNATORBoat = "B_Boat_Transport_01_F"; -vehNATOBoats = [vehNATOBoat,vehNATORBoat,"B_APC_Wheeled_01_cannon_F"]; -vehNATOPlane = "B_Plane_CAS_01_F"; -vehNATOPlaneAA = "B_Plane_Fighter_01_F"; -vehNATOTransportPlanes = ["B_T_VTOL_01_infantry_F"]; -vehNATOPatrolHeli = "B_Heli_Light_01_F"; -vehNATOTransportHelis = ["B_Heli_Transport_03_F",vehNATOPatrolHeli,"B_Heli_Transport_01_camo_F"]; -vehNATOAttackHelis = ["B_T_VTOL_01_armed_F","B_Heli_Light_01_armed_F","B_Heli_Attack_01_F"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -vehNATOUAV = "B_UAV_02_F"; -vehNATOUAVSmall = "B_UAV_01_F"; -vehNATOMRLS = "B_MBT_01_arty_F"; -vehNATOMRLSMags = "32Rnd_155mm_Mo_shells"; -vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "B_Truck_01_fuel_F", "B_Truck_01_medical_F", vehNATORepairTruck,"B_APC_Tracked_01_CRV_F"]; -vehNATOBike = "B_Quadbike_01_F"; -NATOFlag = "Flag_NATO_F"; -NATOFlagTexture = "\A3\Data_F\Flags\Flag_NATO_CO.paa"; -NATOAmmobox = "B_supplyCrate_F"; -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["B_soldier_GL_F",NATOGrunt];//"B_T_InfSentry";// -groupsNATOSniper = ["B_sniper_F","B_spotter_F"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper,["B_recon_JTAC_F","B_recon_F"]]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["B_Soldier_TL_F","B_soldier_AA_F","B_soldier_AA_F","B_soldier_AAA_F"]; -groupsNATOAT = ["B_soldier_TL_F","B_soldier_AT_F","B_soldier_AT_F","B_soldier_AAT_F"]; -groupsNATOmid = [["B_soldier_TL_F","B_soldier_AR_F","B_soldier_GL_F","B_soldier_LAT_F"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["B_soldier_SL_F",NATOGrunt,"B_soldier_LAT_F",NATOMarksman,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_medic_F"];//"B_T_InfSquad";// -NATOSpecOp = ["B_CTRG_Soldier_TL_tna_F","B_CTRG_Soldier_M_tna_F","B_CTRG_Soldier_Medic_tna_F",NATOBodyG,"B_CTRG_Soldier_LAT_tna_F","B_CTRG_Soldier_JTAC_tna_F","B_CTRG_Soldier_Exp_tna_F","B_CTRG_Soldier_AR_tna_F"];//(configfile >> "CfgGroups" >> "West" >> "BLU_CTRG_F" >> "Infantry" >> "CTRG_InfSquad"); -factionMaleOccupants = "BLU_CTRG_F"; -groupsNATOSquad = [NATOSquad,["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_support_Mort_F","B_support_AMort_F","B_medic_F"],["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_support_MG_F","B_support_AMG_F","B_medic_F"],["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_soldier_AA_F","B_soldier_AAA_F","B_medic_F"],["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_soldier_AT_F","B_soldier_AAT_F","B_medic_F"],["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_engineer_F","B_engineer_F","B_medic_F"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];///"B_engineer_F" - -supportStaticNATOB = "B_HMG_01_support_F"; -ATStaticNATOB = "B_AT_01_weapon_F"; -MGStaticNATOB = "B_HMG_01_high_weapon_F"; -supportStaticNATOB2 = "B_HMG_01_support_high_F"; -AAStaticNATOB = "B_AA_01_weapon_F"; -MortStaticNATOB = "B_Mortar_01_weapon_F"; -supportStaticNATOB3 = "B_Mortar_01_support_F"; - -weaponsNato append ["launch_NLAW_F","srifle_GM6_F","srifle_LRR_F","srifle_EBR_F","arifle_MX_GL_F","arifle_MX_F","arifle_MX_SW_F","arifle_MXC_F","arifle_MXM_F","arifle_SPAR_02_snd_F","arifle_SPAR_03_snd_F","MMG_02_sand_F"];//possible weapons that spawn in NATO ammoboxes -ammunitionNATO append ["30Rnd_65x39_Caseless_mag","30Rnd_65x39_caseless_mag_Tracer","100Rnd_65x39_Caseless_mag","100Rnd_65x39_caseless_mag_Tracer","20Rnd_762x51_Mag","7Rnd_408_Mag","30Rnd_45ACP_Mag_SMG_01","30Rnd_45ACP_Mag_SMG_01_tracer_green","11Rnd_45ACP_Mag","1Rnd_HE_Grenade_shell","UGL_FlareWhite_F","UGL_FlareGreen_F","1Rnd_Smoke_Grenade_shell","3Rnd_HE_Grenade_shell","HandGrenade","20Rnd_762x51_Mag","10Rnd_338_Mag","130Rnd_338_Mag"];//possible ammo that spawn in NATO ammoboxes -flagNATOmrk = "flag_NATO"; - -nameOccupants = "NATO"; -if (isServer) then {"NATO_carrier" setMarkerText "NATO Carrier"}; diff --git a/A3-Antistasi/Templates/OccupantsVanillaAltisB.sqf b/A3-Antistasi/Templates/OccupantsVanillaAltisB.sqf deleted file mode 100644 index 87656bb374..0000000000 --- a/A3-Antistasi/Templates/OccupantsVanillaAltisB.sqf +++ /dev/null @@ -1,90 +0,0 @@ -NATOGrunt = "I_Soldier_F"; -NATOOfficer = "I_Officer_F"; -NATOOfficer2 = "I_G_officer_F"; -NATOBodyG = "I_Soldier_SL_F"; -NATOCrew = "I_Crew_F"; -NATOUnarmed = "I_G_Survivor_F"; -NATOMarksman = "I_Soldier_M_F"; -staticCrewOccupants = "I_support_MG_F"; - -NATOMG = "I_HMG_01_high_F"; -NATOMortar = "I_Mortar_01_F"; -staticATOccupants = "I_static_AT_F"; -staticAAOccupants = "I_static_AA_F"; -NATOPilot = "I_Helipilot_F"; - -//NATO PvP Loadouts -NATOPlayerLoadouts = [ - //Team Leader - ["rhs_gref_teamLeader"] call A3A_fnc_getLoadout, - //Medic - ["rhs_gref_medic"] call A3A_fnc_getLoadout, - //Autorifleman - ["rhs_gref_breacher"] call A3A_fnc_getLoadout, - //Marksman - ["rhs_gref_sniper"] call A3A_fnc_getLoadout, - //Anti-tank Scout - ["rhs_gref_demolition"] call A3A_fnc_getLoadout, - //Anti-tank Scout - ["rhs_gref_demolition"] call A3A_fnc_getLoadout -]; - -vehNATOPVP = ["I_MRAP_03_F","I_MRAP_03_hmg_F"];//This array contains the vehicles Nato-PvP players can spawn near their flag. - -vehNATOLightArmed = ["I_MRAP_03_hmg_F"]; -vehNATOLightUnarmed = ["I_MRAP_03_F"]; -vehNATOTrucks = ["I_Truck_02_covered_F","I_Truck_02_transport_F"]; -vehNATOCargoTrucks = []; -vehNATOAmmoTruck = "I_Truck_02_ammo_F"; -vehNATORepairTruck = "I_Truck_02_box_F"; -vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; -vehNATOAPC = ["I_APC_Wheeled_03_cannon_F"]; -vehNATOTank = "I_MBT_03_cannon_F"; -vehNATOAA = "I_LT_01_AA_F"; -vehNATOAttack = vehNATOAPC + [vehNATOTank]; -vehNATOBoat = "I_Boat_Armed_01_minigun_F"; -vehNATORBoat = "I_Boat_Transport_01_F"; -vehNATOBoats = [vehNATOBoat,vehNATORBoat]; -vehNATOPlane = "I_Plane_Fighter_03_dynamicLoadout_F"; -vehNATOPlaneAA = "I_Plane_Fighter_04_F"; -vehNATOTransportPlanes = []; -vehNATOPatrolHeli = "I_Heli_light_03_unarmed_F"; -vehNATOTransportHelis = ["I_Heli_Transport_02_F","I_Heli_light_03_unarmed_F"]; -vehNATOAttackHelis = ["I_Heli_light_03_dynamicLoadout_F"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -vehNATOUAV = "I_UAV_02_dynamicLoadout_F"; -vehNATOUAVSmall = "I_UAV_01_F"; -vehNATOMRLS = "I_Truck_02_MRL_F"; -vehNATOMRLSMags = "12Rnd_230mm_rockets";//[R Alpha 1-2:2 (Alberto),"rockets_230mm_GAT","rockets_230mm_GAT","Mode_1","R_230mm_HE","12Rnd_230mm_rockets",41: rocket_230mm_f.p3d,R Alpha 1-2:2 (Alberto)] -vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "I_Truck_02_fuel_F", "I_Truck_02_medical_F", vehNATORepairTruck,"I_APC_tracked_03_cannon_F"]; -vehNATOBike = "I_Quadbike_01_F"; -NATOFlag = "Flag_AltisColonial_F"; -NATOFlagTexture = "\A3\Data_F\Flags\Flag_AltisColonial_CO.paa"; -NATOAmmobox = "I_supplyCrate_F"; -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["I_Soldier_GL_F","I_soldier_F"];//"B_T_InfSentry";// -groupsNATOSniper = ["I_sniper_F","I_spotter_F"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["I_Soldier_TL_F","I_Soldier_AA_F","I_Soldier_AA_F","I_Soldier_AAA_F"]; -groupsNATOAT = ["I_soldier_TL_F","I_soldier_AT_F","I_soldier_AT_F","I_soldier_AAT_F"]; -groupsNATOmid = [["I_Soldier_TL_F","I_Soldier_GL_F","I_Soldier_AR_F","I_Soldier_LAT_F"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["I_soldier_SL_F",NATOGrunt,"I_soldier_LAT_F","I_Soldier_GL_F","I_Soldier_M_F","B_soldier_AR_F","I_soldier_A_F","I_medic_F"];//"B_T_InfSquad";// -NATOSpecOp = ["I_soldier_SL_F",NATOGrunt,"I_soldier_LAT_F","I_Soldier_GL_F","I_soldier_TL_F","B_soldier_AR_F","I_soldier_A_F","I_medic_F"];//(configfile >> "CfgGroups" >> "West" >> "BLU_CTRG_F" >> "Infantry" >> "CTRG_InfSquad"); -factionMaleOccupants = ""; -groupsNATOSquad = [NATOSquad,["B_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_support_Mort_F","I_support_AMort_F","I_medic_F"],["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_support_MG_F","I_support_AMG_F","I_medic_F"],["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_soldier_AA_F","I_soldier_AAA_F","I_medic_F"],["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_soldier_AT_F","I_soldier_AAT_F","I_medic_F"],["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_engineer_F","I_engineer_F","I_medic_F"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];///"B_engineer_F" - - -supportStaticNATOB = "I_HMG_01_support_F"; -ATStaticNATOB = "I_AT_01_weapon_F"; -MGStaticNATOB = "I_HMG_01_high_weapon_F"; -supportStaticNATOB2 = "I_HMG_01_support_high_F"; -AAStaticNATOB = "I_AA_01_weapon_F"; -MortStaticNATOB = "I_Mortar_01_weapon_F"; -supportStaticNATOB3 = "I_Mortar_01_support_F"; - -weaponsNato append ["launch_NLAW_F","arifle_Mk20_F","arifle_Mk20C_F","LMG_Mk200_F","arifle_Mk20_GL_F","srifle_EBR_F","arifle_SDAR_F","srifle_GM6_F"]; -ammunitionNATO append ["30Rnd_556x45_Stanag","200Rnd_65x39_cased_Box","20Rnd_556x45_UW_mag","20Rnd_762x51_Mag","5Rnd_127x108_Mag","1Rnd_HE_Grenade_shell","UGL_FlareWhite_F","UGL_FlareGreen_F","1Rnd_Smoke_Grenade_shell","3Rnd_HE_Grenade_shell","HandGrenade"];//possible ammo that spawn in NATO ammoboxes -flagNATOmrk = "flag_AltisColonial"; - -nameOccupants = "AAF"; -if (isServer) then {"NATO_carrier" setMarkerText "AAF Carrier"}; diff --git a/A3-Antistasi/Templates/InvadersRHSAFRF.sqf b/A3-Antistasi/Templates/RHS_Inv_AFRF_Arid.sqf similarity index 56% rename from A3-Antistasi/Templates/InvadersRHSAFRF.sqf rename to A3-Antistasi/Templates/RHS_Inv_AFRF_Arid.sqf index 36f44105de..b45102d1bf 100644 --- a/A3-Antistasi/Templates/InvadersRHSAFRF.sqf +++ b/A3-Antistasi/Templates/RHS_Inv_AFRF_Arid.sqf @@ -1,17 +1,27 @@ -CSATGrunt = "rhs_vmf_flora_rifleman"; -CSATOfficer = "rhs_vmf_flora_officer"; -CSATBodyG = "rhs_vmf_recon_efreitor"; -CSATCrew = "rhs_vmf_flora_armoredcrew"; -CSATMarksman = "rhs_vmf_flora_marksman"; -staticCrewInvaders = "rhs_vmf_flora_rifleman_lite"; -CSATPilot = "rhs_pilot_tan"; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "AFRF"; -CSATMortar = "rhs_2b14_82mm_vmf"; -CSATMG = "rhs_KORD_high_VMF"; -staticATInvaders = "rhs_Kornet_9M133_2_vmf"; -staticAAInvaders = "RHS_ZU23_MSV"; +//SF Faction +factionMaleInvaders = "rhs_faction_vmf"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "rhs_faction_msv"}; -//CSAT PvP Loadouts +//Flag Images +CSATFlag = "rhs_Flag_Russia_F"; +CSATFlagTexture = "rhsafrf\addons\rhs_main\data\flag_rus_co.paa"; +flagCSATmrk = "rhs_flag_vmf"; +if (isServer) then {"CSAT_carrier" setMarkerText "Russian Carrier"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts CSATPlayerLoadouts = [ //Team Leader ["rhs_afrf_teamLeader"] call A3A_fnc_getLoadout, @@ -23,69 +33,138 @@ CSATPlayerLoadouts = [ ["rhs_afrf_marksman"] call A3A_fnc_getLoadout, //Anti-tank Scout ["rhs_afrf_AT"] call A3A_fnc_getLoadout, - //Anti-tank Scout + //AT2 ["rhs_afrf_AT2"] call A3A_fnc_getLoadout ]; -vehCSATPVP = ["rhs_tigr_vdv","rhs_uaz_vdv","rhsgref_ins_g_uaz_dshkm_chdkz"];//This array contains the vehicles CSAT-PvP players can spawn near their flag. +//PVP Player Vehicles +vehCSATPVP = ["rhs_tigr_vdv","rhs_uaz_vdv","rhsgref_ins_g_uaz_dshkm_chdkz"]; +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "rhs_vmf_flora_rifleman"; +CSATOfficer = "rhs_vmf_flora_officer"; +CSATBodyG = "rhs_vmf_recon_efreitor"; +CSATCrew = "rhs_vmf_flora_armoredcrew"; +CSATMarksman = "rhs_vmf_flora_marksman"; +staticCrewInvaders = "rhs_vmf_flora_rifleman_lite"; +CSATPilot = "rhs_pilot_tan"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "rhs_msv_emr_rifleman"; + FIAMarksman = "rhs_msv_emr_marksman"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["rhs_vdv_efreitor","rhs_vdv_rifleman"]; +groupsCSATSniper = ["rhs_vdv_marksman_asval","rhs_vdv_rifleman_asval"]; +groupsCSATsmall = [groupsCSATSentry,["rhs_vdv_recon_rifleman_scout_akm","rhs_vdv_recon_rifleman_scout_akm"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["rhs_vdv_flora_junior_sergeant","rhs_vdv_flora_aa","rhs_vdv_flora_aa","rhs_vdv_flora_aa"]; +groupsCSATAT = ["rhs_vdv_flora_junior_sergeant","rhs_vdv_flora_at","rhs_vdv_flora_strelok_rpg_assist","rhs_vdv_flora_LAT"]; +groupsCSATmid = [["rhs_vdv_flora_efreitor","rhs_vdv_flora_rifleman","rhs_vdv_flora_rifleman","rhs_vdv_flora_medic"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_grenadier","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_at","rhs_vdv_mflora_strelok_rpg_assist","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_medic"]; +CSATSpecOp = ["rhs_vmf_recon_sergeant","rhs_vmf_recon_rifleman_scout","rhs_vmf_recon_efreitor","rhs_vmf_recon_arifleman","rhs_vmf_recon_machinegunner_assistant","rhs_vmf_flora_engineer","rhs_vmf_recon_rifleman_lat","rhs_vmf_recon_medic"]; +groupsCSATSquad = + [ + CSATSquad, + ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_marksman","rhs_vdv_mflora_machinegunner_assistant","rhs_vdv_mflora_LAT","rhs_vdv_mflora_medic"], + ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_marksman","rhs_vdv_mflora_machinegunner_assistant","rhs_vdv_mflora_aa","rhs_vdv_mflora_medic"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["rhs_msv_emr_grenadier",FIARifleman], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_grenadier"], + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_at"], + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_engineer"] + ]; + //Squads + FIASquad = ["rhs_msv_emr_officer","rhs_msv_emr_grenadier","rhs_msv_emr_machinegunner","rhs_msv_emr_rifleman","rhs_msv_emr_marksman","rhs_msv_emr_engineer","rhs_msv_emr_at","rhs_msv_emr_medic"]; + groupsFIASquad = [FIASquad]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; vehCSATLightArmed = ["rhsgref_BRDM2_vdv","rhsgref_BRDM2_HQ_vdv","rhsgref_BRDM2_ATGM_vdv","rhs_tigr_sts_vdv"]; vehCSATLightUnarmed = ["rhs_tigr_vdv","rhs_uaz_vdv","rhs_tigr_m_msv"]; vehCSATTrucks = ["rhs_kamaz5350_vdv","rhs_kamaz5350_open_vdv","RHS_Ural_Open_VDV_01","rhs_zil131_vdv","RHS_Ural_VDV_01"]; vehCSATAmmoTruck = "rhs_gaz66_ammo_vmf"; vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored vehCSATAPC = ["rhs_bmd1r","rhs_bmp1p_vdv","rhs_bmd1p","rhs_bmd2m","rhs_bmp1p_vdv","rhs_bmp2k_vdv","rhs_btr80a_vdv","rhsbmp3mera_msv","rhs_bmd1PK"]; vehCSATTank = "rhs_t90sab_tv"; vehCSATAA = "rhs_zsu234_aa"; vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats vehCSATBoat = "O_T_Boat_Armed_01_hmg_F"; vehCSATRBoat = "O_T_Boat_Transport_01_F"; vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"rhs_btr80a_vdv"]; +//Planes vehCSATPlane = "RHS_Su25SM_CAS_vvs"; vehCSATPlaneAA = "RHS_mig29s_vvs"; vehCSATTransportPlanes = []; +//Heli vehCSATPatrolHeli = "rhs_ka60_c"; vehCSATTransportHelis = ["RHS_Mi8AMT_vvsc","RHS_Mi8mt_vvsc","RHS_Mi8MTV3_vvsc",vehCSATPatrolHeli]; vehCSATAttackHelis = ["RHS_Mi24P_vvsc","RHS_Mi8AMTSh_vvsc","RHS_Ka52_vvs","rhs_mi28n_vvs"]; -vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; +//UAV vehCSATUAV = "rhs_pchela1t_vvsc"; vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery vehCSATMRLS = "rhs_2s3_tv"; vehCSATMRLSMags = "rhs_mag_HE_2a33"; +//Combined Arrays vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "rhs_gaz66_repair_vdv","RHS_Ural_Fuel_VDV_01"]; -vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; -CSATFlag = "rhs_Flag_Russia_F"; -CSATFlagTexture = "rhsafrf\addons\rhs_main\data\flag_rus_co.paa"; -CSATAmmoBox = "O_supplyCrate_F"; -//cfgCSATInf = (configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "Infantry"); -groupsCSATSentry = ["rhs_vdv_efreitor","rhs_vdv_rifleman"];///"O_T_InfSentry";/// -groupsCSATSniper = ["rhs_vdv_marksman_asval","rhs_vdv_rifleman_asval"]; -groupsCSATsmall = [groupsCSATSentry,["rhs_vdv_recon_rifleman_scout_akm","rhs_vdv_recon_rifleman_scout_akm"],groupsCSATSniper];///[groupsCSATSentry,"O_T_reconSentry","O_T_SniperTeam"];/// -groupsCSATAA = ["rhs_vdv_flora_junior_sergeant","rhs_vdv_flora_aa","rhs_vdv_flora_aa","rhs_vdv_flora_aa"]; -groupsCSATAT = ["rhs_vdv_flora_junior_sergeant","rhs_vdv_flora_at","rhs_vdv_flora_strelok_rpg_assist","rhs_vdv_flora_LAT"]; -groupsCSATmid = [["rhs_vdv_flora_efreitor","rhs_vdv_flora_rifleman","rhs_vdv_flora_rifleman","rhs_vdv_flora_medic"],groupsCSATAA,groupsCSATAT];///["O_T_InfTeam","O_T_InfTeam_AA","O_T_InfTeam_AT"];/// -CSATSquad = ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_grenadier","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_at","rhs_vdv_mflora_strelok_rpg_assist","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_medic"];///"O_T_InfSquad";/// -CSATSpecOp = ["rhs_vmf_recon_sergeant","rhs_vmf_recon_rifleman_scout","rhs_vmf_recon_efreitor","rhs_vmf_recon_arifleman","rhs_vmf_recon_machinegunner_assistant","rhs_vmf_flora_engineer","rhs_vmf_recon_rifleman_lat","rhs_vmf_recon_medic"];///(configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "SpecOps" >> "O_T_ViperTeam");/// -factionMaleInvaders = "rhs_faction_vmf"; -groupsCSATSquad = [CSATSquad,["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_marksman","rhs_vdv_mflora_machinegunner_assistant","rhs_vdv_mflora_LAT","rhs_vdv_mflora_medic"],["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_marksman","rhs_vdv_mflora_machinegunner_assistant","rhs_vdv_mflora_aa","rhs_vdv_mflora_medic"]];//[CSATSquad,"O_T_InfSquad_Weapons"];/// +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "rhs_tigr_sts_3camo_msv"; + vehFIATruck = "rhs_zil131_open_msv"; + vehFIACar = "rhs_uaz_open_MSV_01"; + }; -supportStaticCSATB = "RHS_Kord_Tripod_Bag"; -ATStaticCSATB = "RHS_Kornet_Gun_Bag"; +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "rhs_KORD_high_VMF"; +staticATInvaders = "rhs_Kornet_9M133_2_vmf"; +staticAAInvaders = "RHS_ZU23_MSV"; +CSATMortar = "rhs_2b14_82mm_vmf"; + +//Static Weapon Bags MGStaticCSATB = "RHS_Kord_Gun_Bag"; -supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; +ATStaticCSATB = "RHS_Kornet_Gun_Bag"; AAStaticCSATB = "O_AA_01_weapon_F"; MortStaticCSATB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticCSATB = "RHS_Kord_Tripod_Bag"; +//Tall Support +supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; +//Mortar Support supportStaticCSATB3 = "RHS_Podnos_Bipod_Bag"; - -weaponsCSAT append ["rhs_weap_ak103","rhs_weap_ak104_npz","rhs_weap_ak105_npz","rhs_weap_ak105","rhs_weap_akmn","rhs_weap_ak74_2","rhs_weap_ak74_gp25","rhs_weap_ak74m_2mag","rhs_weap_ak74m_gp25_1p29","rhs_weap_ak74n_gp25","rhs_weap_akm","rhs_weap_akm_gp25","rhs_weap_asval","rhs_weap_svdp","rhs_weap_svds","rhs_weap_t5000","rhs_weap_vss","rhs_weap_aks74u","rhs_weap_rpg26","rhs_weap_rpg7","rhs_weap_pb_6p9","rhs_weap_igla","rhs_weap_pya","rhs_weap_pkm","rhs_weap_pkp","rhs_weap_makarov_pm","rhs_weap_rpg7_pgo","rhs_weap_rshg2"]; -ammunitionCSAT append ["rhs_mag_nspn_yellow","rhs_mag_nspn_red","rhs_mag_nspn_green","rhs_mag_nspd"]; -smokeX = smokeX + ["rhs_mag_nspd","rhs_mag_rdg2_white","rhs_mag_rdg2_black","rhs_mag_zarya2","rhs_mag_rgo","rhs_mag_rgn","rhs_mag_plamyam","rhs_mag_fakels","rhs_mag_fakel"]; -NVGoggles = NVGoggles + ["rhs_1PN138"]; -//opticsAAF = opticsAAF + ["rhs_acc_1p29","rhs_acc_1p63","rhs_acc_rakursPM","rhs_acc_1p78","rhs_acc_1pn93_1","rhs_acc_1pn93_2","rhs_acc_dh520x56","rhs_acc_ekp1","rhs_acc_pgo7v","rhs_acc_pgo7v2","rhs_acc_pgo7v3","rhs_acc_pkas","rhs_acc_pso1m2","rhs_acc_pso1m21"]; -itemsAAF = itemsAAF + ["rhs_acc_2dpZenit","rhs_acc_2dpZenit_ris","rhs_acc_uuk","rhs_acc_dtk1l","rhs_acc_ak5","rhs_acc_dtk","rhs_acc_dtk1983","rhs_acc_dtk1","rhs_acc_dtk1p","rhs_acc_dtk2","rhs_acc_dtk3","rhs_acc_dtk4short","rhs_acc_dtk4screws","rhs_acc_dtk4long","rhs_75Rnd_762x39mm_tracer","rhs_acc_pbs1","rhs_acc_pbs4","rhs_acc_perst1ik","rhs_acc_perst1ik_ris","rhs_acc_perst3","rhs_acc_perst3_top","rhs_acc_perst3_2dp_h","rhs_acc_perst3_2dp_light_h","rhs_acc_pgs64","rhs_acc_pgs64_74u","rhs_acc_pgs64_74un","rhs_acc_grip_rk2","rhs_acc_grip_rk6","rhs_acc_tgpa","rhs_acc_tgpv","rhs_pdu4","rhs_tr8_periscope","rhs_tr8_periscope_pip"]; - -lampInvaders = "rhs_acc_2dpZenit"; -flagCSATmrk = "rhs_flag_vmf"; -nameInvaders = "AFRF"; -if (isServer) then {"CSAT_carrier" setMarkerText "Russian Carrier"}; diff --git a/A3-Antistasi/Templates/RHS_Inv_AFRF_Temp.sqf b/A3-Antistasi/Templates/RHS_Inv_AFRF_Temp.sqf new file mode 100644 index 0000000000..bd31b7db73 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Inv_AFRF_Temp.sqf @@ -0,0 +1,170 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "AFRF"; + +//SF Faction +factionMaleInvaders = "rhs_faction_vmf"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "rhs_faction_msv"}; + +//Flag Images +CSATFlag = "rhs_Flag_Russia_F"; +CSATFlagTexture = "rhsafrf\addons\rhs_main\data\flag_rus_co.paa"; +flagCSATmrk = "rhs_flag_vmf"; +if (isServer) then {"CSAT_carrier" setMarkerText "Russian Carrier"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +CSATPlayerLoadouts = [ + //Team Leader + ["rhs_afrf_teamLeader"] call A3A_fnc_getLoadout, + //Medic + ["rhs_afrf_medic"] call A3A_fnc_getLoadout, + //Autorifleman + ["rhs_afrf_machineGunner"] call A3A_fnc_getLoadout, + //Marksman + ["rhs_afrf_marksman"] call A3A_fnc_getLoadout, + //Anti-tank Scout + ["rhs_afrf_AT"] call A3A_fnc_getLoadout, + //AT2 + ["rhs_afrf_AT2"] call A3A_fnc_getLoadout +]; + +//PVP Player Vehicles +vehCSATPVP = ["rhs_tigr_vdv","rhs_uaz_vdv","rhsgref_ins_g_uaz_dshkm_chdkz"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "rhs_vmf_flora_rifleman"; +CSATOfficer = "rhs_vmf_flora_officer"; +CSATBodyG = "rhs_vmf_recon_efreitor"; +CSATCrew = "rhs_vmf_flora_armoredcrew"; +CSATMarksman = "rhs_vmf_flora_marksman"; +staticCrewInvaders = "rhs_vmf_flora_rifleman_lite"; +CSATPilot = "rhs_pilot_tan"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "rhs_msv_emr_rifleman"; + FIAMarksman = "rhs_msv_emr_marksman"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["rhs_vdv_efreitor","rhs_vdv_rifleman"]; +groupsCSATSniper = ["rhs_vdv_marksman_asval","rhs_vdv_rifleman_asval"]; +groupsCSATsmall = [groupsCSATSentry,["rhs_vdv_recon_rifleman_scout_akm","rhs_vdv_recon_rifleman_scout_akm"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["rhs_vdv_flora_junior_sergeant","rhs_vdv_flora_aa","rhs_vdv_flora_aa","rhs_vdv_flora_aa"]; +groupsCSATAT = ["rhs_vdv_flora_junior_sergeant","rhs_vdv_flora_at","rhs_vdv_flora_strelok_rpg_assist","rhs_vdv_flora_LAT"]; +groupsCSATmid = [["rhs_vdv_flora_efreitor","rhs_vdv_flora_rifleman","rhs_vdv_flora_rifleman","rhs_vdv_flora_medic"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_grenadier","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_at","rhs_vdv_mflora_strelok_rpg_assist","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_medic"]; +CSATSpecOp = ["rhs_vmf_recon_sergeant","rhs_vmf_recon_rifleman_scout","rhs_vmf_recon_efreitor","rhs_vmf_recon_arifleman","rhs_vmf_recon_machinegunner_assistant","rhs_vmf_flora_engineer","rhs_vmf_recon_rifleman_lat","rhs_vmf_recon_medic"]; +groupsCSATSquad = + [ + CSATSquad, + ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_marksman","rhs_vdv_mflora_machinegunner_assistant","rhs_vdv_mflora_LAT","rhs_vdv_mflora_medic"], + ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_marksman","rhs_vdv_mflora_machinegunner_assistant","rhs_vdv_mflora_aa","rhs_vdv_mflora_medic"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["rhs_msv_emr_grenadier",FIARifleman], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_grenadier"], + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_at"], + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_engineer"] + ]; + //Squads + FIASquad = ["rhs_msv_emr_officer","rhs_msv_emr_grenadier","rhs_msv_emr_machinegunner","rhs_msv_emr_rifleman","rhs_msv_emr_marksman","rhs_msv_emr_engineer","rhs_msv_emr_at","rhs_msv_emr_medic"]; + groupsFIASquad = [FIASquad]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATLightArmed = ["rhsgref_BRDM2_vdv","rhsgref_BRDM2_HQ_vdv","rhsgref_BRDM2_ATGM_vdv","rhs_tigr_sts_vdv"]; +vehCSATLightUnarmed = ["rhs_tigr_vdv","rhs_uaz_vdv","rhs_tigr_m_msv"]; +vehCSATTrucks = ["rhs_kamaz5350_vdv","rhs_kamaz5350_open_vdv","RHS_Ural_Open_VDV_01","rhs_zil131_vdv","RHS_Ural_VDV_01"]; +vehCSATAmmoTruck = "rhs_gaz66_ammo_vmf"; +vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored +vehCSATAPC = ["rhs_bmd1r","rhs_bmp1p_vdv","rhs_bmd1p","rhs_bmd2m","rhs_bmp1p_vdv","rhs_bmp2k_vdv","rhs_btr80a_vdv","rhsbmp3mera_msv","rhs_bmd1PK"]; +vehCSATTank = "rhs_t90sab_tv"; +vehCSATAA = "rhs_zsu234_aa"; +vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats +vehCSATBoat = "O_T_Boat_Armed_01_hmg_F"; +vehCSATRBoat = "O_T_Boat_Transport_01_F"; +vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"rhs_btr80a_vdv"]; +//Planes +vehCSATPlane = "RHS_Su25SM_CAS_vvs"; +vehCSATPlaneAA = "RHS_mig29s_vvs"; +vehCSATTransportPlanes = []; +//Heli +vehCSATPatrolHeli = "rhs_ka60_c"; +vehCSATTransportHelis = ["RHS_Mi8AMT_vvsc","RHS_Mi8mt_vvsc","RHS_Mi8MTV3_vvsc",vehCSATPatrolHeli]; +vehCSATAttackHelis = ["RHS_Mi24P_vvsc","RHS_Mi8AMTSh_vvsc","RHS_Ka52_vvs","rhs_mi28n_vvs"]; +//UAV +vehCSATUAV = "rhs_pchela1t_vvsc"; +vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery +vehCSATMRLS = "rhs_2s3_tv"; +vehCSATMRLSMags = "rhs_mag_HE_2a33"; +//Combined Arrays +vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "rhs_gaz66_repair_vdv","RHS_Ural_Fuel_VDV_01"]; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; + +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "rhs_tigr_sts_3camo_msv"; + vehFIATruck = "rhs_zil131_open_msv"; + vehFIACar = "rhs_uaz_open_MSV_01"; + }; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "rhs_KORD_high_VMF"; +staticATInvaders = "rhs_Kornet_9M133_2_vmf"; +staticAAInvaders = "RHS_ZU23_MSV"; +CSATMortar = "rhs_2b14_82mm_vmf"; + +//Static Weapon Bags +MGStaticCSATB = "RHS_Kord_Gun_Bag"; +ATStaticCSATB = "RHS_Kornet_Gun_Bag"; +AAStaticCSATB = "O_AA_01_weapon_F"; +MortStaticCSATB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticCSATB = "RHS_Kord_Tripod_Bag"; +//Tall Support +supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; +//Mortar Support +supportStaticCSATB3 = "RHS_Podnos_Bipod_Bag"; diff --git a/A3-Antistasi/Templates/RHS_Inv_AFRF_Trop.sqf b/A3-Antistasi/Templates/RHS_Inv_AFRF_Trop.sqf new file mode 100644 index 0000000000..bd31b7db73 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Inv_AFRF_Trop.sqf @@ -0,0 +1,170 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "AFRF"; + +//SF Faction +factionMaleInvaders = "rhs_faction_vmf"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "rhs_faction_msv"}; + +//Flag Images +CSATFlag = "rhs_Flag_Russia_F"; +CSATFlagTexture = "rhsafrf\addons\rhs_main\data\flag_rus_co.paa"; +flagCSATmrk = "rhs_flag_vmf"; +if (isServer) then {"CSAT_carrier" setMarkerText "Russian Carrier"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +CSATPlayerLoadouts = [ + //Team Leader + ["rhs_afrf_teamLeader"] call A3A_fnc_getLoadout, + //Medic + ["rhs_afrf_medic"] call A3A_fnc_getLoadout, + //Autorifleman + ["rhs_afrf_machineGunner"] call A3A_fnc_getLoadout, + //Marksman + ["rhs_afrf_marksman"] call A3A_fnc_getLoadout, + //Anti-tank Scout + ["rhs_afrf_AT"] call A3A_fnc_getLoadout, + //AT2 + ["rhs_afrf_AT2"] call A3A_fnc_getLoadout +]; + +//PVP Player Vehicles +vehCSATPVP = ["rhs_tigr_vdv","rhs_uaz_vdv","rhsgref_ins_g_uaz_dshkm_chdkz"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "rhs_vmf_flora_rifleman"; +CSATOfficer = "rhs_vmf_flora_officer"; +CSATBodyG = "rhs_vmf_recon_efreitor"; +CSATCrew = "rhs_vmf_flora_armoredcrew"; +CSATMarksman = "rhs_vmf_flora_marksman"; +staticCrewInvaders = "rhs_vmf_flora_rifleman_lite"; +CSATPilot = "rhs_pilot_tan"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "rhs_msv_emr_rifleman"; + FIAMarksman = "rhs_msv_emr_marksman"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["rhs_vdv_efreitor","rhs_vdv_rifleman"]; +groupsCSATSniper = ["rhs_vdv_marksman_asval","rhs_vdv_rifleman_asval"]; +groupsCSATsmall = [groupsCSATSentry,["rhs_vdv_recon_rifleman_scout_akm","rhs_vdv_recon_rifleman_scout_akm"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["rhs_vdv_flora_junior_sergeant","rhs_vdv_flora_aa","rhs_vdv_flora_aa","rhs_vdv_flora_aa"]; +groupsCSATAT = ["rhs_vdv_flora_junior_sergeant","rhs_vdv_flora_at","rhs_vdv_flora_strelok_rpg_assist","rhs_vdv_flora_LAT"]; +groupsCSATmid = [["rhs_vdv_flora_efreitor","rhs_vdv_flora_rifleman","rhs_vdv_flora_rifleman","rhs_vdv_flora_medic"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_grenadier","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_at","rhs_vdv_mflora_strelok_rpg_assist","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_medic"]; +CSATSpecOp = ["rhs_vmf_recon_sergeant","rhs_vmf_recon_rifleman_scout","rhs_vmf_recon_efreitor","rhs_vmf_recon_arifleman","rhs_vmf_recon_machinegunner_assistant","rhs_vmf_flora_engineer","rhs_vmf_recon_rifleman_lat","rhs_vmf_recon_medic"]; +groupsCSATSquad = + [ + CSATSquad, + ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_marksman","rhs_vdv_mflora_machinegunner_assistant","rhs_vdv_mflora_LAT","rhs_vdv_mflora_medic"], + ["rhs_vdv_mflora_sergeant","rhs_vdv_mflora_junior_sergeant","rhs_vdv_mflora_machinegunner","rhs_vdv_mflora_rifleman","rhs_vdv_mflora_marksman","rhs_vdv_mflora_machinegunner_assistant","rhs_vdv_mflora_aa","rhs_vdv_mflora_medic"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["rhs_msv_emr_grenadier",FIARifleman], + [FIAMarksman,FIARifleman] + ]; + //Fireteams + groupsFIAMid = + [ + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_grenadier"], + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_at"], + ["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_engineer"] + ]; + //Squads + FIASquad = ["rhs_msv_emr_officer","rhs_msv_emr_grenadier","rhs_msv_emr_machinegunner","rhs_msv_emr_rifleman","rhs_msv_emr_marksman","rhs_msv_emr_engineer","rhs_msv_emr_at","rhs_msv_emr_medic"]; + groupsFIASquad = [FIASquad]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATLightArmed = ["rhsgref_BRDM2_vdv","rhsgref_BRDM2_HQ_vdv","rhsgref_BRDM2_ATGM_vdv","rhs_tigr_sts_vdv"]; +vehCSATLightUnarmed = ["rhs_tigr_vdv","rhs_uaz_vdv","rhs_tigr_m_msv"]; +vehCSATTrucks = ["rhs_kamaz5350_vdv","rhs_kamaz5350_open_vdv","RHS_Ural_Open_VDV_01","rhs_zil131_vdv","RHS_Ural_VDV_01"]; +vehCSATAmmoTruck = "rhs_gaz66_ammo_vmf"; +vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored +vehCSATAPC = ["rhs_bmd1r","rhs_bmp1p_vdv","rhs_bmd1p","rhs_bmd2m","rhs_bmp1p_vdv","rhs_bmp2k_vdv","rhs_btr80a_vdv","rhsbmp3mera_msv","rhs_bmd1PK"]; +vehCSATTank = "rhs_t90sab_tv"; +vehCSATAA = "rhs_zsu234_aa"; +vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats +vehCSATBoat = "O_T_Boat_Armed_01_hmg_F"; +vehCSATRBoat = "O_T_Boat_Transport_01_F"; +vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"rhs_btr80a_vdv"]; +//Planes +vehCSATPlane = "RHS_Su25SM_CAS_vvs"; +vehCSATPlaneAA = "RHS_mig29s_vvs"; +vehCSATTransportPlanes = []; +//Heli +vehCSATPatrolHeli = "rhs_ka60_c"; +vehCSATTransportHelis = ["RHS_Mi8AMT_vvsc","RHS_Mi8mt_vvsc","RHS_Mi8MTV3_vvsc",vehCSATPatrolHeli]; +vehCSATAttackHelis = ["RHS_Mi24P_vvsc","RHS_Mi8AMTSh_vvsc","RHS_Ka52_vvs","rhs_mi28n_vvs"]; +//UAV +vehCSATUAV = "rhs_pchela1t_vvsc"; +vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery +vehCSATMRLS = "rhs_2s3_tv"; +vehCSATMRLSMags = "rhs_mag_HE_2a33"; +//Combined Arrays +vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "rhs_gaz66_repair_vdv","RHS_Ural_Fuel_VDV_01"]; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; + +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "rhs_tigr_sts_3camo_msv"; + vehFIATruck = "rhs_zil131_open_msv"; + vehFIACar = "rhs_uaz_open_MSV_01"; + }; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "rhs_KORD_high_VMF"; +staticATInvaders = "rhs_Kornet_9M133_2_vmf"; +staticAAInvaders = "RHS_ZU23_MSV"; +CSATMortar = "rhs_2b14_82mm_vmf"; + +//Static Weapon Bags +MGStaticCSATB = "RHS_Kord_Gun_Bag"; +ATStaticCSATB = "RHS_Kornet_Gun_Bag"; +AAStaticCSATB = "O_AA_01_weapon_F"; +MortStaticCSATB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticCSATB = "RHS_Kord_Tripod_Bag"; +//Tall Support +supportStaticCSATB2 = "RHS_Kornet_Tripod_Bag"; +//Mortar Support +supportStaticCSATB3 = "RHS_Podnos_Bipod_Bag"; diff --git a/A3-Antistasi/Templates/RHS_Occ_CDF_Arid.sqf b/A3-Antistasi/Templates/RHS_Occ_CDF_Arid.sqf new file mode 100644 index 0000000000..163c452348 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Occ_CDF_Arid.sqf @@ -0,0 +1,194 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "CDF"; + +//Police Faction +factionGEN = "rhsgref_faction_un"; +//SF Faction +factionMaleOccupants = ""; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "rhsgref_faction_nationalist"}; + +//Flag Images +NATOFlag = "Flag_AltisColonial_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_AltisColonial_CO.paa"; +flagNATOmrk = "rhs_flag_insurgents"; +if (isServer) then {"NATO_carrier" setMarkerText "CDF Carrier"}; + +//Loot Crate +NATOAmmobox = "I_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + "rhsgref_cdf_para_squadleader", + //Medic + "rhsgref_cdf_para_medic", + //Autorifleman + "rhsgref_cdf_para_autorifleman", + //Marksman + "rhsgref_cdf_para_marksman", + //Anti-tank Scout + "rhsgref_cdf_para_grenadier", + //AT2 + "rhsgref_cdf_para_grenadier" +]; + +//PVP Player Vehicles +vehNATOPVP = ["rhsgref_ins_g_uaz","rhsgref_ins_g_uaz_open","rhsgref_BRDM2UM_ins_g","rhsgref_ins_g_uaz_dshkm_chdkz"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "rhsgref_cdf_reg_rifleman"; +NATOOfficer = "rhsgref_cdf_reg_general"; +NATOOfficer2 = "rhsgref_cdf_ngd_officer"; +NATOBodyG = "rhsgref_cdf_ngd_rifleman_lite"; +NATOCrew = "rhsgref_cdf_ngd_crew"; +NATOUnarmed = "I_G_Survivor_F"; +NATOMarksman = "rhsgref_cdf_reg_marksman"; +staticCrewOccupants = "rhsgref_cdf_ngd_rifleman_lite"; +NATOPilot = "rhsgref_cdf_air_pilot"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "rhsgref_nat_pmil_rifleman_m92"; + FIAMarksman = "rhsgref_nat_pmil_hunter"; + }; + +//Police Units +policeOfficer = "rhsgref_cdf_un_squadleader"; +policeGrunt = "rhsgref_cdf_un_rifleman_lite"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["rhsgref_cdf_reg_grenadier",NATOGrunt]; +groupsNATOSniper = ["rhsgref_cdf_reg_marksman","rhsgref_cdf_para_marksman"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_specialist_aa"]; +groupsNATOAT = ["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_grenadier_rpg","rhsgref_cdf_reg_grenadier_rpg"]; +groupsNATOmid = [["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["rhsgref_cdf_reg_squadleader","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_rifleman_akm","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_medic"]; +NATOSpecOp = ["rhsgref_cdf_para_squadleader","rhsgref_cdf_para_grenadier_rpg","rhsgref_cdf_para_grenadier","rhsgref_cdf_para_autorifleman","rhsgref_cdf_para_marksman","rhsgref_cdf_para_engineer","rhsgref_cdf_para_specialist_aa","rhsgref_cdf_para_medic"]; +groupsNATOSquad = + [ + NATOSquad, + ["rhsgref_cdf_reg_squadleader","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_medic"], + ["rhsgref_cdf_reg_squadleader","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman_akm","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_ins_g_grenadier_rpg","rhsgref_ins_g_grenadier_rpg","rhsgref_cdf_reg_medic"], + ["rhsgref_cdf_reg_squadleader","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_ins_g_engineer","rhsgref_ins_g_saboteur","rhsgref_cdf_reg_medic"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_rifleman_m92"], + ["rhsgref_nat_pmil_scout","rhsgref_nat_pmil_rifleman_aksu"], + ["rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_scout"] + ]; + //Fireteams + groupsFIAMid = + [ + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier"], + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_hunter"], + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg"], + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_specialist_aa","rhsgref_nat_pmil_specialist_aa"] + ]; + //Squads + FIASquad = ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_medic"]; + groupsFIASquad = + [ + FIASquad, + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_saboteur","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_medic"] + ]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "I_Quadbike_01_F"; +vehNATOLightArmed = ["rhsgref_cdf_uaz_ags","rhsgref_cdf_reg_uaz_dshkm","rhsgref_cdf_reg_uaz_spg9","rhsgref_BRDM2_HQ"]; +vehNATOLightUnarmed = ["rhsgref_cdf_reg_uaz","rhsgref_cdf_reg_uaz_open","rhsgref_BRDM2UM"]; +vehNATOTrucks = ["rhsgref_cdf_gaz66","rhsgref_cdf_ural","rhsgref_cdf_ural_open","rhsgref_cdf_gaz66o","rhsgref_cdf_zil131","rhsgref_cdf_zil131_open"]; +vehNATOCargoTrucks = []; +vehNATOAmmoTruck = "rhsgref_cdf_gaz66_ammo"; +vehNATORepairTruck = "rhsgref_cdf_gaz66_repair"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["rhsgref_cdf_btr60","rhsgref_cdf_btr70","rhsgref_BRDM2","rhsgref_cdf_bmp2k","rhsgref_cdf_bmp2e","rhsgref_cdf_bmd2","rhsgref_cdf_bmd1k","rhsgref_cdf_bmp1"]; +vehNATOTank = "rhsgref_cdf_t72ba_tv"; +vehNATOAA = "rhsgref_cdf_zsu234"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "I_Boat_Armed_01_minigun_F"; +vehNATORBoat = "I_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes +vehNATOPlane = "rhs_l159_CDF"; +vehNATOPlaneAA = "rhsgref_cdf_mig29s"; +vehNATOTransportPlanes = []; +//Heli +vehNATOPatrolHeli = "rhsgref_cdf_reg_Mi8amt"; +vehNATOTransportHelis = ["rhsgref_cdf_reg_Mi8amt"]; +vehNATOAttackHelis = ["rhsgref_cdf_Mi24D","rhsgref_cdf_Mi35","rhsgref_cdf_reg_Mi17Sh","rhsgref_mi24g_CAS"]; +//UAV +vehNATOUAV = "I_UAV_02_dynamicLoadout_F"; +vehNATOUAVSmall = "I_UAV_01_F"; +//Artillery +vehNATOMRLS = "rhsgref_cdf_reg_BM21"; +vehNATOMRLSMags = "rhs_mag_9m28f_1"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "rhsgref_BRDM2_ATGM", vehNATORepairTruck]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "rhsgref_nat_uaz_dshkm"; + vehFIATruck = "rhsgref_nat_van"; + vehFIACar = "rhsgref_nat_uaz"; + }; + +//Police Vehicles +vehPoliceCar = "rhsgref_un_uaz"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "rhsgref_cdf_DSHKM"; +staticATOccupants = "rhsgref_cdf_SPG9M"; +staticAAOccupants = "rhsgref_cdf_Igla_AA_pod"; +NATOMortar = "rhsgref_cdf_reg_m252"; + +//Static Weapon Bags +MGStaticNATOB = "RHS_DShkM_Gun_Bag"; +ATStaticNATOB = "RHS_SPG9_Gun_Bag"; +AAStaticNATOB = "not_supported"; +MortStaticNATOB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticNATOB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticNATOB3 = "RHS_Podnos_Bipod_Bag"; diff --git a/A3-Antistasi/Templates/RHS_Occ_CDF_Wdl.sqf b/A3-Antistasi/Templates/RHS_Occ_CDF_Wdl.sqf new file mode 100644 index 0000000000..f20a9ecaf3 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Occ_CDF_Wdl.sqf @@ -0,0 +1,194 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "CDF"; + +//Police Faction +factionGEN = "rhsgref_faction_un"; +//SF Faction +factionMaleOccupants = ""; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "rhsgref_faction_nationalist"}; + +//Flag Images +NATOFlag = "Flag_AltisColonial_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_AltisColonial_CO.paa"; +flagNATOmrk = "rhs_flag_insurgents"; +if (isServer) then {"NATO_carrier" setMarkerText "CDF Carrier"}; + +//Loot Crate +NATOAmmobox = "I_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + "rhsgref_cdf_para_squadleader", + //Medic + "rhsgref_cdf_para_medic", + //Autorifleman + "rhsgref_cdf_para_autorifleman", + //Marksman + "rhsgref_cdf_para_marksman", + //Anti-tank Scout + "rhsgref_cdf_para_grenadier", + //AT2 + "rhsgref_cdf_para_grenadier" +]; + +//PVP Player Vehicles +vehNATOPVP = ["rhsgref_ins_g_uaz","rhsgref_ins_g_uaz_open","rhsgref_BRDM2UM_ins_g","rhsgref_ins_g_uaz_dshkm_chdkz"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "rhsgref_cdf_reg_rifleman"; +NATOOfficer = "rhsgref_cdf_reg_general"; +NATOOfficer2 = "rhsgref_cdf_ngd_commander"; +NATOBodyG = "rhsgref_cdf_ngd_rifleman_lite"; +NATOCrew = "rhsgref_cdf_ngd_crew"; +NATOUnarmed = "I_G_Survivor_F"; +NATOMarksman = "rhsgref_cdf_reg_marksman"; +staticCrewOccupants = "rhsgref_cdf_ngd_rifleman_lite"; +NATOPilot = "rhsgref_cdf_air_pilot"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "rhsgref_nat_pmil_rifleman_m92"; + FIAMarksman = "rhsgref_nat_pmil_hunter"; + }; + +//Police Units +policeOfficer = "rhsgref_cdf_un_squadleader"; +policeGrunt = "rhsgref_cdf_un_rifleman_lite"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["rhsgref_cdf_reg_grenadier",NATOGrunt]; +groupsNATOSniper = ["rhsgref_cdf_reg_marksman","rhsgref_cdf_para_marksman"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_specialist_aa"]; +groupsNATOAT = ["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_grenadier_rpg","rhsgref_cdf_reg_grenadier_rpg"]; +groupsNATOmid = [["rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["rhsgref_cdf_reg_squadleader","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_rifleman_akm","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_grenadier","rhsgref_cdf_reg_medic"]; +NATOSpecOp = ["rhsgref_cdf_para_squadleader","rhsgref_cdf_para_grenadier_rpg","rhsgref_cdf_para_grenadier","rhsgref_cdf_para_autorifleman","rhsgref_cdf_para_marksman","rhsgref_cdf_para_engineer","rhsgref_cdf_para_specialist_aa","rhsgref_cdf_para_medic"]; +groupsNATOSquad = + [ + NATOSquad, + ["rhsgref_cdf_reg_squadleader","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_specialist_aa","rhsgref_cdf_reg_medic"], + ["rhsgref_cdf_reg_squadleader","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman_akm","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_ins_g_grenadier_rpg","rhsgref_ins_g_grenadier_rpg","rhsgref_cdf_reg_medic"], + ["rhsgref_cdf_reg_squadleader","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_machinegunner","rhsgref_cdf_reg_rifleman","rhsgref_cdf_reg_rifleman_rpg75","rhsgref_ins_g_engineer","rhsgref_ins_g_saboteur","rhsgref_cdf_reg_medic"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_rifleman_m92"], + ["rhsgref_nat_pmil_scout","rhsgref_nat_pmil_rifleman_aksu"], + ["rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_scout"] + ]; + //Fireteams + groupsFIAMid = + [ + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier"], + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_hunter"], + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg"], + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_specialist_aa","rhsgref_nat_pmil_specialist_aa"] + ]; + //Squads + FIASquad = ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_medic"]; + groupsFIASquad = + [ + FIASquad, + ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_saboteur","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_medic"] + ]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "I_Quadbike_01_F"; +vehNATOLightArmed = ["rhsgref_cdf_uaz_ags","rhsgref_cdf_reg_uaz_dshkm","rhsgref_cdf_reg_uaz_spg9","rhsgref_BRDM2_HQ"]; +vehNATOLightUnarmed = ["rhsgref_cdf_reg_uaz","rhsgref_cdf_reg_uaz_open","rhsgref_BRDM2UM"]; +vehNATOTrucks = ["rhsgref_cdf_gaz66","rhsgref_cdf_ural","rhsgref_cdf_ural_open","rhsgref_cdf_gaz66o","rhsgref_cdf_zil131","rhsgref_cdf_zil131_open"]; +vehNATOCargoTrucks = []; +vehNATOAmmoTruck = "rhsgref_cdf_gaz66_ammo"; +vehNATORepairTruck = "rhsgref_cdf_gaz66_repair"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["rhsgref_cdf_btr60","rhsgref_cdf_btr70","rhsgref_BRDM2","rhsgref_cdf_bmp2k","rhsgref_cdf_bmp2e","rhsgref_cdf_bmd2","rhsgref_cdf_bmd1k","rhsgref_cdf_bmp1"]; +vehNATOTank = "rhsgref_cdf_t72ba_tv"; +vehNATOAA = "rhsgref_cdf_zsu234"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "I_Boat_Armed_01_minigun_F"; +vehNATORBoat = "I_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes +vehNATOPlane = "rhs_l159_CDF"; +vehNATOPlaneAA = "rhsgref_cdf_mig29s"; +vehNATOTransportPlanes = []; +//Heli +vehNATOPatrolHeli = "rhsgref_cdf_reg_Mi8amt"; +vehNATOTransportHelis = ["rhsgref_cdf_reg_Mi8amt"]; +vehNATOAttackHelis = ["rhsgref_cdf_Mi24D","rhsgref_cdf_Mi35","rhsgref_cdf_reg_Mi17Sh","rhsgref_mi24g_CAS"]; +//UAV +vehNATOUAV = "I_UAV_02_dynamicLoadout_F"; +vehNATOUAVSmall = "I_UAV_01_F"; +//Artillery +vehNATOMRLS = "rhsgref_cdf_reg_BM21"; +vehNATOMRLSMags = "rhs_mag_9m28f_1"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "rhsgref_BRDM2_ATGM", vehNATORepairTruck]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "rhsgref_nat_uaz_dshkm"; + vehFIATruck = "rhsgref_nat_van"; + vehFIACar = "rhsgref_nat_uaz"; + }; + +//Police Vehicles +vehPoliceCar = "rhsgref_un_uaz"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "rhsgref_cdf_DSHKM"; +staticATOccupants = "rhsgref_cdf_SPG9M"; +staticAAOccupants = "rhsgref_cdf_Igla_AA_pod"; +NATOMortar = "rhsgref_cdf_reg_m252"; + +//Static Weapon Bags +MGStaticNATOB = "RHS_DShkM_Gun_Bag"; +ATStaticNATOB = "RHS_SPG9_Gun_Bag"; +AAStaticNATOB = "not_supported"; +MortStaticNATOB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticNATOB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticNATOB3 = "RHS_Podnos_Bipod_Bag"; diff --git a/A3-Antistasi/Templates/OccupantsRHSUSAF.sqf b/A3-Antistasi/Templates/RHS_Occ_USAF_Arid.sqf similarity index 51% rename from A3-Antistasi/Templates/OccupantsRHSUSAF.sqf rename to A3-Antistasi/Templates/RHS_Occ_USAF_Arid.sqf index 50174a6084..f631bb1810 100644 --- a/A3-Antistasi/Templates/OccupantsRHSUSAF.sqf +++ b/A3-Antistasi/Templates/RHS_Occ_USAF_Arid.sqf @@ -1,19 +1,29 @@ -NATOGrunt = "rhsusf_usmc_marpat_wd_rifleman_light"; -NATOOfficer = "rhsusf_usmc_marpat_wd_officer"; -NATOOfficer2 = "rhsgref_cdf_b_reg_general"; -NATOBodyG = "rhsusf_socom_marsoc_teamleader"; -NATOCrew = "rhsusf_usmc_marpat_wd_crewman"; -NATOUnarmed = "B_G_Survivor_F"; -NATOMarksman = "rhsusf_usmc_marpat_wd_marksman"; -staticCrewOccupants = "rhsusf_usmc_marpat_wd_rifleman"; -NATOPilot = "rhsusf_airforce_jetpilot"; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "USAF"; -NATOMG = "RHS_M2StaticMG_USMC_WD"; -NATOMortar = "RHS_M252_USMC_WD"; -staticATOccupants = "RHS_TOW_TriPod_USMC_WD"; -staticAAOccupants = "RHS_Stinger_AA_pod_D"; +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "rhs_faction_socom"; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "rhsgref_faction_hidf"}; + +//Flag Images +NATOFlag = "Flag_NATO_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_NATO_CO.paa"; +flagNATOmrk = "flag_USA"; +if (isServer) then {"NATO_carrier" setMarkerText "USMC Carrier"}; -//NATO PvP Loadouts +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts NATOPlayerLoadouts = [ //Team Leader ["rhs_usaf_teamLeader"] call A3A_fnc_getLoadout, @@ -25,69 +35,153 @@ NATOPlayerLoadouts = [ ["rhs_usaf_marksman"] call A3A_fnc_getLoadout, //Anti-tank Scout ["rhs_usaf_AT"] call A3A_fnc_getLoadout, - //Anti-tank Scout + //AT2 ["rhs_usaf_rifleman"] call A3A_fnc_getLoadout ]; -vehNATOPVP = ["rhsusf_m1025_w_s","rhsusf_m998_w_s_2dr","rhsusf_m998_w_s_2dr_fulltop","rhsusf_m998_w_s_4dr","rhsusf_m1025_w_s_m2"];//This array contains the vehicles Nato-PvP players can spawn near their flag. +//PVP Player Vehicles +vehNATOPVP = ["rhsusf_m1025_w_s","rhsusf_m998_w_s_2dr","rhsusf_m998_w_s_2dr_fulltop","rhsusf_m998_w_s_4dr","rhsusf_m1025_w_s_m2","rhsusf_mrzr4_d"]; -vehNATOLightArmed = ["rhsusf_m1025_w_s_m2","rhsusf_CGRCAT1A2_M2_usmc_wd","rhsusf_CGRAT1A2_Mk19_usmc_wd","rhsusf_M1117_W","rhsusf_M1220_M2_usarmy_wd","rhsusf_M1237_M2_usarmy_wd","rhsusf_M1238A1_M2_socom_d","rhsusf_m1045_w_s"]; +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "rhsusf_usmc_marpat_wd_rifleman_light"; +NATOOfficer = "rhsusf_usmc_marpat_wd_officer"; +NATOOfficer2 = "rhsusf_army_ucp_rifleman_101st"; +NATOBodyG = "rhsusf_army_ucp_rifleman_1stcav"; +NATOCrew = "rhsusf_usmc_marpat_wd_crewman"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "rhsusf_usmc_marpat_wd_marksman"; +staticCrewOccupants = "rhsusf_usmc_marpat_wd_rifleman"; +NATOPilot = "rhsusf_airforce_jetpilot"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "rhsgref_hidf_rifleman"; + FIAMarksman = "rhsgref_hidf_marksman"; + }; + +//Police Units +policeOfficer = "rhsusf_army_ucp_rifleman_m590"; +policeGrunt = "rhsusf_army_ucp_rifleman_82nd"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["rhsusf_usmc_marpat_wd_grenadier",NATOGrunt]; +groupsNATOSniper = ["rhsusf_socom_marsoc_sniper","rhsusf_socom_marsoc_spotter"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_stinger"]; +groupsNATOAT = ["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_javelin"]; +groupsNATOmid = [["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_riflemanat"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["rhsusf_usmc_marpat_wd_squadleader","rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_marksman","rhsusf_navy_marpat_wd_medic"]; +NATOSpecOp = ["rhsusf_socom_marsoc_teamleader","rhsusf_socom_marsoc_teamchief","rhsusf_socom_marsoc_cso_mk17","rhsusf_socom_marsoc_marksman","rhsusf_socom_marsoc_cso_breacher","rhsusf_socom_marsoc_cso_eod","rhsusf_socom_marsoc_cso_grenadier","rhsusf_socom_marsoc_sarc"]; +groupsNATOSquad = + [ + NATOSquad, + ["rhsusf_usmc_marpat_d_squadleader","rhsusf_usmc_marpat_d_machinegunner","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_javelin","rhsusf_usmc_marpat_d_javelin_assistant","rhsusf_navy_sarc_d"], + ["rhsusf_usmc_marpat_d_squadleader","rhsusf_usmc_marpat_d_machinegunner","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_stinger","rhsusf_usmc_marpat_d_rifleman_light","rhsusf_navy_sarc_d"], + ["rhsusf_usmc_marpat_wd_squadleader","rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_d_explosives","rhsusf_navy_marpat_wd_medic"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["rhsgref_hidf_grenadier","rhsgref_hidf_rifleman"], + ["rhsgref_hidf_marksman","rhsgref_hidf_rifleman"] + ]; + //Fireteams + groupsFIAMid = + [ + ["rhsgref_hidf_teamleader","rhsgref_hidf_machinegunner","rhsgref_hidf_machinegunner_assist","rhsgref_hidf_grenadier"], + ["rhsgref_hidf_teamleader","rhsgref_hidf_rifleman_m72","rhsgref_hidf_rifleman_m72","rhsgref_hidf_grenadier"] + ]; + //Squads + FIASquad = ["rhsgref_hidf_squadleader","rhsgref_hidf_machinegunner","rhsgref_hidf_machinegunner_assist","rhsgref_hidf_rifleman","rhsgref_hidf_rifleman_m72","rhsgref_hidf_rifleman_m72","rhsgref_hidf_grenadier","rhsgref_hidf_medic"]; + groupsFIASquad = [FIASquad]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; +vehNATOLightArmed = ["rhsusf_m1025_w_s_m2","rhsusf_CGRCAT1A2_M2_usmc_wd","rhsusf_CGRCAT1A2_Mk19_usmc_wd","rhsusf_M1117_W","rhsusf_M1220_M2_usarmy_wd","rhsusf_M1237_M2_usarmy_wd","rhsusf_M1238A1_M2_socom_d","rhsusf_m1045_w_s"]; vehNATOLightUnarmed = ["rhsusf_m1025_w_s","rhsusf_m998_w_s_2dr","rhsusf_m998_w_s_2dr_fulltop","rhsusf_m998_w_s_4dr","rhsusf_CGRCAT1A2_usmc_wd","rhsusf_M1232_usarmy_wd"]; vehNATOTrucks = ["rhsusf_M1078A1P2_wd_open_fmtv_usarmy","rhsusf_M1078A1P2_B_wd_fmtv_usarmy","rhsusf_M1078A1P2_B_wd_open_fmtv_usarmy","rhsusf_M1083A1P2_wd_fmtv_usarmy","rhsusf_M1083A1P2_B_M2_wd_fmtv_usarmy"]; vehNATOCargoTrucks = []; vehNATOAmmoTruck = "rhsusf_M977A4_AMMO_BKIT_usarmy_wd"; vehNATORepairTruck = "rhsusf_M977A4_REPAIR_BKIT_usarmy_wd"; vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; -vehNATOAPC = ["rhsusf_stryker_m1126_m2_wd","RHS_M2A3_BUSKIII_wd","RHS_M2A3_BUSKI_wd","rhsusf_M1237_MK19_usarmy_wd","RHS_M2A2_BUSKI_WD","rhsusf_m113_usarmy","rhsusf_m113_usarmy_MK19","rhsusf_m113_usarmy"];//"B_T_APC_Tracked_01_CRV_F" has no cargo seats +//Armored +vehNATOAPC = ["rhsusf_stryker_m1126_m2_wd","RHS_M2A3_BUSKIII_wd","RHS_M2A3_BUSKI_wd","rhsusf_M1237_MK19_usarmy_wd","RHS_M2A2_BUSKI_WD","rhsusf_m113_usarmy","rhsusf_m113_usarmy_MK19","rhsusf_m113_usarmy"]; vehNATOTank = "rhsusf_m1a1fep_wd"; vehNATOAA = "RHS_M6"; vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats vehNATOBoat = "rhsusf_mkvsoc"; vehNATORBoat = "B_T_Boat_Transport_01_F"; vehNATOBoats = [vehNATOBoat,vehNATORBoat,"rhsusf_m113_usarmy_MK19","rhsusf_m113_usarmy"]; +//Planes vehNATOPlane = "RHS_A10_AT"; vehNATOPlaneAA = "rhsusf_f22"; vehNATOTransportPlanes = ["RHS_C130J"]; +//Heli vehNATOPatrolHeli = "RHS_MELB_MH6M"; vehNATOTransportHelis = ["RHS_UH60M_d","RHS_CH_47F","rhsusf_CH53E_USMC_GAU21",vehNATOPatrolHeli]; vehNATOAttackHelis = ["RHS_MELB_AH6M_L","RHS_AH64D_wd","RHS_UH1Y","RHS_AH1Z_wd"]; -vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -vehNATOUAV = "B_UAV_02_F";//ok +//UAV +vehNATOUAV = "B_UAV_02_F"; vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery vehNATOMRLS = "rhsusf_m109_usarmy"; -vehNATOMRLSMags = "rhs_mag_155mm_m795_28";//["Sh_155mm_AMOS","rhs_mag_155mm_m795_28",,B Alpha 1-1:3 (Alberto)] +vehNATOMRLSMags = "rhs_mag_155mm_m795_28"; +//Combined Arrays vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "rhsusf_M978A4_BKIT_usarmy_wd","rhsusf_m113_usarmy_medical", vehNATORepairTruck]; -vehNATOBike = "B_T_Quadbike_01_F"; -NATOFlag = "Flag_NATO_F"; -NATOFlagTexture = "\A3\Data_F\Flags\Flag_nato_CO.paa"; -NATOAmmobox = "B_supplyCrate_F"; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; -//cfgNATOInf = (configfile >> "CfgGroups" >> "West" >> "BLU_T_F" >> "Infantry");/// -groupsNATOSentry = ["rhsusf_usmc_marpat_wd_grenadier",NATOGrunt];//"B_T_InfSentry";// -groupsNATOSniper = ["rhsusf_socom_marsoc_sniper","rhsusf_socom_marsoc_spotter"]; -groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; //[groupsNATOSentry,"B_T_SniperTeam","B_T_ReconSentry"];/// -groupsNATOAA = ["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_stinger"]; -groupsNATOAT = ["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_javelin"]; -groupsNATOmid = [["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_riflemanat"],groupsNATOAA,groupsNATOAT];//["B_T_InfTeam","B_T_InfTeam_AA","B_T_InfTeam_AT"];/// -NATOSquad = ["rhsusf_usmc_marpat_wd_squadleader","rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_navy_marpat_wd_medic","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_marksman"];//"B_T_InfSquad";// -NATOSpecOp = ["rhsusf_socom_marsoc_teamleader","rhsusf_socom_marsoc_teamchief","rhsusf_socom_marsoc_cso_mk17","rhsusf_socom_marsoc_marksman","rhsusf_socom_marsoc_cso_breacher","rhsusf_socom_marsoc_cso_eod","rhsusf_socom_marsoc_cso_grenadier","rhsusf_socom_marsoc_sarc"];//(configfile >> "CfgGroups" >> "West" >> "BLU_CTRG_F" >> "Infantry" >> "CTRG_InfSquad"); -factionMaleOccupants = "rhs_faction_socom"; -groupsNATOSquad = [NATOSquad,["rhsusf_usmc_marpat_d_squadleader","rhsusf_usmc_marpat_d_machinegunner","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_javelin","rhsusf_usmc_marpat_d_javelin_assistant","rhsusf_navy_sarc_d"],["rhsusf_usmc_marpat_d_squadleader","rhsusf_usmc_marpat_d_machinegunner","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_stinger","rhsusf_usmc_marpat_d_rifleman_light","rhsusf_navy_sarc_d_fast"],["rhsusf_usmc_marpat_wd_squadleader","rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_navy_marpat_wd_medic","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_d_explosives"]]; //[NATOSquad,"B_T_InfSquad_Weapons"];/// +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "rhsgref_hidf_m1025_m2"; + vehFIATruck = "rhsgref_cdf_b_ural_open"; + vehFIACar = "rhsgref_hidf_m998_4dr"; + }; -supportStaticNATOB = "rhs_TOW_Tripod_Bag"; -ATStaticNATOB = "rhs_Tow_Gun_Bag"; +//Police Vehicles +vehPoliceCar = "rhsusf_mrzr4_d"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "RHS_M2StaticMG_USMC_WD"; +staticATOccupants = "RHS_TOW_TriPod_USMC_WD"; +staticAAOccupants = "RHS_Stinger_AA_pod_D"; +NATOMortar = "RHS_M252_USMC_WD"; + +//Static Weapon Bags MGStaticNATOB = "RHS_M2_Gun_Bag"; -supportStaticNATOB2 = "RHS_M2_Tripod_Bag"; +ATStaticNATOB = "rhs_Tow_Gun_Bag"; AAStaticNATOB = "B_AA_01_weapon_F"; MortStaticNATOB = "rhs_M252_Gun_Bag"; +//Short Support +supportStaticNATOB = "rhs_TOW_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "RHS_M2_Tripod_Bag"; +//Mortar Support supportStaticNATOB3 = "rhs_M252_Bipod_Bag"; - -weaponsNato append ["rhs_weap_hk416d10","rhs_weap_m16a4","rhs_weap_XM2010","rhs_weap_m24sws","rhs_weap_m27iar","rhs_weap_m4","rhs_weap_m40a5","rhs_weap_m4a1_carryhandle","rhs_weap_m4a1_blockII","rhs_weap_m4a1","rhs_weap_M590_8RD","rhs_weap_mk18","rhsusf_weap_MP7A2","hgun_Pistol_heavy_01_F","rhs_weap_fgm148","rhs_weap_fim92","rhsusf_weap_glock17g4","rhs_weap_M107","rhs_weap_M136","rhs_weap_M136_hedp","rhs_weap_M136_hp","rhs_weap_m14ebrri","rhs_weap_m72a7","rhsusf_weap_m9","rhs_weap_sr25","lerca_1200_black","lerca_1200_tan","Leupold_Mk4","rhs_weap_m240B","rhs_weap_m249","rhs_weap_smaw","rhs_weap_m39","rhs_weap_mk17_CQC","rhs_weap_mk17_LB","rhs_weap_mk17_STD","rhs_weap_SCARH_USA_STD","rhs_weap_maaws","rhs_weap_mk17_CQC","rhs_weap_m32"];//possible weapons that spawn in NATO ammoboxes -smokeX = smokeX + ["rhs_mag_an_m8hc","rhs_mag_m18_purple","rhs_mag_m18_red","rhs_mag_m18_green","rhs_mag_m18_yellow"]; -NVGoggles = NVGoggles + ["rhsusf_ANPVS_14"/*,"rhsusf_ANPVS_15"*/]; -itemsAAF = itemsAAF + ["rhsusf_acc_grip2","rhsusf_acc_grip2_tan","rhsusf_acc_anpeq15side_bk","rhsusf_acc_anpeq15_bk_top","rhsusf_acc_anpeq15","rhsusf_acc_anpeq15_light","rhsusf_acc_anpeq15_bk","rhsusf_acc_anpeq15_bk_light","rhsusf_acc_anpeq15A","rhsusf_acc_ARDEC_M240","rhsusf_acc_nt4_black","rhsusf_acc_nt4_tan","rhsusf_acc_SFMB556"]; -flagNATOmrk = "flag_USA";//ok - -lampOccupants = "acc_flashlight"; -nameOccupants = "USAF"; -if (isServer) then {"NATO_carrier" setMarkerText "USMC Carrier"}; diff --git a/A3-Antistasi/Templates/RHS_Occ_USAF_Wdl.sqf b/A3-Antistasi/Templates/RHS_Occ_USAF_Wdl.sqf new file mode 100644 index 0000000000..f631bb1810 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Occ_USAF_Wdl.sqf @@ -0,0 +1,187 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "USAF"; + +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "rhs_faction_socom"; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "rhsgref_faction_hidf"}; + +//Flag Images +NATOFlag = "Flag_NATO_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_NATO_CO.paa"; +flagNATOmrk = "flag_USA"; +if (isServer) then {"NATO_carrier" setMarkerText "USMC Carrier"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + ["rhs_usaf_teamLeader"] call A3A_fnc_getLoadout, + //Medic + ["rhs_usaf_medic"] call A3A_fnc_getLoadout, + //Autorifleman + ["rhs_usaf_machineGunner"] call A3A_fnc_getLoadout, + //Marksman + ["rhs_usaf_marksman"] call A3A_fnc_getLoadout, + //Anti-tank Scout + ["rhs_usaf_AT"] call A3A_fnc_getLoadout, + //AT2 + ["rhs_usaf_rifleman"] call A3A_fnc_getLoadout +]; + +//PVP Player Vehicles +vehNATOPVP = ["rhsusf_m1025_w_s","rhsusf_m998_w_s_2dr","rhsusf_m998_w_s_2dr_fulltop","rhsusf_m998_w_s_4dr","rhsusf_m1025_w_s_m2","rhsusf_mrzr4_d"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "rhsusf_usmc_marpat_wd_rifleman_light"; +NATOOfficer = "rhsusf_usmc_marpat_wd_officer"; +NATOOfficer2 = "rhsusf_army_ucp_rifleman_101st"; +NATOBodyG = "rhsusf_army_ucp_rifleman_1stcav"; +NATOCrew = "rhsusf_usmc_marpat_wd_crewman"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "rhsusf_usmc_marpat_wd_marksman"; +staticCrewOccupants = "rhsusf_usmc_marpat_wd_rifleman"; +NATOPilot = "rhsusf_airforce_jetpilot"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "rhsgref_hidf_rifleman"; + FIAMarksman = "rhsgref_hidf_marksman"; + }; + +//Police Units +policeOfficer = "rhsusf_army_ucp_rifleman_m590"; +policeGrunt = "rhsusf_army_ucp_rifleman_82nd"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["rhsusf_usmc_marpat_wd_grenadier",NATOGrunt]; +groupsNATOSniper = ["rhsusf_socom_marsoc_sniper","rhsusf_socom_marsoc_spotter"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_stinger"]; +groupsNATOAT = ["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_javelin"]; +groupsNATOmid = [["rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_riflemanat"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["rhsusf_usmc_marpat_wd_squadleader","rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_marksman","rhsusf_navy_marpat_wd_medic"]; +NATOSpecOp = ["rhsusf_socom_marsoc_teamleader","rhsusf_socom_marsoc_teamchief","rhsusf_socom_marsoc_cso_mk17","rhsusf_socom_marsoc_marksman","rhsusf_socom_marsoc_cso_breacher","rhsusf_socom_marsoc_cso_eod","rhsusf_socom_marsoc_cso_grenadier","rhsusf_socom_marsoc_sarc"]; +groupsNATOSquad = + [ + NATOSquad, + ["rhsusf_usmc_marpat_d_squadleader","rhsusf_usmc_marpat_d_machinegunner","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_javelin","rhsusf_usmc_marpat_d_javelin_assistant","rhsusf_navy_sarc_d"], + ["rhsusf_usmc_marpat_d_squadleader","rhsusf_usmc_marpat_d_machinegunner","rhsusf_usmc_marpat_d_riflemanat","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_grenadier","rhsusf_usmc_marpat_d_stinger","rhsusf_usmc_marpat_d_rifleman_light","rhsusf_navy_sarc_d"], + ["rhsusf_usmc_marpat_wd_squadleader","rhsusf_usmc_marpat_wd_teamleader","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_wd_autorifleman_m249","rhsusf_usmc_marpat_wd_rifleman_m4","rhsusf_usmc_marpat_d_explosives","rhsusf_navy_marpat_wd_medic"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["rhsgref_hidf_grenadier","rhsgref_hidf_rifleman"], + ["rhsgref_hidf_marksman","rhsgref_hidf_rifleman"] + ]; + //Fireteams + groupsFIAMid = + [ + ["rhsgref_hidf_teamleader","rhsgref_hidf_machinegunner","rhsgref_hidf_machinegunner_assist","rhsgref_hidf_grenadier"], + ["rhsgref_hidf_teamleader","rhsgref_hidf_rifleman_m72","rhsgref_hidf_rifleman_m72","rhsgref_hidf_grenadier"] + ]; + //Squads + FIASquad = ["rhsgref_hidf_squadleader","rhsgref_hidf_machinegunner","rhsgref_hidf_machinegunner_assist","rhsgref_hidf_rifleman","rhsgref_hidf_rifleman_m72","rhsgref_hidf_rifleman_m72","rhsgref_hidf_grenadier","rhsgref_hidf_medic"]; + groupsFIASquad = [FIASquad]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; +vehNATOLightArmed = ["rhsusf_m1025_w_s_m2","rhsusf_CGRCAT1A2_M2_usmc_wd","rhsusf_CGRCAT1A2_Mk19_usmc_wd","rhsusf_M1117_W","rhsusf_M1220_M2_usarmy_wd","rhsusf_M1237_M2_usarmy_wd","rhsusf_M1238A1_M2_socom_d","rhsusf_m1045_w_s"]; +vehNATOLightUnarmed = ["rhsusf_m1025_w_s","rhsusf_m998_w_s_2dr","rhsusf_m998_w_s_2dr_fulltop","rhsusf_m998_w_s_4dr","rhsusf_CGRCAT1A2_usmc_wd","rhsusf_M1232_usarmy_wd"]; +vehNATOTrucks = ["rhsusf_M1078A1P2_wd_open_fmtv_usarmy","rhsusf_M1078A1P2_B_wd_fmtv_usarmy","rhsusf_M1078A1P2_B_wd_open_fmtv_usarmy","rhsusf_M1083A1P2_wd_fmtv_usarmy","rhsusf_M1083A1P2_B_M2_wd_fmtv_usarmy"]; +vehNATOCargoTrucks = []; +vehNATOAmmoTruck = "rhsusf_M977A4_AMMO_BKIT_usarmy_wd"; +vehNATORepairTruck = "rhsusf_M977A4_REPAIR_BKIT_usarmy_wd"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["rhsusf_stryker_m1126_m2_wd","RHS_M2A3_BUSKIII_wd","RHS_M2A3_BUSKI_wd","rhsusf_M1237_MK19_usarmy_wd","RHS_M2A2_BUSKI_WD","rhsusf_m113_usarmy","rhsusf_m113_usarmy_MK19","rhsusf_m113_usarmy"]; +vehNATOTank = "rhsusf_m1a1fep_wd"; +vehNATOAA = "RHS_M6"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "rhsusf_mkvsoc"; +vehNATORBoat = "B_T_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat,"rhsusf_m113_usarmy_MK19","rhsusf_m113_usarmy"]; +//Planes +vehNATOPlane = "RHS_A10_AT"; +vehNATOPlaneAA = "rhsusf_f22"; +vehNATOTransportPlanes = ["RHS_C130J"]; +//Heli +vehNATOPatrolHeli = "RHS_MELB_MH6M"; +vehNATOTransportHelis = ["RHS_UH60M_d","RHS_CH_47F","rhsusf_CH53E_USMC_GAU21",vehNATOPatrolHeli]; +vehNATOAttackHelis = ["RHS_MELB_AH6M_L","RHS_AH64D_wd","RHS_UH1Y","RHS_AH1Z_wd"]; +//UAV +vehNATOUAV = "B_UAV_02_F"; +vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery +vehNATOMRLS = "rhsusf_m109_usarmy"; +vehNATOMRLSMags = "rhs_mag_155mm_m795_28"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "rhsusf_M978A4_BKIT_usarmy_wd","rhsusf_m113_usarmy_medical", vehNATORepairTruck]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "rhsgref_hidf_m1025_m2"; + vehFIATruck = "rhsgref_cdf_b_ural_open"; + vehFIACar = "rhsgref_hidf_m998_4dr"; + }; + +//Police Vehicles +vehPoliceCar = "rhsusf_mrzr4_d"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "RHS_M2StaticMG_USMC_WD"; +staticATOccupants = "RHS_TOW_TriPod_USMC_WD"; +staticAAOccupants = "RHS_Stinger_AA_pod_D"; +NATOMortar = "RHS_M252_USMC_WD"; + +//Static Weapon Bags +MGStaticNATOB = "RHS_M2_Gun_Bag"; +ATStaticNATOB = "rhs_Tow_Gun_Bag"; +AAStaticNATOB = "B_AA_01_weapon_F"; +MortStaticNATOB = "rhs_M252_Gun_Bag"; +//Short Support +supportStaticNATOB = "rhs_TOW_Tripod_Bag"; +//Tall Support +supportStaticNATOB2 = "RHS_M2_Tripod_Bag"; +//Mortar Support +supportStaticNATOB3 = "rhs_M252_Bipod_Bag"; diff --git a/A3-Antistasi/Templates/RHS_Reb_CDF_Arid.sqf b/A3-Antistasi/Templates/RHS_Reb_CDF_Arid.sqf new file mode 100644 index 0000000000..19305d3d12 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Reb_CDF_Arid.sqf @@ -0,0 +1,108 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "FIA"; +SDKFlag = "Flag_FIA_F"; +SDKFlagTexture = "\A3\Data_F\Flags\Flag_FIA_CO.paa"; +typePetros = "rhsgref_cdf_b_reg_general"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "B_G_Soldier_unarmed_F"; +SDKUnarmed = "B_G_Survivor_F"; +SDKSniper = ["rhsgref_cdf_b_reg_marksman","rhsgref_hidf_marksman"]; +SDKATman = ["rhsgref_cdf_b_ngd_grenadier_rpg","rhsgref_cdf_b_reg_grenadier_rpg"]; +SDKMedic = ["rhsgref_cdf_b_ngd_medic","rhsgref_cdf_b_para_medic"]; +SDKMG = ["rhsgref_cdf_b_ngd_machinegunner","rhsgref_cdf_b_reg_machinegunner"]; +SDKExp = ["rhsgref_cdf_b_ngd_engineer","rhsgref_cdf_b_reg_engineer"]; +SDKGL = ["rhsgref_cdf_b_ngd_grenadier","rhsgref_cdf_b_reg_grenadier"]; +SDKMil = ["rhsgref_cdf_b_ngd_rifleman_lite","rhsgref_cdf_b_para_rifleman_lite"]; +SDKSL = ["rhsgref_cdf_b_ngd_squadleader","rhsgref_cdf_b_reg_squadleader"]; +SDKEng = ["rhsgref_cdf_b_ngd_engineer","rhsgref_cdf_b_reg_engineer"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "B_G_Quadbike_01_F"; +vehSDKLightArmed = "rhsgref_cdf_b_reg_uaz_dshkm"; +vehSDKAT = "rhsgref_cdf_b_reg_uaz_spg9"; +vehSDKLightUnarmed = "rhsgref_cdf_b_reg_uaz_open"; +vehSDKTruck = "rhsgref_cdf_b_ural_open"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "RHS_AN2_B"; +vehSDKBoat = "B_G_Boat_Transport_01_F"; +vehSDKRepair = "rhsgref_cdf_b_ural_repair"; + +//Civilian Vehicles +civCar = "C_Offroad_01_F"; +civTruck = "RHS_Ural_Open_Civ_03"; +civHeli = "RHS_Mi8amt_civilian"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "rhsgref_cdf_b_DSHKM"; +staticATteamPlayer = "rhsgref_cdf_b_SPG9"; +staticAAteamPlayer = "rhsgref_cdf_b_ZU23"; +SDKMortar = "rhsgref_cdf_b_reg_M252"; +SDKMortarHEMag = "rhs_12Rnd_m821_HE"; +SDKMortarSmokeMag = "rhs_12Rnd_m821_HE"; + +//Static Weapon Bags +MGStaticSDKB = "RHS_DShkM_Gun_Bag"; +ATStaticSDKB = "RHS_SPG9_Gun_Bag"; +AAStaticSDKB = "no_exists"; +MortStaticSDKB = "rhs_M252_Gun_Bag"; +//Short Support +supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticsSDKB3 = "rhs_M252_Bipod_Bag"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "rhs_mine_M19_mag"; +APERSMineMag = "rhsusf_mine_m7a2_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["rhs_ec200_mag", 1], ["rhs_ec200_camo_mag", 1], ["rhsusf_m112_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["rhs_ec400_mag", 1], ["rhs_ec400_camo_mag", 1], ["rhs_ec200_mag", 2], ["rhs_ec200_camo_mag", 2], ["rhsusf_m112x4_mag", 1], ["rhs_charge_M2tet_x2_mag", 1]]; + +//Starting Unlocks +initialRebelEquipment append ["rhsusf_weap_m1911a1","rhs_weap_tt33","rhs_weap_Izh18","rhs_weap_m1garand_sa43","rhs_weap_m72a7"]; +initialRebelEquipment append ["rhs_weap_Izh18","rhs_weap_m1garand_sa43"]; +initialRebelEquipment append ["rhs_weap_m72a7"]; +initialRebelEquipment append ["rhsusf_mag_7x45acp_MHP","rhs_mag_762x25_8","rhsgref_1Rnd_00Buck","rhsgref_1Rnd_Slug","rhsgref_8Rnd_762x63_M2B_M1rifle","rhs_grenade_mkii_mag","rhs_grenade_mki_mag","rhs_mag_rdg2_black","rhs_grenade_m15_mag"]; +initialRebelEquipment append ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; +initialRebelEquipment append ["rhsgref_chestrig","rhsgref_chicom","rhs_vydra_3m","rhs_vest_pistol_holster","rhs_vest_commander","rhs_6sh46","rhsgref_alice_webbing"]; +initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"]; +//TFAR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_rf7800str"]}; +if (startLR) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"}; diff --git a/A3-Antistasi/Templates/RHS_Reb_CDF_Wdl.sqf b/A3-Antistasi/Templates/RHS_Reb_CDF_Wdl.sqf new file mode 100644 index 0000000000..19305d3d12 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Reb_CDF_Wdl.sqf @@ -0,0 +1,108 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "FIA"; +SDKFlag = "Flag_FIA_F"; +SDKFlagTexture = "\A3\Data_F\Flags\Flag_FIA_CO.paa"; +typePetros = "rhsgref_cdf_b_reg_general"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "B_G_Soldier_unarmed_F"; +SDKUnarmed = "B_G_Survivor_F"; +SDKSniper = ["rhsgref_cdf_b_reg_marksman","rhsgref_hidf_marksman"]; +SDKATman = ["rhsgref_cdf_b_ngd_grenadier_rpg","rhsgref_cdf_b_reg_grenadier_rpg"]; +SDKMedic = ["rhsgref_cdf_b_ngd_medic","rhsgref_cdf_b_para_medic"]; +SDKMG = ["rhsgref_cdf_b_ngd_machinegunner","rhsgref_cdf_b_reg_machinegunner"]; +SDKExp = ["rhsgref_cdf_b_ngd_engineer","rhsgref_cdf_b_reg_engineer"]; +SDKGL = ["rhsgref_cdf_b_ngd_grenadier","rhsgref_cdf_b_reg_grenadier"]; +SDKMil = ["rhsgref_cdf_b_ngd_rifleman_lite","rhsgref_cdf_b_para_rifleman_lite"]; +SDKSL = ["rhsgref_cdf_b_ngd_squadleader","rhsgref_cdf_b_reg_squadleader"]; +SDKEng = ["rhsgref_cdf_b_ngd_engineer","rhsgref_cdf_b_reg_engineer"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "B_G_Quadbike_01_F"; +vehSDKLightArmed = "rhsgref_cdf_b_reg_uaz_dshkm"; +vehSDKAT = "rhsgref_cdf_b_reg_uaz_spg9"; +vehSDKLightUnarmed = "rhsgref_cdf_b_reg_uaz_open"; +vehSDKTruck = "rhsgref_cdf_b_ural_open"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "RHS_AN2_B"; +vehSDKBoat = "B_G_Boat_Transport_01_F"; +vehSDKRepair = "rhsgref_cdf_b_ural_repair"; + +//Civilian Vehicles +civCar = "C_Offroad_01_F"; +civTruck = "RHS_Ural_Open_Civ_03"; +civHeli = "RHS_Mi8amt_civilian"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "rhsgref_cdf_b_DSHKM"; +staticATteamPlayer = "rhsgref_cdf_b_SPG9"; +staticAAteamPlayer = "rhsgref_cdf_b_ZU23"; +SDKMortar = "rhsgref_cdf_b_reg_M252"; +SDKMortarHEMag = "rhs_12Rnd_m821_HE"; +SDKMortarSmokeMag = "rhs_12Rnd_m821_HE"; + +//Static Weapon Bags +MGStaticSDKB = "RHS_DShkM_Gun_Bag"; +ATStaticSDKB = "RHS_SPG9_Gun_Bag"; +AAStaticSDKB = "no_exists"; +MortStaticSDKB = "rhs_M252_Gun_Bag"; +//Short Support +supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticsSDKB3 = "rhs_M252_Bipod_Bag"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "rhs_mine_M19_mag"; +APERSMineMag = "rhsusf_mine_m7a2_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["rhs_ec200_mag", 1], ["rhs_ec200_camo_mag", 1], ["rhsusf_m112_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["rhs_ec400_mag", 1], ["rhs_ec400_camo_mag", 1], ["rhs_ec200_mag", 2], ["rhs_ec200_camo_mag", 2], ["rhsusf_m112x4_mag", 1], ["rhs_charge_M2tet_x2_mag", 1]]; + +//Starting Unlocks +initialRebelEquipment append ["rhsusf_weap_m1911a1","rhs_weap_tt33","rhs_weap_Izh18","rhs_weap_m1garand_sa43","rhs_weap_m72a7"]; +initialRebelEquipment append ["rhs_weap_Izh18","rhs_weap_m1garand_sa43"]; +initialRebelEquipment append ["rhs_weap_m72a7"]; +initialRebelEquipment append ["rhsusf_mag_7x45acp_MHP","rhs_mag_762x25_8","rhsgref_1Rnd_00Buck","rhsgref_1Rnd_Slug","rhsgref_8Rnd_762x63_M2B_M1rifle","rhs_grenade_mkii_mag","rhs_grenade_mki_mag","rhs_mag_rdg2_black","rhs_grenade_m15_mag"]; +initialRebelEquipment append ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; +initialRebelEquipment append ["rhsgref_chestrig","rhsgref_chicom","rhs_vydra_3m","rhs_vest_pistol_holster","rhs_vest_commander","rhs_6sh46","rhsgref_alice_webbing"]; +initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"]; +//TFAR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_rf7800str"]}; +if (startLR) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"}; diff --git a/A3-Antistasi/Templates/RHS_Reb_NAPA_Arid.sqf b/A3-Antistasi/Templates/RHS_Reb_NAPA_Arid.sqf new file mode 100644 index 0000000000..769f309293 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Reb_NAPA_Arid.sqf @@ -0,0 +1,107 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "NAPA"; +SDKFlag = "Flag_Syndikat_F"; +SDKFlagTexture = "\A3\Data_F\Flags\Flag_Altis_CO.paa"; +typePetros = "rhsgref_nat_warlord"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "rhsgref_nat_crew"; +SDKUnarmed = "I_G_Survivor_F"; +SDKSniper = ["rhsgref_nat_hunter","rhsgref_nat_pmil_hunter"]; +SDKATman = ["rhsgref_nat_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg"]; +SDKMedic = ["rhsgref_nat_medic","rhsgref_nat_pmil_medic"]; +SDKMG = ["rhsgref_nat_machinegunner_mg42","rhsgref_nat_pmil_machinegunner"]; +SDKExp = ["rhsgref_nat_saboteur","rhsgref_nat_pmil_saboteur"]; +SDKGL = ["rhsgref_nat_grenadier","rhsgref_nat_pmil_grenadier"]; +SDKMil = ["rhsgref_nat_rifleman_mp44","rhsgref_nat_pmil_rifleman"]; +SDKSL = ["rhsgref_nat_commander","rhsgref_nat_pmil_commander"]; +SDKEng = ["rhsgref_cdf_ngd_engineer","rhsgref_cdf_reg_engineer"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "I_G_Quadbike_01_F"; +vehSDKLightArmed = "rhsgref_nat_uaz_dshkm"; +vehSDKAT = "rhsgref_nat_uaz_spg9"; +vehSDKLightUnarmed = "rhsgref_cdf_reg_uaz_open"; +vehSDKTruck = "rhsgref_cdf_zil131"; +//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; +vehSDKPlane = "RHS_AN2"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "rhsgref_cdf_gaz66_repair"; + +//Civilian Vehicles +civCar = "C_Offroad_01_F"; +civTruck = "RHS_Ural_Open_Civ_03"; +civHeli = "RHS_Mi8t_civilian"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "rhsgref_nat_NSV_TriPod"; +staticATteamPlayer = "rhsgref_nat_SPG9"; +staticAAteamPlayer = "rhsgref_nat_ZU23"; +SDKMortar = "rhsgref_nat_2b14"; +SDKMortarHEMag = "rhs_mag_3vo18_10"; +SDKMortarSmokeMag = "rhs_mag_d832du_10"; + +//Static Weapon Bags +MGStaticSDKB = "RHS_DShkM_Gun_Bag"; +ATStaticSDKB = "RHS_SPG9_Gun_Bag"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "rhs_mine_ptm1_mag"; +APERSMineMag = "rhs_mine_ozm72_b_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["rhs_ec200_mag", 1], ["rhs_ec200_camo_mag", 1], ["rhsusf_m112_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["rhs_ec400_mag", 1], ["rhs_ec400_camo_mag", 1], ["rhs_ec200_mag", 2], ["rhs_ec200_camo_mag", 2], ["rhsusf_m112x4_mag", 1], ["rhs_charge_M2tet_x2_mag", 1]]; + +//Starting Unlocks +initialRebelEquipment append ["rhs_weap_type94_new","rhs_weap_tt33","rhs_weap_Izh18","rhs_weap_kar98k"]; +initialRebelEquipment append ["rhs_weap_rpg75"]; +initialRebelEquipment append ["rhs_mag_6x8mm_mhp","rhs_mag_762x25_8","rhsgref_1Rnd_00Buck","rhsgref_1Rnd_Slug","rhsgref_5Rnd_792x57_kar98k","rhs_grenade_mkii_mag","rhs_grenade_mki_mag","rhs_mag_rdg2_black","rhs_grenade_m15_mag"]; +initialRebelEquipment append ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; +initialRebelEquipment append ["rhsgref_chestrig","rhsgref_chicom","rhs_vydra_3m","rhs_vest_pistol_holster","rhs_vest_commander","rhs_6sh46","rhsgref_alice_webbing"]; +initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"]; +//TAFR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]}; +if (startLR) then {initialRebelEquipment pushBack "tf_anprc155_coyote"}; diff --git a/A3-Antistasi/Templates/RHS_Reb_NAPA_Wdl.sqf b/A3-Antistasi/Templates/RHS_Reb_NAPA_Wdl.sqf new file mode 100644 index 0000000000..769f309293 --- /dev/null +++ b/A3-Antistasi/Templates/RHS_Reb_NAPA_Wdl.sqf @@ -0,0 +1,107 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "NAPA"; +SDKFlag = "Flag_Syndikat_F"; +SDKFlagTexture = "\A3\Data_F\Flags\Flag_Altis_CO.paa"; +typePetros = "rhsgref_nat_warlord"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "rhsgref_nat_crew"; +SDKUnarmed = "I_G_Survivor_F"; +SDKSniper = ["rhsgref_nat_hunter","rhsgref_nat_pmil_hunter"]; +SDKATman = ["rhsgref_nat_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg"]; +SDKMedic = ["rhsgref_nat_medic","rhsgref_nat_pmil_medic"]; +SDKMG = ["rhsgref_nat_machinegunner_mg42","rhsgref_nat_pmil_machinegunner"]; +SDKExp = ["rhsgref_nat_saboteur","rhsgref_nat_pmil_saboteur"]; +SDKGL = ["rhsgref_nat_grenadier","rhsgref_nat_pmil_grenadier"]; +SDKMil = ["rhsgref_nat_rifleman_mp44","rhsgref_nat_pmil_rifleman"]; +SDKSL = ["rhsgref_nat_commander","rhsgref_nat_pmil_commander"]; +SDKEng = ["rhsgref_cdf_ngd_engineer","rhsgref_cdf_reg_engineer"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "I_G_Quadbike_01_F"; +vehSDKLightArmed = "rhsgref_nat_uaz_dshkm"; +vehSDKAT = "rhsgref_nat_uaz_spg9"; +vehSDKLightUnarmed = "rhsgref_cdf_reg_uaz_open"; +vehSDKTruck = "rhsgref_cdf_zil131"; +//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; +vehSDKPlane = "RHS_AN2"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "rhsgref_cdf_gaz66_repair"; + +//Civilian Vehicles +civCar = "C_Offroad_01_F"; +civTruck = "RHS_Ural_Open_Civ_03"; +civHeli = "RHS_Mi8t_civilian"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "rhsgref_nat_NSV_TriPod"; +staticATteamPlayer = "rhsgref_nat_SPG9"; +staticAAteamPlayer = "rhsgref_nat_ZU23"; +SDKMortar = "rhsgref_nat_2b14"; +SDKMortarHEMag = "rhs_mag_3vo18_10"; +SDKMortarSmokeMag = "rhs_mag_d832du_10"; + +//Static Weapon Bags +MGStaticSDKB = "RHS_DShkM_Gun_Bag"; +ATStaticSDKB = "RHS_SPG9_Gun_Bag"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "RHS_Podnos_Gun_Bag"; +//Short Support +supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; +//Tall Support +supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; +//Mortar Support +supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "rhs_mine_ptm1_mag"; +APERSMineMag = "rhs_mine_ozm72_b_mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["rhs_ec200_mag", 1], ["rhs_ec200_camo_mag", 1], ["rhsusf_m112_mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["rhs_ec400_mag", 1], ["rhs_ec400_camo_mag", 1], ["rhs_ec200_mag", 2], ["rhs_ec200_camo_mag", 2], ["rhsusf_m112x4_mag", 1], ["rhs_charge_M2tet_x2_mag", 1]]; + +//Starting Unlocks +initialRebelEquipment append ["rhs_weap_type94_new","rhs_weap_tt33","rhs_weap_Izh18","rhs_weap_kar98k"]; +initialRebelEquipment append ["rhs_weap_rpg75"]; +initialRebelEquipment append ["rhs_mag_6x8mm_mhp","rhs_mag_762x25_8","rhsgref_1Rnd_00Buck","rhsgref_1Rnd_Slug","rhsgref_5Rnd_792x57_kar98k","rhs_grenade_mkii_mag","rhs_grenade_mki_mag","rhs_mag_rdg2_black","rhs_grenade_m15_mag"]; +initialRebelEquipment append ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; +initialRebelEquipment append ["rhsgref_chestrig","rhsgref_chicom","rhs_vydra_3m","rhs_vest_pistol_holster","rhs_vest_commander","rhs_6sh46","rhsgref_alice_webbing"]; +initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"]; +//TAFR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]}; +if (startLR) then {initialRebelEquipment pushBack "tf_anprc155_coyote"}; diff --git a/A3-Antistasi/Templates/Template Manual.txt b/A3-Antistasi/Templates/Template Manual.txt index 8b51bc2f24..3c0c82b87c 100644 --- a/A3-Antistasi/Templates/Template Manual.txt +++ b/A3-Antistasi/Templates/Template Manual.txt @@ -1,4 +1,14 @@ -Hi! The following is a commented version of the templates samples from vanilla, explaining how to build your own template. +Hi! And welcome to the template folder. +This folder contains ALL of the units and vehicles that are recognized and used by the mission. +The template names follow a common structure: Modset _ Side(mission logic [Rebel, Occupant, Invader]) _ Side(game logic [Blue, Green and Red]) _ Environment (or map for vanilla as each one will have dlc dependancies) + +BAF also needs RHSUSAF due to 3CB's lack of any AA assets. + + + + +OLD information below, still somewhat useful for understanding variable names, though structure has been changed. +The following is a commented version of the templates samples from vanilla, explaining how to build your own template. First: You have to build three files (you can do it in 2 or 1 but I think it's easier), which contain the three factions. Name them whatever. diff --git a/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Altis.sqf new file mode 100644 index 0000000000..533f7e9f7d --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Altis.sqf @@ -0,0 +1,178 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "CSAT"; + +//SF Faction +factionMaleInvaders = "OPF_V_F"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = ""}; + +//Flag Images +CSATFlag = "Flag_CSAT_F"; +CSATFlagTexture = "\A3\Data_F\Flags\Flag_CSAT_CO.paa"; +flagCSATmrk = "flag_CSAT"; +if (isServer) then {"CSAT_carrier" setMarkerText "CSAT Carrier"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +CSATPlayerLoadouts = [ + //Team Leader + "O_T_Recon_TL_F", + //Medic + "O_T_Recon_Medic_F", + //Autorifleman + "O_Soldier_AR_F", + //Marksman + "O_T_Recon_M_F", + //Anti-tank Scout + "O_T_Recon_LAT_F", + //AT2 + "O_T_Recon_LAT_F" +]; + +//PVP Player Vehicles +vehCSATPVP = ["O_MRAP_02_F","O_LSV_02_unarmed_F","O_MRAP_02_hmg_F","O_LSV_02_armed_F"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "O_Soldier_F"; +CSATOfficer = "O_Officer_F"; +CSATBodyG = "O_V_Soldier_hex_F"; +CSATCrew = "O_Crew_F"; +CSATMarksman = "O_Soldier_M_F"; +staticCrewInvaders = "O_support_MG_F"; +CSATPilot = "O_Pilot_F"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "O_soldierU_F"; + FIAMarksman = "O_soldierU_M_F"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["O_soldier_GL_F","O_soldier_F"]; +groupsCSATSniper = ["O_sniper_F","O_spotter_F"]; +groupsCSATsmall = [groupsCSATSentry,["O_recon_M_F","O_recon_F"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["O_soldier_TL_F","O_soldier_AA_F","O_soldier_AA_F","O_soldier_AAA_F"]; +groupsCSATAT = ["O_soldier_TL_F","O_soldier_AT_F","O_soldier_AT_F","O_soldier_AAT_F"]; +groupsCSATmid = [["O_soldier_TL_F","O_soldier_AR_F","O_soldier_GL_F","O_soldier_LAT_F"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["O_soldier_SL_F","O_soldier_F","O_soldier_LAT_F","O_soldier_M_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_medic_F"]; +CSATSpecOp = ["O_V_Soldier_TL_hex_F","O_V_Soldier_JTAC_hex_F","O_V_Soldier_M_hex_F","O_V_Soldier_Exp_hex_F","O_V_Soldier_LAT_hex_F","O_V_Soldier_Medic_hex_F"]; +groupsCSATSquad = + [ + CSATSquad, + ["O_soldier_SL_F","O_soldier_AR_F","O_soldier_GL_F","O_soldier_M_F","O_soldier_AT_F","O_soldier_AAT_F","O_soldier_A_F","O_medic_F"], + ["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_Support_Mort_F","O_Support_AMort_F","O_medic_F"], + ["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_Support_MG_F","O_Support_AMG_F","O_medic_F"], + ["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_soldier_AA_F","O_soldier_AAA_F","O_medic_F"], + ["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_engineer_F","O_engineer_F","O_medic_F"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["O_SoldierU_GL_F",FIARifleman], + [FIAMarksman,FIARifleman], + ["O_soldierU_M_F","O_SoldierU_GL_F"] + ]; + //Fireteams + groupsFIAMid = + [ + ["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F",FIAMarksman], + ["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F","O_soldierU_LAT_F"], + ["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F","O_engineer_U_F"] + ]; + //Squads + FIASquad = ["O_SoldierU_SL_F","O_soldierU_AR_F","O_SoldierU_GL_F",FIARifleman,FIARifleman,FIAMarksman,"O_soldierU_LAT_F","O_soldierU_medic_F"]; + groupsFIASquad = + [ + FIASquad, + ["O_SoldierU_SL_F","O_soldierU_AR_F","O_SoldierU_GL_F",FIARifleman,"O_soldierU_A_F","O_soldierU_exp_F","O_soldierU_LAT_F","O_soldierU_medic_F"] + ]; + }; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_Quadbike_01_F"; +vehCSATLightArmed = ["O_MRAP_02_hmg_F","O_MRAP_02_gmg_F","O_LSV_02_armed_F"]; +vehCSATLightUnarmed = ["O_MRAP_02_F","O_LSV_02_unarmed_F"]; +vehCSATTrucks = ["O_Truck_03_transport_F","O_Truck_03_covered_F"]; +vehCSATAmmoTruck = "O_Truck_03_ammo_F"; +vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored +vehCSATAPC = ["O_APC_Wheeled_02_rcws_v2_F","O_APC_Tracked_02_cannon_F"]; +vehCSATTank = "O_MBT_02_cannon_F"; +vehCSATAA = "O_APC_Tracked_02_AA_F"; +vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats +vehCSATBoat = "O_Boat_Armed_01_hmg_F"; +vehCSATRBoat = "O_Boat_Transport_01_F"; +vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"O_APC_Wheeled_02_rcws_v2_F"]; +//Planes +vehCSATPlane = "O_Plane_CAS_02_dynamicLoadout_F"; +vehCSATPlaneAA = "O_Plane_Fighter_02_F"; +vehCSATTransportPlanes = ["O_T_VTOL_02_infantry_F"]; +//Heli +vehCSATPatrolHeli = "O_Heli_Light_02_unarmed_F"; +vehCSATTransportHelis = ["O_Heli_Transport_04_bench_F",vehCSATPatrolHeli]; +vehCSATAttackHelis = ["O_Heli_Attack_02_dynamicLoadout_F","O_Heli_Attack_02_F"]; +//UAV +vehCSATUAV = "O_UAV_02_F"; +vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery +vehCSATMRLS = "O_MBT_02_arty_F"; +vehCSATMRLSMags = "32Rnd_155mm_Mo_shells"; +//Combined Arrays +vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "O_Truck_03_fuel_F", "O_Truck_03_medical_F", "O_Truck_03_repair_F"]; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; + +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "O_MRAP_02_hmg_F"; + vehFIATruck = "O_Truck_02_transport_F"; + vehFIACar = "O_MRAP_02_F"; + }; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "O_HMG_01_high_F"; +staticATInvaders = "O_static_AT_F"; +staticAAInvaders = "O_static_AA_F"; +CSATMortar = "O_Mortar_01_F"; + +//Static Weapon Bags +MGStaticCSATB = "O_HMG_01_high_weapon_F"; +ATStaticCSATB = "O_AT_01_weapon_F"; +AAStaticCSATB = "O_AA_01_weapon_F"; +MortStaticCSATB = "O_Mortar_01_weapon_F"; +//Short Support +supportStaticCSATB = "O_HMG_01_support_F"; +//Tall Support +supportStaticCSATB2 = "O_HMG_01_support_high_F"; +//Mortar Support +supportStaticCSATB3 = "O_Mortar_01_support_F"; diff --git a/A3-Antistasi/Templates/InvadersVanillaAltis.sqf b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Enoch.sqf similarity index 52% rename from A3-Antistasi/Templates/InvadersVanillaAltis.sqf rename to A3-Antistasi/Templates/Vanilla_Inv_CSAT_Enoch.sqf index 6d916d19e0..4a75048d7b 100644 --- a/A3-Antistasi/Templates/InvadersVanillaAltis.sqf +++ b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Enoch.sqf @@ -1,17 +1,27 @@ -CSATGrunt = "O_Soldier_F"; -CSATOfficer = "O_Officer_F"; -CSATBodyG = "O_V_Soldier_hex_F"; -CSATCrew = "O_Crew_F"; -CSATMarksman = "O_Soldier_M_F"; -staticCrewInvaders = "O_support_MG_F"; -CSATPilot = "O_Pilot_F"; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "CSAT"; -CSATMortar = "O_Mortar_01_F"; -CSATMG = "O_HMG_01_high_F"; -staticATInvaders = "O_static_AT_F"; -staticAAInvaders = "O_static_AA_F"; +//SF Faction +factionMaleInvaders = "OPF_V_F"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = ""}; + +//Flag Images +CSATFlag = "Flag_CSAT_F"; +CSATFlagTexture = "\A3\Data_F\Flags\Flag_CSAT_CO.paa"; +flagCSATmrk = "flag_CSAT"; +if (isServer) then {"CSAT_carrier" setMarkerText "CSAT Carrier"}; -//CSAT PvP Loadouts +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts CSATPlayerLoadouts = [ //Team Leader "O_T_Recon_TL_F", @@ -23,63 +33,146 @@ CSATPlayerLoadouts = [ "O_T_Recon_M_F", //Anti-tank Scout "O_T_Recon_LAT_F", - //Anti-tank Scout + //AT2 "O_T_Recon_LAT_F" ]; -vehCSATPVP = ["O_MRAP_02_F","O_LSV_02_unarmed_F","O_MRAP_02_hmg_F","O_LSV_02_armed_F"];//This array contains the vehicles CSAT-PvP players can spawn near their flag. +//PVP Player Vehicles +vehCSATPVP = ["O_MRAP_02_F","O_LSV_02_unarmed_F","O_MRAP_02_hmg_F","O_LSV_02_armed_F"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "O_Soldier_F"; +CSATOfficer = "O_Officer_F"; +CSATBodyG = "O_V_Soldier_hex_F"; +CSATCrew = "O_Crew_F"; +CSATMarksman = "O_Soldier_M_F"; +staticCrewInvaders = "O_support_MG_F"; +CSATPilot = "O_Pilot_F"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "O_soldierU_F"; + FIAMarksman = "O_soldierU_M_F"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["O_soldier_GL_F","O_soldier_F"]; +groupsCSATSniper = ["O_sniper_F","O_spotter_F"]; +groupsCSATsmall = [groupsCSATSentry,["O_recon_M_F","O_recon_F"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["O_soldier_TL_F","O_soldier_AA_F","O_soldier_AA_F","O_soldier_AAA_F"]; +groupsCSATAT = ["O_soldier_TL_F","O_soldier_AT_F","O_soldier_AT_F","O_soldier_AAT_F"]; +groupsCSATmid = [["O_soldier_TL_F","O_soldier_AR_F","O_soldier_GL_F","O_soldier_LAT_F"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["O_soldier_SL_F","O_soldier_F","O_soldier_LAT_F","O_soldier_M_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_medic_F"]; +CSATSpecOp = ["O_V_Soldier_TL_hex_F","O_V_Soldier_JTAC_hex_F","O_V_Soldier_M_hex_F","O_V_Soldier_Exp_hex_F","O_V_Soldier_LAT_hex_F","O_V_Soldier_Medic_hex_F"]; +groupsCSATSquad = + [ + CSATSquad, + ["O_soldier_SL_F","O_soldier_AR_F","O_soldier_GL_F","O_soldier_M_F","O_soldier_AT_F","O_soldier_AAT_F","O_soldier_A_F","O_medic_F"], + ["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_Support_Mort_F","O_Support_AMort_F","O_medic_F"], + ["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_Support_MG_F","O_Support_AMG_F","O_medic_F"], + ["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_soldier_AA_F","O_soldier_AAA_F","O_medic_F"], + ["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_engineer_F","O_engineer_F","O_medic_F"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["O_SoldierU_GL_F",FIARifleman], + [FIAMarksman,FIARifleman], + ["O_soldierU_M_F","O_SoldierU_GL_F"] + ]; + //Fireteams + groupsFIAMid = + [ + ["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F",FIAMarksman], + ["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F","O_soldierU_LAT_F"], + ["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F","O_engineer_U_F"] + ]; + //Squads + FIASquad = ["O_SoldierU_SL_F","O_soldierU_AR_F","O_SoldierU_GL_F",FIARifleman,FIARifleman,FIAMarksman,"O_soldierU_LAT_F","O_soldierU_medic_F"]; + groupsFIASquad = + [ + FIASquad, + ["O_SoldierU_SL_F","O_soldierU_AR_F","O_SoldierU_GL_F",FIARifleman,"O_soldierU_A_F","O_soldierU_exp_F","O_soldierU_LAT_F","O_soldierU_medic_F"] + ]; + }; +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_Quadbike_01_F"; vehCSATLightArmed = ["O_MRAP_02_hmg_F","O_MRAP_02_gmg_F","O_LSV_02_armed_F"]; vehCSATLightUnarmed = ["O_MRAP_02_F","O_LSV_02_unarmed_F"]; vehCSATTrucks = ["O_Truck_03_transport_F","O_Truck_03_covered_F"]; vehCSATAmmoTruck = "O_Truck_03_ammo_F"; vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored vehCSATAPC = ["O_APC_Wheeled_02_rcws_v2_F","O_APC_Tracked_02_cannon_F"]; vehCSATTank = "O_MBT_02_cannon_F"; vehCSATAA = "O_APC_Tracked_02_AA_F"; vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats vehCSATBoat = "O_Boat_Armed_01_hmg_F"; vehCSATRBoat = "O_Boat_Transport_01_F"; vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"O_APC_Wheeled_02_rcws_v2_F"]; +//Planes vehCSATPlane = "O_Plane_CAS_02_dynamicLoadout_F"; vehCSATPlaneAA = "O_Plane_Fighter_02_F"; -vehCSATTransportPlanes = ["O_T_VTOL_02_infantry_F"]; //VTOL isn't available without APEX nor there is a replacement, i'd leave it there regardles it's Altis +vehCSATTransportPlanes = ["O_T_VTOL_02_infantry_F"]; +//Heli vehCSATPatrolHeli = "O_Heli_Light_02_unarmed_F"; -vehCSATTransportHelis = ["O_Heli_Transport_04_bench_F",vehCSATPatrolHeli]; +vehCSATTransportHelis = ["O_Heli_Transport_04_bench_F",vehCSATPatrolHeli]; vehCSATAttackHelis = ["O_Heli_Attack_02_dynamicLoadout_F","O_Heli_Attack_02_F"]; -vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; +//UAV vehCSATUAV = "O_UAV_02_F"; vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery vehCSATMRLS = "O_MBT_02_arty_F"; -vehCSATMRLSMags = "32Rnd_155mm_Mo_shells"; // I HOPE THEY ARE THE SAME! +vehCSATMRLSMags = "32Rnd_155mm_Mo_shells"; +//Combined Arrays vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "O_Truck_03_fuel_F", "O_Truck_03_medical_F", "O_Truck_03_repair_F"]; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "O_MRAP_02_hmg_F"; + vehFIATruck = "O_Truck_02_transport_F"; + vehFIACar = "O_MRAP_02_F"; + }; -vehCSATBike = "O_Quadbike_01_F"; +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "O_HMG_01_high_F"; +staticATInvaders = "O_static_AT_F"; +staticAAInvaders = "O_static_AA_F"; +CSATMortar = "O_Mortar_01_F"; -CSATFlag = "Flag_CSAT_F"; -CSATFlagTexture = "\A3\Data_F\Flags\Flag_CSAT_CO.paa"; -CSATAmmoBox = "O_supplyCrate_F"; -groupsCSATSentry = ["O_soldier_GL_F","O_soldier_F"]; -groupsCSATSniper = ["O_sniper_F","O_spotter_F"]; -groupsCSATsmall = [groupsCSATSentry,["O_recon_M_F","O_recon_F"],groupsCSATSniper]; -groupsCSATAA = ["O_soldier_TL_F","O_soldier_AA_F","O_soldier_AA_F","O_soldier_AAA_F"]; -groupsCSATAT = ["O_soldier_TL_F","O_soldier_AT_F","O_soldier_AT_F","O_soldier_AAT_F"]; -groupsCSATmid = [["O_soldier_TL_F","O_soldier_AR_F","O_soldier_GL_F","O_soldier_LAT_F"],groupsCSATAA,groupsCSATAT]; -CSATSquad = ["O_soldier_SL_F","O_soldier_F","O_soldier_LAT_F","O_soldier_M_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_medic_F"]; -CSATSpecOp = ["O_V_Soldier_TL_hex_F","O_V_Soldier_JTAC_hex_F","O_V_Soldier_M_hex_F","O_V_Soldier_Exp_hex_F","O_V_Soldier_LAT_hex_F","O_V_Soldier_Medic_hex_F"]; -factionMaleInvaders = "OPF_V_F"; -groupsCSATSquad = [CSATSquad,["O_soldier_SL_F","O_soldier_AR_F","O_soldier_GL_F","O_soldier_M_F","O_soldier_AT_F","O_soldier_AAT_F","O_soldier_A_F","O_medic_F"],["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_medic_F","O_Support_Mort_F","O_Support_AMort_F"],["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_medic_F","O_Support_MG_F","O_Support_AMG_F"],["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_medic_F","O_soldier_AA_F","O_soldier_AAA_F"],["O_soldier_SL_F","O_soldier_LAT_F","O_soldier_TL_F","O_soldier_AR_F","O_soldier_A_F","O_medic_F","O_engineer_F","O_engineer_F"]]; -supportStaticCSATB = "O_HMG_01_support_F"; -ATStaticCSATB = "O_AT_01_weapon_F"; +//Static Weapon Bags MGStaticCSATB = "O_HMG_01_high_weapon_F"; -supportStaticCSATB2 = "O_HMG_01_support_high_F"; +ATStaticCSATB = "O_AT_01_weapon_F"; AAStaticCSATB = "O_AA_01_weapon_F"; MortStaticCSATB = "O_Mortar_01_weapon_F"; +//Short Support +supportStaticCSATB = "O_HMG_01_support_F"; +//Tall Support +supportStaticCSATB2 = "O_HMG_01_support_high_F"; +//Mortar Support supportStaticCSATB3 = "O_Mortar_01_support_F"; - -weaponsCSAT append ["srifle_DMR_04_F","arifle_CTAR_ghex_F","arifle_CTAR_GL_blk_F","arifle_Katiba_C_F","srifle_DMR_05_tan_f","arifle_Katiba_F","arifle_Katiba_GL_F","srifle_DMR_02_sniper_F","MMG_01_tan_F","srifle_DMR_01_F","launch_RPG32_F","LMG_Zafir_F"]; -ammunitionCSAT append ["30Rnd_65x39_caseless_green","10Rnd_762x54_Mag","150Rnd_762x54_Box","6Rnd_45ACP_Cylinder","150Rnd_93x64_Mag","10Rnd_127x54_Mag","30Rnd_9x21_Mag","5Rnd_127x108_Mag","10Rnd_93x64_DMR_05_Mag"]; //not sure -flagCSATmrk = "flag_CSAT"; -nameInvaders = "CSAT"; -if (isServer) then {"CSAT_carrier" setMarkerText "CSAT Carrier"}; diff --git a/A3-Antistasi/Templates/InvadersVanilla.sqf b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Tanoa.sqf similarity index 50% rename from A3-Antistasi/Templates/InvadersVanilla.sqf rename to A3-Antistasi/Templates/Vanilla_Inv_CSAT_Tanoa.sqf index 15426b9293..5b0e80415a 100644 --- a/A3-Antistasi/Templates/InvadersVanilla.sqf +++ b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Tanoa.sqf @@ -1,19 +1,29 @@ -if (worldName == "Altis") exitWith {call compile preProcessFileLineNumbers "Templates\InvadersVanillaAltis.sqf"}; +//Call to Altis Invader Template +if (worldName == "Altis") exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Inv_CSAT_Altis.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameInvaders = "CSAT"; -CSATGrunt = "O_T_Soldier_F"; -CSATOfficer = "O_T_Officer_F"; -CSATBodyG = "O_V_Soldier_ghex_F"; -CSATCrew = "O_T_Crew_F"; -CSATMarksman = "O_T_Soldier_M_F"; -staticCrewInvaders = "O_T_support_MG_F"; -CSATPilot = "O_T_Pilot_F"; +//SF Faction +factionMaleInvaders = "OPF_V_F"; +//Miltia Faction +if (gameMode == 4) then {factionFIA = "OPF_G_F"}; -CSATMortar = "O_Mortar_01_F"; -CSATMG = "O_HMG_01_high_F"; -staticATInvaders = "O_T_static_AT_F"; -staticAAInvaders = "O_static_AA_F"; +//Flag Images +CSATFlag = "Flag_CSAT_F"; +CSATFlagTexture = "\A3\Data_F\Flags\Flag_CSAT_CO.paa"; +flagCSATmrk = "flag_CSAT"; +if (isServer) then {"CSAT_carrier" setMarkerText "CSAT Carrier"}; + +//Loot Crate +CSATAmmoBox = "O_supplyCrate_F"; -//CSAT PvP Loadouts +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts CSATPlayerLoadouts = [ //Team Leader "O_T_Recon_TL_F", @@ -25,63 +35,146 @@ CSATPlayerLoadouts = [ "O_T_Recon_M_F", //Anti-tank Scout "O_T_Recon_LAT_F", - //Anti-tank Scout + //AT2 "O_T_Recon_LAT_F" ]; -vehCSATPVP = ["O_T_MRAP_02_ghex_F","O_T_LSV_02_unarmed_F","O_T_MRAP_02_hmg_ghex_F","O_T_LSV_02_armed_F"];//This array contains the vehicles CSAT-PvP players can spawn near their flag. +//PVP Player Vehicles +vehCSATPVP = ["O_T_MRAP_02_ghex_F","O_T_LSV_02_unarmed_F","O_T_MRAP_02_hmg_ghex_F","O_T_LSV_02_armed_F"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +CSATGrunt = "O_T_Soldier_F"; +CSATOfficer = "O_T_Officer_F"; +CSATBodyG = "O_V_Soldier_ghex_F"; +CSATCrew = "O_T_Crew_F"; +CSATMarksman = "O_T_Soldier_M_F"; +staticCrewInvaders = "O_T_support_MG_F"; +CSATPilot = "O_T_Pilot_F"; + +//Militia Units +if (gameMode == 4) then + { + FIARifleman = "O_G_Soldier_F"; + FIAMarksman = "O_G_Sharpshooter_F"; + }; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsCSATSentry = ["O_T_soldier_GL_F","O_T_soldier_F"]; +groupsCSATSniper = ["O_T_sniper_F","O_T_spotter_F"]; +groupsCSATsmall = [groupsCSATSentry,["O_T_recon_M_F","O_T_recon_F"],groupsCSATSniper]; +//Fireteams +groupsCSATAA = ["O_T_soldier_TL_F","O_T_soldier_AA_F","O_T_soldier_AA_F","O_T_soldier_AAA_F"]; +groupsCSATAT = ["O_T_soldier_TL_F","O_T_soldier_AT_F","O_T_soldier_AT_F","O_T_soldier_AAT_F"]; +groupsCSATmid = [["O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_GL_F","O_T_soldier_LAT_F"],groupsCSATAA,groupsCSATAT]; +//Squads +CSATSquad = ["O_T_soldier_SL_F","O_T_soldier_F","O_T_soldier_LAT_F","O_T_soldier_M_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_medic_F"]; +CSATSpecOp = ["O_V_Soldier_TL_ghex_F","O_V_Soldier_JTAC_ghex_F","O_V_Soldier_M_ghex_F","O_V_Soldier_Exp_ghex_F","O_V_Soldier_LAT_ghex_F","O_V_Soldier_Medic_ghex_F"]; +groupsCSATSquad = + [ + CSATSquad, + ["O_T_soldier_SL_F","O_T_soldier_AR_F","O_T_soldier_GL_F","O_T_soldier_M_F","O_T_soldier_AT_F","O_T_soldier_AAT_F","O_T_soldier_A_F","O_T_medic_F"], + ["O_T_soldier_SL_F","O_T_soldier_LAT_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_Support_Mort_F","O_T_Support_AMort_F","O_T_medic_F"], + ["O_T_soldier_SL_F","O_T_soldier_LAT_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_Support_MG_F","O_T_Support_AMG_F","O_T_medic_F"], + ["O_T_soldier_SL_F","O_T_soldier_LAT_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_soldier_AA_F","O_T_soldier_AAA_F","O_T_medic_F"], + ["O_T_soldier_SL_F","O_T_soldier_LAT_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_Engineer_F","O_T_Engineer_F","O_T_medic_F"] + ]; + +//Militia Groups +if (gameMode == 4) then + { + //Teams + groupsFIASmall = + [ + ["O_G_Soldier_GL_F","O_G_Soldier_F"], + ["O_G_Soldier_M_F","O_G_Soldier_F"], + ["O_G_Sharpshooter_F","O_G_Soldier_M_F"] + ]; + //Fireteams + groupsFIAMid = + [ + ["O_G_Soldier_SL_F","O_G_Sharpshooter_F","O_G_Soldier_AR_F","O_G_Soldier_A_F"], + ["O_G_Soldier_TL_F","O_G_Soldier_AR_F","O_G_Soldier_GL_F","O_G_Soldier_LAT_F"], + ["O_G_Soldier_TL_F","O_G_Soldier_LAT_F","O_G_Soldier_LAT_F","O_G_Soldier_LAT_F"] + ]; + //Squads + FIASquad = ["O_G_soldier_SL_F","O_G_soldier_F","O_G_soldier_LAT_F","O_G_Soldier_M_F","O_G_soldier_TL_F","O_G_soldier_AR_F","O_G_Soldier_A_F","O_G_medic_F"]; + groupsFIASquad = + [ + FIASquad, + ["O_G_soldier_SL_F","O_G_soldier_LAT_F","O_G_Soldier_M_F","O_G_soldier_TL_F","O_G_Soldier_A_F","O_support_MG_F","O_support_AMG_F","O_G_medic_F"] + ]; + }; +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehCSATBike = "O_T_Quadbike_01_ghex_F"; vehCSATLightArmed = ["O_T_MRAP_02_gmg_ghex_F","O_T_MRAP_02_hmg_ghex_F","O_T_LSV_02_armed_F"]; vehCSATLightUnarmed = ["O_T_MRAP_02_ghex_F","O_T_LSV_02_unarmed_F"]; vehCSATTrucks = ["O_T_Truck_03_transport_ghex_F","O_T_Truck_03_covered_ghex_F"]; vehCSATAmmoTruck = "O_T_Truck_03_ammo_ghex_F"; vehCSATLight = vehCSATLightArmed + vehCSATLightUnarmed; +//Armored vehCSATAPC = ["O_T_APC_Wheeled_02_rcws_ghex_F","O_T_APC_Tracked_02_cannon_ghex_F"]; vehCSATTank = "O_T_MBT_02_cannon_ghex_F"; vehCSATAA = "O_T_APC_Tracked_02_AA_ghex_F"; vehCSATAttack = vehCSATAPC + [vehCSATTank]; +//Boats vehCSATBoat = "O_T_Boat_Armed_01_hmg_F"; vehCSATRBoat = "O_T_Boat_Transport_01_F"; vehCSATBoats = [vehCSATBoat,vehCSATRBoat,"O_T_APC_Wheeled_02_rcws_ghex_F"]; +//Planes vehCSATPlane = "O_Plane_CAS_02_F"; vehCSATPlaneAA = "O_Plane_Fighter_02_F"; vehCSATTransportPlanes = ["O_T_VTOL_02_infantry_F"]; +//Heli vehCSATPatrolHeli = "O_Heli_Light_02_unarmed_F"; vehCSATTransportHelis = ["O_Heli_Transport_04_bench_F",vehCSATPatrolHeli]; vehCSATAttackHelis = ["O_Heli_Light_02_F","O_Heli_Attack_02_F"]; -vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; +//UAV vehCSATUAV = "O_UAV_02_F"; vehCSATUAVSmall = "O_UAV_01_F"; +//Artillery vehCSATMRLS = "O_T_MBT_02_arty_ghex_F"; vehCSATMRLSMags = "32Rnd_155mm_Mo_shells"; +//Combined Arrays vehCSATNormal = vehCSATLight + vehCSATTrucks + [vehCSATAmmoTruck, "O_T_Truck_03_fuel_ghex_F", "O_T_Truck_03_medical_ghex_F", "O_T_Truck_03_repair_ghex_F"]; -vehCSATBike = "O_T_Quadbike_01_ghex_F"; +vehCSATAir = vehCSATTransportHelis + vehCSATAttackHelis + [vehCSATPlane,vehCSATPlaneAA] + vehCSATTransportPlanes; -CSATFlag = "Flag_CSAT_F"; -CSATFlagTexture = "\A3\Data_F\Flags\Flag_CSAT_CO.paa"; -CSATAmmoBox = "O_supplyCrate_F"; -//cfgCSATInf = (configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "Infantry"); -groupsCSATSentry = ["O_T_soldier_GL_F","O_T_soldier_F"];///"O_T_InfSentry";/// -groupsCSATSniper = ["O_T_sniper_F","O_T_spotter_F"]; -groupsCSATsmall = [groupsCSATSentry,["O_T_recon_M_F","O_T_recon_F"],groupsCSATSniper];///[groupsCSATSentry,"O_T_reconSentry","O_T_SniperTeam"];/// -groupsCSATAA = ["O_T_soldier_TL_F","O_T_soldier_AA_F","O_T_soldier_AA_F","O_T_soldier_AAA_F"]; -groupsCSATAT = ["O_T_soldier_TL_F","O_T_soldier_AT_F","O_T_soldier_AT_F","O_T_soldier_AAT_F"]; -groupsCSATmid = [["O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_GL_F","O_T_soldier_LAT_F"],groupsCSATAA,groupsCSATAT];///["O_T_InfTeam","O_T_InfTeam_AA","O_T_InfTeam_AT"];/// -CSATSquad = ["O_T_soldier_SL_F","O_T_soldier_F","O_T_soldier_LAT_F","O_T_soldier_M_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_medic_F"];///"O_T_InfSquad";/// -CSATSpecOp = ["O_V_Soldier_TL_ghex_F","O_V_Soldier_JTAC_ghex_F","O_V_Soldier_M_ghex_F","O_V_Soldier_Exp_ghex_F","O_V_Soldier_LAT_ghex_F","O_V_Soldier_Medic_ghex_F"];///(configfile >> "CfgGroups" >> "East" >> "OPF_T_F" >> "SpecOps" >> "O_T_ViperTeam");/// -factionMaleInvaders = "OPF_V_F"; -groupsCSATSquad = [CSATSquad,["O_T_soldier_SL_F","O_T_soldier_AR_F","O_T_soldier_GL_F","O_T_soldier_M_F","O_T_soldier_AT_F","O_T_soldier_AAT_F","O_T_soldier_A_F","O_T_medic_F"],["O_T_soldier_SL_F","O_T_soldier_LAT_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_medic_F","O_T_Support_Mort_F","O_T_Support_AMort_F"],["O_T_soldier_SL_F","O_T_soldier_LAT_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_medic_F","O_T_Support_MG_F","O_T_Support_AMG_F"],["O_T_soldier_SL_F","O_T_soldier_LAT_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_medic_F","O_T_soldier_AA_F","O_T_soldier_AAA_F"],["O_T_soldier_SL_F","O_T_soldier_LAT_F","O_T_soldier_TL_F","O_T_soldier_AR_F","O_T_soldier_A_F","O_T_medic_F","O_T_Engineer_F","O_T_Engineer_F"]];//[CSATSquad,"O_T_InfSquad_Weapons"];///"O_T_Engineer_F" +//Militia Vehicles +if (gameMode == 4) then + { + vehFIAArmedCar = "O_G_Offroad_01_armed_F"; + vehFIATruck = "O_G_van_01_transport_F"; + vehFIACar = "O_G_Offroad_01_F"; + }; -supportStaticCSATB = "O_HMG_01_support_F"; -ATStaticCSATB = "O_AT_01_weapon_F"; +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +CSATMG = "O_HMG_01_high_F"; +staticATInvaders = "O_T_static_AT_F"; +staticAAInvaders = "O_static_AA_F"; +CSATMortar = "O_Mortar_01_F"; + +//Static Weapon Bags MGStaticCSATB = "O_HMG_01_weapon_F"; -supportStaticCSATB2 = "O_HMG_01_support_high_F"; +ATStaticCSATB = "O_AT_01_weapon_F"; AAStaticCSATB = "O_AA_01_weapon_F"; MortStaticCSATB = "O_Mortar_01_weapon_F"; +//Short Support +supportStaticCSATB = "O_HMG_01_support_F"; +//Tall Support +supportStaticCSATB2 = "O_HMG_01_support_high_F"; +//Mortar Support supportStaticCSATB3 = "O_Mortar_01_support_F"; - -weaponsCSAT append ["srifle_DMR_01_F","LMG_Zafir_F","hgun_Pistol_heavy_02_F","arifle_Katiba_F","MMG_01_hex_F","srifle_DMR_04_F","arifle_Katiba_GL_F","SMG_02_F","srifle_GM6_camo_F","srifle_DMR_05_blk_F","arifle_AK12_F","arifle_AK12_GL_F"]; -ammunitionCSAT append ["30Rnd_65x39_caseless_green","10Rnd_762x54_Mag","150Rnd_762x54_Box","6Rnd_45ACP_Cylinder","150Rnd_93x64_Mag","10Rnd_127x54_Mag","30Rnd_9x21_Mag","5Rnd_127x108_Mag","10Rnd_93x64_DMR_05_Mag"]; -flagCSATmrk = "flag_CSAT"; -nameInvaders = "CSAT"; -if (isServer) then {"CSAT_carrier" setMarkerText "CSAT Carrier"}; diff --git a/A3-Antistasi/Templates/Vanilla_Occ_AAF_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Occ_AAF_Altis.sqf new file mode 100644 index 0000000000..8725e8ae6c --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Occ_AAF_Altis.sqf @@ -0,0 +1,190 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "AAF"; + +//Police Faction +factionGEN = "IND_C_F"; +//SF Faction +factionMaleOccupants = ""; +//Miltia Faction +if (gameMode != 4) then {factionFIA = "IND_C_F"}; + +//Flag Images +NATOFlag = "Flag_AltisColonial_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_AltisColonial_CO.paa"; +flagNATOmrk = "flag_AltisColonial"; +if (isServer) then {"NATO_carrier" setMarkerText "AAF Carrier"}; + +//Loot Crate +NATOAmmobox = "I_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + "I_soldier_SL_F", + //Medic + "I_medic_F", + //Autorifleman + "I_Soldier_AR_F", + //Marksman + "I_Soldier_M_F", + //Anti-tank Scout + "I_soldier_LAT_F", + //AT2 + "I_soldier_LAT_F" +]; + +//PVP Player Vehicles +vehNATOPVP = ["I_MRAP_03_F","I_MRAP_03_hmg_F"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "I_Soldier_F"; +NATOOfficer = "I_Officer_F"; +NATOOfficer2 = "I_G_officer_F"; +NATOBodyG = "I_Soldier_SL_F"; +NATOCrew = "I_Crew_F"; +NATOUnarmed = "I_G_Survivor_F"; +NATOMarksman = "I_Soldier_M_F"; +staticCrewOccupants = "I_support_MG_F"; +NATOPilot = "I_Helipilot_F"; + +//Militia Units +if (gameMode != 4) then + { + FIARifleman = "I_C_Soldier_Para_7_F"; + FIAMarksman = "I_C_Soldier_Para_2_F"; + }; + +//Police Units +policeOfficer = FIARifleman; +policeGrunt = FIARifleman; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["I_Soldier_GL_F","I_soldier_F"]; +groupsNATOSniper = ["I_sniper_F","I_spotter_F"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper]; +//Fireteams +groupsNATOAA = ["I_Soldier_TL_F","I_Soldier_AA_F","I_Soldier_AA_F","I_Soldier_AAA_F"]; +groupsNATOAT = ["I_soldier_TL_F","I_soldier_AT_F","I_soldier_AT_F","I_soldier_AAT_F"]; +groupsNATOmid = [["I_Soldier_TL_F","I_Soldier_GL_F","I_Soldier_AR_F","I_Soldier_LAT_F"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["I_soldier_SL_F",NATOGrunt,"I_soldier_LAT_F","I_Soldier_GL_F","I_Soldier_M_F","I_Soldier_AR_F","I_soldier_A_F","I_medic_F"]; +NATOSpecOp = ["I_soldier_SL_F",NATOGrunt,"I_soldier_LAT_F","I_Soldier_GL_F","I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_medic_F"]; +groupsNATOSquad = + [ + NATOSquad, + ["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_support_Mort_F","I_support_AMort_F","I_medic_F"], + ["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_support_MG_F","I_support_AMG_F","I_medic_F"], + ["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_soldier_AA_F","I_soldier_AAA_F","I_medic_F"], + ["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_soldier_AT_F","I_soldier_AAT_F","I_medic_F"], + ["I_soldier_SL_F",NATOGrunt,"I_soldier_TL_F","I_soldier_AR_F","I_soldier_A_F","I_engineer_F","I_engineer_F","I_medic_F"] + ]; + +//Militia Groups +if (gameMode != 4) then + { + //Teams + groupsFIASmall = + [ + ["I_C_Soldier_Para_6_F",FIARifleman], + [FIAMarksman,FIARifleman], + [FIAMarksman,FIAMarksman] + ]; + //Fireteams + groupsFIAMid = + [ + ["I_C_Soldier_Para_2_F","I_C_Soldier_Para_6_F","I_C_Soldier_Para_7_F","I_C_Soldier_Para_4_F"], + ["I_C_Soldier_Para_2_F","I_C_Soldier_Para_6_F","I_C_Soldier_Para_7_F","I_C_Soldier_Para_5_F"] + ]; + //Squads + FIASquad = ["I_C_Soldier_Para_2_F","I_C_Soldier_Para_6_F","I_C_Soldier_Para_7_F","I_C_Soldier_Para_4_F","I_C_Soldier_Para_1_F","I_C_Soldier_Para_7_F","I_C_Soldier_Para_8_F","I_C_Soldier_Para_3_F"]; + groupsFIASquad = [FIASquad]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "I_Quadbike_01_F"; +vehNATOLightArmed = ["I_MRAP_03_hmg_F"]; +vehNATOLightUnarmed = ["I_MRAP_03_F"]; +vehNATOTrucks = ["I_Truck_02_covered_F","I_Truck_02_transport_F"]; +vehNATOCargoTrucks = []; +vehNATOAmmoTruck = "I_Truck_02_ammo_F"; +vehNATORepairTruck = "I_Truck_02_box_F"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["I_APC_Wheeled_03_cannon_F"]; +vehNATOTank = "I_MBT_03_cannon_F"; +vehNATOAA = "I_LT_01_AA_F"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "I_Boat_Armed_01_minigun_F"; +vehNATORBoat = "I_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat]; +//Planes +vehNATOPlane = "I_Plane_Fighter_03_dynamicLoadout_F"; +vehNATOPlaneAA = "I_Plane_Fighter_04_F"; +vehNATOTransportPlanes = []; +//Heli +vehNATOPatrolHeli = "I_Heli_light_03_unarmed_F"; +vehNATOTransportHelis = ["I_Heli_Transport_02_F","I_Heli_light_03_unarmed_F"]; +vehNATOAttackHelis = ["I_Heli_light_03_dynamicLoadout_F"]; +//UAV +vehNATOUAV = "I_UAV_02_dynamicLoadout_F"; +vehNATOUAVSmall = "I_UAV_01_F"; +//Artillery +vehNATOMRLS = "I_Truck_02_MRL_F"; +vehNATOMRLSMags = "12Rnd_230mm_rockets"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "I_Truck_02_fuel_F", "I_Truck_02_medical_F", vehNATORepairTruck,"I_APC_tracked_03_cannon_F"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if (gameMode != 4) then + { + vehFIAArmedCar = "I_C_Offroad_02_LMG_F"; + vehFIATruck = "I_C_Van_01_transport_F"; + vehFIACar = "I_C_Offroad_01_F"; + }; + +//Police Vehicles +vehPoliceCar = vehFIACar; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled +NATOMG = "I_HMG_01_high_F"; +staticATOccupants = "I_static_AT_F"; +staticAAOccupants = "I_static_AA_F"; +NATOMortar = "I_Mortar_01_F"; + +//Static Weapon Bags +MGStaticNATOB = "I_HMG_01_high_weapon_F"; +ATStaticNATOB = "I_AT_01_weapon_F"; +AAStaticNATOB = "I_AA_01_weapon_F"; +MortStaticNATOB = "I_Mortar_01_weapon_F"; +//Short Support +supportStaticNATOB = "I_HMG_01_support_F"; +//Tall Support +supportStaticNATOB2 = "I_HMG_01_support_high_F"; +//Mortar Support +supportStaticNATOB3 = "I_Mortar_01_support_F"; diff --git a/A3-Antistasi/Templates/Vanilla_Occ_NATO_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Altis.sqf new file mode 100644 index 0000000000..eea2c0d38d --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Altis.sqf @@ -0,0 +1,197 @@ +//Call to Blufor Alits Template +if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Occ_AAF_Altis.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "NATO"; + +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "BLU_CTRG_F"; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = ""}; + +//Flag Images +NATOFlag = "Flag_NATO_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_NATO_CO.paa"; +flagNATOmrk = "flag_NATO"; +if (isServer) then {"NATO_carrier" setMarkerText "NATO Carrier"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + ["vanilla_blufor_teamLeader"] call A3A_fnc_getLoadout, + //Medic + ["vanilla_blufor_medic"] call A3A_fnc_getLoadout, + //Autorifleman + ["vanilla_blufor_machineGunner"] call A3A_fnc_getLoadout, + //Marksman + ["vanilla_blufor_marksman"] call A3A_fnc_getLoadout, + //Anti-tank Scout + ["vanilla_blufor_AT"] call A3A_fnc_getLoadout, + //AT2 + ["vanilla_blufor_rifleman"] call A3A_fnc_getLoadout +]; + +//PVP Player Vehicles +vehNATOPVP = ["B_T_MRAP_01_F","B_MRAP_01_hmg_F"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "B_Soldier_F"; +NATOOfficer = "B_Officer_F"; +NATOOfficer2 = "B_G_officer_F"; +NATOBodyG = "B_Patrol_Soldier_TL_F"; +NATOCrew = "B_Crew_F"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "B_Sharpshooter_F"; +staticCrewOccupants = "B_support_MG_F"; +NATOPilot = "B_Helipilot_F"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "B_Soldier_lite_F"; + FIAMarksman = "B_soldier_M_F"; + }; + +//Police Units +policeOfficer = "B_GEN_Commander_F"; +policeGrunt = "B_GEN_Soldier_F"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["B_soldier_GL_F",NATOGrunt]; +groupsNATOSniper = ["B_sniper_F","B_spotter_F"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper,["B_recon_JTAC_F","B_recon_F"]]; +//Fireteams +groupsNATOAA = ["B_Soldier_TL_F","B_soldier_AA_F","B_soldier_AA_F","B_soldier_AAA_F"]; +groupsNATOAT = ["B_soldier_TL_F","B_soldier_AT_F","B_soldier_AT_F","B_soldier_AAT_F"]; +groupsNATOmid = [["B_soldier_TL_F","B_soldier_AR_F","B_soldier_GL_F","B_soldier_LAT_F"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["B_soldier_SL_F",NATOGrunt,"B_soldier_LAT_F",NATOMarksman,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_medic_F"]; +NATOSpecOp = ["B_CTRG_Soldier_TL_tna_F","B_CTRG_Soldier_M_tna_F",NATOBodyG,"B_CTRG_Soldier_LAT_tna_F","B_CTRG_Soldier_JTAC_tna_F","B_CTRG_Soldier_Exp_tna_F","B_CTRG_Soldier_AR_tna_F","B_CTRG_Soldier_Medic_tna_F"]; +groupsNATOSquad = + [ + NATOSquad, + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_support_Mort_F","B_support_AMort_F","B_medic_F"], + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_support_MG_F","B_support_AMG_F","B_medic_F"], + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_soldier_AA_F","B_soldier_AAA_F","B_medic_F"], + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_soldier_AT_F","B_soldier_AAT_F","B_medic_F"], + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_engineer_F","B_engineer_F","B_medic_F"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["B_Soldier_GL_F",FIARifleman], + [FIAMarksman,FIARifleman], + ["B_Sharpshooter_F","B_soldier_M_F"] + ]; + //Fireteams + groupsFIAMid = + [ + ["B_Soldier_TL_F","B_Soldier_GL_F","B_soldier_AR_F","B_soldier_M_F"], + ["B_Soldier_TL_F","B_Soldier_GL_F","B_soldier_AR_F","B_soldier_LAT2_F"], + ["B_Soldier_TL_F","B_soldier_AR_F","B_soldier_AAA_F","B_soldier_AA_F"] + ]; + //Squads + FIASquad = ["B_Soldier_TL_F","B_soldier_AR_F","B_Soldier_GL_F","B_Soldier_lite_F","B_Soldier_lite_F","B_soldier_M_F","B_soldier_LAT2_F","B_medic_F"]; + groupsFIASquad = + [ + FIASquad, + ["B_Soldier_TL_F","B_support_AMG_F","B_Soldier_GL_F","B_Soldier_lite_F","B_support_MG_F","B_soldier_M_F","B_soldier_LAT2_F","B_medic_F"] + ]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_Quadbike_01_F"; +vehNATOLightArmed = ["B_MRAP_01_hmg_F"]; +vehNATOLightUnarmed = ["B_T_MRAP_01_F"]; +vehNATOTrucks = ["B_Truck_01_transport_F","B_Truck_01_covered_F"]; +vehNATOCargoTrucks = ["B_Truck_01_cargo_F", "B_Truck_01_flatbed_F"]; +vehNATOAmmoTruck = "B_Truck_01_ammo_F"; +vehNATORepairTruck = "B_Truck_01_repair_F"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["B_APC_Wheeled_01_cannon_F","B_APC_Tracked_01_rcws_F"]; +vehNATOTank = "B_MBT_01_cannon_F"; +vehNATOAA = "B_APC_Tracked_01_AA_F"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "B_Boat_Armed_01_minigun_F"; +vehNATORBoat = "B_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat,"B_APC_Wheeled_01_cannon_F"]; +//Planes +vehNATOPlane = "B_Plane_CAS_01_F"; +vehNATOPlaneAA = "B_Plane_Fighter_01_F"; +vehNATOTransportPlanes = ["B_T_VTOL_01_infantry_F"]; +//Heli +vehNATOPatrolHeli = "B_Heli_Light_01_F"; +vehNATOTransportHelis = ["B_Heli_Transport_03_F",vehNATOPatrolHeli,"B_Heli_Transport_01_camo_F"]; +vehNATOAttackHelis = ["B_T_VTOL_01_armed_F","B_Heli_Light_01_armed_F","B_Heli_Attack_01_F"]; +//UAV +vehNATOUAV = "B_UAV_02_F"; +vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery +vehNATOMRLS = "B_MBT_01_arty_F"; +vehNATOMRLSMags = "32Rnd_155mm_Mo_shells"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "B_Truck_01_fuel_F", "B_Truck_01_medical_F", vehNATORepairTruck,"B_APC_Tracked_01_CRV_F"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "B_LSV_01_armed_F"; + vehFIATruck = "B_Truck_01_transport_F"; + vehFIACar = "B_LSV_01_unarmed_F"; + }; + +//Police Vehicles +vehPoliceCar = "B_GEN_OFFROAD_01_gen_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "B_HMG_01_high_F"; +staticATOccupants = "B_static_AT_F"; +staticAAOccupants = "B_static_AA_F"; +NATOMortar = "B_Mortar_01_F"; + +//Static Weapon Bags +MGStaticNATOB = "B_HMG_01_high_weapon_F"; +ATStaticNATOB = "B_AT_01_weapon_F"; +AAStaticNATOB = "B_AA_01_weapon_F"; +MortStaticNATOB = "B_Mortar_01_weapon_F"; +//Short Support +supportStaticNATOB = "B_HMG_01_support_F"; +//Tall Support +supportStaticNATOB2 = "B_HMG_01_support_high_F"; +//Mortar Support +supportStaticNATOB3 = "B_Mortar_01_support_F"; diff --git a/A3-Antistasi/Templates/Vanilla_Occ_NATO_Enoch.sqf b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Enoch.sqf new file mode 100644 index 0000000000..eea2c0d38d --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Enoch.sqf @@ -0,0 +1,197 @@ +//Call to Blufor Alits Template +if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Occ_AAF_Altis.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "NATO"; + +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "BLU_CTRG_F"; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = ""}; + +//Flag Images +NATOFlag = "Flag_NATO_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_NATO_CO.paa"; +flagNATOmrk = "flag_NATO"; +if (isServer) then {"NATO_carrier" setMarkerText "NATO Carrier"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + ["vanilla_blufor_teamLeader"] call A3A_fnc_getLoadout, + //Medic + ["vanilla_blufor_medic"] call A3A_fnc_getLoadout, + //Autorifleman + ["vanilla_blufor_machineGunner"] call A3A_fnc_getLoadout, + //Marksman + ["vanilla_blufor_marksman"] call A3A_fnc_getLoadout, + //Anti-tank Scout + ["vanilla_blufor_AT"] call A3A_fnc_getLoadout, + //AT2 + ["vanilla_blufor_rifleman"] call A3A_fnc_getLoadout +]; + +//PVP Player Vehicles +vehNATOPVP = ["B_T_MRAP_01_F","B_MRAP_01_hmg_F"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "B_Soldier_F"; +NATOOfficer = "B_Officer_F"; +NATOOfficer2 = "B_G_officer_F"; +NATOBodyG = "B_Patrol_Soldier_TL_F"; +NATOCrew = "B_Crew_F"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "B_Sharpshooter_F"; +staticCrewOccupants = "B_support_MG_F"; +NATOPilot = "B_Helipilot_F"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "B_Soldier_lite_F"; + FIAMarksman = "B_soldier_M_F"; + }; + +//Police Units +policeOfficer = "B_GEN_Commander_F"; +policeGrunt = "B_GEN_Soldier_F"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["B_soldier_GL_F",NATOGrunt]; +groupsNATOSniper = ["B_sniper_F","B_spotter_F"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper,["B_recon_JTAC_F","B_recon_F"]]; +//Fireteams +groupsNATOAA = ["B_Soldier_TL_F","B_soldier_AA_F","B_soldier_AA_F","B_soldier_AAA_F"]; +groupsNATOAT = ["B_soldier_TL_F","B_soldier_AT_F","B_soldier_AT_F","B_soldier_AAT_F"]; +groupsNATOmid = [["B_soldier_TL_F","B_soldier_AR_F","B_soldier_GL_F","B_soldier_LAT_F"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["B_soldier_SL_F",NATOGrunt,"B_soldier_LAT_F",NATOMarksman,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_medic_F"]; +NATOSpecOp = ["B_CTRG_Soldier_TL_tna_F","B_CTRG_Soldier_M_tna_F",NATOBodyG,"B_CTRG_Soldier_LAT_tna_F","B_CTRG_Soldier_JTAC_tna_F","B_CTRG_Soldier_Exp_tna_F","B_CTRG_Soldier_AR_tna_F","B_CTRG_Soldier_Medic_tna_F"]; +groupsNATOSquad = + [ + NATOSquad, + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_support_Mort_F","B_support_AMort_F","B_medic_F"], + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_support_MG_F","B_support_AMG_F","B_medic_F"], + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_soldier_AA_F","B_soldier_AAA_F","B_medic_F"], + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_soldier_AT_F","B_soldier_AAT_F","B_medic_F"], + ["B_soldier_SL_F",NATOGrunt,"B_soldier_TL_F","B_soldier_AR_F","B_soldier_A_F","B_engineer_F","B_engineer_F","B_medic_F"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["B_Soldier_GL_F",FIARifleman], + [FIAMarksman,FIARifleman], + ["B_Sharpshooter_F","B_soldier_M_F"] + ]; + //Fireteams + groupsFIAMid = + [ + ["B_Soldier_TL_F","B_Soldier_GL_F","B_soldier_AR_F","B_soldier_M_F"], + ["B_Soldier_TL_F","B_Soldier_GL_F","B_soldier_AR_F","B_soldier_LAT2_F"], + ["B_Soldier_TL_F","B_soldier_AR_F","B_soldier_AAA_F","B_soldier_AA_F"] + ]; + //Squads + FIASquad = ["B_Soldier_TL_F","B_soldier_AR_F","B_Soldier_GL_F","B_Soldier_lite_F","B_Soldier_lite_F","B_soldier_M_F","B_soldier_LAT2_F","B_medic_F"]; + groupsFIASquad = + [ + FIASquad, + ["B_Soldier_TL_F","B_support_AMG_F","B_Soldier_GL_F","B_Soldier_lite_F","B_support_MG_F","B_soldier_M_F","B_soldier_LAT2_F","B_medic_F"] + ]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_Quadbike_01_F"; +vehNATOLightArmed = ["B_MRAP_01_hmg_F"]; +vehNATOLightUnarmed = ["B_T_MRAP_01_F"]; +vehNATOTrucks = ["B_Truck_01_transport_F","B_Truck_01_covered_F"]; +vehNATOCargoTrucks = ["B_Truck_01_cargo_F", "B_Truck_01_flatbed_F"]; +vehNATOAmmoTruck = "B_Truck_01_ammo_F"; +vehNATORepairTruck = "B_Truck_01_repair_F"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["B_APC_Wheeled_01_cannon_F","B_APC_Tracked_01_rcws_F"]; +vehNATOTank = "B_MBT_01_cannon_F"; +vehNATOAA = "B_APC_Tracked_01_AA_F"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "B_Boat_Armed_01_minigun_F"; +vehNATORBoat = "B_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat,"B_APC_Wheeled_01_cannon_F"]; +//Planes +vehNATOPlane = "B_Plane_CAS_01_F"; +vehNATOPlaneAA = "B_Plane_Fighter_01_F"; +vehNATOTransportPlanes = ["B_T_VTOL_01_infantry_F"]; +//Heli +vehNATOPatrolHeli = "B_Heli_Light_01_F"; +vehNATOTransportHelis = ["B_Heli_Transport_03_F",vehNATOPatrolHeli,"B_Heli_Transport_01_camo_F"]; +vehNATOAttackHelis = ["B_T_VTOL_01_armed_F","B_Heli_Light_01_armed_F","B_Heli_Attack_01_F"]; +//UAV +vehNATOUAV = "B_UAV_02_F"; +vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery +vehNATOMRLS = "B_MBT_01_arty_F"; +vehNATOMRLSMags = "32Rnd_155mm_Mo_shells"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "B_Truck_01_fuel_F", "B_Truck_01_medical_F", vehNATORepairTruck,"B_APC_Tracked_01_CRV_F"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "B_LSV_01_armed_F"; + vehFIATruck = "B_Truck_01_transport_F"; + vehFIACar = "B_LSV_01_unarmed_F"; + }; + +//Police Vehicles +vehPoliceCar = "B_GEN_OFFROAD_01_gen_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "B_HMG_01_high_F"; +staticATOccupants = "B_static_AT_F"; +staticAAOccupants = "B_static_AA_F"; +NATOMortar = "B_Mortar_01_F"; + +//Static Weapon Bags +MGStaticNATOB = "B_HMG_01_high_weapon_F"; +ATStaticNATOB = "B_AT_01_weapon_F"; +AAStaticNATOB = "B_AA_01_weapon_F"; +MortStaticNATOB = "B_Mortar_01_weapon_F"; +//Short Support +supportStaticNATOB = "B_HMG_01_support_F"; +//Tall Support +supportStaticNATOB2 = "B_HMG_01_support_high_F"; +//Mortar Support +supportStaticNATOB3 = "B_Mortar_01_support_F"; diff --git a/A3-Antistasi/Templates/Vanilla_Occ_NATO_Tanoa.sqf b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Tanoa.sqf new file mode 100644 index 0000000000..4297d90165 --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Tanoa.sqf @@ -0,0 +1,196 @@ +//Call to Altis Template +if (worldName == "Altis") exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Occ_NATO_Altis.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +//Name Used for notifications +nameOccupants = "NATO"; + +//Police Faction +factionGEN = "BLU_GEN_F"; +//SF Faction +factionMaleOccupants = "BLU_CTRG_F"; +//Miltia Faction +if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "BLU_G_F"}; + +//Flag Images +NATOFlag = "Flag_NATO_F"; +NATOFlagTexture = "\A3\Data_F\Flags\Flag_NATO_CO.paa"; +flagNATOmrk = "flag_NATO"; +if (isServer) then {"NATO_carrier" setMarkerText "NATO Carrier"}; + +//Loot Crate +NATOAmmobox = "B_supplyCrate_F"; + +//////////////////////////////////// +// PVP LOADOUTS AND VEHICLES /// +//////////////////////////////////// +//PvP Loadouts +NATOPlayerLoadouts = [ + //Team Leader + ["vanilla_blufor_teamLeader"] call A3A_fnc_getLoadout, + //Medic + ["vanilla_blufor_medic"] call A3A_fnc_getLoadout, + //Autorifleman + ["vanilla_blufor_machineGunner"] call A3A_fnc_getLoadout, + //Marksman + ["vanilla_blufor_marksman"] call A3A_fnc_getLoadout, + //Anti-tank Scout + ["vanilla_blufor_AT"] call A3A_fnc_getLoadout, + //AT2 + ["vanilla_blufor_rifleman"] call A3A_fnc_getLoadout +]; + +//PVP Player Vehicles +vehNATOPVP = ["B_T_MRAP_01_F","B_T_LSV_01_unarmed_F","B_T_LSV_01_armed_F"]; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//Military Units +NATOGrunt = "B_T_Soldier_F"; +NATOOfficer = "B_T_Officer_F"; +NATOOfficer2 = "B_G_officer_F"; +NATOBodyG = "B_CTRG_Soldier_tna_F"; +NATOCrew = "B_T_Crew_F"; +NATOUnarmed = "B_G_Survivor_F"; +NATOMarksman = "B_T_Soldier_M_F"; +staticCrewOccupants = "B_T_support_MG_F"; +NATOPilot = "B_T_Pilot_F"; + +//Militia Units +if ((gameMode != 4) and (!hasFFAA)) then + { + FIARifleman = "B_G_Soldier_F"; + FIAMarksman = "B_G_Sharpshooter_F"; + }; + +//Police Units +policeOfficer = "B_GEN_Commander_F"; +policeGrunt = "B_GEN_Soldier_F"; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +//Military Groups +//Teams +groupsNATOSentry = ["B_T_soldier_GL_F",NATOGrunt]; +groupsNATOSniper = ["B_T_sniper_F","B_T_spotter_F"]; +groupsNATOsmall = [groupsNATOSentry,groupsNATOSniper,["B_T_recon_M_F","B_T_recon_F"]]; +//Fireteams +groupsNATOAA = ["B_T_soldier_TL_F","B_T_soldier_AA_F","B_T_soldier_AA_F","B_T_soldier_AAA_F"]; +groupsNATOAT = ["B_T_soldier_TL_F","B_T_soldier_AT_F","B_T_soldier_AT_F","B_T_soldier_AAT_F"]; +groupsNATOmid = [["B_T_soldier_TL_F","B_T_soldier_AR_F","B_T_soldier_GL_F","B_T_soldier_LAT_F"],groupsNATOAA,groupsNATOAT]; +//Squads +NATOSquad = ["B_T_soldier_SL_F",NATOGrunt,"B_T_soldier_LAT_F",NATOMarksman,"B_T_soldier_TL_F","B_T_soldier_AR_F","B_T_soldier_A_F","B_T_medic_F"]; +NATOSpecOp = ["B_CTRG_Soldier_TL_tna_F","B_CTRG_Soldier_M_tna_F",NATOBodyG,"B_CTRG_Soldier_LAT_tna_F","B_CTRG_Soldier_JTAC_tna_F","B_CTRG_Soldier_Exp_tna_F","B_CTRG_Soldier_AR_tna_F","B_CTRG_Soldier_Medic_tna_F"]; +groupsNATOSquad = + [ + NATOSquad, + ["B_T_soldier_SL_F","B_T_soldier_AR_F","B_T_soldier_GL_F",NATOMarksman,"B_T_soldier_AT_F","B_T_soldier_AAT_F","B_T_soldier_A_F","B_T_medic_F"], + ["B_T_soldier_SL_F","B_T_soldier_LAT_F","B_T_soldier_TL_F","B_T_soldier_AR_F","B_T_soldier_A_F","B_T_Support_Mort_F","B_support_AMort_F","B_T_medic_F"], + ["B_T_soldier_SL_F","B_T_soldier_AR_F","B_T_soldier_GL_F",NATOMarksman,"B_T_soldier_AA_F","B_T_soldier_AAA_F","B_T_soldier_A_F","B_T_medic_F"], + ["B_T_soldier_SL_F","B_T_soldier_AR_F","B_T_soldier_GL_F",NATOMarksman,"B_T_engineer_F","B_T_engineer_F","B_T_soldier_A_F","B_T_medic_F"] + ]; + +//Militia Groups +if ((gameMode != 4) and (!hasFFAA)) then + { + //Teams + groupsFIASmall = + [ + ["B_G_Soldier_GL_F","B_G_Soldier_F"], + ["B_G_Soldier_M_F","B_G_Soldier_F"], + ["B_G_Sharpshooter_F","B_G_Soldier_M_F"] + ]; + //Fireteams + groupsFIAMid = + [ + ["B_G_Soldier_SL_F","B_G_Sharpshooter_F","B_G_Soldier_AR_F","B_G_Soldier_A_F"], + ["B_G_Soldier_TL_F","B_G_Soldier_AR_F","B_G_Soldier_GL_F","B_G_Soldier_LAT_F"], + ["B_G_Soldier_TL_F","B_G_Soldier_LAT_F","B_G_Soldier_LAT_F","B_G_Soldier_LAT_F"] + ]; + //Squads + FIASquad = ["B_G_soldier_SL_F","B_G_soldier_F","B_G_soldier_LAT_F","B_G_Soldier_M_F","B_G_soldier_TL_F","B_G_soldier_AR_F","B_G_Soldier_A_F","B_G_medic_F"]; + groupsFIASquad = + [ + FIASquad, + ["B_G_soldier_SL_F","B_G_soldier_LAT_F","B_G_Soldier_M_F","B_G_soldier_TL_F","B_G_Soldier_A_F","B_support_MG_F","B_support_AMG_F","B_G_medic_F"] + ]; + }; + +//Police Groups +//Teams +groupsNATOGen = [policeOfficer,policeGrunt]; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +//Lite +vehNATOBike = "B_T_Quadbike_01_F"; +vehNATOLightArmed = ["B_T_LSV_01_armed_F"]; +vehNATOLightUnarmed = ["B_T_MRAP_01_F","B_T_LSV_01_unarmed_F"]; +vehNATOTrucks = ["B_T_Truck_01_transport_F","B_T_Truck_01_covered_F"]; +vehNATOCargoTrucks = ["B_T_Truck_01_cargo_F","B_T_Truck_01_flatbed_F"]; +vehNATOAmmoTruck = "B_T_Truck_01_ammo_F"; +vehNATORepairTruck = "B_T_Truck_01_repair_F"; +vehNATOLight = vehNATOLightArmed + vehNATOLightUnarmed; +//Armored +vehNATOAPC = ["B_T_APC_Wheeled_01_cannon_F","B_T_APC_Tracked_01_rcws_F"]; +vehNATOTank = "B_T_MBT_01_cannon_F"; +vehNATOAA = "B_T_APC_Tracked_01_AA_F"; +vehNATOAttack = vehNATOAPC + [vehNATOTank]; +//Boats +vehNATOBoat = "B_T_Boat_Armed_01_minigun_F"; +vehNATORBoat = "B_T_Boat_Transport_01_F"; +vehNATOBoats = [vehNATOBoat,vehNATORBoat,"B_T_APC_Wheeled_01_cannon_F"]; +//Planes +vehNATOPlane = "B_Plane_CAS_01_F"; +vehNATOPlaneAA = "B_Plane_Fighter_01_F"; +vehNATOTransportPlanes = ["B_T_VTOL_01_infantry_F"]; +//Heli +vehNATOPatrolHeli = "B_Heli_Light_01_F"; +vehNATOTransportHelis = ["B_Heli_Transport_03_F",vehNATOPatrolHeli,"B_Heli_Transport_01_camo_F"]; +vehNATOAttackHelis = ["B_T_VTOL_01_armed_F","B_Heli_Light_01_armed_F","B_Heli_Attack_01_F"]; +//UAV +vehNATOUAV = "B_UAV_02_F"; +vehNATOUAVSmall = "B_UAV_01_F"; +//Artillery +vehNATOMRLS = "B_T_MBT_01_arty_F"; +vehNATOMRLSMags = "32Rnd_155mm_Mo_shells"; +//Combined Arrays +vehNATONormal = vehNATOLight + vehNATOTrucks + [vehNATOAmmoTruck, "B_T_Truck_01_fuel_F", "B_T_Truck_01_medical_F", vehNATORepairTruck,"B_T_APC_Tracked_01_CRV_F"]; +vehNATOAir = vehNATOTransportHelis + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA] + vehNATOTransportPlanes; + +//Militia Vehicles +if ((gameMode != 4) and (!hasFFAA)) then + { + vehFIAArmedCar = "B_G_Offroad_01_armed_F"; + vehFIATruck = "B_G_van_01_transport_F"; + vehFIACar = "B_G_Offroad_01_F"; + }; + +//Police Vehicles +vehPoliceCar = "B_GEN_OFFROAD_01_gen_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Statics +NATOMG = "B_HMG_01_high_F"; +staticATOccupants = "B_T_static_AT_F"; +staticAAOccupants = "B_static_AA_F"; +NATOMortar = "B_T_Mortar_01_F"; + +//Static Weapon Bags +MGStaticNATOB = "B_HMG_01_Weapon_grn_F"; +ATStaticNATOB = "B_AT_01_weapon_F"; +AAStaticNATOB = "B_AA_01_weapon_F"; +MortStaticNATOB = "B_Mortar_01_weapon_F"; +//Short Support +supportStaticNATOB = "B_HMG_01_support_grn_F"; +//Tall Support +supportStaticNATOB2 = "B_HMG_01_support_high_F"; +//Mortar Support +supportStaticNATOB3 = "B_Mortar_01_support_grn_F"; diff --git a/A3-Antistasi/Templates/Vanilla_Reb_FIA_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Reb_FIA_Altis.sqf new file mode 100644 index 0000000000..e31fd5c7d6 --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Reb_FIA_Altis.sqf @@ -0,0 +1,110 @@ +//Blufor Altis Template Call +if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Reb_FIA_B_Altis.sqf"}; +if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Reb_SDK_Tanoa.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = if (worldName == "Tanoa") then {"SDK"} else {"FIA"}; +SDKFlag = "Flag_Altis_F"; +SDKFlagTexture = "\A3\Data_F\Flags\Flag_Altis_CO.paa"; +typePetros = "I_G_officer_F"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "I_G_Soldier_unarmed_F"; +SDKUnarmed = "I_G_Survivor_F"; +SDKSniper = ["I_G_Sharpshooter_F","I_ghillie_ard_F"]; +SDKATman = ["I_G_Soldier_LAT2_F","I_Soldier_LAT2_F"]; +SDKMedic = ["I_G_medic_F","I_medic_F"]; +SDKMG = ["I_G_Soldier_AR_F","I_Soldier_AR_F"]; +SDKExp = ["I_G_Soldier_exp_F","I_Soldier_exp_F"]; +SDKGL = ["I_G_Soldier_GL_F","I_Soldier_GL_F"]; +SDKMil = ["I_G_Soldier_lite_F","I_Soldier_lite_F"]; +SDKSL = ["I_G_Soldier_SL_F","I_Soldier_SL_F"]; +SDKEng = ["I_G_engineer_F","I_engineer_F"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "I_G_Quadbike_01_F"; +vehSDKLightArmed = "I_G_Offroad_01_armed_F"; +vehSDKAT = "I_G_Offroad_01_AT_F"; +vehSDKLightUnarmed = "I_G_Offroad_01_F"; +vehSDKTruck = "I_G_Van_01_transport_F"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "I_C_Plane_civil_01_F"; +vehSDKBoat = "I_G_Boat_Transport_01_F"; +vehSDKRepair = "I_G_Offroad_01_repair_F"; + +//Civilian Vehicles +civCar = "C_Offroad_01_F"; +civTruck = "C_Van_01_transport_F"; +civHeli = "C_Heli_Light_01_civil_F"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "I_HMG_01_high_F"; +staticATteamPlayer = "I_Static_AT_F"; +staticAAteamPlayer = "I_Static_AA_F"; +SDKMortar = "I_G_Mortar_01_F"; +SDKMortarHEMag = "8Rnd_82mm_Mo_shells"; +SDKMortarSmokeMag = "8Rnd_82mm_Mo_Smoke_white"; + +//Static Weapon Bags +MGStaticSDKB = "I_HMG_01_high_weapon_F"; +ATStaticSDKB = "I_AT_01_weapon_F"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "I_Mortar_01_weapon_F"; +//Short Support +supportStaticSDKB = "I_HMG_01_support_F"; +//Tall Support +supportStaticsSDKB2 = "I_HMG_01_support_high_F"; +//Mortar Support +supportStaticsSDKB3 = "I_Mortar_01_support_F"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "ATMine_Range_Mag"; +APERSMineMag = "APERSMine_Range_Mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["DemoCharge_Remote_Mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["SatchelCharge_Remote_Mag", 1], ["DemoCharge_Remote_Mag", 2]]; + +//Starting Unlocks +initialRebelEquipment append ["hgun_Pistol_heavy_02_F","hgun_P07_F","SMG_01_F","SMG_02_F"]; +initialRebelEquipment append ["SMG_01_F","SMG_02_F"]; +initialRebelEquipment append ["6Rnd_45ACP_Cylinder","16Rnd_9x21_Mag","30Rnd_45ACP_Mag_SMG_01","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"]; +initialRebelEquipment append ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr","B_FieldPack_khk"]; +initialRebelEquipment append ["V_Chestrig_blk","V_Chestrig_rgr","V_Chestrig_khk","V_Chestrig_oli","V_BandollierB_blk","V_BandollierB_cbr","V_BandollierB_rgr","V_BandollierB_khk","V_BandollierB_oli","V_Rangemaster_belt"]; +initialRebelEquipment append ["Binocular","acc_flashlight"]; +//TFAR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]}; +if (startLR) then {initialRebelEquipment pushBack "tf_anprc155"}; diff --git a/A3-Antistasi/Templates/Vanilla_Reb_FIA_B_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Reb_FIA_B_Altis.sqf new file mode 100644 index 0000000000..d424a8637f --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Reb_FIA_B_Altis.sqf @@ -0,0 +1,107 @@ +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = "FIA"; +SDKFlag = "Flag_FIA_F"; +SDKFlagTexture = "\A3\Data_F\Flags\Flag_FIA_CO.paa"; +typePetros = "B_G_officer_F"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "B_G_Soldier_unarmed_F"; +SDKUnarmed = "B_G_Survivor_F"; +SDKSniper = ["B_G_Soldier_M_F","B_G_Sharpshooter_F"]; +SDKATman = ["B_G_Soldier_LAT2_F","B_G_Soldier_LAT_F"]; +SDKMedic = ["B_G_medic_F","B_G_medic_F"]; +SDKMG = ["B_G_Soldier_AR_F","B_G_Soldier_AR_F"]; +SDKExp = ["B_G_Soldier_exp_F","B_G_Soldier_exp_F"]; +SDKGL = ["B_G_Soldier_GL_F","B_G_Soldier_GL_F"]; +SDKMil = ["B_G_Soldier_lite_F","B_G_Soldier_lite_F"]; +SDKSL = ["B_G_Soldier_SL_F","B_G_Soldier_SL_F"]; +SDKEng = ["B_G_engineer_F","B_G_engineer_F"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "B_G_Quadbike_01_F"; +vehSDKLightArmed = "B_G_Offroad_01_armed_F"; +vehSDKAT = "B_G_Offroad_01_AT_F"; +vehSDKLightUnarmed = "B_G_Offroad_01_F"; +vehSDKTruck = "B_G_Van_01_transport_F"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "C_Plane_Civil_01_F"; +vehSDKBoat = "B_G_Boat_Transport_01_F"; +vehSDKRepair = "B_G_Offroad_01_repair_F"; + +//Civilian Vehicles +civCar = "C_Offroad_01_F"; +civTruck = "C_Van_01_transport_F"; +civHeli = "C_Heli_Light_01_civil_F"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "B_HMG_01_high_F"; +staticATteamPlayer = "B_Static_AT_F"; +staticAAteamPlayer = "B_Static_AA_F"; +SDKMortar = "B_G_Mortar_01_F"; +SDKMortarHEMag = "8Rnd_82mm_Mo_shells"; +SDKMortarSmokeMag = "8Rnd_82mm_Mo_Smoke_white"; + +//Static Weapon Bags +MGStaticSDKB = "B_HMG_01_high_weapon_F"; +ATStaticSDKB = "B_AT_01_weapon_F"; +AAStaticSDKB = "B_AA_01_weapon_F"; +MortStaticSDKB = "B_Mortar_01_weapon_F"; +//Short Support +supportStaticSDKB = "B_HMG_01_support_F"; +//Tall Support +supportStaticsSDKB2 = "B_HMG_01_support_high_F"; +//Mortar Support +supportStaticsSDKB3 = "B_Mortar_01_support_F"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "ATMine_Range_Mag"; +APERSMineMag = "APERSMine_Range_Mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["DemoCharge_Remote_Mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["SatchelCharge_Remote_Mag", 1], ["DemoCharge_Remote_Mag", 2]]; + +//Starting Unlocks +initialRebelEquipment append ["hgun_Pistol_heavy_02_F","hgun_ACPC2_F","hgun_PDW2000_F","SMG_01_F"]; +initialRebelEquipment append ["SMG_01_F","hgun_PDW2000_F"]; +initialRebelEquipment append ["6Rnd_45ACP_Cylinder","9Rnd_45ACP_Mag","30Rnd_45ACP_Mag_SMG_01","30Rnd_9x21_Mag","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"]; +initialRebelEquipment append ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr","B_FieldPack_khk"]; +initialRebelEquipment append ["V_Chestrig_blk","V_Chestrig_rgr","V_Chestrig_khk","V_Chestrig_oli","V_BandollierB_blk","V_BandollierB_cbr","V_BandollierB_rgr","V_BandollierB_khk","V_BandollierB_oli","V_Rangemaster_belt"]; +initialRebelEquipment append ["Binocular","acc_flashlight"]; +//TFAR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_rf7800str"]}; +if (startLR) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"}; diff --git a/A3-Antistasi/Templates/Vanilla_Reb_FIA_Enoch.sqf b/A3-Antistasi/Templates/Vanilla_Reb_FIA_Enoch.sqf new file mode 100644 index 0000000000..c955cce787 --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Reb_FIA_Enoch.sqf @@ -0,0 +1,109 @@ +//Blufor Altis Template Call +if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Reb_FIA_B_Altis.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = if (worldName == "Tanoa") then {"SDK"} else {"FIA"}; +SDKFlag = "Flag_Altis_F"; +SDKFlagTexture = "\A3\Data_F\Flags\Flag_Altis_CO.paa"; +typePetros = "I_G_officer_F"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "I_G_Soldier_unarmed_F"; +SDKUnarmed = "I_G_Survivor_F"; +SDKSniper = ["I_G_Sharpshooter_F","I_ghillie_ard_F"]; +SDKATman = ["I_G_Soldier_LAT2_F","I_Soldier_LAT2_F"]; +SDKMedic = ["I_G_medic_F","I_medic_F"]; +SDKMG = ["I_G_Soldier_AR_F","I_Soldier_AR_F"]; +SDKExp = ["I_G_Soldier_exp_F","I_Soldier_exp_F"]; +SDKGL = ["I_G_Soldier_GL_F","I_Soldier_GL_F"]; +SDKMil = ["I_G_Soldier_lite_F","I_Soldier_lite_F"]; +SDKSL = ["I_G_Soldier_SL_F","I_Soldier_SL_F"]; +SDKEng = ["I_G_engineer_F","I_engineer_F"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "I_G_Quadbike_01_F"; +vehSDKLightArmed = "I_G_Offroad_01_armed_F"; +vehSDKAT = "I_G_Offroad_01_AT_F"; +vehSDKLightUnarmed = "I_G_Offroad_01_F"; +vehSDKTruck = "I_G_Van_01_transport_F"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "I_C_Plane_civil_01_F"; +vehSDKBoat = "I_G_Boat_Transport_01_F"; +vehSDKRepair = "I_G_Offroad_01_repair_F"; + +//Civilian Vehicles +civCar = "C_Offroad_01_F"; +civTruck = "C_Van_01_transport_F"; +civHeli = "C_Heli_Light_01_civil_F"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "I_HMG_01_high_F"; +staticATteamPlayer = "I_Static_AT_F"; +staticAAteamPlayer = "I_Static_AA_F"; +SDKMortar = "I_G_Mortar_01_F"; +SDKMortarHEMag = "8Rnd_82mm_Mo_shells"; +SDKMortarSmokeMag = "8Rnd_82mm_Mo_Smoke_white"; + +//Static Weapon Bags +MGStaticSDKB = "I_HMG_01_high_weapon_F"; +ATStaticSDKB = "I_AT_01_weapon_F"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "I_Mortar_01_weapon_F"; +//Short Support +supportStaticSDKB = "I_HMG_01_support_F"; +//Tall Support +supportStaticsSDKB2 = "I_HMG_01_support_high_F"; +//Mortar Support +supportStaticsSDKB3 = "I_Mortar_01_support_F"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "ATMine_Range_Mag"; +APERSMineMag = "APERSMine_Range_Mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["DemoCharge_Remote_Mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["SatchelCharge_Remote_Mag", 1], ["DemoCharge_Remote_Mag", 2]]; + +//Starting Unlocks +initialRebelEquipment append ["hgun_Pistol_heavy_02_F","hgun_Pistol_heavy_01_green_F","sgun_HunterShotgun_01_F","SMG_02_F"]; +initialRebelEquipment append ["SMG_02_F"]; +initialRebelEquipment append ["6Rnd_45ACP_Cylinder","9Rnd_45ACP_Mag","2Rnd_12Guage_Pellets","2Rnd_12Guage_Slug","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"]; +initialRebelEquipment append ["B_FieldPack_blk","B_FieldPack_oucamo","B_FieldPack_cbr","B_FieldPack_oli","B_FieldPack_green_F","B_FieldPack_taiga_F"]; +initialRebelEquipment append ["V_Chestrig_blk","V_Chestrig_rgr","V_Chestrig_khk","V_Chestrig_oli","V_BandollierB_blk","V_SmershVest_01_F","V_BandollierB_rgr","V_SmershVest_01_radio_F","V_BandollierB_oli","V_Rangemaster_belt"]; +initialRebelEquipment append ["Binocular","acc_flashlight"]; +//TFAR Unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]}; +if (startLR) then {initialRebelEquipment pushBack "tf_anprc155"}; diff --git a/A3-Antistasi/Templates/Vanilla_Reb_SDK_Tanoa.sqf b/A3-Antistasi/Templates/Vanilla_Reb_SDK_Tanoa.sqf new file mode 100644 index 0000000000..d0e2ec077c --- /dev/null +++ b/A3-Antistasi/Templates/Vanilla_Reb_SDK_Tanoa.sqf @@ -0,0 +1,109 @@ +//Alits Template Call +if (worldName == "Altis") exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Reb_FIA_Altis.sqf"}; +//////////////////////////////////// +// NAMES AND FLAGS /// +//////////////////////////////////// +nameTeamPlayer = if (worldName == "Tanoa") then {"SDK"} else {"FIA"}; +SDKFlag = "Flag_Syndikat_F"; +SDKFlagTexture = "\A3\Data_F_exp\Flags\Flag_Synd_CO.paa"; +typePetros = "I_C_Soldier_Camo_F"; + +//////////////////////////////////// +// UNITS /// +//////////////////////////////////// +//First Entry is Guerilla, Second Entry is Para/Military +staticCrewTeamPlayer = "I_G_Soldier_unarmed_F"; +SDKUnarmed = "I_G_Survivor_F"; +SDKSniper = ["I_C_Soldier_Bandit_5_F","I_C_Soldier_Para_7_F"]; +SDKATman = ["I_C_Soldier_Bandit_2_F","I_C_Soldier_Para_5_F"]; +SDKMedic = ["I_C_Soldier_Bandit_1_F","I_C_Soldier_Para_3_F"]; +SDKMG = ["I_C_Soldier_Bandit_3_F","I_C_Soldier_Para_4_F"]; +SDKExp = ["I_C_Soldier_Bandit_8_F","I_C_Soldier_Para_8_F"]; +SDKGL = ["I_C_Soldier_Bandit_6_F","I_C_Soldier_Para_6_F"]; +SDKMil = ["I_C_Soldier_Bandit_7_F","I_C_Soldier_Para_1_F"]; +SDKSL = ["I_C_Soldier_Bandit_4_F","I_C_Soldier_Para_2_F"]; +SDKEng = ["I_G_engineer_F","I_G_engineer_F"]; + +//////////////////////////////////// +// GROUPS /// +//////////////////////////////////// +groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; +groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; +groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; +groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; +groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; +groupsSDKSniper = [SDKSniper,SDKSniper]; +groupsSDKSentry = [SDKGL,SDKMil]; + +//Rebel Unit Tiers (for costs) +sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; +sdkTier2 = SDKMedic + SDKExp + SDKEng; +sdkTier3 = SDKSL + SDKSniper; +soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; + +//////////////////////////////////// +// VEHICLES /// +//////////////////////////////////// +//Military Vehicles +vehSDKBike = "I_G_Quadbike_01_F"; +vehSDKLightArmed = "I_G_Offroad_01_armed_F"; +vehSDKAT = "I_G_Offroad_02_AT_F"; +vehSDKLightUnarmed = "I_G_Offroad_01_F"; +vehSDKTruck = "I_C_Van_01_Transport_F"; +//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; +vehSDKPlane = "I_C_Plane_civil_01_F"; +vehSDKBoat = "I_C_Boat_Transport_01_F"; +vehSDKRepair = "B_G_Offroad_01_repair_F"; + +//Civilian Vehicles +civCar = "C_Offroad_01_F"; +civTruck = "C_Van_01_transport_F"; +civHeli = "C_Heli_Light_01_civil_F"; +civBoat = "C_Boat_Transport_02_F"; + +//////////////////////////////////// +// STATIC WEAPONS /// +//////////////////////////////////// +//Assembled Static Weapons +SDKMGStatic = "I_HMG_01_high_F"; +staticATteamPlayer = "I_Static_AT_F"; +staticAAteamPlayer = "I_Static_AA_F"; +SDKMortar = "I_G_Mortar_01_F"; +SDKMortarHEMag = "8Rnd_82mm_Mo_shells"; +SDKMortarSmokeMag = "8Rnd_82mm_Mo_Smoke_white"; + +//Static Weapon Bags +MGStaticSDKB = "I_HMG_01_high_weapon_F"; +ATStaticSDKB = "I_AT_01_weapon_F"; +AAStaticSDKB = "I_AA_01_weapon_F"; +MortStaticSDKB = "I_Mortar_01_weapon_F"; +//Short Support +supportStaticSDKB = "I_HMG_01_support_F"; +//Tall Support +supportStaticsSDKB2 = "I_HMG_01_support_high_F"; +//Mortar Support +supportStaticsSDKB3 = "I_Mortar_01_support_F"; + +//////////////////////////////////// +// ITEMS /// +//////////////////////////////////// +//Mines +ATMineMag = "ATMine_Range_Mag"; +APERSMineMag = "APERSMine_Range_Mag"; + +//Breaching explosives +//Breaching APCs needs one demo charge +breachingExplosivesAPC = [["DemoCharge_Remote_Mag", 1]]; +//Breaching tanks needs one satchel charge or two demo charges +breachingExplosivesTank = [["SatchelCharge_Remote_Mag", 1], ["DemoCharge_Remote_Mag", 2]]; + +//Starting Unlocks +initialRebelEquipment append ["hgun_Pistol_01_F","hgun_P07_khk_F","SMG_05_F","hgun_PDW2000_F"]; +initialRebelEquipment append ["SMG_05_F","hgun_PDW2000_F"]; +initialRebelEquipment append ["10Rnd_9x21_Mag","16Rnd_9x21_Mag","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"]; +initialRebelEquipment append ["B_FieldPack_blk","B_FieldPack_oucamo","B_FieldPack_cbr","B_FieldPack_oli","B_FieldPack_ghex_F"]; +initialRebelEquipment append ["V_Chestrig_blk","V_Chestrig_rgr","V_Chestrig_khk","V_Chestrig_oli","V_BandollierB_blk","V_BandollierB_ghex","V_BandollierB_rgr","V_BandollierB_oli","V_Rangemaster_belt","V_TacChestrig_cbr_F","V_TacChestrig_oli_F","V_TacChestrig_grn_F"]; +initialRebelEquipment append ["Binocular","acc_flashlight"]; +//TFAR unlocks +if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]}; +if (startLR) then {initialRebelEquipment pushBack "tf_anprc155"}; diff --git a/A3-Antistasi/Templates/teamPlayer3CBCCM.sqf b/A3-Antistasi/Templates/teamPlayer3CBCCM.sqf deleted file mode 100644 index d9b19f998d..0000000000 --- a/A3-Antistasi/Templates/teamPlayer3CBCCM.sqf +++ /dev/null @@ -1,116 +0,0 @@ -if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\teamPlayerBlu3CBUN.sqf"}; -if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\teamPlayer3CBCCMT.sqf"}; - -SDKMortar = "rhsgref_ins_g_2b14"; -SDKMortarHEMag = "rhs_mag_3vo18_10"; -SDKMortarSmokeMag = "rhs_mag_d832du_10"; -SDKMGStatic = "UK3CB_TKP_I_NSV"; -staticATteamPlayer = "UK3CB_UN_I_SPG9"; -staticAAteamPlayer = "UK3CB_UN_I_ZU23"; - -staticCrewTeamPlayer = "UK3CB_CCM_I_COM"; -SDKUnarmed = "UK3CB_CHC_I_SPY"; -SDKSniper = ["UK3CB_CCM_I_MK","UK3CB_CCM_I_SNI"]; -SDKATman = ["UK3CB_CCM_I_AT","UK3CB_CCM_I_AT"]; -SDKMedic = ["UK3CB_CCM_I_MD","UK3CB_CCM_I_MD"]; -SDKMG = ["UK3CB_CCM_I_AR","UK3CB_CCM_I_AR"]; -SDKExp = ["UK3CB_CCM_I_DEM","UK3CB_CCM_I_DEM"]; -SDKGL = ["UK3CB_CCM_I_RIF_LITE","UK3CB_CCM_I_RIF_LITE"]; -SDKMil = ["UK3CB_CCM_I_RIF_BOLT","UK3CB_CCM_I_RIF_1"]; -SDKSL = ["UK3CB_CCM_I_TL","UK3CB_CCM_I_OFF"]; -SDKEng = ["UK3CB_CCM_I_ENG","UK3CB_CCM_I_ENG"]; - -vehSDKBike = "UK3CB_CCM_I_Golf"; -vehSDKLightArmed = "UK3CB_CCM_I_Datsun_Pkm"; -vehSDKAT = "UK3CB_CCM_I_Hilux_Spg"; -vehSDKLightUnarmed = "UK3CB_CCM_I_Datsun_Open"; -vehSDKTruck = "UK3CB_CCM_I_V3S_Closed"; -//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; -vehSDKPlane = "UK3CB_CHC_I_Antonov_AN2"; -vehSDKBoat = "I_C_Boat_Transport_01_F"; -vehSDKRepair = "UK3CB_CCM_I_V3S_Repair"; -SDKFlag = "Flag_CCM_B"; -SDKFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_CCM\Flag\ccm_i_flag_co.paa"; -typePetros = "UK3CB_TKP_I_OFF"; - -supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; -ATStaticSDKB = "RHS_SPG9_Gun_Bag"; -MGStaticSDKB = "RHS_DShkM_Gun_Bag"; -supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; -AAStaticSDKB = "I_AA_01_weapon_F"; -MortStaticSDKB = "RHS_Podnos_Gun_Bag"; -supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; - -civCar = "UK3CB_CHC_C_Ikarus"; -civTruck = "UK3CB_CHC_C_V3S_Recovery"; -civHeli = "UK3CB_CHC_C_Mi8AMT"; -civBoat = "C_Rubberboat"; - -arrayCivVeh = ["UK3CB_CHC_C_Datsun_Civ_Closed","UK3CB_CHC_C_Datsun_Civ_Open","UK3CB_CHC_C_Gaz24","UK3CB_CHC_C_Golf","UK3CB_CHC_C_Hatchback","UK3CB_CHC_C_Hilux_Civ_Open","UK3CB_CHC_C_Hilux_Civ_Closed","UK3CB_CHC_C_Ikarus","UK3CB_CHC_C_Kamaz_Covered","UK3CB_CHC_C_Kamaz_Fuel","UK3CB_CHC_C_Kamaz_Open","UK3CB_CHC_C_Kamaz_Repair","UK3CB_CHC_C_Lada","UK3CB_CHC_C_LR_Open","UK3CB_CHC_C_LR_Closed","UK3CB_CHC_C_S1203","UK3CB_CHC_C_S1203_Amb","UK3CB_CHC_C_Sedan","UK3CB_CHC_C_Skoda","UK3CB_CHC_C_Tractor","UK3CB_CHC_C_Tractor_Old","UK3CB_CHC_C_UAZ_Closed","UK3CB_CHC_C_UAZ_Open","UK3CB_CHC_C_Ural","UK3CB_CHC_C_Ural_Open","UK3CB_CHC_C_Ural_Fuel","UK3CB_CHC_C_Ural_Empty","UK3CB_CHC_C_Ural_Repair","UK3CB_CHC_C_V3S_Open","UK3CB_CHC_C_V3S_Closed","UK3CB_CHC_C_V3S_Recovery","UK3CB_CHC_C_V3S_Refuel","UK3CB_CHC_C_V3S_Repair"]; - -sniperRifle = "UK3CB_BAF_L22"; -lampsSDK = ["rhs_acc_2dpZenit","acc_flashlight"]; - -ATMineMag = "rhs_mine_tm62m_mag"; -APERSMineMag = "rhs_mine_pmn2_mag"; - -//setting up low war level garrison units for the occupants. -if (hasFFAA) then//checks if you have FFAA installed then uses their units - { - call compile preProcessFileLineNumbers "Templates\OccupantsFFAA.sqf" - } -else - { - if (gameMode != 4) then//if you have occupants on your map it uses these - { - FIARifleman = "UK3CB_BAF_Rifleman_Smock_DPMW"; - FIAMarksman = "UK3CB_BAF_Pointman_Smock_DPMW"; - vehFIAArmedCar = "UK3CB_BAF_LandRover_WMIK_Milan_FFR_Green_B_DPMW"; - vehFIATruck = "UK3CB_BAF_MAN_HX60_Cargo_Sand_A_DDPM"; - vehFIACar = "UK3CB_BAF_LandRover_Snatch_FFR_Green_A_DPMW"; - - groupsFIASmall = [["UK3CB_BAF_Grenadier_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW"],["UK3CB_BAF_LAT_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW"],["UK3CB_BAF_Sniper_Smock_DPMW_Ghillie","UK3CB_BAF_Spotter_Smock_DPMW_Ghillie"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_Pointman_Smock_DPMW","UK3CB_BAF_MGGPMG_Smock_DPMW","UK3CB_BAF_MGGPMGA_Smock_DPMW"],["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_GunnerM6_Smock_DPMW","UK3CB_BAF_Grenadier_Smock_DPMW","UK3CB_BAF_MAT_Smock_DPMW"],["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_MAT_Smock_DPMW","UK3CB_BAF_MATC_Smock_DPMW","UK3CB_BAF_Engineer_Smock_DPMW"]]; - FIASquad = ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW","UK3CB_BAF_LAT_Smock_DPMW","UK3CB_BAF_Medic_Smock_DPMW","UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_MGGPMG_Smock_DPMW","UK3CB_BAF_MGGPMGA_Smock_DPMW","UK3CB_BAF_Marksman_Smock_DPMW"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "UK3CB_TKP_B"; - } - else//if you have invaders only it uses these - { - FIARifleman = "UK3CB_TKP_O_RIF_1"; - FIAMarksman = "UK3CB_TKP_O_MK"; - vehFIAArmedCar = "UK3CB_TKP_O_Datsun_Pickup_PKM"; - vehFIATruck = "UK3CB_TKP_O_Hilux_Open"; - vehFIACar = "UK3CB_TKP_O_Lada_Police"; - - groupsFIASmall = [["UK3CB_TKP_O_STATIC_GUN_NSV","UK3CB_TKP_O_STATIC_TRI_NSV"],["UK3CB_TKP_O_AT","UK3CB_TKP_O_RIF_2"],["UK3CB_TKP_O_OFF","UK3CB_TKP_O_MK"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["UK3CB_TKP_O_QRF_SL","UK3CB_TKP_O_QRF_MK","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_ENG"],["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_RIF_1","UK3CB_TKP_O_QRF_AT"],["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_ENG","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_AT"]]; - FIASquad = ["UK3CB_TKP_O_CIB_SL","UUK3CB_TKP_O_CIB_RIF_2","UK3CB_TKP_O_CIB_AT","UK3CB_TKP_O_CIB_MD","UK3CB_TKP_O_CIB_TL","UK3CB_TKP_O_CIB_AR","UK3CB_TKP_O_CIB_RIF_1","UK3CB_TKP_O_CIB_ENG"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "UK3CB_TKP_O"; - }; - }; - -//Police vic and unit setting -vehPoliceCar = "UK3CB_TKP_B_Lada_Police"; -policeOfficer = "UK3CB_ANP_B_TL"; -policeGrunt = "UK3CB_ANP_B_RIF_1"; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = "CCM";//player faction - -factionGEN = "BLU_GEN_F";//police faction - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_BG_Guerilla1_1", []],[],[],"","",[],["ItemMap","","","","",""]]; - -//Arsenal and Initial AI weapon setup -unlockedWeapons = ["UK3CB_Enfield","rhsusf_weap_m1911a1","Binocular","rhs_weap_panzerfaust60","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_pp2000_folded","UK3CB_M79","rhs_weap_m3a1","rhs_weap_m1garand_sa43"]; -unlockedRifles = ["UK3CB_Enfield","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_m3a1","rhs_weap_m1garand_sa43"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["UK3CB_Enfield_Mag","rhsusf_mag_7x45acp_MHP","rhsgref_1Rnd_Slug","rhs_mag_rgd5","rhs_mag_9x19mm_7n31_44","rhs_mag_m576","rhs_mag_m713_red","rhs_mag_m4009","rhsgref_30rnd_1143x23_M1T_SMG","rhsgref_8Rnd_762x63_Tracer_M1T_M1rifle"]; -initialRifles = ["UK3CB_Enfield","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_savz61"]; -unlockedItems = unlockedItems + ["rhs_acc_2dpZenit","rhs_acc_m852v"]; -unlockedAT = ["rhs_weap_panzerfaust60"]; -unlockedBackpacks = ["UK3CB_ANA_B_B_ASS","UK3CB_TKC_C_B_Sidor_MED","UK3CB_B_Hiker","UK3CB_B_Hiker_Camo"]; -//TFAR Unlocks -if (hasTFAR) then {unlockedItems = unlockedItems + ["tf_microdagr","tf_anprc154"]}; -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["tf_anprc155_coyote"]}; diff --git a/A3-Antistasi/Templates/teamPlayer3CBCCMT.sqf b/A3-Antistasi/Templates/teamPlayer3CBCCMT.sqf deleted file mode 100644 index 44bb433f71..0000000000 --- a/A3-Antistasi/Templates/teamPlayer3CBCCMT.sqf +++ /dev/null @@ -1,113 +0,0 @@ -//if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\teamPlayer3CBCCMT.sqf"} else { - -SDKMortar = "rhsgref_ins_g_2b14"; -SDKMortarHEMag = "rhs_mag_3vo18_10"; -SDKMortarSmokeMag = "rhs_mag_d832du_10"; -SDKMGStatic = "UK3CB_TKP_I_NSV"; -staticATteamPlayer = "UK3CB_UN_I_SPG9"; -staticAAteamPlayer = "UK3CB_UN_I_ZU23"; - -staticCrewTeamPlayer = "UK3CB_CCM_I_COM"; -SDKUnarmed = "UK3CB_CHC_I_SPY"; -SDKSniper = ["UK3CB_CCM_I_MK","UK3CB_CCM_I_SNI"]; -SDKATman = ["UK3CB_CCM_I_AT","UK3CB_CCM_I_AT"]; -SDKMedic = ["UK3CB_CCM_I_MD","UK3CB_CCM_I_MD"]; -SDKMG = ["UK3CB_CCM_I_AR","UK3CB_CCM_I_AR"]; -SDKExp = ["UK3CB_CCM_I_DEM","UK3CB_CCM_I_DEM"]; -SDKGL = ["UK3CB_CCM_I_RIF_LITE","UK3CB_CCM_I_RIF_LITE"]; -SDKMil = ["UK3CB_CCM_I_RIF_BOLT","UK3CB_CCM_I_RIF_1"]; -SDKSL = ["UK3CB_CCM_I_TL","UK3CB_CCM_I_OFF"]; -SDKEng = ["UK3CB_CCM_I_ENG","UK3CB_CCM_I_ENG"]; - -vehSDKBike = "UK3CB_CCM_I_Golf"; -vehSDKLightArmed = "UK3CB_CCM_I_Datsun_Pkm"; -vehSDKAT = "UK3CB_CCM_I_Hilux_Spg"; -vehSDKLightUnarmed = "UK3CB_CCM_I_Datsun_Open"; -vehSDKTruck = "UK3CB_CCM_I_V3S_Closed"; -//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; -vehSDKPlane = "UK3CB_CHC_I_Antonov_AN2"; -vehSDKBoat = "I_C_Boat_Transport_01_F"; -vehSDKRepair = "UK3CB_CCM_I_V3S_Repair"; -SDKFlag = "Flag_CCM_B"; -SDKFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_CCM\Flag\ccm_i_flag_co.paa"; -typePetros = "UK3CB_TKP_I_OFF"; - -supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; -ATStaticSDKB = "RHS_SPG9_Gun_Bag"; -MGStaticSDKB = "RHS_DShkM_Gun_Bag"; -supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; -AAStaticSDKB = "I_AA_01_weapon_F"; -MortStaticSDKB = "RHS_Podnos_Gun_Bag"; -supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; - -civCar = "UK3CB_CHC_C_Ikarus"; -civTruck = "UK3CB_CHC_C_V3S_Recovery"; -civHeli = "UK3CB_CHC_C_Mi8AMT"; -civBoat = "C_Rubberboat"; - -arrayCivVeh = ["UK3CB_CHC_C_Datsun_Civ_Closed","UK3CB_CHC_C_Datsun_Civ_Open","UK3CB_CHC_C_Gaz24","UK3CB_CHC_C_Golf","UK3CB_CHC_C_Hatchback","UK3CB_CHC_C_Hilux_Civ_Open","UK3CB_CHC_C_Hilux_Civ_Closed","UK3CB_CHC_C_Ikarus","UK3CB_CHC_C_Kamaz_Covered","UK3CB_CHC_C_Kamaz_Fuel","UK3CB_CHC_C_Kamaz_Open","UK3CB_CHC_C_Kamaz_Repair","UK3CB_CHC_C_Lada","UK3CB_CHC_C_LR_Open","UK3CB_CHC_C_LR_Closed","UK3CB_CHC_C_S1203","UK3CB_CHC_C_S1203_Amb","UK3CB_CHC_C_Sedan","UK3CB_CHC_C_Skoda","UK3CB_CHC_C_Tractor","UK3CB_CHC_C_Tractor_Old","UK3CB_CHC_C_UAZ_Closed","UK3CB_CHC_C_UAZ_Open","UK3CB_CHC_C_Ural","UK3CB_CHC_C_Ural_Open","UK3CB_CHC_C_Ural_Fuel","UK3CB_CHC_C_Ural_Empty","UK3CB_CHC_C_Ural_Repair","UK3CB_CHC_C_V3S_Open","UK3CB_CHC_C_V3S_Closed","UK3CB_CHC_C_V3S_Recovery","UK3CB_CHC_C_V3S_Refuel","UK3CB_CHC_C_V3S_Repair"]; - -sniperRifle = "UK3CB_BAF_L22"; -lampsSDK = ["rhs_acc_2dpZenit","acc_flashlight"]; - -ATMineMag = "rhs_mine_tm62m_mag"; -APERSMineMag = "rhs_mine_pmn2_mag"; - -if (hasFFAA) then - { - call compile preProcessFileLineNumbers "Templates\OccupantsFFAA.sqf" - } -else - { - if (gameMode != 4) then - { - FIARifleman = "UK3CB_BAF_Rifleman_Smock_DPMW"; - FIAMarksman = "UK3CB_BAF_Pointman_Smock_DPMW"; - vehFIAArmedCar = "UK3CB_BAF_LandRover_WMIK_Milan_FFR_Green_B_Tropical_RM"; - vehFIATruck = "UK3CB_BAF_MAN_HX60_Cargo_Green_A_Tropical"; - vehFIACar = "UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical"; - - groupsFIASmall = [["UK3CB_BAF_Grenadier_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW"],["UK3CB_BAF_LAT_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW"],["UK3CB_BAF_Sniper_Smock_DPMW_Ghillie","UK3CB_BAF_Spotter_Smock_DPMW_Ghillie"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_Pointman_Smock_DPMW","UK3CB_BAF_MGGPMG_Smock_DPMW","UK3CB_BAF_MGGPMGA_Smock_DPMW"],["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_GunnerM6_Smock_DPMW","UK3CB_BAF_Grenadier_Smock_DPMW","UK3CB_BAF_MAT_Smock_DPMW"],["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_MAT_Smock_DPMW","UK3CB_BAF_MATC_Smock_DPMW","UK3CB_BAF_Engineer_Smock_DPMW"]]; - FIASquad = ["UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_Rifleman_Smock_DPMW","UK3CB_BAF_LAT_Smock_DPMW","UK3CB_BAF_Medic_Smock_DPMW","UK3CB_BAF_FAC_Smock_DPMW","UK3CB_BAF_MGGPMG_Smock_DPMW","UK3CB_BAF_MGGPMGA_Smock_DPMW","UK3CB_BAF_Marksman_Smock_DPMW"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "UK3CB_TKP_B"; - } - else - { - FIARifleman = "rhs_vdv_izlom_rifleman_asval"; - FIAMarksman = "rhs_vdv_izlom_marksman_vss"; - vehFIAArmedCar = "UK3CB_O_G_T34"; - vehFIATruck = "rhs_gaz66o_vv"; - vehFIACar = "rhsgref_BRDM2_HQ_vmf"; - - groupsFIASmall = [["rhs_vdv_izlom_rifleman_asval","rhs_vdv_izlom_rifleman_LAT"],["rhs_vdv_izlom_marksman","rhs_vdv_izlom_rifleman_LAT"],["rhs_vdv_izlom_rifleman_asval","rhs_vdv_izlom_marksman_vss"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["rhs_vdv_izlom_efreitor","rhs_vdv_izlom_marksman_vss","rhs_vdv_izlom_arifleman","rhs_vdv_izlom_grenadier_rpg"],["rhs_vdv_izlom_efreitor","rhs_vdv_izlom_arifleman","rhs_vdv_izlom_rifleman_asval","rhs_vdv_izlom_marksman"],["rhs_vdv_izlom_efreitor","rhs_vdv_izlom_grenadier_rpg","rhs_vdv_izlom_arifleman","rhs_vdv_izlom_marksman"]]; - FIASquad = ["rhs_vdv_izlom_sergeant","rhs_vdv_izlom_rifleman_LAT","rhs_vdv_izlom_marksman","rhs_vdv_izlom_rifleman_asval","rhs_vdv_izlom_efreitor","rhs_vdv_izlom_arifleman","rhs_vdv_izlom_rifleman_asval","rhs_vdv_izlom_grenadier_rpg"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "rhs_faction_vv"; - }; - }; -//police setup -vehPoliceCar = "UK3CB_TKP_B_Lada_Police"; -policeOfficer = "UK3CB_ANP_B_TL"; -policeGrunt = "UK3CB_ANP_B_RIF_1"; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = "CCM";//player faction - -factionGEN = "BLU_GEN_F";//police faction - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_BG_Guerilla1_1", []],[],[],"","",[],["ItemMap","","","","",""]]; - -//Arsenal and Initial AI weapon setup -unlockedWeapons = ["UK3CB_Enfield","rhsusf_weap_m1911a1","Binocular","rhs_weap_panzerfaust60","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_pp2000_folded","UK3CB_M79","rhs_weap_m3a1","rhs_weap_m1garand_sa43"]; -unlockedRifles = ["UK3CB_Enfield","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_m3a1","rhs_weap_m1garand_sa43"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["UK3CB_Enfield_Mag","rhsusf_mag_7x45acp_MHP","rhsgref_1Rnd_Slug","rhs_mag_rgd5","rhs_mag_9x19mm_7n31_44","rhs_mag_m576","rhs_mag_m713_red","rhs_mag_m4009","rhsgref_30rnd_1143x23_M1T_SMG","rhsgref_8Rnd_762x63_Tracer_M1T_M1rifle"]; -initialRifles = ["UK3CB_Enfield","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_savz61"]; -unlockedItems = unlockedItems + ["rhs_acc_2dpZenit","rhs_acc_m852v"]; -unlockedAT = ["rhs_weap_panzerfaust60"]; -unlockedBackpacks = ["UK3CB_ANA_B_B_ASS","UK3CB_TKC_C_B_Sidor_MED","UK3CB_B_Hiker","UK3CB_B_Hiker_Camo"]; -//TFAR Unlocks -if (hasTFAR) then {unlockedItems = unlockedItems + ["tf_microdagr","tf_anprc154"]}; -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["tf_anprc155_coyote"]}; diff --git a/A3-Antistasi/Templates/teamPlayerBlu3CBUN.sqf b/A3-Antistasi/Templates/teamPlayerBlu3CBUN.sqf deleted file mode 100644 index 9be76e5b40..0000000000 --- a/A3-Antistasi/Templates/teamPlayerBlu3CBUN.sqf +++ /dev/null @@ -1,107 +0,0 @@ - -SDKMortar = "rhsgref_UN_B_2b14_82mm"; -SDKMortarHEMag = "rhs_mag_3vo18_10"; -SDKMortarSmokeMag = "rhs_mag_d832du_10"; -SDKMGStatic = "UK3CB_UN_B_NSV"; -staticATteamPlayer = "UK3CB_UN_B_SPG9"; -staticAAteamPlayer = "UK3CB_UN_B_ZU23"; - -staticCrewTeamPlayer = "UK3CB_UN_B_FIELD_OP"; -SDKUnarmed = "UK3CB_UN_B_FIELD_OP"; -SDKSniper = ["UK3CB_UN_B_MK","UK3CB_UN_B_MK"]; -SDKATman = ["UK3CB_UN_B_AT","UK3CB_UN_B_AT"]; -SDKMedic = ["UK3CB_UN_B_MD","UK3CB_UN_B_MD"]; -SDKMG = ["UK3CB_UN_B_AR","UK3CB_UN_B_MG"]; -SDKExp = ["UK3CB_UN_B_DEM","UK3CB_UN_B_DEM"]; -SDKGL = ["UK3CB_UN_B_GL","UK3CB_UN_B_GL"]; -SDKMil = ["UK3CB_UN_B_RIF_1","UK3CB_UN_B_RIF_2"]; -SDKSL = ["UK3CB_UN_B_TL","UK3CB_UN_B_SL"]; -SDKEng = ["UK3CB_UN_B_ENG","UK3CB_UN_B_ENG"]; - -vehSDKBike = "UK3CB_UN_B_UAZ_Closed"; -vehSDKLightArmed = "UK3CB_UN_B_Hilux_Pkm"; -vehSDKAT = "UK3CB_UN_B_LR_SPG9"; -vehSDKLightUnarmed = "UK3CB_CCM_I_Hilux_Closed"; -vehSDKTruck = "UK3CB_UN_B_V3S_Closed"; -//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; -vehSDKPlane = "UK3CB_UN_B_C130J"; -vehSDKBoat = "I_C_Boat_Transport_01_F"; -vehSDKRepair = "UK3CB_UN_B_V3S_Repair"; -SDKFlag = "Flag_CCM_B"; -SDKFlagTexture = "\UK3CB_Factions\addons\UK3CB_Factions_CCM\Flag\ccm_i_flag_co.paa"; -typePetros = "UK3CB_UN_B_OFF"; - -supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; -ATStaticSDKB = "RHS_SPG9_Gun_Bag"; -MGStaticSDKB = "RHS_DShkM_Gun_Bag"; -supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; -AAStaticSDKB = "I_AA_01_weapon_F"; -MortStaticSDKB = "RHS_Podnos_Gun_Bag"; -supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; - -civCar = "UK3CB_CHC_C_Ikarus"; -civTruck = "UK3CB_CHC_C_V3S_Recovery"; -civHeli = "UK3CB_UN_B_UH1H_MED"; -civBoat = "C_Rubberboat"; - -arrayCivVeh = ["UK3CB_CHC_C_Datsun_Civ_Closed","UK3CB_CHC_C_Datsun_Civ_Open","UK3CB_CHC_C_Gaz24","UK3CB_CHC_C_Golf","UK3CB_CHC_C_Hatchback","UK3CB_CHC_C_Hilux_Civ_Open","UK3CB_CHC_C_Hilux_Civ_Closed","UK3CB_CHC_C_Ikarus","UK3CB_CHC_C_Kamaz_Covered","UK3CB_CHC_C_Kamaz_Fuel","UK3CB_CHC_C_Kamaz_Open","UK3CB_CHC_C_Kamaz_Repair","UK3CB_CHC_C_Lada","UK3CB_CHC_C_LR_Open","UK3CB_CHC_C_LR_Closed","UK3CB_CHC_C_S1203","UK3CB_CHC_C_S1203_Amb","UK3CB_CHC_C_Sedan","UK3CB_CHC_C_Skoda","UK3CB_CHC_C_Tractor","UK3CB_CHC_C_Tractor_Old","UK3CB_CHC_C_UAZ_Closed","UK3CB_CHC_C_UAZ_Open","UK3CB_CHC_C_Ural","UK3CB_CHC_C_Ural_Open","UK3CB_CHC_C_Ural_Fuel","UK3CB_CHC_C_Ural_Empty","UK3CB_CHC_C_Ural_Repair","UK3CB_CHC_C_V3S_Open","UK3CB_CHC_C_V3S_Closed","UK3CB_CHC_C_V3S_Recovery","UK3CB_CHC_C_V3S_Refuel","UK3CB_CHC_C_V3S_Repair"]; - -sniperRifle = "UK3CB_M16A2"; -lampsSDK = ["rhs_acc_2dpZenit","acc_flashlight"]; - -ATMineMag = "rhs_mine_tm62m_mag"; -APERSMineMag = "rhs_mine_pmn2_mag"; - -//setting up low war level garrison units for the occupants. -if (gameMode != 4) then//If you play with occupants it uses these - { - FIARifleman = "UK3CB_TKP_I_RIF_1"; - FIAMarksman = "UK3CB_TKP_I_MK"; - vehFIAArmedCar = "UK3CB_TKP_I_Datsun_Pickup_PKM"; - vehFIATruck = "UK3CB_TKP_I_Hilux_Ipen"; - vehFIACar = "UK3CB_TKP_I_Lada_Police"; - - groupsFIASmall = [["UK3CB_TKP_I_STATIC_GUN_NSV","UK3CB_TKP_I_STATIC_TRI_NSV"],["UK3CB_TKP_I_AT","UK3CB_TKP_I_RIF_2"],["UK3CB_TKP_I_IFF","UK3CB_TKP_I_MK"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["UK3CB_TKP_I_QRF_SL","UK3CB_TKP_I_QRF_MK","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_ENG"],["UK3CB_TKP_I_QRF_TL","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_RIF_1","UK3CB_TKP_I_QRF_AT"],["UK3CB_TKP_I_QRF_TL","UK3CB_TKP_I_QRF_ENG","UK3CB_TKP_I_QRF_AR","UK3CB_TKP_I_QRF_AT"]]; - FIASquad = ["UK3CB_TKP_I_CIB_SL","UUK3CB_TKP_I_CIB_RIF_2","UK3CB_TKP_I_CIB_AT","UK3CB_TKP_I_CIB_MD","UK3CB_TKP_I_CIB_TL","UK3CB_TKP_I_CIB_AR","UK3CB_TKP_I_CIB_RIF_1","UK3CB_TKP_I_CIB_ENG"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "UK3CB_TKP_I"; - } -else//if you paly against invaders only it uses these - { - FIARifleman = "UK3CB_TKP_O_RIF_1"; - FIAMarksman = "UK3CB_TKP_O_MK"; - vehFIAArmedCar = "UK3CB_TKP_O_Datsun_Pickup_PKM"; - vehFIATruck = "UK3CB_TKP_O_Hilux_Open"; - vehFIACar = "UK3CB_TKP_O_Lada_Police"; - - groupsFIASmall = [["UK3CB_TKP_O_STATIC_GUN_NSV","UK3CB_TKP_O_STATIC_TRI_NSV"],["UK3CB_TKP_O_AT","UK3CB_TKP_O_RIF_2"],["UK3CB_TKP_O_OFF","UK3CB_TKP_O_MK"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["UK3CB_TKP_O_QRF_SL","UK3CB_TKP_O_QRF_MK","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_ENG"],["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_RIF_1","UK3CB_TKP_O_QRF_AT"],["UK3CB_TKP_O_QRF_TL","UK3CB_TKP_O_QRF_ENG","UK3CB_TKP_O_QRF_AR","UK3CB_TKP_O_QRF_AT"]]; - FIASquad = ["UK3CB_TKP_O_CIB_SL","UUK3CB_TKP_O_CIB_RIF_2","UK3CB_TKP_O_CIB_AT","UK3CB_TKP_O_CIB_MD","UK3CB_TKP_O_CIB_TL","UK3CB_TKP_O_CIB_AR","UK3CB_TKP_O_CIB_RIF_1","UK3CB_TKP_O_CIB_ENG"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "UK3CB_TKP_O"; -}; - -//set police vehicle and officer teams -vehPoliceCar = "UK3CB_TKP_I_Lada_Police"; -policeOfficer = "UK3CB_TKP_I_TL"; -policeGrunt = "UK3CB_TKP_I_RIF_2"; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = "UN"; - -factionGEN = "BLU_GEN_F";//sets police factionFIA - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_BG_Guerilla2_1", []],[],[],"","",[],["ItemMap","","","","",""]]; - -//Arsenal and Initial AI weapon setup -unlockedWeapons = ["UK3CB_Enfield","rhsusf_weap_m1911a1","Binocular","rhs_weap_panzerfaust60","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_pp2000_folded","UK3CB_M79","rhs_weap_m3a1","rhs_weap_m1garand_sa43"]; -unlockedRifles = ["UK3CB_Enfield","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_m3a1","rhs_weap_m1garand_sa43"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["UK3CB_Enfield_Mag","rhsusf_mag_7x45acp_MHP","rhsgref_1Rnd_Slug","rhs_mag_rgd5","rhs_mag_9x19mm_7n31_44","rhs_mag_m576","rhs_mag_m713_red","rhs_mag_m4009","rhsgref_30rnd_1143x23_M1T_SMG","rhsgref_8Rnd_762x63_Tracer_M1T_M1rifle"]; -initialRifles = ["UK3CB_Enfield","UK3CB_Enfield_Rail","rhs_weap_Izh18","rhs_weap_savz61"]; -unlockedItems = unlockedItems + ["rhs_acc_2dpZenit","rhs_acc_m852v"]; -unlockedAT = ["rhs_weap_panzerfaust60"]; -unlockedBackpacks = ["UK3CB_ANA_B_B_ASS","UK3CB_TKC_C_B_Sidor_MED","UK3CB_B_Hiker","UK3CB_B_Hiker_Camo"]; -//TAFR Unlocks -if (hasTFAR) then {unlockedItems = unlockedItems + ["tf_microdagr","tf_rf7800str"]}; -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["UK3CB_BAF_B_Bergen_OLI_SL_A"]}; diff --git a/A3-Antistasi/Templates/teamPlayerIFA.sqf b/A3-Antistasi/Templates/teamPlayerIFA.sqf deleted file mode 100644 index 2fa8b15ef0..0000000000 --- a/A3-Antistasi/Templates/teamPlayerIFA.sqf +++ /dev/null @@ -1,98 +0,0 @@ -SDKMortar = "LIB_M2_60"; -SDKMortarHEMag = "LIB_8Rnd_60mmHE_M2"; -SDKMortarSmokeMag = "not_supported"; -SDKMGStatic = "LIB_M1919_M2"; -staticATteamPlayer = "LIB_Pak40"; -staticAAteamPlayer = "LIB_FlaK_30"; - -staticCrewTeamPlayer = "LIB_US_Bomber_Crew"; -SDKUnarmed = "I_G_Survivor_F"; -SDKSniper = ["LIB_WP_Sniper","LIB_WP_Sniper"]; -SDKATman = ["LIB_WP_AT_grenadier","LIB_WP_AT_grenadier"]; -SDKMedic = ["LIB_WP_Medic","LIB_WP_Medic"]; -SDKMG = ["LIB_WP_Mgunner","LIB_WP_Mgunner"]; -SDKExp = ["LIB_WP_Saper","LIB_WP_Saper"]; -SDKGL = ["LIB_WP_Radioman","LIB_WP_Radioman"]; -SDKMil = ["LIB_WP_Strzelec","LIB_WP_Strzelec"]; -SDKSL = ["LIB_WP_Porucznic","LIB_WP_Porucznic"]; -SDKEng = ["LIB_WP_Starszy_saper","LIB_WP_Starszy_saper"]; - -vehSDKBike = "LIB_DAK_Kfz1"; -vehSDKLightArmed = "LIB_DAK_Kfz1_MG42"; -vehSDKAT = "not_supported"; -vehSDKLightUnarmed = "LIB_US_Willys_MB"; -vehSDKTruck = "LIB_US_GMC_Open"; -//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; -vehSDKPlane = "LIB_US_NAC_P39"; -vehSDKBoat = "I_C_Boat_Transport_01_F"; -vehSDKRepair = "LIB_US_GMC_Parm"; -SDKFlag = "Flag_Syndikat_F"; -SDKFlagTexture = "ak.jpg"; if (isServer) then {flagX setFlagTexture SDKFlagTexture}; -typePetros = "LIB_WP_Sierzant"; - -supportStaticSDKB = "not_supported"; -ATStaticSDKB = "not_supported"; -MGStaticSDKB = "not_supported"; -supportStaticsSDKB2 = "not_supported"; -AAStaticSDKB = "not_supported"; -MortStaticSDKB = "not_supported"; -supportStaticsSDKB3 = "not_supported"; - -civCar = "LIB_GazM1_dirty"; -civTruck = "LIB_DAK_OpelBlitz_Open"; -civHeli = "not_supported"; -civBoat = "C_Boat_Transport_02_F"; - -sniperRifle = "LIB_K98ZF39"; -lampsSDK = ["not_supported"]; - -ATMineMag = "LIB_TM44_MINE_mag"; -APERSMineMag = "LIB_PMD6_MINE_mag"; - -if (gameMode != 4) then - { - FIARifleman = "LIB_DAK_Soldier"; - FIAMarksman = "LIB_DAK_Sniper"; - vehFIAArmedCar = "LIB_Kfz1_MG42_camo"; - vehFIATruck = "LIB_OpelBlitz_Open_Y_Camo_w"; - vehFIACar = "LIB_Kfz1_hood_w"; - groupsFIASmall = [["LIB_DAK_Soldier_2","LIB_DAK_Soldier"],["LIB_DAK_Soldier_2","LIB_DAK_Soldier"],["LIB_DAK_Soldier_2","LIB_DAK_Soldier"],[FIAMarksman,FIARifleman]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_2","LIB_DAK_Soldier"],["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_AT_soldier","LIB_DAK_AT_grenadier"],["LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier","LIB_DAK_Sniper"]]; - FIASquad = ["LIB_DAK_NCO_2","LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_3","LIB_DAK_AT_grenadier","LIB_DAK_AT_soldier","LIB_DAK_radioman","LIB_DAK_medic"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad,["LIB_DAK_NCO_2","LIB_DAK_Soldier_2","LIB_DAK_Soldier_3","LIB_DAK_Soldier_3","LIB_DAK_AT_grenadier","LIB_DAK_Sniper","LIB_DAK_radioman","LIB_DAK_medic"]]; - factionFIA = "LIB_DAK"; - } -else - { - FIARifleman = "LIB_NKVD_rifleman"; - FIAMarksman = "LIB_NKVD_LC_rifleman"; - vehFIAArmedCar = "LIB_Scout_m3_w"; - vehFIATruck = "LIB_Zis5v_w"; - vehFIACar = "LIB_Willys_MB_w"; - groupsFIASmall = [[FIARifleman,FIARifleman],[FIAMarksman,FIARifleman]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["LIB_NKVD_p_officer","LIB_NKVD_smgunner","LIB_NKVD_LC_rifleman","LIB_NKVD_rifleman"]]; - FIASquad = ["LIB_NKVD_lieutenant","LIB_NKVD_smgunner","LIB_NKVD_smgunner","LIB_NKVD_p_officer","LIB_NKVD_p_officer","LIB_NKVD_LC_rifleman","LIB_NKVD_rifleman","LIB_SOV_medic"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "LIB_NKVD"; - }; - -vehPoliceCar = "LIB_Kfz1_sernyt"; -policeOfficer = "SG_sturmpanzer_unterofficer"; -policeGrunt = "SG_sturmpanzer_crew"; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = "AK"; - -factionGEN = "SG_STURMPANZER"; - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_LIB_WP_Soldier_camo_3", []],[],[],"","",[],["ItemMap","","","","",""]]; - -//Arsenal and Initial AI weapon setup -unlockedWeapons = ["LIB_PTRD","LIB_M2_Flamethrower","LIB_Binocular_GER","LIB_K98","LIB_M1895","LIB_FLARE_PISTOL"];//"LMG_03_F" -unlockedRifles = ["LIB_K98"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["LIB_1Rnd_145x114","LIB_M2_Flamethrower_Mag","LIB_5Rnd_792x57","LIB_Pwm","LIB_Rg42","LIB_US_TNT_4pound_mag","LIB_7Rnd_762x38","LIB_1Rnd_flare_red","LIB_1Rnd_flare_green","LIB_1Rnd_flare_white","LIB_1Rnd_flare_yellow"]; -initialRifles = ["LIB_K98"]; -unlockedAT = []; -unlockedBackpacks = ["B_LIB_US_M2Flamethrower","B_LIB_SOV_RA_MGAmmoBag_Empty"]; -//TFAR Unlocks -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["B_LIB_US_Radio"]}; diff --git a/A3-Antistasi/Templates/teamPlayerRHSGREF.sqf b/A3-Antistasi/Templates/teamPlayerRHSGREF.sqf deleted file mode 100644 index 6b5df6b071..0000000000 --- a/A3-Antistasi/Templates/teamPlayerRHSGREF.sqf +++ /dev/null @@ -1,111 +0,0 @@ -SDKMortar = "rhsgref_nat_2b14"; -SDKMortarHEMag = "rhs_mag_3vo18_10"; -SDKMortarSmokeMag = "rhs_mag_d832du_10"; -SDKMGStatic = "rhsgref_nat_NSV_TriPod"; -staticATteamPlayer = "rhsgref_nat_SPG9"; -staticAAteamPlayer = "rhsgref_nat_ZU23"; - -staticCrewTeamPlayer = "rhsgref_nat_crew"; -SDKUnarmed = "I_G_Survivor_F"; -SDKSniper = ["rhsgref_nat_hunter","rhsgref_nat_pmil_hunter"]; -SDKATman = ["rhsgref_nat_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg"]; -SDKMedic = ["rhsgref_nat_medic","rhsgref_nat_pmil_medic"]; -SDKMG = ["rhsgref_nat_machinegunner_mg42","rhsgref_nat_pmil_machinegunner"]; -SDKExp = ["rhsgref_nat_saboteur","rhsgref_nat_pmil_saboteur"]; -SDKGL = ["rhsgref_nat_grenadier","rhsgref_nat_pmil_grenadier"]; -SDKMil = ["rhsgref_nat_rifleman_mp44","rhsgref_nat_pmil_rifleman"]; -SDKSL = ["rhsgref_nat_commander","rhsgref_nat_pmil_commander"]; -SDKEng = ["rhsgref_cdf_ngd_engineer","rhsgref_cdf_reg_engineer"]; - -vehSDKBike = "I_G_Quadbike_01_F"; -vehSDKLightArmed = "rhsgref_nat_uaz_dshkm"; -vehSDKAT = "rhsgref_nat_uaz_spg9"; -vehSDKLightUnarmed = "rhsgref_cdf_reg_uaz_open"; -vehSDKTruck = "rhsgref_cdf_zil131"; -//vehSDKHeli = "rhsgref_ins_g_Mi8amt"; -vehSDKPlane = "RHS_AN2"; -vehSDKBoat = "I_C_Boat_Transport_01_F"; -vehSDKRepair = "rhsgref_cdf_gaz66_repair"; -SDKFlag = "Flag_Syndikat_F"; -SDKFlagTexture = "\A3\Data_F\Flags\Flag_Altis_CO.paa"; -typePetros = "rhsgref_nat_warlord"; - -supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; -ATStaticSDKB = "RHS_SPG9_Gun_Bag"; -MGStaticSDKB = "RHS_DShkM_Gun_Bag"; -supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; -AAStaticSDKB = "I_AA_01_weapon_F"; -MortStaticSDKB = "RHS_Podnos_Gun_Bag"; -supportStaticsSDKB3 = "RHS_Podnos_Bipod_Bag"; - -civCar = "C_Offroad_01_F"; -civTruck = "RHS_Ural_Open_Civ_03"; -civHeli = "RHS_Mi8t_civilian"; -civBoat = "C_Boat_Transport_02_F"; - -arrayCivVeh = arrayCivVeh + ["RHS_Ural_Civ_01","RHS_Ural_Civ_02","RHS_Ural_Civ_03","RHS_Ural_Open_Civ_01","RHS_Ural_Open_Civ_02","RHS_Ural_Open_Civ_03"]; - -sniperRifle = "rhs_weap_m76_pso"; -lampsSDK = ["rhs_acc_2dpZenit","acc_flashlight"]; - -ATMineMag = "rhs_mine_tm62m_mag"; -APERSMineMag = "rhs_mine_pmn2_mag"; - -if (hasFFAA) then - { - call compile preProcessFileLineNumbers "Templates\OccupantsFFAA.sqf" - } -else - { - if (gameMode != 4) then - { - FIARifleman = "rhsgref_hidf_rifleman"; - FIAMarksman = "rhsgref_hidf_marksman"; - vehFIAArmedCar = "rhsgref_hidf_m1025_m2"; - vehFIATruck = "rhsgref_cdf_b_ural_open"; - vehFIACar = "rhsgref_hidf_m998_4dr"; - - groupsFIASmall = [["rhsgref_hidf_grenadier","rhsgref_hidf_rifleman"],["rhsgref_hidf_marksman","rhsgref_hidf_rifleman"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["rhsgref_hidf_teamleader","rhsgref_hidf_machinegunner","rhsgref_hidf_machinegunner_assist","rhsgref_hidf_grenadier"],["rhsgref_hidf_teamleader","rhsgref_hidf_rifleman_m72","rhsgref_hidf_rifleman_m72","rhsgref_hidf_grenadier"]];//["IRG_InfAssault","IRG_InfTeam","IRG_InfTeam_AT"];/// - FIASquad = ["rhsgref_hidf_squadleader","rhsgref_hidf_machinegunner","rhsgref_hidf_machinegunner_assist","rhsgref_hidf_rifleman","rhsgref_hidf_rifleman_m72","rhsgref_hidf_rifleman_m72","rhsgref_hidf_grenadier","rhsgref_hidf_medic"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "rhsgref_faction_hidf"; - } - else - { - FIARifleman = "rhs_msv_emr_rifleman"; - FIAMarksman = "rhs_msv_emr_marksman"; - vehFIAArmedCar = "rhs_tigr_sts_3camo_msv"; - vehFIATruck = "rhs_zil131_open_msv"; - vehFIACar = "rhs_uaz_open_MSV_01"; - - groupsFIASmall = [["rhs_msv_emr_grenadier",FIARifleman],[FIAMarksman,FIARifleman]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_grenadier"],["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_at"],["rhsgref_hidf_teamleader","rhs_msv_emr_machinegunner",FIARifleman,"rhs_msv_emr_engineer"]];//["IRG_InfAssault","IRG_InfTeam","IRG_InfTeam_AT"];/// - FIASquad = ["rhs_msv_emr_officer","rhs_msv_emr_grenadier","rhs_msv_emr_machinegunner","rhs_msv_emr_rifleman","rhs_msv_emr_marksman","rhs_msv_emr_engineer","rhs_msv_emr_at","rhs_msv_emr_medic"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "rhs_faction_msv"; - }; - }; - -vehPoliceCar = "rhsusf_mrzr4_d"; -policeOfficer = "rhsusf_army_ucp_rifleman_m590"; -policeGrunt = "rhsusf_army_ucp_rifleman_82nd"; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = "NAPA"; - -factionGEN = "BLU_GEN_F"; - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_BG_Guerilla1_1", []],[],[],"","",[],["ItemMap","","","","",""]]; - -//Arsenal and Initial AI weapon setup -unlockedWeapons = ["rhs_weap_akms","rhs_weap_makarov_pmm","Binocular","rhs_weap_rpg7","rhs_weap_m38_rail","rhs_weap_kar98k","rhs_weap_pp2000_folded","rhs_weap_savz61","rhs_weap_m3a1","rhs_weap_m1garand_sa43"]; -unlockedRifles = ["rhs_weap_akms","rhs_weap_m38_rail","rhs_weap_kar98k","rhs_weap_savz61","rhs_weap_m3a1","rhs_weap_m1garand_sa43"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["rhs_30Rnd_762x39mm","rhs_mag_9x18_12_57N181S","rhs_rpg7_PG7VL_mag","rhsgref_5Rnd_762x54_m38","rhsgref_5Rnd_792x57_kar98k","rhs_mag_rgd5","rhs_mag_9x19mm_7n21_20","rhsgref_20rnd_765x17_vz61","rhsgref_30rnd_1143x23_M1911B_SMG","rhsgref_8Rnd_762x63_M2B_M1rifle"]; -initialRifles = ["rhs_weap_akms","rhs_weap_m38_rail","rhs_weap_kar98k","rhs_weap_savz61"]; -unlockedItems = unlockedItems + ["rhs_acc_2dpZenit"]; -unlockedAT = ["rhs_weap_rpg7"]; -unlockedBackpacks = ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; -//TAFR Unlocks -if (hasTFAR) then {unlockedItems = unlockedItems + ["tf_microdagr","tf_anprc154"]}; -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["tf_anprc155_coyote"]}; diff --git a/A3-Antistasi/Templates/teamPlayerRHSUSAF.sqf b/A3-Antistasi/Templates/teamPlayerRHSUSAF.sqf deleted file mode 100644 index 780fb9cbcd..0000000000 --- a/A3-Antistasi/Templates/teamPlayerRHSUSAF.sqf +++ /dev/null @@ -1,102 +0,0 @@ -SDKMortar = "rhsgref_cdf_b_reg_M252"; -SDKMortarHEMag = "rhs_12Rnd_m821_HE"; -SDKMortarSmokeMag = "rhs_12Rnd_m821_HE"; -SDKMGStatic = "rhsgref_cdf_b_DSHKM"; -staticATteamPlayer = "rhsgref_cdf_b_SPG9"; -staticAAteamPlayer = "rhsgref_cdf_b_ZU23"; - -staticCrewTeamPlayer = "B_G_Soldier_unarmed_F"; -SDKUnarmed = "B_G_Survivor_F"; -SDKSniper = ["rhsgref_cdf_b_reg_marksman","rhsgref_hidf_marksman"]; -SDKATman = ["rhsgref_cdf_b_ngd_grenadier_rpg","rhsgref_cdf_b_reg_grenadier_rpg"]; -SDKMedic = ["rhsgref_cdf_b_ngd_medic","rhsgref_cdf_b_para_medic"]; -SDKMG = ["rhsgref_cdf_b_ngd_machinegunner","rhsgref_cdf_b_reg_machinegunner"]; -SDKExp = ["rhsgref_cdf_b_ngd_engineer","rhsgref_cdf_b_reg_engineer"]; -SDKGL = ["rhsgref_cdf_b_ngd_grenadier","rhsgref_cdf_b_reg_grenadier"]; -SDKMil = ["rhsgref_cdf_b_ngd_rifleman_lite","rhsgref_cdf_b_para_rifleman_lite"]; -SDKSL = ["rhsgref_cdf_b_ngd_squadleader","rhsgref_cdf_b_reg_squadleader"]; -SDKEng = ["rhsgref_cdf_b_ngd_engineer","rhsgref_cdf_b_reg_engineer"]; - -vehSDKBike = "B_G_Quadbike_01_F"; -vehSDKLightArmed = "rhsgref_cdf_b_reg_uaz_dshkm"; -vehSDKAT = "rhsgref_cdf_b_reg_uaz_spg9"; -vehSDKLightUnarmed = "rhsgref_cdf_b_reg_uaz_open"; -vehSDKTruck = "rhsgref_cdf_b_ural_open"; -//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; -vehSDKPlane = "RHS_AN2_B"; -vehSDKBoat = "B_G_Boat_Transport_01_F"; -vehSDKRepair = "rhsgref_cdf_b_ural_repair"; -SDKFlag = "Flag_FIA_F"; -SDKFlagTexture = "\A3\Data_F\Flags\Flag_FIA_CO.paa"; -typePetros = "rhsgref_cdf_b_reg_general"; - -supportStaticSDKB = "RHS_SPG9_Tripod_Bag"; -ATStaticSDKB = "RHS_SPG9_Gun_Bag"; -MGStaticSDKB = "RHS_DShkM_Gun_Bag"; -supportStaticsSDKB2 = "RHS_DShkM_TripodHigh_Bag"; -AAStaticSDKB = "no_exists"; -MortStaticSDKB = "rhs_M252_Gun_Bag"; -supportStaticsSDKB3 = "rhs_M252_Bipod_Bag"; - -civCar = "C_Offroad_01_F"; -civTruck = "RHS_Ural_Open_Civ_03"; -civHeli = "RHS_Mi8amt_civilian"; -civBoat = "C_Boat_Transport_02_F"; - -arrayCivVeh = arrayCivVeh + ["RHS_Ural_Open_Civ_03","RHS_Ural_Open_Civ_01","RHS_Ural_Open_Civ_02"]; - -sniperRifle = "rhs_weap_m76_pso"; -lampsSDK = ["rhs_acc_2dpZenit","acc_flashlight"]; - -ATMineMag = "rhs_mine_tm62m_mag"; -APERSMineMag = "rhs_mine_pmn2_mag"; - -if (gameMode != 4) then - { - FIARifleman = "rhsgref_nat_pmil_rifleman_m92"; - FIAMarksman = "rhsgref_nat_pmil_hunter"; - vehFIAArmedCar = "rhsgref_nat_uaz_dshkm"; - vehFIATruck = "rhsgref_nat_van"; - vehFIACar = "rhsgref_nat_uaz"; - groupsFIASmall = [["rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_rifleman_m92"],["rhsgref_nat_pmil_scout","rhsgref_nat_pmil_rifleman_aksu"],["rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_scout"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier"],["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_hunter"],["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg"],["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_specialist_aa","rhsgref_nat_pmil_specialist_aa"]]; - FIASquad = ["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_hunter","rhsgref_nat_pmil_medic"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad,["rhsgref_nat_pmil_rifleman","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_machinegunner","rhsgref_nat_pmil_saboteur","rhsgref_nat_pmil_grenadier","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_grenadier_rpg","rhsgref_nat_pmil_medic"]]; - factionFIA = "rhsgref_faction_nationalist"; - } -else - { - FIARifleman = "rhsgref_ins_militiaman_mosin"; - FIAMarksman = "rhsgref_ins_sniper"; - vehFIAArmedCar = "rhsgref_ins_uaz_dshkm"; - vehFIATruck = "rhsgref_ins_gaz66o"; - vehFIACar = "rhsgref_ins_uaz_open"; - groupsFIASmall = [["rhsgref_ins_grenadier_rpg",FIARifleman],["rhsgref_ins_grenadier_rpg",FIARifleman],[FIAMarksman,FIARifleman]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["rhsgref_ins_squadleader","rhsgref_ins_machinegunner","rhsgref_ins_grenadier",FIARifleman],["rhsgref_ins_squadleader","rhsgref_ins_machinegunner","rhsgref_ins_grenadier",FIAMarksman],["rhsgref_ins_squadleader","rhsgref_ins_machinegunner","rhsgref_ins_grenadier","rhsgref_ins_grenadier_rpg"],["rhsgref_ins_squadleader","rhsgref_ins_machinegunner","rhsgref_ins_grenadier","rhsgref_ins_saboteur"]]; - FIASquad = ["rhsgref_ins_squadleader","rhsgref_ins_machinegunner","rhsgref_ins_grenadier","rhsgref_ins_grenadier_rpg","rhsgref_ins_sniper","rhsgref_ins_militiaman_mosin","rhsgref_ins_saboteur","rhsgref_ins_medic"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "rhsgref_faction_chdkz"; - }; - -vehPoliceCar = "rhsgref_un_uaz"; -policeOfficer = "rhsgref_cdf_un_squadleader"; -policeGrunt = "rhsgref_cdf_un_rifleman_lite"; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = "FIA"; - -factionGEN = "rhsgref_faction_un"; - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_BG_Guerilla2_1", []],[],[],"","",[],["ItemMap","","","","",""]]; - -//Arsenal and Initial AI weapon setup -unlockedWeapons = ["rhs_weap_akms","rhs_weap_makarov_pmm","Binocular","rhs_weap_rpg7","rhs_weap_m38_rail","rhs_weap_kar98k","rhs_weap_pp2000_folded","rhs_weap_savz61","rhs_weap_m3a1","rhs_weap_m1garand_sa43"]; -unlockedRifles = ["rhs_weap_akms","rhs_weap_m38_rail","rhs_weap_kar98k","rhs_weap_savz61","rhs_weap_m3a1","rhs_weap_m1garand_sa43"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["rhs_30Rnd_762x39mm","rhs_mag_9x18_12_57N181S","rhs_rpg7_PG7VL_mag","rhsgref_5Rnd_762x54_m38","rhsgref_5Rnd_792x57_kar98k","rhs_mag_rgd5","rhs_mag_9x19mm_7n21_20","rhsgref_20rnd_765x17_vz61","rhsgref_30rnd_1143x23_M1911B_SMG","rhsgref_8Rnd_762x63_M2B_M1rifle"]; -initialRifles = ["rhs_weap_akms","rhs_weap_m38_rail","rhs_weap_kar98k","rhs_weap_savz61"]; -unlockedItems = unlockedItems + ["rhs_acc_2dpZenit"]; -unlockedAT = ["rhs_weap_rpg7"]; -unlockedBackpacks = ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; -//TFAR Unlocks -if (hasTFAR) then {unlockedItems = unlockedItems + ["tf_microdagr","tf_rf7800str"]}; -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["tf_rt1523g_rhs"]}; diff --git a/A3-Antistasi/Templates/teamPlayerVanilla.sqf b/A3-Antistasi/Templates/teamPlayerVanilla.sqf deleted file mode 100644 index 0e0ab17473..0000000000 --- a/A3-Antistasi/Templates/teamPlayerVanilla.sqf +++ /dev/null @@ -1,117 +0,0 @@ -if (worldName == "Altis") exitWith {call compile preProcessFileLineNumbers "Templates\teamPlayerVanillaAltis.sqf"}; - -SDKMortar = "I_G_Mortar_01_F"; -SDKMortarHEMag = "8Rnd_82mm_Mo_shells"; -SDKMortarSmokeMag = "8Rnd_82mm_Mo_Smoke_white"; -SDKMGStatic = "I_HMG_01_high_F"; -staticATteamPlayer = "I_Static_AT_F"; -staticAAteamPlayer = "I_Static_AA_F"; - -staticCrewTeamPlayer = "I_G_Soldier_unarmed_F"; -SDKUnarmed = "I_G_Survivor_F"; -SDKSniper = ["I_C_Soldier_Bandit_5_F","I_C_Soldier_Para_7_F"]; -SDKATman = ["I_C_Soldier_Bandit_2_F","I_C_Soldier_Para_5_F"]; -SDKMedic = ["I_C_Soldier_Bandit_1_F","I_C_Soldier_Para_3_F"]; -SDKMG = ["I_C_Soldier_Bandit_3_F","I_C_Soldier_Para_4_F"]; -SDKExp = ["I_C_Soldier_Bandit_8_F","I_C_Soldier_Para_8_F"]; -SDKGL = ["I_C_Soldier_Bandit_6_F","I_C_Soldier_Para_6_F"]; -SDKMil = ["I_C_Soldier_Bandit_7_F","I_C_Soldier_Para_1_F"]; -SDKSL = ["I_C_Soldier_Bandit_4_F","I_C_Soldier_Para_2_F"]; -SDKEng = ["I_G_engineer_F","I_G_engineer_F"]; - -vehSDKBike = "I_G_Quadbike_01_F"; -vehSDKLightArmed = "I_G_Offroad_01_armed_F"; -vehSDKAT = "I_G_Offroad_02_AT_F"; -vehSDKLightUnarmed = "I_G_Offroad_01_F"; -vehSDKTruck = "I_C_Van_01_Transport_F"; -//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; -vehSDKPlane = "I_C_Plane_civil_01_F"; -vehSDKBoat = "I_C_Boat_Transport_01_F"; -vehSDKRepair = "B_G_Offroad_01_repair_F"; -SDKFlag = "Flag_Syndikat_F"; -SDKFlagTexture = "\A3\Data_F_exp\Flags\Flag_Synd_CO.paa"; -typePetros = "I_C_Soldier_Camo_F"; - -supportStaticSDKB = "I_HMG_01_support_F"; -ATStaticSDKB = "I_AT_01_weapon_F"; -MGStaticSDKB = "I_HMG_01_high_weapon_F"; -supportStaticsSDKB2 = "I_HMG_01_support_high_F"; -AAStaticSDKB = "I_AA_01_weapon_F"; -MortStaticSDKB = "I_Mortar_01_weapon_F"; -supportStaticsSDKB3 = "I_Mortar_01_support_F"; - -civCar = "C_Offroad_01_F"; -civTruck = "C_Van_01_transport_F"; -civHeli = "C_Heli_Light_01_civil_F"; -civBoat = "C_Boat_Transport_02_F"; - -sniperRifle = "srifle_DMR_06_camo_F"; -lampsSDK = ["acc_flashlight"]; - -ATMineMag = "ATMine_Range_Mag"; -APERSMineMag = "APERSMine_Range_Mag"; - -if (hasFFAA) then - { - call compile preProcessFileLineNumbers "Templates\OccupantsFFAA.sqf" - } -else - { - if (gameMode != 4) then - { - FIARifleman = "B_G_Soldier_F"; - FIAMarksman = "B_G_Sharpshooter_F"; - vehFIAArmedCar = "B_G_Offroad_01_armed_F"; - vehFIATruck = "B_G_van_01_transport_F"; - vehFIACar = "B_G_Offroad_01_F"; - groupsFIASmall = [["B_G_Soldier_GL_F","B_G_Soldier_F"],["B_G_Soldier_M_F","B_G_Soldier_F"],["B_G_Sharpshooter_F","B_G_Soldier_M_F"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["B_G_Soldier_SL_F","B_G_Sharpshooter_F","B_G_Soldier_AR_F","B_G_Soldier_A_F"],["B_G_Soldier_TL_F","B_G_Soldier_AR_F","B_G_Soldier_GL_F","B_G_Soldier_LAT_F"],["B_G_Soldier_TL_F","B_G_Soldier_LAT_F","B_G_Soldier_LAT_F","B_G_Soldier_LAT_F"]]; - FIASquad = ["B_G_soldier_SL_F","B_G_soldier_F","B_G_soldier_LAT_F","B_G_Soldier_M_F","B_G_soldier_TL_F","B_G_soldier_AR_F","B_G_Soldier_A_F","B_G_medic_F"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad,["B_G_soldier_SL_F","B_G_soldier_LAT_F","B_G_Soldier_M_F","B_G_soldier_TL_F","B_G_Soldier_A_F","B_G_medic_F","B_support_MG_F","B_support_AMG_F"]]; - factionFIA = "BLU_G_F"; - } - else - { - FIARifleman = "O_G_Soldier_F"; - FIAMarksman = "O_G_Sharpshooter_F"; - vehFIAArmedCar = "O_G_Offroad_01_armed_F"; - vehFIATruck = "O_G_van_01_transport_F"; - vehFIACar = "O_G_Offroad_01_F"; - groupsFIASmall = [["O_G_Soldier_GL_F","O_G_Soldier_F"],["O_G_Soldier_M_F","O_G_Soldier_F"],["O_G_Sharpshooter_F","O_G_Soldier_M_F"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["O_G_Soldier_SL_F","O_G_Sharpshooter_F","O_G_Soldier_AR_F","O_G_Soldier_A_F"],["O_G_Soldier_TL_F","O_G_Soldier_AR_F","O_G_Soldier_GL_F","O_G_Soldier_LAT_F"],["O_G_Soldier_TL_F","O_G_Soldier_LAT_F","O_G_Soldier_LAT_F","O_G_Soldier_LAT_F"]]; - FIASquad = ["O_G_soldier_SL_F","O_G_soldier_F","O_G_soldier_LAT_F","O_G_Soldier_M_F","O_G_soldier_TL_F","O_G_soldier_AR_F","O_G_Soldier_A_F","O_G_medic_F"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad,["O_G_soldier_SL_F","O_G_soldier_LAT_F","O_G_Soldier_M_F","O_G_soldier_TL_F","O_G_Soldier_A_F","O_G_medic_F","O_support_MG_F","O_support_AMG_F"]]; - factionFIA = "OPF_G_F"; - }; - }; - -vehPoliceCar = "B_GEN_OFFROAD_01_gen_F"; -policeOfficer = "B_GEN_Commander_F"; -policeGrunt = "B_GEN_Soldier_F"; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = if (worldName == "Tanoa") then {"SDK"} else {"FIA"}; - -factionGEN = "BLU_GEN_F"; - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_BG_Guerilla1_1", []],[],[],"","",[],["ItemMap","","","","",""]]; - -//Arsenal and Initial AI weapon setup -unlockedWeapons = ["hgun_PDW2000_F","hgun_Pistol_01_F","hgun_ACPC2_F","Binocular","SMG_05_F","SMG_02_F"];//"LMG_03_F" -unlockedRifles = ["hgun_PDW2000_F","arifle_AKM_F","arifle_AKS_F","SMG_05_F","SMG_02_F"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["9Rnd_45ACP_Mag","30Rnd_9x21_Mag","30Rnd_762x39_Mag_F","MiniGrenade","1Rnd_HE_Grenade_shell","30Rnd_545x39_Mag_F","30Rnd_9x21_Mag_SMG_02","10Rnd_9x21_Mag","200Rnd_556x45_Box_F","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"]; -initialRifles = ["hgun_PDW2000_F","arifle_AKM_F","arifle_AKS_F","SMG_05_F","SMG_02_F"]; -unlockedBackpacks = ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; - -if !(isMultiplayer) then - { - unlockedWeapons append ["arifle_AKM_F","arifle_AKS_F"]; - unlockedRifles append ["arifle_AKM_F","arifle_AKS_F"]; - initialRifles append ["arifle_AKM_F","arifle_AKS_F"]; - unlockedWeapons pushBack "launch_RPG7_F"; - unlockedAT = ["launch_RPG7_F"]; - unlockedMagazines pushBack "RPG7_F"; - }; -//TFAR unlocks -if (hasTFAR) then {unlockedItems = unlockedItems + ["tf_microdagr","tf_anprc154"]}; -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["tf_anprc155"]}; diff --git a/A3-Antistasi/Templates/teamPlayerVanillaAltis.sqf b/A3-Antistasi/Templates/teamPlayerVanillaAltis.sqf deleted file mode 100644 index 8483c9ed60..0000000000 --- a/A3-Antistasi/Templates/teamPlayerVanillaAltis.sqf +++ /dev/null @@ -1,115 +0,0 @@ -if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\teamPlayerVanillaAltisB.sqf"}; -SDKMortar = "I_G_Mortar_01_F"; -SDKMortarHEMag = "8Rnd_82mm_Mo_shells"; -SDKMortarSmokeMag = "8Rnd_82mm_Mo_Smoke_white"; -SDKMGStatic = "I_HMG_01_high_F"; -staticATteamPlayer = "I_Static_AT_F"; -staticAAteamPlayer = "I_Static_AA_F"; - -staticCrewTeamPlayer = "I_G_Soldier_unarmed_F"; -SDKUnarmed = "I_G_Survivor_F"; -SDKSniper = ["I_G_Sharpshooter_F","I_ghillie_ard_F"]; -SDKATman = ["I_G_Soldier_LAT2_F","I_Soldier_LAT2_F"]; -SDKMedic = ["I_G_medic_F","I_medic_F"]; -SDKMG = ["I_G_Soldier_AR_F","I_Soldier_AR_F"]; -SDKExp = ["I_G_Soldier_exp_F","I_Soldier_exp_F"]; -SDKGL = ["I_G_Soldier_GL_F","I_Soldier_GL_F"]; -SDKMil = ["I_G_Soldier_lite_F","I_Soldier_lite_F"]; -SDKSL = ["I_G_Soldier_SL_F","I_Soldier_SL_F"]; -SDKEng = ["I_G_engineer_F","I_engineer_F"]; - -vehSDKBike = "I_G_Quadbike_01_F"; -vehSDKLightArmed = "I_G_Offroad_01_armed_F"; -vehSDKAT = "I_G_Offroad_01_AT_F"; -vehSDKLightUnarmed = "I_G_Offroad_01_F"; -vehSDKTruck = "I_G_Van_01_transport_F"; -//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; -vehSDKPlane = "I_C_Plane_civil_01_F"; -vehSDKBoat = "I_G_Boat_Transport_01_F"; -vehSDKRepair = "I_G_Offroad_01_repair_F"; -SDKFlag = "Flag_Altis_F"; -SDKFlagTexture = "\A3\Data_F\Flags\Flag_Altis_CO.paa"; -typePetros = "I_G_officer_F"; - -supportStaticSDKB = "I_HMG_01_support_F"; -ATStaticSDKB = "I_AT_01_weapon_F"; -MGStaticSDKB = "I_HMG_01_high_weapon_F"; -supportStaticsSDKB2 = "I_HMG_01_support_high_F"; -AAStaticSDKB = "I_AA_01_weapon_F"; -MortStaticSDKB = "I_Mortar_01_weapon_F"; -supportStaticsSDKB3 = "I_Mortar_01_support_F"; - -civCar = "C_Offroad_01_F"; -civTruck = "C_Van_01_transport_F"; -civHeli = "C_Heli_Light_01_civil_F"; -civBoat = "C_Boat_Transport_02_F"; - -sniperRifle = "srifle_DMR_06_camo_F"; -lampsSDK = ["acc_flashlight"]; - -ATMineMag = "ATMine_Range_Mag"; -APERSMineMag = "APERSMine_Range_Mag"; - -if (hasFFAA) then - { - call compile preProcessFileLineNumbers "Templates\OccupantsFFAA.sqf" - } -else - { - if (gameMode != 4) then - { - FIARifleman = "B_Soldier_lite_F"; - FIAMarksman = "B_soldier_M_F"; - vehFIAArmedCar = "B_LSV_01_armed_F"; - vehFIATruck = "B_Truck_01_transport_F"; - vehFIACar = "B_LSV_01_unarmed_F"; - groupsFIASmall = [["B_Soldier_GL_F",FIARifleman],[FIAMarksman,FIARifleman],["B_Sharpshooter_F","B_soldier_M_F"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["B_Soldier_TL_F","B_Soldier_GL_F","B_soldier_AR_F","B_soldier_M_F"],["B_Soldier_TL_F","B_Soldier_GL_F","B_soldier_AR_F","B_soldier_LAT2_F"],["B_Soldier_TL_F","B_soldier_AR_F","B_soldier_AAA_F","B_soldier_AA_F"]]; - FIASquad = ["B_Soldier_TL_F","B_soldier_AR_F","B_Soldier_GL_F","B_Soldier_lite_F","B_Soldier_lite_F","B_soldier_M_F","B_soldier_LAT2_F","B_medic_F"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad,["B_Soldier_TL_F","B_support_AMG_F","B_Soldier_GL_F","B_Soldier_lite_F","B_support_MG_F","B_soldier_M_F","B_soldier_LAT2_F","B_medic_F"]]; - factionFIA = ""; - } - else - { - FIARifleman = "O_soldierU_F"; - FIAMarksman = "O_soldierU_M_F"; - vehFIAArmedCar = "O_MRAP_02_hmg_F"; - vehFIATruck = "O_Truck_02_transport_F"; - vehFIACar = "O_MRAP_02_F"; - groupsFIASmall = [["O_SoldierU_GL_F",FIARifleman],[FIAMarksman,FIARifleman],["O_soldierU_M_F","O_SoldierU_GL_F"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F",FIAMarksman],["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F","O_soldierU_LAT_F"],["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F","O_engineer_U_F"]]; - FIASquad = ["O_SoldierU_SL_F","O_soldierU_AR_F","O_SoldierU_GL_F",FIARifleman,FIARifleman,FIAMarksman,"O_soldierU_LAT_F","O_soldierU_medic_F"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad,["O_SoldierU_SL_F","O_soldierU_AR_F","O_SoldierU_GL_F",FIARifleman,"O_soldierU_A_F","O_soldierU_exp_F","O_soldierU_LAT_F","O_soldierU_medic_F"]]; - factionFIA = ""; - }; - }; - -vehPoliceCar = "B_GEN_OFFROAD_01_gen_F"; -policeOfficer = "B_GEN_Commander_F"; -policeGrunt = "B_GEN_Soldier_F"; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = if (worldName == "Tanoa") then {"SDK"} else {"FIA"}; - -factionGEN = "BLU_GEN_F"; - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_BG_Guerilla1_1", []],[],[],"","",[],["ItemMap","","","","",""]]; - -unlockedWeapons = ["hgun_PDW2000_F","hgun_Pistol_01_F","hgun_ACPC2_F","Binocular","SMG_05_F","SMG_02_F"];//"LMG_03_F" -unlockedRifles = ["hgun_PDW2000_F","arifle_AKM_F","arifle_AKS_F","SMG_05_F","SMG_02_F"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["9Rnd_45ACP_Mag","30Rnd_9x21_Mag","30Rnd_762x39_Mag_F","MiniGrenade","1Rnd_HE_Grenade_shell","30Rnd_545x39_Mag_F","30Rnd_9x21_Mag_SMG_02","10Rnd_9x21_Mag","200Rnd_556x45_Box_F","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"]; -initialRifles = ["hgun_PDW2000_F","arifle_AKM_F","arifle_AKS_F","SMG_05_F","SMG_02_F"]; -unlockedBackpacks = ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; - -if !(isMultiplayer) then - { - unlockedWeapons append ["arifle_AKM_F","arifle_AKS_F"]; - unlockedRifles append ["arifle_AKM_F","arifle_AKS_F"]; - initialRifles append ["arifle_AKM_F","arifle_AKS_F"]; - unlockedWeapons pushBack "launch_MRAWS_olive_rail_F"; - unlockedAT = ["launch_MRAWS_olive_rail_F"]; - unlockedMagazines pushBack "MRAWS_HEAT_F"; - }; -//TFAR Unlocks -if (hasTFAR) then {unlockedItems = unlockedItems + ["tf_microdagr","tf_anprc154"]}; -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["tf_anprc155"]}; diff --git a/A3-Antistasi/Templates/teamPlayerVanillaAltisB.sqf b/A3-Antistasi/Templates/teamPlayerVanillaAltisB.sqf deleted file mode 100644 index 17fccad7fd..0000000000 --- a/A3-Antistasi/Templates/teamPlayerVanillaAltisB.sqf +++ /dev/null @@ -1,106 +0,0 @@ -SDKMortar = "B_G_Mortar_01_F"; -SDKMortarHEMag = "8Rnd_82mm_Mo_shells"; -SDKMortarSmokeMag = "8Rnd_82mm_Mo_Smoke_white"; -SDKMGStatic = "B_HMG_01_high_F"; -staticATteamPlayer = "B_Static_AT_F"; -staticAAteamPlayer = "B_Static_AA_F"; - -staticCrewTeamPlayer = "B_G_Soldier_unarmed_F"; -SDKUnarmed = "B_G_Survivor_F"; -SDKSniper = ["B_G_Soldier_M_F","B_G_Sharpshooter_F"]; -SDKATman = ["B_G_Soldier_LAT2_F","B_G_Soldier_LAT_F"]; -SDKMedic = ["B_G_medic_F","B_G_medic_F"]; -SDKMG = ["B_G_Soldier_AR_F","B_G_Soldier_AR_F"]; -SDKExp = ["B_G_Soldier_exp_F","B_G_Soldier_exp_F"]; -SDKGL = ["B_G_Soldier_GL_F","B_G_Soldier_GL_F"]; -SDKMil = ["B_G_Soldier_lite_F","B_G_Soldier_lite_F"]; -SDKSL = ["B_G_Soldier_SL_F","B_G_Soldier_SL_F"]; -SDKEng = ["B_G_engineer_F","B_G_engineer_F"]; - -vehSDKBike = "B_G_Quadbike_01_F"; -vehSDKLightArmed = "B_G_Offroad_01_armed_F"; -vehSDKAT = "B_G_Offroad_01_AT_F"; -vehSDKLightUnarmed = "B_G_Offroad_01_F"; -vehSDKTruck = "B_G_Van_01_transport_F"; -//vehSDKHeli = "I_C_Heli_Light_01_civil_F"; -vehSDKPlane = "C_Plane_Civil_01_F"; -vehSDKBoat = "B_G_Boat_Transport_01_F"; -vehSDKRepair = "B_G_Offroad_01_repair_F"; -SDKFlag = "Flag_FIA_F"; -SDKFlagTexture = "\A3\Data_F\Flags\Flag_FIA_CO.paa"; -typePetros = "B_G_officer_F"; - -supportStaticSDKB = "B_HMG_01_support_F"; -ATStaticSDKB = "B_AT_01_weapon_F"; -MGStaticSDKB = "B_HMG_01_high_weapon_F"; -supportStaticsSDKB2 = "B_HMG_01_support_high_F"; -AAStaticSDKB = "B_AA_01_weapon_F"; -MortStaticSDKB = "B_Mortar_01_weapon_F"; -supportStaticsSDKB3 = "B_Mortar_01_support_F"; - -civCar = "C_Offroad_01_F"; -civTruck = "C_Van_01_transport_F"; -civHeli = "C_Heli_Light_01_civil_F"; -civBoat = "C_Boat_Transport_02_F"; - -sniperRifle = "srifle_DMR_06_camo_F"; -lampsSDK = ["acc_flashlight"]; - -ATMineMag = "ATMine_Range_Mag"; -APERSMineMag = "APERSMine_Range_Mag"; -if (gameMode != 4) then - { - FIARifleman = "I_C_Soldier_Para_7_F"; - FIAMarksman = "I_C_Soldier_Para_2_F"; - vehFIAArmedCar = "I_C_Offroad_02_LMG_F"; - vehFIATruck = "I_C_Van_01_transport_F"; - vehFIACar = "I_C_Offroad_01_F"; - groupsFIASmall = [["I_C_Soldier_Para_6_F",FIARifleman],[FIAMarksman,FIARifleman],[FIAMarksman,FIAMarksman]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["I_C_Soldier_Para_2_F","I_C_Soldier_Para_6_F","I_C_Soldier_Para_7_F","I_C_Soldier_Para_4_F"],["I_C_Soldier_Para_2_F","I_C_Soldier_Para_6_F","I_C_Soldier_Para_7_F","I_C_Soldier_Para_5_F"]]; - FIASquad = ["I_C_Soldier_Para_2_F","I_C_Soldier_Para_6_F","I_C_Soldier_Para_7_F","I_C_Soldier_Para_4_F","I_C_Soldier_Para_1_F","I_C_Soldier_Para_7_F","I_C_Soldier_Para_8_F","I_C_Soldier_Para_3_F"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad]; - factionFIA = "IND_C_F"; - } -else - { - FIARifleman = "O_soldierU_F"; - FIAMarksman = "O_soldierU_M_F"; - vehFIAArmedCar = "O_MRAP_02_hmg_F"; - vehFIATruck = "O_Truck_02_transport_F"; - vehFIACar = "O_MRAP_02_F"; - groupsFIASmall = [["O_SoldierU_GL_F",FIARifleman],[FIAMarksman,FIARifleman],["O_soldierU_M_F","O_SoldierU_GL_F"]];//["IRG_InfSentry","IRG_ReconSentry","IRG_SniperTeam_M"];/// - groupsFIAMid = [["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F",FIAMarksman],["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F","O_soldierU_LAT_F"],["O_SoldierU_SL_F","O_SoldierU_GL_F","O_soldierU_AR_F","O_engineer_U_F"]]; - FIASquad = ["O_SoldierU_SL_F","O_soldierU_AR_F","O_SoldierU_GL_F",FIARifleman,FIARifleman,FIAMarksman,"O_soldierU_LAT_F","O_soldierU_medic_F"];//"IRG_InfSquad";/// - groupsFIASquad = [FIASquad,["O_SoldierU_SL_F","O_soldierU_AR_F","O_SoldierU_GL_F",FIARifleman,"O_soldierU_A_F","O_soldierU_exp_F","O_soldierU_LAT_F","O_soldierU_medic_F"]]; - factionFIA = ""; - }; - -vehPoliceCar = vehFIACar; -policeOfficer = FIARifleman; -policeGrunt = FIARifleman; -groupsNATOGen = [policeOfficer,policeGrunt]; -nameTeamPlayer = "FIA"; - -factionGEN = "IND_C_F"; - -//Player spawn loadout -teamPlayerDefaultLoadout = [[],[],[],["U_BG_Guerilla2_1", []],[],[],"","",[],["ItemMap","","","","",""]]; - -unlockedWeapons = ["hgun_PDW2000_F","hgun_Pistol_01_F","hgun_ACPC2_F","Binocular","SMG_05_F","SMG_02_F"];//"LMG_03_F" -unlockedRifles = ["hgun_PDW2000_F","arifle_AKM_F","arifle_AKS_F","SMG_05_F","SMG_02_F"];//standard rifles for AI riflemen, medics engineers etc. are picked from this array. Add only rifles. -unlockedMagazines = ["9Rnd_45ACP_Mag","30Rnd_9x21_Mag","30Rnd_762x39_Mag_F","MiniGrenade","1Rnd_HE_Grenade_shell","30Rnd_545x39_Mag_F","30Rnd_9x21_Mag_SMG_02","10Rnd_9x21_Mag","200Rnd_556x45_Box_F","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"]; -initialRifles = ["hgun_PDW2000_F","arifle_AKM_F","arifle_AKS_F","SMG_05_F","SMG_02_F"]; -unlockedBackpacks = ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr"]; - -if !(isMultiplayer) then - { - unlockedWeapons append ["arifle_AKM_F","arifle_AKS_F"]; - unlockedRifles append ["arifle_AKM_F","arifle_AKS_F"]; - initialRifles append ["arifle_AKM_F","arifle_AKS_F"]; - unlockedWeapons pushBack "launch_MRAWS_olive_rail_F"; - unlockedAT = ["launch_MRAWS_olive_rail_F"]; - unlockedMagazines pushBack "MRAWS_HEAT_F"; - }; -//TFAR Unlocks -if (hasTFAR) then {unlockedItems = unlockedItems + ["tf_microdagr","tf_rf7800str"]}; -if (startLR) then {unlockedBackpacks = unlockedBackpacks + ["tf_rt1523g"]}; diff --git a/A3-Antistasi/briefing.sqf b/A3-Antistasi/briefing.sqf old mode 100644 new mode 100755 index 846ba8dbc5..d943ebe483 --- a/A3-Antistasi/briefing.sqf +++ b/A3-Antistasi/briefing.sqf @@ -1,108 +1,125 @@ waitUntil {!isNull player}; - +//format [localize "STR_antistasi_journal_entry_header_tutorial_1"] +//format [localize "STR_antistasi_journal_entry_text_tutorial_1"] if (side player == teamPlayer) then { -_index =player createDiarySubject ["Tutorial","Begin Tutorial"]; -player createDiaryRecord ["Tutorial",["Undercover","In the early stages, especially when accomplishing certain missions, being undercover can be extremely helpful. Just as for real resistance fighters, your ability to disappear is something the enemy cannot counter. See Features section for a deep explanation of Undercover Mode."]]; -player createDiaryRecord ["Tutorial",["Start Position","Find a good spot to begin the mission. Your experience is very different from one start spot to another. Study the surrounding markers and roads between them well. If you start near a road between enemy zones, a patrol may appear and kill Petros"]]; -player createDiaryRecord ["Tutorial",["Resources","Having a good amount of resources for bigger operations is mandatory, especially weapons and ammo. In the initial stages, your main source of resources is accomplishing side-missions."]]; -player createDiaryRecord ["Tutorial",["Conquer and Hold","Don't expect a light counter-attack when you conquer strategic zones such as resources or airportsX. The enemy will send everything they can, if available. If you conquer a zone and expect a counter-attack, fleeing is a nice option."]]; -player createDiaryRecord ["Tutorial",["Strategy","Once you have a nice amount of resources, focus on enemy communications. If you disturb them enough, you won't have to face big counter-attacks."]]; -player createDiaryRecord ["Tutorial",["Aggro Effects","Keep an eye on those. If it's too high, you will have to face more attacks with better troops."]]; -player createDiaryRecord ["Tutorial",["Early Beginning","Don't expect to be able to conquer anything in the early stages. First you have to gather enough resources (HR and Money) in order to be able to conquer and hold your positions. This mission tries to simulate real life guerilla situations. If in doubt, ask yourself what would you do in real life. Don't expect to win every time. Hit and Run is the basic manoeuvre here. Earn every resource, weapon and ammunition to gather enough assets in order to be a real challenge for the enemy. In the meantime, disturb its operations and gain support from the population."]]; +_index =player createDiarySubject ["Tutorial","Antistasi Basics"]; +player createDiaryRecord ["Tutorial",[format [localize "STR_antistasi_journal_entry_header_tutorial_7"],format [localize "STR_antistasi_journal_entry_text_tutorial_7"]]]; +player createDiaryRecord ["Tutorial",[format [localize "STR_antistasi_journal_entry_header_tutorial_6"],format [localize "STR_antistasi_journal_entry_text_tutorial_6"]]]; +player createDiaryRecord ["Tutorial",[format [localize "STR_antistasi_journal_entry_header_tutorial_5"],format [localize "STR_antistasi_journal_entry_text_tutorial_5"]]]; +player createDiaryRecord ["Tutorial",[format [localize "STR_antistasi_journal_entry_header_tutorial_4"],format [localize "STR_antistasi_journal_entry_text_tutorial_4"]]]; +player createDiaryRecord ["Tutorial",[format [localize "STR_antistasi_journal_entry_header_tutorial_3"],format [localize "STR_antistasi_journal_entry_text_tutorial_3"]]]; +player createDiaryRecord ["Tutorial",[format [localize "STR_antistasi_journal_entry_header_tutorial_2"],format [localize "STR_antistasi_journal_entry_text_tutorial_2"]]]; +player createDiaryRecord ["Tutorial",[format [localize "STR_antistasi_journal_entry_header_tutorial_1"],format [localize "STR_antistasi_journal_entry_text_tutorial_1"]]]; _index =player createDiarySubject ["Commander","Commander Options"]; -player createDiaryRecord ["Commander",["In-game Members","In the HQ Flag, if the Server Member feature is enabled, you may check which of the Server Members are in game and the total number of non members."]]; -player createDiaryRecord ["Commander",["Grab Faction Funds","Use this option to grab money from the Faction pool to your personal account. Please note this will have an impact on your score and future promotion chances. Corrupt Commanders may find themselves loosing their command."]]; -player createDiaryRecord ["Commander",["Roadblocks","Use the menu and select a spot on the map. Click where a road is. A group of AT soldiers will join you. Send them to the selected place and they will establish a roadblock there."]]; -player createDiaryRecord ["Commander",["Observation Post","Use the radio and select a spot on the map with good field of vision. A group of snipers will join you. Send them to the selected place and they will spot for you, attempting to remain hidden and not engaging enemies upon contact."]]; -player createDiaryRecord ["Commander",["Sell Vehicle","Use this option to sell captured vehicles and increase Faction funds."]]; -player createDiaryRecord ["Commander",["Minefields","Take the engineers truck to the desired position to build a minefield. Cover them while they deploy mines. From then on, no one will be able to pass the area safely (even your own units - so use with caution). Mines (AT and AP) are taken from your Ammobox. The quantity of mines in the field will depend on the contents of your ammobox, up to a max. number depending on the type of minefield. Delete those minefields to recover the mines."]]; -player createDiaryRecord ["Commander",["Recruit Squad","The Commander may recruit an AI manned squad at base camp flags. Use the High Command module (CTRL + SPACE) to give orders to your squads. Also you may temporally control and dismiss the squad leader in the same way you do with squad-mates."]]; -player createDiaryRecord ["Commander",["Artillery","Mounted mortar teams may be used as artillery support. Select a mortar team using the High Command bar, and press SHIFT + Y in-game to call in a mortar fire mission."]]; -player createDiaryRecord ["Commander",["Bomb Run","Use your Airstrike points to perform a bombing run of the specified type."]]; -player createDiaryRecord ["Commander",["Rest - Camp-fire","Use the action menu on your HQ Camp-fire to rest for 8 hours."]]; -player createDiaryRecord ["Commander",["Move HQ","The Commander may select this option on the HQ Flag in order to move the HQ emplacement to another spot. This will allow you to move your HQ to a safer location or move closer to the front-lines. The closer your HQ is to the enemy, the greater the number of possibile side-missions you will have available. Remember! Keep Petros Safe or you will lose the game!"]]; -player createDiaryRecord ["Commander",["Side Missions - Petros","Ask Petros for any type of mission you want. Mission availability is subject to HQ positioning, current allocated tasks and ownership of the surrounding areas"]]; -player createDiaryRecord ["Commander",["Faction Skill Upgrade","For a price, you can upgrade Faction training so that future recruits will have better skills."]]; -player createDiaryRecord ["Commander",["Garrisons","The Commander is responsible for assigning units as garrisons in conquered areas. Use the Garrison Management option in the HQ flag in order to add or remove garrison troops at each zone. Check Map Info screen for a quick overview of how many soldiers are assigned to each zone."]]; -player createDiaryRecord ["Commander",["General","Having a commander is necessary because he is the commander of the Faction attacking ground forces. Many options are available only to the commander and, depending on your settings, if you play MP, the most experienced player will usually occupy this position."]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_15"],format [localize "STR_antistasi_journal_entry_text_commander_15"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_14"],format [localize "STR_antistasi_journal_entry_text_commander_14"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_13"],format [localize "STR_antistasi_journal_entry_text_commander_13"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_12"],format [localize "STR_antistasi_journal_entry_text_commander_12"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_11"],format [localize "STR_antistasi_journal_entry_text_commander_11"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_10"],format [localize "STR_antistasi_journal_entry_text_commander_10"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_9"],format [localize "STR_antistasi_journal_entry_text_commander_9"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_8"],format [localize "STR_antistasi_journal_entry_text_commander_8"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_7"],format [localize "STR_antistasi_journal_entry_text_commander_7"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_6"],format [localize "STR_antistasi_journal_entry_text_commander_6"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_5"],format [localize "STR_antistasi_journal_entry_text_commander_5"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_4"],format [localize "STR_antistasi_journal_entry_text_commander_4"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_3"],format [localize "STR_antistasi_journal_entry_text_commander_3"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_2"],format [localize "STR_antistasi_journal_entry_text_commander_2"]]]; +player createDiaryRecord ["Commander",[format [localize "STR_antistasi_journal_entry_header_commander_1"],format [localize "STR_antistasi_journal_entry_text_commander_1"]]]; + _index =player createDiarySubject ["SpecialK","Special Keys"]; -player createDiaryRecord ["SpecialK",["Earplugs","Press END to enable / disable earplugs. Disabled with ACE."]]; -player createDiaryRecord ["SpecialK",["Group Manager","MP Only: Press U in-game to join another player's group"]]; -player createDiaryRecord ["SpecialK",["Artillery","Press SHIFT + Y in-game while having an artillery squad selected on the HC bar."]]; -player createDiaryRecord ["SpecialK",["High Command","When you are the Commander, hit CTRL + SPACE to give way-points and other orders to your AI squads using the HC mode. Non commanders may use it to check enemy contacts reported by the Faction communications network."]]; -player createDiaryRecord ["SpecialK",["Battle Options","Press Y in-game to have access any time to several options. Most of them are explained in the Commander or Features sections."]]; +player createDiaryRecord ["SpecialK",[format [localize "STR_antistasi_journal_entry_header_SpecialK_5"],format [localize "STR_antistasi_journal_entry_text_SpecialK_5"]]]; +player createDiaryRecord ["SpecialK",[format [localize "STR_antistasi_journal_entry_header_SpecialK_4"],format [localize "STR_antistasi_journal_entry_text_SpecialK_4"]]]; +player createDiaryRecord ["SpecialK",[format [localize "STR_antistasi_journal_entry_header_SpecialK_3"],format [localize "STR_antistasi_journal_entry_text_SpecialK_3"]]]; +player createDiaryRecord ["SpecialK",[format [localize "STR_antistasi_journal_entry_header_SpecialK_2"],format [localize "STR_antistasi_journal_entry_text_SpecialK_2"]]]; +player createDiaryRecord ["SpecialK",[format [localize "STR_antistasi_journal_entry_header_SpecialK_1"],format [localize "STR_antistasi_journal_entry_text_SpecialK_1"]]]; + _index =player createDiarySubject ["Features","Features Detail"]; -player createDiaryRecord ["Features",["Player and Money","Use this option to donate money to other players or your faction funds. Commanders may add or remove players from the Server Members List if the feature is enabled"]]; -player createDiaryRecord ["Features",["Server Members","For MP only. If enabled, this feature will exclude all non-members from using the HQ Ammobox and become Commander. This feature is intended to avoid having your game ruined by the casual troll in open server environments."]]; -//player createDiaryRecord ["Features",["Group Selection","For MP only. You can build groups with up to 10 human players. Commander is excluded of this function."]]; -player createDiaryRecord ["Features",["Base Static Emplacement","Purchased static weapons won't despawn if you leave them in a base or zone, AI garrison will man them. Reinforce places as you desire."]]; -player createDiaryRecord ["Features",["Fast Travel","When there are no enemies nearby, fast travel to Faction controlled places. The Commander also has the ability to use this option on HC groups, selecting the group on HC bar and clicking on this button"]]; -player createDiaryRecord ["Features",["Ammobox Transfer","When you mount a truck, you may use the Transfer action in the action menu. It will search for nearby ammoboxes and load the contents of the nearest one into the truck's cargo space. You may then unload the truck in your ammobox at HQ for future use. Before transferring, make sure to unload backpack/vest contents into the Truck cargo space and then transfer. TIP: If your HQ Ammobox is full, use this functionality from a nearby truck to add more content to the ammobox as it will then accept everything :)"]]; -player createDiaryRecord ["Features",["Conquer","Some zones, like airportsX or airports require you to use the ""Take the Flag"" action on their respective flags in order to conquer them. Some others, like roadblocks and some outposts, simply require you to defeat the garrison."]]; -player createDiaryRecord ["Features",["Static Weapons","You may steal static weapons found in enemy airportsX. You must use the 'Steal Static' action to do so. DO NOT disassemble them before using the 'Steal Static' action!"]]; -player createDiaryRecord ["Features",["Vehicles","You may buy vehicles for your squad at Faction flags."]]; -player createDiaryRecord ["Features",["Radio Towers",format ["Destroy or capture Radio Towers in order to build trust on %1 cityzens.",worldName]]]; -player createDiaryRecord ["Features",["Politics","This is a civil war. People are not conquered if you cannot conquer their hearts. In game mechanics, this means you cannot conquer cities. The citizens of each town support the enemy or Faction to some amount. The dominant faction is the one who owns the city and benefits from their support in terms of money and human resources (HR). Your actions may lower enemy Support or raise yours, or both. Killing enemies, accomplishing missions, conquering resources, and power-stations, affect the amount of citizen support."]]; -player createDiaryRecord ["Features",["Arsenal","Scavenge for items, weapons and magazines and put them in your HQ Ammobox. Once you have a specific amount of an them, they will be unlocked and added to the Arsenal for personal use (and for your Faction squads). The amount required to unlock depends on how many assets the Faction has unlocked and the number of factories owned. Unlocked weapons, optics and night-vision Googles may also change AI load-out. Basic militiamen are especially affected by this: their load-out will start from small SMGs and progress to having an extra AA / AT launcher. Please note this will not affect their dress, which will depend on the current Faction Skill Level (helmets and uniform). Arsenal is the standard BIS Arsenal, check their documentation for interaction and use.
To see the amounts required to unlock each group of items, open the HQ Ammobox and you will receive a detailed report on the right."]]; -player createDiaryRecord ["Features",["Undercover","Click on this button to go undercover. If you meet the requirements, the enemy won't attack you on sight. On foot, to go undercover you must have no weapons or military equipment visible. You will lose undercover status when you change load-out, get spotted by enemy guard-dogs, plant mines, and can also be reported by some civilians to the enemy. If you are discovered you won't be able to go undercover on foot again for 30 minutes. You can also go undercover by getting into any civilian vehicle. You will lose undercover status by firing any weapon or being spotted far from a road. If you are discovered you won't be able to go undercover in that vehicle again. Getting close to enemy Airbases, outposts and roadblocks will also make you lose undercover status."]]; -player createDiaryRecord ["Features",["Garage","Add any vehicle near your personal Virtual Garage (or factions garage if you are the commander) and keep it safe for future use. Vehicle add option is under the Y menu. Garage management is in HQ options (Flag). Garage recovery capacities may depend on where you are: Air Units can be recovered only near Airbases, boats, near the shore etc."]]; -player createDiaryRecord ["Features",["Faction Leader","Just as with any resistance movement, leadership is not as stable as in organised states. Any player can take the role of Faction Force Commander if the current one is not very popular... Demonstrate your skill while accomplishing missions and killing enemies and maybe you will become the next leader."]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_17"],format [localize "STR_antistasi_journal_entry_text_Features_17", breachingExplosivesAPC call A3A_fnc_createBreachChargeText, "



", breachingExplosivesTank call A3A_fnc_createBreachChargeText]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_16"],format [localize "STR_antistasi_journal_entry_text_Features_16"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_12"],format [localize "STR_antistasi_journal_entry_text_Features_12"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_11"],format [localize "STR_antistasi_journal_entry_text_Features_11"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_10"],format [localize "STR_antistasi_journal_entry_text_Features_10"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_9"],format [localize "STR_antistasi_journal_entry_text_Features_9"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_8"],format [localize "STR_antistasi_journal_entry_text_Features_8"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_7"],format [localize "STR_antistasi_journal_entry_text_Features_7"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_6"],format [localize "STR_antistasi_journal_entry_text_Features_6",worldName]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_5"],format [localize "STR_antistasi_journal_entry_text_Features_5"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_4"],format [localize "STR_antistasi_journal_entry_text_Features_4"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_3"],format [localize "STR_antistasi_journal_entry_text_Features_3"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_2"],format [localize "STR_antistasi_journal_entry_text_Features_2"]]]; +player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_1"],format [localize "STR_antistasi_journal_entry_text_Features_1"]]]; + _index =player createDiarySubject ["AI","AI Management"]; -player createDiaryRecord ["AI",["Dismiss Squad-mate","Select the unit and use the 'Dismiss Squad-mate' option to send them back to HQ. You will recover some of the money you spent on them"]]; -player createDiaryRecord ["AI",["Vehicle Squad","Commander Only. Use this option to assign the vehicle you are looking at to any HC squad. Check vehicle status, order them to mount or disembark, and automate mounted static squads"]]; -player createDiaryRecord ["AI",["Auto Rearm \ Loot","Your AI squad-mates will automatically look for and scavenge any ammunition from nearby corpses, vehicles and ammoboxes if needed. Also they will try to renew their weapons with more powerful ones. If AI is inside a vehicle, they will loot weapons and launchers, and drop them in their truck until there is nothing in the area. Use this instead of the vanilla Rearm radio option"]]; -player createDiaryRecord ["AI",["Auto Heal","AI Medic squad-mates will heal other AIā€™s automatically without the need to give any orders. If in combat, your AI will use smoke grenades for cover. If there is no medic in the group, the AI will use their own medikits."]]; -player createDiaryRecord ["AI",["AI Radio","This feature aims to simulate the lack of radio communications with AI fighters. Your AI squad-mates won't have a radio until you unlock it from the Arsenal. Without a radio, if an AI squad-mate gets too far away, they will get lost and return to the leader's position after completing the last order they received. To avoid this, you may scavenge some radios from enemy (AutoRearm feature will do) or let the AI use a military vehicle which has long range radios. If it takes too long to find their leader, they will automatically return to the HQ."]]; -player createDiaryRecord ["AI",["AI Control","Select a squad-mate or HC Group to gain direct control over them for a limited time. Selecting this option for a HC squad will give you control over the squad's leader"]]; -player createDiaryRecord ["AI",["Recruit","You may recruit up to 9 AI squad-mates at some Faction flags and the HQ flag."]]; +player createDiaryRecord ["AI",[format [localize "STR_antistasi_journal_entry_header_AI_7"],format [localize "STR_antistasi_journal_entry_text_AI_7"]]]; +player createDiaryRecord ["AI",[format [localize "STR_antistasi_journal_entry_header_AI_6"],format [localize "STR_antistasi_journal_entry_text_AI_6"]]]; +player createDiaryRecord ["AI",[format [localize "STR_antistasi_journal_entry_header_AI_5"],format [localize "STR_antistasi_journal_entry_text_AI_5"]]]; +player createDiaryRecord ["AI",[format [localize "STR_antistasi_journal_entry_header_AI_4"],format [localize "STR_antistasi_journal_entry_text_AI_4"]]]; +player createDiaryRecord ["AI",[format [localize "STR_antistasi_journal_entry_header_AI_3"],format [localize "STR_antistasi_journal_entry_text_AI_3"]]]; +player createDiaryRecord ["AI",[format [localize "STR_antistasi_journal_entry_header_AI_2"],format [localize "STR_antistasi_journal_entry_text_AI_2"]]]; +player createDiaryRecord ["AI",[format [localize "STR_antistasi_journal_entry_header_AI_1"],format [localize "STR_antistasi_journal_entry_text_AI_1"]]]; + _index =player createDiarySubject ["Options","Game Options"]; -player createDiaryRecord ["Options",["Reinit UI","Select this option when the Y key or Statistics bar are not working."]]; -player createDiaryRecord ["Options",["Garbage Cleaner","Commander only. Will delete things like dropped weapons, magazines, clothing etc.. Beware, it freezes the game for some time"]]; -player createDiaryRecord ["Options",["Spawn Distance","Commander only. Increase or decrease general spawn and despawn distance. Use it carefully combined with other options."]]; -player createDiaryRecord ["Options",["Civ Spawn","Increase or decrease the percentage of city civilian population that spawn. At 0% only one civilian will spawn in each city."]]; -player createDiaryRecord ["Options",["Music ON/OFF","Antistasi has a situational music script, depending on a player's stance and time of day. The default in MP is OFF, and ON in Singleplayer"]]; -player createDiaryRecord ["Options",["Persistent Save-game","Commander Only. You may save the game at your HQ Map. This will allow you to continue playing upon mission update or server restart, preserving stats, player's equipment, conquered zones, enemy asset availability and many more things. WARNING: Normal save and load runs badly in this mission. This system is your only guarantee of saving the game properly"]]; -player createDiaryRecord ["Options",["AI Limiter","Commander Only. Sets the the maximum amount of AI in map per server or HC. Up to 200 AI may behave decently."]]; -player createDiaryRecord ["Options",["Map Info","Click on a city to learn the strength of their support for the enemy or Faction. Click on other zones to know relevant info about them."]]; - -player createDiaryRecord ["Diary",["Thanks","
LanCommi for his artwork.
Goon and jw custom: Part of the code for the NAPALM script.
rebel12340: Radio Jam script
Manko: Earplug snippet
bobchaos: Managing the community despite all difficulties.
And all those players who spend their time on making comments, suggestions and reports on Steam, Github and BIS forums"]]; -player createDiaryRecord ["Diary",["Mods","Integrated (optional) Mods:
TFAR: Radio integrated in Arsenal. Sound disabled when player is unconscious.
ACE Medical: Will disable Antistasi revive system.

CAUTION: The use of Persistent Save system with TFAR and any weapon mod activated will make them mandatory in future.

Any client sided Mod, such as JSRS, Blastcore, UI Mod should work.

Units and vehicles mods won't work. AI Mods may cause malfunctions (in any case Antistasi has heavy AI tweaking)."]]; -player createDiaryRecord ["Diary",["Script Credits","UPSMon by Monsada, Kronzy and Cool=Azroul13
Persistent Save by zooloo75.
Tags by Marker and Melbo.
JAS by Jeroen (sorry for including you that late)
Tags by Marker and Melbo.
Advanced Towing by Seth Duda."]]; -player createDiaryRecord ["Diary",["HQ - Basics","Flag: Vehicle and Squad Unit Recruitment. Commander Options.
Maru: Side-missions (Commander Only).
Map: Game Options.
Camp-fire: Rest for 8 hours and Clear Forest (Commander Only)."]]; -player createDiaryRecord ["Diary",["Resources","Every 10 minutes each faction receives Money and Manpower according to the zones they own, and the state they are in. Having a good amount of resource zones and some factories is the way of getting enough resources to win this war."]]; -player createDiaryRecord ["Diary",["Money","Money comes from a combination of citizens support on each city, resources conquered, factories conquered (which boost the economy) and power provided to all of them with a nearby friendly power plant (you may also conquer them to cut off Money supply to the enemy). Money is used to purchase vehicles, units and squads"]]; -player createDiaryRecord ["Diary",["Money - MP","In MP games there are two money pools. Faction Money -which is for Commander use only- and personal money. Personal money can be used by any player to recruit AI or buy vehicles. Faction earns money by taxes and accomplishing missions. Personal money comes from killing enemies and accomplishing missions. Options to transfer or donate money are found in the Y menu. Commander can grab money from the Faction Pool to his own account"]]; -player createDiaryRecord ["Diary",["HR","HR or Manpower comes from citizen support on each city. Manpower is needed to recruit more units (1 HR Points = 1 Soldier)"]]; -player createDiaryRecord ["Diary",[format ["%1 and %2 Aggro",nameOccupants,nameInvaders],format ["There is an All vs All war in %4. %1 and %2 are constantly attacking each other, but that does not mean they don't shoot at %3 on first sight. %1 and %2 Aggro points represent how much threat they see in %3 faction. Generally speaking those points will low or raise depending on your actions against them and civilians.",nameOccupants,nameInvaders,nameTeamPlayer,worldName]]]; -switch (gameMode) do - { - case 1: {player createDiaryRecord ["Diary",["AI RoE",format ["All vs All war.

%1 and %2 will attack each other and both to %3.",nameOccupants,nameInvaders,nameTeamPlayer]]]}; - case 2: {player createDiaryRecord ["Diary",["AI RoE",format ["%3 vs All war.

%1 and %2 will attack only %3 and act independently. Both can conquer.",nameOccupants,nameInvaders,nameTeamPlayer]]]}; - case 3: {player createDiaryRecord ["Diary",["AI RoE",format ["%2 vs %1 war.",nameOccupants,nameTeamPlayer]]]}; - case 4: {player createDiaryRecord ["Diary",["AI RoE",format ["%2 vs %1 war.",nameInvaders,nameTeamPlayer]]]}; +player createDiaryRecord ["Options",[format [localize "STR_antistasi_journal_entry_header_Options_8"],format [localize "STR_antistasi_journal_entry_text_Options_8"]]]; +player createDiaryRecord ["Options",[format [localize "STR_antistasi_journal_entry_header_Options_7"],format [localize "STR_antistasi_journal_entry_text_Options_7"]]]; +player createDiaryRecord ["Options",[format [localize "STR_antistasi_journal_entry_header_Options_6"],format [localize "STR_antistasi_journal_entry_text_Options_6"]]]; +player createDiaryRecord ["Options",[format [localize "STR_antistasi_journal_entry_header_Options_5"],format [localize "STR_antistasi_journal_entry_text_Options_5"]]]; +player createDiaryRecord ["Options",[format [localize "STR_antistasi_journal_entry_header_Options_4"],format [localize "STR_antistasi_journal_entry_text_Options_4"]]]; +player createDiaryRecord ["Options",[format [localize "STR_antistasi_journal_entry_header_Options_3"],format [localize "STR_antistasi_journal_entry_text_Options_3"]]]; +player createDiaryRecord ["Options",[format [localize "STR_antistasi_journal_entry_header_Options_2"],format [localize "STR_antistasi_journal_entry_text_Options_2"]]]; +player createDiaryRecord ["Options",[format [localize "STR_antistasi_journal_entry_header_Options_1"],format [localize "STR_antistasi_journal_entry_text_Options_1"]]]; + +//Default Diary entries (Found in "Briefing" box) +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Diary_6"],format [localize "STR_antistasi_journal_entry_text_Diary_6"]]]; +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Diary_5"],format [localize "STR_antistasi_journal_entry_text_Diary_5"]]]; +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Diary_4"],format [localize "STR_antistasi_journal_entry_text_Diary_4"]]]; +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Diary_3"],format [localize "STR_antistasi_journal_entry_text_Diary_3"]]]; +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Diary_2"],format [localize "STR_antistasi_journal_entry_text_Diary_2"]]]; +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Diary_1",nameOccupants,nameInvaders],format [localize "STR_antistasi_journal_entry_text_Diary_1",nameOccupants,nameInvaders,nameTeamPlayer,worldName]]]; + +//Multiplayer Specific Options, these will only show when the game is loaded via Multiplayer. + if (!isNil "serverID") then { + //MP Features + player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_15"],format [localize "STR_antistasi_journal_entry_text_Features_15"]]]; + player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_14"],format [localize "STR_antistasi_journal_entry_text_Features_14"]]]; + player createDiaryRecord ["Features",[format [localize "STR_antistasi_journal_entry_header_Features_13"],format [localize "STR_antistasi_journal_entry_text_Features_13"]]]; + + }; + +}; +//Mission Specific stuff, fuck this code. This specifies the Rules of Engagement option in the menus. +switch (gameMode) do { + case 1: { + player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_gamemode"],format [localize "STR_antistasi_journal_entry_text_gamemode_4",nameOccupants,nameInvaders,nameTeamPlayer]]] + }; + case 2: { + player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_gamemode"],format [localize "STR_antistasi_journal_entry_text_gamemode_3",nameOccupants,nameInvaders,nameTeamPlayer]]] + }; + case 3: { + player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_gamemode"],format [localize "STR_antistasi_journal_entry_text_gamemode_2",nameOccupants,nameTeamPlayer]]] + }; + case 4: { + player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_gamemode"],format [localize "STR_antistasi_journal_entry_text_gamemode_1",nameInvaders,nameTeamPlayer]]] + }; + Default {player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_gamemode"],format [localize "STR_antistasi_journal_entry_text_gamemode_4",nameOccupants,nameInvaders,nameTeamPlayer]]]}; }; -player createDiaryRecord ["Diary",["Loose",format ["You will loose the game if %1 has murdered 1/3 of the total population.",nameInvaders]]]; -player createDiaryRecord ["Diary",["Win","You will win the game when most of the population supports Faction and you have conquered all the Airbases"]]; + + +// Default Welcome stuff. +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Default_3"],format [localize "STR_antistasi_journal_entry_text_Default_3",nameInvaders]]]; +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Default_2"],format [localize "STR_antistasi_journal_entry_text_Default_2"]]]; _nameXMiss = if (hasIFA) then {"Armia Krajowa"} else {if (worldName == "Tanoa") then {"Warlords of the Pacific"} else {"Antistasi"}}; +player createDiaryRecord ["Diary",[format [localize "STR_antistasi_journal_entry_header_Default_1"],format [localize "STR_antistasi_journal_entry_text_Default_1",_nameXMiss]]]; -player createDiaryRecord ["Diary",["Welcome",format ["Welcome to Arma 3 - %1. This mission aims to simulate guerilla combat, tactics and strategic situations. It is not a quick and easy mod, it is long term, step-by-step mission with LOTS of features and enhanced AI.",_nameXMiss]]]; -} -else -{ -player createDiaryRecord ["Diary",["Thanks","
LanCommi for his artwork.
Goon and jw custom: Part of the code for the NAPALM script.
rebel12340: Radio Jam script
Manko: Earplug snippet
bobchaos: Managing the community despite all difficulties.
And all those players who spend their time on making comments, suggestions and reports on Steam and BIS forums"]]; -player createDiaryRecord ["Diary",["Mods","Integrated (optional) Mods:
TFAR: Radio integrated in Arsenal. Sound disabled when player is unconscious.
ACE Medical: Will disable Antistasi revive system.

CAUTION: The use of Persistent Save system with TFAR and any weapon mod activated will make them mandatory in future.

Any client sided Mod, such as JSRS, Blastcore, UI Mod should work.

Units and vehicles mods won't work. AI Mods may cause malfunctions (in any case Antistasi has heavy AI tweaking)."]]; -player createDiaryRecord ["Diary",["Script Credits","UPSMon by Monsada, Kronzy and Cool=Azroul13
Persistent Save by zooloo75.
Tags by Marker and Melbo."]]; -player createDiaryRecord ["Diary",["Requirements",format ["%1 and %2 player slot requirements:
Human %3 Commander in game.
JIP players.
Server Members.
Same or equal player number than %3",nameOccupants,nameInvaders,nameTeamPlayer]]]; -player createDiaryRecord ["Diary",["Intel","You will receive notifications and tasks related to major activities or enemy intel reports."]]; -player createDiaryRecord ["Diary",["Special Keys","Press Y to Fast Travel and purchase a Quadbike for your own use. Press END to use Earplugs."]]; -player createDiaryRecord ["Diary",["Kill Maru",format ["Find the %1 Commander and kill him is the best option to damage their weaponary and assets.",nameTeamPlayer]]]; -player createDiaryRecord ["Diary",[format ["%1 and %2 players",nameOccupants,nameInvaders],format ["You are a %1 or %2 player. You main task is to perform counterinsurgency actions against Faction players.",nameOccupants,nameInvaders]]]; -player createDiaryRecord ["Diary",["Welcome","Welcome to Arma 3 - Warlords of the Pacific. This mission aims to simulate guerilla combat, tactics and strategic situations. It is not a quick and easy mod, it is long term, step-by-step mission with LOTS of features and enhanced AI."]]; -}; \ No newline at end of file +// Always include the Credits. It's important! +_index =player createDiarySubject ["Credits","Credits"]; +player createDiaryRecord ["Credits",[format [localize "STR_antistasi_journal_entry_header_Credits_3"],format [localize "STR_antistasi_journal_entry_text_Credits_3"]]]; +player createDiaryRecord ["Credits",[format [localize "STR_antistasi_journal_entry_header_Credits_2"],format [localize "STR_antistasi_journal_entry_text_Credits_2"]]]; +player createDiaryRecord ["Credits",[format [localize "STR_antistasi_journal_entry_header_Credits_1"],format [localize "STR_antistasi_journal_entry_text_Credits_1"]]]; diff --git a/A3-Antistasi/changelog.txt b/A3-Antistasi/changelog.txt index 1d407150b2..f581ebaa6b 100644 --- a/A3-Antistasi/changelog.txt +++ b/A3-Antistasi/changelog.txt @@ -1,6 +1,10 @@ 0.1 24/04/2016 BETA + - Initial release + + 0.1.1 24/04/2016 BETA + - Fixed Persistent Save: It wont corrupt Altis saves. - Corrected Maru respawning as Petros. - Corrected punishment if SDK player kills a NATO player. @@ -32,7 +36,9 @@ - Halved Quadbike cost. - Gendarmes and FIA will use flashlights. + 0.1.2 24/04/2016 BETA + - NEW FEATURE: Commanders can clear the nearby forest in order to have more space for their vehicles. Persistent Save integrated. - Evac Refugees can happen in NATO cities with substantial differences between NATO and CSAT mission types. - So, removed the +1 HR bonus. @@ -53,7 +59,9 @@ - Corrected RT Rebuild bug. - Prestige values saved correctly. + 0.1.2.3 26/08/2016 BETA + - Tweaked here and there Undercover and Revive to prevent some bugs MP related. - Medics are now truly medics. - Added ragdolling and nice effects for uncosnscious state. @@ -66,7 +74,9 @@ - Deads by NAPALM burn a bit like campfires for some time. - NATO WONT send a QRF to defend a city under attack if it's SDK. + 0.1.2.4 27/08/2016 + - IMPORTANT: Loosing condition: 1/3 of the total population is massacred by CSAT. Number will be shown on "Map Info". - IMPORTANT: R key to respawn. - IMPORTANT: Win conditions: more then half of the population supports SDK and SDK owns all the airports. @@ -87,7 +97,9 @@ - AIs from sidemissions won't make anything spawn. - Fixed when commander disconnects and despawns his AI + vehicles despite he's got players in his group. + 0.3 28/08/2016 + - IMPORTANT: jungles are no longer a sure safe position. SpecOp patrols cover the area if AI feels there is insurgency nearby. If SDK kills all the patrols, they will respawn in the same way roadblocks do. Sometimes, AI will decide to reinforce the area with mines. - Traits on engineers and medics applied to SDK AI too. - Dead AI teammates will get the "Revive" action deleted. @@ -101,7 +113,9 @@ - Few pesky "FIA" here and there. - Some anti lag measures when AI attacks an Airbase. + 0.3.1 28/08/2016 + - Greatly improved spawning garrisons with all the cache related. - Tasks on enemy or friendly major attacks no matter if you are the target or not. - Tweaked a lot spawning numbers on AI major attacks. @@ -113,7 +127,9 @@ - More reliable convoys. - More consistent convoys. + 0.3.2 30/08/2016 + - The ULTIMATE measures to improve FPS. If a player has issues, change config or... buy a new PC. - Really improved performance on distance spawn check script. - Airstrikes won't be performed if enemy has no planes available. @@ -130,7 +146,9 @@ - Parked helis won't pop smoke when AI embarks/disembarks. - Airbase vehicles won't despawn when AI board them. + 0.3.3 01/09/2016 + - IMPORTANT: In SP. 50 seconds timeout to get healed by AI for player, after that, if AI is stuck and trying to heal, player will be conscious again, but with heavy damage. - Corrected error when AI embarked a garrison vehicle - Players won't see attacking AI despawning. @@ -152,7 +170,9 @@ - Corrected name of SDK Outposts / Roadblocks on Load. - Outposts can be FIA now. + 0.4 03/09/2016 BETA + - Land vehicles will try to use main roads!!! - Fixed skill for SDK nor getting saved and loaded. - Fixed bug on artillery in CSAT pubishments. @@ -173,7 +193,9 @@ - Expanded zone type destination on convoys. - Added a lot of vehicles to sell. + 0.4.1 08/09/2016 BETA + - IMPORTANT: REINFORCEMENT CONVOYS. AI will use them to boost their garrison reinforcements when needed. - Halved auto reinforcements on each tick. - Evil warlords may sell those supply trucks instead of making the delivery and fail the mission in change of some decent money. @@ -186,7 +208,9 @@ - Corrected server init bug which made initialisation 2 minutes longer in MP - Disabled introshot as it is causing some issues. + 0.4.2 12/09/2016 BETA + - Removed small bug to remove some mousewheel actions from the player - Corrected bug on AI attack target scripts. - Corrected bugs on refugees mission. @@ -206,10 +230,14 @@ - Corrected vehicle availability check procedures. - Less chance for NATO to build a major attack on airports. + 0.4.3 13/09/2016 BETA + - Killed a few more suspects of the lockup server bug. + 0.4.4 13/09/2016 BETA + - Optimised AI where to attack procedures. No more 99% chance the target will be the central airport. - Corrected bug in Outpost garrisons. - Corrected small bug on rangefinder unlocking. @@ -219,7 +247,9 @@ - Added other types of possible AI squads to spawn. - Added some texture to the map board. + 0.4.5 16/09/2016 BETA + - Attacking AI will be a bit more effective. - Removed LMG of default unlocked pool, changed by a cheap Sting but compatible with flashlights. - Removed Altis FIA uniforms on Arsenal. @@ -233,7 +263,9 @@ - Made NV use depend on game progress, only specops and squad leaders will have mandatory NV. More flashlights, darker nights, more fun! - AI will consider hot zone any with relevant enemie zones around + 0.4.6 18/09/2016 BETA + - Added markers on HQ placement selection for visual aid. - Tweaks and bugfixes on revive. - Heavy increase radius for air assaults. @@ -246,10 +278,14 @@ - Maru's reinforcements will be on foot to avoid issues with Tanoa roads. - Faster Convoys. + 0.5 18/09/2016 BETA + - NEW FEATURE: Tiered missions. As you progress in game some missions will require a contact in some city which will provide relevant info. Tier 2 missions will be harder and with some additional difficulties. Bonuses and penalties will be higher too. Those informants are treacherous, they may report you too... + 0.5.1 26/09/2016 BETA + - Tweaked Arsenal: Now requirements are constant, not affected by factories. - Added a message on mission init so newcomers have an introduction to the persistent save system. - Added some delay to the prisoner rescued count in case player comes back to HQ with Fast Travel @@ -271,7 +307,9 @@ - Convoys behave much better (not thanks to BIS latest update) - Optimised ammobox loadouts to spawn only locked assets and more weapon numbers. + 0.5.2 26/09/2016 BETA + - Enemy AI Skill will have some limit on how good is doing Syndikat and not depending on Sydikat skill level. - When Maru dies no unlocked mags will be locked. - SDK players cannot FT to CSAT places. @@ -282,7 +320,9 @@ - Tailored briefing for non Syndikat players. - When CSAT attacks, timer for next counterattack will be much lower. + 0.6 03/05/2017 ALPHA + - NEW FEATURE: SDK Cities are now garrisoneable, NATO will attack them. This will add an uncommon theatre of war in Antistasi. - IMPORTANT: As this is an Alpha I decided to "free" the mission to any open coop server, in its current state of development mission is playable and I don't have all the time I need to work on it. - No idle for airports when they send a QRF. @@ -292,11 +332,15 @@ - CSAT wont send supply convoys to cities. - Increased skill on Gendarmes and FIA + 0.6.1 03/05/2017 ALPHA + - HOTFIX: SDK Garrisonws were not spawning. - Civ "patrol" cars won't go allways to city centres. + 0.6.2 04/05/2017 ALPHA + - Non TFAR players won't lose Radio on Pers. Load if Radios are unlocked. - Corrected bug on QRF for CSAT - AI will allways search for main roads to unload vehicles on attacks. @@ -305,7 +349,9 @@ - Land AI Road patrols will have allways a good road segment as destination. - Added negative bonuses for time to recover NATO vehicles when they are destroyed. + 0.6.3 05/05/2017 ALPHA + - NEW FEATURE: Autoloot. If you order Auto Rearm a man inside a vehicle, instead of picking new weapons he will scavenge corpses for weapons and place them in his vehicle until he finds nothing more. After that he will pick his old weapon. - NEW FEATURE: Fatal Wounds. Wounds in the head can be only healed by medics. Helmets prevent those, until you lose them.. - Increased timing between major attacks. @@ -323,7 +369,9 @@ - Fog affects Fast Travel enemy distance checks. - SDK will know after some time where the attack is going if they are targeted. + 0.7.0 11/05/2017 ALPHA + - NEW FEATURE: Major attacks now may consist on several waves, converting them in authentic battles. The number of waves depends on several factors. - NEW FEATURE: Added ACRE compatibility. Radios are unlocked by default. - NEW FEATURE: War Level. Represents how much the war is evolved depending on SDK progression. It affects several things. Most of them before this were depending on SDK Skill which made players not upgrade skill to find the game easier. War Level limits a lot of options. @@ -360,19 +408,25 @@ - SDK AT men may spawn with other unlocked launchers. - More aggressive NATO if they are corenered with one Airport. + 0.7.1 22/05/2017 ALPHA + - Improved garrison system, better, faster, smoother. - Corrected bugs on ACRE support. - Corrected a few bugs on AI attacking procedures. - AI should get less stuck unloading weapons on AutoLoot. + 0.7.2 23/05/2017 ALPHA + - NEW FEATURE: "I hate the fog" action on HQ lamp. It will remove the fog, that simple. - Fog checks are back and improved! AI will make decisions depending on fog status on target positions. - No more need to kill the driver to steal a civilian transport, now a few shots to the vehicle will scare him and make him dismount. - Tanoaised breifing thanks part to those who helped on this edition. + 0.8 04/06/2017 ALPHA + - NEW FEATURE: Spawning system reworked, AI will spawn AI again under some limited conditions. More reliable, smoother game and more realistic. Under heavy testing, please report if you find any frozen soldier. - NEW FEATURE: Revive greatly reworked. Carry injured, AI compatible. Less insta kills. - NEW FEATURE: Revive extended to all the factions. @@ -396,11 +450,15 @@ - Corrected small bugs on NV Goggles unlock. - More carried units on big transport vehicles . + 0.8.1 05/06/2017 ALPHA + - Fixed bug on dedi server when buying a civilian truck. - Spawn distance parameters correctly updated on persistent save. + 0.8.2 08/06/2017 ALPHA + - IMPORTANT: Made the whole spawning process on groups fps dependant. Groups will spawn with a minimum of one unit. - RHS GREF: Added some default grenades, SMGs and vest. Players lose their vanilla vest on connection. - TFAR: Default greenfor radio unlocked. @@ -409,7 +467,9 @@ - Spawn distances corrected when FPS monitor changes them automatically. - RHS: Enabled Build Minefield function + 0.9.0 16/06/2017 ALPHA + - NEW FEATURE: Real Garrisons Cache. Garrisons are now composed of combinations of types of soldiers and it works on cache mode (you kill an AT man, go to base, go back, that AT man no longer spawns). AI decides dynamically and with real units and vehicles to send reinforcements, if they reach their destination, they are added to the garrison. - NEW FEATURE: Killzone avoidance. AI will think twice to send reinforcements, QRFs, convoys etc. to some places which may have been proven as killzones. - NEW FEATURE: Air battles. AI will make use of Jets or any Plane with AA capabilities to fight other Air units. @@ -446,6 +506,7 @@ - Unconscious units in water die very fast. - With one HC, AI load will be shared with the server, instead of everything going to the HC. + 0.9.1 18/06/2017 ALPHA - Hotfixed timeout for friendly AI bleedout. @@ -457,6 +518,7 @@ - Fixed wrong message when player was unconscious. - Fixed error on road finding function. + 0.9.2 23/06/2017 ALPHA - Optimised mortar positioning routines. @@ -464,13 +526,16 @@ - Corrected: When CSAT unlimiuted attacks reached timout they were constantly spawing and loosing. - FPS checks won't be done for player recruiting squads + 0.9.3 23/06/2017 ALPHA - Hotfixed some garrisons not spawning. - While BIS does not fix HC Bar squad order options, squads will spawn in Aware stance. changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquereds + 0.9.4 22/08/2017 ALPHA + - NEW FEATURE: Added JAS. The finest Inventory system around the scene, built in by Jeroen Not (Thanks!!!) for Antistasi and one of the things makes Antistasi special :) - NEW FEATURE: FPS monitor will dynamically adapt spawn distances smoothly to avoid serious drops. More Antistasi For All!!! - NEW FEATURE: AI may carry static weapons in their backpacks, if in danger, they may decide to assemble them and use. @@ -482,6 +547,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Unconscious units in vehicles should disembark. - Refugees, traitors etc. shouldnt spawn in some blacklisted buildings (containers) + 0.9.5 21/01/2018 ALPHA - Traitor mission guards type depend on War Level. @@ -493,6 +559,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - When a human tries to revive, FA kits of the healed unit are takin in count. - SHortened a lot distances for AI to decide to send a LAND QRF + 0.9.6 25/01/2018 ALPHA - IMPORTANT: Small QRFs may be launched from nearby outposts. @@ -504,10 +571,12 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Unconscious enemies should die easier. - Civilian cars shouldnt kill your teammates. + 0.9.7 25/01/2018 ALPHA - HOTFIX: Jeroen Arsenal now working as host MP. + 0.9.8 25/01/2018 ALPHA - More usage of predefined positions on airports, so they become more challenging. @@ -517,6 +586,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - ACE: Added a few items. - ACE: Solved ACE BUG, NOT MINE so medical items werent appearing in the proper section. + 0.10.0 08/02/2018 ALPHA - IMPORTANT: Enemy QRF and major attacks affect garrison in departure zone. Hold an attack and decimate outpost / airport garrison. @@ -533,6 +603,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Corrected bug in unlcocked assets for AI dress. - Map Info now shows if Outposts are Idle or Busy. + 0.10.1 11/02/2018 ALPHA - Enabled AI control on mortar squads. @@ -541,10 +612,12 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Corrected small bug on airbase / outpost garrison change when an attack is sent. - Increased ACE integration: city support and QRFs related to AI kills will be included. + 0.10.1 HOTFIX 11/02/2018 ALPHA - Changes on attack waypoints werent applied by a mistake. + 0.10.2 13/02/2018 ALPHA - Major improvements on departure, drills, waypoints and procedures on AI attacks. @@ -552,6 +625,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Cars and Trucks driven by AI will tend to stick on roads much more often. - Surrendered troops ammoboxes shouldnt explode / burn. + 0.10.3 14/02/2018 ALPHA - NEW FEATURE: Player will be able to assign to garrison squadmates and HC controlled squads. @@ -565,6 +639,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Big increase of distance to consider a convoy reached. - Corrected small bug in money convoys when destination was not a city. + 0.10.4 20/02/2018 ALPHA - New Feature: Replaced Sentry squads with MG static squads. Managed by HC module, they will mount an MG when they reach their destination. @@ -610,6 +685,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Heavy economic (only) penalties on Maru's death. - HC groups get removed from the HC bar when they are assigned to a garrison. + 0.11.1 06/03/2018 ALPHA - IMPORTANT: Undercover lose on roadblocks is affected by aggro. With low level, the soldiers wont recognise you and will allow you to pass. @@ -623,6 +699,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Corrected some small UPSMon bug. - AI will be more aggressive when attacking and assaulting garrisons. + 0.11.2 20/03/2018 ALPHA - IMPORTANT: Civ Spawn rework. Civvies everywhere! Now the Setting Civ Percentage means max amount of civilians. Plase NOTE: Civs are executed on clients in MP. @@ -643,6 +720,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Faster reinforcements. - Removed thermal googles of the NV unlocking scripts. SDK AI will spawn with random googles when unlocked. + 0.11.3 26/03/2018 ALPHA - Workers wont get deleted on dedicated servers without HCs. @@ -653,6 +731,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Reduced a bit number of driving civilians. - Garrison states on zones under attack now get saved. + 0.12.0 05/04/2018 ALPHA - IMPORTANT: Added dynamic headless client resource assignation. Antistasi will try to balance the AI load on HC platforms so the idle-est one will spawn AI. @@ -670,6 +749,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Paratroopers shouldnt paradrop in water. - No more QRF paratroopers without parachute :) + 0.12.1 12/04/2018 ALPHA - Added new Tanks DLC SDK Armed cars (AT and LMG). @@ -682,6 +762,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Added LoW DLC civ van as possible spawn. - Stronger Radio Tower effect on Civ Support on each tick. + 0.12.2 14/04/2018 ALPHA - NEW FEATURE: Now you may transport your wounded teammate to some truck / offroad to be healed by friendly medics or at HQ. @@ -693,6 +774,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - NATO wont attack cities under SDK influence. - SDK wont gain influence when the RT is on CSAT hands. + 1.0.0 23/04/2018 - NEW FEATURE: When a garrison is under attack, all players will receive a notification about it with relevant info. PvP too. PvP mission experience should change A LOT. @@ -752,6 +834,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - ACE eraplugs for ACE PvP players. - Skip Time works again with PvP players present. + 1.0.1 14/05/2018 - Player won't be able to garage an air vehicle without being near an airport. @@ -778,6 +861,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Checks for enemy presence will ignore dead, captured, uncosncious etc. enemies. - ACE assets added to PvP player loadouts depending on ACE config. + 1.0.2 16/05/2018 - IMPORTANT: Reviving takes time, depending on the injuries received. Still has some glitches but gameplay improvement wotrth it. @@ -800,6 +884,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Reworked "being carried" and "carried" status to avoid some bugs. - Lowered a bit NATO skill. + 1.0.3 20/05/2018 - IMPORTANT: Early stages AI skill will be lowered, as there was some wrong calculation which made training beyond 5 skill level making AI Rambos. @@ -823,6 +908,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - PvP players will be able to Fast Travel to their respawn point. - Last? Attempt to fix broken BIS task functions with JiP players. + 1.0.4 21/05/2018 - Fixed bugs that made convoy missions not launch. @@ -839,6 +925,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - CAS Air is back on major attacks to airports. - Friendly AAF spawned during daytime wont have NV + 1.0.5 22/05/2018 - IMPORTANT: Conquer QRFs can be dispatched on AI vs AI factions. Instead of only send major attacks to eachother, we may find several qrfs dispatched on the same time, taking advantage of weaker garrisons. @@ -867,6 +954,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Supply missions are lost when the box is lost. - Bulletproofed "transfer to ammobox" script to avoid some errors. + 1.0.6 28/05/2018 - Jeroen Arsenal fix some leeks which allowed players select whatever equipment. Thanks to Jeroen @@ -877,6 +965,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Fixed: when player respawns player is flagged as unconscious. - Re enabled AI teleport to player when they cannot reach the player while unconscious because of AI pathfinding. + 1.0.7 30/05/2018 - Reverted Jeroen's modification because of bugs until we find a solution. @@ -887,6 +976,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Solved when an AI is ordered with Action menu 6 to revive and gets unresponsive for revive. - Hopefully solved some MP animation fails. + 1.0.8 01/06/2018 - Solved several undercover MP issues. @@ -895,6 +985,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Conquering by kills is easier. - Bunkers shouldnt move on persistent save. + 1.1.0 03/06/2018 - NEW FEATURE: Major assault AI overhaul. Now AI sent on major attacks will perform the following: @@ -928,12 +1019,14 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Informers wont spawn in blacklisted buildings. - Bank robbery hint spam removed. + 1.1.1 09/06/2018 - Several persistent save bugfixes. - Re enabled civilians being of the side which owns the city because setFriend command is not reliable during mission. - Re enabled vehicle markers report as the watchpost became uselees without them. + 1.1.2 09/06/2018 - NEW FEATURE: Any kind of destroyed building is persistent saved. @@ -941,6 +1034,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Bugfix and rework of the vehicle markers script. - No loss of advanced towing when the removeAllActions command has been used on the player. + 1.1.3 14/06/2018 - Reworked a bit RT influence, different results from 4 possible status (from destroyed, no influence to no one, to CSAT, negative influence for everyone). @@ -954,6 +1048,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - When AI takes an AI zone, the nearby controls will belong to the conqueror. - Land vehicles wont be constantly teleporting to roads when no player is near. + 1.1.4 21/06/2018 - Solved bug when server is initialised by non members. @@ -970,6 +1065,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Enemy city patrols and surrounding patrols wont spawn if the city has an enemy zone inside the city or patrol zone. - Workarounded some weird bug on task updating in JIP MP. + 1.1.5 06/07/2018 - ALTIS BLUFOR VERSION IS OUT ON STEAM: Play against a mix of militia SDK + AAF in Altis (or RHS alike config). @@ -997,6 +1093,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Reverted error which made tier 1 and 2 NATO have Rambo skills. - Tier 2 NATO (if exist) instead of lowering the aggro when releasing prisoners, they will join you like CSAT. + 1.2.0 13/07/2018 - IMPORTANT: Added enhaced AI features for the HC infantry squads (under testing). @@ -1042,6 +1139,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Mil buildings are not used to spawn ambient civvies. - Aggro implications when conquering / loosing certain territory types. + 1.2.1 27/07/2018 - When rebels lose territory, there is a small chance depending on WL to be attacked on their HQ. @@ -1049,6 +1147,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Solved init bug on new dedis when the admin does not touch the parameters. - Solved statics not saving in MP dedi. + 1.2.2 28/07/2018 - Re enabled Headless Clients. @@ -1057,6 +1156,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Changed major attack AI decisions according to the new mechanic of auto conquer resources and factories when capturing an airbase. Also CSAT will prioritise more enemy outpost assault. - Reduced spawning requisites for a wave to be counted in major attacks. + 1.2.3 28/07/2018 - NEW FEATURE: MP param to monitor non member distance to the closest member or HQ. After some timeout they will be teleported. This can be customizable in the MP lobby but it is activated by default. The aim of this feature is to avoid randomers in open dedis make spawn senseless zones and not be collaborative with other players. @@ -1073,6 +1173,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Re enabled supply box spawn in high war level. - When a headless clint disconnects, an alarm will appear constantly instead of finishing the mission. + 1.2.4 29/07/2018 - HR of AI squadmates is properly refunded when saving. @@ -1084,11 +1185,13 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Reduced a lot the max distance between departure and targets for both land and air attacks (10Kmts and 3 Kmts). - Changed the position of the NATO Carrier in Altis. + 1.2.5 30/07/2018 Holliday update! - Seaport boat garrisons and patrols are subject to boat availability. - Fixed teammate disband. + 1.3.0 16/08/2018 - NEW IMPORTANT FEATURE IN MP: GAME MODE. In the lobby you may set 4 options: All vs All, Rebels vs All and other two on which rebels only fight one chosen faction (invaders or government). @@ -1142,6 +1245,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - NAPALM damage loop a bit more spaced in time (more chances of survive if you move quickly) - Slight less chance for a mortar to get zeroed. + 1.3.1 02/09/18 - IFA: Replaced winter wehrmacht by Afrikakorps for Tier 2 troops. Requires mission restart to see them. @@ -1159,6 +1263,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Fixed bug on CSAT punishments, all cities were targets instead of those who have high support levels. - CSAT wont punish cities influenced by them. + 1.3.2 04/09/18 - NEW FEATURE: Total rework of economics for AI so there are now real economics (like old 1.8) but instead of money they will need time to replentish and maximum assets will depend on zone ownership. Example: Max Tanks for a faction is 1xAirbases belonging to them + you will never see more than that in the field. @@ -1171,6 +1276,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Static weapons placed in building roofs wont spawn if the building is destroyed. - Fixed relentless major attacks in some cases. + 1.3.3 05/09/18 - IMPORTANT: Removed and unauthorised ACE medical in SP to avoid the "I cannot respawn" false bug report flood. @@ -1187,6 +1293,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Fire of built roadblocks delayed so the builder doesent get hurt. - Fixed major bug which stopped economics and major attacks on some templates (specially IFA) + 1.3.4 21/09/18 - Corrected reinf bug when the AI lacks of air transports to send big groups. @@ -1202,6 +1309,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Corrected garrison bug when the garrison lacked of SL or Medic classnames. - Solved bug on basic mandatory vehicle availability check. + 1.3.5 14/10/18 - NEW FEATURE: SP init options ported from MP: Difficulty settings affect several params, and Game Mode behaves the same. Want to fight only Redfor? Now you can! @@ -1220,6 +1328,7 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Fixed bug on AI building assault. - Fixed error on qrf when the AI sends more than 1 vehicle and there are no more vehicles to send. + 1.4.0 25/10/18 - Rework of the spawning scripts, less CPU and bandwith compsuming. @@ -1243,7 +1352,8 @@ changeX a inArea el undercover y revisar a quļæ½ bando van los controlsX conquer - Solved bug in Destroy Heli missions. - Added RHS SPG9 as AT gun for rebel RHSGREF config, thanks to Mocksybren!! -1.4c1.01 through to 1.4c2.0 + +1.4c1.01 through to 1.4c2.0 - 10th August 2019 All Improvements - Support for 3CB - You can now play as the British Armed Forces @@ -1316,4 +1426,193 @@ All Fixes - Several runtime errors - Probably more fixes we've missed. -meter veh civiles IFA y rehacer lo relativo a JNL \ No newline at end of file +meter veh civiles IFA y rehacer lo relativo a JNL <-- I don't know where that comes from and where that belongs [Bob Murphy - 04.01.2020] + + +2.1.1 - 31st August 2019 + +To shorten the version number and to distinguish this version from 1.4 we changed the version to 2.1.1 instead of having 1.4c2.1.1. + +Changes from version 1.4c2.0 to 2.1.1 +Improvements +ā€¢ Antistasi ported to Malden (beta) and Livonia (beta) +ā€¢ Resized and repositioned markers in all the maps +ā€¢ Moved HQ management from the flag to Petros +ā€¢ Start of localisation as the basis for translated versions +ā€¢ UI update for readability +ā€¢ PvP players are not spawning friendly AI anymore +ā€¢ Members now also can get missions from Petros ā€“ not only the commander +ā€¢ Improved chopper and plane spawns on airfields +ā€¢ Punishment and logging implemented for friendly fire +ā€¢ PvP switch time-out enabled +ā€¢ Loadouts and starting gear overhaul +ā€¢ Improved ammo truck mission +ā€¢ Complete overhaul of PvP units +ā€¢ Multiple functions rewritten for readability + +Fixes +ā€¢ Fixed boat spawning on Malden +ā€¢ Changed the object of fireX into a tent got rid of clipping through the floor +ā€¢ Misc items are now unlocking +ā€¢ Blufor units spawning as Greenfor with 3CB loadouts +ā€¢ Non-RHS NVGs removed when using RHS +ā€¢ Loading issue on Linux servers resolved +ā€¢ Radio tower repair missions working again +ā€¢ HQ grenade shield re-implemented +ā€¢ Island-recognition for maps with multiple islands fixed +ā€¢ Static weapons in outposts couldnā€™t be manned by AI +ā€¢ Static weapons at airfields can be stolen +ā€¢ Russian aircraft spawning in Armia Krajowa fixed + + +2.1.2 - 06 September 2019 + +Changes from version 2.1.1 to 2.1.2 +Improvements +ā€¢ Clean up README on GitHub +ā€¢ Implementation of Malden and Livonia to stringtable +ā€¢ Change of weird variable names +ā€¢ Update of different mission.sqmā€™s + +Fixes +ā€¢ Garage wipes +ā€¢ Lost gear when hit ā€œheal, repair and rearmā€ whilst being in vehicle +ā€¢ Unsynchronised buildings +ā€¢ Punishment is not triggering on dead bodies anymore +ā€¢ Revert start parameter changes +ā€¢ Membership fix for Singleplayer +ā€¢ Error on loot crates +ā€¢ Start-up error regarding HC +ā€¢ InitVar for Malden and Livonia + + +2.2 - 04th January 2020 + +Changelog version 2.2 Antistasi Community Edition + +============= Major ====================== + + GAMEPLAY CHANGES + - Changed vehicle spawn mechanic. Vehicles now spawn in suitable positions and without the unwanted explosion. + - Added random convoys driving around and attacking roadblocks on their way. These will grow stronger over time and follow a specific system, but we wont reveal this yet. + - Random convoys attack roadblocks on their ways. + - Added the ability to breach open vehicles with explosives. Get an engineer and break these pesky vehicles open. You maybe want to keep a medic close, damaged vehicles tend to explode. + - Changed the way resource points and factories become destroyed. You see something unusual, shoot it, a industrial building is blocking your way, mortar it, strange civis running around, sho.. You get the point. And watch the barrels. + - Complete overhaul of starting weapons and equipment for all variations of rebel side. Guerilla fighters don't start with high-end weaponary, they start with sandals. + - Rebel AI now appropriately gear from unlocked equipment. Can't win a rebellion with fishing vests, you know. + - Overhaul of the loot tables. A much wider variety of gear should spawn. + - Complete re-balance of AI Skill. Cut the brains of the enemies in half and implanted the other half into your AI units. They should be a lot less useless while fighting worse enemies. + - Adapted Antistasi to the new Ace version 3.13.0. + + PARAMETER CHANGES + - Created parameters to allow DLC gear. Currently, this affects items in crates and civilian vehicles. We heard your call for it. Just make sure you use it with caution. + - Created parameters to customise the variety and amount of loot that gets spawned in crates. + - Created parameters to allow unlocked guided launchers and explosives. So please stop asking for cheats in the help channel. + - Created a parameter to stop an unlocked weapon from unlocking its first valid magazine. For the ones, who really love looting. + - Created a parameter to disable members having access to the Faction Garage, allowing only the commander access. + - Created a (experimental) parameter that disables all of the balance checks on loot crates. Want 100% random loot crates? Toggle this. (Not advised, but feel free to for science.) + - Added an option to disable civilian traffic. The group state they are driving in is careless, and it is a fitting descripting of their driving skills. You can now turn off random death by driving civilians. + + MAP CHANGES (OLDER MAPS WILL NO LONGER WORK WITH 2.2 OR ABOVE) + - Added Kunduz as a playable map. + - Added Tembelan as a playable map. + - Added Chernarus_winter including a snow script as a playable map. + - Added Anizay as a playable map. + - Reworked map marker for Altis, Tanoa, Malden, Chernarus_summer and Livonia. + +============== Minor ======================== + + - Undercover medics can now heal civilians/undercover players without becoming overt. You never know, when you need it. Also check the known errors. + - Made punishment missions a bit less punishing. They are won easier now. Did someone said casuals? + - Updated stringtable. French is now partly available. + - All items now get removed when player respawn. No more stolen radios from the afterlive. + - Readd maps when player respawn. Yeah, that wasn't considered enough. + - Regular players are now allowed to place the HQ if Petros died and there is no boss. + - Moved vehicle-specific actions to VehicleBox. You know, the repair box. Vehicles can now access the arsenal from there too! + - Increased spawn distance on HC vehicles. You may have to search a bit, but the spawning should be better now. + - Every airfield has at least one manned AA vehicle in every case. + - Members now have access to the faction garage by default. + - Complete overhaul of starting weapons and equipment for all variations of rebel side. + - Removed non-USAF troops from traitor spawn pool. + - Added polaris to RHS Blufor PvP vehicle pool. + - Swapped panzerfaust to RPG-75 for Greenfor RHS rebels. + - Added an option to disable civilian traffic. + - Balance pass for "CSAT Punishment" mission. + + + ================ Groundwork =================== + + - Reworked the garrison system to build a new reinforcement system on top of it. Believe us, you will know once we got this running. + - Added a system to simulate convoys of all types. Convoys 12 kilometer away will no longer kill your server performance. Even if there are many. + - Created a template naming convention and precursory files. New names for better understanding. But also alot more files. + - Added Nav Grids. They are large and we are sorry about this. But they have a really important job. + - Added localisation support for Map briefing screen. + - Set the NATOCrates to use a weighted distribution method, rather than random. + - Created a new Parameter for truly random Crates, if wanted. Look for the [Experimental] option in parameter selection. + +================ Bugfixes ======================== + + - Fixed schrodingers' buildings - they should no longer be both destroyed and not. Maybe. We won't know until we check! + - Fixed convoys not moving or stopping moving when attacked (i.e - Convoy missions work again!) + - Dialog back buttons now work correctly. No struggling with dialogs anymore. + - ACRE radios are now recognized correctly. + - Fixed an error relating to toolkits being added to the arsenal incorrectly. + - Fixed one of the civilian traffic options not working. 0.5 (Low) was never working. Did anyone catch that? + - Fixed broken easy difficulty setting. + - Fixed "Destroy the Helicopter" mission. + - Fixed access to HC squad level commands on map interface. + - Certain weapons no longer include base attachments with them. No more free bipods. + - Fixed many bad case and improper item defines throughout the mission. + - Fixed money loss on death to only penalize once. It was 10% + 5%, now it is 15%. Why was it like this? We don't know either. + - There should be much less inconsistency in save data. You know, first this, then that, just like your Ex. We broke up, too. + - Fixed needed time displayed wrong in supply mission description. + - Fixed truck reference in supply mission description. + - Fixed RHS side detection. + - Readded dedicated server startup delay. We figured out it was actually needed. Humans make mistakes you know. + - Fixed money-by-dismissal exploit. No more human trafficing. That was bad from the start. + - Fixed ACRE2 radios not being recognized as such. + - Fixed TFAR radios not being unlocked on start. + - Fixed GPS not in starting items. + - Fixed medical kits claiming to be unknown in arsenal. We all know you're there, don't act up. + - Fixed arsenal being called before it could init. + - Fixed Petros not respawning. Well, at least in theory. + - Fixed statics at base sneaking away. We got you, sneaky bastards. + - Fixed the player being able to take Petros as a prisoner. + - Fixed the player being able to join Petros' group. + - Fixed playable rebell units by stripping them so their initial gear can't be glitched in. + - Fixed most cases of exploding vehicles when Outposts spawn. + - Fixed prices for helicopters so they can't be used for a money glitch. + +================= Code ========================= + +*DISCLAIMER* - Significant template changes are still underway. You might want to avoid making custom templates for a while! + + - Arsenal can now be setup in multiple objects. + - Rebuilt items detection system completely. + - Items system now scans config for defines instead of relying on manual input. + - Extensive sorting and commenting on format for template files, and initVar. + - Moved all units of the same side to the same template (police and militia). + - Added logging to various server functions. + - Stopped modifying items in 'onPlayerRespawn'. + - Stopped player reading a significant portion of initVar on connecting to a server. + - Began work on removing faction or side names from variable names throughout mission. + - Changed destroyedCities to destroyedSites. + - Significant refactoring and organizing of various scripts throughout the mission. They all kept their names, but you may have to search for them. + - Moved map templates. They don't have to be in the unit templates folder. We don't want them there. + - Reworked marker detection. It's even faster now. + - Added a log function for arrays. + - Unified all template files. Makes changing it alot easier for all of us. + - Added a PR templates. We should have done this a long time ago. + - PlayerMarker parameter is now enforced by server. + - Replaced BIS_fnc_selectRandom with selectRandom. + - Replaced type checks with isEqualType. + - Renamed AAFKilledEH to invaderOccupantUnitKilledEH. + - Changed the way dlc items get detected. + - Map templates have been moved to the top level of the mission. + - Small initVar addition to accept new gear arrays. + + +================= Known issues ========================== + + - (Destroy Heli Mission) If you manage to steal the truck while it is trying to transport the heli back, the mission will fail (The fix for this is WIP) + - The updated ACE version 3.13.0 maybe has introduced new issues with ACRE. We are investigating and thankful for input. diff --git a/A3-Antistasi/defines.hpp b/A3-Antistasi/defines.hpp index ac41e1d087..a50c4f9f17 100644 --- a/A3-Antistasi/defines.hpp +++ b/A3-Antistasi/defines.hpp @@ -4,7 +4,7 @@ #endif //Other Includes -#include "Garage\defineCommon.inc" +#include "functions\Garage\defineGarage.inc" // Control types #define CT_STATIC 0 @@ -254,6 +254,3 @@ class RscListBox shadow = 0; }; }; - - - diff --git a/A3-Antistasi/description.ext b/A3-Antistasi/description.ext deleted file mode 100644 index fbdb5b6331..0000000000 --- a/A3-Antistasi/description.ext +++ /dev/null @@ -1,427 +0,0 @@ -#include "defines.hpp" -#include "dialogs.hpp" - -author = $STR_antistasi_credits_generic_author_text; -OnLoadName = $STR_antistasi_credits_generic_missionname_text; -OnLoadMission = $STR_antistasi_credits_generic_missiondesc_text; -loadScreen = "pic.jpg"; - -overviewText = $STR_antistasi_credits_generic_overview_text + " " + $STR_antistasi_credits_generic_version_text; -overviewPicture = "pic.jpg"; - -allowFunctionsLog = 1; -enableDebugConsole[] = {"76561197979729653","76561198034977762","76561198127254055","76561197981991967","76561198274184887","76561198011383725","76561198304402577"}; - -respawn = "BASE"; -respawnDelay = 15; -respawnVehicleDelay = 120; -respawnDialog = 1; -aiKills = 0; -disabledAI=1; -Saving = 0; -showCompass=1; -showRadio=1; -showGPS=1; -showMap=1; -showBinocular=1; -showNotepad=1; -showWatch=1; -debriefing=1; - -//showGroupIndicator = 1; - -class CfgTaskEnhancements - { - enable = 1; //0: disable new task features (default), 1: enable new task features & add new task markers and task widgets into the map - 3d = 1; //0: do not use new 3D markers (default), 1: replace task waypoints with new 3D markers - 3dDrawDist = 3500; //3d marker draw distance (default: 2000) - share = 1; //0: do not count assigned players (default), 1: count how many players have the task assigned - propagate = 1; //0: do not propagate (default), 1: propagate shared tasks to subordinates - }; - -class CfgFunctions { - #include "functions.hpp" - #include "JeroenArsenal\functions.hpp" -}; -class Header -{ -gameType = COOP; -minplayers=1; -maxplayers=32; -}; - -class CfgSounds -{ - class fire - { - name="fire"; - sound[]={"Music\fire.ogg",db+12,1.0}; - titles[]={}; - }; -}; - -class Params -{ - class loadSave - { - title = "Load last Persistent Save"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class gameMode - { - title = "Game Mode"; // Param name visible in the list - values[] = {1,2,3,4}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Reb vs Gov vs Inv","Reb vs Gov & Inv","Reb vs Gov","Reb vs Inv"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class autoSave - { - title = "Enable Autosave (every hour)"; // Param name visible in the list - values[] = {1,0}; // Values; must be integers; has to have the same number of elements as 'texts' - texts[] = {"Yes","No"}; // Description of each selectable item - default = 1; // Default value; must be listed in 'values' array, otherwise 0 is used - // Default values that are not whole numbers do not work. Param will default to 0 (or 1 if defined) - }; - class membership - { - title = "Enable Server Membership"; - texts[] = {"Yes","No"}; - values[] = {1,0}; - default = 1; - //function = "BIS_fnc_paramDaytime"; // (Optional) [[Functions_Library_(Arma_3)|Function]] [[call]]ed when player joins, selected value is passed as an argument - //isGlobal = 1; // (Optional) 1 to execute script / function locally for every player who joins, 0 to do it only on server - }; - class switchComm - { - title = "Enable Commander Switch (highest ranked player)"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class tkPunish - { - title = "Enable Teamkill Punish"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class mRadius - { - title = "Distance from HQ for Sidemissions"; - values[] = {4000,8000,12000}; - // When 'texts' are missing, values will be displayed directly instead - default = 4000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowPvP - { - title = "Allow PvP Slots"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class pMarkers - { - title = "Allow Friendly Player Markers"; - values[] = {1,0}; - texts[] = {"Yes","No"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class AISkill - { - title = "AI Skill"; - values[] = {0.5,1,2}; - texts[] = {"Easy","Normal","Hard"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class unlockItem - { - title = "Number of the same weapons required to unlock"; - values[] = {15,25,40}; - default = 25; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberOnlyMagLimit - { - title = "Number of magazines needed for guests to be able to use them"; - values[] = {10,20,30,40,50,60}; - default = 40; - }; - class civTraffic - { - title = "Rate of Civ Traffic"; - values[] = {0.5,1,3}; - texts[] = {"Low","Medium","JAM"}; - default = 1; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberSlots - { - title = "Percentage of Reserved Slots for Members"; - values[] = {0,20,40,60,80,100}; - texts[] = {"None","20%","40%","60%","80%","All"}; - default = 20; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class memberDistance - { - title = "Max distance non members can be from the closest member or HQ (they will be teleported to HQ after some timeout)"; - values[] = {4000,5000,6000,7000,8000,16000}; - texts[] = {"4 Kmts","5 Kmts","6 Kmts","7 Kmts","8 Kmts","Unlimited"}; - default = 5000; - //file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument - }; - class allowFT - { - title = "Limited Fast Travel"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 1; - }; - class napalmEnabled - { - title = "Enable Napalm Bombing for AI"; - values[] = {0,1}; - texts[] = {"No","Yes"}; - default = 0; - }; -}; - -class CfgIdentities -{ - class protagonista - { - name = "Stavros"; - nameSound = "Stavrou"; - face="GreekHead_A3_01"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class friendlyX - { - name = "Petros"; - nameSound = "Petros"; - face="GreekHead_A3_01"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Anthis - { - name = "Anthis"; - nameSound = "Anthis"; - face="GreekHead_A3_02"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Costa - { - name = "Costa"; - nameSound = "Costa"; - face="GreekHead_A3_03"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Dimitirou - { - name = "Dimitirou"; - nameSound = "Dimitirou"; - face="GreekHead_A3_04"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Elias - { - name = "Elias"; - nameSound = "Elias"; - face="GreekHead_A3_05"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Gekas - { - name = "Gekas"; - nameSound = "Gekas"; - face="GreekHead_A3_06"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Kouris - { - name = "Kouris"; - nameSound = "Kouris"; - face="GreekHead_A3_07"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Leventis - { - name = "Leventis"; - nameSound = "Leventis"; - face="GreekHead_A3_08"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Markos - { - name = "Markos"; - nameSound = "Markos"; - face="GreekHead_A3_09"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Nikas - { - name = "Nikas"; - nameSound = "Nikas"; - face="WhiteHead_02"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Nicolo - { - name = "Nicolo"; - nameSound = "Nicolo"; - face="WhiteHead_03"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Panas - { - name = "Panas"; - nameSound = "Panas"; - face="WhiteHead_04"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; - class Rosi - { - name = "Rosi"; - nameSound = "Rosi"; - face="WhiteHead_05"; - glasses="None"; - speaker="Male04GRE"; - pitch=1.1; - }; - class Samaras - { - name = "Samaras"; - nameSound = "Samaras"; - face="WhiteHead_06"; - glasses="None"; - speaker="Male01GRE"; - pitch=1.1; - }; - class Thanos - { - name = "Thanos"; - nameSound = "Thanos"; - face="WhiteHead_07"; - glasses="None"; - speaker="Male02GRE"; - pitch=1.1; - }; - class Vega - { - name = "Vega"; - nameSound = "Vega"; - face="WhiteHead_08"; - glasses="None"; - speaker="Male03GRE"; - pitch=1.1; - }; -}; - - -/* -class CfgMusic -{ - tracks[]={}; - - class DBS - { - name = ""; - sound[] = {"\music\dbs.ogg", db+5, 1.0}; - }; - -}; -*/ -class CfgDebriefing -{ - class End1 - { - title = "V I C T O R Y"; - subtitle = "Altis is Ours!"; - description = "The population of Altis loves you!
The brave soldiers have proven their valour, and Petros, Altis new Prime Minister, could at last to have a nice holidays. 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 rebels without a leader, you may think about joining them, and free Altis"; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class destroyedCities - { - title = "Altis is Destroyed"; - subtitle = "Altis got Destroyed by OPFOR"; - description = "One third of the population in Altis has been murdered by the OPFOR.
Altis no longer exists, nobody wants to live here."; - picture = "b_unknown"; - pictureColor[] = {0.5,0.0,0.0,1}; - }; - class modUnautorized - { - title = "Incompatible Mods"; - subtitle = "Incompatible Mods detected"; - description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class serverFull - { - title = "Reserved Slot"; - subtitle = "This slot is reserved"; - description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class noPvP - { - title = "Slot Unavailable"; - subtitle = "This slot is unavailable"; - description = "Sorry, but this slot is unavailable for some reason: player not member, match not initialized, lack of rebel commander or recent role as rebel."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; - class hcDown - { - title = "HC Disconnected"; - subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; - picture = "b_unknown"; - pictureColor[] = {0.0,0.5,0.0,1}; - }; -}; diff --git a/A3-Antistasi/dialogs.hpp b/A3-Antistasi/dialogs.hpp index 69adb8be7f..cef4196568 100644 --- a/A3-Antistasi/dialogs.hpp +++ b/A3-Antistasi/dialogs.hpp @@ -1,5 +1,5 @@ //Game start -class first_load { +class set_params { idd=-1; movingenable=false; @@ -31,7 +31,7 @@ class first_load { y = 0.317959 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - action = "closeDialog 0;nul = [] spawn A3A_fnc_loadPreviousSession;"; + action = "loadLastSave = true; closeDialog 0;"; }; class HQ_button_Gstatic: RscButton { @@ -42,8 +42,55 @@ class first_load { y = 0.317959 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - //action = "closeDialog 0;if ((player == theBoss) and (isNil ""placementDone"") and !(isMultiplayer)) then {_nul = [] spawn A3A_fnc_placementselection};"; - action = "closeDialog 0;if ((player == theBoss) and (isNil ""placementDone"") and !(isMultiplayer)) then {closeDialog 0;[] execVM ""dialogs\difficultyMenu.sqf""};"; + action = "loadLastSave = false; closeDialog 0;"; + }; + }; +}; + +class should_load_personal_save { + idd=-1; + movingenable=false; + + class controls { + class HQ_box: BOX + { + idc = -1; + text = $STR_antistasi_dialogs_generic_box_text; + x = 0.244979 * safezoneW + safezoneX; + y = 0.223941 * safezoneH + safezoneY; + w = 0.445038 * safezoneW; + h = 0.20 * safezoneH;//30 + }; + class HQ_frame: RscFrame + { + idc = -1; + text = $STR_antistasi_dialogs_lps_frame_text; + x = 0.254979 * safezoneW + safezoneX; + y = 0.233941 * safezoneH + safezoneY; + w = 0.425038 * safezoneW; + h = 0.18 * safezoneH;//28 + }; + class HQ_button_Gsquad: RscButton + { + idc = -1; + text = $STR_antistasi_dialogs_generic_button_yes_text; + tooltip = $STR_antistasi_dialogs_generic_button_yes_tooltip; + x = 0.272481 * safezoneW + safezoneX; + y = 0.317959 * safezoneH + safezoneY; + w = 0.175015 * safezoneW; + h = 0.0560125 * safezoneH; + action = "closeDialog 0; nul = [] spawn A3A_fnc_loadPreviousSession;"; + }; + class HQ_button_Gstatic: RscButton + { + idc = -1; + text = $STR_antistasi_dialogs_generic_button_no_text; + tooltip = $STR_antistasi_dialogs_generic_button_no_tooltip; + x = 0.482498 * safezoneW + safezoneX; + y = 0.317959 * safezoneH + safezoneY; + w = 0.175015 * safezoneW; + h = 0.0560125 * safezoneH; + action = "closeDialog 0;"; }; }; }; @@ -587,7 +634,7 @@ class vehicle_option { y = 0.317959 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - action = "closeDialog 0;nul=[] execVM ""Dialogs\buy_vehicle_civ.sqf"";"; + action = "closeDialog 0; [] spawn A3A_fnc_buyVehicleCiv;"; }; class HQ_button_Gstatic: RscButton { @@ -598,7 +645,7 @@ class vehicle_option { y = 0.317959 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - action = "closeDialog 0; nul=[] execVM ""Dialogs\buy_vehicle.sqf"";"; + action = "closeDialog 0; [] spawn A3A_fnc_buyVehicle;"; }; }; }; @@ -1257,7 +1304,7 @@ class radio_comm { w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; tooltip = "Teleport your squad or a HC selected squad to a friendly zone depending on several factors"; - action = "closeDialog 0;nul = [] execVM ""fastTravelRadio.sqf"";"; + action = "closeDialog 0; [] spawn A3A_fnc_fastTravelRadio;"; }; class 8slots_R1: RscButton { @@ -1279,7 +1326,7 @@ class radio_comm { w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; tooltip = "Become Undercover if you match the requirements. Enemy AI won't attack you until they discover you"; - action = "closeDialog 0;nul = [] spawn A3A_fnc_undercover"; + action = "closeDialog 0;nul = [] spawn A3A_fnc_goUndercover"; }; class 8slots_R2: RscButton { @@ -1301,7 +1348,7 @@ class radio_comm { w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; tooltip = "Vehicle or Static gun you're looking at will be garaged, interact with Flag to retrieve"; - action = "closeDialog 0;if (player != theBoss) then {nul = [false] call A3A_fnc_garageVehicle} else {if (isMultiplayer) then {_nul = createDialog ""garage_check""} else {nul = [true] call A3A_fnc_garageVehicle}};"; + action = "closeDialog 0; if (isMultiplayer && [player] call A3A_fnc_isMember) then {_nul = createDialog ""garage_check""} else {nul = [false] call A3A_fnc_garageVehicle};"; }; class 8slots_R3: RscButton { @@ -1449,7 +1496,7 @@ class veh_query { y = 0.251941 * safezoneH + safezoneY; w = 0.06 * safezoneW;//0.175015 h = 0.05 * safezoneH; - action = "closeDialog 0;vehQuery = nil; if (player == theBoss) then {nul= [] execVM ""Dialogs\squad_recruit.sqf""} else {hint ""Only Player Commander has access to this function""};"; + action = "closeDialog 0;vehQuery = nil; if (player == theBoss) then { [] spawn A3A_fnc_squadRecruit; } else {hint ""Only Player Commander has access to this function""};"; }; class HQ_button_Gsquad: RscButton { @@ -1719,7 +1766,7 @@ class commander_comm { w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; tooltip = "Recruit new squads and manage them with the HC Module (CTRL + SPACE)"; - action = "closeDialog 0;if (player == theBoss) then {nul= [] execVM ""Dialogs\squad_recruit.sqf""} else {hint ""Only Player Commander has access to this function""};"; + action = "closeDialog 0;if (player == theBoss) then { [] spawn A3A_fnc_squadRecruit; } else {hint ""Only Player Commander has access to this function""};"; }; class 8slots_R1: RscButton { @@ -1774,7 +1821,7 @@ class commander_comm { w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; tooltip = "Look at a vehicle and garage it into faction garage (shared among commanders)"; - action = "if (player == theBoss) then {closeDialog 0;nul = [true] call A3A_fnc_garageVehicle;} else {hint ""You're not the Commander!""};"; + action = "closeDialog 0; [true] call A3A_fnc_garageVehicle;"; }; class 8slots_L4: RscButton { @@ -1785,7 +1832,7 @@ class commander_comm { w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; tooltip = "Step down from commander or toggle eligibility"; - action = "if (isMultiplayer) then {closedialog 0;execVM ""orgPlayers\commResign.sqf""} else {hint ""This feature is MP Only""};"; + action = "if (isMultiplayer) then {closedialog 0;[player] remoteExec [""A3A_fnc_theBossToggleEligibility"", 2]} else {hint ""This feature is MP Only""};"; }; class 8slots_R4: RscButton { @@ -2121,7 +2168,7 @@ class squad_recruit { y = 0.317959 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - action = "closeDialog 0;[] execVM ""Dialogs\squadOptions.sqf"";"; + action = "closeDialog 0; [] spawn A3A_fnc_squadOptions;"; }; class HQ_button_infteam: RscButton { @@ -2315,7 +2362,7 @@ class garage_sell { y = 0.317959 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - action = "closeDialog 0;if (player != theBoss) then {nul = [false] call A3A_fnc_garageVehicle} else {if (isMultiplayer) then {_nul = createDialog ""garage_check""} else {nul = [true] call A3A_fnc_garageVehicle}};"; + action = "closeDialog 0; if (isMultiplayer && [player] call A3A_fnc_isMember) then {_nul = createDialog ""garage_check""} else {nul = [false] call A3A_fnc_garageVehicle};"; }; class HQ_button_Gstatic: RscButton { @@ -2373,7 +2420,7 @@ class garage_check { y = 0.251941 * safezoneH + safezoneY; w = 0.06 * safezoneW;//0.175015 h = 0.05 * safezoneH; - action = "closeDialog 0;_nul = createDialog ""garage_sell"";"; + action = "closeDialog 0;_nul = createDialog ""radio_comm"";"; }; class HQ_button_Gsquad: RscButton { @@ -2977,7 +3024,7 @@ class diff_menu { y = 0.317959 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - action = "closeDialog 0;skillMult = 0.5"; + action = "skillMult = 1; closeDialog 0;"; }; class HQ_button_MG: RscButton { @@ -2987,7 +3034,7 @@ class diff_menu { y = 0.415981 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - action = "closeDialog 0;"; + action = "skillMult = 2; closeDialog 0;"; }; class HQ_button_AT: RscButton { @@ -2997,7 +3044,7 @@ class diff_menu { y = 0.317959 * safezoneH + safezoneY; w = 0.175015 * safezoneW; h = 0.0560125 * safezoneH; - action = "closeDialog 0; skillMult = 2"; + action = "skillMult = 3; closeDialog 0;"; }; }; }; @@ -3115,4 +3162,4 @@ class RscTitles { }; }; }; -}; \ No newline at end of file +}; diff --git a/A3-Antistasi/distanceUnits.sqf b/A3-Antistasi/distanceUnits.sqf deleted file mode 100644 index e8133dc215..0000000000 --- a/A3-Antistasi/distanceUnits.sqf +++ /dev/null @@ -1,29 +0,0 @@ -//example: _result = [distanceSPWN,0,posHQ,Invaders] call A3A_fnc_distanceUnits: devuelve un array con todas las que estĆ©n a menos de distanceSPWN -//example: _result = [distanceSPWN,1,posHQ,teamPlayer] call A3A_fnc_distanceUnits: devuelve un boolean si hay una que estĆ© a menos de distanceSPWN -params ["_distanceX","_modeX","_reference","_variable"]; - -_distanceX = _this select 0;//la distanceX requisito, normalmente distanceSPWN) -_modeX = _this select 1;//lo que devuelve la funciĆ³n, 0 un array, un nĆŗmero mayor un boolean cuando la countX llegue a ese nĆŗmero. -_reference = _this select 2; // posiciĆ³n en formatX array u objectX -_variable = _this select 3;//side -private _result = false; -private _allUnits = allUnits select {_x getVariable ["spawner",false]}; -if (_modeX == 0) then - { - _result = []; - { - if (side group _x == _variable) then - { - if (_x distance2D _reference < _distanceX) then - { - _result pushBack _x; - }; - }; - } forEach _allUnits; - } -else - { - {if ((side group _x == _variable) and (_x distance2D _reference < _distanceX)) exitWith {_result = true}} count _allUnits; - }; - -_result diff --git a/A3-Antistasi/distances4.sqf b/A3-Antistasi/distances4.sqf deleted file mode 100644 index 17ce0f9ef6..0000000000 --- a/A3-Antistasi/distances4.sqf +++ /dev/null @@ -1,239 +0,0 @@ -if (!isServer) exitWith{}; - -debugperf = false; - -private ["_timeX","_markersX","_markerX","_positionMRK"]; - -_timeX = time; - -while {true} do { -//sleep 0.01; -if (time - _timeX >= 0.5) then {sleep 0.1} else {sleep 0.5 - (time - _timeX)}; -if (debugperf) then {hint format ["timeX transcurrido: %1 para %2 markersX", time - _timeX, count markersX]}; -_timeX = time; - -waitUntil {!isNil "theBoss"}; - -_greenfor = []; -_blufor = []; -_opfor = []; - -{ -if (_x getVariable ["GREENFORSpawn",false]) then - { - _greenfor pushBack _x; - /* - if (isPlayer _x) then - { - if (!isNull (getConnectedUAV _x)) then - { - _greenfor pushBack (getConnectedUAV _x); - }; - }; - */ - } -else - { - if (_x getVariable ["BLUFORSpawn",false]) then - { - _blufor pushBack _x; - } - else - { - if (_x getVariable ["OPFORSpawn",false]) then - { - _opfor pushBack _x; - }; - }; - } -} forEach allUnits; - -{ -_markerX = _x; - -_positionMRK = getMarkerPos (_markerX); - -if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then - { - if (spawner getVariable _markerX != 0) then - { - if (spawner getVariable _markerX == 2) then - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _greenfor > 0) or ({if ((_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _opfor > 0) or ({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _blufor > 0) or (_markerX in forcedSpawn)) then - { - spawner setVariable [_markerX,0,true]; - if (_markerX in citiesX) then - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _greenfor > 0) or ({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _blufor > 0) or (_markerX in forcedSpawn)) then {[[_markerX],"A3A_fnc_createAICities"] call A3A_fnc_scheduler}; - if (not(_markerX in destroyedCities)) then - { - if (({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN)) exitWith {1};false} count allUnits > 0) or (_markerX in forcedSpawn)) then {[[_markerX],"A3A_fnc_createCIV"] call A3A_fnc_scheduler}; - }; - } - else - { - if (_markerX in controlsX) then {[[_markerX],"A3A_fnc_createAIcontrols"] call A3A_fnc_scheduler} else { - if (_markerX in airportsX) then {[[_markerX],"A3A_fnc_createAIAirplane"] call A3A_fnc_scheduler} else { - if (((_markerX in resourcesX) or (_markerX in factories))) then {[[_markerX],"A3A_fnc_createAIResources"] call A3A_fnc_scheduler} else { - if ((_markerX in outposts) or (_markerX in seaports)) then {[[_markerX],"A3A_fnc_createAIOutposts"] call A3A_fnc_scheduler};};};}; - }; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _greenfor > 0) or ({if ((_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _opfor > 0) or ({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _blufor > 0) or (_markerX in forcedSpawn)) then - { - spawner setVariable [_markerX,0,true]; - if (isMUltiplayer) then - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulationGlobal true}}} forEach allUnits; - } - else - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulation true}}} forEach allUnits; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN1) exitWith {1}} count _greenfor == 0) and ({if ((_x distance2D _positionMRK < distanceSPWN)) exitWith {1}} count _opfor == 0) and ({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN)) exitWith {1}} count _blufor == 0) and (not(_markerX in forcedSpawn))) then - { - spawner setVariable [_markerX,2,true]; - }; - }; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _greenfor == 0) and ({if ((_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _opfor == 0) and ({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _blufor == 0) and (not(_markerX in forcedSpawn))) then - { - spawner setVariable [_markerX,1,true]; - if (isMUltiplayer) then - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulationGlobal false}}} forEach allUnits; - } - else - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulation false}}} forEach allUnits; - }; - }; - }; - } -else - { - if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) then - { - if (spawner getVariable _markerX != 0) then - { - if (spawner getVariable _markerX == 2) then - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _blufor > 0) or ({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _opfor > 0) or ({if (((_x getVariable ["owner",objNull]) == _x) and (_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _greenfor > 0) or (_markerX in forcedSpawn)) then - { - spawner setVariable [_markerX,0,true]; - if (_markerX in citiesX) then - { - //[_markerX] remoteExec ["A3A_fnc_createAICities",HCGarrisons]; - if (not(_markerX in destroyedCities)) then - { - if (({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN)) exitWith {1};false} count allUnits > 0) or (_markerX in forcedSpawn)) then {[[_markerX],"A3A_fnc_createCIV"] call A3A_fnc_scheduler}; - }; - }; - if (_markerX in outpostsFIA) then {[[_markerX],"A3A_fnc_createFIAOutposts2"] call A3A_fnc_scheduler} else {if (not(_markerX in controlsX)) then {[[_markerX],"A3A_fnc_createSDKGarrisons"] call A3A_fnc_scheduler}}; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _blufor > 0) or ({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _opfor > 0) or ({if (((_x getVariable ["owner",objNull]) == _x) and (_x distance2D _positionMRK < distanceSPWN2) or (_markerX in forcedSpawn)) exitWith {1}} count _greenfor > 0)) then - { - spawner setVariable [_markerX,0,true]; - if (isMUltiplayer) then - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulationGlobal true}}} forEach allUnits; - } - else - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulation true}}} forEach allUnits; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN1) exitWith {1}} count _blufor == 0) and ({if (_x distance2D _positionMRK < distanceSPWN1) exitWith {1}} count _opfor == 0) and ({if (((_x getVariable ["owner",objNull]) == _x) and (_x distance2D _positionMRK < distanceSPWN)) exitWith {1}} count _greenfor == 0) and (not(_markerX in forcedSpawn))) then - { - spawner setVariable [_markerX,2,true]; - }; - }; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _blufor == 0) and ({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _opfor == 0) and ({if (((_x getVariable ["owner",objNull]) == _x) and (_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _greenfor == 0) and (not(_markerX in forcedSpawn))) then - { - spawner setVariable [_markerX,1,true]; - if (isMUltiplayer) then - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulationGlobal false}}} forEach allUnits; - } - else - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulation false}}} forEach allUnits; - }; - }; - }; - } - else - { - if (spawner getVariable _markerX != 0) then - { - if (spawner getVariable _markerX == 2) then - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _greenfor > 0) or ({if ((_x distance2D _positionMRK < distanceSPWN2) and (isPlayer _x)) exitWith {1}} count _opfor > 0) or ({if (_x distance2D _positionMRK < distanceSPWN2) exitWith {1}} count _blufor > 0) or (_markerX in forcedSpawn)) then - { - spawner setVariable [_markerX,0,true]; - if (_markerX in controlsX) then {[[_markerX],"A3A_fnc_createAIcontrols"] call A3A_fnc_scheduler} else { - if (_markerX in airportsX) then {[[_markerX],"A3A_fnc_createAIAirplane"] call A3A_fnc_scheduler} else { - if (((_markerX in resourcesX) or (_markerX in factories))) then {[[_markerX],"A3A_fnc_createAIResources"] call A3A_fnc_scheduler} else { - if ((_markerX in outposts) or (_markerX in seaports)) then {[[_markerX],"A3A_fnc_createAIOutposts"] call A3A_fnc_scheduler};};};}; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _greenfor > 0) or ({if ((_x distance2D _positionMRK < distanceSPWN2) and (isPlayer _x)) exitWith {1}} count _opfor > 0) or ({if (_x distance2D _positionMRK < distanceSPWN2) exitWith {1}} count _blufor > 0) or (_markerX in forcedSpawn)) then - { - spawner setVariable [_markerX,0,true]; - if (isMUltiplayer) then - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulationGlobal true}}} forEach allUnits; - } - else - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulation true}}} forEach allUnits; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN1) exitWith {1}} count _greenfor == 0) and ({if ((_x distance2D _positionMRK < distanceSPWN2) and (isPlayer _x)) exitWith {1}} count _opfor == 0) and ({if ((_x distance2D _positionMRK < distanceSPWN)) exitWith {1}} count _blufor == 0) and (not(_markerX in forcedSpawn))) then - { - spawner setVariable [_markerX,2,true]; - }; - }; - }; - } - else - { - if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _greenfor == 0) and ({if ((_x distance2D _positionMRK < distanceSPWN2) and (isPlayer _x)) exitWith {1}} count _opfor == 0) and ({if (_x distance2D _positionMRK < distanceSPWN2) exitWith {1}} count _blufor == 0) and (not(_markerX in forcedSpawn))) then - { - spawner setVariable [_markerX,1,true]; - if (isMUltiplayer) then - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulationGlobal false}}} forEach allUnits; - } - else - { - {if (_x getVariable ["markerX",""] == _markerX) then {if (vehicle _x == _x) then {_x enableSimulation false}}} forEach allUnits; - }; - }; - }; - }; - }; -} forEach markersX; - -}; diff --git a/A3-Antistasi/economicsAI.sqf b/A3-Antistasi/economicsAI.sqf deleted file mode 100644 index e000150d32..0000000000 --- a/A3-Antistasi/economicsAI.sqf +++ /dev/null @@ -1,119 +0,0 @@ -{ -_sideX = _x; -_accelerator = if (_sideX == Occupants) then {if (tierWar == 1) then {0} else {1+((tierWar + difficultyCoef)/20)}} else {1.2+((tierWar + difficultyCoef)/20)}; -_airbases = {sidesX getVariable [_x,sideUnknown] == _sideX} count airportsX; -_outposts = {sidesX getVariable [_x,sideUnknown] == _sideX} count outposts; -_seaports = {sidesX getVariable [_x,sideUnknown] == _sideX} count seaports; -//at -_maxItems = (_outposts * 0.2) + (_airbases * 0.5); -_typeX = if (_sideX == Occupants) then {staticATOccupants} else {staticATInvaders}; -_currentItems = timer getVariable [_typeX,0]; -if (_currentItems < _maxItems) then - { - timer setVariable [_typeX,_currentItems + (0.2 * _accelerator),true]; - }; -//aa -_maxItems = (_airbases * 2); -_typeX = if (_sideX == Occupants) then {staticAAOccupants} else {staticAAInvaders}; -_currentItems = timer getVariable [_typeX,0]; -if (_currentItems < _maxItems) then - { - timer setVariable [_typeX,_currentItems + (0.1 * _accelerator),true]; - }; -//apcs -_maxItems = (_outposts * 0.3) + (_airbases * 2); -_typeX = if (_sideX == Occupants) then {vehNATOAPC} else {vehCSATAPC}; -if !(_typeX isEqualTo []) then - { - _currentItems = 0; - {_currentItems = _currentItems + (timer getVariable [_x,0])} forEach _typeX; - if (_currentItems < _maxItems) then - { - timer setVariable [selectRandom _typeX,_currentItems + (0.2 * _accelerator),true]; - }; - }; -//tanks -_maxItems = (_outposts * 0.5) + (_airbases * 2); -_typeX = if (_sideX == Occupants) then {vehNATOTank} else {vehCSATTank}; -_currentItems = timer getVariable [_typeX,0]; -if (_currentItems < _maxItems) then - { - timer setVariable [_typeX,_currentItems + (0.1 * _accelerator),true]; - }; -//aaTANKS -_maxItems = _airbases; -_typeX = if (_sideX == Occupants) then {vehNATOAA} else {vehCSATAA}; -_currentItems = timer getVariable [_typeX,0]; -if (_currentItems < _maxItems) then - { - timer setVariable [_typeX,_currentItems + (0.1 * _accelerator),true]; - }; -//ATTACK BOATS -_maxItems = _seaports; -_typeX = if (_sideX == Occupants) then {vehNATOBoat} else {vehCSATBoat}; -_currentItems = timer getVariable [_typeX,0]; -if (_currentItems < _maxItems) then - { - timer setVariable [_typeX,_currentItems + (0.3 * _accelerator),true]; - }; -//CAS PLANE -_maxItems = _airbases * 4; -_typeX = if (_sideX == Occupants) then {vehNATOPlane} else {vehCSATPlane}; -_currentItems = timer getVariable [_typeX,0]; -if (_currentItems < _maxItems) then - { - timer setVariable [_typeX,_currentItems + (0.2 * _accelerator),true]; - }; -//AA PLANE -_maxItems = _airbases * 4; -_typeX = if (_sideX == Occupants) then {vehNATOPlaneAA} else {vehCSATPlaneAA}; -_currentItems = timer getVariable [_typeX,0]; -if (_currentItems < _maxItems) then - { - timer setVariable [_typeX,_currentItems + (0.2 * _accelerator),true]; - }; -//TRANSPORT PLANES -_maxItems = _airbases * 4; -_typeX = if (_sideX == Occupants) then {vehNATOTransportPlanes} else {vehCSATTransportPlanes}; //{vehCSATTransportHelis - [vehCSATPatrolHeli]}; -if !(_typeX isEqualTo []) then - { - _currentItems = 0; - {_currentItems = _currentItems + (timer getVariable [_x,0])} forEach _typeX; - if (_currentItems < _maxItems) then - { - timer setVariable [selectRandom _typeX,_currentItems + (0.2 * _accelerator),true]; - }; - }; -//AIR TRANSPORTS -_maxItems = _airbases * 4; -_typeX = if (_sideX == Occupants) then {vehNATOTransportHelis - [vehNATOPatrolHeli]} else {vehCSATTransportHelis - [vehCSATPatrolHeli]}; -if !(_typeX isEqualTo []) then - { - _currentItems = 0; - {_currentItems = _currentItems + (timer getVariable [_x,0])} forEach _typeX; - if (_currentItems < _maxItems) then - { - timer setVariable [selectRandom _typeX,_currentItems + (0.2 * _accelerator),true]; - }; - }; -//ATTACK HELIS -_maxItems = _airbases * 4; -_typeX = if (_sideX == Occupants) then {vehNATOAttackHelis} else {vehCSATAttackHelis}; -if !(_typeX isEqualTo []) then - { - _currentItems = 0; - {_currentItems = _currentItems + (timer getVariable [_x,0])} forEach _typeX; - if (_currentItems < _maxItems) then - { - timer setVariable [selectRandom _typeX,_currentItems + (0.2 * _accelerator),true]; - }; - }; -//ARTY -_maxItems = _airbases + (_outposts * 0.2); -_typeX = if (_sideX == Occupants) then {vehNATOMRLS} else {vehCSATMRLS}; -_currentItems = timer getVariable [_typeX,0]; -if (_currentItems < _maxItems) then - { - timer setVariable [_typeX,_currentItems + (0.2 * _accelerator),true]; - }; -} forEach [Occupants,Invaders]; \ No newline at end of file diff --git a/A3-Antistasi/flagaction.sqf b/A3-Antistasi/flagaction.sqf deleted file mode 100644 index 02a6ded0dc..0000000000 --- a/A3-Antistasi/flagaction.sqf +++ /dev/null @@ -1,125 +0,0 @@ -#include "Garage\defineCommon.inc" - -private ["_flag","_typeX"]; - -if (!hasInterface) exitWith {}; - -_flag = _this select 0; -_typeX = _this select 1; - -switch _typeX do - { - case "take": - { - removeAllActions _flag; - _actionX = _flag addAction ["Take the Flag ", {[_this select 0, _this select 1] call A3A_fnc_mrkWIN},nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; - _flag setUserActionText [_actionX,"Take the Flag",""]; - }; - case "unit": {_flag addAction ["Unit Recruitment", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot recruit units while there are enemies near you"} else {nul=[] execVM "Dialogs\unit_recruit.sqf"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; - case "vehicle": {_flag addAction ["Buy Vehicle", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot buy vehicles while there are enemies near you"} else {nul = createDialog "vehicle_option"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; - case "mission": { - petros addAction ["Mission Request", {nul=CreateDialog "mission_menu";},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and ([_this] call A3A_fnc_isMember) and (petros == leader group petros)",4]; - petros addAction ["HQ Management", {[] execVM "Dialogs\dialogHQ.sqf"},nil,0,false,true,"","(_this == theBoss) and (petros == leader group petros)", 4]; - }; - case "truckX": {actionX = _flag addAction ["Transfer Ammobox to Truck ", "ammunition\transfer.sqf",nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])"]}; - //case "heal": {if (player != _flag) then {_flag addAction [format ["Revive %1",name _flag], "Revive\actionRevive.sqf",nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])"]}}; - case "heal": { - if (player != _flag) then - { - if ([_flag] call A3A_fnc_fatalWound) then - { - _actionX = _flag addAction [format ["Revive %1 ",name _flag], "Revive\actionRevive.sqf",nil,6,true,true,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)",4]; - _flag setUserActionText [_actionX,format ["Revive %1",name _flag],""]; - } - else - { - _actionX = _flag addAction [format ["Revive %1 ",name _flag], "Revive\actionRevive.sqf",nil,6,true,true,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)",4]; - _flag setUserActionText [_actionX,format ["Revive %1",name _flag],""]; - }; - }; - }; - case "heal1": - { - if (player != _flag) then - { - if ([_flag] call A3A_fnc_fatalWound) then - { - _actionX = _flag addAction [format ["Revive %1 ",name _flag], "Revive\actionRevive.sqf",nil,6,true,false,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)",4]; - - _flag setUserActionText [_actionX,format ["Revive %1",name _flag],""]; - } - else - { - _actionX = _flag addAction [format ["Revive %1 ",name _flag], "Revive\actionRevive.sqf",nil,6,true,false,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)",4]; - _flag setUserActionText [_actionX,format ["Revive %1",name _flag],""]; - }; - //_flag addAction [format ["Revive %1",name _flag], "Revive\actionRevive.sqf",nil,0,false,true,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)"]; - - _actionX = _flag addAction [format ["Carry %1 ",name _flag], "Revive\carry.sqf",nil,5,true,false,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (isNull attachedTo _target) and !(_this getVariable [""helping"",false]);",4]; - _flag setUserActionText [_actionX,format ["Carry %1",name _flag],""]; - [_flag] call jn_fnc_logistics_addActionLoad; - }; - }; - case "moveS": {_flag addAction ["Move this asset", "moveHQObject.sqf",nil,0,false,true,"","(_this == theBoss)"]}; - case "remove": - { - if (player == _flag) then - { - if (isNil "actionX") then - { - removeAllActions _flag; - if (player == player getVariable ["owner",player]) then {[] call SA_Add_Player_Tow_Actions}; - } - else - { - _flag removeAction actionX; - }; - } - else - { - removeAllActions _flag - }; - }; - case "refugee": {_flag addAction ["Liberate ", "AI\liberaterefugee.sqf",nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};//"\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_unbind_ca.paa" - case "prisonerX": {_flag addAction ["Liberate POW ", "AI\liberatePOW.sqf",nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; - case "interrogate": {_flag addAction ["Interrogate", "AI\interrogate.sqf",nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; - case "captureX": {_flag addAction ["Release POW ", "AI\captureX.sqf",nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; - case "buildHQ": {_flag addAction ["Build HQ here", {[] spawn A3A_fnc_buildHQ},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; - case "seaport": {_flag addAction ["Buy Boat", {[vehSDKBoat] spawn A3A_fnc_addFIAVeh},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; - case "steal": {_flag addAction ["Steal Static", "REINF\stealStatic.sqf",nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; - case "garage": - { - if (isMultiplayer) then - { - _flag addAction ["Personal Garage", {nul = [GARAGE_PERSONAL] spawn A3A_fnc_garage},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])"]; - _flag addAction ["Faction Garage", {nul = [GARAGE_FACTION] spawn A3A_fnc_garage},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])"]; - } - else - { - _flag addAction ["Faction Garage", {nul = [GARAGE_FACTION] spawn A3A_fnc_garage},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])"] - }; - }; - case "fireX": - { - fireX addAction ["Rest for 8 Hours", "skiptime.sqf",nil,0,false,true,"","(_this == theBoss)",4]; - fireX addAction ["Clear Nearby Forest", "clearForest.sqf",nil,0,false,true,"","(_this == theBoss)",4]; - fireX addAction ["I hate the fog", "[10,0] remoteExec [""setFog"",2]",nil,0,false,true,"","(_this == theBoss)",4]; - fireX addAction ["Move this asset", "moveHQObject.sqf",nil,0,false,true,"","(_this == theBoss)"]; - }; - - case "SDKFlag": - { - removeAllActions _flag; - _flag addAction ["Unit Recruitment", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot recruit units while there are enemies near you"} else {nul=[] execVM "Dialogs\unit_recruit.sqf"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; - _flag addAction ["Buy Vehicle", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot buy vehicles while there are enemies near you"} else {nul = createDialog "vehicle_option"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; - if (isMultiplayer) then - { - _flag addAction ["Personal Garage", {nul = [GARAGE_PERSONAL] spawn A3A_fnc_garage},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; - _flag addAction ["Faction Garage", {nul = [GARAGE_FACTION] spawn A3A_fnc_garage},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; - } - else - { - _flag addAction ["Faction Garage", {nul = [GARAGE_FACTION] spawn A3A_fnc_garage},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4] - }; - }; - }; \ No newline at end of file diff --git a/A3-Antistasi/functions.hpp b/A3-Antistasi/functions.hpp old mode 100644 new mode 100755 index 911c3f40c0..1b4ce0aa13 --- a/A3-Antistasi/functions.hpp +++ b/A3-Antistasi/functions.hpp @@ -1,312 +1,489 @@ class A3A { + class init + { + //Main initialisation functions. + class initServer {}; + class initClient {}; + + //Other initialisation functions (generally called by the above) + class cityinfo {}; + class credits {}; + class initFuncs {}; + class initGarrisons {}; + class initGetMissionPath {}; + class initSpawnPlaces {}; + + class initVar {}; + class initVarClient {}; + class initVarCommon {}; + class initVarServer {}; + + class initZones {}; + class modBlacklist {}; + class playerMarkers {}; + class prepareMarkerArrays {}; + class reinitY {}; + class resourcecheck {}; + class tags {}; + }; + class Base { - class addHC {file="addHC.sqf";}; - class addTimeForIdle {file="addTimeForIdle.sqf";}; - class AILoadInfo {file="AILoadInfo.sqf";}; - class blackout {file="blackout.sqf";}; - class attackAAF {file="attackAAF.sqf";}; - class buildHQ {file="buildHQ.sqf";}; - class ejectPvPPlayerIfInvalidVehicle {file="ejectPvPPlayerIfInvalidVehicle.sqf";}; - class createPetros {file="createPetros.sqf";}; - class punishment {file="punishment.sqf";}; - class citiesToCivPatrol {file="citiesToCivPatrol.sqf";}; - class citySupportChange {file="citySupportChange.sqf";}; - class commsMP {file="commsMP.sqf";}; - class createControls {file="createControls.sqf";}; - class createOutpostsFIA {file="createOutpostsFIA.sqf";}; - class deleteControls {file="deleteControls.sqf";}; - class destroyCity {file="destroyCity.sqf";}; - class distanceUnits {file="distanceUnits.sqf";}; - class distances4 {file="distances5.sqf";}; - class economicsAI {file="economicsAI.sqf";}; - class FIAradio {file="FIAradio.sqf";}; - class findBasesForConvoy {file="findBasesForConvoy.sqf";}; - class findNearestGoodRoad {file="findNearestGoodRoad.sqf";}; - class flagaction {file="flagaction.sqf";}; - class fn_location {file="fn_location.sqf";}; - class fogCheck {file="fogCheck.sqf";}; - class garbageCleaner {file="garbageCleaner.sqf";}; - class garrisonInfo {file="garrisonInfo.sqf";}; - class intelFound {file="intelFound.sqf";}; - class isFrontline {file="isFrontline.sqf";}; - class isTheSameIsland {file="isTheSameIsland.sqf";}; - class localizar {file="localizar.sqf";}; - class logPerformance {file="logPerformance.sqf";}; - class markerChange {file="markerChange.sqf";}; - class moveHQ {file="moveHQ.sqf";}; - class mrkUpdate {file="mrkUpdate.sqf";}; - class mrkWIN {file="mrkWIN.sqf";}; - class NATOFT {file="NATOFT.sqf";}; - class numericRank {file="numericRank.sqf";}; - class onPlayerDisconnect {file="onPlayerDisconnect.sqf";}; - class onHeadlessClientDisconnect {file="onHeadlessClientDisconnect.sqf";}; - class patrolDestinations {file="patrolDestinations.sqf";}; - class placementSelection {file="placementselection.sqf";}; - class playerHasBeenPvPCheck {file="playerHasBeenPvPCheck.sqf";}; - class powerCheck {file="powerCheck.sqf";}; - class powerReorg {file="powerReorg.sqf";}; - class prestige {file="prestige.sqf";}; - class outpostDialog {file="outpostDialog.sqf";}; - class radioCheck {file="radioCheck.sqf";}; - class rebuildAssets {file="rebuildAssets.sqf";}; - class repairRuinedBuilding {file="repairRuinedBuilding.sqf";}; - class relocateHQObjects {file="relocateHQObjects.sqf";}; - class resourceCheckSkipTime {file="resourcecheckSkipTime.sqf";}; - class resourcesFIA {file="resourcesFIA.sqf";}; - class returnMuzzle {file="returnMuzzle.sqf";}; - class revealToPlayer {file="revealToPlayer.sqf";}; - class scheduler {file="scheduler.sqf";}; - class sellVehicle {file="sellVehicle.sqf";}; - class setMarkerAlphaForSide {file="setMarkerAlphaForSide.sqf";}; - class sizeMarker {file="sizeMarker.sqf";}; - class statistics {file="statistics.sqf";}; - class stripGearFromLoadout {file="stripGearFromLoadout.sqf";}; - class teleportVehicleToBase {file="teleportVehicleToBase.sqf";}; - class translateVariable {file="statSave\translateVariable.sqf";}; - class keys {file="keys.sqf";}; - class timingCA {file="timingCA.sqf";}; - class undercover {file="undercover.sqf";}; - class unlockVehicle {file="unlockVehicle.sqf";}; - class zoneCheck {file="zoneCheck.sqf";}; - //class tempMoveMrk {file="tempMoveMrk.sqf";}; - } + class addActionBreachVehicle {}; + class addHC {}; + class addTimeForIdle {}; + class AILoadInfo {}; + class rebelAttack {}; + class blackout {}; + class buildHQ {}; + class citiesToCivPatrol {}; + class citySupportChange {}; + class commsMP {}; + class createBreachChargeText {}; + class createControls {}; + class createOutpostsFIA {}; + class createPetros {}; + class deleteControls {}; + class destroyCity {}; + class distance {}; + class distanceUnits {}; + class economicsAI {}; + class ejectPvPPlayerIfInvalidVehicle {}; + class FIAradio {}; + class findBasesForConvoy {}; + class findNearestGoodRoad {}; + class flagaction {}; + class fogCheck {}; + class garbageCleaner {}; + class garrisonInfo {}; + class healAndRepair {}; + class initPetros {}; + class intelFound {}; + class isFrontline {}; + class isTheSameIsland {}; + class joinMultipleGroups {}; + class keys {}; + class localizar {}; + class location {}; + class logPerformance {}; + class markerChange {}; + class moveHQ {}; + class mrkUpdate {}; + class mrkWIN {}; + class NATOFT {}; + class numericRank {}; + class onHeadlessClientDisconnect {}; + class onPlayerDisconnect {}; + class outpostDialog {}; + class patrolDestinations {}; + class placementSelection {}; + class playableUnits {}; + class powerCheck {}; + class powerReorg {}; + class prestige {}; + class radioCheck {}; + class rebuildAssets {}; + class relocateHQObjects {}; + class repairRuinedBuilding {}; + class resourceCheckSkipTime {}; + class resourcesFIA {}; + class returnMuzzle {}; + class revealToPlayer {}; + class scheduler {}; + class sellVehicle {}; + class setMarkerAlphaForSide {}; + class sizeMarker {}; + class splitVehicleCrewIntoOwnGroups {}; + class startBreachVehicle {}; + class statistics {}; + class stripGearFromLoadout {}; + class teleportVehicleToBase {}; + class timingCA {}; + class translateVariable {}; + class unlockVehicle {}; + class zoneCheck {}; + }; + + class AI { - class AAFKilledEH {file="AI\AAFKilledEH.sqf";}; - class airdrop {file="AI\airdrop.sqf";}; - class AIreactOnKill {file="AI\AIreactOnKill.sqf";}; - class airstrike {file="AI\airstrike.sqf";}; - class artillery {file="AI\artillery.sqf";}; - class artySupport {file="AI\artySupport.sqf";}; - class assaultBuilding {file="AI\assaultBuilding.sqf";}; - class attackDrillAI {file="AI\attackDrillAI.sqf";}; - class autoHealFnc {file="AI\autoHealFnc.sqf";}; - class autoLoot {file="AI\autoLoot.sqf";}; - class autoRearm {file="AI\autoRearm.sqf";}; - class help {file="AI\help.sqf";}; - class isBuildingPosition {file="AI\Buildings\isBuildingPosition.sqf";}; - class canConquer {file="AI\canConquer.sqf";}; - class canFight {file="AI\canFight.sqf";}; - class coverage {file="AI\coverage.sqf";}; - class chargeWithSmoke {file="AI\chargeWithSmoke.sqf";}; - class destroyBuilding {file="AI\destroyBuilding.sqf";}; - class doFlank {file="AI\doFlank.sqf";}; - class nearEnemy {file="AI\nearEnemy.sqf";}; - class enemyList {file="AI\enemyList.sqf";}; - class fastrope {file="AI\fastrope.sqf";}; - class findSafeRoadToUnload {file="AI\findSafeRoadToUnload.sqf";}; - class suppressingFire {file="AI\suppressingFire.sqf";}; - class guardDog {file="AI\guardDog.sqf";}; - class hasRadio {file="AI\hasRadio.sqf";}; - class hideInBuilding {file="AI\hideInBuilding.sqf";}; - class inmuneConvoy {file="AI\inmuneConvoy.sqf";}; - class landThreatEval {file="AI\landThreatEval.sqf";}; - class mineSweep {file="AI\mineSweep.sqf";}; - class mortarDrill {file="AI\mortarDrill.sqf";}; - class mortarSupport {file="AI\mortarSupport.sqf";}; - class mortyAI {file="AI\mortyAI.sqf";}; - class napalm {file="AI\napalm.sqf";}; - class napalmDamage {file="AI\napalmDamage.sqf";}; - class askHelp {file="AI\askHelp.sqf";}; - class entriesLand {file="AI\entriesLand.sqf";}; - class rearmCall {file="AI\rearmCall.sqf";}; - class recallGroup {file="AI\recallGroup.sqf";}; - class smokeCoverAuto {file="AI\smokeCoverAuto.sqf";}; - class staticAutoT {file="AI\staticAutoT.sqf";}; - class staticMGDrill {file="AI\staticMGDrill.sqf";}; - class surrenderAction {file="AI\surrenderAction.sqf";}; - class typeOfSoldier {file="AI\typeOfSoldier.sqf";}; - class undercoverAI {file="AI\undercoverAI.sqf";}; - class unitGetToCover {file="AI\unitGetToCover.sqf";}; - class useFlares {file="AI\useFlares.sqf";}; - class VANTinfo {file="AI\VANTinfo.sqf";}; - class vehicleMarkers {file="AI\vehicleMarkers.sqf";}; - //class AAthreatEval {file="AI\AAthreatEval.sqf";}; - //class hasLOS {file="AI\hasLOS.sqf";}; - } + class occupantInvaderUnitKilledEH {}; + class airbomb {}; + class airdrop {}; + class AIreactOnKill {}; + class airstrike {}; + class artillery {}; + class artySupport {}; + class askHelp {}; + class assaultBuilding {}; + class attackDrillAI {}; + class autoHealFnc {}; + class autoLoot {}; + class autoRearm {}; + class canConquer {}; + class canFight {}; + class captureX {}; + class chargeWithSmoke {}; + class coverage {}; + class destroyBuilding {}; + class doFlank {}; + class enemyList {}; + class entriesLand {}; + class fastrope {}; + class findSafeRoadToUnload {}; + class guardDog {}; + class hasRadio {}; + class help {}; + class hideInBuilding {}; + class inmuneConvoy {}; + class interrogate {}; + class isBuildingPosition {}; + class landThreatEval {}; + class liberaterefugee {}; + class liberatePOW {}; + class mineSweep {}; + class mortarDrill {}; + class mortarSupport {}; + class mortyAI {}; + class napalm {}; + class napalmDamage {}; + class nearEnemy {}; + class rearmCall {}; + class recallGroup {}; + class smokeCoverAuto {}; + class staticAutoT {}; + class staticMGDrill {}; + class suppressingFire {}; + class surrenderAction {}; + class typeOfSoldier {}; + class undercoverAI {}; + class unitGetToCover {}; + class useFlares {}; + class VANTinfo {}; + class vehicleMarkers {}; + }; + + class Convoy + { + class convoyDebug {}; + class convoyMovement {}; + class createAIAction {}; + class createConvoy {}; + class despawnConvoy {}; + class findAirportForAirstrike {}; + class followVehicle {}; + class onConvoyArrival {}; + class onSpawnedArrival {}; + class roadblockFight {}; + class selectAndCreateVehicle {}; + class spawnConvoy {}; + class spawnConvoyLine {}; + }; class CREATE { - class AAFroadPatrol {file="CREATE\AAFroadpatrol.sqf";}; - class airportCanAttack {file="CREATE\airportCanAttack.sqf";}; - class AIVEHinit {file="CREATE\AIVEHinit.sqf";}; - class cargoSeats {file="CREATE\cargoSeats.sqf";}; - class CIVinit {file="CREATE\CIVinit.sqf";}; - class civVEHinit {file="CREATE\civVEHinit.sqf";}; - class cleanserVeh {file="CREATE\cleanserVeh.sqf";}; - class createAIAirplane {file="CREATE\createAIAirplane.sqf";}; - class createAICities {file="CREATE\createAICities.sqf";}; - class createAIcontrols {file="CREATE\createAIcontrols.sqf";}; - class createAIOutposts {file="CREATE\createAIOutposts.sqf";}; - class createAIResources {file="CREATE\createAIResources.sqf";}; - class createCIV {file="CREATE\createCIV.sqf";}; - class createFIAOutposts2 {file="CREATE\createFIAOutposts2.sqf";}; - class createSDKGarrisons {file="CREATE\createSDKGarrisons.sqf";}; - class createSDKgarrisonsTemp {file="CREATE\createSDKgarrisonsTemp.sqf";}; - class CSATpunish {file="CREATE\CSATpunish.sqf";}; - class FIAinitBases {file="CREATE\FIAinitBases.sqf";}; - class garrisonReorg {file="CREATE\garrisonReorg.sqf";}; - class garrisonSize {file="CREATE\garrisonSize.sqf";}; - class garrisonUpdate {file="CREATE\garrisonUpdate.sqf";}; - class groupDespawner {file="CREATE\groupDespawner.sqf";}; - class milBuildings {file="CREATE\milBuildings.sqf";}; - class minefieldAAF {file="CREATE\minefieldAAF.sqf";}; - class mortarPos {file="CREATE\mortarPos.sqf";}; - class NATOinit {file="CREATE\NATOinit.sqf";}; - class patrolCA {file="CREATE\patrolCA.sqf";}; - class patrolReinf {file="CREATE\patrolReinf.sqf";}; - class reinforcementsAI {file="CREATE\reinforcementsAI.sqf";}; - class remoteBattle {file="CREATE\remoteBattle.sqf";}; - class removeVehFromPool {file="CREATE\removeVehFromPool.sqf";}; - class spawnGroup {file="CREATE\spawnGroup.sqf";}; - class vehAvailable {file="CREATE\vehAvailable.sqf";}; - class VEHdespawner {file="CREATE\VEHdespawner.sqf";}; - class wavedCA {file="CREATE\wavedCA.sqf";}; - } + class AAFroadPatrol {}; + class airportCanAttack {}; + class AIVEHinit {}; + class ambientCivs {}; + class calculateMarkerArea {}; + class cargoSeats {}; + class CIVinit {}; + class civVEHinit {}; + class cleanserVeh {}; + class createAIAirplane {}; + class createAICities {}; + class createAIcontrols {}; + class createAIOutposts {}; + class createAIResources {}; + class createAISite {}; + class createCIV {}; + class createFIAOutposts2 {}; + class createSDKGarrisons {}; + class createSDKgarrisonsTemp {}; + class cycleSpawn {}; + class FIAinitBases {}; + class findSpawnPosition {}; + class freeSpawnPositions {}; + class garrisonReorg {}; + class garrisonSize {}; + class garrisonUpdate {}; + class groupDespawner {}; + class invaderPunish {}; + class milBuildings {}; + class minefieldAAF {}; + class mortarPos {}; + class NATOinit {}; + class patrolCA {}; + class patrolReinf {}; + class reinforcementsAI {}; + class remoteBattle {}; + class removeVehFromPool {}; + class safeVehicleSpawn {}; + class spawnGroup {}; + class vehAvailable {}; + class VEHdespawner {}; + class wavedCA {}; + class WPCreate {}; + }; class Debugging { - class spawnDebuggingLoop {file="Debugging\spawnDebuggingLoop.sqf";}; - class deleteEmptyGroupsOnSide {file="Debugging\deleteEmptyGroupsOnSide.sqf";}; - } + class deleteEmptyGroupsOnSide {}; + class installSchrodingersBuildingFix {}; + class spawnDebuggingLoop {}; + }; class Dialogs { - class mineDialog {file="Dialogs\mineDialog.sqf";}; - } + class buyVehicle {}; + class buyVehicleCiv {}; + class clearForest {}; + class createDialog_setParams {}; + class createDialog_shouldLoadPersonalSave {}; + class dialogHQ {}; + class fastTravelRadio {}; + class mineDialog {}; + class moveHQObject {}; + class skiptime {}; + class squadOptions {}; + class squadRecruit {}; + class unit_recruit {}; + }; class Garage { - //Public API - Call these to do things - class garage {file="Garage\garage2.sqf";}; - class garageVehicle {file="Garage\garageVehicle.sqf";}; - class placeEmptyVehicle {file="Garage\placeEmptyVehicle.sqf";}; - class vehPlacementBegin {file="Garage\vehPlacementBegin.sqf";}; - class vehPlacementCallbacks {file="Garage\vehPlacementCallbacks.sqf";}; - class vehPlacementCancel {file="Garage\vehPlacementCancel.sqf";}; - class vehPlacementChangeVehicle {file="Garage\vehPlacementChangeVehicle.sqf";}; - //Garage modifiers, public API - class addToPersonalGarage {file="Garage\personalGarage\addToPersonalGarage.sqf";}; - class addToPersonalGarageLocal {file="Garage\personalGarage\addToPersonalGarageLocal.sqf";}; - class getPersonalGarage {file="Garage\personalGarage\getPersonalGarage.sqf";}; - class getPersonalGarageLocal {file="Garage\personalGarage\getPersonalGarageLocal.sqf";}; - class setPersonalGarage {file="Garage\personalGarage\setPersonalGarage.sqf";}; - class setPersonalGarageLocal {file="Garage\personalGarage\setPersonalGarageLocal.sqf";}; - //Private - Do NOT call these elsewhere - class attemptPlaceVehicle {file="Garage\private\attemptPlaceVehicle.sqf";}; - class displayVehiclePlacementMessage {file="Garage\private\displayVehiclePlacementMessage.sqf";}; - class handleVehPlacementCancelled {file="Garage\private\handleVehPlacementCancelled.sqf";}; + class addToPersonalGarage {}; + class addToPersonalGarageLocal {}; + class attemptPlaceVehicle {}; + class displayVehiclePlacementMessage {}; + class garage {}; + class garageVehicle {}; + class getPersonalGarage {}; + class getPersonalGarageLocal {}; + class handleVehPlacementCancelled {}; + class placeEmptyVehicle {}; + class setPersonalGarage {}; + class setPersonalGarageLocal {}; + class vehPlacementBegin {}; + class vehPlacementCallbacks {}; + class vehPlacementCancel {}; + class vehPlacementChangeVehicle {}; + class vehPlacementCleanup {}; + }; - class vehPlacementCleanup {file="Garage\private\vehPlacementCleanup.sqf";}; - } + class Garrison + { + class addGarrison {}; + class addRequested {}; + class checkGroupType {}; + class checkVehicleType {}; + class countGarrison {}; + class createGarrison {}; + class createGarrisonLine {}; + class getGarrison {}; + class getGarrisonRatio {}; + class getGarrisonStatus {}; + class getRequested {}; + class getVehicleCrew {}; + class initPreference {}; + class logArray {}; + class replenishGarrison {}; + class selectGroupType {}; + class selectReinfUnits {}; + class selectVehicleType {}; + class shouldReinforce {}; + class updateGarrison {}; + class updatePreference {}; + class updateReinfState {}; + class updateVehicles {}; + }; class Missions { - class attackHQ {file="Missions\attackHQ.sqf";}; - class deleteTask {file="Missions\deleteTask.sqf";}; - class missionRequest {file="Missions\missionrequest.sqf";}; - class missionRequestAUTO {file="Missions\missionrequestAUTO.sqf";}; - class taskUpdate {file="Missions\taskUpdate.sqf";}; - class underAttack {file="Missions\underAttack.sqf";}; - } + class AS_Official {}; + class AS_specOP {}; + class AS_Traitor {}; + class attackHQ {}; + class CON_Outpost {}; + class convoy {}; + class deleteTask {}; + class DES_Antenna {}; + class DES_Heli {}; + class DES_Vehicle {}; + class LOG_Ammo {}; + class LOG_Bank {}; + class LOG_Supplies {}; + class missionRequest {}; + class missionRequestAUTO {}; + class REP_Antenna {}; + class RES_Prisoners {}; + class RES_Refugees {}; + class taskUpdate {}; + class underAttack {}; + }; + + class ModsAndDLC { + class getModOfConfigClass {}; + class initDisabledMods {}; + class isModNameVanilla {}; + }; class Ammunition { - class ACEpvpReDress {file="Ammunition\ACEpvpReDress.sqf";}; - class arsenalManage {file="Ammunition\arsenalManage.sqf";}; - class CSATCrate {file="Ammunition\CSATCrate.sqf";}; - class ammunitionTransfer {file="Ammunition\ammunitionTransfer.sqf";}; - class NATOCrate {file="Ammunition\NATOCrate.sqf";}; - class randomRifle {file="Ammunition\randomRifle.sqf";}; - class dress {file="Ammunition\dress.sqf";}; - class empty {file="Ammunition\empty.sqf";}; - class getRadio {file="Ammunition\getRadio.sqf";}; - class checkRadiosUnlocked {file="Ammunition\checkRadiosUnlocked.sqf";}; - //class boxAAF {file="Ammunition\boxAAF.sqf";}; - } + class ACEpvpReDress {}; + class ammunitionTransfer {}; + class arsenalManage {}; + class checkRadiosUnlocked {}; + class configSort {}; + class crateLootParams {}; + class CSATCrate {}; + class dress {}; + class empty {}; + class equipmentClassToCategories {}; + class equipmentIsValidForCurrentModset {}; + class equipmentSort {}; + class getRadio {}; + class itemSort {}; + class itemType {}; + class launcherInfo {}; + class loot {}; + class NATOCrate {}; + class randomRifle {}; + class transfer {}; + class unlockEquipment {}; + class vehicleSort {}; + }; class OrgPlayers { - class assigntheBoss {file="orgPlayers\assignStavros.sqf";}; - class donateMoney {file="orgPlayers\donateMoney.sqf";}; - class isMember {file="orgPlayers\isMember.sqf";}; - class memberAdd {file="orgPlayers\memberAdd.sqf";}; - class membersList {file="orgPlayers\membersList.sqf";}; - class playerScoreAdd {file="orgPlayers\playerScoreAdd.sqf";}; - class ranksMP {file="orgPlayers\ranksMP.sqf";}; - class resourcesPlayer {file="orgPlayers\resourcesPlayer.sqf";}; - class theBossInit {file="orgPlayers\stavrosInit.sqf";}; - class theBossSteal {file="orgPlayers\stavrosSteal.sqf";}; - class tierCheck {file="orgPlayers\tierCheck.sqf";}; - } + class donateMoney {}; + class isMember {}; + class makePlayerBossIfEligible {}; + class memberAdd {}; + class membersList {}; + class playerScoreAdd {}; + class promotePlayer {}; + class ranksMP {}; + class resourcesPlayer {}; + class theBossInit {}; + class theBossToggleEligibility {}; + class theBossSteal {}; + class assignBossIfNone {}; + class tierCheck {}; + }; + + class Pathfinding + { + //Public API - Call these from anywhere + class findPath {}; + class loadNavGrid {}; + + + //Private API - Do NOT call these elsewhere + class calculateH {}; + class findNearestNavPoint {}; + class getClosestMainMarker {}; + class getMainMarkers {}; + class getNavConnections {}; + class getNavPos {}; + class setNavOnMarker {}; + }; + + class Punishment + { + class punishment {}; + class punishment_addActionForgive {}; + class punishment_notifyAdmin {}; + class punishment_notifyAllAdmins {}; + class punishment_release {}; + class punishment_sentence {}; + class punishment_warden {}; + }; + + class pvp + { + class pvpCheck {}; + class playerHasBeenPvPCheck {}; + }; class REINF { - class addBombRun {file="REINF\addBombRun.sqf";}; - class addFIAsquadHC {file="REINF\addFIAsquadHC.sqf";}; - class addFIAveh {file="REINF\addFIAveh.sqf";}; - class addSquadVeh {file="REINF\addSquadVeh.sqf";}; - class autoGarrison {file="REINF\autoGarrison.sqf";}; - class build {file="REINF\Building\build.sqf";}; - class buildCreateVehicleCallback {file="REINF\Building\buildCreateVehicleCallback.sqf";}; - class buildMinefield {file="REINF\buildMinefield.sqf";}; - class enemyNearCheck {file="REINF\enemyNearCheck.sqf";}; - class FIAinit {file="REINF\FIAinit.sqf";}; - class FIAskillAdd {file="REINF\FIAskillAdd.sqf";}; - class garrisonAdd {file="REINF\garrisonAdd.sqf";}; - class garrisonDialog {file="REINF\garrisonDialog.sqf";}; - class NATObomb {file="REINF\NATObomb.sqf";}; - class NATOQuadbike {file="REINF\NATOQuadbike.sqf";}; - class postmortem {file="REINF\postmortem.sqf";}; - class reDress {file="REINF\reDress.sqf";}; - class reinfPlayer {file="REINF\reinfplayer.sqf";}; - class vehiclePrice {file="REINF\vehiclePrice.sqf";}; - class vehStats {file="REINF\vehStats.sqf";}; - } + class addBombRun {}; + class addFIAsquadHC {}; + class addFIAveh {}; + class addSquadVeh {}; + class autoGarrison {}; + class build {}; + class buildCreateVehicleCallback {}; + class buildMinefield {}; + class enemyNearCheck {}; + class equipRebel {}; + class FIAinit {}; + class FIAskillAdd {}; + class garrisonAdd {}; + class garrisonDialog {}; + class NATObomb {}; + class NATOQuadbike {}; + class postmortem {}; + class reDress {}; + class reinfPlayer {}; + class stealStatic {}; + class vehiclePrice {}; + class vehStats {}; + }; class Revive { - class actionRevive {file="Revive\actionRevive.sqf";}; - class fatalWound {file="Revive\fatalWound.sqf";}; - class handleDamage {file="Revive\handleDamage.sqf";}; - class handleDamageAAF {file="Revive\handleDamageAAF.sqf";}; - class unconscious {file="Revive\unconscious.sqf";}; - class unconsciousAAF {file="Revive\unconsciousAAF.sqf";}; - class initRevive {file="Revive\initRevive.sqf";}; - class isMedic {file="Revive\isMedic.sqf";}; - class respawn {file="Revive\respawn.sqf";}; - } + class actionRevive {}; + class carry {}; + class fatalWound {}; + class handleDamage {}; + class handleDamageAAF {}; + class initRevive {}; + class isMedic {}; + class respawn {}; + class unconscious {}; + class unconsciousAAF {}; + }; class Runways { - class getRunwayTakeoffForAirportMarker {file="getRunwayTakeoffForAirportMarker.sqf";}; - class runwayInfo {file="runwayInfo.sqf";}; - } + class getRunwayTakeoffForAirportMarker {}; + class runwayInfo {}; + }; class Save { - class playerHasSave {file="statSave\playerHasSave.sqf";}; - class loadPlayer {file="statSave\loadPlayer.sqf";}; - class savePlayer {file="statSave\savePlayer.sqf";}; - class loadPreviousSession {file="statSave\loadPreviousSession.sqf";}; - } + class loadPlayer {}; + class loadPreviousSession {}; + class loadServer {}; + class playerHasSave {}; + class savePlayer {}; + }; class Templates { - class getLoadout {file="Templates\Loadouts\getLoadout.sqf";}; - } + class aceModCompat {}; + class getLoadout {}; + class ifaModCompat {}; + class rhsModCompat {}; + }; - class Utility + class Undercover { - class basicBackpack {file="Ammunition\basicBackpack.sqf";}; - class dateToTimeString {file="dateToTimeString.sqf";}; - } + class initUndercover {}; + class goUndercover {}; + }; - class init + class Utility { - class getArrayMrks {}; - } -} + class basicBackpack {}; + class createDataObject {}; + class dateToTimeString {}; + class log {}; + class vehicleWillCollideAtPosition {}; + }; +}; diff --git a/A3-Antistasi/AI/AIreactOnKill.sqf b/A3-Antistasi/functions/AI/fn_AIreactOnKill.sqf similarity index 90% rename from A3-Antistasi/AI/AIreactOnKill.sqf rename to A3-Antistasi/functions/AI/fn_AIreactOnKill.sqf index f6aa048015..9f283ee5c2 100644 --- a/A3-Antistasi/AI/AIreactOnKill.sqf +++ b/A3-Antistasi/functions/AI/fn_AIreactOnKill.sqf @@ -33,7 +33,7 @@ if (fleeing _x) then if (vehicle _killer isKindOf "Air") then {[[getPosASL _enemy,side _x,"Air",_super],"A3A_fnc_patrolCA"] remoteExec ["A3A_fnc_scheduler",2]} else {if (vehicle _killer isKindOf "Tank") then {[[getPosASL _enemy,side _x,"Tank",_super],"A3A_fnc_patrolCA"] remoteExec ["A3A_fnc_scheduler",2]} else {[[getPosASL _enemy,side _x,"Normal",_super],"A3A_fnc_patrolCA"] remoteExec ["A3A_fnc_scheduler",2]}}; }; }; - if (([primaryWeapon _x] call BIS_fnc_baseWeapon) in mguns) then {[_x,_enemy] call A3A_fnc_suppressingFire} else {[_x,_x,_enemy] spawn A3A_fnc_chargeWithSmoke}; + if (([primaryWeapon _x] call BIS_fnc_baseWeapon) in allMachineGuns) then {[_x,_enemy] call A3A_fnc_suppressingFire} else {[_x,_x,_enemy] spawn A3A_fnc_chargeWithSmoke}; }; }; }; @@ -45,7 +45,7 @@ else _enemy = _x findNearestEnemy _x; if (!isNull _enemy) then { - if (([primaryWeapon _x] call BIS_fnc_baseWeapon) in mguns) then + if (([primaryWeapon _x] call BIS_fnc_baseWeapon) in allMachineGuns) then { [_x,_enemy] call A3A_fnc_suppressingFire; } diff --git a/A3-Antistasi/AI/VANTinfo.sqf b/A3-Antistasi/functions/AI/fn_VANTinfo.sqf similarity index 100% rename from A3-Antistasi/AI/VANTinfo.sqf rename to A3-Antistasi/functions/AI/fn_VANTinfo.sqf diff --git a/A3-Antistasi/AI/airbomb.sqf b/A3-Antistasi/functions/AI/fn_airbomb.sqf similarity index 100% rename from A3-Antistasi/AI/airbomb.sqf rename to A3-Antistasi/functions/AI/fn_airbomb.sqf diff --git a/A3-Antistasi/AI/airdrop.sqf b/A3-Antistasi/functions/AI/fn_airdrop.sqf similarity index 97% rename from A3-Antistasi/AI/airdrop.sqf rename to A3-Antistasi/functions/AI/fn_airdrop.sqf index aaf33a36ab..913b918562 100644 --- a/A3-Antistasi/AI/airdrop.sqf +++ b/A3-Antistasi/functions/AI/fn_airdrop.sqf @@ -7,7 +7,7 @@ _originX = _this select 3; _reinf = if (count _this > 4) then {_this select 4} else {false}; _positionX = _markerX; -if (typeName _markerX == typeName "") then {_positionX = getMarkerPos _markerX}; +if (_markerX isEqualType "") then {_positionX = getMarkerPos _markerX}; _groupPilot = group driver _veh; {_x disableAI "TARGET"; _x disableAI "AUTOTARGET"} foreach units _groupPilot; _dist = 500; diff --git a/A3-Antistasi/AI/airstrike.sqf b/A3-Antistasi/functions/AI/fn_airstrike.sqf similarity index 92% rename from A3-Antistasi/AI/airstrike.sqf rename to A3-Antistasi/functions/AI/fn_airstrike.sqf index 4f19c7cd05..58242c5f1f 100644 --- a/A3-Antistasi/AI/airstrike.sqf +++ b/A3-Antistasi/functions/AI/fn_airstrike.sqf @@ -1,4 +1,4 @@ -// usage: Activate via radio trigger, on act: [] execVM "airstrike.sqf"; +// usage: Activate via radio trigger, on act: [] spawn A3A_fnc_airstrike; if (!isServer and hasInterface) exitWith{}; private ["_markerX","_positionX","_ang","_angorig","_pos1","_origpos","_pos2","_finpos","_plane","_wp1","_wp2","_wp3","_sideX","_isMarker","_typePlane","_exit","_timeOut","_friendlies","_enemiesX","_mediaX","_mediaY","_pos","_countX","_distantNum","_distantX","_planefn","_planeCrew","_groupPlane","_typeX"]; @@ -104,7 +104,7 @@ _wp1 setWaypointSpeed "LIMITED"; _wp1 setWaypointBehaviour "CARELESS"; _plane setCollisionLight true; if ((_typeX == "NAPALM") and (napalmCurrent)) then {_typeX = "CLUSTER"}; -if (_typeX == "HE") then {_wp1 setWaypointStatements ["true", "[this,""HE""] execVM 'AI\airbomb.sqf'"]} else {if (_typeX == "NAPALM") then {_wp1 setWaypointStatements ["true", "[this,""NAPALM""] execVM 'AI\airbomb.sqf'"]} else {_wp1 setWaypointStatements ["true", "[this,""CLUSTER""] execVM 'AI\airbomb.sqf'"]}}; +if (_typeX == "HE") then {_wp1 setWaypointStatements ["true", "[this,""HE""] spawn A3A_fnc_airbomb"]} else {if (_typeX == "NAPALM") then {_wp1 setWaypointStatements ["true", "[this,""NAPALM""] spawn A3A_fnc_airbomb"]} else {_wp1 setWaypointStatements ["true", "[this,""CLUSTER""] spawn A3A_fnc_airbomb"]}}; _wp2 = _groupPlane addWaypoint [_pos2, 1]; _wp2 setWaypointSpeed "LIMITED"; @@ -127,4 +127,3 @@ else }; {deleteVehicle _x} forEach _planeCrew; deleteGroup _groupPlane; - diff --git a/A3-Antistasi/AI/artillery.sqf b/A3-Antistasi/functions/AI/fn_artillery.sqf similarity index 68% rename from A3-Antistasi/AI/artillery.sqf rename to A3-Antistasi/functions/AI/fn_artillery.sqf index dc9563b647..b9e6bd25c2 100644 --- a/A3-Antistasi/AI/artillery.sqf +++ b/A3-Antistasi/functions/AI/fn_artillery.sqf @@ -1,22 +1,22 @@ if (!isServer and hasInterface) exitWith{}; -private ["_mrkOrigin","_pos","_sideX","_countX","_mrkDestination","_veh","_posOrigin","_sidesOccupants","_posDestination","_typeVehX","_typeAmmunition","_size","_vehicle","_vehCrew","_groupVeh","_roundsX","_objectiveX","_objectivesX","_timeX"]; +private ["_mrkOrigin","_pos","_attackingSide","_countX","_mrkDestination","_veh","_posOrigin","_sideTargets","_posDestination","_typeVehX","_typeAmmunition","_size","_vehicle","_vehCrew","_groupVeh","_roundsX","_objectiveX","_objectivesX","_timeX"]; _mrkOrigin = _this select 0; _posOrigin = if (_mrkOrigin isEqualType "") then {getMarkerPos _mrkOrigin} else {_mrkOrigin}; _mrkDestination = _this select 1; -_sideX = _this select 2; -_sidesOccupants = _sideX call BIS_fnc_enemySides; +_attackingSide = _this select 2; +_sideTargets = _attackingSide call BIS_fnc_enemySides; _posDestination = getMarkerPos _mrkDestination; -_typeVehX = if (_sideX == Occupants) then {vehNATOMRLS} else {vehCSATMRLS}; +_typeVehX = if (_attackingSide == Occupants) then {vehNATOMRLS} else {vehCSATMRLS}; if !([_typeVehX] call A3A_fnc_vehAvailable) exitWith {}; -_typeAmmunition = if (_sideX == Occupants) then {vehNATOMRLSMags} else {vehCSATMRLSMags}; +_typeAmmunition = if (_attackingSide == Occupants) then {vehNATOMRLSMags} else {vehCSATMRLSMags}; _pos = [_posOrigin, 50,100, 10, 0, 0.3, 0] call BIS_Fnc_findSafePos; -_vehicle=[_pos, random 360,_typeVehX, _sideX] call bis_fnc_spawnvehicle; +_vehicle=[_pos, random 360,_typeVehX, _attackingSide] call bis_fnc_spawnvehicle; _veh = _vehicle select 0; _vehCrew = _vehicle select 1; {[_x] call A3A_fnc_NATOinit} forEach _vehCrew; @@ -30,7 +30,7 @@ if (_posDestination inRangeOfArtillery [[_veh], ((getArtilleryAmmo [_veh]) selec { _objectiveX = objNull; _roundsX = 1; - _objectivesX = vehicles select {(side (group driver _x) in _sidesOccupants) and (_x distance _posDestination <= _size * 2) and (_sideX knowsAbout _x >= 1.4) and (speed _x < 1)}; + _objectivesX = vehicles select {(side (group driver _x) in _sideTargets) and (_x distance _posDestination <= _size * 2) and (_attackingSide knowsAbout _x >= 1.4) and (speed _x < 1)}; if (count _objectivesX > 0) then { { @@ -40,7 +40,7 @@ if (_posDestination inRangeOfArtillery [[_veh], ((getArtilleryAmmo [_veh]) selec } else { - _objectivesX = allUnits select {(side (group _x) in _sidesOccupants) and (_x distance _posDestination <= _size * 2) and (_sideX knowsAbout _x >= 1.4) and (_x == leader group _x)}; + _objectivesX = allUnits select {(side (group _x) in _sideTargets) and (_x distance _posDestination <= _size * 2) and (_attackingSide knowsAbout _x >= 1.4) and (_x == leader group _x)}; if (count _objectivesX > 0) then { _countX = 0; @@ -49,7 +49,7 @@ if (_posDestination inRangeOfArtillery [[_veh], ((getArtilleryAmmo [_veh]) selec _countGroup = {(alive _x) and (!captive _x)} count units group _potential; if (_countGroup > _countX) then { - if ((_sideX == Invaders) or ({(side (group _x) == civilian) and (_x distance _potential < 50)} count allUnits == 0)) then + if ((_attackingSide == Invaders) or ({(side (group _x) == civilian) and (_x distance _potential < 50)} count allUnits == 0)) then { _objectiveX = _potential; if (_countGroup > 6) then {_roundsX = 2}; diff --git a/A3-Antistasi/AI/artySupport.sqf b/A3-Antistasi/functions/AI/fn_artySupport.sqf old mode 100755 new mode 100644 similarity index 100% rename from A3-Antistasi/AI/artySupport.sqf rename to A3-Antistasi/functions/AI/fn_artySupport.sqf diff --git a/A3-Antistasi/AI/askHelp.sqf b/A3-Antistasi/functions/AI/fn_askHelp.sqf similarity index 100% rename from A3-Antistasi/AI/askHelp.sqf rename to A3-Antistasi/functions/AI/fn_askHelp.sqf diff --git a/A3-Antistasi/AI/assaultBuilding.sqf b/A3-Antistasi/functions/AI/fn_assaultBuilding.sqf similarity index 100% rename from A3-Antistasi/AI/assaultBuilding.sqf rename to A3-Antistasi/functions/AI/fn_assaultBuilding.sqf diff --git a/A3-Antistasi/AI/attackDrillAI.sqf b/A3-Antistasi/functions/AI/fn_attackDrillAI.sqf similarity index 100% rename from A3-Antistasi/AI/attackDrillAI.sqf rename to A3-Antistasi/functions/AI/fn_attackDrillAI.sqf diff --git a/A3-Antistasi/AI/autoHealFnc.sqf b/A3-Antistasi/functions/AI/fn_autoHealFnc.sqf similarity index 100% rename from A3-Antistasi/AI/autoHealFnc.sqf rename to A3-Antistasi/functions/AI/fn_autoHealFnc.sqf diff --git a/A3-Antistasi/AI/autoLoot.sqf b/A3-Antistasi/functions/AI/fn_autoLoot.sqf similarity index 91% rename from A3-Antistasi/AI/autoLoot.sqf rename to A3-Antistasi/functions/AI/fn_autoLoot.sqf index c278a6b7b0..21f532edba 100644 --- a/A3-Antistasi/AI/autoLoot.sqf +++ b/A3-Antistasi/functions/AI/fn_autoLoot.sqf @@ -31,8 +31,8 @@ if (_unit distance _objectX < _distanceX) then { _potential = _weaponsX select _i; _basePossible = [_potential] call BIS_fnc_baseWeapon; - //if ((not(_basePossible in unlockedWeapons)) and ((_basePossible in arifles) or (_basePossible in srifles) or (_basePossible in mguns) or (_potential in mlaunchers) or (_potential in rlaunchers))) then - if ((_basePossible in arifles) or (_basePossible in srifles) or (_basePossible in mguns) or (_potential in mlaunchers) or (_potential in rlaunchers)) then + //if ((not(_basePossible in unlockedWeapons)) and ((_basePossible in allRifles) or (_basePossible in allSniperRifles) or (_basePossible in allMachineGuns) or (_potential in allMissileLaunchers) or (_potential in allRocketLaunchers))) then + if ((_basePossible in allRifles) or (_basePossible in allSniperRifles) or (_basePossible in allMachineGuns) or (_potential in allMissileLaunchers) or (_potential in allRocketLaunchers)) then { _target = _objectX; _distanceX = _unit distance _objectX; @@ -117,7 +117,7 @@ while {_continuar and ([_unit] call A3A_fnc_canFight) and (_unit getVariable "re {if (!(_x in unlockedMagazines) and !(_x in unlockedItems)) then {_unit addItemToVest _x}} forEach vestItems _target; _unit action ["rearm",_target]; removeVest _target; - if (((headgear _target) in helmets) and !((headgear _target) in unlockedItems)) then + if (((headgear _target) in allArmoredHeadgear) and !((headgear _target) in unlockedItems)) then { _unit addHeadgear (headGear _target); removeHeadgear _target; @@ -170,7 +170,7 @@ while {_continuar and ([_unit] call A3A_fnc_canFight) and (_unit getVariable "re { _potential = _weaponsX select _i; _basePossible = [_potential] call BIS_fnc_baseWeapon; - if ((not(_basePossible in unlockedWeapons)) and ((_basePossible in arifles) or (_basePossible in srifles) or (_basePossible in mguns) or (_potential in mlaunchers) or (_potential in rlaunchers))) then + if ((not(_basePossible in unlockedWeapons)) and ((_basePossible in allRifles) or (_basePossible in allSniperRifles) or (_basePossible in allMachineGuns) or (_potential in allMissileLaunchers) or (_potential in allRocketLaunchers))) then { _target = _objectX; _distanceX = _unit distance _objectX; diff --git a/A3-Antistasi/functions/AI/fn_autoRearm.sqf b/A3-Antistasi/functions/AI/fn_autoRearm.sqf new file mode 100644 index 0000000000..fdd33d193b --- /dev/null +++ b/A3-Antistasi/functions/AI/fn_autoRearm.sqf @@ -0,0 +1,424 @@ +private _unit = _this select 0; +if (isPlayer _unit) exitWith {}; +if !([_unit] call A3A_fnc_canFight) exitWith {}; + +private _inPlayerGroup = (isPlayer (leader _unit)); +if (_unit getVariable ["helping",false]) exitWith {if (_inPlayerGroup) then {_unit groupChat "I cannot rearm right now. I'm healing a comrade"}}; + +private _rearming = _unit getVariable ["rearming",false]; +if (_rearming) exitWith {if (_inPlayerGroup) then {_unit groupChat "I am currently rearming. Cancelling."; _unit setVariable ["rearming",false]}}; +if (vehicle _unit != _unit) exitWith {}; +_unit setVariable ["rearming",true]; + +private _primaryWeapon = primaryWeapon _unit; +private _secondaryWeapon = secondaryWeapon _unit; +private _nearbyContainers = []; +private _foundItem = false; +private _selectedWeapon = objNull; +private _potentialWeapon = objNull; +private _baseWeapon = objNull; +private _potentialContainer = objNull; +private _selectedContainer = objNull; +private _containerWeapons = []; +private _maxDistance = 51; +private _needsRearm = false; +private _timeOut = 0; +private _deadBodies = []; +private _selectedBody = objNull; +private _targetMagazines = 4; +private _primaryMagazines = []; +private _bodyEquipment = []; +private _selectedEquipment = objNull; + +_nearbyContainers = nearestObjects [_unit, ["ReammoBox_F","LandVehicle","WeaponHolderSimulated","GroundWeaponHolder","WeaponHolder"], _maxDistance]; +if (boxX in _nearbyContainers) then {_nearbyContainers = _nearbyContainers - [boxX]}; + + +if ((_primaryWeapon in initialRebelEquipment) || (_primaryWeapon isEqualTo "")) then { + _needsRearm = true; + if (count _nearbyContainers > 0) then { + { + _potentialContainer = _x; + if (_unit distance _potentialContainer < _maxDistance) then { + if ((count weaponCargo _potentialContainer > 0) && !(_potentialContainer getVariable ["busy",false])) then { + _containerWeapons = weaponCargo _potentialContainer; + for "_i" from 0 to (count _containerWeapons - 1) do { + _potentialWeapon = _containerWeapons select _i; + _baseWeapon = [_potentialWeapon] call BIS_fnc_baseWeapon; + if (!(_baseWeapon in ["hgun_PDW2000_F","hgun_Pistol_01_F","hgun_ACPC2_F"]) && ((_baseWeapon in allRifles) || (_baseWeapon in allSniperRifles) || (_baseWeapon in allMachineGuns) || (_baseWeapon in allSMGs) || (_baseWeapon in allShotguns))) then { + _selectedContainer = _potentialContainer; + _foundItem = true; + _selectedWeapon = _potentialWeapon; + }; + }; + }; + }; + } forEach _nearbyContainers; + }; + if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + if (!((alive _selectedContainer) || (_selectedContainer isKindOf "ReammoBox_F"))) then {_selectedContainer setVariable ["busy",true]}; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Picking a better weapon"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if ((unitReady _unit) && ([_unit] call A3A_fnc_canFight) && (_unit distance _selectedContainer > 3) && (_selectedContainer isKindOf "ReammoBox_F") && (!isNull _selectedContainer)) then {_unit setPos position _selectedContainer}; + if (_unit distance _selectedContainer < 3) then { + _unit action ["TakeWeapon",_selectedContainer,_selectedWeapon]; + sleep 5; + if (primaryWeapon _unit isEqualTo _selectedWeapon) then { + if (_inPlayerGroup) then {_unit groupChat "I have a better weapon now"}; + if (_selectedContainer isKindOf "ReammoBox_F") then {_unit action ["rearm",_selectedContainer]}; + }; + }; + _selectedContainer setVariable ["busy",false]; + }; + _primaryWeapon = primaryWeapon _unit; + sleep 3; +}; + +_foundItem = false; +_targetMagazines = 4; +if (_primaryWeapon in allMachineGuns) then {_targetMagazines = 2}; +_primaryMagazines = getArray (configFile / "CfgWeapons" / _primaryWeapon / "magazines"); +if ({_x in _primaryMagazines} count (magazines _unit) < _targetMagazines) then { + _needsRearm = true; + _foundItem = false; + if (count _nearbyContainers > 0) then { + { + _potentialContainer = _x; + if (({_x in _primaryMagazines} count magazineCargo _potentialContainer) > 0) then { + if (_unit distance _potentialContainer < _maxDistance) then { + _selectedContainer = _potentialContainer; + _foundItem = true; + }; + }; + } forEach _nearbyContainers; + }; + _deadBodies = allDead select {(_x distance _unit < _maxDistance) && (!(_x getVariable ["busy",false]))}; + { + _selectedBody = _x; + if (({_x in _primaryMagazines} count (magazines _selectedBody) > 0) && (_unit distance _selectedBody < _maxDistance)) then { + _selectedContainer = _selectedBody; + _foundItem = true; + }; + } forEach _deadBodies; +}; + +if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + if (!((alive _selectedContainer) || (_selectedContainer isKindOf "ReammoBox_F"))) then {_selectedContainer setVariable ["busy",true]}; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Rearming"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if ((unitReady _unit) && ([_unit] call A3A_fnc_canFight) && (_unit distance _selectedContainer > 3) && (_selectedContainer isKindOf "ReammoBox_F") && (!isNull _selectedContainer)) then {_unit setPos position _selectedContainer}; + if (_unit distance _selectedContainer < 3) then { + _unit action ["rearm",_selectedContainer]; + if ({_x in _primaryMagazines} count (magazines _unit) >= _targetMagazines) then { + if (_inPlayerGroup) then {_unit groupChat "Rearmed"}; + } else { + if (_inPlayerGroup) then {_unit groupChat "Partially Rearmed"}; + }; + }; + _selectedContainer setVariable ["busy",false]; +} else { + if (_inPlayerGroup) then {_unit groupChat "No source to rearm my primary weapon"}; +}; + +_foundItem = false; +if ((_secondaryWeapon == "") && (loadAbs _unit < 340)) then { + if (count _nearbyContainers > 0) then { + { + _potentialContainer = _x; + if (_unit distance _potentialContainer < _maxDistance) then { + if ((count weaponCargo _potentialContainer > 0) && !(_potentialContainer getVariable ["busy",false])) then { + _containerWeapons = weaponCargo _potentialContainer; + for "_i" from 0 to (count _containerWeapons - 1) do { + _potentialWeapon = _containerWeapons select _i; + if ((_potentialWeapon in allMissileLaunchers) || (_potentialWeapon in allRocketLaunchers)) then { + _selectedContainer = _potentialContainer; + _foundItem = true; + _selectedWeapon = _potentialWeapon; + }; + }; + }; + }; + } forEach _nearbyContainers; + }; + if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + if ((!alive _selectedContainer) || (!(_selectedContainer isKindOf "ReammoBox_F"))) then {_selectedContainer setVariable ["busy",true]}; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Picking a secondary weapon"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if ((unitReady _unit) && ([_unit] call A3A_fnc_canFight) && (_unit distance _selectedContainer > 3) && (_selectedContainer isKindOf "ReammoBox_F") && (!isNull _selectedContainer)) then {_unit setPos position _selectedContainer}; + if (_unit distance _selectedContainer < 3) then { + _unit action ["TakeWeapon",_selectedContainer,_selectedWeapon]; + sleep 3; + if (secondaryWeapon _unit == _selectedWeapon) then { + if (_inPlayerGroup) then {_unit groupChat "I have a secondary weapon now"}; + if (_selectedContainer isKindOf "ReammoBox_F") then {sleep 3;_unit action ["rearm",_selectedContainer]}; + }; + }; + _selectedContainer setVariable ["busy",false]; + }; + _secondaryWeapon = secondaryWeapon _unit; + sleep 3; +}; + +_foundItem = false; +if (_secondaryWeapon != "") then { + _primaryMagazines = getArray (configFile / "CfgWeapons" / _secondaryWeapon / "magazines"); + if ({_x in _primaryMagazines} count (magazines _unit) < 2) then { + _needsRearm = true; + _foundItem = false; + if (count _nearbyContainers > 0) then { + { + _potentialContainer = _x; + if ({_x in _primaryMagazines} count magazineCargo _potentialContainer > 0) then { + if (_unit distance _potentialContainer < _maxDistance) then { + _selectedContainer = _potentialContainer; + _foundItem = true; + }; + }; + } forEach _nearbyContainers; + }; + _deadBodies = allDead select {(_x distance _unit < _maxDistance) && (!(_x getVariable ["busy",false]))}; + { + _selectedBody = _x; + if (({_x in _primaryMagazines} count (magazines _selectedBody) > 0) && (_unit distance _selectedBody < _maxDistance)) then { + _selectedContainer = _selectedBody; + _foundItem = true; + }; + } forEach _deadBodies; + }; + if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + if (!alive _selectedContainer) then {_selectedContainer setVariable ["busy",true]}; + _unit doMove (position _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Rearming"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if ((unitReady _unit) && ([_unit] call A3A_fnc_canFight) && (_unit distance _selectedContainer > 3) && (_selectedContainer isKindOf "ReammoBox_F") && (!isNull _selectedContainer)) then {_unit setPos position _selectedContainer}; + if (_unit distance _selectedContainer < 3) then { + if ((backpack _unit == "") && (backPack _selectedContainer != "")) then { + _unit addBackPackGlobal ((backpack _selectedContainer) call A3A_fnc_basicBackpack); + _unit action ["rearm",_selectedContainer]; + sleep 3; + {_unit addItemToBackpack _x} forEach (backpackItems _selectedContainer); + removeBackpackGlobal _selectedContainer; + } else { + _unit action ["rearm",_selectedContainer]; + }; + + if ({_x in _primaryMagazines} count (magazines _unit) >= 2) then { + if (_inPlayerGroup) then {_unit groupChat "Rearmed"}; + } else { + if (_inPlayerGroup) then {_unit groupChat "Partially Rearmed"}; + }; + }; + _selectedContainer setVariable ["busy",false]; + } else { + if (_inPlayerGroup) then {_unit groupChat "No source to rearm my secondary weapon"}; + }; + sleep 3; +}; + +_foundItem = false; +if (!haveRadio && {_unit call A3A_fnc_getRadio == ""}) then { + _needsRearm = true; + _foundItem = false; + _deadBodies = allDead select {(_x distance _unit < _maxDistance) && (!(_x getVariable ["busy",false]))}; + { + _selectedBody = _x; + if ((_selectedBody call A3A_fnc_getRadio != "") && (_unit distance _selectedBody < _maxDistance)) then { + _selectedContainer = _selectedBody; + _foundItem = true; + }; + } forEach _deadBodies; + if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + _selectedContainer setVariable ["busy",true]; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Picking a Radio"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if (_unit distance _selectedContainer < 3) then { + _unit action ["rearm",_selectedContainer]; + private _radio = _selectedContainer call A3A_fnc_getRadio; + _unit linkItem _radio; + _selectedContainer unlinkItem _radio; + }; + _selectedContainer setVariable ["busy",false]; + }; +}; + +_foundItem = false; +if (hmd _unit == "") then { + _needsRearm = true; + _foundItem = false; + _deadBodies = allDead select {(_x distance _unit < _maxDistance) && (!(_x getVariable ["busy",false]))}; + { + _selectedBody = _x; + if ((hmd _selectedBody != "") && (_unit distance _selectedBody < _maxDistance)) then { + _selectedContainer = _selectedBody; + _foundItem = true; + }; + } forEach _deadBodies; + if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + _selectedContainer setVariable ["busy",true]; + private _hmd = hmd _selectedContainer; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Picking NV Googles"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if (_unit distance _selectedContainer < 3) then { + _unit action ["rearm",_selectedContainer]; + _unit linkItem _hmd; + _selectedContainer unlinkItem _hmd; + }; + _selectedContainer setVariable ["busy",false]; + }; +}; + +_foundItem = false; +if (!(headgear _unit in allArmoredHeadgear)) then { + _needsRearm = true; + _foundItem = false; + _deadBodies = allDead select {(_x distance _unit < _maxDistance) && (!(_x getVariable ["busy",false]))}; + { + _selectedBody = _x; + if (((headgear _selectedBody) in allArmoredHeadgear) && (_unit distance _selectedBody < _maxDistance)) then { + _selectedContainer = _selectedBody; + _foundItem = true; + }; + } forEach _deadBodies; + if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + _selectedContainer setVariable ["busy",true]; + private _helmet = headgear _selectedContainer; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Picking a Helmet"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if (_unit distance _selectedContainer < 3) then { + _unit action ["rearm",_selectedContainer]; + _unit addHeadgear _helmet; + removeHeadgear _selectedContainer; + }; + _selectedContainer setVariable ["busy",false]; + }; +}; + +_foundItem = false; +private _targetFAKs = if ([_unit] call A3A_fnc_isMedic) then {10} else {1}; +if ({_x == "FirstAidKit"} count (items _unit) < _targetFAKs) then { + _needsRearm = true; + _foundItem = false; + _deadBodies = allDead select {(_x distance _unit < _maxDistance) && (!(_x getVariable ["busy",false]))}; + { + _selectedBody = _x; + if (("FirstAidKit" in items _selectedBody) && (_unit distance _selectedBody < _maxDistance)) then { + _selectedContainer = _selectedBody; + _foundItem = true; + }; + } forEach _deadBodies; + if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + _selectedContainer setVariable ["busy",true]; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Picking a First Aid Kit"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if (_unit distance _selectedContainer < 3) then { + while {{_x == "FirstAidKit"} count (items _unit) < _targetFAKs} do { + _unit action ["rearm",_selectedContainer]; + _unit addItem "FirstAidKit"; + _selectedContainer removeItem "FirstAidKit"; + if ("FirstAidKit" in items _selectedBody) then {sleep 3}; + }; + }; + _selectedContainer setVariable ["busy",false]; + }; +}; + +_foundItem = false; +_numberX = getNumber (configfile >> "CfgWeapons" >> vest cursortarget >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Chest" >> "armor"); +_deadBodies = allDead select {(_x distance _unit < _maxDistance) && (!(_x getVariable ["busy",false]))}; +{ + _selectedBody = _x; + if ((getNumber (configfile >> "CfgWeapons" >> vest _selectedBody >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Chest" >> "armor") > _numberX) && (_unit distance _selectedBody < _maxDistance)) then { + _selectedContainer = _selectedBody; + _foundItem = true; + }; +} forEach _deadBodies; +if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + _selectedContainer setVariable ["busy",true]; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Picking a a better vest"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if (_unit distance _selectedContainer < 3) then { + _itemsUnit = vestItems _unit; + _unit addVest (vest _selectedContainer); + {_unit addItemToVest _x} forEach _itemsUnit; + _unit action ["rearm",_selectedContainer]; + _bodyEquipment = nearestObjects [_selectedContainer, ["WeaponHolderSimulated", "GroundWeaponHolder", "WeaponHolder"], 5]; + if (count _bodyEquipment > 0) then { + _selectedEquipment = _bodyEquipment select 0; + {_selectedEquipment addItemCargoGlobal [_x,1]} forEach (vestItems _selectedContainer); + }; + removeVest _selectedContainer; + }; + _selectedContainer setVariable ["busy",false]; +}; + +if (backpack _unit == "") then { + _needsRearm = true; + _foundItem = false; + _deadBodies = allDead select {(_x distance _unit < _maxDistance) && (!(_x getVariable ["busy",false]))}; + { + _selectedBody = _x; + if ((backpack _selectedBody != "") && (_unit distance _selectedBody < _maxDistance)) then { + _selectedContainer = _selectedBody; + _foundItem = true; + }; + } forEach _deadBodies; + if ((_foundItem) && (_unit getVariable "rearming")) then { + _unit stop false; + _selectedContainer setVariable ["busy",true]; + _unit doMove (getPosATL _selectedContainer); + if (_inPlayerGroup) then {_unit groupChat "Picking a Backpack"}; + _timeOut = time + 60; + sleep 1; + waitUntil {!([_unit] call A3A_fnc_canFight) || (isNull _selectedContainer) || (_unit distance _selectedContainer < 3) || (_timeOut < time) || (unitReady _unit)}; + if (_unit distance _selectedContainer < 3) then { + _unit addBackPackGlobal ((backpack _selectedContainer) call A3A_fnc_basicBackpack); + _unit action ["rearm",_selectedContainer]; + _bodyEquipment = nearestObjects [_selectedContainer, ["WeaponHolderSimulated", "GroundWeaponHolder", "WeaponHolder"], 5]; + if (count _bodyEquipment > 0) then { + _selectedEquipment = _bodyEquipment select 0; + {_selectedEquipment addItemCargoGlobal [_x,1]} forEach (backpackItems _selectedContainer); + }; + removeBackpackGlobal _selectedContainer; + }; + _selectedContainer setVariable ["busy",false]; + }; +}; + +_unit doFollow (leader _unit); +if (!_needsRearm) then {if (_inPlayerGroup) then {_unit groupChat "No need to rearm"}} else {if (_inPlayerGroup) then {_unit groupChat "Rearming Done"}}; +_unit setVariable ["rearming",false]; \ No newline at end of file diff --git a/A3-Antistasi/AI/canConquer.sqf b/A3-Antistasi/functions/AI/fn_canConquer.sqf similarity index 100% rename from A3-Antistasi/AI/canConquer.sqf rename to A3-Antistasi/functions/AI/fn_canConquer.sqf diff --git a/A3-Antistasi/AI/canFight.sqf b/A3-Antistasi/functions/AI/fn_canFight.sqf similarity index 100% rename from A3-Antistasi/AI/canFight.sqf rename to A3-Antistasi/functions/AI/fn_canFight.sqf diff --git a/A3-Antistasi/AI/captureX.sqf b/A3-Antistasi/functions/AI/fn_captureX.sqf similarity index 100% rename from A3-Antistasi/AI/captureX.sqf rename to A3-Antistasi/functions/AI/fn_captureX.sqf diff --git a/A3-Antistasi/AI/chargeWithSmoke.sqf b/A3-Antistasi/functions/AI/fn_chargeWithSmoke.sqf similarity index 100% rename from A3-Antistasi/AI/chargeWithSmoke.sqf rename to A3-Antistasi/functions/AI/fn_chargeWithSmoke.sqf diff --git a/A3-Antistasi/AI/coverage.sqf b/A3-Antistasi/functions/AI/fn_coverage.sqf similarity index 100% rename from A3-Antistasi/AI/coverage.sqf rename to A3-Antistasi/functions/AI/fn_coverage.sqf diff --git a/A3-Antistasi/AI/destroyBuilding.sqf b/A3-Antistasi/functions/AI/fn_destroyBuilding.sqf similarity index 100% rename from A3-Antistasi/AI/destroyBuilding.sqf rename to A3-Antistasi/functions/AI/fn_destroyBuilding.sqf diff --git a/A3-Antistasi/AI/doFlank.sqf b/A3-Antistasi/functions/AI/fn_doFlank.sqf similarity index 100% rename from A3-Antistasi/AI/doFlank.sqf rename to A3-Antistasi/functions/AI/fn_doFlank.sqf diff --git a/A3-Antistasi/AI/enemyList.sqf b/A3-Antistasi/functions/AI/fn_enemyList.sqf similarity index 100% rename from A3-Antistasi/AI/enemyList.sqf rename to A3-Antistasi/functions/AI/fn_enemyList.sqf diff --git a/A3-Antistasi/AI/entriesLand.sqf b/A3-Antistasi/functions/AI/fn_entriesLand.sqf similarity index 100% rename from A3-Antistasi/AI/entriesLand.sqf rename to A3-Antistasi/functions/AI/fn_entriesLand.sqf diff --git a/A3-Antistasi/AI/fastrope.sqf b/A3-Antistasi/functions/AI/fn_fastrope.sqf similarity index 100% rename from A3-Antistasi/AI/fastrope.sqf rename to A3-Antistasi/functions/AI/fn_fastrope.sqf diff --git a/A3-Antistasi/AI/findSafeRoadToUnload.sqf b/A3-Antistasi/functions/AI/fn_findSafeRoadToUnload.sqf similarity index 100% rename from A3-Antistasi/AI/findSafeRoadToUnload.sqf rename to A3-Antistasi/functions/AI/fn_findSafeRoadToUnload.sqf diff --git a/A3-Antistasi/AI/guardDog.sqf b/A3-Antistasi/functions/AI/fn_guardDog.sqf similarity index 100% rename from A3-Antistasi/AI/guardDog.sqf rename to A3-Antistasi/functions/AI/fn_guardDog.sqf diff --git a/A3-Antistasi/AI/hasRadio.sqf b/A3-Antistasi/functions/AI/fn_hasRadio.sqf similarity index 100% rename from A3-Antistasi/AI/hasRadio.sqf rename to A3-Antistasi/functions/AI/fn_hasRadio.sqf diff --git a/A3-Antistasi/AI/help.sqf b/A3-Antistasi/functions/AI/fn_help.sqf similarity index 100% rename from A3-Antistasi/AI/help.sqf rename to A3-Antistasi/functions/AI/fn_help.sqf diff --git a/A3-Antistasi/AI/hideInBuilding.sqf b/A3-Antistasi/functions/AI/fn_hideInBuilding.sqf similarity index 100% rename from A3-Antistasi/AI/hideInBuilding.sqf rename to A3-Antistasi/functions/AI/fn_hideInBuilding.sqf diff --git a/A3-Antistasi/AI/inmuneConvoy.sqf b/A3-Antistasi/functions/AI/fn_inmuneConvoy.sqf similarity index 95% rename from A3-Antistasi/AI/inmuneConvoy.sqf rename to A3-Antistasi/functions/AI/fn_inmuneConvoy.sqf index 94912a9bc1..1088d80389 100644 --- a/A3-Antistasi/AI/inmuneConvoy.sqf +++ b/A3-Antistasi/functions/AI/fn_inmuneConvoy.sqf @@ -54,8 +54,8 @@ while {alive _veh} do { if ({_x distance _newPos < 500} count (allPlayers - (entities "HeadlessClient_F")) == 0) then { - _puentes = nearestObjects [_newPos, ["Land_Bridge_01_PathLod_F","Land_Bridge_Asphalt_PathLod_F","Land_Bridge_Concrete_PathLod_F","Land_Bridge_HighWay_PathLod_F","Land_BridgeSea_01_pillar_F","Land_BridgeWooden_01_pillar_F"], 50]; - if !(_puentes isEqualTo []) then + _bridges = nearestObjects [_newPos, ["Land_Bridge_01_PathLod_F","Land_Bridge_Asphalt_PathLod_F","Land_Bridge_Concrete_PathLod_F","Land_Bridge_HighWay_PathLod_F","Land_BridgeSea_01_pillar_F","Land_BridgeWooden_01_pillar_F"], 50]; + if !(_bridges isEqualTo []) then { _nextWaypoint = currentWaypoint (group _driverX); _wpPos = waypointPosition ((waypoints (group _driverX)) select _nextWaypoint); @@ -72,4 +72,4 @@ while {alive _veh} do }; }; }; - }; \ No newline at end of file + }; diff --git a/A3-Antistasi/AI/interrogate.sqf b/A3-Antistasi/functions/AI/fn_interrogate.sqf similarity index 100% rename from A3-Antistasi/AI/interrogate.sqf rename to A3-Antistasi/functions/AI/fn_interrogate.sqf diff --git a/A3-Antistasi/AI/Buildings/isBuildingPosition.sqf b/A3-Antistasi/functions/AI/fn_isBuildingPosition.sqf similarity index 100% rename from A3-Antistasi/AI/Buildings/isBuildingPosition.sqf rename to A3-Antistasi/functions/AI/fn_isBuildingPosition.sqf diff --git a/A3-Antistasi/AI/landThreatEval.sqf b/A3-Antistasi/functions/AI/fn_landThreatEval.sqf similarity index 100% rename from A3-Antistasi/AI/landThreatEval.sqf rename to A3-Antistasi/functions/AI/fn_landThreatEval.sqf diff --git a/A3-Antistasi/AI/liberatePOW.sqf b/A3-Antistasi/functions/AI/fn_liberatePOW.sqf similarity index 100% rename from A3-Antistasi/AI/liberatePOW.sqf rename to A3-Antistasi/functions/AI/fn_liberatePOW.sqf diff --git a/A3-Antistasi/AI/liberaterefugee.sqf b/A3-Antistasi/functions/AI/fn_liberaterefugee.sqf similarity index 100% rename from A3-Antistasi/AI/liberaterefugee.sqf rename to A3-Antistasi/functions/AI/fn_liberaterefugee.sqf diff --git a/A3-Antistasi/AI/mineSweep.sqf b/A3-Antistasi/functions/AI/fn_mineSweep.sqf old mode 100755 new mode 100644 similarity index 100% rename from A3-Antistasi/AI/mineSweep.sqf rename to A3-Antistasi/functions/AI/fn_mineSweep.sqf diff --git a/A3-Antistasi/AI/mortarDrill.sqf b/A3-Antistasi/functions/AI/fn_mortarDrill.sqf similarity index 100% rename from A3-Antistasi/AI/mortarDrill.sqf rename to A3-Antistasi/functions/AI/fn_mortarDrill.sqf diff --git a/A3-Antistasi/AI/mortarSupport.sqf b/A3-Antistasi/functions/AI/fn_mortarSupport.sqf similarity index 100% rename from A3-Antistasi/AI/mortarSupport.sqf rename to A3-Antistasi/functions/AI/fn_mortarSupport.sqf diff --git a/A3-Antistasi/AI/mortyAI.sqf b/A3-Antistasi/functions/AI/fn_mortyAI.sqf similarity index 100% rename from A3-Antistasi/AI/mortyAI.sqf rename to A3-Antistasi/functions/AI/fn_mortyAI.sqf diff --git a/A3-Antistasi/AI/napalm.sqf b/A3-Antistasi/functions/AI/fn_napalm.sqf similarity index 100% rename from A3-Antistasi/AI/napalm.sqf rename to A3-Antistasi/functions/AI/fn_napalm.sqf diff --git a/A3-Antistasi/AI/napalmDamage.sqf b/A3-Antistasi/functions/AI/fn_napalmDamage.sqf similarity index 97% rename from A3-Antistasi/AI/napalmDamage.sqf rename to A3-Antistasi/functions/AI/fn_napalmDamage.sqf index 905712d67b..dd95598401 100644 --- a/A3-Antistasi/AI/napalmDamage.sqf +++ b/A3-Antistasi/functions/AI/fn_napalmDamage.sqf @@ -63,7 +63,7 @@ while {time < _timeOut} do { _typeX = _this select 0; sleep random 3; - playSound3D [(injuredSounds call BIS_fnc_selectRandom),_typeX]; + playSound3D [(selectRandom injuredSounds),_typeX]; }; }; }; diff --git a/A3-Antistasi/AI/nearEnemy.sqf b/A3-Antistasi/functions/AI/fn_nearEnemy.sqf similarity index 100% rename from A3-Antistasi/AI/nearEnemy.sqf rename to A3-Antistasi/functions/AI/fn_nearEnemy.sqf diff --git a/A3-Antistasi/AI/AAFKilledEH.sqf b/A3-Antistasi/functions/AI/fn_occupantInvaderUnitKilledEH.sqf similarity index 63% rename from A3-Antistasi/AI/AAFKilledEH.sqf rename to A3-Antistasi/functions/AI/fn_occupantInvaderUnitKilledEH.sqf index 40aad6ac9a..817d63be63 100644 --- a/A3-Antistasi/AI/AAFKilledEH.sqf +++ b/A3-Antistasi/functions/AI/fn_occupantInvaderUnitKilledEH.sqf @@ -1,4 +1,4 @@ -private ["_victim","_killer","_costs","_enemy","_groupX"]; +private ["_victim","_killer","_costs","_enemy","_victimGroup"]; _victim = _this select 0; _killer = _this select 1; if (_victim getVariable ["spawner",false]) then @@ -7,8 +7,8 @@ if (_victim getVariable ["spawner",false]) then }; [_victim] spawn A3A_fnc_postmortem; -_groupX = group _victim; -_sideX = side (group _victim); +_victimGroup = group _victim; +_victimSide = side (group _victim); if (hasACE) then { if ((isNull _killer) || (_killer == _victim)) then @@ -16,7 +16,7 @@ if (hasACE) then _killer = _victim getVariable ["ace_medical_lastDamageSource", _killer]; }; }; -//if (_killer isEqualType "") then {diag_log format ["Antistasi error in A3A_fnc_AAFKilledEH, params: %1",_this]}; +//if (_killer isEqualType "") then {diag_log format ["Antistasi error in A3A_fnc_occupantInvaderUnitKilledEH, params: %1",_this]}; if (side (group _killer) == teamPlayer) then { if (isPlayer _killer) then @@ -31,28 +31,24 @@ if (side (group _killer) == teamPlayer) then }; }; _killer addRating 1000; - } + }; + //Killing someone does not make you a better soldier + /* else { _skill = skill _killer; [_killer,_skill + 0.05] remoteExec ["setSkill",_killer]; }; + */ if (vehicle _killer isKindOf "StaticMortar") then { - if (isMultiplayer) then - { - { + { if ((_x distance _victim < 300) and (captive _x)) then {[_x,false] remoteExec ["setCaptive",0,_x]; _x setCaptive false}; - } forEach playableUnits; - } - else - { - if ((player distance _victim < 300) and (captive player)) then {player setCaptive false}; - }; + } forEach (call A3A_fnc_playableUnits); }; if (count weapons _victim < 1 && !(_victim getVariable ["isAnimal", false])) then { - if (_sideX == Occupants) then + if (_victimSide == Occupants) then { [0,-2,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; [1,0] remoteExec ["A3A_fnc_prestige",2]; @@ -65,7 +61,7 @@ if (side (group _killer) == teamPlayer) then else { [-1,1,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; - if (_sideX == Occupants) then + if (_victimSide == Occupants) then { [0.1,0] remoteExec ["A3A_fnc_prestige",2]; } @@ -77,7 +73,7 @@ if (side (group _killer) == teamPlayer) then } else { - if (_sideX == Occupants) then + if (_victimSide == Occupants) then { [-0.25,0,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; } @@ -86,16 +82,16 @@ else [0.25,0,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; }; }; -_markerX = _victim getVariable "markerX"; -_garrisoned = true; -if (isNil "_markerX") then {_markerX = _victim getVariable ["originX",""]; _garrisoned = false}; -if (_markerX != "") then +_victimLocation = _victim getVariable "markerX"; +_victimAssignedToGarrison = true; +if (isNil "_victimLocation") then {_victimLocation = _victim getVariable ["originX",""]; _victimAssignedToGarrison = false}; +if (_victimLocation != "") then { - if (sidesX getVariable [_markerX,sideUnknown] == _sideX) then + if (sidesX getVariable [_victimLocation,sideUnknown] == _victimSide) then { - [typeOf _victim,_sideX,_markerX,-1] remoteExec ["A3A_fnc_garrisonUpdate",2]; - if (_garrisoned) then {[_markerX,_sideX] remoteExec ["A3A_fnc_zoneCheck",2]}; + [typeOf _victim,_victimSide,_victimLocation,-1] remoteExec ["A3A_fnc_garrisonUpdate",2]; + if (_victimAssignedToGarrison) then {[_victimLocation,_victimSide] remoteExec ["A3A_fnc_zoneCheck",2]}; }; }; -[_groupX,_killer] spawn A3A_fnc_AIreactOnKill; +[_victimGroup,_killer] spawn A3A_fnc_AIreactOnKill; diff --git a/A3-Antistasi/AI/rearmCall.sqf b/A3-Antistasi/functions/AI/fn_rearmCall.sqf similarity index 100% rename from A3-Antistasi/AI/rearmCall.sqf rename to A3-Antistasi/functions/AI/fn_rearmCall.sqf diff --git a/A3-Antistasi/AI/recallGroup.sqf b/A3-Antistasi/functions/AI/fn_recallGroup.sqf similarity index 100% rename from A3-Antistasi/AI/recallGroup.sqf rename to A3-Antistasi/functions/AI/fn_recallGroup.sqf diff --git a/A3-Antistasi/AI/smokeCoverAuto.sqf b/A3-Antistasi/functions/AI/fn_smokeCoverAuto.sqf similarity index 93% rename from A3-Antistasi/AI/smokeCoverAuto.sqf rename to A3-Antistasi/functions/AI/fn_smokeCoverAuto.sqf index 8cf5e66786..55fda2a865 100644 --- a/A3-Antistasi/AI/smokeCoverAuto.sqf +++ b/A3-Antistasi/functions/AI/fn_smokeCoverAuto.sqf @@ -21,7 +21,7 @@ else if !(hasIFA) then { private ["_pos","_smokeX"]; - _typeSmoke = selectRandom smokeX; + _typeSmoke = selectRandom allSmokeGrenades; for "_i" from 0 to 8 do { _pos = position _veh getPos [(28 + random 2),_i*40]; diff --git a/A3-Antistasi/AI/staticAutoT.sqf b/A3-Antistasi/functions/AI/fn_staticAutoT.sqf similarity index 96% rename from A3-Antistasi/AI/staticAutoT.sqf rename to A3-Antistasi/functions/AI/fn_staticAutoT.sqf index 4f0526ae21..8db54e0e53 100644 --- a/A3-Antistasi/AI/staticAutoT.sqf +++ b/A3-Antistasi/functions/AI/fn_staticAutoT.sqf @@ -23,7 +23,7 @@ if (_groupX getVariable "staticAutoT") exitWith hint format ["Mounted Static Squad %1 set to Auto Target Mode ON", groupID _groupX]; _groupX setVariable ["staticAutoT",true,true]; -if (typeOf _static == SDKMortar) exitWith {_nul=[_static] execVM "scripts\UPSMON\MON_artillery_add.sqf";}; +if (typeOf _static == SDKMortar) exitWith {_nul=[_static] execVM "scripts\UPSMON\MON_artillery_add.sqf";};//TODO delete UPSMON link _LeaderX = leader _groupX; _truckX = vehicle _LeaderX; _boy = gunner _static; diff --git a/A3-Antistasi/AI/staticMGDrill.sqf b/A3-Antistasi/functions/AI/fn_staticMGDrill.sqf similarity index 100% rename from A3-Antistasi/AI/staticMGDrill.sqf rename to A3-Antistasi/functions/AI/fn_staticMGDrill.sqf diff --git a/A3-Antistasi/AI/suppressingFire.sqf b/A3-Antistasi/functions/AI/fn_suppressingFire.sqf similarity index 100% rename from A3-Antistasi/AI/suppressingFire.sqf rename to A3-Antistasi/functions/AI/fn_suppressingFire.sqf diff --git a/A3-Antistasi/AI/surrenderAction.sqf b/A3-Antistasi/functions/AI/fn_surrenderAction.sqf similarity index 100% rename from A3-Antistasi/AI/surrenderAction.sqf rename to A3-Antistasi/functions/AI/fn_surrenderAction.sqf diff --git a/A3-Antistasi/AI/typeOfSoldier.sqf b/A3-Antistasi/functions/AI/fn_typeOfSoldier.sqf similarity index 97% rename from A3-Antistasi/AI/typeOfSoldier.sqf rename to A3-Antistasi/functions/AI/fn_typeOfSoldier.sqf index b7d3ddc652..cf7aa93ad9 100644 --- a/A3-Antistasi/AI/typeOfSoldier.sqf +++ b/A3-Antistasi/functions/AI/fn_typeOfSoldier.sqf @@ -35,13 +35,13 @@ if ((_var isEqualTo "") or (_var isEqualTo "ATMan") or (_var isEqualTo "AAMan") else { _weaponX = [primaryWeapon _unit] call BIS_fnc_baseWeapon; - if (_weaponX in mguns) then + if (_weaponX in allMachineGuns) then { _result = "MGMan" } else { - if (_weaponX in srifles) then + if (_weaponX in allSniperRifles) then { _result = "Sniper"; } diff --git a/A3-Antistasi/AI/undercoverAI.sqf b/A3-Antistasi/functions/AI/fn_undercoverAI.sqf similarity index 91% rename from A3-Antistasi/AI/undercoverAI.sqf rename to A3-Antistasi/functions/AI/fn_undercoverAI.sqf index 0c175e9565..68f832444a 100644 --- a/A3-Antistasi/AI/undercoverAI.sqf +++ b/A3-Antistasi/functions/AI/fn_undercoverAI.sqf @@ -16,7 +16,10 @@ _oldBehaviour = behaviour _unit; _unit setBehaviour "CARELESS"; _unit setUnitPos "UP"; _loadOut = getUnitLoadout _unit; -_unit setUnitLoadout (selectRandom arrayCivs); +removeAllItems _unit; +removeAllAssignedItems _unit; +removeAllWeapons _unit; +_unit forceAddUniform (selectRandom allCivilianUniforms); //_airportsX = airportsX + outposts;// + (controlsX select {isOnRoad getMarkerPos _x}); while {(captive _LeaderX) and (captive _unit)} do diff --git a/A3-Antistasi/AI/unitGetToCover.sqf b/A3-Antistasi/functions/AI/fn_unitGetToCover.sqf similarity index 100% rename from A3-Antistasi/AI/unitGetToCover.sqf rename to A3-Antistasi/functions/AI/fn_unitGetToCover.sqf diff --git a/A3-Antistasi/AI/useFlares.sqf b/A3-Antistasi/functions/AI/fn_useFlares.sqf similarity index 100% rename from A3-Antistasi/AI/useFlares.sqf rename to A3-Antistasi/functions/AI/fn_useFlares.sqf diff --git a/A3-Antistasi/AI/vehicleMarkers.sqf b/A3-Antistasi/functions/AI/fn_vehicleMarkers.sqf similarity index 98% rename from A3-Antistasi/AI/vehicleMarkers.sqf rename to A3-Antistasi/functions/AI/fn_vehicleMarkers.sqf index cf0ab37ce4..3054ea186d 100644 --- a/A3-Antistasi/AI/vehicleMarkers.sqf +++ b/A3-Antistasi/functions/AI/fn_vehicleMarkers.sqf @@ -38,7 +38,7 @@ if ((_side == teamPlayer) or (_side == sideUnknown)) then { _enemyX = false; _formatX = "n"; - _color = colourTeamPlayer; + _color = colorTeamPlayer; } else { diff --git a/A3-Antistasi/Ammunition/ACEpvpReDress.sqf b/A3-Antistasi/functions/Ammunition/fn_ACEpvpReDress.sqf similarity index 61% rename from A3-Antistasi/Ammunition/ACEpvpReDress.sqf rename to A3-Antistasi/functions/Ammunition/fn_ACEpvpReDress.sqf index 264525bcb5..52c072a4db 100644 --- a/A3-Antistasi/Ammunition/ACEpvpReDress.sqf +++ b/A3-Antistasi/functions/Ammunition/fn_ACEpvpReDress.sqf @@ -18,17 +18,7 @@ if (hasACEMedical) then { player addItemToUniform _item }; - } forEach [["ACE_fieldDressing",7],["ACE_morphine",2],["ACE_epinephrine",2]]; - if (ace_medical_level == 2) then - { - { - _item = _x select 0; - for "_i" from 1 to (_x select 1) do - { - player addItemToUniform _item - }; - } forEach [["ACE_elasticBandage",7],["ACE_tourniquet",5]]; - }; + } forEach [["ACE_fieldDressing",7],["ACE_morphine",2],["ACE_epinephrine",2],["ACE_elasticBandage",7],["ACE_tourniquet",5],["ACE_splint",2]]; } else { @@ -38,17 +28,7 @@ if (hasACEMedical) then { player addItemToBackpack _item }; - } forEach [["ACE_morphine",15],["ACE_epinephrine",9],["ACE_bloodIV",8],["ACE_fieldDressing",30]]; - if (ace_medical_level == 2) then - { - { - _item = _x select 0; - for "_i" from 1 to (_x select 1) do - { - player addItemToBackpack _item - }; - } forEach [["ACE_elasticBandage",20],["ACE_packingBandage",10],["ACE_epinephrine",5],["ACE_morphine",5],["ACE_adenosine",5],["ACE_tourniquet",10],["ACE_salineIV_250",2],["ACE_surgicalKit",1],["ACE_personalAidKit",2]]; - }; + } forEach [["ACE_morphine",15],["ACE_epinephrine",9],["ACE_bloodIV",8],["ACE_fieldDressing",30],["ACE_elasticBandage",20],["ACE_packingBandage",10],["ACE_epinephrine",5],["ACE_morphine",5],["ACE_adenosine",5],["ACE_tourniquet",10],["ACE_salineIV_250",2],["ACE_surgicalKit",1],["ACE_personalAidKit",2],["ACE_splint", 8]]; }; }; if ((player getUnitTrait "explosiveSpecialist") or (player getUnitTrait "engineer")) then diff --git a/A3-Antistasi/functions/Ammunition/fn_CSATCrate.sqf b/A3-Antistasi/functions/Ammunition/fn_CSATCrate.sqf new file mode 100644 index 0000000000..1f4c242e0b --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_CSATCrate.sqf @@ -0,0 +1,292 @@ +private _unlocks = (unlockedHeadgear + unlockedVests + unlockedNVGs + unlockedOptics + unlockedItems + unlockedWeapons + unlockedBackpacks + unlockedMagazines); +private _crate = _this select 0; +private _available = objNull; +private _amount = objNull; +//Empty the crate +clearMagazineCargoGlobal _crate; +clearWeaponCargoGlobal _crate; +clearItemCargoGlobal _crate; +clearBackpackCargoGlobal _crate; +//protecting global max parameters +private _crateWepTypeMax = crateWepTypeMax; +private _crateItemTypeMax = crateItemTypeMax; +private _crateAmmoTypeMax = crateAmmoTypeMax; +private _crateExplosiveTypeMax = crateExplosiveTypeMax; +private _crateAttachmentTypeMax = crateAttachmentTypeMax; +private _crateBackpackTypeMax = crateBackpackTypeMax; +private _crateHelmetTypeMax = crateHelmetTypeMax; +private _crateVestTypeMax = crateVestTypeMax; +private _crateDeviceTypeMax = crateDeviceTypeMax; +//Double max types if the crate is an ammo truck +if (typeOf _crate == vehCSATAmmoTruck) then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Ammo Truck Detected: Doubling Types",servertime,_backpackTypes]}; + _crateWepTypeMax = _crateWepTypeMax * 2; + _crateItemTypeMax = _crateItemTypeMax * 2; + _crateAmmoTypeMax = _crateAmmoTypeMax * 2; + _crateExplosiveTypeMax = _crateExplosiveTypeMax * 2; + _crateAttachmentTypeMax = _crateAttachmentTypeMax * 2; + _crateBackpackTypeMax = _crateBackpackTypeMax * 2; + _crateHelmetTypeMax = _crateHelmetTypeMax * 2; + _crateVestTypeMax = _crateVestTypeMax * 2; + _crateDeviceTypeMax = _crateDeviceTypeMax * 2; +}; + +//Format [allWeapons, unlockedWeapons, Weighting]. +//We need to know the corresponding unlockedWeapons array, so we can check if they're all unlocked. +private _weaponLootInfo = [ + [allRifles, unlockedRifles, 3], + [allHandguns, unlockedHandguns, 1.2], + [allMachineGuns, unlockedMachineGuns, 2], + [allShotguns, unlockedShotguns, 1], + [allSMGs, unlockedSMGs, 2], + [allSniperRifles, unlockedSniperRifles, 0.9], + [allRocketLaunchers, unlockedRocketLaunchers, 0.5], + [allMissileLaunchers, unlockedMissileLaunchers, 0.5] //Increase weighting for RHS. +]; + +//Build the weighting array, as used by selectRandomWeighted +private _weaponLootWeighting = []; +{ + _x params ["_allX", "_unlockedX", "_weighting"]; + //If the array contains weapons, and we haven't unlocked everything, add it to the pool to be selected. + if (count _allX > 0 && {(count _unlockedX / count _allX) < 1}) then { + _weaponLootWeighting pushBack [_allX, _unlockedX]; + _weaponLootWeighting pushBack _weighting; + }; +} forEach _weaponLootInfo; + +/** +Probabilistic function that checks that A is probably not in B. + For a given array A, and another array B, this function selects an item from A that's not in B, with a probability that depends on how much of A is in B. + This is purely a performance optimisation. + + X Axis - Attempt/Iteration number + Y Axis - % of items from Array 1 in array 2 + Value - Probability of successfully returning a value from A not in B. + + 1 2 3 4 5 6 7 8 9 10 + ----------------------------------------------------------------------------------------------------------------- + 0.9 | 0.1 0.19 0.271 0.3439 0.40951 0.468559 0.5217031 0.56953279 0.612579511 0.6513215599 + 0.8 | 0.2 0.36 0.488 0.5904 0.67232 0.737856 0.7902848 0.83222784 0.865782272 0.8926258176 + 0.7 | 0.3 0.51 0.657 0.7599 0.83193 0.882351 0.9176457 0.94235199 0.959646393 0.9717524751 + 0.6 | 0.4 0.64 0.784 0.8704 0.92224 0.953344 0.9720064 0.98320384 0.989922304 0.9939533824 + 0.5 | 0.5 0.75 0.875 0.9375 0.96875 0.984375 0.9921875 0.99609375 0.998046875 0.9990234375 + 0.4 | 0.6 0.84 0.936 0.9744 0.98976 0.995904 0.9983616 0.99934464 0.999737856 0.9998951424 + 0.3 | 0.7 0.91 0.973 0.9919 0.99757 0.999271 0.9997813 0.99993439 0.999980317 0.9999940951 + 0.2 | 0.8 0.96 0.992 0.9984 0.99968 0.999936 0.9999872 0.99999744 0.999999488 0.9999998976 + 0.1 | 0.9 0.99 0.999 0.9999 0.99999 0.999999 0.9999999 0.99999999 0.999999999 0.9999999999 + 0.0 | 1 1 1 1 1 1 1 1 1 1 + + Best case - two arrays of 400 elements, we see a 20x speedup. + Worst case- two arrays of 1 element, 3x slowdown. + 100 array case - 10x speedup. + + Yes, this is over-engineered. +**/ + +private _fnc_pickRandomFromAProbablyNotInB = { + params ["_arrayA", "_arrayB"]; + + //Only run if there's more than 100 items in the array. + if (count _arrayA min count _arrayB < 100) exitWith { + selectRandom (_arrayA - _arrayB); + }; + + //Calculate what % of arrayB is likely in arrayA. + //Let's never go over 100% loaded. It's theoretically possible if arrayB ever is somehow larger than arrayA/ + //There's not a lot of value in running more than 10 iterations on a 90%+ loading anyway. + private _percentageLoaded = (count _arrayB / count _arrayA) min 1; + //Rough heuristic for how many iterations we need to run to get a good chance of success. + private _iterations = floor (10 * _percentageLoaded); + + private _choice = selectRandom _arrayA; + [3, format ["Function check for: %1", _choice],"fn_CSATCrate"] call A3A_fnc_log; + private _foundValid = true; + if (_choice in _arrayB) then { + _foundValid = false; + [3, format ["Item already unlocked, rolling again."],"fn_CSATCrate"] call A3A_fnc_log; + for "_i" from 0 to _iterations do { + _choice = selectRandom _arrayA; + //We did it! + if !(_choice in _arrayB) exitWith { + _foundValid = true; + }; + } + }; + + if (_foundValid) then { + _choice; + } else { + //We failed, just... return something. + selectRandom _arrayA; + }; +}; + +//Pick a weapon for the crate. Pick carefully, unless in CHAOS MODE, in which case, we just pick totally at random. +private _fnc_pickWeapon = if (bobChaosCrates) then +{ + { + private _category = (selectRandom _weaponLootInfo) select 0; + selectRandom _category; + } +} +else +{ + { + private _category = selectRandomWeighted _weaponLootWeighting; + if (isNil "_category") exitWith {}; + + [3, format ["Selected Weapon Category: %1", _category],"fn_CSATCrate"] call A3A_fnc_log; + //Category is in format [allX, unlockedX]; + [_category select 0, _category select 1] call _fnc_pickRandomFromAProbablyNotInB; + } +}; + +//Pick the amount of X to spawn. Use gaussian distribution, unless we're in CHAOS MODE. +private _fnc_pickAmount = if (bobChaosCrates) then +{ + { + params ["_max"]; + floor random _max; + } +} +else +{ + { + params ["_max"]; + floor random [1, floor (_max/2), _max]; + } +}; + +//Weapons Loot +[3, "Generating Weapons", "fn_CSATOCrate"] call A3A_fnc_log; +for "_i" from 0 to floor random _crateWepTypeMax do { + private _loot = call _fnc_pickWeapon; + + if (isNil "_loot") then { + [3, "No Weapons Left in Loot List Or Pick Random Failed","fn_CSATCrate"] call A3A_fnc_log; + } + else + { + [3, format ["Adding weapon: %1", _loot],"fn_CSATCrate"] call A3A_fnc_log; + _amount = crateWepNumMax call _fnc_pickAmount; + _crate addWeaponWithAttachmentsCargoGlobal [[ _loot, "", "", "", [], [], ""], _amount]; + for "_i" from 0 to _amount do { + _magazines = getArray (configFile / "CfgWeapons" / _loot / "magazines"); + [3, format ["Grabbing a %1 for %2", _magazines, _loot],"fn_CSATCrate"] call A3A_fnc_log; + _magAmount = selectRandom [0,1,2]; + [3, format ["Spawning %1 magazines for %2", _magAmount, _loot],"fn_CSATCrate"] call A3A_fnc_log; + _crate addMagazineCargoGlobal [selectrandom _magazines, _magAmount]; + [3, format ["Spawning %1 of %2", _amount, _loot],"fn_CSATCrate"] call A3A_fnc_log; + }; + }; +}; + +//Items Loot +[3, "Generating Items", "fn_CSATCrate"] call A3A_fnc_log; +for "_i" from 0 to floor random _crateItemTypeMax do { + _available = (lootItem - _unlocks - itemCargo _crate); + [3, format ["Breakdown: %1, %2, %3", lootItem, _unlocks, itemCargo _crate],"fn_CSATCrate"] call A3A_fnc_log; + [3, format ["Items available: %1", _available],"fn_CSATCrate"] call A3A_fnc_log; + _loot = selectRandom _available; + if (isNil "_loot") then { + [3, "No Items Left in Loot List","fn_CSATCrate"] call A3A_fnc_log; + } + else { + [3, format ["Item chosen: %1", _loot],"fn_CSATCrate"] call A3A_fnc_log; + _amount = floor random crateItemNumMax; + _crate addItemCargoGlobal [_loot,_amount]; + [3, format ["Spawning %2 of %3", _amount,_loot],"fn_CSATCrate"] call A3A_fnc_log; + }; +}; +//Ammo Loot +for "_i" from 0 to floor random _crateAmmoTypeMax do { + _available = (lootMagazine - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Ammo Left in Loot List",servertime]}; + } + else { + _amount = crateAmmoNumMax call _fnc_pickAmount; + _crate addMagazineCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Explosives Loot +for "_i" from 0 to floor random _crateExplosiveTypeMax do { + _available = (lootExplosive - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Explosives Left in Loot List",servertime]}; + } + else { + _amount = floor random crateExplosiveNumMax; + _crate addMagazineCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Attachments Loot +for "_i" from 0 to floor random _crateAttachmentTypeMax do { + _available = (lootAttachment - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Attachment Left in Loot List",servertime]}; + } + else { + _amount = crateAttachmentNumMax call _fnc_pickAmount; + _crate addItemCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Backpacks Loot +for "_i" from 0 to floor random _crateBackpackTypeMax do { + _available = (lootBackpack - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Backpacks Left in Loot List",servertime]}; + } + else { + _amount = floor random crateBackpackNumMax; + _crate addBackpackCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Helmets Loot +for "_i" from 0 to floor random _crateHelmetTypeMax do { + _available = (lootHelmet - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Helmets Left in Loot List",servertime]}; + } + else { + _amount = floor random crateHelmetNumMax; + _crate addItemCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Vests Loot +for "_i" from 0 to floor random _crateVestTypeMax do { + _available = (lootVest - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Vests Left in Loot List",servertime]}; + } + else { + _amount = floor random crateVestNumMax; + _crate addItemCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Device Loot +for "_i" from 0 to floor random _crateDeviceTypeMax do { + _available = (lootDevice - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Device Bags Left in Loot List",servertime]}; + } + else { + _amount = floor random crateDeviceNumMax; + _crate addBackpackCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; diff --git a/A3-Antistasi/functions/Ammunition/fn_NATOCrate.sqf b/A3-Antistasi/functions/Ammunition/fn_NATOCrate.sqf new file mode 100755 index 0000000000..c12c9c2dad --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_NATOCrate.sqf @@ -0,0 +1,320 @@ +private _unlocks = (unlockedHeadgear + unlockedVests + unlockedNVGs + unlockedOptics + unlockedItems + unlockedWeapons + unlockedBackpacks + unlockedMagazines); +private _crate = _this select 0; +private _available = objNull; +private _amount = objNull; +//Empty the crate +clearMagazineCargoGlobal _crate; +clearWeaponCargoGlobal _crate; +clearItemCargoGlobal _crate; +clearBackpackCargoGlobal _crate; +//protecting global max parameters +private _crateWepTypeMax = crateWepTypeMax; +private _crateItemTypeMax = crateItemTypeMax; +private _crateAmmoTypeMax = crateAmmoTypeMax; +private _crateExplosiveTypeMax = crateExplosiveTypeMax; +private _crateAttachmentTypeMax = crateAttachmentTypeMax; +private _crateBackpackTypeMax = crateBackpackTypeMax; +private _crateHelmetTypeMax = crateHelmetTypeMax; +private _crateVestTypeMax = crateVestTypeMax; +private _crateDeviceTypeMax = crateDeviceTypeMax; +//Double max types if the crate is an ammo truck +if (typeOf _crate == vehNATOAmmoTruck) then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Ammo Truck Detected: Doubling Types",servertime,_backpackTypes]}; + _crateWepTypeMax = _crateWepTypeMax * 2; + _crateItemTypeMax = _crateItemTypeMax * 2; + _crateAmmoTypeMax = _crateAmmoTypeMax * 2; + _crateExplosiveTypeMax = _crateExplosiveTypeMax * 2; + _crateAttachmentTypeMax = _crateAttachmentTypeMax * 2; + _crateBackpackTypeMax = _crateBackpackTypeMax * 2; + _crateHelmetTypeMax = _crateHelmetTypeMax * 2; + _crateVestTypeMax = _crateVestTypeMax * 2; + _crateDeviceTypeMax = _crateDeviceTypeMax * 2; +}; + + +private _quantityScalingFactor = if (!cratePlayerScaling) then {1} else { + private _playerCount = if(!isNil "spoofedPlayerCount") then {spoofedPlayerCount} else {count (call A3A_fnc_playableUnits)}; + //Scale it down to a 50% loot rate at 20 players. + 1 / (1 + _playerCount / 20); +}; + + +//Format [allWeapons, unlockedWeapons, Weighting]. +//We need to know the corresponding unlockedWeapons array, so we can check if they're all unlocked. +private _weaponLootInfo = [ + [allRifles, unlockedRifles, 3], + [allHandguns, unlockedHandguns, 1.2], + [allMachineGuns, unlockedMachineGuns, 2], + [allShotguns, unlockedShotguns, 1], + [allSMGs, unlockedSMGs, 2], + [allSniperRifles, unlockedSniperRifles, 0.9], + [allRocketLaunchers, unlockedRocketLaunchers, 0.5], + [allMissileLaunchers, unlockedMissileLaunchers, 0.5] //Increase weighting for RHS. +]; + +//Build the weighting array, as used by selectRandomWeighted +private _weaponLootWeighting = []; +{ + _x params ["_allX", "_unlockedX", "_weighting"]; + //If the array contains weapons, and we haven't unlocked everything, add it to the pool to be selected. + if (count _allX > 0 && {(count _unlockedX / count _allX) < 1}) then { + _weaponLootWeighting pushBack [_allX, _unlockedX]; + _weaponLootWeighting pushBack _weighting; + }; +} forEach _weaponLootInfo; + +/** +Probabilistic function that checks that A is probably not in B. + For a given array A, and another array B, this function selects an item from A that's not in B, with a probability that depends on how much of A is in B. + This is purely a performance optimisation. + + X Axis - Attempt/Iteration number + Y Axis - % of items from Array 1 in array 2 + Value - Probability of successfully returning a value from A not in B. + + 1 2 3 4 5 6 7 8 9 10 + ----------------------------------------------------------------------------------------------------------------- + 0.9 | 0.1 0.19 0.271 0.3439 0.40951 0.468559 0.5217031 0.56953279 0.612579511 0.6513215599 + 0.8 | 0.2 0.36 0.488 0.5904 0.67232 0.737856 0.7902848 0.83222784 0.865782272 0.8926258176 + 0.7 | 0.3 0.51 0.657 0.7599 0.83193 0.882351 0.9176457 0.94235199 0.959646393 0.9717524751 + 0.6 | 0.4 0.64 0.784 0.8704 0.92224 0.953344 0.9720064 0.98320384 0.989922304 0.9939533824 + 0.5 | 0.5 0.75 0.875 0.9375 0.96875 0.984375 0.9921875 0.99609375 0.998046875 0.9990234375 + 0.4 | 0.6 0.84 0.936 0.9744 0.98976 0.995904 0.9983616 0.99934464 0.999737856 0.9998951424 + 0.3 | 0.7 0.91 0.973 0.9919 0.99757 0.999271 0.9997813 0.99993439 0.999980317 0.9999940951 + 0.2 | 0.8 0.96 0.992 0.9984 0.99968 0.999936 0.9999872 0.99999744 0.999999488 0.9999998976 + 0.1 | 0.9 0.99 0.999 0.9999 0.99999 0.999999 0.9999999 0.99999999 0.999999999 0.9999999999 + 0.0 | 1 1 1 1 1 1 1 1 1 1 + + Best case - two arrays of 400 elements, we see a 20x speedup. + Worst case- two arrays of 1 element, 3x slowdown. + 100 array case - 10x speedup. + + Yes, this is over-engineered. +**/ + +private _fnc_pickRandomFromAProbablyNotInB = { + params ["_arrayA", "_arrayB"]; + + //Only run if there's more than 100 items in the array. + if (count _arrayA min count _arrayB < 100) exitWith { + selectRandom (_arrayA - _arrayB); + }; + + //Calculate what % of arrayB is likely in arrayA. + //Let's never go over 100% loaded. It's theoretically possible if arrayB ever is somehow larger than arrayA/ + //There's not a lot of value in running more than 10 iterations on a 90%+ loading anyway. + private _percentageLoaded = (count _arrayB / count _arrayA) min 1; + //Rough heuristic for how many iterations we need to run to get a good chance of success. + private _iterations = floor (10 * _percentageLoaded); + + private _choice = selectRandom _arrayA; + [3, format ["Function check for: %1", _choice],"fn_NATOCrate"] call A3A_fnc_log; + private _foundValid = true; + if (_choice in _arrayB) then { + _foundValid = false; + [3, format ["Item already unlocked, rolling again."],"fn_NATOCrate"] call A3A_fnc_log; + for "_i" from 0 to _iterations do { + _choice = selectRandom _arrayA; + //We did it! + if !(_choice in _arrayB) exitWith { + _foundValid = true; + }; + } + }; + + if (_foundValid) then { + _choice; + } else { + //We failed, just... return something. + selectRandom _arrayA; + }; +}; + +//Pick a weapon for the crate. Pick carefully, unless in CHAOS MODE, in which case, we just pick totally at random. +private _fnc_pickWeapon = if (bobChaosCrates) then +{ + { + private _category = (selectRandom _weaponLootInfo) select 0; + selectRandom _category; + } +} +else +{ + { + private _category = selectRandomWeighted _weaponLootWeighting; + if (isNil "_category") exitWith {}; + + [3, format ["Selected Weapon Category: %1", _category],"fn_NATOCrate"] call A3A_fnc_log; + //Category is in format [allX, unlockedX]; + [_category select 0, _category select 1] call _fnc_pickRandomFromAProbablyNotInB; + } +}; + +//Pick the amount of X to spawn. Use gaussian distribution, unless we're in CHAOS MODE. +private _fnc_pickAmount = if (bobChaosCrates) then +{ + { + params ["_max"]; + floor random _max; + } +} +else +{ + { + params ["_max"]; + floor (random [1, floor (_max/2), _max] * _quantityScalingFactor); + } +}; + +private _fnc_pickNumberOfTypes = if (bobChaosCrates) then +{ + { + params ["_max"]; + floor random _max; + } +} +else +{ + { + params ["_max"]; + floor random [1, floor (_max/2), _max]; + } +}; + +//Weapons Loot +[3, "Generating Weapons", "fn_NATOCrate"] call A3A_fnc_log; +for "_i" from 0 to (_crateWepTypeMax call _fnc_pickNumberOfTypes) do { + private _loot = call _fnc_pickWeapon; + + if (isNil "_loot") then { + [3, "No Weapons Left in Loot List Or Pick Random Failed","fn_NATOCrate"] call A3A_fnc_log; + } + else + { + [3, format ["Adding weapon: %1", _loot],"fn_NATOCrate"] call A3A_fnc_log; + _amount = crateWepNumMax call _fnc_pickAmount; + _crate addWeaponWithAttachmentsCargoGlobal [[ _loot, "", "", "", [], [], ""], _amount]; + for "_i" from 0 to _amount do { + _magazine = selectRandom getArray (configFile / "CfgWeapons" / _loot / "magazines"); + //Abort if the gun has no magazines. + if (isNil "_magazine") exitWith {}; + _magAmount = if ((getText (configFile >> "CfgMagazines" >> _magazine >> "ammo") isKindOf "MissileBase")) then { + floor random 3; + } else { + floor random [1,6,1] + }; + [3, format ["Spawning %1 magazines of %2 for %3", _magAmount, _magazine, _loot],"fn_NATOCrate"] call A3A_fnc_log; + _crate addMagazineCargoGlobal [_magazine, _magAmount]; + [3, format ["Spawning %1 of %2", _amount, _loot],"fn_NATOCrate"] call A3A_fnc_log; + }; + }; +}; + +//Items Loot +[3, "Generating Items", "fn_NATOCrate"] call A3A_fnc_log; +for "_i" from 0 to floor random _crateItemTypeMax do { + _available = (lootItem - _unlocks - itemCargo _crate); + [3, format ["Breakdown: %1, %2, %3", lootItem, _unlocks, itemCargo _crate],"fn_NATOCrate"] call A3A_fnc_log; + [3, format ["Items available: %1", _available],"fn_NATOCrate"] call A3A_fnc_log; + _loot = selectRandom _available; + if (isNil "_loot") then { + [3, "No Items Left in Loot List","fn_NATOCrate"] call A3A_fnc_log; + } + else { + [3, format ["Item chosen: %1", _loot],"fn_NATOCrate"] call A3A_fnc_log; + _amount = floor random crateItemNumMax; + _crate addItemCargoGlobal [_loot,_amount]; + [3, format ["Spawning %2 of %3", _amount,_loot],"fn_NATOCrate"] call A3A_fnc_log; + }; +}; +//Ammo Loot +for "_i" from 0 to floor random _crateAmmoTypeMax do { + _available = (lootMagazine - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Ammo Left in Loot List",servertime]}; + } + else { + _amount = crateAmmoNumMax call _fnc_pickAmount; + _crate addMagazineCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Explosives Loot +for "_i" from 0 to floor random _crateExplosiveTypeMax do { + _available = (lootExplosive - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Explosives Left in Loot List",servertime]}; + } + else { + _amount = floor random crateExplosiveNumMax; + _crate addMagazineCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Attachments Loot +for "_i" from 0 to (_crateAttachmentTypeMax call _fnc_pickNumberOfTypes) do { + _available = (lootAttachment - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Attachment Left in Loot List",servertime]}; + } + else { + _amount = crateAttachmentNumMax call _fnc_pickAmount; + _crate addItemCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Backpacks Loot +for "_i" from 0 to floor random _crateBackpackTypeMax do { + _available = (lootBackpack - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Backpacks Left in Loot List",servertime]}; + } + else { + _amount = floor random crateBackpackNumMax; + _crate addBackpackCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Helmets Loot +for "_i" from 0 to floor random _crateHelmetTypeMax do { + _available = (lootHelmet - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Helmets Left in Loot List",servertime]}; + } + else { + _amount = floor random crateHelmetNumMax; + _crate addItemCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Vests Loot +for "_i" from 0 to floor random _crateVestTypeMax do { + _available = (lootVest - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Vests Left in Loot List",servertime]}; + } + else { + _amount = floor random crateVestNumMax; + _crate addItemCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; +//Device Loot +for "_i" from 0 to floor random _crateDeviceTypeMax do { + _available = (lootDevice - _unlocks - itemCargo _crate); + _loot = selectRandom _available; + if (isNil "_loot") then { + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Device Bags Left in Loot List",servertime]}; + } + else { + _amount = floor random crateDeviceNumMax; + _crate addBackpackCargoGlobal [_loot,_amount]; + if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]}; + }; +}; diff --git a/A3-Antistasi/Ammunition/ammunitionTransfer.sqf b/A3-Antistasi/functions/Ammunition/fn_ammunitionTransfer.sqf similarity index 92% rename from A3-Antistasi/Ammunition/ammunitionTransfer.sqf rename to A3-Antistasi/functions/Ammunition/fn_ammunitionTransfer.sqf index bda7aeacf5..94a8610852 100644 --- a/A3-Antistasi/Ammunition/ammunitionTransfer.sqf +++ b/A3-Antistasi/functions/Ammunition/fn_ammunitionTransfer.sqf @@ -39,9 +39,19 @@ if (!isNil "_weaponsItemsCargo") then for "_i" from 1 to (count _x) - 1 do { _thingX = _x select _i; - if (typeName _thingX == typeName "") then + if (_thingX isEqualType "") then { if (_thingX != "") then {_items pushBack _thingX}; + } + else + { + if (_thingX isEqualType []) then + { + if (count _thingX > 0) then + { + _ammunition pushBack (_thingX select 0); + }; + }; }; }; } forEach _weaponsItemsCargo; @@ -146,7 +156,7 @@ else if (_destinationX == boxX) then { - if (isMultiplayer) then {{if (_x distance boxX < 10) then {[petros,"hint","Ammobox Loaded"] remoteExec ["A3A_fnc_commsMP",_x]}} forEach playableUnits} else {hint "Ammobox Loaded"}; + {if (_x distance boxX < 10) then {[petros,"hint","Ammobox Loaded"] remoteExec ["A3A_fnc_commsMP",_x]}} forEach (call A3A_fnc_playableUnits); if ((_originX isKindOf "ReammoBox_F") and (_originX != vehicleBox)) then {deleteVehicle _originX}; _updated = [] call A3A_fnc_arsenalManage; if (_updated != "") then diff --git a/A3-Antistasi/functions/Ammunition/fn_arsenalManage.sqf b/A3-Antistasi/functions/Ammunition/fn_arsenalManage.sqf new file mode 100644 index 0000000000..69926a477a --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_arsenalManage.sqf @@ -0,0 +1,105 @@ +if (!isServer) exitWith {}; +#include "\A3\Ui_f\hpp\defineResinclDesign.inc" + +private _updated = ""; +private _item = objNull; +private _cateogry = objNull; +["buttonInvToJNA"] call jn_fnc_arsenal; + +private _weapons = ((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_PRIMARYWEAPON) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_HANDGUN) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_SECONDARYWEAPON)) select {_x select 1 != -1}; +private _explosives = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOPUT) select {_x select 1 != -1}; +private _magazines = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOTHROW) select {_x select 1 != -1}; +private _backpacks = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_BACKPACK) select {_x select 1 != -1}; +private _items = ((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_GOGGLES) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_MAP) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_GPS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_RADIO) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_COMPASS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_WATCH) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMACC) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMMUZZLE) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMBIPOD) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_BINOCULARS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOMISC) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_UNIFORM)) select {_x select 1 != -1}; +private _optics = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMOPTIC) select {_x select 1 != -1}; +private _nv = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_NVGS) select {_x select 1 != -1}; +private _helmets = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_HEADGEAR) select {_x select 1 != -1}; +private _vests = (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_VEST) select {_x select 1 != -1}; + +private _type = objNull; +private _magazine = []; +private _magConfig = objNull; +private _capacity = objNull; +private _bullets = objNull; +private _count = objNull; +{ + _type = _x select 0; + _magConfig = configFile >> "CfgMagazines" >> _type; + _capacity = getNumber (_magConfig >> "count"); + + // control unlocking missile launcher magazines + // the capacity check is an optimisation to bypass the config check. ~18% perf gain on the loop. + if (_capacity != 1 || allowGuidedLaunchers isEqualTo 1 || + {!(getText (_magConfig >> "ammo") isKindOf "MissileBase")}) then { + _bullets = _x select 1; + _count = floor (_bullets/_capacity); + _magazine pushBack [_type,_count]; + }; +} forEach _magazines; + +private _allExceptNVs = _weapons + _explosives + _backpacks + _items + _optics + _helmets + _vests + _magazine; + +{ + private _item = _x select 0; + if (_x select 1 >= minWeaps) then { + private _categories = _item call A3A_fnc_equipmentClassToCategories; + + if ((allowGuidedLaunchers isEqualTo 1 || {!("MissileLaunchers" in _categories)}) && + (allowUnlockedExplosives isEqualTo 1 || !("Explosives" in _categories))) then { + + _item call A3A_fnc_unlockEquipment; + + private _name = switch (true) do { + case ("Magazines" in _categories): {getText (configFile >> "CfgMagazines" >> _item >> "displayName")}; + case ("Backpacks" in _categories): {getText (configFile >> "CfgVehicles" >> _item >> "displayName")}; + default {getText (configFile >> "CfgWeapons" >> _item >> "displayName")}; + }; + + //Update the 'Updated' text with the name of the new item. + _updated = format ["%1%2
",_updated,_name]; + + //Unlock ammo for guns, if appropriate. + if (unlockedUnlimitedAmmo == 1 && ("Weapons" in _categories)) then { + private _weaponMagazine = (getArray (configFile / "CfgWeapons" / _item / "magazines") select 0); + if (!isNil "_weaponMagazine") then { + if (not(_weaponMagazine in unlockedMagazines)) then { + _updated = format ["%1%2
",_updated,getText (configFile >> "CfgMagazines" >> _weaponMagazine >> "displayName")]; + [_weaponMagazine] call A3A_fnc_unlockEquipment; + }; + }; + }; + + + }; + }; + +} forEach _allExceptNVs; + +call A3A_fnc_checkRadiosUnlocked; +unlockedOptics = [unlockedOptics,[],{getNumber (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "mass")},"DESCEND"] call BIS_fnc_sortBy; + +//NVG Unlocking is special +//Unlock a random NVG per X non-unlocked NVG we have, from the list we've collected. +private _countX = 0; +private _lockedNvs = []; + +//Add up how many non-unlocked NVGs we have. +{ + private _amount = (_x select 1); + if (_amount > 0) then { + _countX = _countX + _amount; + _lockedNvs pushBack (_x select 0); + }; +} forEach _nv; + +//Implicitly, we have locked NVGs if we've counted more than 0 locked NVGs in the box. +//Might need to unlock several NVGs at once, hence the while loop. +while {_countX >= minWeaps} do { + private _nvToUnlock = selectRandom _lockedNvs; + haveNV = true; publicVariable "haveNV"; + [_nvToUnlock] call A3A_fnc_unlockEquipment; + _updated = format ["%1%2
",_updated,getText (configFile >> "CfgWeapons" >> _nvToUnlock >> "displayName")]; + _countX =_countX - minWeaps; +}; + +_updated \ No newline at end of file diff --git a/A3-Antistasi/Ammunition/checkRadiosUnlocked.sqf b/A3-Antistasi/functions/Ammunition/fn_checkRadiosUnlocked.sqf similarity index 100% rename from A3-Antistasi/Ammunition/checkRadiosUnlocked.sqf rename to A3-Antistasi/functions/Ammunition/fn_checkRadiosUnlocked.sqf diff --git a/A3-Antistasi/functions/Ammunition/fn_configSort.sqf b/A3-Antistasi/functions/Ammunition/fn_configSort.sqf new file mode 100644 index 0000000000..08259f3be6 --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_configSort.sqf @@ -0,0 +1,68 @@ +params [["_filter", {true}]]; + +//////////////////////////////////// +// ITEM/WEAPON CLASSIFICATION /// +//////////////////////////////////// +//Ignore type 65536, we don't want Vehicle Weapons. +private _allWeaponConfigs = " + getNumber (_x >> 'scope') == 2 + && + getNumber (_x >> 'type') != 65536 +" configClasses (configFile >> "CfgWeapons"); + +//Ignore anything with type 0. They're generally vehicle magazines. +//Type 16 is generally throwables, type 256 or above normal magazines. +private _allMagazineConfigs = " + getNumber (_x >> 'scope') == 2 + && + getNumber (_x >> 'type') > 0 +" configClasses (configFile >> "CfgMagazines"); + +private _allBackpackConfigs = " + getNumber ( _x >> 'scope' ) isEqualTo 2 + && + { getText ( _x >> 'vehicleClass' ) isEqualTo 'Backpacks' } +" configClasses ( configFile >> "CfgVehicles" ); + +private _allStaticWeaponConfigs = " + getNumber ( _x >> 'scope' ) isEqualTo 2 + && + { getText ( _x >> 'vehicleClass' ) isEqualTo 'StaticWeapon' } +" configClasses ( configFile >> "CfgVehicles" ); + +private _allGlassesConfigs = " + ( getNumber ( _x >> 'scope' ) isEqualTo 2 ) +" configClasses ( configFile >> "CfgGlasses" ); + +private _allConfigs = _allWeaponConfigs + _allMagazineConfigs + _allBackpackConfigs + _allStaticWeaponConfigs + _allGlassesConfigs; + +//////////////////////////////////////////////////// +// Filter out content from disabled mods. /// +//////////////////////////////////////////////////// +_allConfigs = _allConfigs select {!(_x call A3A_fnc_getModOfConfigClass in disabledMods)}; + +////////////////////////////// +// Sorting Function /// +////////////////////////////// +private _nameX = ""; +{ + _nameX = configName _x; + if (isClass (configFile >> "CfgWeapons" >> _nameX)) then + { + _nameX = [_nameX] call BIS_fnc_baseWeapon; + }; + + private _item = [_nameX] call A3A_fnc_itemType; + private _itemType = _item select 1; + + if !([_x, _item] call _filter) then + { + private _categories = _nameX call A3A_fnc_equipmentClassToCategories; + { + //We're not returning a default value with getVariable, becuase it *must* be instantiated before now. If it isn't, we *need* it to error. + private _categoryName = _x; + (missionNamespace getVariable ("all" + _categoryName)) pushBackUnique _nameX; + } forEach _categories; + }; + +} forEach _allConfigs; diff --git a/A3-Antistasi/functions/Ammunition/fn_crateLootParams.sqf b/A3-Antistasi/functions/Ammunition/fn_crateLootParams.sqf new file mode 100644 index 0000000000..31ab2f871e --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_crateLootParams.sqf @@ -0,0 +1,49 @@ +//Author: PoweredByPot +//This script uses the given parameters to create public variables that +//Loot crates use to determing range of item types and quantity for each +//category of items that crates spawn. + +bobChaosCrates = "truelyRandomCrates" call BIS_fnc_getParamValue == 1; publicVariable "bobChaosCrates"; + +cratePlayerScaling = "cratePlayerScaling" call BIS_fnc_getParamValue == 1; publicVariable "cratePlayerScaling"; + +//do weapons automatically unlock primary magazine when unlocked? +unlockedUnlimitedAmmo = "unlockedUnlimitedAmmo" call BIS_fnc_getParamValue; publicVariable "unlockedUnlimitedAmmo"; +allowUnlockedExplosives = "allowUnlockedExplosives" call BIS_fnc_getParamValue; publicVariable "allowUnlockedExplosives"; +allowGuidedLaunchers = "allowGuidedLaunchers" call BIS_fnc_getParamValue; publicVariable "allowGuidedLaunchers"; + +//Weapons +crateWepTypeMax = "crateWepTypeMax" call BIS_fnc_getParamValue; publicVariable "crateWepTypeMax"; +crateWepNumMax = "crateWepNumMax" call BIS_fnc_getParamValue; publicVariable "crateWepNumMax"; + +//Items +crateItemTypeMax = "crateItemTypeMax" call BIS_fnc_getParamValue; publicVariable "crateItemTypeMax"; +crateItemNumMax = "crateItemNumMax" call BIS_fnc_getParamValue; publicVariable "crateItemNumMax"; + +//Ammo +crateAmmoTypeMax = "crateAmmoTypeMax" call BIS_fnc_getParamValue; publicVariable "crateAmmoTypeMax"; +crateAmmoNumMax = "crateAmmoNumMax" call BIS_fnc_getParamValue; publicVariable "crateAmmoNumMax"; + +//Exlposives +crateExplosiveTypeMax = "crateExplosiveTypeMax" call BIS_fnc_getParamValue; publicVariable "crateExplosiveTypeMax"; +crateExplosiveNumMax = "crateExplosiveNumMax" call BIS_fnc_getParamValue; publicVariable "crateExplosiveNumMax"; + +//Attachments +crateAttachmentTypeMax = "crateAttachmentTypeMax" call BIS_fnc_getParamValue; publicVariable "crateAttachmentTypeMax"; +crateAttachmentNumMax = "crateAttachmentNumMax" call BIS_fnc_getParamValue; publicVariable "crateAttachmentNumMax"; + +//Backpacks +crateBackpackTypeMax = "crateBackpackTypeMax" call BIS_fnc_getParamValue; publicVariable "crateBackpackTypeMax"; +crateBackpackNumMax = "crateBackpackNumMax" call BIS_fnc_getParamValue; publicVariable "crateBackpackNumMax"; + +//Vests +crateVestTypeMax = "crateVestTypeMax" call BIS_fnc_getParamValue; publicVariable "crateVestTypeMax"; +crateVestNumMax = "crateVestNumMax" call BIS_fnc_getParamValue; publicVariable "crateVestNumMax"; + +//Helmets +crateHelmetTypeMax = "crateHelmetTypeMax" call BIS_fnc_getParamValue; publicVariable "crateHelmetTypeMax"; +crateHelmetNumMax = "crateHelmetNumMax" call BIS_fnc_getParamValue; publicVariable "crateHelmetNumMax"; + +//Device Bags +crateDeviceTypeMax = "crateDeviceTypeMax" call BIS_fnc_getParamValue; publicVariable "crateDeviceTypeMax"; +crateDeviceNumMax = "crateDeviceNumMax" call BIS_fnc_getParamValue; publicVariable "crateDeviceNumMax"; diff --git a/A3-Antistasi/Ammunition/dress.sqf b/A3-Antistasi/functions/Ammunition/fn_dress.sqf similarity index 66% rename from A3-Antistasi/Ammunition/dress.sqf rename to A3-Antistasi/functions/Ammunition/fn_dress.sqf index deec767236..59fb1712f3 100644 --- a/A3-Antistasi/Ammunition/dress.sqf +++ b/A3-Antistasi/functions/Ammunition/fn_dress.sqf @@ -3,8 +3,7 @@ private _loadoutOverride = param [1]; private _team = side group _unit; private _unitLoadoutNumber = if (!isNil "_loadoutOverride") then {_loadoutOverride} else {_unit getVariable ["pvpPlayerUnitNumber", 0]}; -_loadout = switch _team do -{ +_loadout = switch _team do { case Occupants: { if (count NATOPlayerLoadouts > _unitLoadoutNumber) then {NATOPlayerLoadouts select _unitLoadoutNumber} else { [] }; }; @@ -14,7 +13,11 @@ _loadout = switch _team do }; case teamPlayer: { - teamPlayerDefaultLoadout; + if (toLower worldName isEqualTo "enoch") then { + [[],[],[],[(selectRandom allRebelUniforms), []],[],[],"H_Hat_Tinfoil_F","",[],["ItemMap","","","","",""]]; + } else { + [[],[],[],[(selectRandom allRebelUniforms), []],[],[],(selectRandom allCivilianHeadgear),"",[],["ItemMap","","","","",""]]; + }; }; default { diff --git a/A3-Antistasi/Ammunition/empty.sqf b/A3-Antistasi/functions/Ammunition/fn_empty.sqf similarity index 100% rename from A3-Antistasi/Ammunition/empty.sqf rename to A3-Antistasi/functions/Ammunition/fn_empty.sqf diff --git a/A3-Antistasi/functions/Ammunition/fn_equipmentClassToCategories.sqf b/A3-Antistasi/functions/Ammunition/fn_equipmentClassToCategories.sqf new file mode 100644 index 0000000000..166f404097 --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_equipmentClassToCategories.sqf @@ -0,0 +1,141 @@ +/** + Maps the class name of an item to the variable name of the category it belongs in. + + Params: + _className - Class of the equipment to unlock. + + Returns: + Array of appropriate categories, selected from allCategories. +**/ + +params ["_className"]; + +private _itemType = [_className] call A3A_fnc_itemType; + +private _baseCategory = switch (_itemType select 1) do + { + case "AssaultRifle": {"Rifles"}; + case "BombLauncher": {""}; //Only for vehicles //allBombLaunchers pushBack _nameX}; + case "GrenadeLauncher": {""}; //Only for vehicles //allGrenadeLaunchers pushBack _nameX}; + case "Handgun": {"Handguns"}; + case "Launcher": {""}; //Unused + case "MachineGun": {"MachineGuns"}; + case "MissileLauncher": {"MissileLaunchers"}; + case "Mortar": {"Mortars"}; + case "RocketLauncher": {"RocketLaunchers"}; + case "Shotgun": {"Shotguns"}; + case "Throw": {""}; //Unused + case "Rifle": {"Rifles"}; + case "SubmachineGun": {"SMGs"}; + case "SniperRifle": {"SniperRifles"}; + + case "Magazine": {"Magazines"}; + + case "AccessoryBipod": {"Bipods"}; + case "AccessoryMuzzle": {"MuzzleAttachments"}; + case "AccessoryPointer": {"PointerAttachments"}; + case "AccessorySights": {"Optics"}; + case "Binocular": {"Binoculars"}; + case "Compass": {"Compasses"}; + case "FirstAidKit": {"FirstAidKits"}; + case "GPS": {"GPS"}; + case "LaserDesignator": {"LaserDesignators"}; + case "Map": {"Maps"}; + case "Medikit": {"Medikits"}; + case "MineDetector": {"MineDetectors"}; + case "NVGoggles": {"NVGs"}; + case "Radio": {"Radios"}; + case "Toolkit": {"Toolkits"}; + case "UAVTerminal": {"UAVTerminals"}; + case "Unknown": {"Unknown"}; + case "UnknownEquipment": {"Unknown"}; + case "UnknownWeapon": {"Unknown"}; + case "Watch": {"Watches"}; + + case "Glasses": {"Glasses"}; + case "Headgear": {"Headgear"}; + case "Vest": {"Vests"}; + case "Uniform": {"Uniforms"}; + case "Backpack": {"Backpacks"}; + + case "Artillery": {"MagArtillery"}; + case "Bullet": {"MagBullet"}; + case "Flare": {"MagFlare"}; + case "Grenade": {"Grenades"}; + case "Laser": {"MagLaser"}; + case "Missile": {"MagMissile"}; + case "Rocket": {"MagRocket"}; + case "Shell": {"MagShell"}; + case "ShotgunShell": {"MagShotgun"}; + case "SmokeShell": {"MagSmokeShell"}; + case "UnknownMagazine": {"Unknown"}; + + case "Mine": {"Mine"}; + case "MineBounding": {"MineBounding"}; + case "MineDirectional": {"MineDirectional"}; + + default {"Unknown"}; + }; + +private _categories = []; + +if (_baseCategory != "") then { _categories pushBack _baseCategory}; + +private _aggregateCategory = switch (_itemType select 0) do { + case "Weapon": {"Weapons"}; + case "Item"; + case "Equipment": {"Items"}; + case "Magazine": {"Magazines"}; + case "Mine": {"Explosives"}; + default {""}; +}; + +if (_aggregateCategory != "") then { + _categories pushBack _aggregateCategory; +}; + +//Every explosive is a magazine. +if (_aggregateCategory == "Explosives") then { + _categories pushBack "Magazines"; +}; + +if (_baseCategory == "RocketLaunchers") then { + _categories pushBack "AT"; +}; + +if (_baseCategory == "MissileLaunchers") then { + private _launcherInfo = [_className] call A3A_fnc_launcherInfo; + + //If we can lock air, it's AA. + if (_launcherInfo select 1) then { + _categories pushBack "AA"; + }; + + //If we can lock ground, or can't lock either air or ground, it's AT. + if (_launcherInfo select 0 || !(_launcherInfo select 0 || _launcherInfo select 1)) then { + _categories pushBack "AT"; + }; +}; + +if (_baseCategory == "Rifles") then { + private _config = configfile >> "CfgWeapons" >> _className; + private _muzzles = getArray (_config >> "muzzles"); + // workaround for RHS having an extra muzzle for "SAFE" + if (count _muzzles >= 2 && {"gl" == getText (_config >> (_muzzles select 1) >> "cursorAim")}) then { + _categories pushBack "GrenadeLaunchers"; + }; +}; + +if (_basecategory == "Vests") then { + if (getNumber (configfile >> "CfgWeapons" >> _className >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Chest" >> "armor") > 5) then { + _categories pushBack "ArmoredVests"; + }; +}; + +if (_basecategory == "Headgear") then { + if (getNumber (configfile >> "CfgWeapons" >> _className >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") > 0) then { + _categories pushBack "ArmoredHeadgear"; + }; +}; + +_categories; \ No newline at end of file diff --git a/A3-Antistasi/functions/Ammunition/fn_equipmentIsValidForCurrentModset.sqf b/A3-Antistasi/functions/Ammunition/fn_equipmentIsValidForCurrentModset.sqf new file mode 100644 index 0000000000..a743f12d95 --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_equipmentIsValidForCurrentModset.sqf @@ -0,0 +1,100 @@ +params ["_configClass", "_categories"]; + +private _remove = false; + +private _itemMod = (_configClass call A3A_fnc_getModOfConfigClass); +private _itemIsVanilla = [_itemMod] call A3A_fnc_isModNameVanilla; + +//Mod is disabled, remove item. +if (_itemMod in disabledMods) exitWith { + true; +}; + +//We remove anything without a picture, because it's a surprisingly good indicator if whether something +//is actually a valid item or not. +//Despite all the filtering, we still get a few RHS guns, etc that are for APCs, but are still classed the item type as normal weapons. +//This is a pretty hard filter that removes anything that shouldn't be in there - I'm hoping it isn't prone to false positives! +if (getText (_configClass >> "picture") == "") exitWith { + true; +}; + +//Remove vanilla items if no vanilla sides (IFA handled seperately) +if (_itemIsVanilla && {has3CB || {activeAFRF && activeGREF && activeUSAF}}) then { + switch (_categories select 0) do { + case "Item": { + switch (_categories select 1) do { + case "AccessoryMuzzle"; + case "AccessoryPointer"; + case "AccessorySights"; + case "AccessoryBipod"; + case "NVGoggles": { + _remove = true; + }; + }; + }; + case "Weapon": { + _remove = true; + }; + case "Equipment": { + switch (_categories select 1) do { + case "Headgear": { + if (getNumber (_configClass >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") > 0) then { + _remove = true; + }; + }; + case "Uniform": { + if (has3CB) then { + _remove = true; + }; + }; + case "Vest": { + if (getNumber (_configClass >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Chest" >> "armor") > 5) then { + _remove = true; + }; + }; + }; + }; + }; +}; + +//IFA is stricter, remove all modern day stuff unless necessary (some ACE items) +//Avoid listing all of the mods here. +if (hasIFA && !_remove && {(_itemIsVanilla || _itemMod == "@ace" || _itemMod == "@task_force_radio")}) then { + switch (_categories select 0) do { + case "Item": { + switch (_categories select 1) do { + case "AccessoryMuzzle"; + case "AccessoryPointer"; + case "AccessorySights"; + case "AccessoryBipod"; + case "Binocular"; + case "Compass"; + case "GPS"; + case "LaserDesignator"; + case "MineDetector"; + case "NVGoggles"; + case "Radio"; + case "UAVTerminal"; + case "Unknown"; + case "Watch": { + _remove = true; + }; + }; + }; + case "Weapon": { + _remove = true; + }; + case "Equipment": { + _remove = true; + }; + case "Magazine": { + _remove = true; + }; + case "Mine": { + _remove = true; + }; + }; + +}; + +_remove; \ No newline at end of file diff --git a/A3-Antistasi/functions/Ammunition/fn_equipmentSort.sqf b/A3-Antistasi/functions/Ammunition/fn_equipmentSort.sqf new file mode 100644 index 0000000000..13483682a3 --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_equipmentSort.sqf @@ -0,0 +1,120 @@ +//////////////////////////////////// +// Uniforms Sorting /// +//////////////////////////////////// +{ + private _originUnit = getText (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "uniformClass"); + private _uniformSide = getNumber (configfile >> "CfgVehicles" >> _originUnit >> "side"); + switch (_uniformSide) do { + case 3: {allCivilianUniforms pushBack _x}; + }; +} forEach allUniforms; + +{ + private _originUnit = getText (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "uniformClass"); + private _uniformFaction = getText (configfile >> "CfgVehicles" >> _originUnit >> "faction"); + switch (_uniformFaction) do { + //RHS + case "rhsgref_faction_nationalist": {if ((!has3CB) and nameTeamPlayer isEqualTo "NAPA") then {allRebelUniforms pushBack _x};}; + case "rhsgref_faction_cdf_ng_b": {if ((!has3CB) and teamPlayer isEqualTo west) then {allRebelUniforms pushBack _x};}; + //3CB + //case "IND_F": {if ((has3CB) and nameTeamPlayer isEqualTo "TTF") then {allRebelUniforms pushBack _x};}; + //IFA + case "LIB_GUER": {if (hasIFA) then {allRebelUniforms pushBack _x};}; + //Vanilla + case "IND_C_F"; + //BLUFOR used because O/I Gueriilla uniforms 'scope' = 1 + case "BLU_G_F": {allRebelUniforms pushBack _x}; + }; +} forEach allUniforms; + +allCivilianUniforms deleteAt (allCivilianUniforms find "U_C_Protagonist_VR"); +allCivilianUniforms deleteAt (allCivilianUniforms find "U_LIB_CIV_Priest"); +allCivilianUniforms deleteAt (allCivilianUniforms find "U_C_PriestBody"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_B_U_PRIEST_03"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_B_U_PRIEST_02"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_B_U_PRIEST_01"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_C_U_PRIEST_03"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_C_U_PRIEST_02"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_C_U_PRIEST_01"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_I_U_PRIEST_03"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_I_U_PRIEST_02"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_I_U_PRIEST_01"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_O_U_PRIEST_03"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_O_U_PRIEST_02"); +allCivilianUniforms deleteAt (allCivilianUniforms find "UK3CB_CHC_O_U_PRIEST_01"); +allRebelUniforms deleteAt (allRebelUniforms find "U_I_G_Story_Protagonist_F"); +allRebelUniforms deleteAt (allRebelUniforms find "U_I_G_resistanceLeader_F"); +allRebelUniforms deleteAt (allRebelUniforms find "UK3CB_CW_US_B_LATE_U_SF_CombatUniform_01_BLK"); +allRebelUniforms deleteAt (allRebelUniforms find "UK3CB_CW_US_B_LATE_U_SF_CombatUniform_02_BLK"); + +//////////////////////////////////// +// Backpacks Sorting /// +//////////////////////////////////// +{ + private _itemFaction = getText (configfile >> "CfgVehicles" >> _x >> "faction"); + switch (_itemFaction) do { + case "Default": {allBackpacksEmpty pushBack _x}; + default {allBackpacksTool pushBack _x}; + }; +} forEach allBackpacks; + +allBackpacksEmpty deleteAt (allBackpacksEmpty find "B_AssaultPack_Kerry"); + +{ + switch (true) do { + case ((getText (configfile >> "CfgVehicles" >> _x >> "assembleInfo" >> "assembleTo")) != ""): { + if !((getArray (configfile >> "CfgVehicles" >> _x >> "assembleInfo" >> "base")) isEqualTo []) then { + allBackpacksStatic pushBack _x; + } + else { + allBackpacksDevice pushback _x; + }; + }; + case ((getText (configfile >> "CfgVehicles" >> _x >> "assembleInfo" >> "assembleTo")) == ""): { + if ((getText (configfile >> "CfgVehicles" >> _x >> "assembleInfo" >> "base")) == "") then { + allBackpacksStatic pushBack _x; + }; + }; + }; +} forEach allBackpacksTool; + +{ + private _faction = getText (configfile >> "CfgVehicles" >> _x >> "faction"); + private _side = getNumber (configfile >> "CfgFactionClasses" >> _faction >> "side"); + switch (_side) do { + case 0: {invaderBackpackDevice pushBack _x}; + case 1: {occupantBackpackDevice pushBack _x}; + case 2: {rebelBackpackDevice pushBack _x}; + case 3: {civilianBackpackDevice pushBack _x}; + }; +} forEach allBackpacksDevice; + +//////////////////////////////////// +// ARMORED VESTS LIST /// +//////////////////////////////////// +//WHY is there no clean list? +//allArmoredVests = allVests select {getNumber (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Chest" >> "armor") > 5}; +allCivilianVests = allVests - allArmoredVests; + +allCivilianVests deleteAt (allCivilianVests find "V_RebreatherB"); +allCivilianVests deleteAt (allCivilianVests find "V_RebreatherIR"); +allCivilianVests deleteAt (allCivilianVests find "V_RebreatherIA"); + +//////////////////////////////////// +// ARMORED HELMETS LIST /// +//////////////////////////////////// +//WHY is there no clean list? +//allArmoredHeadgear = allHeadgear select {getNumber (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") > 0}; +allCivilianHeadgear = allHeadgear - allArmoredHeadgear; + +////////////////// +// Glasses /// +////////////////// +allCivilianGlasses append allGlasses; + +allCivilianGlasses deleteAt (allCivilianGlasses find "None"); +allCivilianGlasses deleteAt (allCivilianGlasses find "G_Goggles_VR"); +allCivilianGlasses deleteAt (allCivilianGlasses find "G_I_Diving"); +allCivilianGlasses deleteAt (allCivilianGlasses find "G_O_Diving"); +allCivilianGlasses deleteAt (allCivilianGlasses find "G_B_Diving"); +allCivilianGlasses deleteAt (allCivilianGlasses find "LIB_Glasses"); diff --git a/A3-Antistasi/Ammunition/getRadio.sqf b/A3-Antistasi/functions/Ammunition/fn_getRadio.sqf similarity index 100% rename from A3-Antistasi/Ammunition/getRadio.sqf rename to A3-Antistasi/functions/Ammunition/fn_getRadio.sqf diff --git a/A3-Antistasi/functions/Ammunition/fn_itemSort.sqf b/A3-Antistasi/functions/Ammunition/fn_itemSort.sqf new file mode 100644 index 0000000000..beaeba7748 --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_itemSort.sqf @@ -0,0 +1,73 @@ +diveGear append ["V_RebreatherIA","G_Diving"]; +if (side (group petros) == west) then { + diveGear pushBack "U_B_Wetsuit" +} else { + diveGear pushBack "U_I_Wetsuit" +}; + +//Lights Vs Laser ID +{ +if (isClass(configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "FlashLight" >> "Attenuation")) then + { + allLightAttachments pushBack _x; + } + else + { + allLaserAttachments pushBack _x; + }; +} forEach allPointerAttachments; + +//Signal Mags ID +{ +if (getText(configfile >> "CfgMagazines" >> _x >> "nameSound") isEqualTo "Chemlight") then + { + allChemlights pushback _x; + }; +if (getText(configfile >> "CfgMagazines" >> _x >> "nameSound") isEqualTo "smokeshell") then + { + allSmokeGrenades pushback _x; + }; +if (getText(configfile >> "CfgMagazines" >> _x >> "nameSound") isEqualTo "") then + { + allLaunchedSmokeGrenades pushback _x; + }; +} forEach allMagSmokeShell; + +//Flares ID +//PBP - NOT WORKING +private _uglMag = getArray (configfile >> "CfgMagazineWells" >> "UGL_40x36" >> "BI_Magazines"); +_uglMag append (getArray(configfile >> "CfgMagazineWells" >> "3UGL_40x36" >> "BI_Magazines")); +{ +if (_x in _uglMag) then + { + allLaunchedFlares pushBack _x; + } + else + { + allHandFlares pushBack _x; + }; +} forEach allMagFlare; + +//IR Grenades +{ +if (getText (configfile >> "CfgMagazines" >> _x >> "displayNameShort") isEqualTo "IR Grenade") then + { + allIRGrenades pushBack _x; + }; +} forEach allUnknown; +//Clean allUnknown of IR Grenades +{ +allUnknown deleteAt (allUnknown find _x); +} forEach allIRGrenades; + +//LaserDesignator Batteries +{ +if (getText (configfile >> "CfgMagazines" >> _x >> "displayName") isEqualTo "Designator Batteries") then + { + allLaserBatteries pushBack _x; + }; +} forEach allUnknown; +//Clean allUnknown of batteries +{ +allUnknown deleteAt (allUnknown find _x); +} forEach allLaserBatteries; diff --git a/A3-Antistasi/functions/Ammunition/fn_itemType.sqf b/A3-Antistasi/functions/Ammunition/fn_itemType.sqf new file mode 100644 index 0000000000..45552f2931 --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_itemType.sqf @@ -0,0 +1,75 @@ +/* + Get the type of the item. + + This is a modified version of ACE's item detection code. + Thanks ACE! + (https://github.com/acemod/ACE3, a good chunk of this code was authored by Alganthe and Dedmen) + + Inputs: + _item: Classname of item to categorise. + + Outputs + category as a string. +*/ + +// weapon types +#define TYPE_WEAPON_PRIMARY 1 +#define TYPE_WEAPON_HANDGUN 2 +#define TYPE_WEAPON_SECONDARY 4 +// magazine types +#define TYPE_MAGAZINE_HANDGUN_AND_GL 16 // mainly +#define TYPE_MAGAZINE_PRIMARY_AND_THROW 256 +#define TYPE_MAGAZINE_SECONDARY_AND_PUT 512 // mainly +// more types +#define TYPE_BINOCULAR_AND_NVG 4096 +#define TYPE_WEAPON_VEHICLE 65536 +#define TYPE_ITEM 131072 +// item types +#define TYPE_DEFAULT 0 +#define TYPE_MUZZLE 101 +#define TYPE_OPTICS 201 +#define TYPE_FLASHLIGHT 301 +#define TYPE_BIPOD 302 +#define TYPE_FIRST_AID_KIT 401 +#define TYPE_FINS 501 // not implemented +#define TYPE_BREATHING_BOMB 601 // not implemented +#define TYPE_NVG 602 +#define TYPE_GOGGLE 603 +#define TYPE_SCUBA 604 // not implemented +#define TYPE_HEADGEAR 605 +#define TYPE_FACTOR 607 +#define TYPE_RADIO 611 +#define TYPE_HMD 616 +#define TYPE_BINOCULAR 617 +#define TYPE_MEDIKIT 619 +#define TYPE_TOOLKIT 620 +#define TYPE_UAV_TERMINAL 621 +#define TYPE_VEST 701 +#define TYPE_UNIFORM 801 +#define TYPE_BACKPACK 901 + +params ["_item"]; + +//These were previously all used. Leave them in, in case we need to do more sophisticated matching in the future. +private _configCfgWeapons = configFile >> "CfgWeapons"; +private _weaponConfig = configFile >> "CfgWeapons" >> _item; +private _itemInfoConfig = _weaponConfig >> "ItemInfo"; +private _magazineConfig = configFile >> "CfgMagazines" >> _item; +private _itemType = switch true do { + case (isClass _weaponConfig): {getNumber (_weaponConfig >> "type")}; + case (isClass _magazineConfig): {getNumber (_magazineConfig >> "type")}; + default {-1}; +}; +private _itemInfoType = if (isClass _itemInfoConfig) then {(getNumber (_itemInfoConfig >> "type"))} else {-1}; +private _simulationType = getText (_weaponConfig >> "simulation"); + +//If it's a CBA Misc Item, claim it's unknown. +if (isClass _weaponConfig + && _itemInfoType in [TYPE_MUZZLE, TYPE_OPTICS, TYPE_FLASHLIGHT, TYPE_BIPOD] + && _item isKindOf ["CBA_MiscItem", (_configCfgWeapons)] + ) exitWith +{ + ["Item", "Unknown"]; +}; + +_item call BIS_fnc_itemType; \ No newline at end of file diff --git a/A3-Antistasi/functions/Ammunition/fn_launcherInfo.sqf b/A3-Antistasi/functions/Ammunition/fn_launcherInfo.sqf new file mode 100644 index 0000000000..6448ceda5b --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_launcherInfo.sqf @@ -0,0 +1,107 @@ +/** + Gets the targets (ground/air) a launcher can lock on to, as well as which magazines can lock which targets. + + Params: + launcherClassName: Class name of the launcher to test. DO NOT USE ON NON-LAUNCHERS. + disposable: Is the launcher disposable? This is for the recursive call. + + Returns: + [canLockGroundTargets, canLockAirTargets, unguidedMagazines, groundLockMagazines, airLockMagazines] - magazine arrays may overlap. No magazines are returned for disposables. + +**/ + +params ["_launcherClassName", ["_disposable", false]]; + +private _rawMagazines = getArray (configFile >> "CfgWeapons" >> _launcherClassName >> "magazines"); +private _magazineWells = getArray (configFile >> "CfgWeapons" >> _launcherClassName >> "magazineWell"); +{ + { + _rawMagazines pushBackUnique _x; + } forEach getArray (configFile >> "CfgMagazineWells" >> _x >> "BI_Magazines"); +} forEach _magazineWells; + +//Ace has since moved to the CBA system - leaving these in for legacy reasons, but they can be deleted in the future. (2020/01/02) +private _isACEDisposable = getText (configFile >> "CfgWeapons" >> _launcherClassName >> "ACE_UsedTube") != ""; +private _isACEUsedLauncher = getNumber (configFile >> "CfgWeapons" >> _launcherClassName >> "ACE_isUsedLauncher") == 1; +private _fakeLauncher = "CBA_FakeLauncherMagazine" in _rawMagazines; + +//If it's an ACE disposable, we only want to check the PreloadedMissileDummy. +if (_isACEDisposable) then { + _disposable = true; + _rawMagazines = ["ACE_PreloadedMissileDummy"]; +}; + +if (_isACEUsedLauncher) exitWith { + [false, false, [], [], []] +}; + +//If we have a fake CBA launcher, don't process further. +if (_fakeLauncher) exitWith { + //If disposable launchers is loaded, check if we're holding a disposable launcher, and find the actual class if so. + if (!isNil "cba_disposable_LoadedLaunchers") exitWith { + private _fireableLauncherName = cba_disposable_LoadedLaunchers getVariable [_launcherClassName, ""]; + if (_fireableLauncherName != "") exitWith { + [_fireableLauncherName, true] call A3A_fnc_launcherInfo; + }; + }; + [false, false, [], [], []]; +}; + +private _magazineAmmo = []; +{ + //Ignore fake magazines - unless we're an ACE disposable launcher + if (getNumber (configFile >> "CfgMagazines" >> _x >> "count") > 0 || _isACEDisposable) then { + _magazineAmmo pushBack [_x, getText (configFile >> "CfgMagazines" >> _x >> "ammo")]; + }; +} forEach _rawMagazines; + +private _targetAir = false; +private _targetGround = false; + +private _unguidedMagazines = []; +private _groundMagazines = []; +private _airMagazines = []; + +//Look at the individual ammo types, to figure out what we can lock onto. +{ + _x params ["_mag", "_ammoType"]; + if (_ammoType isKindOf "MissileCore") then { + private _ammoConfig = configFile >> "CfgAmmo" >> _ammoType; + //If have ACE and ACE Guidance is enabled, then it can target whatever it damn well likes. ACE isn't picky. + if(hasACE && {isClass (_ammoConfig >> "ace_missileguidance") && {getNumber (_ammoConfig >> "ace_missileguidance" >> "enabled") == 1}}) exitWith { + _targetGround = true; + _targetAir = true; + _groundMagazines pushBackUnique _mag; + _airMagazines pushBackUnique _mag; + }; + + private _airLock = getNumber (_ammoConfig >> "airLock"); + switch (_airLock) do { + case 0: { + _targetGround = true; + _groundMagazines pushBackUnique _mag; + }; + case 1: { + _targetGround = true; + _targetAir = true; + _groundMagazines pushBackUnique _mag; + _airMagazines pushBackUnique _mag; + }; + case 2: { + _targetAir = true; + _airMagazines pushBackUnique _mag; + }; + }; + } else { + _unguidedMagazines pushBackUnique _mag; + }; +} forEach _magazineAmmo; + +//If we're a disposable, we don't want to spawn ammo. Claim none of it exists. +if (_disposable) then { + _unguidedMagazines = []; + _groundMagazines = []; + _airMagazines = []; +}; + +[_targetGround, _targetAir, _unguidedMagazines, _groundMagazines, _airMagazines]; diff --git a/A3-Antistasi/functions/Ammunition/fn_loot.sqf b/A3-Antistasi/functions/Ammunition/fn_loot.sqf new file mode 100644 index 0000000000..10906eb1fe --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_loot.sqf @@ -0,0 +1,82 @@ +////////////////// +// Basic Items /// +////////////////// +lootBasicItem append allMaps + allToolkits + allWatches + allCompasses + allMedikits + allFirstAidKits; + +///////////////// +// NVG'S /// +///////////////// +lootNVG append allNVGs; + +///////////////////// +// Assigned Items /// +///////////////////// +lootItem append allUAVTerminals + allMineDetectors + allGPS + allRadios + allLaserDesignators + allBinoculars + allLaserBatteries + lootNVG; + +//////////////////// +// Weapons /// +//////////////////// +lootWeapon append allRifles + allSniperRifles + allHandguns + allMachineGuns + allMissileLaunchers + allRocketLaunchers + allSMGs + allShotguns; + +///////////////////////////// +// Weapon Attachments /// +///////////////////////////// +lootAttachment append allBipods + allOptics + allMuzzleAttachments + allPointerAttachments; + +//////////////////// +// Grenades /// +//////////////////// +lootGrenade append allGrenades + allMagShell + allIRGrenades + allMagSmokeShell + allMagFlare; + +//////////////////// +// Magazines /// +//////////////////// +lootMagazine append allMagBullet + allMagShotgun + allMagMissile + allMagRocket + lootGrenade; + +/////////////////// +// Explosives /// +/////////////////// +lootExplosive append allMine + allMineDirectional + allMineBounding; + +lootExplosive deleteAt (lootExplosive find "APERSMineDispenser_Mag"); +lootExplosive deleteAt (lootExplosive find "TrainingMine_Mag"); +lootExplosive deleteAt (lootExplosive find "IEDLandSmall_Remote_Mag"); +lootExplosive deleteAt (lootExplosive find "IEDUrbanSmall_Remote_Mag"); +lootExplosive deleteAt (lootExplosive find "IEDLandBig_Remote_Mag"); +lootExplosive deleteAt (lootExplosive find "IEDUrbanBig_Remote_Mag"); + +/////////////////// +// Backpacks /// +/////////////////// +lootBackpack append allBackpacksEmpty; + +///////////////// +// Helmets /// +///////////////// +lootHelmet append allArmoredHeadgear; + +/////////////// +// Vests /// +/////////////// +lootVest append allArmoredVests + allCivilianVests; + +///////////////////// +// Device Bags /// +///////////////////// +private _lootDeviceBag = []; + +switch (teamPlayer) do { + case independent: {_lootDeviceBag append rebelBackpackDevice}; + default {_lootDeviceBag append occupantBackpackDevice}; +}; +lootDevice append _lootDeviceBag; + +//////////////////////////////////// +// REBEL STARTING ITEMS /// +//////////////////////////////////// +//KEEP AT BOTTOM!!! +initialRebelEquipment append lootBasicItem; +initialRebelEquipment append allRebelUniforms; +initialRebelEquipment append allCivilianUniforms; +initialRebelEquipment append allCivilianHeadgear; +initialRebelEquipment append allCivilianGlasses; diff --git a/A3-Antistasi/functions/Ammunition/fn_randomRifle.sqf b/A3-Antistasi/functions/Ammunition/fn_randomRifle.sqf new file mode 100644 index 0000000000..9cbf71afc2 --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_randomRifle.sqf @@ -0,0 +1,35 @@ +private _unit = _this select 0; +private _pool = _this select 1; +if (_pool isEqualTo []) then { + if !(unlockedRifles isEqualTo []) then { + _pool = unlockedRifles; + } else { + if !(unlockedSMGs isEqualTo []) then { + _pool = unlockedSMGs; + }; + }; +}; +private _rifleFinal = selectRandom _pool; + +if !(primaryWeapon _unit isEqualTo "") then { + if (_rifleFinal == primaryWeapon _unit) exitWith {}; + private _magazines = getArray (configFile / "CfgWeapons" / (primaryWeapon _unit) / "magazines"); + {_unit removeMagazines _x} forEach _magazines; + _unit removeWeapon (primaryWeapon _unit); +}; + +if (_rifleFinal in unlockedGrenadeLaunchers) then { + // lookup real underbarrel GL magazine, because not everything is 40mm + private _config = configFile >> "CfgWeapons" >> _rifleFinal; + private _glmuzzle = getArray (_config >> "muzzles") select 1; // guaranteed by category + private _glmag = getArray (_config >> _glmuzzle >> "magazines") select 0; + _unit addMagazines [_glmag, 5]; +}; + +[_unit, _rifleFinal, 5, 0] call BIS_fnc_addWeapon; + +if (count unlockedOptics > 0) then { + private _compatibleX = [primaryWeapon _unit] call BIS_fnc_compatibleItems; + private _potentials = unlockedOptics select {_x in _compatibleX}; + if (count _potentials > 0) then {_unit addPrimaryWeaponItem (selectRandom _potentials)}; +}; \ No newline at end of file diff --git a/A3-Antistasi/Ammunition/transfer.sqf b/A3-Antistasi/functions/Ammunition/fn_transfer.sqf similarity index 94% rename from A3-Antistasi/Ammunition/transfer.sqf rename to A3-Antistasi/functions/Ammunition/fn_transfer.sqf index 15a439048b..34d7cad31b 100644 --- a/A3-Antistasi/Ammunition/transfer.sqf +++ b/A3-Antistasi/functions/Ammunition/fn_transfer.sqf @@ -27,13 +27,13 @@ if (count weaponsItemsCargo _truckX > 0) then for "_i" from 1 to (count _x) - 1 do { _thingX = _x select _i; - if (typeName _thingX == typeName "") then + if (_thingX isEqualType "") then { if (_thingX != "") then {_items pushBack _thingX}; } else { - if (typeName (_thingX select 0) == typeName []) then {_ammunition pushBack (_thingX select 0)}; + if ((_thingX select 0) isEqualType []) then {_ammunition pushBack (_thingX select 0)}; } }; } forEach weaponsItemsCargo _boxX; diff --git a/A3-Antistasi/functions/Ammunition/fn_unlockEquipment.sqf b/A3-Antistasi/functions/Ammunition/fn_unlockEquipment.sqf new file mode 100644 index 0000000000..abb9d352dd --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_unlockEquipment.sqf @@ -0,0 +1,31 @@ +/** + Unlocks the specified item of equipment for use in the arsenal. + + Updates the appropriate global arrays for quick reference. + You can also find unlockedRifles and other variables constructed here. - FrostsBite. + + Params: + _className - Class of the equipment to unlock. + + _dontAddToArsenal - Avoid adding the item to the arsenal, and simply updates the appropriate variables. DO NOT USE UNLESS YOU HAVE A *VERY* GOOD REASON. Primarily used in save/loads. + + Returns: + None +**/ + +params ["_className", ["_dontAddToArsenal", false]]; + +private _categories = _className call A3A_fnc_equipmentClassToCategories; + +if (!_dontAddToArsenal) then { + //Add the equipment to the arsenal. + private _arsenalTab = _className call jn_fnc_arsenal_itemType; + [_arsenalTab,_className,-1] call jn_fnc_arsenal_addItem; +}; + +{ + private _categoryName = _x; + //Consider making this pushBackUnique. + (missionNamespace getVariable ("unlocked" + _categoryName)) pushBack _className; + publicVariable ("unlocked" + _categoryName); +} forEach _categories; diff --git a/A3-Antistasi/functions/Ammunition/fn_vehicleSort.sqf b/A3-Antistasi/functions/Ammunition/fn_vehicleSort.sqf new file mode 100644 index 0000000000..4d0b0806b5 --- /dev/null +++ b/A3-Antistasi/functions/Ammunition/fn_vehicleSort.sqf @@ -0,0 +1,25 @@ +//////////////////////////////////// +// Static Weapons List /// +//////////////////////////////////// +{ +if (getText (configfile >> "CfgVehicles" >> _x >> "editorSubcategory") isEqualTo "EdSubcat_Turrets") then + { + private _staticSide = getNumber (configfile >> "CfgVehicles" >> _x >> "side"); + switch (_staticSide) do + { + case 0: {invaderStaticWeapon pushBack _x}; + case 1: {occupantStaticWeapon pushBack _x}; + case 2: {rebelStaticWeapon pushBack _x}; + }; + }; +} forEach allUnknown; + +//Clean allUnknown of Statics +{ +allUnknown deleteAt (allUnknown find _x); +} forEach invaderStaticWeapon + occupantStaticWeapon + rebelStaticWeapon; + +/////////////////////////////////// +// Civilian Vehicles /// +/////////////////////////////////// +arrayCivVeh deleteAt (arrayCivVeh find "C_Quadbike_01_F"); diff --git a/A3-Antistasi/Garage/defineCommon.inc b/A3-Antistasi/functions/Base/defineCommon.inc similarity index 100% rename from A3-Antistasi/Garage/defineCommon.inc rename to A3-Antistasi/functions/Base/defineCommon.inc diff --git a/A3-Antistasi/AILoadInfo.sqf b/A3-Antistasi/functions/Base/fn_AILoadInfo.sqf similarity index 100% rename from A3-Antistasi/AILoadInfo.sqf rename to A3-Antistasi/functions/Base/fn_AILoadInfo.sqf diff --git a/A3-Antistasi/FIAradio.sqf b/A3-Antistasi/functions/Base/fn_FIAradio.sqf similarity index 100% rename from A3-Antistasi/FIAradio.sqf rename to A3-Antistasi/functions/Base/fn_FIAradio.sqf diff --git a/A3-Antistasi/NATOFT.sqf b/A3-Antistasi/functions/Base/fn_NATOFT.sqf similarity index 100% rename from A3-Antistasi/NATOFT.sqf rename to A3-Antistasi/functions/Base/fn_NATOFT.sqf diff --git a/A3-Antistasi/functions/Base/fn_addActionBreachVehicle.sqf b/A3-Antistasi/functions/Base/fn_addActionBreachVehicle.sqf new file mode 100644 index 0000000000..fb6b22c5ac --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_addActionBreachVehicle.sqf @@ -0,0 +1,8 @@ +params ["_vehicle"]; + +_isAPC = (typeOf _vehicle) in vehAPCs; +_isTank = (typeOf _vehicle) in vehTanks; + +if (_isAPC || _isTank) exitWith { + [_vehicle, ["Breach Vehicle", A3A_fnc_startBreachVehicle,nil,4,false,true,"","(isPlayer _this) && (_this == vehicle _this)",5]] remoteExec ["addAction", 0, _vehicle]; +}; \ No newline at end of file diff --git a/A3-Antistasi/addHC.sqf b/A3-Antistasi/functions/Base/fn_addHC.sqf old mode 100755 new mode 100644 similarity index 100% rename from A3-Antistasi/addHC.sqf rename to A3-Antistasi/functions/Base/fn_addHC.sqf diff --git a/A3-Antistasi/addTimeForIdle.sqf b/A3-Antistasi/functions/Base/fn_addTimeForIdle.sqf similarity index 100% rename from A3-Antistasi/addTimeForIdle.sqf rename to A3-Antistasi/functions/Base/fn_addTimeForIdle.sqf diff --git a/A3-Antistasi/blackout.sqf b/A3-Antistasi/functions/Base/fn_blackout.sqf similarity index 100% rename from A3-Antistasi/blackout.sqf rename to A3-Antistasi/functions/Base/fn_blackout.sqf diff --git a/A3-Antistasi/buildHQ.sqf b/A3-Antistasi/functions/Base/fn_buildHQ.sqf similarity index 100% rename from A3-Antistasi/buildHQ.sqf rename to A3-Antistasi/functions/Base/fn_buildHQ.sqf diff --git a/A3-Antistasi/citiesToCivPatrol.sqf b/A3-Antistasi/functions/Base/fn_citiesToCivPatrol.sqf similarity index 100% rename from A3-Antistasi/citiesToCivPatrol.sqf rename to A3-Antistasi/functions/Base/fn_citiesToCivPatrol.sqf diff --git a/A3-Antistasi/citySupportChange.sqf b/A3-Antistasi/functions/Base/fn_citySupportChange.sqf old mode 100755 new mode 100644 similarity index 76% rename from A3-Antistasi/citySupportChange.sqf rename to A3-Antistasi/functions/Base/fn_citySupportChange.sqf index 932906b14a..6347fc0885 --- a/A3-Antistasi/citySupportChange.sqf +++ b/A3-Antistasi/functions/Base/fn_citySupportChange.sqf @@ -5,12 +5,13 @@ cityIsSupportChanging = true; _opfor = _this select 0; _blufor = _this select 1; _pos = _this select 2; -if (typeName _pos == typeName "") then {_city = _pos} else {_city = [citiesX, _pos] call BIS_fnc_nearestPosition}; +if (_pos isEqualType "") then {_city = _pos} else {_city = [citiesX, _pos] call BIS_fnc_nearestPosition}; _dataX = server getVariable _city; -if (!(_dataX isEqualType [])) exitWith { - cityIsSupportChanging = false; - diag_log format ["%1: [Antistasi] | ERROR | citySupportChange.sqf | Passed %2 as Position.",servertime, _pos]; - }; +if (isNil "_dataX" || {!(_dataX isEqualType [])}) exitWith +{ + cityIsSupportChanging = false; + diag_log format ["%1: [Antistasi] | ERROR | citySupportChange.sqf | Passed %2 as city, pos was %3.",servertime, _city, _pos]; +}; _numCiv = _dataX select 0; _numVeh = _dataX select 1; _prestigeOPFOR = _dataX select 2; @@ -37,4 +38,4 @@ _dataX = [_numCiv, _numVeh,_prestigeOPFOR,_prestigeBLUFOR]; server setVariable [_city,_dataX,true]; cityIsSupportChanging = false; -true \ No newline at end of file +true diff --git a/A3-Antistasi/commsMP.sqf b/A3-Antistasi/functions/Base/fn_commsMP.sqf similarity index 100% rename from A3-Antistasi/commsMP.sqf rename to A3-Antistasi/functions/Base/fn_commsMP.sqf diff --git a/A3-Antistasi/functions/Base/fn_createBreachChargeText.sqf b/A3-Antistasi/functions/Base/fn_createBreachChargeText.sqf new file mode 100644 index 0000000000..36fb3c433d --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_createBreachChargeText.sqf @@ -0,0 +1,18 @@ +#define LINE_BREAK "

" + +private _array = _this; +private _text = ""; + +for "_count" from 0 to ((count _array) - 1) do +{ + private _charge = _array select _count; + private _name = getText (configFile >> "CfgMagazines" >> (_charge select 0) >> "displayName"); + private _amount = _charge select 1; + _text = format ["%1%2%3x %4", _text, LINE_BREAK, _amount, _name]; + if(_count != ((count _array) - 1)) then + { + _text = format ["%1 OR", _text]; + }; +}; + +_text; diff --git a/A3-Antistasi/createControls.sqf b/A3-Antistasi/functions/Base/fn_createControls.sqf similarity index 96% rename from A3-Antistasi/createControls.sqf rename to A3-Antistasi/functions/Base/fn_createControls.sqf index f0e9220438..c3e4593757 100644 --- a/A3-Antistasi/createControls.sqf +++ b/A3-Antistasi/functions/Base/fn_createControls.sqf @@ -32,7 +32,7 @@ if (_posroad distance _pos > 400) then _mrk setMarkerSize [30,30]; _mrk setMarkerShape "RECTANGLE"; _mrk setMarkerBrush "SOLID"; - _mrk setMarkerColor colourTeamPlayer; + _mrk setMarkerColor colorTeamPlayer; _mrk setMarkerText _nameX; if (not debug) then {_mrk setMarkerAlpha 0}; if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then diff --git a/A3-Antistasi/createOutpostsFIA.sqf b/A3-Antistasi/functions/Base/fn_createOutpostsFIA.sqf similarity index 98% rename from A3-Antistasi/createOutpostsFIA.sqf rename to A3-Antistasi/functions/Base/fn_createOutpostsFIA.sqf index 6021e438d5..1dfec5e5f6 100644 --- a/A3-Antistasi/createOutpostsFIA.sqf +++ b/A3-Antistasi/functions/Base/fn_createOutpostsFIA.sqf @@ -68,7 +68,7 @@ if ({(alive _x) and (_x distance _positionTel < 10)} count units _groupX > 0) th //["outpostsFIA", "SUCCEEDED",true] spawn BIS_fnc_taskSetState; _nul = [-5,5,_positionTel] remoteExec ["A3A_fnc_citySupportChange",2]; _mrk setMarkerType "loc_bunker"; - _mrk setMarkerColor colourTeamPlayer; + _mrk setMarkerColor colorTeamPlayer; _mrk setMarkerText _textX; if (_isRoad) then { @@ -94,14 +94,3 @@ deleteGroup _groupX; sleep 15; _nul = [0,"outpostsFIA"] spawn A3A_fnc_deleteTask; - - - - - - - - - - - diff --git a/A3-Antistasi/createPetros.sqf b/A3-Antistasi/functions/Base/fn_createPetros.sqf similarity index 84% rename from A3-Antistasi/createPetros.sqf rename to A3-Antistasi/functions/Base/fn_createPetros.sqf index 4280dbbe0f..a120a1d6ae 100644 --- a/A3-Antistasi/createPetros.sqf +++ b/A3-Antistasi/functions/Base/fn_createPetros.sqf @@ -2,7 +2,7 @@ params [["_location", []]]; _oldPetros = if (isNil "petros") then {objNull} else {petros}; -groupPetros = if !(isNull _oldPetros && side group _oldPetros == teamPlayer) then {group _oldPetros} else {createGroup teamPlayer}; +groupPetros = if (! isNull _oldPetros && {side group _oldPetros == teamPlayer}) then {group _oldPetros} else {createGroup teamPlayer}; publicVariable "groupPetros"; private _position = if (count _location > 0) then { @@ -32,6 +32,6 @@ if (petros == leader groupPetros) then { [Petros,"buildHQ"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],petros] }; -[] execVM "initPetros.sqf"; +call A3A_fnc_initPetros; deleteVehicle _oldPetros; \ No newline at end of file diff --git a/A3-Antistasi/deleteControls.sqf b/A3-Antistasi/functions/Base/fn_deleteControls.sqf similarity index 100% rename from A3-Antistasi/deleteControls.sqf rename to A3-Antistasi/functions/Base/fn_deleteControls.sqf diff --git a/A3-Antistasi/destroyCity.sqf b/A3-Antistasi/functions/Base/fn_destroyCity.sqf similarity index 100% rename from A3-Antistasi/destroyCity.sqf rename to A3-Antistasi/functions/Base/fn_destroyCity.sqf diff --git a/A3-Antistasi/distances5.sqf b/A3-Antistasi/functions/Base/fn_distance.sqf similarity index 99% rename from A3-Antistasi/distances5.sqf rename to A3-Antistasi/functions/Base/fn_distance.sqf index ccf4ec0eac..9d0e0f84b5 100644 --- a/A3-Antistasi/distances5.sqf +++ b/A3-Antistasi/functions/Base/fn_distance.sqf @@ -75,7 +75,7 @@ if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then if (_markerX in citiesX) then { if (({if (_x distance2D _positionMRK < distanceSPWN) exitWith {1}} count _greenfor > 0) or ({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN2)) exitWith {1}} count _blufor > 0) or (_markerX in forcedSpawn)) then {[[_markerX],"A3A_fnc_createAICities"] call A3A_fnc_scheduler}; - if (not(_markerX in destroyedCities)) then + if (not(_markerX in destroyedSites)) then { if (({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN)) exitWith {1};false} count allUnits > 0) or (_markerX in forcedSpawn)) then {[[_markerX],"A3A_fnc_createCIV"] call A3A_fnc_scheduler}; }; @@ -142,7 +142,7 @@ else if (_markerX in citiesX) then { //[_markerX] remoteExec ["A3A_fnc_createAICities",HCGarrisons]; - if (not(_markerX in destroyedCities)) then + if (not(_markerX in destroyedSites)) then { if (({if ((isPlayer _x) and (_x distance2D _positionMRK < distanceSPWN)) exitWith {1};false} count allUnits > 0) or (_markerX in forcedSpawn)) then {[[_markerX],"A3A_fnc_createCIV"] call A3A_fnc_scheduler}; }; diff --git a/A3-Antistasi/functions/Base/fn_distanceUnits.sqf b/A3-Antistasi/functions/Base/fn_distanceUnits.sqf new file mode 100644 index 0000000000..a31c012990 --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_distanceUnits.sqf @@ -0,0 +1,40 @@ +//example: _result = [distanceSPWN,0,posHQ,Invaders] call A3A_fnc_distanceUnits: devuelve un array con todas las que estĆ©n a menos de distanceSPWN +//example: _result = [distanceSPWN,1,posHQ,teamPlayer] call A3A_fnc_distanceUnits: devuelve un boolean si hay una que estĆ© a menos de distanceSPWN +/** + Finds units capable of spawning in a given range belonging to a target side. + + Params: + _distanceX: number - The distance to search in. + _modeX: 0 or 1 - Whether an array of units should be returned, or a boolean if a unit belonging to that side is in range. + _center: Position or Object - The center to search around. + _targetSide: Side - Search for units belonging to this side + + Returns: + Array of units found in range, or a boolean if a unit was found (depending on mode) +**/ + +params ["_distanceX","_modeX","_center","_targetSide"]; + +private _result = false; + +//All units capable of triggering a marker to spawn. +private _allUnits = allUnits select {_x getVariable ["spawner",false]}; +if (_modeX == 0) then + { + _result = []; + { + if (side group _x == _targetSide) then + { + if (_x distance2D _center < _distanceX) then + { + _result pushBack _x; + }; + }; + } forEach _allUnits; + } +else + { + {if ((side group _x == _targetSide) and (_x distance2D _center < _distanceX)) exitWith {_result = true}} count _allUnits; + }; + +_result diff --git a/A3-Antistasi/functions/Base/fn_economicsAI.sqf b/A3-Antistasi/functions/Base/fn_economicsAI.sqf new file mode 100644 index 0000000000..0b284124dd --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_economicsAI.sqf @@ -0,0 +1,67 @@ +//Original Author: Barbolani +//Edited and updated by the Antstasi Community Development Team + +_fnc_economics = { + params ["_coefficient", "_random", "_typeX", "_maxItems", "_accelerator"]; + private ["_currentItems"]; + + if (_typeX isEqualType "") then { + _typeX = [_typeX]; + }; + + if (_typeX isEqualTo []) exitWith {}; + + if (_random == "random") then { + private _selectedType = selectRandom _typeX; + _currentItems = timer getVariable [_selectedType, 0]; + if (_currentItems < _maxItems) then { + timer setVariable [_selectedType, _currentItems + _coefficient * _accelerator, true]; + }; + } else { + _currentItems = 0; + { + _currentItems = _currentItems + (timer getVariable [_x, 0]); + } forEach _typeX; + if (_currentItems < _maxItems) then { + timer setVariable [selectRandom _typeX, _currentItems + _coefficient * _accelerator, true]; + }; + }; +}; + +//--------------------------------------Occupants-------------------------------------------------- +private _airbases = { sidesX getVariable [_x, sideUnknown] == Occupants } count airportsX; +private _outposts = { sidesX getVariable [_x, sideUnknown] == Occupants } count outposts; +private _seaports = { sidesX getVariable [_x, sideUnknown] == Occupants } count seaports; +private _accelerator = [1 + (tierWar + difficultyCoef) / 20, 0] select (tierWar == 1); + +[0.2, "", staticATOccupants, _outposts * 0.2 + _airbases * 0.5, _accelerator] spawn _fnc_economics; +[0.1, "", staticAAOccupants, _airbases * 2, _accelerator] spawn _fnc_economics; +[0.2, "random", vehNATOAPC, _outposts * 0.3 + _airbases * 2, _accelerator] spawn _fnc_economics; +[0.1, "", vehNATOTank, _outposts * 0.5 + _airbases * 2, _accelerator] spawn _fnc_economics; +[0.1, "", vehNATOAA, _airbases, _accelerator] spawn _fnc_economics; +[0.3, "", vehNATOBoat, _seaports, _accelerator] spawn _fnc_economics; +[0.2, "", vehNATOPlane, _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "", vehNATOPlaneAA, _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "random", vehNATOTransportPlanes, _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "random", vehNATOTransportHelis - [vehNATOPatrolHeli], _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "random", vehNATOAttackHelis, _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "", vehNATOMRLS, _airbases + _outposts * 0.2, _accelerator] spawn _fnc_economics; + +//--------------------------------------Invaders--------------------------------------------------- +_airbases = { sidesX getVariable [_x, sideUnknown] == Invaders } count airportsX; +_outposts = { sidesX getVariable [_x, sideUnknown] == Invaders } count outposts; +_seaports = { sidesX getVariable [_x, sideUnknown] == Invaders } count seaports; +_accelerator = 1.2 + (tierWar + difficultyCoef) / 20; + +[0.2, "", staticATInvaders, _outposts * 0.2 + _airbases * 0.5, _accelerator] spawn _fnc_economics; +[0.1, "", staticAAInvaders, _airbases * 2, _accelerator] spawn _fnc_economics; +[0.2, "random", vehCSATAPC, _outposts * 0.3 + _airbases * 2, _accelerator] spawn _fnc_economics; +[0.1, "", vehCSATTank, _outposts * 0.5 + _airbases * 2, _accelerator] spawn _fnc_economics; +[0.1, "", vehCSATAA, _airbases, _accelerator] spawn _fnc_economics; +[0.3, "", vehCSATBoat, _seaports, _accelerator] spawn _fnc_economics; +[0.2, "", vehCSATPlane, _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "", vehCSATPlaneAA, _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "random", vehCSATTransportPlanes, _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "random", vehCSATTransportHelis - [vehCSATPatrolHeli], _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "random", vehCSATAttackHelis, _airbases * 4, _accelerator] spawn _fnc_economics; +[0.2, "", vehCSATMRLS, _airbases + _outposts * 0.2, _accelerator] spawn _fnc_economics; diff --git a/A3-Antistasi/ejectPvPPlayerIfInvalidVehicle.sqf b/A3-Antistasi/functions/Base/fn_ejectPvPPlayerIfInvalidVehicle.sqf similarity index 100% rename from A3-Antistasi/ejectPvPPlayerIfInvalidVehicle.sqf rename to A3-Antistasi/functions/Base/fn_ejectPvPPlayerIfInvalidVehicle.sqf diff --git a/A3-Antistasi/findBasesForConvoy.sqf b/A3-Antistasi/functions/Base/fn_findBasesForConvoy.sqf similarity index 78% rename from A3-Antistasi/findBasesForConvoy.sqf rename to A3-Antistasi/functions/Base/fn_findBasesForConvoy.sqf index 2c1dcf4410..06c7a094e5 100644 --- a/A3-Antistasi/findBasesForConvoy.sqf +++ b/A3-Antistasi/functions/Base/fn_findBasesForConvoy.sqf @@ -9,9 +9,12 @@ if (_markerX in citiesX) then {_airportsAAF = _airportsAAF select {sidesX getVar _airportsX = []; _base = ""; { -_base = _x; -_posbase = getMarkerPos _base; -if ((_pos distance _posbase < distanceForLandAttack) and (({_x == _markerX} count (killZones getVariable [_base,[]])) < 3)) then {_airportsX pushBack _base} + _base = _x; + _posbase = getMarkerPos _base; + if ((_pos distance _posbase < distanceForLandAttack) and (({_x == _markerX} count (killZones getVariable [_base,[]])) < 3)) then + { + _airportsX pushBack _base + }; } forEach _airportsAAF; if (count _airportsX > 0) then {_base = [_airportsX,_pos] call BIS_fnc_nearestPosition} else {_base = ""}; -_base \ No newline at end of file +_base diff --git a/A3-Antistasi/findNearestGoodRoad.sqf b/A3-Antistasi/functions/Base/fn_findNearestGoodRoad.sqf similarity index 100% rename from A3-Antistasi/findNearestGoodRoad.sqf rename to A3-Antistasi/functions/Base/fn_findNearestGoodRoad.sqf diff --git a/A3-Antistasi/functions/Base/fn_flagaction.sqf b/A3-Antistasi/functions/Base/fn_flagaction.sqf new file mode 100644 index 0000000000..644ce270b1 --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_flagaction.sqf @@ -0,0 +1,125 @@ +#include "..\Garage\defineGarage.inc" + +private ["_flag","_typeX"]; + +if (!hasInterface) exitWith {}; + +_flag = _this select 0; +_typeX = _this select 1; + +switch _typeX do + { + case "take": + { + removeAllActions _flag; + _actionX = _flag addAction ["Take the Flag ", A3A_fnc_mrkWIN,nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; + _flag setUserActionText [_actionX,"Take the Flag",""]; + }; + case "unit": {_flag addAction ["Unit Recruitment", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot recruit units while there are enemies near you"} else { [] spawn A3A_fnc_unit_recruit; };},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; + case "vehicle": {_flag addAction ["Buy Vehicle", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot buy vehicles while there are enemies near you"} else {createDialog "vehicle_option"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; + case "mission": { + petros addAction ["Mission Request", {CreateDialog "mission_menu";},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and ([_this] call A3A_fnc_isMember) and (petros == leader group petros)",4]; + petros addAction ["HQ Management", A3A_fnc_dialogHQ,nil,0,false,true,"","(_this == theBoss) and (petros == leader group petros)", 4]; + }; + case "truckX": {actionX = _flag addAction ["Transfer Ammobox to Truck ", A3A_fnc_transfer,nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])"]}; + //case "heal": {if (player != _flag) then {_flag addAction [format ["Revive %1",name _flag], { _this spawn A3A_fnc_actionRevive; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])"]}}; + case "heal": { + if (player != _flag) then + { + if ([_flag] call A3A_fnc_fatalWound) then + { + _actionX = _flag addAction [format ["Revive %1 ",name _flag], A3A_fnc_actionRevive,nil,6,true,true,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)",4]; + _flag setUserActionText [_actionX,format ["Revive %1",name _flag],""]; + } + else + { + _actionX = _flag addAction [format ["Revive %1 ",name _flag], A3A_fnc_actionRevive,nil,6,true,true,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)",4]; + _flag setUserActionText [_actionX,format ["Revive %1",name _flag],""]; + }; + }; + }; + case "heal1": + { + if (player != _flag) then + { + if ([_flag] call A3A_fnc_fatalWound) then + { + _actionX = _flag addAction [format ["Revive %1 ",name _flag], A3A_fnc_actionRevive,nil,6,true,false,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)",4]; + + _flag setUserActionText [_actionX,format ["Revive %1",name _flag],""]; + } + else + { + _actionX = _flag addAction [format ["Revive %1 ",name _flag], A3A_fnc_actionRevive,nil,6,true,false,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)",4]; + _flag setUserActionText [_actionX,format ["Revive %1",name _flag],""]; + }; + //_flag addAction [format ["Revive %1",name _flag], { _this spawn A3A_fnc_actionRevive; },nil,0,false,true,"","!(_this getVariable [""helping"",false]) and (isNull attachedTo _target)"]; + + _actionX = _flag addAction [format ["Carry %1 ",name _flag], A3A_fnc_carry,nil,5,true,false,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (isNull attachedTo _target) and !(_this getVariable [""helping"",false]);",4]; + _flag setUserActionText [_actionX,format ["Carry %1",name _flag],""]; + [_flag] call jn_fnc_logistics_addActionLoad; + }; + }; + case "moveS": {_flag addAction ["Move this asset", A3A_fnc_moveHQObject,nil,0,false,true,"","(_this == theBoss)"]}; + case "remove": + { + if (player == _flag) then + { + if (isNil "actionX") then + { + removeAllActions _flag; + if (player == player getVariable ["owner",player]) then {[] call SA_Add_Player_Tow_Actions}; + } + else + { + _flag removeAction actionX; + }; + } + else + { + removeAllActions _flag + }; + }; + case "refugee": {_flag addAction ["Liberate ", A3A_fnc_liberaterefugee,nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};//"\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_unbind_ca.paa" + case "prisonerX": {_flag addAction ["Liberate POW ", A3A_fnc_liberatePOW,nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; + case "interrogate": {_flag addAction ["Interrogate", { _this spawn A3A_fnc_interrogate; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; + case "captureX": {_flag addAction ["Release POW ", A3A_fnc_captureX,nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; + case "buildHQ": {_flag addAction ["Build HQ here", A3A_fnc_buildHQ,nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; + case "seaport": {_flag addAction ["Buy Boat", {[vehSDKBoat] spawn A3A_fnc_addFIAVeh},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; + case "steal": {_flag addAction ["Steal Static", A3A_fnc_stealStatic,nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]}; + case "garage": + { + if (isMultiplayer) then + { + _flag addAction ["Personal Garage", { [GARAGE_PERSONAL] spawn A3A_fnc_garage;},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])", 4]; + _flag addAction ["Faction Garage", { [GARAGE_FACTION] spawn A3A_fnc_garage; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])", 4]; + } + else + { + _flag addAction ["Faction Garage", { [GARAGE_FACTION] spawn A3A_fnc_garage; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])", 4] + }; + }; + case "fireX": + { + fireX addAction ["Rest for 8 Hours", A3A_fnc_skiptime,nil,0,false,true,"","(_this == theBoss)",4]; + fireX addAction ["Clear Nearby Forest", A3A_fnc_clearForest,nil,0,false,true,"","(_this == theBoss)",4]; + fireX addAction ["I hate the fog", { [10,0] remoteExec ["setFog",2]; },nil,0,false,true,"","(_this == theBoss)",4]; + fireX addAction ["Move this asset", A3A_fnc_moveHQObject,nil,0,false,true,"","(_this == theBoss)",4]; + }; + + case "SDKFlag": + { + removeAllActions _flag; + _flag addAction ["Unit Recruitment", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot recruit units while there are enemies near you"} else { [] spawn A3A_fnc_unit_recruit; };},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; + _flag addAction ["Buy Vehicle", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot buy vehicles while there are enemies near you"} else {nul = createDialog "vehicle_option"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; + if (isMultiplayer) then + { + _flag addAction ["Personal Garage", { [GARAGE_PERSONAL] spawn A3A_fnc_garage; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; + _flag addAction ["Faction Garage", { [GARAGE_FACTION] spawn A3A_fnc_garage; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]; + } + else + { + _flag addAction ["Faction Garage", { [GARAGE_FACTION] spawn A3A_fnc_garage; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4] + }; + }; + }; diff --git a/A3-Antistasi/fogCheck.sqf b/A3-Antistasi/functions/Base/fn_fogCheck.sqf old mode 100755 new mode 100644 similarity index 100% rename from A3-Antistasi/fogCheck.sqf rename to A3-Antistasi/functions/Base/fn_fogCheck.sqf diff --git a/A3-Antistasi/garbageCleaner.sqf b/A3-Antistasi/functions/Base/fn_garbageCleaner.sqf similarity index 100% rename from A3-Antistasi/garbageCleaner.sqf rename to A3-Antistasi/functions/Base/fn_garbageCleaner.sqf diff --git a/A3-Antistasi/garrisonInfo.sqf b/A3-Antistasi/functions/Base/fn_garrisonInfo.sqf similarity index 100% rename from A3-Antistasi/garrisonInfo.sqf rename to A3-Antistasi/functions/Base/fn_garrisonInfo.sqf diff --git a/A3-Antistasi/healandrepair.sqf b/A3-Antistasi/functions/Base/fn_healAndRepair.sqf similarity index 95% rename from A3-Antistasi/healandrepair.sqf rename to A3-Antistasi/functions/Base/fn_healAndRepair.sqf index 69cb69ea20..81f14c9957 100644 --- a/A3-Antistasi/healandrepair.sqf +++ b/A3-Antistasi/functions/Base/fn_healAndRepair.sqf @@ -14,7 +14,7 @@ boxX setVariable ["lastUsed", _time, true]; { if (hasACEMedical) then { - [_x, _x] call ace_medical_fnc_treatmentAdvanced_fullHeal; + [_x, _x] call ace_medical_treatment_fnc_fullHeal; } else { diff --git a/A3-Antistasi/initPetros.sqf b/A3-Antistasi/functions/Base/fn_initPetros.sqf old mode 100755 new mode 100644 similarity index 50% rename from A3-Antistasi/initPetros.sqf rename to A3-Antistasi/functions/Base/fn_initPetros.sqf index ddf3c0cf59..f2d1e6f9b7 --- a/A3-Antistasi/initPetros.sqf +++ b/A3-Antistasi/functions/Base/fn_initPetros.sqf @@ -1,12 +1,14 @@ -diag_log format ["%1: [Antistasi] | INFO | initPetros Started.",servertime]; +private _fileName = "fn_initPetros"; +[2,"initPetros started",_fileName] call A3A_fnc_log; +scriptName "fn_initPetros"; removeHeadgear petros; removeGoggles petros; petros setSkill 1; petros setVariable ["respawning",false]; petros allowDamage false; -[petros, sniperRifle, 8, 0] call BIS_fnc_addWeapon; +[petros,(selectRandom unlockedRifles), 8, 0] call BIS_fnc_addWeapon; petros selectWeapon (primaryWeapon petros); -petros addEventHandler +petros addEventHandler [ "HandleDamage", { @@ -18,7 +20,7 @@ petros addEventHandler _instigator = _this select 6; if(!isNull _instigator && isPlayer _instigator && _victim != _instigator && side _instigator == teamPlayer && _damage > 0.1) then { - [_instigator, 60, 1] remoteExec ["A3A_fnc_punishment",_instigator]; + [_instigator, 60, 1, _victim] remoteExec ["A3A_fnc_punishment",_instigator]; }; if (isPlayer _injurer) then { @@ -55,38 +57,57 @@ petros addEventHandler ]; petros addMPEventHandler ["mpkilled", - { +{ removeAllActions petros; _killer = _this select 1; if (isServer) then - { + { if ((side _killer == Invaders) or (side _killer == Occupants) and !(isPlayer _killer) and !(isNull _killer)) then - { - _nul = [] spawn - { - garrison setVariable ["Synd_HQ",[],true]; - _hrT = server getVariable "hr"; - _resourcesFIAT = server getVariable "resourcesFIA"; - [-1*(round(_hrT*0.9)),-1*(round(_resourcesFIAT*0.9))] remoteExec ["A3A_fnc_resourcesFIA",2]; - waitUntil {sleep 6; isPlayer theBoss}; - [] remoteExec ["A3A_fnc_placementSelection",theBoss]; - }; - if (!isPlayer theBoss) then - { - {["petrosDead",false,1,false,false] remoteExec ["BIS_fnc_endMission",_x]} forEach (playableUnits select {(side _x != teamPlayer) and (side _x != civilian)}) - } - else - { - { - if (side _x == Occupants) then {_x setPos (getMarkerPos respawnOccupants)}; - } forEach playableUnits; - }; - } + { + _nul = [] spawn { + garrison setVariable ["Synd_HQ",[],true]; + _hrT = server getVariable "hr"; + _resourcesFIAT = server getVariable "resourcesFIA"; + [-1*(round(_hrT*0.9)),-1*(round(_resourcesFIAT*0.9))] remoteExec ["A3A_fnc_resourcesFIA",2]; + waitUntil {count allPlayers > 0}; + if (!isNull theBoss) then { + [] remoteExec ["A3A_fnc_placementSelection",theBoss]; + } else { + private _playersWithRank = + (call A3A_fnc_playableUnits) + select {(side (group _x) == teamPlayer) && isPlayer _x && _x == _x getVariable ["owner", _x]} + apply {[([_x] call A3A_fnc_numericRank) select 0, _x]}; + _playersWithRank sort false; + + [] remoteExec ["A3A_fnc_placementSelection", _playersWithRank select 0 select 1]; + }; + }; + { + if (side _x == Occupants) then {_x setPos (getMarkerPos respawnOccupants)}; + } forEach (call A3A_fnc_playableUnits); + } else - { + { [] call A3A_fnc_createPetros; - }; - }; - }]; + }; + }; +}]; [] spawn {sleep 120; petros allowDamage true;}; -diag_log format ["%1: [Antistasi] | INFO | initPetros Completed.",servertime]; + +private _removeProblematicAceInteractions = { + _this spawn { + //Wait until we've got hasACE initialised fully + waitUntil {!isNil "initVar"}; + //Disable ACE Interactions + if (hasInterface && hasACE) then { + [typeOf _this, 0,["ACE_ApplyHandcuffs"]] call ace_interact_menu_fnc_removeActionFromClass; + [typeOf _this, 0,["ACE_MainActions", "ACE_JoinGroup"]] call ace_interact_menu_fnc_removeActionFromClass; + }; + }; +}; + +//We're doing it per-init of petros, because the type of petros on respawn might be different to initial type. +//This'll prevent it breaking in the future. +[petros, _removeProblematicAceInteractions] remoteExec ["call", 0, petros]; + +[2,"initPetros completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/intelFound.sqf b/A3-Antistasi/functions/Base/fn_intelFound.sqf similarity index 100% rename from A3-Antistasi/intelFound.sqf rename to A3-Antistasi/functions/Base/fn_intelFound.sqf diff --git a/A3-Antistasi/isFrontline.sqf b/A3-Antistasi/functions/Base/fn_isFrontline.sqf similarity index 100% rename from A3-Antistasi/isFrontline.sqf rename to A3-Antistasi/functions/Base/fn_isFrontline.sqf diff --git a/A3-Antistasi/isTheSameIsland.sqf b/A3-Antistasi/functions/Base/fn_isTheSameIsland.sqf similarity index 100% rename from A3-Antistasi/isTheSameIsland.sqf rename to A3-Antistasi/functions/Base/fn_isTheSameIsland.sqf diff --git a/A3-Antistasi/functions/Base/fn_joinMultipleGroups.sqf b/A3-Antistasi/functions/Base/fn_joinMultipleGroups.sqf new file mode 100644 index 0000000000..969b3e19f8 --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_joinMultipleGroups.sqf @@ -0,0 +1,28 @@ +/** + Joins several groups into a single new group. + + Params: + _groups: Groups to join + _groupName: Name of new group + + Returns: + The new group +**/ + +private _groups = param [0]; +private _groupName = param [1, groupId (_groups select 0)]; + +if (_groups IsEqualTo []) exitWith { + grpNull; +}; + +private _joinedGroup = createGroup [side (_groups select 0), true]; + +{ + units _x join _joinedGroup; + +} forEach _groups; + +_joinedGroup setGroupId [_groupName]; + +_joinedGroup; \ No newline at end of file diff --git a/A3-Antistasi/keys.sqf b/A3-Antistasi/functions/Base/fn_keys.sqf similarity index 100% rename from A3-Antistasi/keys.sqf rename to A3-Antistasi/functions/Base/fn_keys.sqf diff --git a/A3-Antistasi/localizar.sqf b/A3-Antistasi/functions/Base/fn_localizar.sqf similarity index 88% rename from A3-Antistasi/localizar.sqf rename to A3-Antistasi/functions/Base/fn_localizar.sqf index 2fa748155a..1cb00c0f66 100644 --- a/A3-Antistasi/localizar.sqf +++ b/A3-Antistasi/functions/Base/fn_localizar.sqf @@ -9,12 +9,12 @@ _textX = ""; if (_siteX in citiesX) then { - _textX = format ["%1",[_siteX,false] call A3A_fnc_fn_location]; + _textX = format ["%1",[_siteX,false] call A3A_fnc_location]; } else { _city = [citiesX,_pos] call BIS_fnc_nearestPosition; - _city = [_city,false] call A3A_fnc_fn_location; + _city = [_city,false] call A3A_fnc_location; if (_siteX in airportsX) then {_textX = format ["%1 Airbase",_city]}; if (_siteX in resourcesX) then {_textX = format ["Resource near %1",_city]}; if (_siteX in factories) then {_textX = format ["Factory near %1",_city]}; diff --git a/A3-Antistasi/fn_location.sqf b/A3-Antistasi/functions/Base/fn_location.sqf similarity index 100% rename from A3-Antistasi/fn_location.sqf rename to A3-Antistasi/functions/Base/fn_location.sqf diff --git a/A3-Antistasi/logPerformance.sqf b/A3-Antistasi/functions/Base/fn_logPerformance.sqf similarity index 100% rename from A3-Antistasi/logPerformance.sqf rename to A3-Antistasi/functions/Base/fn_logPerformance.sqf diff --git a/A3-Antistasi/markerChange.sqf b/A3-Antistasi/functions/Base/fn_markerChange.sqf similarity index 81% rename from A3-Antistasi/markerChange.sqf rename to A3-Antistasi/functions/Base/fn_markerChange.sqf index f111671836..c700583d1f 100644 --- a/A3-Antistasi/markerChange.sqf +++ b/A3-Antistasi/functions/Base/fn_markerChange.sqf @@ -1,9 +1,13 @@ if (!isServer) exitWith {}; -private ["_winner","_markerX","_looser","_positionX","_other","_flagX","_flagsX","_dist","_textX","_sides"]; +private _fileName = "fn_markerChange"; + +private ["_winner","_markerX","_looser","_positionX","_other","_flagX","_flagsX","_dist","_textX","_sides"]; _winner = _this select 0; _markerX = _this select 1; + +[3, format ["Changing side of %1 to %2", _markerX, _winner], _fileName] call A3A_fnc_log; if ((_winner == teamPlayer) and (_markerX in airportsX) and (tierWar < 3)) exitWith {}; if ((_winner == teamPlayer) and (sidesX getVariable [_markerX,sideUnknown] == teamPlayer)) exitWith {}; if ((_winner == Occupants) and (sidesX getVariable [_markerX,sideUnknown] == Occupants)) exitWith {}; @@ -46,19 +50,51 @@ else }; garrison setVariable [_markerX,[],true]; sidesX setVariable [_markerX,_winner,true]; + +[3, format ["Side changed for %1", _markerX], _fileName] call A3A_fnc_log; + +//New garrison update ========================================================== +garrison setVariable [format ["%1_garrison", _markerX], [], true]; +garrison setVariable [format ["%1_other", _markerX], [], true]; +garrison setVariable [format ["%1_requested", _markerX], [], true]; +//This system is not yet implemented +//garrison setVariable [format ["%1_available", _markerX], [], true]; +//New system end =============================================================== + if (_winner == teamPlayer) then - { +{ _super = if (_markerX in airportsX) then {true} else {false}; [[_markerX,_looser,"",_super],"A3A_fnc_patrolCA"] call A3A_fnc_scheduler; //sleep 15; [[_markerX],"A3A_fnc_autoGarrison"] call A3A_fnc_scheduler; - } +} else - { +{ _soldiers = []; {_soldiers pushBack (typeOf _x)} forEach (allUnits select {(_x distance _positionX < (_size*3)) and (_x getVariable ["spawner",false]) and (side group _x == _winner) and (vehicle _x == _x) and (alive _x)}); [_soldiers,_winner,_markerX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]; + + //New system ================================================================= + private _type = "Other"; + switch (true) do + { + case (_markerX in airportsX): {_type = "Airport"}; + case (_markerX in outposts): {_type = "Outpost"}; + case (_markerX in citiesX): {_type = "City"}; }; + private _preference = garrison getVariable (format ["%1_preference", _type]); + private _request = []; + for "_i" from 0 to ((count _preference) - 1) do + { + _request pushBack ([_preference select _i, _winner] call A3A_fnc_createGarrisonLine); + }; + garrison setVariable [format ["%1_requested", _markerX], _request, true]; + //End ======================================================================== +}; + +[_markerX] call A3A_fnc_updateReinfState; +[3, format ["Garrison set for %1", _markerX], _fileName] call A3A_fnc_log; + _nul = [_markerX] call A3A_fnc_mrkUpdate; _sides = _sides - [_winner,_looser]; @@ -151,11 +187,13 @@ if (_markerX in resourcesX) then ["TaskUpdated",["",format ["%1 lost a Resource",_textX]]] remoteExec ["BIS_fnc_showNotification",_other]; }; +[3, format ["Notification and points done for marker change at %1", _markerX], _fileName] call A3A_fnc_log; + {_nul = [_markerX,_x] spawn A3A_fnc_deleteControls} forEach controlsX; if (_winner == teamPlayer) then { [] call A3A_fnc_tierCheck; - + //Convert all of the static weapons to teamPlayer, essentially. Make them mannable by AI. //Make the size larger, as rarely does the marker cover the whole outpost. private _staticWeapons = nearestObjects [_positionX, ["StaticWeapon"], _size * 1.5, true]; @@ -165,10 +203,11 @@ if (_winner == teamPlayer) then }; } forEach _staticWeapons; publicVariable "staticsToSave"; - + if (!isNull _flagX) then { //[_flagX,"remove"] remoteExec ["A3A_fnc_flagaction",0,_flagX]; + //_flagX setVariable ["isGettingCaptured", nil, true]; [_flagX,"SDKFlag"] remoteExec ["A3A_fnc_flagaction",0,_flagX]; [_flagX,SDKFlagTexture] remoteExec ["setFlagTexture",_flagX]; sleep 2; @@ -187,8 +226,14 @@ if (_winner == teamPlayer) then } else { + //Remove static weapons near the marker from the saved statics array + private _staticWeapons = nearestObjects [_positionX, ["StaticWeapon"], _size * 1.5, true]; + staticsToSave = staticsToSave - _staticWeapons; + publicVariable "staticsToSave"; + if (!isNull _flagX) then { + //_flagX setVariable ["isGettingCaptured", nil, true]; if (_looser == teamPlayer) then { [_flagX,"remove"] remoteExec ["A3A_fnc_flagaction",0,_flagX]; @@ -229,4 +274,6 @@ if ((_winner != teamPlayer) and (_looser != teamPlayer)) then }; }; }; -markersChanging = markersChanging - [_markerX]; \ No newline at end of file +markersChanging = markersChanging - [_markerX]; + +[3, format ["Finished marker change at %1", _markerX], _fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/moveHQ.sqf b/A3-Antistasi/functions/Base/fn_moveHQ.sqf similarity index 96% rename from A3-Antistasi/moveHQ.sqf rename to A3-Antistasi/functions/Base/fn_moveHQ.sqf index 9b83235eb5..7032e62286 100644 --- a/A3-Antistasi/moveHQ.sqf +++ b/A3-Antistasi/functions/Base/fn_moveHQ.sqf @@ -73,4 +73,4 @@ if (count _garrison > 0) then sleep 5; -petros addAction ["Build HQ here", {[] spawn A3A_fnc_buildHQ},nil,0,false,true]; \ No newline at end of file +petros addAction ["Build HQ here", A3A_fnc_buildHQ,nil,0,false,true]; \ No newline at end of file diff --git a/A3-Antistasi/mrkUpdate.sqf b/A3-Antistasi/functions/Base/fn_mrkUpdate.sqf similarity index 98% rename from A3-Antistasi/mrkUpdate.sqf rename to A3-Antistasi/functions/Base/fn_mrkUpdate.sqf index c4c25c28c5..db008819e0 100644 --- a/A3-Antistasi/mrkUpdate.sqf +++ b/A3-Antistasi/functions/Base/fn_mrkUpdate.sqf @@ -6,7 +6,7 @@ _mrkD = format ["Dum%1",_markerX]; if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) then { _textX = if (count (garrison getVariable [_markerX,[]]) > 0) then {format [": %1", count (garrison getVariable [_markerX,[]])]} else {""}; - _mrkD setMarkerColor colourTeamPlayer; + _mrkD setMarkerColor colorTeamPlayer; if (_markerX in airportsX) then { _textX = format ["%2 Airbase%1",_textX,nameTeamPlayer]; diff --git a/A3-Antistasi/functions/Base/fn_mrkWIN.sqf b/A3-Antistasi/functions/Base/fn_mrkWIN.sqf new file mode 100644 index 0000000000..350658c5ab --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_mrkWIN.sqf @@ -0,0 +1,83 @@ +private ["_flagX","_pos","_markerX","_positionX","_size","_powerpl","_revealX"]; + +_flagX = _this select 0; +_playerX = _this select 1; + +_pos = getPos _flagX; +_markerX = [markersX,_pos] call BIS_fnc_nearestPosition; +if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) exitWith {}; +_positionX = getMarkerPos _markerX; +_size = [_markerX] call A3A_fnc_sizeMarker; + +if ((!isNull _playerX) and (captive _playerX)) exitWith {hint "You cannot Capture the Flag while Undercover"}; +if ((_markerX in airportsX) and (tierWar < 3)) exitWith {hint "You cannot capture Airports until you reach War Level 3"}; +_revealX = []; + +//Check if the flag is locked +if(_flagX getVariable ["isGettingCaptured", false]) exitWith +{ + hint "This flag pole is locked, try again in 30 seconds!"; +}; + +//Lock the flag +_flagX setVariable ["isGettingCaptured", true, true]; + +//Unlock the flag after 30 seconds +_flagX spawn +{ + sleep 30; + _this setVariable ["isGettingCaptured", nil, true]; +}; + +private _filename = "fn_mrkWIN"; +[2, format ["Flag capture at %1 initiated by %2", _markerX, str _playerX], _filename, true] call A3A_fnc_log; + +if (!isNull _playerX) then +{ + if (_size > 300) then + { + _size = 300 + }; + _revealX = []; + { + if (((side _x == Occupants) or (side _x == Invaders)) and ([_x,_markerX] call A3A_fnc_canConquer)) then + { + _revealX pushBack _x + }; + } forEach allUnits; + if (player == _playerX) then + { + _playerX playMove "MountSide"; + sleep 8; + _playerX playMove ""; + { + player reveal _x + } forEach _revealX; + //[_markerX] call A3A_fnc_intelFound; + }; +}; + +if ((count _revealX) > 2*({([_x,_markerX] call A3A_fnc_canConquer) and (side _x == teamPlayer)} count allUnits)) exitWith +{ + [2, format ["Flag capture by %1 abandoned due to outnumbering", str _playerX], _filename, true] call A3A_fnc_log; + hint "The enemy still outnumber us, check the map and clear the rest of the area"; +}; +//if (!isServer) exitWith {}; + +[2, format ["Flag capture by %1 rewarded", str _playerX], _filename, true] call A3A_fnc_log; + +{ + if (isPlayer _x) then + { + [5,_x] remoteExec ["A3A_fnc_playerScoreAdd",_x]; + [_markerX] remoteExec ["A3A_fnc_intelFound",_x]; + if (captive _x) then + { + [_x,false] remoteExec ["setCaptive",0,_x]; + _x setCaptive false; + }; + } +} forEach ([_size,0,_positionX,teamPlayer] call A3A_fnc_distanceUnits); + +//_sideX = if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then {Occupants} else {Invaders}; +[teamPlayer,_markerX] remoteExec ["A3A_fnc_markerChange",2]; diff --git a/A3-Antistasi/numericRank.sqf b/A3-Antistasi/functions/Base/fn_numericRank.sqf similarity index 100% rename from A3-Antistasi/numericRank.sqf rename to A3-Antistasi/functions/Base/fn_numericRank.sqf diff --git a/A3-Antistasi/onHeadlessClientDisconnect.sqf b/A3-Antistasi/functions/Base/fn_onHeadlessClientDisconnect.sqf similarity index 100% rename from A3-Antistasi/onHeadlessClientDisconnect.sqf rename to A3-Antistasi/functions/Base/fn_onHeadlessClientDisconnect.sqf diff --git a/A3-Antistasi/onPlayerDisconnect.sqf b/A3-Antistasi/functions/Base/fn_onPlayerDisconnect.sqf old mode 100644 new mode 100755 similarity index 92% rename from A3-Antistasi/onPlayerDisconnect.sqf rename to A3-Antistasi/functions/Base/fn_onPlayerDisconnect.sqf index 8ea30f7b37..092cec7974 --- a/A3-Antistasi/onPlayerDisconnect.sqf +++ b/A3-Antistasi/functions/Base/fn_onPlayerDisconnect.sqf @@ -63,12 +63,8 @@ if (_unit == theBoss) then theBoss = objNull; //Broadcast as a public variable, otherwise new players joining will have theBoss assigned to the dead body still. publicVariable "theBoss"; - if (((count playableUnits > 0) and (!membershipEnabled)) or ({(getPlayerUID _x) in membersX} count playableUnits > 0)) then - { - [] spawn A3A_fnc_assigntheBoss; - }; - if (group petros == group _unit) then {[] spawn A3A_fnc_buildHQ}; - }; + [] remoteExec ["A3A_fnc_assignBossIfNone", 2]; + if (group petros == group _unit) then { [] spawn A3A_fnc_buildHQ}; }; //Need to check the group's side, as player may be a civ. Unknown is in case they've been moved out of their group. if (side group _unit == teamPlayer || side group _unit == sideUnknown) then @@ -79,7 +75,7 @@ if (side group _unit == teamPlayer || side group _unit == sideUnknown) then if (_uid in membersX) then {playerHasBeenPvP pushBack [_uid,time]}; }; }; - + [_uid, _unit] call A3A_fnc_savePlayer; _pos = getPosATL _unit; diff --git a/A3-Antistasi/outpostDialog.sqf b/A3-Antistasi/functions/Base/fn_outpostDialog.sqf similarity index 100% rename from A3-Antistasi/outpostDialog.sqf rename to A3-Antistasi/functions/Base/fn_outpostDialog.sqf diff --git a/A3-Antistasi/functions/Base/fn_patrolDestinations.sqf b/A3-Antistasi/functions/Base/fn_patrolDestinations.sqf new file mode 100644 index 0000000000..ed449607f4 --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_patrolDestinations.sqf @@ -0,0 +1,21 @@ +private ["_markersX","_array","_pos","_markerX","_destinationsX","_positionX"]; + +_markersX = _this select 0; +_positionX = _this select 1; +_array = (_markersX - controlsX) select {getMarkerPos _x distance2D _positionX < distanceForLandAttack}; +_destinationsX = []; + +//Spawn patrols if we've nearby fast travel points if we're in singleplayer, otherwise use nearby players. +private _isValidDestination = if (isMultiplayer) then { + {playableUnits findIf {(side (group _x) == teamPlayer) and (_x distance2d _this < 2000)} != -1}; +} else { + {markersX findIf {(sidesX getVariable [_x,sideUnknown] == teamPlayer) and (getMarkerPos _x distance2d _this < 2000)} != -1}; +}; + +{ + _destinationX = _x; + _pos = getMarkerPos _destinationX; + if (_pos call _isValidDestination) then {_destinationsX pushBack _destinationX}; +} forEach _array; + +_destinationsX \ No newline at end of file diff --git a/A3-Antistasi/functions/Base/fn_placementselection.sqf b/A3-Antistasi/functions/Base/fn_placementselection.sqf new file mode 100644 index 0000000000..1614f5d97e --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_placementselection.sqf @@ -0,0 +1,115 @@ +private _fileName = "fn_placementSelection.sqf"; +scriptName "fn_placementSelection.sqf"; +private _newGame = isNil "placementDone"; +private _disabledPlayerDamage = false; + +if (_newGame) then { + [2,"New session selected",_fileName] call A3A_fnc_log; + "Initial HQ Placement Selection" hintC ["Click on the Map Position you want to start the Game.","Close the map with M to start in the default position.","Don't select areas with enemies nearby!!\n\nGame experience changes a lot on different starting positions."]; +} else { + player allowDamage false; + _disabledPlayerDamage = true; + format ["%1 is Dead",name petros] hintC format ["%1 has been killed. You lost part of your assets and need to select a new HQ position far from the enemies.",name petros]; +}; + +hintC_arr_EH = findDisplay 72 displayAddEventHandler ["unload",{ + 0 = _this spawn { + _this select 0 displayRemoveEventHandler ["unload", hintC_arr_EH]; + hintSilent ""; + }; +}]; + +private _markersX = markersX select {sidesX getVariable [_x,sideUnknown] != teamPlayer}; + +if (_newGame) then { + _markersX = _markersX - controlsX; + openMap true; +} else { + _markersX = _markersX - (controlsX select {!isOnRoad (getMarkerPos _x)}); + openMap [true,true]; +}; +private _mrkDangerZone = []; + +{ + _mrk = createMarkerLocal [format ["%1dumdum", count _mrkDangerZone], getMarkerPos _x]; + _mrk setMarkerShapeLocal "ELLIPSE"; + _mrk setMarkerSizeLocal [500,500]; + _mrk setMarkerTypeLocal "hd_warning"; + _mrk setMarkerColorLocal "ColorRed"; + _mrk setMarkerBrushLocal "DiagGrid"; + _mrkDangerZone pushBack _mrk; +} forEach _markersX; + +private _positionClicked = []; +private _positionIsInvalid = true; + +while {_positionIsInvalid} do { + positionClickedDuringHQPlacement = []; + onMapSingleClick "positionClickedDuringHQPlacement = _pos;"; + waitUntil {sleep 1; (count positionClickedDuringHQPlacement > 0) or (not visiblemap)}; + onMapSingleClick ""; + + //If they quit the map, keep HQ where it is. + if (not visiblemap) exitWith {}; + + //Assume the position chosen is valid. + _positionIsInvalid = false; + + _positionClicked = positionClickedDuringHQPlacement; + _markerX = [_markersX,_positionClicked] call BIS_fnc_nearestPosition; + + if (getMarkerPos _markerX distance _positionClicked < 500) then { + hint "Place selected is very close to enemy zones.\n\n Please select another position"; + _positionIsInvalid = true; + }; + + if (!_positionIsInvalid && {surfaceIsWater _positionClicked}) then { + hint "Selected position cannot be in water"; + _positionIsInvalid = true; + }; + + if (!_positionIsInvalid && !_newGame) then { + //Invalid if enemies nearby + _positionIsInvalid = (allUnits findIf {(side _x == Occupants || side _x == Invaders) && {_x distance _positionClicked < 500}}) > -1; + if (_positionIsInvalid) then {hint "There are enemies in the surroundings of that area, please select another.";}; + }; + sleep 0.1; +}; + +//If we're still in the map, we chose a place. +if (visiblemap) then { + if (_newGame) then { + { + if (getMarkerPos _x distance _positionClicked < distanceSPWN) then { + sidesX setVariable [_x,teamPlayer,true]; + }; + } forEach controlsX; + petros setPos _positionClicked; + } else { + _controlsX = controlsX select {!(isOnRoad (getMarkerPos _x))}; + { + if (getMarkerPos _x distance _positionClicked < distanceSPWN) then { + sidesX setVariable [_x,teamPlayer,true]; + }; + } forEach _controlsX; + [_positionClicked] remoteExec ["A3A_fnc_createPetros", 2]; + }; + [_positionClicked] call A3A_fnc_relocateHQObjects; + //If it's a new game, we teleport everyone to new HQ, yay! + if (_newGame) then { + { + if ((side _x == teamPlayer) or (side _x == civilian)) then { + _x setPos getPos petros; + }; + } forEach (call A3A_fnc_playableUnits); + }; + openmap [false,false]; +}; + +if (_disabledPlayerDamage) then {player allowDamage true}; + +{deleteMarkerLocal _x} forEach _mrkDangerZone; +"Synd_HQ" setMarkerPos (getMarkerPos respawnTeamPlayer); +posHQ = getMarkerPos respawnTeamPlayer; publicVariable "posHQ"; +if (_newGame) then {placementDone = true; publicVariable "placementDone"}; +chopForest = false; publicVariable "chopForest"; diff --git a/A3-Antistasi/functions/Base/fn_playableUnits.sqf b/A3-Antistasi/functions/Base/fn_playableUnits.sqf new file mode 100644 index 0000000000..61cfe20a8c --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_playableUnits.sqf @@ -0,0 +1,9 @@ +/** + Wrapper around playableUnits that gives us consistent behaviour (or desired behaviour?) in both singleplayer and multiplayer. +**/ + +if (isMultiplayer) then { + playableUnits; +} else { + [player]; +}; \ No newline at end of file diff --git a/A3-Antistasi/powerCheck.sqf b/A3-Antistasi/functions/Base/fn_powerCheck.sqf similarity index 100% rename from A3-Antistasi/powerCheck.sqf rename to A3-Antistasi/functions/Base/fn_powerCheck.sqf diff --git a/A3-Antistasi/powerReorg.sqf b/A3-Antistasi/functions/Base/fn_powerReorg.sqf similarity index 96% rename from A3-Antistasi/powerReorg.sqf rename to A3-Antistasi/functions/Base/fn_powerReorg.sqf index e086880cec..bb46b08834 100644 --- a/A3-Antistasi/powerReorg.sqf +++ b/A3-Antistasi/functions/Base/fn_powerReorg.sqf @@ -10,7 +10,7 @@ _powered = true; if (_power == _markerX) then { //_dataX = server getVariable _city; - if (_markerX in destroyedCities) then + if (_markerX in destroyedSites) then { _powered = false; //[-10,-10,_pos] remoteExec ["A3A_fnc_citySupportChange",2]; @@ -57,7 +57,7 @@ _power = [power,_pos] call BIS_fnc_nearestPosition; _powered = true; if (_power == _markerX) then { - if (_markerX in destroyedCities) then + if (_markerX in destroyedSites) then { _powered = false; //[-10,-10,_pos] remoteExec ["A3A_fnc_citySupportChange",2]; diff --git a/A3-Antistasi/prestige.sqf b/A3-Antistasi/functions/Base/fn_prestige.sqf similarity index 100% rename from A3-Antistasi/prestige.sqf rename to A3-Antistasi/functions/Base/fn_prestige.sqf diff --git a/A3-Antistasi/radioCheck.sqf b/A3-Antistasi/functions/Base/fn_radioCheck.sqf similarity index 85% rename from A3-Antistasi/radioCheck.sqf rename to A3-Antistasi/functions/Base/fn_radioCheck.sqf index c07664dba0..ce06f63361 100644 --- a/A3-Antistasi/radioCheck.sqf +++ b/A3-Antistasi/functions/Base/fn_radioCheck.sqf @@ -2,7 +2,7 @@ private ["_markerX","_ok","_positionX","_antenna","_nearX"]; _markerX = _this select 0; _positionX = _this select 0; -if (typeName _markerX == typeName "") then {_positionX = getMarkerPos _markerX}; +if (_markerX isEqualType "") then {_positionX = getMarkerPos _markerX}; _ok = false; if (count antennas > 0) then { diff --git a/A3-Antistasi/attackAAF.sqf b/A3-Antistasi/functions/Base/fn_rebelAttack.sqf similarity index 92% rename from A3-Antistasi/attackAAF.sqf rename to A3-Antistasi/functions/Base/fn_rebelAttack.sqf index e4d7a3d7de..0ab954d07d 100644 --- a/A3-Antistasi/attackAAF.sqf +++ b/A3-Antistasi/functions/Base/fn_rebelAttack.sqf @@ -7,7 +7,7 @@ _countXFacil = 0; _natoIsFull = false; _csatIsFull = false; _airportsX = airportsX select {([_x,false] call A3A_fnc_airportCanAttack) and (sidesX getVariable [_x,sideUnknown] != teamPlayer)}; -_objectivesX = markersX - controlsX - outpostsFIA - ["Synd_HQ","NATO_carrier","CSAT_carrier"] - destroyedCities; +_objectivesX = markersX - controlsX - outpostsFIA - ["Synd_HQ","NATO_carrier","CSAT_carrier"] - destroyedSites; if (gameMode != 1) then {_objectivesX = _objectivesX select {sidesX getVariable [_x,sideUnknown] == teamPlayer}}; //_objectivisSDK = _objectivesX select {sidesX getVariable [_x,sideUnknown] == teamPlayer}; if ((tierWar < 2) and (gameMode <= 2)) then @@ -119,7 +119,7 @@ if !(_tmpObjectives isEqualTo []) then { if !(_x in _easyArray) then { - _siteX = _x; + private _siteX = _x; if (((!(_siteX in airportsX)) or (_isSDK)) and !(_base in ["NATO_carrier","CSAT_carrier"])) then { _sideEnemy = if (_baseNATO) then {Invaders} else {Occupants}; @@ -263,10 +263,11 @@ if !(_tmpObjectives isEqualTo []) then if (_x == _nearX) then {_times = _times * 5}; if (_x in _killZones) then { - _siteX = _x; + private _siteX = _x; _times = _times / (({_x == _siteX} count _killZones) + 1); }; - _times = round (_times); +// don't do this because it may round down to zero, breaking selectRandomWeighted +// _times = round (_times); _index = _objectivesFinal find _x; if (_index == -1) then { @@ -316,39 +317,18 @@ if ((count _objectivesFinal > 0) and (count _easyX < 3)) then _objectiveFinal = _arrayFinal selectRandomWeighted _countFinal; _destinationX = _objectiveFinal select 0; _originX = _objectiveFinal select 1; - ///This will always fire, as waves is always 1 at this point. - if (_waves == 1) then - { - if (sidesX getVariable [_destinationX,sideUnknown] == teamPlayer) then - { - _waves = (round (random tierWar)); - if (_waves == 0) then {_waves = 1}; - } - else - { - if (sidesX getVariable [_originX,sideUnknown] == Invaders) then - { - if (_destinationX in airportsX) then - { - _waves = 2 + round (random tierWar); - } - else - { - if (!(_destinationX in citiesX)) then - { - _waves = 1 + round (random (tierWar)/2); - }; - }; - } - else - { - if (!(_destinationX in citiesX)) then - { - _waves = 1 + round (random ((tierWar - 3)/2)); - }; - }; - }; - }; + + private _isInvaderAttack = sidesX getVariable [_originX,sideUnknown] == Invaders; + + _waves = + 1 + + ([0, 1] select (_destinationX in airportsX)) + + (count allPlayers / 40) + + (tierWar / 10) + + ([0, 0.5] select _isInvaderAttack); + + _waves = floor _waves; + if (not(_destinationX in citiesX)) then { ///[[_destinationX,_originX,_waves],"A3A_fnc_wavedCA"] call A3A_fnc_scheduler; @@ -356,8 +336,8 @@ if ((count _objectivesFinal > 0) and (count _easyX < 3)) then } else { - //if (sidesX getVariable [_originX,sideUnknown] == Occupants) then {[[_destinationX,_originX,_waves],"A3A_fnc_wavedCA"] call A3A_fnc_scheduler} else {[[_destinationX,_originX],"A3A_fnc_CSATpunish"] call A3A_fnc_scheduler}; - if (sidesX getVariable [_originX,sideUnknown] == Occupants) then {[_destinationX,_originX,_waves] spawn A3A_fnc_wavedCA} else {[_destinationX,_originX] spawn A3A_fnc_CSATpunish}; + //if (sidesX getVariable [_originX,sideUnknown] == Occupants) then {[[_destinationX,_originX,_waves],"A3A_fnc_wavedCA"] call A3A_fnc_scheduler} else {[[_destinationX,_originX],"A3A_fnc_invaderPunish"] call A3A_fnc_scheduler}; + if (sidesX getVariable [_originX,sideUnknown] == Occupants) then {[_destinationX,_originX,_waves] spawn A3A_fnc_wavedCA} else {[_destinationX,_originX] spawn A3A_fnc_invaderPunish}; }; }; diff --git a/A3-Antistasi/rebuildAssets.sqf b/A3-Antistasi/functions/Base/fn_rebuildAssets.sqf similarity index 73% rename from A3-Antistasi/rebuildAssets.sqf rename to A3-Antistasi/functions/Base/fn_rebuildAssets.sqf index 4fd5c64a30..db328b93ec 100644 --- a/A3-Antistasi/rebuildAssets.sqf +++ b/A3-Antistasi/functions/Base/fn_rebuildAssets.sqf @@ -3,7 +3,7 @@ _resourcesFIA = server getVariable "resourcesFIA"; if (_resourcesFIA < 5000) exitWith {hint "You do not have enough money to rebuild any Asset. You need 5.000 ā‚¬"}; -_destroyedCities = destroyedCities - citiesX; +_destroyedSites = destroyedSites - citiesX; if (!visibleMap) then {openMap true}; positionTel = []; @@ -22,10 +22,10 @@ _siteX = [markersX,_positionTel] call BIS_fnc_nearestPosition; if (getMarkerPos _siteX distance _positionTel > 50) exitWith {hint "You must click near a map marker"}; -if ((not(_siteX in _destroyedCities)) and (!(_siteX in outposts))) exitWith {hint "You cannot rebuild that"}; +if ((not(_siteX in _destroyedSites)) and (!(_siteX in outposts))) exitWith {hint "You cannot rebuild that"}; _leave = false; -_antennaDead = []; +_antennaDead = objNull; _textX = "That Outpost does not have a destroyed Radio Tower"; if (_siteX in outposts) then { @@ -50,7 +50,7 @@ if (_siteX in outposts) then if (_leave) exitWith {hint format ["%1",_textX]}; -if (count _antennaDead == 0) then +if (isNull _antennaDead) then { _nameX = [_siteX] call A3A_fnc_localizar; @@ -58,31 +58,31 @@ if (count _antennaDead == 0) then [0,10,_positionTel] remoteExec ["A3A_fnc_citySupportChange",2]; [5,0] remoteExec ["A3A_fnc_prestige",2]; - destroyedCities = destroyedCities - [_siteX]; - publicVariable "destroyedCities"; + destroyedSites = destroyedSites - [_siteX]; + publicVariable "destroyedSites"; } else { hint "Radio Tower rebuilt"; antennasDead = antennasDead - [_antennaDead]; publicVariable "antennasDead"; - _antenna = nearestBuilding _antennaDead; - if (isMultiplayer) then {[_antenna,true] remoteExec ["hideObjectGlobal",2]} else {_antenna hideObject true}; - _antenna = createVehicle ["Land_Communication_F", _antennaDead, [], 0, "NONE"]; - antennas pushBack _antenna; publicVariable "antennas"; - {if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,true] spawn A3A_fnc_blackout}} forEach citiesX; - _mrkFinal = createMarker [format ["Ant%1", count antennas], _antennaDead]; + [_antennaDead] call A3A_fnc_repairRuinedBuilding; + antennas pushBack _antennaDead; publicVariable "antennas"; + + {if ([antennas,_x] call BIS_fnc_nearestPosition == _antennaDead) then {[_x,true] spawn A3A_fnc_blackout}} forEach citiesX; + _mrkFinal = createMarker [format ["Ant%1", mapGridPosition _antennaDead], getPos _antennaDead]; _mrkFinal setMarkerShape "ICON"; _mrkFinal setMarkerType "loc_Transmitter"; _mrkFinal setMarkerColor "ColorBlack"; _mrkFinal setMarkerText "Radio Tower"; mrkAntennas pushBack _mrkFinal; publicVariable "mrkAntennas"; - _antenna addEventHandler ["Killed", + _antennaDead addEventHandler ["Killed", { _antenna = _this select 0; + _antenna removeAllEventHandlers "Killed"; {if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,false] spawn A3A_fnc_blackout}} forEach citiesX; _mrk = [mrkAntennas, _antenna] call BIS_fnc_nearestPosition; - antennas = antennas - [_antenna]; antennasDead = antennasDead + [getPos _antenna]; deleteMarker _mrk; + antennas = antennas - [_antenna]; antennasDead = antennasDead + [_antenna]; deleteMarker _mrk; ["TaskSucceeded",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; ["TaskFailed",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",Occupants]; publicVariable "antennas"; publicVariable "antennasDead"; diff --git a/A3-Antistasi/relocateHQObjects.sqf b/A3-Antistasi/functions/Base/fn_relocateHQObjects.sqf similarity index 100% rename from A3-Antistasi/relocateHQObjects.sqf rename to A3-Antistasi/functions/Base/fn_relocateHQObjects.sqf diff --git a/A3-Antistasi/repairRuinedBuilding.sqf b/A3-Antistasi/functions/Base/fn_repairRuinedBuilding.sqf similarity index 53% rename from A3-Antistasi/repairRuinedBuilding.sqf rename to A3-Antistasi/functions/Base/fn_repairRuinedBuilding.sqf index 27520a0231..18532b2471 100644 --- a/A3-Antistasi/repairRuinedBuilding.sqf +++ b/A3-Antistasi/functions/Base/fn_repairRuinedBuilding.sqf @@ -7,11 +7,21 @@ private _buildingToRepair = objNull; private _ruins = objNull; if (_target isKindOf "Ruins") then { + //If it's been killed during play, it's stored in here. _buildingToRepair = _target getVariable ["building", objNull]; + //Check if it's been made into a ruin by BIS_fnc_createRuin, rather than killed during play. + if (isNull _buildingToRepair) then { + _buildingToRepair = _target getVariable ["BIS_fnc_createRuin_object", objNull]; + }; _ruins = _target; } else { _buildingToRepair = _target; + //If it's been killed during play, it's stored in here. _ruins = _target getVariable ["ruins", objNull]; + //Check if it's been made into a ruin by BIS_fnc_createRuin + if (isNull _ruins) then { + _ruins = _target getVariable ["BIS_fnc_createRuin_ruin", objNull]; + }; }; //Haven't located the matching building - abort! @@ -24,4 +34,7 @@ deleteVehicle _ruins; private _oldPos = getPos _buildingToRepair; _buildingToRepair setPos [_oldPos select 0, _oldPos select 1, 0]; +//Make sure we unhide, in case it was hidden by BIS_fnc_createRuin +[_buildingToRepair, false] remoteExec ["hideObject", 0, _buildingToRepair]; + true; diff --git a/A3-Antistasi/resourcecheckSkipTime.sqf b/A3-Antistasi/functions/Base/fn_resourcecheckSkipTime.sqf similarity index 100% rename from A3-Antistasi/resourcecheckSkipTime.sqf rename to A3-Antistasi/functions/Base/fn_resourcecheckSkipTime.sqf diff --git a/A3-Antistasi/resourcesFIA.sqf b/A3-Antistasi/functions/Base/fn_resourcesFIA.sqf similarity index 92% rename from A3-Antistasi/resourcesFIA.sqf rename to A3-Antistasi/functions/Base/fn_resourcesFIA.sqf index 817d9848df..1043094f17 100644 --- a/A3-Antistasi/resourcesFIA.sqf +++ b/A3-Antistasi/functions/Base/fn_resourcesFIA.sqf @@ -30,7 +30,7 @@ if ((_hr != 0) and (_resourcesFIA != 0)) then } else { - if (_hr != 0) then {_textX = format ["%4 Resources.

HR: %3%1",_hr,_resourcesFIA,_hrSim,nameTeamPlayer]} else {if (_resourcesFIA != 5) then {_textX = format ["%4 Resources.

Money: %4%2 ā‚¬",_hr,_resourcesFIA,_hrSim,_resourcesFIASim,nameTeamPlayer]}}; + if (_hr != 0) then {_textX = format ["%5 Resources.

HR: %3%1",_hr,_resourcesFIA,_hrSim,nameTeamPlayer]} else {if (_resourcesFIA != 5) then {_textX = format ["%5 Resources.

Money: %4%2 ā‚¬",_hr,_resourcesFIA,_hrSim,_resourcesFIASim,nameTeamPlayer]}}; }; if (_textX != "") then diff --git a/A3-Antistasi/returnMuzzle.sqf b/A3-Antistasi/functions/Base/fn_returnMuzzle.sqf similarity index 95% rename from A3-Antistasi/returnMuzzle.sqf rename to A3-Antistasi/functions/Base/fn_returnMuzzle.sqf index 5d4e34f055..8d9f77ae79 100644 --- a/A3-Antistasi/returnMuzzle.sqf +++ b/A3-Antistasi/functions/Base/fn_returnMuzzle.sqf @@ -4,7 +4,7 @@ _unit = _this select 0; _muzzles = []; _muzzle = ""; -_magazines = magazines _unit select {_x in smokeX}; +_magazines = magazines _unit select {_x in allSmokeGrenades}; { switch (_x) do diff --git a/A3-Antistasi/revealToPlayer.sqf b/A3-Antistasi/functions/Base/fn_revealToPlayer.sqf similarity index 100% rename from A3-Antistasi/revealToPlayer.sqf rename to A3-Antistasi/functions/Base/fn_revealToPlayer.sqf diff --git a/A3-Antistasi/functions/Base/fn_scheduler.sqf b/A3-Antistasi/functions/Base/fn_scheduler.sqf new file mode 100644 index 0000000000..b7c37bebf9 --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_scheduler.sqf @@ -0,0 +1,20 @@ +if (!isServer) exitWith {}; +private _fileName = "fn_scheduler"; +scriptName "fn_scheduler"; +private _params = _this select 0; +private _function = _this select 1; +[2,format ["Scheduled function: %1, Function params: %2",_function,_params],_fileName] call A3A_fnc_log; +if (count hcArray == 0) exitWith {_params remoteExec [_function,2]}; +if (count hcArray == 1) exitWith {_params remoteExec [_function,hcArray select 0]}; +_return = 2; +_min = 1000; +{ + _hcID = _x; + _num = {owner _x == _hcID} count allUnits; + if (_num < _min) then { + _return = _hcID; + _min = _num; + }; +} forEach hcArray; + +_params remoteExec [_function,_return]; \ No newline at end of file diff --git a/A3-Antistasi/sellVehicle.sqf b/A3-Antistasi/functions/Base/fn_sellVehicle.sqf similarity index 94% rename from A3-Antistasi/sellVehicle.sqf rename to A3-Antistasi/functions/Base/fn_sellVehicle.sqf index d71c2f6054..706a3dcdc3 100644 --- a/A3-Antistasi/sellVehicle.sqf +++ b/A3-Antistasi/functions/Base/fn_sellVehicle.sqf @@ -23,60 +23,60 @@ _typeX = typeOf _veh; _costs = 0; if (_typeX in vehFIA) then - { +{ _costs = round (([_typeX] call A3A_fnc_vehiclePrice)/2) - } +} else - { +{ if (_typeX in arrayCivVeh) then - { + { //This is for selling supply trucks, but currently is unused. _destinationX = _veh getVariable "destinationX"; if (isNil "_destinationX") then - { + { if (_typeX == "C_Van_01_fuel_F") then {_costs = 50} else {_costs = 25}; - } + } else - { + { _costs = 200; - }; - } + }; + } else - { + { if ((_typeX in vehNormal) or (_typeX in vehBoats) or (_typeX in vehAmmoTrucks)) then - { + { _costs = 100; - } + } else - { + { if (_typeX in vehAPCs) then - { + { _costs = 1000; - } + } else + { + if (_typeX isKindOf "Plane") then { - if (_typeX in vehPlanes) then - { _costs = 4000; - } + } else - { + { if ((_typeX in vehAttackHelis) or (_typeX in vehTanks) or (_typeX in vehAA) or (_typeX in vehMRLS)) then - { + { _costs = 3000; - } + } else - { + { if (_typeX in vehTransportAir) then - { - _costs = 2000; - }; + { + _costs = 500; }; }; }; }; }; }; +}; if (_costs == 0) exitWith {hint "The vehicle you are looking is not suitable in our marketplace"}; @@ -92,6 +92,3 @@ if (_veh in reportedVehs) then {reportedVehs = reportedVehs - [_veh]; publicVari if (_veh isKindOf "StaticWeapon") then {deleteVehicle _veh}; hint "Vehicle Sold"; - - - diff --git a/A3-Antistasi/setMarkerAlphaForSide.sqf b/A3-Antistasi/functions/Base/fn_setMarkerAlphaForSide.sqf similarity index 100% rename from A3-Antistasi/setMarkerAlphaForSide.sqf rename to A3-Antistasi/functions/Base/fn_setMarkerAlphaForSide.sqf diff --git a/A3-Antistasi/sizeMarker.sqf b/A3-Antistasi/functions/Base/fn_sizeMarker.sqf similarity index 100% rename from A3-Antistasi/sizeMarker.sqf rename to A3-Antistasi/functions/Base/fn_sizeMarker.sqf diff --git a/A3-Antistasi/functions/Base/fn_splitVehicleCrewIntoOwnGroups.sqf b/A3-Antistasi/functions/Base/fn_splitVehicleCrewIntoOwnGroups.sqf new file mode 100644 index 0000000000..52f7518c88 --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_splitVehicleCrewIntoOwnGroups.sqf @@ -0,0 +1,36 @@ +/** + Splits a vehicle crew into separate groups. + + Params: + _vehicle: A vehicle to split the crew of + + Returns: + A fragmented vehicle description +**/ + +params ["_vehicle"]; + +[3, format ["Splitting the crew of %1, type of %2", _vehicle, typeOf _vehicle], __FILE__] call A3A_fnc_log; + +private _crew = fullCrew _vehicle select {_x select 1 != "cargo"}; +if (_crew isEqualTo []) exitWith { + [[], ""]; +}; + +private _crewGroups = []; + +private _groupName = groupId group (_crew select 0 select 0); + +[3, format ["Crew is %1", str _crew], __FILE__] call A3A_fnc_log; + +{ + private _unit = _x select 0; + private _group = createGroup [side _unit, true]; + + [_unit] join _group; + _group setGroupId [_groupName + "#" + str _forEachIndex]; + + _crewGroups pushBack _group; +} forEach _crew; + +[_crewGroups, _groupName]; diff --git a/A3-Antistasi/functions/Base/fn_startBreachVehicle.sqf b/A3-Antistasi/functions/Base/fn_startBreachVehicle.sqf new file mode 100644 index 0000000000..deba187ea7 --- /dev/null +++ b/A3-Antistasi/functions/Base/fn_startBreachVehicle.sqf @@ -0,0 +1,234 @@ +params["_vehicle", "_caller", "_actionID"]; + +if(!isPlayer _caller) exitWith {hint "Only players are currently able to breach vehicles!";}; + +//Only engineers should be able to breach a vehicle +private _isEngineer = _caller getUnitTrait "engineer"; +if(!_isEngineer) exitWith +{ + hint "You have to be an engineer to breach a vehicle!"; +}; + +if(!alive _vehicle) exitWith +{ + hint "Why would you want to breach a destroyed vehicle?"; + _vehicle removeAction _actionID; +}; + +private _isAPC = (typeOf _vehicle) in vehAPCs; +private _isTank = (typeOf _vehicle) in vehTanks; + +if(!_isAPC && !_isTank) exitWith +{ + hint "You can only breach APCs and Tanks."; +}; + +private _magazines = magazines _caller; +private _magazineArray = []; + +//Sort magazines +private _index = -1; +{ + private _mag =_x; + _index = _magazineArray findIf {(_x select 0) == _mag}; + if(_index == -1) then + { + _magazineArray pushBack [_mag, 1]; + } + else + { + private _element = _magazineArray select _index; + _element set [1, (_element select 1) + 1]; + }; +} forEach _magazines; + +//Abort if no explosives found +if(_magazineArray isEqualTo []) exitWith +{ + hint "You carry no explosives. You will need some to breach vehicles!"; +}; + +private _explosive = ""; +private _explosiveCount = 0; + +private _fn_selectExplosive = +{ + params ["_array", "_mags"]; + private _result = []; + { + private _breach = _x select 0; + private _index = _mags findIf {(_x select 0) == _breach}; + if(_index != -1) then + { + if((_mags select _index) select 1 >= (_x select 1)) then + { + _result = [_breach, _x select 1]; + }; + }; + + } forEach _array; + _result; +}; + +_index = -1; + +private _needed = if(_isAPC) then {breachingExplosivesAPC} else {breachingExplosivesTank}; +private _explo = [_needed, _magazineArray] call _fn_selectExplosive; +if(!(_explo isEqualTo [])) then +{ + _explosive = _explo select 0; + _explosiveCount = _explo select 1; +}; + +if(_explosiveCount == 0) exitWith +{ + hint "You don't have the right explosives, check the briefing notes to see what you need!"; +}; + +private _time = 15 + (random 5); +private _damageDealt = 0; +if(_isAPC) then +{ + _time = 25 + (random 10); + _damageDealt = 0.15 + random 0.15; +}; +if(_isTank) then +{ + _time = 45 + (random 15); + _damageDealt = 0.25 + random 0.25; +}; + +_caller setVariable ["timeToBreach",time + _time]; +_caller playMoveNow selectRandom medicAnims; +_caller setVariable ["breachVeh", _vehicle]; +_caller setVariable ["animsDone",false]; +_caller setVariable ["cancelBreach",false]; + +private _action = _caller addAction ["Cancel Breaching", {(_this select 1) setVariable ["cancelBreach",true]},nil,6,true,true,"","(isPlayer _this) && (_this == vehicle _this)"]; +_vehicle removeAction _actionID; + +_caller addEventHandler ["AnimDone", +{ + private _caller = _this select 0; + private _vehicle = _caller getVariable "breachVeh"; + if + ( + (alive _vehicle) && + {(_caller == vehicle _caller) && + {(_caller distance _vehicle < 8) && + {([_caller] call A3A_fnc_canFight) && + {(time <= (_caller getVariable ["timeToBreach",time])) && + {!(_caller getVariable ["cancelBreach",false])}}}}} + ) then + { + _caller playMoveNow selectRandom medicAnims; + } + else + { + _caller removeEventHandler ["AnimDone",_thisEventHandler]; + _caller setVariable ["animsDone",true]; + }; +}]; + +//Wait for anims to finish +waitUntil {sleep 0.5; (_caller getVariable ["animsDone",false])}; + +_caller setVariable ["breachVeh", objNull]; +_caller removeAction _action; + +if +( + !alive _vehicle || + {_caller != vehicle _caller || //TODO there was something about that on the optimisation page, look it up + {_caller distance _vehicle >= 8 || + {!([_caller] call A3A_fnc_canFight) || + {_caller getVariable ["cancelBreach",false]}}}} +) exitWith +{ + hint "Breaching cancelled"; + _caller setVariable ["cancelBreach",nil]; + if(alive _vehicle) then { + _vehicle call A3A_fnc_addActionBreachVehicle; + }; +}; + +//Remove the correct amount of explosives +for "_count" from 1 to _explosiveCount do +{ + _caller removeMagazine _explosive; +}; + +//Added as the vehicle might blow up. Best not to blow up in the player's face. +//Pause AFTER removing the explosive in case they decide to drop it or something. +hint "Breaching in 10 seconds."; +sleep 10; + +private _hitPointsConfigPath = configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "HitPoints"; + +private _hullHitPoint = getText (_hitPointsConfigPath >> "HitHull" >> "name"); +private _currentDamage = _vehicle getHit _hullHitPoint; +private _result = _currentDamage + _damageDealt; +if(_result > 1) then {_result = 1}; +_vehicle setHit [_hullHitPoint, _result]; + +private _fuelHitPoint = getText (_hitPointsConfigPath >> "HitFuel" >> "name"); +_currentDamage = _vehicle getHitPointDamage _fuelHitPoint; +_result = _currentDamage + _damageDealt; +if(_result > 1) then {_result = 1}; +_vehicle setHit [_fuelHitPoint, _result]; + +private _engineHitPoint = getText (_hitPointsConfigPath >> "HitEngine" >> "name"); +_currentDamage = _vehicle getHitPointDamage _engineHitPoint; +_result = _currentDamage + _damageDealt; +if(_result > 1) then {_result = 1}; +_vehicle setHit [_engineHitPoint, _result]; + +private _bodyHitPoint = getText (_hitPointsConfigPath >> "HitBody" >> "name"); +_currentDamage = _vehicle getHitPointDamage _bodyHitPoint; +_result = _currentDamage + _damageDealt; +if(_result > 1) then {_result = 1}; +_vehicle setHit [_bodyHitPoint, _result]; + +if(((damage _vehicle) + _damageDealt) > 0.9) exitWith +{ + private _bomb = "SatchelCharge_Remote_Ammo_Scripted" createVehicle (getPos _vehicle); + _bomb setDamage 1; + _vehicle setDamage 1; +}; + +playSound3D [ "A3\Sounds_F\environment\ambient\battlefield\battlefield_explosions3.wss", _vehicle, false, (getPos _vehicle), 4, 1, 0 ]; + +sleep 0.5; +_vehicle lock 0; + +private _crew = crew _vehicle; +{ + if(random 10 > 7) then + { + _x setDamage 1; + }; + if(alive _x) then + { + moveOut _x; + _x setVariable ["surrendered",true,true]; + [_x] spawn A3A_fnc_surrenderAction; + } + else + { + private _dropPos = _vehicle getRelPos [5, random 360]; + _x setPos _dropPos; + }; +} forEach _crew; + +if((_isAPC && {(typeOf _vehicle) in vehNATOAPC}) || {_isTank && {(typeOf _vehicle) in vehNATOTank}}) then +{ + [1,0] remoteExec ["A3A_fnc_prestige",2]; + if(citiesX findIf {(getMarkerPos _x) distance _vehicle < 300} != -1) then + { + [-1, 1, getPos _vehicle] remoteExec ["A3A_fnc_citySupportChange",2]; + }; +} +else +{ + [0,1] remoteExec ["A3A_fnc_prestige",2]; +}; diff --git a/A3-Antistasi/statistics.sqf b/A3-Antistasi/functions/Base/fn_statistics.sqf similarity index 100% rename from A3-Antistasi/statistics.sqf rename to A3-Antistasi/functions/Base/fn_statistics.sqf diff --git a/A3-Antistasi/stripGearFromLoadout.sqf b/A3-Antistasi/functions/Base/fn_stripGearFromLoadout.sqf similarity index 100% rename from A3-Antistasi/stripGearFromLoadout.sqf rename to A3-Antistasi/functions/Base/fn_stripGearFromLoadout.sqf diff --git a/A3-Antistasi/teleportVehicleToBase.sqf b/A3-Antistasi/functions/Base/fn_teleportVehicleToBase.sqf similarity index 100% rename from A3-Antistasi/teleportVehicleToBase.sqf rename to A3-Antistasi/functions/Base/fn_teleportVehicleToBase.sqf diff --git a/A3-Antistasi/timingCA.sqf b/A3-Antistasi/functions/Base/fn_timingCA.sqf similarity index 100% rename from A3-Antistasi/timingCA.sqf rename to A3-Antistasi/functions/Base/fn_timingCA.sqf diff --git a/A3-Antistasi/statSave/translateVariable.sqf b/A3-Antistasi/functions/Base/fn_translateVariable.sqf similarity index 96% rename from A3-Antistasi/statSave/translateVariable.sqf rename to A3-Antistasi/functions/Base/fn_translateVariable.sqf index 6bcf3126fd..3a2d227b9d 100644 --- a/A3-Antistasi/statSave/translateVariable.sqf +++ b/A3-Antistasi/functions/Base/fn_translateVariable.sqf @@ -30,7 +30,7 @@ if (isNil "loadingTranslationTable" or {!(loadingTranslationTable getVariable [" private _result = loadingTranslationTable getVariable [_englishNameToTranslate, ObjNull]; -if (typeName _result != "STRING") then { +if !(_result isEqualType "") then { //diag_log ("Antistasi: No translation for " + _englishNameToTranslate); _result = _englishNameToTranslate; }; diff --git a/A3-Antistasi/unlockVehicle.sqf b/A3-Antistasi/functions/Base/fn_unlockVehicle.sqf similarity index 100% rename from A3-Antistasi/unlockVehicle.sqf rename to A3-Antistasi/functions/Base/fn_unlockVehicle.sqf diff --git a/A3-Antistasi/zoneCheck.sqf b/A3-Antistasi/functions/Base/fn_zoneCheck.sqf similarity index 100% rename from A3-Antistasi/zoneCheck.sqf rename to A3-Antistasi/functions/Base/fn_zoneCheck.sqf diff --git a/A3-Antistasi/CREATE/AAFroadPatrol.sqf b/A3-Antistasi/functions/CREATE/fn_AAFroadPatrol.sqf similarity index 89% rename from A3-Antistasi/CREATE/AAFroadPatrol.sqf rename to A3-Antistasi/functions/CREATE/fn_AAFroadPatrol.sqf index ba2a9a11a8..8a2ea6cb6d 100644 --- a/A3-Antistasi/CREATE/AAFroadPatrol.sqf +++ b/A3-Antistasi/functions/CREATE/fn_AAFroadPatrol.sqf @@ -9,25 +9,20 @@ _base = ""; _roads = []; _arrayAirports = if (hasIFA) then {(airportsX + outposts) select {((spawner getVariable _x != 0)) and (sidesX getVariable [_x,sideUnknown] != teamPlayer)}} else {(seaports + airportsX + outposts) select {((spawner getVariable _x != 0)) and (sidesX getVariable [_x,sideUnknown] != teamPlayer)}}; - _arrayAirports1 = []; -if !(isMultiplayer) then - { - { - _airportX = _x; - _pos = getMarkerPos _airportX; - //if (allUnits findIf {(_x getVariable ["spawner",false]) and (_x distance2d _pos < distanceForLandAttack)} != -1) then {_arrayAirports1 pushBack _airportX}; - if ([distanceForLandAttack,1,_pos,teamPlayer] call A3A_fnc_distanceUnits) then {_arrayAirports1 pushBack _airportX}; - } forEach _arrayAirports; - } -else - { - { + +private _isValidPatrolOrigin = if (isMultiplayer) then { + {playableUnits findIf {(side (group _x) == teamPlayer) and (_x distance2d _this < distanceForLandAttack)} != -1}; +} else { + {[distanceForLandAttack,1,_this,teamPlayer] call A3A_fnc_distanceUnits}; +}; + +{ _airportX = _x; _pos = getMarkerPos _airportX; - if (playableUnits findIf {(side (group _x) == teamPlayer) and (_x distance2d _pos < distanceForLandAttack)} != -1) then {_arrayAirports1 pushBack _airportX}; - } forEach _arrayAirports; - }; + if (_pos call _isValidPatrolOrigin) then {_arrayAirports1 pushBack _airportX}; +} forEach _arrayAirports; + if (_arrayAirports1 isEqualTo []) exitWith {}; _base = selectRandom _arrayAirports1; @@ -106,14 +101,14 @@ if (_typePatrol != "AIR") then { _indexX = airportsX find _base; if (_indexX != -1) then - { - _spawnPoint = spawnPoints select _indexX; + { + _spawnPoint = server getVariable (format ["spawn_%1", _base]); _posBase = getMarkerPos _spawnPoint; - } + } else - { + { _posbase = position ([_posbase] call A3A_fnc_findNearestGoodRoad); - }; + }; }; }; @@ -191,4 +186,4 @@ waitUntil {sleep 1;!([distanceSPWN,1,_unit,teamPlayer] call A3A_fnc_distanceUnit {_veh = _x; if (!([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and !([distanceSPWN,1,_veh,_enemiesX] call A3A_fnc_distanceUnits)) then {deleteVehicle _veh}} forEach _vehiclesX; {deleteGroup _x} forEach _groups; -AAFpatrols = AAFpatrols - 1; \ No newline at end of file +AAFpatrols = AAFpatrols - 1; diff --git a/A3-Antistasi/CREATE/AIVEHinit.sqf b/A3-Antistasi/functions/CREATE/fn_AIVEHinit.sqf similarity index 99% rename from A3-Antistasi/CREATE/AIVEHinit.sqf rename to A3-Antistasi/functions/CREATE/fn_AIVEHinit.sqf index 532f99fdc4..c62ea2f886 100644 --- a/A3-Antistasi/CREATE/AIVEHinit.sqf +++ b/A3-Antistasi/functions/CREATE/fn_AIVEHinit.sqf @@ -8,7 +8,9 @@ if ((_veh isKindOf "FlagCarrier") or (_veh isKindOf "Building") or (_veh isKindO _typeX = typeOf _veh; if ((_typeX in vehNormal) or (_typeX in vehAttack) or (_typeX in vehBoats)) then - { +{ + _veh call A3A_fnc_addActionBreachVehicle; + _veh addEventHandler ["Killed", { private _veh = _this select 0; @@ -250,4 +252,4 @@ if (not(_veh in staticsToSave)) then clearItemCargoGlobal _veh; clearBackpackCargoGlobal _veh; }; - }; \ No newline at end of file + }; diff --git a/A3-Antistasi/CREATE/CIVinit.sqf b/A3-Antistasi/functions/CREATE/fn_CIVinit.sqf similarity index 89% rename from A3-Antistasi/CREATE/CIVinit.sqf rename to A3-Antistasi/functions/CREATE/fn_CIVinit.sqf index cde7670ebf..e6998237a9 100644 --- a/A3-Antistasi/CREATE/CIVinit.sqf +++ b/A3-Antistasi/functions/CREATE/fn_CIVinit.sqf @@ -3,13 +3,13 @@ private ["_unit","_enemiesX"]; _unit = _this select 0; _unit setSkill 0; - +_unit forceAddUniform (selectRandom allCivilianUniforms); _unit disableAI "TARGET"; _unit disableAI "AUTOTARGET"; //Stops civilians from shouting out commands. [_unit, "NoVoice"] remoteExec ["setSpeaker", 0, _unit]; -_unit addEventHandler +_unit addEventHandler [ "HandleDamage", { @@ -17,7 +17,7 @@ _unit addEventHandler _dam = _this select 2; _proy = _this select 4; _injurer = _this select 3; - if(!isNil "_injurer" && isPlayer _injurer) then + if(!isNil "_injurer" && isPlayer _injurer) then { _unit setVariable ["injuredByPlayer", _injurer, true]; _unit setVariable ["lastInjuredByPlayer", time, true]; @@ -29,17 +29,17 @@ _unit addEventHandler _dam } ]; -_EHkilledIdx = _unit addEventHandler +_EHkilledIdx = _unit addEventHandler [ "killed", { _victim = _this select 0; _killer = _this select 1; - if (time - (_victim getVariable ["lastInjuredByPlayer", 0]) < 120) then + if (time - (_victim getVariable ["lastInjuredByPlayer", 0]) < 120) then { _killer = _victim getVariable ["injuredByPlayer", _killer]; }; - if (isNull _killer) then + if (isNull _killer) then { _killer = _victim; }; @@ -53,7 +53,6 @@ _EHkilledIdx = _unit addEventHandler { if (typeOf _victim == "C_man_w_worker_F") then {_killer addRating 1000}; [-10,_killer] call A3A_fnc_playerScoreAdd; - //[_killer,20,0.34] remoteExec ["A3A_fnc_punishment",_killer]; }; _multiplier = 1; if (typeOf _victim == "C_journalist_F") then {_multiplier = 10}; diff --git a/A3-Antistasi/functions/CREATE/fn_FIAinitBASES.sqf b/A3-Antistasi/functions/CREATE/fn_FIAinitBASES.sqf new file mode 100644 index 0000000000..06ca9b16d4 --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_FIAinitBASES.sqf @@ -0,0 +1,104 @@ +private ["_unit","_skill"]; +_unit = _this select 0; +if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | FIAinitBASES.sqf | _unit:%2.",servertime,_unit]; +}; +if ((isNil "_unit") || (isNull _unit)) exitWith { + diag_log format ["%1: [Antistasi] | ERROR | FIAinitBases.sqf | Problem with NATO Param: %2",servertime,_this]; + }; +_markerX = ""; +if (count _this > 1) then + { + _markerX = _this select 1; + _unit setVariable ["markerX",_markerX,true]; + if ((spawner getVariable _markerX != 0) and (vehicle _unit != _unit)) then + { + if (!isMultiplayer) then + { + _unit enableSimulation false + } + else + { + [_unit,false] remoteExec ["enableSimulationGlobal",2] + } + }; + }; +[_unit] call A3A_fnc_initRevive; + +_unit allowFleeing 0; +_typeX = typeOf _unit; +_skill = (0.6 / skillMult + 0.015 * skillFIA); +_unit setSkill _skill; + +if (_typeX in squadLeaders) then { + _unit setskill ["courage",_skill + 0.2]; + _unit setskill ["commanding",_skill + 0.2]; +}; +if (_typeX in SDKSniper) then { + _unit setskill ["aimingAccuracy",_skill + 0.2]; + _unit setskill ["aimingShake",_skill + 0.2]; +}; + +[_unit, 2] call A3A_fnc_equipRebel; // 2 = garrison unit +_unit selectWeapon (primaryWeapon _unit); + + +_EHkilledIdx = _unit addEventHandler ["killed", { + _victim = _this select 0; + _killer = _this select 1; + [_victim] remoteExec ["A3A_fnc_postmortem",2]; + if (isPlayer _killer) then + { + if (!isMultiPlayer) then + { + _nul = [0,20] remoteExec ["A3A_fnc_resourcesFIA",2]; + _killer addRating 1000; + }; + }; + if (side _killer == Occupants) then + { + [0,-0.25,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; + [-0.25,0] remoteExec ["A3A_fnc_prestige",2]; + } + else + { + if (side _killer == Invaders) then {[0,-0.25] remoteExec ["A3A_fnc_prestige",2]}; + }; + _markerX = _victim getVariable "markerX"; + if (!isNil "_markerX") then + { + if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) then + { + [typeOf _victim,teamPlayer,_markerX,-1] remoteExec ["A3A_fnc_garrisonUpdate",2]; + _victim setVariable [_markerX,nil,true]; + }; + }; + }]; + +_revealX = false; +if (vehicle _unit != _unit) then + { + if (_unit == gunner (vehicle _unit)) then + { + _revealX = true; + if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | FIAinitBASES.sqf | Unit: %2 is mounted gunner.",servertime,_unit]; + }; + }; + } +else + { + if ((secondaryWeapon _unit) in allMissileLaunchers) then { + _revealX = true; + if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | FIAinitBASES.sqf | Unit: %2 has launcher: %3.",servertime,_unit, (secondaryWeapon _unit)]; + }; + }; + }; + +if (_revealX) then + { + { + _unit reveal [_x,1.5]; + } forEach allUnits select {(vehicle _x isKindOf "Air") and (_x distance _unit <= distanceSPWN)}; + }; \ No newline at end of file diff --git a/A3-Antistasi/CREATE/NATOinit.sqf b/A3-Antistasi/functions/CREATE/fn_NATOinit.sqf old mode 100755 new mode 100644 similarity index 59% rename from A3-Antistasi/CREATE/NATOinit.sqf rename to A3-Antistasi/functions/CREATE/fn_NATOinit.sqf index 473a3990c7..dbce248183 --- a/A3-Antistasi/CREATE/NATOinit.sqf +++ b/A3-Antistasi/functions/CREATE/fn_NATOinit.sqf @@ -8,103 +8,62 @@ _sideX = side _unit; //_unit setVariable ["sideX",_sideX]; _unit addEventHandler ["HandleDamage",A3A_fnc_handleDamageAAF]; -_unit addEventHandler ["killed",A3A_fnc_AAFKilledEH]; -if (count _this > 1) then - { +_unit addEventHandler ["killed",A3A_fnc_occupantInvaderUnitKilledEH]; +if (count _this > 1) then { _markerX = _this select 1; - if (_markerX != "") then - { + if (_markerX != "") then { _unit setVariable ["markerX",_markerX,true]; if ((spawner getVariable _markerX != 0) and (vehicle _unit != _unit)) then {if (!isMultiplayer) then {_unit enableSimulation false} else {[_unit,false] remoteExec ["enableSimulationGlobal",2]}}; - }; - } -else - { - if (vehicle _unit != _unit) then - { + }; +} +else { + if (vehicle _unit != _unit) then { _veh = vehicle _unit; - if (_unit in (assignedCargo _veh)) then - { - //if (typeOf _veh in vehAPCs) then {if (isMultiplayer) then {[_unit,false] remoteExec ["enableSimulationGlobal",2]} else {_unit enableSimulation false}}; - _unit addEventHandler ["GetOutMan", - { + if (_unit in (assignedCargo _veh)) then { + _unit addEventHandler ["GetOutMan", { _unit = _this select 0; _veh = _this select 2; _driver = driver _veh; - if (!isNull _driver) then - { - if (side group _driver != teamPlayer) then - { - if !(_unit getVariable ["spawner",false]) then - { + if (!isNull _driver) then { + if (side group _driver != teamPlayer) then { + if !(_unit getVariable ["spawner",false]) then { _unit setVariable ["spawner",true,true] - }; }; }; - }]; - } - else - { - _unit setVariable ["spawner",true,true] - }; + }; + }]; } - else - { - _unit setVariable ["spawner",true,true] + else { + _unit setVariable ["spawner",true,true] }; + } + else { + _unit setVariable ["spawner",true,true] }; +}; -_skill = (tierWar + difficultyCoef) * 0.1 * skillMult; -if ((faction _unit != factionGEN) and (faction _unit != factionFIA)) then - { - if (side _unit == Occupants) then - { - _skill = _skill + 0.1; - } - else - { - if (count _this > 1) then - { - _skill = _skill + 0.2; - } - else - { - _skill = _skill + 0.3; - }; - }; - } -else - { - if (faction _unit == factionFIA) then - { - _skill = _skill min 0.3; - } - else - { - _skill = _skill min 0.2; - if ((tierWar > 1) and !hasIFA) then - { - _rifleFinal = primaryWeapon _unit; - _magazines = getArray (configFile / "CfgWeapons" / _rifleFinal / "magazines"); - {_unit removeMagazines _x} forEach _magazines; - _unit removeWeaponGlobal (_rifleFinal); - if (tierWar < 5) then {[_unit, "arifle_MX_Black_F", 6, 0] call BIS_fnc_addWeapon} else {[_unit, "arifle_AK12_F", 6, 0] call BIS_fnc_addWeapon}; - _unit selectWeapon (primaryWeapon _unit); - }; - }; +_skill = (0.15 + (0.02 * difficultyCoef) + (0.01 * tierWar)) * skillMult; + +if (faction _unit isEqualTo factionFIA) then { + _skill = _skill min (0.2 * skillMult); +}; +if (faction _unit isEqualTo factionGEN) then { + _skill = _skill min (0.12 * skillMult); + if (!hasIFA) then { + _rifleFinal = primaryWeapon _unit; + _magazines = getArray (configFile / "CfgWeapons" / _rifleFinal / "magazines"); + {_unit removeMagazines _x} forEach _magazines; + _unit removeWeaponGlobal (_rifleFinal); + if (tierWar < 5) then {[_unit, (selectRandom allSMGs), 6, 0] call BIS_fnc_addWeapon} else {[_unit, (selectRandom allRifles), 6, 0] call BIS_fnc_addWeapon}; + _unit selectWeapon (primaryWeapon _unit); }; +}; -if (_skill > 0.58) then {_skill = 0.58}; _unit setSkill _skill; -if (not(_typeX in sniperUnits)) then - { - if (_unit skill "aimingAccuracy" > 0.35) then {_unit setSkill ["aimingAccuracy",0.35]}; - if (_typeX in squadLeaders) then - { - _unit setskill ["courage",_skill + 0.2]; - _unit setskill ["commanding",_skill + 0.2]; - }; - }; +if (_typeX in squadLeaders) then { + _unit setskill ["courage",_skill + 0.2]; + _unit setskill ["commanding",_skill + 0.2]; +}; _hmd = hmd _unit; if !(hasIFA) then @@ -128,7 +87,7 @@ if !(hasIFA) then } else { - _arr = (NVGoggles arrayIntersect (items _unit)); + _arr = (allNVGs arrayIntersect (items _unit)); if (!(_arr isEqualTo []) or (_hmd != "")) then { if ((random 5 > tierWar) and (!haveNV) and (_unit != leader (group _unit))) then @@ -154,7 +113,7 @@ if !(hasIFA) then _weaponItems = primaryWeaponItems _unit; if (_hmd != "") then { - if (_weaponItems findIf {_x in pointers} != -1) then + if (_weaponItems findIf {_x in allLaserAttachments} != -1) then { _unit action ["IRLaserOn", _unit]; _unit enableIRLasers true; @@ -162,16 +121,16 @@ if !(hasIFA) then } else { - _pointers = _weaponItems arrayIntersect pointers; + _pointers = _weaponItems arrayIntersect allLaserAttachments; if !(_pointers isEqualTo []) then { _unit removePrimaryWeaponItem (_pointers select 0); }; _lamp = ""; - _lamps = _weaponItems arrayIntersect flashlights; + _lamps = _weaponItems arrayIntersect allLightAttachments; if (_lamps isEqualTo []) then { - _compatibleLamps = ((primaryWeapon _unit) call BIS_fnc_compatibleItems) arrayIntersect flashlights; + _compatibleLamps = ((primaryWeapon _unit) call BIS_fnc_compatibleItems) arrayIntersect allLightAttachments; if !(_compatibleLamps isEqualTo []) then { _lamp = selectRandom _compatibleLamps; @@ -186,9 +145,10 @@ if !(hasIFA) then if (_lamp != "") then { _unit enableGunLights "AUTO"; - _unit setskill ["spotDistance",_skill - 0.2]; - _unit setskill ["spotTime",_skill - 0.2]; }; + //Reduce their magical night-time spotting powers. + _unit setskill ["spotDistance", _skill * 0.7]; + _unit setskill ["spotTime", _skill * 0.5]; }; } else @@ -206,7 +166,7 @@ if !(hasIFA) then } else { - _arr = (NVGoggles arrayIntersect (items _unit)); + _arr = (allNVGs arrayIntersect (items _unit)); if (count _arr > 0) then { _hmd = _arr select 0; @@ -229,7 +189,7 @@ if (vehicle _unit != _unit) then } else { - if ((secondaryWeapon _unit) in mlaunchers) then {_revealX = true}; + if ((secondaryWeapon _unit) in allMissileLaunchers) then {_revealX = true}; }; if (_revealX) then { diff --git a/A3-Antistasi/CREATE/VEHdespawner.sqf b/A3-Antistasi/functions/CREATE/fn_VEHdespawner.sqf similarity index 100% rename from A3-Antistasi/CREATE/VEHdespawner.sqf rename to A3-Antistasi/functions/CREATE/fn_VEHdespawner.sqf diff --git a/A3-Antistasi/functions/CREATE/fn_WPCreate.sqf b/A3-Antistasi/functions/CREATE/fn_WPCreate.sqf new file mode 100644 index 0000000000..41791bc663 --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_WPCreate.sqf @@ -0,0 +1,149 @@ +//Original Author: Barbolani +//Edited and updated by the Antstasi Community Development Team + +params ["_mrkOrigin", "_mrkDestination", "_groupX"]; + +private _posOrigin = []; +private _posDestination = []; + +if (_mrkOrigin isEqualType "") then { + _posOrigin = getMarkerPos _mrkOrigin; +} else { + _posOrigin = _mrkOrigin; +}; + +if (_mrkDestination isEqualType "") then { + _posDestination = getMarkerPos _mrkDestination; +} else { + _posDestination = _mrkDestination; +}; + +private _finalArray = []; + +if (worldName == "Tanoa") then { + + private _exit = false; + + if (_mrkOrigin isEqualType "") then { + if ((_mrkOrigin != "airport") && (_mrkOrigin != "airport_2")) then { _exit = true; }; + } else { + if (!([_mrkOrigin, "airport"] call A3A_fnc_isTheSameIsland)) then { + _exit = true; + } else { + if (_mrkOrigin distance2D (getMarkerPos "airport") < _mrkOrigin distance2D (getMarkerPos "airport_2")) then { + _mrkOrigin = "airport"; + } else { + _mrkOrigin = "airport_2"; + }; + }; + }; + + if (_exit) exitWith {}; + + waitUntil + { + sleep 1; + diag_log "WPCreate cannot get the roadsMrk, sleeping 1 second to await marker init!"; + !(isNil "roadsMrk" || {isNull roadsMrk}) + }; + + private _arr2 = []; + private _final = [roadsMrk, _posDestination] call BIS_fnc_nearestPosition; + private _useCentral = true; + private _isCentral = false; + + switch (true) do { + case (_final in roadsCentral): { _isCentral = true; }; + case (_final in roadsCE): { _arr2 = +roadsCE; }; + case (_final in roadsCSE): { _arr2 = +roadsCSE; }; + case (_final in roadsSE): { _arr2 = +roadsSE; }; + case (_final in roadsSW): { + _arr2 = +roadsSW; + if (_mrkOrigin == "airport") then { _useCentral = false; }; + }; + case (_final in roadsCW): { _arr2 = +roadsCW; }; + case (_final in roadsNW): { _arr2 = +roadsNW; }; + default { + _arr2 = +roadsNE; + if (_mrkOrigin == "airport_2") then { _useCentral = false; }; + }; + }; + + private _roadsCentral = roadsCentral; + + if (_useCentral && (_mrkOrigin != "airport")) then {reverse _roadsCentral}; + + if (_isCentral) then { + { + _finalArray pushBack _x; + if (_x == _final) exitWith {}; + } forEach _roadsCentral; + } else { + if (_useCentral) then { + private _inicial = _arr2 select 0; + private _medio = [_roadsCentral, _inicial] call BIS_fnc_nearestPosition; + { + _finalArray pushBack _x; + if (_x == _medio) exitWith {}; + } forEach _roadsCentral; + + { + _finalArray pushBack _x; + if (_x == _final) exitWith {}; + } forEach _arr2; + } else { + { + _finalArray pushBack _x; + if (_x == _final) exitWith {}; + } forEach _arr2; + }; + }; + + if (getMarkerPos _final distance _posOrigin > _posDestination distance _posOrigin) then { + _finalArray = _finalArray - [_final]; + }; + +} else { + + private ["_road", "_pos", "_pos1"]; + private _distance = _posOrigin distance2d _posDestination; + + if (_distance < 1500) exitWith { + diag_log format ["%1: [Antistasi] | DEBUG | WPCreateAltis.sqf | Convoy with zero WP because they are too close: %2 to %3, distance: %4", servertime, _mrkOrigin, _mrkDestination, _distance]; + }; + + private _roadsMrk = roadsMrk select { + ((getMarkerPos _x) distance2d _posDestination < _distance) && + ((getMarkerPos _x) distance2d _posOrigin < _distance) + }; + + if (_roadsMrk isEqualTo []) exitWith + { + diag_log "Could not find any road marker in range, assuming direct way!"; + _finalArray = [_mrkDestination]; + }; + + _roadsMrk = [_roadsMrk, [], {getMarkerPos _x distance2d _posOrigin}, "ASCEND"] call BIS_fnc_sortBy; + _finalArray = [_roadsMrk select 0]; + _roadsMrk = _roadsMrk - _finalArray; + + while {true} do { + if (_roadsMrk isEqualTo []) exitWith {}; + + _lastRoad = _finalArray select ((count _finalArray) -1); + _road = [_roadsMrk, _lastRoad] call BIS_fnc_nearestPosition; + _pos = getMarkerPos _road; + _pos1 = getMarkerPos _lastRoad; + + if (_pos distance2D _posDestination < _pos1 distance2d _posDestination) then { + _finalArray pushBack _road; + }; + _roadsMrk = _roadsMrk - [_road]; + }; +}; + +private _waypoints = _finalArray apply {_groupX addWaypoint [getMarkerPos (_x), 0]}; + +_groupX setCurrentWaypoint (_waypoints select 0); + +_waypoints; diff --git a/A3-Antistasi/CREATE/airportCanAttack.sqf b/A3-Antistasi/functions/CREATE/fn_airportCanAttack.sqf similarity index 100% rename from A3-Antistasi/CREATE/airportCanAttack.sqf rename to A3-Antistasi/functions/CREATE/fn_airportCanAttack.sqf diff --git a/A3-Antistasi/CREATE/ambientCivs.sqf b/A3-Antistasi/functions/CREATE/fn_ambientCivs.sqf similarity index 69% rename from A3-Antistasi/CREATE/ambientCivs.sqf rename to A3-Antistasi/functions/CREATE/fn_ambientCivs.sqf index a13a594861..1f9a4890f4 100644 --- a/A3-Antistasi/CREATE/ambientCivs.sqf +++ b/A3-Antistasi/functions/CREATE/fn_ambientCivs.sqf @@ -9,58 +9,50 @@ _mrk setMarkerAlphaLocal 0; private _groupX = grpNull; private _reset = true; private _civs = []; - -while {true} do - { - if (player distance getMarkerPos _mrk > 300) then - { +while {true} do { + if (player distance getMarkerPos _mrk > 300) then { _mrk setMarkerPosLocal (position player); _reset = true; _abuse = []; { - _civ = _x; - if (!(alive _civ) or ({_civ distance _x <= 300} count (allPlayers - (entities "HeadlessClient_F")) == 0)) then - { - _groupX = group _x; - _abuse pushBack _x; - deleteVehicle _x; - if ({alive _x} count (units _groupX) == 0) then {deleteGroup _groupX}; + _civ = _x; + if (!(alive _civ) or ({_civ distance _x <= 300} count (allPlayers - (entities "HeadlessClient_F")) == 0)) then { + _groupX = group _x; + _abuse pushBack _x; + deleteVehicle _x; + if ({alive _x} count (units _groupX) == 0) then {deleteGroup _groupX}; }; } forEach _civs; _civs = _civs - _abuse; - }; + }; _allCivs = allUnits select {(alive _x) and (side _x == civilian)}; - if ((count _allCivs < civPerc) and ({(local _x) and (simulationEnabled _x) and (alive _x)} count allUnits < maxUnits)) then - { + if ((count _allCivs < civPerc) and ({(local _x) and (simulationEnabled _x) and (alive _x)} count allUnits < maxUnits)) then { if (_reset) then {_houses = (nearestTerrainObjects [player, ["House"], 300]) select {(count (_x buildingPos -1) > 0)}}; _houses = _houses select {!((typeOf _x) in listMilBld)}; _numhouses = count _houses; - if (_numhouses > 0) then - { + if (_numhouses > 0) then { _reset = false; if ((daytime < 8) or (daytime > 21)) then {_numhouses = round (_numhouses / 2)}; - if ({_x distance player < 300} count _allCivs <= _numhouses) then - { + if ({_x distance player < 300} count _allCivs <= _numhouses) then { _houseX = selectRandom _houses; - if ({_x distance _houseX < 20} count (allPlayers - (entities "HeadlessClient_F")) == 0) then - { - if (isNull _groupX) then - { + if ({_x distance _houseX < 20} count (allPlayers - (entities "HeadlessClient_F")) == 0) then { + if (isNull _groupX) then { _groupX = createGroup civilian; - } - else - { + } + else { if (count units _groupX > 2) then {_groupX = createGroup civilian}; - }; + }; _posHouse = selectRandom (_houseX buildingPos -1); - _civ = _groupX createUnit [selectRandom arrayCivs, _posHouse, [],0, "NONE"]; + _unit = selectRandom arrayCivs; + _civ = _groupX createUnit [_unit, _posHouse, [],0, "NONE"]; _civ setPosATL _posHouse; [_civ] spawn A3A_fnc_CIVinit; _civs pushBack _civ; if (_civ == leader _civ) then {_nul = [_civ, "ambientCiv", "SAFE", "SPAWNED","NOFOLLOW", "NOVEH2","NOSHARE","DoRelax"] execVM "scripts\UPSMON.sqf"}; - }; + //TODO delete UPSMON }; }; }; - sleep 5; - }; \ No newline at end of file + }; +sleep 5; +}; diff --git a/A3-Antistasi/functions/CREATE/fn_calculateMarkerArea.sqf b/A3-Antistasi/functions/CREATE/fn_calculateMarkerArea.sqf new file mode 100644 index 0000000000..2b4745f920 --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_calculateMarkerArea.sqf @@ -0,0 +1,14 @@ +params ["_marker"]; + +_result = 0; +_size = getMarkerSize _marker; +if(markerShape _marker == "ELLIPSE") then +{ + _result = PI * (_size select 0) * (_size select 1); +}; +if(markerShape _marker == "RECTANGLE") then +{ + _result = (_size select 0) * (_size select 1) * 4; +}; + +_result; diff --git a/A3-Antistasi/CREATE/cargoSeats.sqf b/A3-Antistasi/functions/CREATE/fn_cargoSeats.sqf similarity index 100% rename from A3-Antistasi/CREATE/cargoSeats.sqf rename to A3-Antistasi/functions/CREATE/fn_cargoSeats.sqf diff --git a/A3-Antistasi/CREATE/civVEHinit.sqf b/A3-Antistasi/functions/CREATE/fn_civVEHinit.sqf similarity index 100% rename from A3-Antistasi/CREATE/civVEHinit.sqf rename to A3-Antistasi/functions/CREATE/fn_civVEHinit.sqf diff --git a/A3-Antistasi/CREATE/cleanserVeh.sqf b/A3-Antistasi/functions/CREATE/fn_cleanserVeh.sqf similarity index 100% rename from A3-Antistasi/CREATE/cleanserVeh.sqf rename to A3-Antistasi/functions/CREATE/fn_cleanserVeh.sqf diff --git a/A3-Antistasi/CREATE/createAIAirplane.sqf b/A3-Antistasi/functions/CREATE/fn_createAIAirplane.sqf similarity index 69% rename from A3-Antistasi/CREATE/createAIAirplane.sqf rename to A3-Antistasi/functions/CREATE/fn_createAIAirplane.sqf index 0e52f68b88..b6f50849de 100644 --- a/A3-Antistasi/CREATE/createAIAirplane.sqf +++ b/A3-Antistasi/functions/CREATE/fn_createAIAirplane.sqf @@ -3,6 +3,9 @@ if (!isServer and hasInterface) exitWith{}; private ["_pos","_markerX","_vehiclesX","_groups","_soldiers","_positionX","_busy","_buildings","_pos1","_pos2","_groupX","_countX","_typeVehX","_veh","_unit","_arrayVehAAF","_nVeh","_frontierX","_size","_ang","_mrk","_typeGroup","_flagX","_dog","_typeUnit","_garrison","_sideX","_cfg","_max","_vehicle","_vehCrew","_groupVeh","_roads","_dist","_road","_roadscon","_roadcon","_dirveh","_bunker","_typeGroup","_positionsX","_posMG","_posMort","_posTank"]; _markerX = _this select 0; +//Not sure if that ever happens, but it reduces redundance +if(spawner getVariable _markerX == 2) exitWith {}; + diag_log format ["[Antistasi] Spawning Airbase %1 (createAIAirplane.sqf)", _markerX]; _vehiclesX = []; @@ -28,35 +31,38 @@ _posTank = _positionsX select {(_x select 2) == "Tank"}; _posAA = _positionsX select {(_x select 2) == "AA"}; _posAT = _positionsX select {(_x select 2) == "AT"}; -if (spawner getVariable _markerX != 2) then +_typeVehX = if (_sideX == Occupants) then {vehNATOAA} else {vehCSATAA}; +_max = if (_frontierX && {[_typeVehX] call A3A_fnc_vehAvailable}) then {2} else {1}; +for "_i" from 1 to _max do +{ + //_pos = [_positionX, 50, _size, 10, 0, 0.3, 0] call BIS_Fnc_findSafePos; + //_pos = _positionX findEmptyPosition [_size - 200,_size+50,_typeVehX]; + _spawnParameter = [_markerX, "Vehicle"] call A3A_fnc_findSpawnPosition; + + if (_spawnParameter isEqualType []) then { - _typeVehX = if (_sideX == Occupants) then {vehNATOAA} else {vehCSATAA}; - if ([_typeVehX] call A3A_fnc_vehAvailable) then - { - _max = if (_sideX == Occupants) then {1} else {2}; - for "_i" from 1 to _max do - { - _pos = [_positionX, 50, _size, 10, 0, 0.3, 0] call BIS_Fnc_findSafePos; - //_pos = _positionX findEmptyPosition [_size - 200,_size+50,_typeVehX]; - _vehicle=[_pos, random 360,_typeVehX, _sideX] call bis_fnc_spawnvehicle; - _veh = _vehicle select 0; - _vehCrew = _vehicle select 1; - {[_x,_markerX] call A3A_fnc_NATOinit} forEach _vehCrew; - [_veh] call A3A_fnc_AIVEHinit; - _groupVeh = _vehicle select 2; - _soldiers = _soldiers + _vehCrew; - _groups pushBack _groupVeh; - _vehiclesX pushBack _veh; - sleep 1; - }; - }; + _vehicle=[_spawnParameter select 0, _spawnParameter select 1,_typeVehX, _sideX] call bis_fnc_spawnvehicle; + _veh = _vehicle select 0; + _vehCrew = _vehicle select 1; + {[_x,_markerX] call A3A_fnc_NATOinit} forEach _vehCrew; + [_veh] call A3A_fnc_AIVEHinit; + _groupVeh = _vehicle select 2; + _soldiers = _soldiers + _vehCrew; + _groups pushBack _groupVeh; + _vehiclesX pushBack _veh; + sleep 1; + } + else + { + _i = _max; }; +}; -if ((spawner getVariable _markerX != 2) and _frontierX) then - { +if (_frontierX) then +{ _roads = _positionX nearRoads _size; if (count _roads != 0) then - { + { _groupX = createGroup _sideX; _groups pushBack _groupX; _dist = 0; @@ -82,8 +88,10 @@ if ((spawner getVariable _markerX != 2) and _frontierX) then [_veh] call A3A_fnc_AIVEHinit; _unit moveInGunner _veh; _soldiers pushBack _unit; - }; }; +}; + + _mrk = createMarkerLocal [format ["%1patrolarea", random 100], _positionX]; _mrk setMarkerShapeLocal "RECTANGLE"; _mrk setMarkerSizeLocal [(distanceSPWN/2),(distanceSPWN/2)]; @@ -98,60 +106,63 @@ _garrison = _garrison call A3A_fnc_garrisonReorg; _radiusX = count _garrison; private _patrol = true; if (_radiusX < ([_markerX] call A3A_fnc_garrisonSize)) then - { +{ _patrol = false; - } +} else - { - if ({if ((getMarkerPos _x inArea _mrk) and (sidesX getVariable [_x,sideUnknown] != _sideX)) exitWIth {1}} count markersX > 0) then {_patrol = false}; - }; +{ + //No patrol if patrol area overlaps with an enemy site + _patrol = ((markersX findIf {(getMarkerPos _x inArea _mrk) && {sidesX getVariable [_x, sideUnknown] != _sideX}}) == -1); +}; if (_patrol) then - { +{ _countX = 0; - while {(spawner getVariable _markerX != 2) and (_countX < 4)} do - { + while {_countX < 4} do + { _arraygroups = if (_sideX == Occupants) then {groupsNATOsmall} else {groupsCSATsmall}; if ([_markerX,false] call A3A_fnc_fogCheck < 0.3) then {_arraygroups = _arraygroups - sniperGroups}; _typeGroup = selectRandom _arraygroups; _groupX = [_positionX,_sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup; if !(isNull _groupX) then - { + { sleep 1; if ((random 10 < 2.5) and (not(_typeGroup in sniperGroups))) then - { + { _dog = _groupX createUnit ["Fin_random_F",_positionX,[],0,"FORM"]; [_dog] spawn A3A_fnc_guardDog; sleep 1; - }; - _nul = [leader _groupX, _mrk, "SAFE","SPAWNED", "RANDOM", "NOVEH2"] execVM "scripts\UPSMON.sqf"; + }; + _nul = [leader _groupX, _mrk, "SAFE","SPAWNED", "RANDOM", "NOVEH2"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link _groups pushBack _groupX; {[_x,_markerX] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _groupX; - }; - _countX = _countX +1; }; + _countX = _countX +1; }; +}; _countX = 0; _groupX = createGroup _sideX; _groups pushBack _groupX; _typeUnit = if (_sideX==Occupants) then {staticCrewOccupants} else {staticCrewInvaders}; _typeVehX = if (_sideX == Occupants) then {NATOMortar} else {CSATMortar}; + +_spawnParameter = [_markerX, "Mortar"] call A3A_fnc_findSpawnPosition; +while {_spawnParameter isEqualType []} do { -if (spawner getVariable _markerX != 2) then - { - _veh = _typeVehX createVehicle [0,0,1000]; - _veh setDir (_x select 1); - _veh setPosATL (_x select 0); - _nul=[_veh] execVM "scripts\UPSMON\MON_artillery_add.sqf"; - _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; + _veh = _typeVehX createVehicle (_spawnParameter select 0); + _veh setDir (_spawnParameter select 1); + //_veh setPosATL (_spawnParameter select 0); + _nul=[_veh] execVM "scripts\UPSMON\MON_artillery_add.sqf";//TODO need delete UPSMON link + _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "CAN_COLLIDE"]; [_unit,_markerX] call A3A_fnc_NATOinit; _unit moveInGunner _veh; _soldiers pushBack _unit; _vehiclesX pushBack _veh; _nul = [_veh] call A3A_fnc_AIVEHinit; + _spawnParameter = [_markerX, "Mortar"] call A3A_fnc_findSpawnPosition; sleep 1; - }; -} forEach _posMort; +}; + _typeVehX = if (_sideX == Occupants) then {NATOMG} else {CSATMG}; { if (spawner getVariable _markerX != 2) then @@ -231,7 +242,7 @@ if (spawner getVariable _markerX != 2) then } forEach _posAT; _ret = [_markerX,_size,_sideX,_frontierX] call A3A_fnc_milBuildings; - + {[_x] call A3A_fnc_AIVEHinit} forEach (_ret select 1); {[_x,_markerX] call A3A_fnc_NATOinit} forEach (_ret select 2); @@ -240,96 +251,124 @@ _vehiclesX append (_ret select 1); _soldiers append (_ret select 2); if (!_busy) then - { +{ + //Newer system in place private _runwaySpawnLocation = [_markerX] call A3A_fnc_getRunwayTakeoffForAirportMarker; - - //If we've found a nearby runway, we can continue. + _spawnParameter = [_markerX, "Plane"] call A3A_fnc_findSpawnPosition; if !(_runwaySpawnLocation isEqualTo []) then - { + { _pos = _runwaySpawnLocation select 0; _ang = _runwaySpawnLocation select 1; - - _heliPos = [_pos, 30,_ang + 90] call BIS_fnc_relPos; - _heliPos = [_heliPos, 20,_ang] call BIS_fnc_relPos; - - _groupX = createGroup _sideX; - _groups pushBack _groupX; - _countX = 0; - _taxiwayPosSelection = 0; - - while {(spawner getVariable _markerX != 2) and (_countX < 5)} do + }; + _groupX = createGroup _sideX; + _groups pushBack _groupX; + _countX = 0; + while {_countX < 3} do + { + private _veh = objNull; + if(_spawnParameter isEqualType []) then + { + private _vehPool = []; + if (_sideX == Occupants) then { - _typeVehX = if (_sideX == Occupants) then {selectRandom (vehNATOAir select {[_x] call A3A_fnc_vehAvailable})} else {selectRandom (vehCSATAir select {[_x] call A3A_fnc_vehAvailable})}; - - private _veh = objNull; - if (_typeVehX isKindOf "Helicopter") then { - _veh = createVehicle [_typeVehX, _heliPos, [],3, "NONE"]; - _vehiclesX pushBack (createVehicle ["Land_HelipadCircle_F", getPosATL _veh, [],0, "CAN_COLLIDE"]); - _veh setDir (_ang + 90); - _heliPos = [_heliPos, 50, _ang] call BIS_fnc_relPos; - } else { + _vehPool = ([vehNATOPlane, vehNATOPlaneAA] select {[_x] call A3A_fnc_vehAvailable}) + } + else + { + _vehPool = ([vehCSATPlane, vehCSATPlaneAA] select {[_x] call A3A_fnc_vehAvailable}) + }; + if(count _vehPool > 0) then + { + _typeVehX = selectRandom _vehPool; + _veh = createVehicle [_typeVehX, (_spawnParameter select 0), [], 0, "CAN_COLLIDE"]; + _veh setDir (_spawnParameter select 1); + _veh setPos (_spawnParameter select 0); + _vehiclesX pushBack _veh; + _nul = [_veh] call A3A_fnc_AIVEHinit; + }; + _spawnParameter = [_markerX, "Plane"] call A3A_fnc_findSpawnPosition; + } + else + { + if !(_runwaySpawnLocation isEqualTo []) then + { + _typeVehX = if (_sideX == Occupants) then {selectRandom (vehNATOAir select {[_x] call A3A_fnc_vehAvailable})} else {selectRandom (vehCSATAir select {[_x] call A3A_fnc_vehAvailable})}; _veh = createVehicle [_typeVehX, _pos, [],3, "NONE"]; _veh setDir (_ang); _pos = [_pos, 50,_ang] call BIS_fnc_relPos; + _vehiclesX pushBack _veh; + _nul = [_veh] call A3A_fnc_AIVEHinit; + } + else + { + //No places found, neither hangar nor runway + _countX = 3; }; - - _vehiclesX pushBack _veh; - _nul = [_veh] call A3A_fnc_AIVEHinit; - _countX = _countX + 1; - }; - _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","NOFOLLOW","NOVEH"] execVM "scripts\UPSMON.sqf"; }; + _countX = _countX + 1; }; +}; _typeVehX = if (_sideX == Occupants) then {NATOFlag} else {CSATFlag}; -_flagX = createVehicle [_typeVehX, _positionX, [],0, "CAN_COLLIDE"]; +_flagX = createVehicle [_typeVehX, _positionX, [],0, "NONE"]; _flagX allowDamage false; [_flagX,"take"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_flagX]; _vehiclesX pushBack _flagX; if (_sideX == Occupants) then - { +{ _veh = NATOAmmoBox createVehicle _positionX; - _nul = [_veh] call A3A_fnc_NATOcrate; + [_veh] spawn A3A_fnc_NATOcrate; _vehiclesX pushBack _veh; _veh call jn_fnc_logistics_addAction; - } +} else - { +{ _veh = CSATAmmoBox createVehicle _positionX; - _nul = [_veh] call A3A_fnc_CSATcrate; + [_veh] spawn A3A_fnc_CSATcrate; _vehiclesX pushBack _veh; _veh call jn_fnc_logistics_addAction; - }; +}; if (!_busy) then +{ + for "_i" from 1 to (round (random 2)) do { - { - _arrayVehAAF = if (_sideX == Occupants) then {vehNATOAttack select {[_x] call A3A_fnc_vehAvailable}} else {vehCSATAttack select {[_x] call A3A_fnc_vehAvailable}}; - if ((spawner getVariable _markerX != 2) and (count _arrayVehAAF > 0)) then + _arrayVehAAF = if (_sideX == Occupants) then {vehNATOAttack select {[_x] call A3A_fnc_vehAvailable}} else {vehCSATAttack select {[_x] call A3A_fnc_vehAvailable}}; + _spawnParameter = [_markerX, "Vehicle"] call A3A_fnc_findSpawnPosition; + if (count _arrayVehAAF > 0 && {_spawnParameter isEqualType []}) then { - _veh = createVehicle [selectRandom _arrayVehAAF, (_x select 0), [], 0, "NONE"]; - _veh setDir (_x select 1); - _vehiclesX pushBack _veh; - _nul = [_veh] call A3A_fnc_AIVEHinit; - _nVeh = _nVeh -1; - sleep 1; + _veh = createVehicle [selectRandom _arrayVehAAF, (_spawnParameter select 0), [], 0, "CAN_COLLIDE"]; + _veh setDir (_spawnParameter select 1); + _vehiclesX pushBack _veh; + _nul = [_veh] call A3A_fnc_AIVEHinit; + _nVeh = _nVeh -1; + sleep 1; }; - } forEach _posTank; }; -_arrayVehAAF = if (_sideX == Occupants) then {vehNATONormal} else {vehCSATNormal}; +}; +_arrayVehAAF = if (_sideX == Occupants) then {vehNATONormal} else {vehCSATNormal}; _countX = 0; -while {(spawner getVariable _markerX != 2) and (_countX < _nVeh)} do - { + +while {_countX < _nVeh && {_countX < 3}} do +{ _typeVehX = selectRandom _arrayVehAAF; - _pos = [_positionX, 10, _size/2, 10, 0, 0.3, 0] call BIS_Fnc_findSafePos; - _veh = createVehicle [_typeVehX, _pos, [], 0, "NONE"]; - _veh setDir random 360; - _vehiclesX pushBack _veh; - _nul = [_veh] call A3A_fnc_AIVEHinit; - sleep 1; - _countX = _countX + 1; + _spawnParameter = [_markerX, "Vehicle"] call A3A_fnc_findSpawnPosition; + if(_spawnParameter isEqualType []) then + { + _veh = createVehicle [_typeVehX, (_spawnParameter select 0), [], 0, "NONE"]; + _veh setDir (_spawnParameter select 1); + _vehiclesX pushBack _veh; + _nul = [_veh] call A3A_fnc_AIVEHinit; + sleep 1; + _countX = _countX + 1; + } + else + { + //No further spaces to spawn vehicle + _countX = _nVeh; }; +}; _array = []; _subArray = []; @@ -346,10 +385,12 @@ for "_i" from 0 to (count _array - 1) do _groups pushBack _groupX; {[_x,_markerX] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _groupX; if (_i == 0) then {_nul = [leader _groupX, _markerX, "SAFE", "RANDOMUP","SPAWNED", "NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"} else {_nul = [leader _groupX, _markerX, "SAFE","SPAWNED", "RANDOM","NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"}; - }; + };//TODO need delete UPSMON link waitUntil {sleep 1; (spawner getVariable _markerX == 2)}; +[_markerX] call A3A_fnc_freeSpawnPositions; + deleteMarker _mrk; {if (alive _x) then { @@ -364,5 +405,3 @@ if (!(_x in staticsToSave)) then if ((!([distanceSPWN-_size,1,_x,teamPlayer] call A3A_fnc_distanceUnits))) then {deleteVehicle _x} }; } forEach _vehiclesX; - - diff --git a/A3-Antistasi/CREATE/createAICities.sqf b/A3-Antistasi/functions/CREATE/fn_createAICities.sqf similarity index 94% rename from A3-Antistasi/CREATE/createAICities.sqf rename to A3-Antistasi/functions/CREATE/fn_createAICities.sqf index 084f1acc86..c0cb25a08c 100644 --- a/A3-Antistasi/CREATE/createAICities.sqf +++ b/A3-Antistasi/functions/CREATE/fn_createAICities.sqf @@ -22,7 +22,7 @@ _dataX = server getVariable _markerX; _prestigeOPFOR = _dataX select 2; _prestigeBLUFOR = _dataX select 3; _esAAF = true; -if (_markerX in destroyedCities) then +if (_markerX in destroyedSites) then { _esAAF = false; _params = [_positionX,Invaders,CSATSpecOp]; @@ -67,12 +67,12 @@ while {(spawner getVariable _markerX != 2) and (_countX < _num)} do [_dog] spawn A3A_fnc_guardDog; }; }; - _nul = [leader _groupX, _markerX, "SAFE", "RANDOM", "SPAWNED","NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + _nul = [leader _groupX, _markerX, "SAFE", "RANDOM", "SPAWNED","NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link _groups pushBack _groupX; _countX = _countX + 1; }; -if ((_esAAF) or (_markerX in destroyedCities)) then +if ((_esAAF) or (_markerX in destroyedSites)) then { {_grp = _x; {[_x,""] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _grp;} forEach _groups; diff --git a/A3-Antistasi/CREATE/createAIOutposts.sqf b/A3-Antistasi/functions/CREATE/fn_createAIOutposts.sqf similarity index 50% rename from A3-Antistasi/CREATE/createAIOutposts.sqf rename to A3-Antistasi/functions/CREATE/fn_createAIOutposts.sqf index 35541a84fe..1793d9651d 100644 --- a/A3-Antistasi/CREATE/createAIOutposts.sqf +++ b/A3-Antistasi/functions/CREATE/fn_createAIOutposts.sqf @@ -2,6 +2,9 @@ if (!isServer and hasInterface) exitWith{}; private ["_markerX","_vehiclesX","_groups","_soldiers","_positionX","_pos","_size","_frontierX","_sideX","_cfg","_isFIA","_garrison","_antenna","_radiusX","_buildings","_mrk","_countX","_typeGroup","_groupX","_typeUnit","_typeVehX","_veh","_unit","_flagX","_boxX","_roads","_mrkMar","_vehicle","_vehCrew","_groupVeh","_dist","_road","_roadCon","_dirVeh","_bunker","_dir","_posF"]; _markerX = _this select 0; +//Not sure if that ever happens, but it reduces redundance +if(spawner getVariable _markerX == 2) exitWith {}; + _vehiclesX = []; _groups = []; _soldiers = []; @@ -17,27 +20,27 @@ _frontierX = [_markerX] call A3A_fnc_isFrontline; _sideX = Invaders; _isFIA = false; if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then - { +{ _sideX = Occupants; if ((random 10 >= (tierWar + difficultyCoef)) and !(_frontierX) and !(_markerX in forcedSpawn)) then - { + { _isFIA = true; - }; }; +}; _antenna = objNull; if (_sideX == Occupants) then - { +{ if (_markerX in outposts) then - { + { _buildings = nearestObjects [_positionX,["Land_TTowerBig_1_F","Land_TTowerBig_2_F","Land_Communication_F"], _size]; if (count _buildings > 0) then - { + { _antenna = _buildings select 0; - }; }; }; +}; _mrk = createMarkerLocal [format ["%1patrolarea", random 100], _positionX]; _mrk setMarkerShapeLocal "RECTANGLE"; @@ -52,63 +55,67 @@ _garrison = garrison getVariable [_markerX,[]]; _garrison = _garrison call A3A_fnc_garrisonReorg; _radiusX = count _garrison; private _patrol = true; +//If one is missing, there are no patrols?? if (_radiusX < ([_markerX] call A3A_fnc_garrisonSize)) then - { +{ _patrol = false; - } +} else - { - if ({if ((getMarkerPos _x inArea _mrk) and (sidesX getVariable [_x,sideUnknown] != _sideX)) exitWIth {1}} count markersX > 0) then {_patrol = false}; - }; +{ + //No patrol if patrol area overlaps with an enemy site + _patrol = ((markersX findIf {(getMarkerPos _x inArea _mrk) && {sidesX getVariable [_x, sideUnknown] != _sideX}}) == -1); +}; if (_patrol) then - { +{ _countX = 0; - while {(spawner getVariable _markerX !=2) and (_countX < 4)} do - { + while {_countX < 4} do //Fixed number of patrols? + { _arraygroups = if (_sideX == Occupants) then - { + { if (!_isFIA) then {groupsNATOsmall} else {groupsFIASmall}; - } + } else - { + { groupsCSATsmall - }; + }; if ([_markerX,false] call A3A_fnc_fogCheck < 0.3) then {_arraygroups = _arraygroups - sniperGroups}; _typeGroup = selectRandom _arraygroups; - _groupX = [_positionX,_sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup; if !(isNull _groupX) then - { + { sleep 1; - if ((random 10 < 2.5) and (not(_typeGroup in sniperGroups))) then - { + if ((random 10 < 2.5) and (!(_typeGroup in sniperGroups))) then + { _dog = _groupX createUnit ["Fin_random_F",_positionX,[],0,"FORM"]; [_dog] spawn A3A_fnc_guardDog; sleep 1; - }; - [leader _groupX, _mrk, "SAFE","SPAWNED", "RANDOM","NOVEH2"] execVM "scripts\UPSMON.sqf"; + }; + [leader _groupX, _mrk, "SAFE","SPAWNED", "RANDOM","NOVEH2"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link _groups pushBack _groupX; {[_x,_markerX] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _groupX; - }; - _countX = _countX +1; }; + _countX = _countX +1; }; +}; -if ((_frontierX) and (spawner getVariable _markerX!=2) and (_markerX in outposts)) then - { - _groupX = createGroup _sideX; +if ((_frontierX) and (_markerX in outposts)) then +{ _typeUnit = if (_sideX==Occupants) then {staticCrewOccupants} else {staticCrewInvaders}; _typeVehX = if (_sideX == Occupants) then {NATOMortar} else {CSATMortar}; - _pos = [_positionX] call A3A_fnc_mortarPos; - _veh = _typeVehX createVehicle _pos; - _nul=[_veh] execVM "scripts\UPSMON\MON_artillery_add.sqf"; - _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; - [_unit,_markerX] call A3A_fnc_NATOinit; - _unit moveInGunner _veh; - _soldiers pushBack _unit; - _vehiclesX pushBack _veh; - sleep 1; + _spawnParameter = [_markerX, "Mortar"] call A3A_fnc_findSpawnPosition; + if(_spawnParameter isEqualType []) then + { + _groupX = createGroup _sideX; + _veh = _typeVehX createVehicle (_spawnParameter select 0); + _nul=[_veh] execVM "scripts\UPSMON\MON_artillery_add.sqf";//TODO need delete UPSMON link + _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; + [_unit,_markerX] call A3A_fnc_NATOinit; + _unit moveInGunner _veh; + _soldiers pushBack _unit; + _vehiclesX pushBack _veh; + sleep 1; }; +}; _ret = [_markerX,_size,_sideX,_frontierX] call A3A_fnc_milBuildings; _groups pushBack (_ret select 0); @@ -116,134 +123,164 @@ _vehiclesX append (_ret select 1); _soldiers append (_ret select 2); _typeVehX = if (_sideX == Occupants) then {NATOFlag} else {CSATFlag}; -_flagX = createVehicle [_typeVehX, _positionX, [],0, "CAN_COLLIDE"]; +_flagX = createVehicle [_typeVehX, _positionX, [],0, "NONE"]; _flagX allowDamage false; [_flagX,"take"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_flagX]; _vehiclesX pushBack _flagX; _boxX = objNull; if (_sideX == Occupants) then - { +{ _boxX = NATOAmmoBox createVehicle _positionX; - _nul = [_boxX] call A3A_fnc_NATOcrate; - } + [_boxX] spawn A3A_fnc_NATOcrate; +} else - { +{ _boxX = CSATAmmoBox createVehicle _positionX; - _nul = [_boxX] call A3A_fnc_CSATcrate; - }; + [_boxX] spawn A3A_fnc_CSATcrate; +}; _vehiclesX pushBack _boxX; _boxX call jn_fnc_logistics_addAction; {_nul = [_x] call A3A_fnc_AIVEHinit;} forEach _vehiclesX; _roads = _positionX nearRoads _size; -if ((_markerX in seaports) and (spawner getVariable _markerX!=2) and !hasIFA) then - { +if ((_markerX in seaports) and !hasIFA) then +{ _typeVehX = if (_sideX == Occupants) then {vehNATOBoat} else {vehCSATBoat}; if ([_typeVehX] call A3A_fnc_vehAvailable) then - { + { _mrkMar = seaSpawn select {getMarkerPos _x inArea _markerX}; - _pos = (getMarkerPos (_mrkMar select 0)) findEmptyPosition [0,20,_typeVehX]; - _vehicle=[_pos, 0,_typeVehX, _sideX] call bis_fnc_spawnvehicle; - _veh = _vehicle select 0; - [_veh] call A3A_fnc_AIVEHinit; - _vehCrew = _vehicle select 1; - {[_x,_markerX] call A3A_fnc_NATOinit} forEach _vehCrew; - _groupVeh = _vehicle select 2; - _soldiers = _soldiers + _vehCrew; - _groups pushBack _groupVeh; - _vehiclesX pushBack _veh; - sleep 1; + if(count _mrkMar > 0) then + { + _pos = (getMarkerPos (_mrkMar select 0)) findEmptyPosition [0,20,_typeVehX]; + _vehicle=[_pos, 0,_typeVehX, _sideX] call bis_fnc_spawnvehicle; + _veh = _vehicle select 0; + [_veh] call A3A_fnc_AIVEHinit; + _vehCrew = _vehicle select 1; + {[_x,_markerX] call A3A_fnc_NATOinit} forEach _vehCrew; + _groupVeh = _vehicle select 2; + _soldiers = _soldiers + _vehCrew; + _groups pushBack _groupVeh; + _vehiclesX pushBack _veh; + sleep 1; + } + else + { + diag_log format ["createAIOutposts: Could not find seaSpawn marker on %1!", _markerX]; }; - {_boxX addItemCargoGlobal [_x,2]} forEach diveGear; - } -else + }; { + _boxX addItemCargoGlobal [_x,2] + } forEach diveGear; +} +else +{ if (_frontierX) then + { + if (count _roads != 0) then { - if (spawner getVariable _markerX!=2) then + _dist = 0; + _road = objNull; { - if (count _roads != 0) then + if ((position _x) distance _positionX > _dist) then { - _dist = 0; - _road = objNull; - {if ((position _x) distance _positionX > _dist) then {_road = _x;_dist = position _x distance _positionX}} forEach _roads; - _roadscon = roadsConnectedto _road; - _roadcon = objNull; - {if ((position _x) distance _positionX > _dist) then {_roadcon = _x}} forEach _roadscon; - _dirveh = [_roadcon, _road] call BIS_fnc_DirTo; - if (!_isFIA) then - { - _groupX = createGroup _sideX; - _groups pushBack _groupX; - _pos = [getPos _road, 7, _dirveh + 270] call BIS_Fnc_relPos; - _bunker = "Land_BagBunker_01_Small_green_F" createVehicle _pos; - _vehiclesX pushBack _bunker; - _bunker setDir _dirveh; - _pos = getPosATL _bunker; - _typeVehX = if (_sideX==Occupants) then {staticATOccupants} else {staticATInvaders}; - _veh = _typeVehX createVehicle _positionX; - _vehiclesX pushBack _veh; - _veh setPos _pos; - _veh setDir _dirVeh + 180; - _typeUnit = if (_sideX==Occupants) then {staticCrewOccupants} else {staticCrewInvaders}; - _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; - [_unit,_markerX] call A3A_fnc_NATOinit; - [_veh] call A3A_fnc_AIVEHinit; - _unit moveInGunner _veh; - _soldiers pushBack _unit; - } - else - { - _typeGroup = selectRandom groupsFIAMid; - _groupX = [_positionX, _sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup; - if !(isNull _groupX) then - { - _veh = vehFIAArmedCar createVehicle getPos _road; - _veh setDir _dirveh + 90; - _nul = [_veh] call A3A_fnc_AIVEHinit; - _vehiclesX pushBack _veh; - sleep 1; - _unit = _groupX createUnit [FIARifleman, _positionX, [], 0, "NONE"]; - _unit moveInGunner _veh; - {_soldiers pushBack _x; [_x,_markerX] call A3A_fnc_NATOinit} forEach units _groupX; - }; - }; + _road = _x; + _dist = position _x distance _positionX; }; - }; + } forEach _roads; + _roadscon = roadsConnectedto _road; + _roadcon = objNull; + //This is a extrem complex way, use vector and scalar product to determine which way they are pointing + { + if ((position _x) distance _positionX > _dist) then + { + _roadcon = _x; + }; + } forEach _roadscon; + _dirveh = [_roadcon, _road] call BIS_fnc_DirTo; + //if (!_isFIA) then _isFIA can only be true if _frontierX (line 167) is false, if unneeded, else case not possible + //{ + + _groupX = createGroup _sideX; + _groups pushBack _groupX; + _pos = [getPos _road, 7, _dirveh + 270] call BIS_Fnc_relPos; + _bunker = "Land_BagBunker_01_Small_green_F" createVehicle _pos; + _vehiclesX pushBack _bunker; + _bunker setDir _dirveh; + _pos = getPosATL _bunker; + _typeVehX = if (_sideX==Occupants) then {staticATOccupants} else {staticATInvaders}; + _veh = _typeVehX createVehicle _positionX; + _vehiclesX pushBack _veh; + _veh setPos _pos; + _veh setDir _dirVeh + 180; + _typeUnit = if (_sideX==Occupants) then {staticCrewOccupants} else {staticCrewInvaders}; + _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; + [_unit,_markerX] call A3A_fnc_NATOinit; + [_veh] call A3A_fnc_AIVEHinit; + _unit moveInGunner _veh; + _soldiers pushBack _unit; + + //Else case not possible, see line 181 + // } + // else + // { + // _typeGroup = selectRandom groupsFIAMid; + // _groupX = [_positionX, _sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup; + // if !(isNull _groupX) then + // { + // _veh = vehFIAArmedCar createVehicle getPos _road; + // _veh setDir _dirveh + 90; + // _nul = [_veh] call A3A_fnc_AIVEHinit; + // _vehiclesX pushBack _veh; + // sleep 1; + // _unit = _groupX createUnit [FIARifleman, _positionX, [], 0, "NONE"]; + // _unit moveInGunner _veh; + // {_soldiers pushBack _x; [_x,_markerX] call A3A_fnc_NATOinit} forEach units _groupX; + // }; + // }; }; }; +}; +//Why does the truck depends on roads? if (count _roads != 0) then +{ + //_pos = _positionX findEmptyPosition [5,_size,"I_Truck_02_covered_F"];//donde pone 5 antes ponĆ­a 10 + _spawnParameter = [_markerX, "Vehicle"] call A3A_fnc_findSpawnPosition; + if (_spawnParameter isEqualType []) then { - _pos = _positionX findEmptyPosition [5,_size,"I_Truck_02_covered_F"];//donde pone 5 antes ponĆ­a 10 - if (count _pos > 0) then + _typeVehX = if (_sideX == Occupants) then + { + if (!_isFIA) then {vehNATOTrucks + vehNATOCargoTrucks} else {[vehFIATruck]}; + } + else { - _typeVehX = if (_sideX == Occupants) then {if (!_isFIA) then {vehNATOTrucks + vehNATOCargoTrucks} else {[vehFIATruck]}} else {vehCSATTrucks}; - _veh = createVehicle [selectRandom _typeVehX, _pos, [], 0, "NONE"]; - _veh setDir random 360; + vehCSATTrucks + }; + _veh = createVehicle [selectRandom _typeVehX, (_spawnParameter select 0), [], 0, "NONE"]; + _veh setDir (_spawnParameter select 1); _vehiclesX pushBack _veh; _nul = [_veh] call A3A_fnc_AIVEHinit; sleep 1; - }; }; +}; _countX = 0; -if ((!isNull _antenna) and (spawner getVariable _markerX!=2)) then - { +if (!isNull _antenna) then +{ if ((typeOf _antenna == "Land_TTowerBig_1_F") or (typeOf _antenna == "Land_TTowerBig_2_F")) then - { + { _groupX = createGroup _sideX; _pos = getPosATL _antenna; _dir = getDir _antenna; _posF = _pos getPos [2,_dir]; _posF set [2,23.1]; if (typeOf _antenna == "Land_TTowerBig_2_F") then - { + { _posF = _pos getPos [1,_dir]; _posF set [2,24.3]; - }; + }; _typeUnit = if (_sideX == Occupants) then {if (!_isFIA) then {NATOMarksman} else {FIAMarksman}} else {CSATMarksman}; _unit = _groupX createUnit [_typeUnit, _positionX, [], _dir, "NONE"]; _unit setPosATL _posF; @@ -254,25 +291,45 @@ if ((!isNull _antenna) and (spawner getVariable _markerX!=2)) then [_unit,_markerX] call A3A_fnc_NATOinit; _soldiers pushBack _unit; _groups pushBack _groupX; - }; }; +}; _array = []; _subArray = []; _countX = 0; _radiusX = _radiusX -1; while {_countX <= _radiusX} do - { +{ _array pushBack (_garrison select [_countX,7]); _countX = _countX + 8; - }; +}; + for "_i" from 0 to (count _array - 1) do +{ + //What is so special about the first? + _groupX = if (_i == 0) then + { + [_positionX,_sideX, (_array select _i),true,false] call A3A_fnc_spawnGroup + } + else { - _groupX = if (_i == 0) then {[_positionX,_sideX, (_array select _i),true,false] call A3A_fnc_spawnGroup} else {[_positionX,_sideX, (_array select _i),false,true] call A3A_fnc_spawnGroup}; + [_positionX,_sideX, (_array select _i),false,true] call A3A_fnc_spawnGroup + }; _groups pushBack _groupX; - {[_x,_markerX] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _groupX; - if (_i == 0) then {_nul = [leader _groupX, _markerX, "SAFE", "RANDOMUP","SPAWNED", "NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"} else {_nul = [leader _groupX, _markerX, "SAFE","SPAWNED", "RANDOM","NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"}; + { + [_x,_markerX] call A3A_fnc_NATOinit; + _soldiers pushBack _x; + } forEach units _groupX; + if (_i == 0) then + { + //Can't we just precompile this and call this like every other funtion? Would save some time + _nul = [leader _groupX, _markerX, "SAFE", "RANDOMUP", "SPAWNED", "NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + } + else + { + _nul = [leader _groupX, _markerX, "SAFE", "SPAWNED", "RANDOM","NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"; }; +};//TODO need delete UPSMON link if (_markerX in seaports) then @@ -283,19 +340,28 @@ if (_markerX in seaports) then waitUntil {sleep 1; (spawner getVariable _markerX == 2)}; +[_markerX] call A3A_fnc_freeSpawnPositions; + deleteMarker _mrk; //{if ((!alive _x) and (not(_x in destroyedBuildings))) then {destroyedBuildings = destroyedBuildings + [position _x]; publicVariableServer "destroyedBuildings"}} forEach _buildings; { -if (alive _x) then + if (alive _x) then { - deleteVehicle _x + deleteVehicle _x; }; } forEach _soldiers; //if (!isNull _periodista) then {deleteVehicle _periodista}; -{deleteGroup _x} forEach _groups; { -if (!(_x in staticsToSave)) then + deleteGroup _x +} forEach _groups; + +{ + if (!(_x in staticsToSave)) then { - if ((!([distanceSPWN-_size,1,_x,teamPlayer] call A3A_fnc_distanceUnits))) then {deleteVehicle _x} + //distanceSPWN - _size? Shouldn't it be distanceSPWN + _size + if ((!([distanceSPWN-_size,1,_x,teamPlayer] call A3A_fnc_distanceUnits))) then + { + deleteVehicle _x; + }; }; } forEach _vehiclesX; diff --git a/A3-Antistasi/functions/CREATE/fn_createAIResources.sqf b/A3-Antistasi/functions/CREATE/fn_createAIResources.sqf new file mode 100644 index 0000000000..da0b94e585 --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_createAIResources.sqf @@ -0,0 +1,263 @@ +if (!isServer and hasInterface) exitWith{}; + +private ["_markerX","_vehiclesX","_groups","_soldiers","_civs","_positionX","_pos","_typeGroup","_typeCiv","_size","_mrk","_ang","_countX","_groupX","_veh","_civ","_frontierX","_flagX","_dog","_garrison","_sideX","_cfg","_isFIA","_roads","_dist","_road","_roadscon","_roadcon","_dirveh","_bunker","_typeVehX","_typeUnit","_unit","_typeGroup","_stance"]; +_markerX = _this select 0; + +//Not sure if that ever happens, but it reduces redundance +if(spawner getVariable _markerX == 2) exitWith {}; + +diag_log format ["[Antistasi] Spawning Resource Point %1 (createAIResources.sqf)", _markerX]; + +_positionX = getMarkerPos _markerX; + +_size = [_markerX] call A3A_fnc_sizeMarker; + +_civs = []; +_soldiers = []; +_groups = []; +_vehiclesX = []; + +_frontierX = [_markerX] call A3A_fnc_isFrontline; + +_sideX = Invaders; + +_isFIA = false; +if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then +{ + _sideX = Occupants; + if ((random 10 <= (tierWar + difficultyCoef)) and !(_frontierX)) then //Forced spawn is missing (check createAI outpost) + { + _isFIA = true; + }; +}; + +if (_frontierX) then +{ + _roads = _positionX nearRoads _size; + if (count _roads != 0) then + { + _dist = 0; + _road = objNull; + {if ((position _x) distance _positionX > _dist) then {_road = _x;_dist = position _x distance _positionX}} forEach _roads; + _roadscon = roadsConnectedto _road; + _roadcon = objNull; + {if ((position _x) distance _positionX > _dist) then {_roadcon = _x}} forEach _roadscon; + _dirveh = [_roadcon, _road] call BIS_fnc_DirTo; + + //if (!_isFIA) then + //{ + + _groupX = createGroup _sideX; + _groups pushBack _groupX; + _pos = [getPos _road, 7, _dirveh + 270] call BIS_Fnc_relPos; + _bunker = "Land_BagBunker_01_small_green_F" createVehicle _pos; + _vehiclesX pushBack _bunker; + _bunker setDir _dirveh; + _pos = getPosATL _bunker; + _typeVehX = if (_sideX==Occupants) then {staticATOccupants} else {staticATInvaders}; + _veh = _typeVehX createVehicle _positionX; + _vehiclesX pushBack _veh; + _veh setPos _pos; + _veh setDir _dirVeh + 180; + _typeUnit = if (_sideX==Occupants) then {staticCrewOccupants} else {staticCrewInvaders}; + _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; + [_unit,_markerX] call A3A_fnc_NATOinit; + [_veh] call A3A_fnc_AIVEHinit; + _unit moveInGunner _veh; + _soldiers pushBack _unit; + + // } + // else + // { + // //Same here this case cannot happen, see createAIOutposts + // _typeGroup = selectRandom groupsFIAMid; + // _groupX = [_positionX, _sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup; + // if !(isNull _groupX) then + // { + // _veh = vehFIAArmedCar createVehicle getPos _road; + // _veh setDir _dirveh + 90; + // _nul = [_veh] call A3A_fnc_AIVEHinit; + // _vehiclesX pushBack _veh; + // sleep 1; + // _unit = _groupX createUnit [FIARifleman, _positionX, [], 0, "NONE"]; + // _unit moveInGunner _veh; + // {_soldiers pushBack _x; [_x,_markerX] call A3A_fnc_NATOinit} forEach units _groupX; + // }; + // }; + }; +}; + +_mrk = createMarkerLocal [format ["%1patrolarea", random 100], _positionX]; +_mrk setMarkerShapeLocal "RECTANGLE"; +_mrk setMarkerSizeLocal [(distanceSPWN/2),(distanceSPWN/2)]; +_mrk setMarkerTypeLocal "hd_warning"; +_mrk setMarkerColorLocal "ColorRed"; +_mrk setMarkerBrushLocal "DiagGrid"; +_ang = markerDir _markerX; +_mrk setMarkerDirLocal _ang; +if (!debug) then {_mrk setMarkerAlphaLocal 0}; +_garrison = garrison getVariable [_markerX,[]]; +_garrison = _garrison call A3A_fnc_garrisonReorg; +_radiusX = count _garrison; +private _patrol = true; +//If one is missing, there are no patrols?? +if (_radiusX < ([_markerX] call A3A_fnc_garrisonSize)) then +{ + _patrol = false; +} +else +{ + //No patrol if patrol area overlaps with an enemy site + _patrol = ((markersX findIf {(getMarkerPos _x inArea _mrk) && {sidesX getVariable [_x, sideUnknown] != _sideX}}) == -1); +}; +if (_patrol) then +{ + _countX = 0; + while {_countX < 4} do + { + _arraygroups = if (_sideX == Occupants) then + { + if (!_isFIA) then {groupsNATOsmall} else {groupsFIASmall}; + } + else + { + groupsCSATsmall + }; + if ([_markerX,false] call A3A_fnc_fogCheck < 0.3) then {_arraygroups = _arraygroups - sniperGroups}; + _typeGroup = selectRandom _arraygroups; + _groupX = [_positionX,_sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup; + if !(isNull _groupX) then + { + sleep 1; + if ((random 10 < 2.5) and (not(_typeGroup in sniperGroups))) then + { + _dog = _groupX createUnit ["Fin_random_F",_positionX,[],0,"FORM"]; + [_dog] spawn A3A_fnc_guardDog; + sleep 1; + }; + _nul = [leader _groupX, _mrk, "SAFE","SPAWNED", "RANDOM","NOVEH2"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link + _groups pushBack _groupX; + {[_x,_markerX] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _groupX; + }; + _countX = _countX +1; + }; +}; + +_typeVehX = if (_sideX == Occupants) then {NATOFlag} else {CSATFlag}; +_flagX = createVehicle [_typeVehX, _positionX, [],0, "NONE"]; +_flagX allowDamage false; +[_flagX,"take"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_flagX]; +_vehiclesX pushBack _flagX; + +if (not(_markerX in destroyedSites)) then +{ + if ((daytime > 8) and (daytime < 18)) then + { + _groupX = createGroup civilian; + _groups pushBack _groupX; + for "_i" from 1 to 4 do + { + _civ = _groupX createUnit ["C_man_w_worker_F", _positionX, [],0, "NONE"]; + _nul = [_civ] spawn A3A_fnc_CIVinit; + _civs pushBack _civ; + _civ setVariable ["markerX",_markerX,true]; + sleep 0.5; + _civ addEventHandler ["Killed", + { + if (({alive _x} count (units group (_this select 0))) == 0) then + { + _markerX = (_this select 0) getVariable "markerX"; + _nameX = [_markerX] call A3A_fnc_localizar; + destroyedSites pushBackUnique _markerX; + publicVariable "destroyedSites"; + ["TaskFailed", ["", format ["%1 Destroyed",_nameX]]] remoteExec ["BIS_fnc_showNotification",[teamPlayer,civilian]]; + }; + }]; + }; + //_nul = [_markerX,_civs] spawn destroyCheck; + _nul = [leader _groupX, _markerX, "SAFE", "SPAWNED","NOFOLLOW", "NOSHARE","DORELAX","NOVEH2"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link + }; +}; + +//_pos = _positionX findEmptyPosition [5,_size,"I_Truck_02_covered_F"];//donde pone 5 antes ponĆ­a 10 +private _spawnParameter = [_markerX, "Vehicle"] call A3A_fnc_findSpawnPosition; +if (_spawnParameter isEqualType []) then +{ + _typeVehX = if (_sideX == Occupants) then + { + if (!_isFIA) then {vehNATOTrucks + vehNATOCargoTrucks} else {[vehFIATruck]}; + } + else + { + vehCSATTrucks + }; + _veh = createVehicle [selectRandom _typeVehX, (_spawnParameter select 0), [], 0, "NONE"]; + _veh setDir (_spawnParameter select 1); + _vehiclesX pushBack _veh; + _nul = [_veh] call A3A_fnc_AIVEHinit; + sleep 1; +}; + +_array = []; +_subArray = []; +_countX = 0; +_radiusX = _radiusX -1; +while {_countX <= _radiusX} do +{ + _array pushBack (_garrison select [_countX,7]); + _countX = _countX + 8; +}; + +for "_i" from 0 to (count _array - 1) do + { + _groupX = if (_i == 0) then + { + [_positionX,_sideX, (_array select _i),true,false] call A3A_fnc_spawnGroup + } + else + { + [_positionX,_sideX, (_array select _i),false,true] call A3A_fnc_spawnGroup + }; + _groups pushBack _groupX; + { + [_x,_markerX] call A3A_fnc_NATOinit; + _soldiers pushBack _x; + } forEach units _groupX; + if (_i == 0) then + { + //Can't we just precompile this and call this like every other funtion? Would save some time + _nul = [leader _groupX, _markerX, "SAFE", "RANDOMUP","SPAWNED", "NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + } + else + { + _nul = [leader _groupX, _markerX, "SAFE","SPAWNED", "RANDOM","NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + }; + };//TODO need delete UPSMON link + +waitUntil {sleep 1; (spawner getVariable _markerX == 2)}; + +[_markerX] call A3A_fnc_freeSpawnPositions; + +deleteMarker _mrk; +{ + if (alive _x) then + { + deleteVehicle _x + }; +} forEach _soldiers; +//if (!isNull _periodista) then {deleteVehicle _periodista}; +//Deleting civs before deleting groups +{ + deleteVehicle _x +} forEach _civs; +{ + deleteGroup _x +} forEach _groups; + +{ + //distanceSPWN - _size? Shouldn't it be distanceSPWN + _size + if (!([distanceSPWN-_size,1,_x,teamPlayer] call A3A_fnc_distanceUnits)) then + { + deleteVehicle _x; + } +} forEach _vehiclesX; diff --git a/A3-Antistasi/functions/CREATE/fn_createAISite.sqf b/A3-Antistasi/functions/CREATE/fn_createAISite.sqf new file mode 100644 index 0000000000..f9e24cf699 --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_createAISite.sqf @@ -0,0 +1,96 @@ +if(!isServer && hasInterface) exitWith {}; + +params ["_marker"]; + +//Not sure if that ever happens, but it reduces redundance +//if(spawner getVariable _marker == 2) exitWith {}; + +_markerPos = getMarkerPos _marker; + +//Calculating marker size and max length; +_markerSize = markerSize _marker; +_markerLength = (_markerSize select 0) max (_markerSize select 1); + +_isFrontline = [_marker] call A3A_fnc_isFrontline; + +_side = sidesX getVariable [_marker, sideUnknown]; +_isMilitia = false; + +if(_side == sideUnknown) exitWith +{ + diag_log format ["CreateAISide: Could not get side of %1", _marker]; +}; + +//Check if the outpost is hold by militia +if(_side == Occupants) then +{ + //Frontline is never hold by militia + if(!_isFrontline && {!(_marker in airportsX)}) then + { + _chance = 10 min (tierWar + difficultyCoef); + _isMilitia = selectRandomWeighted [false, _chance, true, (10 - _chance)]; //Well it doesn't change the units (facepalm) + }; +}; + +_patrolMarkerSize = [0,0]; +if(_isFrontline || _isMilitia) then +{ + //Cannot risk to spread to thin, stay close + diag_log format ["Decided smaller radius for patrol, due to %1!",if(_isFrontline) then {if(_isMilitia) then {"both"} else {"frontline"};} else {"militia"}]; + _patrolMarkerSize = [(distanceSPWN/8), (distanceSPWN/8)]; +} +else +{ + //Full patrol way, not so extrem like in the original + diag_log "Decided larger radius for patrol!"; + _patrolMarkerSize = [(distanceSPWN/4), (distanceSPWN/4)]; +}; + +//Adding marker size and additional size +_patrolMarkerSize set [0, (_patrolMarkerSize select 0) + (_markerSize select 0)]; +_patrolMarkerSize set [1, (_patrolMarkerSize select 1) + (_markerSize select 1)]; + + +_patrolMarker = createMarkerLocal [format ["%1_patrol_%2", _marker, random 100], _markerPos]; +_patrolMarker setMarkerShapeLocal "ELLIPSE"; +_patrolMarker setMarkerSizeLocal _patrolMarkerSize; +_patrolMarker setMarkerTypeLocal "hd_warning"; +_patrolMarker setMarkerColorLocal "ColorRed"; +_patrolMarker setMarkerBrushLocal "DiagGrid"; +_patrolMarker setMarkerDirLocaL (markerDir _marker); + +if(!debug) then +{ + _patrolMarker setMarkerAlphaLocal 0; +}; + +_typeFlag = if (_side == Occupants) then {NATOFlag} else {CSATFlag}; +_flag = createVehicle [_typeFlag, _markerPos, [], 0, "NONE"]; +_flag allowDamage false; +[_flag,"take"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_flag]; + +_box = objNull; +if(_marker in airportsX || {_marker in seaports || {_marker in outposts}}) then +{ + if (_side == Occupants) then + { + _box = NATOAmmoBox createVehicle _markerPos; + [_box] spawn A3A_fnc_NATOcrate; + } + else + { + _box = CSATAmmoBox createVehicle _markerPos; + [_box] spawn A3A_fnc_CSATcrate; + }; + _box call jn_fnc_logistics_addAction; + + if (_marker in seaports) then + { + _box addItemCargo ["V_RebreatherIA", round (random 5)]; + _box addItemCargo ["G_I_Diving", round (random 5)]; + }; +}; + +[_marker, _patrolMarker, _flag, _box] call A3A_fnc_cycleSpawn; + +diag_log "Marker spawn prepared!"; diff --git a/A3-Antistasi/CREATE/createAIcontrols.sqf b/A3-Antistasi/functions/CREATE/fn_createAIcontrols.sqf old mode 100755 new mode 100644 similarity index 95% rename from A3-Antistasi/CREATE/createAIcontrols.sqf rename to A3-Antistasi/functions/CREATE/fn_createAIcontrols.sqf index 02e68173bd..2234bb896b --- a/A3-Antistasi/CREATE/createAIcontrols.sqf +++ b/A3-Antistasi/functions/CREATE/fn_createAIcontrols.sqf @@ -87,7 +87,7 @@ if (_isControl) then _pos = getPosATL _bunker; _pos = [getPos _bunker, 6, getDir _bunker] call BIS_fnc_relPos; _typeVehX = if (_sideX == Occupants) then {NATOFlag} else {CSATFlag}; - _veh = createVehicle [_typeVehX, _pos, [],0, "CAN_COLLIDE"]; + _veh = createVehicle [_typeVehX, _pos, [],0, "NONE"]; _vehiclesX pushBack _veh; _veh setPosATL _pos; _veh setDir _dirVeh; @@ -99,7 +99,7 @@ if (_isControl) then {_nul = [_x] call A3A_fnc_AIVEHinit} forEach _vehiclesX; }; _typeGroup = if (_sideX == Occupants) then {selectRandom groupsNATOmid} else {selectRandom groupsCSATmid}; - _groupX = if !(hasIFA) then {[_positionX,_sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup} else {[_positionX,_sideX, _typeGroup] call A3A_fnc_spawnGroup}; + _groupX = [_positionX,_sideX, _typeGroup, true] call A3A_fnc_spawnGroup; if !(isNull _groupX) then { if !(hasIFA) then @@ -112,7 +112,7 @@ if (_isControl) then _dog = _groupX createUnit ["Fin_random_F",_positionX,[],0,"FORM"]; [_dog,_groupX] spawn A3A_fnc_guardDog; }; - _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link {[_x,""] call A3A_fnc_NATOinit; _soldiers pushBack _x} forEach units _groupX; }; } @@ -125,7 +125,7 @@ if (_isControl) then _vehiclesX pushBack _veh; sleep 1; _typeGroup = selectRandom groupsFIAMid; - _groupX = if !(hasIFA) then {[_positionX, _sideX, _typeGroup,false,true] call A3A_fnc_spawnGroup} else {[_positionX, _sideX, _typeGroup] call A3A_fnc_spawnGroup}; + _groupX = [_positionX, _sideX, _typeGroup, true] call A3A_fnc_spawnGroup; if !(isNull _groupX) then { _unit = _groupX createUnit [FIARifleman, _positionX, [], 0, "NONE"]; @@ -157,7 +157,7 @@ else }; }; _groupX = [_positionX,_sideX, _cfg] call A3A_fnc_spawnGroup; - _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","RANDOM","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","RANDOM","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link if !(hasIFA) then { sleep 1; diff --git a/A3-Antistasi/CREATE/createCIV.sqf b/A3-Antistasi/functions/CREATE/fn_createCIV.sqf similarity index 93% rename from A3-Antistasi/CREATE/createCIV.sqf rename to A3-Antistasi/functions/CREATE/fn_createCIV.sqf index a3f7dd5aa6..4a9d6f3830 100644 --- a/A3-Antistasi/CREATE/createCIV.sqf +++ b/A3-Antistasi/functions/CREATE/fn_createCIV.sqf @@ -1,19 +1,22 @@ if (!isServer and hasInterface) exitWith{}; +private _fileName = "fn_createCIV.sqf"; + private ["_markerX","_dataX","_numCiv","_numVeh","_roads","_prestigeOPFOR","_prestigeBLUFOR","_civs","_groups","_vehiclesX","_civsPatrol","_groupsPatrol","_vehPatrol","_typeCiv","_typeVehX","_dirVeh","_countX","_groupX","_size","_road","_typeVehX","_dirVeh","_positionX","_area","_civ","_veh","_roadcon","_pos","_p1","_p2","_mrkMar","_patrolCities","_countPatrol","_burst","_groupP","_wp","_wp1"]; _markerX = _this select 0; -if (_markerX in destroyedCities) exitWith {}; +if (_markerX in destroyedSites) exitWith {}; _dataX = server getVariable _markerX; _numCiv = _dataX select 0; _numVeh = _dataX select 1; //_roads = _dataX select 2; -_roads = roadsX getVariable _markerX;// -//_prestigeOPFOR = _dataX select 3; -//_prestigeBLUFOR = _dataX select 4; +_roads = roadsX getVariable [_markerX, []]; +if (count _roads == 0) then { + [1, format ["Roads not found for marker %1", _markerX], _fileName] call A3A_fnc_log; +}; _prestigeOPFOR = _dataX select 2; _prestigeBLUFOR = _dataX select 3; @@ -63,7 +66,7 @@ while {(spawner getVariable _markerX != 2) and (_countX < _numVeh) and (_countX _mrk setMarkerSize [5, 5]; _mrk setMarkerShape "RECTANGLE"; _mrk setMarkerBrush "SOLID"; - _mrk setMarkerColor colourTeamPlayer; + _mrk setMarkerColor colorTeamPlayer; //_mrk setMarkerText _nameX; */ _veh = _typeVehX createVehicle _pos; @@ -107,7 +110,7 @@ if ((random 100 < ((prestigeNATO) + (prestigeCSAT))) and (spawner getVariable _m _civ = _groupX createUnit ["C_journalist_F", _pos, [],0, "NONE"]; _nul = [_civ] spawn A3A_fnc_CIVinit; _civs pushBack _civ; - _nul = [_civ, _markerX, "SAFE", "SPAWNED","NOFOLLOW", "NOVEH2","NOSHARE","DoRelax"] execVM "scripts\UPSMON.sqf"; + _nul = [_civ, _markerX, "SAFE", "SPAWNED","NOFOLLOW", "NOVEH2","NOSHARE","DoRelax"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link }; @@ -139,7 +142,7 @@ if ([_markerX,false] call A3A_fnc_fogCheck > 0.2) then //_p1 = getPos (_roads select _countX); _p2 = getPos (_roadcon select 0); _dirveh = [_p1,_p2] call BIS_fnc_DirTo; - _typeVehX = arrayCivVeh call BIS_Fnc_selectRandom; + _typeVehX = selectRandom arrayCivVeh; _veh = _typeVehX createVehicle _p1; _veh setDir _dirveh; _veh addEventHandler ["HandleDamage",{if (((_this select 1) find "wheel" != -1) and (_this select 4=="") and (!isPlayer driver (_this select 0))) then {0;} else {(_this select 2);};}]; @@ -163,7 +166,7 @@ if ([_markerX,false] call A3A_fnc_fogCheck > 0.2) then _groupP addVehicle _veh; _groupP setBehaviour "CARELESS"; _veh limitSpeed 50; - _posDestination = selectRandom (roadsX getVariable (_patrolCities select _countPatrol)); + _posDestination = selectRandom (roadsX getVariable (_patrolCities select _countPatrol)); _wp = _groupP addWaypoint [_posDestination,0]; _wp setWaypointType "MOVE"; _wp setWaypointSpeed "LIMITED"; diff --git a/A3-Antistasi/CREATE/createFIAOutposts2.sqf b/A3-Antistasi/functions/CREATE/fn_createFIAOutposts2.sqf similarity index 100% rename from A3-Antistasi/CREATE/createFIAOutposts2.sqf rename to A3-Antistasi/functions/CREATE/fn_createFIAOutposts2.sqf diff --git a/A3-Antistasi/CREATE/createSDKgarrisons.sqf b/A3-Antistasi/functions/CREATE/fn_createSDKgarrisons.sqf similarity index 87% rename from A3-Antistasi/CREATE/createSDKgarrisons.sqf rename to A3-Antistasi/functions/CREATE/fn_createSDKgarrisons.sqf index 25ac3da060..0715ec1aeb 100644 --- a/A3-Antistasi/CREATE/createSDKgarrisons.sqf +++ b/A3-Antistasi/functions/CREATE/fn_createSDKgarrisons.sqf @@ -19,7 +19,7 @@ if (_markerX != "Synd_HQ") then { if (!(_markerX in citiesX)) then { - _veh = createVehicle [SDKFlag, _positionX, [],0, "CAN_COLLIDE"]; + _veh = createVehicle [SDKFlag, _positionX, [],0, "NONE"]; if (hasIFA) then {_veh setFlagTexture SDKFlagTexture}; _veh allowDamage false; _vehiclesX pushBack _veh; @@ -30,7 +30,7 @@ if (_markerX != "Synd_HQ") then }; if ((_markerX in resourcesX) or (_markerX in factories)) then { - if (not(_markerX in destroyedCities)) then + if (not(_markerX in destroyedSites)) then { if ((daytime > 8) and (daytime < 18)) then { @@ -51,15 +51,15 @@ if (_markerX != "Synd_HQ") then { _markerX = (_this select 0) getVariable "markerX"; _nameX = [_markerX] call A3A_fnc_localizar; - destroyedCities pushBackUnique _markerX; - publicVariable "destroyedCities"; + destroyedSites pushBackUnique _markerX; + publicVariable "destroyedSites"; ["TaskFailed", ["", format ["%1 Destroyed",_nameX]]] remoteExec ["BIS_fnc_showNotification",[teamPlayer,civilian]]; }; }]; }; }; //_nul = [_markerX,_civs] spawn destroyCheck; - _nul = [leader _groupX, _markerX, "SAFE", "SPAWNED","NOFOLLOW", "NOSHARE","DORELAX","NOVEH2"] execVM "scripts\UPSMON.sqf"; + _nul = [leader _groupX, _markerX, "SAFE", "SPAWNED","NOFOLLOW", "NOSHARE","DORELAX","NOVEH2"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link }; }; }; @@ -82,7 +82,7 @@ if (typeOf _x == SDKMortar) then { _unit = _groupMortar createUnit [(_garrison select _index), _positionX, [], 0, "NONE"]; _unit moveInGunner _x; - _nul=[_x] execVM "scripts\UPSMON\MON_artillery_add.sqf"; + _nul=[_x] execVM "scripts\UPSMON\MON_artillery_add.sqf";//TODO need delete UPSMON link } else { @@ -101,7 +101,7 @@ if (staticCrewTeamPlayer in _garrison) then _pos = [_positionX] call A3A_fnc_mortarPos; _veh = SDKMortar createVehicle _pos; _vehiclesX pushBack _veh; - _nul=[_veh] execVM "scripts\UPSMON\MON_artillery_add.sqf"; + _nul=[_veh] execVM "scripts\UPSMON\MON_artillery_add.sqf";//TODO need delete UPSMON link _unit assignAsGunner _veh; _unit moveInGunner _veh; [_veh] call A3A_fnc_AIVEHinit; @@ -135,11 +135,11 @@ for "_i" from 0 to (count _groups) - 1 do _groupX = _groups select _i; if (_i == 0) then { - _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","RANDOMUP","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","RANDOMUP","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link } else { - _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","RANDOM","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","RANDOM","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link }; }; waitUntil {sleep 1; (spawner getVariable _markerX == 2)}; diff --git a/A3-Antistasi/CREATE/createSDKgarrisonsTemp.sqf b/A3-Antistasi/functions/CREATE/fn_createSDKgarrisonsTemp.sqf similarity index 89% rename from A3-Antistasi/CREATE/createSDKgarrisonsTemp.sqf rename to A3-Antistasi/functions/CREATE/fn_createSDKgarrisonsTemp.sqf index 3b86f7285a..782f0a0ca8 100644 --- a/A3-Antistasi/CREATE/createSDKgarrisonsTemp.sqf +++ b/A3-Antistasi/functions/CREATE/fn_createSDKgarrisonsTemp.sqf @@ -18,14 +18,14 @@ if (_typeX isEqualType "") then if (_typeX == staticCrewTeamPlayer) then { private _veh = SDKMortar createVehicle _positionX; - _nul=[_veh] execVM "scripts\UPSMON\MON_artillery_add.sqf"; + _nul=[_veh] execVM "scripts\UPSMON\MON_artillery_add.sqf";//TODO need delete UPSMON link _unit assignAsGunner _veh; _unit moveInGunner _veh; [_veh] call A3A_fnc_AIVEHinit; }; if (_groups isEqualTo []) then { - _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + _nul = [leader _groupX, _markerX, "SAFE","SPAWNED","NOVEH2","NOFOLLOW"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link }; [_unit,_markerX] spawn { diff --git a/A3-Antistasi/functions/CREATE/fn_cycleSpawn.sqf b/A3-Antistasi/functions/CREATE/fn_cycleSpawn.sqf new file mode 100644 index 0000000000..2d2ffdb71a --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_cycleSpawn.sqf @@ -0,0 +1,208 @@ +params ["_marker", "_patrolMarker", "_flag", "_box"]; + +if(isNil "_marker") exitWith {diag_log "CycleSpawn: No marker given!"}; + +private ["_side", "_garrison", "_unitX", "_allSoldiers", "_allVehicles", "_allGroups", "_groupX", "_vehicleType", "_crewArray", "_cargoArray", "_skip"]; + +_side = sidesX getVariable [_marker, sideUnknown]; +if(_side == sideUnknown) exitWith {diag_log "CycleSpawn: Marker side resulted in sideUnknown!"}; + +diag_log "CycleSpawn: Spawning in now!"; + +_garrison = [_marker] call A3A_fnc_getGarrison; +_garCount = [_garrison, false] call A3A_fnc_countGarrison; +_patrolSize = [_patrolMarker] call A3A_fnc_calculateMarkerArea; + +[_garrison, "Garrison"] call A3A_fnc_logArray; + +_allSoldiers = []; +_allVehicles = []; +_allGroups = []; +private _stayGroups = []; +private _patrolGroups = []; + +_lineIndex = 0; +{ + _vehicleType = _x select 0; + _crewArray = _x select 1; + _cargoArray = _x select 2; + _groupX = createGroup _side; + _allGroups pushBack _groupX; + private _skip = false; + + if (_vehicleType != "") then + { + //Array got a vehicle, spawn it in + private _spawnParameter = []; + if(_vehicleType isKindOf "Car") then + { + _spawnParameter = [_marker, "Vehicle"] call A3A_fnc_findSpawnPosition; + }; + if(_vehicleType isKindOf "Helicopter") then + { + _spawnParameter = [_marker, "Heli"] call A3A_fnc_findSpawnPosition; + }; + if(_vehicleType isKindOf "Plane") then + { + _spawnParameter = [_marker, "Plane"] call A3A_fnc_findSpawnPosition; + }; + //_spawnParameter = [getMarkerPos _marker, 0]; + if(_spawnParameter isEqualType []) then + { + _vehicle = createVehicle [_vehicleType, _spawnParameter select 0, [], 0 , "CAN_COLLIDE"]; + _vehicle allowDamage false; + [_vehicle] spawn + { + sleep 3; + (_this select 0) allowDamage true; + }; + _vehicle setDir (_spawnParameter select 1); + _allVehicles pushBack _vehicle; + _groupX addVehicle _vehicle; + + //Should work as a local variable needs testing + _vehicle setVariable ["UnitIndex", (_lineIndex * 10 + 0)]; + _vehicle setVariable ["UnitMarker", _marker]; + + //On vehicle death, remove it from garrison + _vehicle addEventHandler ["Killed", + { + _vehicle = _this select 0; + _id = _vehicle getVariable "UnitIndex"; + _marker = _vehicle getVariable "UnitMarker"; + [_marker, typeOf _vehicle, _id] call A3A_fnc_addRequested; + } + ]; + sleep 0.25; + //That would work perfectly with the breach script i did a PR for, without it it would just frustrate player + //_vehicle lock 3; + } + else + { + _skip = true; + }; + }; + + if(!_skip) then + { + _spawnParameter = [getMarkerPos _marker, objNull]; + //_spawnParameter = [_marker, NATOCrew] call A3A_fnc_findSpawnPosition; + { + _unitX = _groupX createUnit [_x, (_spawnParameter select 0), [], 5, "NONE"]; + _allSoldiers pushBack _unitX; + //Should work as a local variable needs testing + _unitX setVariable ["UnitIndex", (_lineIndex * 10 + 1)]; + _unitX setVariable ["UnitMarker", _marker]; + + //On vehicle death, remove it from garrison + _unitX addEventHandler ["Killed", + { + _unitX = _this select 0; + _id = _unitX getVariable "UnitIndex"; + _marker = _unitX getVariable "UnitMarker"; + [_marker, typeOf _unitX, _id] call A3A_fnc_addRequested; + } + ]; + sleep 0.25; + } forEach _crewArray; + [leader _groupX, _marker, "SAFE", "RANDOMUP", "SPAWNED", "NOVEH2", "NOFOLLOW"] execVM "scripts\UPSMON.sqf"; + + + private _forcePatrol = ((count _allGroups) > ((count _patrolGroups) * 3)); + _groupSoldier = createGroup _side; + private _counter = 0; + _allGroups pushBack _groupSoldier; + _stayGroups pushBack _groupSoldier; + { + _unitX = _groupSoldier createUnit [_x, (_spawnParameter select 0), [], 5, "NONE"]; + _allSoldiers pushBack _unitX; + + //Should work as a local variable needs testing + _unitX setVariable ["UnitIndex", (_lineIndex * 10 + 2)]; + _unitX setVariable ["UnitMarker", _marker]; + + //On vehicle death, remove it from garrison + _unitX addEventHandler ["Killed", + { + _unitX = _this select 0; + _id = _unitX getVariable "UnitIndex"; + _marker = _unitX getVariable "UnitMarker"; + [_marker, typeOf _unitX, _id] call A3A_fnc_addRequested; + } + ]; + sleep 0.25; + _counter = _counter + 1; + if((_counter >= 2) && {_forcePatrol || {count _cargoArray < 5}}) then + { + _groupSoldier = createGroup _side; + _counter = 0; + _allGroups pushBack _groupSoldier; + _patrolGroups pushBack _groupSoldier; + }; + } forEach _cargoArray; + }; + _lineIndex = _lineIndex + 1; +} forEach _garrison; + + +_sizePerUnit = 0; +if(count _allSoldiers != 0) then +{ + _sizePerUnit = _patrolSize / (count _allSoldiers); +}; + +diag_log format ["The size is %1/ Unit count is %2/ Per Unit is %3", _patrolSize, count _allSoldiers, _sizePerUnit]; + +//Every unit can search a area of 12500 m^2, if the unit is bigger, reduce patrol area +_patrolMarkerSize = getMarkerSize _patrolMarker; +if(_sizePerUnit > 12500) then +{ + diag_log "The area is to large, make it smaller"; + _patrolMarkerSize set [0, (_patrolMarkerSize select 0) * (12500/_sizePerUnit)]; + _patrolMarkerSize set [1, (_patrolMarkerSize select 1) * (12500/_sizePerUnit)]; +}; + +_mainMarkerSize = getMarkerSize _marker; +if(((_patrolMarkerSize select 0) < (_mainMarkerSize select 0)) || {(_patrolMarkerSize select 1) < (_mainMarkerSize select 1)}) then +{ + diag_log "Resizing to marker size"; + _patrolMarkerSize = _mainMarkerSize; +}; +_patrolMarker setMarkerSizeLocal _patrolMarkerSize; + +{ + [leader _x, _marker, "SAFE", "SPAWNED", "RANDOM", "NOFOLLOW", "NOVEH"] execVM "scripts\UPSMON.sqf"; +} forEach _stayGroups; + +{ + [leader _x, _patrolMarker, "SAFE", "SPAWNED", "RANDOM","NOVEH2"] execVM "scripts\UPSMON.sqf"; +} forEach _patrolGroups; + +/* +waitUntil {sleep 5; (spawner getVariable _marker == 2)}; + +[_marker] call A3A_fnc_freeSpawnPositions; + +deleteMarker _patrolMarker; + +{ + if (alive _x) then + { + deleteVehicle _x; + }; +} forEach _allSoldiers; + +{ + deleteGroup _x +} forEach _allGroups; + +{ + if (!(_x in staticsToSave)) then + { + if ((!([distanceSPWN, 1, _x, teamPlayer] call A3A_fnc_distanceUnits))) then + { + deleteVehicle _x; + }; + }; +} forEach _allVehicles; +*/ diff --git a/A3-Antistasi/functions/CREATE/fn_findSpawnPosition.sqf b/A3-Antistasi/functions/CREATE/fn_findSpawnPosition.sqf new file mode 100644 index 0000000000..70826974cc --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_findSpawnPosition.sqf @@ -0,0 +1,110 @@ +#define VEH 0 +#define HELI 1 +#define PLANE 2 +#define MORTAR 3 + +params ["_marker", "_type"]; + +_result = getMarkerPos _marker; + +//diag_log format ["Searching spawn position on %1 for %2", _marker, _type]; +_spawns = spawner getVariable [format ["%1_spawns", _marker], -1]; +if(_spawns isEqualType -1) exitWith +{ + diag_log format ["%1 does not have any spawn positions set!", _marker]; + -1; +}; +//[_spawns, "Spawnpoints"] call A3A_fnc_logArray; + +_selection = -1; +switch (_type) do +{ + case ("Group") : + { + //Not yet implemented + }; + case ("Crew"): + { + //Not yet implemented + }; + case ("Vehicle"): + { + _selection = VEH; + }; + case ("Heli"): + { + _selection = HELI; + }; + case ("Plane"): + { + _selection = PLANE; + }; + case ("Mortar"): + { + _selection = MORTAR; + }; +}; + +if (_selection == -1) exitWith {}; + +_possible = (_spawns select _selection) select {!(_x select 1)}; + +if(count _possible > 0) then +{ + _result = selectRandom _possible; + _index = (_spawns select _selection) findIf {_x isEqualTo _result}; + //diag_log format ["Result is %1, Index is %2", _result, _index]; + ((_spawns select _selection) select _index) set [1, true]; + + _result = _result select 0; + +} +else +{ + _result = -1; +}; + +diag_log format ["Result is %1", _result]; +_result; + + +/*params ["_marker", "_vehicleType"]; + +private ["_pos", "_spawnPos", "_spawnDir", "_result"]; + +_pos = getMarkerPos _marker; + +_spawnPos = []; +_spawnDir = 0; + +switch (true) do +{ + case (_vehicleType isKindOf "Plane"): + { + //Find a runway or a hangar + }; + case (_vehicleType isKindOf "Helicopter"): + { + //Find a heli pad + }; + case (_vehicleType isKindOf "StaticWeapon"): + { + //Find a position for in a bunker or a open space for a mortar + }; + case (_vehicleType isKindOf "Man"): + { + //Find a building to spawn in + }; + default + { + //Find a good place near a road or something + + //Debug option to get it working + _spawnPos = _pos; + }; +}; + +_result = [_spawnPos, _spawnDir]; + +_result; +*/ diff --git a/A3-Antistasi/functions/CREATE/fn_freeSpawnPositions.sqf b/A3-Antistasi/functions/CREATE/fn_freeSpawnPositions.sqf new file mode 100644 index 0000000000..f7b722c53b --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_freeSpawnPositions.sqf @@ -0,0 +1,24 @@ +params ["_marker"]; + +/* Unlocks all locked vehicle slots of a marker +*****/ + +_spawns = spawner getVariable [format ["%1_spawns", _marker], [[],[],[],[]]]; +if(_spawns isEqualTo [[],[],[],[]]) exitWith +{ + diag_log format ["Marker %1 has no spawn places defined!", _marker]; +}; + +diag_log format ["Logging spawn places of %1", _marker]; +[_spawns, "Spawn places"] call A3A_fnc_logArray; + +for "_i" from 0 to 3 do +{ + _places = _spawns select _i; + { + if(_x select 1) then + { + _x set [1, false]; + } + } forEach _places; +}; diff --git a/A3-Antistasi/CREATE/garrisonReorg.sqf b/A3-Antistasi/functions/CREATE/fn_garrisonReorg.sqf similarity index 100% rename from A3-Antistasi/CREATE/garrisonReorg.sqf rename to A3-Antistasi/functions/CREATE/fn_garrisonReorg.sqf diff --git a/A3-Antistasi/CREATE/garrisonSize.sqf b/A3-Antistasi/functions/CREATE/fn_garrisonSize.sqf similarity index 100% rename from A3-Antistasi/CREATE/garrisonSize.sqf rename to A3-Antistasi/functions/CREATE/fn_garrisonSize.sqf diff --git a/A3-Antistasi/CREATE/garrisonUpdate.sqf b/A3-Antistasi/functions/CREATE/fn_garrisonUpdate.sqf old mode 100755 new mode 100644 similarity index 100% rename from A3-Antistasi/CREATE/garrisonUpdate.sqf rename to A3-Antistasi/functions/CREATE/fn_garrisonUpdate.sqf diff --git a/A3-Antistasi/functions/CREATE/fn_groupDespawner.sqf b/A3-Antistasi/functions/CREATE/fn_groupDespawner.sqf new file mode 100644 index 0000000000..02f50297f3 --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_groupDespawner.sqf @@ -0,0 +1,22 @@ +private ["_groupX","_sideX","_eny1","_eny2"]; +_groupX = _this select 0; +_sideX = side _groupX; +_eny1 = Occupants; +_eny2 = Invaders; +if (_sideX == Occupants) then {_eny1 = teamPlayer} else {if (_sideX == Invaders) then {_eny2 = teamPlayer}}; + +{ + _unit = _x; + if (!([distanceSPWN,1,_unit,_eny1] call A3A_fnc_distanceUnits) and !([distanceSPWN,1,_unit,_eny2] call A3A_fnc_distanceUnits)) then + { + deleteVehicle _unit; + } +} forEach units _groupX; + +{ + _unit = _x; + waitUntil {sleep 1;!([distanceSPWN,1,_unit,_eny1] call A3A_fnc_distanceUnits) and !([distanceSPWN,1,_unit,_eny2] call A3A_fnc_distanceUnits)}; + deleteVehicle _unit; +} forEach units _groupX; + +deleteGroup _groupX; diff --git a/A3-Antistasi/functions/CREATE/fn_invaderPunish.sqf b/A3-Antistasi/functions/CREATE/fn_invaderPunish.sqf new file mode 100644 index 0000000000..5de7fe37bd --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_invaderPunish.sqf @@ -0,0 +1,216 @@ +if (!isServer and hasInterface) exitWith {}; +private ["_posOrigin","_typeGroup","_nameOrigin","_markTsk","_wp1","_soldiers","_landpos","_pad","_vehiclesX","_wp0","_wp3","_wp4","_wp2","_groupX","_groups","_typeAirVehicle","_vehicle","_pilots","_rnd","_resourcesAAF","_nVeh","_radiusX","_roads","_Vwp1","_tanksX","_road","_veh","_vehCrew","_groupVeh","_Vwp0","_size","_Hwp0","_groupX1","_uav","_groupUAV","_uwp0","_tsk","_vehicle","_soldierX","_pilot","_attackDestination","_posDestination","_prestigeCSAT","_base","_airportX","_nameDestination","_missionExpireTime","_soldiersSpawned","_nul","_pos","_timeOut"]; +_attackDestination = _this select 0; +_attackOrigin = _this select 1; +bigAttackInProgress = true; +publicVariable "bigAttackInProgress"; +_posDestination = getMarkerPos _attackDestination; +_posOrigin = getMarkerPos _attackOrigin; +_groups = []; +_soldiers = []; +_pilots = []; +_vehiclesX = []; +_civilians = []; + +diag_log format ["[Antistasi] Launching CSAT Punish Against %1 from %2 (CSATpunish.sqf)", _attackDestination, _attackOrigin]; + +_nameDestination = [_attackDestination] call A3A_fnc_localizar; +[[teamPlayer,civilian,Occupants],"invaderPunish",[format ["%2 is attacking innocent civilians in %1! Defend the city at all costs",_nameDestination,nameInvaders],format ["%1 Punishment",nameInvaders],_attackDestination],getMarkerPos _attackDestination,false,0,true,"Defend",true] call BIS_fnc_taskCreate; + +_nul = [_attackOrigin,_attackDestination,Invaders] spawn A3A_fnc_artillery; +private _sideTarget = if (sidesX getVariable [_attackDestination,sideUnknown] == Occupants) then {Occupants} else {teamPlayer}; +_missionExpireTime = time + 3600; + +private _invaderAirTransport = vehCSATTransportHelis + vehCSATTransportPlanes; + +for "_i" from 1 to 3 do { + _typeAirVehicle = if (_i != 3) then {selectRandom (vehCSATAir select {[_x] call A3A_fnc_vehAvailable})} else {selectRandom (_invaderAirTransport select {[_x] call A3A_fnc_vehAvailable})}; + _timeOut = 0; + _pos = _posOrigin findEmptyPosition [0,100,_typeAirVehicle]; + while {_timeOut < 60} do { + if (count _pos > 0) exitWith {}; + _timeOut = _timeOut + 1; + _pos = _posOrigin findEmptyPosition [0,100,_typeAirVehicle]; + sleep 1; + }; + if (count _pos == 0) then {_pos = _posOrigin}; + private _spawnResult = [_pos, 0, _typeAirVehicle, Invaders] call bis_fnc_spawnvehicle; + private _veh = _spawnResult select 0; + private _vehCrew = _spawnResult select 1; + {[_x] call A3A_fnc_NATOinit} forEach _vehCrew; + [_veh] call A3A_fnc_AIVEHinit; + _groupVeh = _spawnResult select 2; + _pilots append _vehCrew; + _groups pushBack _groupVeh; + _vehiclesX pushBack _veh; + + //If spawning a plane, it needs moving into the air. + if (_typeAirVehicle isKindOf "Plane") then { + _veh setDir ((getDir _veh) + (_veh getRelDir _posDestination)); + _veh setPos (getPos _veh vectorAdd [0, 0, 300]); + _veh setVelocityModelSpace (velocityModelSpace _veh vectorAdd [0, 150, 10]); + }; + + //If we're an attack vehicle. + if (not(_typeAirVehicle in _invaderAirTransport)) then { + _wp1 = _groupVeh addWaypoint [_posDestination, 0]; + _wp1 setWaypointType "SAD"; + //[_veh,"Air Attack"] spawn A3A_fnc_inmuneConvoy; + } else { + {_x setBehaviour "CARELESS";} forEach units _groupVeh; + _typeGroup = [_typeAirVehicle,Invaders] call A3A_fnc_cargoSeats; + _groupX = [_posOrigin, Invaders, _typeGroup] call A3A_fnc_spawnGroup; + {_x assignAsCargo _veh;_x moveInCargo _veh; _soldiers pushBack _x; [_x] call A3A_fnc_NATOinit; _x setVariable ["originX",_attackOrigin]} forEach units _groupX; + _groups pushBack _groupX; + //[_veh,"CSAT Air Transport"] spawn A3A_fnc_inmuneConvoy; + + if (_typeAirVehicle isKindOf "Plane") then { + [_veh,_groupX,_attackDestination,_attackOrigin] spawn A3A_fnc_airdrop; + } else { + if (not(_typeAirVehicle in vehFastRope)) then { + _landPos = _posDestination getPos [(random 500) + 300, random 360]; + _landPos = [_landPos, 200, 350, 10, 0, 0.20, 0,[],[[0,0,0],[0,0,0]]] call BIS_fnc_findSafePos; + if !(_landPos isEqualTo [0,0,0]) then { + _landPos set [2, 0]; + _pad = createVehicle ["Land_HelipadEmpty_F", _landpos, [], 0, "NONE"]; + _vehiclesX pushBack _pad; + _wp0 = _groupVeh addWaypoint [_landpos, 0]; + _wp0 setWaypointType "TR UNLOAD"; + _wp0 setWaypointStatements ["true", "(vehicle this) land 'GET OUT'"]; + [_groupVeh,0] setWaypointBehaviour "CARELESS"; + _wp3 = _groupX addWaypoint [_landpos, 0]; + _wp3 setWaypointType "GETOUT"; + _wp0 synchronizeWaypoint [_wp3]; + _wp4 = _groupX addWaypoint [_posDestination, 1]; + _wp4 setWaypointType "SAD"; + _wp4 setWaypointStatements ["true","{if (side _x != side this) then {this reveal [_x,4]}} forEach allUnits"]; + _wp2 = _groupVeh addWaypoint [_posOrigin, 1]; + _wp2 setWaypointType "MOVE"; + _wp2 setWaypointStatements ["true", "deleteVehicle (vehicle this); {deleteVehicle _x} forEach thisList"]; + [_groupVeh,1] setWaypointBehaviour "AWARE"; + }; + } else { + {_x disableAI "TARGET"; _x disableAI "AUTOTARGET"} foreach units _groupVeh; + [_veh,_groupX,_posDestination,_posOrigin,_groupVeh] spawn A3A_fnc_fastrope; + }; + }; + }; + sleep 20; +}; + +_dataX = server getVariable _attackDestination; +_numCiv = _dataX select 0; +_numCiv = round (_numCiv /10); +if (sidesX getVariable [_attackDestination,sideUnknown] == Occupants) then {[[_posDestination,Occupants,"",false],"A3A_fnc_patrolCA"] remoteExec ["A3A_fnc_scheduler",2]}; +if (_numCiv < 8) then {_numCiv = 8}; + +_size = [_attackDestination] call A3A_fnc_sizeMarker; + +_groupCivil = createGroup _sideTarget; +_groups pushBack _groupCivil; +_typeUnit = if (_sideTarget == teamPlayer) then {SDKUnarmed} else {NATOUnarmed}; +for "_i" from 0 to _numCiv do { + while {true} do { + _pos = _posDestination getPos [random _size,random 360]; + if (!surfaceIsWater _pos) exitWith {}; + }; + _civ = _groupCivil createUnit [_typeUnit,_pos, [],0,"NONE"]; + _civ forceAddUniform (selectRandom allCivilianUniforms); + _rnd = random 100; + if (_rnd < 90) then { + if (_rnd < 25) then { + [_civ, "hgun_PDW2000_F", 5, 0] call BIS_fnc_addWeapon; + } else { + [_civ, "hgun_Pistol_heavy_02_F", 5, 0] call BIS_fnc_addWeapon; + }; + }; + _civilians pushBack _civ; + [_civ] call A3A_fnc_civInit; + _civ setSkill 0.5; + sleep 0.5; +}; + +_nul = [leader _groupCivil, _attackDestination, "AWARE","SPAWNED","NOVEH2"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link +_soldiersSpawned = count _soldiers; + +if (tierWar >= 5) then { + for "_i" from 0 to round random 1 do { + if ([vehCSATPlane] call A3A_fnc_vehAvailable) then { + private _bombType = if (napalmEnabled) then {"NAPALM"} else {"HE"}; + _nul = [_attackDestination,Invaders,_bombType] spawn A3A_fnc_airstrike; + sleep 30; + }; + }; +}; + +waitUntil {sleep 5; (({not (captive _x)} count _soldiers) < ({captive _x} count _soldiers)) or ({alive _x} count _soldiers < round (_soldiersSpawned / 3)) or (({(_x distance _posDestination < _size*2) and (not(vehicle _x isKindOf "Air")) and (alive _x) and (!captive _x)} count _soldiers) > 6*({(alive _x) and (_x distance _posDestination < _size*2)} count _civilians)) or (time > _missionExpireTime)}; + +if ((({not (captive _x)} count _soldiers) < ({captive _x} count _soldiers)) or ({alive _x} count _soldiers < round (_soldiersSpawned / 3)) or (time > _missionExpireTime)) then { + {_x doMove [0,0,0]} forEach _soldiers; + ["invaderPunish",[format ["%2 is attacking innocent civilians in %1! Defend the city at all costs",_nameDestination,nameInvaders],format ["%1 Punishment",nameInvaders],_attackDestination],getMarkerPos _attackDestination,"SUCCEEDED"] call A3A_fnc_taskUpdate; + if ({(side _x == teamPlayer) and (_x distance _posDestination < _size * 2)} count allUnits >= {(side _x == _sideTarget) and (_x distance _posDestination < _size * 2)} count allUnits) then { + if (sidesX getVariable [_attackDestination,sideUnknown] == Occupants) then {[-15,15,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]} else {[-5,15,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]}; + [-5,0] remoteExec ["A3A_fnc_prestige",2]; + {[-10,10,_x] remoteExec ["A3A_fnc_citySupportChange",2]} forEach citiesX; + {if (isPlayer _x) then {[10,_x] call A3A_fnc_playerScoreAdd}} forEach ([500,0,_posDestination,teamPlayer] call A3A_fnc_distanceUnits); + [10,theBoss] call A3A_fnc_playerScoreAdd; + } else { + if (sidesX getVariable [_attackDestination,sideUnknown] == Occupants) then {[15,0,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]} else {[15,0,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]}; + {[10,0,_x] remoteExec ["A3A_fnc_citySupportChange",2]} forEach citiesX; + }; +} else { + ["invaderPunish",[format ["%2 is attacking innocent civilians in %1! Defend the city at all costs",_nameDestination,nameInvaders],format ["%1 Punishment",nameInvaders],_attackDestination],getMarkerPos _attackDestination,"FAILED"] call A3A_fnc_taskUpdate; + [-20,-20,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]; + {[-10,-10,_x] remoteExec ["A3A_fnc_citySupportChange",2]} forEach citiesX; + destroyedSites = destroyedSites + [_attackDestination]; + publicVariable "destroyedSites"; + for "_i" from 1 to 60 do { + _mineX = createMine ["APERSMine",_posDestination,[],_size]; + Invaders revealMine _mineX; + }; + [_attackDestination] call A3A_fnc_destroyCity; +}; + +sleep 15; +_nul = [0,"invaderPunish"] spawn A3A_fnc_deleteTask; +[7200] remoteExec ["A3A_fnc_timingCA",2]; + +{ + _veh = _x; + if (!([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)) then {deleteVehicle _x}; +} forEach _vehiclesX; + +{ + _veh = _x; + if (!([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)) then {deleteVehicle _x; _soldiers = _soldiers - [_x]}; +} forEach _soldiers; + +{ + _veh = _x; + if (!([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)) then {deleteVehicle _x; _pilots = _pilots - [_x]}; +} forEach _pilots; + +bigAttackInProgress = false; +publicVariable "bigAttackInProgress"; + +if (count _soldiers > 0) then { + { + _veh = _x; + waitUntil {sleep 1; !([distanceSPWN,1,_veh,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)}; + deleteVehicle _veh; + } forEach _soldiers; +}; + +if (count _pilots > 0) then { + { + _veh = _x; + waitUntil {sleep 1; !([distanceSPWN,1,_x,teamPlayer] call A3A_fnc_distanceUnits) and (({_x distance _veh <= distanceSPWN} count (allPlayers - (entities "HeadlessClient_F"))) == 0)}; + deleteVehicle _veh; + } forEach _pilots; +}; +{deleteGroup _x} forEach _groups; + +waitUntil {sleep 1; (spawner getVariable _attackDestination == 2)}; + +{deleteVehicle _x} forEach _civilians; +deleteGroup _groupCivil; diff --git a/A3-Antistasi/CREATE/milBuildings.sqf b/A3-Antistasi/functions/CREATE/fn_milBuildings.sqf similarity index 53% rename from A3-Antistasi/CREATE/milBuildings.sqf rename to A3-Antistasi/functions/CREATE/fn_milBuildings.sqf index 55019f5b0e..0e3f74e1e1 100644 --- a/A3-Antistasi/CREATE/milBuildings.sqf +++ b/A3-Antistasi/functions/CREATE/fn_milBuildings.sqf @@ -15,6 +15,21 @@ _soldiers = []; _groupX = createGroup _sideX; _typeUnit = if (_sideX==Occupants) then {staticCrewOccupants} else {staticCrewInvaders}; +//New system to place helis, does not care about heli types currently +private _helicopterTypes = []; +_helicopterTypes pushBack (if (_sideX == Occupants) then {vehNATOPatrolHeli} else {vehCSATPatrolHeli}); +private _spawnParameter = [_markerX, "Heli"] call A3A_fnc_findSpawnPosition; +private _count = 1 + round (random 3); //Change these numbers as you want, first number is minimum, max is first plus second number +while {_spawnParameter isEqualType [] && {_count > 0}} do +{ + _typeVehX = selectRandom _helicopterTypes; + _veh = createVehicle [_typeVehX, (_spawnParameter select 0), [],0, "CAN_COLLIDE"]; + _veh setDir (_spawnParameter select 1); + _vehiclesX pushBack _veh; + _spawnParameter = [_markerX, "Heli"] call A3A_fnc_findSpawnPosition; + _count = _count - 1; +}; + for "_i" from 0 to (count _buildings) - 1 do { if (spawner getVariable _markerX == 2) exitWith {}; @@ -34,19 +49,26 @@ for "_i" from 0 to (count _buildings) - 1 do //Helipads spawn in different types of helicopter. By default, patrol helis. //In the editor, drop this code in 'init' on the helipad to change that. //this setVariable ["spawnableHelicopterTypes", ["patrol", "transport", "attack"]]; + //Disabled by Wurzel, newer system in place + + /* if ((_typeB == "Land_HelipadSquare_F") and (!_frontierX)) then - { + { private _helicopterCategories = _building getVariable ["spawnableHelicopterTypes", ["patrol"]]; private _helicopterTypes = []; { - switch _x do { - case "patrol": { + switch _x do + { + case "patrol": + { _helicopterTypes pushBack (if (_sideX == Occupants) then {vehNATOPatrolHeli} else {vehCSATPatrolHeli}); }; - case "transport": { + case "transport": + { _helicopterTypes append (if (_sideX == Occupants) then {vehNATOTransportHelis} else {vehCSATTransportHelis}); }; - case "attack": { + case "attack": + { _helicopterTypes append (if (_sideX == Occupants) then {vehNATOAttackHelis} else {vehCSATAttackHelis}); }; }; @@ -58,58 +80,59 @@ for "_i" from 0 to (count _buildings) - 1 do _veh = createVehicle [_typeVehX, position _building, [],0, "CAN_COLLIDE"]; _veh setDir (getDir _building); _vehiclesX pushBack _veh; - } + } + else + { + */ + if ((_typeB == "Land_Cargo_HQ_V1_F") or (_typeB == "Land_Cargo_HQ_V2_F") or (_typeB == "Land_Cargo_HQ_V3_F")) then + { + _typeVehX = if (_sideX == Occupants) then {staticAAOccupants} else {staticAAInvaders}; + _veh = createVehicle [_typeVehX, (_building buildingPos 8), [],0, "CAN_COLLIDE"]; + _veh setDir (getDir _building); + _veh setPosATL [(getPos _building select 0),(getPos _building select 1),(getPosATL _veh select 2)]; + _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; + [_unit,_markerX] call A3A_fnc_NATOinit; + _unit moveInGunner _veh; + _soldiers pushBack _unit; + _vehiclesX pushBack _veh; + } else + { + if ((_typeB == "Land_Cargo_Patrol_V1_F") or (_typeB == "Land_Cargo_Patrol_V2_F") or (_typeB == "Land_Cargo_Patrol_V3_F")) then { - if ((_typeB == "Land_Cargo_HQ_V1_F") or (_typeB == "Land_Cargo_HQ_V2_F") or (_typeB == "Land_Cargo_HQ_V3_F")) then - { - _typeVehX = if (_sideX == Occupants) then {staticAAOccupants} else {staticAAInvaders}; - _veh = createVehicle [_typeVehX, (_building buildingPos 8), [],0, "CAN_COLLIDE"]; - _veh setDir (getDir _building); - _veh setPosATL [(getPos _building select 0),(getPos _building select 1),(getPosATL _veh select 2)]; + _typeVehX = if (_sideX == Occupants) then {NATOMG} else {CSATMG}; + _veh = createVehicle [_typeVehX, (_building buildingPos 1), [], 0, "CAN_COLLIDE"]; + _ang = (getDir _building) - 180; + _pos = [getPosATL _veh, 2.5, _ang] call BIS_Fnc_relPos; + _veh setPosATL _pos; + _veh setDir (getDir _building) - 180; _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; [_unit,_markerX] call A3A_fnc_NATOinit; _unit moveInGunner _veh; _soldiers pushBack _unit; _vehiclesX pushBack _veh; - } + } else + { + if (_typeB in listbld) then { - if ((_typeB == "Land_Cargo_Patrol_V1_F") or (_typeB == "Land_Cargo_Patrol_V2_F") or (_typeB == "Land_Cargo_Patrol_V3_F")) then - { _typeVehX = if (_sideX == Occupants) then {NATOMG} else {CSATMG}; - _veh = createVehicle [_typeVehX, (_building buildingPos 1), [], 0, "CAN_COLLIDE"]; - _ang = (getDir _building) - 180; - _pos = [getPosATL _veh, 2.5, _ang] call BIS_Fnc_relPos; - _veh setPosATL _pos; - _veh setDir (getDir _building) - 180; + _veh = createVehicle [_typeVehX, (_building buildingPos 11), [], 0, "CAN_COLLIDE"]; + _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; + [_unit,_markerX] call A3A_fnc_NATOinit; + _unit moveInGunner _veh; + _soldiers pushBack _unit; + _vehiclesX pushBack _veh; + sleep 0.5; + _veh = createVehicle [_typeVehX, (_building buildingPos 13), [], 0, "CAN_COLLIDE"]; _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; [_unit,_markerX] call A3A_fnc_NATOinit; _unit moveInGunner _veh; _soldiers pushBack _unit; _vehiclesX pushBack _veh; - } - else - { - if (_typeB in listbld) then - { - _typeVehX = if (_sideX == Occupants) then {NATOMG} else {CSATMG}; - _veh = createVehicle [_typeVehX, (_building buildingPos 11), [], 0, "CAN_COLLIDE"]; - _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; - [_unit,_markerX] call A3A_fnc_NATOinit; - _unit moveInGunner _veh; - _soldiers pushBack _unit; - _vehiclesX pushBack _veh; - sleep 0.5; - _veh = createVehicle [_typeVehX, (_building buildingPos 13), [], 0, "CAN_COLLIDE"]; - _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"]; - [_unit,_markerX] call A3A_fnc_NATOinit; - _unit moveInGunner _veh; - _soldiers pushBack _unit; - _vehiclesX pushBack _veh; - }; - }; }; }; }; -[_groupX,_vehiclesX,_soldiers] \ No newline at end of file +}; + +[_groupX,_vehiclesX,_soldiers] diff --git a/A3-Antistasi/CREATE/minefieldAAF.sqf b/A3-Antistasi/functions/CREATE/fn_minefieldAAF.sqf similarity index 100% rename from A3-Antistasi/CREATE/minefieldAAF.sqf rename to A3-Antistasi/functions/CREATE/fn_minefieldAAF.sqf diff --git a/A3-Antistasi/CREATE/mortarPos.sqf b/A3-Antistasi/functions/CREATE/fn_mortarPos.sqf similarity index 100% rename from A3-Antistasi/CREATE/mortarPos.sqf rename to A3-Antistasi/functions/CREATE/fn_mortarPos.sqf diff --git a/A3-Antistasi/CREATE/patrolCA.sqf b/A3-Antistasi/functions/CREATE/fn_patrolCA.sqf similarity index 97% rename from A3-Antistasi/CREATE/patrolCA.sqf rename to A3-Antistasi/functions/CREATE/fn_patrolCA.sqf index 2b397d84f2..0df3ea0e72 100644 --- a/A3-Antistasi/CREATE/patrolCA.sqf +++ b/A3-Antistasi/functions/CREATE/fn_patrolCA.sqf @@ -209,7 +209,7 @@ if (_base != "") then _dir = 0; if (_indexX > -1) then { - _spawnPoint = spawnPoints select _indexX; + _spawnPoint = server getVariable (format ["spawn_%1", _base]); _pos = getMarkerPos _spawnPoint; _dir = markerDir _spawnPoint; } @@ -344,7 +344,7 @@ if (_base != "") then deleteGroup _groupX; _groupVeh spawn A3A_fnc_attackDrillAI; //_groups pushBack _groupX; - [_base,_landPos,_groupVeh] call WPCreate; + [_base,_landPos,_groupVeh] call A3A_fnc_WPCreate; _Vwp0 = (wayPoints _groupVeh) select 0; _Vwp0 setWaypointBehaviour "SAFE"; _Vwp0 = _groupVeh addWaypoint [_landPos,count (wayPoints _groupVeh)]; @@ -364,7 +364,7 @@ if (_base != "") then deleteGroup _groupX; _groupVeh spawn A3A_fnc_attackDrillAI; if (count units _groupVeh > 1) then {_groupVeh selectLeader (units _groupVeh select 1)}; - [_base,_landPos,_groupVeh] call WPCreate; + [_base,_landPos,_groupVeh] call A3A_fnc_WPCreate; _Vwp0 = (wayPoints _groupVeh) select 0; _Vwp0 setWaypointBehaviour "SAFE"; /* @@ -401,7 +401,7 @@ if (_base != "") then else { {_x disableAI "MINEDETECTION"} forEach (units _groupVeh); - [_base,_posDestination,_groupVeh] call WPCreate; + [_base,_posDestination,_groupVeh] call A3A_fnc_WPCreate; _Vwp0 = (wayPoints _groupVeh) select 0; _Vwp0 setWaypointBehaviour "SAFE"; _Vwp0 = _groupVeh addWaypoint [_posDestination, count (waypoints _groupVeh)]; @@ -620,7 +620,7 @@ if (_isMarker) then if ((({[_x,_markerX] call A3A_fnc_canConquer} count _soldiers) > 3*({(side _x != _sideX) and (side _x != civilian) and ([_x,_markerX] call A3A_fnc_canConquer)} count allUnits)) and (not(sidesX getVariable [_markerX,sideUnknown] == Occupants))) then { [Occupants,_markerX] remoteExec ["A3A_fnc_markerChange",2]; - diag_log format ["Antistasi Debug patrolCA: Attack from %1 or %2 to retake %3 succesful. Retaken.",_airportX,_base,_markerX]; + diag_log format ["Antistasi Debug patrolCA: Attack from %1 or %2 to retake %3 has outnumbered the enemy, changing marker!",_airportX,_base,_markerX]; }; sleep 10; if (!(sidesX getVariable [_markerX,sideUnknown] == Occupants)) then @@ -632,7 +632,7 @@ if (_isMarker) then _killZones = _killZones + [_markerX,_markerX]; killZones setVariable [_airportX,_killZones,true]; }; - diag_log format ["Antistasi Debug patrolCA: Attack from %1 or %2 to retake %3 failed",_airportX,_base,_markerX]; + diag_log format ["Antistasi Debug patrolCA: Attack from %1 or %2 to retake %3 has failed as the marker is not changed!",_airportX,_base,_markerX]; } } else @@ -641,7 +641,7 @@ if (_isMarker) then if ((({[_x,_markerX] call A3A_fnc_canConquer} count _soldiers) > 3*({(side _x != _sideX) and (side _x != civilian) and ([_x,_markerX] call A3A_fnc_canConquer)} count allUnits)) and (not(sidesX getVariable [_markerX,sideUnknown] == Invaders))) then { [Invaders,_markerX] remoteExec ["A3A_fnc_markerChange",2]; - diag_log format ["Antistasi Debug patrolCA: Attack from %1 or %2 to retake %3 succesful. Retaken.",_airportX,_base,_markerX]; + diag_log format ["Antistasi Debug patrolCA: Attack from %1 or %2 to retake %3 has outnumbered the enemy, changing marker!",_airportX,_base,_markerX]; }; sleep 10; if (!(sidesX getVariable [_markerX,sideUnknown] == Invaders)) then @@ -653,7 +653,7 @@ if (_isMarker) then _killZones = _killZones + [_markerX,_markerX]; killZones setVariable [_airportX,_killZones,true]; }; - diag_log format ["Antistasi Debug patrolCA: Attack from %1 or %2 to retake %3 failed",_airportX,_base,_markerX]; + diag_log format ["Antistasi Debug patrolCA: Attack from %1 or %2 to retake %3 has failed as the marker is not changed!",_airportX,_base,_markerX]; } }; } diff --git a/A3-Antistasi/CREATE/patrolReinf.sqf b/A3-Antistasi/functions/CREATE/fn_patrolReinf.sqf similarity index 90% rename from A3-Antistasi/CREATE/patrolReinf.sqf rename to A3-Antistasi/functions/CREATE/fn_patrolReinf.sqf index 5c38ce8b42..5d7a3da3c4 100644 --- a/A3-Antistasi/CREATE/patrolReinf.sqf +++ b/A3-Antistasi/functions/CREATE/fn_patrolReinf.sqf @@ -12,56 +12,56 @@ _land = if (_posOrigin distance _posDestination > distanceForLandAttack) then {f _typeGroup = if (_sideX == Occupants) then {if (_numberX == 4) then {selectRandom groupsNATOmid} else {selectRandom groupsNATOSquad}} else {if (_numberX == 4) then {selectRandom groupsCSATmid} else {selectRandom groupsCSATSquad}}; _typeVehX = ""; if (_land) then - { +{ if (_sideX == Occupants) then {_typeVehX = selectRandom vehNATOTrucks} else {_typeVehX = selectRandom vehCSATTrucks}; - } +} else - { +{ _vehPool = if (_sideX == Occupants) then {vehNATOTransportHelis + vehNATOTransportPlanes} else {vehCSATTransportHelis + vehNATOTransportPlanes}; if ((_numberX > 4) and (count _vehPool > 1) and !hasIFA) then {_vehPool = _vehPool - [vehNATOPatrolHeli,vehCSATPatrolHeli]}; //_vehPool = _vehPool select {(_x isKindOf "Helicopter") and (_x in vehFastRope)}; _typeVehX = selectRandom _vehPool; - }; +}; _pos = []; _veh = objNull; _groupX = grpNull; if (_land) then - { +{ _indexX = airportsX find _mrkOrigin; - _spawnPoint = spawnPoints select _indexX; + _spawnPoint = server getVariable (format ["spawn_%1", _mrkOrigin]); _pos = getMarkerPos _spawnPoint; _timeOut = 0; _pos = _pos findEmptyPosition [0,100,_typeVehX]; while {_timeOut < 60} do - { + { if (count _pos > 0) exitWith {}; _timeOut = _timeOut + 1; _pos = _pos findEmptyPosition [0,100,_typeVehX]; sleep 1; - }; + }; if (count _pos == 0) then {_pos = getMarkerPos _spawnPoint}; _veh = _typeVehX createVehicle _pos; _veh setDir (markerDir _spawnPoint); _groupX = [_pos,_sideX, _typeGroup] call A3A_fnc_spawnGroup; _groupX addVehicle _veh; { - if (_x == leader _x) then {_x assignAsDriver _veh;_x moveInDriver _veh} else {_x assignAsCargo _veh;_x moveInCargo _veh}; + if (_x == leader _x) then {_x assignAsDriver _veh;_x moveInDriver _veh} else {_x assignAsCargo _veh;_x moveInCargo _veh}; - if (vehicle _x == _x) then + if (vehicle _x == _x) then { - deleteVehicle _x; + deleteVehicle _x; } - else + else { - [_x] call A3A_fnc_NATOinit; + [_x] call A3A_fnc_NATOinit; }; } forEach units _groupX; [_veh] call A3A_fnc_AIVEHinit; [_veh,"Inf Truck."] spawn A3A_fnc_inmuneConvoy; _groupX spawn A3A_fnc_attackDrillAI; - [_mrkOrigin,_posDestination,_groupX] call WPCreate; + [_mrkOrigin,_posDestination,_groupX] call A3A_fnc_WPCreate; _Vwp0 = (wayPoints _groupX) select 0; _Vwp0 setWaypointBehaviour "SAFE"; _Vwp0 = _groupX addWaypoint [_posDestination, count (wayPoints _groupX)]; @@ -69,18 +69,18 @@ if (_land) then _Vwp0 setWaypointStatements ["true","nul = [(thisList select {alive _x}),side this,(group this) getVariable [""reinfMarker"",""""],0] remoteExec [""A3A_fnc_garrisonUpdate"",2];[group this] spawn A3A_fnc_groupDespawner; reinfPatrols = reinfPatrols - 1; publicVariable ""reinfPatrols"";"]; } else - { +{ _pos = _posOrigin; _ang = 0; _size = [_mrkOrigin] call A3A_fnc_sizeMarker; _buildings = nearestObjects [_posOrigin, ["Land_LandMark_F","Land_runway_edgelight"], _size / 2]; if (count _buildings > 1) then - { + { _pos1 = getPos (_buildings select 0); _pos2 = getPos (_buildings select 1); _ang = [_pos1, _pos2] call BIS_fnc_DirTo; _pos = [_pos1, 5,_ang] call BIS_fnc_relPos; - }; + }; if (count _pos == 0) then {_pos = _posOrigin}; _vehicle=[_pos, _ang + 90,_typeVehX, _sideX] call bis_fnc_spawnvehicle; @@ -88,27 +88,27 @@ else _vehCrew = _vehicle select 1; _groupVeh = _vehicle select 2; { - [_x] call A3A_fnc_NATOinit; - _x addEventHandler ["Killed",{deleteVehicle (group (_this select 0) getVariable ["myPad",objNull])}]; + [_x] call A3A_fnc_NATOinit; + _x addEventHandler ["Killed",{deleteVehicle (group (_this select 0) getVariable ["myPad",objNull])}]; } forEach units _groupVeh; [_veh] call A3A_fnc_AIVEHinit; _groupX = [_posOrigin,_sideX,_typeGroup] call A3A_fnc_spawnGroup; { - _x assignAsCargo _veh; - _x moveInCargo _veh; - if (vehicle _x == _x) then + _x assignAsCargo _veh; + _x moveInCargo _veh; + if (vehicle _x == _x) then { - deleteVehicle _x; + deleteVehicle _x; } - else + else { - [_x] call A3A_fnc_NATOinit; + [_x] call A3A_fnc_NATOinit; }; } forEach units _groupX; _landPos = if (_typeVehX isKindOf "Helicopter") then {[_posDestination, 0, 300, 10, 0, 0.20, 0,[],[[0,0,0],[0,0,0]]] call BIS_fnc_findSafePos} else {[0,0,0]}; if !(_landPos isEqualTo [0,0,0]) then - { + { _landPos set [2, 0]; _pad = createVehicle ["Land_HelipadEmpty_F", _landpos, [], 0, "NONE"]; _groupVeh setVariable ["myPad",_pad]; @@ -127,19 +127,19 @@ else _wp2 setWaypointType "MOVE"; _wp2 setWaypointStatements ["true", "deleteVehicle (vehicle this); {deleteVehicle _x} forEach thisList"]; [_groupVeh,1] setWaypointBehaviour "AWARE"; - } + } else - { + { if (_typeVehX in vehFastRope) then - { + { [_veh,_groupX,_posDestination,_posOrigin,_groupVeh,true] spawn A3A_fnc_fastrope; - } + } else - { + { [_veh,_groupX,_posDestination,_mrkOrigin,true] spawn A3A_fnc_airdrop; - }; }; }; +}; reinfPatrols = reinfPatrols + 1; publicVariable "reinfPatrols"; _groupX setVariable ["reinfMarker",_mrkDestination]; diff --git a/A3-Antistasi/functions/CREATE/fn_reinforcementsAI.sqf b/A3-Antistasi/functions/CREATE/fn_reinforcementsAI.sqf new file mode 100644 index 0000000000..4ccbc326f2 --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_reinforcementsAI.sqf @@ -0,0 +1,109 @@ +private ["_airportsX","_reinfPlaces","_airportX","_numberX","_numGarr","_numReal","_sideX","_potentials","_countX","_siteX","_positionX"]; +_airportsX = airportsX select {(sidesX getVariable [_x,sideUnknown] != teamPlayer) and (spawner getVariable _x == 2)}; +if (count _airportsX == 0) exitWith {}; +_reinfPlaces = []; +{ + _airportX = _x; + _numberX = 8; + _numGarr = [_airportX] call A3A_fnc_garrisonSize; + _numReal = count (garrison getVariable _airportX); + _sideX = sidesX getVariable [_airportX,sideUnknown]; + + //Self reinforce the airport if needed + if (_numReal + 4 <= _numGarr) then + { + if (_numReal + 8 <= _numGarr) then + { + if (_sideX == Occupants) then {[selectRandom groupsNATOSquad,_sideX,_airportX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]} else {[selectRandom groupsCSATSquad,_sideX,_airportX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]}; + _numberX = 0; + } + else + { + if (_sideX == Occupants) then {[selectRandom groupsNATOmid,_sideX,_airportX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]} else {[selectRandom groupsCSATmid,_sideX,_airportX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]}; + _numberX = 4; + }; + }; + //Self reinforce done + + //Reinforce nearby sides + if ((_numberX >= 4) and (reinfPatrols <= 4)) then + { + _potentials = (outposts + seaports - _reinfPlaces - (killZones getVariable [_airportX,[]])) select {sidesX getVariable [_x,sideUnknown] == _sideX}; + if (_potentials isEqualTo []) then + { + _potentials = (resourcesX + factories - _reinfPlaces - (killZones getVariable [_airportX,[]])) select {sidesX getVariable [_x,sideUnknown] == _sideX}; + }; + _positionX = getMarkerPos _airportX; + _potentials = _potentials select {((getMarkerPos _x distance2D _positionX) < distanceForAirAttack) and !(_x in forcedSpawn)}; + if (count _potentials > 0) then + { + _countX = 0; + _siteX = ""; + { + _numGarr = [_x] call A3A_fnc_garrisonSize; + _numReal = count (garrison getVariable _x); + if (_numGarr - _numReal > _countX) then + { + _countX = _numGarr - _numReal; + _siteX = _x; + }; + } forEach _potentials; + if (_siteX != "") then + { + if ({(getMarkerPos _x distance2d getMarkerPos _siteX < distanceSPWN) and (sidesX getVariable [_x,sideUnknown] != _sideX)} count airportsX == 0) then + { + if ({(_x distance2D _positionX < (2*distanceSPWN)) or (_x distance2D (getMarkerPos _siteX) < (2*distanceSPWN))} count allPlayers == 0) then + { + _typeGroup = if (_sideX == Occupants) then {if (_numberX == 4) then {selectRandom groupsNATOmid} else {selectRandom groupsNATOSquad}} else {if (_numberX == 4) then {selectRandom groupsCSATmid} else {selectRandom groupsCSATSquad}}; + [_typeGroup,_sideX,_siteX,2] remoteExec ["A3A_fnc_garrisonUpdate",2]; + + //This line send a virtual convoy, execute [] execVM "Convoy\convoyDebug.sqf" as admin to see it + //If it breaks, it doesn't change anything + //If it works, it will not add any troups + //[_siteX, "Reinforce", _sideX, [(_numberX == 4)]] remoteExec ["A3A_fnc_createAIAction", 2]; + } + else + { + _reinfPlaces pushBack _siteX; + [[_siteX,_airportX,_numberX,_sideX],"A3A_fnc_patrolReinf"] call A3A_fnc_scheduler; + }; + }; + }; + }; + }; + if (count _reinfPlaces > 3) exitWith {}; +} forEach _airportsX; + +if ((count _reinfPlaces == 0) and (AAFpatrols <= 3)) then {[] spawn A3A_fnc_AAFroadPatrol}; + + +{ + //Setting the number of recruitable units per ticks per airport + garrison setVariable [format ["%1_recruit", _x], 12, true]; +} forEach airportsX; + +{ + //Setting the number of recruitable units per ticks per outpost + garrison setVariable [format ["%1_recruit", _x], 0, true]; +} forEach outposts; + +//New reinf system (still reactive, so a bit shitty) +{ + _side = _x; + _reinfMarker = if(_x == Occupants) then {reinforceMarkerOccupants} else {reinforceMarkerInvader}; + _canReinf = if(_x == Occupants) then {canReinforceOccupants} else {canReinforceInvader}; + diag_log format ["Side %1, needed %2, possible %3", _x, count _reinfMarker, count _canReinf]; + _reinfMarker sort true; + { + _target = (_x select 1); + [_target, "Reinforce", _side, [_canReinf]] remoteExec ["A3A_fnc_createAIAction", 2]; + sleep 10; // prevents convoys spawning on top of each other + //TODO add a feedback if something was send or not + } forEach _reinfMarker; +} forEach [Occupants, Invaders]; +//hint "Reinforce AI done!"; + +//Replenish airports if possible +{ + [_x] call A3A_fnc_replenishGarrison; +} forEach airportsX; diff --git a/A3-Antistasi/CREATE/remoteBattle.sqf b/A3-Antistasi/functions/CREATE/fn_remoteBattle.sqf similarity index 100% rename from A3-Antistasi/CREATE/remoteBattle.sqf rename to A3-Antistasi/functions/CREATE/fn_remoteBattle.sqf diff --git a/A3-Antistasi/CREATE/removeVehFromPool.sqf b/A3-Antistasi/functions/CREATE/fn_removeVehFromPool.sqf similarity index 100% rename from A3-Antistasi/CREATE/removeVehFromPool.sqf rename to A3-Antistasi/functions/CREATE/fn_removeVehFromPool.sqf diff --git a/A3-Antistasi/functions/CREATE/fn_safeVehicleSpawn.sqf b/A3-Antistasi/functions/CREATE/fn_safeVehicleSpawn.sqf new file mode 100644 index 0000000000..fff1cf63b9 --- /dev/null +++ b/A3-Antistasi/functions/CREATE/fn_safeVehicleSpawn.sqf @@ -0,0 +1,46 @@ +/* + * Spawns a vehicle in a place that is *very likely* to be safe - or at least, free of collisions. + * However, we have no guarantee that it will find a place, or that the place found will be free of collisions. + * It is however a damn sight better than base Arma at achieving this. + */ + + +params ["_vehicleType", "_pos", ["_radius", 0], ["_attempts", 3], ["_force", false]]; + +private _spawnPosition = []; +private _willCollide = true; + +private _vehicle = createVehicle [_vehicleType, [0,0,0], [], 0, "NONE"]; +//Disable simulation while we're testing. Save performance AND avoid it blowing up. +_vehicle enableSimulation false; + +private _finished = false; + +for "_i" from 1 to _attempts do { + //We keep changing around the start position, to avoid findEmptyPosition repeatedly returning the same thing. + //Makes the function more likely to succeed. + private _randomOffset = [random (_radius - _radius / 2), random (_radius - _radius / 2), 0]; + _spawnPosition = (_pos vectorAdd _randomOffset) findEmptyPosition [0, (_radius / 2), _vehicleType]; + + if !(_spawnPosition isEqualTo []) then { + _willCollide = [_vehicle, _spawnPosition] call A3A_fnc_vehicleWillCollideAtPosition; + _finished = !_willCollide; + }; + + if (_finished) exitWith {}; +}; + +if (_willCollide && _force) then { + _spawnPosition = [_spawnPosition, _pos] select (_spawnPosition isEqualTo []); + _willCollide = false; +}; + + +if !(_willCollide) exitWith { + _vehicle setPos _spawnPosition; + _vehicle enableSimulation true; + _vehicle; +}; + +deleteVehicle _vehicle; +objNull; \ No newline at end of file diff --git a/A3-Antistasi/CREATE/spawnGroup.sqf b/A3-Antistasi/functions/CREATE/fn_spawnGroup.sqf similarity index 100% rename from A3-Antistasi/CREATE/spawnGroup.sqf rename to A3-Antistasi/functions/CREATE/fn_spawnGroup.sqf diff --git a/A3-Antistasi/CREATE/vehAvailable.sqf b/A3-Antistasi/functions/CREATE/fn_vehAvailable.sqf similarity index 100% rename from A3-Antistasi/CREATE/vehAvailable.sqf rename to A3-Antistasi/functions/CREATE/fn_vehAvailable.sqf diff --git a/A3-Antistasi/CREATE/wavedCA.sqf b/A3-Antistasi/functions/CREATE/fn_wavedCA.sqf similarity index 65% rename from A3-Antistasi/CREATE/wavedCA.sqf rename to A3-Antistasi/functions/CREATE/fn_wavedCA.sqf index 853b4ccd46..b03e29edd9 100644 --- a/A3-Antistasi/CREATE/wavedCA.sqf +++ b/A3-Antistasi/functions/CREATE/fn_wavedCA.sqf @@ -55,11 +55,11 @@ forcedSpawn pushBack _mrkDestination; publicVariable "forcedSpawn"; diag_log format ["%1: [Antistasi] | INFO | Side Attacker:%2, Side Defender: %3",servertime,_sideX,_isSDK]; _nameDest = [_mrkDestination] call A3A_fnc_localizar; -[_sideTsk,"AttackAAF",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,false,0,true,"Defend",true] call BIS_fnc_taskCreate; -[_sideTsk1,"AttackAAF1",[format ["We are attacking %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,false,0,true,"Attack",true] call BIS_fnc_taskCreate; -//_tsk = ["AttackAAF",_sideTsk,[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"CREATED",10,true,true,"Defend"] call BIS_fnc_setTask; -//missionsX pushbackUnique "AttackAAF"; publicVariable "missionsX"; -//_tsk1 = ["AttackAAF1",_sideTsk1,[format ["We are attacking %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"CREATED",10,true,true,"Attack"] call BIS_fnc_setTask; +[_sideTsk,"rebelAttack",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,false,0,true,"Defend",true] call BIS_fnc_taskCreate; +[_sideTsk1,"rebelAttackPVP",[format ["We are attacking %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,false,0,true,"Attack",true] call BIS_fnc_taskCreate; +//_tsk = ["rebelAttack",_sideTsk,[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"CREATED",10,true,true,"Defend"] call BIS_fnc_setTask; +//missionsX pushbackUnique "rebelAttack"; publicVariable "missionsX"; +//_tsk1 = ["rebelAttackPVP",_sideTsk1,[format ["We are attacking %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"CREATED",10,true,true,"Attack"] call BIS_fnc_setTask; _timeX = time + 3600; @@ -77,7 +77,7 @@ while {(_waves > 0)} do _airportIndex = airportsX find _mrkOrigin; if (_airportIndex >= 0 and (_posOrigin distance _posDestination < distanceForLandAttack)) then { - _spawnPoint = spawnPoints select _airportIndex; + _spawnPoint = server getVariable (format ["spawn_%1", _mrkOrigin]); _pos = getMarkerPos _spawnPoint; _posOriginLand = _posOrigin; _dir = markerDir _spawnPoint; @@ -99,7 +99,6 @@ while {(_waves > 0)} do }; if !(_pos isEqualTo []) then { - if ([_mrkDestination,true] call A3A_fnc_fogCheck < 0.3) then {_nveh = round (1.5*_nveh)}; _vehPool = if (_sideX == Occupants) then {vehNATOAttack} else {vehCSATAttack}; _vehPool = _vehPool select {[_x] call A3A_fnc_vehAvailable}; if (_isSDK) then @@ -131,11 +130,7 @@ while {(_waves > 0)} do { if (_sideX == Occupants) then {_vehPool = vehNATOTrucks} else {_vehPool = vehCSATTrucks}; }; - _typeVehX = selectRandom _vehPool; - if ((_countX == _nVeh) and (_typeVehX in vehTanks)) then - { - _typeVehX = if (_sideX == Occupants) then {selectRandom vehNATOTrucks} else {selectRandom vehCSATTrucks}; - }; + _typeVehX = [selectRandom _vehPool, selectRandom vehNATOTrucks] select (random 1 > 0.75); _proceed = true; if ((_typeVehX in (vehNATOTrucks+vehCSATTrucks)) and _spawnedSquad) then { @@ -201,7 +196,7 @@ while {(_waves > 0)} do (units _grupo) joinSilent _groupVeh; deleteGroup _grupo; _groupVeh spawn A3A_fnc_attackDrillAI; - [_posOriginLand,_landPos,_groupVeh] call WPCreate; + [_posOriginLand,_landPos,_groupVeh] call A3A_fnc_WPCreate; _Vwp0 = (wayPoints _groupVeh) select 0; _Vwp0 setWaypointBehaviour "SAFE"; _Vwp0 = _groupVeh addWaypoint [_landPos, count (wayPoints _groupVeh)]; @@ -221,7 +216,7 @@ while {(_waves > 0)} do deleteGroup _grupo; _groupVeh selectLeader (units _groupVeh select 1); _groupVeh spawn A3A_fnc_attackDrillAI; - [_posOriginLand,_landPos,_groupVeh] call WPCreate; + [_posOriginLand,_landPos,_groupVeh] call A3A_fnc_WPCreate; _Vwp0 = (wayPoints _groupVeh) select 0; _Vwp0 setWaypointBehaviour "SAFE"; _Vwp0 = _groupVeh addWaypoint [_landPos, count (wayPoints _groupVeh)]; @@ -235,7 +230,7 @@ while {(_waves > 0)} do else { {_x disableAI "MINEDETECTION"} forEach (units _groupVeh); - [_posOriginLand,_posDestination,_groupVeh] call WPCreate; + [_posOriginLand,_posDestination,_groupVeh] call A3A_fnc_WPCreate; _Vwp0 = (wayPoints _groupVeh) select 0; _Vwp0 setWaypointBehaviour "SAFE"; _Vwp0 = _groupVeh addWaypoint [_posDestination, count (wayPoints _groupVeh)]; @@ -391,202 +386,212 @@ while {(_waves > 0)} do }; }; }; - if ([_mrkDestination,true] call A3A_fnc_fogCheck >= 0.3) then + if ((_posOrigin distance _posDestination < distanceForLandAttack) and !(_mrkDestination in blackListDest)) then {sleep ((_posOrigin distance _posDestination)/30)}; + _posGround = [_posOrigin select 0,_posOrigin select 1,0]; + _posOrigin set [2,300]; + _groupUAV = grpNull; + if !(hasIFA) then + { + //75% chance to spawn a UAV, to give some variety. + if (random 1 < 0.25) exitWith {}; + _typeVehX = if (_sideX == Occupants) then {vehNATOUAV} else {vehCSATUAV}; + + _uav = createVehicle [_typeVehX, _posOrigin, [], 0, "FLY"]; + _vehiclesX pushBack _uav; + //[_uav,"UAV"] spawn A3A_fnc_inmuneConvoy; + [_uav,_mrkDestination,_sideX] spawn A3A_fnc_VANTinfo; + createVehicleCrew _uav; + _pilots append (crew _uav); + _groupUAV = group (crew _uav select 0); + _groups pushBack _groupUAV; + {[_x] call A3A_fnc_NATOinit} forEach units _groupUAV; + [_uav] call A3A_fnc_AIVEHinit; + _uwp0 = _groupUAV addWayPoint [_posDestination,0]; + _uwp0 setWaypointBehaviour "AWARE"; + _uwp0 setWaypointType "SAD"; + if (not(_mrkDestination in airportsX)) then {_uav removeMagazines "6Rnd_LG_scalpel"}; + sleep 5; + } + else + { + _groupUAV = createGroup _sideX; + //_posOrigin set [2,2000]; + _uwp0 = _groupUAV addWayPoint [_posDestination,0]; + _uwp0 setWaypointBehaviour "AWARE"; + _uwp0 setWaypointType "SAD"; + }; + _vehPool = if (_sideX == Occupants) then + { + if (_mrkDestination in airportsX) then {(vehNATOAir - [vehNATOPlaneAA]) select {[_x] call A3A_fnc_vehAvailable}} else {(vehNatoAir - [vehNATOPlaneAA, vehNATOPlane]) select {[_x] call A3A_fnc_vehAvailable}}; + } + else + { + if (_mrkDestination in airportsX) then {(vehCSATAir - [vehCSATPlaneAA]) select {[_x] call A3A_fnc_vehAvailable}} else {(vehCSATAir - [vehCSATPlaneAA, vehCSATPlane]) select {[_x] call A3A_fnc_vehAvailable}}; + }; + if (_isSDK) then { - if ((_posOrigin distance _posDestination < distanceForLandAttack) and !(_mrkDestination in blackListDest)) then {sleep ((_posOrigin distance _posDestination)/30)}; - _posGround = [_posOrigin select 0,_posOrigin select 1,0]; - _posOrigin set [2,300]; - _groupUAV = grpNull; - if !(hasIFA) then + _rnd = random 100; + if (_sideX == Occupants) then { - _typeVehX = if (_sideX == Occupants) then {vehNATOUAV} else {vehCSATUAV}; - - _uav = createVehicle [_typeVehX, _posOrigin, [], 0, "FLY"]; - _vehiclesX pushBack _uav; - //[_uav,"UAV"] spawn A3A_fnc_inmuneConvoy; - [_uav,_mrkDestination,_sideX] spawn A3A_fnc_VANTinfo; - createVehicleCrew _uav; - _pilots append (crew _uav); - _groupUAV = group (crew _uav select 0); - _groups pushBack _groupUAV; - {[_x] call A3A_fnc_NATOinit} forEach units _groupUAV; - [_uav] call A3A_fnc_AIVEHinit; - _uwp0 = _groupUAV addWayPoint [_posDestination,0]; - _uwp0 setWaypointBehaviour "AWARE"; - _uwp0 setWaypointType "SAD"; - if (not(_mrkDestination in airportsX)) then {_uav removeMagazines "6Rnd_LG_scalpel"}; - sleep 5; + if (_rnd > prestigeNATO) then + { + _vehPool = _vehPool - [vehNATOPlane]; + }; } else { - _groupUAV = createGroup _sideX; - //_posOrigin set [2,2000]; - _uwp0 = _groupUAV addWayPoint [_posDestination,0]; - _uwp0 setWaypointBehaviour "AWARE"; - _uwp0 setWaypointType "SAD"; + if (_rnd > prestigeCSAT) then + { + _vehPool = _vehPool - [vehCSATPlane]; + }; }; - _vehPool = if (_sideX == Occupants) then - { - if (_mrkDestination in airportsX) then {(vehNATOAir - [vehNATOPlaneAA]) select {[_x] call A3A_fnc_vehAvailable}} else {(vehNatoAir - [vehNATOPlaneAA, vehNATOPlane]) select {[_x] call A3A_fnc_vehAvailable}}; - } - else - { - if (_mrkDestination in airportsX) then {(vehCSATAir - [vehCSATPlaneAA]) select {[_x] call A3A_fnc_vehAvailable}} else {(vehCSATAir - [vehCSATPlaneAA, vehCSATPlane]) select {[_x] call A3A_fnc_vehAvailable}}; - }; - if (_isSDK) then + }; + if ((_waves != 1) and (_firstWave) and (!hasIFA)) then + { + if (count (_vehPool - vehTransportAir) != 0) then {_vehPool = _vehPool - vehTransportAir}; + }; + _countX = 1; + _pos = _posOrigin; + _ang = 0; + _size = [_mrkOrigin] call A3A_fnc_sizeMarker; + private _runwayTakeoff = [_mrkOrigin] call A3A_fnc_getRunwayTakeoffForAirportMarker; + if (count _runwayTakeoff > 0) then { + _pos = _runwayTakeoff select 0; + _ang = _runwayTakeoff select 1; + }; + _spawnedSquad = false; + + private _transportAircraft = + if (_sideX == Occupants) then { + vehNATOTransportHelis + vehNATOTransportPlanes; + } else { + vehCSATTransportHelis + vehCSATTransportPlanes; + }; + + while {(_countX <= _nVeh) and (count _soldiers <= 80)} do + { + _proceed = true; + + private _availableTransportAircraft = _transportAircraft select {[_x] call A3A_fnc_vehAvailable}; + + if (_vehPool isEqualTo []) then { + _vehPool = _availableTransportAircraft; + }; + + //Give us a rough 20% baseline of transport aircraft, with a bit of randomness for added flair. + _typeVehX = [selectRandom _vehPool, selectRandom _availableTransportAircraft] select (random 1 < 0.20); + + _typeVehX = if !(_vehPool isEqualTo []) then {selectRandom _vehPool} else {if (_sideX == Occupants) then {selectRandom ([vehNATOPatrolHeli] + vehNATOTransportPlanes)} else {selectRandom ([vehCSATPatrolHeli] + vehCSATTransportPlanes)}}; + if ((_typeVehX in vehTransportAir) and !(_spawnedSquad)) then { - _rnd = random 100; - if (_sideX == Occupants) then + _allUnits = {(local _x) and (alive _x)} count allUnits; + _allUnitsSide = 0; + _maxUnitsSide = maxUnits; + if (gameMode <3) then { - if (_rnd > prestigeNATO) then - { - _vehPool = _vehPool - [vehNATOPlane]; - }; - } - else + _allUnitsSide = {(local _x) and (alive _x) and (side group _x == _sideX)} count allUnits; + _maxUnitsSide = round (maxUnits * 0.7); + }; + if ((_allUnits + 4 > maxUnits) or (_allUnitsSide + 4 > _maxUnitsSide)) then { - if (_rnd > prestigeCSAT) then - { - _vehPool = _vehPool - [vehCSATPlane]; - }; + _proceed = false }; }; - if ((_waves != 1) and (_firstWave) and (!hasIFA)) then + if (_proceed) then { - if (count (_vehPool - vehTransportAir) != 0) then {_vehPool = _vehPool - vehTransportAir}; + _vehicle=[_pos, _ang + 90,_typeVehX, _sideX] call bis_fnc_spawnvehicle; + _veh = _vehicle select 0; + if (_veh isKindOf "Plane") then { + _veh setVelocityModelSpace (velocityModelSpace _veh vectorAdd [0, 150, 50]); }; - _countX = 1; - _pos = _posOrigin; - _ang = 0; - _size = [_mrkOrigin] call A3A_fnc_sizeMarker; - private _runwayTakeoff = [_mrkOrigin] call A3A_fnc_getRunwayTakeoffForAirportMarker; - if (count _runwayTakeoff > 0) then { - _pos = _runwayTakeoff select 0; - _ang = _runwayTakeoff select 1; - }; - _spawnedSquad = false; - while {(_countX <= _nVeh) and (count _soldiers <= 80)} do - { - _proceed = true; - if (_countX == _nveh) then { - if (_sideX == Occupants) then { - _vehPool = _vehPool select {_x in (vehNATOTransportHelis + vehNATOTransportPlanes)} - } else { - _vehPool = _vehPool select {_x in (vehCSATTransportHelis + vehCSATTransportPlanes)} + _vehCrew = _vehicle select 1; + _groupVeh = _vehicle select 2; + _pilots append _vehCrew; + _vehiclesX pushBack _veh; + {[_x] call A3A_fnc_NATOinit} forEach units _groupVeh; + [_veh] call A3A_fnc_AIVEHinit; + if (not (_typeVehX in vehTransportAir)) then + { + (units _groupVeh) joinSilent _groupUAV; + deleteGroup _groupVeh; + //[_veh,"Air Attack"] spawn A3A_fnc_inmuneConvoy; } - }; - _typeVehX = if !(_vehPool isEqualTo []) then {selectRandom _vehPool} else {if (_sideX == Occupants) then {selectRandom ([vehNATOPatrolHeli] + vehNATOTransportPlanes)} else {selectRandom ([vehCSATPatrolHeli] + vehCSATTransportPlanes)}}; - if ((_typeVehX in vehTransportAir) and !(_spawnedSquad)) then + else { - _allUnits = {(local _x) and (alive _x)} count allUnits; - _allUnitsSide = 0; - _maxUnitsSide = maxUnits; - if (gameMode <3) then + _groups pushBack _groupVeh; + _typeGroup = [_typeVehX,_sideX] call A3A_fnc_cargoSeats; + _grupo = grpNull; + if !(_spawnedSquad) then {_grupo = [_posGround,_sideX, _typeGroup,true,false] call A3A_fnc_spawnGroup;_spawnedSquad = true} else {_grupo = [_posGround,_sideX, _typeGroup] call A3A_fnc_spawnGroup}; + _groups pushBack _grupo; + { + _x assignAsCargo _veh; + _x moveInCargo _veh; + if (vehicle _x == _veh) then { - _allUnitsSide = {(local _x) and (alive _x) and (side group _x == _sideX)} count allUnits; - _maxUnitsSide = round (maxUnits * 0.7); - }; - if ((_allUnits + 4 > maxUnits) or (_allUnitsSide + 4 > _maxUnitsSide)) then + _soldiers pushBack _x; + _soldiersTotal pushBack _x; + [_x] call A3A_fnc_NATOinit; + _x setVariable ["originX",_mrkOrigin]; + } + else { - _proceed = false + deleteVehicle _x; }; - }; - if (_proceed) then - { - _vehicle=[_pos, _ang + 90,_typeVehX, _sideX] call bis_fnc_spawnvehicle; - _veh = _vehicle select 0; - if (_veh isKindOf "Plane") then { - _veh setVelocityModelSpace (velocityModelSpace _veh vectorAdd [0, 150, 50]); - }; - _vehCrew = _vehicle select 1; - _groupVeh = _vehicle select 2; - _pilots append _vehCrew; - _vehiclesX pushBack _veh; - {[_x] call A3A_fnc_NATOinit} forEach units _groupVeh; - [_veh] call A3A_fnc_AIVEHinit; - if (not (_typeVehX in vehTransportAir)) then + } forEach units _grupo; + if (!(_veh isKindOf "Helicopter") or (_mrkDestination in airportsX)) then { - (units _groupVeh) joinSilent _groupUAV; - deleteGroup _groupVeh; - //[_veh,"Air Attack"] spawn A3A_fnc_inmuneConvoy; + [_veh,_grupo,_mrkDestination,_mrkOrigin] spawn A3A_fnc_airdrop; } else { - _groups pushBack _groupVeh; - _typeGroup = [_typeVehX,_sideX] call A3A_fnc_cargoSeats; - _grupo = grpNull; - if !(_spawnedSquad) then {_grupo = [_posGround,_sideX, _typeGroup,true,false] call A3A_fnc_spawnGroup;_spawnedSquad = true} else {_grupo = [_posGround,_sideX, _typeGroup] call A3A_fnc_spawnGroup}; - _groups pushBack _grupo; - { - _x assignAsCargo _veh; - _x moveInCargo _veh; - if (vehicle _x == _veh) then - { - _soldiers pushBack _x; - _soldiersTotal pushBack _x; - [_x] call A3A_fnc_NATOinit; - _x setVariable ["originX",_mrkOrigin]; - } - else - { - deleteVehicle _x; - }; - } forEach units _grupo; - if (!(_veh isKindOf "Helicopter") or (_mrkDestination in airportsX)) then + _landPos = _posDestination getPos [300, random 360]; + _landPos = [_landPos, 0, 550, 10, 0, 0.20, 0,[],[[0,0,0],[0,0,0]]] call BIS_fnc_findSafePos; + if !(_landPos isEqualTo [0,0,0]) then { - [_veh,_grupo,_mrkDestination,_mrkOrigin] spawn A3A_fnc_airdrop; + _landPos set [2, 0]; + _pad = createVehicle ["Land_HelipadEmpty_F", _landPos, [], 0, "NONE"]; + _vehiclesX pushBack _pad; + _wp0 = _groupVeh addWaypoint [_landpos, 0]; + _wp0 setWaypointType "TR UNLOAD"; + _wp0 setWaypointStatements ["true", "(vehicle this) land 'GET OUT';[vehicle this] call A3A_fnc_smokeCoverAuto"]; + _wp0 setWaypointBehaviour "CARELESS"; + _wp3 = _grupo addWaypoint [_landpos, 0]; + _wp3 setWaypointType "GETOUT"; + _wp3 setWaypointStatements ["true", "(group this) spawn A3A_fnc_attackDrillAI"]; + //_grupo setVariable ["mrkAttack",_mrkDestination]; + //_wp3 setWaypointStatements ["true","nul = [this, (group this getVariable ""mrkAttack""), ""SPAWNED"",""NOVEH2"",""NOFOLLOW"",""NOWP3""] execVM ""scripts\UPSMON.sqf"";"]; + _wp0 synchronizeWaypoint [_wp3]; + _wp4 = _grupo addWaypoint [_posDestination, 1]; + _wp4 setWaypointType "SAD"; + //_wp4 setWaypointStatements ["true","{if (side _x != side this) then {this reveal [_x,4]}} forEach allUnits"]; + //_wp4 setWaypointStatements ["true","nul = [this, (group this getVariable ""mrkAttack""), ""SPAWNED"",""NOVEH2"",""NOFOLLOW"",""NOWP3""] execVM ""scripts\UPSMON.sqf"";"]; + _wp4 = _grupo addWaypoint [_posDestination, 1]; + //_wp4 setWaypointType "SAD"; + _wp2 = _groupVeh addWaypoint [_posOrigin, 1]; + _wp2 setWaypointType "MOVE"; + _wp2 setWaypointStatements ["true", "deleteVehicle (vehicle this); {deleteVehicle _x} forEach thisList"]; + [_groupVeh,1] setWaypointBehaviour "AWARE"; } else { - _landPos = _posDestination getPos [300, random 360]; - _landPos = [_landPos, 0, 550, 10, 0, 0.20, 0,[],[[0,0,0],[0,0,0]]] call BIS_fnc_findSafePos; - if !(_landPos isEqualTo [0,0,0]) then + {_x disableAI "TARGET"; _x disableAI "AUTOTARGET"} foreach units _groupVeh; + if ((_typeVehX in vehFastRope) and ((count(garrison getVariable _mrkDestination)) < 10)) then { - _landPos set [2, 0]; - _pad = createVehicle ["Land_HelipadEmpty_F", _landPos, [], 0, "NONE"]; - _vehiclesX pushBack _pad; - _wp0 = _groupVeh addWaypoint [_landpos, 0]; - _wp0 setWaypointType "TR UNLOAD"; - _wp0 setWaypointStatements ["true", "(vehicle this) land 'GET OUT';[vehicle this] call A3A_fnc_smokeCoverAuto"]; - _wp0 setWaypointBehaviour "CARELESS"; - _wp3 = _grupo addWaypoint [_landpos, 0]; - _wp3 setWaypointType "GETOUT"; - _wp3 setWaypointStatements ["true", "(group this) spawn A3A_fnc_attackDrillAI"]; //_grupo setVariable ["mrkAttack",_mrkDestination]; - //_wp3 setWaypointStatements ["true","nul = [this, (group this getVariable ""mrkAttack""), ""SPAWNED"",""NOVEH2"",""NOFOLLOW"",""NOWP3""] execVM ""scripts\UPSMON.sqf"";"]; - _wp0 synchronizeWaypoint [_wp3]; - _wp4 = _grupo addWaypoint [_posDestination, 1]; - _wp4 setWaypointType "SAD"; - //_wp4 setWaypointStatements ["true","{if (side _x != side this) then {this reveal [_x,4]}} forEach allUnits"]; - //_wp4 setWaypointStatements ["true","nul = [this, (group this getVariable ""mrkAttack""), ""SPAWNED"",""NOVEH2"",""NOFOLLOW"",""NOWP3""] execVM ""scripts\UPSMON.sqf"";"]; - _wp4 = _grupo addWaypoint [_posDestination, 1]; - //_wp4 setWaypointType "SAD"; - _wp2 = _groupVeh addWaypoint [_posOrigin, 1]; - _wp2 setWaypointType "MOVE"; - _wp2 setWaypointStatements ["true", "deleteVehicle (vehicle this); {deleteVehicle _x} forEach thisList"]; - [_groupVeh,1] setWaypointBehaviour "AWARE"; + [_veh,_grupo,_posDestination,_posOrigin,_groupVeh] spawn A3A_fnc_fastrope; } else { - {_x disableAI "TARGET"; _x disableAI "AUTOTARGET"} foreach units _groupVeh; - if ((_typeVehX in vehFastRope) and ((count(garrison getVariable _mrkDestination)) < 10)) then - { - //_grupo setVariable ["mrkAttack",_mrkDestination]; - [_veh,_grupo,_posDestination,_posOrigin,_groupVeh] spawn A3A_fnc_fastrope; - } - else - { - [_veh,_grupo,_mrkDestination,_mrkOrigin] spawn A3A_fnc_airdrop; - } - }; + [_veh,_grupo,_mrkDestination,_mrkOrigin] spawn A3A_fnc_airdrop; + } }; }; }; - sleep 1; - _pos = [_pos, 80,_ang] call BIS_fnc_relPos; - _countX = _countX + 1; - _vehPool = _vehPool select {[_x] call A3A_fnc_vehAvailable}; }; + sleep 1; + _pos = [_pos, 80,_ang] call BIS_fnc_relPos; + _countX = _countX + 1; + _vehPool = _vehPool select {[_x] call A3A_fnc_vehAvailable}; }; _plane = if (_sideX == Occupants) then {vehNATOPlane} else {vehCSATPlane}; if (_sideX == Occupants) then @@ -655,7 +660,7 @@ while {(_waves > 0)} do if !([true] call A3A_fnc_FIAradio) then {sleep 100}; _SDKShown = true; ["TaskSucceeded", ["", "Attack Destination Updated"]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; - ["AttackAAF",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"CREATED"] call A3A_fnc_taskUpdate; + ["rebelAttack",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"CREATED"] call A3A_fnc_taskUpdate; }; _solMax = round ((count _soldiers)*0.6); _waves = _waves -1; @@ -669,12 +674,12 @@ while {(_waves > 0)} do { _waves = 0; if ((!(sidesX getVariable [_mrkDestination,sideUnknown] == Occupants)) and !(_mrkDestination in citiesX)) then {[Occupants,_mrkDestination] remoteExec ["A3A_fnc_markerChange",2]}; - ["AttackAAF",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"FAILED"] call A3A_fnc_taskUpdate; - ["AttackAAF1",[format ["We are attacking an %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"SUCEEDED"] call A3A_fnc_taskUpdate; + ["rebelAttack",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"FAILED"] call A3A_fnc_taskUpdate; + ["rebelAttackPVP",[format ["We are attacking an %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"SUCEEDED"] call A3A_fnc_taskUpdate; if (_mrkDestination in citiesX) then { [0,-100,_mrkDestination] remoteExec ["A3A_fnc_citySupportChange",2]; - ["TaskFailed", ["", format ["%1 joined %2",[_mrkDestination, false] call A3A_fnc_fn_location,nameOccupants]]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; + ["TaskFailed", ["", format ["%1 joined %2",[_mrkDestination, false] call A3A_fnc_location,nameOccupants]]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; sidesX setVariable [_mrkDestination,Occupants,true]; _nul = [-5,0] remoteExec ["A3A_fnc_prestige",2]; _mrkD = format ["Dum%1",_mrkDestination]; @@ -693,27 +698,13 @@ while {(_waves > 0)} do killZones setVariable [_mrkOrigin,_killZones,true]; }; - if !(_posOriginLand isEqualTo []) then - { - if ({[_x] call A3A_fnc_vehAvailable} count vehNATOAPC == 0) then {_waves = _waves -1}; - if !([vehNATOTank] call A3A_fnc_vehAvailable) then {_waves = _waves - 1}; - }; - if ({[_x] call A3A_fnc_vehAvailable} count vehNATOAttackHelis == 0) then - { - if (_posOriginLand isEqualTo []) then {_waves = _waves -2} else {_waves = _waves -1}; - }; - if !([vehNATOPlane] call A3A_fnc_vehAvailable) then - { - if (_posOriginLand isEqualTo []) then {_waves = _waves -2} else {_waves = _waves -1}; - }; - if ((_waves <= 0) or (!(sidesX getVariable [_mrkOrigin,sideUnknown] == Occupants))) then { {_x doMove _posOrigin} forEach _soldiersTotal; if (_waves <= 0) then {[_mrkDestination,_mrkOrigin] call A3A_fnc_minefieldAAF}; - ["AttackAAF",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"SUCCEEDED"] call A3A_fnc_taskUpdate; - ["AttackAAF1",[format ["We are attacking an %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"FAILED"] call A3A_fnc_taskUpdate; + ["rebelAttack",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"SUCCEEDED"] call A3A_fnc_taskUpdate; + ["rebelAttackPVP",[format ["We are attacking an %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"FAILED"] call A3A_fnc_taskUpdate; }; }; } @@ -725,8 +716,8 @@ while {(_waves > 0)} do { _waves = 0; if (not(sidesX getVariable [_mrkDestination,sideUnknown] == Invaders)) then {[Invaders,_mrkDestination] remoteExec ["A3A_fnc_markerChange",2]}; - ["AttackAAF",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"FAILED"] call A3A_fnc_taskUpdate; - ["AttackAAF1",[format ["We are attacking an %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"SUCCEEDED"] call A3A_fnc_taskUpdate; + ["rebelAttack",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"FAILED"] call A3A_fnc_taskUpdate; + ["rebelAttackPVP",[format ["We are attacking an %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"SUCCEEDED"] call A3A_fnc_taskUpdate; }; sleep 10; if (!(sidesX getVariable [_mrkDestination,sideUnknown] == Invaders)) then @@ -740,26 +731,12 @@ while {(_waves > 0)} do killZones setVariable [_mrkOrigin,_killZones,true]; }; - if !(_posOriginLand isEqualTo []) then - { - if ({[_x] call A3A_fnc_vehAvailable} count vehCSATAPC == 0) then {_waves = _waves -1}; - if !([vehCSATTank] call A3A_fnc_vehAvailable) then {_waves = _waves - 1}; - }; - if ({[_x] call A3A_fnc_vehAvailable} count vehCSATAttackHelis == 0) then - { - if (_posOriginLand isEqualTo []) then {_waves = _waves -2} else {_waves = _waves -1}; - }; - if !([vehCSATPlane] call A3A_fnc_vehAvailable) then - { - if (_posOriginLand isEqualTo []) then {_waves = _waves -2} else {_waves = _waves -1}; - }; - if ((_waves <= 0) or (sidesX getVariable [_mrkOrigin,sideUnknown] != Invaders)) then { {_x doMove _posOrigin} forEach _soldiersTotal; if (_waves <= 0) then {[_mrkDestination,_mrkOrigin] call A3A_fnc_minefieldAAF}; - ["AttackAAF",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"SUCCEEDED"] call A3A_fnc_taskUpdate; - ["AttackAAF1",[format ["We are attacking an %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"FAILED"] call A3A_fnc_taskUpdate; + ["rebelAttack",[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],format ["%1 Attack",_nameENY],_mrkOrigin],getMarkerPos _mrkOrigin,"SUCCEEDED"] call A3A_fnc_taskUpdate; + ["rebelAttackPVP",[format ["We are attacking an %2 from the %1. Help the operation if you can",_nameOrigin,_nameDest],format ["%1 Attack",_nameENY],_mrkDestination],getMarkerPos _mrkDestination,"FAILED"] call A3A_fnc_taskUpdate; }; }; }; @@ -769,7 +746,7 @@ while {(_waves > 0)} do -//_tsk = ["AttackAAF",_sideTsk,[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],"AAF Attack",_mrkOrigin],getMarkerPos _mrkOrigin,"FAILED",10,true,true,"Defend"] call BIS_fnc_setTask; +//_tsk = ["rebelAttack",_sideTsk,[format ["%2 Is attacking from the %1. Intercept them or we may loose a sector",_nameOrigin,_nameENY],"AAF Attack",_mrkOrigin],getMarkerPos _mrkOrigin,"FAILED",10,true,true,"Defend"] call BIS_fnc_setTask; if (_isSDK) then { if (!(sidesX getVariable [_mrkDestination,sideUnknown] == teamPlayer)) then @@ -784,8 +761,8 @@ if (_isSDK) then }; diag_log "Antistasi: Reached end of winning conditions. Starting despawn"; sleep 30; -_nul = [0,"AttackAAF"] spawn A3A_fnc_deleteTask; -_nul = [0,"AttackAAF1"] spawn A3A_fnc_deleteTask; +_nul = [0,"rebelAttack"] spawn A3A_fnc_deleteTask; +_nul = [0,"rebelAttackPVP"] spawn A3A_fnc_deleteTask; [_mrkOrigin,60] call A3A_fnc_addTimeForIdle; bigAttackInProgress = false; publicVariable "bigAttackInProgress"; diff --git a/A3-Antistasi/functions/Convoy/PrepareFightData.sqf b/A3-Antistasi/functions/Convoy/PrepareFightData.sqf new file mode 100644 index 0000000000..a798a8c575 --- /dev/null +++ b/A3-Antistasi/functions/Convoy/PrepareFightData.sqf @@ -0,0 +1,82 @@ +params ["_marker", "_attackingUnits", "_sideAttacker"]; + +if(isNil "_marker") exitWith {diag_log "PrepareFightData: Can't simulate a fight without a marker!"}; +if(isNil "_attackingUnits") exitWith {diag_log "PrepareFightData: No attacking units found!"}; + +_sideDefender = sidesX getVariable [_marker, sideUnknown]; + +if(_sideDefender == _sideAttacker) exitWith +{ + //This was either a reinforment convoy or a patrol, neither needs a simulated fight + //TODO add a check whether case and act depending on it + diag_log "PrepareFightData: Attacker and Defender are the same side. No fighting needed!"; +}; + +_attackerMan = []; +_attackerLight = []; +_attackerAPC = []; +_attackerTank = []; +_attackerHeli = []; +_attackerJet = []; +_attackerStatics = []; + + + +{ + _vehicleData = _x; + _vehicle = _vehicleData select 0; + _cargoUnits = _vehicleData select 1; + _hasCargo = (count _cargoUnits) > 0; + switch (true) do + { + case (_vehicle isKindOf "Car") : {_attackerLight pushBack [_vehicle, _hasCargo]}; + case (_vehicle isKindOf "APC") : {_attackerAPC pushBack [_vehicle, _hasCargo]}; + case (_vehicle isKindOf "Tank") : {_attackerTank pushBack [_vehicle, false]}; + case (_vehicle isKindOf "Helicopter") : {_attackerHeli pushBack [_vehicle, _hasCargo]}; + case (_vehicle isKindOf "Plane") : {_attackerJet pushBack [_vehicle, false]}; + case (_vehicle isKindOf "StaticWeapon") : {_attackerStatics pushBack [_vehicle, true]}; + default {}; + }; + { + if(_x isKindOf "Man") then {_attackerMan pushBack [_x, _vehicle]}; + } forEach _cargoUnits; +} forEach _attackingUnits; + + +__defenderTroops = []; +__defenderMan = []; +__defenderCar = []; +__defenderAPC = []; +__defenderTank = []; +__defenderHeli = []; +__defenderJet = []; +__defenderStatics = []; + + +//This does not work, the garrison only counts foot units, statics are added by script as much as their crew +//For FIA it is saved different again +//Who did this, for real?? + +/* +{ + _vehicleData = _x; + _vehicle = _vehicleData select 0; + _cargoUnits = _vehicleData select 1; + _hasCargo = (count _cargoUnits) > 0; + switch (true) do + { + case (_vehicle isKindOf "Car") : {__defenderCar pushBack [_vehicle, _hasCargo]}; + case (_vehicle isKindOf "APC") : {__defenderAPC pushBack [_vehicle, _hasCargo]}; + case (_vehicle isKindOf "Tank") : {__defenderTank pushBack [_vehicle, false]}; + case (_vehicle isKindOf "Helicopter") : {__defenderHeli pushBack [_vehicle, _hasCargo]}; + case (_vehicle isKindOf "Plane") : {__defenderJet pushBack [_vehicle, false]}; + case (_vehicle isKindOf "StaticWeapon") : {__defenderStatics pushBack [_vehicle, true]}; + default {}; + }; + { + if(_x isKindOf "Man") then {__defenderMan pushBack [_x, _vehicle]}; + } forEach _cargoUnits; +} forEach _attackingUnits; +*/ + +//The data has to be saved globally and executed once a second to ensure reinforcements can join the battle diff --git a/A3-Antistasi/functions/Convoy/fn_convoyDebug.sqf b/A3-Antistasi/functions/Convoy/fn_convoyDebug.sqf new file mode 100644 index 0000000000..e92898b89c --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_convoyDebug.sqf @@ -0,0 +1,38 @@ +/* Shows the convoy markers on the maps, if this is either singleplayer or you are admin +* Params: +* None +* Returns: +* Nothing +*/ + +//Fixes users are not able to follow instructions +if(!canSuspend) exitWith +{ + [] spawn A3A_fnc_convoyDebug; +}; + +if(isDedicated) exitWith {}; + +if(isMultiplayer && {!isServer} && {!(call BIS_fnc_admin > 0)}) exitWith {hint "Only server admins can execute the convoy debug!"}; + +player setVariable ["convoyDebug", true]; +sleep 1; + +_stop = player addAction ["Deactivate convoy debug", {(_this select 0) setVariable ["convoyDebug", false]; (_this select 0) removeAction (_this select 2);}, nil, 0, false, false, "", "_originalTarget == _this"]; + +while {player getVariable ["convoyDebug", false]} do +{ + if(count convoyMarker != 0) then + { + { + _x setMarkerAlphaLocal 1; + } forEach convoyMarker; + }; + sleep 10; +}; + +player removeAction _stop; + +{ + _x setMarkerAlphaLocal 0; +} forEach convoyMarker; diff --git a/A3-Antistasi/functions/Convoy/fn_convoyMovement.sqf b/A3-Antistasi/functions/Convoy/fn_convoyMovement.sqf new file mode 100644 index 0000000000..6f8dc9eac4 --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_convoyMovement.sqf @@ -0,0 +1,127 @@ +params ["_convoyID" ,"_route", "_markerArray", "_maxSpeed", "_units", "_convoySide", "_convoyType", "_isAir", ["_debugObject", nil]]; + +/* Simulates the movement of the convoy +* Params: +* _convoyID : NUMBER; the unique convoy ID +* _route : ARRAY; contains the position of the route points +* _markerArray +* _maxSpeed : NUMBER; contains the max speed the convoy can move in m/s +* _units : ARRAY; contains the units and vehicles, will not be used in here, just passed +* _convoySide : SIDE; contains the side of the convoy +* _convoyType : STRING; contains one of "ATTACK", "PATROL" or "REINFORCE" +* _debugObject : OBJECT (optional); object to visualize the convoy travel +* Returns: + Nothing +*/ +private _convoyMarker = format ["convoy%1", _convoyID]; + +if(!(_maxSpeed > 0)) exitWith +{ + diag_log format ["ConvoyMovement[%1]: Max speed is 0 or lower, can't simulate convoy with it!", _convoyID]; + deleteMarker _convoyMarker; +}; + +_maxSpeed = _maxSpeed * 0.8; //Only drive with 80% of max speed + + +private _isDebug = !(isNil "_debugObject"); + +private _pointsCount = count _route; +private _currentPos = _route select 0; +private _remainingRoute = +_route; +_remainingRoute deleteAt 0; + +private _isSimulated = true; +private _isDestroyed = false; +private _roadBlockCountdown = 0; +private _currentRoadBlock = ""; + +if(_isDebug) then {_debugObject setPos _currentPos;}; + +for "_i" from 1 to (_pointsCount - 1) do +{ + private _lastPoint = _route select (_i - 1); + private _nextPoint = _route select (_i); + + private _movementVector = (_lastPoint vectorFromTo _nextPoint) vectorMultiply _maxSpeed; + private _movementLength = _lastPoint vectorDistance _nextPoint; + private _currentLength = 0; + + while {_isSimulated && {_currentLength < _movementLength}} do + { + sleep 1; + if(_roadBlockCountdown > 0) then + { + _roadBlockCountdown = _roadBlockCountdown - 1; + if(_roadBlockCountdown <= 0) then + { + //Have a fight + _isSimulated = [_units, _currentRoadBlock] call A3A_fnc_roadblockFight; + _isDestroyed = !_isSimulated; + }; + } + else + { + _currentPos = _currentPos vectorAdd _movementVector; + _currentLength = _currentLength + _maxSpeed; + if(_currentLength > _movementLength) then + { + // Moved here so spawnConvoy gets an accurate position + _remainingRoute deleteAt 0; + _currentPos = _nextPoint; + }; + _convoyMarker setMarkerPos _currentPos; + if(_isDebug) then {_debugObject setPos _currentPos;}; + + //Search for nearby roadblocks + _roadBlocks = outpostsFIA select {(getMarkerPos _x distance _currentPos < 250) && {isOnRoad (getMarkerPos _x)}}; + if(count _roadBlocks > 0) then + { + _currentRoadBlock = _roadBlocks select 0; + if(spawner getVariable _currentRoadBlock == 2) then + { + _isSimulated = false; + [_convoyID, _units, _currentPos, _remainingRoute, _markerArray, _convoySide, _convoyType, _maxSpeed, _isAir] call A3A_fnc_spawnConvoy; + } + else + { + _roadBlockCountdown = 60; + if (!([_currentRoadBlock] call BIS_fnc_taskExists)) then + { + [_currentRoadBlock, _convoySide, teamPlayer, false] remoteExec ["A3A_fnc_underAttack",2] + }; + }; + }; + }; + + + /* + _nearMarker = markersX select {(sidesX getVariable [_x, sideUnknown] != _convoySide) && {getMarkerPos _x distance _currentPos < 150}}; + if(count _nearMarker > 0) then + { + if((_nearMarker select 0) distance _currentPos < 75 || !((_nearMarker select 0) in controlsX)) then + { + //Drove into an enemy position, spawn fight + } + }; + */ + + //Currently only triggered by teamPlayer units! + if([distanceSPWN, 1, _currentPos, teamPlayer] call A3A_fnc_distanceUnits) then + { + _isSimulated = false; + [_convoyID, _units, _currentPos, _remainingRoute, _markerArray, _convoySide, _convoyType, _maxSpeed, _isAir] call A3A_fnc_spawnConvoy; + }; + }; + +}; + +if(_isDestroyed) exitWith {deleteMarker _convoyMarker}; +if(!_isSimulated) exitWith {}; + +diag_log format ["ConvoyMovement[%1]: Convoy arrived at destination!", _convoyID]; + +[_convoyID, (_route select 0), (_route select (_pointsCount - 1)), _units, _convoySide, _convoyType] spawn A3A_fnc_onConvoyArrival; + +sleep 10; +deleteMarker _convoyMarker; diff --git a/A3-Antistasi/functions/Convoy/fn_createAIAction.sqf b/A3-Antistasi/functions/Convoy/fn_createAIAction.sqf new file mode 100644 index 0000000000..aee7938eac --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_createAIAction.sqf @@ -0,0 +1,614 @@ +params ["_destination", "_type", "_side", ["_arguments", []]]; + +/* Handles the creation of any AI Action +* Params +* _destination : MARKER or POS; the marker or position the AI should take AI on +* _type : STRING; (not case sensitive) one of "ATTACK", "PATROL", "REINFORCE", "CONVOY", "AIRSTRIKE" more to add +* _side : SIDE; the side of the AI forces to send +* _arguments : ARRAY; any further argument needed for the operation +* -here should be some manual for each _type, but it is currently unfinished +* Returns: +* Nothing +*/ + +if(!serverInitDone) then +{ + diag_log "CreateAIAction: Waiting for server init to be completed!"; + waitUntil {sleep 1; serverInitDone}; +}; + +if(isNil "_destination") exitWith {diag_log "CreateAIAction: No destination given for AI Action"}; +_acceptedTypes = ["attack", "patrol", "reinforce", "convoy", "airstrike"]; +if(isNil "_type" || {!((toLower _type) in _acceptedTypes)}) exitWith {diag_log "CreateAIAction: Type is not in the accepted types"}; +if(isNil "_side" || {!(_side == Occupants || _side == Invaders)}) exitWith {diag_log "CreateAIAction: Can only create AI for Inv and Occ"}; + +_convoyID = round (random 1000); +_IDinUse = server getVariable [format ["Con%1", _convoyID], false]; +sleep 0.1; +while {_IDinUse} do +{ + _convoyID = round (random 1000); + _IDinUse = server getVariable [format ["Con%1", _convoyID], false]; +}; +server setVariable [format ["Con%1", _convoyID], true, true]; + +_convoyID spawn +{ + sleep (30 * 60); + server setVariable [format ["Con%1", _this], nil, true]; +}; + +_type = toLower _type; +_isMarker = _destination isEqualType ""; +_targetString = if(_isMarker) then {_destination} else {str _destination}; +diag_log format ["CreateAIAction[%1]: Started creation of %2 action to %3", _convoyID, _type, _targetString]; + +_nearestMarker = if(_isMarker) then {_destination} else {[markersX,_destination] call BIS_fnc_nearestPosition}; +if ([_nearestMarker,false] call A3A_fnc_fogCheck < 0.3) exitWith +{ + diag_log format ["CreateAIAction[%1]: AI Action on %2 cancelled because of heavy fog", _convoyID, _targetString]; + server setVariable [format ["Con%1", _convoyID], nil, true]; +}; + +_abort = false; +_attackDistance = distanceSPWN2; +if (_isMarker) then +{ + if(_destination in attackMrk) then {_abort = true}; +} +else +{ + if(count attackPos != 0) then + { + _nearestAttack = [attackPos, _destination] call BIS_fnc_nearestPosition; + if ((_nearestAttack distance _destination) < _attackDistance) then {_abort = true;}; + } + else + { + if(count attackMrk != 0) then + { + _nearestAttack = [attackMrk, _destination] call BIS_fnc_nearestPosition; + if (getMarkerPos _nearestAttack distance _destination < _attackDistance) then {_abort = true}; + }; + }; +}; +if(_abort) exitWith +{ + diag_log format ["CreateAIAction[%1]: Aborting creation of AI action because, there is already a action close by!", _convoyID]; + server setVariable [format ["Con%1", _convoyID], nil, true]; +}; + +//TODO rebalance that somehow +/* +_allUnits = {(local _x) and (alive _x)} count allUnits; +_allUnitsSide = 0; +_maxUnitsSide = maxUnits; + +if (gameMode <3) then +{ + _allUnitsSide = {(local _x) and (alive _x) and (side group _x == _side)} count allUnits; + _maxUnitsSide = round (maxUnits * 0.7); +}; +if ((_allUnits + 4 > maxUnits) or (_allUnitsSide + 4 > _maxUnitsSide)) then {_abort = true}; + +if (_abort) exitWith {diag_log format ["CreateAIAction[%1]: AI action cancelled because of reaching the maximum of units on attacking %2", _convoyID, _destination]}; +*/ + + +_destinationPos = if(_isMarker) then {getMarkerPos _destination} else {_destination}; +_originPos = []; +_origin = ""; +_units = []; +_vehicleCount = 0; +_cargoCount = 0; +if(_type == "patrol") then +{ + //TODO rework the origin selection!! + _threatEvalLand = [_destinationPos, _side] call A3A_fnc_landThreatEval; + _airportsX = airportsX select {(sidesX getVariable [_x,sideUnknown] == _side) and ([_x,true] call A3A_fnc_airportCanAttack) and (getMarkerPos _x distance2D _destinationPos < distanceForAirAttack)}; + if (hasIFA and (_threatEvalLand <= 15)) then {_airportsX = _airportsX select {(getMarkerPos _x distance2D _destinationPos < distanceForLandAttack)}}; + _outposts = if (_threatEvalLand <= 15) then {outposts select {(sidesX getVariable [_x,sideUnknown] == _side) and ([_destinationPos, getMarkerPos _x] call A3A_fnc_isTheSameIsland) and (getMarkerPos _x distance _destinationPos < distanceForLandAttack) and ([_x,true] call A3A_fnc_airportCanAttack)}} else {[]}; + _airportsX = _airportsX + _outposts; + if (_isMarker) then + { + if (_markerX in blackListDest) then + { + _airportsX = _airportsX - outposts; + }; + _airportsX = _airportsX - [_markerX]; + _airportsX = _airportsX select {({_x == _markerX} count (killZones getVariable [_x,[]])) < 3}; + } + else + { + if (!_super) then + { + _siteX = [(resourcesX + factories + airportsX + outposts + seaports),_posDestination] call BIS_fnc_nearestPosition; + _airportsX = _airportsX select {({_x == _siteX} count (killZones getVariable [_x,[]])) < 3}; + }; + }; + if (_airportsX isEqualTo []) then + { + _exit = true; + } + else + { + _origin = [_airportsX,_posDestination] call BIS_fnc_nearestPosition; + _originPos = getMarkerPos _origin; + }; + if (!_exit) then + { + //This line detects air or land attack + _isLand = + ( + (_threatEvalLand <= 15) && + {(_originPos distance _destinationPos < distanceForLandAttack) && + {([_originPos, _destinationPos] call A3A_fnc_isTheSameIsland)}} + ); + if(_isLand) then + { + if (_origin in outposts) then {[_origin, 10] call A3A_fnc_addTimeForIdle} else {[_origin, 5] call A3A_fnc_addTimeForIdle}; + _count = 1; + _vehPool = []; + //Select vehicle count and pool + switch (true) do + { + case (tierWar < 3): + { + _count = 1; + _vehPool = if(_side == Occupants) then {vehNATOLight} else {vehCSATLightArmed}; + }; + case (tierWar < 6 && {tierWar > 2}): + { + _count = 2 + (round (random 1)); + _vehPool = if(_side == Occupants) then {vehNATOLightArmed + vehNATOAPC} else {vehCSATLightArmed + vehCSATAPC}; + }; + case (tierWar > 5): + { + _count = 3 + (round (random 2)); + _vehPool = if(_side == Occupants) then {vehNATOAttack} else {vehCSATAttack}; + }; + }; + + for "_i" from 1 to _count do + { + _veh = [_vehPool, _side] call A3A_fnc_selectAndCreateVehicle; + _vehPool = _veh select 1; + _units pushBack (_veh select 0); + _vehicleCount = _vehicleCount + 1; + _cargoCount = _cargoCount + count ((_veh select 0) select 1) + count ((_veh select 0) select 2); + }; + } + else + { + [_origin, 10] call A3A_fnc_addTimeForIdle; + _count = if(_isMarker) then {1 + (round (random 1))} else {1}; + _vehPool = []; + switch (true) do + { + case (tierWar < 3): + { + _vehPool = if(_side == Occupants) then {vehNATOPatrolHeli} else {vehCSATPatrolHeli}; + }; + case (tierWar > 2 && tierWar < 7): + { + _vehPool = if(_side == Occupants) then {vehNATOTransportHelis} else {vehCSATTransportHelis}; + }; + case (tierWar > 6): + { + _vehPool = if(_side == Occupants) then {vehNATOAttackHelis} else {vehCSATAttackHelis}; + }; + }; + for "_i" from 1 to _count do + { + _veh = [_vehPool, _side, true] call A3A_fnc_selectAndCreateVehicle; + _vehPool = _veh select 1; + _units pushBack (_veh select 0); + _vehicleCount = _vehicleCount + 1; + _cargoCount = _cargoCount + count ((_veh select 0) select 1) + count ((_veh select 0) select 2); + }; + }; + } + else + { + diag_log format ["CreateAIAction[%1]: Patrol aborted as no base is available!", _convoyID]; + _abort = true; + }; +}; +if(_type == "reinforce") then +{ + _arguments params ["_canReinf"]; + _possibleBases = _canReinf select {[_x, _destination] call A3A_fnc_shouldReinforce}; + if((count _possibleBases) != 0) then + { + + _selectedBase = [_possibleBases, _destination] call BIS_fnc_nearestPosition; + //Found base to reinforce, selecting units now + _units = [_selectedBase, _destination] call A3A_fnc_selectReinfUnits; + + if(_units isEqualTo []) then + { + diag_log format ["CreateAIAction[%1]: No units given for reinforcements!", _convoyID]; + _abort = true; + } + else + { + _origin = _selectedBase; + _originPos = getMarkerPos _origin; + + _countUnits = [_units, false] call A3A_fnc_countGarrison; + + _vehicleCount = _vehicleCount + (_countUnits select 0); + _cargoCount = _cargoCount + (_countUnits select 1) + (_countUnits select 2); + + //For debug is direct placement + //diag_log format ["Reinforce %1 from %2", _target, _selectedBase]; + //[_units, "Reinf units"] call A3A_fnc_logArray; + //[_target, _units] call A3A_fnc_addGarrison; + }; + } + else + { + diag_log format ["CreateAIAction[%1]: Reinforcement aborted as no base is available!", _convoyID]; + _abort = true; + }; +}; +if(_type == "attack") then +{ + +}; +if(_type == "airstrike") then +{ + _airport = [_destination, _side] call A3A_fnc_findAirportForAirstrike; + if(_airport != "") then + { + _friendlies = if (_side == Occupants) then + { + allUnits select + { + (alive _x) && + {((side (group _x) == _side) || (side (group _x) == civilian)) && + {_x distance _destinationPos < 200}} + }; + } + else + { + allUnits select + { + (side (group _x) == _side) && + {(_x distance _destinationPos < 100) && + {[_x] call A3A_fnc_canFight}} + }; + }; + //NATO accepts 2 casulties, CSAT does not really care + if((_side == Occupants && {count _friendlies < 3}) || {_side == Invaders && {count _friendlies < 8}}) then + { + _plane = if (_side == Occupants) then {vehNATOPlane} else {vehCSATPlane}; + _crewUnits = if(_side == Occupants) then {NATOCrew} else {CSATCrew}; + if ([_plane] call A3A_fnc_vehAvailable) then + { + _bombType = ""; + if(count _arguments != 0) then + { + _bombType = _arguments select 0; + } + else + { + _distanceSpawn2 = distanceSPWN2; + _enemies = allUnits select + { + (alive _x) && + {(_x distance _destinationPos < _distanceSpawn2) && + {(side (group _x) != _side) and (side (group _x) != civilian)}} + }; + if(isNil "napalmEnabled") then + { + //This seems to be a merge bug + diag_log "CreateAIAction: napalmEnabled does not contains a value, assuming false!"; + napalmEnabled = false; + }; + _bombType = if (napalmEnabled) then {"NAPALM"} else {"CLUSTER"}; + { + if (vehicle _x isKindOf "Tank") then + { + _bombType = "HE" //Why should it attack tanks with HE?? TODO find better solution + } + else + { + if (vehicle _x != _x) then + { + if !(vehicle _x isKindOf "StaticWeapon") then {_bombType = "CLUSTER"}; //TODO test if vehicle _x isKindOf Static is not also vehicle _x != _x + }; + }; + if (_bombTypeX == "HE") exitWith {}; + } forEach _enemies; + }; + if (!_isMarker) then {airstrike pushBack _destinationPos}; + diag_log format ["CreateAIAction[%1]: Selected airstrike of bombType %2 from %3",_convoyID, _bombType, _airport]; + _origin = _airport; + _originPos = getMarkerPos _airport; + _units pushBack [_plane, [_crewUnits],[]]; + _vehicleCount = 1; + _cargoCount = 1; + } + else + { + diag_log format ["CreateAIAction[%1]: Aborting airstrike as the airplane is currently not available", _convoyID]; + _abort = true; + }; + } + else + { + diag_log format ["CreateAIAction[%1]: Aborting airstrike, cause there are too many friendly units in the area", _convoyID]; + _abort = true; + }; + } + else + { + diag_log format ["CreateAIAction[%1]: Aborting airstrike due to no avialable airport", _convoyID]; + _abort = true; + }; +}; +if(_type == "convoy") then +{ + //Heavy will call in more and better vehicles + _isHeavy = if (random 10 < tierWar) then {true} else {false}; + //Easy will call in only FIA (police) vehicles (We really have to rename this) + _isEasy = if (!(_isHeavy) && {_side == Occupants && {random 10 >= tierWar}}) then {true} else {false}; + _sideCheck = sidesX getVariable [_destination, sideUnknown]; + if(_sideCheck == _side) then + { + _origin = [_destination] call A3A_fnc_findBasesForConvoy; + _originPos = getMarkerPos _origin; + if(!_abort && !(_origin isEqualTo "")) then + { + _typeConvoy = []; + if ((_destination in airportsX) or (_destination in outposts)) then + { + _typeConvoy = ["Ammunition","Armor"]; + /* Reinforcement convoys will be standard not a special mission + if (_destination in outposts) then + { + //That doesn't make sense, or am I wrong? Can someone double check this logic? + if (((count (garrison getVariable [_destination,0]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then + { + _typeConvoy pushBack "Reinforcements"; + }; + }; + */ + } + else + { + if (_destination in citiesX) then + { + _typeConvoy = ["Supplies"]; + } + else + { + if ((_destinationX in resourcesX) or (_destinationX in factories)) then + { + _typeConvoy = ["Money"]; + } + else + { + _typeConvoy = ["Prisoners"]; + }; + //Same here, not sure about it + if (((count (garrison getVariable [_destinationX,0]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then + { + _typeConvoy pushBack "Reinforcements" + }; + }; + }; + _selectedType = selectRandom _typeConvoy; + + private ["_timeLimit", "_dateLimitNum", "_displayTime", "_nameDest", "_nameOrigin" ,"_timeToFinish", "_dateFinal"]; + //The time the convoy will wait before starting + _timeLimit = if (_isHeavy) then {0} else {round random 10};// timeX for the convoy to come out, we should put a random round 15 + + _timeToFinish = 120; + _dateTemp = date; + _dateFinal = [_dateTemp select 0, _dateTemp select 1, _dateTemp select 2, _dateTemp select 3, (_dateTemp select 4) + _timeToFinish]; + _dateLimit = [_dateTemp select 0, _dateTemp select 1, _dateTemp select 2, _dateTemp select 3, (_dateTemp select 4) + _timeLimit]; + _dateLimitNum = dateToNumber _dateLimit; + _dateLimit = numberToDate [_dateTemp select 0, _dateLimitNum];//converts datenumber back to date array so that time formats correctly when put through the function + _displayTime = [_dateLimit] call A3A_fnc_dateToTimeString;//Converts the time portion of the date array to a string for clarity in hints + + _nameDest = [_destination] call A3A_fnc_localizar; + _nameOrigin = [_origin] call A3A_fnc_localizar; + [_origin, 30] call A3A_fnc_addTimeForIdle; + + private ["_text", "_taskState", "_taskTitle", "_taskIcon", "_taskState1", "_typeVehEsc", "_typeVehObj", "_typeVehLead"]; + + _text = ""; + _taskState = "CREATED"; + _taskTitle = ""; + _taskIcon = ""; + _taskState1 = "CREATED"; + + _typeVehLead = ""; + _typeVehEsc = ""; + _typeVehObj = ""; + + switch (_selectedType) do + { + case "Ammunition": + { + _text = format ["A convoy from %1 is about to depart at %2. It will provide ammunition to %3. Try to intercept it. Steal or destroy that truck before it reaches it's destination.",_nameOrigin,_displayTime,_nameDest]; + _taskTitle = "Ammo Convoy"; + _taskIcon = "rearm"; + _typeVehObj = if (_side == Occupants) then {vehNATOAmmoTruck} else {vehCSATAmmoTruck}; + }; + case "Armor": + { + _text = format ["A convoy from %1 is about to depart at %2. It will reinforce %3 with armored vehicles. Try to intercept it. Steal or destroy that thing before it reaches it's destination.",_nameOrigin,_displayTime,_nameDest]; + _taskTitle = "Armored Convoy"; + _taskIcon = "Destroy"; + _typeVehObj = if (_side == Occupants) then {vehNATOAA} else {vehCSATAA}; + }; + case "Prisoners": + { + _text = format ["A group os POW's is being transported from %1 to %3, and it's about to depart at %2. Try to intercept it. Kill or capture the truck driver to make them join you and bring them to HQ. Alive if possible.",_nameOrigin,_displayTime,_nameDest]; + _taskTitle = "Prisoner Convoy"; + _taskIcon = "run"; + _typeVehObj = if (_side == Occupants) then {selectRandom vehNATOTrucks} else {selectRandom vehCSATTrucks}; + }; + case "Reinforcements": + { + _text = format ["Reinforcements are being sent from %1 to %3 in a convoy, and it's about to depart at %2. Try to intercept and kill all the troops and vehicle objective.",_nameOrigin,_displayTime,_nameDest]; + _taskTitle = "Reinforcements Convoy"; + _taskIcon = "run"; + _typeVehObj = if (_side == Occupants) then {selectRandom vehNATOTrucks} else {selectRandom vehCSATTrucks}; + }; + case "Money": + { + _text = format ["A truck plenty of money is being moved from %1 to %3, and it's about to depart at %2. Steal that truck and bring it to HQ. Those funds will be very welcome.",_nameOrigin,_displayTime,_nameDest]; + _taskTitle = "Money Convoy"; + _taskIcon = "move"; + _typeVehObj = "C_Van_01_box_F"; + }; + case "Supplies": + { + _text = format ["A truck with medical supplies destination %3 it's about to depart at %2 from %1. Steal that truck bring it to %3 and let people in there know it is %4 who's giving those supplies.",_nameOrigin,_displayTime,_nameDest,nameTeamPlayer]; + _taskTitle = "Supply Convoy"; + _taskIcon = "heal"; + _typeVehObj = "C_Van_01_box_F"; + }; + default + { + diag_log format ["CreateAIAction[%1]: Aborting convoy, selected type not found, type was %2", _convoyID, _selectedType]; + _abort = true; + }; + }; + if(!_abort) then + { + //Deactivated, cause you can't win this mission currently + [[teamPlayer,civilian],"CONVOY",[_text,_taskTitle,_destination], _destinationPos,false,0,true,_taskIcon,true] call BIS_fnc_taskCreate; + [[_side],"CONVOY1",[format ["A convoy from %1 to %3, it's about to depart at %2. Protect it from any possible attack.",_nameOrigin,_displayTime,_nameDest],"Protect Convoy",_destination],_destinationPos,false,0,true,"run",true] call BIS_fnc_taskCreate; + missionsX pushBack ["CONVOY","CREATED"]; publicVariable "missionsX"; + + sleep (_timeLimit * 60); + _crewUnits = if(_side == Occupants) then {NATOCrew} else {CSATCrew}; + + //Creating convoy lead vehicle + _typeVehLead = if (_side == Occupants) then {if (!_isEasy) then {selectRandom vehNATOLightArmed} else {vehPoliceCar}} else {selectRandom vehCSATLightArmed}; + _crew = [_typeVehLead, _crewUnits] call A3A_fnc_getVehicleCrew; + _units pushBack [_typeVehLead, _crew, []]; + _vehicleCount = _vehicleCount + 1; + _cargoCount = _cargoCount + (count _crew); + //Convoy lead created + + //Prepared vehicle pool + private _count = 1; + if (_isHeavy) then + { + _count = 3; + } + else + { + if ([_destination] call A3A_fnc_isFrontline) then + { + _count = (round random 2) + 1; + }; + }; + + _vehPool = if (_side == Occupants) then + { + if (!_isEasy) then + { + vehNATOAttack + } + else + { + [vehFIAArmedCar,vehFIATruck,vehFIACar] + }; + } + else + { + vehCSATAttack; + }; + + //Delete MBT from array if aggro is not high enough + if (!_isEasy) then + { + _rnd = random 100; + if (_side == Occupants) then + { + if (_rnd > prestigeNATO) then + { + _vehPool = _vehPool - [vehNATOTank]; + }; + } + else + { + if (_rnd > prestigeCSAT) then + { + _vehPool = _vehPool - [vehCSATTank]; + }; + }; + if (count _vehPool == 0) then {if (_side == Occupants) then {_vehPool = vehNATOTrucks} else {_vehPool = vehCSATTrucks}}; + }; + //Vehicle pool prepared + + //Select escort vehicles and their groups + for "_i" from 1 to _count do + { + _veh = [_vehPool, _side] call A3A_fnc_selectAndCreateVehicle; + _vehPool = _veh select 1; + _units pushBack (_veh select 0); + _vehicleCount = _vehicleCount + 1; + _cargoCount = _cargoCount + count ((_veh select 0) select 1) + count ((_veh select 0) select 2); + }; + //Escorts and groups added + + //Add objective vehicle and cargo + _typeGroup = []; + if(_selectedType == "Reinforcements") then + { + _typeGroup = [_typeVehObj,_side] call A3A_fnc_cargoSeats; + }; + if(_selectedType == "Prisoners") then + { + for "_i" from 1 to (1 + round (random 11)) do + { + _typeGroup pushBack SDKUnarmed; + }; + }; + _crew = [_typeVehObj, _crewUnits] call A3A_fnc_getVehicleCrew; + _units pushBack [_typeVehObj, _crew, _typeGroup]; + _vehicleCount = _vehicleCount + 1; + _cargoCount = _cargoCount + (count _typeGroup) + (count _crew); + //Objective and its cargo added + + //Last escort vehicle + _veh = [_vehPool, _side] call A3A_fnc_selectAndCreateVehicle; + _vehPool = _veh select 1; + _units pushBack (_veh select 0); + _vehicleCount = _vehicleCount + 1; + _cargoCount = _cargoCount + count ((_veh select 0) select 1) + count ((_veh select 0) select 2); + //Last escrot vehicle added + }; + } + else + { + diag_log format ["CreateAIAction[%1]: Aborting convoy, as no base is available to send a convoy", _convoyID]; + _abort = true; + }; + } + else + { + diag_log format ["CreateAIAction[%1]: Side of convoy does not match side of destination, aborting!", _convoyID]; + _abort = true; + }; +}; + +if(_abort) exitWith +{ + server setVariable [format ["Con%1", _convoyID], nil, true]; + false +}; + +_target = if(_destination isEqualType "") then {_destination} else {str _destination}; +diag_log format ["CreateAIAction[%1]: Created AI action to %2 from %3 to %4 with %5 vehicles and %6 units", _convoyID, _type, _origin, _targetString, _vehicleCount , _cargoCount]; + +[_convoyID, _units, _originPos, _destinationPos, [_origin, if(_isMarker) then {_destination} else {""}], _type, _side] spawn A3A_fnc_createConvoy; +true; diff --git a/A3-Antistasi/functions/Convoy/fn_createConvoy.sqf b/A3-Antistasi/functions/Convoy/fn_createConvoy.sqf new file mode 100644 index 0000000000..90202a5efc --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_createConvoy.sqf @@ -0,0 +1,85 @@ +params ["_convoyID", "_units", "_origin", "_destination", "_markerArray", "_convoyType", "_convoySide"]; + +/* Creates a convoy for simulated movement +* Params: +* _convoyID: NUMBER; the unique convoy ID +* _units: ARRAY; contains the info about the units, each element has to be [veh, [crew], [cargoUnits]] +* _origin: POS; contains the position of the starting point +* _destination: POS; contains the position of the end point +* _convoyType: STRING; contains one of "ATTACK", "PATROL" or "REINFORCE" + further +* _convoySide: SIDE; contains the side of the convoy +* Returns: +* Nothing +*/ + +if (isNil "_convoyID") exitWith {diag_log "CreateConvoy: No convoy ID given"}; +if (isNil "_units" || {count _units == 0}) exitWith {diag_log format ["CreateConvoy[%1]: No units given for convoy!", _convoyID]}; +if (isNil "_origin") exitWith {diag_log format ["CreateConvoy[%1]: No origin given for the convoy!", _convoyID]}; +if (isNil "_destination") exitWith {diag_log format ["CreateConvoy[%1]: No destination given for the convoy!", _convoyID]}; + +_hasAir = false; +_hasLand = false; + +_velocity = 999999; //CAUTION this is km/h not m/s!!! So is every speed +{ + _vehicle = _x select 0; + if (!(_vehicle isKindOf "StaticWeapon")) then + { + if(!_hasLand && {_vehicle isKindOf "Land"}) then {_hasLand = true;}; + if(!_hasAir && {_vehicle isKindOf "Air"}) then {_hasAir = true;}; + _vehVelocity = getNumber (configFile >> "cfgVehicles" >> _vehicle >> "maxSpeed"); + if (_vehVelocity < _velocity) then + { + _velocity = _vehVelocity; + }; + }; +} forEach _units; + +if(_velocity == 999999) then +{ + //Standard velocity for man units (only static in convoy) + _velocity = 24; + _hasLand = true; +}; + +//Convert km/h into m/s +_velocity = (_velocity / 3.6); +_route = []; +_type = ""; + +if(_hasAir && {!_hasLand}) then +{ + //Convoy contains only air vehicles, can fly direct way + _route = [_origin, _origin vectorAdd [0,0,200], _destination vectorAdd [0,0,200], _destination]; + _type = "Air"; +} +else +{ + //Convoy is either pure land or combined air and land find way + _route = [_origin, _destination] call A3A_fnc_findPath; + if(_hasAir) then {_type = "Mixed"} else {_type = "Land"}; +}; + +if (_route isEqualTo []) exitWith { + diag_log format ["CreateConvoy[%1]: Unable to create convoy, no valid path. HasAir: %2, HasLand: %3", _convoyID, _hasAir, _hasLand]; +}; + +_markerPrefix = if(colorTeamPlayer == "colorGUER") then {"b"} else {"n"}; +if(_convoySide == Occupants) then {_markerPrefix = if(colorInvaders == "colorBLUFOR") then {"n"} else {"b"};}; +if(_convoySide == Invaders) then {_markerPrefix = "o"}; + +_markerType = "_mech_inf"; +if(_type == "Air") then {_markerType = "_air"}; +if(_type == "Mixed") then {_markerType = "_armor"}; + +_convoyMarker = createMarker [format ["convoy%1", _convoyID], _origin]; +_convoyMarker setMarkerShapeLocal "ICON"; +_convoyMarker setMarkerType format ["%1%2", _markerPrefix, _markerType]; +_convoyMarker setMarkerText (format ["%1 %2 Convoy [%3]: Simulated", _type, _convoyType, _convoyID]); +_convoyMarker setMarkerAlpha 0; + +convoyMarker pushBack _convoyMarker; + +diag_log format ["CreateConvoy[%1]: Created convoy with %2 m/s and a total of %3 waypoints, marker is %4%5", _convoyID, _velocity, count _route, _markerPrefix, _markerType]; + +[_convoyID, _route, _markerArray, _velocity, _units, _convoySide, _convoyType, (!_hasLand)] spawn A3A_fnc_convoyMovement; diff --git a/A3-Antistasi/functions/Convoy/fn_despawnConvoy.sqf b/A3-Antistasi/functions/Convoy/fn_despawnConvoy.sqf new file mode 100644 index 0000000000..196a6f10f4 --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_despawnConvoy.sqf @@ -0,0 +1,47 @@ +params ["_convoyID", "_unitObjects", "_convoyPos", "_target", "_markerArray", "_convoyType", "_convoySide"]; + +[2, format ["Despawning convoy %1", _convoyID], "fn_despawnConvoy"] call A3A_fnc_log; + +// Exit any vehicle's FSM if it's still running +{ + private _fsm = (_x select 0) getVariable "fsm"; + if !(isNil "_fsm" || {completedFSM _fsm}) then { _fsm setFSMVariable["_abort", true] }; +} forEach _unitObjects; + +private _convoyData = []; +for "_i" from 0 to ((count _unitObjects) - 1) do +{ + private _data = _unitObjects select _i; + private _vehicle = _data select 0; + private _convoyLine = []; + + private _cargoData = []; + { + if(alive _x) then + { + _cargoData pushBack (typeOf _x); + (group _x) deleteGroupWhenEmpty true; + deleteVehicle _x; + }; + } forEach (_data select 2); + _convoyLine set [2, _cargoData]; + + private _crewData = []; + { + if(alive _x) then + { + _crewData pushBack (typeOf _x); + (group _x) deleteGroupWhenEmpty true; + deleteVehicle _x; + }; + } forEach (_data select 1); + _convoyLine set [1, _crewData]; + + //Vehicle is alive, otherwise it would have been dropped from _unitObjects + _convoyLine set [0, typeOf _vehicle]; + deleteVehicle _vehicle; + + _convoyData pushBack _convoyLine; +}; + +[_convoyID, _convoyData, _convoyPos, _target, _markerArray, _convoyType, _convoySide] spawn A3A_fnc_createConvoy; diff --git a/A3-Antistasi/functions/Convoy/fn_findAirportForAirstrike.sqf b/A3-Antistasi/functions/Convoy/fn_findAirportForAirstrike.sqf new file mode 100644 index 0000000000..864d02a129 --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_findAirportForAirstrike.sqf @@ -0,0 +1,69 @@ +params ["_destination", ["_side", sideUnknown]]; + +/* +* Usage: Searches for a suitable Airport for an airstrike on given destination +* +* params +* _destination : MARKER or POS; the destination of the airstrike +* _side : SIDE; the side of the airstrike, only needed if _destination is a POS +* +* retuns +* _airport : MARKER; the best suited airport, nil if none found +*/ +_airport = ""; +if(isNil "_destination") exitWith {diag_log "FindAirportForAirstrike: No destination given"; _airport}; + +//Assuming _destination is a pos +_destinationPos = _destination; + +//Given destination is a marker, getting side by marker or given side +if(_destination isEqualType "") then +{ + //Side not given + if(_side == sideUnknown) then + { + _side = sidesX getVariable [_destination, sideUnknown]; + }; + _destinationPos = getMarkerPos _destination; +}; + +if(_side == sideUnknown) exitWith {diag_log "FindAirportForAirstrike: No side given"; _airport}; + +//Sort by side +_possibleAirports = airportsX select {sidesX getVariable [_x, sideUnknown] == _side}; + +//Sort by further criteria +/* //DEACTIVATED FOR DEBUG +_possibleAirports = _possibleAirports select +{ + (spawner getVariable _x == 2) && //Not already spawned in + {(dateToNumber date > server getVariable _x) && //Not currently on cooldown + {!(_x in forcedSpawn) && //Not force spawned in (not sure how long this will be in the script tho) + {!(_x in blackListDest) && //Not blacklisted (don't know why? TODO Investigate) + {(getMarkerPos _x distance _destinationPos > distanceSPWN)}}}} //Not closer than spawn distance +}; +*/ + +//Sort by max distance and killzones (TODO what are killzones and how are they working??) +_suitableAirports = []; +{ + _posbase = getMarkerPos _x; + if ((_destinationPos distance _posbase < distanceForAirAttack) /*&& (({_x == _markerX} count (killZones getVariable [_x,[]])) < 3)*/) then + { + _suitableAirports pushBack _x; + }; +} forEach _possibleAirports; + + +//If some remain, choose the nearest one, else return nil +if (count _suitableAirports > 0) then +{ + _airport = [_suitableAirports,_destinationPos] call BIS_fnc_nearestPosition; + diag_log format ["FindAirportForAirstrike: Found %1 suitable airports, will return %2", count _suitableAirports, _airport]; +} +else +{ + _airport = ""; + diag_log "FindAirportForAirstrike: No suitable position found, returning empty string"; +}; +_airport diff --git a/A3-Antistasi/functions/Convoy/fn_followVehicle.sqf b/A3-Antistasi/functions/Convoy/fn_followVehicle.sqf new file mode 100644 index 0000000000..691708842f --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_followVehicle.sqf @@ -0,0 +1,24 @@ +params ["_leadVehicle", "_helicopter", "_target", "_speed"]; + +_helicopter limitSpeed _speed; +_helicopter move ((getPos _leadVehicle) vectorAdd [0,0,30]); + +while {alive _helicopter && {_leadVehicle distance2D _target > 20}} do +{ + sleep 0.5; + _helicopter move ((getPosWorld _leadVehicle) vectorAdd [0,0,30]); +}; + +if(!alive _helicopter) exitWith {}; + +sleep 3; + +while {alive _helicopter && {!(unitReady _helicopter)}} do +{ + sleep 1; +}; + +if(alive _helicopter) then +{ + _helicopter land "LAND"; +}; diff --git a/A3-Antistasi/functions/Convoy/fn_onConvoyArrival.sqf b/A3-Antistasi/functions/Convoy/fn_onConvoyArrival.sqf new file mode 100644 index 0000000000..c78774e9c2 --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_onConvoyArrival.sqf @@ -0,0 +1,43 @@ +params ["_convoyID", "_startPos", "_endPos", "_units", "_sideConvoy", "_convoyType"]; + +server setVariable [format ["Con%1", _convoyID], nil, true]; +switch (_convoyType) do +{ + case ("attack"): + { + //This is not yet implemented + }; + case ("patrol"): + { + //Patrol arrived, nothing found on the way, return to start point + //Cause thats how patrols work + sleep 15; + [_convoyID, _backRoute, _speed, _units, _sideConvoy, "return"] spawn A3A_fnc_createConvoy; + }; + case ("convoy"): + { + //End convoy mission + ["CONVOY", "FAILED"] call BIS_fnc_taskSetState; + ["CONVOY1", "SUCCEEDED"] call BIS_fnc_taskSetState; + }; + case ("airstrike"): + { + //Engage in a fight, not yet implemented + }; + case ("reinforce"): + { + _index = markersX findIf {(getMarkerPos _x) distanceSqr _endPos < 100}; + if(_index != -1) then + { + _marker = markersX select _index; + [_marker, _units] call A3A_fnc_addGarrison; + } + else + { + diag_log "Error, no marker at convoy destination!"; + }; + }; + case ("return"): + { + }; +}; diff --git a/A3-Antistasi/functions/Convoy/fn_onSpawnedArrival.sqf b/A3-Antistasi/functions/Convoy/fn_onSpawnedArrival.sqf new file mode 100644 index 0000000000..372ef450f0 --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_onSpawnedArrival.sqf @@ -0,0 +1,70 @@ +params ["_convoyID", "_unitObjects", "_convoyPos", "_target", "_markerArray", "_convoyType", "_convoySide"]; + +server setVariable [format ["Con%1", _convoyID], nil, true]; +switch (_convoyType) do +{ + case ("reinforce"): + { + { + _vehicle = _x select 0; + _vehicleGroup = _vehicle getVariable "vehGroup"; + _cargoGroup = _vehicle getVariable ["cargoGroup", grpNull]; + if(_vehicle isKindOf "Air") then + { + if (_vehicle isKindOf "Helicopter") then + { + _landPos = [_target, 0, 300, 10, 0, 0.20, 0,[],[[0,0,0],[0,0,0]]] call BIS_fnc_findSafePos; + _landPos set [2, 0]; + _pad = createVehicle ["Land_HelipadEmpty_F", _landpos, [], 0, "NONE"]; + _vehicleGroup setVariable ["myPad",_pad]; + _wp0 = _vehicleGroup addWaypoint [_landpos, 0]; + _wp0 setWaypointType "TR UNLOAD"; + _wp0 setWaypointStatements ["true", "(vehicle this) land 'GET OUT';deleteVehicle ((group this) getVariable [""myPad"",objNull])"]; + _wp0 setWaypointBehaviour "CARELESS"; + _wp3 = _cargoGroup addWaypoint [_landpos, 0]; + _wp3 setWaypointType "GETOUT"; + _wp3 setWaypointStatements ["true", "(group this) spawn A3A_fnc_attackDrillAI"]; + _wp0 synchronizeWaypoint [_wp3]; + _wp4 = _cargoGroup addWaypoint [_target, 1]; + _wp4 setWaypointType "MOVE"; + _wp4 setWaypointStatements ["true", "[group this] spawn A3A_fnc_groupDespawner;"]; + _wp2 = _vehicleGroup addWaypoint [getMarkerPos (_markerArray select 0), 1]; + _wp2 setWaypointType "MOVE"; + _wp2 setWaypointStatements ["true", "deleteVehicle (vehicle this); {deleteVehicle _x} forEach thisList"]; + [_vehicleGroup,1] setWaypointBehaviour "AWARE"; + } + else + { + if ((typeOf _vehicle) in vehFastRope) then + { + [_vehicle, _cargoGroup, _target, getMarkerPos (_markerArray select 0), _vehicleGroup, true] spawn A3A_fnc_fastrope; + } + else + { + [_vehicle, _cargoGroup, _target, (_markerArray select 0), true] spawn A3A_fnc_airdrop; + }; + }; + } + else + { + //Create marker for the cargo + if(_cargoGroup != grpNull) then + { + _wp0 = _vehicleGroup addWaypoint [_target, count (wayPoints _vehicleGroup)]; + _wp0 setWaypointType "TR UNLOAD"; + _wp0 setWaypointStatements ["true","[group this] spawn A3A_fnc_groupDespawner;"]; + _wp3 = _cargoGroup addWaypoint [_target, 0]; + _wp3 setWaypointType "GETOUT"; + _wp3 setWaypointStatements ["true", "(group this) spawn A3A_fnc_attackDrillAI; [group this] spawn A3A_fnc_groupDespawner"]; + _wp0 synchronizeWaypoint [_wp3]; + } + else + { + _wp0 = _vehicleGroup addWaypoint [_target, count (wayPoints _vehicleGroup)]; + _wp0 setWaypointType "GETOUT"; + _wp0 setWaypointStatements ["true","[group this] spawn A3A_fnc_groupDespawner; (group this) spawn A3A_fnc_attackDrillAI;"]; + }; + }; + } forEach _unitObjects; + }; +}; diff --git a/A3-Antistasi/functions/Convoy/fn_roadblockFight.sqf b/A3-Antistasi/functions/Convoy/fn_roadblockFight.sqf new file mode 100644 index 0000000000..f94ce98bcd --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_roadblockFight.sqf @@ -0,0 +1,90 @@ +params ["_units", "_roadblockMarker"]; + +_nightTimeBonus = if (daytime < 6 || {daytime > 22}) then {0.25} else {0}; + +_defenderBonus = 1 + _nightTimeBonus + (random 0.5); +_attackerBonus = 1; + +_garrison = garrison getVariable _roadblockMarker; + +_roadblockCount = 0; +{ + if(_x == staticCrewTeamPlayer) then + { + _roadblockCount = _roadblockCount + 3; + }; + _roadblockCount = _roadblockCount + 1; +} forEach _garrison; +_roadblockCount = _roadblockCount * _defenderBonus; +// Defender calculated + +_attackerCount = 0; +{ + _attackerCount = _attackerCount + (count (_x select 1)) + (count (_x select 2)); + _vehicle = _x select 0; + //diag_log format ["Units: %1, Veh: %2", str _units, str _vehicle]; + switch (true) do + { + case (_vehicle isKindOf "APC"): {_attackerCount = _attackerCount + 5}; + case (_vehicle isKindOf "Tank"): {_attackerCount = _attackerCount + 10}; + case (_vehicle isKindOf "Helicopter"): + { + //Transport helicopter without a gun dont count + if(count (getArray (configFile >> "CfgVehicles" >> _vehicle >> "weapons")) > 0) then + { + _attackerCount = _attackerCount + 7; + }; + }; + case (_vehicle isKindOf "Plane"): {_attackerCount = _attackerCount + 10}; + default {_attackerCount = _attackerCount + 1;}; + }; +} forEach _units; + +_result = false; +if(_attackerCount == 0) then +{ + //Attacker lost + diag_log format ["Attacker lost against roadblock %1", _roadblockMarker]; + _result = false; +} +else +{ + _ratio = _roadblockCount/_attackerCount; + if(_roadblockCount == 0 || {_ratio < 0.9}) then + { + diag_log format ["Defender at %1 lost against attacker with ratio %2", _roadblockMarker, _ratio]; + _result = true; + } + else + { + if(_ratio > 1.1) then + { + diag_log format ["Attacker lost against roadblock %1", _roadblockMarker]; + _result = false; + } + else + { + _result = [true, false] selectRandomWeighted [0.5, 0.5]; + if(_result) then + { + diag_log format ["Defender at %1 lost against attacker with ratio %2", _roadblockMarker, _ratio]; + } + else + { + diag_log format ["Attacker lost against roadblock %1", _roadblockMarker]; + }; + }; + }; +}; + + +if(_result) then +{ + outpostsFIA = outpostsFIA - [_roadblockMarker]; publicVariable "outpostsFIA"; + markersX = markersX - [_roadblockMarker]; publicVariable "markersX"; + sidesX setVariable [_roadblockMarker, nil, true]; + [5, -5, (getMarkerPos _roadblockMarker)] remoteExec ["A3A_fnc_citySupportChange",2]; + ["TaskFailed", ["", "Roadblock Lost"]] remoteExec ["BIS_fnc_showNotification", 2]; +}; + +_result; diff --git a/A3-Antistasi/functions/Convoy/fn_selectAndCreateVehicle.sqf b/A3-Antistasi/functions/Convoy/fn_selectAndCreateVehicle.sqf new file mode 100644 index 0000000000..fd843a1f27 --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_selectAndCreateVehicle.sqf @@ -0,0 +1,80 @@ +params ["_vehPool", "_side", ["_isAir", false]]; + +/* Selects a vehicle from the given pool, if available, selects basic vehicle else +* Params: +* _vehPool: ARRAY of STRINGS; the current vehicle pool +* _side: SIDE; the side for which the vehicle should be choosen +* _isAir: BOOLEAN; Optional, selects if vehicle pool consists of air vehicles, default false +* Returns: +* ARRAY of mixed types: +* - ARRAY of STRINGS: +* - choosen vehicle: STRING +* - choosen cargo group: STRING +* - ARRAY of STRINGS: the new vehicle pool +*/ + +if(isNil "_side") exitWith +{ + diag_log "SelectAndCreateVehicle: No side given!"; + [objNull, objNull]; +}; +if(isNil "_vehPool" || {!(_vehPool isEqualType []) || {count _vehPool == 0}}) exitWith +{ + diag_log "SelectAndCreateVehicle: _vehpool is not a correct variable or empty!"; + [objNull, objNull]; +}; +private ["_selectedVehicle"]; +_selectedVehicle = selectRandom _vehPool; + +_crewUnits = if(_side == Occupants) then {NATOCrew} else {CSATCrew}; + +while{!([_selectedVehicle] call A3A_fnc_vehAvailable)} do +{ + _vehPool = _vehPool - [_selectedVehicle]; + if (count _vehPool == 0) then + { + switch (true) do + { + case (_side == Occupants && {!_isAir}): + { + _vehPool = vehNATOTrucks; + }; + case (_Side == Occupants && {_isAir}): + { + _vehPool = vehNATOTransportHelis; + }; + case (_side == Invaders && {!_isAir}): + { + _vehPool = vehCSATTrucks; + }; + case (_Side == Invaders && {_isAir}): + { + _vehPool = vehCSATTransportHelis; + }; + }; + }; + _selectedVehicle = selectRandom _vehPool; +}; +_crew = [_selectedVehicle, _crewUnits] call A3A_fnc_getVehicleCrew; + +_typeGroup = []; +if (!_isEasy) then +{ + if (!(_selectedVehicle in vehTanks)) then + { + _typeGroup = [_selectedVehicle,_side] call A3A_fnc_cargoSeats; + }; +} +else +{ + if (not(_selectedVehicle == vehFIAArmedCar)) then + { + _typeGroup = selectRandom groupsFIASquad; + if (_selectedVehicle == vehFIACar) then + { + _typeGroup = selectRandom groupsFIAMid; + }; + }; +}; + +[[_selectedVehicle, _crew, _typeGroup], _vehPool]; diff --git a/A3-Antistasi/functions/Convoy/fn_spawnConvoy.sqf b/A3-Antistasi/functions/Convoy/fn_spawnConvoy.sqf new file mode 100644 index 0000000000..013a8dfb5e --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_spawnConvoy.sqf @@ -0,0 +1,134 @@ +params ["_convoyID", "_units", "_pos", "_route", "_markers", "_convoySide", "_convoyType", "_maxSpeed", "_isAir"]; + + +private ["_targetPos", "_dir", "_convoyMarker"]; + +_targetPos = _route select (count _route - 1); + +_convoyMarker = format ["convoy%1", _convoyID]; +_convoyMarker setMarkerText (format ["%1 Convoy [%2]: Spawned", _convoyType, _convoyID]); + +if (!_isAir) then { + private _road = roadAt _pos; + // don't reposition if we're already near a road, can cause backwards driving + if(isNull _road) then + { + private _radius = 3; + private _possibleRoads = []; + while {isNull _road && {_radius < 50}} do + { + _possibleRoads = _pos nearRoads _radius; + if(count _possibleRoads > 0) then { _road = _possibleRoads select 0 } + else { _radius = _radius * 1.5 }; + }; + if(!(isNull _road)) then { _pos = (getPos _road) }; + }; +}; + +//Spawn a bit above the ground +_pos = _pos vectorAdd [0,0,0.1]; +_dir = _pos getDir (_route select 0); +private _targetDir = _pos vectorFromTo _targetPos; +private _airOffset = (_targetDir vectorMultiply 200) vectorAdd [0,0,50]; + +private _createdUnits = []; +private _airVehicles = []; +private _landVehicles = []; + +[2, format ["Spawning in convoy %1", _convoyID], "fn_spawnConvoy"] call A3A_fnc_log; +[_units, "Convoy Units"] call A3A_fnc_logArray; + +for "_i" from 0 to ((count _units) - 1) do +{ + private _lineData = [_units select _i, _convoySide, _pos, _dir] call A3A_fnc_spawnConvoyLine; + + //Pushback the spawned objects + private _unitObjects = _lineData select 0; + _createdUnits pushBack _unitObjects; + + private _vehicle = _unitObjects select 0; + if (_vehicle != objNull) then { + + if(_vehicle isKindOf "Air") then + { + _airVehicles pushBack _vehicle; + _vehicle setVelocity ((vectorDir _vehicle) vectorMultiply (30)); + private _fsm = [_vehicle, _airOffset, _markers, _convoyType] execFSM "FSMs\ConvoyTravelAir.fsm"; + _vehicle setVariable ["fsm", _fsm]; + + _airOffset = _airOffset vectorAdd (_targetDir vectorMultiply -200); + if (!_isAir) then { _vehicle setVariable ["followpos", _pos] }; + } + else + { + _landVehicles pushBack _vehicle; + _vehicle limitSpeed _maxSpeed * 3.6; + private _fsm = [_vehicle, _route, _markers, _convoyType] execFSM "FSMs\ConvoyTravel.fsm"; + _vehicle setVariable ["fsm", _fsm]; + }; + + // lastSpawn time check will try anyway if a vehicle gets stuck + private _lastSpawn = time; + waituntil {sleep 1; ((_vehicle distance2d _pos) > 15) or ((time - _lastSpawn) > 20)}; + } + else { + [3, "Convoy line has no vehicle, unhandled", "fn_spawnConvoy"] call A3A_fnc_log; + }; +}; + + +// Monitor convoy vehicles for FSM completion and spawn distance +while {true} do +{ + sleep 2; + private _despawn = true; + + // Check whether each vehicle in the convoy (controlled by FSM) has completed its mission + // check last-to-first so that array deletion works correctly + for "_i" from ((count _createdUnits) - 1) to 0 step -1 do { + + private _units = _createdUnits select _i; + private _veh = _units select 0; + private _result = _veh getVariable["fsmresult", 0]; + // should also check whether vehicle still exists, to handle forced despawns? + + // could test for success vs failure here but we don't care yet + if (_result != 0) then { // completed or abandoned mission, don't track here anymore + _createdUnits deleteAt _i; + _airVehicles deleteAt (_airVehicles find _veh); + _landVehicles deleteAt (_landVehicles find _veh); + [_veh] spawn A3A_fnc_VEHdespawner; // FSM handles the groups, vehicle remains for tracking + [3, format["Vehicle FSM result %1, rem units %2", _result, count _createdUnits], "fn_spawnConvoy"] call A3A_fnc_log; + } + else { + if ([distanceSPWN*1.2, 1, getPos _veh, teamPlayer] call A3A_fnc_distanceUnits) then { _despawn = false }; + }; + }; + + // no tracked vehicles remaining in convoy, terminate + if (count _createdUnits == 0) exitWith { + deleteMarker _convoyMarker; + server setVariable [format ["Con%1", _convoyID], nil, true]; + [2, format ["%1 Convoy [%2]: Terminated", _convoyType, _convoyID], "fn_spawnConvoy"] call A3A_fnc_log; + }; + + // Have at least one remaining vehicle if we got here + private _convoyPos = [0,0,0]; + if (count _landVehicles != 0) then { + _convoyPos = getPos (_landVehicles select 0); + { _x setVariable["followpos", _convoyPos] } forEach _airVehicles; // used by FSM to circle around + // can potentially set ground vehicle follow chain here too + } + else { + _convoyPos = getPos (_airVehicles select 0); + { _x setVariable["followpos", nil] } forEach _airVehicles; + }; + _convoyMarker setMarkerPos _convoyPos; + + // all convoy vehicles out of spawn distance, switch back to simulation + if (_despawn) exitWith { + deleteMarker _convoyMarker; // because we're using createConvoy rather than convoyMovement to restart sim + [_convoyID, _createdUnits, _convoyPos, _targetPos, _markerArray, _convoyType, _convoySide] call A3A_fnc_despawnConvoy; + }; +}; + diff --git a/A3-Antistasi/functions/Convoy/fn_spawnConvoyLine.sqf b/A3-Antistasi/functions/Convoy/fn_spawnConvoyLine.sqf new file mode 100644 index 0000000000..ecab5813a5 --- /dev/null +++ b/A3-Antistasi/functions/Convoy/fn_spawnConvoyLine.sqf @@ -0,0 +1,115 @@ +params ["_data", "_side", "_pos", "_dir"]; + +private _vehicleType = _data select 0; +private _crewData = _data select 1; +private _cargoData = _data select 2; + +private _slowConvoy = false; + +private _vehicleGroup = createGroup _side; +private _vehicleObj = objNull; + +if(_vehicleType != "") then +{ + //Spawns in the vehicle as it should + if(!(_vehicleType isKindOf "Air")) then + { + _vehicleObj = createVehicle [_vehicleType, _pos, [], 0 , "CAN_COLLIDE"]; + // Hopefully doesn't make vehicles drive backwards unless they'd explode otherwise +// _vehicleObj = [_vehicleType, _pos, 10, 3, true] call A3A_fnc_safeVehicleSpawn; + } + else + { + _vehicleObj = createVehicle [_vehicleType, _pos, [], 0 , "FLY"]; + }; + _vehicleObj setDir _dir; + + //Activates the engine if the vehicle is not a static weapon + if(!(_vehicleType isKindOf "StaticWeapons")) then + { + _vehicleObj engineOn true; + }; + + //Assigns a vehicle to the group, the makes it a target, even if its empty + _vehicleGroup addVehicle _vehicleObj; + + //Init vehicle + [_vehicleObj] call A3A_fnc_AIVEHinit; +}; + +//Sleep to decrease spawn lag +sleep 0.25; + +private _turrets = allTurrets [_vehicleObj, true]; +private _turretCount = count _turrets; +private _nextTurretIndex = 0; +//Spawning in crew +private _crewObjs = []; +{ + private _unit = _vehicleGroup createUnit [_x, _pos, [], 0, "NONE"]; + diag_log format ["Convoy: Moving %1 into %2 of type %3 with %4 crew turrets", _unit, _vehicleObj, _vehicleType, _turretCount]; + if(!isNull _vehicleObj) then + { + if (isNull driver _vehicleObj) then { + _unit assignAsDriver _vehicleObj; + _unit moveInDriver _vehicleObj; + //Take away the AI driver's will. They shall do as they're commanded. + + } else { + if (_nextTurretIndex < _turretCount) then { + private _turretData = [_vehicleObj, _turrets select _nextTurretIndex]; + _unit assignAsTurret _turretData; + _unit moveInTurret _turretData; + _nextTurretIndex = _nextTurretIndex + 1; + }; + }; + }; + if (vehicle _unit == _unit) then { + _slowConvoy = true; + }; + [_unit] call A3A_fnc_NATOinit; + _crewObjs pushBack _unit; + sleep 0.2; +} forEach _crewData; + +sleep 0.5; + +// Removed same-group case because split/join is broken for it +private _cargoGroup = createGroup _side; +private _cargoObjs = []; + +/* +//Put cargo into a seperate group if they are cargo of a plane or large +if(_vehicleObj isKindOf "Air" || {count _cargoData >= 6}) then +{ + _cargoGroup = createGroup _side; +} +else +{ + _cargoGroup = _vehicleGroup; +}; +*/ + +private _unit = objNull; +//Spawning in cargo +{ + _unit = _cargoGroup createUnit [_x, _pos, [], 0, "NONE"]; + if (!isNull _vehicleObj) then + { + _unit assignAsCargo _vehicleObj; + _unit moveInCargo _vehicleObj; + }; + + if (vehicle _unit == _unit) then + { + //Units are moving by foot, slow down convoy + _slowConvoy = true; + }; + + [_unit] call A3A_fnc_NATOinit; + _cargoObjs pushBack _unit; + sleep 0.2; +} forEach _cargoData; + +//Return result array +[[_vehicleObj, _crewObjs, _cargoObjs], _vehicleGroup, _cargoGroup, _slowConvoy]; diff --git a/A3-Antistasi/functions/Convoy/getUnitWeaponData.sqf b/A3-Antistasi/functions/Convoy/getUnitWeaponData.sqf new file mode 100644 index 0000000000..7b71519f6b --- /dev/null +++ b/A3-Antistasi/functions/Convoy/getUnitWeaponData.sqf @@ -0,0 +1,57 @@ +//This code is not mine, it is copied from https://community.bistudio.com/wiki/weaponsTurret +//I do not claim any rights on this code + +//This code is currently NOT used by anything + +//Important is reloadTime in secs/shot + +private ["_result", "_getAnyMagazines", "_findRecurse", "_class"]; +_result = []; +_getAnyMagazines = +{ + private ["_weapon", "_mags"]; + _weapon = configFile >> "CfgWeapons" >> _this; + _mags = []; + { + _mags = _mags + getArray ((if (_x == "this") then { _weapon } else { _weapon >> _x }) >> "magazines"); + } foreach getArray (_weapon >> "muzzles"); + _mags +}; + +_findRecurse = +{ + private ["_root", "_class", "_path", "_currentPath"]; + _root = (_this select 0); + _path = +(_this select 1); + for "_i" from 0 to count _root -1 do + { + _class = _root select _i; + if (isClass _class) then + { + _currentPath = _path + [_i]; + { + _result set [count _result, [_x, _x call _getAnyMagazines, _currentPath, str _class]]; + } foreach getArray (_class >> "weapons"); + _class = _class >> "turrets"; + if (isClass _class) then + { + [_class, _currentPath] call _findRecurse; + }; + }; + }; +}; + +_class = +(configFile >> "CfgVehicles" >> +( + switch (typeName _this) do + { + case "STRING" : {_this}; + case "OBJECT" : {typeOf _this}; + default {nil} + } +) >> "turrets" +); + +[_class, []] call _findRecurse; +_result; diff --git a/A3-Antistasi/Debugging/deleteEmptyGroupsOnSide.sqf b/A3-Antistasi/functions/Debugging/fn_deleteEmptyGroupsOnSide.sqf similarity index 100% rename from A3-Antistasi/Debugging/deleteEmptyGroupsOnSide.sqf rename to A3-Antistasi/functions/Debugging/fn_deleteEmptyGroupsOnSide.sqf diff --git a/A3-Antistasi/functions/Debugging/fn_installSchrodingersBuildingFix.sqf b/A3-Antistasi/functions/Debugging/fn_installSchrodingersBuildingFix.sqf new file mode 100644 index 0000000000..bd14689afe --- /dev/null +++ b/A3-Antistasi/functions/Debugging/fn_installSchrodingersBuildingFix.sqf @@ -0,0 +1,18 @@ +/* + * This is a fix for Schrodinger's building. + * Schrodinger's building is a mysterious bug where buildings simultaneously appear to be standing and destroyed. + * This may differ between players. Some players will see destroyed buildings, some will see intact ones. + * This fix attempts to force the building to be destroyed, by making sure whenever one blows up on any client, + * the damage value is synchronised with every other client. + * + * To replicate this bug, simply do 'myTarget allowDamage 0' on the server, then blow it up on a client. + * The server will see the building as undamaged, while the client sees it as destroyed. + */ + +addMissionEventHandler ["EntityKilled", { + params ["_entity"]; + + if(_entity isKindOf "Building") then { + _entity setDamage 1; + } +}]; \ No newline at end of file diff --git a/A3-Antistasi/Debugging/spawnDebuggingLoop.sqf b/A3-Antistasi/functions/Debugging/fn_spawnDebuggingLoop.sqf similarity index 100% rename from A3-Antistasi/Debugging/spawnDebuggingLoop.sqf rename to A3-Antistasi/functions/Debugging/fn_spawnDebuggingLoop.sqf diff --git a/A3-Antistasi/Dialogs/buy_vehicle.sqf b/A3-Antistasi/functions/Dialogs/fn_buyVehicle.sqf similarity index 100% rename from A3-Antistasi/Dialogs/buy_vehicle.sqf rename to A3-Antistasi/functions/Dialogs/fn_buyVehicle.sqf diff --git a/A3-Antistasi/Dialogs/buy_vehicle_civ.sqf b/A3-Antistasi/functions/Dialogs/fn_buyVehicleCiv.sqf similarity index 100% rename from A3-Antistasi/Dialogs/buy_vehicle_civ.sqf rename to A3-Antistasi/functions/Dialogs/fn_buyVehicleCiv.sqf diff --git a/A3-Antistasi/clearForest.sqf b/A3-Antistasi/functions/Dialogs/fn_clearForest.sqf similarity index 87% rename from A3-Antistasi/clearForest.sqf rename to A3-Antistasi/functions/Dialogs/fn_clearForest.sqf index 005803ff13..89d87a5b18 100644 --- a/A3-Antistasi/clearForest.sqf +++ b/A3-Antistasi/functions/Dialogs/fn_clearForest.sqf @@ -1,4 +1,4 @@ if (player != theBoss) exitWith {hint "Only Commanders can order to clean the forest"}; if (!isMultiplayer) then {{ _x hideObject true } foreach (nearestTerrainObjects [getMarkerPos respawnTeamPlayer,["tree","bush"],70])} else {{[_x,true] remoteExec ["hideObjectGlobal",2]} foreach (nearestTerrainObjects [getMarkerPos respawnTeamPlayer,["tree","bush"],70])}; -hint "You've cleared the surroundigs of trees and bushes"; +hint "You've cleared the surroundings of trees and bushes"; chopForest = true; publicVariable "chopForest"; diff --git a/A3-Antistasi/functions/Dialogs/fn_createDialog_setParams.sqf b/A3-Antistasi/functions/Dialogs/fn_createDialog_setParams.sqf new file mode 100644 index 0000000000..3ed99e5d4b --- /dev/null +++ b/A3-Antistasi/functions/Dialogs/fn_createDialog_setParams.sqf @@ -0,0 +1,42 @@ +_nul=createDialog "set_params"; + +waitUntil {dialog}; +hint "W A R N I N G\n\nREAD THIS!!!\n\n\nAntistasi does NOT support vanilla save. Do not expect 100% of functionalities if you Save&Exit and after you come back with Resume option. Both on SP and MP.\n\n\nAntistasi has an in built save system, GTA alike, which is the system you have to use in order to have full functionalities.\n\nTo Save: Go to the Map Board, select ""Game Options"" and hit on ""Persistent Save"" button.\n\nTo load: RESTART the game and click YES on this window"; +waitUntil {!dialog}; + +if (!isNil "loadLastSave" && {!loadLastSave}) then { + _nul=createDialog "diff_menu"; + waitUntil {dialog}; + hint "Choose a difficulty level"; + waitUntil {!dialog}; + + if (!isNil "skillMult" && {skillMult != 2}) then + { + //Easy Difficulty Tweaks + if (skillMult == 1) then + { + server setVariable ["hr",25,true]; + server setVariable ["resourcesFIA",5000,true]; + vehInGarage = [vehSDKTruck,vehSDKTruck,SDKMortar,SDKMGStatic,staticAAteamPlayer]; + minWeaps = 15; + if !(hasTFAR) then + { + "ItemRadio" call A3A_fnc_unlockEquipment; + haveRadio = true; + }; + } + else + { + //Hard Difficulty Tweaks + server setVariable ["hr",0,true]; + server setVariable ["resourcesFIA",200,true]; + minWeaps = 40; + }; + [] call A3A_fnc_statistics; + }; + _nul= createDialog "gameMode_menu"; + waitUntil {dialog}; + hint "Choose a Game Mode"; + waitUntil {!dialog}; +}; + diff --git a/A3-Antistasi/Dialogs/firstLoad.sqf b/A3-Antistasi/functions/Dialogs/fn_createDialog_shouldLoadPersonalSave.sqf similarity index 82% rename from A3-Antistasi/Dialogs/firstLoad.sqf rename to A3-Antistasi/functions/Dialogs/fn_createDialog_shouldLoadPersonalSave.sqf index ae697f4a48..75ee377962 100644 --- a/A3-Antistasi/Dialogs/firstLoad.sqf +++ b/A3-Antistasi/functions/Dialogs/fn_createDialog_shouldLoadPersonalSave.sqf @@ -1,11 +1,9 @@ -_nul=createDialog "first_load"; +_nul=createDialog "should_load_personal_save"; -_bypass = false; - -if (count _this > 0) then {_bypass = true}; -//bypass es true cuando un JIP carga waitUntil {dialog}; hint "W A R N I N G\n\nREAD THIS!!!\n\n\nAntistasi does NOT support vanilla save. Do not expect 100% of functionalities if you Save&Exit and after you come back with Resume option. Both on SP and MP.\n\n\nAntistasi has an in built save system, GTA alike, which is the system you have to use in order to have full functionalities.\n\nTo Save: Go to the Map Board, select ""Game Options"" and hit on ""Persistent Save"" button.\n\nTo load: RESTART the game and click YES on this window"; waitUntil {!dialog}; + +[] spawn A3A_fnc_credits; diag_log "[Antistasi] Saving is now possible."; player setVariable ['canSave', true, true]; \ No newline at end of file diff --git a/A3-Antistasi/Dialogs/dialogHQ.sqf b/A3-Antistasi/functions/Dialogs/fn_dialogHQ.sqf similarity index 100% rename from A3-Antistasi/Dialogs/dialogHQ.sqf rename to A3-Antistasi/functions/Dialogs/fn_dialogHQ.sqf diff --git a/A3-Antistasi/fastTravelRadio.sqf b/A3-Antistasi/functions/Dialogs/fn_fastTravelRadio.sqf similarity index 96% rename from A3-Antistasi/fastTravelRadio.sqf rename to A3-Antistasi/functions/Dialogs/fn_fastTravelRadio.sqf index 03ff7e0675..45a302ec42 100644 --- a/A3-Antistasi/fastTravelRadio.sqf +++ b/A3-Antistasi/functions/Dialogs/fn_fastTravelRadio.sqf @@ -3,7 +3,7 @@ private ["_roads","_pos","_positionX","_groupX"]; _markersX = markersX + [respawnTeamPlayer]; _esHC = false; - +if !((vehicle player getVariable "SA_Tow_Ropes") isEqualTo objNull) exitWith {hint "You cannot Fast Travel with your Tow Rope out or a Vehicle attached"}; if (count hcSelected player > 1) exitWith {hint "You can select one group only to Fast Travel"}; if (count hcSelected player == 1) then {_groupX = hcSelected player select 0; _esHC = true} else {_groupX = group player}; _checkForPlayer = false; @@ -77,7 +77,7 @@ if (count _positionTel > 0) then { _vehicles = []; {if (vehicle _x != _x) then {_vehicles pushBackUnique (vehicle _x)}} forEach units _groupX; - {if ((vehicle _x) in _vehicles) exitWith {_checkForPlayer = true}} forEach playableUnits; + {if ((vehicle _x) in _vehicles) exitWith {_checkForPlayer = true}} forEach (call A3A_fnc_playableUnits); }; if (_checkForPlayer and ((_base != "SYND_HQ") and !(_base in airportsX))) exitWith {hint format ["%1 Fast Travel has been cancelled because some player has boarded their vehicle and the destination is not HQ or an Airbase",groupID _groupX]}; { diff --git a/A3-Antistasi/Dialogs/mineDialog.sqf b/A3-Antistasi/functions/Dialogs/fn_mineDialog.sqf similarity index 100% rename from A3-Antistasi/Dialogs/mineDialog.sqf rename to A3-Antistasi/functions/Dialogs/fn_mineDialog.sqf diff --git a/A3-Antistasi/moveHQObject.sqf b/A3-Antistasi/functions/Dialogs/fn_moveHQObject.sqf similarity index 95% rename from A3-Antistasi/moveHQObject.sqf rename to A3-Antistasi/functions/Dialogs/fn_moveHQObject.sqf index c0c45f4171..0faa6c0ca3 100644 --- a/A3-Antistasi/moveHQObject.sqf +++ b/A3-Antistasi/functions/Dialogs/fn_moveHQObject.sqf @@ -22,30 +22,30 @@ _thingX attachTo [_playerX,[0,2,1]]; private _fnc_placeObject = { params [["_thingX", objNull], ["_playerX", objNull], ["_dropObjectActionIndex", -1]]; - + if (isNull _thingX) exitWith {diag_log "[Antistasi] Error, trying to place invalid HQ object"}; if (isNull _playerX) exitWith {diag_log "[Antistasi] Error, trying to place HQ object with invalid player"}; - + if (!(_thingX getVariable ["objectBeingMoved", false])) exitWith {}; - + if (_playerX == attachedTo _thingX) then { detach _thingX; }; - + if (_dropObjectActionIndex != -1) then { _playerX removeAction _dropObjectActionIndex; }; - + _thingX setVectorUp surfaceNormal position _thingX; _thingX setPosATL [getPosATL _thingX select 0,getPosATL _thingX select 1,0.1]; - + _thingX setVariable ["objectBeingMoved", false]; - _thingX addAction ["Move this asset", "moveHQObject.sqf",nil,0,false,true,"","(_this == theBoss)"]; + _thingX addAction ["Move this asset", A3A_fnc_moveHQObject,nil,0,false,true,"","(_this == theBoss)"]; }; private _actionX = _playerX addAction ["Drop Here", { (_this select 3) params ["_thingX", "_fnc_placeObject"]; - + [_thingX, player, (_this select 2)] call _fnc_placeObject; }, [_thingX, _fnc_placeObject],0,false,true,"",""]; diff --git a/A3-Antistasi/skiptime.sqf b/A3-Antistasi/functions/Dialogs/fn_skiptime.sqf similarity index 77% rename from A3-Antistasi/skiptime.sqf rename to A3-Antistasi/functions/Dialogs/fn_skiptime.sqf index 5836287a42..a07fb64b6d 100644 --- a/A3-Antistasi/skiptime.sqf +++ b/A3-Antistasi/functions/Dialogs/fn_skiptime.sqf @@ -8,7 +8,8 @@ if ((side _x == Occupants) or (side _x == Invaders)) then }; } forEach allUnits; if (_presente) exitWith {hint "You cannot rest while enemies are near our units"}; -if (["AttackAAF"] call BIS_fnc_taskExists) exitWith {hint "You cannot rest while the enemy is counterattacking"}; +if (["rebelAttack"] call BIS_fnc_taskExists) exitWith {hint "You cannot rest while the enemy is counterattacking"}; +if (["invaderPunish"] call BIS_fnc_taskExists) exitWith {hint "You cannot rest while citizens are under attack"}; if (["DEF_HQ"] call BIS_fnc_taskExists) exitWith {hint "You cannot rest while your HQ is under attack"}; _checkX = false; diff --git a/A3-Antistasi/Dialogs/squadOptions.sqf b/A3-Antistasi/functions/Dialogs/fn_squadOptions.sqf similarity index 100% rename from A3-Antistasi/Dialogs/squadOptions.sqf rename to A3-Antistasi/functions/Dialogs/fn_squadOptions.sqf diff --git a/A3-Antistasi/Dialogs/squad_recruit.sqf b/A3-Antistasi/functions/Dialogs/fn_squadRecruit.sqf similarity index 100% rename from A3-Antistasi/Dialogs/squad_recruit.sqf rename to A3-Antistasi/functions/Dialogs/fn_squadRecruit.sqf diff --git a/A3-Antistasi/Dialogs/unit_recruit.sqf b/A3-Antistasi/functions/Dialogs/fn_unit_recruit.sqf similarity index 100% rename from A3-Antistasi/Dialogs/unit_recruit.sqf rename to A3-Antistasi/functions/Dialogs/fn_unit_recruit.sqf diff --git a/A3-Antistasi/functions/Garage/defineGarage.inc b/A3-Antistasi/functions/Garage/defineGarage.inc new file mode 100644 index 0000000000..7690f75aa2 --- /dev/null +++ b/A3-Antistasi/functions/Garage/defineGarage.inc @@ -0,0 +1,20 @@ +// Garage modes +#define GARAGE_FACTION 0 +#define GARAGE_PERSONAL 1 + +//Vehicle placement actions +#define VEHPLACE_NO_ACTION 0 +#define VEHPLACE_ACTION_PLACE 1 +#define VEHPLACE_ACTION_EXIT 2 +#define VEHPLACE_ACTION_RELOAD 3 +#define VEHPLACE_ACTION_ROT_LEFT 4 +#define VEHPLACE_ACTION_ROT_RIGHT 5 + +//Callback types for vehicle placement +#define CALLBACK_VEH_PLACED_SUCCESSFULLY 0 +#define CALLBACK_VEH_PLACEMENT_CANCELLED 1 +#define CALLBACK_SHOULD_CANCEL_PLACEMENT 2 +#define CALLBACK_CAN_PLACE_VEH 3 +#define CALLBACK_VEH_PLACEMENT_CLEANUP 4 +#define CALLBACK_VEH_IS_VALID_LOCATION 5 +#define CALLBACK_VEH_CUSTOM_CREATE_VEHICLE 6 \ No newline at end of file diff --git a/A3-Antistasi/Garage/personalGarage/addToPersonalGarage.sqf b/A3-Antistasi/functions/Garage/fn_addToPersonalGarage.sqf similarity index 100% rename from A3-Antistasi/Garage/personalGarage/addToPersonalGarage.sqf rename to A3-Antistasi/functions/Garage/fn_addToPersonalGarage.sqf diff --git a/A3-Antistasi/Garage/personalGarage/addToPersonalGarageLocal.sqf b/A3-Antistasi/functions/Garage/fn_addToPersonalGarageLocal.sqf similarity index 100% rename from A3-Antistasi/Garage/personalGarage/addToPersonalGarageLocal.sqf rename to A3-Antistasi/functions/Garage/fn_addToPersonalGarageLocal.sqf diff --git a/A3-Antistasi/Garage/private/attemptPlaceVehicle.sqf b/A3-Antistasi/functions/Garage/fn_attemptPlaceVehicle.sqf similarity index 96% rename from A3-Antistasi/Garage/private/attemptPlaceVehicle.sqf rename to A3-Antistasi/functions/Garage/fn_attemptPlaceVehicle.sqf index 6a1b28820c..420ccd8924 100644 --- a/A3-Antistasi/Garage/private/attemptPlaceVehicle.sqf +++ b/A3-Antistasi/functions/Garage/fn_attemptPlaceVehicle.sqf @@ -1,7 +1,7 @@ -#include "..\defineCommon.inc" +#include "defineGarage.inc" //vehPlace_lastPreviewPosition = nil; -_pos = getPos vehPlace_previewVeh; +_pos = getPosASL vehPlace_previewVeh; _dir = getDir vehPlace_previewVeh; _vehicleType = typeOf vehPlace_previewVeh; deleteVehicle vehPlace_previewVeh; @@ -34,7 +34,7 @@ if (!(_canPlaceArray select 0)) exitWith { //Only show text after we've checked all of the failure conditions above. ["Vehicle Placed",0,0,3,0,0,4] spawn bis_fnc_dynamicText; - + waitUntil {isNull vehPlace_previewVeh}; diff --git a/A3-Antistasi/Garage/private/displayVehiclePlacementMessage.sqf b/A3-Antistasi/functions/Garage/fn_displayVehiclePlacementMessage.sqf similarity index 95% rename from A3-Antistasi/Garage/private/displayVehiclePlacementMessage.sqf rename to A3-Antistasi/functions/Garage/fn_displayVehiclePlacementMessage.sqf index f1ee8dec9f..b6a1897330 100644 --- a/A3-Antistasi/Garage/private/displayVehiclePlacementMessage.sqf +++ b/A3-Antistasi/functions/Garage/fn_displayVehiclePlacementMessage.sqf @@ -1,4 +1,4 @@ -#include "..\defineCommon.inc" +#include "defineGarage.inc" //THIS SHOULDN'T BE CALLED OUTSIDE OF THE VEHICLE PLACEMENT SCRIPTS //CALL AT YOUR OWN RISK diff --git a/A3-Antistasi/Garage/garage2.sqf b/A3-Antistasi/functions/Garage/fn_garage.sqf similarity index 73% rename from A3-Antistasi/Garage/garage2.sqf rename to A3-Antistasi/functions/Garage/fn_garage.sqf index d54c17e02c..610de8ba58 100644 --- a/A3-Antistasi/Garage/garage2.sqf +++ b/A3-Antistasi/functions/Garage/fn_garage.sqf @@ -1,4 +1,4 @@ -#include "defineCommon.inc" +#include "defineGarage.inc" if (!(isNil "placingVehicle") && {placingVehicle}) exitWith { hint "Unable to open garage, you are already placing something" }; if (isNil "garageIsOpen") then { @@ -7,7 +7,8 @@ if (isNil "garageIsOpen") then { garage_mode = _this select 0; -if (garage_mode == GARAGE_FACTION and (not([player] call A3A_fnc_isMember))) exitWith {hint "You cannot access the Garage as you are guest in this server"}; +if (garage_mode == GARAGE_FACTION && (not([player] call A3A_fnc_isMember))) exitWith {hint "You cannot access the Garage as you are guest in this server"}; +if (garage_mode == GARAGE_FACTION && !allowMembersFactionGarageAccess && player != theBoss) exitWith {hint "Member access to the faction garage is disabled. You must be the commander.";}; if (player != player getVariable "owner") exitWith {hint "You cannot access the Garage while you are controlling AI"}; if ([player,300] call A3A_fnc_enemyNearCheck) exitWith {Hint "You cannot manage the Garage with enemies nearby"}; @@ -68,5 +69,14 @@ if (isNil "garage_keyDownHandler") then { }; private _extraMessage = "Arrow Up-Down to Switch Vehicles
"; +//Only allow access to the faction garage if someone else isn't already accessing it. +//Try to find the player to make sure they're still online - aim to avoid a situation where players are locked out of the garage. +if (garage_mode == GARAGE_FACTION && !isNil "garageLocked" && {(allPlayers findIf { getPlayerUID _x == (garageLocked select 1)}) > -1}) exitWith { + hint format ["%1 is accessing the garage right now. Please try again later. If this is broken, ask the player to log out.", garageLocked select 0]; +}; +//Define this last-thing, as we need to vehPlacement cleanup code to unset it. +garageLocked = [name player, getPlayerUID player]; +publicVariable "garageLocked"; + garageIsOpen = true; [_initialType, "GARAGE", _extraMessage] call A3A_fnc_vehPlacementBegin; \ No newline at end of file diff --git a/A3-Antistasi/Garage/garageVehicle.sqf b/A3-Antistasi/functions/Garage/fn_garageVehicle.sqf similarity index 91% rename from A3-Antistasi/Garage/garageVehicle.sqf rename to A3-Antistasi/functions/Garage/fn_garageVehicle.sqf index e4ea2717e4..7c7847b778 100644 --- a/A3-Antistasi/Garage/garageVehicle.sqf +++ b/A3-Antistasi/functions/Garage/fn_garageVehicle.sqf @@ -1,8 +1,12 @@ -#include "defineCommon.inc" +#include "defineGarage.inc" private ["_pool","_veh","_typeVehX"]; _pool = false; if (_this select 0) then {_pool = true}; + +if (side player != teamPlayer) exitWith {hint "Only rebels can add vehicles to the garage."}; +if (!([player] call A3A_fnc_isMember)) exitWith {hint "Only server members have the garage feature enabled"}; + _veh = cursorTarget; if (isNull _veh) exitWith {hint "You are not looking at a vehicle"}; @@ -22,7 +26,7 @@ _typeVehX = typeOf _veh; if (_veh isKindOf "Man") exitWith {hint "Are you kidding?"}; if !(_veh isKindOf "AllVehicles") exitWith {hint "The vehicle you are looking cannot be stored in our Garage"}; -if (!_pool and !([player] call A3A_fnc_isMember)) exitWith {hint "Only server members have the garage feature enabled"}; + if (_pool and (count vehInGarage >= (tierWar *3))) exitWith {hint "You cannot garage more vehicles at your current War Level"}; diff --git a/A3-Antistasi/Garage/personalGarage/getPersonalGarage.sqf b/A3-Antistasi/functions/Garage/fn_getPersonalGarage.sqf similarity index 100% rename from A3-Antistasi/Garage/personalGarage/getPersonalGarage.sqf rename to A3-Antistasi/functions/Garage/fn_getPersonalGarage.sqf diff --git a/A3-Antistasi/Garage/personalGarage/getPersonalGarageLocal.sqf b/A3-Antistasi/functions/Garage/fn_getPersonalGarageLocal.sqf similarity index 100% rename from A3-Antistasi/Garage/personalGarage/getPersonalGarageLocal.sqf rename to A3-Antistasi/functions/Garage/fn_getPersonalGarageLocal.sqf diff --git a/A3-Antistasi/Garage/private/handleVehPlacementCancelled.sqf b/A3-Antistasi/functions/Garage/fn_handleVehPlacementCancelled.sqf similarity index 77% rename from A3-Antistasi/Garage/private/handleVehPlacementCancelled.sqf rename to A3-Antistasi/functions/Garage/fn_handleVehPlacementCancelled.sqf index 068e5f3958..524cd805e3 100644 --- a/A3-Antistasi/Garage/private/handleVehPlacementCancelled.sqf +++ b/A3-Antistasi/functions/Garage/fn_handleVehPlacementCancelled.sqf @@ -1,8 +1,8 @@ -#include "..\defineCommon.inc" +#include "defineGarage.inc" [vehPlace_callbackTarget, CALLBACK_VEH_PLACEMENT_CANCELLED, []] call A3A_fnc_vehPlacementCallbacks; ["",0,0,5,0,0,4] spawn bis_fnc_dynamicText; deleteVehicle vehPlace_previewVeh; -vehPlace_previewVeh = objNull; +vehPlace_previewVeh = objNull; [] call A3A_fnc_vehPlacementCleanup; \ No newline at end of file diff --git a/A3-Antistasi/Garage/placeEmptyVehicle.sqf b/A3-Antistasi/functions/Garage/fn_placeEmptyVehicle.sqf similarity index 78% rename from A3-Antistasi/Garage/placeEmptyVehicle.sqf rename to A3-Antistasi/functions/Garage/fn_placeEmptyVehicle.sqf index c6444214e6..1acd3ebb5b 100644 --- a/A3-Antistasi/Garage/placeEmptyVehicle.sqf +++ b/A3-Antistasi/functions/Garage/fn_placeEmptyVehicle.sqf @@ -2,8 +2,8 @@ params ["_vehicleType", "_pos", "_dir"]; private _garageVeh = createVehicle [_vehicleType, [0,0,1000], [], 0, "NONE"]; _garageVeh setDir _dir; -//Surely this overrides any collision checks createVehicle would have made? -_garageVeh setPos _pos; +//Set position exactly +_garageVeh setPosASL _pos; clearMagazineCargoGlobal _garageVeh; clearWeaponCargoGlobal _garageVeh; diff --git a/A3-Antistasi/Garage/personalGarage/setPersonalGarage.sqf b/A3-Antistasi/functions/Garage/fn_setPersonalGarage.sqf similarity index 100% rename from A3-Antistasi/Garage/personalGarage/setPersonalGarage.sqf rename to A3-Antistasi/functions/Garage/fn_setPersonalGarage.sqf diff --git a/A3-Antistasi/Garage/personalGarage/setPersonalGarageLocal.sqf b/A3-Antistasi/functions/Garage/fn_setPersonalGarageLocal.sqf similarity index 100% rename from A3-Antistasi/Garage/personalGarage/setPersonalGarageLocal.sqf rename to A3-Antistasi/functions/Garage/fn_setPersonalGarageLocal.sqf diff --git a/A3-Antistasi/Garage/vehPlacementBegin.sqf b/A3-Antistasi/functions/Garage/fn_vehPlacementBegin.sqf similarity index 96% rename from A3-Antistasi/Garage/vehPlacementBegin.sqf rename to A3-Antistasi/functions/Garage/fn_vehPlacementBegin.sqf index 16b3279d33..1f1e24b71b 100644 --- a/A3-Antistasi/Garage/vehPlacementBegin.sqf +++ b/A3-Antistasi/functions/Garage/fn_vehPlacementBegin.sqf @@ -1,4 +1,4 @@ -#include "defineCommon.inc" +#include "defineGarage.inc" // vehPlace_ variables SHOULD NOT BE USED OUTSIDE OF THE GARAGE SCRIPTS // THINGS MAY BREAK @@ -18,7 +18,7 @@ params ["_vehicleType", ["_callbackTarget", ""], ["_displayMessage", ""]]; vehPlace_callbackTarget = _callbackTarget; vehPlace_extraMessage = _displayMessage; -vehPlace_previewVeh = _vehicleType createVehicleLocal [0,0,1000]; +vehPlace_previewVeh = createSimpleObject [_vehicleType ,[0,0,1000], true]; vehPlace_previewVeh allowDamage false; vehPlace_previewVeh enableSimulation false; @@ -99,11 +99,11 @@ addMissionEventHandler ["EachFrame", { if (isNil "vehPlace_nextVehType") exitWith {diag_log "[Antistasi] Warning: Attempting to refresh placed vehicle, but no new type set.";}; private _typeX = vehPlace_nextVehType; - if (typeName _typeX != typeName "") exitWith {}; + if !(_typeX isEqualType "") exitWith {}; hideObject vehPlace_previewVeh; deleteVehicle vehPlace_previewVeh; - vehPlace_previewVeh = _typeX createVehicleLocal [0,0,1000]; + vehPlace_previewVeh = createSimpleObject [_typeX, [0,0,1000], true]; vehPlace_previewVeh allowDamage false; vehPlace_previewVeh enableSimulation false; [_typeX] call A3A_fnc_displayVehiclePlacementMessage; diff --git a/A3-Antistasi/Garage/vehPlacementCallbacks.sqf b/A3-Antistasi/functions/Garage/fn_vehPlacementCallbacks.sqf similarity index 98% rename from A3-Antistasi/Garage/vehPlacementCallbacks.sqf rename to A3-Antistasi/functions/Garage/fn_vehPlacementCallbacks.sqf index 4054d97839..25e4735f48 100644 --- a/A3-Antistasi/Garage/vehPlacementCallbacks.sqf +++ b/A3-Antistasi/functions/Garage/fn_vehPlacementCallbacks.sqf @@ -1,4 +1,5 @@ -#include "defineCommon.inc" +#include "defineGarage.inc" + params ["_callbackTarget", "_callbackType", ["_callbackParams", []]]; /* @@ -16,6 +17,8 @@ switch (_callbackTarget) do { switch (_callbackType) do { case CALLBACK_VEH_PLACEMENT_CLEANUP: { garageIsOpen = false; + garageLocked = nil; + publicVariable "garageLocked"; }; case CALLBACK_VEH_PLACEMENT_CANCELLED: { diff --git a/A3-Antistasi/Garage/vehPlacementCancel.sqf b/A3-Antistasi/functions/Garage/fn_vehPlacementCancel.sqf similarity index 63% rename from A3-Antistasi/Garage/vehPlacementCancel.sqf rename to A3-Antistasi/functions/Garage/fn_vehPlacementCancel.sqf index fb470d5b3a..5ca72ee404 100644 --- a/A3-Antistasi/Garage/vehPlacementCancel.sqf +++ b/A3-Antistasi/functions/Garage/fn_vehPlacementCancel.sqf @@ -1,3 +1,3 @@ -#include "defineCommon.inc" +#include "defineGarage.inc" vehPlace_actionToAttempt = VEHPLACE_ACTION_EXIT; \ No newline at end of file diff --git a/A3-Antistasi/Garage/vehPlacementChangeVehicle.sqf b/A3-Antistasi/functions/Garage/fn_vehPlacementChangeVehicle.sqf similarity index 79% rename from A3-Antistasi/Garage/vehPlacementChangeVehicle.sqf rename to A3-Antistasi/functions/Garage/fn_vehPlacementChangeVehicle.sqf index 7bfdbeb8d5..ae3e3f1fd4 100644 --- a/A3-Antistasi/Garage/vehPlacementChangeVehicle.sqf +++ b/A3-Antistasi/functions/Garage/fn_vehPlacementChangeVehicle.sqf @@ -1,4 +1,4 @@ -#include "defineCommon.inc" +#include "defineGarage.inc" params ["_newType"]; diff --git a/A3-Antistasi/Garage/private/vehPlacementCleanup.sqf b/A3-Antistasi/functions/Garage/fn_vehPlacementCleanup.sqf similarity index 85% rename from A3-Antistasi/Garage/private/vehPlacementCleanup.sqf rename to A3-Antistasi/functions/Garage/fn_vehPlacementCleanup.sqf index 93d493d8e2..12d1dd8abb 100644 --- a/A3-Antistasi/Garage/private/vehPlacementCleanup.sqf +++ b/A3-Antistasi/functions/Garage/fn_vehPlacementCleanup.sqf @@ -1,4 +1,4 @@ -#include "..\defineCommon.inc" +#include "defineGarage.inc" //Always called after a placement, successful or not. [vehPlace_callbackTarget, CALLBACK_VEH_PLACEMENT_CLEANUP, []] call A3A_fnc_vehPlacementCallbacks; diff --git a/A3-Antistasi/functions/Garrison/fn_addGarrison.sqf b/A3-Antistasi/functions/Garrison/fn_addGarrison.sqf new file mode 100644 index 0000000000..cbc48a292e --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_addGarrison.sqf @@ -0,0 +1,184 @@ +params ["_marker", "_units"]; + +/* Adds units to a garrison, removes them from the reinforcements +* Params: +* _marker: STRING: The name of the marker +* _units: ARRAY: The new units, formated as garrisons are +* +* Returns: +* Nothing +*/ + +if (isNil "_marker") exitWith {diag_log "AddGarrison: No marker given!"}; +if (isNil "_units") exitWith {diag_log "AddGarrison: No units given!"}; + +private []; + +_garrison = [_marker] call A3A_fnc_getGarrison; +_requested = [_marker] call A3A_fnc_getRequested; +_nonReinfUnits = [["", [], []]]; + +//_random = random 1000; +//diag_log format ["AddGarrison %1: Before alive is %2", _random, _garrison]; +//diag_log format ["AddGarrison %1: Before dead is %2", _random, _requested]; + +{ + //Selecting the data + _vehicle = _x select 0; + _crew = _x select 1; + _cargo = _x select 2; + _isNew = false; + + if(_vehicle != "") then + { + _index = _requested findIf {(_x select 0) == _vehicle}; + if(_index == -1) then + { + //Vehicle is new, will still be added with crew + if(_nonReinfUnits select ((count _nonReinfUnits) - 1) select 0 != "") then + { + //Current _nonReinfUnits already got a vehicle, add another + _nonReinfUnits pushBack [_vehicle, _crew, []]; + } + else + { + //Current _nonReinfUnits got no vehicle, add there + (_nonReinfUnits select ((count _nonReinfUnits) - 1)) set [0, _vehicle]; + ((_nonReinfUnits select ((count _nonReinfUnits) - 1)) select 1) append _crew; + }; + _isNew = true; + } + else + { + //Fill _garrison if needed + while {count _garrison <= _index} do + { + _garrison pushBack ["", [], []]; + }; + + //Replace vehicle + (_garrison select _index) set [0, _vehicle]; + (_requested select _index) set [0, ""]; + }; + }; + if(!_isNew) then + { + //Add crew to existing vehicles + { + _crewUnit = _x; + _index = _requested findIf {count (_x select 1) > 0}; + if(_index == -1) then + { + //Search for vehicle with open crew space + _index = _nonReinfUnits findIf {(_x select 0) == "" || {(count (_x select 1)) < ([_x select 0, false] call BIS_fnc_crewCount)}}; + if(_index == -1) then + { + //None found, open another slot + _nonReinfUnits pushBack ["", [_crewUnit], []]; + } + else + { + //Found space, adding crew unit + ((_nonReinfUnits select _index) select 1) pushBack _crewUnit; + }; + } + else + { + //Fill _garrison if needed + while {count _garrison <= _index} do + { + _garrison pushBack ["", [], []]; + }; + + //Replace crew unit + ((_garrison select _index) select 1) pushBack _crewUnit; + ((_requested select _index) select 1) deleteAt 0; //Can simple deleted first, all crew units are the same !!! RASISM ALERT !!! + }; + } forEach _crew; + }; + if(count _cargo > 0) then + { + { + _cargoUnit = _x; + if(_cargoUnit == NATOCrew || _cargoUnit == CSATCrew) then + { + //Unit is crew member, check crew section + _index = _requested findIf {count (_x select 1) > 0}; + if(_index == -1) then + { + //Search for vehicle with open crew space + _index = _nonReinfUnits findIf {(_x select 0) == "" || {(count (_x select 1)) < ([_x select 0, false] call BIS_fnc_crewCount)}}; + if(_index == -1) then + { + //None found, open another slot + _nonReinfUnits pushBack ["", [_cargoUnit], []]; + } + else + { + //Found space, adding crew unit + ((_nonReinfUnits select _index) select 1) pushBack _cargoUnit; + }; + } + else + { + //Fill _garrison if needed + while {count _garrison <= _index} do + { + _garrison pushBack ["", [], []]; + }; + + //Replace crew unit + ((_garrison select _index) select 1) pushBack _cargoUnit; + ((_requested select _index) select 1) deleteAt 0; //Can simple deleted first, all crew units are the same !!! RASISM ALERT !!! + }; + } + else + { + //Unit is combat unit, add as suited + _index = _requested findIf {count (_x select 2) > 0 && {_cargoUnit in (_x select 2)}}; + if(_index == -1) then + { + _index = _nonReinfUnits findIf {(count (_x select 2)) < 8}; + if(_index == -1) then + { + //None found, open another slot + _nonReinfUnits pushBack ["", [_cargoUnit], []]; + } + else + { + //Found space, adding cargo unit + ((_nonReinfUnits select _index) select 2) pushBack _cargoUnit; + }; + } + else + { + //Fill _garrison if needed + while {count _garrison <= _index} do + { + _garrison pushBack ["", [], []]; + }; + + //Place combat unit + ((_garrison select _index) select 2) pushBack _cargoUnit; + private _temp = +((_requested select _index) select 2); + private _subIndex = _temp findIf {_x == _cargoUnit}; + _temp deleteAt _subIndex; + (_requested select _index) set [2, _temp]; + }; + }; + } forEach _cargo; + }; +} forEach _units; + +//TODO sort units to avoid too much data +//NonReinfUnits gets discarded currently to avoid too much units and data junk +//_garrison append _nonReinfUnits; + +//TODO test if that is needed (call by reference) +garrison setVariable [format ["%1_garrison", _marker], _garrison]; +garrison setVariable [format ["%1_requested", _marker], _requested]; + +//diag_log format ["AddGarrison %1: After alive is %2", _random, _garrison]; +//diag_log format ["AddGarrison %1: After dead is %2", _random, _requested]; + +[_marker] call A3A_fnc_updateReinfState; diff --git a/A3-Antistasi/functions/Garrison/fn_addRequested.sqf b/A3-Antistasi/functions/Garrison/fn_addRequested.sqf new file mode 100644 index 0000000000..7d9df217dc --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_addRequested.sqf @@ -0,0 +1,92 @@ +params ["_marker", "_unit", "_unitIndex", ["_stockUp", false]]; + +/* Adds the given units to the list of troups that needs to be reinforced +* For _stockUp == false +* Params: +* _marker: STRING : The name of the marker +* _units: STRING: The name of the unit +* _unitIndex: NUMBER: A number determining where the unit has to be, format YYX, with YY are the group id and X is the position (0 = vehicle, 1 = crew, 2 = group) +* For _stockUp == true +* Params: +* _marker: STRING : The name of the marker +* _units: ARRAY: An array containing ["vehicleName", [CrewArray], [GroupArray]] +* _unitIndex: IGNORED +* +* Returns: +* Nothing +*/ + +if (isNil "_marker") exitWith {diag_log "AddRequested: No marker given!"}; +if (isNil "_unit") exitWith {diag_log "AddRequested: No units given!"}; + +private ["_unitType", "_groupID", "_reinforcements", "_reinfCount", "_element", "_countGarrison"]; + +if(!_stockUp) then +{ + //A unit has been KIA + _unitType = _unitIndex % 10; + _groupID = floor (_unitIndex / 10); + + //Get needed data + _reinforcements = [_marker] call A3A_fnc_getRequested; + _reinfCount = count _reinforcements; + + _garrison = [_marker] call A3A_fnc_getGarrison; + + //Check if element is already there + if((_reinfCount - 1) < _groupID) then + { + //Element and maybe further elements not in it, adding them + for "_i" from (_reinfCount - 1) to _groupID do + { + _reinforcements pushBack ["", [], []]; + }; + }; + + //Adding unit to element + _element = _reinforcements select _groupID; + _garElement = _garrison select _groupID; + if(_unitType != 0) then + { + //Adding unit + (_element select _unitType) pushBack _unit; + _index = (_garElement select _unitType) findIf {_x == _unit}; + (_garElement select _unitType) deleteAt _index; + } + else + { + //Setting vehicle + _element set [0, _unit]; + _garElement set [0, ""]; + }; + _reinforcements set [_groupID, _element]; + + //diag_log "Unit killed, reinforcement are now!"; + //[_reinforcements, "Reinf"] call A3A_fnc_logArray; + + //diag_log "Garrison is now!"; + //[_garrison, "Garrison"] call A3A_fnc_logArray; + + //Setting new reinforcements Pretty sure this is not needed + //garrison setVariable [format ["%1_requested", _marker], _reinforcements, true]; +} +else +{ + //The AI wants to improve the units needed on this marker + if (!(_unit isEqualType []) || {count _unit != 3}) exitWith + { + diag_log format ["AddRequested: Given units do not match format, input was %1", str _unit]; + }; + _countGarrison = count ([_marker] call A3A_fnc_getGarrison); + _reinforcements = [_marker] call A3A_fnc_getNeededReinforcements; + _reinfCount = count _reinforcements; + for "_i" from _reinfCount to (_countGarrison - 1) do + { + _reinforcements pushBack ["", [], []]; + }; + _reinforcements pushBack _unit; + garrison setVariable [format ["%1_requested", _marker], _reinforcements, true]; + + //Update reinforcement priority + [_marker] call A3A_fnc_updateReinfState; +}; diff --git a/A3-Antistasi/functions/Garrison/fn_checkGroupType.sqf b/A3-Antistasi/functions/Garrison/fn_checkGroupType.sqf new file mode 100644 index 0000000000..e7a7864fce --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_checkGroupType.sqf @@ -0,0 +1,36 @@ +params ["_group", "_vehicle", "_preference"]; + +/* Checks if the given group matches the given vehicle and preference +* Params: +* _group : ARRAY of STRINGS : The typenames of the units in the group +* _vehicle : STRING : The vehicle typename of the group +* _preference : STRING : The preferred group type +* +* Returns: +* _result : BOOLEAN : True if group matches preference and vehicle, false otherwise +*/ + +private ["_result", "_vehicleSeats"]; +_result = false; + +//Tanks are always combined with an AT team +if(_vehicle == "LAND_TANK") exitWith {(_group == groupsNATOAT || {_group == groupsCSATAT})}; + +//AA is always combined with an AA team +if(_vehicle == "LAND_AIR") exitWith {(_group == groupsNATOAA || {_group == groupsCSATAA})}; + +//Check group size to determine +if(_preference == "SQUAD") then +{ + _result = (count _group == 8); +}; +if(_preference == "GROUP") then +{ + _result = (count _group == 4); +}; + +//Check if vehicle can hold group +_vehicleSeats = ([_vehicle, true] call BIS_fnc_crewCount) - ([_vehicle, false] call BIS_fnc_crewCount); +_result = (_result && (count _group <= _vehicleSeats)); + +_result; diff --git a/A3-Antistasi/functions/Garrison/fn_checkVehicleType.sqf b/A3-Antistasi/functions/Garrison/fn_checkVehicleType.sqf new file mode 100644 index 0000000000..d7e32b3834 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_checkVehicleType.sqf @@ -0,0 +1,86 @@ +params ["_vehicle", "_preference"]; + +/* Checks if the given vehicle type is within the preferred category +* Params: +* _vehicle : STRING : The vehicle type +* _preference : STRING : The preferred category +* +* Return: +* _result : BOOLEAN : True if vehicle fits category, false otherwise +*/ + +private ["_result"]; + +//TODO this does not work properly (maybe even throws errors) as the template files arent +//unified on how they work, await Pots Templates, then fix this +_result = false; +switch (_preference) do +{ + case ("EMPTY"): + { + _result = (_vehicle == ""); + }; + case ("LAND_START"): + { + _result = (_vehicle == "" || {_vehicle in vehNATOLight || _vehicle in vehCSATLight}); + }; + case ("LAND_LIGHT"): + { + _result = (_vehicle in vehNATOLight || {_vehicle in vehCSATLight}); + }; + case ("LAND_DEFAULT"): + { + _result = (_vehicle in vehNATOLight || {_vehicle in vehCSATLight || {_vehicle in vehNATOAPC || {_vehicle in vehCSATAPC}}}); + }; + case ("LAND_APC"): + { + _result = (_vehicle in vehNATOAPC || {_vehicle in vehCSATAPC}); + }; + case ("LAND_ATTACK"): + { + //Does this work? vehXXXXTank is not an array... + _result = (_vehicle in vehNATOAPC || {_vehicle in vehCSATAPC || {_vehicle == vehNATOTank || {_vehicle == vehCSATTank}}}) + }; + case ("LAND_TANK"): + { + _result = (_vehicle == vehNATOTank || {_vehicle == vehCSATTank}); + }; + case ("LAND_AIR"): + { + _result = (_vehicle == vehNATOAA || {_vehicle == vehCSATAA}); + }; + case ("HELI_PATROL"): + { + _result = (_vehicle == "" || {_vehicle in vehNATOPatrolHeli || _vehicle in vehCSATPatrolHeli}); + }; + case ("HELI_LIGHT"): + { + _result = (_vehicle in vehNATOPatrolHeli || {_vehicle in vehCSATPatrolHeli}); + }; + case ("HELI_TRANSPORT"): + { + _result = (_vehicle in vehNATOTransportHelis || {_vehicle in vehCSATTransportHelis}); + }; + case ("HELI_DEFAULT"): + { + _result = (_vehicle in vehNATOTransportHelis || {_vehicle in vehCSATTransportHelis || {_vehicle in vehNATOAttackHelis || {_vehicle in vehCSATAttackHelis}}}); + }; + case ("HELI_ATTACK"): + { + _result = (_vehicle in vehNATOAttackHelis || {_vehicle in vehCSATAttackHelis}); + }; + case ("AIR_DRONE"): + { + _result = (_vehicle == "" || {_vehicle in [vehNATOUAV, vehNATOUAVSmall] || {_vehicle in [vehCSATUAV, vehCSATUAVSmall]}}); + }; + case ("AIR_GENERIC"): + { + _result = (_vehicle in [vehNATOUAV, vehNATOUAVSmall] || {_vehicle in [vehCSATUAV, vehCSATUAVSmall] || {_vehicle in [vehNATOPlane, vehNATOPlaneAA] || {_vehicle in [vehCSATPlane, vehCSATPlaneAA]}}}); + }; + case ("AIR_DEFAULT"): + { + _result = (_vehicle in [vehNATOPlane, vehNATOPlaneAA] || {_vehicle in [vehCSATPlane, vehCSATPlaneAA]}); + }; +}; + +_result; diff --git a/A3-Antistasi/functions/Garrison/fn_countGarrison.sqf b/A3-Antistasi/functions/Garrison/fn_countGarrison.sqf new file mode 100644 index 0000000000..422c9beb27 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_countGarrison.sqf @@ -0,0 +1,42 @@ +params ["_garrison", "_returnTogether"]; + +/* Counts a given garrison format +* Params: +* _garrison: ARRAY : A garrison in the correct format +* _returnTogether: BOOLEAN : Chooses the output format +* +* Returns: +* _result: NUMBER if _returnTogether == true : All units counted and put together +* _result: ARRAY if _returnTogether == false : An Array containing [_vehicleCount, _crewCount, _cargoCount] +*/ + +private ["_count", "_vehicleCount", "_crewCount", "_cargoCount", "_data", "_result"]; + +_count = count _garrison; + +_vehicleCount = 0; +_crewCount = 0; +_cargoCount = 0; + +for "_i" from 0 to (_count - 1) do +{ + _data = _garrison select _i; + if((_data select 0) != "") then + { + _vehicleCount = _vehicleCount + 1; + }; + _crewCount = _crewCount + (count (_data select 1)); + _cargoCount = _cargoCount + (count (_data select 2)); +}; + +_result = 0; +if(_returnTogether) then +{ + _result = _vehicleCount + _crewCount + _cargoCount; +} +else +{ + _result = [_vehicleCount, _crewCount, _cargoCount]; +}; + +_result; diff --git a/A3-Antistasi/functions/Garrison/fn_createGarrison.sqf b/A3-Antistasi/functions/Garrison/fn_createGarrison.sqf new file mode 100644 index 0000000000..7c0e879244 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_createGarrison.sqf @@ -0,0 +1,64 @@ +params ["_markerArray", "_type", ["_lose", [0, 0, 0]]]; + +/* Creates the initial garrison for a set a marker of a specific type +* Params: +* _markerArray : ARRAY of MARKER : The set of marker +* _type : STRING : The type of the marker, one of Airport, Outpost, City or Other +* _losses : ARRAY of NUMBERS : The amount of lines that should be requested by the marker instead of already there [LAND, HELI, AIR] (default [0,0,0]) +* +* Returns: +* Nothing +*/ + +private ["_losses", "_preferred", "_garrison", "_requested", "_marker", "_side", "_line", "_start", "_index"]; + +_preferred = garrison getVariable [format ["%1_preference", _type], objNull]; +while {!(_preferred isEqualType [])} do +{ + diag_log format ["CreateGarrison: Preference %1_preference not set yet, waiting for 1 second", _type]; + sleep 1; + _preferred = garrison getVariable [format ["%1_preference", _type], objNull]; +}; +{ + _losses = +_lose; + _garrison = []; + _requested = []; + _marker = _x; + _side = sidesX getVariable [_marker, sideUnknown]; + while {_side == sideUnknown} do + { + diag_log format ["Side unknown for %1, sleeping 1!", _marker]; + sleep 1; + _side = sidesX getVariable [_marker, sideUnknown]; + }; + for "_i" from 0 to ((count _preferred) - 1) do + { + _line = [_preferred select _i, _side] call A3A_fnc_createGarrisonLine; + + _start = ((_preferred select _i) select 0) select [0,3]; + _index = ["LAN", "HEL", "AIR"] findIf {_x == _start}; + //diag_log format ["Start %1 Index %2 Preference %3", _start, _index, str (_preferred select _i)]; + if(_index == -1 || {(_losses select _index) <= 0}) then + { + //TODO init arrays with specific size to avoid resize operations + _garrison pushBack _line; + _requested pushBack ["", [], []]; + } + else + { + _losses set [_index, (_losses select _index) - 1]; + _garrison pushBack ["", [], []]; + _requested pushBack _line; + }; + }; + garrison setVariable [format ["%1_garrison", _marker], _garrison, true]; + garrison setVariable [format ["%1_requested", _marker], _requested, true]; + + if(debug) then + { + diag_log format ["Garrison on %1 is now set", _marker]; + [_garrison, format ["%1_garrison", _marker]] call A3A_fnc_logArray; + }; + + [_marker] call A3A_fnc_updateReinfState; +} forEach _markerArray; diff --git a/A3-Antistasi/functions/Garrison/fn_createGarrisonLine.sqf b/A3-Antistasi/functions/Garrison/fn_createGarrisonLine.sqf new file mode 100644 index 0000000000..57c4c38318 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_createGarrisonLine.sqf @@ -0,0 +1,25 @@ +params ["_data", "_side"]; + +/* Creates a single line of a garrison from given preference data +* Params: +* _data : ARRAY : Single element from the preference array +* _side : SIDE : The side, the garrison belongs too +* +* Returns: +* _line : ARRAY : A line in garrison format +*/ + +private ["_vehicleType", "_vehicle", "_crew", "_crewMember", "_cargoGroup", "_line"]; + +_vehicleType = _data select 0; +_vehicle = [_vehicleType, _side] call A3A_fnc_selectVehicleType; +_crew = []; +if((_data select 1) != 0) then +{ + _crewMember = if(_side == Occupants) then {NATOCrew} else {CSATCrew}; + _crew = [_vehicle, _crewMember] call A3A_fnc_getVehicleCrew; +}; +_cargoGroup = [_vehicle, _data select 2, _side] call A3A_fnc_selectGroupType; +_line = [_vehicle, _crew, _cargoGroup]; + +_line; diff --git a/A3-Antistasi/functions/Garrison/fn_getGarrison.sqf b/A3-Antistasi/functions/Garrison/fn_getGarrison.sqf new file mode 100644 index 0000000000..9d694e735c --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_getGarrison.sqf @@ -0,0 +1,17 @@ +params ["_marker"]; + +/* Returns the garrison of a marker in the format it is needed +* Params: +* _marker: STRING : The name of the marker to get the garrison from +* +* Returns: +* _result: ARRAY : The garrison in the correct format +*/ + +private ["_result"]; + +if(isNil "_marker") exitWith {diag_log "GetGarrison: No marker given!";}; + +_result = garrison getVariable [format ["%1_garrison", _marker], [["", [], []]]]; + +_result; diff --git a/A3-Antistasi/functions/Garrison/fn_getGarrisonRatio.sqf b/A3-Antistasi/functions/Garrison/fn_getGarrisonRatio.sqf new file mode 100644 index 0000000000..dd85836efb --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_getGarrisonRatio.sqf @@ -0,0 +1,40 @@ +params ["_marker"]; + +/* Calculates the strength of the garrison, based on units active +* Params: +* _marker: STRING : The name of the marker on which the garrison should be checked +* +* Returns: +* _ratio: NUMBER : The ratio of alive troops to dead troops, 0 if none garrisoned +*/ + +private ["_debug", "_garrison", "_neededReinf", "_garrisonCount", "_reinfCount", "_allUnitsCount", "_preferredUnitsCount", "_data", "_ratio"]; +_debug = debug; + +if(isNil "_marker") exitWith {diag_log "GetGarrisonRatio: No marker given!";}; + +_garrison = [_marker] call A3A_fnc_getGarrison; +_neededReinf = [_marker] call A3A_fnc_getRequested; + +if(_debug) then +{ + diag_log format ["GetGarrisonRatio: Calculating garrison strength now for %1!", _marker]; +}; + +_garrisonCount = [_garrison, true] call A3A_fnc_countGarrison; +_reinfCount = [_neededReinf, true] call A3A_fnc_countGarrison; +_allUnitsCount = _garrisonCount + _reinfCount; +_preferredUnitsCount = _garrisonCount; + +if(_debug) then +{ + diag_log format ["GetGarrisonRatio: Found %1 units in total, %2 of them are alive", _allUnitsCount, _preferredUnitsCount]; +}; + +_ratio = 1; +if(_allUnitsCount > 0) then +{ + _ratio = _preferredUnitsCount / _allUnitsCount; +}; + +_ratio; diff --git a/A3-Antistasi/functions/Garrison/fn_getGarrisonStatus.sqf b/A3-Antistasi/functions/Garrison/fn_getGarrisonStatus.sqf new file mode 100644 index 0000000000..cb8cd22195 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_getGarrisonStatus.sqf @@ -0,0 +1,30 @@ +params ["_marker"]; + +/* Returns the current state of a garrison as a string +* Params: +* _marker: STRING: The name of the marker +* +* Returns: +* _result: STRING: One of Good, Weakened and Decimated, depending on the state of the garrison +*/ + +if(isNil "_marker") exitWith {diag_log "GetGarrisonStatus: No marker given!";}; + +private ["_ratio", "_result"]; + +_ratio = ["_marker"] call A3A_fnc_getGarrisonRatio; + +_result = "Decimated"; +if(_ratio > 0.9) then +{ + _result = "Good" +} +else +{ + if(_ratio > 0.4) then + { + _result = "Weakened" + }; +}; + +_result; diff --git a/A3-Antistasi/functions/Garrison/fn_getRequested.sqf b/A3-Antistasi/functions/Garrison/fn_getRequested.sqf new file mode 100644 index 0000000000..0ff7cf4ebb --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_getRequested.sqf @@ -0,0 +1,17 @@ +params ["_marker"]; + +/* Returns the units of a garrison that needs to be reinforced on the given marker +* Params: +* _marker: STRING : The name of the marker to get the needed reinforcements from +* +* Returns: +* _result: ARRAY : The needed reinforcements in the correct format +*/ + +private ["_result"]; + +if(isNil "_marker") exitWith {diag_log "GetRequested: No marker given!";}; + +_result = garrison getVariable [format ["%1_requested", _marker], [["", [], []]]]; + +_result; diff --git a/A3-Antistasi/functions/Garrison/fn_getVehicleCrew.sqf b/A3-Antistasi/functions/Garrison/fn_getVehicleCrew.sqf new file mode 100644 index 0000000000..a90b6eef60 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_getVehicleCrew.sqf @@ -0,0 +1,22 @@ +params ["_vehicleType", "_crewType"]; + +/* Returns an array of the needed crew for the vehicle +* Params: +* _vehicleType : STRING : The classname of the vehicle +* _crewType : STRING : The classname of the crewmember +* +* Returns: +* _result : ARRAY of STRINGS : The needed amount of crewmember as an array +*/ + +private ["_seatCount", "_result"]; + +if(_vehicleType == "" || _vehicleType == "Empty") exitWith {[]}; + +_seatCount = [_vehicleType, false] call BIS_fnc_crewCount; +_result = []; +for "_i" from 1 to _seatCount do +{ + _result pushBack _crewType; +}; +_result; diff --git a/A3-Antistasi/functions/Garrison/fn_initPreference.sqf b/A3-Antistasi/functions/Garrison/fn_initPreference.sqf new file mode 100644 index 0000000000..4ef271285a --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_initPreference.sqf @@ -0,0 +1,72 @@ +/* Initiates the prefered garrison types and size +* Params: +* Nothing +* +* Returns: +* Nothing +*/ + +private ["_isSinglePlayer", "_preference"]; + +_isSinglePlayer = !isMultiplayer; + +//Setting up airport preferences +_preference = +[ + ["LAND_AIR", -1, "AA"], + ["LAND_APC", -1, "SQUAD"], + ["LAND_START", -1, "SQUAD"], + ["LAND_LIGHT", 0, "EMPTY"], //Empty light vehicle + ["HELI_LIGHT", -1, "GROUP"], + ["HELI_LIGHT", -1, "GROUP"], + ["HELI_LIGHT", 0, "EMPTY"], //Empty helicopter + ["AIR_DRONE", -1, "EMPTY"], + ["AIR_DRONE", 0, "EMPTY"] //Empty plane +]; +//If SP delete some units +if(_isSinglePlayer) then +{ + +}; +garrison setVariable ["Airport_preference", _preference]; +garrison setVariable ["Airport_statics", 0.35]; + +//Setting up outpost preferences +_preference = +[ + ["LAND_START", -1, "SQUAD"], + ["LAND_START", -1, "SQUAD"], + ["LAND_LIGHT", 0, "EMPTY"], //Empty light vehicle + ["HELI_LIGHT", -1, "GROUP"], + ["HELI_LIGHT", 0, "EMPTY"] //Empty helicopter +]; +//If SP delete some units +if(_isSinglePlayer) then +{ + +}; +garrison setVariable ["Outpost_preference", _preference]; +garrison setVariable ["Outpost_statics", 0.2]; + +//Setting up city preferences +_preference = +[ + //No units in cities at start +]; +garrison setVariable ["City_preference", _preference]; +garrison setVariable ["City_statics", 0]; + +//Setting up other preferences +_preference = +[ + ["LAND_START", -1, "SQUAD"], + ["LAND_START", -1, "SQUAD"], + ["LAND_LIGHT", 0, "EMPTY"] //Empty light vehicle +]; +//If SP delete some units +if(_isSinglePlayer) then +{ + +}; +garrison setVariable ["Other_preference", _preference]; +garrison setVariable ["Other_statics", 0]; diff --git a/A3-Antistasi/functions/Garrison/fn_logArray.sqf b/A3-Antistasi/functions/Garrison/fn_logArray.sqf new file mode 100644 index 0000000000..88bce428dc --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_logArray.sqf @@ -0,0 +1,17 @@ +params ["_array", ["_arrayName", "array"]]; + +/* Logs a given array to the rpt +* Params: +* _array : ARRAY : The array, which will be logged +* _arrayName : STRING : The name of the array for identifying the array (default array) +* +* Returns: +* Nothing +*/ + +//TODO add Tads new log function +diag_log format ["Logging %1:", _arrayName]; +for "_i" from 0 to ((count _array) - 1) do +{ + diag_log format [" %1, element %2: %3", _arrayName, _i, str (_array select _i)]; +}; diff --git a/A3-Antistasi/functions/Garrison/fn_replenishGarrison.sqf b/A3-Antistasi/functions/Garrison/fn_replenishGarrison.sqf new file mode 100644 index 0000000000..d1f6969072 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_replenishGarrison.sqf @@ -0,0 +1,5 @@ +params ["_marker"]; + +//This is the worst way to do this, find a better one +private _units = [_marker, _marker, false, true] call A3A_fnc_selectReinfUnits; +[_marker, _units] call A3A_fnc_addGarrison; diff --git a/A3-Antistasi/functions/Garrison/fn_selectGroupType.sqf b/A3-Antistasi/functions/Garrison/fn_selectGroupType.sqf new file mode 100644 index 0000000000..127d40f84f --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_selectGroupType.sqf @@ -0,0 +1,69 @@ +params ["_vehicle", "_preference", "_side"]; + +/* Selects a suitable group for the given vehicle and preference +* Params: +* _vehicle : STRING : The vehicle typename +* _preference : STRING : The preferred group +* _side : SIDE : The side of the selected group +* +* Returns: +* _group : ARRAY of STRINGS : The selected group +*/ + +//If preference is empty, return empty +if(_preference == "Empty") exitWith {[]}; + +//If tank, select AT team +if(_vehicle == vehNATOTank) exitWith {groupsNATOAT}; +if(_vehicle == vehCSATTank) exitWith {groupsCSATAT}; + +//If AA-tank, select AA team +if(_vehicle == vehNATOAA) exitWith {groupsNATOAA}; +if(_vehicle == vehCSATAA) exitWith {groupsCSATAA}; + +_result = ""; +//If no vehicle return preference +if(_vehicle == "") then +{ + _result = _preference +} +else +{ + //Check vehicle seats + _vehicleSeats = ([_vehicle, true] call BIS_fnc_crewCount) - ([_vehicle, false] call BIS_fnc_crewCount); + if(_vehicleSeats >= 8) then + { + _result = _preference; + } + else + { + if(_vehicleSeats >= 4) then + { + _result = "GROUP"; + } + else + { + _result = _preference; + if(debug) then + { + diag_log format ["SelectGroupType: Vehicle %1 cannot transport four or more people, reconsider using another vehicle or make smaller groups possible!", _vehicle]; + diag_log "SelectGroupType: Assuming preference as a solution, may be changed in the future!"; + }; + }; + }; +}; + +_group = []; +if(_result != "EMPTY") then +{ + if(_side == Occupants) then + { + _group = if(_result == "SQUAD") then {selectRandom groupsNATOSquad} else {selectRandom groupsNATOmid}; + } + else + { + _group = if(_result == "SQUAD") then {selectRandom groupsCSATSquad} else {selectRandom groupsCSATmid}; + }; +}; + +_group; diff --git a/A3-Antistasi/functions/Garrison/fn_selectReinfUnits.sqf b/A3-Antistasi/functions/Garrison/fn_selectReinfUnits.sqf new file mode 100644 index 0000000000..fb46a8db11 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_selectReinfUnits.sqf @@ -0,0 +1,193 @@ +params ["_base", "_target", ["_isAir", false], ["_bypass", false]]; + +/* Selects the units to send, given on the targets reinf needs (and what the base has (not yet)) +* Params: +* _base : STRING : The name of the origin base +* _target : STRING : The name of the destination +* _isAir : BOOLEAN : UNUSED +* +* Returns: +* _unitsSend : ARRAY : The units in the correct format +*/ + +private _fileName = "fn_selectReinfUnits"; + +private _maxUnitSend = garrison getVariable [format ["%1_recruit", _base], 0]; +if(_maxUnitSend < 3 && {!_bypass}) exitWith +{ + diag_log "Can't select units with less than 3 slots, would be an vehicle only with crew!"; + []; +}; + +private _unitsSend = []; + +//Hard copy, need to work on this +private _reinf = +([_target] call A3A_fnc_getRequested); +private _side = sidesX getVariable [_base, sideUnknown]; + +private _maxRequested = [_reinf, false] call A3A_fnc_countGarrison; +private _maxVehiclesNeeded = _maxRequested select 0; +private _maxCargoSpaceNeeded = _maxRequested select 2; +private _currentUnitCount = 0; + +[ + 3, + format ["Gathered data for unit selection, available are %1, %3 cargo units needed", _maxUnitSend, _maxCargoSpaceNeeded], + _fileName +] call A3A_fnc_log; +[_reinf, "Reinforcement"] call A3A_fnc_logArray; + + +private _finishedSelection = false; + +while {_currentUnitCount < (_maxUnitSend - 2) && {_maxCargoSpaceNeeded+_maxVehiclesNeeded > 0}} do +{ + private _currentSelected = ""; + private _seatCount = 0; + private _crewSeats = 0; + + //Attempt to find suitable vehicle in requested list + { + private _vehicle = (_x select 0); + if(_vehicle != "") then + { + private _curSeatCount = [_vehicle, true] call BIS_fnc_crewCount; + private _curCrewSeats = [_vehicle, false] call BIS_fnc_crewCount; + + //TODO available check on the base, currently it is bypassing the economy + //Check we don't overflow the max units we can send, if we get this vehicle and crew it. + if + ( + (((_currentUnitCount + _curCrewSeats) + 1) <= _maxUnitSend) && //Already send units + crew + 1 for vehicle <= available units + {_curSeatCount > _seatCount && //Can send more then the last select vehicle + {!_isAir || {_vehicle isKindOf "Air"}}} //Ensure air vehicle for air convoys + ) then + { + _currentSelected = _vehicle; + _seatCount = _curSeatCount; + _crewSeats = _curCrewSeats; + }; + }; + } forEach _reinf; + + //Delete vehicle if we selected one + if(_currentSelected != "") then + { + private _index = _reinf findIf {(_x select 0) == _currentSelected}; + if(_index != -1) then + { + (_reinf select _index) set [0, ""]; + _maxVehiclesNeeded = _maxVehiclesNeeded - 1; + } + else + { + [1, format ["Tried to delete reinf vehicle, but couldn't find it after selection, vehicle was %1!", _currentSelected], _fileName] call A3A_fnc_log; + }; + }; + + //No suitable vehicle found, usign different vehicle to reinforce + if(_currentSelected == "") then + { + //Calculate the amount of units that we still need to send against the amount of units we still have available after substracting driver and vehicle + //Save whatever number is smaller + private _neededCargoSpace = _maxCargoSpaceNeeded min (_maxUnitSend - _currentUnitCount - 2); + + if(_neededCargoSpace == 0) then + { + [1, "_neededCargoSpace is 0, something went really wrong!", _fileName] call A3A_fnc_log; + } + else + { + [3, format ["No reinf vehicle found, selecting not needed transport vehicle, needs space for %1 passengers", _neededCargoSpace], _fileName] call A3A_fnc_log; + if (_isAir) then + { + if (_neededCargoSpace <= 4) then + { + _currentSelected = if (_side == Occupants) then {vehNATOPatrolHeli} else {vehCSATPatrolHeli}; + } + else + { + _currentSelected = if (_side == Occupants) then {selectRandom vehNATOTransportHelis} else {selectRandom vehCSATTransportHelis}; + }; + [3, format ["Selected %1 as an air transport vehicle", _currentSelected], _fileName] call A3A_fnc_log; + } + else + { + if(_neededCargoSpace == 1) then + { + //Vehicle, crew and one person, selecting quad + _currentSelected = if(_side == Occupants) then {vehNATOBike} else {vehCSATBike}; + } + else + { + if(_neededCargoSpace <= 5) then + { + //Select light unarmed vehicle (as the armed uses three crew) + _currentSelected = if(_side == Occupants) then {selectRandom vehNATOLightUnarmed} else {selectRandom vehCSATLightUnarmed}; + } + else + { + //Select random truck or helicopter + _currentSelected = if(_side == Occupants) then {selectRandom (vehNATOTrucks + vehNATOTransportHelis)} else {selectRandom (vehCSATTrucks + vehCSATTransportHelis)}; + }; + }; + [3, format ["Selected %1 as an ground or air transport vehicle", _currentSelected], _fileName] call A3A_fnc_log; + }; + _seatCount = [_currentSelected, true] call BIS_fnc_crewCount; + _crewSeats = [_currentSelected, false] call BIS_fnc_crewCount; + }; + }; + + if(_currentSelected != "") then + { + //Assigning crew + private _crewMember = if(_side == Occupants) then {NATOCrew} else {CSATCrew}; + private _crew = [_currentSelected, _crewMember] call A3A_fnc_getVehicleCrew; + _currentUnitCount = _currentUnitCount + 1 + _crewSeats; + + //Assigning cargo + private _cargo = []; + private _openSpace = _seatCount - _crewSeats; + private _abort = false; + + for "_i" from 0 to ((count _reinf) - 1) do + { + private _data = _reinf select _i; + private _dataCargo = _data select 2; + + while {count _dataCargo > 0} do + { + //If space is available and units are available, add them + if((_currentUnitCount < _maxUnitSend) && {_openSpace > 0}) then + { + _cargo pushBack (_dataCargo deleteAt 0); + _currentUnitCount = _currentUnitCount + 1; + _maxCargoSpaceNeeded = _maxCargoSpaceNeeded - 1; + _openSpace = _openSpace - 1; + } + else + { + //No space or units available, abort + _abort = true; + }; + if(_abort) exitWith {}; + }; + + //No more space, exit + if(_abort) exitWith {}; + }; + _unitsSend pushBack [_currentSelected, _crew, _cargo]; + [3, format ["Units selected, crew is %1, cargo is %2", _crew, _cargo], _fileName] call A3A_fnc_log; + } + else + { + //No units need to be send, and vehicle is not available, abort loop + _finishedSelection = true; + }; + + if(_finishedSelection) exitWith {}; +}; + +garrison setVariable [format ["%1_recruit", _base], (_maxUnitSend - _currentUnitCount), true]; + +_unitsSend; diff --git a/A3-Antistasi/functions/Garrison/fn_selectVehicleType.sqf b/A3-Antistasi/functions/Garrison/fn_selectVehicleType.sqf new file mode 100644 index 0000000000..b2b323df06 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_selectVehicleType.sqf @@ -0,0 +1,128 @@ +params ["_preference", "_side"]; + +/* Selects a fitting vehicle type based on given preference and side +* Params: +* _preference : STRING : The preferred vehicle type +* _side : SIDE : The side of the vehicle +* +* Returns: +* _result : STRING : The typename of the selected vehicle +*/ + +private _fileName = "SelectVehicleType"; + +[3, format ["SelectVehicleType: Selecting vehicle now, preferred is %1, side is %2", _preference, _side], _fileName] call A3A_fnc_log; + +if(_preference == "LAND_AIR") exitWith +{ + if(_side == Occupants) then {vehNATOAA} else {vehCSATAA}; +}; +if(_preference == "LAND_TANK") exitWith +{ + if(_side == Occupants) then {vehNATOTank} else {vehCSATTank}; +}; + +private _possibleVehicles = []; +if(_preference in ["EMPTY", "LAND_START", "HELI_PATROL", "AIR_DRONE"]) then +{ + _possibleVehicles pushBack ""; +}; +if(_preference in ["LAND_START", "LAND_LIGHT", "LAND_DEFAULT"]) then +{ + if(_side == Occupants) then + { + _possibleVehicles append vehNATOLight; + } + else + { + _possibleVehicles append vehCSATLight; + }; +}; +if(_preference in ["LAND_DEFAULT", "LAND_APC", "LAND_ATTACK"]) then +{ + if(_side == Occupants) then + { + _possibleVehicles append vehNATOAPC; + } + else + { + _possibleVehicles append vehCSATAPC; + }; +}; +if(_preference in ["LAND_ATTACK"]) then +{ + if(_side == Occupants) then + { + _possibleVehicles pushBack vehNATOTank; + } + else + { + _possibleVehicles pushBack vehCSATTank; + }; +}; +if(_preference in ["HELI_PATROL", "HELI_LIGHT"]) then +{ + if(_side == Occupants) then + { + _possibleVehicles pushBack vehNATOPatrolHeli; + } + else + { + _possibleVehicles pushBack vehCSATPatrolHeli; + }; +}; +if(_preference in ["HELI_TRANSPORT", "HELI_DEFAULT"]) then +{ + if(_side == Occupants) then + { + _possibleVehicles append vehNATOTransportHelis; + } + else + { + _possibleVehicles append vehCSATTransportHelis; + }; +}; +if(_preference in ["HELI_DEFAULT", "HELI_ATTACK"]) then +{ + if(_side == Occupants) then + { + _possibleVehicles append vehNATOAttackHelis; + } + else + { + _possibleVehicles append vehCSATAttackHelis; + }; +}; +if(_preference in ["AIR_DRONE", "AIR_GENERIC"]) then +{ + if(_side == Occupants) then + { + _possibleVehicles append [vehNATOUAV, vehNATOUAVSmall]; + } + else + { + _possibleVehicles append [vehCSATUAV, vehCSATUAVSmall]; + }; +}; +if(_preference in ["AIR_GENERIC", "AIR_DEFAULT"]) then +{ + if(_side == Occupants) then + { + _possibleVehicles append [vehNATOPlane, vehNATOPlaneAA]; + } + else + { + _possibleVehicles append [vehCSATPlane, vehCSATPlaneAA]; + }; +}; + +if(count _possibleVehicles == 0) exitWith +{ + [1, format ["No result for %1, assuming bad parameter!", _preference], _fileName] call A3A_fnc_log; + "Empty"; +}; + +[3, format ["SelectVehicleType: Preselection done, possible vehicles are %1", str _possibleVehicles], _fileName] call A3A_fnc_log; + +private _result = selectRandom _possibleVehicles; +_result; diff --git a/A3-Antistasi/functions/Garrison/fn_shouldReinforce.sqf b/A3-Antistasi/functions/Garrison/fn_shouldReinforce.sqf new file mode 100644 index 0000000000..daeeb55124 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_shouldReinforce.sqf @@ -0,0 +1,37 @@ +params ["_base", "_target"]; + +//Bases cannot reinforce themselves +if(_base isEqualTo _target) exitWith {false}; + +private ["_isAirport", "_side", "_targetIsBase", "_reinfMarker", "_targetReinforcements", "_reinfCount", "_maxSend"]; + +_isAirport = _base in airportsX; +_side = sidesX getVariable [_base, sideUnknown]; + +//Spawned airports are not yet ready to send reinforcements +if (spawner getVariable _base != 2 || {_base in forcedSpawn}) exitWith {false}; + +//To far away for land convoy or not the same island +if(!_isAirport && {(getMarkerPos _base) distance2D (getMarkerPos _target) > distanceForLandAttack || {!([_base, _target] call A3A_fnc_isTheSameIsland)}}) exitWith {false}; + +//To far away for air convoy +if(_isAirport && {(getMarkerPos _base) distance2D (getMarkerPos _target) > distanceForAirAttack}) exitWith {false}; + +_targetIsBase = _target in outposts; +_reinfMarker = if(_side == Occupants) then {reinforceMarkerOccupants} else {reinforceMarkerInvader}; + +_targetReinforcements = [_target] call A3A_fnc_getRequested; +_reinfCount = [_targetReinforcements, true] call A3A_fnc_countGarrison; + +_maxSend = garrison getVariable [format ["%1_recruit", _base], 0]; + +//Can't send enough troups +if((_reinfCount < 18) && {_maxSend < (_reinfCount * 2/3)}) exitWith {false}; + +//Bases should not send more than 8 troops at a time +if((_reinfCount > 8) && {!_isAirport}) exitWith {false}; + +//Airports only support bases with less than 4 troups //Currently deactivated +//if((_reinfCount < 4) && {_isAirport && {!_targetIsBase}}) exitWith {false}; + +true; diff --git a/A3-Antistasi/functions/Garrison/fn_updateGarrison.sqf b/A3-Antistasi/functions/Garrison/fn_updateGarrison.sqf new file mode 100644 index 0000000000..292f688c32 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_updateGarrison.sqf @@ -0,0 +1,59 @@ +params ["_type", "_marker"]; + +/* Checks for updates and updates the garrison if needed. SHOULD BE CALLED AFTER EVERY DESPAWN +* Params +* _type : STRING : The type of the marker +* _marker : STRING : The marker name +* +* Returns: +* Nothing +*/ + +private ["_preferred", "_side", "_garCount", "_preCount", "_line"]; + +_preferred = garrison getVariable (format ["%1_preference", _type]); +_garrison = garrison getVariable (format ["%1_garrison", _marker]); +_side = garrison getVariable [_marker, sideUnknown]; + +if(_side == sideUnknown) exitWith +{ + diag_log "UpdateGarrison: Could not retrieve side!"; +}; + +for "_i" from 0 to (_garCount - 1) do +{ + _garData = _garrison select _i; + _preData = _preferred select _i; + if(![_garData select 0, _preData select 0] call A3A_fnc_checkVehicleType) then + { + _garData set [0, [_preData select 0, _side] call A3A_fnc_selectVehicleType]; + if(_preData select 1 != 0) then + { + _crew = if(_side == Occupants) then {NATOCrew} else {CSATCrew}; + _garData set [1, [_garData select 0, _crew] call A3A_fnc_getVehicleCrew]; + } + else + { + _garData set [1, ["","",""]]; + }; + if(![_garData select 2, _garData select 0, _preData select 2] call A3A_checkGroupType) then + { + _garData set [2, [_garData select 0, _preData select 2, _side] call A3A_fnc_selectGroupType]; + }; + }; +}; + +_garCount = count _garrison; +_preCount = count _preferred; + +//Current garrison is bigger (not really possible) or equal preference, exit +if(_garCount >= _preCount) exitWith {}; + + + +//Adding new units to garrison +for "_i" from _garCount to (_preCount - 1) do +{ + _line = [_preferred select _i, _side] call A3A_fnc_createGarrisonLine; + [_marker, _line, -1, true] call A3A_fnc_addRequested; +}; diff --git a/A3-Antistasi/functions/Garrison/fn_updatePreference.sqf b/A3-Antistasi/functions/Garrison/fn_updatePreference.sqf new file mode 100644 index 0000000000..4d538ba735 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_updatePreference.sqf @@ -0,0 +1,113 @@ +/* +* +* +* +* +* +* +* +*/ + +diag_log format ["UpdatePreference: Updating preferences now, tierWar is %1", tierWar]; + +//No need to update the preferences +if(tierPreference >= tierWar) exitWith {diag_log "Aborting update of preferences!";}; + +for "_i" from (tierPreference + 1) to tierWar do +{ + if(_i in airportUpdateTiers) then + { + _preference = garrison getVariable ["Airport_preference", []]; + //Update vehicle types + [_preference] call A3A_fnc_updateVehicles; + + //Add new vehicles + _index = airportUpdateTiers findIf {_x == _i}; + if(_index % 2 == 0) then + { + _preference pushBack ["LAND_LIGHT", -1, "SQUAD"]; + _preference pushBack ["HELI_LIGHT", -1, "GROUP"]; + } + else + { + _preference pushBack ["LAND_AIR", -1, "AA"]; + _preference pushBack ["AIR_GENERIC", -1, "EMPTY"]; + }; + + if(true || debug) then + { + diag_log format ["Airport_preference hit level %1", tierWar]; + [_preference, "Airport_preference"] call A3A_fnc_logArray; + }; + garrison setVariable ["Airport_preference", _preference, true]; + garrison setVariable ["Airport_statics", (airportStaticsTiers select _index), true]; + }; + + if(_i in outpostUpdateTiers) then + { + _preference = garrison getVariable ["Outpost_preference", []]; + //Update vehicle types + [_preference] call A3A_fnc_updateVehicles; + + //Add new vehicles + _index = outpostUpdateTiers findIf {_x == _i}; + if(_index % 2 == 0) then + { + _preference pushBack ["LAND_LIGHT", -1, "SQUAD"]; + } + else + { + _preference pushBack ["HELI_LIGHT", -1, "GROUP"]; + }; + if(true || debug) then + { + diag_log format ["Outpost_preference hit level %1", tierWar]; + [_preference, "Outpost_preference"] call A3A_fnc_logArray; + }; + garrison setVariable ["Outpost_preference", _preference, true]; + garrison setVariable ["Outpost_statics", (outpostStaticsTiers select _index), true]; + }; + + if(_i in cityUpdateTiers) then + { + //Update preferences of cities + _preference = garrison getVariable ["City_preference", []]; + _preference pushBack ["LAND_LIGHT", -1, "GROUP"]; + + if(true || debug) then + { + diag_log format ["City_preference hit level %1", tierWar]; + [_preference, "City_preference"] call A3A_fnc_logArray; + }; + garrison setVariable ["City_preference", _preference, true]; + + //Update statics percentage + _index = cityUpdateTiers findIf {_x == _i}; + garrison setVariable ["City_statics", (cityStaticsTiers select _index), true]; + }; + + if(_i in otherUpdateTiers) then + { + //Update preferences of other sites + _preference = garrison getVariable ["Other_preference", []]; + //Update vehicle types + [_preference] call A3A_fnc_updateVehicles; + + _preference pushBack ["EMPTY", 0, "SQUAD"]; + + if(true || debug) then + { + diag_log format ["Other_preference hit level %1", tierWar]; + [_preference, "Other_preference"] call A3A_fnc_logArray; + }; + garrison setVariable ["Other_preference", _preference, true]; + + //Update statics percentage + _index = otherUpdateTiers findIf {_x == _i}; + garrison setVariable ["Other_statics", (otherStaticsTiers select _index), true]; + }; + +}; + +tierPreference = tierWar; +publicVariable "tierPreference"; diff --git a/A3-Antistasi/functions/Garrison/fn_updateReinfState.sqf b/A3-Antistasi/functions/Garrison/fn_updateReinfState.sqf new file mode 100644 index 0000000000..061324019c --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_updateReinfState.sqf @@ -0,0 +1,78 @@ +params ["_marker"]; + +/* Updates the reinf state if the marker, decides whether it can reinforce others and/or needs reinforcement +* Params: +* _marker: STRING : The name of the marker +* +* Returns: +* Nothing +*/ + +private ["_ratio", "_side", "_reinfMarker", "_canReinf", "_index", "_isAirport", "_isOutpost"]; + +_ratio = [_marker] call A3A_fnc_getGarrisonRatio; +_side = sidesX getVariable [_marker, sideUnknown]; + +if(_side == teamPlayer) exitWith +{ + private _index = reinforceMarkerOccupants findIf {(_x select 1) == _marker}; + if(_index == -1) then + { + _index = reinforceMarkerInvader findIf {(_x select 1) == _marker}; + if(_index != -1) then + { + reinforceMarkerInvader deleteAt _index; + }; + } + else + { + reinforceMarkerOccupants deleteAt _index; + }; + canReinforceOccupants = canReinforceOccupants - [_marker]; + canReinforceInvader = canReinforceInvader - [_marker]; +}; + +//diag_log format ["Marker %1 has a ratio of %2", _marker, _ratio]; + +_reinfMarker = if(_side == Occupants) then {reinforceMarkerOccupants} else {reinforceMarkerInvader}; +_canReinf = if(_side == Occupants) then {canReinforceOccupants} else {canReinforceInvader}; + +_isAirport = _marker in airportsX; + +_index = _reinfMarker findIf {(_x select 1) == _marker}; +if(_ratio != 1 && {!_isAirport}) then +{ + //TODO calculate importance of target + if(_index == -1) then + { + //Marker not in _reinfMarker + _reinfMarker pushBack [_ratio, _marker]; + } + else + { + //Marker in it, replace + _reinfMarker set [_index, [_ratio, _marker]]; + }; +} +else +{ + if(_index != -1) then + { + //Delete marker + _reinfMarker deleteAt _index; + }; +}; + +_isOutpost = _marker in outposts; +//In desperate need of reinforcements, can't send own +if((_isAirport && _ratio <= 0.4) || {_isOutpost && _ratio <= 0.8}) then +{ + _canReinf = _canReinf - [_marker]; +} +else +{ + if(_isAirport || {_isOutpost}) then + { + _canReinf pushBackUnique _marker; + }; +}; diff --git a/A3-Antistasi/functions/Garrison/fn_updateVehicles.sqf b/A3-Antistasi/functions/Garrison/fn_updateVehicles.sqf new file mode 100644 index 0000000000..c6315b4a65 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/fn_updateVehicles.sqf @@ -0,0 +1,74 @@ +params ["_preference"]; + +/* Updates the preferences of the given array +* Params: +* _preference : ARRAY : the preferences array +* +* Returns: +* Nothing +*/ + +for "_i" from 0 to ((count _preference) - 1) do +{ + _data = _preference select _i; + _vehicle = _data select 0; + _cargo = _data select 2; + + //All possible land types LAND_START, LAND_LIGHT, LAND_DEFAULT, LAND_APC, LAND_ATTACK, LAND_TANK, LAND_AIR + //All possible heli types HELI_PATROL, HELI_LIGHT, HELI_TRANSPORT, HELI_DEFAULT, HELI_ATTACK + //All possible air types AIR_DRONE, AIR_GENERIC, AIR_DEFAULT + //All other types EMPTY + + _newVehicle = _vehicle; + if(!(_vehicle in ["EMPTY", "LAND_TANK", "LAND_AIR", "HELI_ATTACK", "AIR_DEFAULT"])) then + { + //Vehicle not fully upgraded, continue upgrading + switch (_vehicle) do + { + //Update land vehicle + case ("LAND_START") : {_newVehicle = "LAND_LIGHT";}; + case ("LAND_LIGHT") : {_newVehicle = "LAND_DEFAULT";}; + case ("LAND_DEFAULT") : {_newVehicle = "LAND_APC";}; + case ("LAND_APC") : {_newVehicle = "LAND_ATTACK";}; + case ("LAND_ATTACK") : {_newVehicle = "LAND_TANK";}; + + //Update air vehicle + case ("HELI_PATROL") : {_newVehicle = "HELI_LIGHT";}; + case ("HELI_LIGHT") : {_newVehicle = "HELI_TRANSPORT";}; + case ("HELI_TRANSPORT") : {_newVehicle = "HELI_DEFAULT";}; + case ("HELI_DEFAULT") : {_newVehicle = "HELI_ATTACK";}; + + //Update air vehicles + case ("AIR_DRONE") : {_newVehicle = "AIR_GENERIC";}; + case ("AIR_GENERIC") : {_newVehicle = "AIR_DEFAULT";}; + }; + }; + _data set [0, _newVehicle]; + + //All possible cargo groups EMPTY, GROUP, SQUAD, AA, AT + _newCargo = _cargo; + if(!(_cargo in ["EMPTY", "AA", "AT"])) then + { + if(_newVehicle in ["LAND_START", "LAND_LIGHT", "LAND_DEFAULT"]) then + { + _newCargo = "GROUP"; + }; + if(_newVehicle in ["LAND_APC", "LAND_ATTACK"]) then + { + _newCargo = "SQUAD"; + }; + if(_newVehicle in ["LAND_TANK"]) then + { + _newCargo = "AT"; + }; + if(_newVehicle in ["HELI_PATROL", "HELI_LIGHT", "HELI_ATTACK"]) then + { + _newCargo = "GROUP"; + }; + if(_newVehicle in ["HELI_TRANSPORT", "HELI_DEFAULT"]) then + { + _newCargo = "SQUAD"; + }; + }; + _data set [2, _newCargo]; +}; diff --git a/A3-Antistasi/functions/Garrison/notes b/A3-Antistasi/functions/Garrison/notes new file mode 100644 index 0000000000..40f10de9fd --- /dev/null +++ b/A3-Antistasi/functions/Garrison/notes @@ -0,0 +1,58 @@ +[DONE] A new, easy to get, definition of how units are saved on marker +[DONE] A new system to determine which outpost needs reinforcements the most +[DONE] A new system how reinforcements are choosen (A dead MG gunner will be replaced by another MG guy) +[DONE] A system to improve garrisons with the war level (Can (currently not) be deactivated) +[DONE] Groundwork for a system, which actually send units from one marker to another, not just spawning them in there (Any actions actually depletes the garrison) +[DONE] An implementation to work within the current system for debug purposes +[DONE] A new cyclic spawn system +[DONE] A simple cleanup so it does not fill the data with junk +[DONE] Integration with the current system +[DONE] Map porting on Altis, Tanoa and Malden +[DONE] Test it for SP, local MP and dedi MP + +================================================================================ +MERGED INTO UNSTABLE AND TESTED BY POT +================================================================================ + +[DONE] Improvement of the cyclic spawn system +[DONE] Integration into the convoy system, to use reinforce convoys +[DONE] Improve the convoy system to spawn convoys +[DONE] Save and load mechanics +[DONE] Add mechanic on convoy arrival +[DONE] On marker change mechanic +[DONE] Write the "AI", which replenishes airports +[DONE] Rework AIVehInit to work for convoy vehicles - is not needed, it will behave correctly +[DONE] Add simple fight mechanic for roadblock engagements + +================================================================================ +SPLIT HERE FOR PR 2.2 +================================================================================ + +Add helicopter types for spoffy +Make the AI follow the pathfinding way +Clean up code +Add code documentation +Improve patrol detection +Add check for units to be marked unavailable, if the outpost is not suited to have them +EH for the groups to man vehicles +Cleanup function +Add the functions to send troops (remove from garrison) +Enabling it for player side, not only AI +Reinforcements moves +Stop the AI from bypassing the economy +Optimisation for speed and data size +Improve the convoy system to handle fights +Rework unit detection system +Improve the AI, which chooses the units +Better troup compositions +Balancing +Handle statics +Handle statics in convoys +Improve distance script +Two man team (Sniper Spotter, etc.) +Improve the convoy system to handle attacks +Find a way to assign squadleader properly +Finalizing cyclic spawn +Improve the replenish function to get actual results +Reorder convoys on despawn (Reassign vehicles if one is destroyed and so on) +Reorder all parameters in the same order diff --git a/A3-Antistasi/functions/Garrison/testScripts b/A3-Antistasi/functions/Garrison/testScripts new file mode 100644 index 0000000000..b58a265788 --- /dev/null +++ b/A3-Antistasi/functions/Garrison/testScripts @@ -0,0 +1,13 @@ +//["outpost_14"] spawn A3A_fnc_cycleSpawn; +//["factory_4"] spawn A3A_fnc_cycleSpawn; +//["airport_4"] spawn A3A_fnc_cycleSpawn; + +//[[],"A3A_fnc_reinforcementsAI"] call A3A_fnc_scheduler; + +========================================================== + +for "_i" from 1 to 10 do +{ + tierWar = _i; + [] call A3A_fnc_updatePreference; +}; diff --git a/A3-Antistasi/Missions/AS_Official.sqf b/A3-Antistasi/functions/Missions/fn_AS_Official.sqf similarity index 97% rename from A3-Antistasi/Missions/AS_Official.sqf rename to A3-Antistasi/functions/Missions/fn_AS_Official.sqf index 869027c4f4..d1dfa02cb8 100644 --- a/A3-Antistasi/Missions/AS_Official.sqf +++ b/A3-Antistasi/functions/Missions/fn_AS_Official.sqf @@ -63,7 +63,7 @@ if (not alive _official) then [5,theBoss] call A3A_fnc_playerScoreAdd; [_markerX,30] call A3A_fnc_addTimeForIdle; }; - ["TaskFailed", ["", format ["Officer killed at %1",[_nameDest, false] call A3A_fnc_fn_location]]] remoteExec ["BIS_fnc_showNotification",_sideX]; + ["TaskFailed", ["", format ["Officer killed at %1",[_nameDest, false] call A3A_fnc_location]]] remoteExec ["BIS_fnc_showNotification",_sideX]; } else { diff --git a/A3-Antistasi/Missions/AS_Traitor.sqf b/A3-Antistasi/functions/Missions/fn_AS_Traitor.sqf old mode 100755 new mode 100644 similarity index 99% rename from A3-Antistasi/Missions/AS_Traitor.sqf rename to A3-Antistasi/functions/Missions/fn_AS_Traitor.sqf index 16ee6e97a2..f7b6acb613 --- a/A3-Antistasi/Missions/AS_Traitor.sqf +++ b/A3-Antistasi/functions/Missions/fn_AS_Traitor.sqf @@ -25,7 +25,7 @@ _posHouse = []; _houseX = _houses select 0; while {count _posHouse < 3} do { - _houseX = _houses call BIS_Fnc_selectRandom; + _houseX = selectRandom _houses; _posHouse = _houseX buildingPos -1; if (count _posHouse < 3) then {_houses = _houses - [_houseX]}; }; diff --git a/A3-Antistasi/Missions/AS_specOP.sqf b/A3-Antistasi/functions/Missions/fn_AS_specOP.sqf similarity index 100% rename from A3-Antistasi/Missions/AS_specOP.sqf rename to A3-Antistasi/functions/Missions/fn_AS_specOP.sqf diff --git a/A3-Antistasi/Missions/CON_Outpost.sqf b/A3-Antistasi/functions/Missions/fn_CON_Outpost.sqf similarity index 100% rename from A3-Antistasi/Missions/CON_Outpost.sqf rename to A3-Antistasi/functions/Missions/fn_CON_Outpost.sqf diff --git a/A3-Antistasi/Missions/DES_Antenna.sqf b/A3-Antistasi/functions/Missions/fn_DES_Antenna.sqf similarity index 100% rename from A3-Antistasi/Missions/DES_Antenna.sqf rename to A3-Antistasi/functions/Missions/fn_DES_Antenna.sqf diff --git a/A3-Antistasi/Missions/DES_Heli.sqf b/A3-Antistasi/functions/Missions/fn_DES_Heli.sqf similarity index 56% rename from A3-Antistasi/Missions/DES_Heli.sqf rename to A3-Antistasi/functions/Missions/fn_DES_Heli.sqf index f71e757475..d0dcf23126 100644 --- a/A3-Antistasi/Missions/DES_Heli.sqf +++ b/A3-Antistasi/functions/Missions/fn_DES_Heli.sqf @@ -1,30 +1,26 @@ //Mission: Destroy the helicopter if (!isServer and hasInterface) exitWith{}; -private ["_poscrash","_markerX","_positionX","_mrkFinal","_typeVehX","_effect","_heli","_vehiclesX","_soldiers","_groups","_unit","_roads","_road","_vehicle","_veh","_typeGroup","_tsk","_smokeX","_emitterArray","_countX"]; +private ["_posCrash","_markerX","_positionX","_mrkFinal","_typeVehX","_effect","_heli","_vehiclesX","_soldiers","_groups","_unit","_roads","_road","_vehicle","_veh","_typeGroup","_tsk","_smokeX","_emitterArray","_countX"]; _markerX = _this select 0; _difficultX = if (random 10 < tierWar) then {true} else {false}; -_leave = false; -_contactX = objNull; -_groupContact = grpNull; -_tsk = ""; -_tsk1 = ""; +private _posCrashOrig = []; _positionX = getMarkerPos _markerX; _sideX = if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then {Occupants} else {Invaders}; _posHQ = getMarkerPos respawnTeamPlayer; - _timeLimit = 120; _dateLimit = [date select 0, date select 1, date select 2, date select 3, (date select 4) + _timeLimit]; _dateLimitNum = dateToNumber _dateLimit; _ang = random 360; _countX = 0; _dist = if (_difficultX) then {2000} else {3000}; +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Location: %2, Hardmode: %3, Controlling Side: %4",servertime,_markerX,_difficultX,_sideX]; while {true} do { - _poscrashOrig = _positionX getPos [_dist,_ang]; - if ((!surfaceIsWater _poscrashOrig) and (_poscrashOrig distance _posHQ < 4000)) exitWith {}; + _posCrashOrig = _positionX getPos [_dist,_ang]; + if ((!surfaceIsWater _posCrashOrig) and (_posCrashOrig distance _posHQ < 4000)) exitWith {}; _ang = _ang + 1; _countX = _countX + 1; if (_countX > 360) then @@ -34,46 +30,38 @@ while {true} do }; }; -_typeVehX = selectRandom (vehPlanes + vehAttackHelis + vehTransportAir); +_typeVehX = if (_sideX == Occupants) then {selectRandom (vehNATOTransportHelis + vehNATOAttackHelis)} else {selectRandom (vehCSATAttackHelis + vehCSATTransportHelis)}; -_posCrashMrk = [_poscrash,random 500,random 360] call BIS_fnc_relPos; _posCrash = _posCrashOrig findEmptyPosition [0,100,_typeVehX]; + if (count _posCrash == 0) then { if (!isMultiplayer) then {{ _x hideObject true } foreach (nearestTerrainObjects [_posCrashOrig,["tree","bush"],50])} else {{[_x,true] remoteExec ["hideObjectGlobal",2]} foreach (nearestTerrainObjects [_posCrashOrig,["tree","bush"],50])}; _posCrash = _posCrashOrig; }; -_mrkFinal = createMarker [format ["DES%1", random 100], _posCrashMrk]; -_mrkFinal setMarkerShape "ICON"; -//_mrkFinal setMarkerType "hd_destroy"; -//_mrkFinal setMarkerColor "ColorRed"; -//_mrkFinal setMarkerText "Destroy Downed Chopper"; - +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Crash Location: %2, Air Vehicle: %3",servertime,_posCrash,_typeVehX]; _nameXbase = [_markerX] call A3A_fnc_localizar; -/* -if (!_difficultX) then - { - [[teamPlayer,civilian],"DES",[format ["We have downed air vehicle. It is a good chance to destroy it before it is recovered. Do it before a recovery team from the %1 reaches the place. MOVE QUICKLY",_nameXbase],"Destroy Air",_mrkFinal],_posCrashMrk,false,0,true,"Destroy",true] call BIS_fnc_taskCreate - } -else - { - ["DES",[format ["We have downed air vehicle. It is a good chance to destroy it before it is recovered. Do it before a recovery team from the %1 reaches the place. MOVE QUICKLY",_nameXbase],"Destroy Air",_mrkFinal],_posCrashMrk,"CREATED","Destroy"] call A3A_fnc_taskUpdate; - };*/ -//missionsX pushBack _tsk; publicVariable "missionsX"; -[[teamPlayer,civilian],"DES",[format ["We have downed air vehicle. It is a good chance to destroy it before it is recovered. Do it before a recovery team from the %1 reaches the place. MOVE QUICKLY",_nameXbase],"Destroy Air",_mrkFinal],_posCrashMrk,false,0,true,"Destroy",true] call BIS_fnc_taskCreate; -[[teamPlayer,civilian],"DES1",[format ["The rebels managed to shot down a helicopter. A recovery team departing from the %1 is inbound to recover it. Cover them while they perform the whole operation",_nameXbase],"Helicopter Down",_mrkFinal],_posCrash,false,0,true,"Defend",true] call BIS_fnc_taskCreate; -missionsX pushBack ["DES","CREATED"]; publicVariable "missionsX"; + _vehiclesX = []; _soldiers = []; _groups = []; -_effect = createVehicle ["CraterLong", _poscrash, [], 0, "CAN_COLLIDE"]; -_heli = createVehicle [_typeVehX, _poscrash, [], 0, "CAN_COLLIDE"]; +_effect = createVehicle ["CraterLong", _posCrash, [], 0, "CAN_COLLIDE"]; +_heli = createVehicle [_typeVehX, _posCrash, [], 0, "CAN_COLLIDE"]; _heli attachTo [_effect,[0,0,1.5]]; -_smokeX = "test_EmptyObjectForSmoke" createVehicle _poscrash; _smokeX attachTo[_heli,[0,1.5,-1]]; +_smokeX = "test_EmptyObjectForSmoke" createVehicle _posCrash; _smokeX attachTo [_heli,[0,1.5,-1]]; _heli setDamage 0.9; _heli lock 2; -_vehiclesX = _vehiclesX + [_heli,_effect]; +_vehiclesX append [_heli,_effect]; + +_posCrashMrk = _heli getRelPos [random 500,random 360]; +_mrkFinal = createMarker [format ["DES%1", random 100],_posCrashMrk]; +_mrkFinal setMarkerShape "ICON"; + +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Creating Tasks",servertime]; +[[teamPlayer,civilian],"DES",[format ["We have downed air vehicle. There is a good chance to destroy or capture it before it is recovered. Do it before a recovery team from %1 reaches the place. MOVE QUICKLY",_nameXbase],"Destroy Air",_mrkFinal],_posCrashMrk,false,0,true,"Destroy",true] call BIS_fnc_taskCreate; +[[Occupants],"DES1",[format ["The rebels managed to shot down a helicopter. A recovery team departing from the %1 is inbound to recover it. Cover them while they perform the whole operation",_nameXbase],"Helicopter Down",_mrkFinal],_posCrash,false,0,true,"Defend",true] call BIS_fnc_taskCreate; +missionsX pushBack ["DES","CREATED"]; publicVariable "missionsX"; _radiusX = 100; @@ -86,37 +74,39 @@ while {true} do _road = _roads select 0; _typeVehX = if (_sideX == Occupants) then {selectRandom vehNATOLightUnarmed} else {selectRandom vehCSATLightUnarmed}; -_vehicle=[position _road, 0,_typeVehX, _sideX] call bis_fnc_spawnvehicle; +_vehicle = [position _road, 0,_typeVehX, _sideX] call bis_fnc_spawnvehicle; _veh = _vehicle select 0; [_veh] call A3A_fnc_AIVEHinit; //[_veh,"Escort"] spawn A3A_fnc_inmuneConvoy; _vehCrew = _vehicle select 1; {[_x] call A3A_fnc_NATOinit} forEach _vehCrew; _groupVeh = _vehicle select 2; -_soldiers = _soldiers + _vehCrew; +_soldiers append _vehCrew; _groups pushBack _groupVeh; _vehiclesX pushBack _veh; - +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Crash Location: %2, Lite Vehicle: %3",servertime,_posCrash,_typeVehX]; sleep 1; _typeGroup = if (_sideX == Occupants) then {groupsNATOSentry} else {groupsCSATSentry}; _groupX = [_positionX, _sideX, _typeGroup] call A3A_fnc_spawnGroup; {_x assignAsCargo _veh; _x moveInCargo _veh; _soldiers pushBack _x; [_x] join _groupVeh; [_x] call A3A_fnc_NATOinit} forEach units _groupX; deleteGroup _groupX; -//[_veh] spawn smokeCover; -_Vwp0 = _groupVeh addWaypoint [_poscrash, 0]; +_Vwp0 = _groupVeh addWaypoint [_posCrash, 0]; _Vwp0 setWaypointType "TR UNLOAD"; _Vwp0 setWaypointBehaviour "SAFE"; -_Gwp0 = _groupX addWaypoint [_poscrash, 0]; +_Gwp0 = _groupX addWaypoint [_posCrash, 0]; _Gwp0 setWaypointType "GETOUT"; _Vwp0 synchronizeWaypoint [_Gwp0]; +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Placed Group: %2 in Lite Vehicle and set waypoint %3",servertime,_typeGroup,_posCrash]; +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Waiting for 15 seconds",servertime]; sleep 15; -_typeVehX = if (_sideX == Occupants) then {vehNATOTrucks select 0} else {vehCSATTrucks select 0}; -_vehicleT=[position _road, 0,_typeVehX, _sideX] call bis_fnc_spawnvehicle; +_typeVehX = if (_sideX == Occupants) then {vehNATOCargoTrucks select 1} else {vehCSATTrucks select 0}; +_vehicleT = [position _road, 0,_typeVehX, _sideX] call bis_fnc_spawnvehicle; _vehT = _vehicleT select 0; [_vehT] call A3A_fnc_AIVEHinit; + //[_vehT,"Recover Truck"] spawn A3A_fnc_inmuneConvoy; _vehCrewT = _vehicle select 1; {[_x] call A3A_fnc_NATOinit} forEach _vehCrewT; @@ -125,17 +115,28 @@ _soldiers = _soldiers + _vehCrewT; _groups pushBack _groupVehT; _vehiclesX pushBack _vehT; -_Vwp0 = _groupVehT addWaypoint [_poscrash, 0]; +_Vwp0 = _groupVehT addWaypoint [_posCrash, 0]; _Vwp0 setWaypointType "MOVE"; _Vwp0 setWaypointBehaviour "SAFE"; -waitUntil {sleep 1; (not alive _heli) or (_vehT distance _heli < 50) or (dateToNumber date > _dateLimitNum)}; +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Transport Vehicle: %2, Crew: %3, Waypoint: %4",servertime,_typeVehX,_vehCrewT,_posCrash]; +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Waiting until %2 is destroyed or has been recovered by %3, or mission expires at: %4",servertime,_heli,_vehT,_dateLimitNum]; + +waitUntil +{ + sleep 1; + (not alive _heli) || + {(_vehT distance _heli < 50) || + {(dateToNumber date > _dateLimitNum)}} +}; if (_vehT distance _heli < 50) then { + diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Transport truck has reached the Air Asset, waiting 60 seconds...",servertime]; _vehT doMove position _heli; sleep 60; if (alive _heli) then { + diag_log format ["%1: [Antistasi] | INFO | DES_Heli | %2 has loaded %3 onto %4 and is head back to %5",servertime,_sideX,_heli,_vehT,_positionX]; _heli attachTo [_vehT,[0,-3,2]]; _emitterArray = _smokeX getVariable "effects"; {deleteVehicle _x} forEach _emitterArray; @@ -146,10 +147,10 @@ if (_vehT distance _heli < 50) then _Vwp0 setWaypointType "MOVE"; _Vwp0 setWaypointBehaviour "SAFE"; - _Vwp0 = _groupVeh addWaypoint [_poscrash, 0]; + _Vwp0 = _groupVeh addWaypoint [_posCrash, 0]; _Vwp0 setWaypointType "LOAD"; _Vwp0 setWaypointBehaviour "SAFE"; - _Gwp0 = _groupX addWaypoint [_poscrash, 0]; + _Gwp0 = _groupX addWaypoint [_posCrash, 0]; _Gwp0 setWaypointType "GETIN"; _Vwp0 synchronizeWaypoint [_Gwp0]; @@ -159,16 +160,39 @@ if (_vehT distance _heli < 50) then }; -waitUntil {sleep 1; (not alive _heli) or (_vehT distance _positionX < 100) or (dateToNumber date > _dateLimitNum)}; + _vehT addEventHandler + [ + "GetIn", + { + params ["_vehicle", "_role", "_unit", "_turret"]; + if((side _unit) == teamPlayer) then + { + //Player entered the vehicle, mission won + diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Truck was captured by player, mission completing",servertime]; + ["DES", "SUCCEEDED"] call BIS_fnc_taskSetState + }; + } + ]; + +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Waiting until transport reaches origin, gets destroyed or timer expires",servertime]; +waitUntil +{ + sleep 1; + (not alive _heli) || + {(_vehT distance _positionX < 100) || + {("DES" call BIS_fnc_taskState == "SUCCEEDED") || + {(count (_vehicle getVariable ["SA_Tow_Ropes",[]]) > 0) || + {(dateToNumber date > _dateLimitNum)}}}} +}; _bonus = if (_difficultX) then {2} else {1}; -if (not alive _heli) then +if ((not alive _heli) || {((taskState "DES") == "SUCCEEDED") || {(count (_vehicle getVariable ["SA_Tow_Ropes",[]]) > 0)}}) then { + diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Air Vehicle was destroyed or truck captured, mission completing",servertime]; ["DES",[format ["We have downed air vehicle. It is a good chance to destroy it before it is recovered. Do it before a recovery team from the %1 reaches the place. MOVE QUICKLY",_nameXbase],"Destroy Air",_mrkFinal],_posCrashMrk,"SUCCEEDED","Destroy"] call A3A_fnc_taskUpdate; [0,300*_bonus] remoteExec ["A3A_fnc_resourcesFIA",2]; if (typeOf _heli in vehCSATAir) then {[0,3] remoteExec ["A3A_fnc_prestige",2]} else {[3,0] remoteExec ["A3A_fnc_prestige",2]}; - //[-3,3,_positionX] remoteExec ["A3A_fnc_citySupportChange",2]; [1800*_bonus] remoteExec ["A3A_fnc_timingCA",2]; {if (_x distance _heli < 500) then {[10*_bonus,_x] call A3A_fnc_playerScoreAdd}} forEach (allPlayers - (entities "HeadlessClient_F")); [5*_bonus,theBoss] call A3A_fnc_playerScoreAdd; @@ -176,9 +200,9 @@ if (not alive _heli) then } else { + diag_log format ["%1: [Antistasi] | INFO | DES_Heli | Air Vehicle was successfully recovered, mission completing",servertime]; ["DES",[format ["We have downed air vehicle. It is a good chance to destroy it before it is recovered. Do it before a recovery team from the %1 reaches the place. MOVE QUICKLY",_nameXbase],"Destroy Air",_mrkFinal],_posCrashMrk,"FAILED","Destroy"] call A3A_fnc_taskUpdate; ["DES1",[format ["The rebels managed to shot down a helicopter. A recovery team departing from the %1 is inbound to recover it. Cover them while they perform the whole operation",_nameXbase],"Helicopter Down",_mrkFinal],_posCrash,"SUCCEEDED","Defend"] call A3A_fnc_taskUpdate; - //[3,0,_positionX] remoteExec ["A3A_fnc_citySupportChange",2]; [-600*_bonus] remoteExec ["A3A_fnc_timingCA",2]; [-10*_bonus,theBoss] call A3A_fnc_playerScoreAdd; }; @@ -198,7 +222,4 @@ waitUntil {sleep 1;(!([distanceSPWN,1,_x,teamPlayer] call A3A_fnc_distanceUnits) deleteVehicle _x} forEach _vehiclesX; {deleteVehicle _x} forEach _soldiers; {deleteGroup _x} forEach _groups; - -//sleep (600 + random 1200); - -//_nul = [_tsk,true] call BIS_fnc_deleteTask; +diag_log format ["%1: [Antistasi] | INFO | DES_Heli | HELI MISSION COMPLETE",servertime]; diff --git a/A3-Antistasi/Missions/DES_Vehicle.sqf b/A3-Antistasi/functions/Missions/fn_DES_Vehicle.sqf similarity index 100% rename from A3-Antistasi/Missions/DES_Vehicle.sqf rename to A3-Antistasi/functions/Missions/fn_DES_Vehicle.sqf diff --git a/A3-Antistasi/Missions/LOG_Ammo.sqf b/A3-Antistasi/functions/Missions/fn_LOG_Ammo.sqf similarity index 98% rename from A3-Antistasi/Missions/LOG_Ammo.sqf rename to A3-Antistasi/functions/Missions/fn_LOG_Ammo.sqf index 52d206c5bf..8744c8a9bc 100644 --- a/A3-Antistasi/Missions/LOG_Ammo.sqf +++ b/A3-Antistasi/functions/Missions/fn_LOG_Ammo.sqf @@ -41,7 +41,7 @@ if ((spawner getVariable _markerX != 2) and !(sidesX getVariable [_markerX,sideU _truckX = _typeVehX createVehicle _pos; _truckX setDir (getDir _road); _truckCreated = true; - if (_sideX == Occupants) then {[_truckX] call A3A_fnc_NATOcrate} else {[_truckX] call A3A_fnc_CSATcrate}; + if (_sideX == Occupants) then {[_truckX] spawn A3A_fnc_NATOcrate} else {[_truckX] spawn A3A_fnc_CSATcrate}; _mrk = createMarkerLocal [format ["%1patrolarea", floor random 100], _pos]; _mrk setMarkerShapeLocal "RECTANGLE"; diff --git a/A3-Antistasi/Missions/LOG_Bank.sqf b/A3-Antistasi/functions/Missions/fn_LOG_Bank.sqf similarity index 100% rename from A3-Antistasi/Missions/LOG_Bank.sqf rename to A3-Antistasi/functions/Missions/fn_LOG_Bank.sqf diff --git a/A3-Antistasi/Missions/LOG_Supplies.sqf b/A3-Antistasi/functions/Missions/fn_LOG_Supplies.sqf similarity index 91% rename from A3-Antistasi/Missions/LOG_Supplies.sqf rename to A3-Antistasi/functions/Missions/fn_LOG_Supplies.sqf index 7610eedd3d..1bfbab8e90 100644 --- a/A3-Antistasi/Missions/LOG_Supplies.sqf +++ b/A3-Antistasi/functions/Missions/fn_LOG_Supplies.sqf @@ -1,6 +1,6 @@ //Mission: Logistic supplies if (!isServer and hasInterface) exitWith{}; -private ["_markerX","_difficultX","_leave","_contactX","_groupContact","_tsk","_posHQ","_citiesX","_city","_radiusX","_positionX","_posHouse","_nameDest","_timeLimit","_dateLimit","_dateLimitNum","_pos","_truckX","_countX"]; +private ["_markerX","_difficultX","_leave","_contactX","_groupContact","_tsk","_posHQ","_citiesX","_city","_radiusX","_positionX","_posHouse","_nameDest","_timeLimit","_dateLimit","_dateLimitNum","_pos","_truckX","_countX", "_holdTime"]; _markerX = _this select 0; @@ -19,7 +19,8 @@ _dateLimit = numberToDate [date select 0, _dateLimitNum];//converts datenumber b _displayTime = [_dateLimit] call A3A_fnc_dateToTimeString;//Converts the time portion of the date array to a string for clarity in hints _nameDest = [_markerX] call A3A_fnc_localizar; -_taskDescription = format ["%1 population is in need of supplies. We may improve our relationship with that city if we are the ones who provide them. I reserved a transport truck with supplies near our HQ. Drive the transport truck to %1 city center. Hold it there for 2 minutes and it's done. Do this before %2.",_nameDest,_displayTime]; +_holdTime = if(_difficultX) then {4} else {2}; +_taskDescription = format ["%1 population is in need of supplies. We may improve our relationship with that city if we are the ones who provide them. I have placed a crate with supplies near our HQ. Deliver the crate to %1 city center, hold it there for %3 minutes and it's done. Do this before %2.",_nameDest,_displayTime, _holdTime]; [[teamPlayer,civilian],"LOG",[_taskDescription,"City Supplies",_markerX],_positionX,false,0,true,"Heal",true] call BIS_fnc_taskCreate; missionsX pushBack ["LOG","CREATED"]; publicVariable "missionsX"; @@ -86,7 +87,7 @@ else if (_countX > 0) then { _countX = 120*_bonus;//120 - if (((_truckX distance _positionX > 40) or (not([80,1,_truckX,teamPlayer] call A3A_fnc_distanceUnits)) or ({(side _x == Occupants) and (_x distance _truckX < 50)} count allUnits != 0)) and (alive _truckX)) then {{[petros,"hint","Don't get the truck far from the city center, and stay close to it, and clean all BLUFOR presence in the surroundings or count will restart"] remoteExec ["A3A_fnc_commsMP",_x]} forEach ([100,0,_truckX,teamPlayer] call A3A_fnc_distanceUnits)}; + if (((_truckX distance _positionX > 40) or (not([80,1,_truckX,teamPlayer] call A3A_fnc_distanceUnits)) or ({(side _x == Occupants) and (_x distance _truckX < 50)} count allUnits != 0)) and (alive _truckX)) then {{[petros,"hint","Stay close to the crate, and clean all BLUFOR presence in the surroundings or count will restart"] remoteExec ["A3A_fnc_commsMP",_x]} forEach ([100,0,_truckX,teamPlayer] call A3A_fnc_distanceUnits)}; waitUntil {sleep 1; ((_truckX distance _positionX < 40) and ([80,1,_truckX,teamPlayer] call A3A_fnc_distanceUnits) and ({(side _x == Occupants) and (_x distance _truckX < 50)} count allUnits == 0)) or (dateToNumber date > _dateLimitNum) or (isNull _truckX)}; }; if (_countX < 1) exitWith {}; diff --git a/A3-Antistasi/Missions/REP_Antenna.sqf b/A3-Antistasi/functions/Missions/fn_REP_Antenna.sqf similarity index 58% rename from A3-Antistasi/Missions/REP_Antenna.sqf rename to A3-Antistasi/functions/Missions/fn_REP_Antenna.sqf index 2fdc70cdcf..27d4051031 100644 --- a/A3-Antistasi/Missions/REP_Antenna.sqf +++ b/A3-Antistasi/functions/Missions/fn_REP_Antenna.sqf @@ -1,10 +1,10 @@ //Mission: Repair the antenna if (!isServer and hasInterface) exitWith{}; -private ["_markerX","_positionX","_dateLimit","_dateLimitNum","_nameDest","_truckCreated","_size","_pos","_veh","_groupX","_unit"]; +private ["_markerX","_antennaDead","_dateLimit","_dateLimitNum","_nameDest","_truckCreated","_size","_pos","_veh","_groupX","_unit"]; _markerX = _this select 0; -_positionX = _this select 1; +_antennaDead = _this select 1; _timeLimit = 60; _dateLimit = [date select 0, date select 1, date select 2, date select 3, (date select 4) + _timeLimit]; @@ -14,7 +14,17 @@ _displayTime = [_dateLimit] call A3A_fnc_dateToTimeString;//Converts the time po _nameDest = [_markerX] call A3A_fnc_localizar; -[[teamPlayer,civilian],"REP",[format ["%3 is rebuilding a radio tower in %1. If we want to keep up the enemy comms breakdown, the work must be stopped. Destroy the repair truck parked nearby or capture the zone. Work will be finished on %2.",_nameDest,_displayTime,nameOccupants],"Tower Rebuild Disrupt",_markerX],_positionX,false,0,true,"Destroy",true] call BIS_fnc_taskCreate; +[ + [teamPlayer, civilian], + "REP", + [ + format ["%3 is rebuilding a radio tower in %1. If we want to keep up the enemy comms breakdown, the work must be stopped. Destroy the repair truck parked nearby or capture the zone. Work will be finished on %2.",_nameDest,_displayTime,nameOccupants], + "Tower Rebuild Disrupt", + _markerX + ], + getPos _antennaDead, + false, 0, true, "Destroy", true +] call BIS_fnc_taskCreate; missionsX pushBack ["REP","CREATED"]; publicVariable "missionsX"; _truckCreated = false; @@ -24,7 +34,7 @@ if (spawner getVariable _markerX != 2) then { _truckCreated = true; _size = [_markerX] call A3A_fnc_sizeMarker; - _road = [_positionX] call A3A_fnc_findNearestGoodRoad; + _road = [getPos _antennaDead] call A3A_fnc_findNearestGoodRoad; _pos = position _road; _pos = _pos findEmptyPosition [1,60,"B_T_Truck_01_repair_F"]; _veh = createVehicle [vehNATORepairTruck, _pos, [], 0, "NONE"]; @@ -47,7 +57,15 @@ if (spawner getVariable _markerX != 2) then if (not alive _veh) then { - ["REP",[format ["%3 is rebuilding a radio tower in %1. If we want to keep up the enemy comms breakdown, the work must be stopped. Destroy the repair truck parked nearby or capture the zone. Work will be finished on %2.",_nameDest,_displayTime,nameOccupants],"Tower Rebuild Disrupt",_markerX],_positionX,"SUCCEEDED","Destroy"] call A3A_fnc_taskUpdate; + [ + "REP", + [ + format ["%3 is rebuilding a radio tower in %1. If we want to keep up the enemy comms breakdown, the work must be stopped. Destroy the repair truck parked nearby or capture the zone. Work will be finished on %2.", _nameDest, _displayTime, nameOccupants], + "Tower Rebuild Disrupt", + _markerX + ], + getPos _antennaDead, "SUCCEEDED", "Destroy" + ] call A3A_fnc_taskUpdate; [2,0] remoteExec ["A3A_fnc_prestige",2]; [1200] remoteExec ["A3A_fnc_timingCA",2]; {if (_x distance _veh < 500) then {[10,_x] call A3A_fnc_playerScoreAdd}} forEach (allPlayers - (entities "HeadlessClient_F")); @@ -58,7 +76,15 @@ if (dateToNumber date > _dateLimitNum) then { if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) then { - ["REP",[format ["%3 is rebuilding a radio tower in %1. If we want to keep up the enemy comms breakdown, the work must be stopped. Destroy the repair truck parked nearby or capture the zone. Work will be finished on %2:%3.",_nameDest,_displayTime,nameOccupants],"Tower Rebuild Disrupt",_markerX],_positionX,"SUCCEEDED","Destroy"] call A3A_fnc_taskUpdate; + [ + "REP", + [ + format ["%3 is rebuilding a radio tower in %1. If we want to keep up the enemy comms breakdown, the work must be stopped. Destroy the repair truck parked nearby or capture the zone. Work will be finished on %2:%3.",_nameDest,_displayTime,nameOccupants], + "Tower Rebuild Disrupt", + _markerX + ], + getPos _antennaDead, "SUCCEEDED", "Destroy" + ] call A3A_fnc_taskUpdate; [2,0] remoteExec ["A3A_fnc_prestige",2]; [1200] remoteExec ["A3A_fnc_timingCA",2]; {if (_x distance _veh < 500) then {[10,_x] call A3A_fnc_playerScoreAdd}} forEach (allPlayers - (entities "HeadlessClient_F")); @@ -66,30 +92,38 @@ if (dateToNumber date > _dateLimitNum) then } else { - ["REP",[format ["%3 is rebuilding a radio tower in %1. If we want to keep up the enemy comms breakdown, the work must be stopped. Destroy the repair truck parked nearby or capture the zone. Work will be finished on %2.",_nameDest,_displayTime,nameOccupants],"Tower Rebuild Disrupt",_markerX],_positionX,"FAILED","Destroy"] call A3A_fnc_taskUpdate; + [ + "REP", + [ + format ["%3 is rebuilding a radio tower in %1. If we want to keep up the enemy comms breakdown, the work must be stopped. Destroy the repair truck parked nearby or capture the zone. Work will be finished on %2.",_nameDest,_displayTime,nameOccupants], + "Tower Rebuild Disrupt", + _markerX + ], + getPos _antennaDead, "FAILED", "Destroy" + ] call A3A_fnc_taskUpdate; //[5,0,_positionX] remoteExec ["A3A_fnc_citySupportChange",2]; [-600] remoteExec ["A3A_fnc_timingCA",2]; [-10,theBoss] call A3A_fnc_playerScoreAdd; }; - antennasDead = antennasDead - [_positionX]; publicVariable "antennasDead"; - _antenna = nearestObject [_positionX, "Ruins"]; - diag_log format ["%1: [Antistasi] | DEBUG | Repairing Antenna %2.",servertime, typeOf _antenna]; - [_antenna] call A3A_fnc_repairRuinedBuilding; - antennas pushBack _antenna; publicVariable "antennas"; - {if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,true] spawn A3A_fnc_blackout}} forEach citiesX; - _mrkFinal = createMarker [format ["Ant%1", count antennas], _positionX]; + antennasDead = antennasDead - [_antennaDead]; publicVariable "antennasDead"; + diag_log format ["%1: [Antistasi] | DEBUG | Repairing Antenna %2.",servertime, typeOf _antennaDead]; + [_antennaDead] call A3A_fnc_repairRuinedBuilding; + antennas pushBack _antennaDead; publicVariable "antennas"; + {if ([antennas,_x] call BIS_fnc_nearestPosition == _antennaDead) then {[_x,true] spawn A3A_fnc_blackout}} forEach citiesX; + _mrkFinal = createMarker [format ["Ant%1", mapGridPosition _antennaDead], getPos _antennaDead]; _mrkFinal setMarkerShape "ICON"; _mrkFinal setMarkerType "loc_Transmitter"; _mrkFinal setMarkerColor "ColorBlack"; _mrkFinal setMarkerText "Radio Tower"; mrkAntennas pushBack _mrkFinal; publicVariable "mrkAntennas"; - _antenna addEventHandler ["Killed", + _antennaDead addEventHandler ["Killed", { _antenna = _this select 0; + _antenna removeAllEventHandlers "Killed"; {if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,false] spawn A3A_fnc_blackout}} forEach citiesX; _mrk = [mrkAntennas, _antenna] call BIS_fnc_nearestPosition; - antennas = antennas - [_antenna]; antennasDead = antennasDead + [getPos _antenna]; deleteMarker _mrk; + antennas = antennas - [_antenna]; antennasDead = antennasDead + [_antenna]; deleteMarker _mrk; ["TaskSucceeded",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; ["TaskFailed",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",Occupants]; publicVariable "antennas"; publicVariable "antennasDead"; diff --git a/A3-Antistasi/Missions/RES_Prisoners.sqf b/A3-Antistasi/functions/Missions/fn_RES_Prisoners.sqf similarity index 99% rename from A3-Antistasi/Missions/RES_Prisoners.sqf rename to A3-Antistasi/functions/Missions/fn_RES_Prisoners.sqf index 33f49d1ab8..db9485f328 100644 --- a/A3-Antistasi/Missions/RES_Prisoners.sqf +++ b/A3-Antistasi/functions/Missions/fn_RES_Prisoners.sqf @@ -44,7 +44,7 @@ for "_i" from 0 to (count _houses) - 1 do if (count _potentials > 0) then { - _houseX = _potentials call BIS_Fnc_selectRandom; + _houseX = selectRandom _potentials; _posHouse = [_houseX] call BIS_fnc_buildingPositions; _countX = (count _posHouse) - 1; if (_countX > 10) then {_countX = 10}; diff --git a/A3-Antistasi/Missions/RES_Refugees.sqf b/A3-Antistasi/functions/Missions/fn_RES_Refugees.sqf old mode 100755 new mode 100644 similarity index 100% rename from A3-Antistasi/Missions/RES_Refugees.sqf rename to A3-Antistasi/functions/Missions/fn_RES_Refugees.sqf diff --git a/A3-Antistasi/Missions/attackHQ.sqf b/A3-Antistasi/functions/Missions/fn_attackHQ.sqf similarity index 100% rename from A3-Antistasi/Missions/attackHQ.sqf rename to A3-Antistasi/functions/Missions/fn_attackHQ.sqf diff --git a/A3-Antistasi/Missions/CONVOY.sqf b/A3-Antistasi/functions/Missions/fn_convoy.sqf similarity index 95% rename from A3-Antistasi/Missions/CONVOY.sqf rename to A3-Antistasi/functions/Missions/fn_convoy.sqf index 45a6fd8f8a..0d66b527de 100644 --- a/A3-Antistasi/Missions/CONVOY.sqf +++ b/A3-Antistasi/functions/Missions/fn_convoy.sqf @@ -63,6 +63,7 @@ else _typeConvoyX = selectRandom _typeConvoy; _timeLimit = if (_difficultX) then {0} else {round random 10};// timeX for the convoy to come out, we should put a random round 15 +_timeLimit = 0; _dateLimit = [date select 0, date select 1, date select 2, date select 3, (date select 4) + _timeLimit]; _dateLimitNum = dateToNumber _dateLimit; _dateLimit = numberToDate [date select 0, _dateLimitNum];//converts datenumber back to date array so that time formats correctly when put through the function @@ -71,6 +72,7 @@ _displayTime = [_dateLimit] call A3A_fnc_dateToTimeString;//Converts the time po _nameDest = [_destinationX] call A3A_fnc_localizar; _nameOrigin = [_base] call A3A_fnc_localizar; [_base,30] call A3A_fnc_addTimeForIdle; + _textX = ""; _taskState = "CREATED"; _taskTitle = ""; @@ -128,91 +130,91 @@ switch (_typeConvoyX) do missionsX pushBack ["CONVOY","CREATED"]; publicVariable "missionsX"; sleep (_timeLimit * 60); +private _speedLimit = 40; + _posOrig = []; _dir = 0; if (_base in airportsX) then - { +{ _indexX = airportsX find _base; - _spawnPoint = spawnPoints select _indexX; + _spawnPoint = server getVariable (format ["spawn_%1", _base]); _posOrig = getMarkerPos _spawnPoint; _dir = markerDir _spawnPoint; - } +} else - { +{ _spawnPoint = [getMarkerPos _base] call A3A_fnc_findNearestGoodRoad; _posOrig = position _spawnPoint; _dir = getDir _spawnPoint; - }; +}; + _groupX = createGroup _sideX; _groups pushBack _groupX; _typeVehX = if (_sideX == Occupants) then {if (!_isFIA) then {selectRandom vehNATOLightArmed} else {vehPoliceCar}} else {selectRandom vehCSATLightArmed}; _timeOut = 0; _pos = _posOrig findEmptyPosition [0,100,_typeVehX]; while {_timeOut < 60} do - { +{ if (count _pos > 0) exitWith {}; _timeOut = _timeOut + 1; _pos = _posOrig findEmptyPosition [0,100,_typeVehX]; sleep 1; - }; +}; if (count _pos == 0) then {_pos = _posOrig}; + _vehicle=[_pos,_dir,_typeVehX, _groupX] call bis_fnc_spawnvehicle; _vehLead = _vehicle select 0; _vehLead allowDamage false; [_vehLead,"Convoy Lead"] spawn A3A_fnc_inmuneConvoy; -//_vehLead forceFollowRoad true; _vehCrew = _vehicle select 1; {[_x] call A3A_fnc_NATOinit;_x allowDamage false} forEach _vehCrew; -//_groupVeh = _vehicle select 2; -_soldiers = _soldiers + _vehCrew; -//_groups pushBack _groupVeh; +_soldiers append _vehCrew; _vehiclesX pushBack _vehLead; [_vehLead] call A3A_fnc_AIVEHinit; - -_vehLead limitSpeed 50; - +_vehLead limitSpeed _speedLimit; _countX = 1; if (_difficultX) then {_countX =3} else {if ([_destinationX] call A3A_fnc_isFrontline) then {_countX = (round random 2) + 1}}; _vehPool = if (_sideX == Occupants) then {if (!_isFIA) then {vehNATOAttack} else {[vehFIAArmedCar,vehFIATruck,vehFIACar]}} else {vehCSATAttack}; if (!_isFIA) then - { +{ _rnd = random 100; if (_sideX == Occupants) then - { + { if (_rnd > prestigeNATO) then - { + { _vehPool = _vehPool - [vehNATOTank]; - }; - } + }; + } else - { + { if (_rnd > prestigeCSAT) then - { + { _vehPool = _vehPool - [vehCSATTank]; - }; }; - if (count _vehPool == 0) then {if (_sideX == Occupants) then {_vehPool = vehNATOTrucks} else {_vehPool = vehCSATTrucks}}; }; + if (count _vehPool == 0) then {if (_sideX == Occupants) then {_vehPool = vehNATOTrucks} else {_vehPool = vehCSATTrucks}}; +}; + for "_i" from 1 to _countX do - { +{ sleep 2; _typeVehEsc = selectRandom _vehPool; if (not([_typeVehEsc] call A3A_fnc_vehAvailable)) then - { - _typeVehX = if (_sideX == Occupants) then {selectRandom vehNATOTrucks} else {selectRandom vehCSATTrucks}; - _vehPool = _vehPool - [_typeVehX]; + { + _vehPool = _vehPool - [_typeVehEsc]; + _typeVehEsc = if (_sideX == Occupants) then {selectRandom vehNATOTrucks} else {selectRandom vehCSATTrucks}; if (count _vehPool == 0) then {if (_sideX == Occupants) then {_vehPool = vehNATOTrucks} else {_vehPool = vehCSATTrucks}}; - }; + }; _timeOut = 0; - _pos = _posOrig findEmptyPosition [10,100,_typeVehX]; + _pos = _posOrig findEmptyPosition [10,100,_typeVehEsc]; while {_timeOut < 60} do - { + { if (count _pos > 0) exitWith {}; _timeOut = _timeOut + 1; - _pos = _posOrig findEmptyPosition [10,100,_typeVehX]; + _pos = _posOrig findEmptyPosition [10,100,_typeVehEsc]; sleep 1; - }; + }; if (count _pos == 0) then {_pos = _posOrig}; _vehicle=[_pos, _dir,_typeVehEsc, _groupX] call bis_fnc_spawnvehicle; _veh = _vehicle select 0; @@ -225,66 +227,63 @@ for "_i" from 1 to _countX do [_veh] call A3A_fnc_AIVEHinit; if (_i == 1) then {_veh setConvoySeparation 60} else {_veh setConvoySeparation 20}; if (!_isFIA) then - { + { if (not(_typeVehEsc in vehTanks)) then - { + { _typeGroup = [_typeVehEsc,_sideX] call A3A_fnc_cargoSeats; _groupEsc = [_posbase,_sideX, _typeGroup] call A3A_fnc_spawnGroup; {[_x] call A3A_fnc_NATOinit;_x assignAsCargo _veh;_x moveInCargo _veh; _soldiers pushBack _x;[_x] joinSilent _groupX} forEach units _groupEsc; deleteGroup _groupEsc; - }; - } + }; + } else - { + { if (not(_typeVehEsc == vehFIAArmedCar)) then - { + { _typeGroup = selectRandom groupsFIASquad; if (_typeVehEsc == vehFIACar) then - { + { _typeGroup = selectRandom groupsFIAMid; - }; + }; _groupEsc = [_posbase,_sideX, _typeGroup] call A3A_fnc_spawnGroup; {[_x] call A3A_fnc_NATOinit;_x assignAsCargo _veh;_x moveInCargo _veh; _soldiers pushBack _x;[_x] joinSilent _groupX} forEach units _groupEsc; deleteGroup _groupEsc; - }; }; }; +}; + +//Objective creation starts here ---------------------------------------------- sleep 2; _timeOut = 0; _pos = _posOrig findEmptyPosition [10,100,_typeVehX]; while {_timeOut < 60} do - { +{ if (count _pos > 0) exitWith {}; _timeOut = _timeOut + 1; _pos = _posOrig findEmptyPosition [10,100,_typeVehX]; sleep 1; - }; +}; if (count _pos == 0) then {_pos = _posOrig}; -//_groupX = createGroup _sideX; -//_groups pushBack _groupX; + _vehicle=[_pos, _dir,_typeVehObj, _groupX] call bis_fnc_spawnvehicle; _vehObj = _vehicle select 0; _vehObj allowDamage false; if (_difficultX) then {[_vehObj," Convoy Objective"] spawn A3A_fnc_inmuneConvoy} else {[_vehObj,"Convoy Objective"] spawn A3A_fnc_inmuneConvoy}; _vehCrew = _vehicle select 1; {[_x] call A3A_fnc_NATOinit; _x allowDamage false} forEach _vehCrew; -//_groupVeh = _vehicle select 2; _soldiers = _soldiers + _vehCrew; -//_groups pushBack _groupVeh; _vehiclesX pushBack _vehObj; [_vehObj] call A3A_fnc_AIVEHinit; -//_vehObj forceFollowRoad true; -_vehObj setConvoySeparation 50; if (_typeConvoyX == "Armor") then {_vehObj lock 3};// else {_vehObj forceFollowRoad true}; if (_typeConvoyX == "Prisoners") then - { +{ _grpPOW = createGroup teamPlayer; _groups pushBack _grpPOW; for "_i" from 1 to (1+ round (random 11)) do - { + { _unit = _grpPOW createUnit [SDKUnarmed, _posbase, [], 0, "NONE"]; [_unit,true] remoteExec ["setCaptive",0,_unit]; _unit setCaptive true; @@ -298,104 +297,121 @@ if (_typeConvoyX == "Prisoners") then [_unit,"refugee"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_unit]; _POWS pushBack _unit; [_unit] call A3A_fnc_reDress; - }; }; +}; if (_typeConvoyX == "reinforcementsX") then - { +{ _typeGroup = [_typeVehObj,_sideX] call A3A_fnc_cargoSeats; _groupEsc = [_posbase,_sideX,_typeGroup] call A3A_fnc_spawnGroup; {[_x] call A3A_fnc_NATOinit;_x assignAsCargo _veh;_x moveInCargo _veh; _soldiers pushBack _x;[_x] joinSilent _groupX;_reinforcementsX pushBack _x} forEach units _groupEsc; deleteGroup _groupEsc; - }; +}; if ((_typeConvoyX == "Money") or (_typeConvoyX == "Supplies")) then - { +{ reportedVehs pushBack _vehObj; publicVariable "reportedVehs"; _vehObj addEventHandler ["HandleDamage",{if (((_this select 1) find "wheel" != -1) and ((_this select 4=="") or (side (_this select 3) != teamPlayer)) and (!isPlayer driver (_this select 0))) then {0} else {(_this select 2)}}]; - }; +}; sleep 2; _typeVehEsc = selectRandom _vehPool; if (not([_typeVehEsc] call A3A_fnc_vehAvailable)) then - { +{ _typeVehX = if (_sideX == Occupants) then {selectRandom vehNATOTrucks} else {selectRandom vehCSATTrucks}; _vehPool = _vehPool - [_typeVehX]; if (count _vehPool == 0) then {if (_sideX == Occupants) then {_vehPool = vehNATOTrucks} else {_vehPool = vehCSATTrucks}}; - }; +}; _timeOut = 0; _pos = _posOrig findEmptyPosition [10,100,_typeVehX]; while {_timeOut < 60} do - { +{ if (count _pos > 0) exitWith {}; _timeOut = _timeOut + 1; _pos = _posOrig findEmptyPosition [10,100,_typeVehX]; sleep 1; - }; +}; if (count _pos == 0) then {_pos = _posOrig}; -//_groupX = createGroup _sideX; -//_groups pushBack _groupX; + _vehicle=[_pos,_dir,_typeVehEsc, _groupX] call bis_fnc_spawnvehicle; _veh = _vehicle select 0; _veh allowDamage false; [_veh,"Convoy Escort"] spawn A3A_fnc_inmuneConvoy; _vehCrew = _vehicle select 1; {[_x] call A3A_fnc_NATOinit; _x allowDamage false} forEach _vehCrew; +[_veh] call A3A_fnc_AIVEHinit; _soldiers = _soldiers + _vehCrew; _vehiclesX pushBack _veh; -[_veh] call A3A_fnc_AIVEHinit; -//_veh forceFollowRoad true; -_veh setConvoySeparation 20; -//_veh limitSpeed 50; + if (!_isFIA) then - { +{ if (not(_typeVehEsc in vehTanks)) then - { + { _typeGroup = [_typeVehEsc,_sideX] call A3A_fnc_cargoSeats; _groupEsc = [_posbase,_sideX, _typeGroup] call A3A_fnc_spawnGroup; {[_x] call A3A_fnc_NATOinit;_x assignAsCargo _veh;_x moveInCargo _veh; _soldiers pushBack _x;[_x] joinSilent _groupX} forEach units _groupEsc; deleteGroup _groupEsc; - }; - } + }; +} else - { +{ if (not(_typeVehEsc == vehFIAArmedCar)) then - { + { _typeGroup = selectRandom groupsFIASquad; if (_typeVehEsc == vehFIACar) then - { + { _typeGroup = selectRandom groupsFIAMid; - }; + }; _groupEsc = [_posbase,_sideX,_typeGroup] call A3A_fnc_spawnGroup; {[_x] call A3A_fnc_NATOinit;_x assignAsCargo _veh;_x moveInCargo _veh; _soldiers pushBack _x;[_x] joinSilent _groupX} forEach units _groupEsc; deleteGroup _groupEsc; - }; }; +}; [_vehiclesX,_soldiers] spawn - { +{ sleep 30; {_x allowDamage true} forEach (_this select 0); {_x allowDamage true; if (vehicle _x == _x) then {deleteVehicle _x}} forEach (_this select 1); - }; +}; + +private _route = [getPos _vehLead, _posDestination] call A3A_fnc_findPath; +if (_route isEqualTo []) then { + _route = [getPos _vehLead, _posDestination] +} else { + _route pushBack _posDestination; +}; + +/* //{_x disableAI "AUTOCOMBAT"} forEach _soldiers; _wp0 = _groupX addWaypoint [(position _vehLead),0]; //_wp0 = (waypoints _groupX) select 0; _wp0 setWaypointType "MOVE"; _wp0 setWaypointFormation "COLUMN"; _wp0 setWaypointBehaviour "SAFE"; -[_base,_posDestination,_groupX] call WPCreate; +[_base,_posDestination,_groupX] call A3A_fnc_WPCreate; _wp0 = _groupX addWaypoint [_posDestination, count waypoints _groupX]; _wp0 setWaypointType "MOVE"; +*/ + +{ + _x limitSpeed _speedLimit; + private _newPos = (_route select 0) findEmptyPosition [0, 40, typeOf _x]; + if !(_newPos isEqualTo []) then { + _x setPos _newPos; + }; + [_x, _route] execFSM "FSMs\DriveAlongPath.fsm"; +} forEach _vehiclesX; + _bonus = if (_difficultX) then {2} else {1}; private _distanceFromTargetForArrival = 200; if (_typeConvoyX == "ammunition") then - { +{ waitUntil {sleep 1; (dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < _distanceFromTargetForArrival) or (not alive _vehObj) or ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj) == teamPlayer))}; if ((_vehObj distance _posDestination < _distanceFromTargetForArrival) or (dateToNumber date >_enddateNum)) then - { + { _taskState = "FAILED"; _taskState1 = "SUCCEEDED"; [-1200*_bonus] remoteExec ["A3A_fnc_timingCA",2]; @@ -404,9 +420,9 @@ if (_typeConvoyX == "ammunition") then clearWeaponCargoGlobal _vehObj; clearItemCargoGlobal _vehObj; clearBackpackCargoGlobal _vehObj; - } + } else - { + { _taskState = "SUCCEEDED"; _taskState1 = "FAILED"; [0,300*_bonus] remoteExec ["A3A_fnc_resourcesFIA",2]; @@ -416,27 +432,27 @@ if (_typeConvoyX == "ammunition") then [getPosASL _vehObj,_sideX,"",false] spawn A3A_fnc_patrolCA; if (_sideX == Occupants) then {[3,0] remoteExec ["A3A_fnc_prestige",2]} else {[0,3] remoteExec ["A3A_fnc_prestige",2]}; if (!alive _vehObj) then - { + { _killZones = killZones getVariable [_base,[]]; _killZones = _killZones + [_destinationX,_destinationX]; killZones setVariable [_base,_killZones,true]; - }; }; }; +}; if (_typeConvoyX == "Armor") then - { +{ waitUntil {sleep 1; (dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < _distanceFromTargetForArrival) or (not alive _vehObj) or ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj) == teamPlayer))}; if ((_vehObj distance _posDestination < _distanceFromTargetForArrival) or (dateToNumber date > _enddateNum)) then - { + { _taskState = "FAILED"; _taskState1 = "SUCCEEDED"; server setVariable [_destinationX,dateToNumber date,true]; [-1200*_bonus] remoteExec ["A3A_fnc_timingCA",2]; [-10*_bonus,theBoss] call A3A_fnc_playerScoreAdd; - } + } else - { + { _taskState = "SUCCEEDED"; _taskState1 = "FAILED"; [5,0] remoteExec ["A3A_fnc_prestige",2]; @@ -447,33 +463,33 @@ if (_typeConvoyX == "Armor") then [getPosASL _vehObj,_sideX,"",false] spawn A3A_fnc_patrolCA; if (_sideX == Occupants) then {[3,0] remoteExec ["A3A_fnc_prestige",2]} else {[0,3] remoteExec ["A3A_fnc_prestige",2]}; if (!alive _vehObj) then - { + { _killZones = killZones getVariable [_base,[]]; _killZones = _killZones + [_destinationX,_destinationX]; killZones setVariable [_base,_killZones,true]; - }; }; }; +}; if (_typeConvoyX == "Prisoners") then - { +{ waitUntil {sleep 1; (dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < _distanceFromTargetForArrival) or (not alive driver _vehObj) or ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj == teamPlayer))) or ({alive _x} count _POWs == 0)}; if ((_vehObj distance _posDestination < _distanceFromTargetForArrival) or ({alive _x} count _POWs == 0) or (dateToNumber date > _enddateNum)) then - { + { _taskState = "FAILED"; _taskState1 = "SUCCEEDED"; {[_x,false] remoteExec ["setCaptive",0,_x]; _x setCaptive false} forEach _POWs; //_countX = 2 * (count _POWs); //[_countX,0] remoteExec ["A3A_fnc_prestige",2]; [-10*_bonus,theBoss] call A3A_fnc_playerScoreAdd; - }; + }; if ((not alive driver _vehObj) or ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj) == teamPlayer))) then - { + { [getPosASL _vehObj,_sideX,"",false] spawn A3A_fnc_patrolCA; {[_x,false] remoteExec ["setCaptive",0,_x]; _x setCaptive false; _x enableAI "MOVE"; [_x] orderGetin false} forEach _POWs; waitUntil {sleep 2; ({alive _x} count _POWs == 0) or ({(alive _x) and (_x distance _posHQ < 50)} count _POWs > 0) or (dateToNumber date > _enddateNum)}; if (({alive _x} count _POWs == 0) or (dateToNumber date > _enddateNum)) then - { + { _taskState = "FAILED"; _taskState1 = "FAILED"; _countX = 2 * (count _POWs); @@ -482,9 +498,9 @@ if (_typeConvoyX == "Prisoners") then _killZones = killZones getVariable [_base,[]]; _killZones = _killZones + [_destinationX,_destinationX]; killZones setVariable [_base,_killZones,true]; - } + } else - { + { _taskState = "SUCCEEDED"; _taskState1 = "FAILED"; _countX = {(alive _x) and (_x distance _posHQ < 150)} count _POWs; @@ -496,15 +512,15 @@ if (_typeConvoyX == "Prisoners") then {[_x] join _grppow; [_x] orderGetin false} forEach _POWs; {[_countX,_x] call A3A_fnc_playerScoreAdd} forEach (allPlayers - (entities "HeadlessClient_F")); [(round (_countX/2))*_bonus,theBoss] call A3A_fnc_playerScoreAdd; - }; }; }; +}; if (_typeConvoyX == "reinforcementsX") then - { +{ waitUntil {sleep 1; (dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < _distanceFromTargetForArrival) or ({(!alive _x) or (captive _x)} count _reinforcementsX == count _reinforcementsX)}; if ({(!alive _x) or (captive _x)} count _reinforcementsX == count _reinforcementsX) then - { + { _taskState = "SUCCEEDED"; _taskState1 = "FAILED"; [0,10*_bonus,_posbase] remoteExec ["A3A_fnc_citySupportChange",2]; @@ -514,57 +530,57 @@ if (_typeConvoyX == "reinforcementsX") then _killZones = killZones getVariable [_base,[]]; _killZones = _killZones + [_destinationX,_destinationX]; killZones setVariable [_base,_killZones,true]; - } + } else - { + { _taskState = "FAILED"; _countX = {alive _x} count _reinforcementsX; if (_countX > 8) then {_taskState1 = "SUCCEEDED"} else {_taskState = "FAILED"}; [-10*_bonus,theBoss] call A3A_fnc_playerScoreAdd; if (sidesX getVariable [_destinationX,sideUnknown] != teamPlayer) then - { + { _typesX = []; {_typesX pushBack (typeOf _x)} forEach (_reinforcementsX select {alive _x}); [_soldiers,_sideX,_destinationX,0] remoteExec ["A3A_fnc_garrisonUpdate",2]; - }; - if (_sideX == Occupants) then {[(-1*(0.25*_countX)),0] remoteExec ["A3A_fnc_prestige",2]} else {[0,(-1*(0.25*_countX))] remoteExec ["A3A_fnc_prestige",2]}; }; + if (_sideX == Occupants) then {[(-1*(0.25*_countX)),0] remoteExec ["A3A_fnc_prestige",2]} else {[0,(-1*(0.25*_countX))] remoteExec ["A3A_fnc_prestige",2]}; }; +}; if (_typeConvoyX == "Money") then - { +{ waitUntil {sleep 1; (dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < _distanceFromTargetForArrival) or (not alive _vehObj) or ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj) == teamPlayer))}; if ((dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < _distanceFromTargetForArrival) or (not alive _vehObj)) then - { + { _taskState = "FAILED"; if ((dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < _distanceFromTargetForArrival)) then - { + { [-1200*_bonus] remoteExec ["A3A_fnc_timingCA",2]; [-10*_bonus,theBoss] call A3A_fnc_playerScoreAdd; _taskState1 = "SUCCEEDED"; - } + } else - { + { [getPosASL _vehObj,_sideX,"",false] spawn A3A_fnc_patrolCA; [1200*_bonus] remoteExec ["A3A_fnc_timingCA",2]; _taskState1 = "FAILED"; _killZones = killZones getVariable [_base,[]]; _killZones = _killZones + [_destinationX,_destinationX]; killZones setVariable [_base,_killZones,true]; - }; }; + }; if ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj) == teamPlayer)) then - { + { [getPosASL _vehObj,_sideX,"",false] spawn A3A_fnc_patrolCA; waitUntil {sleep 2; (_vehObj distance _posHQ < 50) or (not alive _vehObj) or (dateToNumber date > _enddateNum)}; if ((not alive _vehObj) or (dateToNumber date > _enddateNum)) then - { + { _taskState = "FAILED"; _taskState1 = "FAILED"; [1200*_bonus] remoteExec ["A3A_fnc_timingCA",2]; - }; + }; if (_vehObj distance _posHQ < 50) then - { + { _taskState = "SUCCEEDED"; _taskState1 = "FAILED"; [10*_bonus,-20*_bonus,_posDestination] remoteExec ["A3A_fnc_citySupportChange",2]; @@ -576,17 +592,17 @@ if (_typeConvoyX == "Money") then waitUntil {sleep 1; speed _vehObj < 1}; [_vehObj] call A3A_fnc_empty; deleteVehicle _vehObj; - }; }; + }; reportedVehs = reportedVehs - [_vehObj]; publicVariable "reportedVehs"; - }; +}; if (_typeConvoyX == "Supplies") then - { +{ waitUntil {sleep 1; (dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < _distanceFromTargetForArrival) or (not alive _vehObj) or ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj) == teamPlayer))}; if (not alive _vehObj) then - { + { [getPosASL _vehObj,_sideX,"",false] spawn A3A_fnc_patrolCA; _taskState = "FAILED"; _taskState1 = "FAILED"; @@ -595,42 +611,42 @@ if (_typeConvoyX == "Supplies") then _killZones = killZones getVariable [_base,[]]; _killZones = _killZones + [_destinationX,_destinationX]; killZones setVariable [_base,_killZones,true]; - }; + }; if ((dateToNumber date > _enddateNum) or (_vehObj distance _posDestination < 300) or ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj) == teamPlayer))) then - { + { if ((driver _vehObj getVariable ["spawner",false]) and (side group (driver _vehObj) == teamPlayer)) then - { + { [getPosASL _vehObj,_sideX,"",false] spawn A3A_fnc_patrolCA; waitUntil {sleep 1; (_vehObj distance _posDestination < 100) or (not alive _vehObj) or (dateToNumber date > _enddateNum)}; if (_vehObj distance _posDestination < 100) then - { + { _taskState = "SUCCEEDED"; _taskState1 = "FAILED"; [0,15*_bonus,_destinationX] remoteExec ["A3A_fnc_citySupportChange",2]; {if (_x distance _vehObj < 500) then {[10*_bonus,_x] call A3A_fnc_playerScoreAdd}} forEach (allPlayers - (entities "HeadlessClient_F")); [5*_bonus,theBoss] call A3A_fnc_playerScoreAdd; - } + } else - { + { _taskState = "FAILED"; _taskState1 = "FAILED"; [5*_bonus,-10*_bonus,_destinationX] remoteExec ["A3A_fnc_citySupportChange",2]; [3,0] remoteExec ["A3A_fnc_prestige",2]; [-10*_bonus,theBoss] call A3A_fnc_playerScoreAdd; - }; - } + }; + } else - { + { _taskState = "FAILED"; _taskState1 = "SUCCEEDED"; [-3,0] remoteExec ["A3A_fnc_prestige",2]; [15*_bonus,0,_destinationX] remoteExec ["A3A_fnc_citySupportChange",2]; [-10*_bonus,theBoss] call A3A_fnc_playerScoreAdd; - }; }; + }; reportedVehs = reportedVehs - [_vehObj]; publicVariable "reportedVehs"; - }; +}; ["CONVOY",[_textX,_taskTitle,_destinationX],_posDestination,_taskState] call A3A_fnc_taskUpdate; ["CONVOY1",[format ["A convoy from %1 to %3, it's about to depart at %2. Protect it from any possible attack.",_nameOrigin,_displayTime,_nameDest],"Protect Convoy",_destinationX],_posDestination,_taskState1] call A3A_fnc_taskUpdate; @@ -641,11 +657,11 @@ _wp0 setWaypointSpeed "LIMITED"; _wp0 setWaypointFormation "COLUMN"; if (_typeConvoyX == "Prisoners") then +{ { - { - deleteVehicle _x; + deleteVehicle _x; } forEach _POWs; - }; +}; _nul = [600,"CONVOY"] spawn A3A_fnc_deleteTask; _nul = [0,"CONVOY1"] spawn A3A_fnc_deleteTask; diff --git a/A3-Antistasi/Missions/deleteTask.sqf b/A3-Antistasi/functions/Missions/fn_deleteTask.sqf similarity index 100% rename from A3-Antistasi/Missions/deleteTask.sqf rename to A3-Antistasi/functions/Missions/fn_deleteTask.sqf diff --git a/A3-Antistasi/Missions/missionrequest.sqf b/A3-Antistasi/functions/Missions/fn_missionRequest.sqf similarity index 86% rename from A3-Antistasi/Missions/missionrequest.sqf rename to A3-Antistasi/functions/Missions/fn_missionRequest.sqf index 7807475a78..d5883d2f48 100644 --- a/A3-Antistasi/Missions/missionrequest.sqf +++ b/A3-Antistasi/functions/Missions/fn_missionRequest.sqf @@ -55,7 +55,7 @@ if (_typeX == "AS") then else { _siteX = selectRandom _potentials; - if (_siteX in airportsX) then {[[_siteX],"AS_Official"] remoteExec ["A3A_fnc_scheduler",2]} else {if (_siteX in citiesX) then {[[_siteX],"AS_Traitor"] remoteExec ["A3A_fnc_scheduler",2]} else {[[_siteX],"AS_SpecOP"] remoteExec ["A3A_fnc_scheduler",2]}}; + if (_siteX in airportsX) then {[[_siteX],"A3A_fnc_AS_Official"] remoteExec ["A3A_fnc_scheduler",2]} else {if (_siteX in citiesX) then {[[_siteX],"A3A_fnc_AS_Traitor"] remoteExec ["A3A_fnc_scheduler",2]} else {[[_siteX],"A3A_fnc_AS_SpecOP"] remoteExec ["A3A_fnc_scheduler",2]}}; }; }; if (_typeX == "CON") then @@ -77,7 +77,7 @@ if (_typeX == "CON") then else { _siteX = selectRandom _potentials; - [[_siteX],"CON_Outpost"] remoteExec ["A3A_fnc_scheduler",2]; + [[_siteX],"A3A_fnc_CON_Outpost"] remoteExec ["A3A_fnc_scheduler",2]; }; }; if (_typeX == "DES") then @@ -114,14 +114,15 @@ if (_typeX == "DES") then } else { - _siteX = _potentials call BIS_fnc_selectRandom; - if (_siteX in airportsX) then {if (random 10 < 8) then {[[_siteX],"DES_Vehicle"] remoteExec ["A3A_fnc_scheduler",2]} else {[[_siteX],"DES_Heli"] remoteExec ["A3A_fnc_scheduler",2]}}; + _siteX = selectRandom _potentials; +// if (_siteX in airportsX) then {if (random 10 < 8) then {[[_siteX],"A3A_fnc_DES_Vehicle"] remoteExec ["A3A_fnc_scheduler",2]} else {[[_siteX],"A3A_fnc_DES_Heli"] remoteExec ["A3A_fnc_scheduler",2]}}; + if (_siteX in airportsX) then {[[_siteX],"A3A_fnc_DES_Vehicle"] remoteExec ["A3A_fnc_scheduler",2]}; if (_siteX in antennas) then {[[_siteX],"DES_antenna"] remoteExec ["A3A_fnc_scheduler",2]} }; }; if (_typeX == "LOG") then { - _sites = outposts + citiesX - destroyedCities; + _sites = outposts + citiesX - destroyedSites; _sites = _sites select {sidesX getVariable [_x,sideUnknown] != teamPlayer}; if (random 100 < 20) then {_sites = _sites + banks}; if (count _sites > 0) then @@ -171,10 +172,10 @@ if (_typeX == "LOG") then } else { - _siteX = _potentials call BIS_fnc_selectRandom; - if (_siteX in citiesX) then {[[_siteX],"LOG_Supplies"] remoteExec ["A3A_fnc_scheduler",2]}; - if (_siteX in outposts) then {[[_siteX],"LOG_Ammo"] remoteExec ["A3A_fnc_scheduler",2]}; - if (_siteX in banks) then {[[_siteX],"LOG_Bank"] remoteExec ["A3A_fnc_scheduler",2]}; + _siteX = selectRandom _potentials; + if (_siteX in citiesX) then {[[_siteX],"A3A_fnc_LOG_Supplies"] remoteExec ["A3A_fnc_scheduler",2]}; + if (_siteX in outposts) then {[[_siteX],"A3A_fnc_LOG_Ammo"] remoteExec ["A3A_fnc_scheduler",2]}; + if (_siteX in banks) then {[[_siteX],"A3A_fnc_LOG_Bank"] remoteExec ["A3A_fnc_scheduler",2]}; }; }; if (_typeX == "RES") then @@ -200,8 +201,8 @@ if (_typeX == "RES") then } else { - _siteX = _potentials call BIS_fnc_selectRandom; - if (_siteX in citiesX) then {[[_siteX],"RES_Refugees"] remoteExec ["A3A_fnc_scheduler",2]} else {[[_siteX],"RES_Prisoners"] remoteExec ["A3A_fnc_scheduler",2]}; + _siteX = selectRandom _potentials; + if (_siteX in citiesX) then {[[_siteX],"A3A_fnc_RES_Refugees"] remoteExec ["A3A_fnc_scheduler",2]} else {[[_siteX],"A3A_fnc_RES_Prisoners"] remoteExec ["A3A_fnc_scheduler",2]}; }; }; if (_typeX == "CONVOY") then @@ -249,9 +250,9 @@ if (_typeX == "CONVOY") then } else { - _siteX = _potentials call BIS_fnc_selectRandom; + _siteX = selectRandom _potentials; _base = [_siteX] call A3A_fnc_findBasesForConvoy; - [[_siteX,_base],"CONVOY"] remoteExec ["A3A_fnc_scheduler",2]; + [[_siteX,_base],"A3A_fnc_convoy"] remoteExec ["A3A_fnc_scheduler",2]; }; } else diff --git a/A3-Antistasi/Missions/missionrequestAUTO.sqf b/A3-Antistasi/functions/Missions/fn_missionRequestAUTO.sqf similarity index 100% rename from A3-Antistasi/Missions/missionrequestAUTO.sqf rename to A3-Antistasi/functions/Missions/fn_missionRequestAUTO.sqf diff --git a/A3-Antistasi/Missions/taskUpdate.sqf b/A3-Antistasi/functions/Missions/fn_taskUpdate.sqf similarity index 95% rename from A3-Antistasi/Missions/taskUpdate.sqf rename to A3-Antistasi/functions/Missions/fn_taskUpdate.sqf index 48831ca053..27c59965cf 100644 --- a/A3-Antistasi/Missions/taskUpdate.sqf +++ b/A3-Antistasi/functions/Missions/fn_taskUpdate.sqf @@ -12,7 +12,7 @@ if (((_descriptionOld select 1) select 0) != (_description select 1)) then [_variable,_description] call BIS_fnc_taskSetDescription; }; private _destinationOld = _variable call BIS_fnc_taskDestination; -if (typeName _destinationX != typeName _destinationOld) then +if !(_destinationX isEqualType _destinationOld) then { [_variable,_destinationX] call BIS_fnc_taskSetDestination; } diff --git a/A3-Antistasi/Missions/underAttack.sqf b/A3-Antistasi/functions/Missions/fn_underAttack.sqf similarity index 65% rename from A3-Antistasi/Missions/underAttack.sqf rename to A3-Antistasi/functions/Missions/fn_underAttack.sqf index 22954dffc5..9014836ade 100644 --- a/A3-Antistasi/Missions/underAttack.sqf +++ b/A3-Antistasi/functions/Missions/fn_underAttack.sqf @@ -1,22 +1,21 @@ private ["_markerX","_nameDest","_nameENY"]; -_markerX = _this select 0; + +params ["_markerX", "_sideEny", "_sideX", ["_roadblockTemp", true]]; _nameDest = [_markerX] call A3A_fnc_localizar; -_sideEny = _this select 1; _nameENY = if (_sideEny == teamPlayer) then - { - nameTeamPlayer - } - else - { - if (_sideEny == Invaders) then {nameInvaders} else {nameOccupants}; - }; -_sideX = _this select 2; +{ + nameTeamPlayer +} +else +{ + if (_sideEny == Invaders) then {nameInvaders} else {nameOccupants}; +}; if (_sideX == teamPlayer) then {_sideX = [teamPlayer,civilian]}; [_sideX,_markerX,[format ["%2 is attacking us in %1. Help the defense if you can",_nameDest,_nameENY],format ["%1 Contact Rep",_nameENY],_markerX],getMarkerPos _markerX,false,0,true,"Defend",true] call BIS_fnc_taskCreate; if (_sideX isEqualType []) then {_sideX = teamPlayer}; -waitUntil {sleep 10; (sidesX getVariable [_markerX,sideUnknown] != _sideX) or (spawner getVariable _markerX == 2)}; +waitUntil {sleep 10; (sidesX getVariable [_markerX,sideUnknown] != _sideX) or (_roadblockTemp && {spawner getVariable _markerX == 2})}; -[0,_markerX] spawn A3A_fnc_deleteTask; \ No newline at end of file +[0,_markerX] spawn A3A_fnc_deleteTask; diff --git a/A3-Antistasi/functions/ModsAndDLC/fn_getModOfConfigClass.sqf b/A3-Antistasi/functions/ModsAndDLC/fn_getModOfConfigClass.sqf new file mode 100644 index 0000000000..672677c931 --- /dev/null +++ b/A3-Antistasi/functions/ModsAndDLC/fn_getModOfConfigClass.sqf @@ -0,0 +1,27 @@ +/** + Gets the mod (or DLC) a config item is from, if any; + + Params: + _config: Config class - The config class to look up. + + Returns: + Name of the mod, as a string. +**/ + +params ["_config"]; + +private _return = ""; + +private _addons = configSourceAddonList _config; +if (count _addons > 0) then { + private _mods = configSourceModList (configFile >> "CfgPatches" >> _addons select 0); + if (count _mods > 0) then { + _return = _mods select 0; + }; +}; + +if (_return == "") then { + _return = toLower getText (_config >> "DLC"); +}; + +_return; \ No newline at end of file diff --git a/A3-Antistasi/functions/ModsAndDLC/fn_initDisabledMods.sqf b/A3-Antistasi/functions/ModsAndDLC/fn_initDisabledMods.sqf new file mode 100644 index 0000000000..1e560d6ab4 --- /dev/null +++ b/A3-Antistasi/functions/ModsAndDLC/fn_initDisabledMods.sqf @@ -0,0 +1,56 @@ +scriptName "fn_initDisabledMods.sqf"; +private _fileName = "fn_initDisabledMods.sqf"; +private _disabledMods = []; + +if ("Kart" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "kart"; +}; + +if ("Mark" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "mark"; +}; + +if ("Heli" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "heli"; +}; + +if ("Expansion" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "expansion"; +}; + +if ("Jets" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "jets"; +}; + +if ("Orange" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "orange"; +}; + +if ("Tanks" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "tank"; +}; + +if ("GlobMob" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "globmob"; +}; + +if ("Enoch" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "enoch"; +}; + +if ("OfficialMod" call BIS_fnc_getParamValue isEqualTo 0) then +{ + _disabledMods pushBack "officialmod"; +}; +[2,format ["Disabled DLC: %1",_disabledMods],_fileName] call A3A_fnc_log; + +_disabledMods; diff --git a/A3-Antistasi/functions/ModsAndDLC/fn_isModNameVanilla.sqf b/A3-Antistasi/functions/ModsAndDLC/fn_isModNameVanilla.sqf new file mode 100644 index 0000000000..f130b4151f --- /dev/null +++ b/A3-Antistasi/functions/ModsAndDLC/fn_isModNameVanilla.sqf @@ -0,0 +1,13 @@ +/** + Checks if a mod name belongs to vanilla + + Params: + modName - Mod name (as returned by getModOfConfigClass) + + Returns: + Boolean, true if mod is vanilla or DLC. +**/ + +params ["_modName"]; + +_modName == "" || {_modName in allDLCMods}; \ No newline at end of file diff --git a/A3-Antistasi/functions/OrgPlayers/fn_assignBossIfNone.sqf b/A3-Antistasi/functions/OrgPlayers/fn_assignBossIfNone.sqf new file mode 100644 index 0000000000..1a0da51c56 --- /dev/null +++ b/A3-Antistasi/functions/OrgPlayers/fn_assignBossIfNone.sqf @@ -0,0 +1,51 @@ +// Dont' run if a Boss exists. +private _filename = "fn_assignBossIfNone"; + +if (!isNil "theBoss" && {!isNull theBoss}) exitWith { + [3, format ["Not attempting to assign new boss - player %1 is the boss", theBoss],_filename] call A3A_fnc_log; +}; + +private _members = []; +private _nextBoss = objNull; + +[3, format ["Attempting to assign new boss, checking % members for next Boss.", count membersX],_filename] call A3A_fnc_log; +// Are there any members online. + +private _BossRank = 0; +{ + private _isMember = [_x] call A3A_fnc_isMember; + if (_isMember) then { + _members pushBack _x; + }; + + if ((_x getVariable ["eligible",true]) && ({(side (group _x) == teamPlayer)}) && _isMember) then + { + [3, format ["Player %1 is eligible", name _x],_filename] call A3A_fnc_log; + [3, format ["Current Boss Rank: %1.", _BossRank],_filename] call A3A_fnc_log; + private _dataX = [_x] call A3A_fnc_numericRank; + private _playerRank = _dataX select 0; + [3, format ["Players rank is: %1", _playerRank],_filename] call A3A_fnc_log; + if (_playerRank > _BossRank) then + { + _nextBoss = _x; + _BossRank = _playerRank; + }; + } + else { + [3, format ["Player is not eligible: %1", _x],_filename] call A3A_fnc_log; + }; +} forEach (call A3A_fnc_playableUnits); + +if (!isNull _nextBoss) then +{ + [2, format ["Player chosen for Boss: %1", name _nextBoss],_filename] call A3A_fnc_log; + _textX = format ["%1 is the new leader of our forces. Greet them!", name _nextBoss]; + [_nextBoss] call A3A_fnc_theBossInit; + sleep 5; + [[petros,"hint",_textX],"A3A_fnc_commsMP"] call BIS_fnc_MP; +} +else +{ + [2, "Couldn't select a new boss - no eligible candidates.",_filename] call A3A_fnc_log; +}; + diff --git a/A3-Antistasi/orgPlayers/donateMoney.sqf b/A3-Antistasi/functions/OrgPlayers/fn_donateMoney.sqf similarity index 100% rename from A3-Antistasi/orgPlayers/donateMoney.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_donateMoney.sqf diff --git a/A3-Antistasi/orgPlayers/isMember.sqf b/A3-Antistasi/functions/OrgPlayers/fn_isMember.sqf similarity index 100% rename from A3-Antistasi/orgPlayers/isMember.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_isMember.sqf diff --git a/A3-Antistasi/functions/OrgPlayers/fn_makePlayerBossIfEligible.sqf b/A3-Antistasi/functions/OrgPlayers/fn_makePlayerBossIfEligible.sqf new file mode 100644 index 0000000000..3b682a638f --- /dev/null +++ b/A3-Antistasi/functions/OrgPlayers/fn_makePlayerBossIfEligible.sqf @@ -0,0 +1,19 @@ +private _filename = "fn_makePlayerBossIfEligible"; + +params ["_player"]; + +[3, format ["Attempting to make %1 the boss", name _player], _filename] call A3A_fnc_log; + +private _textX = ""; + +if (_player getVariable ["eligible",true] && ({(side (group _player) == teamPlayer)}) && [_player] call A3A_fnc_isMember) exitWith { + [3, "Player is eligible, making them the boss", _filename] call A3A_fnc_log; + _textX = format ["%1 is the new leader of our forces. Greet them!", name _player]; + [_player] call A3A_fnc_theBossInit; + [[petros,"hint",_textX],"A3A_fnc_commsMP"] call BIS_fnc_MP; + true; +}; + +[3, "Player is not eligible, unable to make them the boss", _filename] call A3A_fnc_log; + +false; diff --git a/A3-Antistasi/orgPlayers/memberAdd.sqf b/A3-Antistasi/functions/OrgPlayers/fn_memberAdd.sqf similarity index 100% rename from A3-Antistasi/orgPlayers/memberAdd.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_memberAdd.sqf diff --git a/A3-Antistasi/orgPlayers/membersList.sqf b/A3-Antistasi/functions/OrgPlayers/fn_membersList.sqf similarity index 92% rename from A3-Antistasi/orgPlayers/membersList.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_membersList.sqf index 585d3d19ee..4d317d5744 100644 --- a/A3-Antistasi/orgPlayers/membersList.sqf +++ b/A3-Antistasi/functions/OrgPlayers/fn_membersList.sqf @@ -10,7 +10,7 @@ if (!isNull _playerX) then //_uid = getPlayerUID _playerX; if ([_playerX] call A3A_fnc_isMember) then {_textX = format ["%1%2\n",_textX,name _playerX]} else {_countN = _countN + 1}; }; -} forEach playableUnits; +} forEach (call A3A_fnc_playableUnits); _textX = format ["%1\nNo members:\n%2",_textX,_countN]; diff --git a/A3-Antistasi/orgPlayers/playerScoreAdd.sqf b/A3-Antistasi/functions/OrgPlayers/fn_playerScoreAdd.sqf similarity index 86% rename from A3-Antistasi/orgPlayers/playerScoreAdd.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_playerScoreAdd.sqf index ef8187c041..6ed828d2fe 100644 --- a/A3-Antistasi/orgPlayers/playerScoreAdd.sqf +++ b/A3-Antistasi/functions/OrgPlayers/fn_playerScoreAdd.sqf @@ -8,7 +8,7 @@ if (!isPlayer _playerX) exitWith {}; //if (rank _playerX == "COLONEL") exitWith {}; _playerX = _playerX getVariable ["owner",_playerX]; -//if (typeName _playerX == typeName "") exitWith {diag_log format ["Antistasi Error: Intento de asignar pointsX a un %1 siendo en realidad %2",_playerX, _this select 1]}; +//if (_playerX isEqualType "") exitWith {diag_log format ["Antistasi Error: Intento de asignar pointsX a un %1 siendo en realidad %2",_playerX, _this select 1]}; if (isMultiplayer) exitWith { _pointsXJ = _playerX getVariable ["score",0]; diff --git a/A3-Antistasi/functions/OrgPlayers/fn_promotePlayer.sqf b/A3-Antistasi/functions/OrgPlayers/fn_promotePlayer.sqf new file mode 100755 index 0000000000..9cbf3313a0 --- /dev/null +++ b/A3-Antistasi/functions/OrgPlayers/fn_promotePlayer.sqf @@ -0,0 +1,39 @@ +private _filename = "fn_promotePlayer"; +[3, format ["Working on player ranks"],_filename] call A3A_fnc_log; +private ["_puntMax","_textX","_multiplier","_newRank","_selectable","_disconnected","_owner","_pointsX","_dataX"]; +_puntMax = 0; +_multiplier = 1; + +private _textX = "Promoted Players:\n\n"; + +_promoted = false; +{ + private _player = _x getVariable ["owner", _x]; + private _pointsX = _player getVariable ["score",0]; + private _dataX = [_player] call A3A_fnc_numericRank; + private _multiplier = _dataX select 0; + private _newRank = _dataX select 1; + private _rank = _x getVariable ["rankX","PRIVATE"]; + + if (_rank != "COLONEL") then + { + if (_pointsX >= 50*_multiplier) then + { + _promoted = true; + [_player,_newRank] remoteExec ["A3A_fnc_ranksMP"]; + _player setVariable ["rankX",_newRank,true]; + _textX = format ["%1%2: %3.\n",_textX, name _player, _newRank]; + [-1*(50*_multiplier),_player] call A3A_fnc_playerScoreAdd; + _multiplier = _multiplier + 1; + sleep 5; + }; + }; +} forEach ((call A3A_fnc_playableUnits) select {(side (group _x) == teamPlayer)}); + +[3, _textX, _filename] call A3A_fnc_log; + +if (_promoted) then +{ + _textX = format ["%1\n\nCONGRATULATIONS!!",_textX]; + [petros,"hint",_textX] remoteExec ["A3A_fnc_commsMP"]; +}; diff --git a/A3-Antistasi/orgPlayers/ranksMP.sqf b/A3-Antistasi/functions/OrgPlayers/fn_ranksMP.sqf similarity index 100% rename from A3-Antistasi/orgPlayers/ranksMP.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_ranksMP.sqf diff --git a/A3-Antistasi/orgPlayers/resourcesPlayer.sqf b/A3-Antistasi/functions/OrgPlayers/fn_resourcesPlayer.sqf similarity index 100% rename from A3-Antistasi/orgPlayers/resourcesPlayer.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_resourcesPlayer.sqf diff --git a/A3-Antistasi/orgPlayers/stavrosInit.sqf b/A3-Antistasi/functions/OrgPlayers/fn_theBossInit.sqf old mode 100644 new mode 100755 similarity index 69% rename from A3-Antistasi/orgPlayers/stavrosInit.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_theBossInit.sqf index cdc7591e7a..bdad96285d --- a/A3-Antistasi/orgPlayers/stavrosInit.sqf +++ b/A3-Antistasi/functions/OrgPlayers/fn_theBossInit.sqf @@ -1,23 +1,33 @@ private ["_unit","_groups","_oldUnit","_oldProviders","_HQ","_providerModule","_used"]; +private _filename = "fn_theBossInit"; _unit = _this select 0; _groups = hcAllGroups theBoss; _oldUnit = theBoss; +[3, format ["Player %1 has been selected for Boss position.",name _unit],_filename] call A3A_fnc_log; +[3, format ["Removing %1 from Boss roles.",name theBoss],_filename] call A3A_fnc_log; + if (!isNil "_groups") then { - { - _oldUnit hcRemoveGroup _x; - } forEach _groups; + { + _oldUnit hcRemoveGroup _x; + } forEach _groups; }; _oldUnit synchronizeObjectsRemove [HC_commanderX]; //apoyo synchronizeObjectsRemove [_oldUnit]; HC_commanderX synchronizeObjectsRemove [_oldUnit]; + +[3, format ["New boss %1 being set.", _unit],_filename] call A3A_fnc_log; theBoss = _unit; publicVariable "theBoss"; + [group _unit, _unit] remoteExec ["selectLeader",_unit]; theBoss synchronizeObjectsAdd [HC_commanderX]; HC_commanderX synchronizeObjectsAdd [theBoss]; //apoyo synchronizeObjectsAdd [theBoss]; + +[3, format ["Player %1 should now be boss: %2.", name _unit, name theBoss],_filename] call A3A_fnc_log; + if (!isNil "_groups") then { {_unit hcSetGroup [_x]} forEach _groups; diff --git a/A3-Antistasi/orgPlayers/stavrosSteal.sqf b/A3-Antistasi/functions/OrgPlayers/fn_theBossSteal.sqf similarity index 100% rename from A3-Antistasi/orgPlayers/stavrosSteal.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_theBossSteal.sqf diff --git a/A3-Antistasi/functions/OrgPlayers/fn_theBossToggleEligibility.sqf b/A3-Antistasi/functions/OrgPlayers/fn_theBossToggleEligibility.sqf new file mode 100644 index 0000000000..260333f423 --- /dev/null +++ b/A3-Antistasi/functions/OrgPlayers/fn_theBossToggleEligibility.sqf @@ -0,0 +1,30 @@ +params ["_playerX", ["_suggestedNextBoss", objNull]]; + +_playerX = _playerX getVariable ["owner", _playerX]; + +if (_playerX getVariable ["eligible",true]) then +{ + _playerX setVariable ["eligible",false,true]; + if (_playerX == theBoss) then + { + theBoss = objNull; publicVariable "theBoss"; + + if(!isNull _suggestedNextBoss && isPlayer _suggestedNextBoss) then { + hint format ["You resign of being Commander. It should be passed to %1 if they are eligible.", name _suggestedNextBoss]; + [_suggestedNextBoss] call A3A_fnc_makePlayerBossIfEligible; + } else { + hint "You resign of being Commander. Others will take the command if there is someone suitable for it."; + }; + [] call A3A_fnc_assignBossIfNone; + } + else + { + hint "You decided not to be eligible for Commander."; + }; +} +else +{ + hint "You are now eligible to be Commander of our forces."; + _playerX setVariable ["eligible",true,true]; + [] call A3A_fnc_assignBossIfNone; +}; \ No newline at end of file diff --git a/A3-Antistasi/orgPlayers/tierCheck.sqf b/A3-Antistasi/functions/OrgPlayers/fn_tierCheck.sqf similarity index 85% rename from A3-Antistasi/orgPlayers/tierCheck.sqf rename to A3-Antistasi/functions/OrgPlayers/fn_tierCheck.sqf index 3062ee1810..78617cc270 100644 --- a/A3-Antistasi/orgPlayers/tierCheck.sqf +++ b/A3-Antistasi/functions/OrgPlayers/fn_tierCheck.sqf @@ -2,9 +2,11 @@ _sites = markersX select {sidesX getVariable [_x,sideUnknown] == teamPlayer}; _tierWar = 1 + (floor (((5*({(_x in outposts) or (_x in resourcesX) or (_x in citiesX)} count _sites)) + (10*({_x in seaports} count _sites)) + (20*({_x in airportsX} count _sites)))/10)); if (_tierWar > 10) then {_tierWar = 10}; if (_tierWar != tierWar) then - { +{ tierWar = _tierWar; publicVariable "tierWar"; [petros,"tier",""] remoteExec ["A3A_fnc_commsMP",[teamPlayer,civilian]]; + //Updates the vehicles and groups for the sites + [] call A3A_fnc_updatePreference; //[] remoteExec ["A3A_fnc_statistics",[teamPlayer,civilian]]; - }; \ No newline at end of file +}; diff --git a/A3-Antistasi/functions/Pathfinding/fn_calculateH.sqf b/A3-Antistasi/functions/Pathfinding/fn_calculateH.sqf new file mode 100644 index 0000000000..935df37962 --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_calculateH.sqf @@ -0,0 +1,18 @@ +//Calculates the estimated road length from _pos to _target +//The value describes what behavior the script will have + +//Behavior: +//A lower value will make estimated way shorter, resulting in better score for nodes that are not far away from the start point +//This will yield better results for paths where the obvious way is not correct +//A higher value will make estimated way longer, resulting in better score for nodes that are not far away from the end point +//This will yield better results for paths where the obvious way is correct + +//Better results means faster results with less touched nodes +//Hint by Wurzel: 1.2 returns fair results in both cases. I recommend some value around it + +params ["_pos", "_target"]; + +private _distance = _pos distance _target; +_distance = _distance * 1.2; + +_distance; diff --git a/A3-Antistasi/functions/Pathfinding/fn_findNearestNavPoint.sqf b/A3-Antistasi/functions/Pathfinding/fn_findNearestNavPoint.sqf new file mode 100644 index 0000000000..351eb68207 --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_findNearestNavPoint.sqf @@ -0,0 +1,22 @@ +params ["_pos"]; + +_mainMarker = [_pos] call A3A_fnc_getClosestMainMarker; + +_navPoints = missionNamespace getVariable [(format ["%1_data", _mainMarker]), []]; + +_currentNearest = objNull; +_currentDistance = 0; + +{ + _data = navGrid select _x; + _navPos = _data select 1; + + _distance = _navPos distance _pos; + if((!(_currentNearest isEqualType 1)) || {_currentDistance > _distance}) then + { + _currentNearest = _x; + _currentDistance = _distance; + }; +} forEach _navPoints; + +_currentNearest; diff --git a/A3-Antistasi/functions/Pathfinding/fn_findPath.sqf b/A3-Antistasi/functions/Pathfinding/fn_findPath.sqf new file mode 100644 index 0000000000..30e9e8abad --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_findPath.sqf @@ -0,0 +1,163 @@ +params ["_startPos" , "_endPos", "_avoid"]; + +if(isNil "roadDataDone") exitWith { + diag_log "Pathfinding: Road data base not loaded, aborting pathfinding!"; + []; +}; + +private _deltaTime = time; + + +_startNav = [_startPos] call A3A_fnc_findNearestNavPoint; +_endNav = [_endPos] call A3A_fnc_findNearestNavPoint; + +diag_log format ["Pathfinding: Start %1 at %2 End %3 at %4", _startNav, str _startPos, _endNav, str _endPos]; + +allMarker = []; +createNavMarker = compile preprocessFileLineNumbers "NavGridTools\createNavMarker.sqf"; + + +if(!(_startNav isEqualType 1 && _endNav isEqualType 1)) exitWith { + //Hint: Improve the search! + []; +}; + + +//Start A* here +_openList = []; +_closedList = []; + +_targetNavPos = [_startNav] call A3A_fnc_getNavPos; +_startNavPos = [_endNav] call A3A_fnc_getNavPos; + +//_end = ["mil_triangle", _targetNavPos, "ColorBlue"] call createNavMarker; +//_end setMarkerText "Start"; +//_start = ["mil_triangle", _startNavPos, "ColorBlue"] call createNavMarker; +//_start setMarkerText "Target"; + +private _lastNav = -1; + +//Search for end to start, due to nature of script +_openList pushBack [_endNav, 0, [_startNavPos, _targetNavPos] call A3A_fnc_calculateH, "End"]; + + +while {(!(_lastNav isEqualType [])) && {count _openList > 0}} do +{ + //Select node with lowest score + _next = objNull; + //private _debug = "List is\n"; + if((count _openList) == 1) then + { + _next = _openList deleteAt 0; + } + else + { + private _nextValue = 0; + { + _xValue = ((_x select 1) + (_x select 2)); + //_debug = format ["%1Object: %2 Value: %3\n", _debug, (_x select 0), _xValue]; + + if((!(_next isEqualType [])) || {_xValue < _nextValue}) then + { + _next = _x; + _nextValue = _xValue; + }; + } forEach _openList; + _openList = _openList - [_next]; + //_debug = format ["%1Choose: %2 Value: %3", _debug, (_next select 0), _nextValue]; + }; + + //hint _debug; + + //Close node + _closedList pushBack _next; + + + //Gather next nodes + _nextNodes = [_next select 0] call A3A_fnc_getNavConnections; + _nextPos = [_next select 0] call A3A_fnc_getNavPos; + + //["mil_dot", _nextPos, "ColorRed"] call createNavMarker; + + { + _conNav = _x; + _conName = _conNav select 0; + + //Found the end + if(_conName == _startNav) exitWith {_lastNav = _next}; + + _conPos = [_conName] call A3A_fnc_getNavPos; + + //Not in closed list + if((_closedList findIf {(_x select 0) == _conName}) == -1) then + { + _openListIndex = _openList findIf {(_x select 0) == _conName}; + + //Not in open list + if(_openListIndex == -1) then + { + _h = [_conPos, _targetNavPos] call A3A_fnc_calculateH; + _openList pushBack [_conName, ((_next select 1) + (_nextPos distance _conPos)), _h, (_next select 0)]; + //private _marker = ["mil_dot", _conPos, "ColorBlue"] call createNavMarker; + //_marker setMarkerText str (_h + (_next select 1) + (_nextPos distance _conPos)); + } + else + { + //In open list + _conData = _openList deleteAt _openListIndex; + //Is it a shorter way to this node? + if((_conData select 1) > ((_next select 1) + (_nextPos distance _conPos))) then + { + _conData set [1, ((_next select 1) + (_nextPos distance _conPos))]; + _conData set [3, (_next select 0)]; + }; + _openList pushBack _conData; + }; + }; + } forEach _nextNodes; +}; + +private _wayPoints = []; +if(_lastNav isEqualType []) then +{ + //Way found, reverting way through path + _wayPoints = [_startPos, _targetNavPos]; + + while {_lastNav isEqualType []} do + { + _lastPos = [_lastNav select 0] call A3A_fnc_getNavPos; + _wayPoints pushBack _lastPos; + //["mil_dot", _lastPos, "ColorGreen"] call createNavMarker; + _lastNavIndex = _lastNav select 3; + if(_lastNavIndex isEqualType 1) then + { + _closedListIndex = _closedList findIf {(_x select 0) == _lastNavIndex}; + _lastNav = _closedList select _closedListIndex; + } + else + { + _lastNav = -1; + }; + }; + //_wayPoints pushBack _endPos; + _wayPoints = _wayPoints + [_startNavPos, _endPos]; + //_wayPoints = [_startPos, _startNavPos]; + + _deltaTime = time - _deltaTime; + diag_log format ["Pathfinding: Successful finished pathfinding in %1 seconds", _deltaTime]; +} +else +{ + _deltaTime = time - _deltaTime; + diag_log format ["Pathfinding: Could not find a way, search took %1 seconds", _deltaTime]; +}; + +[] spawn +{ + sleep 15; + { + deleteMarker _x; + } forEach allMarker; +}; + +_wayPoints; diff --git a/A3-Antistasi/functions/Pathfinding/fn_getClosestMainMarker.sqf b/A3-Antistasi/functions/Pathfinding/fn_getClosestMainMarker.sqf new file mode 100644 index 0000000000..8b27176461 --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_getClosestMainMarker.sqf @@ -0,0 +1,11 @@ +params ["_pos"]; + +_x = _pos select 0; +_y = _pos select 1; + +_x = floor (_x / 1000); +_y = floor (_y / 1000); + +_markerName = format ["%1/%2", _x, _y]; + +_markerName; diff --git a/A3-Antistasi/functions/Pathfinding/fn_getMainMarkers.sqf b/A3-Antistasi/functions/Pathfinding/fn_getMainMarkers.sqf new file mode 100644 index 0000000000..a923606a4f --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_getMainMarkers.sqf @@ -0,0 +1,62 @@ +#define OFFSET 300 + +params ["_pos"]; + +_allMarkers = []; + +_x = _pos select 0; +_y = _pos select 1; + +_xFloored = floor (_x / 1000); +_yFloored = floor (_y / 1000); + +_markerName = format ["%1/%2", _xFloored, _yFloored]; +_allMarkers pushBack _markerName; + +_xSidePos = floor ((_x + OFFSET)/1000); +_xSideNeg = floor ((_x - OFFSET)/1000); + +_xDiff = _xFloored; +_xHasDiff = false; +if(_xSideNeg != _xDiff || _xSidePos != _xDiff) then +{ + _xHasDiff = true; + if(_xSidePos != _xDiff) then + { + _xDiff = _xSidePos; + } + else + { + _xDiff = _xSideNeg; + }; + _markerName = format ["%1/%2", _xDiff, _yFloored]; + _allMarkers pushBackUnique _markerName; +}; + +_ySidePos = floor ((_y + OFFSET)/1000); +_ySideNeg = floor ((_y - OFFSET)/1000); + +_yDiff = _yFloored; +_yHasDiff = false; +if(_ySideNeg != _yDiff || _ySidePos != _yDiff) then +{ + _yHasDiff = true; + if(_ySidePos != _yDiff) then + { + _yDiff = _ySidePos; + } + else + { + _yDiff = _ySideNeg; + }; + _markerName = format ["%1/%2", _xFloored, _yDiff]; + _allMarkers pushBackUnique _markerName; +}; + +if(_yHasDiff && _xHasDiff) then +{ + _markerName = format ["%1/%2", _xDiff, _yDiff]; + _allMarkers pushBackUnique _markerName; +}; + +_allMarkers; diff --git a/A3-Antistasi/functions/Pathfinding/fn_getNavConnections.sqf b/A3-Antistasi/functions/Pathfinding/fn_getNavConnections.sqf new file mode 100644 index 0000000000..705ad74e54 --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_getNavConnections.sqf @@ -0,0 +1,6 @@ +params ["_navIndex"]; + +private _data = navGrid select _navIndex; +private _cons = _data select 2; + +_cons; diff --git a/A3-Antistasi/functions/Pathfinding/fn_getNavPos.sqf b/A3-Antistasi/functions/Pathfinding/fn_getNavPos.sqf new file mode 100644 index 0000000000..6c23c56690 --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_getNavPos.sqf @@ -0,0 +1,6 @@ +params ["_navIndex"]; + +private _data = navGrid select _navIndex; +private _pos = _data select 1; + +_pos; diff --git a/A3-Antistasi/functions/Pathfinding/fn_loadNavGrid.sqf b/A3-Antistasi/functions/Pathfinding/fn_loadNavGrid.sqf new file mode 100644 index 0000000000..faba63b24f --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_loadNavGrid.sqf @@ -0,0 +1,71 @@ +[] spawn +{ + _deltaTime = time; + _abort = false; + mainMarker = []; + + _worldName = worldName; + _firstLetter = _worldName select [0,1]; + _remaining = _worldName select [1]; + _firstLetter = toUpper _firstLetter; + _remaining = toLower _remaining; + _worldName = format ["%1%2", _firstLetter, _remaining]; + + _path = format ["NavGrids\navGrid%1.sqf", _worldName]; + + try + { + //Load in the nav grid array + [] call compile preprocessFileLineNumbers _path; + } + catch + { + //Stop launch of mission, road database is missing + diag_log format ["Road database could not be loaded, there is no file called\n %1\n\n Aborting mission start!", _path]; + _abort = true; + }; + + roadDataDone = true; + publicVariable "roadDataDone"; + + if(_abort) exitWith {}; + + _worldSize = worldSize; + _chunkSize = 1000; //1000 meters per marker + _offset = _chunkSize / 2; + + _markerNeeded = floor (_worldSize / _chunkSize) + 1; + + //hint format ["Marker per side %1, all %2", _markerNeeded, (_markerNeeded * _markerNeeded)]; + + { + _navPointData = _x; + _index = _navPointData select 0; + _position = _navPointData select 1; + _mainMarkers = [_position] call A3A_fnc_getMainMarkers; + { + [_index, _x] call A3A_fnc_setNavOnMarker; + } forEach _mainMarkers; + + } forEach navGrid; + + for "_i" from 0 to (_markerNeeded - 1) do + { + for "_j" from 0 to (_markerNeeded - 1) do + { + _markerPos = [_offset + _i * _chunkSize, _offset + _j * _chunkSize]; + _marker = createMarker [format ["%1/%2", _i, _j], _markerPos]; + _marker setMarkerShape "ICON"; + _marker setMarkerType "mil_circle"; + _marker setMarkerColor "ColorBlack"; + _points = missionNamespace getVariable [(format ["%1/%2_data", _i, _j]), []]; + _marker setMarkerText (format ["%1/%2, NavPoints: %3", _i, _j, count _points]); + _marker setMarkerAlpha 0; + + mainMarker pushBack "_marker"; + }; + }; + + _deltaTime = time - _deltaTime; + hint format ["Nav grid load and prepared in %1 seconds", _deltaTime]; +}; diff --git a/A3-Antistasi/functions/Pathfinding/fn_setNavOnMarker.sqf b/A3-Antistasi/functions/Pathfinding/fn_setNavOnMarker.sqf new file mode 100644 index 0000000000..312ef4c026 --- /dev/null +++ b/A3-Antistasi/functions/Pathfinding/fn_setNavOnMarker.sqf @@ -0,0 +1,5 @@ +params ["_navPointIndex", "_markerName"]; + +_navPoints = missionNamespace getVariable [(format ["%1_data", _markerName]), []]; +_navPoints pushBack _navPointIndex; +missionNamespace setVariable [(format ["%1_data", _markerName]), _navPoints]; diff --git a/A3-Antistasi/functions/Punishment/fn_punishment.sqf b/A3-Antistasi/functions/Punishment/fn_punishment.sqf new file mode 100644 index 0000000000..e74e62b57b --- /dev/null +++ b/A3-Antistasi/functions/Punishment/fn_punishment.sqf @@ -0,0 +1,189 @@ +Params ["_foolish","_timeAdded","_offenceAdded",["_victim",objNull]]; +//MUST be executed on foolish for [BIS_fnc_admin, isServer] to work. +// EG: [_instigator, 20, 0.34, _victim] remoteExec ["A3A_fnc_punishment",_instigator]; +/* + _foolish expects player object + _timeX expects time out + _offenceLevel expects percentage between 0 and 1 how server it is severe it is +*/ +/* + Some Debug Consol Interactions: + + [cursorObject, 0, 0] remoteExec ["A3A_fnc_punishment",cursorObject]; //ping + [cursorObject,120, 1, "sudo"] remoteExec ["A3A_fnc_punishment",cursorObject]; //Insta Punish, 120 seconds + [player,120, 1, "sudo"] remoteExec ["A3A_fnc_punishment",player]; //Self Punish, 120 seconds + [cursorObject,-99999, -1] remoteExec ["A3A_fnc_punishment",cursorObject]; //Insta Forgive + +*/ +//////////////////SETTINGS////////////////// +_depreciationCoef = 0.75; //Modifies the drop-off curve of the punishment value; a higher number drops off quicker, a lower number lingers longer. +_overheadPercent = 0.3; //Lowers the bar (1.0 - accumulated overhead) for getting punished +///////////////// ////////////////// +if (!tkPunish) exitWith {"tkPunish is Disabled"}; + +if (isDedicated) exitWith {"Is a Dedicated Server"}; + +if (!isMultiplayer) exitWith {"Is not Multiplayer"}; + +if (_foolish != player) exitWith {"Not Instigator"}; //Must be local for [BIS_fnc_admin, isServer] + +_forgive = (_timeAdded < 0 || _offenceAdded < 0); + +_coolDown = _foolish getVariable ["punishment_coolDown", 0]; +if (_forgive) exitWith +{ + if (_coolDown > 1) then {[_foolish] call A3A_fnc_punishment_release;}; + ["TK NOTIFICATION!\nAn admin looks with pity upon your soul.\nYou have been partially forgiven."] remoteExec ["hint", _foolish, false]; + if (_coolDown > 1) exitWith {"Admin Forgive"}; + + _punishment_vars = _foolish getVariable ["punishment_vars", [0,0,[0,0],[scriptNull,scriptNull]]]; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] + _timeTotal = _punishment_vars select 0; + _offenceTotal = _punishment_vars select 1; + _lastOffenceData = _punishment_vars select 2; + + _timeTotal = _timeTotal + _timeAdded; + _offenceTotal = _offenceTotal + _offenceAdded; + _lastOffenceData set [1, 0]; + + if (_timeTotal < 0) then {_timeTotal = 0}; + if (_offenceTotal < 0) then {_offenceTotal = 0}; + + _punishment_vars = [_timeTotal,_offenceTotal,_lastOffenceData,[scriptNull,scriptNull]];; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] + _foolish setVariable ["punishment_vars", _punishment_vars, true]; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] + _playerStats = format["Player: %1 [%2], _timeTotal: %3, _offenceTotal: %4, _offenceOverhead: %5, _timeAdded: %6, _offenceAdded: %7", name player, getPlayerUID player, str _timeTotal, str _offenceTotal, str 0, str _timeAdded, str _offenceAdded]; + [format ["%1: [Antistasi] | INFO | PUNISHMENT | FORGIVE | %2", servertime, _playerStats]] remoteExec ["diag_log", 2]; +}; +if (_coolDown > 0) exitWith {"punishment_coolDown active"}; +_foolish setVariable ["punishment_coolDown", 1, true]; +[_foolish] spawn +{ + params ["_player"]; + sleep 1; //Using raw sleep to help include lag spikes that may effect damage and shooting. + + _coolDown = _player getVariable ["punishment_coolDown", 0]; + if (_coolDown < 2) then {_player setVariable ["punishment_coolDown", 0, true]}; +}; + +_punishment_vars = _foolish getVariable ["punishment_vars", [0,0,[0,0],[scriptNull,scriptNull]]]; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] +_timeTotal = _punishment_vars select 0; +_offenceTotal = _punishment_vars select 1; +_lastTime = (_punishment_vars select 2) select 0; //[lastTime,overhead] +_overhead = (_punishment_vars select 2) select 1; //[lastTime,overhead] + +if (_lastTime <= 0) then {_lastTime = serverTime;}; +_periodDelta = serverTime - _lastTime; +if (_offenceAdded < 0) then {_offenceAdded = 0}; +if (_offenceTotal < 0) then {_offenceTotal = 0}; +if (_timeAdded < 0) then {_timeAdded = 0}; +if (_timeTotal < 0) then {_timeTotal = 0}; +if (_periodDelta > 60*60) then //Hourly falloff +{ + _offenceTotal = 0; + _timeTotal = 0; + _overhead = 0; +}; +_overhead = _overhead + _offenceAdded * _overheadPercent; +_offenceTotal = _offenceTotal + _offenceAdded; +_offenceTotal = (_offenceTotal)*((1-_depreciationCoef*(1-(_offenceTotal)))^(_periodDelta/300)); +_grandOffence = _offenceTotal + _overhead; +_timeTotal = _timeTotal + _timeAdded; +_timeTotal = (_timeTotal)*((1-_depreciationCoef*(1-(_timeTotal)))^(_periodDelta/300)); + +_lastOffenceData = [serverTime,_overhead]; + + +_forcePunish = false; +if (_victim isEqualTo "sudo") then {_victim = objNull; _forcePunish = true}; +_victimListed = !isNull _victim; + +_playerStats = format["Player: %1 [%2], _timeTotal: %3, _offenceTotal: %4, _offenceOverhead: %5, _timeAdded: %6, _offenceAdded: %7", name player, getPlayerUID player, str _timeTotal, str _offenceTotal, str _overhead, str _timeAdded, str _offenceAdded]; + +_exitCode = ""; +if (!_forcePunish) then +{ + if (vehicle _foolish != _foolish && !_forgive) then + { + _vehicle = typeOf vehicle _foolish; + if (isNumber (configFile >> "CfgVehicles" >> _vehicle >> "artilleryScanner")) then + { + _artilleryScanner = getNumber (configFile >> "CfgVehicles" >> _vehicle >> "artilleryScanner"); + if (_artilleryScanner != 0) then + { + _exitCode = "Inside Artillery"; + [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXEMPTION, ARTY, %2 | %3", servertime, _vehicle, _playerStats]] remoteExec ["diag_log", 2]; + ["TK NOTIFICATION!\nArty Team Damage."] remoteExec ["hint", _foolish, false]; + }; + }; + if (_vehicle isKindOf "Helicopter" || _vehicle isKindOf "Plane") then + { + [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXEMPTION, AIRCRAFT, %2 | %3", servertime, _vehicle, _playerStats]] remoteExec ["diag_log", 2]; + ["TK NOTIFICATION!\nCAS Team Damage."] remoteExec ["hint", _foolish, false]; + _exitCode = "Inside Aircraft"; + }; + }; + if ( + if (_victimListed) then + { + if (!alive _victim || (_victim getVariable ["ACE_isUnconscious", false])) exitWith {_exitCode = "Victim is a corpse"; true;}; + if (_victim == _foolish) exitWith {_exitCode = "Victim of Suicide"; true;}; + false; + } + ) exitWith {_exitCode}; + + //TODO: if( remoteControlling(_foolish) ) exitWith //For the meantime do either one of the following: login for Zeus, use the memberList addon, disable TKPunish `_player setVariable ["punishment_coolDown", 2, true]; or change your player side to enemy faction` + // //Even then: your controls will be free, and you won't die or lose inventory. If you have debug consol you can self forgive. + _adminType = ["Not","Voted","Logged"] select ([] call BIS_fnc_admin); + if (_adminType != "Not" || isServer ) exitWith + { + [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXEMPTION, ADMIN, %2 | %3", servertime, _adminType, _playerStats]] remoteExec ["diag_log", 2]; + ["TK NOTIFICATION!\nYou damaged a player as admin."] remoteExec ["hint", _foolish, false]; + _exitCode = "Player is Voted or Logged Admin"; "Player is Voted or Logged Admin"; + }; + if (_foolish == theBoss) exitWith + { + [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXEMPTION, COMMANDER | %2", servertime, _playerStats]] remoteExec ["diag_log", 2]; + ["TK NOTIFICATION!\nYou damaged a player as the Supreme Commander."] remoteExec ["hint", _foolish, false]; + if (_victimListed) then {[format["%1 hurt you!",name _foolish]] remoteExec ["hint", _victim, false];}; + _exitCode = "Player is Commander"; + }; + if ([_foolish] call A3A_fnc_isMember) exitWith + { + [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXEMPTION, MEMBER | %2", servertime, _playerStats]] remoteExec ["diag_log", 2]; + ["TK NOTIFICATION!\nYou damaged a player as a trusted member."] remoteExec ["hint", _foolish, false]; + if (_victimListed) then {[format["%1 hurt you!",name _foolish]] remoteExec ["hint", _victim, false];}; + _exitCode = "Player is Member"; + }; + + _pvpNearby = false; + _pvpPerson = objNull; + if (_victimListed) then + { + { + _enemyX = _x; + if (((side _enemyX == Occupants) or (side _enemyX == Invaders)) and {(_enemyX distance _victim < 50)}) exitWith {_pvpNearby = true; _pvpPerson = _enemyX}; + } forEach allPlayers; + }; + if (_pvpNearby) exitWith + { + [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXEMPTION, PVP COMBAT, PVP: %2 | %3", servertime, name _pvpPerson, _playerStats]] remoteExec ["diag_log", 2]; + ["TK NOTIFICATION!\nYou damaged a player around the PVP players."] remoteExec ["hint", _foolish, false]; + _exitCode = "Victim is nearby PVP players"; + }; +}; +if (_exitCode != "") exitWith {_exitCode;}; + +[format ["%1: [Antistasi] | INFO | PUNISHMENT | WARNING | %2", servertime, _playerStats]] remoteExec ["diag_log", 2]; +["TK WARNING!\nWatch your fire!"] remoteExec ["hint", _foolish, false]; +if (_victimListed) then {[format["%1 hurt you!",name _foolish]] remoteExec ["hint", _victim, false];}; + +_punishment_vars set [0,_timeTotal]; +_punishment_vars set [1,_offenceTotal]; +_punishment_vars set [2,_lastOffenceData]; +_foolish setVariable ["punishment_vars", _punishment_vars, true]; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] + +if (_grandOffence < 1) exitWith {"Strike"}; + +[format ["%1: [Antistasi] | INFO | PUNISHMENT | GUILTY | %2", servertime, _playerStats]] remoteExec ["diag_log", 2]; + +[_foolish,_timeTotal] call A3A_fnc_punishment_warden; +"Found Guilty"; diff --git a/A3-Antistasi/functions/Punishment/fn_punishment_addActionForgive.sqf b/A3-Antistasi/functions/Punishment/fn_punishment_addActionForgive.sqf new file mode 100644 index 0000000000..41acfbf8ad --- /dev/null +++ b/A3-Antistasi/functions/Punishment/fn_punishment_addActionForgive.sqf @@ -0,0 +1,15 @@ +params["_detainee"]; + +_addAction_parameters = +[ + "[ADMIN] Forgive Player", + { + params ["_detainee", "_caller", "_actionId", "_arguments"]; + if ([] call BIS_fnc_admin > 0 || isServer) then + { + [_detainee,_actionId] remoteExec ["removeAction",0,false]; + [_detainee,-99999, -1] call A3A_fnc_punishment; + }; + } +]; +[_detainee,_addAction_parameters] remoteExec ["addAction",0,false]; \ No newline at end of file diff --git a/A3-Antistasi/functions/Punishment/fn_punishment_notifyAdmin.sqf b/A3-Antistasi/functions/Punishment/fn_punishment_notifyAdmin.sqf new file mode 100644 index 0000000000..fd281e142b --- /dev/null +++ b/A3-Antistasi/functions/Punishment/fn_punishment_notifyAdmin.sqf @@ -0,0 +1,5 @@ +params["_detainee"]; +if ([] call BIS_fnc_admin > 0 || isServer) then +{ + hint format ["%1 has been found guilty of TK.\nIf you believe this is a mistake, you can forgive him with a scroll-menu action on hist body.\nHe is at the bottom left corner of the map.",name _detainee]; +}; \ No newline at end of file diff --git a/A3-Antistasi/functions/Punishment/fn_punishment_notifyAllAdmins.sqf b/A3-Antistasi/functions/Punishment/fn_punishment_notifyAllAdmins.sqf new file mode 100644 index 0000000000..5576ee8bce --- /dev/null +++ b/A3-Antistasi/functions/Punishment/fn_punishment_notifyAllAdmins.sqf @@ -0,0 +1,2 @@ +params["_detainee"]; +[_detainee] remoteExec ["A3A_fnc_punishment_notifyAdmin",0,false]; \ No newline at end of file diff --git a/A3-Antistasi/functions/Punishment/fn_punishment_release.sqf b/A3-Antistasi/functions/Punishment/fn_punishment_release.sqf new file mode 100644 index 0000000000..3da79cafd4 --- /dev/null +++ b/A3-Antistasi/functions/Punishment/fn_punishment_release.sqf @@ -0,0 +1,21 @@ +params["_detainee"]; + +_punishment_vars = _detainee getVariable ["punishment_vars", [0,0,[0,0],[scriptNull,scriptNull]]]; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] +_punishmentPlatform = _detainee getVariable ["punishment_platform",objNull]; +_lastOffenceData = _punishment_vars select 2; +_punishment_warden = (_punishment_vars select 3) select 0; +_punishment_sentence = (_punishment_vars select 3) select 1; + +if !(scriptDone _punishment_warden || isNull _punishment_warden) then {terminate _punishment_warden;}; +if !(scriptDone _punishment_sentence || isNull _punishment_sentence) then {terminate _punishment_sentence;}; + +_detainee switchMove ""; +_detainee setPos posHQ; +deleteVehicle _punishmentPlatform; + +_punishment_timeTotal = 0; +_punishment_offenceTotal = 0.1; +_lastOffenceData set [1,0]; //[lastTime,overhead] +_punishment_vars = [_punishment_timeTotal,_punishment_offenceTotal,_lastOffenceData,[scriptNull,scriptNull]];; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] +_detainee setVariable ["punishment_vars", _punishment_vars, true]; //[timeTotal,offenceTotal,[wardenHandle,sentenceHandle]] +_detainee setVariable ["punishment_coolDown",0,true]; \ No newline at end of file diff --git a/A3-Antistasi/functions/Punishment/fn_punishment_sentence.sqf b/A3-Antistasi/functions/Punishment/fn_punishment_sentence.sqf new file mode 100644 index 0000000000..e4554c4153 --- /dev/null +++ b/A3-Antistasi/functions/Punishment/fn_punishment_sentence.sqf @@ -0,0 +1,9 @@ +params["_detainee"]; +_punishmentPlatform = createVehicle ["Land_Sun_chair_green_F", [0,0,0], [], 0, "CAN_COLLIDE"]; +_punishmentPlatform enableSimulation false; +_detainee setVariable ["punishment_platform",_punishmentPlatform,true]; + +_pos2D = [random 100,random 100]; + +_punishmentPlatform setPos [_pos2D select 0, _pos2D select 1, -0.25]; +_detainee setPos [_pos2D select 0, _pos2D select 1, 0.25]; \ No newline at end of file diff --git a/A3-Antistasi/functions/Punishment/fn_punishment_warden.sqf b/A3-Antistasi/functions/Punishment/fn_punishment_warden.sqf new file mode 100644 index 0000000000..0bd40fde69 --- /dev/null +++ b/A3-Antistasi/functions/Punishment/fn_punishment_warden.sqf @@ -0,0 +1,20 @@ +params["_detainee","_sentence"]; + +_detainee setVariable ["punishment_coolDown", 2, true]; +_punishment_vars = _detainee getVariable ["punishment_vars", [0,0,[0,0],[scriptNull,scriptNull]]]; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] +_punishment_warden_handle = _thisScript; +_punishment_sentence_handle = [_detainee] call A3A_fnc_punishment_sentence; +[_detainee] call A3A_fnc_punishment_addActionForgive; +[_detainee] call A3A_fnc_punishment_notifyAllAdmins; +///////////////////////// TODO: PLAYER TEAM FORGIVE SCRIPT +_punishment_vars set [3,[_punishment_warden_handle,_punishment_sentence_handle]]; +_detainee setVariable ["punishment_vars", _punishment_vars, true]; //[timeTotal,offenceTotal,_lastOffenceData,[wardenHandle,sentenceHandle]] +_countX = floor _sentence; +while {_countX > 0} do +{ + [ format["Please do not teamkill. Play with the turtles for %1 more seconds.",_countX]] remoteExec ["hintSilent", _detainee, false]; + uiSleep 1; + _countX = _countX -1; +}; +["Enough then."] remoteExec ["hint", _detainee, false]; +[_detainee] call A3A_fnc_punishment_release; \ No newline at end of file diff --git a/A3-Antistasi/functions/REINF/fn_FIAinit.sqf b/A3-Antistasi/functions/REINF/fn_FIAinit.sqf new file mode 100644 index 0000000000..df35ede891 --- /dev/null +++ b/A3-Antistasi/functions/REINF/fn_FIAinit.sqf @@ -0,0 +1,108 @@ +private ["_victim","_killer"]; + +private _unit = _this select 0; + +[_unit] call A3A_fnc_initRevive; +_unit setVariable ["spawner",true,true]; + +_unit allowFleeing 0; +private _typeX = typeOf _unit; +private _skill = (0.6 / skillMult + 0.015 * skillFIA); +_unit setSkill _skill; + +if (_typeX in squadLeaders) then { + _unit setskill ["courage",_skill + 0.2]; + _unit setskill ["commanding",_skill + 0.2]; +}; +if (_typeX in SDKSniper) then { + _unit setskill ["aimingAccuracy",_skill + 0.2]; + _unit setskill ["aimingShake",_skill + 0.2]; +}; + +_unit setUnitTrait ["camouflageCoef",0.8]; +_unit setUnitTrait ["audibleCoef",0.8]; + +// FIAinit is called for liberated refugees/hostages. Don't equip them. +if !(_typeX isEqualTo SDKUnarmed) then { + [_unit, [0,1] select (leader _unit != player)] call A3A_fnc_equipRebel; +}; +_unit selectWeapon (primaryWeapon _unit); + + +private _victim = objNull; +private _killer = objNull; + +if (player == leader _unit) then { + _unit setVariable ["owner",player]; + _unit addEventHandler ["killed", { + _victim = _this select 0; + [_victim] spawn A3A_fnc_postmortem; + _killer = _this select 1; + if !(hasIFA) then {arrayids pushBackUnique (name _victim)}; + if (side _killer == Occupants) then { + _nul = [0.25,0,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; + [-0.25,0] remoteExec ["A3A_fnc_prestige",2]; + } else { + if (side _killer == Invaders) then { + [0,-0.25] remoteExec ["A3A_fnc_prestige",2] + } else { + if (isPlayer _killer) then { + _killer addRating 1000; + }; + }; + }; + _victim setVariable ["spawner",nil,true]; + }]; + if ((typeOf _unit != SDKUnarmed) and !hasIFA) then { + private _idUnit = selectRandom arrayids; + arrayids = arrayids - [_idunit]; + _unit setIdentity _idUnit; + }; + if (captive player) then {[_unit] spawn A3A_fnc_undercoverAI}; + + _unit setVariable ["rearming",false]; + if ((!haveRadio) and !(hasIFA)) then { + while {alive _unit} do { + sleep 10; + if (([player] call A3A_fnc_hasRadio) && (_unit call A3A_fnc_getRadio != "")) exitWith {_unit groupChat format ["This is %1, radiocheck OK",name _unit]}; + if (unitReady _unit) then { + if ((alive _unit) and (_unit distance (getMarkerPos respawnTeamPlayer) > 50) and (_unit distance leader group _unit > 500) and ((vehicle _unit == _unit) or ((typeOf (vehicle _unit)) in arrayCivVeh))) then { + hint format ["%1 lost communication, he will come back with you if possible", name _unit]; + [_unit] join stragglers; + if ((vehicle _unit isKindOf "StaticWeapon") or (isNull (driver (vehicle _unit)))) then {unassignVehicle _unit; [_unit] orderGetIn false}; + _unit doMove position player; + private _timeX = time + 900; + waitUntil {sleep 1;(!alive _unit) or (_unit distance player < 500) or (time > _timeX)}; + if ((_unit distance player >= 500) and (alive _unit)) then {_unit setPos (getMarkerPos respawnTeamPlayer)}; + [_unit] join group player; + }; + }; + }; + }; +} else { + _unit addEventHandler ["killed", { + _victim = _this select 0; + _killer = _this select 1; + [_victim] remoteExec ["A3A_fnc_postmortem",2]; + if ((isPlayer _killer) and (side _killer == teamPlayer)) then { + if (!isMultiPlayer) then { + _nul = [0,20] remoteExec ["A3A_fnc_resourcesFIA",2]; + _killer addRating 1000; + }; + } else { + if (side _killer == Occupants) then { + _nul = [0.25,0,getPos _victim] remoteExec ["A3A_fnc_citySupportChange",2]; + [-0.25,0] remoteExec ["A3A_fnc_prestige",2]; + } else { + if (side _killer == Invaders) then { + [0,-0.25] remoteExec ["A3A_fnc_prestige",2] + } else { + if (isPlayer _killer) then { + _killer addRating 1000; + }; + }; + }; + }; + _victim setVariable ["spawner",nil,true]; + }]; +}; diff --git a/A3-Antistasi/REINF/FIAskillAdd.sqf b/A3-Antistasi/functions/REINF/fn_FIAskillAdd.sqf similarity index 81% rename from A3-Antistasi/REINF/FIAskillAdd.sqf rename to A3-Antistasi/functions/REINF/fn_FIAskillAdd.sqf index 27e1f8da98..83e03ed213 100644 --- a/A3-Antistasi/REINF/FIAskillAdd.sqf +++ b/A3-Antistasi/functions/REINF/fn_FIAskillAdd.sqf @@ -1,7 +1,7 @@ if (player != theBoss) exitWith {hint "Only our Commander has access to this function"}; -if (skillFIA > 19) exitWith {hint "Your troops have the maximum training"}; -if ((skillFIA + 1) > (tierWar*2)) exitWith {hint "You cannot upgrade training in the current War Level"}; +if (skillFIA > 20) exitWith {hint "Your troops have the maximum training"}; +if (skillFIA > (tierWar*2)) exitWith {hint "You cannot upgrade training in the current War Level"}; _resourcesFIA = server getVariable "resourcesFIA"; _costs = 1000 + (1.5*(skillFIA *750)); if (_resourcesFIA < _costs) exitWith {hint format ["You do not have enough money to afford additional training. %1 ā‚¬ needed",_costs]}; diff --git a/A3-Antistasi/REINF/NATOQuadbike.sqf b/A3-Antistasi/functions/REINF/fn_NATOQuadbike.sqf similarity index 100% rename from A3-Antistasi/REINF/NATOQuadbike.sqf rename to A3-Antistasi/functions/REINF/fn_NATOQuadbike.sqf diff --git a/A3-Antistasi/REINF/NATObomb.sqf b/A3-Antistasi/functions/REINF/fn_NATObomb.sqf similarity index 95% rename from A3-Antistasi/REINF/NATObomb.sqf rename to A3-Antistasi/functions/REINF/fn_NATObomb.sqf index 0cc3d71c17..7a956fe222 100644 --- a/A3-Antistasi/REINF/NATObomb.sqf +++ b/A3-Antistasi/functions/REINF/fn_NATObomb.sqf @@ -69,9 +69,9 @@ _wp1 setWaypointType "MOVE"; _wp1 setWaypointSpeed "LIMITED"; _wp1 setWaypointBehaviour "CARELESS"; -if (_typeX == "NAPALM" && napalmEnabled) then {_wp1 setWaypointStatements ["true", "[this,""NAPALM""] execVM 'AI\airbomb.sqf'"]} else {_typeX = "HE"}; -if (_typeX == "CARPET") then {_wp1 setWaypointStatements ["true", "[this,""CARPET""] execVM 'AI\airbomb.sqf'"]}; -if (_typeX == "HE") then {_wp1 setWaypointStatements ["true", "[this] execVM 'AI\airbomb.sqf'"]}; +if (_typeX == "NAPALM" && napalmEnabled) then {_wp1 setWaypointStatements ["true", "[this,""NAPALM""] spawn A3A_fnc_airbomb"]} else {_typeX = "HE"}; +if (_typeX == "CARPET") then {_wp1 setWaypointStatements ["true", "[this,""CARPET""] spawn A3A_fnc_airbomb"]}; +if (_typeX == "HE") then {_wp1 setWaypointStatements ["true", "[this,""HE""] spawn A3A_fnc_airbomb"]}; diff --git a/A3-Antistasi/REINF/addBombRun.sqf b/A3-Antistasi/functions/REINF/fn_addBombRun.sqf similarity index 100% rename from A3-Antistasi/REINF/addBombRun.sqf rename to A3-Antistasi/functions/REINF/fn_addBombRun.sqf diff --git a/A3-Antistasi/REINF/addFIAsquadHC.sqf b/A3-Antistasi/functions/REINF/fn_addFIAsquadHC.sqf similarity index 98% rename from A3-Antistasi/REINF/addFIAsquadHC.sqf rename to A3-Antistasi/functions/REINF/fn_addFIAsquadHC.sqf index 059084f8d2..ab28df0b26 100644 --- a/A3-Antistasi/REINF/addFIAsquadHC.sqf +++ b/A3-Antistasi/functions/REINF/fn_addFIAsquadHC.sqf @@ -126,7 +126,7 @@ if (_esinf) then } else { - _pos = position _road findEmptyPosition [1,30,vehSDKTruck]; + _pos = position _road findEmptyPosition [1,40,vehSDKTruck]; _vehicle = if (_typeGroup == staticAAteamPlayer) then { if (activeGREF) then {[_pos, 0,"rhsgref_ins_g_ural_Zu23", teamPlayer] call bis_fnc_spawnvehicle} else {[_pos, 0,vehSDKTruck, teamPlayer] call bis_fnc_spawnvehicle}; @@ -142,7 +142,7 @@ else if ((!activeGREF) and (_typeGroup == staticAAteamPlayer)) then { - _pos = _pos findEmptyPosition [1,30,SDKMortar]; + _pos = _pos findEmptyPosition [10,40,SDKMortar]; _morty = _groupX createUnit [staticCrewTeamPlayer, _pos, [],0, "NONE"]; _mortarX = _typeGroup createVehicle _pos; _nul = [_mortarX] call A3A_fnc_AIVEHinit; diff --git a/A3-Antistasi/REINF/addFIAveh.sqf b/A3-Antistasi/functions/REINF/fn_addFIAveh.sqf similarity index 100% rename from A3-Antistasi/REINF/addFIAveh.sqf rename to A3-Antistasi/functions/REINF/fn_addFIAveh.sqf diff --git a/A3-Antistasi/REINF/addSquadVeh.sqf b/A3-Antistasi/functions/REINF/fn_addSquadVeh.sqf similarity index 100% rename from A3-Antistasi/REINF/addSquadVeh.sqf rename to A3-Antistasi/functions/REINF/fn_addSquadVeh.sqf diff --git a/A3-Antistasi/REINF/autoGarrison.sqf b/A3-Antistasi/functions/REINF/fn_autoGarrison.sqf similarity index 100% rename from A3-Antistasi/REINF/autoGarrison.sqf rename to A3-Antistasi/functions/REINF/fn_autoGarrison.sqf diff --git a/A3-Antistasi/REINF/Building/build.sqf b/A3-Antistasi/functions/REINF/fn_build.sqf similarity index 96% rename from A3-Antistasi/REINF/Building/build.sqf rename to A3-Antistasi/functions/REINF/fn_build.sqf index 94fc935c51..1a4ad95ab1 100644 --- a/A3-Antistasi/REINF/Building/build.sqf +++ b/A3-Antistasi/functions/REINF/fn_build.sqf @@ -169,10 +169,6 @@ if ((build_type == "SB") or (build_type == "CB")) then if (_leave) exitWith {hint format ["%1",_textX]}; -//hint "Select a place to build the required asset and press SPACE to start the construction.\n\nHit ESC to exit"; -//garageVeh = _classX createVehicleLocal [0,0,0]; -//bought = 0; - build_handleDamageHandler = player addEventHandler ["HandleDamage",{[] call A3A_fnc_vehPlacementCancel;}]; //START PLACEMENT HERE diff --git a/A3-Antistasi/REINF/Building/buildCreateVehicleCallback.sqf b/A3-Antistasi/functions/REINF/fn_buildCreateVehicleCallback.sqf similarity index 97% rename from A3-Antistasi/REINF/Building/buildCreateVehicleCallback.sqf rename to A3-Antistasi/functions/REINF/fn_buildCreateVehicleCallback.sqf index 1909cf8cac..71badd81bf 100644 --- a/A3-Antistasi/REINF/Building/buildCreateVehicleCallback.sqf +++ b/A3-Antistasi/functions/REINF/fn_buildCreateVehicleCallback.sqf @@ -1,4 +1,6 @@ -params ["_structureType", "_positionX", "_dir"]; +params ["_structureType", "_posASL", "_dir"]; + +private _positionX = ASLtoATL _posASL; private _isPlayer = if (player == build_engineerSelected) then {true} else {false}; private _timeOut = time + 30; diff --git a/A3-Antistasi/REINF/buildMinefield.sqf b/A3-Antistasi/functions/REINF/fn_buildMinefield.sqf similarity index 99% rename from A3-Antistasi/REINF/buildMinefield.sqf rename to A3-Antistasi/functions/REINF/fn_buildMinefield.sqf index 973c8af1c0..e3dd794bb6 100644 --- a/A3-Antistasi/REINF/buildMinefield.sqf +++ b/A3-Antistasi/functions/REINF/fn_buildMinefield.sqf @@ -102,7 +102,7 @@ if ((_truckX distance _positionTel < 50) and ({alive _x} count units _groupX > 0 }; theBoss hcRemoveGroup _groupX; [petros,"hint","Engineer Team deploying mines."] remoteExec ["A3A_fnc_commsMP",[teamPlayer,civilian]]; - _nul = [leader _groupX, _mrk, "SAFE","SPAWNED", "SHOWMARKER"] execVM "scripts\UPSMON.sqf"; + _nul = [leader _groupX, _mrk, "SAFE","SPAWNED", "SHOWMARKER"] execVM "scripts\UPSMON.sqf";//TODO need delete UPSMON link sleep 30*_quantity; if ((alive _truckX) and ({alive _x} count units _groupX > 0)) then { @@ -145,4 +145,3 @@ else deleteVehicle _truckX; deleteMarker _mrk; }; - diff --git a/A3-Antistasi/REINF/enemyNearCheck.sqf b/A3-Antistasi/functions/REINF/fn_enemyNearCheck.sqf similarity index 100% rename from A3-Antistasi/REINF/enemyNearCheck.sqf rename to A3-Antistasi/functions/REINF/fn_enemyNearCheck.sqf diff --git a/A3-Antistasi/functions/REINF/fn_equipRebel.sqf b/A3-Antistasi/functions/REINF/fn_equipRebel.sqf new file mode 100644 index 0000000000..37b1a41bba --- /dev/null +++ b/A3-Antistasi/functions/REINF/fn_equipRebel.sqf @@ -0,0 +1,161 @@ +// Fully equips a rebel infantry unit based on their class and unlocked gear +// _recruitType param allows some variation based on recruiting method: 0 recruit, 1 HC squad, 2 garrison + +params ["_unit", "_recruitType"]; + +// Mostly exists because BIS_fnc_addWeapon won't use backpack space properly with AT launchers +private _addWeaponAndMags = { + params["_unit", "_weapon", "_magCount"]; + + if !(isClass (configFile / "CfgWeapons" / _weapon)) exitwith { + [1, format ["Bad weapon class: %1", _weapon], "fn_equipRebel"] call A3A_log; // should probably log server-side + }; + + _unit addWeapon _weapon; + private _magazine = getArray (configFile / "CfgWeapons" / _weapon / "magazines") select 0; + _unit addSecondaryWeaponItem _magazine; + _unit addMagazines [_magazine, _magCount-1]; +}; + + +// Clear everything except standard items and empty uniform +// Actually fast, unlike a setUnitLoadout with a full loadout +_unit setUnitLoadout [ [], [], [], [uniform _unit, []], [], [], "", "", [], + ["ItemMap","","","ItemCompass","ItemWatch",""] ]; // no GPS, radio, NVG +if (haveRadio) then {_unit linkItem "ItemRadio"}; + +// Removed for the moment because I'm not sure what the intentions are for rebel uniforms +// forceadd required for greenfor vanilla because allRebelUniforms has the blufor guerilla uniforms +//_unit forceAddUniform (if (!activeGREF) then { selectRandom allRebelUniforms } else { uniform _unit }); + + +// Chance of picking armored rather than random vests and headgear, rising with unlocked gear counts +if !(unlockedHeadgear isEqualTo []) then { + if (count unlockedArmoredHeadgear * 20 < random(100)) then { _unit addHeadgear (selectRandom unlockedHeadgear) } + else { _unit addHeadgear (selectRandom unlockedArmoredHeadgear) }; +}; +if !(unlockedVests isEqualTo []) then { + if (count unlockedArmoredVests * 20 < random(100)) then { _unit addVest (selectRandom unlockedVests) } + else { _unit addVest (selectRandom unlockedArmoredVests); }; +}; +if !(unlockedBackpacks isEqualTo []) then { _unit addBackpack (selectRandom unlockedBackpacks) }; + + +_unit addItemToUniform "FirstAidKit"; +_unit addItemToUniform "FirstAidKit"; + +// this should be improved by categorising grenades properly +private _unlockedSmokes = allSmokeGrenades arrayIntersect unlockedMagazines; +if !(_unlockedSmokes isEqualTo []) then { _unit addMagazines [selectRandom _unlockedSmokes, 2] }; + + +private _unitClass = typeOf _unit; + +switch (true) do { + case (_unitClass in SDKSniper): { + if (count unlockedSniperRifles > 0) then { + [_unit, selectRandom unlockedSniperRifles, 8] call _addWeaponAndMags; + if (count unlockedOptics > 0) then { + private _compatibleX = [primaryWeapon _unit] call BIS_fnc_compatibleItems; + private _potentials = unlockedOptics select {_x in _compatibleX}; + if (count _potentials > 0) then {_unit addPrimaryWeaponItem (_potentials select 0)}; + }; + } else { + [_unit,unlockedRifles] call A3A_fnc_randomRifle; + }; + }; + case (_unitClass in SDKMil): { + [_unit,unlockedRifles] call A3A_fnc_randomRifle; + // Adding AA launchers to garrison riflemen because explosives guys can't currently be purchased there + if (_recruitType == 2 && {count unlockedAA > 0}) then { + [_unit, selectRandom unlockedAA, 1] call _addWeaponAndMags; + }; + }; + case (_unitClass in SDKMG): { + [_unit,unlockedMachineGuns] call A3A_fnc_randomRifle; + }; + case (_unitClass in SDKGL): { + [_unit,unlockedGrenadeLaunchers] call A3A_fnc_randomRifle; + }; + case (_unitClass in SDKExp): { + [_unit,unlockedRifles] call A3A_fnc_randomRifle; + _unit setUnitTrait ["explosiveSpecialist",true]; + _unit addItemToBackpack "Toolkit"; + if (count unlockedAA > 0) then { + [_unit, selectRandom unlockedAA, 1] call _addWeaponAndMags; + }; + // TODO: explosives. Not that they know what to do with them. + }; + case (_unitClass in SDKEng): { + [_unit,unlockedRifles] call A3A_fnc_randomRifle; + _unit setUnitTrait ["engineer",true]; + _unit addItemToBackpack "Toolkit"; + }; + case (_unitClass in SDKMedic): { + [_unit,unlockedSMGs] call A3A_fnc_randomRifle; + _unit setUnitTrait ["medic",true]; + _unit addItemToBackpack "Medikit"; + for "_i" from 1 to 10 do {_unit addItemToBackpack "FirstAidKit"}; + }; + case (_unitClass in SDKATman): { + [_unit,unlockedRifles] call A3A_fnc_randomRifle; + if !(unlockedAT isEqualTo []) then { + [_unit, selectRandom unlockedAT, 4] call _addWeaponAndMags; + } else { + if (hasIFA) then { + [_unit, "LIB_PTRD", 10] call _addWeaponAndMags; + }; + }; + }; + // squad leaders and + case (_unitClass in squadLeaders): { + [_unit,unlockedRifles] call A3A_fnc_randomRifle; + if (_recruitType == 1) then {_unit linkItem "ItemRadio"}; + }; + case (_unitClass isEqualTo staticCrewTeamPlayer): { + [_unit,unlockedRifles] call A3A_fnc_randomRifle; + if (_recruitType == 1) then {_unit linkItem "ItemRadio"}; + }; + default { + [_unit,unlockedSMGs] call A3A_fnc_randomRifle; + [1, format["Unknown unit class: %1", _unitClass], "fn_equipRebel"] call A3A_fnc_log; + }; +}; + +if (!hasIFA && sunOrMoon < 1) then { + if !(haveNV) then { + // horrible, although at least it stops once you unlock NV + private _flashlights = allLightAttachments arrayIntersect unlockedItems; + if !(_flashlights isEqualTo []) then { + _flashlights = _flashlights arrayIntersect ((primaryWeapon _unit) call BIS_fnc_compatibleItems); + if !(_flashlights isEqualTo []) then { + private _flashlight = selectRandom _flashlights; + _unit addPrimaryWeaponItem _flashlight; + _unit assignItem _flashlight; + _unit enableGunLights _flashlight; + }; + }; + } else { + // inclined to hand these out even in daytime, but whatever + _unit linkItem (selectRandom unlockedNVGs); + +/* Removed because it's pretty daft to use IR pointers when all your enemies have NV + private _pointers = allLaserAttachments arrayIntersect unlockedItems; + if !(_pointers isEqualTo []) then { + _pointers = _pointers arrayIntersect ((primaryWeapon _unit) call BIS_fnc_compatibleItems); + if !(_pointers isEqualTo []) then { + _pointer = selectRandom _pointers; + _unit addPrimaryWeaponItem _pointer; + _unit assignItem _pointer; + _unit enableIRLasers true; + }; + }; +*/ + }; +}; + +// remove backpack if empty, otherwise squad troops will throw it on the ground +if (backpackItems _unit isEqualTo []) then { removeBackpack _unit }; + +[3, format["Class %1, type %2, loadout %3", _unitClass, _recruitType, str (getUnitLoadout _unit)], "fn_equipRebel"] call A3A_fnc_log; + diff --git a/A3-Antistasi/REINF/garrisonAdd.sqf b/A3-Antistasi/functions/REINF/fn_garrisonAdd.sqf similarity index 100% rename from A3-Antistasi/REINF/garrisonAdd.sqf rename to A3-Antistasi/functions/REINF/fn_garrisonAdd.sqf diff --git a/A3-Antistasi/REINF/garrisonDialog.sqf b/A3-Antistasi/functions/REINF/fn_garrisonDialog.sqf similarity index 100% rename from A3-Antistasi/REINF/garrisonDialog.sqf rename to A3-Antistasi/functions/REINF/fn_garrisonDialog.sqf diff --git a/A3-Antistasi/REINF/postmortem.sqf b/A3-Antistasi/functions/REINF/fn_postmortem.sqf similarity index 100% rename from A3-Antistasi/REINF/postmortem.sqf rename to A3-Antistasi/functions/REINF/fn_postmortem.sqf diff --git a/A3-Antistasi/REINF/reDress.sqf b/A3-Antistasi/functions/REINF/fn_reDress.sqf similarity index 71% rename from A3-Antistasi/REINF/reDress.sqf rename to A3-Antistasi/functions/REINF/fn_reDress.sqf index 9d38d84ac0..819c2675e0 100644 --- a/A3-Antistasi/REINF/reDress.sqf +++ b/A3-Antistasi/functions/REINF/fn_reDress.sqf @@ -3,6 +3,6 @@ private ["_unit"]; _unit = _this select 0; -_unit addUniform (selectRandom banditUniforms); +_unit addUniform (selectRandom allRebelUniforms); _unit addItemToUniform "FirstAidKit"; diff --git a/A3-Antistasi/REINF/reinfplayer.sqf b/A3-Antistasi/functions/REINF/fn_reinfPlayer.sqf similarity index 69% rename from A3-Antistasi/REINF/reinfplayer.sqf rename to A3-Antistasi/functions/REINF/fn_reinfPlayer.sqf index 4b7818bbe9..954a9b1280 100644 --- a/A3-Antistasi/REINF/reinfplayer.sqf +++ b/A3-Antistasi/functions/REINF/fn_reinfPlayer.sqf @@ -1,7 +1,4 @@ -if (not([player] call A3A_fnc_isMember)) exitWith {hint "Only Server Members can recruit AI units"}; -private ["_checkX","_hr","_typeUnit","_costs","_resourcesFIA","_unit"]; - -//if (!allowPlayerRecruit) exitWith {hint "Server is very loaded. \nWait one minute or change FPS settings in order to fulfill this request"}; +if !([player] call A3A_fnc_isMember) exitWith {hint "Only Server Members can recruit AI units"}; if (recruitCooldown > time) exitWith {hint format ["You need to wait %1 seconds to be able to recruit units again",round (recruitCooldown - time)]}; @@ -11,37 +8,31 @@ if ([player,300] call A3A_fnc_enemyNearCheck) exitWith {Hint "You cannot Recruit if (player != leader group player) exitWith {hint "You cannot recruit units as you are not your group leader"}; -_hr = server getVariable "hr"; +private _hr = server getVariable "hr"; if (_hr < 1) exitWith {hint "You do not have enough HR for this request"}; -_arraytypeUnit = _this select 0; -_typeUnit = _arraytypeUnit select 0; -_costs = server getVariable _typeUnit; +private _arraytypeUnit = _this select 0; +private _typeUnit = _arraytypeUnit select 0; +private _costs = server getVariable _typeUnit; +private _resourcesFIA = 0; if (!isMultiPlayer) then {_resourcesFIA = server getVariable "resourcesFIA"} else {_resourcesFIA = player getVariable "moneyX";}; if (_costs > _resourcesFIA) exitWith {hint format ["You do not have enough money for this kind of unit (%1 ā‚¬ needed)",_costs]}; - if ((count units group player) + (count units stragglers) > 9) exitWith {hint "Your squad is full or you have too many scattered units with no radio contact"}; -if (random 20 <= skillFIA) then {_typeUnit = _arraytypeUnit select 1}; -_unit = group player createUnit [_typeUnit, position player, [], 0, "NONE"]; -if (!isMultiPlayer) then - { +private _unit = group player createUnit [_typeUnit, position player, [], 0, "NONE"]; + +if (!isMultiPlayer) then { _nul = [-1, - _costs] remoteExec ["A3A_fnc_resourcesFIA",2]; - } -else - { +} else { _nul = [-1, 0] remoteExec ["A3A_fnc_resourcesFIA",2]; [- _costs] call A3A_fnc_resourcesPlayer; ["moneyX",player getVariable ["moneyX",0]] call fn_SaveStat; hint "Soldier Recruited.\n\nRemember: if you use the group menu to switch groups you will lose control of your recruited AI"; - }; +}; [_unit] spawn A3A_fnc_FIAinit; _unit disableAI "AUTOCOMBAT"; sleep 1; petros directSay "SentGenReinforcementsArrived"; - - - diff --git a/A3-Antistasi/REINF/stealStatic.sqf b/A3-Antistasi/functions/REINF/fn_stealStatic.sqf similarity index 100% rename from A3-Antistasi/REINF/stealStatic.sqf rename to A3-Antistasi/functions/REINF/fn_stealStatic.sqf diff --git a/A3-Antistasi/REINF/vehStats.sqf b/A3-Antistasi/functions/REINF/fn_vehStats.sqf similarity index 100% rename from A3-Antistasi/REINF/vehStats.sqf rename to A3-Antistasi/functions/REINF/fn_vehStats.sqf diff --git a/A3-Antistasi/REINF/vehiclePrice.sqf b/A3-Antistasi/functions/REINF/fn_vehiclePrice.sqf old mode 100755 new mode 100644 similarity index 100% rename from A3-Antistasi/REINF/vehiclePrice.sqf rename to A3-Antistasi/functions/REINF/fn_vehiclePrice.sqf diff --git a/A3-Antistasi/functions/Reinforcements/fn_landHelicopter.sqf b/A3-Antistasi/functions/Reinforcements/fn_landHelicopter.sqf new file mode 100644 index 0000000000..5a14292956 --- /dev/null +++ b/A3-Antistasi/functions/Reinforcements/fn_landHelicopter.sqf @@ -0,0 +1,79 @@ +//params ["_helicopter", "_helipad"]; + +_pos = (getPosASL pad); +_dir = getDir pad; +_dirVector = vectorDir pad; +_dirVector2D = +_dirVector; +_dirVector2D set [2, 0]; +_upVector = vectorUp pad; + +_heliPos = getPosASL heli; +_heliSpeed = velocity heli; + +_heliHeigth = (_heliPos select 2) - (_pos select 2); + +//That has to be based on the velocity +_prePos = _pos vectorAdd (([0,0,1] vectorMultiply (_heliHeigth + 5)) vectorAdd (_dirVector2D vectorMultiply -15)); +_secPos = _pos vectorAdd (([0,0,1] vectorMultiply _heliHeigth) vectorAdd (_dirVector2D vectorMultiply - 5)); +_midDir = [0,0,1] vectorAdd (_dirVector2D vectorMultiply 2); +_midUp = _dirVector2D vectorAdd ([0,0,1] vectorMultiply 2); + +//Needs to be based on velocity +tArray = [time, time + 3, time + 5, time + 20]; +posArray = [_heliPos, _prePos, _secPos, _pos]; +speedArray = [_heliSpeed, (_dirVector2D vectorMultiply 10), [0,0,-3], [0,0,0]]; +dirArray = [vectorDir heli, _midDir, _dirVector2D, _dirVector]; +upArray = [vectorUp heli, _midUp, [0,0,1], _upVector]; +counter = 1; + + + +{ + _x disableAI "MOVE"; +} forEach (crew heli); + +onEachFrame +{ + _t1 = tArray select (counter - 1); + _t2 = tArray select counter; + _interval = linearConversion [_t1, _t2, time, 0, 1]; + + _curPos = posArray select (counter - 1); + _nextPos = posArray select counter; + + _curSpeed = speedArray select (counter - 1); + _nextSpeed = speedArray select counter; + + _curDir = dirArray select (counter - 1); + _nextDir = dirArray select counter; + + _curUp = upArray select (counter - 1); + _nextUp = upArray select counter; + + heli setVelocityTransformation + [ + _curPos, + _nextPos, + _curSpeed, + _nextSpeed, + _curDir, + _nextDir, + _curUp, + _nextUp, + _interval + ]; + + if((((getPosASL heli) select 2) - ((getPosASL pad) select 2)) < 10) then + { + heli engineOn false; + }; + + if(time > (tArray select counter)) then + { + counter = counter + 1; + if(counter >= count tArray) then + { + onEachFrame {}; + }; + }; +}; diff --git a/A3-Antistasi/Revive/actionRevive.sqf b/A3-Antistasi/functions/Revive/fn_actionRevive.sqf similarity index 91% rename from A3-Antistasi/Revive/actionRevive.sqf rename to A3-Antistasi/functions/Revive/fn_actionRevive.sqf index 1877a139c7..201391adb1 100644 --- a/A3-Antistasi/Revive/actionRevive.sqf +++ b/A3-Antistasi/functions/Revive/fn_actionRevive.sqf @@ -18,12 +18,16 @@ if !(alive _cured) exitWith _healed }; if !([_medicX] call A3A_fnc_canFight) exitWith {if (_player) then {hint "You are not able to revive anyone"};_healed}; -if ((not("FirstAidKit" in (items _medicX))) and (not("FirstAidKit" in (items _cured)))) exitWith - { - if (_player) then {hint format ["You or %1 need a First Aid Kit to be able to revive",name _cured]}; - if (_inPlayerGroup) then {_medicX groupChat "I'm out of FA kits!"}; +if ( + (!([_medicX] call A3A_fnc_isMedic && "Medikit" in (items _medicX))) && + {(!("FirstAidKit" in (items _medicX))) && + {(!("FirstAidKit" in (items _cured)))}} + ) exitWith +{ + if (_player) then {hint format ["You or %1 need a First Aid Kit or Medikit to be able to revive",name _cured]}; + if (_inPlayerGroup) then {_medicX groupChat "I'm out of FA kits and I have no Medikit!"}; _healed - }; +}; if ((not("FirstAidKit" in (items _medicX))) and !(_medicX canAdd "FirstAidKit")) exitWith { if (_player) then {hint format ["%1 has a First Aid Kit but you do not have enough space in your inventory to use it",name _cured]}; @@ -54,11 +58,14 @@ if (_player) then _cured setVariable ["helped",_medicX,true]; }; _medicX setVariable ["helping",true]; -if (not("FirstAidKit" in (items _medicX))) then - { +if ( + (!("FirstAidKit" in (items _medicX))) && + {!("Medikit" in (items _medicX))} + ) then +{ _medicX addItem "FirstAidKit"; _cured removeItem "FirstAidKit"; - }; +}; _timer = if ([_cured] call A3A_fnc_fatalWound) then { time + 35 + (random 20) @@ -91,30 +98,33 @@ else _actionX = _medicX addAction ["Cancel Revive", {(_this select 1) setVariable ["cancelRevive",true]},nil,6,true,true,"","(_this getVariable [""helping"",false]) and (isPlayer _this)"]; }; _medicX addEventHandler ["AnimDone", - { +{ private _medicX = _this select 0; private _cured = _medicX getVariable ["cured",objNull]; if (([_medicX] call A3A_fnc_canFight) and (time <= (_medicX getVariable ["timeToHeal",time])) and !(_medicX getVariable ["cancelRevive",false]) and (alive _cured) and (_cured getVariable ["INCAPACITATED",false]) and (_medicX == vehicle _medicX)) then - { + { _medicX playMoveNow selectRandom medicAnims; - } + } else - { + { _medicX removeEventHandler ["AnimDone",_thisEventHandler]; _medicX setVariable ["animsDone",true]; if (([_medicX] call A3A_fnc_canFight) and !(_medicX getVariable ["cancelRevive",false]) and (_medicX == vehicle _medicX) and (alive _cured)) then - { + { if (_cured getVariable ["INCAPACITATED",false]) then - { + { _medicX setVariable ["success",true]; //_cured setVariable ["INCAPACITATED",false,true]; //_medicX action ["HealSoldier",_cured]; if ([_medicX] call A3A_fnc_isMedic) then {_cured setDamage 0.25} else {_cured setDamage 0.5}; - _medicX removeItem "FirstAidKit"; - }; + if(!("Medikit" in (items _medicX))) then + { + _medicX removeItem "FirstAidKit"; + }; }; }; - }]; + }; +}]; waitUntil {sleep 0.5; (_medicX getVariable ["animsDone",true])}; _medicX setVariable ["animsDone",nil]; _medicX setVariable ["timeToHeal",nil]; @@ -164,4 +174,4 @@ else if (_inPlayerGroup) then {_medicX groupChat "Revive failed"}; }; -_healed \ No newline at end of file +_healed diff --git a/A3-Antistasi/Revive/carry.sqf b/A3-Antistasi/functions/Revive/fn_carry.sqf similarity index 100% rename from A3-Antistasi/Revive/carry.sqf rename to A3-Antistasi/functions/Revive/fn_carry.sqf diff --git a/A3-Antistasi/Revive/fatalWound.sqf b/A3-Antistasi/functions/Revive/fn_fatalWound.sqf similarity index 100% rename from A3-Antistasi/Revive/fatalWound.sqf rename to A3-Antistasi/functions/Revive/fn_fatalWound.sqf diff --git a/A3-Antistasi/Revive/handleDamage.sqf b/A3-Antistasi/functions/Revive/fn_handleDamage.sqf similarity index 85% rename from A3-Antistasi/Revive/handleDamage.sqf rename to A3-Antistasi/functions/Revive/fn_handleDamage.sqf index 0505bf520d..863d5e6a75 100644 --- a/A3-Antistasi/Revive/handleDamage.sqf +++ b/A3-Antistasi/functions/Revive/fn_handleDamage.sqf @@ -57,17 +57,14 @@ if (_part == "") then { if (isPlayer _injurer) then { - if (tkPunish) then + if ((_injurer != _unit) and (side group _injurer == teamPlayer)/* and (_unit getVariable ["teamPlayer",false])*/ and (side group _unit == teamPlayer)) then { - if ((_injurer != _unit) and (side _injurer == teamPlayer)/* and (_unit getVariable ["teamPlayer",false])*/ and (side group _unit == teamPlayer)) then + _uniform = uniform _unit; + _typeSoldier = getText (configfile >> "CfgWeapons" >> _uniform >> "ItemInfo" >> "uniformClass"); + _sideType = getNumber (configfile >> "CfgVehicles" >> _typeSoldier >> "side"); + if ((_sideType != 1) and (_sideType != 0)) then { - _uniform = uniform _unit; - _typeSoldier = getText (configfile >> "CfgWeapons" >> _uniform >> "ItemInfo" >> "uniformClass"); - _sideType = getNumber (configfile >> "CfgVehicles" >> _typeSoldier >> "side"); - if ((_sideType != 1) and (_sideType != 0)) then - { - [_injurer, 20, 0.34] remoteExec ["A3A_fnc_punishment",_injurer]; - }; + [_injurer, 20, 0.34, _unit] remoteExec ["A3A_fnc_punishment",_injurer]; }; }; }; diff --git a/A3-Antistasi/Revive/handleDamageAAF.sqf b/A3-Antistasi/functions/Revive/fn_handleDamageAAF.sqf similarity index 100% rename from A3-Antistasi/Revive/handleDamageAAF.sqf rename to A3-Antistasi/functions/Revive/fn_handleDamageAAF.sqf diff --git a/A3-Antistasi/Revive/initRevive.sqf b/A3-Antistasi/functions/Revive/fn_initRevive.sqf similarity index 100% rename from A3-Antistasi/Revive/initRevive.sqf rename to A3-Antistasi/functions/Revive/fn_initRevive.sqf diff --git a/A3-Antistasi/Revive/isMedic.sqf b/A3-Antistasi/functions/Revive/fn_isMedic.sqf similarity index 100% rename from A3-Antistasi/Revive/isMedic.sqf rename to A3-Antistasi/functions/Revive/fn_isMedic.sqf diff --git a/A3-Antistasi/Revive/respawn.sqf b/A3-Antistasi/functions/Revive/fn_respawn.sqf similarity index 100% rename from A3-Antistasi/Revive/respawn.sqf rename to A3-Antistasi/functions/Revive/fn_respawn.sqf diff --git a/A3-Antistasi/Revive/unconscious.sqf b/A3-Antistasi/functions/Revive/fn_unconscious.sqf similarity index 97% rename from A3-Antistasi/Revive/unconscious.sqf rename to A3-Antistasi/functions/Revive/fn_unconscious.sqf index cd9dcf9922..3dfd57a2e4 100644 --- a/A3-Antistasi/Revive/unconscious.sqf +++ b/A3-Antistasi/functions/Revive/fn_unconscious.sqf @@ -95,7 +95,7 @@ if (_isPlayer) then while {(time < _bleedOut) and (_unit getVariable ["INCAPACITATED",false]) and (alive _unit) and (!(_unit getVariable ["respawning",false]))} do { - if (random 10 < 1) then {playSound3D [(injuredSounds call BIS_fnc_selectRandom),_unit,false, getPosASL _unit, 1, 1, 50];}; + if (random 10 < 1) then {playSound3D [(selectRandom injuredSounds),_unit,false, getPosASL _unit, 1, 1, 50];}; if (_isPlayer) then { _helped = _unit getVariable ["helped",objNull]; diff --git a/A3-Antistasi/Revive/unconsciousAAF.sqf b/A3-Antistasi/functions/Revive/fn_unconsciousAAF.sqf similarity index 94% rename from A3-Antistasi/Revive/unconsciousAAF.sqf rename to A3-Antistasi/functions/Revive/fn_unconsciousAAF.sqf index 4f04ed7b21..953d4f2931 100644 --- a/A3-Antistasi/Revive/unconsciousAAF.sqf +++ b/A3-Antistasi/functions/Revive/fn_unconsciousAAF.sqf @@ -32,7 +32,7 @@ _groupX = group _unit; while {(time < _bleedOut) and (_unit getVariable ["INCAPACITATED",false]) and (alive _unit)} do { - if (random 10 < 1) then {playSound3D [(injuredSounds call BIS_fnc_selectRandom),_unit,false, getPosASL _unit, 1, 1, 50];}; + if (random 10 < 1) then {playSound3D [(selectRandom injuredSounds),_unit,false, getPosASL _unit, 1, 1, 50];}; _helped = _unit getVariable ["helped",objNull]; if (isNull _helped) then {[_unit] call A3A_fnc_askHelp;}; sleep 3; @@ -52,12 +52,15 @@ if (time >= _bleedOut) exitWith if (isPlayer _injurer) then { [1,_injurer] call A3A_fnc_playerScoreAdd; - } + }; + //Again, No artificial boosting of skill because you killed someone + /* else { _skill = skill _injurer; [_injurer,_skill + 0.05] remoteExec ["setSkill",_injurer]; }; + */ [-1,1,getPos _unit] remoteExec ["A3A_fnc_citySupportChange",2]; switch (_sideX) do { diff --git a/A3-Antistasi/getRunwayTakeoffForAirportMarker.sqf b/A3-Antistasi/functions/Runways/fn_getRunwayTakeoffForAirportMarker.sqf similarity index 100% rename from A3-Antistasi/getRunwayTakeoffForAirportMarker.sqf rename to A3-Antistasi/functions/Runways/fn_getRunwayTakeoffForAirportMarker.sqf diff --git a/A3-Antistasi/runwayInfo.sqf b/A3-Antistasi/functions/Runways/fn_runwayInfo.sqf similarity index 94% rename from A3-Antistasi/runwayInfo.sqf rename to A3-Antistasi/functions/Runways/fn_runwayInfo.sqf index 9d27a23a14..3a8180033b 100644 --- a/A3-Antistasi/runwayInfo.sqf +++ b/A3-Antistasi/functions/Runways/fn_runwayInfo.sqf @@ -32,7 +32,7 @@ private _runwayIlsPositions = _runways apply { //Make sure we're grounded. _position set [2, 0.1]; //Necessary because the map 'Enoch' has a damn typo in its IlsPosition, where one value is a string. - _position apply {if (typeName _x == typeName "") then {parseNumber _x} else {_x}}; + _position apply {if (_x isEqualType "") then {parseNumber _x} else {_x}}; }; private _runwayTakeoffDirs = _runways apply { private _ilsDir = getArray (_x >> "ilsDirection"); diff --git a/A3-Antistasi/statSave/loadPlayer.sqf b/A3-Antistasi/functions/Save/fn_loadPlayer.sqf similarity index 100% rename from A3-Antistasi/statSave/loadPlayer.sqf rename to A3-Antistasi/functions/Save/fn_loadPlayer.sqf diff --git a/A3-Antistasi/functions/Save/fn_loadPreviousSession.sqf b/A3-Antistasi/functions/Save/fn_loadPreviousSession.sqf new file mode 100644 index 0000000000..e86839a22e --- /dev/null +++ b/A3-Antistasi/functions/Save/fn_loadPreviousSession.sqf @@ -0,0 +1,4 @@ +[] call A3A_fnc_loadPlayer; + + + diff --git a/A3-Antistasi/functions/Save/fn_loadServer.sqf b/A3-Antistasi/functions/Save/fn_loadServer.sqf new file mode 100644 index 0000000000..8417fa688c --- /dev/null +++ b/A3-Antistasi/functions/Save/fn_loadServer.sqf @@ -0,0 +1,202 @@ +diag_log format ["%1: [Antistasi] | INFO | loadServer Starting.",servertime]; +if (isServer) then { + diag_log format ["%1: [Antistasi] | INFO | Starting Persistent Load.",servertime]; + petros allowdamage false; + + ["outpostsFIA"] call fn_LoadStat; publicVariable "outpostsFIA"; + ["mrkSDK"] call fn_LoadStat; + ["mrkCSAT"] call fn_LoadStat; + ["difficultyX"] call fn_LoadStat; + ["gameMode"] call fn_LoadStat; + ["destroyedSites"] call fn_LoadStat; + ["minesX"] call fn_LoadStat; + ["countCA"] call fn_LoadStat; + ["antennas"] call fn_LoadStat; + ["prestigeNATO"] call fn_LoadStat; + ["prestigeCSAT"] call fn_LoadStat; + ["hr"] call fn_LoadStat; + ["dateX"] call fn_LoadStat; + ["weather"] call fn_LoadStat; + ["prestigeOPFOR"] call fn_LoadStat; + ["prestigeBLUFOR"] call fn_LoadStat; + ["resourcesFIA"] call fn_LoadStat; + ["garrison"] call fn_LoadStat; + ["usesWurzelGarrison"] call fn_LoadStat; + ["skillFIA"] call fn_LoadStat; + ["distanceSPWN"] call fn_LoadStat; + ["civPerc"] call fn_LoadStat; + ["maxUnits"] call fn_LoadStat; + ["membersX"] call fn_LoadStat; + ["vehInGarage"] call fn_LoadStat; + ["destroyedBuildings"] call fn_LoadStat; + ["idlebases"] call fn_LoadStat; + ["idleassets"] call fn_LoadStat; + ["killZones"] call fn_LoadStat; + ["controlsSDK"] call fn_LoadStat; + ["bombRuns"] call fn_LoadStat; + waitUntil {!isNil "arsenalInit"}; + ["jna_dataList"] call fn_LoadStat; + //=========================================================================== + #include "\A3\Ui_f\hpp\defineResinclDesign.inc" + + //RESTORE THE STATE OF THE 'UNLOCKED' VARIABLES USING JNA_DATALIST + { + private _arsenalTabDataArray = _x; + private _unlockedItemsInTab = _arsenalTabDataArray select { _x select 1 == -1 } apply { _x select 0 }; + { + [_x, true] call A3A_fnc_unlockEquipment; + } forEach _unlockedItemsInTab; + } forEach jna_dataList; + + if !(unlockedNVGs isEqualTo []) then { + haveNV = true; publicVariable "haveNV" + }; + + //Check if we have radios unlocked and update haveRadio. + call A3A_fnc_checkRadiosUnlocked; + + //Sort optics list so that snipers pick the right sight + unlockedOptics = [unlockedOptics,[],{getNumber (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "mass")},"DESCEND"] call BIS_fnc_sortBy; + + { + if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then { + _positionX = getMarkerPos _x; + _nearX = [(markersX - controlsX - outpostsFIA),_positionX] call BIS_fnc_nearestPosition; + _sideX = sidesX getVariable [_nearX,sideUnknown]; + sidesX setVariable [_x,_sideX,true]; + }; + } forEach controlsX; + + + { + if (sidesX getVariable [_x,sideUnknown] == sideUnknown) then { + sidesX setVariable [_x,Occupants,true]; + }; + } forEach markersX; + + { + [_x] call A3A_fnc_mrkUpdate + } forEach (markersX - controlsX); + + if (count outpostsFIA > 0) then { + markersX = markersX + outpostsFIA; publicVariable "markersX" + }; + + { + if (_x in destroyedSites) then { + [_x] call A3A_fnc_destroyCity + }; + } forEach citiesX; + + ["chopForest"] call fn_LoadStat; + ["destroyedBuildings"] call fn_LoadStat; + /* + { + _buildings = nearestObjects [_x, listMilBld, 25, true]; + (_buildings select 1) setDamage 1; + } forEach destroyedBuildings; + */ + ["posHQ"] call fn_LoadStat; + ["nextTick"] call fn_LoadStat; + ["staticsX"] call fn_LoadStat; + + {_x setPos getMarkerPos respawnTeamPlayer} forEach ((call A3A_fnc_playableUnits) select {side _x == teamPlayer}); + _sites = markersX select {sidesX getVariable [_x,sideUnknown] == teamPlayer}; + + //Isn't that just tierCheck.sqf? + tierWar = 1 + (floor (((5*({(_x in outposts) or (_x in resourcesX) or (_x in citiesX)} count _sites)) + (10*({_x in seaports} count _sites)) + (20*({_x in airportsX} count _sites)))/10)); + if (tierWar > 10) then {tierWar = 10}; + publicVariable "tierWar"; + + tierPreference = 1; + publicVariable "tierPreference"; + //Updating the preferences based on war level + [] call A3A_fnc_updatePreference; + + if (isNil "usesWurzelGarrison") then { + //Create the garrison new + diag_log "No WurzelGarrison found, creating new!"; + [airportsX, "Airport", [0,0,0]] spawn A3A_fnc_createGarrison; //New system + [resourcesX, "Other", [0,0,0]] spawn A3A_fnc_createGarrison; //New system + [factories, "Other", [0,0,0]] spawn A3A_fnc_createGarrison; + [outposts, "Outpost", [1,1,0]] spawn A3A_fnc_createGarrison; + [seaports, "Other", [1,0,0]] spawn A3A_fnc_createGarrison; + + } else { + //Garrison save in wurzelformat, load it + diag_log "WurzelGarrison found, loading it!"; + ["wurzelGarrison"] call fn_LoadStat; + }; + + clearMagazineCargoGlobal boxX; + clearWeaponCargoGlobal boxX; + clearItemCargoGlobal boxX; + clearBackpackCargoGlobal boxX; + + [] remoteExec ["A3A_fnc_statistics",[teamPlayer,civilian]]; + diag_log format ["%1: [Antistasi] | INFO | Persistent Load Completed.",servertime]; + diag_log format ["%1: [Antistasi] | INFO | Generating Map Markers.",servertime]; + ["tasks"] call fn_LoadStat; + if !(isMultiplayer) then { + {//Can't we go around this using the initMarker? And only switching marker? + _pos = getMarkerPos _x; + _dmrk = createMarker [format ["Dum%1",_x], _pos]; + _dmrk setMarkerShape "ICON"; + [_x] call A3A_fnc_mrkUpdate; + if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then { + _nul = [_x] call A3A_fnc_createControls; + }; + } forEach airportsX; + + { + _pos = getMarkerPos _x; + _dmrk = createMarker [format ["Dum%1",_x], _pos]; + _dmrk setMarkerShape "ICON"; + _dmrk setMarkerType "loc_rock"; + _dmrk setMarkerText "Resources"; + [_x] call A3A_fnc_mrkUpdate; + if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then { + _nul = [_x] call A3A_fnc_createControls; + }; + } forEach resourcesX; + + { + _pos = getMarkerPos _x; + _dmrk = createMarker [format ["Dum%1",_x], _pos]; + _dmrk setMarkerShape "ICON"; + _dmrk setMarkerType "u_installation"; + _dmrk setMarkerText "Factory"; + [_x] call A3A_fnc_mrkUpdate; + if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then { + _nul = [_x] call A3A_fnc_createControls; + }; + } forEach factories; + + { + _pos = getMarkerPos _x; + _dmrk = createMarker [format ["Dum%1",_x], _pos]; + _dmrk setMarkerShape "ICON"; + _dmrk setMarkerType "loc_bunker"; + [_x] call A3A_fnc_mrkUpdate; + if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then { + _nul = [_x] call A3A_fnc_createControls; + }; + } forEach outposts; + + { + _pos = getMarkerPos _x; + _dmrk = createMarker [format ["Dum%1",_x], _pos]; + _dmrk setMarkerShape "ICON"; + _dmrk setMarkerType "b_naval"; + _dmrk setMarkerText "Sea Port"; + [_x] call A3A_fnc_mrkUpdate; + if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then { + _nul = [_x] call A3A_fnc_createControls; + }; + } forEach seaports; + }; + statsLoaded = 0; publicVariable "statsLoaded"; + placementDone = true; publicVariable "placementDone"; + petros allowdamage true; +}; +diag_log format ["%1: [Antistasi] | INFO | loadServer Completed.",servertime]; diff --git a/A3-Antistasi/statSave/playerHasSave.sqf b/A3-Antistasi/functions/Save/fn_playerHasSave.sqf similarity index 100% rename from A3-Antistasi/statSave/playerHasSave.sqf rename to A3-Antistasi/functions/Save/fn_playerHasSave.sqf diff --git a/A3-Antistasi/statSave/savePlayer.sqf b/A3-Antistasi/functions/Save/fn_savePlayer.sqf similarity index 92% rename from A3-Antistasi/statSave/savePlayer.sqf rename to A3-Antistasi/functions/Save/fn_savePlayer.sqf index df6b2a5ae7..31a2a9a085 100644 --- a/A3-Antistasi/statSave/savePlayer.sqf +++ b/A3-Antistasi/functions/Save/fn_savePlayer.sqf @@ -35,7 +35,7 @@ savingClient = true; diag_log format ["[Antistasi] Saving player %1 on side %2", _playerId, side group _playerUnit]; private _shouldStripLoadout = false; -if (hasACEMedical && {[_playerUnit] call ace_medical_fnc_getUnconsciousCondition}) then +if (hasACEMedical && {_playerUnit getVariable ["ACE_isUnconscious", false]}) then { _shouldStripLoadout = true; diag_log format ["[Antistasi] Stripping saved loadout of player %1 due to saving while being ACE unconscious", _playerId]; @@ -64,7 +64,7 @@ if (isMultiplayer) then { private _valueOfFriend = (server getVariable (typeOf _friendX)); //If we don't get a number (which can happen if _friendX becomes null, for example) we lose the value of _resourcesBackground; - if (typeName _valueOfFriend == typeName _resourcesBackground) then { + if (_valueOfFriend isEqualType _resourcesBackground) then { _resourcesBackground = _resourcesBackground + (server getVariable (typeOf _friendX)); }; if (vehicle _friendX != _friendX) then @@ -76,13 +76,13 @@ if (isMultiplayer) then if ((_veh isKindOf "StaticWeapon") or (driver _veh == _friendX)) then { private _vehPrice = ([_typeVehX] call A3A_fnc_vehiclePrice); - if (typeName _vehPrice == typeName _resourcesBackground) then { + if (_vehPrice isEqualType _resourcesBackground) then { _resourcesBackground = _resourcesBackground + _vehPrice; }; if (count attachedObjects _veh != 0) then { { private _attachmentPrice = ([typeOf _x] call A3A_fnc_vehiclePrice); - if (typeName _vehPrice == typeName _resourcesBackground) then { + if (_vehPrice isEqualType _resourcesBackground) then { _resourcesBackground = _resourcesBackground + _attachmentPrice; }; } diff --git a/A3-Antistasi/functions/Templates/fn_aceModCompat.sqf b/A3-Antistasi/functions/Templates/fn_aceModCompat.sqf new file mode 100644 index 0000000000..089ab42ea8 --- /dev/null +++ b/A3-Antistasi/functions/Templates/fn_aceModCompat.sqf @@ -0,0 +1,67 @@ +//////////////////////////////////// +// ACE ITEMS LIST /// +//////////////////////////////////// +diag_log format ["%1: [Antistasi] | INFO | initVar | Creating ACE Items List",servertime]; +aceItems = [ + "ACE_EarPlugs", + "ACE_RangeCard", + "ACE_Clacker", + "ACE_M26_Clacker", + "ACE_DefusalKit", + "ACE_MapTools", + "ACE_Flashlight_MX991", + "ACE_wirecutter", + "ACE_RangeTable_82mm", + "ACE_EntrenchingTool", + "ACE_Cellphone", + "ACE_CableTie", + "ACE_SpottingScope", + "ACE_Tripod", + "ACE_Spraypaintred", + "ACE_UAVBattery" +]; + +aceMedItems = [ + "ACE_fieldDressing", + "ACE_elasticBandage", + "ACE_packingBandage", + "ACE_quikclot", + "ACE_bloodIV", + "ACE_bloodIV_250", + "ACE_bloodIV_500", + "ACE_plasmaIV", + "ACE_plasmaIV_500", + "ACE_plasmaIV_250", + "ACE_salineIV", + "ACE_salineIV_500", + "ACE_salineIV_250", + "ACE_surgicalKit", + "ACE_tourniquet", + "ACE_epinephrine", + "ACE_morphine", + "ACE_adenosine", + "ACE_splint", + "ACE_bodyBag" +] ++ ([["ACE_personalAidKit"], ["adv_aceCPR_AED"]] select hasADVCPR) ++ ([[], ["adv_aceSplint_splint"]] select hasADVSplint); + +publicVariable "aceItems"; +publicVariable "aceMedItems"; + +//////////////////////////////////// +// ACE ITEMS MODIFICATIONS /// +//////////////////////////////////// +initialRebelEquipment append aceItems; + + +//ACE medical starting items +if (hasACEMedical) then { + initialRebelEquipment append aceMedItems; +}; + +lootItem append ["ACE_acc_pointer_green_IR","ACE_Chemlight_Shield","ACE_VMH3","ACE_VMM3","ACE_HuntIR_monitor"]; + +lootMagazine deleteAt (lootMagazine find "ACE_PreloadedMissileDummy"); +allLightAttachments deleteAt (allLightAttachments find "ACE_acc_pointer_green"); +lootItem deleteAt (lootItem find "MineDetector"); \ No newline at end of file diff --git a/A3-Antistasi/Templates/Loadouts/getLoadout.sqf b/A3-Antistasi/functions/Templates/fn_getLoadout.sqf similarity index 85% rename from A3-Antistasi/Templates/Loadouts/getLoadout.sqf rename to A3-Antistasi/functions/Templates/fn_getLoadout.sqf index 50cf372d3e..d0b95dcf2a 100644 --- a/A3-Antistasi/Templates/Loadouts/getLoadout.sqf +++ b/A3-Antistasi/functions/Templates/fn_getLoadout.sqf @@ -5,18 +5,21 @@ private _basicMedicalSupplies = [ ["ACE_Tourniquet",1], ["ACE_SalineIV_500",1], - ["ACE_Morphine",1], - ["ACE_Epinephrine",1], + ["ACE_Morphine",2], + ["ACE_Epinephrine",2], + ["ACE_Adenosine",2], ["ACE_PackingBandage",5], ["ACE_ElasticBandage",3], - ["ACE_Quikclot",3] - ]; + ["ACE_Quikclot",3], + ["ACE_splint", 2] + ] + + ([[], [["adv_aceSplint_splint", 2]]] select hasADVSplint); } else { [ ["FirstAidKit",3] ]; }; - + private _basicMiscItems = if (hasACE) then { [ @@ -29,36 +32,38 @@ private _basicMiscItems = ]; }; - + private _medicSupplies = if (hasACE) then { [ ["ACE_surgicalKit",1], - + ["ACE_PackingBandage",15], ["ACE_ElasticBandage",10], ["ACE_QuikClot",10], - + ["ACE_Morphine",5], ["ACE_Epinephrine",5], - + ["ACE_Adenosine",5], + ["ACE_PlasmaIV_250",5], ["ACE_SalineIV_500",3], ["ACE_BloodIV",1], - - ["ACE_Tourniquet",3] + + ["ACE_Tourniquet",3], + ["ACE_Splint",4] ] + ([[["ACE_PersonalAidKit", 2]], [["adv_aceCPR_AED", 1]]] select hasADVCPR) - + ([[], [["adv_aceSplint_splint", 4]]] select hasADVSplint); + + ([[], [["adv_aceSplint_splint", 7]]] select hasADVSplint); } else { [ ["Medikit", 1] ]; }; - + private _fnc_modItem = { params ["_hasMod", "_modItem", "_replacementItem"]; - + if (_hasMod) then { [_modItem]; } else { @@ -80,7 +85,7 @@ private _fnc_tfarRadio = { }; private _tfarMicroDAGRNoArray = [hasTFAR, "TF_MicroDagr", "ItemWatch"] call _fnc_modItemNoArray; - + private _aceFlashlight = [hasACE, ["ACE_Flashlight_XL50", 1]] call _fnc_modItem; private _aceM84 = [hasACE, ["ACE_M84", 1], ["HandGrenade", 1]] call _fnc_modItem; private _aceDefusalKit = [hasACE, ["ACE_DefusalKit", 1]] call _fnc_modItem; @@ -95,4 +100,4 @@ if (_loadoutArray isEqualTo []) then { missionNamespace setVariable [_loadoutName, _loadoutArray]; }; -_loadoutArray; \ No newline at end of file +_loadoutArray; diff --git a/A3-Antistasi/functions/Templates/fn_ifaModCompat.sqf b/A3-Antistasi/functions/Templates/fn_ifaModCompat.sqf new file mode 100644 index 0000000000..044939ad10 --- /dev/null +++ b/A3-Antistasi/functions/Templates/fn_ifaModCompat.sqf @@ -0,0 +1,32 @@ +//////////////////////////////////// +// IFA ITEMS MODIFICATIONS /// +//////////////////////////////////// +/* +allSmokeGrenades = ["LIB_RDG","LIB_NB39"]; +allChemlights = []; +lootNVG = []; +lootAttachment = []; +lootBackpack = []; +lootHelmet = []; +lootVest = []; +allArmoredHeadgear = []; +{allArmoredHeadgear pushBackUnique (getUnitLoadout _x select 6)} forEach NATOSquad; +*/ +if (hasACE) then { + lootItem append ["ACE_LIB_LadungPM","ACE_SpareBarrel"]; +}; + +private _libStaticParts = []; +{ + if ((getText (configFile >> "CfgWeapons" >> _x >> "LIB_WeaponType")) isEqualTo "ROCKET") then { + _libStaticParts pushBack _x; + }; +} forEach allRocketLaunchers; + +{ +lootWeapon deleteAt (lootWeapon find _x); +} forEach _libStaticParts; + +//Add some more variety to the civilian vehicles. +arrayCivVeh append ["LIB_Zis5v_w","LIB_Kfz1_Hood_sernyt"]; +publicVariable "arrayCivVeh"; \ No newline at end of file diff --git a/A3-Antistasi/functions/Templates/fn_rhsModCompat.sqf b/A3-Antistasi/functions/Templates/fn_rhsModCompat.sqf new file mode 100644 index 0000000000..26b572a7a8 --- /dev/null +++ b/A3-Antistasi/functions/Templates/fn_rhsModCompat.sqf @@ -0,0 +1,6 @@ +//////////////////////////////////// +//RHS WEAPON ATTACHMENTS REDUCER /// +//////////////////////////////////// +lootAttachment = lootAttachment select {getText (configfile >> "CfgWeapons" >> _x >> "author") == "Red Hammer Studios"}; +allLightAttachments = allLightAttachments select {getText (configfile >> "CfgWeapons" >> _x >> "author") == "Red Hammer Studios"}; +allLaserAttachments = allLaserAttachments select {getText (configfile >> "CfgWeapons" >> _x >> "author") == "Red Hammer Studios"}; diff --git a/A3-Antistasi/functions/Undercover/fn_goUndercover.sqf b/A3-Antistasi/functions/Undercover/fn_goUndercover.sqf new file mode 100644 index 0000000000..7601506c16 --- /dev/null +++ b/A3-Antistasi/functions/Undercover/fn_goUndercover.sqf @@ -0,0 +1,297 @@ +private["_player"]; +if (player != player getVariable["owner", player]) exitWith { + hint "You cannot go Undercover while you are controlling AI" +}; +_player = player getVariable["owner", player]; +if (captive _player) exitWith { + hint "You are Undercover already" +}; + +private["_compromised", "_changeX", "_airportsX", "_roadblocks", "_arrayCivVeh", "_player", "_size", "_base", "_onDetectionMarker", "_onBaseMarker", "_airportSide"]; + +_changeX = ""; +_roadblocks = (controlsX select { + isOnRoad(getMarkerPos _x) +}); +_airportsX = airportsX + outposts + _roadblocks; +_airportsX1 = airportsX; +_arrayCivVeh = arrayCivVeh + [civHeli] + civBoats; +_compromised = _player getVariable "compromised"; + + + +if (vehicle _player != _player) then { + if (not(typeOf(vehicle _player) in _arrayCivVeh)) then { + hint "You are not in a civilian vehicle"; + _changeX = "Init" + }; + if (vehicle _player in reportedVehs) then { + hint "This vehicle has been reported to the enemy. Change or renew your vehicle in the Garage to go Undercover"; + _changeX = "Init"; + }; +} +else { + if ((primaryWeapon _player != "") or (secondaryWeapon _player != "") or (handgunWeapon _player != "") or (vest _player != "") or (headgear _player in allArmoredHeadgear) or (hmd _player != "") or (not(uniform _player in allCivilianUniforms))) then { + hint "You cannot go Undercover while:\n\nA weapon is visible\nWearing a vest\nWearing a helmet\nWearing NVGs\nWearing a mil uniform"; + _changeX = "Init"; + }; + if (dateToNumber date < _compromised) then { + hint "You have been reported in the last 30 minutes therefore you cannot go Undercover"; + _changeX = "Init"; + }; +}; + +if (_changeX != "") exitWith {}; + +if ({ + ((side _x == Invaders) or(side _x == Occupants)) and(((_x knowsAbout _player > 1.4) and(_x distance _player < 500)) or(_x distance _player < 350)) + } + count allUnits > 0) exitWith { + hint "You cannot go Undercover while enemies are spotting you"; + if (vehicle _player != _player) then { + { + if ((isPlayer _x) and(captive _x)) then { + [_x, false] remoteExec["setCaptive"]; + _x setCaptive false; + reportedVehs pushBackUnique(vehicle _player); + publicVariable "reportedVehs" + } + } + forEach((crew(vehicle _player)) + (assignedCargo(vehicle _player)) - [_player]); + }; +}; + +_base = [_airportsX, _player] call BIS_fnc_nearestPosition; +_size = [_base] call A3A_fnc_sizeMarker; +if ((_player distance getMarkerPos _base < _size * 2) and(not(sidesX getVariable[_base, sideUnknown] == teamPlayer))) exitWith { + hint "You cannot go Undercover near Airports, Outposts or Roadblocks" +}; + +["Undercover ON", 0, 0, 4, 0, 0, 4] spawn bis_fnc_dynamicText; + +[_player, true] remoteExec["setCaptive", 0, _player]; +_player setCaptive true; +[] spawn A3A_fnc_statistics; +if (_player == leader group _player) then { + { + if ((!isplayer _x) and(local _x) and(_x getVariable["owner", _x] == _player)) then { + [_x] spawn A3A_fnc_undercoverAI + } + } + forEach units group _player; +}; +_isInControl = false; +while { + _changeX == "" +} +do { + private _healingTarget = objNull; + if !(isNil {player getVariable "ace_medical_treatment_endInAnim"}) then { + _healingTarget = currentAceTarget; + }; + + sleep 1; + if (!captive _player) then { + _changeX = "Reported"; + } + else { + _veh = vehicle _player; + _typeX = typeOf _veh; + if (_veh != _player) then { + if (not(_typeX in _arrayCivVeh)) then { + _changeX = "VNoCivil" + } + else { + if (_veh in reportedVehs) then { + _changeX = "VCompromised" + } + else { + if ((_typeX != civHeli) and(!(_typeX in civBoats))) then { + if !(isOnRoad position _veh) then { + if (count(_veh nearRoads 50) == 0) then { + if ({ + ((side _x == Invaders) or(side _x == Occupants)) and((_x knowsAbout _player > 1.4) or(_x distance _player < 350)) + } + count allUnits > 0) then { + _changeX = "Carretera" + }; + }; + }; + if (hasACE) then { + if (((position _player nearObjects["DemoCharge_Remote_Ammo", 5]) select 0) mineDetectedBy Occupants) then { + _changeX = "SpotBombTruck"; + }; + if (((position _player nearObjects["SatchelCharge_Remote_Ammo", 5]) select 0) mineDetectedBy Occupants) then { + _changeX = "SpotBombTruck"; + }; + }; + }; + }; + } + } + else { + if (_healingTarget != objNull) then { + if (side _healingTarget != civilian && {_healingTarget isKindOf "Man"}) then { + if ({((side _x == Invaders) or(side _x == Occupants)) and((_x knowsAbout _player > 1.4) or(_x distance _player < 350))} count allUnits > 0) then { + _changeX = "BadMedic2"; + } else { + _changeX = "BadMedic"; + }; + }; + }; + if ((primaryWeapon _player != "") or (secondaryWeapon _player != "") or (handgunWeapon _player != "") or(vest _player != "") or(getNumber(configfile >> "CfgWeapons" >> headgear _player >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") > 2) or(hmd _player != "") or(not(uniform _player in allCivilianUniforms))) then { + if ({((side _x == Invaders) or (side _x == Occupants)) and ((_x knowsAbout _player > 1.4) or (_x distance _player < 350))} count allUnits > 0) then { + _changeX = "clothes2" + } else { + _changeX = "clothes" + }; + }; + if (dateToNumber date < _compromised) then { + _changeX = "Compromised"; + }; + }; + if (_changeX == "") then { + if ((_typeX != civHeli) and(!(_typeX in civBoats))) then { + _base = [_airportsX, _player] call BIS_fnc_nearestPosition; + //_size = [_base] call A3A_fnc_sizeMarker; + //Following lines are for the detection of players in the detectionAreas + _onDetectionMarker = (detectionAreas findIf { + _player inArea _x + } != -1); + _onBaseMarker = (_player inArea _base); + _airportSide = (sidesX getVariable[_base, sideUnknown]); + _airport = [_airportsX1, _player] call BIS_fnc_nearestPosition; + if (_onBaseMarker && { + _airportSide != teamPlayer + } || { + _onDetectionMarker && { + sidesX getVariable _airport != teamPlayer + } + }) then { + if !(_isInControl) then { + _aggro = + if (sidesX getVariable[_base, sideUnknown] == Occupants) then { + prestigeNATO + (tierWar * 10) + } else { + prestigeCSAT + (tierWar * 10) + }; + //Probability of being spotted. Unless we're in an airfield - then we're always spotted. + if (_base in _airportsX1 || _onDetectionMarker || random 100 < _aggro) then { + if (_base in _roadblocks) then { + _changeX = "distanceX"; + } + else { + _changeX = "Control"; + }; + } + else { + _isInControl = true; + }; + }; + } + else { + _isInControl = false; + }; + } + else { + if (_typeX == civHeli) then { + _base = [_airportsX1, _player] call BIS_fnc_nearestPosition; + _size = [_base] call A3A_fnc_sizeMarker; + if ((_player distance2d getMarkerPos _base < _size * 3) and((sidesX getVariable[_base, sideUnknown] == Occupants) or(sidesX getVariable[_base, sideUnknown] == Invaders))) then { + _changeX = "NoFly"; + }; + }; + }; + }; + }; +}; +diag_log format["[Antistasi] Player detected in %1 (undercover.sqf)", _onDetectionMarker]; + +if (captive _player) then { + [_player, false] remoteExec["setCaptive"]; + _player setCaptive false +}; + +if (vehicle _player != _player) then { + { + if (isPlayer _x) then { + [_x, false] remoteExec["setCaptive", 0, _x]; + _x setCaptive false + } + } + forEach((assignedCargo(vehicle _player)) + (crew(vehicle _player)) - [_player]); +}; + +["Undercover OFF", 0, 0, 4, 0, 0, 4] spawn bis_fnc_dynamicText; +[] spawn A3A_fnc_statistics; +switch _changeX do { + case "Reported":{ + hint "You have been reported or spotted by the enemy"; + //_compromised = _player getVariable "compromised"; + if (vehicle _player != _player) then { + //_player setVariable ["compromised",[_compromised select 0,vehicle _player]]; + reportedVehs pushBackUnique(vehicle _player); + publicVariable "reportedVehs"; + } + else { + _player setVariable["compromised", (dateToNumber[date select 0, date select 1, date select 2, date select 3, (date select 4) + 30])]; + }; + }; + case "VNoCivil":{ + hint "You entered a non civilian vehicle" + }; + case "VCompromised":{ + hint "You entered in a reported vehicle" + }; + case "SpotBombTruck":{ + hint "Explosives have been spotted on your vehicle"; + reportedVehs pushBackUnique(vehicle _player); + publicVariable "reportedVehs"; + }; + case "Carretera":{ + hint "You went too far away from any roads and have been spotted"; + reportedVehs pushBackUnique(vehicle _player); + publicVariable "reportedVehs"; + }; + case "clothes":{ + hint "You cannot stay Undercover while:\n\nA weapon is visible\nWearing a vest\nWearing a helmet\nWearing NVGs\nWearing a mil uniform" + }; + case "clothes2":{ + hint "You cannot stay Undercover while showing:\n\nA weapon is visible\nWearing a vest\nWearing a helmet\nWearing NVGs\nWearing a mil uniform\n\nThe enemy added you to their Wanted List"; + _player setVariable["compromised", dateToNumber[date select 0, date select 1, date select 2, date select 3, (date select 4) + 30]]; + }; + case "BadMedic":{ + hint "You cannot stay Undercover while healing a compromised resistance member"; + }; + case "BadMedic2":{ + hint "You cannot stay Undercover while healing a compromised resistance member\n\nThe enemy added you to their Wanted List"; + _player setVariable["compromised", dateToNumber[date select 0, date select 1, date select 2, date select 3, (date select 4) + 30]]; + }; + case "Compromised":{ + hint "You left your vehicle and you are still on the Wanted List" + }; + case "distanceX":{ + hint "You have gotten too close to an enemy Base, Outpost or Roadblock"; + //_compromised = _player getVariable "compromised"; + if (vehicle _player != _player) then { + //_player setVariable ["compromised",[_compromised select 0,vehicle _player]]; + reportedVehs pushBackUnique(vehicle _player); + publicVariable "reportedVehs"; + } + else { + _player setVariable["compromised", (dateToNumber[date select 0, date select 1, date select 2, date select 3, (date select 4) + 30])]; + }; + }; + case "NoFly":{ + hint "You have gotten too close to an enemy Airbase no-fly zone"; + //_compromised = _player getVariable "compromised"; + reportedVehs pushBackUnique(vehicle _player); + publicVariable "reportedVehs"; + }; + case "Control":{ + hint "The Installation Garrison has recognised you"; + //_compromised = _player getVariable "compromised"; + reportedVehs pushBackUnique(vehicle _player); + publicVariable "reportedVehs"; + }; +}; \ No newline at end of file diff --git a/A3-Antistasi/functions/Undercover/fn_initUndercover.sqf b/A3-Antistasi/functions/Undercover/fn_initUndercover.sqf new file mode 100644 index 0000000000..53e6e2104d --- /dev/null +++ b/A3-Antistasi/functions/Undercover/fn_initUndercover.sqf @@ -0,0 +1,13 @@ +//Attempt to figure out our current ace medical target; +if (hasACE) then { +currentAceTarget = objNull; + ["ace_interactMenuOpened", { + //player setVariable ["lastMenuOpened", "INTERACT"]; + currentAceTarget = ace_interact_menu_selectedTarget; + }] call CBA_fnc_addEventHandler; + + ["ace_medicalMenuOpened", { + //player setVariable ["lastMenuOpened", "MEDICAL"]; + currentAceTarget = param [1]; + }] call CBA_fnc_addEventHandler; +}; \ No newline at end of file diff --git a/A3-Antistasi/Ammunition/basicBackpack.sqf b/A3-Antistasi/functions/Utility/fn_basicBackpack.sqf similarity index 100% rename from A3-Antistasi/Ammunition/basicBackpack.sqf rename to A3-Antistasi/functions/Utility/fn_basicBackpack.sqf diff --git a/A3-Antistasi/functions/Utility/fn_createDataObject.sqf b/A3-Antistasi/functions/Utility/fn_createDataObject.sqf new file mode 100644 index 0000000000..69b5548374 --- /dev/null +++ b/A3-Antistasi/functions/Utility/fn_createDataObject.sqf @@ -0,0 +1,17 @@ +/** +Function: A3A_fnc_createNamespace + +This function has been inspired by Community Base Addons's namespaces, by commy2. Thanks! + +Creates a data object. This is an object used purely to store variables. Variables can be read/written using 'setVariable' and 'getVariable'. + +Params: + None + +Returns: + _dataObject - A data object (of type "Logic"). + +**/ + +createSimpleObject ["Logic", [0,0,0]] + diff --git a/A3-Antistasi/dateToTimeString.sqf b/A3-Antistasi/functions/Utility/fn_dateToTimeString.sqf similarity index 100% rename from A3-Antistasi/dateToTimeString.sqf rename to A3-Antistasi/functions/Utility/fn_dateToTimeString.sqf diff --git a/A3-Antistasi/functions/Utility/fn_log.sqf b/A3-Antistasi/functions/Utility/fn_log.sqf new file mode 100644 index 0000000000..0b45ea3338 --- /dev/null +++ b/A3-Antistasi/functions/Utility/fn_log.sqf @@ -0,0 +1,38 @@ +/** + Logs to the Arma log file. + + Params: + Log level: number - Error, Info or Debug. Levels 1, 2 and 3 respectively. + Log Message: string - Message to log + File (optional): string - File in which the log message originated + Log to server (optional): bool - true for logging to server RPT instead of client +**/ + +params ["_level", "_message", ["_file", "No File Specified"], ["_toServer", false]]; + +if (_level > LogLevel) exitwith {}; + +// Sets up the actual log event. +private _logLine = ""; +switch (_level) do { + case 1: { + _logLine = format ["%1: [Antistasi] | ERROR | %2 | %3", servertime, _file, _message]; + }; + case 2: { + _logLine = format ["%1: [Antistasi] | INFO | %2 | %3", servertime, _file, _message]; + }; + case 3: { + _logLine = format ["%1: [Antistasi] | DEBUG | %2 | %3", servertime, _file, _message]; + }; + default { + _logLine = format ["%1: [Antistasi] | Unknown Log Level Specified, please use 1= Errors, 2= Info, 3= Debug | %2 | %3", servertime, _file, _message]; + }; +}; + +// Lazy evaluation should be removed if default value of _toServer is changed +if (_toServer && {!isServer}) then { + _logLine remoteExec ["diag_log", 2]; +} else { + diag_log _logLine; +}; + diff --git a/A3-Antistasi/functions/Utility/fn_vehicleWillCollideAtPosition.sqf b/A3-Antistasi/functions/Utility/fn_vehicleWillCollideAtPosition.sqf new file mode 100644 index 0000000000..c77435c2a5 --- /dev/null +++ b/A3-Antistasi/functions/Utility/fn_vehicleWillCollideAtPosition.sqf @@ -0,0 +1,92 @@ +/** + Vehicle collision check + + Checks if a vehicle will collide with anything if moved to the target location; + + Internally, we get the corners of the vehicle's bounding box, and fire off some collision detection lines between them to see if they hit anything. + + Params: + _vehicle - Vehicle to test + _position - Position to move to, in AGL format +**/ + + +params ["_vehicle", "_targetPos"]; + +private _vehiclePosAGL = getPos _vehicle; +private _boundingBox = boundingBoxReal _vehicle; +private _corners = [ + //Bottom - rear - left + [_boundingBox select 0 select 0, _boundingBox select 0 select 1, _boundingBox select 0 select 2], + //Bottom - front - left + [_boundingBox select 0 select 0, _boundingBox select 1 select 1, _boundingBox select 0 select 2], + //Bottom - rear - right + [_boundingBox select 1 select 0, _boundingBox select 0 select 1, _boundingBox select 0 select 2], + //Bottom - front - right + [_boundingBox select 1 select 0, _boundingBox select 1 select 1, _boundingBox select 0 select 2], + //Top - rear - left + [_boundingBox select 0 select 0, _boundingBox select 0 select 1, _boundingBox select 1 select 2], + //Top - front - left + [_boundingBox select 0 select 0, _boundingBox select 1 select 1, _boundingBox select 1 select 2], + //Top - rear - right + [_boundingBox select 1 select 0, _boundingBox select 0 select 1, _boundingBox select 1 select 2], + //Top - front - right + [_boundingBox select 1 select 0, _boundingBox select 1 select 1, _boundingBox select 1 select 2] +]; + +private _lines = [ + //Bottom - rear - left to Bottom - rear - right + [_corners select 0, _corners select 2], + //Bottom - front - left to Bottom - front - right + [_corners select 1, _corners select 3], + //Bottom - rear - left to Bottom - front - left + [_corners select 0, _corners select 1], + //Bottom - rear - right to Bottom - front - right + [_corners select 2, _corners select 3], + //Top - rear - left to Bottom - rear - right + [_corners select 4, _corners select 6], + //Top - front - left to Bottom - front - right + [_corners select 5, _corners select 7], + //Top - rear - left to Bottom - front - left + [_corners select 4, _corners select 5], + //Top - rear - right to Bottom - front - right + [_corners select 6, _corners select 7], + //Diagonal - Bottom - rear - left to Top - front - right + [_corners select 0, _corners select 7] +]; + +private _collision = false; +private _heightOffset = (_boundingBox select 1 select 2) - (_boundingBox select 0 select 2) / 2; + +{ + //private _startPos = _targetPos vectorAdd (_x # 0) vectorAdd [0, 0, _height]; + private _startPosModelSpace = _x select 0; + private _endPosModelSpace = _x select 1; + private _startPosVehicleCurrentLocation = _vehicle modelToWorld (_startPosModelSpace); + private _endPosVehicleCurrentLocation = _vehicle modelToWorld (_endPosModelSpace); + + private _positionDifference = [ + (_targetPos select 0) - (_vehiclePosAGL select 0), + (_targetPos select 1) - (_vehiclePosAGL select 1), + (_targetPos select 2) - (_vehiclePosAGL select 2) + ]; + + private _startPos = [ + (_startPosVehicleCurrentLocation select 0) + (_positionDifference select 0), + (_startPosVehicleCurrentLocation select 1) + (_positionDifference select 1), + 0.1 + (_startPosModelSpace select 2) + _heightOffset + ]; + + private _endPos = [ + (_endPosVehicleCurrentLocation select 0) + (_positionDifference select 0), + (_endPosVehicleCurrentLocation select 1) + (_positionDifference select 1), + 0.1 + (_startPosModelSpace select 2) + _heightOffset + ]; + + private _result = lineIntersectsSurfaces [AGLtoASL _startPos, AGLtoASL _endPos, objNull, objNull, false, 1, "FIRE", "FIRE"]; + if (count _result > 0) exitWith { + _collision = true; + }; +} forEach _lines; + +_collision; \ No newline at end of file diff --git a/A3-Antistasi/cityinfo.sqf b/A3-Antistasi/functions/init/fn_cityinfo.sqf similarity index 93% rename from A3-Antistasi/cityinfo.sqf rename to A3-Antistasi/functions/init/fn_cityinfo.sqf index 1a0dc45b21..52fc8fa864 100644 --- a/A3-Antistasi/cityinfo.sqf +++ b/A3-Antistasi/functions/init/fn_cityinfo.sqf @@ -14,7 +14,7 @@ _prestigeBLUFOR = _dataX select 3; _popFIA = _popFIA + (_numCiv * (_prestigeBLUFOR / 100)); _popAAF = _popAAF + (_numCiv * (_prestigeOPFOR / 100)); _pop = _pop + _numCiv; -if (_x in destroyedCities) then {_popCSAT = _popCSAT + _numCIV}; +if (_x in destroyedSites) then {_popCSAT = _popCSAT + _numCIV}; } forEach citiesX; _popFIA = round _popFIA; _popAAF = round _popAAF; @@ -47,7 +47,7 @@ while {visibleMap} do _prestigeOPFOR = _dataX select 2; _prestigeBLUFOR = _dataX select 3; _power = [_siteX] call A3A_fnc_powerCheck; - _textX = format ["%1\n\nPop %2\n%6 Support: %3 %5\n%7 Support: %4 %5",[_siteX,false] call A3A_fnc_fn_location,_numCiv,_prestigeOPFOR,_prestigeBLUFOR,"%",nameOccupants,nameTeamPlayer]; + _textX = format ["%1\n\nPop %2\n%6 Support: %3 %5\n%7 Support: %4 %5",[_siteX,false] call A3A_fnc_location,_numCiv,_prestigeOPFOR,_prestigeBLUFOR,"%",nameOccupants,nameTeamPlayer]; _positionX = getMarkerPos _siteX; _result = "NONE"; switch (_power) do @@ -76,7 +76,7 @@ while {visibleMap} do }; */ _textX = format ["%1\nInfluence: %2",_textX,_result]; - if (_siteX in destroyedCities) then {_textX = format ["%1\nDESTROYED",_textX]}; + if (_siteX in destroyedSites) then {_textX = format ["%1\nDESTROYED",_textX]}; if (sidesX getVariable [_siteX,sideUnknown] == teamPlayer) then {_textX = format ["%1\n%2",_textX,[_siteX] call A3A_fnc_garrisonInfo]}; }; if (_siteX in airportsX) then @@ -106,7 +106,7 @@ while {visibleMap} do { _textX = format ["%2 Resources%1",[_siteX] call A3A_fnc_garrisonInfo,_nameFaction]; }; - if (_siteX in destroyedCities) then {_textX = format ["%1\nDESTROYED",_textX]}; + if (_siteX in destroyedSites) then {_textX = format ["%1\nDESTROYED",_textX]}; }; if (_siteX in factories) then { @@ -120,7 +120,7 @@ while {visibleMap} do { _textX = format ["%2 Factory%1",[_siteX] call A3A_fnc_garrisonInfo,_nameFaction]; }; - if (_siteX in destroyedCities) then {_textX = format ["%1\nDESTROYED",_textX]}; + if (_siteX in destroyedSites) then {_textX = format ["%1\nDESTROYED",_textX]}; }; if (_siteX in outposts) then { @@ -166,11 +166,3 @@ while {visibleMap} do positionTel = []; }; onMapSingleClick ""; - - - - - - - - diff --git a/A3-Antistasi/credits.sqf b/A3-Antistasi/functions/init/fn_credits.sqf old mode 100755 new mode 100644 similarity index 100% rename from A3-Antistasi/credits.sqf rename to A3-Antistasi/functions/init/fn_credits.sqf diff --git a/A3-Antistasi/functions/init/fn_getArrayMrks.sqf b/A3-Antistasi/functions/init/fn_getArrayMrks.sqf deleted file mode 100644 index d50855a868..0000000000 --- a/A3-Antistasi/functions/init/fn_getArrayMrks.sqf +++ /dev/null @@ -1,5 +0,0 @@ - params ["_mrkName"]; - - private _return = allMapMarkers select { ((_x splitString "_") select 0) == _mrkName }; - - _return diff --git a/A3-Antistasi/functions/init/fn_initClient.sqf b/A3-Antistasi/functions/init/fn_initClient.sqf new file mode 100644 index 0000000000..8377551c16 --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initClient.sqf @@ -0,0 +1,515 @@ +#include "..\Garage\defineGarage.inc" +private _fileName = "initClient.sqf"; + +//Make sure logLevel is always initialised. +//This should be overridden by the server, as appropriate. Hence the nil check. +if (isNil "logLevel") then { logLevel = 2 };scriptName "initClient.sqf"; + +[2,"initClient started",_fileName] call A3A_fnc_log; + +call A3A_fnc_installSchrodingersBuildingFix; + +if (hasInterface) then { + waitUntil {!isNull player}; + waitUntil {player == player}; + //Disable player saving until they're fully ready, and have chosen whether to load their save. + player setVariable ["canSave", false, true]; +}; + +if (!isServer) then { + call A3A_fnc_initFuncs; + call A3A_fnc_initVar; + [2,format ["MP client version: %1",localize "STR_antistasi_credits_generic_version_text"],_fileName] call A3A_fnc_log; +} +else { + waitUntil {sleep 0.5;(!isNil "serverInitDone")}; +}; +[] execVM "briefing.sqf"; + +if (!hasInterface) exitWith { + [2,format ["Headless client version: %1",localize "STR_antistasi_credits_generic_version_text"],_fileName] call A3A_fnc_log; + [clientOwner] remoteExec ["A3A_fnc_addHC",2]; + call A3A_fnc_initFuncs; + call A3A_fnc_initVar; +}; + +_isJip = _this select 1; +if (isMultiplayer) then { + if (side player == teamPlayer) then { + player setVariable ["eligible",true,true]; + }; + musicON = false; + //waitUntil {scriptdone _introshot}; + disableUserInput true; + cutText ["Waiting for Players and Server Init","BLACK",0]; + [2,"Waiting for server...",_fileName] call A3A_fnc_log; + waitUntil {(!isNil "serverInitDone")}; + cutText ["Starting Mission","BLACK IN",0]; + [2,"Server loaded!",_fileName] call A3A_fnc_log; + [2,format ["JIP client: %1",_isJIP],_fileName] call A3A_fnc_log; + if (hasTFAR) then { + [] execVM "orgPlayers\radioJam.sqf"; + }; + tkPunish = if ("tkPunish" call BIS_fnc_getParamValue == 1) then {true} else {false}; + if (side player == teamPlayer) then { + private _firedHandlerTk = { + _typeX = _this select 1; + if ((_typeX == "Put") or (_typeX == "Throw")) then { + private _shieldDistance = 100; + if (player distance petros < _shieldDistance) then { + hint format ["You cannot throw grenades or place explosives within %1m of base.", _shieldDistance]; + deleteVehicle (_this select 6); + if (_typeX == "Put") then { + if (player distance petros < 10) then { + [player, 20, 0.34, petros] call A3A_fnc_punishment; + }; + }; + }; + }; + }; + player addEventHandler ["Fired", _firedHandlerTk]; + if (hasACE) then { + ["ace_firedPlayer", _firedHandlerTk ] call CBA_fnc_addEventHandler; + }; + }; + if (!isNil "placementDone") then {_isJip = true};//workaround for BIS fail on JIP detection +} +else { + theBoss = player; + groupX = group player; + if (worldName == "Tanoa") then {groupX setGroupId ["Pulu","GroupColor4"]} else {groupX setGroupId ["Stavros","GroupColor4"]}; + player setIdentity "protagonista"; + player setUnitRank "COLONEL"; + player hcSetGroup [group player]; + waitUntil {/*(scriptdone _introshot) and */(!isNil "serverInitDone")}; +}; + +[] spawn A3A_fnc_ambientCivs; +private ["_colourTeamPlayer", "_colorInvaders"]; +_colourTeamPlayer = teamPlayer call BIS_fnc_sideColor; +_colorInvaders = Invaders call BIS_fnc_sideColor; +_positionX = if (side player == side (group petros)) then {position petros} else {getMarkerPos "respawn_west"}; + +{ + _x set [3, 0.33] +} forEach [_colourTeamPlayer, _colorInvaders]; + +_introShot = [ + _positionX, // Target position + format ["%1",worldName], // SITREP text + 50, // altitude + 50, // radius + 90, // degrees viewing angle + 0, // clockwise movement + [ + ["\a3\ui_f\data\map\markers\nato\o_inf.paa", _colourTeamPlayer, markerPos "insertMrk", 1, 1, 0, "Insertion Point", 0], + ["\a3\ui_f\data\map\markers\nato\o_inf.paa", _colorInvaders, markerPos "towerBaseMrk", 1, 1, 0, "Radio Towers", 0] + ] +] spawn BIS_fnc_establishingShot; + +//Initialise membershipEnabled so we can do isMember checks. +membershipEnabled = if (isMultiplayer && "membership" call BIS_fnc_getParamValue == 1) then {true} else {false}; + +disableUserInput false; +player setVariable ["spawner",true,true]; + +if (isMultiplayer && {playerMarkersEnabled}) then { + [] spawn A3A_fnc_playerMarkers; +}; + +if (!hasACE) then { + [player] spawn A3A_fnc_initRevive; + [] spawn A3A_fnc_tags; +} +else { + if (!hasACEMedical) then {[player] spawn A3A_fnc_initRevive;}; +}; + +if (player getVariable ["pvp",false]) exitWith { + lastVehicleSpawned = objNull; + [player] call A3A_fnc_pvpCheck; + [player] call A3A_fnc_dress; + if (hasACE) then {[] call A3A_fnc_ACEpvpReDress}; + respawnTeamPlayer setMarkerAlphaLocal 0; + + player addEventHandler ["GetInMan", {_this call A3A_fnc_ejectPvPPlayerIfInvalidVehicle}]; + player addEventHandler ["SeatSwitchedMan", {[_this select 0, assignedVehicleRole (_this select 0) select 0, _this select 2] call A3A_fnc_ejectPvPPlayerIfInvalidVehicle}]; + player addEventHandler ["InventoryOpened", { + _override = false; + _boxX = typeOf (_this select 1); + if ((_boxX == NATOAmmoBox) or (_boxX == CSATAmmoBox)) then {_override = true}; + _override + }]; + _nameX = if (side player == Occupants) then {nameOccupants} else {nameInvaders}; + waituntil {!isnull (finddisplay 46)}; + gameMenu = (findDisplay 46) displayAddEventHandler ["KeyDown", { + _handled = FALSE; + if (_this select 1 == 207) then { + if (!hasACEhearing) then { + if (soundVolume <= 0.5) then { + 0.5 fadeSound 1; + hintSilent "You've taken out your ear plugs."; + } + else { + 0.5 fadeSound 0.1; + hintSilent "You've inserted your ear plugs."; + }; + }; + } + else { + if (_this select 1 == 21) then { + closedialog 0; + _nul = createDialog "NATO_player"; + }; + }; + _handled + }]; +}; + +player setVariable ["score",0,true]; +player setVariable ["owner",player,true]; +player setVariable ["punish",0,true]; +player setVariable ["moneyX",100,true]; +player setUnitRank "PRIVATE"; +player setVariable ["rankX",rank player,true]; + +stragglers = creategroup teamPlayer; +(group player) enableAttack false; +player setUnitTrait ["camouflageCoef",0.8]; +player setUnitTrait ["audibleCoef",0.8]; + +//Give the player the base loadout. +[player] call A3A_fnc_dress; + +player setvariable ["compromised",0]; +player addEventHandler ["FiredMan", { + _player = _this select 0; + if (captive _player) then { + //if ({((side _x== Invaders) or (side _x== Occupants)) and (_x knowsAbout player > 1.4)} count allUnits > 0) then + if ({if (((side _x == Occupants) or (side _x == Invaders)) and (_x distance player < 300)) exitWith {1}} count allUnits > 0) then { + [_player,false] remoteExec ["setCaptive",0,_player]; + _player setCaptive false; + } + else { + _city = [citiesX,_player] call BIS_fnc_nearestPosition; + _size = [_city] call A3A_fnc_sizeMarker; + _dataX = server getVariable _city; + if (random 100 < _dataX select 2) then { + if (_player distance getMarkerPos _city < _size * 1.5) then { + [_player,false] remoteExec ["setCaptive",0,_player]; + _player setCaptive false; + if (vehicle _player != _player) then { + {if (isPlayer _x) then {[_x,false] remoteExec ["setCaptive",0,_x]; _x setCaptive false}} forEach ((assignedCargo (vehicle _player)) + (crew (vehicle _player)) - [player]); + }; + }; + }; + }; + }; +}]; +player addEventHandler ["HandleDamage", { + private _victim = param [0]; + private _damage = param [2]; + private _instigator = param [6]; + if(!isNull _instigator && isPlayer _instigator && _victim != _instigator && side _instigator == teamPlayer && _damage > 0.9) then { + [_instigator, 20, 0.21, _victim] remoteExec ["A3A_fnc_punishment",_instigator]; + [format ["%1 was injured by %2 (UID: %3), %4m from HQ",name _victim,name _instigator,getPlayerUID _instigator,_victim distance2D posHQ]] remoteExec ["diag_log",2]; + }; +}]; +player addEventHandler ["InventoryOpened", { + private ["_playerX","_containerX","_typeX"]; + _control = false; + _playerX = _this select 0; + if (captive _playerX) then { + _containerX = _this select 1; + _typeX = typeOf _containerX; + if (((_containerX isKindOf "Man") and (!alive _containerX)) or (_typeX == NATOAmmoBox) or (_typeX == CSATAmmoBox)) then { + if ({if (((side _x== Invaders) or (side _x== Occupants)) and (_x knowsAbout _playerX > 1.4)) exitWith {1}} count allUnits > 0) then{ + [_playerX,false] remoteExec ["setCaptive",0,_playerX]; + _playerX setCaptive false; + } + else { + _city = [citiesX,_playerX] call BIS_fnc_nearestPosition; + _size = [_city] call A3A_fnc_sizeMarker; + _dataX = server getVariable _city; + if (random 100 < _dataX select 2) then { + if (_playerX distance getMarkerPos _city < _size * 1.5) then { + [_playerX,false] remoteExec ["setCaptive",0,_playerX]; + _playerX setCaptive false; + }; + }; + }; + }; + }; + _control +}]; +/* +player addEventHandler ["InventoryClosed", { + _control = false; + _uniform = uniform player; + _typeSoldier = getText (configfile >> "CfgWeapons" >> _uniform >> "ItemInfo" >> "uniformClass"); + _sideType = getNumber (configfile >> "CfgVehicles" >> _typeSoldier >> "side"); + if ((_sideType == 1) or (_sideType == 0) and (_uniform != "")) then { + if !(player getVariable ["disguised",false]) then { + hint "You are wearing an enemy uniform, this will make the AI attack you. Beware!"; + player setVariable ["disguised",true]; + player addRating (-1*(2001 + rating player)); + }; + } + else { + if (player getVariable ["disguised",false]) then { + hint "You removed your enemy uniform"; + player addRating (rating player * -1); + }; + }; + _control +}]; +*/ +player addEventHandler ["HandleHeal", { + _player = _this select 0; + if (captive _player) then { + if ({((side _x== Invaders) or (side _x== Occupants)) and (_x knowsAbout player > 1.4)} count allUnits > 0) then { + [_player,false] remoteExec ["setCaptive",0,_player]; + _player setCaptive false; + } + else { + _city = [citiesX,_player] call BIS_fnc_nearestPosition; + _size = [_city] call A3A_fnc_sizeMarker; + _dataX = server getVariable _city; + if (random 100 < _dataX select 2) then { + if (_player distance getMarkerPos _city < _size * 1.5) then { + [_player,false] remoteExec ["setCaptive",0,_player]; + _player setCaptive false; + }; + }; + }; + }; +}]; +player addEventHandler ["WeaponAssembled", { + private ["_veh"]; + _veh = _this select 1; + if (_veh isKindOf "StaticWeapon") then { + if (not(_veh in staticsToSave)) then { + staticsToSave pushBack _veh; + publicVariable "staticsToSave"; + [_veh] call A3A_fnc_AIVEHinit; + }; + _markersX = markersX select {sidesX getVariable [_x,sideUnknown] == teamPlayer}; + _pos = position _veh; + if (_markersX findIf {_pos inArea _x} != -1) then {hint "Static weapon has been deployed for use in a nearby zone, and will be used by garrison militia if you leave it here the next time the zone spawns"}; + } + else { + _veh addEventHandler ["Killed",{[_this select 0] remoteExec ["A3A_fnc_postmortem",2]}]; + }; +}]; +player addEventHandler ["WeaponDisassembled", { + _bag1 = _this select 1; + _bag2 = _this select 2; + //_bag1 = objectParent (_this select 1); + //_bag2 = objectParent (_this select 2); + [_bag1] call A3A_fnc_AIVEHinit; + [_bag2] call A3A_fnc_AIVEHinit; +}]; + +player addEventHandler ["GetInMan", { + private ["_unit","_veh"]; + _unit = _this select 0; + _veh = _this select 2; + _exit = false; + if (isMultiplayer) then { + if !([player] call A3A_fnc_isMember) then { + _owner = _veh getVariable "ownerX"; + if (!isNil "_owner") then { + if (_owner isEqualType "") then { + if ({getPlayerUID _x == _owner} count (units group player) == 0) then { + hint "You cannot board other player vehicle if you are not in the same group"; + moveOut _unit; + _exit = true; + }; + }; + }; + }; + }; + if (!_exit) then { + if (((typeOf _veh) in arrayCivVeh) or ((typeOf _veh) in civBoats)) then { + if (!(_veh in reportedVehs)) then { + [] spawn A3A_fnc_goUndercover; + }; + }; + }; +}]; + +call A3A_fnc_initUndercover; + +if (isMultiplayer) then { + ["InitializePlayer", [player]] call BIS_fnc_dynamicGroups;//Exec on client + if (membershipEnabled) then { + if !([player] call A3A_fnc_isMember) then { + private _isMember = false; + if (isServer) then { + _isMember = true; + }; + if (serverCommandAvailable "#logout") then { + _isMember = true; + hint "You are not in the member's list, but as you are Server Admin, you have been added. Welcome!"; + }; + + if (_isMember) then { + membersX pushBack (getPlayerUID player); + publicVariable "membersX"; + } else { + _nonMembers = {(side group _x == teamPlayer) and !([_x] call A3A_fnc_isMember)} count (call A3A_fnc_playableUnits); + if (_nonMembers >= (playableSlotsNumber teamPlayer) - bookedSlots) then {["memberSlots",false,1,false,false] call BIS_fnc_endMission}; + if (memberDistance != 16000) then {[] execVM "orgPlayers\nonMemberDistance.sqf"}; + + hint "Welcome Guest\n\nYou have joined this server as guest"; + }; + }; + }; +}; + +[] remoteExec ["A3A_fnc_assignBossIfNone", 2]; + +waitUntil { scriptDone _introshot }; + +if (_isJip) then { + [2,"Joining In Progress (JIP)",_filename] call A3A_fnc_log; + + waitUntil {!(isNil "missionsX")}; + if (count missionsX > 0) then { + { + _tsk = _x select 0; + if ([_tsk] call BIS_fnc_taskExists) then { + _state = _x select 1; + if ((_tsk call BIS_fnc_taskState) != _state) then { + /* + _tskVar = _tsk call BIS_fnc_taskVar; + _tskVar setTaskState _state; + */ + [_tsk,_state] call bis_fnc_taskSetState; + }; + }; + } forEach missionsX; + }; +} +else +{ + [2,"Not Joining in Progress (JIP)",_filename] call A3A_fnc_log; +}; + +[] spawn A3A_fnc_modBlacklist; + +//Move this +//HC_commanderX synchronizeObjectsAdd [player]; +//player synchronizeObjectsAdd [HC_commanderX]; + +_textX = []; + +if ((hasTFAR) or (hasACRE)) then { + _textX = ["TFAR or ACRE Detected\n\nAntistasi detects TFAR or ACRE in the server config.\nAll players will start with addon default radios.\nDefault revive system will shut down radios while players are inconscious.\n\n"]; +}; +if (hasACE) then { + _textX = _textX + ["ACE 3 Detected\n\nAntistasi detects ACE modules in the server config.\nACE items added to arsenal and ammoboxes. Default AI control is disabled\nIf ACE Medical is used, default revive system will be disabled.\nIf ACE Hearing is used, default earplugs will be disabled."]; +}; +if (hasRHS) then { + _textX = _textX + ["RHS Detected\n\nAntistasi detects RHS in the server config.\nDepending on the modules will have the following effects.\n\nAFRF: Replaces CSAT by a mix of russian units\n\nUSAF: Replaces NATO by a mix of US units\n\nGREF: Recruited AI will count with RHS as basic weapons, replaces FIA with Chdk units. Adds some civilian trucks"]; +}; +if (hasFFAA) then { + _textX = _textX + ["FFAA Detected\n\nAntistasi detects FFAA in the server config.\nFIA Faction will be replaced by Spanish Armed Forces"]; +}; + +if (hasTFAR or hasACE or hasRHS or hasACRE or hasFFAA) then { + [_textX] spawn { + sleep 0.5; + _textX = _this select 0; + "Integrated Mods Detected" hintC _textX; + hintC_arr_EH = findDisplay 72 displayAddEventHandler ["unload", { + 0 = _this spawn { + _this select 0 displayRemoveEventHandler ["unload", hintC_arr_EH]; + hintSilent ""; + }; + }]; + }; +}; +waituntil {!isnull (finddisplay 46)}; +gameMenu = (findDisplay 46) displayAddEventHandler ["KeyDown",A3A_fnc_keys]; +//removeAllActions boxX; + +//if ((!isServer) and (isMultiplayer)) then {boxX call jn_fnc_arsenal_init}; + +boxX allowDamage false; +boxX addAction ["Transfer Vehicle cargo to Ammobox", {[] spawn A3A_fnc_empty;}, 4]; +boxX addAction ["Move this asset", A3A_fnc_moveHQObject,nil,0,false,true,"","(_this == theBoss)", 4]; +flagX allowDamage false; +flagX addAction ["Unit Recruitment", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot recruit units while there are enemies near you"} else { [] spawn A3A_fnc_unit_recruit; }},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)"]; +flagX addAction ["Move this asset", A3A_fnc_moveHQObject,nil,0,false,true,"","(_this == theBoss)", 4]; + +//Adds a light to the flag +private _flagLight = "#lightpoint" createVehicle (getPos flagX); +_flagLight setLightDayLight true; +_flagLight setLightColor [1, 1, 0.9]; +_flagLight setLightBrightness 0.2; +_flagLight setLightAmbient [1, 1, 0.9]; +_flagLight lightAttachObject [flagX, [0, 0, 4]]; +_flagLight setLightAttenuation [7, 0, 0.5, 0.5]; + +vehicleBox allowDamage false; +vehicleBox addAction ["Heal, Repair and Rearm", A3A_fnc_healAndRepair,nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)", 4]; +vehicleBox addAction ["Vehicle Arsenal", JN_fnc_arsenal_handleAction, [], 0, true, false, "", "alive _target && vehicle _this != _this", 10]; +if (isMultiplayer) then { + vehicleBox addAction ["Personal Garage", { [GARAGE_PERSONAL] spawn A3A_fnc_garage },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)", 4]; +}; +vehicleBox addAction ["Faction Garage", { [GARAGE_FACTION] spawn A3A_fnc_garage; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)", 4]; +vehicleBox addAction ["Buy Vehicle", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot buy vehicles while there are enemies near you"} else {nul = createDialog "vehicle_option"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)", 4]; +vehicleBox addAction ["Move this asset", A3A_fnc_moveHQObject,nil,0,false,true,"","(_this == theBoss)", 4]; + +fireX allowDamage false; +[fireX, "fireX"] call A3A_fnc_flagaction; + +mapX allowDamage false; +mapX addAction ["Game Options", {hint format ["Antistasi - %2\n\nVersion: %1\n\nDifficulty: %3\nUnlock Weapon Number: %4\nLimited Fast Travel: %5",antistasiVersion,worldName,if (skillMult == 2) then {"Normal"} else {if (skillMult == 1) then {"Easy"} else {"Hard"}},minWeaps,if (limitedFT) then {"Yes"} else {"No"}]; nul=CreateDialog "game_options";},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)", 4]; +mapX addAction ["Map Info", A3A_fnc_cityinfo,nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)", 4]; +mapX addAction ["Move this asset", A3A_fnc_moveHQObject,nil,0,false,true,"","(_this == theBoss)", 4]; +if (isMultiplayer) then {mapX addAction ["AI Load Info", { [] remoteExec ["A3A_fnc_AILoadInfo",4];},nil,0,false,true,"","((_this == theBoss) || (serverCommandAvailable ""#logout""))"]}; +_nul = [player] execVM "OrgPlayers\unitTraits.sqf"; +groupPetros = group petros; +groupPetros setGroupIdGlobal ["Petros","GroupColor4"]; +petros setIdentity "friendlyX"; +petros setName "Petros"; +petros disableAI "MOVE"; +petros disableAI "AUTOTARGET"; +[petros,"mission"] call A3A_fnc_flagaction; + +disableSerialization; +//1 cutRsc ["H8erHUD","PLAIN",0,false]; +_layer = ["statisticsX"] call bis_fnc_rscLayer; +_layer cutRsc ["H8erHUD","PLAIN",0,false]; +[] spawn A3A_fnc_statistics; + +//Check if we need to relocate HQ +if (isNil "placementDone") then { + if (isNil "playerPlacingHQ" || {!(playerPlacingHQ in (call A3A_fnc_playableUnits))}) then { + playerPlacingHQ = player; + publicVariable "playerPlacingHQ"; + call A3A_fnc_placementSelection; + }; +}; + +//Load the player's personal save. +if (isMultiplayer) then { + [] spawn A3A_fnc_createDialog_shouldLoadPersonalSave; +} +else +{ + if (loadLastSave) then { + [] spawn A3A_fnc_loadPlayer; + }; +}; + +//Move the player to HQ now they're initialised. +player setPos (getMarkerPos respawnTeamPlayer); + +//Disables rabbits and snakes, because they cause the log to be filled with "20:06:39 Ref to nonnetwork object Agent 0xf3b4a0c0" +//Can re-enable them if we find the source of the bug. +enableEnvironment [false, true]; + +[2,"initClient completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/functions/init/fn_initFuncs.sqf b/A3-Antistasi/functions/init/fn_initFuncs.sqf new file mode 100755 index 0000000000..3794842b6e --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initFuncs.sqf @@ -0,0 +1,10 @@ +scriptName "initFuncs.sqf"; +private _fileName = "initFuncs.sqf"; +[2,"initFuncs started",_fileName] call A3A_fnc_log; + +[] call compile preprocessFileLineNumbers "scripts\Init_UPSMON.sqf"; +[] call compile preprocessFileLineNumbers "statSave\saveFuncs.sqf"; +[] call jn_fnc_logistics_init; +boxX call jn_fnc_arsenal_init; + +[2,"initFuncs completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/functions/init/fn_initGarrisons.sqf b/A3-Antistasi/functions/init/fn_initGarrisons.sqf new file mode 100644 index 0000000000..cc2b420299 --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initGarrisons.sqf @@ -0,0 +1,196 @@ +//Original Author: Barbolani +//Edited and updated by the Antistasi Community Development Team +scriptName "fn_initGarrisons"; +private _fileName = "fn_initGarrisons"; +[2,"InitGarrisons started",_fileName] call A3A_fnc_log; + +_fnc_initMarker = +{ + params ["_mrkCSAT", "_target", "_mrkType", "_mrkText", ["_useSideName", false]]; + private ["_pos", "_mrk", "_garrNum", "_garrison", "_groupsRandom"]; + + { + _pos = getMarkerPos _x; + _mrk = createMarker [format ["Dum%1", _x], _pos]; + //TODO Multilanguage variable insted text + _mrk setMarkerShape "ICON"; + + if (_useSideName) then + { + killZones setVariable [_x, [], true]; + server setVariable [_x, 0, true]; + + if (_x in _mrkCSAT) then + { + _mrkText = format [_mrkText, nameInvaders]; + if(_x in airportsX) then + { + _mrkType = flagCSATmrk; + }; + } + else + { + _mrkText = format [_mrkText, nameOccupants]; + if(_x in airportsX) then + { + _mrkType = flagNATOmrk; + }; + }; + }; + + if (_x in _mrkCSAT) then + { + _mrk setMarkerColor colorInvaders; + sidesX setVariable [_x, Invaders, true]; + } + else + { + _mrk setMarkerColor colorOccupants; + sidesX setVariable [_x, Occupants, true]; + }; + + _mrk setMarkerType _mrkType; + _mrk setMarkerText _mrkText; + + [_x] call A3A_fnc_createControls; + } forEach _target; +}; + + +_fnc_initGarrison = +{ + params ["_markerArray", "_type"]; + private ["_side", "_groupsRandom", "_garrNum", "_garrisonOld", "_marker"]; + { + _marker = _x; + _garrNum = ([_marker] call A3A_fnc_garrisonSize) / 8; + _side = sidesX getVariable [_marker, sideUnknown]; + if(_side != Occupants) then + { + _groupsRandom = [groupsCSATSquad, groupsFIASquad] select ((_marker in outposts) && (gameMode == 4)); + } + else + { + if(_type != "Airport" && {_type != "Outpost"}) then + { + _groupsRandom = groupsFIASquad; + } + else + { + _groupsRandom = groupsNATOSquad; + }; + }; + //Old system, keeping it intact for the moment + _garrisonOld = []; + for "_i" from 1 to _garrNum do + { + _garrisonOld append (selectRandom _groupsRandom); + }; + // + + //Old system, keeping it runing for now + garrison setVariable [_marker, _garrisonOld, true]; + + } forEach _markerArray; +}; + +private _mrkNATO = []; +private _mrkCSAT = []; +private _controlsNATO = []; +private _controlsCSAT = []; + +if (debug) then +{ + diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting Control Marks for Worldname: %2 .", servertime, worldName]; +}; + +if (gameMode == 1) then +{ + _controlsNATO = controlsX; + switch (toLower worldName) do { + case "tanoa": { + _mrkCSAT = ["airport_1", "seaport_5", "outpost_10", "control_20"]; + _controlsNATO = _controlsNATO - ["control_20"]; + _controlsCSAT = ["control_20"]; + }; + case "altis": { + _mrkCSAT = ["airport_2", "seaport_4", "outpost_5", "control_52", "control_33"]; + _controlsNATO = _controlsNATO - ["control_52", "control_33"]; + _controlsCSAT = ["control_52", "control_33"]; + }; + case "chernarus_summer": { + _mrkCSAT = ["outpost_21"]; + }; + }; + _mrkNATO = markersX - _mrkCSAT - ["Synd_HQ"]; + + if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | _mrkCSAT: %2.", servertime, _mrkCSAT]; + diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | _mrkNATO: %2.", servertime, _mrkNATO]; + }; +} +else +{ + if (gameMode == 4) then + { + _mrkCSAT = markersX - ["Synd_HQ"]; + _controlsCSAT = controlsX; + } + else + { + _mrkNATO = markersX - ["Synd_HQ"]; + _controlsNATO = controlsX; + }; +}; + +{sidesX setVariable [_x, Occupants, true]} forEach _controlsNATO; +{sidesX setVariable [_x, Invaders, true]} forEach _controlsCSAT; + +[_mrkCSAT, airportsX, flagCSATmrk, "%1 Airbase", true] call _fnc_initMarker; +[_mrkCSAT, resourcesX, "loc_rock", "Resources"] call _fnc_initMarker; +[_mrkCSAT, factories, "u_installation", "Factory"] call _fnc_initMarker; +[_mrkCSAT, outposts, "loc_bunker", "%1 Outpost", true] call _fnc_initMarker; +[_mrkCSAT, seaports, "b_naval", "Sea Port"] call _fnc_initMarker; + +if (!(isNil "loadLastSave") && {loadLastSave}) exitWith {}; + + +if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Airbase stuff.", servertime]; +}; + +[airportsX, "Airport"] call _fnc_initGarrison; //Old system +[airportsX, "Airport", [0,0,0]] call A3A_fnc_createGarrison; //New system + +if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Resource stuff.", servertime]; +}; + +[resourcesX, "Resource"] call _fnc_initGarrison; //Old system +[resourcesX, "Other", [0,0,0]] call A3A_fnc_createGarrison; //New system + +if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Factory stuff.", servertime]; +}; + +[factories, "Factory"] call _fnc_initGarrison; +[factories, "Other", [0,0,0]] call A3A_fnc_createGarrison; + +if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Outpost stuff.", servertime]; +}; + +[outposts, "Outpost"] call _fnc_initGarrison; +[outposts, "Outpost", [1,1,0]] call A3A_fnc_createGarrison; + +if (debug) then { + diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Seaport stuff.", servertime]; +}; + +[seaports, "Seaport"] call _fnc_initGarrison; +[seaports, "Other", [1,0,0]] call A3A_fnc_createGarrison; + +//New system, adding cities +[citiesX, "City", [0,0,0]] call A3A_fnc_createGarrison; + +[2,"InitGarrisons completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/functions/init/fn_initGetMissionPath.sqf b/A3-Antistasi/functions/init/fn_initGetMissionPath.sqf new file mode 100644 index 0000000000..c3d35a4f39 --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initGetMissionPath.sqf @@ -0,0 +1,6 @@ +private _fileName = "fn_initGetMissionPath.sqf"; +scriptName "fn_initGetMissionPath.sqf"; +[2,"Compiling mission path",_fileName] call A3A_fnc_log; +missionPath = [(str missionConfigFile), 0, -15] call BIS_fnc_trimString; +publicVariable "missionPath"; +[2,"Mission path is valid",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/functions/init/fn_initServer.sqf b/A3-Antistasi/functions/init/fn_initServer.sqf new file mode 100644 index 0000000000..5ab2d5a6ba --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initServer.sqf @@ -0,0 +1,212 @@ +if (!(isNil "serverInitDone")) exitWith {}; +private _fileName = "initServer.sqf"; +scriptName "initServer.sqf"; +//Define logLevel first thing, so we can start logging appropriately. +logLevel = "LogLevel" call BIS_fnc_getParamValue; publicVariable "logLevel"; //Sets a log level for feedback, 1=Errors, 2=Information, 3=DEBUG +[2,"Dedicated server detected",_fileName] call A3A_fnc_log; +[2,"Server init started",_fileName] call A3A_fnc_log; +boxX allowDamage false; +flagX allowDamage false; +vehicleBox allowDamage false; +fireX allowDamage false; +mapX allowDamage false; + +//Load server id +serverID = profileNameSpace getVariable ["ss_ServerID",nil]; +if(isNil "serverID") then { + serverID = str(round((random(100000)) + random 10000)); + profileNameSpace setVariable ["ss_ServerID",serverID]; +}; +publicVariable "serverID"; +waitUntil {!isNil "serverID"}; + +if (isMultiplayer) then { + //Load server parameters + loadLastSave = if ("loadSave" call BIS_fnc_getParamValue == 1) then {true} else {false}; + gameMode = "gameMode" call BIS_fnc_getParamValue; publicVariable "gameMode"; + autoSave = if ("autoSave" call BIS_fnc_getParamValue == 1) then {true} else {false}; + membershipEnabled = if ("membership" call BIS_fnc_getParamValue == 1) then {true} else {false}; + switchCom = if ("switchComm" call BIS_fnc_getParamValue == 1) then {true} else {false}; + tkPunish = if ("tkPunish" call BIS_fnc_getParamValue == 1) then {true} else {false}; + distanceMission = "mRadius" call BIS_fnc_getParamValue; publicVariable "distanceMission"; + pvpEnabled = if ("allowPvP" call BIS_fnc_getParamValue == 1) then {true} else {false}; publicVariable "pvpEnabled"; + skillMult = "AISkill" call BIS_fnc_getParamValue; publicVariable "skillMult"; + minWeaps = "unlockItem" call BIS_fnc_getParamValue; publicVariable "minWeaps"; + memberOnlyMagLimit = "MemberOnlyMagLimit" call BIS_fnc_getParamValue; publicVariable "memberOnlyMagLimit"; + allowMembersFactionGarageAccess = "allowMembersFactionGarageAccess" call BIS_fnc_getParamValue == 1; publicVariable "allowMembersFactionGarageAccess"; + civTraffic = "civTraffic" call BIS_fnc_getParamValue; publicVariable "civTraffic"; + memberDistance = "memberDistance" call BIS_fnc_getParamValue; publicVariable "memberDistance"; + limitedFT = if ("allowFT" call BIS_fnc_getParamValue == 1) then {true} else {false}; publicVariable "limitedFT"; + napalmEnabled = if ("napalmEnabled" call BIS_fnc_getParamValue == 1) then {true} else {false}; publicVariable "napalmEnabled"; + teamSwitchDelay = "teamSwitchDelay" call BIS_fnc_getParamValue; + playerMarkersEnabled = ("pMarkers" call BIS_fnc_getParamValue == 1); publicVariable "playerMarkersEnabled"; + minPlayersRequiredforPVP = "minPlayersRequiredforPVP" call BIS_fnc_getParamValue; publicVariable "minPlayersRequiredforPVP"; +} else { + [2, "Setting Singleplayer Params", _fileName] call A3A_fnc_log; + //These should be set in the set parameters dialog. + //This is just a fallback so we don't break + loadLastSave = if (isNil "loadLastSave") then {[1, "No loadLastSave setting", _fileName] call A3A_fnc_log; true} else {loadLastSave}; + gameMode = if (isNil "gameMode") then {[1, "No gameMode setting", _fileName] call A3A_fnc_log; 1} else {gameMode}; + autoSave = false; + membershipEnabled = false; + switchCom = false; + tkPunish = false; + distanceMission = 4000; + pvpEnabled = false; + skillMult = if (isNil "skillMult") then {2} else {skillMult}; + //Acceptable to default this one. + minWeaps = if (isNil "minWeaps") then {25} else {minWeaps}; + memberOnlyMagLimit = 0; + allowMembersFactionGarageAccess = true; + civTraffic = 1; + memberDistance = 10; + limitedFT = false; + napalmEnabled = false; + teamSwitchDelay = 0; + playerMarkersEnabled = true; + minPlayersRequiredforPVP = 2; +}; + +[] call A3A_fnc_crateLootParams; + +//Load Campaign ID if resuming game +if(loadLastSave) then { + campaignID = profileNameSpace getVariable ["ss_CampaignID",""]; +} +else { + campaignID = str(round((random(100000)) + random 10000)); + profileNameSpace setVariable ["ss_CampaignID", campaignID]; +}; +publicVariable "campaignID"; + +//Initialise variables needed by the mission. +_nul = call A3A_fnc_initVar; + +savingServer = true; +[2,format ["%1 server version: %2", ["SP","MP"] select isMultiplayer, localize "STR_antistasi_credits_generic_version_text"],_fileName] call A3A_fnc_log; +bookedSlots = floor ((("memberSlots" call BIS_fnc_getParamValue)/100) * (playableSlotsNumber teamPlayer)); publicVariable "bookedSlots"; +_nul = call A3A_fnc_initFuncs; +_nul = call A3A_fnc_initZones; +if (gameMode != 1) then { + Occupants setFriend [Invaders,1]; + Invaders setFriend [Occupants,1]; + if (gameMode == 3) then {"CSAT_carrier" setMarkerAlpha 0}; + if (gameMode == 4) then {"NATO_carrier" setMarkerAlpha 0}; +}; +["Initialize"] call BIS_fnc_dynamicGroups;//Exec on Server +hcArray = []; + +waitUntil {count (call A3A_fnc_playableUnits) > 0}; +waitUntil {({(isPlayer _x) and (!isNull _x) and (_x == _x)} count allUnits) == (count (call A3A_fnc_playableUnits))}; +[] spawn A3A_fnc_modBlacklist; + +if (loadLastSave) then { + [2,"Loading saved data",_fileName] call A3A_fnc_log; + ["membersX"] call fn_LoadStat; + if (isNil "membersX") then { + loadLastSave = false; + [2,"No member data found, skipping load",_fileName] call A3A_fnc_log; + }; +}; +publicVariable "loadLastSave"; + +call A3A_fnc_initGarrisons; + +if (loadLastSave) then { + [] spawn A3A_fnc_loadServer; + waitUntil {!isNil"statsLoaded"}; + if (!isNil "as_fnc_getExternalMemberListUIDs") then { + membersX = []; + {membersX pushBackUnique _x} forEach (call as_fnc_getExternalMemberListUIDs); + publicVariable "membersX"; + }; + if (membershipEnabled and (membersX isEqualTo [])) then { + [petros,"hint","Membership is enabled but members list is empty. Current players will be added to the member list"] remoteExec ["A3A_fnc_commsMP"]; + [2,"Previous data loaded",_fileName] call A3A_fnc_log; + [2,"Membership enabled, adding current players to list",_fileName] call A3A_fnc_log; + membersX = []; + { + membersX pushBack (getPlayerUID _x); + } forEach (call A3A_fnc_playableUnits); + publicVariable "membersX"; + }; + theBoss = objNull; + { + if (([_x] call A3A_fnc_isMember) and (side _x == teamPlayer)) exitWith { + theBoss = _x; + }; + } forEach playableUnits; + publicVariable "theBoss"; +} +else { + theBoss = objNull; + membersX = []; + if (!isNil "as_fnc_getExternalMemberListUIDs") then { + {membersX pushBackUnique _x} forEach (call as_fnc_getExternalMemberListUIDs); + { + if (([_x] call A3A_fnc_isMember) and (side _x == teamPlayer)) exitWith {theBoss = _x}; + } forEach playableUnits; + } + else { + [2,"New session selected",_fileName] call A3A_fnc_log; + if (isNil "commanderX" || {isNull commanderX}) then {commanderX = (call A3A_fnc_playableUnits) select 0}; + theBoss = commanderX; + theBoss setRank "CORPORAL"; + [theBoss,"CORPORAL"] remoteExec ["A3A_fnc_ranksMP"]; + waitUntil {(getPlayerUID theBoss) != ""}; + if (membershipEnabled) then {membersX pushBackUnique (getPlayerUID theBoss)}; + }; + publicVariable "theBoss"; + publicVariable "membersX"; +}; + +[2,"Accepting players",_fileName] call A3A_fnc_log; +if !(loadLastSave) then { + { + _x call A3A_fnc_unlockEquipment; + } foreach initialRebelEquipment; + [2,"Initial arsenal unlocks completed",_fileName] call A3A_fnc_log; +}; +call A3A_fnc_createPetros; + +[[petros,"hint","Server load finished"],"A3A_fnc_commsMP"] call BIS_fnc_MP; + +//HandleDisconnect doesn't get 'owner' param, so we can't use it to handle headless client disconnects. +addMissionEventHandler ["HandleDisconnect",{_this call A3A_fnc_onPlayerDisconnect;false}]; +//PlayerDisconnected doesn't get access to the unit, so we shouldn't use it to handle saving. +addMissionEventHandler ["PlayerDisconnected",{_this call A3A_fnc_onHeadlessClientDisconnect;false}]; + +addMissionEventHandler ["BuildingChanged", { + params ["_oldBuilding", "_newBuilding", "_isRuin"]; + + if (_isRuin) then { + _oldBuilding setVariable ["ruins", _newBuilding]; + _newBuilding setVariable ["building", _oldBuilding]; + + destroyedBuildings pushBack (getPosATL _oldBuilding); + }; +}]; + +serverInitDone = true; publicVariable "serverInitDone"; +[2,"Setting serverInitDone as true",_fileName] call A3A_fnc_log; + + +[2, "Waiting for HQ placement", _fileName] call A3A_fnc_log; +waitUntil {sleep 1;!(isNil "placementDone")}; +[2, "HQ Placed, continuing init", _fileName] call A3A_fnc_log; +distanceXs = [] spawn A3A_fnc_distance; +[] spawn A3A_fnc_resourcecheck; +[] execVM "Scripts\fn_advancedTowingInit.sqf"; +savingServer = false; + +[] spawn A3A_fnc_spawnDebuggingLoop; + +//Enable performance logging +[] spawn { + while {true} do { + [] call A3A_fnc_logPerformance; + sleep 30; + }; +}; +execvm "functions\init\fn_initSnowFall.sqf"; +[2,"initServer completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/functions/init/fn_initSnowFall.sqf b/A3-Antistasi/functions/init/fn_initSnowFall.sqf new file mode 100644 index 0000000000..3502f0871a --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initSnowFall.sqf @@ -0,0 +1,15 @@ +//Snow only on chernarus winter map +if(toLower worldName != "chernarus_winter") exitWith {}; + +while {true} do +{ + private _waitTime = (random 30) * 60; //30 minutes of wait time max + private _snowTime = (random 15) * 60; //15 minutes of snow max + private _sbursts = (random 15); // creates randomly number between 0 and 15 to determine the amount of snow bursts + sleep _waitTime; + // Call Snow Storm Script + //"_snowfall","_duration_storm","_ambient_sounds_al","_breath_vapors","_snow_burst","_effect_on_objects","_vanilla_fog","_local_fog","_intensifywind","_unitsneeze" + [true, _snowTime, 15, true, _sbursts, false, true, true, false, true] execvm "AL_snowstorm\al_snow.sqf"; + sleep _snowTime; + //End snow script here if needed +} diff --git a/A3-Antistasi/functions/init/fn_initSpawnPlaces.sqf b/A3-Antistasi/functions/init/fn_initSpawnPlaces.sqf new file mode 100644 index 0000000000..35daa4e5b6 --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initSpawnPlaces.sqf @@ -0,0 +1,206 @@ +#define SPACING 1 + +params ["_marker", "_placementMarker"]; + +private ["_vehicleMarker", "_heliMarker", "_hangarMarker", "_mortarMarker", "_markerPrefix", "_markerSplit", "_first", "_fullName"]; + +_vehicleMarker = []; +_heliMarker = []; +_hangarMarker = []; +_mortarMarker = []; + +//Calculating marker prefix +_markerPrefix = ""; +_markerSplit = _marker splitString "_"; +switch (_markerSplit select 0) do +{ + case ("airport"): {_markerPrefix = "airp_";}; + case ("outpost"): {_markerPrefix = "outp_";}; + case ("resource"): {_markerPrefix = "reso_";}; + case ("factory"): {_markerPrefix = "fact_";}; + case ("seaport"): {_markerPrefix = "seap_";}; +}; +if(count _markerSplit > 1) then +{ + _markerPrefix = format ["%1%2_", _markerPrefix, _markerSplit select 1]; +}; + +//Sort marker +_mainMarker = getMarkerPos _marker; +{ + _first = (_x splitString "_") select 0; + _fullName = format ["%1%2", _markerPrefix, _x]; + if(debug && {_mainMarker distance (getMarkerPos _fullName) > 500}) then + { + diag_log format ["Placementmarker %1 is more than 500 meter away from its mainMarker %2. You may want to check that!", _fullName, _marker]; + }; + switch (_first) do + { + case ("vehicle"): {_vehicleMarker pushBack _fullName;}; + case ("helipad"): {_heliMarker pushBack _fullName;}; + case ("hangar"): {_hangarMarker pushBack _fullName;}; + case ("mortar"): {_mortarMarker pushBack _fullName;}; + }; + _fullName setMarkerAlpha 0; +} forEach _placementMarker; + +if(count _vehicleMarker == 0) then +{ + diag_log format ["InitSpawnPlaces: Could not find any vehicle places on %1!", _marker]; +}; + +private ["_markerSize", "_distance", "_buildings", "_hangars", "_helipads", "_markerX"]; + +_markerSize = markerSize _marker; +_distance = sqrt ((_markerSize select 0) * (_markerSize select 0) + (_markerSize select 1) * (_markerSize select 1)); + +_buildings = nearestObjects [getMarkerPos _marker, ["Helipad_Base_F", "Land_Hangar_F", "Land_TentHangar_V1_F", "Land_Airport_01_hangar_F", "Land_ServiceHangar_01_L_F", "Land_ServiceHangar_01_R_F"], _distance, true]; + +_hangars = []; +_helipads = []; + +{ + if((getPos _x) inArea _marker) then + { + if(_x isKindOf "Helipad_Base_F") then + { + _helipads pushBack _x; + } + else + { + _hangars pushBack _x; + }; + }; +} forEach _buildings; + +//Find additional helipads and hangars (maybe a unified system would be better??) +{ + _markerX = _x; + _markerSize = markerSize _x; + _distance = sqrt ((_markerSize select 0) * (_markerSize select 0) + (_markerSize select 1) * (_markerSize select 1)); + _buildings = nearestObjects [getMarkerPos _x, ["Helipad_Base_F"], _distance, true]; + { + if((getPos _x) inArea _markerX) then + { + _helipads pushBackUnique _x; + }; + } forEach _buildings; +} forEach _heliMarker; + +{ + _markerX = _x; + _markerSize = markerSize _x; + _distance = sqrt ((_markerSize select 0) * (_markerSize select 0) + (_markerSize select 1) * (_markerSize select 1)); + _buildings = nearestObjects [getMarkerPos _x, ["Land_Hangar_F", "Land_TentHangar_V1_F", "Land_Airport_01_hangar_F"/*, "Land_ServiceHangar_01_L_F", "Land_ServiceHangar_01_R_F"*/], _distance, true]; + { + if((getPos _x) inArea _markerX) then + { + _hangars pushBackUnique _x; + }; + } forEach _buildings; +} forEach _hangarMarker; +//All additional hangar and helipads found + +private ["_vehicleSpawns", "_size", "_length", "_width", "_vehicleCount", "_realLength", "_realSpace", "_markerDir", "_dis", "_pos", "_heliSpawns", "_dir", "_planeSpawns", "_mortarSpawns", "_spawns"]; + +_vehicleSpawns = []; +{ + _markerX = _x; + _size = getMarkerSize _x; + _length = (_size select 0) * 2; + _width = (_size select 1) * 2; + if(_width < (4 + 2 * SPACING)) then + { + diag_log format ["InitSpawnPlaces: Marker %1 is not wide enough for vehicles, required are %2 meters!", _x , (4 + 2 * SPACING)]; + } + else + { + if(_length < 10) then + { + diag_log format ["InitSpawnPlaces: Marker %1 is not long enough for vehicles, required are 10 meters!", _x]; + } + else + { + //Cleaning area + private _radius = sqrt (_length * _length + _width * _width); + if (!isMultiplayer) then + { + { + if((getPos _x) inArea _markerX) then + { + _x hideObject true; + }; + } foreach (nearestTerrainObjects [getMarkerPos _markerX, ["Tree","Bush", "Hide", "Rock", "Fence"], _radius, true]); + } + else + { + { + if((getPos _x) inArea _markerX) then + { + [_x,true] remoteExec ["hideObjectGlobal",2]; + } + } foreach (nearestTerrainObjects [getMarkerPos _markerX, ["Tree","Bush", "Hide", "Rock", "Fence"], _radius, true]); + }; + + //Create the places + _vehicleCount = floor ((_length - SPACING) / (4 + SPACING)); + _realLength = _vehicleCount * 4; + _realSpace = (_length - _realLength) / (_vehicleCount + 1); + _markerDir = markerDir _markerX; + for "_i" from 1 to _vehicleCount do + { + _dis = (_realSpace + 2 + ((_i - 1) * (4 + _realSpace))) - (_length / 2); + _pos = [getMarkerPos _markerX, _dis, (_markerDir + 90)] call BIS_fnc_relPos; + _pos set [2, ((_pos select 2) + 0.1) max 0.1]; + _vehicleSpawns pushBack [[_pos, _markerDir], false]; + }; + }; + }; +} forEach _vehicleMarker; + +_heliSpawns = []; +{ + _pos = getPos _x; + _pos set [2, 0.1]; + if (!isMultiplayer) then + { + { + _x hideObject true; + } foreach (nearestTerrainObjects [_pos, ["Tree","Bush", "Hide", "Rock"], 5, true]); + } + else + { + { + [_x,true] remoteExec ["hideObjectGlobal",2]; + } foreach (nearestTerrainObjects [_pos, ["Tree","Bush", "Hide", "Rock"], 5, true]); + }; + _dir = direction _x; + _heliSpawns pushBack [[_pos, _dir], false]; +} forEach _helipads; + +_planeSpawns = []; +{ + _pos = getPos _x; + _pos set [2, ((_pos select 2) + 0.1) max 0.1]; + _dir = direction _x; + if(_x isKindOf "Land_Hangar_F" || {_x isKindOf "Land_Airport_01_hangar_F" /*|| {_x isKindOf "Land_ServiceHangar_01_R_F"}*/}) then + { + //This hangar is facing the wrong way... + _dir = _dir + 180; + }; + _planeSpawns pushBack [[_pos, _dir], false]; +} forEach _hangars; + +_mortarSpawns = []; +{ + _pos = getMarkerPos _x; + _pos set [2, ((_pos select 2) + 0.1) max 0.1]; + _mortarSpawns pushBack [[_pos, 0], false]; +} forEach _mortarMarker; + +_spawns = [_vehicleSpawns, _heliSpawns, _planeSpawns, _mortarSpawns]; + +//diag_log format ["%1 set to %2", _marker, _spawns]; + +//Saving the spawn places +spawner setVariable [format ["%1_spawns", _marker], _spawns, true]; diff --git a/A3-Antistasi/functions/init/fn_initVar.sqf b/A3-Antistasi/functions/init/fn_initVar.sqf new file mode 100755 index 0000000000..e574b40eb0 --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initVar.sqf @@ -0,0 +1,21 @@ +//Original Author: Barbolani +//Edited and updated by the Antstasi Community Development Team +scriptName "initVar.sqf"; +private _fileName = "initVar.sqf"; +[2,"initVar started",_fileName] call A3A_fnc_log; + +call A3A_fnc_initVarCommon; + +if (isServer) then { + call A3A_fnc_initVarServer; +}; + +//Wait until the server has finished initVarServer, and we've received all required data. +waitUntil {!isNil "initVarServerCompleted"}; + +call A3A_fnc_initVarClient; + +//Marks initVar as finished. +initVar = true; +if (isMultiplayer) then {[[petros,"hint","Variables Init Completed"],"A3A_fnc_commsMP"] call BIS_fnc_MP;}; +[2,"initVar completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/functions/init/fn_initVarClient.sqf b/A3-Antistasi/functions/init/fn_initVarClient.sqf new file mode 100644 index 0000000000..7ebb943e3a --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initVarClient.sqf @@ -0,0 +1,22 @@ +/** + * This file is called AFTER initVarServer.sqf, on both the client and server. + */ +scriptName "initVarClient.sqf"; +private _fileName = "initVarClient.sqf"; +[2,"initVarClient started",_fileName] call A3A_fnc_log; + +//Is music enabled +musicON = false; + +//True when the client is saving +savingClient = false; + +//Prevents units being recruited too soon after being dismissed. +recruitCooldown = 0; + +incomeRep = false; + +//Should AI automatically heal teammates. Each client has their own copy of this. +autoHeal = false; + +[2,"initVarClient completed",_fileName] call A3A_fnc_log; \ No newline at end of file diff --git a/A3-Antistasi/functions/init/fn_initVarCommon.sqf b/A3-Antistasi/functions/init/fn_initVarCommon.sqf new file mode 100644 index 0000000000..9d6d6fc7e0 --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initVarCommon.sqf @@ -0,0 +1,257 @@ +/* + * This is the first initVar that gets called, and it gets called on both the client and the server. + * Generally, this should only be constants. + */ + +scriptName "initVarCommon.sqf"; +private _fileName = "initVarCommon.sqf"; +[2,"initVarCommon started",_fileName] call A3A_fnc_log; + +antistasiVersion = localize "STR_antistasi_credits_generic_version_text"; + +//////////////////////////////////// +// INITIAL SETTING AND VARIABLES /// +//////////////////////////////////// +[2,"Setting initial variables",_fileName] call A3A_fnc_log; //Sets a log level for feedback, 1=Errors, 2=Information, 3=DEBUG +debug = false; + +//////////////////////////////////// +// BEGIN SIDES AND COLORS /// +//////////////////////////////////// +[2,"Generating sides",_fileName] call A3A_fnc_log; +teamPlayer = side group petros; +if (teamPlayer == independent) then + { + Occupants = west; + colorTeamPlayer = "colorGUER"; + colorOccupants = "colorBLUFOR"; + respawnTeamPlayer = "respawn_guerrila"; + respawnOccupants = "respawn_west" + } +else + { + Occupants = independent; + colorTeamPlayer = "colorBLUFOR"; + colorOccupants = "colorGUER"; + respawnTeamPlayer = "respawn_west"; + respawnOccupants = "respawn_guerrila"; + }; +posHQ = getMarkerPos respawnTeamPlayer; +Invaders = east; +colorInvaders = "colorOPFOR"; + +//////////////////////////////////////// +// DECLARING ITEM CATEGORIES /// +//////////////////////////////////////// +[2,"Declaring item categories",_fileName] call A3A_fnc_log; + +weaponCategories = ["Rifles", "Handguns", "MachineGuns", "MissileLaunchers", "Mortars", "RocketLaunchers", "Shotguns", "SMGs", "SniperRifles"]; +itemCategories = ["Bipods", "MuzzleAttachments", "PointerAttachments", "Optics", "Binoculars", "Compasses", "FirstAidKits", "GPS", "LaserDesignators", + "Maps", "Medikits", "MineDetectors", "NVGs", "Radios", "Toolkits", "UAVTerminals", "Watches", "Glasses", "Headgear", "Vests", "Uniforms", "Backpacks"]; + +magazineCategories = ["MagArtillery", "MagBullet", "MagFlare", "Grenades", "MagLaser", "MagMissile", "MagRocket", "MagShell", "MagShotgun", "MagSmokeShell"]; +explosiveCategories = ["Mine", "MineBounding", "MineDirectional"]; +otherCategories = ["Unknown"]; + +//************************************************************************************************************ +//ALL ITEMS THAT ARE MEMBERS OF CATEGORIES BELOW THIS LINE **MUST** BE A MEMBER OF ONE OF THE ABOVE CATEGORIES. +//************************************************************************************************************ + +//Categories that consist only of members of other categories, e.g, 'Weapons' contains items of every category from in weaponCategories; +aggregateCategories = ["Weapons", "Items", "Magazines", "Explosives"]; + +//All items in here *must* also be a member of one of the above categories. +//These are here because it's non-trivial to identify items in them. They might be a very specific subset of items, or the logic that identifies them might not be perfect. +//It's recommended that these categories be used with caution. +specialCategories = ["AA", "AT", "GrenadeLaunchers", "LightAttachments", "LaserAttachments", "Chemlights", "SmokeGrenades", "LaunchedSmokeGrenades", "LaunchedFlares", "HandFlares", "IRGrenades","LaserBatteries", + "RebelUniforms", "CivilianUniforms", "BackpacksEmpty", "BackpacksTool", "BackpacksStatic", "BackpacksDevice", "CivilianVests", "ArmoredVests", "ArmoredHeadgear", "CivilianHeadgear", + "CivilianGlasses"]; + + +allCategoriesExceptSpecial = weaponCategories + itemCategories + magazineCategories + explosiveCategories + otherCategories + aggregateCategories; +allCategories = allCategoriesExceptSpecial + specialCategories; + +//////////////////////////////////// +// BEGIN MOD DETECTION /// +//////////////////////////////////// +[2,"Starting mod detection",_fileName] call A3A_fnc_log; +allDLCMods = ["kart", "mark", "heli", "expansion", "jets", "orange", "tank", "globmob", "enoch", "officialmod", "tacops", "argo", "warlords"]; + +//Mod detection is done locally to each client, in case some clients have different modsets for some reason. +hasRHS = false; +activeAFRF = false; +activeUSAF = false; +activeGREF = false; +hasFFAA = false; +hasIFA = false; +has3CB = false; +//Systems Mods +hasACE = false; +hasACEHearing = false; +hasACEMedical = false; +hasADVCPR = false; +hasADVSplint = false; +//Radio Mods +hasACRE = false; +hasTFAR = false; + +//Radio Detection +hasTFAR = isClass (configFile >> "CfgPatches" >> "task_force_radio"); +hasACRE = isClass (configFile >> "cfgPatches" >> "acre_main"); +//ACE Detection +hasACE = (!isNil "ace_common_fnc_isModLoaded"); +hasACEHearing = isClass (configFile >> "CfgSounds" >> "ACE_EarRinging_Weak"); +hasACEMedical = isClass (configFile >> "CfgSounds" >> "ACE_heartbeat_fast_3"); +hasADVCPR = isClass (configFile >> "CfgPatches" >> "adv_aceCPR"); +hasADVSplint = isClass (configFile >> "CfgPatches" >> "adv_aceSplint"); +//IFA Detection +if isClass (configFile >> "CfgPatches" >> "LIB_Core") then {hasIFA = true; diag_log format ["%1: [Antistasi] | INFO | initVar | IFA Detected.",servertime];}; +//RHS AFRF Detection +if isClass (configFile >> "CfgFactionClasses" >> "rhs_faction_vdv") then {activeAFRF = true; hasRHS = true; diag_log format ["%1: [Antistasi] | INFO | initVar | RHS AFRF Detected.",servertime];}; +if isClass (configFile >> "CfgFactionClasses" >> "rhs_faction_usarmy") then {activeUSAF = true; hasRHS = true; diag_log format ["%1: [Antistasi] | INFO | initVar | RHS USAF Detected.",servertime];}; +if (activeAFRF && activeUSAF && isClass (configFile >> "CfgFactionClasses" >> "rhsgref_faction_tla")) then {activeGREF = true; diag_log format ["%1: [Antistasi] | INFO | initVar | RHS GREF Detected.",servertime];}; +//3CB Detection +if (activeAFRF && activeUSAF && activeGREF && isClass (configfile >> "CfgPatches" >> "UK3CB_BAF_Weapons")) then {has3CB = true; diag_log format ["%1: [Antistasi] | INFO | initVar | 3CB Detected.",servertime];}; +//FFAA Detection +if (isClass (configfile >> "CfgPatches" >> "ffaa_armas")) then {hasFFAA = true; diag_log format ["%1: [Antistasi] | INFO | initVar | FFAA Detected.",servertime];}; + +//////////////////////////////////// +// BUILDINGS LISTS /// +//////////////////////////////////// +[2,"Creating building arrays",_fileName] call A3A_fnc_log; + +listMilBld = ["Land_Cargo_Tower_V1_F","Land_Cargo_Tower_V1_No1_F","Land_Cargo_Tower_V1_No2_F","Land_Cargo_Tower_V1_No3_F","Land_Cargo_Tower_V1_No4_F","Land_Cargo_Tower_V1_No5_F","Land_Cargo_Tower_V1_No6_F","Land_Cargo_Tower_V1_No7_F","Land_Cargo_Tower_V2_F", "Land_Cargo_Tower_V3_F","Land_Cargo_HQ_V1_F","Land_Cargo_HQ_V2_F","Land_Cargo_HQ_V3_F","Land_Cargo_Patrol_V1_F","Land_Cargo_Patrol_V2_F","Land_Cargo_Patrol_V3_F","Land_HelipadSquare_F"]; +listbld = ["Land_Cargo_Tower_V1_F","Land_Cargo_Tower_V1_No1_F","Land_Cargo_Tower_V1_No2_F","Land_Cargo_Tower_V1_No3_F","Land_Cargo_Tower_V1_No4_F","Land_Cargo_Tower_V1_No5_F","Land_Cargo_Tower_V1_No6_F","Land_Cargo_Tower_V1_No7_F","Land_Cargo_Tower_V2_F", "Land_Cargo_Tower_V3_F"]; +UPSMON_Bld_remove = ["Bridge_PathLod_base_F","Land_Slum_House03_F","Land_Bridge_01_PathLod_F","Land_Bridge_Asphalt_PathLod_F","Land_Bridge_Concrete_PathLod_F","Land_Bridge_HighWay_PathLod_F","Land_Bridge_01_F","Land_Bridge_Asphalt_F","Land_Bridge_Concrete_F","Land_Bridge_HighWay_F","Land_Canal_Wall_Stairs_F","warehouse_02_f","cliff_wall_tall_f","cliff_wall_round_f","containerline_02_f","containerline_01_f","warehouse_01_f","quayconcrete_01_20m_f","airstripplatform_01_f","airport_02_terminal_f","cliff_wall_long_f","shop_town_05_f","Land_ContainerLine_01_F"]; +//Lights and Lamps array used for 'Blackout' +lamptypes = ["Lamps_Base_F", "PowerLines_base_F","Land_LampDecor_F","Land_LampHalogen_F","Land_LampHarbour_F","Land_LampShabby_F","Land_NavigLight","Land_runway_edgelight","Land_PowerPoleWooden_L_F"]; + +//////////////////////////////////// +// SOUNDS AND ANIMATIONS /// +//////////////////////////////////// +[2,"Compiling sounds and animations",_fileName] call A3A_fnc_log; +ladridos = ["Music\dog_bark01.wss", "Music\dog_bark02.wss", "Music\dog_bark03.wss", "Music\dog_bark04.wss", "Music\dog_bark05.wss","Music\dog_maul01.wss","Music\dog_yelp01.wss","Music\dog_yelp02.wss","Music\dog_yelp03.wss"]; +injuredSounds = +[ + "a3\sounds_f\characters\human-sfx\Person0\P0_moan_13_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_14_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_15_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_16_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_17_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_18_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_19_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_20_words.wss", + "a3\sounds_f\characters\human-sfx\Person1\P1_moan_19_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_20_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_21_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_22_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_23_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_24_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_25_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_26_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_27_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_28_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_29_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_30_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_31_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_32_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_33_words.wss", + "a3\sounds_f\characters\human-sfx\Person2\P2_moan_19_words.wss" +]; +medicAnims = ["AinvPknlMstpSnonWnonDnon_medic_1","AinvPknlMstpSnonWnonDnon_medic0","AinvPknlMstpSnonWnonDnon_medic1","AinvPknlMstpSnonWnonDnon_medic2"]; + +//////////////////////////////////// +// ID LIST FOR UNIT NAMES /// +//////////////////////////////////// +[2,"Creating unit identities",_fileName] call A3A_fnc_log; +if !(hasIFA) then { + arrayids = ["Anthis","Costa","Dimitirou","Elias","Gekas","Kouris","Leventis","Markos","Nikas","Nicolo","Panas","Rosi","Samaras","Thanos","Vega"]; + if (isMultiplayer) then {arrayids = arrayids + ["protagonista"]}; +}; + +//////////////////////////////////// +// MISSION PATH WARNING /// +//////////////////////////////////// +[2,"Checking mission path",_fileName] call A3A_fnc_log; +private _getMissionPath = [] spawn A3A_fnc_initGetMissionPath; +waitUntil +{ + if (scriptDone _getMissionPath) exitWith {true}; + if (hasInterface) then { + hint "Stuck on compiling missionPath, re-launch the mission."; + }; + [1,"Stuck on compiling missionPath, re-launch the mission.",_fileName] call A3A_fnc_log; + false; +}; + +if (hasInterface) then { + hint "Done compiling missionPath"; +}; +[2,"Done compiling missionPath",_fileName] call A3A_fnc_log; + + +//////////////////////////////////// +// MAP SETTINGS AND MARKERS /// +//////////////////////////////////// +[2,"Setting map configuration",_fileName] call A3A_fnc_log; +switch (toLower worldName) do { + case "tanoa": + { + roadsCentral = ["road","road_1","road_2","road_3","road_4"]; + roadsCE = ["road_5","road_6"]; + roadsCSE = ["road_7"]; + roadsSE = ["road_8","road_9","road_10","road_11"]; + roadsSW = ["road_12"]; + roadsCW = ["road_13","road_14"]; + roadsNW = ["road_15"]; + roadsNE = ["road_16"]; + roadsX setVariable ["airport",[[[6988.38,7135.59,10.0673],17.0361,"MG"],[[6873.83,7472,3.19066],262.634,"MG"],[[6902.09,7427.71,13.0559],359.999,"MG"],[[6886.75,7445.52,0.0368803],360,"Mort"],[[6888.47,7440.31,0.0368826],0.000531628,"Mort"],[[6882.14,7445.42,0.0368817],360,"Mort"],[[6886.49,7436.58,0.0368807],360,"Mort"],[[6970.32,7188.49,-0.0339937],359.999,"Tank"],[[6960.98,7188.49,-0.0339937],359.999,"Tank"],[[6950.71,7187.42,-0.033505],359.999,"Tank"]]]; + roadsX setVariable ["airport_1",[[[2175.14,13402.4,-0.01863],138.861,"Tank"],[[2183.31,13409.7,-0.0184679],139.687,"Tank"],[[2211.39,13434.4,0.0164337],141.512,"Tank"],[[2221.62,13440.6,0.016408],142.886,"Tank"],[[2221.31,13195,0.0368757],0.000337857,"Mort"],[[2224.09,13197.6,0.038271],1.30051e-005,"Mort"],[[2218.96,13199.1,0.0382385],0.00923795,"Mort"],[[2071.1,13308.5,14.4943],133.738,"MG"]]]; + roadsX setVariable ["airport_2",[[[11803,13051.6,0.0368805],360,"Mort"],[[11813.5,13049.2,0.0368915],0.000145629,"Mort"],[[11799.5,13043.2,0.0368919],360,"Mort"],[[11723.3,13114.6,18.1545],300.703,"MG"],[[11782.3,13058.1,0.0307827],19.6564,"Tank"],[[11810.6,13040.2,0.0368905],360,"Tank"],[[11832.9,13042.1,0.0283785],16.3683,"Tank"]]]; + roadsX setVariable ["airport_3",[[[11658,3055.02,0.036881],360,"Mort"],[[11662.6,3060.14,0.0368819],0.000294881,"Mort"],[[11664.8,3049.94,0.0368805],360,"Mort"],[[11668.9,3055.64,0.0368805],2.08056e-005,"Mort"],[[11747.8,2982.95,18.1513],249.505,"MG"],[[11784.1,3132.77,0.183631],214.7,"Tank"],[[11720.3,3176.15,0.112019],215.055,"Tank"]]]; + roadsX setVariable ["airport_4",[[[2092.87,3412.98,0.0372648],0.00414928,"Mort"],[[2091.5,3420.69,0.0369596],360,"Mort"],[[2099.93,3422.53,0.0373936],0.00215797,"Mort"],[[2100.13,3416.28,0.0394554],0.0043371,"Mort"],[[2198.24,3471.03,18.0123],0.00187816,"MG"],[[2133.01,3405.88,-0.0156536],315.528,"Tank"],[[2145.82,3416.83,-0.00544548],316.441,"Tank"],[[2163.9,3432.18,-0.0256157],318.777,"Tank"]]]; + //Map Markers + {server setVariable [_x select 0,_x select 1]} forEach [["Lami01",277],["Lifou01",350],["Lobaka01",64],["LaFoa01",38],["Savaka01",33],["Regina01",303],["Katkoula01",413],["Moddergat01",195],["Losi01",83],["Tanouka01",380],["Tobakoro01",45],["Georgetown01",347],["Kotomo01",160],["Rautake01",113],["Harcourt01",325],["Buawa01",44],["SaintJulien01",353],["Balavu01",189],["Namuvaka01",45],["Vagalala01",174],["Imone01",31],["Leqa01",45],["Blerick01",71],["Yanukka01",189],["OuaOue01",200],["Cerebu01",22],["Laikoro01",29],["Saioko01",46],["Belfort01",240],["Oumere01",333],["Muaceba01",18],["Nicolet01",224],["Lailai01",23],["Doodstil01",101],["Tavu01",178],["Lijnhaven01",610],["Nani01",19],["PetitNicolet01",135],["PortBoise01",28],["SaintPaul01",136],["Nasua01",60],["Savu01",184],["Murarua01",258],["Momea01",159],["LaRochelle01",532],["Koumac01",51],["Taga01",31],["Buabua01",27],["Penelo01",189],["Vatukoula01",15],["Nandai01",130],["Tuvanaka01",303],["Rereki01",43],["Ovau01",226],["IndPort01",420],["Ba01",106]]; + //Roads DB + call compile preprocessFileLineNumbers "roadsDB.sqf"; + }; + case "altis": + { + roadsX setVariable ["airport",[[[21175.06,7369.336,0],62.362,"Tank"],[[21178.89,7361.573,0.421],62.36,"Tank"],[[20961.332,7295.678,0],0,"Mort"],[[20956.143,7295.142,0],0,"Mort"],[[20961.1,7290.02,0.262632],0,"Mort"]]]; + roadsX setVariable ["airport_1",[[[23044.8,18745.7,0.0810001],88.275,"Tank"],[[23046.8,18756.8,0.0807302],88.275,"Tank"],[[23214.8,18859.5,0],267.943,"Tank"],[[22981.2,18903.9,0],0,"Mort"],[[22980.1,18907.5,0.553066],0,"Mort"]]]; + roadsX setVariable ["airport_2",[[[26803.1,24727.7,0.0629988],359.958,"Mort"],[[26809,24728.2,0.03755],359.986,"Mort"],[[26815.2,24729,0.0384922],359.972,"Mort"],[[26821.3,24729.1,0.0407047],359.965,"Mort"],[[26769.1,24638.7,0.290344],131.324,"Tank"],[[26774.2,24643.9,0.282555],134.931,"Tank"]]]; + roadsX setVariable ["airport_3",[[[14414.9,16327.8,-0.000991821],207.397,"Tank"],[[14471.9,16383.2,0.0378571],359.939,"Mort"],[[14443,16379.2,0.0369205],359.997,"Mort"],[[14449.4,16376.9,0.0369892],359.996,"Mort"],[[14458,16375.9,0.0369167],359.997,"Mort"],[[14447.2,16397.1,3.71081],269.525,"MG"],[[14472.3,16312,12.1993],317.315,"MG"],[[14411,16229,0.000303268],40.6607,"Tank"],[[14404.4,16235,-0.0169964],50.5741,"Tank"],[[14407.2,16331.7,0.0305004],204.588,"Tank"]]]; + roadsX setVariable ["airport_4",[[[11577.4,11953.6,0.241838],122.274,"Tank"],[[11577.8,11964.3,0.258125],124.324,"Tank"],[[11633.3,11762,0.0372791],359.996,"Mort"],[[11637.3,11768.1,0.043232],0.0110098,"Mort"],[[11637.1,11763.1,0.0394402],0.00529677,"Mort"]],true]; + roadsX setVariable ["airport_5",[[[9064.02,21531.3,0.00117016],138.075,"Tank"],[[9095.12,21552.8,0.614614],157.935,"Tank"],[[9030.28,21531.1,0.261349],157.935,"Mort"],[[9033.91,21534.7,0.295588],157.935,"Mort"]]]; + //Map Markers + {server setVariable [_x select 0,_x select 1]} forEach [["Therisa",154],["Zaros",371],["Poliakko",136],["Katalaki",95],["Alikampos",115],["Neochori",309],["Stavros",122],["Lakka",173],["AgiosDionysios",84],["Panochori",264],["Topolia",33],["Ekali",9],["Pyrgos",531],["Orino",45],["Neri",242],["Kore",133],["Kavala",660],["Aggelochori",395],["Koroni",32],["Gravia",291],["Anthrakia",143],["Syrta",151],["Negades",120],["Galati",151],["Telos",84],["Charkia",246],["Athira",342],["Dorida",168],["Ifestiona",48],["Chalkeia",214],["AgiosKonstantinos",39],["Abdera",89],["Panagia",91],["Nifi",24],["Rodopoli",212],["Kalithea",36],["Selakano",120],["Frini",69],["AgiosPetros",11],["Feres",92],["AgiaTriada",8],["Paros",396],["Kalochori",189],["Oreokastro",63],["Ioannina",48],["Delfinaki",29],["Sofia",179],["Molos",188]]; + //Roads DB + call compile preprocessFileLineNumbers "roadsDBAltis.sqf"; + }; + case "chernarus_summer": + { + roadsX setVariable ["airport",[[[12191.2,12605.8,9.43077],0,"MG"],[[12194.2,12599.4,13.3954],0,"AA"],[[12141,12609,0.00088501],0,"Mort"],[[12144.3,12615.9,0],0,"Mort"],[[12156.5,12614.3,0],0,"Mort"],[[12170,12595.9,0.000305176],250.234,"AT"],[[12070.4,12656,0.0098114],23.5329,"Tank"],[[12022.5,12670.9,0.0098114],18.9519,"Tank"]]]; + roadsX setVariable ["airport_1",[[[4782.75,10251.4,18],0,"AA"],[[4716.17,10215.3,13.1149],278.308,"AA"],[[4713.94,10209.3,9.12177],188.973,"MG"],[[4787.34,10248.9,4.99982],188.303,"MG"],[[4740.75,10333.2,20.3206],232.414,"MG"],[[4818.39,10200.1,0.00982666],239.625,"Tank"],[[4765.22,10330.8,0],0,"Mort"],[[4758.21,10328.1,0],0,"Mort"],[[4751.45,10324.4,0],0,"Mort"],[[4745.39,10320.6,0],0,"Mort"],[[4739.97,10283.2,0.00567627],291.41,"AT"],[[4814.19,10245.1,0.00567627],211.414,"AT"],[[4841.34,10158.9,0.0102844],240.137,"Tank"],[[4865.7,10116.7,0.00970459],239.499,"Tank"],[[4888.33,10074.2,0.00982666],235.077,"Tank"]]]; + roadsX setVariable ["airport_2",[[[4717.95,2595.24,12.9766],0,"AA"],[[4714.27,2590.97,8.97349],176.197,"MG"],[[4743.55,2567.69,0.0130215],207.155,"Tank"],[[4775.62,2547.37,0.00691605],210.579,"Tank"],[[4719.88,2582.34,0.00566483],261.79,"AT"],[[4826.5,2558.35,0.00150108],0,"Mort"],[[4821.12,2550.32,0.00147152],0,"Mort"],[[4816.59,2543.65,0.00147247],0,"Mort"],[[4812.77,2518.77,0.00566483],150.397,"AT"]]]; + //Map Markers + {server setVariable [_x select 0,_x select 1]} forEach [["vill_NovySobor",129],["city_StarySobor",149],["vill_Guglovo",26],["vill_Vyshnoye",41],["vill_Kabanino",86],["vill_Rogovo",66],["vill_Mogilevka",104],["city_Gorka",115],["vill_Grishino",168],["vill_Shakhovka",55],["vill_Pogorevka",57],["vill_Pulkovo",26],["vill_Nadezhdino",109],["city_Vybor",180],["vill_Polana",118],["vill_Staroye",115],["vill_Dubrovka",86],["vill_Pustoshka",163],["vill_Kozlovka",100],["vill_Pusta",52],["vill_Dolina",83],["vill_Gvozdno",78],["vill_Prigorodki",145],["vill_Drozhino",58],["vill_Sosnovka",54],["vill_Msta",96],["vill_Lopatino",159],["city_Zelenogorsk",280],["vill_Orlovets",65],["city_Berezino",340],["vill_Myshkino",49],["vill_Petrovka",45],["city_Chernogorsk",761],["vill_Bor",46],["vill_Nizhnoye",146],["vill_Balota",147],["vill_Khelm",110],["city_Krasnostav",194],["vill_Komarovo",127],["city_Elektrozavodsk",745],["city_Solnychniy",224],["vill_Kamyshovo",196],["vill_Tulga",35],["vill_Pavlovo",99],["vill_Kamenka",127],["hill_Olsha",20]]; + //Roads DB + call compile preprocessFileLineNumbers "roadsDBcherna.sqf"; + }; + case "chernarus_winter": + { + roadsX setVariable ["airport",[[[12191.2,12605.8,9.43077],0,"MG"],[[12194.2,12599.4,13.3954],0,"AA"],[[12141,12609,0.00088501],0,"Mort"],[[12144.3,12615.9,0],0,"Mort"],[[12156.5,12614.3,0],0,"Mort"],[[12170,12595.9,0.000305176],250.234,"AT"],[[12070.4,12656,0.0098114],23.5329,"Tank"],[[12022.5,12670.9,0.0098114],18.9519,"Tank"]]]; + roadsX setVariable ["airport_1",[[[4782.75,10251.4,18],0,"AA"],[[4716.17,10215.3,13.1149],278.308,"AA"],[[4713.94,10209.3,9.12177],188.973,"MG"],[[4787.34,10248.9,4.99982],188.303,"MG"],[[4740.75,10333.2,20.3206],232.414,"MG"],[[4818.39,10200.1,0.00982666],239.625,"Tank"],[[4765.22,10330.8,0],0,"Mort"],[[4758.21,10328.1,0],0,"Mort"],[[4751.45,10324.4,0],0,"Mort"],[[4745.39,10320.6,0],0,"Mort"],[[4739.97,10283.2,0.00567627],291.41,"AT"],[[4814.19,10245.1,0.00567627],211.414,"AT"],[[4841.34,10158.9,0.0102844],240.137,"Tank"],[[4865.7,10116.7,0.00970459],239.499,"Tank"],[[4888.33,10074.2,0.00982666],235.077,"Tank"]]]; + roadsX setVariable ["airport_2",[[[4717.95,2595.24,12.9766],0,"AA"],[[4714.27,2590.97,8.97349],176.197,"MG"],[[4743.55,2567.69,0.0130215],207.155,"Tank"],[[4775.62,2547.37,0.00691605],210.579,"Tank"],[[4719.88,2582.34,0.00566483],261.79,"AT"],[[4826.5,2558.35,0.00150108],0,"Mort"],[[4821.12,2550.32,0.00147152],0,"Mort"],[[4816.59,2543.65,0.00147247],0,"Mort"],[[4812.77,2518.77,0.00566483],150.397,"AT"]]]; + //Map Markers + {server setVariable [_x select 0,_x select 1]} forEach [["vill_NovySobor",129],["city_StarySobor",149],["vill_Guglovo",26],["vill_Vyshnoye",41],["vill_Kabanino",86],["vill_Rogovo",66],["vill_Mogilevka",104],["city_Gorka",115],["vill_Grishino",168],["vill_Shakhovka",55],["vill_Pogorevka",57],["vill_Pulkovo",26],["vill_Nadezhdino",109],["city_Vybor",180],["vill_Polana",118],["vill_Staroye",115],["vill_Dubrovka",86],["vill_Pustoshka",163],["vill_Kozlovka",100],["vill_Pusta",52],["vill_Dolina",83],["vill_Gvozdno",78],["vill_Prigorodki",145],["vill_Drozhino",58],["vill_Sosnovka",54],["vill_Msta",96],["vill_Lopatino",159],["city_Zelenogorsk",280],["vill_Orlovets",65],["city_Berezino",340],["vill_Myshkino",49],["vill_Petrovka",45],["city_Chernogorsk",761],["vill_Bor",46],["vill_Nizhnoye",146],["vill_Balota",147],["vill_Khelm",110],["city_Krasnostav",194],["vill_Komarovo",127],["city_Elektrozavodsk",745],["city_Solnychniy",224],["vill_Kamyshovo",196],["vill_Tulga",35],["vill_Pavlovo",99],["vill_Kamenka",127],["hill_Olsha",20]]; + //Roads DB + call compile preprocessFileLineNumbers "roadsDBcherna.sqf"; + }; + case "malden": + { + //Roads DB + call compile preprocessFileLineNumbers "roadsDBmalden.sqf"; + }; + case "enoch": + { + //Roads DB + call compile preprocessFileLineNumbers "roadsDBLivonia.sqf"; + }; + case "kunduz": + { + //Roads DB + call compile preprocessFileLineNumbers "roadsDBKunduz.sqf"; + }; + case "tembelan": + { + //Roads DB + call compile preprocessFileLineNumbers "roadsDBTembelan.sqf"; + }; + case "tem_anizay": + { + //Roads DB + call compile preprocessFileLineNumbers "roadsDBanizay.sqf"; + }; +}; + +[2,"initVarCommon completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/functions/init/fn_initVarServer.sqf b/A3-Antistasi/functions/init/fn_initVarServer.sqf new file mode 100644 index 0000000000..cc12f8dfd0 --- /dev/null +++ b/A3-Antistasi/functions/init/fn_initVarServer.sqf @@ -0,0 +1,712 @@ +/* + * This file is called after initVarCommon.sqf, on the server only. + * + * We also initialise anything in here that we don't want a client that's joining to overwrite, as JIP happens before initVar. + */ +scriptName "initVarServer.sqf"; +private _fileName = "initVarServer.sqf"; +[2,"initVarServer started",_fileName] call A3A_fnc_log; + + +//Little bit meta. +serverInitialisedVariables = ["serverInitialisedVariables"]; + +private _declareServerVariable = { + params ["_varName", "_varValue"]; + + serverInitialisedVariables pushBackUnique _varName; + + if (!isNil "_varValue") then { + missionNamespace setVariable [_varName, _varValue]; + }; +}; + +//Declares a variable that will be synchronised to all clients at the end of initVarServer. +//Only needs using on the first declaration. +#define ONLY_DECLARE_SERVER_VAR(name) [#name] call _declareServerVariable +#define DECLARE_SERVER_VAR(name, value) [#name, value] call _declareServerVariable +#define ONLY_DECLARE_SERVER_VAR_FROM_VARIABLE(name) [name] call _declareServerVariable +#define DECLARE_SERVER_VAR_FROM_VARIABLE(name, value) [name, value] call _declareServerVariable + +//////////////////////////////////////// +// GENERAL SERVER VARIABLES /// +//////////////////////////////////////// +[2,"initialising general server variables",_fileName] call A3A_fnc_log; + +//time to delete dead bodies, vehicles etc.. +DECLARE_SERVER_VAR(cleantime, 3600); +//initial spawn distance. Less than 1Km makes parked vehicles spawn in your nose while you approach. +DECLARE_SERVER_VAR(distanceSPWN, 1000); +DECLARE_SERVER_VAR(distanceSPWN1, 1300); +DECLARE_SERVER_VAR(distanceSPWN2, 500); +//Quantity of Civs to spawn in +DECLARE_SERVER_VAR(civPerc, 40); +//The furthest distance the AI can attack from using helicopters or planes +DECLARE_SERVER_VAR(distanceForAirAttack, 10000); +//The furthest distance the AI can attack from using trucks and armour +DECLARE_SERVER_VAR(distanceForLandAttack, if (hasIFA) then {5000} else {3000}); +//Max units we aim to spawn in. It's not very strictly adhered to. +DECLARE_SERVER_VAR(maxUnits, 140); + +//Disabled DLC according to server parameters +DECLARE_SERVER_VAR(disabledMods, call A3A_fnc_initDisabledMods); + +//Legacy tool for scaling AI difficulty. Could use a rewrite. +DECLARE_SERVER_VAR(difficultyCoef, if !(isMultiplayer) then {0} else {floor ((({side group _x == teamPlayer} count (call A3A_fnc_playableUnits)) - ({side group _x != teamPlayer} count (call A3A_fnc_playableUnits))) / 5)}); + + +//Mostly state variables, used by various parts of Antistasi. +DECLARE_SERVER_VAR(bigAttackInProgress, false); +DECLARE_SERVER_VAR(AAFpatrols,0); +DECLARE_SERVER_VAR(reinfPatrols, 0); +DECLARE_SERVER_VAR(smallCAmrk, []); +DECLARE_SERVER_VAR(smallCApos, []); + +DECLARE_SERVER_VAR(attackPos, []); +DECLARE_SERVER_VAR(attackMrk, []); +DECLARE_SERVER_VAR(airstrike, []); +DECLARE_SERVER_VAR(convoyMarker, []); + +//Vehicles currently in the garage +DECLARE_SERVER_VAR(vehInGarage, []); + +//Should vegetation around HQ be cleared +DECLARE_SERVER_VAR(chopForest, false); + +DECLARE_SERVER_VAR(skillFIA, 1); //Initial skill level for FIA soldiers +//Initial Occupant Aggression +DECLARE_SERVER_VAR(prestigeNATO, 5); +//Initial Invader Aggression +DECLARE_SERVER_VAR(prestigeCSAT, 5); +//Initial war tier. +DECLARE_SERVER_VAR(tierWar, 1); +DECLARE_SERVER_VAR(bombRuns, 0); +//Should various units, such as patrols and convoys, be revealed. +DECLARE_SERVER_VAR(revealX, false); +DECLARE_SERVER_VAR(napalmCurrent, false); +//Whether the players have Nightvision unlocked +DECLARE_SERVER_VAR(haveNV, false); +DECLARE_SERVER_VAR(missionsX, []); +//List of statics (MGs, AA, etc) that will be saved and loaded. +DECLARE_SERVER_VAR(staticsToSave, []); +//Whether the players have access to radios. +DECLARE_SERVER_VAR(haveRadio, hasTFAR || hasACRE); +//List of vehicles that are reported (I.e - Players can't go undercover in them) +DECLARE_SERVER_VAR(reportedVehs, []); +//Currently destroyed buildings. +DECLARE_SERVER_VAR(destroyedBuildings, []); +//Initial HR +server setVariable ["hr",8,true]; +//Initial faction money pool +server setVariable ["resourcesFIA",1000,true]; + +//////////////////////////////////// +// SERVER ONLY VARIABLES /// +//////////////////////////////////// +//We shouldn't need to sync these. +[2,"Setting server only variables",_fileName] call A3A_fnc_log; + + +prestigeOPFOR = [75, 50] select cadetMode; //Initial % support for NATO on each city +prestigeBLUFOR = 0; //Initial % FIA support on each city +countCA = 600; //600 + +cityIsSupportChanging = false; +resourcesIsChanging = false; +savingServer = false; + +prestigeIsChanging = false; + +zoneCheckInProgress = false; +garrisonIsChanging = false; +movingMarker = false; +markersChanging = []; + +playerHasBeenPvP = []; + +/////////////////////////////////////////// +// INITIALISING ITEM CATEGORIES /// +/////////////////////////////////////////// +[2,"Initialising item categories",__FILE__] call A3A_fnc_log; + +//We initialise a LOT of arrays based on the categories. Every category gets a 'allX' variables and an 'unlockedX' variable. + +private _unlockableCategories = allCategoriesExceptSpecial + ["AA", "AT", "GrenadeLaunchers", "ArmoredVests", "ArmoredHeadgear"]; + +//Build list of 'allX' variables, such as 'allWeapons' +DECLARE_SERVER_VAR(allEquipmentArrayNames, allCategories apply {"all" + _x}); + +//Build list of 'unlockedX' variables, such as 'allWeapons' +DECLARE_SERVER_VAR(unlockedEquipmentArrayNames, _unlockableCategories apply {"unlocked" + _x}); + +//Various arrays used by the loot system. Could also be done using DECLARE_SERVER_VAR individually. +private _otherEquipmentArrayNames = [ + "initialRebelEquipment", + "lootBasicItem", + "lootNVG", + "lootItem", + "lootWeapon", + "lootAttachment", + "lootMagazine", + "lootGrenade", + "lootExplosive", + "lootBackpack", + "lootHelmet", + "lootVest", + "lootDevice", + "invaderStaticWeapon", + "occupantStaticWeapon", + "rebelStaticWeapon", + "invaderBackpackDevice", + "occupantBackpackDevice", + "rebelBackpackDevice", + "civilianBackpackDevice", + "diveGear" +]; + +DECLARE_SERVER_VAR(otherEquipmentArrayNames, _otherEquipmentArrayNames); + +//We're going to use this to sync the variables later. +everyEquipmentRelatedArrayName = allEquipmentArrayNames + unlockedEquipmentArrayNames + otherEquipmentArrayNames; + +//Initialise them all as empty arrays. +{ + DECLARE_SERVER_VAR_FROM_VARIABLE(_x, []); +} forEach everyEquipmentRelatedArrayName; + +//////////////////////////////////// +// MOD CONFIG /// +//////////////////////////////////// +[2,"Setting mod configs",_fileName] call A3A_fnc_log; + +//TFAR config +DECLARE_SERVER_VAR(startLR, false); +if (hasTFAR) then +{ + startLR = true; //set to true to start with LR radios unlocked. + if (isServer) then + { + [] spawn { + waitUntil {sleep 1; !isNil "TF_server_addon_version"}; + [2,"Initializing TFAR settings","initVar.sqf"] call A3A_fnc_log; + ["TF_no_auto_long_range_radio", true, true,"mission"] call CBA_settings_fnc_set; //set to false and players will spawn with LR radio. + if (hasIFA) then + { + ["TF_give_personal_radio_to_regular_soldier", false, true,"mission"] call CBA_settings_fnc_set; + ["TF_give_microdagr_to_soldier", false, true,"mission"] call CBA_settings_fnc_set; + }; + //tf_teamPlayer_radio_code = "";publicVariable "tf_teamPlayer_radio_code"; //to make enemy vehicles usable as LR radio + //tf_east_radio_code = tf_teamPlayer_radio_code; publicVariable "tf_east_radio_code"; //to make enemy vehicles usable as LR radio + //tf_guer_radio_code = tf_teamPlayer_radio_code; publicVariable "tf_guer_radio_code"; //to make enemy vehicles usable as LR radio + ["TF_same_sw_frequencies_for_side", true, true,"mission"] call CBA_settings_fnc_set; //synchronize SR default frequencies + ["TF_same_lr_frequencies_for_side", true, true,"mission"] call CBA_settings_fnc_set; //synchronize LR default frequencies + }; + }; +}; + +//////////////////////////////////// +// CIVILIAN UNITS LIST /// +//////////////////////////////////// +[2,"Creating civilians",_fileName] call A3A_fnc_log; + +//No real reason we initialise this on the server right now... +private _arrayCivs = ["C_man_polo_1_F","C_man_polo_1_F_afro","C_man_polo_1_F_asia","C_man_polo_1_F_euro","C_man_sport_1_F_tanoan"]; +DECLARE_SERVER_VAR(arrayCivs, _arrayCivs); + +//////////////////////////////////// +// CIVILIAN VEHICLES /// +//////////////////////////////////// +[2,"Creating vehicles list",_fileName] call A3A_fnc_log; + +private _vehicleIsSpecial = { + params ["_vehConfig"]; + + (getNumber (_vehConfig >> "transportRepair") > 0) + || (getNumber (_vehConfig >> "transportAmmo") > 0) + || (getNumber (_vehConfig >> "transportFuel") > 0) + || (getNumber (_vehConfig >> "ace_refuel_fuelCargo") > 0) + || (getNumber (_vehConfig >> "ace_repair_canRepair") > 0) + || (getNumber (_vehConfig >> "ace_rearm_defaultSupply") > 0) + //Medical vehicle + || (getNumber (_vehConfig >> "attendant") > 0) + +}; + +private _civVehConfigs = "( + getNumber (_x >> 'scope') isEqualTo 2 && { + getNumber (_x >> 'side') isEqualTo 3 && { + getText (_x >> 'vehicleClass') in ['Car','Support'] && { + getText (_x >> 'simulation') == 'carx' + } + } + } +)" configClasses (configFile >> "CfgVehicles"); + +private _vehIsValid = { + params ["_vehConfig"]; + + private _mod = _vehConfig call A3A_fnc_getModOfConfigClass; + + //If we have IFA and vehicle is vanilla + if(hasIFA && {_mod == ""}) exitWith { + false; + }; + + if (_vehConfig call _vehicleIsSpecial) exitWith { + false; + }; + + //Check if mod is disabled + !(_vehConfig call A3A_fnc_getModOfConfigClass in disabledMods); +}; + +DECLARE_SERVER_VAR(arrayCivVeh, (_civVehConfigs select {_x call _vehIsValid} apply {configName _x})); + +//Civilian Boats +_civBoatConfigs = "( + getNumber (_x >> 'scope') isEqualTo 2 && { + getNumber (_x >> 'side') isEqualTo 3 && { + getText (_x >> 'vehicleClass') isEqualTo 'Ship' + } + } +)" configClasses (configFile >> "CfgVehicles"); + +DECLARE_SERVER_VAR(CivBoats, (_civBoatConfigs select {_x call _vehIsValid} apply {configName _x})); + +////////////////////////////////////// +// TEMPLATE SELECTION /// +////////////////////////////////////// +[2,"Reading templates",_fileName] call A3A_fnc_log; + +private _templateVariables = [ + //Rebels + "nameTeamPlayer", + "SDKFlag", + "SDKFlagTexture", + "typePetros", + "staticCrewTeamPlayer", + "SDKUnarmed", + "SDKSniper", + "SDKATman", + "SDKMedic", + "SDKMG", + "SDKExp", + "SDKGL", + "SDKMil", + "SDKSL", + "SDKEng", + "groupsSDKmid", + "groupsSDKAT", + "groupsSDKSquad", + "groupsSDKSquadEng", + "groupsSDKSquadSupp", + "groupsSDKSniper", + "groupsSDKSentry", + "sdkTier1", + "sdkTier2", + "sdkTier3", + "soldiersSDK", + "vehSDKBike", + "vehSDKLightArmed", + "vehSDKAT", + "vehSDKLightUnarmed", + "vehSDKTruck", + "vehSDKPlane", + "vehSDKBoat", + "vehSDKRepair", + "civCar", + "civTruck", + "civHeli", + "civBoat", + "SDKMGStatic", + "staticATTeamPlayer", + "staticAATeamPlayer", + "SDKMortar", + "SDKMortarHEMag", + "SDKMortarSmokeMag", + "MGStaticSDKB", + "ATStaticSDKB", + "AAStaticSDKB", + "MortStaticSDKB", + "supportStaticSDKB", + "supportStaticsSDKB2", + "supportStaticsSDKB3", + "ATMineMag", + "APERSMineMag", + + //@Spoffy, is the correct like this? + "breachingExplosivesAPC", + "breachingExplosivesTank", + + //Occupants + "nameOccupants", + "factionGEN", + "factionMaleOccupants", + "factionFIA", + "NATOFlag", + "NATOFlagTexture", + "flagNATOmrk", + "NATOAmmobox", + "NATOPlayerLoadouts", + "vehNATOPVP", + "NATOGrunt", + "NATOOfficer", + "NATOOfficer2", + "NATOBodyG", + "NATOCrew", + "NATOUnarmed", + "NATOMarksman", + "staticCrewOccupants", + "NATOPilot", + "FIARifleman", + "FIAMarksman", + "policeOfficer", + "policeGrunt", + "groupsNATOSentry", + "groupsNATOSniper", + "groupsNATOsmall", + "groupsNATOAA", + "groupsNATOAT", + "groupsNATOmid", + "NATOSquad", + "NATOSpecOp", + "groupsNATOSquad", + "groupsFIASmall", + "groupsFIAMid", + "FIASquad", + "groupsFIASquad", + "groupsNATOGen", + "vehNATOBike", + "vehNATOLightArmed", + "vehNATOLightUnarmed", + "vehNATOTrucks", + "vehNATOCargoTrucks", + "vehNATOAmmoTruck", + "vehNATORepairTruck", + "vehNATOLight", + "vehNATOAPC", + "vehNATOTank", + "vehNATOAA", + "vehNATOAttack", + "vehNATOBoat", + "vehNATORBoat", + "vehNATOBoats", + "vehNATOPlane", + "vehNATOPlaneAA", + "vehNATOTransportPlanes", + "vehNATOPatrolHeli", + "vehNATOTransportHelis", + "vehNATOAttackHelis", + "vehNATOUAV", + "vehNATOUAVSmall", + "vehNATOMRLS", + "vehNATOMRLSMags", + "vehNATONormal", + "vehNATOAir", + "vehFIAArmedCar", + "vehFIATruck", + "vehFIACar", + "vehPoliceCar", + "NATOMG", + "staticATOccupants", + "staticAAOccupants", + "NATOMortar", + "MGStaticNATOB", + "ATStaticNATOB", + "AAStaticNATOB", + "MortStaticNATOB", + "supportStaticNATOB", + "supportStaticNATOB2", + "supportStaticNATOB3", + //Invaders + "nameInvaders", + "factionMaleInvaders", + "factionFIA", + "CSATFlag", + "CSATFlagTexture", + "flagCSATmrk", + "CSATAmmoBox", + "CSATPlayerLoadouts", + "vehCSATPVP", + "CSATGrunt", + "CSATOfficer", + "CSATBodyG", + "CSATCrew", + "CSATMarksman", + "staticCrewInvaders", + "CSATPilot", + "FIARifleman", + "FIAMarksman", + "groupsCSATSentry", + "groupsCSATSniper", + "groupsCSATsmall", + "groupsCSATAA", + "groupsCSATAT", + "groupsCSATmid", + "CSATSquad", + "CSATSpecOp", + "groupsCSATSquad", + "groupsFIASmall", + "groupsFIAMid", + "FIASquad", + "groupsFIASquad", + "vehCSATBike", + "vehCSATLightArmed", + "vehCSATLightUnarmed", + "vehCSATTrucks", + "vehCSATAmmoTruck", + "vehCSATLight", + "vehCSATAPC", + "vehCSATTank", + "vehCSATAA", + "vehCSATAttack", + "vehCSATBoat", + "vehCSATRBoat", + "vehCSATBoats", + "vehCSATPlane", + "vehCSATPlaneAA", + "vehCSATTransportPlanes", + "vehCSATPatrolHeli", + "vehCSATTransportHelis", + "vehCSATAttackHelis", + "vehCSATUAV", + "vehCSATUAVSmall", + "vehCSATMRLS", + "vehCSATMRLSMags", + "vehCSATNormal", + "vehCSATAir", + "vehFIAArmedCar", + "vehFIATruck", + "vehFIACar", + "CSATMG", + "staticATInvaders", + "staticAAInvaders", + "CSATMortar", + "MGStaticCSATB", + "ATStaticCSATB", + "AAStaticCSATB", + "MortStaticCSATB", + "supportStaticCSATB", + "supportStaticCSATB2", + "supportStaticCSATB3" +]; + +{ + ONLY_DECLARE_SERVER_VAR_FROM_VARIABLE(_x); +} forEach _templateVariables; + +if !(hasIFA) then { + //Rebel Templates + switch (true) do { + case (!activeGREF): {call compile preProcessFileLineNumbers "Templates\Vanilla_Reb_FIA_Altis.sqf"}; + case (has3CB): {call compile preProcessFileLineNumbers "Templates\3CB_Reb_TTF_Arid.sqf"}; + case (teamPlayer != independent): {call compile preProcessFileLineNumbers "Templates\RHS_Reb_CDF_Arid.sqf"}; + case (activeGREF): {call compile preProcessFileLineNumbers "Templates\RHS_Reb_NAPA_Arid.sqf"}; + }; + //Occupant Templates + switch (true) do { + case (!activeUSAF): {call compile preProcessFileLineNumbers "Templates\Vanilla_Occ_NATO_Altis.sqf"}; + case (has3CB): {call compile preProcessFileLineNumbers "Templates\BAF_Occ_BAF_Arid.sqf"}; + case (teamPlayer != independent): {call compile preProcessFileLineNumbers "Templates\RHS_Occ_CDF_Arid.sqf"}; + case (activeUSAF): {call compile preProcessFileLineNumbers "Templates\RHS_Occ_USAF_Arid.sqf"}; + }; + //Invader Templates + switch (true) do { + case (!activeAFRF): {call compile preProcessFileLineNumbers "Templates\Vanilla_Inv_CSAT_Altis.sqf";}; + case (has3CB): {call compile preProcessFileLineNumbers "Templates\3CB_Inv_TKM_Arid.sqf"}; + case (activeAFRF): {call compile preProcessFileLineNumbers "Templates\RHS_Inv_AFRF_Arid.sqf"}; + }; +} +else { + //IFA Templates + call compile preProcessFileLineNumbers "Templates\IFA_Reb_POL_Temp.sqf"; + call compile preProcessFileLineNumbers "Templates\IFA_Inv_SOV_Temp.sqf"; + call compile preProcessFileLineNumbers "Templates\IFA_Occ_WEH_Temp.sqf"; +}; + +////////////////////////////////////// +// GROUPS CLASSIFICATION /// +////////////////////////////////////// +[2,"Identifying unit types",_fileName] call A3A_fnc_log; +//Identify Squad Leader Units +private _squadLeaders = (SDKSL + [(NATOSquad select 0),(NATOSpecOp select 0),(CSATSquad select 0),(CSATSpecOp select 0),(FIASquad select 0)]); +DECLARE_SERVER_VAR(squadLeaders, _squadLeaders); +//Identify Medic Units +private _medics = SDKMedic + [(FIAsquad select ((count FIAsquad)-1)),(NATOSquad select ((count NATOSquad)-1)),(NATOSpecOp select ((count NATOSpecOp)-1)),(CSATSquad select ((count CSATSquad)-1)),(CSATSpecOp select ((count CSATSpecOp)-1))]; +DECLARE_SERVER_VAR(medics, _medics); +//Define Sniper Groups and Units +private _sniperGroups = [groupsNATOSniper,groupsCSATSniper]; +DECLARE_SERVER_VAR(sniperGroups, _sniperGroups); + +////////////////////////////////////// +// ITEM INITIALISATION /// +////////////////////////////////////// +//This is all very tightly coupled. +//Beware when changing these, or doing anything with them, really. + +[2,"Scanning config entries for items",_fileName] call A3A_fnc_log; +[A3A_fnc_equipmentIsValidForCurrentModset] call A3A_fnc_configSort; +[2,"Categorizing vehicle classes",_fileName] call A3A_fnc_log; +[] call A3A_fnc_vehicleSort; +[2,"Categorizing equipment classes",_fileName] call A3A_fnc_log; +[] call A3A_fnc_equipmentSort; +[2,"Sorting grouped class categories",_fileName] call A3A_fnc_log; +[] call A3A_fnc_itemSort; +[2,"Building loot lists",_fileName] call A3A_fnc_log; +[] call A3A_fnc_loot; + +//////////////////////////////////// +// CLASSING TEMPLATE VEHICLES /// +//////////////////////////////////// +[2,"Identifying vehicle types",_fileName] call A3A_fnc_log; +private _vehNormal = (vehNATONormal + vehCSATNormal + [vehFIATruck,vehSDKTruck,vehSDKLightArmed,vehSDKBike,vehSDKRepair]); +DECLARE_SERVER_VAR(vehNormal, _vehNormal); + +private _vehBoats = [vehNATOBoat,vehCSATBoat,vehSDKBoat]; +DECLARE_SERVER_VAR(vehBoats, _vehBoats); + +private _vehAttack = vehNATOAttack + vehCSATAttack; +DECLARE_SERVER_VAR(vehAttack, _vehAttack); + +private _vehPlanes = (vehNATOAir + vehCSATAir + [vehSDKPlane]); +DECLARE_SERVER_VAR(vehPlanes, _vehPlanes); + +private _vehAttackHelis = vehCSATAttackHelis + vehNATOAttackHelis; +DECLARE_SERVER_VAR(vehAttackHelis, _vehAttackHelis); + +private _vehFixedWing = [vehNATOPlane,vehNATOPlaneAA,vehCSATPlane,vehCSATPlaneAA,vehSDKPlane] + vehNATOTransportPlanes + vehCSATTransportPlanes; +DECLARE_SERVER_VAR(vehFixedWing, _vehFixedWing); + +private _vehUAVs = [vehNATOUAV,vehCSATUAV]; +DECLARE_SERVER_VAR(vehUAVs, _vehUAVs); + +private _vehAmmoTrucks = [vehNATOAmmoTruck,vehCSATAmmoTruck]; +DECLARE_SERVER_VAR(vehAmmoTrucks, _vehAmmoTrucks); + +private _vehAPCs = vehNATOAPC + vehCSATAPC; +DECLARE_SERVER_VAR(vehAPCs, _vehAPCs); + +private _vehTanks = [vehNATOTank,vehCSATTank]; +DECLARE_SERVER_VAR(vehTanks, _vehTanks); + +private _vehTrucks = vehNATOTrucks + vehCSATTrucks + [vehSDKTruck,vehFIATruck]; +DECLARE_SERVER_VAR(vehTrucks, _vehTrucks); + +private _vehAA = [vehNATOAA,vehCSATAA]; +DECLARE_SERVER_VAR(vehAA, _vehAA); + +private _vehMRLS = [vehCSATMRLS, vehNATOMRLS]; +DECLARE_SERVER_VAR(vehMRLS, _vehMRLS); + +private _vehTransportAir = vehNATOTransportHelis + vehCSATTransportHelis + vehNATOTransportPlanes + vehCSATTransportPlanes; +DECLARE_SERVER_VAR(vehTransportAir, _vehTransportAir); + +private _vehFastRope = ["O_Heli_Light_02_unarmed_F","B_Heli_Transport_01_camo_F","RHS_UH60M_d","RHS_Mi8mt_vdv","RHS_Mi8mt_vv","RHS_Mi8mt_Cargo_vv"]; +DECLARE_SERVER_VAR(vehFastRope, _vehFastRope); + +private _vehUnlimited = vehNATONormal + vehCSATNormal + [vehNATORBoat,vehNATOPatrolHeli,vehCSATRBoat,vehCSATPatrolHeli,vehNATOUAV,vehNATOUAVSmall,NATOMG,NATOMortar,vehCSATUAV,vehCSATUAVSmall,CSATMG,CSATMortar]; +DECLARE_SERVER_VAR(vehUnlimited, _vehUnlimited); + +private _vehFIA = [vehSDKBike,vehSDKLightArmed,SDKMGStatic,vehSDKLightUnarmed,vehSDKTruck,vehSDKBoat,SDKMortar,staticATteamPlayer,staticAAteamPlayer,vehSDKRepair]; +DECLARE_SERVER_VAR(vehFIA, _vehFIA); + +/////////////////////////// +// MOD TEMPLATES /// +/////////////////////////// +//Please respect the order in which these are called, +//and add new entries to the bottom of the list. +if (hasACE) then { + [] call A3A_fnc_aceModCompat; +}; +if (hasRHS) then { + [] call A3A_fnc_rhsModCompat; +}; +if (hasIFA) then { + [] call A3A_fnc_ifaModCompat; +}; + +//////////////////////////////////// +// ACRE ITEM MODIFICATIONS /// +//////////////////////////////////// +if (hasACRE) then {initialRebelEquipment append ["ACRE_PRC343","ACRE_PRC148","ACRE_PRC152","ACRE_PRC77","ACRE_PRC117F"];}; + +//////////////////////////////////// +// UNIT AND VEHICLE PRICES /// +//////////////////////////////////// +[2,"Creating pricelist",_fileName] call A3A_fnc_log; +{server setVariable [_x,50,true]} forEach SDKMil; +{server setVariable [_x,75,true]} forEach (sdkTier1 - SDKMil); +{server setVariable [_x,100,true]} forEach sdkTier2; +{server setVariable [_x,150,true]} forEach sdkTier3; +//{timer setVariable [_x,0,true]} forEach (vehAttack + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA,vehCSATPlane,vehCSATPlaneAA] + vehCSATAttackHelis + vehAA + vehMRLS); +{timer setVariable [_x,3,true]} forEach [staticATOccupants,staticAAOccupants]; +{timer setVariable [_x,6,true]} forEach [staticATInvaders,staticAAInvaders]; +{timer setVariable [_x,0,true]} forEach vehNATOAPC; +{timer setVariable [_x,10,true]} forEach vehCSATAPC; +timer setVariable [vehNATOTank,0,true]; +timer setVariable [vehCSATTank,10,true]; +timer setVariable [vehNATOAA,0,true]; +timer setVariable [vehCSATAA,3,true]; +timer setVariable [vehNATOBoat,3,true]; +timer setVariable [vehCSATBoat,3,true]; +timer setVariable [vehNATOPlane,0,true]; +timer setVariable [vehCSATPlane,10,true]; +timer setVariable [vehNATOPlaneAA,0,true]; +timer setVariable [vehCSATPlaneAA,10,true]; +{timer setVariable [_x,1,true]} forEach vehNATOTransportPlanes; +{timer setVariable [_x,1,true]} forEach vehNATOTransportHelis - [vehNATOPatrolHeli]; +{timer setVariable [_x,1,true]} forEach vehCSATTransportPlanes; +{timer setVariable [_x,10,true]} forEach vehCSATTransportHelis - [vehCSATPatrolHeli]; +{timer setVariable [_x,0,true]} forEach vehNATOAttackHelis; +{timer setVariable [_x,10,true]} forEach vehCSATAttackHelis; +timer setVariable [vehNATOMRLS,0,true]; +timer setVariable [vehCSATMRLS,5,true]; + +server setVariable [civCar,200,true]; //200 +server setVariable [civTruck,600,true]; //600 +server setVariable [civHeli,5000,true]; //5000 +server setVariable [civBoat,200,true]; //200 +server setVariable [vehSDKBike ,50,true]; //50 +server setVariable [vehSDKLightUnarmed,200,true]; //200 +server setVariable [vehSDKTruck,300,true]; //300 +{server setVariable [_x,700,true]} forEach [vehSDKLightArmed,vehSDKAT]; +{server setVariable [_x,400,true]} forEach [SDKMGStatic,vehSDKBoat,vehSDKRepair]; //400 +{server setVariable [_x,800,true]} forEach [SDKMortar,staticATteamPlayer,staticAAteamPlayer]; //800 + +/////////////////////// +// GARRISONS /// +/////////////////////// +[2,"Initialising Garrison Variables",_fileName] call A3A_fnc_log; + +tierPreference = 1; +cityUpdateTiers = [4, 8]; +cityStaticsTiers = [0.2, 1]; +airportUpdateTiers = [3, 6, 8]; +airportStaticsTiers = [0.5, 0.75, 1]; +outpostUpdateTiers = [4, 7, 9]; +outpostStaticsTiers = [0.4, 0.7, 1]; +otherUpdateTiers = [3, 7]; +otherStaticsTiers = [0.3, 1]; +[] call A3A_fnc_initPreference; + +//////////////////////////// +// REINFORCEMENTS /// +//////////////////////////// +[2,"Initialising Reinforcement Variables",_fileName] call A3A_fnc_log; +DECLARE_SERVER_VAR(reinforceMarkerOccupants, []); +DECLARE_SERVER_VAR(reinforceMarkerInvader, []); +DECLARE_SERVER_VAR(canReinforceOccupants, []); +DECLARE_SERVER_VAR(canReinforceInvader, []); + +///////////////////////////////////////// +// SYNCHRONISE SERVER VARIABLES /// +///////////////////////////////////////// +[2,"Sending server variables",_fileName] call A3A_fnc_log; + +//Declare this last, so it syncs last. +DECLARE_SERVER_VAR(initVarServerCompleted, true); +{ + publicVariable _x; +} forEach serverInitialisedVariables; + +[2,"initVarServer completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/initZones.sqf b/A3-Antistasi/functions/init/fn_initZones.sqf similarity index 81% rename from A3-Antistasi/initZones.sqf rename to A3-Antistasi/functions/init/fn_initZones.sqf index 541e17f099..5819771f60 100755 --- a/A3-Antistasi/initZones.sqf +++ b/A3-Antistasi/functions/init/fn_initZones.sqf @@ -6,22 +6,14 @@ //of course all the editor placed objects (petros, flag, respawn marker etc..) have to be ported to the new island //deletion of a marker in the array will require deletion of the corresponding marker in the editor //only touch the commented arrays -diag_log format ["%1: [Antistasi] | INFO | initZones Started.", servertime]; +scriptName "initZones.sqf"; +private _fileName = "initZones.sqf"; +[2,"initZones started",_fileName] call A3A_fnc_log; forcedSpawn = []; citiesX = []; -airportsX = ["airport"] call A3A_fnc_getArrayMrks; -spawnPoints = ["spawnPoint"] call A3A_fnc_getArrayMrks; -resourcesX = ["resource"] call A3A_fnc_getArrayMrks; -factories = ["factory"] call A3A_fnc_getArrayMrks; -outposts = ["outpost"] call A3A_fnc_getArrayMrks; -seaports = ["seaport"] call A3A_fnc_getArrayMrks; -controlsX = ["control"] call A3A_fnc_getArrayMrks; -seaMarkers = ["seaPatrol"] call A3A_fnc_getArrayMrks; -seaSpawn = ["seaSpawn"] call A3A_fnc_getArrayMrks; -seaAttackSpawn = ["seaAttackSpawn"] call A3A_fnc_getArrayMrks; -detectionAreas = ["detectPlayer"] call A3A_fnc_getArrayMrks; -islands = ["island"] call A3A_fnc_getArrayMrks; + +[] call A3A_fnc_prepareMarkerArrays; private ["_name", "_sizeX", "_sizeY", "_size", "_pos", "_mrk"]; @@ -57,7 +49,7 @@ if (debug) then { (seaMarkers + seaSpawn + seaAttackSpawn + spawnPoints + detectionAreas + islands) apply {_x setMarkerAlpha 0}; defaultControlIndex = (count controlsX) - 1; outpostsFIA = []; -destroyedCities = []; +destroyedSites = []; garrison setVariable ["Synd_HQ", [], true]; markersX = airportsX + resourcesX + factories + outposts + seaports + controlsX + ["Synd_HQ"]; if (debug) then { @@ -84,49 +76,59 @@ configClasses (configfile >> "CfgWorlds" >> worldName >> "Names") apply { _roads = []; _numCiv = 0; - if ( (toLower worldName) in ["tanoa", "altis", "chernarus_summer"] ) then { - _roads = roadsX getVariable _nameX; + if ( (toLower worldName) in ["tanoa", "altis", "chernarus_summer"] ) then + { + _roads = roadsX getVariable [_name, []]; + if (count _roads == 0) then { + [2, format ["No roads found for marker %1", _name], _fileName] call A3A_fnc_log; + }; _numCiv = server getVariable _nameX; - - if (isNil "_numCiv") then { + if (isNil "_numCiv") then + { diag_log format ["%1: [Antistasi] | ERROR | initZones | No Civilian Limit Set %2.", servertime, _nameX]; _numCiv = (count (nearestObjects [_pos, ["house"], _size])); _roadsProv = _pos nearRoads _size; - _roadsProv apply { + _roadsProv apply + { _roadcon = roadsConnectedto _x; - - if (count _roadcon == 2) then { + if (count _roadcon == 2) then + { _roads pushBack (getPosATL _x); }; }; - roadsX setVariable [_nameX, _roads]; }; - if (typeName _numCiv != typeName 0) then { + if (!(_numCiv isEqualType 0)) then + { hint format ["Incorrect Data: %1. Data Type: %2",_nameX, typeName _numCiv]; diag_log format ["%1: [Antistasi] | ERROR | initZones | Incorrect data type for %2, Type given %3",servertime,_nameX, typeName _numCiv]; }; - } else { + } + else + { _numCiv = (count (nearestObjects [_pos, ["house"], _size])); _roadsProv = _pos nearRoads _size; - - _roadsProv apply { + _roadsProv apply + { _roadcon = roadsConnectedto _x; - - if (count _roadcon == 2) then { + if (count _roadcon == 2) then + { _roads pushBack (getPosATL _x); }; }; - roadsX setVariable [_nameX,_roads]; }; //swap then and else, for better view _numVeh = round (_numCiv / 3); _nroads = count _roads; - _nearRoadsFinalSorted = [_roads, [], { _pos distance _x }, "ASCEND"] call BIS_fnc_sortBy; - _pos = _nearRoadsFinalSorted select 0; + if(_nroads > 0) then + { + //Fixed issue with a town on tembledan having no roads + _nearRoadsFinalSorted = [_roads, [], { _pos distance _x }, "ASCEND"] call BIS_fnc_sortBy; + _pos = _nearRoadsFinalSorted select 0; + }; _mrk = createmarker [format ["%1", _nameX], _pos]; _mrk setMarkerSize [_size, _size]; _mrk setMarkerShape "RECTANGLE"; @@ -150,8 +152,16 @@ configClasses (configfile >> "CfgWorlds" >> worldName >> "Names") apply { if (debug) then { diag_log format ["%1: [Antistasi] | DEBUG | initZones | Roads built in %2.",servertime,worldname]; }; + +[2,"Loading nav grid",_fileName] call A3A_fnc_log; +[] call A3A_fnc_loadNavGrid; +[2,"Loaded nav grid",_fileName] call A3A_fnc_log; + + markersX = markersX + citiesX; sidesX setVariable ["Synd_HQ", teamPlayer, true]; +sidesX setVariable ["NATO_carrier", Occupants, true]; +sidesX setVariable ["CSAT_carrier", Invaders, true]; antennasDead = []; banks = []; @@ -163,6 +173,26 @@ private ["_antenna", "_mrkFinal", "_antennaProv"]; if (debug) then { diag_log format ["%1: [Antistasi] | DEBUG | initZones | Setting up Radio Towers.",servertime]; }; + +// Land_A_TVTower_base can't be destroyed, Land_Communication_F and Land_Vysilac_FM are not replaced with "Ruins" when destroyed. +// This causes issues with persistent load and rebuild scripts, so we replace those with antennas that work properly. +private _replaceBadAntenna = { + params ["_antenna"]; + if ((typeof _antenna) in ["Land_Communication_F", "Land_Vysilac_FM", "Land_A_TVTower_Base"]) then { + hideObjectGlobal _antenna; + if (typeof _antenna == "Land_A_TVTower_Base") then { + // The TV tower is composed of 3 sections - need to hide them all + private _otherSections = nearestObjects [_antenna, ["Land_A_TVTower_Mid", "Land_A_TVTower_Top"], 200]; + { hideObjectGlobal _x; } forEach _otherSections; + }; + private _antennaPos = getPos _antenna; + _antennaPos set [2, 0]; + private _antennaClass = if (worldName == "chernarus_summer") then { "Land_Telek1" } else { "Land_TTowerBig_2_F" }; + _antenna = createVehicle [_antennaClass, _antennaPos, [], 0, "NONE"]; + }; + _antenna; +}; + switch (worldName) do { case "tanoa": { _posAntennas = [[6617.95,7853.57,0.200073], [7486.67,9651.9,1.52588e-005], [6005.47,10420.9,0.20298], [2437.25,7224.06,0.0264893], [4701.6,3165.23,0.0633469], [11008.8,4211.16,-0.00154114], [10114.3,11743.1,9.15527e-005], [10949.8,11517.3,0.14209], [11153.3,11435.2,0.210876], [12889.2,8578.86,0.228729], [2682.94,2592.64,-0.000686646], [2690.54,12323,0.0372467], [2965.33,13087.1,0.191544], [13775.8,10976.8,0.170441]]; @@ -187,8 +217,12 @@ switch (worldName) do { banks = nearestObjects [[worldSize /2, worldSize/2], ["Land_Offices_01_V1_F"], worldSize]; + private _replacedAntennas = []; + { _replacedAntennas pushBack ([_x] call _replaceBadAntenna); } forEach antennas; + antennas = _replacedAntennas; + antennas apply { - _mrkFinal = createMarker [format ["Ant%1", _x], position _x]; + _mrkFinal = createMarker [format ["Ant%1", mapGridPosition _x], position _x]; _mrkFinal setMarkerShape "ICON"; _mrkFinal setMarkerType "loc_Transmitter"; _mrkFinal setMarkerColor "ColorBlack"; @@ -198,6 +232,7 @@ switch (worldName) do { "Killed", { _antenna = _this select 0; + _antenna removeAllEventHandlers "Killed"; citiesX apply { if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then { @@ -207,7 +242,7 @@ switch (worldName) do { _mrk = [mrkAntennas, _antenna] call BIS_fnc_nearestPosition; antennas = antennas - [_antenna]; - antennasDead pushBack (getPos _antenna); + antennasDead pushBack _antenna; deleteMarker _mrk; publicVariable "antennas"; publicVariable "antennasDead"; @@ -230,10 +265,11 @@ if (count _posAntennas > 0) then { _antenna = _antennaProv select 0; if (_i in _blacklistPos) then { - _antenna setdamage 1; + _antenna setdamage 1; } else { + _antenna = ([_antenna] call _replaceBadAntenna); antennas pushBack _antenna; - _mrkFinal = createMarker [format ["Ant%1", _i], _posAntennas select _i]; + _mrkFinal = createMarker [format ["Ant%1", mapGridPosition _antenna], _posAntennas select _i]; _mrkFinal setMarkerShape "ICON"; _mrkFinal setMarkerType "loc_Transmitter"; _mrkFinal setMarkerColor "ColorBlack"; @@ -244,6 +280,7 @@ if (count _posAntennas > 0) then { "Killed", { _antenna = _this select 0; + _antenna removeAllEventHandlers "Killed"; citiesX apply { if ([antennas, _x] call BIS_fnc_nearestPosition == _antenna) then { @@ -253,7 +290,7 @@ if (count _posAntennas > 0) then { _mrk = [mrkAntennas, _antenna] call BIS_fnc_nearestPosition; antennas = antennas - [_antenna]; - antennasDead pushBack (getPos _antenna); + antennasDead pushBack _antenna; deleteMarker _mrk; publicVariable "antennas"; publicVariable "antennasDead"; @@ -290,7 +327,7 @@ publicVariable "factories"; publicVariable "outposts"; publicVariable "controlsX"; publicVariable "seaports"; -publicVariable "destroyedCities"; +publicVariable "destroyedSites"; publicVariable "forcedSpawn"; publicVariable "outpostsFIA"; publicVariable "seaMarkers"; @@ -309,4 +346,4 @@ if (isMultiplayer) then { [petros, "hint","Zones Init Completed"] remoteExec ["A3A_fnc_commsMP", -2] }; -diag_log format ["%1: [Antistasi] | INFO | initZones Completed.",servertime]; +[2,"initZones completed",_fileName] call A3A_fnc_log; diff --git a/A3-Antistasi/modBlacklist.sqf b/A3-Antistasi/functions/init/fn_modBlacklist.sqf similarity index 100% rename from A3-Antistasi/modBlacklist.sqf rename to A3-Antistasi/functions/init/fn_modBlacklist.sqf diff --git a/A3-Antistasi/playerMarkers.sqf b/A3-Antistasi/functions/init/fn_playerMarkers.sqf similarity index 95% rename from A3-Antistasi/playerMarkers.sqf rename to A3-Antistasi/functions/init/fn_playerMarkers.sqf index 6fa098a4aa..05f0b4ea91 100644 --- a/A3-Antistasi/playerMarkers.sqf +++ b/A3-Antistasi/functions/init/fn_playerMarkers.sqf @@ -18,7 +18,7 @@ while {true} do _mrk setMarkerTextLocal format ["%1",name _playerX]; _markersX pushBack _mrk; }; - } forEach playableUnits; + } forEach (call A3A_fnc_playableUnits); if (count _playersX > 0) then { { @@ -54,7 +54,7 @@ while {true} do { _textX = format ["%1%2/",_textX,name _x]; }; - } forEach playableUnits; + } forEach (call A3A_fnc_playableUnits); _mrk setMarkerTextLocal _textX; } else diff --git a/A3-Antistasi/functions/init/fn_prepareMarkerArrays.sqf b/A3-Antistasi/functions/init/fn_prepareMarkerArrays.sqf new file mode 100644 index 0000000000..5c323a0a79 --- /dev/null +++ b/A3-Antistasi/functions/init/fn_prepareMarkerArrays.sqf @@ -0,0 +1,120 @@ +private ["_allMarker", "_placementMarker", "_split", "_start", "_data"]; + +_allMarker = allMapMarkers; +_placementMarker = []; + +airportsX = []; +spawnPoints = []; +resourcesX = []; +factories = []; +outposts = []; +seaports = []; +controlsX = []; +seaMarkers = []; +seaSpawn = []; +seaAttackSpawn = []; +detectionAreas = []; +islands = []; +roadsMrk = []; + +fnc_sortPlacementMarker = +{ + params ["_array", "_split"]; + private ["_type", "_number", "_start", "_index", "_name"]; + + //Calculating linked main marker + _type = ""; + switch (_split select 0) do + { + case ("airp"): {_type = "airport";}; + case ("outp"): {_type = "outpost";}; + case ("reso"): {_type = "resource";}; + case ("fact"): {_type = "factory";}; + case ("seap"): {_type = "seaport";}; + }; + + _number = parseNumber (_split select 1); + _start = 1; + if(_number != 0) then + { + //There is no outpost_0 or something + _start = 2; + _type = format ["%1_%2", _type, _number]; + }; + + //Build name + _name = _split select _start; + for "_i" from (_start + 1) to ((count _split) - 1) do + { + _name = format ["%1_%2", _name, _split select _i]; + }; + + //Seting connection + _index = _array findIf {(_x select 0) == _type}; + if(_index == -1) then + { + _array pushBack [_type, [_name]]; + } + else + { + ((_array select _index) select 1) pushBack _name; + }; +}; + +{ + _split = _x splitString "_"; + _start = _split select 0; + switch (toLower _start) do + { + //Detect main marker + case ("airport"): {airportsX pushBack _x;}; + case ("spawnpoint"): {spawnPoints pushBack _x;}; + case ("resource"): {resourcesX pushBack _x;}; + case ("factory"): {factories pushBack _x;}; + case ("outpost"): {outposts pushBack _x;}; + case ("seaport"): {seaports pushBack _x;}; + case ("control"): {controlsX pushBack _x;}; + case ("seapatrol"): {seaMarkers pushBack _x;}; + case ("seaspawn"): {seaSpawn pushBack _x;}; + case ("seaattackspawn"): {seaAttackSpawn pushBack _x;}; + case ("detectplayer"): {detectionAreas pushBack _x;}; + case ("island"): {islands pushBack _x;}; + case ("road"): + { + _x setMarkerAlpha 0; + roadsMrk pushBack _x; + }; + + //Following marker are handled elsewhere + case ("respawn"); + case ("dummyupsmonmarker"); + case ("nato"); + case ("csat"); + case ("synd"): {}; + + //Detect placement marker + case ("airp"); + case ("reso"); + case ("fact"); + case ("outp"); + case ("seap"): {[_placementMarker, _split] call fnc_sortPlacementMarker;}; + + default + { + diag_log format ["ERROR: Could not resolve marker %1", _x]; + }; + }; +} forEach _allMarker; + +//diag_log "Marker setup done, placement marker are"; +//[_placementMarker, "Placements"] call A3A_fnc_logArray; + +{ + [_x select 0, _x select 1] spawn A3A_fnc_initSpawnPlaces; +} forEach _placementMarker; + +//TEMPORARY FIX TO DETECT SPAWN MARKERS +{ + _nearestMarker = [spawnPoints, getMarkerPos _x] call BIS_fnc_nearestPosition; + server setVariable [format ["spawn_%1", _x], _nearestMarker, true]; +} forEach airportsX; diff --git a/A3-Antistasi/reinitY.sqf b/A3-Antistasi/functions/init/fn_reinitY.sqf similarity index 100% rename from A3-Antistasi/reinitY.sqf rename to A3-Antistasi/functions/init/fn_reinitY.sqf diff --git a/A3-Antistasi/resourcecheck.sqf b/A3-Antistasi/functions/init/fn_resourcecheck.sqf old mode 100644 new mode 100755 similarity index 83% rename from A3-Antistasi/resourcecheck.sqf rename to A3-Antistasi/functions/init/fn_resourcecheck.sqf index 16874d30cc..e66922606e --- a/A3-Antistasi/resourcecheck.sqf +++ b/A3-Antistasi/functions/init/fn_resourcecheck.sqf @@ -19,7 +19,7 @@ while {true} do _popAAF = 0; _popCSAT = 0; _popTotal = 0; - _bonusFIA = 1 + (0.25*({(sidesX getVariable [_x,sideUnknown] == teamPlayer) and !(_x in destroyedCities)} count factories)); + _bonusFIA = 1 + (0.25*({(sidesX getVariable [_x,sideUnknown] == teamPlayer) and !(_x in destroyedSites)} count factories)); { _city = _x; _resourcesAddCitySDK = 0; @@ -37,7 +37,7 @@ while {true} do _multiplyingRec = if (_power != teamPlayer) then {0.5} else {1}; //if (not _power) then {_multiplyingRec = 0.5}; - if (_city in destroyedCities) then + if (_city in destroyedSites) then { _resourcesAddCitySDK = 0; _hrAddCity = 0; @@ -64,11 +64,11 @@ while {true} do // revuelta civil!! if ((_prestigeNATO < _prestigeSDK) and (sidesX getVariable [_city,sideUnknown] == Occupants)) then { - ["TaskSucceeded", ["", format ["%1 joined %2",[_city, false] call A3A_fnc_fn_location,nameTeamPlayer]]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; + ["TaskSucceeded", ["", format ["%1 joined %2",[_city, false] call A3A_fnc_location,nameTeamPlayer]]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; sidesX setVariable [_city,teamPlayer,true]; _nul = [5,0] remoteExec ["A3A_fnc_prestige",2]; _mrkD = format ["Dum%1",_city]; - _mrkD setMarkerColor colourTeamPlayer; + _mrkD setMarkerColor colorTeamPlayer; garrison setVariable [_city,[],true]; sleep 5; {_nul = [_city,_x] spawn A3A_fnc_deleteControls} forEach controlsX; @@ -77,14 +77,14 @@ while {true} do _base = [_city] call A3A_fnc_findBasesForConvoy; if (_base != "") then { - [[_city,_base],"CONVOY"] call A3A_fnc_scheduler; + [[_city,_base],"A3A_fnc_convoy"] call A3A_fnc_scheduler; }; }; [] call A3A_fnc_tierCheck; }; if ((_prestigeNATO > _prestigeSDK) and (sidesX getVariable [_city,sideUnknown] == teamPlayer)) then { - ["TaskFailed", ["", format ["%1 joined %2",[_city, false] call A3A_fnc_fn_location,nameOccupants]]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; + ["TaskFailed", ["", format ["%1 joined %2",[_city, false] call A3A_fnc_location,nameOccupants]]] remoteExec ["BIS_fnc_showNotification",teamPlayer]; sidesX setVariable [_city,Occupants,true]; _nul = [-5,0] remoteExec ["A3A_fnc_prestige",2]; _mrkD = format ["Dum%1",_city]; @@ -94,14 +94,14 @@ while {true} do [] call A3A_fnc_tierCheck; }; } forEach citiesX; - if (_popCSAT > (_popTotal / 3)) then {["destroyedCities",false,true] remoteExec ["BIS_fnc_endMission"]}; + if (_popCSAT > (_popTotal / 3)) then {["destroyedSites",false,true] remoteExec ["BIS_fnc_endMission"]}; if ((_popFIA > _popAAF) and ({sidesX getVariable [_x,sideUnknown] == teamPlayer} count airportsX == count airportsX)) then {["end1",true,true,true,true] remoteExec ["BIS_fnc_endMission",0]}; /* { _fabrica = _x; if (sidesX getVariable [_fabrica,sideUnknown] == teamPlayer) then { - if (not(_fabrica in destroyedCities)) then {_bonusFIA = _bonusFIA + 0.25}; + if (not(_fabrica in destroyedSites)) then {_bonusFIA = _bonusFIA + 0.25}; }; } forEach factories; */ @@ -109,7 +109,7 @@ while {true} do _recurso = _x; if (sidesX getVariable [_recurso,sideUnknown] == teamPlayer) then { - if (not(_recurso in destroyedCities)) then {_recAddSDK = _recAddSDK + (300 * _bonusFIA)}; + if (not(_recurso in destroyedSites)) then {_recAddSDK = _recAddSDK + (300 * _bonusFIA)}; }; } forEach resourcesX; _hrAddBLUFOR = (round _hrAddBLUFOR); @@ -128,14 +128,19 @@ while {true} do bombRuns = bombRuns + (({sidesX getVariable [_x,sideUnknown] == teamPlayer} count airportsX) * 0.25); [petros,"taxRep",_textX] remoteExec ["A3A_fnc_commsMP",[teamPlayer,civilian]]; [] call A3A_fnc_economicsAI; + if (isMultiplayer) then - { - [] spawn A3A_fnc_assigntheBoss; - difficultyCoef = floor ((({side group _x == teamPlayer} count playableUnits) - ({side group _x != teamPlayer} count playableUnits)) / 5); + { + [] spawn A3A_fnc_promotePlayer; + [] call A3A_fnc_assignBossIfNone; + difficultyCoef = floor ((({side group _x == teamPlayer} count (call A3A_fnc_playableUnits)) - ({side group _x != teamPlayer} count (call A3A_fnc_playableUnits))) / 5); publicVariable "difficultyCoef"; - }; + }; + if ((!bigAttackInProgress) and (random 100 < 50)) then {[] call A3A_fnc_missionRequestAUTO}; - [[],"A3A_fnc_reinforcementsAI"] call A3A_fnc_scheduler; + //Removed from scheduler for now, as it errors on Headless Clients. + //[[],"A3A_fnc_reinforcementsAI"] call A3A_fnc_scheduler; + [] spawn A3A_fnc_reinforcementsAI; { _veh = _x; if ((_veh isKindOf "StaticWeapon") and ({isPlayer _x} count crew _veh == 0) and (alive _veh)) then @@ -152,7 +157,7 @@ while {true} do [1200] remoteExec ["A3A_fnc_timingCA",2]; if (!bigAttackInProgress) then { - _script = [] spawn A3A_fnc_attackAAF; + _script = [] spawn A3A_fnc_rebelAttack; waitUntil {sleep 5; scriptDone _script}; }; }; @@ -173,7 +178,7 @@ while {true} do if (count _potentials > 0) then { _potential = selectRandom _potentials; - [[_potential select 0,_potential select 1],"REP_Antenna"] call A3A_fnc_scheduler; + [[_potential select 0,_potential select 1],"A3A_fnc_REP_Antenna"] call A3A_fnc_scheduler; }; } else @@ -185,13 +190,13 @@ while {true} do if (random 100 < _chance) then { _changingX = true; - destroyedCities = destroyedCities - [_x]; + destroyedSites = destroyedSites - [_x]; _nameX = [_x] call A3A_fnc_localizar; ["TaskSucceeded", ["", format ["%1 Rebuilt",_nameX]]] remoteExec ["BIS_fnc_showNotification",[teamPlayer,civilian]]; sleep 2; }; - } forEach (destroyedCities - citiesX) select {sidesX getVariable [_x,sideUnknown] != teamPlayer}; - if (_changingX) then {publicVariable "destroyedCities"}; + } forEach (destroyedSites - citiesX) select {sidesX getVariable [_x,sideUnknown] != teamPlayer}; + if (_changingX) then {publicVariable "destroyedSites"}; }; if (isDedicated) then { @@ -231,4 +236,4 @@ while {true} do }; sleep 4; - }; \ No newline at end of file + }; diff --git a/A3-Antistasi/tags.sqf b/A3-Antistasi/functions/init/fn_tags.sqf similarity index 100% rename from A3-Antistasi/tags.sqf rename to A3-Antistasi/functions/init/fn_tags.sqf diff --git a/A3-Antistasi/playerHasBeenPvPCheck.sqf b/A3-Antistasi/functions/pvp/fn_playerHasBeenPvPCheck.sqf old mode 100644 new mode 100755 similarity index 100% rename from A3-Antistasi/playerHasBeenPvPCheck.sqf rename to A3-Antistasi/functions/pvp/fn_playerHasBeenPvPCheck.sqf diff --git a/A3-Antistasi/functions/pvp/fn_pvpCheck.sqf b/A3-Antistasi/functions/pvp/fn_pvpCheck.sqf new file mode 100755 index 0000000000..bc011c8d04 --- /dev/null +++ b/A3-Antistasi/functions/pvp/fn_pvpCheck.sqf @@ -0,0 +1,44 @@ +private _filename = "fn_pvpCheck"; + +params ["_unit"]; + +private _friendlyPlayers = ({(side group _x == teamPlayer)} count (call A3A_fnc_playableUnits)); +private _enemyPlayers = count (call A3A_fnc_playableUnits) - _friendlyPlayers; + +// Player checks to prevent them logging into PvP for whatever reason. +switch (true) do { + case (!_isJip): { + ["noJip",false,1,false,false] call BIS_fnc_endMission; + [2,"Player kicked as they are not Jipping",_filename] call A3A_fnc_log; + }; + + case (!pvpEnabled): { + ["noPvP",false,1,false,false] call BIS_fnc_endMission; + [2,"Player kicked as PvP slots are disabled",_filename] call A3A_fnc_log; + }; + + case (!([_unit] call A3A_fnc_isMember)): { + ["pvpMem",false,1,false,false] call BIS_fnc_endMission; + [2,"PvP player kicked because they are not a member.",_filename] call A3A_fnc_log; + }; + + case (_enemyPlayers > _friendlyPlayers): { + ["pvpCount",false,1,false,false] call BIS_fnc_endMission; + [2,"PvP player kicked because there are wayyyyyy too many PvP players..",_filename] call A3A_fnc_log; + }; + + case (_friendlyPlayers < minPlayersRequiredforPVP): { + ["pvpCount",false,1,false,false] call BIS_fnc_endMission; + [2,"PvP player kicked as there are not enough normal players.",_filename] call A3A_fnc_log; + }; + + case (isnil "theBoss" || {isNull theBoss}): { + ["BossMiss",false,1,false,false] call BIS_fnc_endMission; + [2,"PvP player kicked as there is no Rebel Commander.",_filename] call A3A_fnc_log; + }; + + default { + [2,"PvP player logged in, doing server side checks if the player has been rebel recently.",_filename] call A3A_fnc_log; + [_unit] remoteExec ["A3A_fnc_playerHasBeenPvPCheck",2]; + }; +}; \ No newline at end of file diff --git a/A3-Antistasi/init.sqf b/A3-Antistasi/init.sqf index 4b127f984d..98ac602ec3 100755 --- a/A3-Antistasi/init.sqf +++ b/A3-Antistasi/init.sqf @@ -1,85 +1,20 @@ diag_log format ["%1: [Antistasi] | INFO | Init Started.",servertime]; //Arma 3 - Antistasi - Warlords of the Pacific by Barbolani & The Official AntiStasi Community //Do whatever you want with this code, but credit me for the thousand hours spent making this. -enableSaving [false,false]; -mapX setObjectTexture [0,"pic.jpg"]; -if (isServer and (isNil "serverInitDone")) then {skipTime random 24}; - -if (!isMultiPlayer) then - { - //Init server parameters - gameMode = 1; - autoSave = false; - membershipEnabled = false; - memberOnlyMagLimit = 0; - switchCom = false; - tkPunish = false; - skillMult = 1; - minWeaps = 24; - civTraffic = 1; - limitedFT = false; - diag_log format ["%1: [Antistasi] | INFO | Singleplayer Starting.",servertime]; - call compile preprocessFileLineNumbers "initVar.sqf";//this is the file where you can modify a few things. - diag_log format ["%1: [Antistasi] | INFO | SP Version: %2 loaded.",servertime,antistasiVersion]; - initVar = true; - respawnOccupants setMarkerAlpha 0; - "respawn_east" setMarkerAlpha 0; - [] execVM "briefing.sqf"; - _nul = [] execVM "musica.sqf"; - {if (/*(side _x == teamPlayer) and */(_x != commanderX) and (_x != Petros)) then {_grupete = group _x; deleteVehicle _x; deleteGroup _grupete}} forEach allUnits; - _serverHasID = profileNameSpace getVariable ["ss_ServerID",nil]; - if(isNil "_serverHasID") then - { - _serverID = str(round((random(100000)) + random 10000)); - profileNameSpace setVariable ["SS_ServerID",_serverID]; - }; - serverID = profileNameSpace getVariable "ss_ServerID"; - publicVariable "serverID"; - - //Load Campaign ID - campaignID = profileNameSpace getVariable ["ss_CampaignID",nil]; - if(isNil "campaignID") then - { - campaignID = str(round((random(100000)) + random 10000)); - profileNameSpace setVariable ["ss_CampaignID", campaignID]; - }; - publicVariable "campaignID"; +private _fileName = "init.sqf"; +scriptName "init.sqf"; +if (isNil "logLevel") then {logLevel = 2}; +[2,"Init SQF started",_fileName] call A3A_fnc_log; - call compile preprocessFileLineNumbers "initFuncs.sqf"; - //diag_log "Antistasi SP. Funcs init finished"; - call compile preprocessFileLineNumbers "initZones.sqf";//this is the file where you can transport Antistasi to another island - //diag_log "Antistasi SP. Zones init finished"; - [] execVM "initPetros.sqf"; +//If it's singleplayer, delete every playable unit that isn't the player. +//Addresses the issue of a bunch of randoms running around at the start. +if (!isMultiplayer) then { + [3, "Singleplayer detected: Deleting units for other players.", _fileName] call A3A_fnc_log; + { deleteVehicle _x; } forEach (switchableUnits select {_x != player}); +}; - hcArray = []; - serverInitDone = true; - diag_log format ["%1: [Antistasi] | INFO | Arsenal Loaded.",servertime]; - _nul = [] execVM "modBlacklist.sqf"; - - distanceMission = if (hasIFA) then {2000} else {4000}; +enableSaving [false,false]; +mapX setObjectTexture [0,"pic.jpg"]; - { - private _index = _x call jn_fnc_arsenal_itemType; - [_index,_x,-1] call jn_fnc_arsenal_addItem; - }foreach (unlockeditems + unlockedweapons + unlockedMagazines + unlockedBackpacks); - [] execVM "Ammunition\boxAAF.sqf"; - waitUntil {sleep 1;!(isNil "placementDone")}; - distanceXs = [] spawn A3A_fnc_distances4; - resourcecheck = [] execVM "resourcecheck.sqf"; - [] execVM "Scripts\fn_advancedTowingInit.sqf"; - addMissionEventHandler ["BuildingChanged", - { - _building = _this select 0; - if !(_building in antennas) then - { - if (_this select 2) then - { - destroyedBuildings pushBack (getPosATL _building); - }; - }; - }]; - deleteMarker "respawn_east"; - if (teamPlayer == independent) then {deleteMarker "respawn_west"} else {deleteMarker "respawn_guerrila"}; - }; - diag_log format ["%1: [Antistasi] | INFO | Init finished.",servertime]; +[2,"Init finished",_fileName] call A3A_fnc_log; \ No newline at end of file diff --git a/A3-Antistasi/initFuncs.sqf b/A3-Antistasi/initFuncs.sqf deleted file mode 100755 index 2c6561aef4..0000000000 --- a/A3-Antistasi/initFuncs.sqf +++ /dev/null @@ -1,26 +0,0 @@ -diag_log format ["%1: [Antistasi] | INFO | InitFuncs Started.",servertime]; -call compile preprocessFileLineNumbers "scripts\Init_UPSMON.sqf"; - -WPCreate = if (worldName == "Tanoa") then {compile preprocessFileLineNumbers "CREATE\WPCreate.sqf"} else {compile preprocessFileLineNumbers "CREATE\WPCreateAltis.sqf"}; -/* - * - */ -CONVOY = compile preprocessFileLineNumbers "Missions\CONVOY.sqf"; -RES_Prisoners = compile preprocessFileLineNumbers "Missions\RES_Prisoners.sqf"; -RES_Refugees = compile preprocessFileLineNumbers "Missions\RES_Refugees.sqf"; -LOG_Bank = compile preprocessFileLineNumbers "Missions\LOG_Bank.sqf"; -LOG_Supplies = compile preprocessFileLineNumbers "Missions\LOG_Supplies.sqf"; -LOG_Ammo = compile preprocessFileLineNumbers "Missions\LOG_Ammo.sqf"; -DES_Vehicle = compile preprocessFileLineNumbers "Missions\DES_Vehicle.sqf"; -DES_Heli = compile preprocessFileLineNumbers "Missions\DES_Heli.sqf"; -DES_Antenna = compile preprocessFileLineNumbers "Missions\DES_Antenna.sqf"; -CON_Outpost = compile preprocessFileLineNumbers "Missions\CON_Outpost.sqf"; -AS_Official = compile preprocessFileLineNumbers "Missions\AS_Official.sqf"; -AS_Traitor = compile preprocessFileLineNumbers "Missions\AS_Traitor.sqf"; -REP_Antenna = compile preprocessFileLineNumbers "Missions\REP_Antenna.sqf"; - -call compile preprocessFileLineNumbers "statSave\saveFuncs.sqf"; -call jn_fnc_logistics_init; -boxX call jn_fnc_arsenal_init; - -diag_log format ["%1: [Antistasi] | INFO | InitFuncs Completed.",servertime]; diff --git a/A3-Antistasi/initGarrisons.sqf b/A3-Antistasi/initGarrisons.sqf deleted file mode 100755 index c7b60779e1..0000000000 --- a/A3-Antistasi/initGarrisons.sqf +++ /dev/null @@ -1,246 +0,0 @@ -diag_log format ["%1: [Antistasi] | INFO | InitGarrisons Started.",servertime]; - -_mrkNATO = []; -_mrkCSAT = []; -_controlsNATO = []; -_controlsCSAT = []; -if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting Control Marks for Worldname: %2 .",servertime,worldName]; -}; -if (gameMode == 1) then - { - _controlsNATO = controlsX; - if (worldName == "Tanoa") then - { - _mrkCSAT = ["airport_1","seaport_5","outpost_10","control_20"]; - _controlsNATO = _controlsNATO - ["control_20"]; - _controlsCSAT = ["control_20"]; - } - else - { - if (worldName == "Altis") then - { - _mrkCSAT = ["airport_2","seaport_4","outpost_5","control_52","control_33"]; - _controlsNATO = _controlsNATO - ["control_52","control_33"]; - _controlsCSAT = ["control_52","control_33"]; - } - else - { - if (worldName == "chernarus_summer") then - { - _mrkCSAT = ["outpost_21"]; - }; - }; - }; - _mrkNATO = markersX - _mrkCSAT - ["Synd_HQ"]; - if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | _mrkCSAT: %2.",servertime,_mrkCSAT]; - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | _mrkNATO: %2.",servertime,_mrkNATO]; - }; - } -else - { - if (gameMode == 4) then - { - _mrkCSAT = markersX - ["Synd_HQ"]; - _controlsCSAT = controlsX; - } - else - { - _mrkNATO = markersX - ["Synd_HQ"]; - _controlsNATO = controlsX; - }; - }; -{sidesX setVariable [_x,Occupants,true]} forEach _controlsNATO; -{sidesX setVariable [_x,Invaders,true]} forEach _controlsCSAT; -if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Airbase stuff.",servertime]; -}; -{ -_pos = getMarkerPos _x; -_dmrk = createMarker [format ["Dum%1",_x], _pos]; -_dmrk setMarkerShape "ICON"; -_garrNum = [_x] call A3A_fnc_garrisonSize; -_garrNum = _garrNum / 8; -_garrison = []; -killZones setVariable [_x,[],true]; -if (_x in _mrkCSAT) then - { - _dmrk setMarkerType flagCSATmrk; - _dmrk setMarkerText format ["%1 Airbase",nameInvaders]; - _dmrk setMarkerColor colorInvaders; - for "_i" from 1 to _garrNum do - { - _garrison append (selectRandom groupsCSATSquad); - }; - garrison setVariable [_x,_garrison,true]; - sidesX setVariable [_x,Invaders,true]; - } -else - { - _dmrk setMarkerType flagNATOmrk; - _dmrk setMarkerText format ["%1 Airbase",nameOccupants]; - _dmrk setMarkerColor colorOccupants; - for "_i" from 1 to _garrNum do - { - _garrison append (selectRandom groupsNATOSquad); - }; - garrison setVariable [_x,_garrison,true]; - sidesX setVariable [_x,Occupants,true]; - }; -_nul = [_x] call A3A_fnc_createControls; -server setVariable [_x,0,true];//dateX en fomrato dateToNumber en la que estarĆ”n idle -} forEach airportsX; -if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Resource stuff.",servertime]; -}; -{ -_pos = getMarkerPos _x; -_dmrk = createMarker [format ["Dum%1",_x], _pos]; -_dmrk setMarkerShape "ICON"; -_garrNum = [_x] call A3A_fnc_garrisonSize; -_garrNum = _garrNum / 8; -_garrison = []; -_dmrk setMarkerType "loc_rock"; -_dmrk setMarkerText "Resources"; -for "_i" from 1 to _garrNum do - { - _garrison append (selectRandom groupsFIASquad); - }; -if (_x in _mrkCSAT) then - { - _dmrk setMarkerColor colorInvaders; - sidesX setVariable [_x,Invaders,true]; - } -else - { - _dmrk setMarkerColor colorOccupants; - sidesX setVariable [_x,Occupants,true]; - }; -garrison setVariable [_x,_garrison,true]; -_nul = [_x] call A3A_fnc_createControls; -} forEach resourcesX; -if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Factory stuff.",servertime]; -}; -{ -_pos = getMarkerPos _x; -_dmrk = createMarker [format ["Dum%1",_x], _pos]; -_dmrk setMarkerShape "ICON"; -_garrNum = [_x] call A3A_fnc_garrisonSize; -_garrNum = _garrNum / 8; -_garrison = []; -_dmrk setMarkerType "u_installation"; -_dmrk setMarkerText "Factory"; -for "_i" from 1 to _garrNum do - { - _garrison append (selectRandom groupsFIASquad); - }; -if (_x in _mrkCSAT) then - { - _dmrk setMarkerColor colorInvaders; - sidesX setVariable [_x,Invaders,true]; - } -else - { - _dmrk setMarkerColor colorOccupants; - sidesX setVariable [_x,Occupants,true]; - }; -garrison setVariable [_x,_garrison,true]; -_nul = [_x] call A3A_fnc_createControls; -} forEach factories; -if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Outpost stuff.",servertime]; -}; -{ -_pos = getMarkerPos _x; -_dmrk = createMarker [format ["Dum%1",_x], _pos]; -_dmrk setMarkerShape "ICON"; -_garrNum = [_x] call A3A_fnc_garrisonSize; -_garrNum = _garrNum / 8; -if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Outpost: %2 - Size: %3.",servertime,_x,_garrNum]; -}; -_garrison = []; -killZones setVariable [_x,[],true]; -_dmrk setMarkerType "loc_bunker"; -if !(_x in _mrkCSAT) then - { - _dmrk setMarkerColor colorOccupants; - _dmrk setMarkerText format ["%1 Outpost",nameOccupants]; - for "_i" from 1 to _garrNum do - { - if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Not in CSAT | Creating FIASquad: %2 in outpost: %3",servertime,_i,_X]; - }; - _garrison append (selectRandom groupsFIASquad); - }; - sidesX setVariable [_x,Occupants,true]; - } -else - { - _dmrk setMarkerText format ["%1 Outpost",nameInvaders]; - _dmrk setMarkerColor colorInvaders; - if (gameMode == 4) then - { - for "_i" from 1 to _garrNum do - { - if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | CSAT & Gamemode 4 | Creating FIASquad: %2 in outpost: %3",servertime,_i,_X]; - }; - _garrison append (selectRandom groupsFIASquad); - }; - } - else - { - for "_i" from 1 to _garrNum do - { - if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | CSAT & Not Gamemode 4 | Creating FIASquad: %2 in outpost: %3",servertime,_i,_X]; - }; - _garrison append (selectRandom groupsCSATSquad); - }; - }; - sidesX setVariable [_x,Invaders,true]; - }; -garrison setVariable [_x,_garrison,true]; -server setVariable [_x,0,true]; -_nul = [_x] call A3A_fnc_createControls; -} forEach outposts; -if (debug) then { - diag_log format ["%1: [Antistasi] | DEBUG | initGarrisons.sqf | Setting up Seaport stuff.",servertime]; -}; -{ -_pos = getMarkerPos _x; -_dmrk = createMarker [format ["Dum%1",_x], _pos]; -_dmrk setMarkerShape "ICON"; -_garrNum = [_x] call A3A_fnc_garrisonSize; -_garrNum = _garrNum / 8; -_garrison = []; -_dmrk setMarkerType "b_naval"; -_dmrk setMarkerText "Sea Port"; -if (_x in _mrkCSAT) then - { - _dmrk setMarkerColor colorInvaders; - for "_i" from 1 to _garrNum do - { - _garrison append (selectRandom groupsCSATSquad); - }; - sidesX setVariable [_x,Invaders,true]; - } -else - { - _dmrk setMarkerColor colorOccupants; - for "_i" from 1 to _garrNum do - { - _garrison append (selectRandom groupsNATOSquad); - }; - sidesX setVariable [_x,Occupants,true]; - }; -garrison setVariable [_x,_garrison,true]; -_nul = [_x] call A3A_fnc_createControls; -} forEach seaports; - -sidesX setVariable ["NATO_carrier",Occupants,true]; -sidesX setVariable ["CSAT_carrier",Invaders,true]; -diag_log format ["%1: [Antistasi] | INFO | InitGarrison Completed.",servertime]; diff --git a/A3-Antistasi/initGetMissionPath.sqf b/A3-Antistasi/initGetMissionPath.sqf deleted file mode 100755 index 2e4480d4a9..0000000000 --- a/A3-Antistasi/initGetMissionPath.sqf +++ /dev/null @@ -1,4 +0,0 @@ -diag_log format ["%1: [Antistasi] | INFO | initGetMissionPath Started.",servertime]; -missionPath = [(str missionConfigFile), 0, -15] call BIS_fnc_trimString; -publicVariable missionPath; -diag_log format ["%1: [Antistasi] | INFO | initGetMissionPath Completed.",servertime]; diff --git a/A3-Antistasi/initPlayerLocal.sqf b/A3-Antistasi/initPlayerLocal.sqf old mode 100644 new mode 100755 index b76371b9c0..8c79a66d7b --- a/A3-Antistasi/initPlayerLocal.sqf +++ b/A3-Antistasi/initPlayerLocal.sqf @@ -1,683 +1 @@ -#include "Garage\defineCommon.inc" -diag_log format ["%1: [Antistasi] | INFO | initPlayerLocal Started.",servertime]; -if (hasInterface) then - { - waitUntil {!isNull player}; - waitUntil {player == player}; - player removeweaponGlobal "itemmap"; - player removeweaponGlobal "itemgps"; - //Disable player saving until they're fully ready, and have chosen whether to load their save. - player setVariable ["canSave", false, true]; - }; -if (isMultiplayer) then - { - if (!isServer) then - { - call compile preprocessFileLineNumbers "initFuncs.sqf"; - call compile preprocessFileLineNumbers "initVar.sqf"; - waitUntil {!isNil "initVar"}; - diag_log format ["%1: [Antistasi] | INFO | MP Client | Version : %2.",servertime, antistasiVersion]; - } - else - { - waitUntil {sleep 0.5;(!isNil "serverInitDone")}; - }; - [] execVM "briefing.sqf"; - }; -if (!hasInterface) exitWith - { - if (worldName == "Tanoa") then {call compile preprocessFileLineNumbers "roadsDB.sqf"}; - if (worldName == "Altis") then {call compile preprocessFileLineNumbers "roadsDBAltis.sqf"}; - if (worldName == "chernarus_summer") then {call compile preprocessFileLineNumbers "roadsDBcherna.sqf"}; - if (worldName == "enoch") then {call compile preprocessFileLineNumbers "roadsDBLivonia.sqf"}; - if (worldName == "Malden") then {call compile preprocessFileLineNumbers "roadsDBMalden.sqf"}; -[clientOwner] remoteExec ["A3A_fnc_addHC",2]; - }; -_isJip = _this select 1; -if (isMultiplayer) then - { - if (side player == teamPlayer) then {player setVariable ["eligible",true,true]}; - musicON = false; - //waitUntil {scriptdone _introshot}; - disableUserInput true; - cutText ["Waiting for Players and Server Init","BLACK",0]; - diag_log format ["%1: [Antistasi] | INFO | MP Client | Waiting for Server...",servertime]; - waitUntil {(!isNil "serverInitDone")}; - cutText ["Starting Mission","BLACK IN",0]; - diag_log format ["%1: [Antistasi] | INFO | MP Client | Server loaded..",servertime]; - diag_log format ["%1: [Antistasi] | INFO | MP Client | JIP?: %2",servertime,_isJip]; - if (hasTFAR) then {[] execVM "orgPlayers\radioJam.sqf"};//reestablecer cuando controle las variables - tkPunish = if ("tkPunish" call BIS_fnc_getParamValue == 1) then {true} else {false}; - if ((side player == teamPlayer) and tkPunish) then - { - private _firedHandlerTk = - { - _typeX = _this select 1; - if ((_typeX == "Put") or (_typeX == "Throw")) then - { - private _shieldDistance = 100; - if (player distance petros < _shieldDistance) then - { - hint format ["You cannot throw grenades or place explosives within %1m of base.", _shieldDistance]; - deleteVehicle (_this select 6); - if (_typeX == "Put") then - { - if (player distance petros < 10) then {[player, 20, 0.34] remoteExec ["A3A_fnc_punishment",player];}; - }; - }; - }; - }; - player addEventHandler ["Fired", _firedHandlerTk]; - if (hasACE) then - { - ["ace_firedPlayer", _firedHandlerTk ] call CBA_fnc_addEventHandler; - }; - }; - if (!isNil "placementDone") then {_isJip = true};//workaround for BIS fail on JIP detection - } -else - { - theBoss = player; - groupX = group player; - if (worldName == "Tanoa") then {groupX setGroupId ["Pulu","GroupColor4"]} else {groupX setGroupId ["Stavros","GroupColor4"]}; - player setIdentity "protagonista"; - player setUnitRank "COLONEL"; - player hcSetGroup [group player]; - waitUntil {/*(scriptdone _introshot) and */(!isNil "serverInitDone")}; - //_nul = addMissionEventHandler ["Loaded", {_nul = [] execVM "statistics.sqf";_nul = [] execVM "reinitY.sqf";}]; - }; -[] execVM "CREATE\ambientCivs.sqf"; -private ["_colourTeamPlayer", "_colorInvaders"]; -_colourTeamPlayer = teamPlayer call BIS_fnc_sideColor; -_colorInvaders = Invaders call BIS_fnc_sideColor; -_positionX = if (side player == side (group petros)) then {position petros} else {getMarkerPos "respawn_west"}; -{ -_x set [3, 0.33] -} forEach [_colourTeamPlayer, _colorInvaders]; -_introShot = [ - _positionX, // Target position - format ["%1",worldName], // SITREP text - 50, // altitude - 50, // radius - 90, // degrees viewing angle - 0, // clockwise movement - [ - ["\a3\ui_f\data\map\markers\nato\o_inf.paa", _colourTeamPlayer, markerPos "insertMrk", 1, 1, 0, "Insertion Point", 0], - ["\a3\ui_f\data\map\markers\nato\o_inf.paa", _colorInvaders, markerPos "towerBaseMrk", 1, 1, 0, "Radio Towers", 0] - ] - ] spawn BIS_fnc_establishingShot; - -//Trigger credits loading. -[] spawn { - waitUntil {!isNil "BIS_fnc_establishingShot_playing" && {BIS_fnc_establishingShot_playing}}; - private _credits = [] execVM "credits.sqf"; -}; - -//Initialise membershipEnabled so we can do isMember checks. -membershipEnabled = if (isMultiplayer && "membership" call BIS_fnc_getParamValue == 1) then {true} else {false}; - -disableUserInput false; -player addWeaponGlobal "itemmap"; -if !(hasIFA) then {player addWeaponGlobal "itemgps"}; -player setVariable ["spawner",true,true]; -if (isMultiplayer) then - { - if ("pMarkers" call BIS_fnc_getParamValue == 1) then {[] execVM "playerMarkers.sqf"}; - }; -if (!hasACE) then - { - [player] execVM "Revive\initRevive.sqf"; - tags = [] execVM "tags.sqf"; - } -else - { - if (hasACEhearing) then {player addItem "ACE_EarPlugs"}; - if (!hasACEMedical) then {[player] execVM "Revive\initRevive.sqf"}; - }; - -if (player getVariable ["pvp",false]) exitWith - { - lastVehicleSpawned = objNull; - pvpEnabled = if ("allowPvP" call BIS_fnc_getParamValue == 1) then {true} else {false}; - if ((!_isJIP) or !pvpEnabled) then - { - ["noPvP",false,1,false,false] call BIS_fnc_endMission; - diag_log format ["%1: [Antistasi] | INFO | PvP player kicked because he is not jipping or PvP slots are disabled.",servertime]; - } - else - { - if (not([player] call A3A_fnc_isMember)) then - { - ["noPvP",false,1,false,false] call BIS_fnc_endMission; - diag_log format ["%1: [Antistasi] | INFO | PvP player kicked because he is not member.",servertime]; - } - else - { - if ({(side group _x != teamPlayer)} count playableUnits > {(side group _x == teamPlayer)} count playableUnits) then - { - ["noPvP",false,1,false,false] call BIS_fnc_endMission; - diag_log format ["%1: [Antistasi] | INFO | PvP player kicked because PvP players number is equal to non PvP.",servertime]; - } - else - { - [player] remoteExec ["A3A_fnc_playerHasBeenPvPCheck",2]; - diag_log format ["%1: [Antistasi] | INFO | PvP player logged in, doing server side checks if the player has been rebel recently.",servertime]; - }; - }; - }; - [player] call A3A_fnc_dress; - if (hasACE) then {[] call A3A_fnc_ACEpvpReDress}; - respawnTeamPlayer setMarkerAlphaLocal 0; - - player addEventHandler ["GetInMan", {_this call A3A_fnc_ejectPvPPlayerIfInvalidVehicle}]; - player addEventHandler ["SeatSwitchedMan", {[_this select 0, assignedVehicleRole (_this select 0) select 0, _this select 2] call A3A_fnc_ejectPvPPlayerIfInvalidVehicle}]; - player addEventHandler ["InventoryOpened", - { - _override = false; - _boxX = typeOf (_this select 1); - if ((_boxX == NATOAmmoBox) or (_boxX == CSATAmmoBox)) then {_override = true}; - _override - }]; - _nameX = if (side player == Occupants) then {nameOccupants} else {nameInvaders}; - waituntil {!isnull (finddisplay 46)}; - gameMenu = (findDisplay 46) displayAddEventHandler ["KeyDown", - { - _handled = FALSE; - if (_this select 1 == 207) then - { - if (!hasACEhearing) then - { - if (soundVolume <= 0.5) then - { - 0.5 fadeSound 1; - hintSilent "You've taken out your ear plugs."; - } - else - { - 0.5 fadeSound 0.1; - hintSilent "You've inserted your ear plugs."; - }; - }; - } - else - { - if (_this select 1 == 21) then - { - closedialog 0; - _nul = createDialog "NATO_player"; - }; - }; - _handled - }]; - }; - -player setVariable ["score",0,true]; -player setVariable ["owner",player,true]; -player setVariable ["punish",0,true]; -player setVariable ["moneyX",100,true]; -player setUnitRank "PRIVATE"; -player setVariable ["rankX",rank player,true]; - -stragglers = creategroup teamPlayer; -(group player) enableAttack false; -player setUnitTrait ["camouflageCoef",0.8]; -player setUnitTrait ["audibleCoef",0.8]; - -//Give the player the base loadout. -[player] call A3A_fnc_dress; -//Add a maplight if we're running ACE, because it can be really dark. -if (hasACE) then { - player addItem "ACE_Flashlight_XL50"; -}; -player setvariable ["compromised",0]; -player addEventHandler -[ - "FiredMan", - { - _player = _this select 0; - if (captive _player) then - { - //if ({((side _x== Invaders) or (side _x== Occupants)) and (_x knowsAbout player > 1.4)} count allUnits > 0) then - if ({if (((side _x == Occupants) or (side _x == Invaders)) and (_x distance player < 300)) exitWith {1}} count allUnits > 0) then - { - [_player,false] remoteExec ["setCaptive",0,_player]; - _player setCaptive false; - } - else - { - _city = [citiesX,_player] call BIS_fnc_nearestPosition; - _size = [_city] call A3A_fnc_sizeMarker; - _dataX = server getVariable _city; - if (random 100 < _dataX select 2) then - { - if (_player distance getMarkerPos _city < _size * 1.5) then - { - [_player,false] remoteExec ["setCaptive",0,_player]; - _player setCaptive false; - if (vehicle _player != _player) then - { - {if (isPlayer _x) then {[_x,false] remoteExec ["setCaptive",0,_x]; _x setCaptive false}} forEach ((assignedCargo (vehicle _player)) + (crew (vehicle _player)) - [player]); - }; - }; - }; - }; - } - } -]; -player addEventHandler -[ - "HandleDamage", - { - private _victim = param [0]; - private _damage = param [2]; - private _instigator = param [6]; - if(!isNull _instigator && isPlayer _instigator && _victim != _instigator && side _instigator == teamPlayer && _damage > 0.9) then - { - [_instigator, 20, 0.21] remoteExec ["A3A_fnc_punishment",_instigator]; - hint format["%1 hurt you!",_instigator]; - [format [ - "%1: [Antistasi] | INFO | %1 injured by %2 (UID: %3) %4m from HQ", - name _victim, - name _instigator, - getPlayerUID _instigator, - _victim distance2D posHQ - ]] remoteExec ["diag_log", 2]; - }; - } -]; -player addEventHandler -[ - "InventoryOpened", - { - private ["_playerX","_containerX","_typeX"]; - _control = false; - _playerX = _this select 0; - if (captive _playerX) then - { - _containerX = _this select 1; - _typeX = typeOf _containerX; - if (((_containerX isKindOf "Man") and (!alive _containerX)) or (_typeX == NATOAmmoBox) or (_typeX == CSATAmmoBox)) then - { - if ({if (((side _x== Invaders) or (side _x== Occupants)) and (_x knowsAbout _playerX > 1.4)) exitWith {1}} count allUnits > 0) then - { - [_playerX,false] remoteExec ["setCaptive",0,_playerX]; - _playerX setCaptive false; - } - else - { - _city = [citiesX,_playerX] call BIS_fnc_nearestPosition; - _size = [_city] call A3A_fnc_sizeMarker; - _dataX = server getVariable _city; - if (random 100 < _dataX select 2) then - { - if (_playerX distance getMarkerPos _city < _size * 1.5) then - { - [_playerX,false] remoteExec ["setCaptive",0,_playerX]; - _playerX setCaptive false; - }; - }; - }; - }; - }; - _control - } -]; -/* -player addEventHandler ["InventoryClosed", - { - _control = false; - _uniform = uniform player; - _typeSoldier = getText (configfile >> "CfgWeapons" >> _uniform >> "ItemInfo" >> "uniformClass"); - _sideType = getNumber (configfile >> "CfgVehicles" >> _typeSoldier >> "side"); - if ((_sideType == 1) or (_sideType == 0) and (_uniform != "")) then - { - if !(player getVariable ["disguised",false]) then - { - hint "You are wearing an enemy uniform, this will make the AI attack you. Beware!"; - player setVariable ["disguised",true]; - player addRating (-1*(2001 + rating player)); - }; - } - else - { - if (player getVariable ["disguised",false]) then - { - hint "You removed your enemy uniform"; - player addRating (rating player * -1); - }; - }; - _control - }]; -*/ -player addEventHandler ["HandleHeal", - { - _player = _this select 0; - if (captive _player) then - { - if ({((side _x== Invaders) or (side _x== Occupants)) and (_x knowsAbout player > 1.4)} count allUnits > 0) then - { - [_player,false] remoteExec ["setCaptive",0,_player]; - _player setCaptive false; - } - else - { - _city = [citiesX,_player] call BIS_fnc_nearestPosition; - _size = [_city] call A3A_fnc_sizeMarker; - _dataX = server getVariable _city; - if (random 100 < _dataX select 2) then - { - if (_player distance getMarkerPos _city < _size * 1.5) then - { - [_player,false] remoteExec ["setCaptive",0,_player]; - _player setCaptive false; - }; - }; - }; - } - } - ]; -player addEventHandler ["WeaponAssembled", - { - private ["_veh"]; - _veh = _this select 1; - if (_veh isKindOf "StaticWeapon") then - { - if (not(_veh in staticsToSave)) then - { - staticsToSave pushBack _veh; - publicVariable "staticsToSave"; - [_veh] call A3A_fnc_AIVEHinit; - }; - _markersX = markersX select {sidesX getVariable [_x,sideUnknown] == teamPlayer}; - _pos = position _veh; - if (_markersX findIf {_pos inArea _x} != -1) then {hint "Static weapon has been deployed for use in a nearby zone, and will be used by garrison militia if you leave it here the next time the zone spawns"}; - } - else - { - _veh addEventHandler ["Killed",{[_this select 0] remoteExec ["A3A_fnc_postmortem",2]}]; - }; - }]; -player addEventHandler ["WeaponDisassembled", - { - _bag1 = _this select 1; - _bag2 = _this select 2; - //_bag1 = objectParent (_this select 1); - //_bag2 = objectParent (_this select 2); - [_bag1] call A3A_fnc_AIVEHinit; - [_bag2] call A3A_fnc_AIVEHinit; - } - ]; - -player addEventHandler ["GetInMan", - { - private ["_unit","_veh"]; - _unit = _this select 0; - _veh = _this select 2; - _exit = false; - if (isMultiplayer) then - { - if !([player] call A3A_fnc_isMember) then - { - _owner = _veh getVariable "ownerX"; - if (!isNil "_owner") then - { - if (_owner isEqualType "") then - { - if ({getPlayerUID _x == _owner} count (units group player) == 0) then - { - hint "You cannot board other player vehicle if you are not in the same group"; - moveOut _unit; - _exit = true; - }; - }; - }; - }; - }; - if (!_exit) then - { - if (((typeOf _veh) in arrayCivVeh) or ((typeOf _veh) in civBoats)) then - { - if (!(_veh in reportedVehs)) then - { - [] spawn A3A_fnc_undercover; - }; - }; - }; - } - ]; - -if (isMultiplayer) then - { - ["InitializePlayer", [player]] call BIS_fnc_dynamicGroups;//Exec on client - - if (membershipEnabled) then - { - if !([player] call A3A_fnc_isMember) then - { - if (isServer) then - { - membersX pushBack (getPlayerUID player); - publicVariable "membersX"; - }; - _nonMembers = {(side group _x == teamPlayer) and !([_x] call A3A_fnc_isMember)} count playableUnits; - if (_nonMembers >= (playableSlotsNumber teamPlayer) - bookedSlots) then {["memberSlots",false,1,false,false] call BIS_fnc_endMission}; - if (memberDistance != 16000) then {[] execVM "orgPlayers\nonMemberDistance.sqf"}; - }; - }; - }; - -waitUntil {scriptdone _introshot}; -if (_isJip) then - { - _nul = [] execVM "modBlacklist.sqf"; - player setVariable ["punish",0,true]; - waitUntil {!isNil "posHQ"}; - player setPos posHQ; - [true] execVM "reinitY.sqf"; - if (not([player] call A3A_fnc_isMember)) then - { - if ((serverCommandAvailable "#logout") or (isServer)) then - { - membersX pushBack (getPlayerUID player); - publicVariable "membersX"; - hint "You are not in the member's list, but as you are Server Admin, you have been added up. Welcome!" - } - else - { - hint "Welcome Guest\n\nYou have joined this server as guest"; - //if ((count playableUnits == maxPlayers) and (({[_x] call A3A_fnc_isMember} count playableUnits) < count membersX) and (serverName in officialServers)) then {["serverFull",false,1,false,false] call BIS_fnc_endMission}; - }; - } - else - { - hint format ["Welcome back %1", name player]; - if ((isNil "theBoss" || {isNull theBoss}) && {{([_x] call A3A_fnc_isMember) and (side (group _x) == teamPlayer)} count playableUnits == 1}) then - { - [player] call A3A_fnc_theBossInit; - }; - }; - if ((isNil "theBoss" || {isNull theBoss}) && {[player] call A3A_fnc_isMember}) then { - { - [] remoteExec ["A3A_fnc_assigntheBoss",2]; - }; - }; - waitUntil {!(isNil "missionsX")}; - if (count missionsX > 0) then - { - { - _tsk = _x select 0; - if ([_tsk] call BIS_fnc_taskExists) then - { - _state = _x select 1; - if ((_tsk call BIS_fnc_taskState) != _state) then - { - /* - _tskVar = _tsk call BIS_fnc_taskVar; - _tskVar setTaskState _state; - */ - [_tsk,_state] call bis_fnc_taskSetState; - }; - }; - } forEach missionsX; - }; - if (isNil "placementDone") then - { - waitUntil {!isNil "theBoss"}; - if (player == theBoss) then - { - waitUntil {!(isNil"loadLastSave")}; - if !(loadLastSave) then - { - _nul = [] spawn A3A_fnc_placementSelection; - player setVariable ['canSave', true, true]; - }; - }; - } - else - { - _nul = [] execVM "Dialogs\firstLoad.sqf"; - }; - diag_log format ["%1: [Antistasi] | INFO | MP Client | JIP Client Loaded.",servertime]; - player setPos (getMarkerPos respawnTeamPlayer); - } -else - { - if (isNil "placementDone") then - { - waitUntil {!isNil "theBoss"}; - if (player == theBoss) then - { - player setVariable ["score", 25,true]; - if (isMultiplayer) then - { - HC_commanderX synchronizeObjectsAdd [player]; - player synchronizeObjectsAdd [HC_commanderX]; - //_nul = [] execVM "Dialogs\initMenu.sqf"; - if !(loadLastSave) then - { - _nul = [] spawn A3A_fnc_placementSelection; - //This shouldn't really be here, but it's triggered on every other path through the code. - //This big if statement needs tidying, really. - player setVariable ['canSave', true, true]; - } - else - { - _nul = [true] execVM "Dialogs\firstLoad.sqf"; - }; - diag_log format ["%1: [Antistasi] | INFO | MP Client | Client load finished.",servertime]; - } - else - { - membersX = []; - player setUnitTrait ["medic",true]; - player setUnitTrait ["engineer",true]; - _nul = [] execVM "Dialogs\firstLoad.sqf"; - }; - } - else - { - player setVariable ["score", 0,true]; - _nul = [true] execVM "Dialogs\firstLoad.sqf"; - player setPos (getMarkerPos respawnTeamPlayer); - }; - } - else - { - if !(isServer) then - { - _nul = [] execVM "Dialogs\firstLoad.sqf"; - player setPos (getMarkerPos respawnTeamPlayer); - }; - }; - }; - -_textX = []; - -if ((hasTFAR) or (hasACRE)) then - { - _textX = ["TFAR or ACRE Detected\n\nAntistasi detects TFAR or ACRE in the server config.\nAll players will start with addon default radios.\nDefault revive system will shut down radios while players are inconscious.\n\n"]; - }; -if (hasACE) then - { - _textX = _textX + ["ACE 3 Detected\n\nAntistasi detects ACE modules in the server config.\nACE items added to arsenal and ammoboxes. Default AI control is disabled\nIf ACE Medical is used, default revive system will be disabled.\nIf ACE Hearing is used, default earplugs will be disabled."]; - }; -if (hasRHS) then - { - _textX = _textX + ["RHS Detected\n\nAntistasi detects RHS in the server config.\nDepending on the modules will have the following effects.\n\nAFRF: Replaces CSAT by a mix of russian units\n\nUSAF: Replaces NATO by a mix of US units\n\nGREF: Recruited AI will count with RHS as basic weapons, replaces FIA with Chdk units. Adds some civilian trucks"]; - }; -if (hasFFAA) then - { - _textX = _textX + ["FFAA Detected\n\nAntistasi detects FFAA in the server config.\nFIA Faction will be replaced by Spanish Armed Forces"]; - }; - -if (hasTFAR or hasACE or hasRHS or hasACRE or hasFFAA) then - { - [_textX] spawn - { - sleep 0.5; - _textX = _this select 0; - "Integrated Mods Detected" hintC _textX; - hintC_arr_EH = findDisplay 72 displayAddEventHandler ["unload", { - 0 = _this spawn { - _this select 0 displayRemoveEventHandler ["unload", hintC_arr_EH]; - hintSilent ""; - }; - }]; - }; - }; -waituntil {!isnull (finddisplay 46)}; -gameMenu = (findDisplay 46) displayAddEventHandler ["KeyDown",A3A_fnc_keys]; -//removeAllActions boxX; - -if ((!isServer) and (isMultiplayer)) then {boxX call jn_fnc_arsenal_init}; - -boxX allowDamage false; -boxX addAction ["Transfer Vehicle cargo to Ammobox", "[] call A3A_fnc_empty"]; -boxX addAction ["Move this asset", "moveHQObject.sqf",nil,0,false,true,"","(_this == theBoss)"]; -flagX allowDamage false; -flagX addAction ["Unit Recruitment", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot recruit units while there are enemies near you"} else {nul=[] execVM "Dialogs\unit_recruit.sqf"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)"]; -flagX addAction ["Buy Vehicle", {if ([player,300] call A3A_fnc_enemyNearCheck) then {hint "You cannot buy vehicles while there are enemies near you"} else {nul = createDialog "vehicle_option"}},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)"]; -if (isMultiplayer) then {flagX addAction ["Personal Garage", {nul = [GARAGE_PERSONAL] spawn A3A_fnc_garage},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)"]}; -flagX addAction ["Move this asset", "moveHQObject.sqf",nil,0,false,true,"","(_this == theBoss)"]; - -//Adds a light to the flag -private _flagLight = "#lightpoint" createVehicle (getPos flagX); -_flagLight setLightDayLight true; -_flagLight setLightColor [1, 1, 0.9]; -_flagLight setLightBrightness 0.2; -_flagLight setLightAmbient [1, 1, 0.9]; -_flagLight lightAttachObject [flagX, [0, 0, 4]]; -_flagLight setLightAttenuation [7, 0, 0.5, 0.5]; - -vehicleBox allowDamage false; -vehicleBox addAction ["Heal, Repair and Rearm", "healandrepair.sqf",nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)"]; -vehicleBox addAction ["Move this asset", "moveHQObject.sqf",nil,0,false,true,"","(_this == theBoss)"]; - -fireX allowDamage false; -[fireX, "fireX"] call A3A_fnc_flagaction; - -mapX allowDamage false; -mapX addAction ["Game Options", {hint format ["Antistasi - %2\n\nVersion: %1\n\nDifficulty: %3\nUnlock Weapon Number: %4\nLimited Fast Travel: %5",antistasiVersion,worldName,if (skillMult == 1) then {"Normal"} else {if (skillMult == 0.5) then {"Easy"} else {"Hard"}},minWeaps,if (limitedFT) then {"Yes"} else {"No"}]; nul=CreateDialog "game_options";},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)"]; -mapX addAction ["Map Info", {nul = [] execVM "cityinfo.sqf";},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull]) and (side (group _this) == teamPlayer)"]; -mapX addAction ["Move this asset", "moveHQObject.sqf",nil,0,false,true,"","(_this == theBoss)"]; -if (isMultiplayer) then {mapX addAction ["AI Load Info", "[] remoteExec [""A3A_fnc_AILoadInfo"",2]",nil,0,false,true,"","((_this == theBoss) || (serverCommandAvailable ""#logout""))"]}; -_nul = [player] execVM "OrgPlayers\unitTraits.sqf"; -groupPetros = group petros; -groupPetros setGroupIdGlobal ["Petros","GroupColor4"]; -petros setIdentity "friendlyX"; -petros setName "Petros"; -petros disableAI "MOVE"; -petros disableAI "AUTOTARGET"; -[petros,"mission"] call A3A_fnc_flagaction; - -disableSerialization; -//1 cutRsc ["H8erHUD","PLAIN",0,false]; -_layer = ["statisticsX"] call bis_fnc_rscLayer; -_layer cutRsc ["H8erHUD","PLAIN",0,false]; -[] spawn A3A_fnc_statistics; - -//Disables rabbits and snakes, because they cause the log to be filled with "20:06:39 Ref to nonnetwork object Agent 0xf3b4a0c0" -//Can re-enable them if we find the source of the bug. -enableEnvironment [false, true]; - -diag_log format ["%1: [Antistasi]: initPlayerLocal Completed.",servertime]; +_this call A3A_fnc_initClient; \ No newline at end of file diff --git a/A3-Antistasi/initServer.sqf b/A3-Antistasi/initServer.sqf index a5b0377bba..25995bf09b 100755 --- a/A3-Antistasi/initServer.sqf +++ b/A3-Antistasi/initServer.sqf @@ -1,193 +1,18 @@ -if (!isMultiplayer) exitWith {}; -if (!(isNil "serverInitDone")) exitWith {}; -diag_log format ["%1: [Antistasi] | INFO | Dedicated Server Detected.",servertime]; -diag_log format ["%1: [Antistasi] | INFO | initServer Started.",servertime]; -boxX allowDamage false; -flagX allowDamage false; -vehicleBox allowDamage false; -fireX allowDamage false; -mapX allowDamage false; - -//Load server id -serverID = profileNameSpace getVariable ["ss_ServerID",nil]; -if(isNil "serverID") then - { - serverID = str(round((random(100000)) + random 10000)); - profileNameSpace setVariable ["ss_ServerID",serverID]; - }; -publicVariable "serverID"; -waitUntil {!isNil "serverID"}; - -//Load server config -loadLastSave = if ("loadSave" call BIS_fnc_getParamValue == 1) then {true} else {false}; -gameMode = "gameMode" call BIS_fnc_getParamValue; publicVariable "gameMode"; -autoSave = if ("autoSave" call BIS_fnc_getParamValue == 1) then {true} else {false}; -membershipEnabled = if ("membership" call BIS_fnc_getParamValue == 1) then {true} else {false}; -switchCom = if ("switchComm" call BIS_fnc_getParamValue == 1) then {true} else {false}; -tkPunish = if ("tkPunish" call BIS_fnc_getParamValue == 1) then {true} else {false}; -distanceMission = "mRadius" call BIS_fnc_getParamValue; publicVariable "distanceMission"; -pvpEnabled = if ("allowPvP" call BIS_fnc_getParamValue == 1) then {true} else {false}; -skillMult = "AISkill" call BIS_fnc_getParamValue; publicVariable "skillMult"; -minWeaps = "unlockItem" call BIS_fnc_getParamValue; publicVariable "minWeaps"; -memberOnlyMagLimit = "MemberOnlyMagLimit" call BIS_fnc_getParamValue; publicVariable "memberOnlyMagLimit"; -civTraffic = "civTraffic" call BIS_fnc_getParamValue; publicVariable "civTraffic"; -memberDistance = "memberDistance" call BIS_fnc_getParamValue; publicVariable "memberDistance"; -limitedFT = if ("allowFT" call BIS_fnc_getParamValue == 1) then {true} else {false}; publicVariable "limitedFT"; -napalmEnabled = if ("napalmEnabled" call BIS_fnc_getParamValue == 1) then {true} else {false}; publicVariable "napalmEnabled"; -teamSwitchDelay = "teamSwitchDelay" call BIS_fnc_getParamValue; - -//Load Campaign ID if resuming game -if(loadLastSave) then { - campaignID = profileNameSpace getVariable ["ss_CampaignID",""]; +/* + * The reason for this split, is we can't open dialog boxes during initServer in singleplayer. + * This is an issue if we want to get params data before initialising the server. + + * So if it's singleplayer, we wait for initServer.sqf to finish (and the player to be spawned in), then get params, then load. + */ +if (isNil "logLevel") then {LogLevel = 2}; +if (isMultiplayer) then { + [] call A3A_fnc_initServer; } else { - campaignID = str(round((random(100000)) + random 10000)); - profileNameSpace setVariable ["ss_CampaignID", campaignID]; -}; - -publicVariable "campaignID"; - -_nul = call compile preprocessFileLineNumbers "initVar.sqf"; -initVar = true; publicVariable "initVar"; -savingServer = true; -diag_log format ["%1: [Antistasi] | INFO | MP Version: %2 loaded.",servertime, localize "STR_antistasi_credits_generic_version_text"]; -bookedSlots = floor ((("memberSlots" call BIS_fnc_getParamValue)/100) * (playableSlotsNumber teamPlayer)); publicVariable "bookedSlots"; -_nul = call compile preprocessFileLineNumbers "initFuncs.sqf"; -_nul = call compile preprocessFileLineNumbers "initZones.sqf"; -if (gameMode != 1) then - { - Occupants setFriend [Invaders,1]; - Invaders setFriend [Occupants,1]; - if (gameMode == 3) then {"CSAT_carrier" setMarkerAlpha 0}; - if (gameMode == 4) then {"NATO_carrier" setMarkerAlpha 0}; - }; -[] execVM "initPetros.sqf"; -["Initialize"] call BIS_fnc_dynamicGroups;//Exec on Server -hcArray = []; -//waitUntil {(count playableUnits) > 0}; -//waitUntil {({(isPlayer _x) and (!isNull _x) and (_x == _x)} count allUnits) == (count playableUnits)};//ya estamos todos -_nul = [] execVM "modBlacklist.sqf"; - -{ -private _index = _x call jn_fnc_arsenal_itemType; -[_index,_x,-1] call jn_fnc_arsenal_addItem; -}foreach (unlockeditems + unlockedweapons + unlockedMagazines + unlockedBackpacks); -//["buttonInvToJNA"] call jn_fnc_arsenal; -//waitUntil {!isNil "bis_fnc_preload_init"}; -//waitUntil {!isNil "BIS_fnc_preload_server"}; -_nul = call compile preprocessFileLineNumbers "initGarrisons.sqf"; -if (loadLastSave) then - { - diag_log format ["%1: [Antistasi] | INFO | Persitent Load selected.",servertime]; - ["membersX"] call fn_LoadStat; - if (isNil "membersX") then - { - loadLastSave = false; - diag_log format ["%1: [Antistasi] | ERROR | initServer.sqf | No previous session detected.",servertime]; - }; - }; -publicVariable "loadLastSave"; -if (loadLastSave) then - { - _nul = [] execVM "statSave\loadServer.sqf"; - waitUntil {!isNil"statsLoaded"}; - if (!isNil "as_fnc_getExternalMemberListUIDs") then - { - membersX = []; - {membersX pushBackUnique _x} forEach (call as_fnc_getExternalMemberListUIDs); - publicVariable "membersX"; - }; - if (membershipEnabled and (membersX isEqualTo [])) then - { - [petros,"hint","Membership is enabled but members list is empty. Current players will be added to the member list"] remoteExec ["A3A_fnc_commsMP"]; - diag_log format ["%1: [Antistasi] | INFO | Session load completed.",servertime]; - diag_log format ["%1: [Antistasi] | INFO | Membership enabled however there are no members.",servertime]; - membersX = []; - { - membersX pushBack (getPlayerUID _x); - } forEach playableUnits; - publicVariable "membersX"; - }; - theBoss = objNull; - { - if (([_x] call A3A_fnc_isMember) and (side _x == teamPlayer)) exitWith - { - theBoss = _x; - //_x setRank "CORPORAL"; - //[_x,"CORPORAL"] remoteExec ["A3A_fnc_ranksMP"]; - //_x setVariable ["score", 25,true]; - }; - } forEach playableUnits; - publicVariable "theBoss"; - } -else - { - theBoss = objNull; - membersX = []; - if (!isNil "as_fnc_getExternalMemberListUIDs") then - { - {membersX pushBackUnique _x} forEach (call as_fnc_getExternalMemberListUIDs); - { - if (([_x] call A3A_fnc_isMember) and (side _x == teamPlayer)) exitWith {theBoss = _x}; - } forEach playableUnits; - } - else - { - diag_log format ["%1: [Antistasi] | INFO | New Session Selected.",servertime]; - if (isNil "commanderX") then {commanderX = (playableUnits select 0)}; - if (isNull commanderX) then {commanderX = (playableUnits select 0)}; - theBoss = commanderX; - theBoss setRank "CORPORAL"; - [theBoss,"CORPORAL"] remoteExec ["A3A_fnc_ranksMP"]; - if (membershipEnabled) then {membersX = [getPlayerUID theBoss]} else {membersX = []}; - }; - publicVariable "theBoss"; - publicVariable "membersX"; - [] execVM "Ammunition\boxAAF.sqf"; - }; - -diag_log format ["%1: [Antistasi] | INFO | Accepting Players.",servertime]; -{ -private _index = _x call jn_fnc_arsenal_itemType; -[_index,_x,-1] call jn_fnc_arsenal_addItem; -}foreach (unlockeditems + unlockedweapons + unlockedMagazines + unlockedBackpacks); - -diag_log format ["%1: [Antistasi] | INFO | Arsenal unlock finished.",servertime]; - -[[petros,"hint","Server load finished"],"A3A_fnc_commsMP"] call BIS_fnc_MP; - -//HandleDisconnect doesn't get 'owner' param, so we can't use it to handle headless client disconnects. -addMissionEventHandler ["HandleDisconnect",{_this call A3A_fnc_onPlayerDisconnect;false}]; -//PlayerDisconnected doesn't get access to the unit, so we shouldn't use it to handle saving. -addMissionEventHandler ["PlayerDisconnected",{_this call A3A_fnc_onHeadlessClientDisconnect;false}]; - -addMissionEventHandler ["BuildingChanged", { - params ["_oldBuilding", "_newBuilding", "_isRuin"]; - if (_isRuin) then { - _oldBuilding setVariable ["ruins", _newBuilding]; - _newBuilding setVariable ["building", _oldBuilding]; - if !(_oldBuilding in antennas) then { - destroyedBuildings pushBack (getPosATL _oldBuilding); - }; + [] spawn { + waitUntil {!isNull player && player == player && !isNull (finddisplay 46)}; + [2, "Opening Singleplayer Parameter Dialog", "initServer.sqf"] call A3A_fnc_log; + [] call A3A_fnc_createDialog_setParams; + [2, "Proceeding to initServer", "initServer.sqf"] call A3A_fnc_log; + [] call A3A_fnc_initServer; }; -}]; - -serverInitDone = true; publicVariable "serverInitDone"; -diag_log format ["%1: [Antistasi] | INFO | Marking serverInitDone : %2.",servertime, serverInitDone]; - -waitUntil {sleep 1;!(isNil "placementDone")}; -distanceXs = [] spawn A3A_fnc_distances4; -resourcecheck = [] execVM "resourcecheck.sqf"; -[] execVM "Scripts\fn_advancedTowingInit.sqf"; -savingServer = false; - -[] spawn A3A_fnc_spawnDebuggingLoop; - -//Enable performance logging -[] spawn { - while {true} do - { - [] call A3A_fnc_logPerformance; - sleep 30; - }; -}; -diag_log format ["%1: [Antistasi] | INFO | initServer Completed.",servertime]; +}; \ No newline at end of file diff --git a/A3-Antistasi/initVar.sqf b/A3-Antistasi/initVar.sqf deleted file mode 100644 index d280f09b90..0000000000 --- a/A3-Antistasi/initVar.sqf +++ /dev/null @@ -1,1162 +0,0 @@ -//Original Author: Barbolani -//Edited and updated by the Antstasi Community Development Team -diag_log format ["%1: [Antistasi] | INFO | initVar Started.",servertime]; -antistasiVersion = localize "STR_antistasi_credits_generic_version_text"; - -//////////////////////////////////// -// INITIAL SETTING AND VARIABLES /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Setting Initial Variables",servertime]; -debug = false; //debug variable, not useful for everything.. -diagOn = false; //Turn on Diag_log messaging (unused - PBP) -cleantime = 3600; //time to delete dead bodies, vehicles etc.. -distanceSPWN = 1000; //initial spawn distance. Less than 1Km makes parked vehicles spawn in your nose while you approach. -distanceSPWN1 = 1300; // -distanceSPWN2 = 500; // -musicON = false; //Extra BGM -if (isServer and isDedicated) then {civPerc = 70;} else {civPerc = 35}; // -autoHeal = false; // -recruitCooldown = 0; // -savingClient = false; // -incomeRep = false; // -maxUnits = 140; // - -//////////////////////////////////// -// BEGIN SIDES AND COLORS /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Generating Sides.",servertime]; -teamPlayer = side group petros; -if (teamPlayer == independent) then - { - Occupants = west; - colourTeamPlayer = "colorGUER"; - colorOccupants = "colorBLUFOR"; - respawnTeamPlayer = "respawn_guerrila"; - respawnOccupants = "respawn_west" - } -else - { - Occupants = independent; - colourTeamPlayer = "colorBLUFOR"; - colorOccupants = "colorGUER"; - respawnTeamPlayer = "respawn_west"; - respawnOccupants = "respawn_guerrila"; - }; -posHQ = getMarkerPos respawnTeamPlayer; -Invaders = east; -colorInvaders = "colorOPFOR"; - -//Declaring Items Arrays -diag_log format ["%1: [Antistasi] | INFO | initVar | Declaring Empty Arrays",servertime]; -allMagazines = []; -arifles = []; -srifles = []; -mguns = []; -hguns = []; -mlaunchers = []; -rlaunchers = []; -attachmentBipod = []; -attachmentMuzzle = []; -attachmentPointer = []; -attachmentOptics = []; -NVGoggles = []; -smokeX = []; -chemX = []; -opticsAAF = []; -flashLights = []; -pointers = []; -civUniforms = []; -helmets = []; -armoredHelmets = []; -vests = []; -armoredVests = []; - -uniformsSDK = []; -banditUniforms = []; -itemsAAF = []; -unlockedWeapons = []; -unlockedRifles = []; -unlockedMagazines = []; -unlockedRifles = []; -unlockedItems = []; -unlockedBackpacks = []; -unlockedOptics = []; -unlockedAT = []; -unlockedAA = []; -unlockedMG = []; -unlockedGL = []; -unlockedSN = []; -ammunitionNATO = []; -weaponsNato = []; -ammunitionCSAT = []; -weaponsCSAT = []; - -//////////////////////////////////// -// BEGIN MOD DETECTION /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Starting Mod Detection",servertime]; -//Faction MODs -hasRHS = false; -activeAFRF = false; -activeUSAF = false; -activeGREF = false; -hasFFAA = false; -hasIFA = false; -has3CB = false; -//Systems Mods -hasACE = false; -hasACEHearing = false; -hasACEMedical = false; -hasADVCPR = false; -hasADVSplint = false; -//Radio Mods -hasACRE = false; -hasTFAR = false; - -//Radio Detection -hasTFAR = isClass (configFile >> "CfgPatches" >> "task_force_radio"); -hasACRE = isClass (configFile >> "cfgPatches" >> "acre_main"); -haveRadio = hasTFAR || hasACRE; -//ACE Detection -hasACE = (!isNil "ace_common_fnc_isModLoaded"); -hasACEHearing = isClass (configFile >> "CfgSounds" >> "ACE_EarRinging_Weak"); -hasACEMedical = isClass (configFile >> "CfgSounds" >> "ACE_heartbeat_fast_3"); -hasADVCPR = isClass (configFile >> "CfgPatches" >> "adv_aceCPR"); -hasADVSplint = isClass (configFile >> "CfgPatches" >> "adv_aceSplint"); -//IFA Detection -if isClass (configFile >> "CfgPatches" >> "LIB_Core") then {hasIFA = true; diag_log format ["%1: [Antistasi] | INFO | initVar | IFA Detected.",servertime];}; -//RHS AFRF Detection -if isClass (configFile >> "CfgFactionClasses" >> "rhs_faction_vdv") then {activeAFRF = true; hasRHS = true; diag_log format ["%1: [Antistasi] | INFO | initVar | RHS AFRF Detected.",servertime];}; -if isClass (configFile >> "CfgFactionClasses" >> "rhs_faction_usarmy") then {activeUSAF = true; hasRHS = true; diag_log format ["%1: [Antistasi] | INFO | initVar | RHS USAF Detected.",servertime];}; -if (activeAFRF && activeUSAF && isClass (configFile >> "CfgFactionClasses" >> "rhsgref_faction_tla")) then {activeGREF = true; diag_log format ["%1: [Antistasi] | INFO | initVar | RHS GREF Detected.",servertime];}; -//3CB Detection -if (activeAFRF && activeUSAF && activeGREF && isClass (configfile >> "CfgPatches" >> "UK3CB_BAF_Weapons")) then {has3CB = true; diag_log format ["%1: [Antistasi] | INFO | initVar | 3CB Detected.",servertime];}; -//FFAA Detection -if (isClass (configfile >> "CfgPatches" >> "ffaa_armas")) then {hasFFAA = true; diag_log format ["%1: [Antistasi] | INFO | initVar | FFAA Detected.",servertime];}; - -//////////////////////////////////// -// MOD CONFIG /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Setting Mod Configs",servertime]; - -//TFAR config -startLR = false; -if (hasTFAR) then - { - startLR = true; //set to true to start with LR radios unlocked. - if (isServer) then - { - [] spawn { - waitUntil {sleep 1; !isNil "TF_server_addon_version"}; - diag_log format ["%1: [Antistasi] | INFO | initVar | Initialising TFAR settings.",servertime]; - ["TF_no_auto_long_range_radio", true, true,"mission"] call CBA_settings_fnc_set; //set to false and players will spawn with LR radio. - if (hasIFA) then - { - ["TF_give_personal_radio_to_regular_soldier", false, true,"mission"] call CBA_settings_fnc_set; - ["TF_give_microdagr_to_soldier", false, true,"mission"] call CBA_settings_fnc_set; - }; - //tf_teamPlayer_radio_code = "";publicVariable "tf_teamPlayer_radio_code"; //to make enemy vehicles usable as LR radio - //tf_east_radio_code = tf_teamPlayer_radio_code; publicVariable "tf_east_radio_code"; //to make enemy vehicles usable as LR radio - //tf_guer_radio_code = tf_teamPlayer_radio_code; publicVariable "tf_guer_radio_code"; //to make enemy vehicles usable as LR radio - ["TF_same_sw_frequencies_for_side", true, true,"mission"] call CBA_settings_fnc_set; //synchronize SR default frequencies - ["TF_same_lr_frequencies_for_side", true, true,"mission"] call CBA_settings_fnc_set; //synchronize LR default frequencies - }; - }; - }; -//////////////////////////////////// -// CIVILLIAN UNITS LIST /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Civillians",servertime]; -arrayCivs = if (worldName == "Tanoa") then - { - ["C_man_1","C_man_1_1_F","C_man_1_2_F","C_man_1_3_F","C_man_hunter_1_F","C_man_p_beggar_F","C_man_p_beggar_F_afro","C_man_p_fugitive_F","C_man_p_shorts_1_F","C_man_polo_1_F","C_man_polo_2_F","C_man_polo_3_F","C_man_polo_4_F","C_man_polo_5_F","C_man_polo_6_F","C_man_shorts_1_F","C_man_shorts_2_F","C_man_shorts_3_F","C_man_shorts_4_F","C_scientist_F","C_Orestes","C_Nikos","C_Nikos_aged","C_Man_casual_1_F_tanoan","C_Man_casual_2_F_tanoan","C_Man_casual_3_F_tanoan","C_man_sport_1_F_tanoan","C_man_sport_2_F_tanoan","C_man_sport_3_F_tanoan","C_Man_casual_4_F_tanoan","C_Man_casual_5_F_tanoan","C_Man_casual_6_F_tanoan"]; - } -else - { - if !(hasIFA) then - { - ["C_man_1","C_man_1_1_F","C_man_1_2_F","C_man_1_3_F","C_man_hunter_1_F","C_man_p_beggar_F","C_man_p_beggar_F_afro","C_man_p_fugitive_F","C_man_p_shorts_1_F","C_man_polo_1_F","C_man_polo_2_F","C_man_polo_3_F","C_man_polo_4_F","C_man_polo_5_F","C_man_polo_6_F","C_man_shorts_1_F","C_man_shorts_2_F","C_man_shorts_3_F","C_man_shorts_4_F","C_scientist_F","C_Orestes","C_Nikos","C_Nikos_aged"]; - } - else - { - ["LIB_CIV_Assistant","LIB_CIV_Assistant_2","LIB_CIV_Citizen_1","LIB_CIV_Citizen_2","LIB_CIV_Citizen_3","LIB_CIV_Citizen_4","LIB_CIV_Citizen_5","LIB_CIV_Citizen_6","LIB_CIV_Citizen_7","LIB_CIV_Citizen_8","LIB_CIV_Doctor","LIB_CIV_Functionary_3","LIB_CIV_Functionary_2","LIB_CIV_Functionary_4","LIB_CIV_Villager_4","LIB_CIV_Villager_1","LIB_CIV_Villager_2","LIB_CIV_Villager_3","LIB_CIV_Woodlander_1","LIB_CIV_Woodlander_3","LIB_CIV_Woodlander_2","LIB_CIV_Woodlander_4","LIB_CIV_SchoolTeacher","LIB_CIV_SchoolTeacher_2","LIB_CIV_Rocker","LIB_CIV_Worker_3","LIB_CIV_Worker_1","LIB_CIV_Worker_4","LIB_CIV_Worker_2"]; - }; - }; - -if (has3CB) then {arrayCivs append ["UK3CB_CHC_C_BODYG","UK3CB_CHC_C_CAN","UK3CB_CHC_C_COACH","UK3CB_CHC_C_DOC","UK3CB_CHC_C_FUNC","UK3CB_CHC_C_HIKER","UK3CB_CHC_C_LABOUR","UK3CB_CHC_C_PILOT","UK3CB_CHC_C_POLITIC","UK3CB_CHC_C_PROF","UK3CB_CHC_C_VILL","UK3CB_CHC_C_WORKER"];}; -//////////////////////////////////// -// CIVILLIAN VEHICLES /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Vehicle list.",servertime]; -arrayCivVeh = if !(hasIFA) then - { - ["C_Hatchback_01_F","C_Hatchback_01_sport_F","C_Offroad_01_F","C_SUV_01_F","C_Van_01_box_F","C_Van_01_fuel_F","C_Van_01_transport_F","C_Truck_02_transport_F","C_Truck_02_covered_F","C_Offroad_02_unarmed_F"]; - } -else - { - ["LIB_DAK_OpelBlitz_Open","LIB_GazM1","LIB_GazM1_dirty","LIB_DAK_Kfz1","LIB_DAK_Kfz1_hood"]; - }; -civBoats = if !(hasIFA) then {["C_Boat_Civil_01_F","C_Scooter_Transport_01_F","C_Boat_Transport_02_F","C_Rubberboat"]} else {[]}; - -//////////////////////////////////// -// ID LIST FOR UNIT NAMES /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Unit ID's",servertime]; -if !(hasIFA) then - { - arrayids = ["Anthis","Costa","Dimitirou","Elias","Gekas","Kouris","Leventis","Markos","Nikas","Nicolo","Panas","Rosi","Samaras","Thanos","Vega"]; - if (isMultiplayer) then {arrayids = arrayids + ["protagonista"]}; - }; - -////////////////////////////////////// -// TEMPLATE SELECTION /// -////////////////////////////////////// -//Templates for GREENFOR Rebels -diag_log format ["%1: [Antistasi] | INFO | initVar | Reading Occupant Templates",servertime]; -if (!hasIFA) then - { - //NON-IFA Templates for DEFENDER - if (!activeUSAF) then - { - //Vanilla DEFENDER Template - call compile preProcessFileLineNumbers "Templates\OccupantsVanilla.sqf"; - } - else - { - if (has3CB) then - { - //3CB DEFENDER Template - call compile preProcessFileLineNumbers "Templates\Occupants3CBBAF.sqf"; - } - else - { - if (gameMode != 4) then - { - //RHS-USAF DEFENDER Template - call compile preProcessFileLineNumbers "Templates\OccupantsRHSUSAF.sqf"; - } - else - { - //RHS GREENFOR DEFENDER Template - call compile preProcessFileLineNumbers "Templates\OccupantsRHSGREF.sqf"; - }; - }; - }; - //NON-IFA INVADER Templates - diag_log format ["%1: [Antistasi] | INFO | initVar | Reading Invader Templates",servertime]; - if (!activeAFRF) then - { - //Vanilla INVADER Template - call compile preProcessFileLineNumbers "Templates\InvadersVanilla.sqf"; - } - else - { - if (has3CB) then - { - //3CB INVADER Template - call compile preProcessFileLineNumbers "Templates\Invaders3CBTKM.sqf"; - } - else - { - //RHS INVADER Template - call compile preProcessFileLineNumbers "Templates\InvadersRHSAFRF.sqf"; - }; - }; - //NON-IFA REBEL Templates - diag_log format ["%1: [Antistasi] | INFO | initVar | Reading Rebel Templates",servertime]; - if (!activeGREF) then - { - //Vanilla REBEL Template - call compile preProcessFileLineNumbers "Templates\teamPlayerVanilla.sqf"; - } - else - { - if (has3CB) then - { - //3CB REBEL Template - call compile preProcessFileLineNumbers "Templates\teamPlayer3CBCCM.sqf"; - } - else - { - if (gameMode != 4) then - { - //RHS REBEL Template - call compile preProcessFileLineNumbers "Templates\teamPlayerRHSGREF.sqf"; - } - else - { - //RHS BLUFOR REBEL Template - call compile preProcessFileLineNumbers "Templates\teamPlayerRHSUSAF.sqf"; - }; - }; - }; - } - else - { - //IFA templates - diag_log format ["%1: [Antistasi] | INFO | initVar | Reading IFA Templates",servertime]; - call compile preProcessFileLineNumbers "Templates\teamPlayerIFA.sqf"; - call compile preProcessFileLineNumbers "Templates\InvadersIFA.sqf"; - call compile preProcessFileLineNumbers "Templates\OccupantsIFA.sqf"; - }; - -////////////////////////////////////// -// GROUPS CLASSIFICATION /// -////////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Assigning Squad Types.",servertime]; -//Rebel Unit Tiers -sdkTier1 = SDKMil + [staticCrewTeamPlayer] + SDKMG + SDKGL + SDKATman; -sdkTier2 = SDKMedic + SDKExp + SDKEng; -sdkTier3 = SDKSL + SDKSniper; -soldiersSDK = sdkTier1 + sdkTier2 + sdkTier3; -//Rebel Groups -groupsSDKmid = [SDKSL,SDKGL,SDKMG,SDKMil]; -groupsSDKAT = [SDKSL,SDKMG,SDKATman,SDKATman,SDKATman]; -groupsSDKSquad = [SDKSL,SDKGL,SDKMil,SDKMG,SDKMil,SDKATman,SDKMil,SDKMedic]; -groupsSDKSquadEng = [SDKSL,SDKGL,SDKMil,SDKMG,SDKExp,SDKATman,SDKEng,SDKMedic]; -groupsSDKSquadSupp = [SDKSL,SDKGL,SDKMil,SDKMG,SDKATman,SDKMedic,[staticCrewTeamPlayer,staticCrewTeamPlayer],[staticCrewTeamPlayer,staticCrewTeamPlayer]]; -groupsSDKSniper = [SDKSniper,SDKSniper]; -groupsSDKSentry = [SDKGL,SDKMil]; - -squadLeaders = SDKSL + [(NATOSquad select 0),(NATOSpecOp select 0),(CSATSquad select 0),(CSATSpecOp select 0),(FIASquad select 0)]; -medics = SDKMedic + [(FIAsquad select ((count FIAsquad)-1)),(NATOSquad select ((count NATOSquad)-1)),(NATOSpecOp select ((count NATOSpecOp)-1)),(CSATSquad select ((count CSATSquad)-1)),(CSATSpecOp select ((count CSATSpecOp)-1))]; -//Define Sniper Groups and Units -sniperGroups = [groupsNATOSniper,groupsCSATSniper]; -sniperUnits = ["O_T_Soldier_M_F","O_T_Sniper_F","O_T_ghillie_tna_F","O_V_Soldier_M_ghex_F","B_CTRG_Soldier_M_tna_F","B_T_soldier_M_F","B_T_Sniper_F","B_T_ghillie_tna_F"] + SDKSniper + [FIAMarksman,NATOMarksman,CSATMarksman]; -//Do we need this anymore? unit classes should be set by template, not here..... -if (hasRHS) then {sniperUnits = sniperUnits + ["rhsusf_socom_marsoc_sniper","rhs_vdv_marksman_asval"]}; - -//////////////////////////////////// -// CLASSING TEMPLATE VEHICLES /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Assigning vehicle Types",servertime]; -vehNormal = vehNATONormal + vehCSATNormal + [vehFIATruck,vehSDKTruck,vehSDKLightArmed,vehSDKBike,vehSDKRepair]; -vehBoats = [vehNATOBoat,vehCSATBoat,vehSDKBoat]; -vehAttack = vehNATOAttack + vehCSATAttack; -vehPlanes = vehNATOAir + vehCSATAir + [vehSDKPlane]; -vehAttackHelis = vehCSATAttackHelis + vehNATOAttackHelis; -vehFixedWing = [vehNATOPlane,vehNATOPlaneAA,vehCSATPlane,vehCSATPlaneAA,vehSDKPlane] + vehNATOTransportPlanes + vehCSATTransportPlanes; -vehUAVs = [vehNATOUAV,vehCSATUAV]; -vehAmmoTrucks = [vehNATOAmmoTruck,vehCSATAmmoTruck]; -vehAPCs = vehNATOAPC + vehCSATAPC; -vehTanks = [vehNATOTank,vehCSATTank]; -vehTrucks = vehNATOTrucks + vehCSATTrucks + [vehSDKTruck,vehFIATruck]; -vehAA = [vehNATOAA,vehCSATAA]; -vehMRLS = [vehCSATMRLS, vehNATOMRLS]; -vehTransportAir = vehNATOTransportHelis + vehCSATTransportHelis + vehNATOTransportPlanes + vehCSATTransportPlanes; -vehFastRope = ["O_Heli_Light_02_unarmed_F","B_Heli_Transport_01_camo_F","RHS_UH60M_d","RHS_Mi8mt_vdv","RHS_Mi8mt_vv","RHS_Mi8mt_Cargo_vv"]; -vehUnlimited = vehNATONormal + vehCSATNormal + [vehNATORBoat,vehNATOPatrolHeli,vehCSATRBoat,vehCSATPatrolHeli,vehNATOUAV,vehNATOUAVSmall,NATOMG,NATOMortar,vehCSATUAV,vehCSATUAVSmall,CSATMG,CSATMortar]; -vehFIA = [vehSDKBike,vehSDKLightArmed,SDKMGStatic,vehSDKLightUnarmed,vehSDKTruck,vehSDKBoat,SDKMortar,staticATteamPlayer,staticAAteamPlayer,vehSDKRepair]; - -//////////////////////////////////// -// BUILDINGS LISTS /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Building Arrays",servertime]; -listMilBld = ["Land_Cargo_Tower_V1_F","Land_Cargo_Tower_V1_No1_F","Land_Cargo_Tower_V1_No2_F","Land_Cargo_Tower_V1_No3_F","Land_Cargo_Tower_V1_No4_F","Land_Cargo_Tower_V1_No5_F","Land_Cargo_Tower_V1_No6_F","Land_Cargo_Tower_V1_No7_F","Land_Cargo_Tower_V2_F", "Land_Cargo_Tower_V3_F","Land_Cargo_HQ_V1_F","Land_Cargo_HQ_V2_F","Land_Cargo_HQ_V3_F","Land_Cargo_Patrol_V1_F","Land_Cargo_Patrol_V2_F","Land_Cargo_Patrol_V3_F","Land_HelipadSquare_F"]; -listbld = ["Land_Cargo_Tower_V1_F","Land_Cargo_Tower_V1_No1_F","Land_Cargo_Tower_V1_No2_F","Land_Cargo_Tower_V1_No3_F","Land_Cargo_Tower_V1_No4_F","Land_Cargo_Tower_V1_No5_F","Land_Cargo_Tower_V1_No6_F","Land_Cargo_Tower_V1_No7_F","Land_Cargo_Tower_V2_F", "Land_Cargo_Tower_V3_F"]; -UPSMON_Bld_remove = ["Bridge_PathLod_base_F","Land_Slum_House03_F","Land_Bridge_01_PathLod_F","Land_Bridge_Asphalt_PathLod_F","Land_Bridge_Concrete_PathLod_F","Land_Bridge_HighWay_PathLod_F","Land_Bridge_01_F","Land_Bridge_Asphalt_F","Land_Bridge_Concrete_F","Land_Bridge_HighWay_F","Land_Canal_Wall_Stairs_F","warehouse_02_f","cliff_wall_tall_f","cliff_wall_round_f","containerline_02_f","containerline_01_f","warehouse_01_f","quayconcrete_01_20m_f","airstripplatform_01_f","airport_02_terminal_f","cliff_wall_long_f","shop_town_05_f","Land_ContainerLine_01_F"]; -//Lights and Lamps array used for 'Blackout' -lamptypes = ["Lamps_Base_F", "PowerLines_base_F","Land_LampDecor_F","Land_LampHalogen_F","Land_LampHarbour_F","Land_LampShabby_F","Land_NavigLight","Land_runway_edgelight","Land_PowerPoleWooden_L_F"]; - -//////////////////////////////////// -// SOUNDS AND ANIMATIONS /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Building Sounds and Animations",servertime]; -ladridos = ["Music\dog_bark01.wss", "Music\dog_bark02.wss", "Music\dog_bark03.wss", "Music\dog_bark04.wss", "Music\dog_bark05.wss","Music\dog_maul01.wss","Music\dog_yelp01.wss","Music\dog_yelp02.wss","Music\dog_yelp03.wss"]; -injuredSounds = -[ - "a3\sounds_f\characters\human-sfx\Person0\P0_moan_13_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_14_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_15_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_16_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_17_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_18_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_19_words.wss","a3\sounds_f\characters\human-sfx\Person0\P0_moan_20_words.wss", - "a3\sounds_f\characters\human-sfx\Person1\P1_moan_19_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_20_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_21_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_22_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_23_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_24_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_25_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_26_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_27_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_28_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_29_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_30_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_31_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_32_words.wss","a3\sounds_f\characters\human-sfx\Person1\P1_moan_33_words.wss", - "a3\sounds_f\characters\human-sfx\Person2\P2_moan_19_words.wss" -]; -medicAnims = ["AinvPknlMstpSnonWnonDnon_medic_1","AinvPknlMstpSnonWnonDnon_medic0","AinvPknlMstpSnonWnonDnon_medic1","AinvPknlMstpSnonWnonDnon_medic2"]; - -//////////////////////////////////// -// REBEL UNIFORMS LIST /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Rebel Uniforms",servertime]; -{ -_unit = _x select 0; -_uniform = (getUnitLoadout _unit select 3) select 0; -uniformsSDK pushBackUnique _uniform; -banditUniforms pushBackUnique _uniform; -if (count _x > 1) then - { - _unit = _x select 1; - _uniform = (getUnitLoadout _unit select 3) select 0; - uniformsSDK pushBackUnique _uniform; - }; -} forEach [SDKSniper,SDKATman,SDKMedic,SDKMG,SDKExp,SDKGL,SDKMil,SDKSL,SDKEng,[SDKUnarmed],[staticCrewTeamPlayer]]; - -//////////////////////////////////// -// CIV UNIFORMS LIST /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Civillian Uniforms",servertime]; -{ -_uniform = (getUnitLoadout _x select 3) select 0; -civUniforms pushBackUnique _uniform; -} forEach arrayCivs; - -//////////////////////////////////// -// ALL MAGAZINES LIST /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Magazine Pool.",servertime]; -_cfgMagazines = configFile >> "cfgmagazines"; -for "_i" from 0 to ((count _cfgMagazines) -1) do - { - _magazine = _cfgMagazines select _i; - if (isClass _magazine) then - { - _nameX = configName (_magazine); - allMagazines pushBack _nameX; - }; - }; - -//////////////////////////////////// -// ALL WEAPONS/ITEMS LIST /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Weapon list",servertime]; -_allPrimaryWeapons = " - ( getNumber ( _x >> ""scope"" ) isEqualTo 2 - && - { getText ( _x >> ""simulation"" ) isEqualTo ""Weapon"" - && - { getNumber ( _x >> ""type"" ) isEqualTo 1 } } ) -" configClasses ( configFile >> "cfgWeapons" ); - -_allHandGuns = " - ( getNumber ( _x >> ""scope"" ) isEqualTo 2 - && - { getText ( _x >> ""simulation"" ) isEqualTo ""Weapon"" - && - { getNumber ( _x >> ""type"" ) isEqualTo 2 } } ) -" configClasses ( configFile >> "cfgWeapons" ); - -_allLaunchers = " - ( getNumber ( _x >> ""scope"" ) isEqualTo 2 - && - { getText ( _x >> ""simulation"" ) isEqualTo ""Weapon"" - && - { getNumber ( _x >> ""type"" ) isEqualTo 4 } } ) -" configClasses ( configFile >> "cfgWeapons" ); - -_allItems = " - ( getNumber ( _x >> ""scope"" ) isEqualTo 2 - && - { getText ( _x >> ""simulation"" ) isEqualTo ""Weapon"" - && - { getNumber ( _x >> ""type"" ) isEqualTo 131072 } } ) -" configClasses ( configFile >> "cfgWeapons" ); - -//////////////////////////////////// -// ITEM/WEAPON CLASSIFICATION /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Classing Items.",servertime]; -_alreadyChecked = []; -{ -_nameX = configName _x; -_nameX = [_nameX] call BIS_fnc_baseWeapon; -if (not(_nameX in _alreadyChecked)) then - { - _magazines = getArray (configFile >> "CfgWeapons" >> _nameX >> "magazines"); - _alreadyChecked pushBack _nameX; - _item = [_nameX] call BIS_fnc_itemType; - _itemType = _item select 1; - switch (_itemType) do - { - case "AssaultRifle": {arifles pushBack _nameX}; - case "MachineGun": {mguns pushBack _nameX}; - case "SniperRifle": {srifles pushBack _nameX}; - case "Handgun": {hguns pushBack _nameX}; - case "MissileLauncher": {mlaunchers pushBack _nameX}; - case "RocketLauncher": {rlaunchers pushBack _nameX}; - case "Headgear": {helmets pushBack _nameX}; - case "Vest": {vests pushBack _nameX}; - case "AccessoryMuzzle": {attachmentMuzzle pushBack _nameX}; - case "AccessoryPointer": {attachmentPointer pushBack _nameX}; - case "AccessorySights": {attachmentOptics pushBack _nameX}; - case "AccessoryBipod": {attachmentBipod pushBack _nameX}; - case "NVGoggles": {NVGoggles pushBack _nameX}; - }; - }; -} forEach _allPrimaryWeapons + _allHandGuns + _allLaunchers + _allItems; - -//////////////////////////////////// -// ARMORED VESTS LIST /// -//////////////////////////////////// -//WHY is there no clean list? -vests = vests select {getNumber (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Chest" >> "armor") > 5}; - -//////////////////////////////////// -// ARMORED HELMETS LIST /// -//////////////////////////////////// -//WHY is there no clean list? -helmets = helmets select {getNumber (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") > 2}; - -//////////////////////////////////// -// SILENCERS List /// -//////////////////////////////////// - -//////////////////////////////////// -// ACE ITEMS LIST /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating ACE Items List",servertime]; -aceItems = [ - "ACE_EarPlugs", - "ACE_RangeCard", - "ACE_Clacker", - "ACE_M26_Clacker", - "ACE_DeadManSwitch", - "ACE_DefusalKit", - "ACE_MapTools", - "ACE_Flashlight_MX991", - "ACE_wirecutter", - "ACE_RangeTable_82mm", - "ACE_EntrenchingTool", - "ACE_Cellphone", - "ACE_CableTie", - "ACE_SpottingScope", - "ACE_Tripod", - "ACE_Spraypaintred" -]; - -aceBasicMedItems = [ - "ACE_fieldDressing", - "ACE_bloodIV_500", - "ACE_bloodIV", - "ACE_epinephrine", - "ACE_morphine", - "ACE_bodyBag" -]; - -aceAdvMedItems = [ - "ACE_elasticBandage", - "ACE_quikclot", - "ACE_bloodIV_250", - "ACE_packingBandage", - "ACE_plasmaIV", - "ACE_plasmaIV_500", - "ACE_plasmaIV_250", - "ACE_salineIV", - "ACE_salineIV_500", - "ACE_salineIV_250", - "ACE_surgicalKit", - "ACE_tourniquet", - "ACE_adenosine", - "ACE_atropine" -] -+ ([["ACE_PersonalAidKit"], ["adv_aceCPR_AED"]] select hasADVCPR) -+ ([[], ["adv_aceSplint_splint"]] select hasADVSplint); - -publicVariable "aceItems"; -publicVariable "aceBasicMedItems"; -publicVariable "aceAdvMedItems"; - -//Begin Loot Lists -//Not sure why we get these, but here it is.... -diveGear = ["V_RebreatherIA","G_Diving"]; -if (side (group petros) == west) then {diveGear pushBack "U_B_Wetsuit"} else {diveGear pushBack "U_I_Wetsuit"}; -//////////////////////////////////// -// DEFENDER WEAPONS AND AMMO /// -//////////////////////////////////// -//Creates the list of weapons and ammo for DEFENDER loot crates -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Occupant Crate Lists",servertime]; -_checked = []; -{ -{ -_typeX = _x; -if !(_typeX in _checked) then - { - _checked pushBack _typeX; - _loadout = getUnitLoadout _typeX; - for "_i" from 0 to 2 do - { - if !(_loadout select _i isEqualTo []) then - { - _weapon = [((_loadout select _i) select 0)] call BIS_fnc_baseWeapon; - if !(_weapon in weaponsNato) then {weaponsNato pushBack _weapon}; - }; - }; - }; -} forEach _x; -} forEach groupsNATOmid + [NATOSpecOp] + groupsNATOSquad; - -{ -_nameX = [_x] call BIS_fnc_baseWeapon; -_magazines = getArray (configFile / "CfgWeapons" / _nameX / "magazines"); -ammunitionNATO pushBack (_magazines select 0); -} forEach weaponsNato; - -//////////////////////////////////// -// INVADER WEAPONS AND AMMO /// -//////////////////////////////////// -//Creates the list of weapons and ammo for INVADER loot crates -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Invader Crate Lists",servertime]; -{ -{ -_typeX = _x; -if !(_typeX in _checked) then - { - _checked pushBack _typeX; - _loadout = getUnitLoadout _typeX; - for "_i" from 0 to 2 do - { - if !(_loadout select _i isEqualTo []) then - { - _weapon = [((_loadout select _i) select 0)] call BIS_fnc_baseWeapon; - if !(_weapon in weaponsCSAT) then {weaponsCSAT pushBack _weapon}; - }; - }; - }; -} forEach _x; -} forEach groupsCSATmid + [CSATSpecOp] + groupsCSATSquad; - -{ -_nameX = [_x] call BIS_fnc_baseWeapon; -_magazines = getArray (configFile / "CfgWeapons" / _nameX / "magazines"); -ammunitionCSAT pushBack (_magazines select 0); -} forEach weaponsCSAT; - -//////////////////////////////////// -// WEAPON ATTACHMENTS LIST /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Weapon Attachment Lists",servertime]; -{ -{ -_item = _x; -if !(_item in (opticsAAF + flashLights + pointers)) then - { - if (isCLass(configFile >> "CfgWeapons" >> _item >> "ItemInfo" >> "OpticsModes")) then - { - opticsAAF pushBack _item - } - else - { - if (isClass (configfile >> "CfgWeapons" >> _item >> "ItemInfo" >> "FlashLight" >> "Attenuation")) then - { - flashLights pushBack _item; - } - else - { - if (isClass (configfile >> "CfgWeapons" >> _item >> "ItemInfo" >> "Pointer")) then - { - pointers pushBack _item; - }; - }; - }; - }; -} forEach (_x call BIS_fnc_compatibleItems); -} forEach (weaponsNato + weaponsCSAT); - -//////////////////////////////////// -// SMOKE GRENADES LIST /// -//////////////////////////////////// -//THIS LIST IS USED BY LOOT CRATES AND AI CURRENTLY -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Smoke Grenade Lists",servertime]; -smokeX = ["SmokeShell","SmokeShellRed","SmokeShellGreen","SmokeShellBlue","SmokeShellYellow","SmokeShellPurple","SmokeShellOrange"]; - -//////////////////////////////////// -// CHEMLIGHTS LIST /// -//////////////////////////////////// -//Chemlight loot for crates -//this is an ugly list of vanilla chems I made myself - PBP -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Chemstick Lists",servertime]; -chemX = ["Chemlight_green","Chemlight_red","Chemlight_yellow","Chemlight_blue"]; - -//////////////////////////////////// -// REBEL LOOT ITEMS /// -//////////////////////////////////// -//These items occupy the general items slot of loot crates -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Loot Items Lists",servertime]; -itemsAAF = - [ - "Laserbatteries", - "MineDetector", - "muzzle_snds_H", - "muzzle_snds_L", - "muzzle_snds_M", - "muzzle_snds_B", - "muzzle_snds_H_MG", - "muzzle_snds_acp", - "muzzle_snds_338_green", - "muzzle_snds_93mmg_tan", - "bipod_03_F_oli", - "Rangefinder", - "Laserdesignator", - "ItemGPS", - "acc_pointer_IR", - "ItemRadio", - "ToolKit" - ]; - -if (hasRHS and !hasIFA) then - { - //RHS Loot Items - itemsAAF = - [ - "MineDetector", - "ItemGPS", - "acc_pointer_IR", - "ItemRadio", - "ToolKit" - ]; - } - else - { - if (hasIFA) then - { - //IFA Loot Items - itemsAAF = - [ - "LIB_ToolKit" - ]; - }; - }; - -//////////////////////////////////// -// PLACED EXPLOSIVES LOOT /// -//////////////////////////////////// -//This is the ONLY SOURCE of mines loot for crates -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Loot Mines Lists",servertime]; -minesAAF = - [ - "SLAMDirectionalMine_Wire_Mag", - "SatchelCharge_Remote_Mag", - "ClaymoreDirectionalMine_Remote_Mag", - "ATMine_Range_Mag","APERSTripMine_Wire_Mag", - "APERSMine_Range_Mag", - "APERSBoundingMine_Range_Mag" - ]; - -if (hasRHS and !hasIFA) then - { - //RHS MINE LOOT - minesAAF = - ["rhsusf_m112_mag", - "rhsusf_mine_m14_mag", - "rhs_mine_M19_mag", - "rhs_mine_tm62m_mag", - "rhs_mine_pmn2_mag" - ]; - } - else - { - if (hasIFA) then - { - //IFA MINE LOOT - minesAAF = - ["LIB_PMD6_MINE_mag", - "LIB_TM44_MINE_mag", - "LIB_US_TNT_4pound_mag" - ]; - }; - }; - -//////////////////////////////////// -// REBEL FACTION LAUNCHERS /// -//////////////////////////////////// -//These launchers will be IN ADDITION TO whatever launchers enemies carry -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Loot Launchers Lists",servertime]; -antitankAAF = - [ - "launch_I_Titan_F", - "launch_I_Titan_short_F" - ]; -if (hasIFA) then - { - antitankAAF = - ["LIB_Shg24"]; - }; -if (hasRHS) then - { - antitankAAF = - []; - }; - -//////////////////////////////////// -// REBEL STARTING ITEMS /// -//////////////////////////////////// -//These items will be unlocked when the mission starts -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Unlocked Items Lists",servertime]; -unlockedItems = - [ - "ItemMap", - "ItemWatch", - "ItemCompass", - "ToolKit", - "H_Booniehat_khk", - "H_Booniehat_oli", - "H_Booniehat_grn", - "H_Booniehat_dirty", - "H_Cap_oli", - "H_Cap_blk", - "H_MilCap_rucamo", - "H_MilCap_gry", - "H_BandMask_blk", - "H_Bandanna_khk", - "H_Bandanna_gry", - "H_Bandanna_camo", - "H_Shemag_khk", - "H_Shemag_tan", - "H_Shemag_olive", - "H_ShemagOpen_tan", - "H_Beret_grn", - "H_Beret_grn_SF", - "H_Watchcap_camo", - "H_TurbanO_blk", - "H_Hat_camo", - "H_Hat_tan", - "H_Beret_blk", - "H_Beret_red", - "H_Watchcap_khk", - "G_Balaclava_blk", - "G_Balaclava_combat", - "G_Balaclava_lowprofile", - "G_Balaclava_oli", - "G_Bandanna_beast", - "G_Tactical_Black", - "G_Aviator", - "G_Shades_Black", - "acc_flashlight", - "itemGPS" - ]; - -//Temporary starting vests fix while I class items properly -unlockedItems append ["V_Rangemaster_belt","V_BandollierB_khk","V_BandollierB_cbr","V_BandollierB_rgr","V_BandollierB_blk","V_BandollierB_oli","V_BandollierB_ghex_F","V_HarnessO_brn","V_HarnessO_gry","V_HarnessO_ghex_F","V_HarnessOGL_ghex_F","V_HarnessOGL_gry","V_HarnessOGL_brn","V_Pocketed_olive_F","V_Pocketed_coyote_F","V_Pocketed_black_F"]; - -//IFA Starting Unlocks -if (hasIFA) then - { - unlockedItems = - [ - "ItemMap", - "ItemWatch", - "ItemCompass", - "ToolKit", - //do we need both tookits? - "LIB_ToolKit", - "H_LIB_CIV_Villager_Cap_1", - "H_LIB_CIV_Worker_Cap_2", - "G_LIB_Scarf2_B", - "G_LIB_Mohawk" - ]; - }; - -//Adds civ and geurilla clothes -unlockedItems append banditUniforms; -unlockedItems append civUniforms; - -//////////////////////////////////// -//RHS WEAPON ATTACHMENTS REDUCER /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Modifying Item Lists for Mods",servertime]; -if (hasRHS) then - { - opticsAAF = opticsAAF select {getText (configfile >> "CfgWeapons" >> _x >> "author") == "Red Hammer Studios"}; - flashlights = flashlights select {getText (configfile >> "CfgWeapons" >> _x >> "author") == "Red Hammer Studios"}; - pointers = pointers select {getText (configfile >> "CfgWeapons" >> _x >> "author") == "Red Hammer Studios"}; - }; - -//////////////////////////////////// -// ACE ITEMS MODIFICATIONS /// -//////////////////////////////////// -if (hasACE) then - { - //additional starting items - unlockedItems append aceItems; - //Fix for bad ammo types in loot crates - ammunitionNATO = ammunitionNATO - ["ACE_PreloadedMissileDummy"]; - ammunitionCSAT = ammunitionCSAT - ["ACE_PreloadedMissileDummy"]; - }; - -//ACE medical starting items -if (hasACEMedical) then { - switch (ace_medical_level) do { - case 1: { - unlockedItems append aceBasicMedItems; - }; - case 2: { - unlockedItems = unlockedItems + aceBasicMedItems + aceAdvMedItems; - }; - }; -} else { - unlockedItems = unlockedItems + ["FirstAidKit","Medikit"]; -}; - -//ACE items when IFA isnt detected -if (hasACE and !hasIFA) then - { - // add ace mine detectors to crates - weaponsNato append ["ACE_VMH3","ACE_VMM3"]; - weaponsCSAT append ["ACE_VMH3","ACE_VMM3"]; - itemsAAF append ["ACE_acc_pointer_green_IR","ACE_Chemlight_Shield"]; - //remove vanilla mine detector - itemsAAF = itemsAAF - ["MineDetector"]; - weaponsCSAT = weaponsCSAT - ["MineDetector"]; - weaponsNato = weaponsNato - ["MineDetector"]; - //add ACE chem and smoke - chemX append ["ACE_Chemlight_HiOrange","ACE_Chemlight_HiRed","ACE_Chemlight_HiYellow","ACE_Chemlight_HiWhite","ACE_Chemlight_Orange","ACE_Chemlight_White","ACE_Chemlight_IR"]; - smokeX append ["ACE_HandFlare_White","ACE_HandFlare_Red","ACE_HandFlare_Green","ACE_HandFlare_Yellow"]; - }; - -//////////////////////////////////// -// IFA ITEMS MODIFICATIONS /// -//////////////////////////////////// -if (hasIFA) then - { - smokeX = ["LIB_RDG","LIB_NB39"]; //Resets Smoke Greandes - chemX = []; //Clears all chems - helmets = []; //Clears all Helmets - NVGoggles = []; //Clears NVG's - }; - -//////////////////////////////////// -// ACE + IFA ITEMS MODIFICATIONS /// -//////////////////////////////////// -//IF you have ACE but NOT IFA -if (hasACE and !hasIFA) then - { - //additonal unlocks - unlockedBackpacks pushBackUnique "ACE_TacticalLadder_Pack"; - itemsAAF append ["ACE_Kestrel4500","ACE_ATragMX","ACE_M84"]; - }; - -//IF you have both ACE AND IFA -if (hasACE and hasIFA) then - { - itemsAAF append ["ACE_LIB_LadungPM","ACE_SpareBarrel"]; - }; - -//////////////////////////////////// -// ACRE ITEM MODIFICATIONS /// -//////////////////////////////////// -if (hasACRE) then {unlockedItems append ["ACRE_PRC343","ACRE_PRC148","ACRE_PRC152","ACRE_PRC77","ACRE_PRC117F"];}; - -//////////////////////////////////// -// TFAR ITEM MODIFICATIONS /// -//////////////////////////////////// -if (hasTFAR) then {unlockedItems append ["tf_microdagr","tf_rf7800str"];}; -if (startLR) then {unlockedBackpacks pushBack "tf_anprc155"}; - -//////////////////////////////////// -// MISSION PATH WARNING /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Checking Mission Path",servertime]; -_getMissionPath = [] execVM "initGetMissionPath.sqf"; -waitUntil -{ - if (scriptDone _getMissionPath) then {true} else - { - hint "Stuck on compiling missionPath, re-launch the mission."; - false; - } -}; -hint "Done compiling missionPath"; - -//////////////////////////////////// -// SERVER AND HEADLESS VARIABLES /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Server/Host Variables",servertime]; -if (!isServer and hasInterface) exitWith {}; -difficultyCoef = if !(isMultiplayer) then {0} else {floor ((({side group _x == teamPlayer} count playableUnits) - ({side group _x != teamPlayer} count playableUnits)) / 5)}; -AAFpatrols = 0; -reinfPatrols = 0; -smallCAmrk = []; -smallCApos = []; -bigAttackInProgress = false; -chopForest = false; -distanceForAirAttack = 10000; -distanceForLandAttack = if (hasIFA) then {5000} else {3000}; - -//////////////////////////////////// -// MAP SETTINGS AND MARKERS /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Setting Map Details.",servertime]; -switch (toLower worldName) do { -case "tanoa": - { - roadsMrk = ["road"] call A3A_fnc_getArrayMrks; - {_x setMarkerAlpha 0} forEach roadsMrk; - roadsCentral = ["road","road_1","road_2","road_3","road_4"]; - roadsCE = ["road_5","road_6"]; - roadsCSE = ["road_7"]; - roadsSE = ["road_8","road_9","road_10","road_11"]; - roadsSW = ["road_12"]; - roadsCW = ["road_13","road_14"]; - roadsNW = ["road_15"]; - roadsNE = ["road_16"]; - roadsX setVariable ["airport",[[[6988.38,7135.59,10.0673],17.0361,"MG"],[[6873.83,7472,3.19066],262.634,"MG"],[[6902.09,7427.71,13.0559],359.999,"MG"],[[6886.75,7445.52,0.0368803],360,"Mort"],[[6888.47,7440.31,0.0368826],0.000531628,"Mort"],[[6882.14,7445.42,0.0368817],360,"Mort"],[[6886.49,7436.58,0.0368807],360,"Mort"],[[6970.32,7188.49,-0.0339937],359.999,"Tank"],[[6960.98,7188.49,-0.0339937],359.999,"Tank"],[[6950.71,7187.42,-0.033505],359.999,"Tank"]]]; - roadsX setVariable ["airport_1",[[[2175.14,13402.4,-0.01863],138.861,"Tank"],[[2183.31,13409.7,-0.0184679],139.687,"Tank"],[[2211.39,13434.4,0.0164337],141.512,"Tank"],[[2221.62,13440.6,0.016408],142.886,"Tank"],[[2221.31,13195,0.0368757],0.000337857,"Mort"],[[2224.09,13197.6,0.038271],1.30051e-005,"Mort"],[[2218.96,13199.1,0.0382385],0.00923795,"Mort"],[[2071.1,13308.5,14.4943],133.738,"MG"]]]; - roadsX setVariable ["airport_2",[[[11803,13051.6,0.0368805],360,"Mort"],[[11813.5,13049.2,0.0368915],0.000145629,"Mort"],[[11799.5,13043.2,0.0368919],360,"Mort"],[[11723.3,13114.6,18.1545],300.703,"MG"],[[11782.3,13058.1,0.0307827],19.6564,"Tank"],[[11810.6,13040.2,0.0368905],360,"Tank"],[[11832.9,13042.1,0.0283785],16.3683,"Tank"]]]; - roadsX setVariable ["airport_3",[[[11658,3055.02,0.036881],360,"Mort"],[[11662.6,3060.14,0.0368819],0.000294881,"Mort"],[[11664.8,3049.94,0.0368805],360,"Mort"],[[11668.9,3055.64,0.0368805],2.08056e-005,"Mort"],[[11747.8,2982.95,18.1513],249.505,"MG"],[[11784.1,3132.77,0.183631],214.7,"Tank"],[[11720.3,3176.15,0.112019],215.055,"Tank"]]]; - roadsX setVariable ["airport_4",[[[2092.87,3412.98,0.0372648],0.00414928,"Mort"],[[2091.5,3420.69,0.0369596],360,"Mort"],[[2099.93,3422.53,0.0373936],0.00215797,"Mort"],[[2100.13,3416.28,0.0394554],0.0043371,"Mort"],[[2198.24,3471.03,18.0123],0.00187816,"MG"],[[2133.01,3405.88,-0.0156536],315.528,"Tank"],[[2145.82,3416.83,-0.00544548],316.441,"Tank"],[[2163.9,3432.18,-0.0256157],318.777,"Tank"]]]; - //Map Markers - {server setVariable [_x select 0,_x select 1]} forEach [["Lami01",277],["Lifou01",350],["Lobaka01",64],["LaFoa01",38],["Savaka01",33],["Regina01",303],["Katkoula01",413],["Moddergat01",195],["Losi01",83],["Tanouka01",380],["Tobakoro01",45],["Georgetown01",347],["Kotomo01",160],["Rautake01",113],["Harcourt01",325],["Buawa01",44],["SaintJulien01",353],["Balavu01",189],["Namuvaka01",45],["Vagalala01",174],["Imone01",31],["Leqa01",45],["Blerick01",71],["Yanukka01",189],["OuaOue01",200],["Cerebu01",22],["Laikoro01",29],["Saioko01",46],["Belfort01",240],["Oumere01",333],["Muaceba01",18],["Nicolet01",224],["Lailai01",23],["Doodstil01",101],["Tavu01",178],["Lijnhaven01",610],["Nani01",19],["PetitNicolet01",135],["PortBoise01",28],["SaintPaul01",136],["Nasua01",60],["Savu01",184],["Murarua01",258],["Momea01",159],["LaRochelle01",532],["Koumac01",51],["Taga01",31],["Buabua01",27],["Penelo01",189],["Vatukoula01",15],["Nandai01",130],["Tuvanaka01",303],["Rereki01",43],["Ovau01",226],["IndPort01",420],["Ba01",106]]; - //Roads DB - call compile preprocessFileLineNumbers "roadsDB.sqf"; - }; -case "altis": - { - roadsMrk = ["road"] call A3A_fnc_getArrayMrks; - {_x setMarkerAlpha 0} forEach roadsMrk; - roadsX setVariable ["airport",[[[21175.06,7369.336,0],62.362,"Tank"],[[21178.89,7361.573,0.421],62.36,"Tank"],[[20961.332,7295.678,0],0,"Mort"],[[20956.143,7295.142,0],0,"Mort"],[[20961.1,7290.02,0.262632],0,"Mort"]]]; - roadsX setVariable ["airport_1",[[[23044.8,18745.7,0.0810001],88.275,"Tank"],[[23046.8,18756.8,0.0807302],88.275,"Tank"],[[23214.8,18859.5,0],267.943,"Tank"],[[22981.2,18903.9,0],0,"Mort"],[[22980.1,18907.5,0.553066],0,"Mort"]]]; - roadsX setVariable ["airport_2",[[[26803.1,24727.7,0.0629988],359.958,"Mort"],[[26809,24728.2,0.03755],359.986,"Mort"],[[26815.2,24729,0.0384922],359.972,"Mort"],[[26821.3,24729.1,0.0407047],359.965,"Mort"],[[26769.1,24638.7,0.290344],131.324,"Tank"],[[26774.2,24643.9,0.282555],134.931,"Tank"]]]; - roadsX setVariable ["airport_3",[[[14414.9,16327.8,-0.000991821],207.397,"Tank"],[[14471.9,16383.2,0.0378571],359.939,"Mort"],[[14443,16379.2,0.0369205],359.997,"Mort"],[[14449.4,16376.9,0.0369892],359.996,"Mort"],[[14458,16375.9,0.0369167],359.997,"Mort"],[[14447.2,16397.1,3.71081],269.525,"MG"],[[14472.3,16312,12.1993],317.315,"MG"],[[14411,16229,0.000303268],40.6607,"Tank"],[[14404.4,16235,-0.0169964],50.5741,"Tank"],[[14407.2,16331.7,0.0305004],204.588,"Tank"]]]; - roadsX setVariable ["airport_4",[[[11577.4,11953.6,0.241838],122.274,"Tank"],[[11577.8,11964.3,0.258125],124.324,"Tank"],[[11633.3,11762,0.0372791],359.996,"Mort"],[[11637.3,11768.1,0.043232],0.0110098,"Mort"],[[11637.1,11763.1,0.0394402],0.00529677,"Mort"]],true]; - roadsX setVariable ["airport_5",[[[9064.02,21531.3,0.00117016],138.075,"Tank"],[[9095.12,21552.8,0.614614],157.935,"Tank"],[[9030.28,21531.1,0.261349],157.935,"Mort"],[[9033.91,21534.7,0.295588],157.935,"Mort"]]]; - //Map Markers - {server setVariable [_x select 0,_x select 1]} forEach [["Therisa",154],["Zaros",371],["Poliakko",136],["Katalaki",95],["Alikampos",115],["Neochori",309],["Stavros",122],["Lakka",173],["AgiosDionysios",84],["Panochori",264],["Topolia",33],["Ekali",9],["Pyrgos",531],["Orino",45],["Neri",242],["Kore",133],["Kavala",660],["Aggelochori",395],["Koroni",32],["Gravia",291],["Anthrakia",143],["Syrta",151],["Negades",120],["Galati",151],["Telos",84],["Charkia",246],["Athira",342],["Dorida",168],["Ifestiona",48],["Chalkeia",214],["AgiosKonstantinos",39],["Abdera",89],["Panagia",91],["Nifi",24],["Rodopoli",212],["Kalithea",36],["Selakano",120],["Frini",69],["AgiosPetros",11],["Feres",92],["AgiaTriada",8],["Paros",396],["Kalochori",189],["Oreokastro",63],["Ioannina",48],["Delfinaki",29],["Sofia",179],["Molos",188]]; - //Roads DB - call compile preprocessFileLineNumbers "roadsDBAltis.sqf"; - }; -case "chernarus_summer": - { - roadsMrk = ["road"] call A3A_fnc_getArrayMrks; - {_x setMarkerAlpha 0} forEach roadsMrk; - roadsX setVariable ["airport",[[[12191.2,12605.8,9.43077],0,"MG"],[[12194.2,12599.4,13.3954],0,"AA"],[[12141,12609,0.00088501],0,"Mort"],[[12144.3,12615.9,0],0,"Mort"],[[12156.5,12614.3,0],0,"Mort"],[[12170,12595.9,0.000305176],250.234,"AT"],[[12070.4,12656,0.0098114],23.5329,"Tank"],[[12022.5,12670.9,0.0098114],18.9519,"Tank"]]]; - roadsX setVariable ["airport_1",[[[4782.75,10251.4,18],0,"AA"],[[4716.17,10215.3,13.1149],278.308,"AA"],[[4713.94,10209.3,9.12177],188.973,"MG"],[[4787.34,10248.9,4.99982],188.303,"MG"],[[4740.75,10333.2,20.3206],232.414,"MG"],[[4818.39,10200.1,0.00982666],239.625,"Tank"],[[4765.22,10330.8,0],0,"Mort"],[[4758.21,10328.1,0],0,"Mort"],[[4751.45,10324.4,0],0,"Mort"],[[4745.39,10320.6,0],0,"Mort"],[[4739.97,10283.2,0.00567627],291.41,"AT"],[[4814.19,10245.1,0.00567627],211.414,"AT"],[[4841.34,10158.9,0.0102844],240.137,"Tank"],[[4865.7,10116.7,0.00970459],239.499,"Tank"],[[4888.33,10074.2,0.00982666],235.077,"Tank"]]]; - roadsX setVariable ["airport_2",[[[4717.95,2595.24,12.9766],0,"AA"],[[4714.27,2590.97,8.97349],176.197,"MG"],[[4743.55,2567.69,0.0130215],207.155,"Tank"],[[4775.62,2547.37,0.00691605],210.579,"Tank"],[[4719.88,2582.34,0.00566483],261.79,"AT"],[[4826.5,2558.35,0.00150108],0,"Mort"],[[4821.12,2550.32,0.00147152],0,"Mort"],[[4816.59,2543.65,0.00147247],0,"Mort"],[[4812.77,2518.77,0.00566483],150.397,"AT"]]]; - //Map Markers - {server setVariable [_x select 0,_x select 1]} forEach [["vill_NovySobor",129],["city_StarySobor",149],["vill_Guglovo",26],["vill_Vyshnoye",41],["vill_Kabanino",86],["vill_Rogovo",66],["vill_Mogilevka",104],["city_Gorka",115],["vill_Grishino",168],["vill_Shakhovka",55],["vill_Pogorevka",57],["vill_Pulkovo",26],["vill_Nadezhdino",109],["city_Vybor",180],["vill_Polana",118],["vill_Staroye",115],["vill_Dubrovka",86],["vill_Pustoshka",163],["vill_Kozlovka",100],["vill_Pusta",52],["vill_Dolina",83],["vill_Gvozdno",78],["vill_Prigorodki",145],["vill_Drozhino",58],["vill_Sosnovka",54],["vill_Msta",96],["vill_Lopatino",159],["city_Zelenogorsk",280],["vill_Orlovets",65],["city_Berezino",340],["vill_Myshkino",49],["vill_Petrovka",45],["city_Chernogorsk",761],["vill_Bor",46],["vill_Nizhnoye",146],["vill_Balota",147],["vill_Khelm",110],["city_Krasnostav",194],["vill_Komarovo",127],["city_Elektrozavodsk",745],["city_Solnychniy",224],["vill_Kamyshovo",196],["vill_Tulga",35],["vill_Pavlovo",99],["vill_Kamenka",127],["hill_Olsha",20]]; - //Roads DB - call compile preprocessFileLineNumbers "roadsDBcherna.sqf"; - }; -case "malden": - { - roadsMrk = ["road"] call A3A_fnc_getArrayMrks; - {_x setMarkerAlpha 0} forEach roadsMrk; - //Roads DB - call compile preprocessFileLineNumbers "roadsDBmalden.sqf"; - }; -case "enoch": - { - roadsMrk = ["road"] call A3A_fnc_getArrayMrks; - {_x setMarkerAlpha 0} forEach roadsMrk; - //Roads DB - call compile preprocessFileLineNumbers "roadsDBLivonia.sqf"; - }; - }; - -//////////////////////////////////// -// UNIT AND VEHICLE PRICES /// -//////////////////////////////////// -if (!isServer) exitWith {}; -diag_log format ["%1: [Antistasi] | INFO | initVar | Creating Pricelist.",servertime]; -{server setVariable [_x,50,true]} forEach SDKMil; -{server setVariable [_x,75,true]} forEach (sdkTier1 - SDKMil); -{server setVariable [_x,100,true]} forEach sdkTier2; -{server setVariable [_x,150,true]} forEach sdkTier3; -//{timer setVariable [_x,0,true]} forEach (vehAttack + vehNATOAttackHelis + [vehNATOPlane,vehNATOPlaneAA,vehCSATPlane,vehCSATPlaneAA] + vehCSATAttackHelis + vehAA + vehMRLS); -{timer setVariable [_x,3,true]} forEach [staticATOccupants,staticAAOccupants]; -{timer setVariable [_x,6,true]} forEach [staticATInvaders,staticAAInvaders]; -{timer setVariable [_x,0,true]} forEach vehNATOAPC; -{timer setVariable [_x,10,true]} forEach vehCSATAPC; -timer setVariable [vehNATOTank,0,true]; -timer setVariable [vehCSATTank,10,true]; -timer setVariable [vehNATOAA,0,true]; -timer setVariable [vehCSATAA,3,true]; -timer setVariable [vehNATOBoat,3,true]; -timer setVariable [vehCSATBoat,3,true]; -timer setVariable [vehNATOPlane,0,true]; -timer setVariable [vehCSATPlane,10,true]; -timer setVariable [vehNATOPlaneAA,0,true]; -timer setVariable [vehCSATPlaneAA,10,true]; -{timer setVariable [_x,1,true]} forEach vehNATOTransportPlanes; -{timer setVariable [_x,1,true]} forEach vehNATOTransportHelis - [vehNATOPatrolHeli]; -{timer setVariable [_x,1,true]} forEach vehCSATTransportPlanes; -{timer setVariable [_x,10,true]} forEach vehCSATTransportHelis - [vehCSATPatrolHeli]; -{timer setVariable [_x,0,true]} forEach vehNATOAttackHelis; -{timer setVariable [_x,10,true]} forEach vehCSATAttackHelis; -timer setVariable [vehNATOMRLS,0,true]; -timer setVariable [vehCSATMRLS,5,true]; - -server setVariable [civCar,200,true]; //200 -server setVariable [civTruck,600,true]; //600 -server setVariable [civHeli,5000,true]; //5000 -server setVariable [civBoat,200,true]; //200 -server setVariable [vehSDKBike ,50,true]; //50 -server setVariable [vehSDKLightUnarmed,200,true]; //200 -server setVariable [vehSDKTruck,300,true]; //300 -{server setVariable [_x,700,true]} forEach [vehSDKLightArmed,vehSDKAT]; -{server setVariable [_x,400,true]} forEach [SDKMGStatic,vehSDKBoat,vehSDKRepair]; //400 -{server setVariable [_x,800,true]} forEach [SDKMortar,staticATteamPlayer,staticAAteamPlayer]; //800 - -//////////////////////////////////// -// SERVER ONLY VARIABLES /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Setting Server Only Variables.",servertime]; -server setVariable ["hr",8,true]; //initial HR value -server setVariable ["resourcesFIA",1000,true]; //Initial FIA money pool value -skillFIA = 0; //Initial skill level for FIA soldiers -prestigeNATO = 5; //Initial Prestige NATO -prestigeCSAT = 5; //Initial Prestige CSAT -prestigeOPFOR = [75, 50] select cadetMode; //Initial % support for NATO on each city -prestigeBLUFOR = 0; //Initial % FIA support on each city -countCA = 600; //600 -bombRuns = 0; -cityIsSupportChanging = false; -resourcesIsChanging = false; -savingServer = false; -revealX = false; -prestigeIsChanging = false; -napalmCurrent = false; -tierWar = 1; -haveNV = false; -zoneCheckInProgress = false; -garrisonIsChanging = false; -movingMarker = false; -garageIsUsed = false; -missionsX = []; -markersChanging = []; -staticsToSave = []; -vehInGarage = []; -destroyedBuildings = []; -reportedVehs = []; -playerHasBeenPvP = []; - -//////////////////////////////////// -// DECLARE VARIBALES FOR CLIENTS /// -//////////////////////////////////// -diag_log format ["%1: [Antistasi] | INFO | initVar | Declaring Variables For Clients.",servertime]; - -publicVariable "hasACE"; -publicVariable "hasTFAR"; -publicVariable "hasACRE"; -publicVariable "hasACEHearing"; -publicVariable "hasACEMedical"; -publicVariable "hasADVCPR"; -publicVariable "hasADVSplint"; - -publicVariable "unlockedWeapons"; -publicVariable "unlockedRifles"; -publicVariable "unlockedItems"; -publicVariable "unlockedOptics"; -publicVariable "unlockedBackpacks"; -publicVariable "unlockedMagazines"; -publicVariable "unlockedMG"; -publicVariable "unlockedGL"; -publicVariable "unlockedSN"; -publicVariable "unlockedAT"; -publicVariable "unlockedAA"; -publicVariable "unlockedRifles"; - -publicVariable "civPerc"; -publicVariable "garageIsUsed"; -publicVariable "vehInGarage"; -publicVariable "reportedVehs"; -publicVariable "revealX"; -publicVariable "prestigeNATO"; -publicVariable "prestigeCSAT"; -publicVariable "skillFIA"; -publicVariable "staticsToSave"; -publicVariable "bombRuns"; -publicVariable "chopForest"; -publicVariable "napalmCurrent"; -publicVariable "tierWar"; -publicVariable "haveRadio"; -publicVariable "haveNV"; -publicVariable "missionsX"; - -if (isMultiplayer) then {[[petros,"hint","Variables Init Completed"],"A3A_fnc_commsMP"] call BIS_fnc_MP;}; -diag_log format ["%1: [Antistasi] | INFO | initVar Completed.",servertime]; diff --git a/A3-Antistasi/mission.sqm b/A3-Antistasi/mission.sqm deleted file mode 100644 index 4a08d873cb..0000000000 --- a/A3-Antistasi/mission.sqm +++ /dev/null @@ -1,5456 +0,0 @@ -version=53; -class EditorData -{ - moveGridStep=1; - angleGridStep=0.2617994; - scaleGridStep=1; - autoGroupingDist=10; - toggles=1; - class ItemIDProvider - { - nextID=562; - }; - class MarkerIDProvider - { - nextID=50; - }; - class Camera - { - pos[]={8389.5098,378.4205,6089.7788}; - dir[]={-0.086961225,-0.70313454,-0.70585859}; - up[]={-0.08598312,0.7109797,-0.69792557}; - aside[]={-0.99259454,4.3076579e-007,0.12228926}; - }; -}; -binarizationWanted=0; -addons[]= -{ - "A3_Ui_F", - "A3_Structures_F_EPC_Civ_InfoBoards", - "A3_Characters_F", - "A3_Modules_F", - "A3_Modules_F_Hc", - "A3_Structures_F_EPB_Civ_Camping", - "ace_interaction", - "ace_cargo", - "ace_dragging", - "A3_Structures_F_Exp_Military_Flags", - "A3_Weapons_F_Ammoboxes", - "ace_explosives", - "A3_Characters_F_Mark", - "A3_Structures_F_Mil_Flags", - "ace_rearm" -}; -class AddonsMetaData -{ - class List - { - items=14; - class Item0 - { - className="A3_Ui_F"; - name="Arma 3 - User Interface"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item1 - { - className="A3_Structures_F_EPC"; - name="Arma 3 Win Episode - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item2 - { - className="A3_Characters_F"; - name="Arma 3 Alpha - Characters and Clothing"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item3 - { - className="A3_Modules_F"; - name="Arma 3 Alpha - Scripted Modules"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item4 - { - className="A3_Structures_F_EPB"; - name="Arma 3 Adapt Episode - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item5 - { - className="ace_interaction"; - name="ACE3 - Interaction"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item6 - { - className="ace_cargo"; - name="ACE3 - Cargo"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item7 - { - className="ace_dragging"; - name="ACE3 - Dragging"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item8 - { - className="A3_Structures_F_Exp"; - name="Arma 3 Apex - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item9 - { - className="A3_Weapons_F"; - name="Arma 3 Alpha - Weapons and Accessories"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item10 - { - className="ace_explosives"; - name="ACE3 - Explosives"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item11 - { - className="A3_Characters_F_Mark"; - name="Arma 3 Marksmen - Characters and Clothing"; - 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="ace_rearm"; - name="ACE3 - Rearm"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - }; -}; -randomSeed=16007350; -class ScenarioData -{ - author="Barbolani & The Official AntiStasi Community"; -}; -class Mission -{ - class Intel - { - briefingName="A3-Antistasi Armia Krajowa Chernarus 1.4c1"; - resistanceWest=0; - timeOfChanges=1800.0002; - startWeather=0.25; - startWind=0.1; - startWaves=0.1; - forecastWeather=0.25; - forecastWind=0.1; - forecastWaves=0.1; - forecastLightnings=0.1; - year=2008; - month=10; - day=11; - hour=9; - minute=20; - startFogDecay=0.014; - forecastFogDecay=0.014; - }; - class Entities - { - items=166; - class Item0 - { - dataType="Marker"; - position[]={12146.123,158.89999,12612.816}; - name="airport"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=150; - angle=19.882999; - id=4; - }; - class Item1 - { - dataType="Marker"; - position[]={4759.3291,339,10295.688}; - name="airport_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=400; - b=150; - angle=59.539993; - id=5; - }; - class Item2 - { - dataType="Marker"; - position[]={4845.979,9,2518.5}; - name="airport_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=200; - b=100; - angle=28.489862; - id=6; - }; - class Item3 - { - dataType="Marker"; - position[]={11716.97,168.66901,12767.416}; - name="spawnPoint"; - type="hd_arrow"; - angle=208.38397; - id=7; - atlOffset=-0.00045776367; - }; - class Item4 - { - dataType="Marker"; - position[]={4542.4678,338.95331,9809.332}; - name="spawnPoint_1"; - type="hd_arrow"; - angle=186.4299; - id=8; - atlOffset=-0.00045776367; - }; - class Item5 - { - dataType="Marker"; - position[]={4790.5229,6.199542,2354.5579}; - name="spawnPoint_2"; - type="hd_arrow"; - angle=123.45325; - id=9; - atlOffset=-0.00045776367; - }; - class Item6 - { - dataType="Marker"; - position[]={5167.1431,8.7180004,2351.0071}; - name="outpost"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=210.03189; - id=10; - atlOffset=-0.00016593933; - }; - class Item7 - { - dataType="Marker"; - position[]={4546.0098,57.743999,3147.5391}; - name="outpost_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=30; - b=30; - angle=155.90392; - id=11; - atlOffset=-0.00011062622; - }; - class Item8 - { - dataType="Marker"; - position[]={3707.646,401.99985,5979.29}; - name="outpost_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=47.747215; - id=12; - atlOffset=-0.00015258789; - }; - class Item9 - { - dataType="Marker"; - position[]={4174.2148,324.01001,8945.1338}; - name="factory"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=188.34593; - id=13; - }; - class Item10 - { - dataType="Marker"; - position[]={4509.8682,339,10813.151}; - name="outpost_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=239.93896; - id=14; - }; - class Item11 - { - dataType="Marker"; - position[]={6893.4058,394.42899,11442.252}; - name="outpost_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=75; - b=50; - angle=235.19092; - id=15; - atlOffset=0.00024414063; - }; - class Item12 - { - dataType="Marker"; - position[]={6443.7798,384.659,6541.5562}; - name="outpost_5"; - markerType="RECTANGLE"; - type="rectangle"; - a=30; - b=30; - angle=130.869; - id=16; - atlOffset=0.00012207031; - }; - class Item13 - { - dataType="Marker"; - position[]={6538.251,391.40799,5598.936}; - name="outpost_6"; - markerType="RECTANGLE"; - type="rectangle"; - a=35; - b=35; - angle=48.989975; - id=17; - atlOffset=0.00036621094; - }; - class Item14 - { - dataType="Marker"; - position[]={6566.3701,80.978996,3416.918}; - name="outpost_7"; - markerType="RECTANGLE"; - type="rectangle"; - a=30; - b=30; - id=18; - atlOffset=-0.00033569336; - }; - class Item15 - { - dataType="Marker"; - position[]={10262.573,360.64099,12044.743}; - name="outpost_8"; - markerType="RECTANGLE"; - type="rectangle"; - a=90; - b=60; - id=19; - atlOffset=-1.01474; - }; - class Item16 - { - dataType="Marker"; - position[]={10425.072,6,2581.5081}; - name="factory_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=205.30093; - id=20; - }; - class Item17 - { - dataType="Marker"; - position[]={10063.688,6,1839.64}; - name="resource"; - markerType="RECTANGLE"; - type="rectangle"; - a=90; - b=50; - id=21; - }; - class Item18 - { - dataType="Marker"; - position[]={11241.479,289.20801,4289.915}; - name="outpost_9"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=225.59978; - id=22; - atlOffset=-2.4057922; - }; - class Item19 - { - dataType="Marker"; - position[]={11470.222,221,7510.728}; - name="resource_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=80; - b=50; - angle=97.399902; - id=23; - }; - class Item20 - { - dataType="Marker"; - position[]={9700.9033,298.99799,8918.7803}; - name="resource_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=70; - b=50; - angle=104.40878; - id=24; - atlOffset=-0.00030517578; - }; - class Item21 - { - dataType="Marker"; - position[]={10266.166,168.32201,9522.1777}; - name="resource_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=184.80492; - id=25; - atlOffset=0.00010681152; - }; - class Item22 - { - dataType="Marker"; - position[]={11845.592,148.39,12407.44}; - name="resource_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=200.38896; - id=26; - atlOffset=-0.00032043457; - }; - class Item23 - { - dataType="Marker"; - position[]={11332.412,198.56,12561.539}; - name="outpost_10"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=297.99689; - id=27; - atlOffset=-7.6293945e-005; - }; - class Item24 - { - dataType="Marker"; - position[]={12932.55,209.89301,12766.217}; - name="outpost_11"; - markerType="RECTANGLE"; - type="rectangle"; - a=30; - b=30; - id=28; - atlOffset=0.00024414063; - }; - class Item25 - { - dataType="Marker"; - position[]={12761.23,6,9655.4131}; - name="resource_5"; - markerType="RECTANGLE"; - type="rectangle"; - a=110; - b=70; - angle=191.55794; - id=29; - }; - class Item26 - { - dataType="Marker"; - position[]={12864.428,6.013,9951.4932}; - name="factory_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=85; - b=50; - angle=100.412; - id=30; - atlOffset=0.00021314621; - }; - class Item27 - { - dataType="Marker"; - position[]={13076.021,6,7083.8721}; - name="factory_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=90; - b=50; - angle=73.819817; - id=31; - }; - class Item28 - { - dataType="Marker"; - position[]={12927.736,15,7003.2041}; - name="outpost_12"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=170.78795; - id=32; - atlOffset=-0.00034427643; - }; - class Item29 - { - dataType="Marker"; - position[]={13276.935,10.119,6120.0742}; - name="resource_6"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=58.644993; - id=33; - atlOffset=0.00021839142; - }; - class Item30 - { - dataType="Marker"; - position[]={13006.055,130.38901,5966.5962}; - name="outpost_13"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=212.11694; - id=34; - atlOffset=0.00012207031; - }; - class Item31 - { - dataType="Marker"; - position[]={13469.644,71.769997,3345.7439}; - name="outpost_14"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=141.42493; - id=35; - atlOffset=0.00019073486; - }; - class Item32 - { - dataType="Marker"; - position[]={6283.6748,82.899002,3787.825}; - name="outpost_15"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=75; - angle=99.916; - id=36; - atlOffset=0.00040435791; - }; - class Item33 - { - dataType="Marker"; - position[]={6498.6138,6,2617.9641}; - name="factory_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=120; - b=90; - angle=130.13901; - id=37; - }; - class Item34 - { - dataType="Marker"; - position[]={6240.0112,5.4920001,2208.729}; - name="resource_7"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=149.799; - id=38; - atlOffset=0.00037527084; - }; - class Item35 - { - dataType="Marker"; - position[]={7669.9839,214.37,5151.083}; - name="outpost_16"; - markerType="RECTANGLE"; - type="rectangle"; - a=30; - b=70; - angle=113.13399; - id=39; - atlOffset=-0.00010681152; - }; - class Item36 - { - dataType="Marker"; - position[]={6290.9033,301.06985,7720.3315}; - name="outpost_17"; - markerType="RECTANGLE"; - type="rectangle"; - a=80; - b=40; - angle=213.73801; - id=40; - }; - class Item37 - { - dataType="Marker"; - position[]={9665.4102,85,13528.062}; - name="resource_8"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=147.22701; - id=41; - }; - class Item38 - { - dataType="Marker"; - position[]={8848.084,214,11655.463}; - name="outpost_18"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=100.45999; - id=42; - atlOffset=0.00061035156; - }; - class Item39 - { - dataType="Marker"; - position[]={3608.9541,6.5879998,2173.772}; - name="seaport"; - markerType="RECTANGLE"; - type="rectangle"; - a=67; - b=53; - angle=106.133; - id=46; - atlOffset=-0.00044679642; - }; - class Item40 - { - dataType="Marker"; - position[]={6938.8472,6.013,2346.9451}; - name="seaport_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=80; - b=50; - angle=138.239; - id=47; - atlOffset=0.00021314621; - }; - class Item41 - { - dataType="Marker"; - position[]={10393.332,3.026,1854.468}; - name="seaport_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=48; - atlOffset=0.00047588348; - }; - class Item42 - { - dataType="Marker"; - position[]={13506.58,4.4954515,6322.4321}; - name="seaport_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=70; - b=50; - angle=96.268379; - id=49; - }; - class Item43 - { - dataType="Marker"; - position[]={13137.593,6.0810547,10302.519}; - name="resource_9"; - markerType="RECTANGLE"; - type="rectangle"; - a=80; - b=40; - angle=285.767; - id=50; - }; - class Item44 - { - dataType="Marker"; - position[]={13041.32,6,10049.62}; - name="seaport_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=70; - b=50; - angle=110.88124; - id=51; - }; - class Item45 - { - dataType="Marker"; - position[]={12277.556,33.997002,9145.0635}; - name="outpost_19"; - markerType="RECTANGLE"; - type="rectangle"; - a=70; - b=50; - angle=59.917976; - id=52; - atlOffset=0.00049591064; - }; - class Item46 - { - dataType="Marker"; - position[]={12832.796,5.698,8783.2383}; - name="control"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=53; - atlOffset=-2.9563904e-005; - }; - class Item47 - { - dataType="Marker"; - position[]={11905.027,59.120438,9013.168}; - name="control_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=54; - atlOffset=-3.0517578e-005; - }; - class Item48 - { - dataType="Marker"; - position[]={10899.459,233.37083,11626.339}; - name="control_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=55; - atlOffset=-3.0517578e-005; - }; - class Item49 - { - dataType="Marker"; - position[]={10425.649,173.87366,9168.1826}; - name="control_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=56; - atlOffset=-3.0517578e-005; - }; - class Item50 - { - dataType="Marker"; - position[]={13122.311,6.1243606,7316.707}; - name="control_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=57; - atlOffset=-2.9563904e-005; - }; - class Item51 - { - dataType="Marker"; - position[]={13386.251,5.5412846,5473.9419}; - name="control_5"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=58; - }; - class Item52 - { - dataType="Marker"; - position[]={11860.865,6.2993064,3457.7217}; - name="control_6"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=59; - atlOffset=-2.9563904e-005; - }; - class Item53 - { - dataType="Marker"; - position[]={10210.945,58.036556,4034.8215}; - name="control_7"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=60; - atlOffset=-3.0517578e-005; - }; - class Item54 - { - dataType="Marker"; - position[]={9435.4189,5.8964725,2048.6206}; - name="control_8"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=61; - atlOffset=-2.9563904e-005; - }; - class Item55 - { - dataType="Marker"; - position[]={6291.395,28.154409,3376.8586}; - name="control_9"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=62; - }; - class Item56 - { - dataType="Marker"; - position[]={3702.2046,6.6223607,2488.6829}; - name="control_10"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=63; - }; - class Item57 - { - dataType="Marker"; - position[]={2661.8247,221.79205,5583.6392}; - name="control_11"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=64; - atlOffset=-3.0517578e-005; - }; - class Item58 - { - dataType="Marker"; - position[]={3128.1082,298.70691,8066.7251}; - name="control_12"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=65; - atlOffset=-3.0517578e-005; - }; - class Item59 - { - dataType="Marker"; - position[]={5132.0713,345.54288,8615.3408}; - name="control_13"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=66; - atlOffset=-3.0517578e-005; - }; - class Item60 - { - dataType="Marker"; - position[]={5060.5571,258.3627,6744.2349}; - name="control_14"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=67; - atlOffset=-3.0517578e-005; - }; - class Item61 - { - dataType="Marker"; - position[]={9467.0781,195.077,4417.0298}; - name="control_15"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=69; - atlOffset=-0.52865601; - }; - class Item62 - { - dataType="Marker"; - position[]={8751.9951,269.42239,5351.2114}; - name="control_16"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=70; - atlOffset=-0.52865601; - }; - class Item63 - { - dataType="Marker"; - position[]={10919.603,223.7363,3935.2534}; - name="control_17"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=71; - atlOffset=-0.52865601; - }; - class Item64 - { - dataType="Marker"; - position[]={12130.07,98.910156,4193.022}; - name="control_18"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=72; - atlOffset=-0.52865601; - }; - class Item65 - { - dataType="Marker"; - position[]={13005.596,129.54488,4887.0337}; - name="control_19"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=73; - atlOffset=-0.52865601; - }; - class Item66 - { - dataType="Marker"; - position[]={11972.051,105.46842,5060.0024}; - name="control_20"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=74; - atlOffset=-0.52865601; - }; - class Item67 - { - dataType="Marker"; - position[]={12036.114,145.43706,5965.4233}; - name="control_21"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=75; - atlOffset=-0.52865601; - }; - class Item68 - { - dataType="Marker"; - position[]={10985.485,207.30542,6140.5288}; - name="control_22"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=76; - atlOffset=-0.52865601; - }; - class Item69 - { - dataType="Marker"; - position[]={10227.41,232.15984,6554.8013}; - name="control_23"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=77; - atlOffset=-0.52865601; - }; - class Item70 - { - dataType="Marker"; - position[]={9101.5146,252.49112,6775.3618}; - name="control_24"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=78; - atlOffset=-0.52865601; - }; - class Item71 - { - dataType="Marker"; - position[]={9165.9092,244.23141,7750.748}; - name="control_25"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=79; - atlOffset=-0.52865601; - }; - class Item72 - { - dataType="Marker"; - position[]={8065.522,441.07968,7813.2495}; - name="control_26"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=80; - atlOffset=-0.52865601; - }; - class Item73 - { - dataType="Marker"; - position[]={5347.1377,250.2849,4647.0244}; - name="control_27"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=81; - atlOffset=-0.52865601; - }; - class Item74 - { - dataType="Marker"; - position[]={8135.2402,145.75612,4069.1785}; - name="control_28"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=82; - atlOffset=-0.52865601; - }; - class Item75 - { - dataType="Marker"; - position[]={5419.3701,272.93274,6255.3569}; - name="control_29"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=83; - atlOffset=-0.52865601; - }; - class Item76 - { - dataType="Marker"; - position[]={1307.5614,310.07672,8442.0205}; - name="control_30"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=84; - atlOffset=-0.52865601; - }; - class Item77 - { - dataType="Marker"; - position[]={1760.2065,200.40744,6939.624}; - name="control_31"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=85; - atlOffset=-0.52865601; - }; - class Item78 - { - dataType="Marker"; - position[]={1766.9169,276.35355,5915.0444}; - name="control_32"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=86; - atlOffset=-0.52865601; - }; - class Item79 - { - dataType="Marker"; - position[]={8881.3301,101.77972,3229.3672}; - name="control_33"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=87; - atlOffset=-0.52866364; - }; - class Item80 - { - dataType="Marker"; - position[]={11438.542,186.38509,8612.5342}; - name="control_34"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=88; - atlOffset=-0.52865601; - }; - class Item81 - { - dataType="Marker"; - position[]={10170.797,193.02316,11180.602}; - name="control_35"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=89; - atlOffset=-0.52865601; - }; - class Item82 - { - dataType="Marker"; - position[]={11275.662,195.52876,10898.277}; - name="control_36"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=90; - atlOffset=-0.52865601; - }; - class Item83 - { - dataType="Marker"; - position[]={12190.503,124.89822,11606.804}; - name="control_37"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=91; - atlOffset=-0.52865601; - }; - class Item84 - { - dataType="Marker"; - position[]={13784.009,36.270542,12570.509}; - name="control_38"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=92; - atlOffset=-0.52865601; - }; - class Item85 - { - dataType="Marker"; - position[]={13463.68,26.996731,11533.509}; - name="control_39"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=93; - atlOffset=-0.52865601; - }; - class Item86 - { - dataType="Marker"; - position[]={6576.9614,264.66397,4408.6304}; - name="control_40"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=94; - atlOffset=-0.52865601; - }; - class Item87 - { - dataType="Marker"; - position[]={8390.4043,291.96371,5976.2827}; - name="Synd_HQ"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=97; - }; - class Item88 - { - dataType="Marker"; - position[]={8391.7373,2.7037606e+012,5978.4614}; - name="respawn_guerrila"; - text="Your Headquarters"; - type="hd_flag"; - colorName="ColorGUER"; - id=98; - atlOffset=2.7037606e+012; - }; - class Item89 - { - dataType="Object"; - class PositionInfo - { - position[]={8393.2344,292.96362,5958.5586}; - angles[]={6.2818937,5.6506429,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="mapX"; - }; - id=100; - type="MapBoard_seismic_F"; - }; - class Item90 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8390.6523,291.99216,5955.6006}; - angles[]={0,2.6249228,0}; - }; - side="Independent"; - flags=7; - class Attributes - { - name="petros"; - }; - id=521; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - class Attribute2 - { - property="unitName"; - expression="_this setname _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Petros"; - }; - }; - }; - class Attribute3 - { - property="face"; - expression="_this setface _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="AfricanHead_01"; - }; - }; - }; - nAttributes=4; - }; - }; - }; - class Attributes - { - }; - id=101; - }; - class Item91 - { - dataType="Logic"; - class PositionInfo - { - position[]={8395.7637,291.99866,5948.5063}; - angles[]={0.0012918708,0,0}; - }; - name="server"; - id=103; - type="Logic"; - }; - class Item92 - { - dataType="Logic"; - class PositionInfo - { - position[]={8397.207,291.94138,5946.9736}; - angles[]={6.1721492,0,0}; - }; - name="garrison"; - id=104; - type="Logic"; - atlOffset=3.0517578e-005; - }; - class Item93 - { - dataType="Logic"; - class PositionInfo - { - position[]={8398.9941,291.78299,5945.5527}; - angles[]={6.1721492,0,0}; - }; - name="spawner"; - id=105; - type="Logic"; - atlOffset=6.1035156e-005; - }; - class Item94 - { - dataType="Logic"; - class PositionInfo - { - position[]={8391.4004,291.81079,5945.6855}; - angles[]={6.1792402,0,0}; - }; - name="hc"; - isPlayable=1; - id=106; - type="HeadlessClient_F"; - atlOffset=3.0517578e-005; - }; - class Item95 - { - dataType="Logic"; - class PositionInfo - { - position[]={8400.8691,291.73035,5944.2217}; - angles[]={6.1721487,0,0.10971793}; - }; - name="roadsX"; - id=107; - type="Logic"; - }; - class Item96 - { - dataType="Logic"; - class PositionInfo - { - position[]={8389.9121,291.99747,5949.3984}; - angles[]={0.0012918708,4.511023,0}; - }; - name="HC_commanderX"; - id=108; - type="HighCommand"; - }; - class Item97 - { - dataType="Logic"; - class PositionInfo - { - position[]={8384.2158,291.99918,5948.1191}; - angles[]={0.0012918708,1.3577622,0}; - }; - id=109; - type="HighCommandSubordinate"; - }; - class Item98 - { - dataType="Logic"; - class PositionInfo - { - position[]={8402.2852,291.76544,5943.1377}; - angles[]={6.1721487,0,0.10971793}; - }; - name="timer"; - id=111; - type="Logic"; - atlOffset=6.1035156e-005; - }; - class Item99 - { - dataType="Object"; - class PositionInfo - { - position[]={8396.4219,292.10895,5955.1982}; - angles[]={6.2818937,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="fireX"; - }; - id=171; - type="Land_Camping_Light_F"; - }; - class Item100 - { - dataType="Logic"; - class PositionInfo - { - position[]={8403.5547,291.76572,5941.8857}; - angles[]={6.1721487,0,0.10971793}; - }; - name="sidesX"; - id=172; - type="Logic"; - atlOffset=3.0517578e-005; - }; - class Item101 - { - dataType="Logic"; - class PositionInfo - { - position[]={8404.4658,291.77338,5941.0537}; - angles[]={6.1721487,0,0.10971793}; - }; - name="killZones"; - id=173; - type="Logic"; - atlOffset=6.1035156e-005; - }; - class Item102 - { - dataType="Logic"; - class PositionInfo - { - position[]={8392.4287,291.70807,5944.7012}; - angles[]={6.1792402,0,0}; - }; - name="hc_1"; - isPlayable=1; - id=234; - type="HeadlessClient_F"; - }; - class Item103 - { - dataType="Logic"; - class PositionInfo - { - position[]={8393.374,291.61597,5943.8789}; - angles[]={6.1792407,0,6.2760177}; - }; - name="hc_2"; - isPlayable=1; - id=235; - type="HeadlessClient_F"; - }; - class Item104 - { - dataType="Logic"; - class PositionInfo - { - position[]={8394.3525,291.51663,5942.9941}; - angles[]={6.1792407,0,6.2760177}; - }; - name="hc_3"; - isPlayable=1; - id=236; - type="HeadlessClient_F"; - }; - class Item105 - { - dataType="Logic"; - class PositionInfo - { - position[]={8395.6787,291.41266,5942.0879}; - angles[]={6.1792407,0,6.2760177}; - }; - name="hc_4"; - isPlayable=1; - id=237; - type="HeadlessClient_F"; - }; - class Item106 - { - dataType="Logic"; - class PositionInfo - { - position[]={8396.3809,291.33923,5941.4326}; - angles[]={6.1792407,0,6.2760177}; - }; - name="hc_5"; - isPlayable=1; - id=238; - type="HeadlessClient_F"; - }; - class Item107 - { - dataType="Object"; - class PositionInfo - { - position[]={8399.1768,295.97424,5960.584}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="flagX"; - }; - id=110; - type="Flag_Syndikat_F"; - }; - class Item108 - { - dataType="Object"; - class PositionInfo - { - position[]={8399.9658,292.8862,5952.1558}; - angles[]={0.0012918708,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="boxX"; - }; - id=244; - type="I_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[""launch_RPG32_F"",""arifle_TRG20_F"",""arifle_TRG21_F"",""arifle_TRG21_GL_F"",""srifle_DMR_06_camo_F"",""srifle_DMR_06_olive_F"",""LMG_Mk200_F""],[1,1,4,1,1,1,2]],[[""30Rnd_556x45_Stanag"",""200Rnd_65x39_cased_Box"",""20Rnd_762x51_Mag"",""1Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_blue"",""RPG32_F"",""RPG32_HE_F"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F""],[24,6,12,6,2,2,6,3,1,6,6,2,2,2,2]],[[""Binocular"",""Rangefinder"",""FirstAidKit"",""acc_flashlight"",""bipod_03_F_oli"",""V_Chestrig_oli"",""V_TacVest_blk""],[1,1,10,2,2,4,4]],[[""B_TacticalPack_blk""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item109 - { - dataType="Marker"; - position[]={4994.9111,338.98999,9944.5459}; - name="outpost_20"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - angle=239.93896; - id=251; - }; - class Item110 - { - dataType="Marker"; - position[]={2006.2531,546.06097,15795.008}; - name="respawn_east"; - type="flag_CSAT"; - id=252; - atlOffset=-0.00054931641; - }; - class Item111 - { - dataType="Marker"; - position[]={-342.49301,81.709999,1623.696}; - name="respawn_west"; - type="flag_NATO"; - id=253; - atlOffset=-0.00051879883; - }; - class Item112 - { - dataType="Marker"; - position[]={24.004,5.4130001,1591.299}; - name="NATO_carrier"; - type="flag_NATO"; - id=254; - atlOffset=0.00024938583; - }; - class Item113 - { - dataType="Marker"; - position[]={2294.031,512.60602,15317.179}; - name="CSAT_carrier"; - type="flag_CSAT"; - id=255; - atlOffset=-5.8961792; - }; - class Item114 - { - dataType="Marker"; - position[]={258.70099,5.3889999,1621.2531}; - name="road"; - type="mil_arrow"; - angle=88.853943; - id=256; - atlOffset=-0.00031852722; - }; - class Item115 - { - dataType="Marker"; - position[]={939.92346,5.7131801,2027.6239}; - name="road_1"; - type="mil_arrow"; - angle=30.963726; - id=257; - atlOffset=-0.00031852722; - }; - class Item116 - { - dataType="Marker"; - position[]={1598.9821,5.891304,2241.0452}; - name="road_2"; - type="mil_arrow"; - angle=103.3924; - id=258; - atlOffset=-1.4724927; - }; - class Item117 - { - dataType="Marker"; - position[]={3345.2864,5.6333976,2305.1523}; - name="road_3"; - type="mil_arrow"; - angle=43.965599; - id=259; - atlOffset=-0.00031852722; - }; - class Item118 - { - dataType="Marker"; - position[]={4090.6475,6.0570912,2612.2219}; - name="road_4"; - type="mil_arrow"; - angle=101.1778; - id=260; - atlOffset=-0.00031852722; - }; - class Item119 - { - dataType="Marker"; - position[]={2662.3796,121.82533,2974.5503}; - name="road_5"; - type="mil_arrow"; - angle=4.8738437; - id=261; - atlOffset=-0.00032043457; - }; - class Item120 - { - dataType="Marker"; - position[]={1957.3148,140.93176,3838.4729}; - name="road_6"; - type="mil_arrow"; - angle=292.26508; - id=262; - atlOffset=-0.00032043457; - }; - class Item121 - { - dataType="Marker"; - position[]={2059.2329,200.65611,4674.1206}; - name="road_7"; - type="mil_arrow"; - angle=43.505791; - id=263; - atlOffset=-0.00032043457; - }; - class Item122 - { - dataType="Marker"; - position[]={2683.6555,231.61018,5758.2173}; - name="road_8"; - type="mil_arrow"; - angle=9.0245171; - id=264; - atlOffset=-0.00032043457; - }; - class Item123 - { - dataType="Marker"; - position[]={2721.6721,362.37604,6704.5928}; - name="road_9"; - type="mil_arrow"; - angle=355.36441; - id=265; - atlOffset=-0.00030517578; - }; - class Item124 - { - dataType="Marker"; - position[]={3195.0691,290.06183,8138.4082}; - name="road_10"; - type="mil_arrow"; - angle=37.844521; - id=266; - atlOffset=-0.00030517578; - }; - class Item125 - { - dataType="Marker"; - position[]={2198.103,483.35318,15009.752}; - name="road_11"; - type="mil_arrow"; - angle=181.73544; - id=267; - atlOffset=-0.00030517578; - }; - class Item126 - { - dataType="Marker"; - position[]={1401.7804,410.37631,14147.957}; - name="road_12"; - type="mil_arrow"; - angle=240.74304; - id=268; - atlOffset=-0.00030517578; - }; - class Item127 - { - dataType="Marker"; - position[]={608.33936,374.29495,13812.72}; - name="road_13"; - type="mil_arrow"; - angle=143.13023; - id=269; - atlOffset=-0.00030517578; - }; - class Item128 - { - dataType="Marker"; - position[]={1703.2456,280.41479,12664.974}; - name="road_14"; - type="mil_arrow"; - angle=153.32985; - id=270; - atlOffset=-5.0085754; - }; - class Item129 - { - dataType="Marker"; - position[]={2122.0762,252.93306,11368.781}; - name="road_15"; - type="mil_arrow"; - angle=152.50713; - id=271; - }; - class Item130 - { - dataType="Marker"; - position[]={2394.7847,273.40186,10390.532}; - name="road_16"; - type="mil_arrow"; - angle=138.85368; - id=272; - atlOffset=-0.00030517578; - }; - class Item131 - { - dataType="Marker"; - position[]={4460.8945,323.60547,8903.4063}; - name="road_17"; - type="mil_arrow"; - angle=173.95586; - id=273; - atlOffset=-0.00030517578; - }; - class Item132 - { - dataType="Marker"; - position[]={5525.1362,335.08444,8358.3604}; - name="road_18"; - type="mil_arrow"; - angle=130.01761; - id=274; - atlOffset=-0.00030517578; - }; - class Item133 - { - dataType="Marker"; - position[]={6894.6445,289.19427,7629.083}; - name="road_19"; - type="mil_arrow"; - angle=64.816978; - id=275; - atlOffset=-0.00030517578; - }; - class Item134 - { - dataType="Marker"; - position[]={5533.5454,5.7996817,2071.8228}; - name="road_20"; - type="mil_arrow"; - angle=66.925438; - id=276; - atlOffset=-0.00031852722; - }; - class Item135 - { - dataType="Marker"; - position[]={6643.0728,6.0210361,2931.645}; - name="road_21"; - type="mil_arrow"; - angle=60.499027; - id=277; - atlOffset=-0.00031852722; - }; - class Item136 - { - dataType="Marker"; - position[]={8412.9277,5.9941444,2937.2261}; - name="road_22"; - type="mil_arrow"; - angle=150.56462; - id=278; - atlOffset=-0.00031852722; - }; - class Item137 - { - dataType="Marker"; - position[]={9978.6836,5.9995394,2060.1489}; - name="road_23"; - type="mil_arrow"; - angle=62.230412; - id=279; - atlOffset=-0.00031852722; - }; - class Item138 - { - dataType="Marker"; - position[]={7092.5332,255.47208,6494.1597}; - name="road_24"; - type="mil_arrow"; - angle=162.60255; - id=280; - atlOffset=-0.00032043457; - }; - class Item139 - { - dataType="Marker"; - position[]={7521.0562,210.89975,5020.7319}; - name="road_25"; - type="mil_arrow"; - angle=144.19211; - id=281; - atlOffset=-0.00032043457; - }; - class Item140 - { - dataType="Marker"; - position[]={9039.4492,114.40299,4929.6533}; - name="road_26"; - type="mil_arrow"; - angle=88.853943; - id=282; - atlOffset=-0.00032043457; - }; - class Item141 - { - dataType="Marker"; - position[]={10161.726,69.612511,4084.5254}; - name="road_27"; - type="mil_arrow"; - angle=139.01399; - id=283; - atlOffset=-0.00032043457; - }; - class Item142 - { - dataType="Marker"; - position[]={11236.721,5.5773349,3253.1726}; - name="road_28"; - type="mil_arrow"; - angle=63.165874; - id=284; - atlOffset=-0.00031852722; - }; - class Item143 - { - dataType="Marker"; - position[]={13271.227,5.4616613,4017.5564}; - name="road_29"; - type="mil_arrow"; - angle=33.934391; - id=285; - atlOffset=-0.00031852722; - }; - class Item144 - { - dataType="Marker"; - position[]={13415.135,5.6989894,5928.4902}; - name="road_30"; - type="mil_arrow"; - angle=8.5305576; - id=286; - atlOffset=-0.00031852722; - }; - class Item145 - { - dataType="Marker"; - position[]={13045.818,5.7396812,7838.7095}; - name="road_31"; - type="mil_arrow"; - angle=357.37994; - id=287; - atlOffset=-0.00031852722; - }; - class Item146 - { - dataType="Marker"; - position[]={11176.414,197.88971,12129.997}; - name="road_32"; - type="mil_arrow"; - angle=210.06854; - id=288; - atlOffset=-0.00032043457; - }; - class Item147 - { - dataType="Marker"; - position[]={10815.897,169.952,11012.247}; - name="road_33"; - type="mil_arrow"; - angle=196.04909; - id=289; - atlOffset=-0.00032043457; - }; - class Item148 - { - dataType="Marker"; - position[]={10475.061,114.88372,10000.765}; - name="road_34"; - type="mil_arrow"; - angle=182.63902; - id=290; - atlOffset=-0.00032043457; - }; - class Item149 - { - dataType="Marker"; - position[]={10389.865,164.69736,9223.4395}; - name="road_35"; - type="mil_arrow"; - angle=152.52263; - id=291; - }; - class Item150 - { - dataType="Marker"; - position[]={9664.209,294.83313,8796.6426}; - name="road_36"; - type="mil_arrow"; - angle=279.66013; - id=292; - atlOffset=-0.00030517578; - }; - class Item151 - { - dataType="Marker"; - position[]={11262.418,101.19296,9363.6436}; - name="road_37"; - type="mil_arrow"; - angle=75.367722; - id=293; - atlOffset=-0.00032043457; - }; - class Item152 - { - dataType="Marker"; - position[]={12241.645,18.431227,9482.9922}; - name="road_38"; - type="mil_arrow"; - angle=45.44635; - id=294; - atlOffset=0.07661438; - }; - class Item153 - { - dataType="Marker"; - position[]={2190.8621,265.35001,10795.169}; - name="outpost_21"; - markerType="RECTANGLE"; - type="rectangle"; - a=100; - b=100; - angle=150.44699; - id=295; - atlOffset=0.00045776367; - }; - class Item154 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8395.0713,291.99744,5950.543}; - }; - side="Independent"; - flags=7; - class Attributes - { - name="commanderX"; - description="Defualt Commander"; - isPlayer=1; - isPlayable=1; - }; - id=467; - type="I_G_Soldier_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=466; - }; - class Item155 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=8; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8407.3643,291.99332,5956.4683}; - }; - side="Independent"; - flags=7; - class Attributes - { - description="Team Leader"; - isPlayable=1; - }; - id=476; - type="I_G_Soldier_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={8409.6611,291.99414,5957.0942}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman AT"; - isPlayable=1; - }; - id=477; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8411.6924,291.99457,5957.4063}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Marksman"; - isPlayable=1; - }; - id=478; - type="I_G_Soldier_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8413.6064,291.99463,5957.4541}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Machine Gunner"; - isPlayable=1; - }; - id=479; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={8415.8555,291.99478,5957.5684}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sapper"; - isPlayable=1; - }; - id=480; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={8418.0557,291.99545,5958.0566}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sniper"; - isPlayable=1; - }; - id=481; - type="I_G_Sharpshooter_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={8420.1377,291.99591,5958.4155}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Medic"; - isPlayable=1; - }; - id=482; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={8422.3594,291.99646,5958.8208}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman"; - isPlayable=1; - }; - id=483; - type="I_G_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=475; - }; - class Item156 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=8; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8407.7207,291.99191,5954.6909}; - }; - side="Independent"; - flags=7; - class Attributes - { - description="Team Leader"; - isPlayable=1; - }; - id=485; - type="I_G_Soldier_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={8410.0176,291.99179,5955.3169}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman AT"; - isPlayable=1; - }; - id=486; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8412.0488,291.99219,5955.6289}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Marksman"; - isPlayable=1; - }; - id=487; - type="I_G_Soldier_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8413.9629,291.99225,5955.6768}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Machine Gunner"; - isPlayable=1; - }; - id=488; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={8416.2119,291.9924,5955.791}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sapper"; - isPlayable=1; - }; - id=489; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={8418.4121,291.99307,5956.2793}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sniper"; - isPlayable=1; - }; - id=490; - type="I_G_Sharpshooter_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={8420.4941,291.99353,5956.6382}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Medic"; - isPlayable=1; - }; - id=491; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={8422.7158,291.99435,5957.0435}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman"; - isPlayable=1; - }; - id=492; - type="I_G_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=484; - }; - class Item157 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=8; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8407.9873,291.99432,5952.8745}; - }; - side="Independent"; - flags=7; - class Attributes - { - description="Team Leader"; - isPlayable=1; - }; - id=494; - type="I_G_Soldier_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={8410.2842,291.9935,5953.5005}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman AT"; - isPlayable=1; - }; - id=495; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8412.3154,291.99307,5953.8125}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Marksman"; - isPlayable=1; - }; - id=496; - type="I_G_Soldier_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8414.2295,291.99301,5953.8604}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Machine Gunner"; - isPlayable=1; - }; - id=497; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={8416.4785,291.99286,5953.9746}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sapper"; - isPlayable=1; - }; - id=498; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={8418.6787,291.99222,5954.4629}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sniper"; - isPlayable=1; - }; - id=499; - type="I_G_Sharpshooter_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={8420.7607,291.99173,5954.8218}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Medic"; - isPlayable=1; - }; - id=500; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={8422.9824,292.22073,5955.2271}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman"; - isPlayable=1; - }; - id=501; - type="I_G_Soldier_F"; - atlOffset=0.22842407; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=493; - }; - class Item158 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=8; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8408.6904,291.99673,5951.0796}; - }; - side="Independent"; - flags=7; - class Attributes - { - description="Team Leader"; - isPlayable=1; - }; - id=503; - type="I_G_Soldier_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={8410.9873,291.99588,5951.7056}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman AT"; - isPlayable=1; - }; - id=504; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8413.0186,291.99548,5952.0176}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Marksman"; - isPlayable=1; - }; - id=505; - type="I_G_Soldier_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8414.9326,291.99542,5952.0654}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Machine Gunner"; - isPlayable=1; - }; - id=506; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={8417.1816,291.99527,5952.1797}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sapper"; - isPlayable=1; - }; - id=507; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={8419.3818,291.9946,5952.668}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sniper"; - isPlayable=1; - }; - id=508; - type="I_G_Sharpshooter_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={8421.4639,291.99411,5953.0269}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Medic"; - isPlayable=1; - }; - id=509; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={8423.6855,291.83392,5953.4321}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman"; - isPlayable=1; - }; - id=510; - type="I_G_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=502; - }; - class Item159 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=8; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8409.1514,291.9993,5949.1543}; - }; - side="Independent"; - flags=7; - class Attributes - { - description="Team Leader"; - isPlayable=1; - }; - id=512; - type="I_G_Soldier_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={8411.4482,291.99844,5949.7803}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman AT"; - isPlayable=1; - }; - id=513; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8413.4795,291.99805,5950.0923}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Marksman"; - isPlayable=1; - }; - id=514; - type="I_G_Soldier_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8415.3936,291.99799,5950.1401}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Machine Gunner"; - isPlayable=1; - }; - id=515; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={8417.6426,291.99783,5950.2544}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sapper"; - isPlayable=1; - }; - id=516; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={8419.8428,291.99716,5950.7427}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sniper"; - isPlayable=1; - }; - id=517; - type="I_G_Sharpshooter_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={8421.9248,291.9967,5951.1016}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Medic"; - isPlayable=1; - }; - id=518; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={8424.1465,291.77435,5951.5068}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman"; - isPlayable=1; - }; - id=519; - type="I_G_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=511; - }; - class Item160 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=7; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8409.3545,291.99661,5958.9424}; - }; - side="Independent"; - flags=7; - class Attributes - { - description="Rifleman AT"; - isPlayable=1; - }; - id=468; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={8411.3857,291.99704,5959.2544}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Marksman"; - isPlayable=1; - }; - id=469; - type="I_G_Soldier_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8413.2998,291.9971,5959.3022}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Machine Gunner"; - isPlayable=1; - }; - id=470; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male05GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8415.5488,291.99725,5959.4165}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sapper"; - isPlayable=1; - }; - id=471; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={8417.749,291.99789,5959.9048}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Sniper"; - isPlayable=1; - }; - id=472; - type="I_G_Sharpshooter_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={8419.8311,291.99838,5960.2637}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Medic"; - isPlayable=1; - }; - id=473; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male04GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={8422.0527,291.99893,5960.6689}; - }; - side="Independent"; - flags=5; - class Attributes - { - description="Rifleman"; - isPlayable=1; - }; - id=474; - type="I_G_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=520; - }; - class Item161 - { - dataType="Object"; - class PositionInfo - { - position[]={-327.229,82.898712,1627.0699}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="if !(isMultiplayer) then {deleteVehicle this}"; - }; - id=522; - type="Flag_NATO_F"; - atlOffset=-0.098999023; - }; - class Item162 - { - dataType="Group"; - side="West"; - class Entities - { - items=8; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-326.4498,79.933838,1630.9122}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=543; - type="B_recon_TL_F"; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-321.4498,77.167488,1625.9122}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=544; - type="B_recon_M_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-331.4498,79.691528,1625.9122}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=545; - type="B_recon_medic_F"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-316.4498,74.266655,1620.9122}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=546; - type="B_recon_F"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-336.4498,79.312881,1620.9122}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=547; - type="B_recon_LAT_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-311.4498,71.279984,1615.9122}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=548; - type="B_recon_JTAC_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-341.4498,78.963104,1615.9122}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=549; - type="B_recon_exp_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={-306.4498,68.218231,1610.9122}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=550; - type="B_Recon_Sharpshooter_F"; - }; - }; - class Attributes - { - }; - id=542; - }; - class Item163 - { - dataType="Group"; - side="East"; - class Entities - { - items=8; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={2002.7336,555.86993,15751.207}; - }; - side="East"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=552; - type="O_recon_TL_F"; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={2007.7336,557.9245,15746.207}; - }; - side="East"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=553; - type="O_recon_M_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={1997.7336,555.95007,15746.207}; - }; - side="East"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=554; - type="O_recon_medic_F"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={2012.7336,559.82654,15741.207}; - }; - side="East"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=555; - type="O_recon_F"; - atlOffset=6.1035156e-005; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={1992.7336,556.08191,15741.207}; - }; - side="East"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=556; - type="O_recon_LAT_F"; - atlOffset=6.1035156e-005; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={2017.7336,561.54895,15736.207}; - }; - side="East"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=557; - type="O_recon_JTAC_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={1987.7336,556.17731,15736.207}; - }; - side="East"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=558; - type="O_recon_exp_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={2022.7336,563.01563,15731.207}; - }; - side="East"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setVariable [""pvp"",true]}"; - isPlayable=1; - }; - id=559; - type="O_Pathfinder_F"; - atlOffset=6.1035156e-005; - }; - }; - class Attributes - { - }; - id=551; - }; - class Item164 - { - dataType="Object"; - class PositionInfo - { - position[]={2008.963,561.09143,15751.456}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="if !(isMultiplayer) then {deleteVehicle this}"; - }; - id=560; - type="Flag_CSAT_F"; - atlOffset=0.062927246; - }; - class Item165 - { - dataType="Object"; - class PositionInfo - { - position[]={8399.792,292.78192,5956.5908}; - angles[]={6.2818937,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="vehicleBox"; - }; - id=561; - type="Box_NATO_AmmoVeh_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - class Connections - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=108; - item1=109; - class CustomData - { - type="Sync"; - }; - }; - }; - }; -}; diff --git a/A3-Antistasi/mrkWIN.sqf b/A3-Antistasi/mrkWIN.sqf deleted file mode 100644 index 068babe158..0000000000 --- a/A3-Antistasi/mrkWIN.sqf +++ /dev/null @@ -1,45 +0,0 @@ -private ["_flagX","_pos","_markerX","_positionX","_size","_powerpl","_revealX"]; - -_flagX = _this select 0; -_playerX = _this select 1; - -_pos = getPos _flagX; -_markerX = [markersX,_pos] call BIS_fnc_nearestPosition; -if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) exitWith {}; -_positionX = getMarkerPos _markerX; -_size = [_markerX] call A3A_fnc_sizeMarker; - -if ((!isNull _playerX) and (captive _playerX)) exitWith {hint "You cannot Capture the Flag while Undercover"}; -if ((_markerX in airportsX) and (tierWar < 3)) exitWith {hint "You cannot capture Airports until you reach War Level 3"}; -_revealX = []; -if (!isNull _playerX) then - { - if (_size > 300) then {_size = 300}; - _revealX = []; - { - if (((side _x == Occupants) or (side _x == Invaders)) and ([_x,_markerX] call A3A_fnc_canConquer)) then {_revealX pushBack _x}; - } forEach allUnits; - if (player == _playerX) then - { - _playerX playMove "MountSide"; - sleep 8; - _playerX playMove ""; - {player reveal _x} forEach _revealX; - //[_markerX] call A3A_fnc_intelFound; - }; - }; - -if ((count _revealX) > 2*({([_x,_markerX] call A3A_fnc_canConquer) and (side _x == teamPlayer)} count allUnits)) exitWith {hint "The enemy still outnumber us, check the map and clear the rest of the area"}; -//if (!isServer) exitWith {}; - -{ -if (isPlayer _x) then - { - [5,_x] remoteExec ["A3A_fnc_playerScoreAdd",_x]; - [_markerX] remoteExec ["A3A_fnc_intelFound",_x]; - if (captive _x) then {[_x,false] remoteExec ["setCaptive",0,_x]; _x setCaptive false}; - } -} forEach ([_size,0,_positionX,teamPlayer] call A3A_fnc_distanceUnits); - -//_sideX = if (sidesX getVariable [_markerX,sideUnknown] == Occupants) then {Occupants} else {Invaders}; -[teamPlayer,_markerX] remoteExec ["A3A_fnc_markerChange",2]; diff --git a/A3-Antistasi/musica.sqf b/A3-Antistasi/musica.sqf index e764ffdb75..3f353b4a8d 100644 --- a/A3-Antistasi/musica.sqf +++ b/A3-Antistasi/musica.sqf @@ -85,21 +85,21 @@ while {musicON} do _stance = _newstance; if (_newstance == "COMBAT") then { - _song = _combat call BIS_Fnc_selectRandom; + _song = selectRandom _combat; }; if (_newstance == "STEALTH") then { - _song = _stealth call BIS_Fnc_selectRandom; + _song = selectRandom _stealth; }; if ((_newstance == "AWARE") or (_newstance == "SAFE")) then { if ((daytime > 18) or (daytime < 6)) then { - _song = _normalNight call BIS_Fnc_selectRandom; + _song = selectRandom _normalNight; }; if ((daytime > 5) or (daytime < 19)) then { - _song = _normalDay call BIS_Fnc_selectRandom; + _song = selectRandom _normalDay; }; }; exchangeMUS = true; diff --git a/A3-Antistasi/onPlayerRespawn.sqf b/A3-Antistasi/onPlayerRespawn.sqf index 59f13df338..469155e2d7 100644 --- a/A3-Antistasi/onPlayerRespawn.sqf +++ b/A3-Antistasi/onPlayerRespawn.sqf @@ -24,11 +24,10 @@ if (side group player == teamPlayer) then _score = _oldUnit getVariable ["score",0]; _punish = _oldUnit getVariable ["punish",0]; _moneyX = _oldUnit getVariable ["moneyX",0]; - _moneyX = round (_moneyX - (_moneyX * 0.1)); + _moneyX = round (_moneyX - (_moneyX * 0.15)); _eligible = _oldUnit getVariable ["eligible",true]; _rankX = _oldUnit getVariable ["rankX","PRIVATE"]; - _moneyX = round (_moneyX - (_moneyX * 0.05)); if (_moneyX < 0) then {_moneyX = 0}; _newUnit setVariable ["score",_score -1,true]; @@ -64,9 +63,9 @@ if (side group player == teamPlayer) then {_newUnit removeWeaponGlobal _x} forEach weapons _newUnit; removeBackpackGlobal _newUnit; removeVest _newUnit; - if ((not("ItemGPS" in unlockedItems)) and ("ItemGPS" in (assignedItems _newUnit))) then {_newUnit unlinkItem "ItemGPS"}; - private _radio = player call A3A_fnc_getRadio; - if (!haveRadio && _radio != "") then {player unlinkItem _radio}; + removeAllAssignedItems _newUnit; + //Give them a map, in case they're commander and need to replace petros. + _newUnit linkItem "ItemMap"; if (!isPlayer (leader group player)) then {(group player) selectLeader player}; player addEventHandler ["FIRED", { @@ -161,30 +160,28 @@ if (side group player == teamPlayer) then _control }]; */ - if (tkPunish) then + private _firedHandlerTk = { - private _firedHandlerTk = { - _typeX = _this select 1; - if ((_typeX == "Put") or (_typeX == "Throw")) then + _typeX = _this select 1; + if ((_typeX == "Put") or (_typeX == "Throw")) then + { + if (player distance petros < 50) then { - if (player distance petros < 50) then + deleteVehicle (_this select 6); + if (_typeX == "Put") then { - deleteVehicle (_this select 6); - if (_typeX == "Put") then + if (player distance petros < 10) then { - if (player distance petros < 10) then - { - [player, 20, 0.34] remoteExec ["A3A_fnc_punishment",player]; - }; + [player, 20, 0.34, petros] remoteExec ["A3A_fnc_punishment",player]; }; }; }; }; - player addEventHandler ["Fired", _firedHandlerTk]; - if (hasACE) then - { - ["ace_firedPlayer", _firedHandlerTk ] call CBA_fnc_addEventHandler; - }; + }; + player addEventHandler ["Fired", _firedHandlerTk]; + if (hasACE) then + { + ["ace_firedPlayer", _firedHandlerTk ] call CBA_fnc_addEventHandler; }; player addEventHandler ["HandleHeal", { @@ -241,7 +238,7 @@ if (side group player == teamPlayer) then [_bag2] call A3A_fnc_AIVEHinit; } ]; - [true] execVM "reinitY.sqf"; + [true] spawn A3A_fnc_reinitY; [player] execVM "OrgPlayers\unitTraits.sqf"; [] spawn A3A_fnc_statistics; } diff --git a/A3-Antistasi/orgPlayers/assignStavros.sqf b/A3-Antistasi/orgPlayers/assignStavros.sqf deleted file mode 100644 index c1f47e21f8..0000000000 --- a/A3-Antistasi/orgPlayers/assignStavros.sqf +++ /dev/null @@ -1,111 +0,0 @@ -params [["_suggestedLeader",objNull]]; -private ["_puntMax","_textX","_multiplier","_newRank","_selectable","_disconnected","_owner","_pointsX","_dataX"]; -_puntMax = 0; -_textX = ""; -_multiplier = 1; -//_newRank = "CORPORAL"; -_disconnected = false; - -_playersX = []; -_membersX = []; -_eligibles = []; - -_LeaderX = objNull; - -{ - _playersX pushBack (_x getVariable ["owner",_x]); - if (_x == _x getVariable ["owner", _x] && isPlayer _x) then { - if ([_x] call A3A_fnc_isMember) then - { - _membersX pushBack _x; - if (_x getVariable ["eligible",true]) then - { - _eligibles pushBack _x; - if (_x == theBoss) then - { - _LeaderX = _x; - _dataX = [_LeaderX] call A3A_fnc_numericRank; - _puntMax = _dataX select 0; - }; - }; - }; - }; -} forEach (playableUnits select {(side (group _x) == teamPlayer)}); - -if (isNull _LeaderX) then -{ - _puntMax = 0; - _disconnected = true; -}; -_textX = "Promoted Players:\n\n"; -_promoted = false; -{ - _pointsX = _x getVariable ["score",0]; - _dataX = [_x] call A3A_fnc_numericRank; - _multiplier = _dataX select 0; - _newRank = _dataX select 1; - _rank = _x getVariable ["rankX","PRIVATE"]; - if (_rank != "COLONEL") then - { - if (_pointsX >= 50*_multiplier) then - { - _promoted = true; - [_x,_newRank] remoteExec ["A3A_fnc_ranksMP"]; - _x setVariable ["rankX",_newRank,true]; - _textX = format ["%3%1: %2.\n",name _x,_newRank,_textX]; - [-1*(50*_multiplier),_x] call A3A_fnc_playerScoreAdd; - _multiplier = _multiplier + 1; - sleep 5; - }; - }; -} forEach _playersX; - -if (_promoted) then -{ - _textX = format ["%1\n\nCONGRATULATIONS!!",_textX]; - [petros,"hint",_textX] remoteExec ["A3A_fnc_commsMP"]; -}; - -_proceed = false; - -if ((isNull _LeaderX) or switchCom) then -{ - if (count _membersX > 0) then - { - _proceed = true; - if (count _eligibles == 0) then {_eligibles = _membersX}; - }; -}; - -if (!_proceed) exitWith {}; - -_selectable = objNull; -if (!isNull _suggestedLeader && {_suggestedLeader in _eligibles}) then -{ - if (_suggestedLeader != _LeaderX) then - { - _dataX = [_suggestedLeader] call A3A_fnc_numericRank; - _selectable = _suggestedLeader; - _puntMax = _dataX select 0; - }; -} -else -{ - { - _dataX = [_x] call A3A_fnc_numericRank; - _multiplier = _dataX select 0; - if ((_multiplier > _puntMax) and (_x!=_LeaderX)) then - { - _selectable = _x; - _puntMax = _multiplier; - }; - } forEach _eligibles; -}; - -if (!isNull _selectable) then -{ - if (_disconnected) then {_textX = format ["Player Commander disconnected or renounced. %1 is our new leader. Greet him!", name _selectable]} else {_textX = format ["%1 is no longer leader of the our Forces.\n\n %2 is our new leader. Greet him!", name theBoss, name _selectable]}; - [_selectable] call A3A_fnc_theBossInit; - sleep 5; - [[petros,"hint",_textX],"A3A_fnc_commsMP"] call BIS_fnc_MP; -}; diff --git a/A3-Antistasi/orgPlayers/commResign.sqf b/A3-Antistasi/orgPlayers/commResign.sqf deleted file mode 100644 index db27644807..0000000000 --- a/A3-Antistasi/orgPlayers/commResign.sqf +++ /dev/null @@ -1,27 +0,0 @@ -_playerX = player getVariable ["owner",player]; - -if (_playerX getVariable ["eligible",true]) then -{ - _playerX setVariable ["eligible",false,true]; - if (_playerX == theBoss) then - { - private _possiblePlayer = cursorTarget; - if(!isNull _possiblePlayer && isPlayer _possiblePlayer) then { - hint format ["You resign of being Commander. It should be passed to %1 if they are eligible.", name _possiblePlayer]; - [cursorTarget] remoteExec ["A3A_fnc_assigntheBoss",2]; - } else { - hint "You resign of being Commander. Other will take the command if there is someone suitable for it."; - [] remoteExec ["A3A_fnc_assigntheBoss",2]; - }; - sleep 3; - } - else - { - hint "You decided not to be eligible for Commander."; - }; -} -else -{ - hint "You are now eligible to be Commander of our forces."; - _playerX setVariable ["eligible",true,true]; -}; \ No newline at end of file diff --git a/A3-Antistasi/orgPlayers/nonMemberDistance.sqf b/A3-Antistasi/orgPlayers/nonMemberDistance.sqf index 24c4481156..56f51f7895 100644 --- a/A3-Antistasi/orgPlayers/nonMemberDistance.sqf +++ b/A3-Antistasi/orgPlayers/nonMemberDistance.sqf @@ -3,7 +3,7 @@ _countX = INITIAL_COUNT_TIME; while {!([player] call A3A_fnc_isMember)} do { - _playerMembers = playableUnits select {([_x] call A3A_fnc_isMember) and (side group _x == teamPlayer)}; + _playerMembers = (call A3A_fnc_playableUnits) select {([_x] call A3A_fnc_isMember) and (side group _x == teamPlayer)}; if !(_playerMembers isEqualTo []) then { if (player distance2D (getMarkerPos respawnTeamPlayer) > memberDistance) then diff --git a/A3-Antistasi/patrolDestinations.sqf b/A3-Antistasi/patrolDestinations.sqf deleted file mode 100644 index ed8ab0b85a..0000000000 --- a/A3-Antistasi/patrolDestinations.sqf +++ /dev/null @@ -1,23 +0,0 @@ -private ["_markersX","_array","_pos","_markerX","_destinationsX","_positionX"]; - -_markersX = _this select 0; -_positionX = _this select 1; -_array = (_markersX - controlsX) select {getMarkerPos _x distance2D _positionX < distanceForLandAttack}; -_destinationsX = []; -if !(isMultiplayer) then - { - { - _destinationX = _x; - _pos = getMarkerPos _destinationX; - if (markersX findIf {(sidesX getVariable [_x,sideUnknown] == teamPlayer) and (getMarkerPos _x distance2d _pos < 2000)} != -1) then {_destinationsX pushBack _destinationX}; - } forEach _array; - } -else - { - { - _destinationX = _x; - _pos = getMarkerPos _destinationX; - if (playableUnits findIf {(side (group _x) == teamPlayer) and (_x distance2d _pos < 2000)} != -1) then {_destinationsX pushBack _destinationX}; - } forEach _array; - }; -_destinationsX \ No newline at end of file diff --git a/A3-Antistasi/placementselection.sqf b/A3-Antistasi/placementselection.sqf deleted file mode 100644 index 673f0b7f74..0000000000 --- a/A3-Antistasi/placementselection.sqf +++ /dev/null @@ -1,102 +0,0 @@ -if (!isNil "placementDone") then - { - theBoss allowDamage false; - format ["%1 is Dead",name petros] hintC format ["%1 has been killed. You lost part of your assets and need to select a new HQ position far from the enemies.",name petros]; - } -else - { - diag_log format ["%1: [Antistasi] | INFO | New Game session selected.",servertime]; - "Initial HQ Placement Selection" hintC ["Click on the Map Position you want to start the Game.","Close the map with M to start in the default position.","Don't select areas with enemies nearby!!\n\nGame experience changes a lot on different starting positions."]; - }; - -hintC_arr_EH = findDisplay 72 displayAddEventHandler ["unload", - { - 0 = _this spawn - { - _this select 0 displayRemoveEventHandler ["unload", hintC_arr_EH]; - hintSilent ""; - }; - }]; - -private ["_positionTel","_markerX","_markersX"]; -_markersX = markersX select {sidesX getVariable [_x,sideUnknown] != teamPlayer}; -_positionTel = []; -if (isNil "placementDone") then - { - _markersX = _markersX - controlsX; - openMap true; - } -else - { - _markersX = _markersX - (controlsX select {!isOnRoad (getMarkerPos _x)}); - //openMap [true,true]; - openMap [true,true]; - }; -_mrkDum = []; -{ -_mrk = createMarkerLocal [format ["%1dumdum", count _mrkDum], getMarkerPos _x]; -_mrk setMarkerShapeLocal "ELLIPSE"; -_mrk setMarkerSizeLocal [500,500]; -_mrk setMarkerTypeLocal "hd_warning"; -_mrk setMarkerColorLocal "ColorRed"; -_mrk setMarkerBrushLocal "DiagGrid"; -_mrkDum pushBack _mrk; -} forEach _markersX; -while {true} do - { - positionTel = []; - onMapSingleClick "positionTel = _pos;"; - waitUntil {sleep 1; (count positionTel > 0) or (not visiblemap)}; - onMapSingleClick ""; - if (not visiblemap) exitWith {}; - _positionTel = positionTel; - _markerX = [_markersX,_positionTel] call BIS_fnc_nearestPosition; - if (getMarkerPos _markerX distance _positionTel < 500) then {hint "Place selected is very close to enemy zones.\n\n Please select another position"}; - if (surfaceIsWater _positionTel) then {hint "Selected position cannot be in water"}; - _enemiesX = false; - if (!isNil "placementDone") then - { - { - if ((side _x == Occupants) or (side _x == Invaders)) then - { - if (_x distance _positionTel < 500) then {_enemiesX = true}; - }; - } forEach allUnits; - }; - if (_enemiesX) then {hint "There are enemies in the surroundings of that area, please select another."}; - if ((getMarkerPos _markerX distance _positionTel >= 500) and (!surfaceIsWater _positionTel) and (!_enemiesX)) exitWith {}; - sleep 0.1; - }; -if (visiblemap) then - { - if (isNil "placementDone") then - { - { - if (getMarkerPos _x distance _positionTel < distanceSPWN) then - { - sidesX setVariable [_x,teamPlayer,true]; - }; - } forEach controlsX; - petros setPos _positionTel; - } - else - { - _controlsX = controlsX select {!(isOnRoad (getMarkerPos _x))}; - { - if (getMarkerPos _x distance _positionTel < distanceSPWN) then - { - sidesX setVariable [_x,teamPlayer,true]; - }; - } forEach _controlsX; - [_positionTel] call A3A_fnc_createPetros; - }; - [_positionTel] call A3A_fnc_relocateHQObjects; - if (isNil "placementDone") then {if (isMultiplayer) then {{if ((side _x == teamPlayer) or (side _x == civilian)) then {_x setPos getPos petros}} forEach playableUnits} else {theBoss setPos (getMarkerPos respawnTeamPlayer)}}; - theBoss allowDamage true; - openmap [false,false]; - }; -{deleteMarkerLocal _x} forEach _mrkDum; -"Synd_HQ" setMarkerPos (getMarkerPos respawnTeamPlayer); -posHQ = getMarkerPos respawnTeamPlayer; publicVariable "posHQ"; -if (isNil "placementDone") then {placementDone = true; publicVariable "placementDone"}; -chopForest = false; publicVariable "chopForest"; \ No newline at end of file diff --git a/A3-Antistasi/punishment.sqf b/A3-Antistasi/punishment.sqf deleted file mode 100644 index d3f7423b50..0000000000 --- a/A3-Antistasi/punishment.sqf +++ /dev/null @@ -1,112 +0,0 @@ -Params ["_foolish","_timeAdded","_offenceLevel"]; -// EG: [_instigator, 20, 0.34] remoteExec ["A3A_fnc_punishment",_instigator]; -/* - _foolish expects player object - _timeX expects time out - _offenceLevel expects percentage between 0 and 1 how server it is severe it is -*/ -/* - Some Debug Consol Interactions: - - [cursorTarget, 0, 0] remoteExec ["A3A_fnc_punishment",cursorTarget]; //ping - [cursorTarget,120, 1] remoteExec ["A3A_fnc_punishment",cursorTarget]; //Insta Punish, 120 seconds - [cursorTarget,-99999, -1] remoteExec ["A3A_fnc_punishment",cursorTarget]; //Insta Forgive - -*/ - -if (isDedicated) exitWith {}; - -if (!isMultiplayer) exitWith {}; - -if (_foolish != player) exitWith {"Not Instigator"}; - -_forgive = (_timeAdded < 0 || _offenceLevel < 0); -_accumulatedTime = player getVariable ["punishment_accumulatedime",0]; -_TKThreshold = player getVariable ["punishment_TKThreshold", 0]; -_playerStats = format["Player: %1 [%2], _accumulatedTime: %3, _TKThreshold: %4, _timeAdded: %5, _offenceLevel: %6", name player, getPlayerUID player, str _accumulatedTime, str _TKThreshold, str _timeAdded, str _offenceLevel]; - -if (player getVariable ["punishment_coolDown", false]) exitWith {"punishment_coolDown active"}; -player setVariable ["punishment_coolDown", true, true]; -[player] spawn -{ - params ["_player"]; - sleep 1; - _player setVariable ["punishment_coolDown", false, true]; -}; - -_innocent = false; -if (vehicle player != player && !_forgive) then -{ - _vehicle = typeOf vehicle player; - if (isNumber (configFile >> "CfgVehicles" >> _vehicle >> "artilleryScanner")) then - { - _artilleryScanner = getNumber (configFile >> "CfgVehicles" >> _vehicle >> "artilleryScanner"); - if (_artilleryScanner != 0) then - { - _innocent = true; - [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXCEPTION, ARTY, %2 | %3", servertime, _vehicle, _playerStats]] remoteExec ["diag_log", 2]; - }; - }; - if (_vehicle isKindOf "Helicopter" || _vehicle isKindOf "Plane") then - { - [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXCEPTION, AIRCRAFT, %2 | %3", servertime, _vehicle, _playerStats]] remoteExec ["diag_log", 2]; - _innocent = true; - }; -}; -if (_innocent) exitWith {"Player is innocent inside a Arty or Aircraft"}; - -if (call BIS_fnc_admin != 0) exitWith -{ - _adminType = "Voted"; - if (call BIS_fnc_admin == 2) then {_adminType = "Logged"}; - [format ["%1: [Antistasi] | INFO | PUNISHMENT | EXCEPTION, ADMIN, %2 | %3", servertime, _adminType, _playerStats]] remoteExec ["diag_log", 2]; - ["TK NOTIFICATION!\nYou would be punished but it appears you remembered to #login before you started killing people.."] remoteExec ["hint", player, false]; - "Player is Voted or Logged Admin"; -}; - -_accumulatedTime = _accumulatedTime + _timeAdded; -_TKThreshold = _TKThreshold + _offenceLevel; -if (_accumulatedTime < 0) then {_accumulatedTime = 0}; -if (_TKThreshold < 0) then {_TKThreshold = 0}; -player setVariable ["punishment_accumulatedime",_accumulatedTime,true]; -player setVariable ["punishment_TKThreshold", _TKThreshold,true]; -if (_forgive) then -{ - [format ["%1: [Antistasi] | INFO | PUNISHMENT | FORGIVE | %2", servertime, _playerStats]] remoteExec ["diag_log", 2]; - ["TK NOTIFICATION!\nAn admin looks with pitty upon you.\nYou have been partially forgiven."] remoteExec ["hint", player, false]; -} -else -{ - [format ["%1: [Antistasi] | INFO | PUNISHMENT | WARNING | %2", servertime, _playerStats]] remoteExec ["diag_log", 2]; - ["TK WARNING!\nWatch your fire!"] remoteExec ["hint", player, false]; -}; - -if (_TKThreshold < 1) exitWith {"Strike"}; - -[format ["%1: [Antistasi] | INFO | PUNISHMENT | GUILTY | %2", servertime, _playerStats]] remoteExec ["diag_log", 2]; -disableUserInput true; -player removeMagazines (primaryWeapon player); -removeAllItemsWithMagazines player; -player removeMagazines (secondaryWeapon player); -player removeWeaponGlobal (primaryWeapon player); -player removeWeaponGlobal (secondaryWeapon player); -player setPosASL [0,0,0]; - -["Being an asshole is not a desired skill of the general Antistasi player."] remoteExec ["hint", player, false]; -sleep 5; -["This is a COOP game and you are welcome to do so."] remoteExec ["hint", player, false]; -sleep 5; -["If you are bored, I think there is a new episode on SpongeBob Square Pants today."] remoteExec ["hint", player, false]; -sleep 5; -_countX = _accumulatedTime; -while {_countX > 0} do -{ - [format ["Now enjoy the view for the following %1 seconds.\n\nPlease be thankful this is a game. In reality you could be sentenced to death by a firing squad, this little punishment is not that bad.", _countX]] remoteExec ["hint", player, false]; - sleep 1; - _countX = _countX -1; -}; -["Enough then."] remoteExec ["hint", player, false]; -disableUserInput false; -player setVariable ["punishment_TKThreshold", 0.1,true]; -//punishment_accumulatedime accumulates until relog (or forgiveness) -player setdamage 1; \ No newline at end of file diff --git a/A3-Antistasi/roadsDB.sqf b/A3-Antistasi/roadsDB.sqf deleted file mode 100644 index d51dea3dc2..0000000000 --- a/A3-Antistasi/roadsDB.sqf +++ /dev/null @@ -1 +0,0 @@ -{roadsX setVariable [_x select 0,_x select 1]} forEach [["regina01",[[4539,8640.48,0],[4553.11,8667.83,0],[4554.61,8768.72,0],[4544.25,8787.39,0],[4575.02,8673.86,0],[4563.49,8688.71,0],[4571.09,8706.87,0],[4574,8723.58,0],[4567.83,8742.7,0],[4565.28,8800.77,0],[4588.04,8810,0],[4601.13,8667.56,0],[4610.13,8818.87,0],[4637.44,8460.13,0],[4625.93,8464.67,0],[4648.5,8662.05,0],[4623.14,8663.49,0],[4630.63,8826.81,0],[4648.61,8833.26,0],[4675.61,8661.83,0],[4670.11,8839.86,0],[4698.74,8662.08,0],[4695.16,8845.71,0],[4722.75,8662.69,0],[4720.87,8848.31,0],[4745.85,8663.74,0],[4748.56,8847.73,0],[4772.83,8666.49,0],[4798.11,8673.76,0],[4796.97,8836.85,0],[4773.88,8843.53,0],[4819.58,8683.28,0],[4822.18,8830.37,0],[4845.62,8691.15,0],[4850.74,8824.75,0],[4873.51,8696.54,0],[4881.18,8823.9,0],[4887.58,8830.61,0],[4901.06,8697.75,0],[4898.22,8815.44,0],[4913.47,8848.46,0],[4896.86,8837.78,0],[4927.5,8691.71,0],[4921.37,8810.97,0],[4944.8,8807.22,0],[4938.32,8863.64,0],[4977.06,8654.18,0],[4965.84,8667.1,0],[4950.51,8679.6,0],[4968.11,8804.81,0],[4960.95,8877.32,0],[4976.9,8886.94,0],[4990.38,8640.56,0],[4991.52,8803.75,0],[4999.03,8900.36,0],[5011.55,8631.37,0],[5038.97,8627.74,0],[5038.16,8803.08,0],[5014.99,8803.42,0],[5022.88,8915,0],[5063.78,8579.27,0],[5067.24,8559.07,0],[5060.44,8601.13,0],[5062.89,8638.28,0],[5056.2,8626.68,0],[5060.24,8802.45,0],[5041.74,8926.74,0],[5059.63,8937.94,0],[5090.82,8493.1,0],[5070.29,8540.28,0],[5072.66,8525.56,0],[5075.93,8658.3,0],[5094.99,8678.92,0],[5081.37,8801.76,0],[5096.57,8961.38,0],[5076.57,8948.55,0],[5125.67,8451.34,0],[5110.19,8474.34,0],[5124.86,8682.88,0],[5114.49,8694.03,0],[5125.57,8718.66,0],[5128.73,8746.17,0],[5129.16,8777.25,0],[5102.12,8800.86,0],[5128.84,8795.49,0],[5119.88,8975.91,0],[5132.09,8425.47,0],[5133.33,8401.91,0],[5148.54,8609.9,0],[5139.4,8639.36,0],[5141.72,8617.81,0],[5135.37,8665.55,0],[5149.49,8794.7,0],[5145.43,8988.59,0],[5183.87,8598.11,0],[5162.69,8604.14,0],[5181.14,8786.98,0],[5172.95,9000.15,0],[5204.73,8488.9,0],[5211.07,8466.46,0],[5202.12,8510.96,0],[5201.6,8532.3,0],[5201.76,8556.64,0],[5204.32,8609.47,0],[5202.43,8580.72,0],[5207.66,8643.86,0],[5214.35,8698.01,0],[5211.05,8673.01,0],[5217.48,8723.21,0],[5218.76,8744.63,0],[5203.36,8777.81,0],[5215.06,8763.43,0],[5195,9011.57,0],[5302.87,8703.49,0]]],["yanukka01",[[2668.74,3494.98,0],[2682.86,3499.72,0],[2693.15,3515.04,0],[2703.57,3535.22,0],[2724.5,3569.98,0],[2712.26,3551.48,0],[2741.92,3592.84,0],[2746.78,3680.67,0],[2761.71,3617.32,0],[2779.25,3638.4,0],[2789.93,3651.04,0],[2767.39,3668.77,0],[2812.55,3636.75,0],[2834.95,3614.92,0],[2855.23,3593.91,0],[2876.83,3577.31,0],[2903.38,3300.84,0],[2894.74,3334.13,0],[2893.06,3366.97,0],[2893.94,3380.95,0],[2896.72,3372.97,0],[2893.19,3401.06,0],[2892.76,3448.06,0],[2892.47,3427.12,0],[2897.12,3474.58,0],[2905.48,3504.6,0],[2899.1,3566.02,0],[2924.8,3258.98,0],[2934.2,3242.17,0],[2914.93,3276.3,0],[2917.81,3371.32,0],[2915.04,3532.92,0],[2921.82,3552.19,0],[2918.61,3557.3,0],[2928.38,3554.35,0],[2964.23,3190.04,0],[2953.43,3208.43,0],[2943.29,3225.99,0],[2945.63,3368.95,0],[2964.64,3366.91,0],[2944.6,3550.8,0],[2996.73,3135.12,0],[2975.3,3171.33,0],[2986.26,3152.85,0],[2989.94,3362.51,0],[2971.1,3546.2,0],[3028.21,3081.3,0],[3016.78,3100.7,0],[3006.32,3118.67,0],[3021.92,3356.12,0],[3002.78,3540.39,0],[3028.32,3552.28,0],[3038.71,3063.15,0],[3049.13,3351.81,0],[3034.24,3532.14,0],[3037.24,3577.2,0],[3047.17,3604.13,0],[3056.85,3631.45,0],[3071.8,3350.45,0],[3089.85,3506.4,0],[3062.87,3520.74,0],[3063.22,3657.96,0],[3099.14,3353.65,0],[3115.4,3489.37,0],[3130.29,3363.86,0],[3137.65,3469.59,0],[3159.58,3378.82,0],[3177.73,3388.89,0],[3167.19,3417.33,0],[3154.94,3445.83,0],[3204.08,3313.15,0],[3199.81,3327.35,0],[3184.29,3358.97,0],[3231.67,3269.06,0],[3216.23,3291.96,0],[3215.83,3326.82,0],[3250.34,3246.26,0],[3268.3,3325.05,0],[3240.6,3325.98,0],[3297.66,3198.35,0],[3272.61,3223.14,0],[3293.08,3324.22,0],[3321.7,3173.35,0]]],["koumac01",[[1490.7,3030.84,0],[1503.54,3025.75,0],[1517.79,3017.46,0],[1526.42,3010.32,0],[1539.44,2999.73,0],[1531.37,3018.35,0],[1546.5,3030.89,0],[1562.98,2979.51,0],[1562.62,3044.77,0],[1578.78,3059.26,0],[1614.5,2939.42,0],[1590.45,2957.03,0],[1595.19,3074.32,0],[1612.26,3090.13,0],[1636.9,2930.3,0],[1628.93,3106.44,0],[1643.64,3123.09,0],[1658.4,2931.93,0],[1679.26,2943.58,0],[1656.66,3146.48,0],[1669.5,3175.54,0],[1702.89,2959.25,0],[1726.25,2972.78,0]]],["rereki01",[[12686.1,2100.81,0],[12707.8,2092.63,0],[12733.8,2082.98,0],[12764.4,2072.06,0],[12768.6,2359.99,0],[12794,2063.09,0],[12799,2355.81,0],[12822.8,2057.32,0],[12831.3,2343.24,0],[12850,2055.86,0],[12863.9,2331.18,0],[12876.3,2058.43,0],[12889.3,2319.99,0],[12901.5,2063.33,0],[12922.3,2068.67,0],[12928.8,2296.84,0],[12907,2309.92,0],[12956.9,2087.29,0],[12939.7,2075,0],[12954.5,2283.05,0],[12976.4,2107.99,0],[12978.8,2277.93,0],[12996.6,2130.89,0],[13007.8,2143.01,0],[13018.1,2294.16,0],[12999.5,2282.95,0],[13035.6,2308.29,0],[13051.6,2324.42,0],[13084.7,2360.2,0],[13104.8,2379.33,0],[13128.4,2400.13,0],[13149.1,2418.95,0],[13167.4,2436.51,0],[13185.7,2453.96,0],[13204.9,2470.94,0]]],["ovau01",[[12048.3,12966.4,0],[12069.5,12957,0],[12111,12932.3,0],[12090.6,12945.7,0],[12131.4,12915.3,0],[12177.4,12868,0],[12151.5,12894,0],[12190.8,12847.1,0],[12191.1,12881,0],[12205.5,12896.6,0],[12238,12802,0],[12213.2,12824.5,0],[12221.4,12928.4,0],[12213.4,12908.6,0],[12263.3,12780.3,0],[12286.7,12761.1,0],[12309.1,12743.6,0],[12347.8,12717.2,0],[12330.1,12728.4,0],[12370.7,12704.7,0],[12414.2,12690.5,0],[12394.1,12694.4,0],[12442.5,12689.6,0],[12469.2,12690,0],[12453.5,12704.6,0],[12453.5,12726.7,0],[12455.7,12745.2,0],[12460.6,12751,0],[12488.1,12688.8,0],[12513.1,12681.7,0],[12566.2,12645.6,0],[12543.7,12665.9,0],[12594.7,12596,0],[12580.7,12622.4,0],[12612,12570.7,0],[12649.7,12539,0],[12630.7,12552.3,0],[12671.5,12525.9,0]]],["ouaoue01",[[5507.22,12029.4,0],[5515.68,12264.7,0],[5511.39,12288.6,0],[5508.27,12327.7,0],[5509.06,12308.8,0],[5508.02,12349.1,0],[5508.5,12370.6,0],[5510.45,12399.1,0],[5515.72,12433.4,0],[5548.04,12000,0],[5522.74,12018.4,0],[5522.84,12050.3,0],[5539.56,12074.9,0],[5546.17,12097,0],[5544.54,12118.8,0],[5541.43,12147.2,0],[5533.8,12180.8,0],[5526.73,12213,0],[5520.82,12240.2,0],[5539.91,12479.2,0],[5525.5,12459.7,0],[5570.1,11982.6,0],[5559.14,12127.9,0],[5557.15,12497,0],[5576.73,12514.1,0],[5588.27,11967.2,0],[5580.34,12145.4,0],[5601.74,12169.2,0],[5598.65,12532,0],[5624.75,12196.9,0],[5619.68,12550.1,0],[5636.28,12566.9,0],[5645.4,12221.3,0],[5666.65,12242.9,0],[5657.49,12566.4,0],[5660.66,12598.5,0],[5644.87,12575.3,0],[5689.14,12262.2,0],[5693.44,12556.3,0],[5670.38,12558.3,0],[5679.12,12555.6,0],[5692.47,12627.2,0],[5674.01,12613.4,0],[5710.2,12278.5,0],[5714.39,12559.8,0],[5716.48,12639.4,0],[5736.45,12564.5,0],[5752.33,12568,0],[5750.39,12586,0],[5743.61,12608.4,0],[5737.56,12628.5,0],[5742.66,12650.6,0],[5781.33,12500.8,0],[5772.67,12516.1,0],[5763.95,12541.8,0],[5768.41,12663.5,0],[5818.35,12481.4,0],[5795.38,12490.8,0],[5793.08,12681.4,0],[5816.96,12704.7,0],[5840.53,12475.6,0],[5878.92,12467.5,0],[5859.15,12471.5,0],[5898.85,12463.5,0],[5925.92,12458.2,0],[5961,12451.2,0],[5987.34,12446.1,0],[6005.55,12442.3,0],[6043,12449.7,0],[6038.07,12436.9,0],[6050.53,12467.6,0],[6058.93,12482,0],[6082.4,12423.4,0],[6060.58,12429,0],[6069.64,12500.9,0],[6080.75,12526.2,0],[6086.87,12542.4,0],[6104.59,12417.6,0],[6125.89,12412,0]]],["oumere01",[[12685.7,7525.44,0],[12665.1,7533.59,0],[12712.3,7265.74,0],[12700.6,7277.66,0],[12698.5,7299.62,0],[12706.5,7518.76,0],[12715.8,7600.16,0],[12730.9,7256.14,0],[12747.3,7249.47,0],[12726.9,7512.73,0],[12744.8,7506.67,0],[12741.9,7579.79,0],[12757.8,7016.83,0],[12760.1,7043.06,0],[12762,7065.87,0],[12763.3,7085.9,0],[12763.3,7112.68,0],[12755.7,7169.2,0],[12760.2,7142.23,0],[12755.1,7193.83,0],[12758.4,7215.22,0],[12758.6,7245.62,0],[12765.3,7261.2,0],[12768.5,7282.37,0],[12775.9,7308.28,0],[12775.4,7329.56,0],[12765.2,7495.27,0],[12763.8,7566.15,0],[12794.7,7303.13,0],[12780.3,7364.2,0],[12785.1,7398.93,0],[12790.7,7433.21,0],[12796.9,7451.76,0],[12803.5,7450.82,0],[12784.3,7478.48,0],[12806.7,7555.33,0],[12781.7,7559.44,0],[12786.9,7639.6,0],[12804.5,7623.12,0],[12825.8,7294.88,0],[12838.2,7438.85,0],[12819.3,7446.55,0],[12834.8,7585.61,0],[12817.8,7608.18,0],[12864.1,7301.58,0],[12847.4,7291.62,0],[12865.9,7406.28,0],[12849.5,7426.93,0],[12862,7542.72,0],[12851.6,7552.44,0],[12848,7563.4,0],[12889.1,7320.54,0],[12898.9,7392.42,0],[12886.9,7383.97,0],[12893.7,7499.05,0],[12878.8,7524.96,0],[12922.5,7345.3,0],[12912.9,7342.76,0],[12908.8,7348.63,0],[12900.9,7359.46,0],[12915.6,7404.59,0],[12925.9,7416.78,0],[12926,7427.49,0],[12908.8,7468.57,0],[12920.3,7443.06,0],[12944.1,7358.93,0],[13226.5,7542.22,0],[13234.7,7562.69,0],[13250.8,7578.19,0],[13270.8,7586.1,0]]],["portboise01",[[12352.3,3189.23,0],[12376.8,3205.48,0],[12401.6,3222,0],[12425.5,3238.2,0],[12447.7,3253.48,0],[12467.2,3267.23,0],[12484.8,3279.83,0],[12500.7,3291.35,0],[12521.1,3308.13,0],[12540.8,3327.08,0],[12553.9,3342.77,0],[12566.5,3357.87,0],[12577.8,3350.47,0],[12587.4,3338.62,0],[12577.5,3377.04,0],[12588,3395.42,0],[12597.4,3414.84,0],[12601,3319.53,0],[12623.4,3301.52,0],[12606.1,3434.89,0],[12626.8,3476.75,0],[12615.4,3455.19,0],[12649,3294.01,0],[12640.4,3499.79,0],[12654.8,3522.92,0],[12672.5,3292.34,0],[12669.1,3545.42,0],[12681.9,3565.56,0],[12707.8,3283.82,0],[12690.8,3290.55,0],[12693.4,3583.42,0],[12716.5,3618.42,0],[12704.8,3600.79,0],[12734.1,3268.04,0],[12723.4,3274.57,0],[12744.8,3659.17,0],[12729.7,3637.86,0],[12760.1,3680.8,0],[12968.5,3005.92,0],[12982.3,3034.62,0],[12996.5,3059.78,0],[13011.3,3079.9,0],[13025.3,3096.16,0],[13038.5,3109.2,0],[13070.1,3134.63,0],[13053.3,3121.77,0]]],["murarua01",[[13694.4,8421.79,0],[13688.4,8425.28,0],[13681.2,8439.66,0],[13715.2,8418.79,0],[13743.2,8416.42,0],[13763.8,8414.97,0],[13789,8428.09,0],[13789.1,8414.39,0],[13790.2,8447.65,0],[13798.9,8466.68,0],[13807.1,8410.7,0],[13826.9,8408.66,0],[13845.5,8406.64,0],[13884,7958.47,0],[13864.2,7955.46,0],[13888,8398.63,0],[13866.1,8403.59,0],[13904,7961.58,0],[13908.9,8275.93,0],[13898.8,8292.68,0],[13898.6,8334.57,0],[13896.8,8310.4,0],[13911.2,8365.54,0],[13902.9,8352.63,0],[13907.7,8389.16,0],[13919.8,8380.27,0],[13932.2,7966.47,0],[13942.4,8230.71,0],[13925.5,8253.34,0],[13943.2,8399.86,0],[13963.4,7973.3,0],[13976.7,8170.31,0],[13968.4,8191.97,0],[13956.4,8211.04,0],[13978.5,8197.08,0],[13958.4,8414.43,0],[13979.5,8426.02,0],[13968.5,8422.55,0],[14001.7,8001,0],[13986.5,7983.02,0],[14006.5,8029.21,0],[14002.7,8061.67,0],[13995,8093.29,0],[13986.4,8122.48,0],[13980.5,8147.64,0],[13980.3,8210.87,0],[13981.4,8233.36,0],[13982,8259.11,0],[13987.1,8299.42,0],[13983.2,8281.48,0],[13996.5,8318.64,0],[13997.5,8426.61,0],[14025.4,8363.83,0],[14010.2,8340.53,0],[14039.2,8385.35,0],[14020.4,8424.96,0],[14050.8,8404.05,0],[14045.7,8422.17,0],[14059.4,8417.88,0],[14092.3,8424.64,0],[14118,8430.92,0],[14157.9,8444.63,0],[14140.1,8438.23,0],[14184,8454.44,0],[14211.8,8465.33,0],[14240.9,8484.4,0],[14226.2,8471.84,0],[14257.2,8509.55,0],[14261.5,8536.78,0],[14258.3,8561.53,0],[14254.1,8585.71,0],[14253.1,8608.34,0],[14259.4,8629.67,0]]],["namuvaka01",[[2454.94,5747.33,0],[2454.16,5775.35,0],[2480.49,5734.53,0],[2476.84,5813.12,0],[2466.6,5796.08,0],[2487.36,5830.63,0],[2503.91,5721.21,0],[2497.43,5847.38,0],[2509.27,5867.04,0],[2528.17,5707.66,0],[2522.42,5888.78,0],[2535.29,5913.05,0],[2546.37,5936.85,0],[2576.64,5695.98,0],[2550.25,5697.72,0],[2555.18,5956.76,0],[2563.78,5977.14,0],[2571.31,5996.38,0],[2601.92,5700.43,0],[2621.58,5706.7,0],[2642.4,5714.33,0],[2660.26,5721.68,0],[2675.53,5729.95,0],[2687.13,5752.42,0],[2699.08,5740.3,0],[2692,5779.25,0],[2693.39,5799.26,0],[2693.99,5821,0],[2693.57,5841.86,0],[2690.65,5864.66,0],[2685.5,5889.48,0],[2681.3,5912.5,0],[2679.18,5934.3,0],[2680.36,5963.16,0],[2686.08,5990.59,0],[2696.65,6008.78,0],[2724.92,5733.28,0],[2710.61,6027.38,0],[2722.44,6045.82,0],[2753.64,5725.47,0],[2742.28,6084.93,0],[2731.01,6063.12,0],[2778.85,5718.63,0]]],["savaka01",[[6856.63,4094.21,0],[6879.9,4096.24,0],[6926.88,4108.03,0],[6903.83,4100.38,0],[6949.36,4123.21,0],[6983.56,4146.06,0],[6972,4147.04,0],[6977.39,4146.85,0],[6994.28,4144.58,0],[7007.06,4144.52,0],[6991.31,4176,0],[7012.72,4201.59,0],[7045.13,4133.48,0],[7022.07,4145.64,0],[7035.58,4142.29,0],[7035.26,4219.45,0],[7051.79,4127.88,0],[7058.66,4231.21,0],[7082.85,4239.96,0],[7106.07,4245.77,0],[7130.77,4247.83,0],[7156.3,4246.04,0]]],["tobakoro01",[[8757.83,3778.29,0],[8752.84,3796.94,0],[8750.2,3815.82,0],[8749.54,3835.19,0],[8750.25,3854.86,0],[8756.14,3895,0],[8752.28,3874.62,0],[8788.97,3684.19,0],[8770.04,3697.46,0],[8765.94,3722.02,0],[8764.96,3752.56,0],[8762.22,3916.07,0],[8769.47,3937.16,0],[8811.11,3679.85,0],[8835.05,3673.32,0],[8873.74,3645.68,0],[8858.47,3660.18,0],[8902.56,3596.06,0],[8881.95,3627.45,0],[8889.49,3609.32,0],[8924.89,3584.61,0],[8966.78,3557.51,0],[8945.21,3577.17,0],[8954.66,3570.77,0],[8981.85,3535.51,0],[8995.17,3517.38,0],[9013.71,3515.72,0],[9032.22,3532.75,0],[9040.96,3558.6,0],[9037.32,3583.71,0],[9033.06,3612.09,0],[9041.54,3638.77,0],[9079.67,3349.63,0],[9088.26,3684.08,0],[9061.58,3660.91,0]]],["harcourt01",[[10754,5187.29,0],[10796.1,5209.6,0],[10771.4,5197.41,0],[10822.6,5216.12,0],[10842.8,5213.04,0],[10886.1,5199.96,0],[10863.7,5206.76,0],[10915.3,5193.66,0],[10943,5189.06,0],[10963,5186.03,0],[10982.9,5182.88,0],[11001.8,5179.5,0],[11033.5,4956.23,0],[11025.1,4972.5,0],[11021,5004.15,0],[11019.9,4987.36,0],[11031.5,5033.13,0],[11038.3,5031.36,0],[11025.5,5173.58,0],[11056.9,5037.51,0],[11044.3,5032.27,0],[11040.7,5058.07,0],[11051.4,5085.68,0],[11058.4,5109.32,0],[11063.4,5129.44,0],[11068.7,5150.24,0],[11052.5,5161.46,0],[11078.6,5048.13,0],[11089.3,5160.71,0],[11106.1,5061.96,0],[11108.8,5165.11,0],[11129.7,5255.9,0],[11133.1,5075.18,0],[11158.4,5086.41,0],[11133.1,5183.07,0],[11133.9,5168.71,0],[11132,5204.54,0],[11130.5,5234.1,0],[11132.1,5265.67,0],[11138.9,5274.16,0],[11158,5281.15,0],[11182.9,5096.19,0],[11160.9,5169.6,0],[11183.8,5288.18,0],[11219.9,5175.04,0],[11190.3,5172.01,0],[11207.1,5293.88,0],[11240.9,5180.65,0],[11238.4,5196.59,0],[11234.2,5222.9,0],[11229.4,5252.87,0],[11225,5279.83,0],[11231.5,5299.81,0],[11278.9,5182.01,0],[11256.2,5214.38,0],[11279.6,5219.31,0],[11254.6,5305.65,0],[11308.2,5187.67,0],[11308.6,5163.42,0],[11286.6,5168.79,0],[11295.3,5164.33,0],[11281.7,5174.68,0],[11295.7,5249.69,0],[11293.3,5223.7,0],[11297.5,5229.42,0],[11290.6,5277.18,0],[11286,5297.55,0],[11296.6,5321.22,0],[11282.7,5312.15,0],[11300.2,5328.77,0],[11326.9,5164.6,0],[11329.5,5194.88,0],[11338.6,5228.35,0],[11332.7,5263.04,0],[11312.1,5373.38,0],[11330.4,5377.74,0],[11339.6,5656.72,28.9431],[11353.5,5167.57,0],[11361.1,5218.63,0],[11342.5,5205.22,0],[11348.6,5381.44,0],[11365.8,5384.01,0],[11365.9,5442.16,21.3608],[11361.5,5477.96,21.653],[11357.1,5513.79,21.919],[11351.2,5561.43,24.3314],[11345.4,5609.08,27.7301],[11384.5,5172.68,0],[11374.1,5238.54,0],[11381.5,5262.05,0],[11383.8,5283.94,0],[11383.1,5298.46,0],[11381.9,5311.18,3.90971],[11377.6,5346.87,8.18898],[11371.7,5394.52,12.4708],[11382.1,5386.36,0],[11412.9,5179.58,0],[11436.5,5186.67,0],[11454.5,5193.2,0],[11479.8,5201.84,0]]],["muaceba01",[[1613.68,8471.11,0],[1602.09,8484.72,0],[1604.97,8495.73,0],[1646.77,8424.05,0],[1632.92,8450.92,0],[1670.7,8336.21,0],[1660.01,8360.39,0],[1653.9,8392.32,0],[1709.9,8322.28,0],[1685.89,8324.89,0],[1743.54,8323.52,0],[1774.41,8324.27,0],[1821.25,8306.19,0],[1801.69,8318.07,0],[1844.91,8268.25,0],[1832.52,8290.9,0]]],["savu01",[[8049.24,13595,0],[8080.03,13603.2,0],[8108.82,13610.7,0],[8136.74,13617.9,0],[8162.66,13624.9,0],[8190.64,13632.8,0],[8219.53,13641.7,0],[8247.33,13651.5,0],[8263.34,13406.8,0],[8270.86,13660.9,0],[8280.27,13434.8,0],[8293.6,13462,0],[8303.05,13488.8,0],[8307.15,13529.5,0],[8307.15,13510.6,0],[8305.16,13551.4,0],[8301.67,13578,0],[8297.24,13606.4,0],[8293.22,13629.9,0],[8290.05,13645.7,0],[8284.46,13662.7,0],[8287.46,13654.9,0],[8311.68,13676.3,0],[8336.5,13680.2,0],[8365.41,13665.7,0],[8346.98,13695.9,0],[8350.76,13706.9,0],[8346.73,13682.9,0],[8358.95,13710.6,0],[8383.08,13644.8,0],[8398.47,13632.8,0],[8397.54,13708.1,0],[8375.54,13710.8,0],[8420.48,13630.6,0],[8423.64,13653.3,0],[8411.97,13679.8,0],[8403.21,13698.1,0],[8416.76,13712,0],[8455.34,13598.8,0],[8448.42,13616.4,0],[8458.81,13641.4,0],[8431.6,13634.6,0],[8442.7,13626.2,0],[8453.89,13735.8,0],[8432.61,13720,0],[8470.73,13447.8,0],[8467.16,13498.8,0],[8468.85,13475.5,0],[8465.29,13522.8,0],[8463.33,13545.8,0],[8460.45,13572.3,0],[8488.44,13660.3,0],[8472.93,13748.9,0],[8489.98,13754.1,0],[8506.51,13673.7,0],[8514.71,13684.4,0],[8512.58,13756.8,0],[8526.03,13702.5,0],[8539.28,13724.5,0],[8540.76,13759,0],[8551.29,13743.5,0],[8576.16,13766,0],[8560.79,13760.3,0],[8593.68,13771.9,0],[8615.73,13775.7,0],[8665.23,13761.6,0],[8641.13,13774.1,0],[8685.21,13744.6,0],[8703.08,13730.4,0],[8721.89,13718.3,0],[8709.49,13825.8,0],[8729.99,13814.6,0],[8757.39,13704.4,0],[8758.88,13699.1,0],[8752.02,13723.7,0],[8747.58,13710.4,0],[8749.14,13797.3,0],[8775.5,13670.4,0],[8764.92,13689.5,0],[8784.12,13708.7,0],[8762.99,13759.3,0],[8763.92,13767.5,0],[8761.26,13778.7,0]]],["lifou01",[[6812.8,8266.98,0],[6832.12,8250.79,0],[6831.49,8268.21,0],[6847.02,7703.38,0],[6863.86,7720.33,0],[6851.22,8233.81,0],[6851.17,8284.37,0],[6887.42,7732.32,0],[6896.2,8191.93,0],[6872.53,8214.12,0],[6874.28,8303.62,0],[6895.63,8321.89,0],[6912.72,7744.33,0],[6919.51,8168.36,0],[6912.38,8337.26,0],[6926.29,8351.33,0],[6957.62,7765.64,0],[6934.45,7754.5,0],[6957.74,8113.59,0],[6940.39,8142.91,0],[6944.26,8369.23,0],[6980.93,7777.42,0],[6982.92,8044.28,0],[6968.84,8088.61,0],[6975.1,8070.65,0],[6962.92,8384.1,0],[7003.08,7789.49,0],[7013.73,7924.06,0],[7005.12,7946.92,0],[7000.75,7967.94,0],[6997.19,7987.78,0],[6991.42,8012.83,0],[7044.58,7818.69,0],[7022.77,7801.51,0],[7040.92,7883.99,0],[7026.13,7903.14,0],[7061.75,7840.9,0],[7054.62,7860.43,0],[7090.64,7866.41,0],[7108.91,7884.43,0],[7125.94,7892.91,0],[7161.43,7885.4,0],[7143.41,7891.8,0],[7161.15,8103.92,0],[7157.46,8114.29,0],[7159.88,8132.43,0],[7166.35,8161.35,0],[7188.46,7878.66,0],[7196.36,7992.64,0],[7196.23,7982.1,0],[7191.57,8034.07,0],[7178.14,8092.47,0],[7172.74,8187.79,0],[7177.09,8206.06,0],[7182.13,8230.07,0],[7185.95,8257.63,0],[7190.47,8305.58,0],[7187.5,8281.46,0],[7195.89,8331.55,0],[7217.94,7879.47,0],[7227.59,7933.05,0],[7212.82,7953.54,0],[7201.71,7970.18,0],[7201.95,8008.28,0],[7227.71,8020.01,0],[7208.6,8027.44,0],[7207.95,8023.08,0],[7210.22,8031.54,0],[7215.8,8047.78,0],[7218,8064.99,0],[7203.74,8077.22,0],[7203.5,8359.14,0],[7232.47,7884.9,0],[7241.86,7913.88,0],[7251.49,7901.15,0],[7245.86,8012.97,0],[7277.95,7913.81,0],[7279.4,8000.06,0],[7262.3,8006.63,0],[7303.17,7934.15,0],[7314.52,7944.22,0],[7295.74,7926.29,0],[7304.73,7990.36,0],[7342.26,7885.71,0],[7335.28,7912.87,0],[7326.26,7935.8,0],[7330.54,7928.96,0],[7321.17,7940.18,0],[7326.24,7971.65,0],[7349.73,7973.45,0],[7333.9,7979.6,0],[7338.28,7999.37,0],[7326.12,7982.17,0],[7348.7,8030.82,0],[7375.44,7752.25,0],[7369.62,7775.44,0],[7363.8,7798.71,0],[7358.29,7820.81,0],[7351.64,7847.52,0],[7372.17,7965.18,0],[7356.44,8057.14,0],[7361.46,8075.48,0],[7368.61,8102.46,0],[7375.6,8129.08,0],[7395.91,7957.33,0],[7380.39,8147.53,0],[7385.36,8167.03,0],[7390.23,8186.68,0],[7396.49,8213.69,0],[7431.06,7966.37,0],[7421.38,7955.33,0],[7446.64,7946.77,0],[7449.55,7987.01,0],[7468.97,8006.41,0],[7470.23,7945.5,0]]],["katkoula01",[[5300.12,3959.46,0],[5296.25,4070.01,0],[5318.54,3833.67,0],[5331.94,3857.02,0],[5321.46,3965.18,0],[5332.74,4092.34,0],[5313.61,4081.17,0],[5367.37,3755.73,0],[5346.42,3874.7,0],[5357.26,3884.77,0],[5340.15,3975.14,0],[5350.38,3984.29,0],[5351.94,3987.43,0],[5362.75,3999.32,0],[5351.12,4100.68,0],[5390.45,3745.5,0],[5370.72,3895.84,0],[5389.92,3912.5,0],[5399.05,3996.54,0],[5373.29,4009.02,0],[5384.77,4008.41,0],[5379.34,4010.13,0],[5370.14,4106.47,0],[5393.38,4113.99,0],[5405.01,3724.06,0],[5424.53,3943.76,0],[5417.97,3933.39,0],[5421.12,3975.71,0],[5420.42,3993.87,0],[5404.66,4100.06,0],[5400.46,4133.6,0],[5408.99,4157.2,0],[5415.83,4176.14,0],[5422.86,4195.6,0],[5429.66,4214.43,0],[5407.83,4274.35,0],[5459.04,3899.97,0],[5435.37,3918.81,0],[5431.61,3951.75,0],[5433.38,3957.08,0],[5432.3,3962.54,0],[5434.19,4007.73,0],[5455.85,4029.4,0],[5456.5,4071.36,0],[5432.92,4086.02,0],[5438.02,4237.57,0],[5449.31,4258.2,0],[5444.79,4256.31,0],[5431.67,4264.71,0],[5473.69,3816.89,0],[5479.11,3842.48,0],[5479.82,3865.65,0],[5469.94,3886.89,0],[5480.86,3913.43,0],[5467.5,3904.73,0],[5476.89,4055.13,0],[5470.44,4061.37,0],[5465.74,4252.15,0],[5496.94,3929.36,0],[5515.71,3949.95,0],[5497.22,4069.7,0],[5519.85,4090.95,0],[5492.14,4242.28,0],[5534.26,3970.51,0],[5549.7,3987.07,0],[5542.35,4111.28,0],[5543.96,4221.77,0],[5520.8,4231.26,0],[5562.62,4000.56,0],[5563.65,4129.45,0],[5560.01,4213.35,0],[5571.97,4203.63,0],[5580.83,4019.42,0],[5602.24,4041.15,0],[5604.38,4136.69,0],[5582.53,4144.29,0],[5597.34,4147.7,0],[5602.39,4162.73,0],[5593.81,4175.2,0],[5582.47,4191.06,0],[5619.37,4058.44,0],[5630.79,4071.34,0],[5638.23,4077.89,0],[5626.46,4099.41,0],[5614.07,4121.18,0],[5617.97,4168.79,0],[5635.94,4180.16,0],[5653.49,4074.01,0],[5653.74,4191.02,0],[5698.15,4078.55,0],[5675.2,4073.42,0],[5671.1,4201.44,0],[5687.76,4211.48,0],[5718.99,4085.66,0],[5703.47,4221.21,0],[5721.18,4232.51,0],[5737.18,4093.37,0],[5740.51,4244.9,0],[5758.6,4256.64,0],[5776.64,4268.89,0],[5796.6,4283.23,0],[5818.52,4299.64,0],[5840.39,4316.81,0],[5860.88,4334.1,0]]],["rautake01",[[3016.23,6912.22,0],[3046.8,6912.27,0],[3074.92,6911.25,0],[3098.94,6908.6,0],[3126.03,6901.26,0],[3156.78,6885.65,0],[3207,6489.95,0],[3199.91,6845.38,0],[3180.4,6866.56,0],[3216.49,6508.91,0],[3223.34,6528.79,0],[3225.5,6549.09,0],[3222.62,6570.65,0],[3217.23,6592.34,0],[3212.91,6611.66,0],[3213.36,6633.65,0],[3220.14,6654.72,0],[3232.94,6672.64,0],[3237.93,6796.68,0],[3221.26,6818.82,0],[3249.56,6692.87,0],[3265.45,6711.05,0],[3260.52,6764.94,0],[3249.24,6780.96,0],[3293.19,6717.27,0],[3271.68,6748.83,0],[3276.14,6722.86,0],[3325.72,6669.48,0],[3307.97,6695.44,0],[3341.12,6646.88,0],[3379.17,6589.05,0],[3365.47,6608.94,0],[3362.01,6628.09,0],[3380.99,6641.28,0],[3376.55,6806.22,0],[3384.15,6791.22,0],[3389.45,6786.8,0],[3371.34,6821.01,0],[3397.58,6565.22,0],[3414.5,6544.72,0],[3415.09,6682.38,0],[3402,6661.25,0],[3415.81,6777.67,0],[3399.84,6783,0],[3442.21,6512.82,0],[3427.83,6529.23,0],[3438.97,6699.84,0],[3429.67,6705.43,0],[3437.28,6726.71,0],[3445.38,6744.69,0],[3434.03,6768.65,0],[3445.75,6761.13,0],[3448.93,6756.12,0],[3473.15,6478.12,0],[3457.39,6495.71,0],[3451.17,6689.16,0],[3461.31,6674.68,0],[3489.26,6460.27,0]]],["buawa01",[[8093.36,10814.8,0],[8106.75,10838.4,0],[8117.98,10862.4,0],[8124.62,10890.6,0],[8127.76,10922.5,0],[8132.11,10948.4,0],[8140.35,10967.6,0],[8153.33,10980.5,0],[8188.35,10995.6,0],[8170.28,10988.2,0],[8205.79,11005.1,0],[8231.47,11034.8,0],[8220.17,11018.1,0],[8245.92,11060.5,0],[8257.21,11074.2,0],[8266.14,11084.4,0],[8266.88,11091.4,0],[8262.42,11102.4,0],[8258.49,11115.5,0],[8428.62,10876.3,0],[8444.33,10864.6,0],[8487.81,10831.9,0],[8464.7,10849.3,0],[8511.7,10813.9,0]]],["laikoro01",[[1729.79,6163.21,0],[1727.82,6206.14,0],[1725.36,6181.26,0],[1738.1,6227.9,0],[1751.16,6237.15,0],[1768.87,6245.65,0],[1793.55,6256.4,0],[1822.68,6268.5,0],[1853.76,6281.05,0],[1859.54,6499.91,0],[1843.15,6527.13,0],[1884.29,6293.15,0],[1875.55,6473.71,0],[1911.76,6303.89,0],[1907.64,6423.79,0],[1890.39,6449.89,0],[1933.66,6312.37,0],[1947.79,6317.8,0],[1946.99,6357.67,0],[1946.31,6336.42,0],[1948.01,6389.68,0],[1936.44,6394.64,0],[1923.11,6403.58,0],[1976.81,6256,0],[1967.47,6276.77,0],[1959.6,6295.01,0],[1954.26,6406.56,0],[2000.28,6206.43,0],[2001.93,6237.52,0],[1988.95,6229.08,0],[2022.18,6161.79,0],[2012.89,6180.57,0],[2021.03,6249.88,0]]],["nicolet01",[[5816.96,12704.7,0],[5839.89,12729.9,0],[5862.2,12753.1,0],[5881.93,12770.3,0],[5899.37,12782.9,0],[5923.16,12797.7,0],[5949.05,12811,0],[6011.38,12811.7,0],[6058.93,12482,0],[6036.71,12799.6,0],[6053.24,12790.9,0],[6069.64,12500.9,0],[6080.75,12526.2,0],[6086.54,12561.3,0],[6086.87,12542.4,0],[6087.98,12549.8,0],[6078.29,12782.6,0],[6090.36,12690.8,0],[6103.34,12700.9,0],[6110.47,12711.6,0],[6113.26,12728.8,0],[6116.11,12751.7,0],[6104.76,12776.5,0],[6118.74,12768.1,0],[6145.96,12774.6,0],[6172.75,12777.9,0],[6202.67,12786,0],[6214.96,12502.1,0],[6225.87,12528.4,0],[6234,12547.7,0],[6227.21,12794.9,0],[6242.44,12567.1,0],[6251,12585.8,0],[6263.54,12610.1,0],[6263.2,12790.8,0],[6245.52,12802.6,0],[6257.07,12805.8,0],[6299.94,12659.7,0],[6280.65,12637.1,0],[6271.91,12772.7,0],[6281.45,12761.9,0],[6292.66,12760.3,0],[6282.49,12819.3,0],[6316.5,12676.1,0],[6309.12,12766.3,0],[6307.13,12831.1,0],[6330.37,12688.6,0],[6346.78,12702.5,0],[6334.53,12778.6,0],[6346.44,12829.8,0],[6356.23,12810.5,0],[6347.92,12852.2,0],[6339.09,12844.3,0],[6364.43,12717.1,0],[6382.02,12731.5,0],[6363.4,12796.3,0],[6369.06,12864.3,0],[6398.26,12744.9,0],[6415.52,12759.8,0],[6396.32,12810.9,0],[6395.23,12878.4,0],[6415.23,12884.6,0],[6445.14,12779.9,0],[6427.35,12771.5,0],[6429.48,12780.6,0],[6430.47,12788.5,0],[6425.44,12826.8,0],[6432.44,12878.3,0],[6468.7,12763.2,0],[6453.77,12842.6,0],[6452.75,12865.9,0],[6471.99,12853,0],[6501.26,12734.4,0],[6487.21,12747.3,0],[6492.63,12863,0],[6516.17,12720.6,0],[6530.64,12861.2,0],[6517.52,12881.6,0],[6535.39,12901.3,0],[6557.15,12850.4,0],[6547.4,12916.5,0]]],["saintpaul01",[[7457.53,13485.6,0],[7488.51,13497.1,0],[7516.53,13508.7,0],[7540.8,13522.5,0],[7587.17,13549,0],[7562.11,13537.5,0],[7618.75,13548.4,0],[7676.83,13521.7,0],[7651.32,13534.7,0],[7695.6,13513.8,0],[7716.09,13508.8,0],[7738.51,13506.2,0],[7761.97,13506,0],[7786.24,13508.2,0],[7814.46,13514.4,0],[7847,13526,0],[7872.11,13536.9,0],[7889.09,13544.6,0],[7914.54,13555.1,0],[7947.21,13528.2,0],[7942.24,13546.8,0],[7948.3,13567,0],[7968.77,13483.6,0],[7955.97,13504.8,0],[8003.74,13460,0],[7983.69,13471.2,0],[7982.15,13577,0],[8027.18,13450.5,0],[8016.05,13586.2,0],[8069.7,13435.4,0],[8051.3,13443.6,0],[8049.24,13595,0],[8096,13399.6,0],[8084.24,13416.6,0],[8080.03,13603.2,0],[8108.82,13610.7,0],[8136.74,13617.9,0],[8162.66,13624.9,0],[8190.64,13632.8,0],[8219.53,13641.7,0]]],["penelo01",[[10685.2,13451.5,0],[10705.4,13449.5,0],[10724.6,13447.7,0],[10762.6,13441.9,0],[10743.4,13445.3,0],[10782,13437.8,0],[10819.7,13426.5,0],[10801.2,13432.8,0],[10853,13408.8,0],[10836.9,13418.5,0],[10875.3,13392.6,0],[10919.1,13357.1,0],[10899.4,13373.5,0],[10944.2,13179.1,0],[10948.1,13213.1,0],[10941.2,13201,0],[10938.3,13343.8,0],[10961.1,13122.2,0],[10976.9,13113.2,0],[10967.5,13114,0],[10953.2,13145.7,0],[10965.7,13232.1,0],[10957.8,13333.4,0],[10978.9,13323.2,0],[10990.2,13254.7,0],[11009.1,13279.9,0],[10998.9,13313.2,0],[11016.1,13298.3,0],[11068.4,13257,0],[11042.3,13287.4,0],[11057.9,13272.8,0],[11089.8,13205.6,0],[11078.4,13234.1,0],[11118.6,13169.4,0],[11103.2,13183.5,0],[11139,13156.8,0],[11189.9,13132.3,0],[11165.5,13143.5,0],[11217.5,13123.1,0],[11250.2,13116.8,0],[11275.1,13114.8,0],[11294.8,13113.9,0],[11315.5,13113.2,0],[11336.2,13112.8,0]]],["tuvanaka01",[[1702.91,12019.9,0],[1692.76,12038.4,0],[1690.18,12059.5,0],[1688.67,12050.9,0],[1705.79,12071.2,0],[1709.56,12193.5,0],[1698.59,12219.8,0],[1732.91,11967.3,0],[1738.8,11964.1,0],[1715.96,11998.2,0],[1726.87,11979.7,0],[1734.28,12085.5,0],[1738.62,12117.4,0],[1726.5,12150.4,0],[1716.83,12175.6,0],[1761.16,11879.4,0],[1766.16,11876.2,0],[1749.98,11909.2,0],[1756.28,11889.6,0],[1743.03,11933.5,0],[1756.54,11970.3,0],[1746.25,12096.2,0],[1781.81,11879.1,0],[1782.64,11979.5,0],[1775.18,12094.3,0],[1828.84,11897.5,0],[1805.71,11887.2,0],[1812.02,11969.1,0],[1821.43,11947.4,0],[1801.03,11985.9,0],[1818.79,12024.5,0],[1803.42,12008.8,0],[1801.43,12000.3,0],[1806.06,12096.1,0],[1828.63,12097.2,0],[1851.77,11887.3,0],[1845.37,11905.3,0],[1831.24,11926.8,0],[1857.79,12035.7,0],[1836.92,12041.8,0],[1844.53,12044.8,0],[1845.75,12071,0],[1843.75,12097.8,0],[1845.68,12130.4,0],[1851.58,12175.9,0],[1847.66,12151.3,0],[1854.7,12203.5,0],[1853.48,12226.1,0],[1876.19,11846.1,0],[1887.85,11830.3,0],[1877.63,11871.6,0],[1867.97,11863.2,0],[1877.97,12022.8,0],[1903.86,11814.8,0],[1904.03,11894.7,0],[1890.36,11882.7,0],[1907.92,11987.2,0],[1895.1,12007.6,0],[1926.02,11802.8,0],[1947.06,11800.3,0],[1920.17,11907.4,0],[1933.32,11938.9,0],[1940.34,11924.5,0],[1921.58,11962,0],[1974.15,11937.7,0],[1952.37,11927.2,0]]],["lami01",[[7586.02,7713.41,0],[7560.58,7711.79,0],[7616.97,7715.58,0],[7649.96,7718.07,0],[7683.69,7720.7,0],[7706.44,7982,0],[7725.14,7334.28,0],[7716.84,7723.29,0],[7730.58,7992.49,0],[7748.56,7341.46,0],[7748.08,7725.67,0],[7754.8,7997.14,0],[7770.67,7345.69,0],[7796.57,7350.62,0],[7776.09,7727.66,0],[7799.56,7729.1,0],[7794.37,7993.51,0],[7776.05,7997.08,0],[7804.26,7291.28,0],[7821.75,7355.2,0],[7822.15,7729.93,0],[7821.04,7984.78,0],[7859.36,7306.51,0],[7831.14,7298.22,0],[7848.82,7359.49,0],[7843.77,7730.13,0],[7853.63,7968.63,0],[7887.09,7315.62,0],[7877.33,7363.4,0],[7882.83,7667.95,0],[7878.22,7700.67,0],[7863.08,7729.76,0],[7877.97,7729.26,0],[7878.2,7766.8,0],[7882.83,7741.96,0],[7880.58,7787.66,0],[7885.81,7803.52,0],[7881.3,7949.71,0],[7911.19,7325.35,0],[7906.47,7366.97,0],[7896.46,7642.02,0],[7917.58,7620.9,0],[7901.2,7742.49,0],[7919.99,7746.25,0],[7894.68,7820.55,0],[7905.44,7839.9,0],[7918.93,7859.1,0],[7906.14,7928.36,0],[7931.11,7336.59,0],[7946.62,7349.77,0],[7933.12,7376.28,0],[7946.28,7579.77,0],[7935.04,7601.09,0],[7927.49,7757.17,0],[7929.2,7782.15,0],[7949.74,7797.69,0],[7927.97,7816.35,0],[7925.92,7840.87,0],[7923.3,7851.67,0],[7921.35,7879.99,0],[7942.56,7911.88,0],[7927.99,7909.61,0],[7957.78,7371.03,0],[7950.87,7389.47,0],[7961.49,7398.42,0],[7959.71,7428.69,0],[7957.89,7469.52,0],[7957.86,7447.04,0],[7959.06,7496.46,0],[7958.29,7524.8,0],[7954.02,7554.25,0],[7975.71,7544.13,0],[7970.55,7794.42,0],[7963.1,7915.06,0],[8009.9,7524.07,0],[8001.67,7537.56,0],[7991.98,7543.61,0],[8007.13,7772.04,0],[7988.96,7788.12,0],[7988.25,7918.91,0],[8037,7443.72,0],[8028.59,7472.12,0],[8018.93,7501.13,0],[8028.85,7730.61,0],[8019.72,7750.72,0],[8015.92,7923.07,0],[8047.43,7393.53,0],[8043.18,7417.85,0],[8069.63,7665.07,0],[8056.98,7683.08,0],[8041.68,7708.33,0],[8044.03,7927.21,0],[8083.05,7674.66,0],[8094.76,7658.61,0],[8077.17,7662.89,0],[8091.01,7691.01,0],[8097.98,7707.26,0],[8070.5,7930.96,0],[8121.93,7659.15,0],[8101.63,7724.17,0],[8111.55,7769.96,0],[8100.92,7744.25,0],[8100.84,7759.09,0],[8100.02,7934.66,0],[8123.05,7937.95,0],[8123.05,7955.81,0],[8115.79,8004.41,0],[8120.71,7981.55,0],[8154.69,7660.68,0],[8156.61,7799.56,0],[8132.81,7784.91,0],[8156.16,7866.85,0],[8147.2,7896.4,0],[8141.16,7918.63,0],[8152.62,7928.4,0],[8138.25,7931.71,0],[8182.41,7662.32,0],[8186.69,7761.93,0],[8181.36,7783,0],[8171.86,7808.66,0],[8175.56,7916.31,0],[8217.27,7466.07,0],[8214.75,7489.19,0],[8213.2,7508.27,0],[8210.63,7533.33,0],[8207.87,7557.95,0],[8205.69,7577.19,0],[8203.44,7596.85,0],[8201.26,7615.85,0],[8198.53,7639.56,0],[8218.03,7666.65,0],[8199.93,7663.76,0],[8196.19,7659.86,0],[8195.12,7667.88,0],[8193.42,7701.25,0],[8194.49,7681.52,0],[8191.94,7723,0],[8190.09,7742.46,0],[8201.14,7908.25,0],[8224.19,7408.1,0],[8247.21,7421.01,0],[8230.44,7435.77,0],[8222.91,7431.37,0],[8222.36,7445.77,0],[8247.29,7672.36,0],[8223.71,7907.48,0],[8255.12,7907.9,0],[8282.36,7679.43,0],[8312.63,7685.33,0],[8334.09,7688.73,0]]],["lobaka01",[[5654.8,8664.17,0],[5678.05,8654.57,0],[5703.44,8647.61,0],[5724.67,8646.37,0],[5744.92,8647.34,0],[5788.29,8652.36,0],[5765.62,8649.51,0],[5812.39,8654.54,0],[5841.37,8654.84,0],[5875.86,8653.02,0],[5902.97,8650.81,0],[5921.61,8649.11,0],[5940.49,8647.47,0],[5959.49,8646.04,0],[5985.1,8659.12,0],[5984.36,8647.46,0],[5987.71,8677.03,0],[5994.04,8693.65,0],[6022.99,8642.68,0],[6001.21,8643.71,0],[6017.97,8704.4,0],[6045.07,8641.69,0],[6038.81,8706.63,0],[6085.46,8484.58,0],[6067.5,8640.73,0],[6063.85,8714.36,0],[6083.69,8722.79,0],[6101.99,8483.32,0],[6112.88,8484.65,0],[6118.67,8519.08,0],[6118.48,8500.78,0],[6116.96,8490.26,0],[6113.55,8638.77,0],[6090.31,8639.77,0],[6113.21,8718.7,0],[6094.24,8724.28,0],[6121.78,8539.57,0],[6130.01,8557.01,0],[6140.27,8581.39,0],[6146.36,8613.88,0],[6147.22,8634.19,0],[6135.41,8713.61,0],[6163.93,8636.46,0],[6170.75,8718.45,0],[6152.39,8714.98,0],[6194.45,8634.98,0],[6190.47,8724.4,0],[6208.45,8741.02,0],[6226.64,8633.4,0],[6220.64,8765.83,0],[6229.84,8783.82,0],[6259.54,8631.77,0],[6264,8810.3,0],[6241.57,8792.49,0],[6254.55,8798.89,0],[6268.26,8853.62,0],[6259.29,8866.62,0],[6258.3,8887.45,0],[6292.21,8630.15,0],[6271.36,8829.71,0],[6276.57,8845.8,0],[6285.6,8872.34,0],[6323.69,8628.6,0],[6353.04,8627.17,0],[6379.29,8625.94,0],[6404.28,8625.1,0]]],["kotomo01",[[10768.6,6565.16,0],[10798.1,6324.07,0],[10787.5,6553.87,0],[10803.4,6291.81,0],[10802.8,6277.45,0],[10825.5,6314.72,0],[10807.5,6307.59,0],[10820.3,6530.94,0],[10804.9,6542.98,0],[10844.3,6228.23,0],[10848.6,6308.37,0],[10858.6,6465.3,0],[10846.2,6494.98,0],[10834.1,6516.8,0],[10887.9,6199.48,0],[10864.3,6214.36,0],[10889.4,6297.95,0],[10867.2,6304.58,0],[10876.1,6437.98,0],[10908.7,6186.23,0],[10916.1,6290.33,0],[10914.5,6387.71,0],[10898.3,6412.8,0],[10943.5,6099.42,0],[10934,6116.66,0],[10928.3,6135.44,0],[10926.1,6156.71,0],[10921.9,6177.64,0],[10930.3,6209.96,0],[10934.8,6241.95,0],[10937.2,6274.01,0],[10935.7,6304.23,0],[10930.9,6333.51,0],[10923.8,6362.02,0],[10978.7,6068.04,0],[10958.7,6083.39,0],[10998,6052.17,0],[11034.6,6016.5,0],[11016.1,6034.5,0],[11054,5997.91,0],[11095,5960.53,0],[11075,5978.26,0],[11115,5945.09,0],[11135.3,5931.53,0],[11154,5918.92,0],[11172.2,5907.53,0],[11192.9,5901.23,0]]],["leqa01",[[1970.18,8255.04,0],[1986.21,8268.83,0],[2002.52,8282.72,0],[2018.84,8296.51,0],[2034.9,8309.98,0],[2050.43,8322.92,0],[2071.71,8340.49,0],[2096.64,8365.25,0],[2098.1,8390.24,0],[2098.23,8373.54,0],[2127.65,8363.36,0],[2118.98,8377.33,0],[2104.46,8419.31,0],[2115.36,8449.28,0],[2120.51,8474.71,0],[2127.12,8493.53,0],[2156.77,8317.28,0],[2141.6,8341.09,0],[2141.01,8508.08,0],[2157.62,8518.55,0],[2169.08,8298.72,0],[2184.71,8281.94,0],[2177.33,8288.17,0],[2175.72,8524.84,0],[2197.73,8273.93,0],[2195.78,8530.11,0],[2214.36,8535.58,0],[2241.98,7870.39,0],[2247.29,8246.12,0],[2220.21,8261.13,0],[2231.97,8543.01,0],[2247.86,8553.08,0],[2272.59,7888.24,0],[2269.95,8233.91,0],[2258.75,8569.8,0],[2301.65,7905.21,0],[2296.56,8212.53,0],[2305.56,8223,0],[2286.22,8224.43,0],[2326.93,7920,0],[2328.23,8174.19,0],[2313.34,8192.51,0],[2328.78,8218.64,0],[2346.23,7931.3,0],[2360.22,8148.43,0],[2361.96,8167.53,0],[2341,8160.12,0],[2362.77,8186.56,0],[2345.32,8207.26,0],[2359.51,8194.64,0],[2380.88,8138.9,0]]],["blerick01",[[9896.9,2609.93,0],[9883.23,2624.79,0],[9870.73,2641.01,0],[9911.88,2598,0],[9933.86,2590.7,0],[9958.78,2587.57,0],[9980.34,2586.14,0],[10007.2,2586.22,0],[10037.4,2590.61,0],[10063.8,2599.4,0],[10088.6,2610.28,0],[10110.4,2621.32,0],[10128.1,2631.44,0],[10148.2,2643.18,0],[10169.4,2654.82,0],[10188.6,2664.17,0],[10211.5,2673.43,0],[10247.6,2681.03,1.87856],[10257.4,2681.53,0],[10238.2,2679.84,0],[10281,2681.88,0],[10301.7,2679.31,0],[10319.7,2674.43,0],[10331.6,2657.82,0],[10344.8,2685.12,0],[10360.4,2713.1,0],[10376.3,2714.26,0],[10373.4,2731.24,0],[10409.8,2649.62,0],[10402.6,2665.16,0],[10396,2669.74,0],[10380.6,2693.32,0],[10384.6,2680.13,0],[10389.7,2673.47,0],[10393.1,2747.22,0],[10435.4,2390.13,0],[10433.9,2407.87,0],[10433,2431.68,0],[10433,2449.98,0],[10434.4,2464.64,0],[10434.7,2479.6,0],[10432.1,2498,0],[10430.9,2518.61,0],[10437.3,2548.07,0],[10434,2533.72,0],[10432.2,2578.61,0],[10436.9,2564.26,0],[10424.8,2589.26,0],[10418.2,2597.27,0],[10414.3,2604.92,0],[10413.2,2630.06,0],[10413,2615.85,0],[10414,2753.21,0],[10445.1,2694.73,0],[10444.2,2714.69,0],[10462.1,2747.06,0],[10445.1,2734.96,0],[10446.8,2748.69,0],[10482.8,2742.2,0],[10506.7,2737.18,0],[10531.8,2734.22,0],[10561.2,2735.21,0],[10587,2738.48,0],[10605.4,2742.07,0],[10631.7,2749.1,0]]],["tavu01",[[899.1,7618.2,0],[889.231,7673.61,0],[890.393,7699.69,0],[877.224,7683.5,0],[912.739,7603.9,0],[902.556,7614.72,0],[912.629,7635.16,0],[905.223,7660.44,0],[910.463,7722.13,0],[930.29,7585.48,0],[949.785,7565.51,0],[934.83,7662.81,0],[952.271,7684.27,0],[931.681,7745.97,0],[948.597,7764.29,0],[957.989,7773.02,0],[965.741,7550.1,0],[976.415,7542.12,0],[985.74,7540.33,0],[964.935,7699.54,0],[978.391,7715.67,0],[978.624,7767.08,0],[985.135,7775.14,0],[969.977,7772.52,0],[963.729,7774.65,0],[1001.93,7548.41,0],[990.437,7730.05,0],[999.179,7740.46,0],[996.685,7786.9,0],[1015.13,7794.8,0],[1034.45,7573.32,0],[1020.09,7561.85,0],[1031.29,7724.15,0],[1036.72,7788.66,0],[1051.43,7585.94,0],[1072.9,7601.23,0],[1055.49,7706.74,0],[1059.5,7773.16,0],[1096.25,7617.71,0],[1107.04,7667.52,0],[1081.6,7687.83,0],[1104.45,7693.49,0],[1106.12,7718.54,0],[1080.91,7757,0],[1097.97,7742.11,0],[1116.51,7631.93,0],[1128.72,7640.47,0],[1160.8,7608.71,0],[1149.03,7623.57,0],[1176.86,7587.93,0],[1194.53,7566.15,0],[1226.68,7546.89,0],[1206.8,7554.51,0],[1258.84,7530.92,0],[1253.17,7540.53,0],[1282.61,7491.31,0],[1268.14,7515.23,0],[1288.11,7536.97,0],[1277.67,7536.07,0],[1316.08,7446.98,0],[1298.18,7467.09,0],[1303.75,7542.61,0],[1330.1,7555.23,0],[1361.49,7571.21,0]]],["taga01",[[11899.7,1766.89,0],[11882.8,1750.79,0],[11927.4,1775.84,0],[11955.5,1779.78,0],[11946.4,2127.66,0],[11969.7,2140.34,0],[11976.7,1779.42,0],[11997,2161.09,0],[12029.4,1786.27,0],[12023.1,2182.22,0],[12051.5,1792.47,0],[12051.8,2207.62,0],[12042,2197.06,0],[12040.3,2195.23,0],[12077.2,1800.65,0],[12084.2,2239.57,0],[12066.6,2222.86,0],[12119.8,1803.01,0],[12101.5,1805.51,0],[12135.7,1789.44,0],[12162.9,1735.52,0],[12172.9,1715.97,0],[12150.6,1762.84,0],[12185.4,1701.66,0],[12201.9,1691.6,0],[12221.3,1686.6,0],[12259.3,1685.3,0],[12240.7,1684.58,0],[12280.4,1690.5,0],[12302.4,1701.24,0],[12318.1,1717.54,0],[12326.5,1738.41,0],[12328.8,1763,0],[12326.2,1790.07,0],[12322.3,1814.74,0],[12318.7,1836.54,0]]],["vatukoula01",[[13978.4,9964.43,0],[13976.8,9980.27,0],[13978.4,9993.75,0],[13988.3,9951.64,0],[14012,9939.12,0],[14040.7,9930.53,0],[14061.5,9931.79,0],[14083.7,9932.08,0],[14108.3,9929.12,0],[14152.5,9929.22,0],[14130.1,9927.31,0],[14189.5,9924.53,0],[14172,9931.58,0],[14211.3,9888.51,0],[14202.4,9907.47,0],[14228.4,9879.68,0],[14245.7,9883.85,0],[14239.8,10218.5,0],[14260.3,9890.78,0],[14277.1,9892.51,0],[14258.1,10212.5,0],[14271.6,10206.6,0],[14297.6,9893.49,0],[14305.5,10158.8,0],[14283.9,10193.5,0],[14295.8,10175.4,0],[14334.4,9915.05,0],[14318.6,9901.24,0],[14336.4,10104.9,0],[14325,10124.4,0],[14315.4,10141.3,0],[14354.5,9934.77,0],[14361,10075.9,0],[14348,10088.2,0],[14377.6,9960.17,0],[14395.2,9988.63,0],[14378.4,10063,0],[14394.9,10054.1,0],[14404.9,10013.8,0],[14410.3,10034.1,0],[14413.5,10047.7,0],[14432.5,10046.7,0]]],["indport01",[[13134.3,12179.3,0],[13163.7,11973,0],[13160.5,12085.7,0],[13144.1,12095.1,0],[13141.2,12104.5,0],[13150.6,12125.4,0],[13164.4,12147.4,0],[13160.2,12142.4,0],[13148.8,12163.4,0],[13176.5,11994.3,0],[13187.9,12014.1,0],[13199.6,12036.4,0],[13187.4,12074.6,0],[13189.3,12138.3,0],[13198,12260.6,0],[13188.5,12292.3,0],[13182.7,12318.4,0],[13207,12054.7,0],[13204.7,12064.4,0],[13219.5,12125,0],[13221.2,12214.8,0],[13209.3,12234.8,0],[13213.8,12292.5,0],[13256.6,12109.5,0],[13239.5,12192.2,0],[13259.9,12322.4,0],[13239,12308.8,0],[13262.1,12107.4,0],[13263.1,12172,0],[13270.4,12188.6,0],[13281.7,12214.3,0],[13281.5,12336.4,0],[13319.3,11973.5,0],[13299.5,12091.8,0],[13295.4,12148.8,0],[13292,12237.6,0],[13299.7,12254.9,0],[13315.8,12291.4,0],[13307.6,12273,0],[13302.4,12349.9,0],[13330.1,11997.4,0],[13342.3,12024.6,0],[13331.1,12078.8,0],[13346.8,12126.1,0],[13322.2,12136.5,0],[13323.9,12309.8,0],[13331.9,12327.8,0],[13343,12352.7,0],[13327.8,12366.4,0],[13347.4,12379.1,0],[13353.4,12049.1,0],[13360.4,12064.8,0],[13375.3,12114.2,0],[13365.2,12402.1,0],[13372.1,12416.5,0],[13378.6,12425.7,0],[13391.5,12054.8,0],[13382.8,12058,0],[13393.4,12056.3,0],[13409.5,12069.8,0],[13402.7,12060.1,0],[13401.3,12103.6,0],[13396.6,12425.3,0],[13385.5,12428.2,0],[13419.7,12044,0],[13423.9,12044.8,0],[13420.5,12052.8,0],[13432.8,12087.8,0],[13423.1,12064.4,0],[13430.6,12118.2,0],[13418.3,12096.6,0],[13415.8,12417.5,0],[13436.7,12408.9,0],[13451,12032.3,0],[13444.2,12114.3,0],[13454.6,12138.8,0],[13441,12142.5,0],[13467.8,12169.6,0],[13454.2,12173.2,0],[13465.1,12198.6,0],[13456.2,12400.8,0],[13483.5,12020.1,0],[13478.6,12195.2,0],[13486.3,12213.1,0],[13472.7,12216.4,0],[13493.9,12231,0],[13480.3,12234.2,0],[13487.8,12251.9,0],[13498.4,12276.6,0],[13478.6,12391.4,0],[13515.4,12008.3,0],[13519.2,12245.9,0],[13512,12273.4,0],[13510.7,12305.9,0],[13524.5,12302.4,0],[13519.9,12328.1,0],[13527,12346.7,0],[13529.5,12370,0],[13503.3,12381.1,0],[13527.1,12369.1,0],[13523.2,12372.6,0],[13544.7,11997.4,0],[13543.4,12236,0],[13533.9,12324.1,0],[13556.8,12358.5,0],[13541.6,12340.8,0],[13550.2,12352,0],[13530.2,12361.2,0],[13571.2,11785.4,0],[13579.3,11779.7,0],[13566,11793.3,0],[13565.7,11809,0],[13564.6,11801.3,0],[13570.7,11823.9,0],[13577.8,11843,0],[13584.4,11860.1,0],[13569.7,11988.1,0],[13588.4,11981,0],[13570.5,12224.9,0],[13584.4,12346.9,0],[13560.5,12354.8,0],[13592.3,11774.4,0],[13606.1,11769.6,0],[13616.4,11767.4,0],[13591.4,11878.2,0],[13598.3,11895.7,0],[13606.5,11916.5,0],[13614.4,11936.8,0],[13613.8,11969.7,0],[13619.4,11950.4,0],[13619.6,11961.4,0],[13602.8,11975.3,0],[13617.5,12206.1,0],[13593.9,12215.5,0],[13611.8,12335.3,0],[13639.5,11769,0],[13637.7,12199.3,0],[13649.7,12198.4,0],[13634.9,12219,0],[13645.1,12243.3,0],[13638.4,12324.1,0],[13668.3,11772.7,0],[13673.2,12203.4,0],[13660.5,12200.1,0],[13656.4,12270.3,0],[13666.4,12294,0],[13663.4,12313.4,0],[13691.6,11780.8,0],[13701.1,11777,0],[13698.5,11798.3,0],[13691.2,12208.6,0],[13706.5,12295,0],[13686.3,12303.6,0],[13739.2,11819.6,0],[13712.5,11828.2,0],[13723.7,11861.8,0],[13735.4,11891.2,0],[13718.5,12237.5,0],[13711.6,12220.4,0],[13728.7,12262.6,0],[13735.8,12280.3,0],[13754.5,11812,0],[13748,11842.3,0],[13761.2,11876.3,0],[13759.8,12236.5,0],[13755.4,12230,0],[13741.5,12223.2,0],[13749.2,12226.1,0],[13764.9,12266.4,0],[13763.3,12244.7,0],[13766.1,12252.1,0],[13767.4,12259.2,0],[13752,12274.7,0],[13888.4,12078.4,0],[13887.3,12071.6,0],[13901.1,12044.4,0],[13900.2,12087.8,0],[13890.2,12063.5,0],[13920.4,12100.2,0]]],["ba01",[[13925.3,11807.1,0],[13932.3,11814.7,0],[13940.1,11832,0],[13951.4,11860.8,0],[13967.4,11898.7,0],[13959.3,11881.4,0],[13978.6,11911.3,0],[13996.5,11923.8,0],[14017.6,11932,0],[14063.8,11933,0],[14040.2,11934.6,0],[14087.1,11926.7,0],[14125.3,11891,0],[14108.3,11912.1,0],[14158.2,11776.8,0],[14153.2,11797.1,0],[14146.8,11823.3,0],[14140.1,11850.4,0],[14134.8,11870.5,0],[14185.5,11667.6,0],[14180.1,11688.9,0],[14174.5,11710.9,0],[14169,11733.2,0],[14163.5,11755.4,0],[14213,11579.1,0],[14205.6,11596.2,0],[14197.8,11622.1,0],[14190.7,11647.7,0],[14242.7,11549.1,0],[14224.5,11565,0],[14264.3,11531,0],[14300.8,11310,0],[14309.4,11283,0],[14296.3,11333.6,0],[14295.2,11352.4,0],[14295.7,11397.4,0],[14295.2,11374.1,0],[14296.4,11421,0],[14297.1,11443.3,0],[14296.8,11469.7,0],[14282.2,11514.2,0],[14292.8,11496,0]]],["georgetown01",[[5188.66,10005.2,0],[5204.71,10042.3,0],[5195.57,10031.7,0],[5191.08,10022.1,0],[5214.53,10049.8,0],[5244.12,10051.8,0],[5222.19,10051.5,0],[5277.37,10052,0],[5310.3,10052.2,0],[5342.17,10052.3,0],[5372.72,10052.4,0],[5396.7,10101.8,0],[5383.21,10101.7,0],[5403.94,10052.4,0],[5429.07,10052.6,0],[5415.4,10101.8,0],[5455.45,10054.7,0],[5444.84,10053.1,0],[5436.07,10102.1,0],[5456.21,10102.1,0],[5470.55,10059,0],[5485.58,10063.6,0],[5483.18,10084,0],[5470.36,10100.5,0],[5484.19,10091.5,0],[5517.02,9958.85,0],[5513.41,9974.37,0],[5508.79,9993.31,0],[5505.46,10010.2,0],[5506.19,10023.8,0],[5507.27,10040.1,0],[5500.96,10045.2,0],[5495.53,10050.5,0],[5497.89,10095.7,0],[5516.21,10101.4,0],[5527.58,10045.7,0],[5536.1,10107.3,0],[5554.5,10057.4,0],[5555.93,10113.5,0],[5570.19,10120,0],[5578.31,10128.1,0],[5580.19,10067.5,0],[5601.59,10075.8,0],[5591.92,10168.7,0],[5584.71,10143.9,0],[5599.62,10196.5,0],[5606.9,10222.3,0],[5628.44,10011.5,0],[5623.33,10083.6,0],[5634.27,10247.7,0],[5611.5,10238.7,0],[5616.13,10250.7,0],[5616.49,10274.9,0],[5614,10260.5,0],[5624.05,10298.2,0],[5631.57,10309.9,0],[5637.83,10337.7,0],[5669.24,10101.8,0],[5645.03,10091.3,0],[5650.7,10116.8,0],[5646.19,10136.6,0],[5644.22,10149.5,0],[5645.87,10171.2,0],[5649.25,10200.3,0],[5652.66,10222.6,0],[5665.23,10259.3,0],[5653.27,10242.5,0],[5665.65,10281.2,0],[5649.05,10303.5,0],[5666.69,10297.1,0],[5646.22,10358.2,0],[5656.76,10381.3,0],[5666.64,10403.5,0],[5690.36,10251.9,0],[5675.97,10256.3,0],[5677.72,10320.2,0],[5686.39,10343.5,0],[5694.86,10364.2,0],[5684.24,10382.3,0],[5673.07,10387.7,0],[5675.44,10424.2,0],[5683.89,10444.8,0],[5692.17,10463.3,0],[5717.02,10101.7,0],[5705.75,10134.8,0],[5703.42,10118.2,0],[5703.22,10154.2,0],[5707.34,10196.4,0],[5704.34,10174.2,0],[5712.44,10218.8,0],[5724.99,10257.3,0],[5713.13,10245,0],[5703.71,10247.8,0],[5713.54,10392.2,0],[5718.1,10416.2,0],[5724.53,10474.1,0],[5700.7,10474.4,0],[5716.91,10481.1,0],[5720.17,10490,0],[5725.06,10502.9,0],[5720.4,10550.2,0],[5728.07,10542.1,0],[5714.44,10558.6,0],[5712.63,10569.4,0],[5753.89,10216.7,0],[5734.85,10222.7,0],[5731.9,10277.7,0],[5739.25,10299.1,0],[5745.49,10316.9,0],[5750.81,10332.7,0],[5755.15,10346.2,0],[5753.61,10373.9,0],[5731.76,10383.7,0],[5731.53,10446.3,0],[5738.43,10468.4,0],[5747.9,10473,0],[5731.11,10520.1,0],[5732.62,10533.5,0],[5771.88,10205.4,0],[5772.66,10366.9,0],[5764.55,10478.6,0],[5790.97,10362.4,0]]],["imone01",[[10346.3,10568.5,0],[10342,10580.8,0],[10346.4,10609.1,0],[10341.7,10590.9,0],[10379.6,10497,0],[10368.3,10520.7,0],[10355.8,10547.2,0],[10357.1,10635.6,0],[10371.1,10662.3,0],[10371.9,10765,0],[10364.2,10795.9,0],[10358.8,10825.3,0],[10355.6,10850.2,0],[10355.3,10872.7,0],[10361.1,10899.5,0],[10374.3,10930.1,0],[10409.4,10673.2,0],[10386.3,10686,0],[10396.2,10700.6,0],[10388.5,10718.8,0],[10380.1,10739.7,0],[10432.4,10630,0],[10420.9,10650.8,0],[10447.9,10605.7,0],[10470.6,10581.8,0],[10492.5,10566.3,0],[10512.9,10553.2,0],[10559.9,10521.2,0],[10536.1,10538.1,0],[10578.3,10506.2,0],[10619,10464.7,0],[10605.4,10479.4,0],[10591.8,10493.5,0],[10646.3,10435.1,0],[10632.7,10449.8,0],[10673.4,10408.7,0],[10659.9,10421.3,0],[10691.6,10395.3,0],[10737.7,10369.9,0],[10714.9,10382,0],[10757.8,10355.4,0]]],["doodstil01",[[12463.8,4716.18,0],[12488.3,4741.41,0],[12533.5,4756.7,0],[12511.7,4756.32,0],[12557.8,4750.38,0],[12580.5,4742.36,0],[12603.4,4735.92,0],[12629.4,4733.53,0],[12653.4,4731.3,0],[12688.5,4716.11,0],[12672,4724.97,0],[12686.8,5013.89,0],[12671.3,5026.16,0],[12710.3,4704.55,0],[12704.5,4996.69,0],[12738.1,4686.78,0],[12724.4,4975.16,0],[12742.9,4952.18,0],[12779.1,4642.3,0],[12761.5,4664.58,0],[12773.6,4906.89,0],[12758.8,4929.56,0],[12791.1,4300.25,0],[12803.9,4330.92,0],[12796.1,4622.61,0],[12808.3,4727.33,0],[12805.3,4787.08,0],[12803.9,4823.41,0],[12798.2,4845.3,0],[12791.8,4869.82,0],[12787.3,4881.19,0],[12783.2,4890.51,0],[12824.4,4371.66,0],[12815.4,4354.48,0],[12833.5,4389.42,0],[12813.5,4607.07,0],[12829.4,4600.01,0],[12839.4,4601.18,0],[12825.6,4643.16,0],[12836.4,4623.96,0],[12818,4660.5,0],[12810.4,4702.08,0],[12813.3,4680.36,0],[12810.3,4755.37,0],[12820.3,4756.42,0],[12815.5,4825.03,0],[12838.1,4831.56,0],[12842.2,4407.48,0],[12849.8,4425.54,0],[12860.6,4469.73,0],[12855.7,4443.31,0],[12863.5,4496.77,0],[12864,4515.49,0],[12863.3,4541.63,0],[12861.1,4570.43,0],[12856.2,4590.86,0],[12847,4605.24,0],[12862.6,4749.97,0],[12845.7,4755.43,0],[12845.1,4777.99,0],[12841.9,4811.03,0],[12852.1,4843.89,0],[12890.4,4744.84,0]]],["lijnhaven01",[[11414.4,2695.56,0],[11454,2669.36,0],[11433.6,2681.6,0],[11480,2475.93,0],[11481.8,2510.73,0],[11478.7,2493.22,0],[11473,2659.82,0],[11486.9,2654.23,0],[11501.3,2416.81,0],[11513.1,2427.4,0],[11492.5,2453.36,0],[11510.6,2532.93,0],[11490.7,2536.59,0],[11499.8,2534.85,0],[11492,2555.01,0],[11497.9,2586.38,0],[11519.3,2607.36,0],[11503,2608.96,0],[11513.7,2669.79,0],[11496.5,2651.61,0],[11496,2887.19,0],[11517.1,2883.73,0],[11548.9,2416.59,0],[11533.7,2414.68,0],[11538.7,2541.89,0],[11531.5,2535.3,0],[11522.8,2532.23,0],[11536,2539.3,0],[11547.2,2592.04,0],[11538.3,2605.7,0],[11525.8,2691.46,0],[11528.5,2713.29,0],[11528.5,2740.52,0],[11527.9,2771.65,0],[11528.1,2798.24,0],[11530.9,2817.49,0],[11541.2,2836.59,0],[11535.9,2870.23,0],[11566.2,2429.84,0],[11578.4,2439.33,0],[11552.4,2556.65,0],[11562.5,2576.62,0],[11550.7,2618.25,0],[11566.5,2634.23,0],[11575.8,2643.64,0],[11568.3,2839.13,0],[11567.9,2869.7,0],[11551.7,2855.33,0],[11599.4,2422.12,0],[11595,2459.41,0],[11585.7,2432.76,0],[11609.9,2473.97,0],[11584.7,2591.21,0],[11601.8,2609.47,0],[11582.2,2650.78,0],[11587.5,2658.4,0],[11592.1,2673.39,0],[11596.7,2696.04,0],[11595.8,2688.39,0],[11597.3,2706.44,0],[11601.5,2721.35,0],[11598.3,2715.79,0],[11606.8,2723.48,0],[11595.9,2818.5,0],[11583,2826.72,0],[11581.4,2884.85,0],[11594.6,2899.08,0],[11620.8,2405.65,0],[11623.9,2487.52,0],[11620.2,2629.07,0],[11633.8,2646.19,0],[11638.7,2658.81,0],[11618.8,2723.94,0],[11633.2,2724.1,0],[11640,2774.12,0],[11617.1,2815.76,0],[11639.2,2798.7,0],[11639,2828.35,0],[11639.7,2856.55,0],[11610.4,2914.68,0],[11625.2,2926.37,0],[11636.4,2930.11,0],[11662.5,2364.91,0],[11642.5,2386.57,0],[11643.6,2505.77,0],[11659.4,2518.99,0],[11665,2520.65,0],[11640.4,2698.71,0],[11640.4,2674.14,0],[11640,2752.58,0],[11663.3,2784.6,0],[11641.4,2784.83,0],[11641.5,2883.09,0],[11644.7,2911.95,0],[11647.1,2931.43,0],[11655.7,2959.24,0],[11665.1,2974.14,0],[11668.2,3020.93,0],[11642.7,3014.2,0],[11657.5,3002.82,0],[11697.5,2306.76,0],[11680.8,2338.06,0],[11687.6,2363.4,0],[11690.5,2385.13,0],[11680.8,2397.27,0],[11698.9,2375.41,0],[11675,2408.58,0],[11673.8,2419.64,0],[11673.7,2426.69,0],[11677.8,2521.4,0],[11699.9,2752.22,0],[11696.4,2758.12,0],[11695.5,2770.56,0],[11695.3,2784.38,0],[11673.8,2987.56,0],[11689.5,3004.54,0],[11713.2,2276.32,0],[11706.7,2336.39,0],[11727.7,2349.03,0],[11718,2385.69,0],[11725.3,2393.84,0],[11729.1,2423.05,0],[11728.6,2403.57,0],[11729.6,2451.95,0],[11729.2,2516.17,0],[11704,2522.14,0],[11724.3,2520.95,0],[11721,2749.59,0],[11707.4,2749.73,0],[11711,2784.41,0],[11707.6,2963.84,0],[11725.7,2976.45,0],[11705.4,2992.57,0],[11741.4,2357.24,0],[11751.5,2360.37,0],[11730.1,2476.76,0],[11730.4,2495.87,0],[11730.4,2508.85,0],[11739.9,2749.89,0],[11732.1,2784.57,0],[11751.9,2784.95,0],[11759.7,2923.84,0],[11735.1,2946.99,0],[11739.5,2963.55,0],[11739.5,2952.91,0],[11741,2957.75,0],[11778.1,2347.78,0],[11762.9,2359,0],[11764.5,2750.5,0],[11789.4,2753.24,0],[11782.8,2751.17,0],[11773.6,2786.18,0],[11782.8,2906.99,0],[11798.9,2326.1,0],[11793.2,2757.89,0],[11793.8,2772.5,0],[11792.9,2789.17,0],[11807.5,2802.25,0],[11804.6,2891.01,0],[11844.6,2274.92,0],[11821.7,2300.63,0],[11825.8,2824.67,0],[11837.2,2845.2,0],[11821.9,2876.93,0],[11848.3,2854.74,0],[11837.3,2862.93,0],[11864.2,2843.07,0],[11896.8,2819.93,0],[11881.5,2830.55,0],[11901.7,3038.25,0],[11881.6,3051.48,0],[11916.8,2808.34,0],[11919.9,3024.81,0],[11935.5,3011.77,0],[11941.5,2806.62,0],[11963.7,2825.94,0],[11952.7,2998.83,0],[11980.4,2847.98,0],[11992.6,2862.09,0],[11997.3,2950.27,0],[11986.2,2970.95,0],[11970.6,2986.16,0],[12011.2,2872.27,0],[12015.8,2893.24,0],[12006.9,2922.31,0],[12034.1,2878.57,0],[12049.4,2882.99,0],[12058,2888.11,0],[12069.3,2897.31,0],[12087.7,2913.43,0]]],["saioko01",[[12053.8,4449.42,0],[12083.3,4464.23,0],[12110.9,4475.66,0],[12133.8,4484.31,0],[12161.6,4491.18,0],[12193.2,4496.3,0],[12223,4500.6,0],[12248,4503.01,0],[12273.4,4502.34,0],[12297.9,4505.7,0],[12328.7,4529.8,0],[12314.8,4516.35,0],[12340.9,4547.02,0],[12355.9,4568.94,0],[12379.8,4588.91,0],[12403.9,4606.66,0],[12420.9,4628.57,0],[12435.2,4653.77,0],[12446,4675.39,0],[12451.3,4693.58,0],[12463.8,4716.18,0],[12488.3,4741.41,0],[12533.5,4756.7,0],[12511.7,4756.32,0],[12557.8,4750.38,0],[12580.5,4742.36,0],[12603.4,4735.92,0],[12629.4,4733.53,0],[12653.4,4731.3,0],[12688.5,4716.11,0],[12672,4724.97,0],[12710.3,4704.55,0],[12738.1,4686.78,0],[12779.1,4642.3,0],[12761.5,4664.58,0],[12796.1,4622.61,0]]],["nani01",[[1919.49,10653.2,0],[1920.1,10664.9,0],[1921.63,10683.9,0],[1924.02,10703.7,0],[1937.73,10732.9,0],[1927.64,10718.7,0],[1957.13,10748.7,0],[1982.1,10763.2,0],[2008.3,10773.7,0],[2035.95,10783.3,0],[2063.04,10792.5,0],[2088.31,10801.6,0],[2110.57,10812.1,0],[2130.39,10820.6,0],[2150.43,10830.2,0],[2170.37,10844.5,0],[2193.39,10862.3,0],[2213.6,10879,0],[2231.07,10895.3,0],[2252.78,10912.8,0],[2273.87,10930,0]]],["lafoa01",[[8565.65,4504.31,0],[8576.74,4523.25,0],[8587.48,4538.81,0],[8599.11,4553.17,0],[8624.85,4580.04,0],[8611.58,4566.73,0],[8638.86,4593.14,0],[8653.83,4605.36,0],[8670.3,4615.92,0],[8691,4624.57,0],[8716.58,4630.88,0],[8743.88,4634.98,0],[8770.18,4638.22,0],[8800.68,4642.1,0],[8833.33,4646.09,0],[8858.01,4649.28,0],[8875.6,4655.09,0],[8896.33,4671.51,0],[8918.49,4692.67,0],[8937.23,4711.68,0],[8956.57,4731.58,0],[8975.04,4750.65,0],[8996.16,4772.06,0],[9013.96,4788.98,0],[9026.34,4796.73,0],[9042.35,4803.91,0],[9064.21,4813.53,0],[9089.84,4824.33,0],[9112.56,4832.6,0],[9148.66,4832.56,0],[9131.81,4835.54,0],[9166.53,4822.88,0],[9188.26,4808.02,0],[9214,4789.47,0]]],["balavu01",[[2288.96,7440.35,0],[2313.42,7446.21,0],[2336.66,7447.17,0],[2358.49,7444.24,0],[2382.26,7438.99,0],[2407.7,7195.4,0],[2410.41,7183,0],[2413.78,7174.66,0],[2407.04,7432.07,0],[2439.2,7179,0],[2458.25,7179.4,0],[2431.92,7424.14,0],[2455.98,7415.84,0],[2484.1,7170.81,0],[2478.29,7407.84,0],[2510.51,7155.02,0],[2516.13,7394.37,0],[2497.94,7400.79,0],[2531.95,7137.55,0],[2533.57,7388.01,0],[2569.81,7106.19,0],[2551.75,7120.99,0],[2579.39,7310.73,0],[2575.85,7351.78,0],[2558.35,7377.18,0],[2568.19,7370.5,0],[2573.09,7363.23,0],[2567.5,7392.86,0],[2578.44,7405.81,0],[2608.18,7076.9,0],[2589,7090.85,0],[2601.44,7216.54,0],[2592.1,7241.45,0],[2585.37,7261.56,0],[2582.08,7276.48,0],[2580.72,7291.16,0],[2603.61,7334.26,0],[2581.39,7333.62,0],[2606.16,7401.48,0],[2588.82,7406.79,0],[2630.18,7064.13,0],[2636.17,7129.35,0],[2628.64,7149.04,0],[2621.35,7167.55,0],[2612.18,7189.85,0],[2636.87,7330.94,0],[2625.03,7333.84,0],[2630.27,7391.67,0],[2655.03,7052.52,0],[2662.44,7068.69,0],[2652.86,7088.63,0],[2644.17,7109.03,0],[2655.26,7325.26,0],[2672.45,7045.27,0],[2678.42,7317.74,0],[2700.3,7310.51,0],[2722.69,7302.97,0],[2714.92,7305.62,0],[2740.84,7297.06,0],[2765.51,7289.59,0],[2786.63,7285.23,0],[2811.33,7284.98,0],[2841.69,7288.15,0],[2862.66,7292.62,0]]],["petitnicolet01",[[6643.83,13095.7,0],[6658.53,13118.7,0],[6688.27,13157.3,1.81392],[6712.08,13189.3,8.02069],[6700.16,13173.3,7.73401],[6744.79,13228.1,0],[6733.52,13217.9,0],[6763.52,13240.3,0],[6791.83,13250.3,0],[6804.31,13377.4,0],[6827.02,13257.4,0],[6828.27,13378,0],[6855.4,13264.4,0],[6848.3,13379.1,0],[6866.94,13381.6,0],[6894.49,13287.4,0],[6875.4,13273.2,0],[6885.59,13384.3,0],[6911.7,13307,0],[6921.51,13327.6,0],[6925.44,13346.7,0],[6918.24,13375.9,0],[6929.15,13368.4,0],[6903.16,13382.7,0],[6946.2,13375.7,0],[6968.47,13381.5,0],[7009.5,13389.5,0],[6990.72,13386.1,0],[7029.44,13393.1,0],[7049.48,13396.7,0],[7076.48,13401.5,0],[7111.23,13407.3,0],[7144.72,13413.7,0],[7176.31,13424.6,0],[7207,13439.2,0]]],["buabua01",[[12882.6,2898.56,0],[12895.2,2912.62,0],[12911.5,2929,0],[12930.7,2947.82,0],[12956.6,2982.63,0],[12968.5,3005.92,0],[12982.3,3034.62,0],[12996.5,3059.78,0],[13011.3,3079.9,0],[13025.3,3096.16,0],[13038.5,3109.2,0],[13070.1,3134.63,0],[13053.3,3121.77,0],[13090.9,3150.7,0],[13116.1,3169.53,0],[13143.4,3185.54,0],[13171.1,3198.21,0],[13200.5,3213.26,0],[13227.7,3225.43,0],[13250.6,3228.78,0],[13272.5,3224.49,0],[13312.7,3199.94,0],[13292.1,3213.68,0],[13344.6,2648.09,0],[13342.8,3170.41,0],[13330.3,3185.29,0],[13355.3,2664.19,0],[13368.8,2679.11,0],[13361.2,3149.17,0],[13385.4,2694,0],[13402.4,2713.77,0],[13408,2982.56,0],[13400.7,3004.7,0],[13408.8,3032.09,0],[13394.1,3114.61,0],[13403.8,3101.22,0],[13380.7,3128.52,0],[13419.2,2737.86,0],[13434.8,2756.65,0],[13413.9,3083.78,0],[13417.7,3061.09,0],[13464,2784.27,0],[13449.4,2769.89,0],[13452.8,2974.88,0],[13478.2,2801.2,0],[13491.3,2822.31,0],[13495.4,2963.25,0],[13476.7,2973.68,0],[13502.6,2847.36,0],[13511.9,2872.25,0],[13518.3,2895.63,0],[13517.1,2922.9,0],[13508.1,2947.54,0]]],["losi01",[[9967.09,4648.92,0],[9982.16,4668.39,0],[9970.24,4659.71,0],[10001.2,4676.98,0],[10027.6,4687.19,0],[10077.6,4706.24,0],[10055.3,4697.36,0],[10098.4,4713.78,0],[10134.1,4724.88,0],[10116.7,4719.51,0],[10157.8,4732.51,0],[10183.2,4739,0],[10176.1,5045.48,0],[10194.8,5053.03,0],[10208.1,4748.35,0],[10210.7,5062.6,0],[10232.6,4762.76,0],[10248.4,4779.94,0],[10259.8,4803.6,0],[10233.2,5076.06,0],[10253.4,5085.86,0],[10273.4,4828.22,0],[10289.8,4846.16,0],[10283.8,5067.85,0],[10275.4,5082.54,0],[10265.3,5087.31,0],[10308.5,4860.05,0],[10299.6,5046.77,0],[10348.1,4886.33,0],[10327.6,4873.51,0],[10330.5,5036.74,0],[10371,4900.16,0],[10369.3,4976.88,0],[10361.3,4999.02,0],[10361.2,4986.23,0],[10362.1,5039.03,0],[10368.7,5013.62,0],[10387.9,4914.95,0],[10395.1,4930.41,0],[10395.4,4946.16,0],[10381.6,4968.48,0],[10391,4959.52,0],[10401.4,5036.04,0],[10381.3,5024.97,0],[10391.6,5043.97,0],[10418.1,5046.06,0],[10421.8,5052.45,0],[10451.9,5060.52,0],[10484,5092.14,0],[10470.6,5074.51,0],[10503.3,5106.58,0],[10532.8,5116.3,0],[10558.8,5122.38,0]]],["larochelle01",[[9172.87,13729.7,0],[9200.63,13723.1,0],[9220.35,13714.5,0],[9245.47,13700.2,0],[9267.25,13686.1,0],[9266.23,13686.2,0],[9292.76,13619.6,0],[9286.99,13637.3,0],[9285.5,13655.3,0],[9297.45,13656.5,0],[9291.66,13656.9,0],[9323.68,13490.6,0],[9307.69,13525.3,0],[9310.36,13504.9,0],[9316.38,13550.5,0],[9328.34,13573.1,0],[9304.1,13608.7,0],[9302.85,13608.6,0],[9320.61,13645.6,0],[9307.64,13652.9,0],[9340.61,13435.6,0],[9343.65,13456,0],[9338.45,13474.4,0],[9346.98,13589.5,0],[9335.39,13588.5,0],[9341.71,13636.8,0],[9388.03,13518.3,0],[9388.26,13500.5,0],[9370.23,13581.6,0],[9371.72,13627.3,0],[9417.31,13466,0],[9401.16,13490.7,0],[9414.67,13479.9,0],[9394.39,13545.7,0],[9400.24,13565.8,0],[9402.28,13618.3,0],[9441.29,13406.4,0],[9428.69,13424.1,0],[9420.07,13446,0],[9424.23,13563.5,0],[9430.43,13610.6,0],[9461.87,13289,0],[9469.89,13319.7,0],[9463.88,13307.1,0],[9462.84,13303.1,0],[9460.3,13391.3,0],[9452.14,13554.6,0],[9478.49,13547.1,0],[9455.85,13604.8,0],[9478.17,13601.5,0],[9480.37,13336.9,0],[9484.2,13377.6,0],[9493.56,13355.7,0],[9500.45,13368.4,0],[9502.09,13541.9,0],[9504.05,13601.9,0],[9534.36,13382.2,0],[9514.28,13385.8,0],[9516.9,13411.4,0],[9516.79,13436.3,0],[9516.9,13465.5,0],[9522.53,13494.6,0],[9529.76,13512.4,0],[9533.77,13522,0],[9527.79,13539.1,0],[9535.82,13531.3,0],[9564.13,13379.3,0],[9569.9,13539.2,0],[9550.82,13538.6,0],[9540.02,13544.4,0],[9540.06,13551.1,0],[9540.92,13563,0],[9542.55,13582.5,0],[9561.27,13607.1,0],[9543.13,13603.5,0],[9543.46,13595.3,0],[9593.04,13379.5,0],[9590.58,13540,0],[9580.65,13605.4,0],[9611.18,13345.6,0],[9620.71,13335.8,0],[9600.73,13364,0],[9608.42,13386.5,0],[9627.26,13393.1,0],[9628.53,13539.9,0],[9609.11,13540.5,0],[9620.54,13601.2,0],[9600.3,13603.2,0],[9636.48,13333.5,0],[9655.23,13330.7,0],[9644.21,13401.3,0],[9646.34,13538.3,0],[9642.12,13598.8,0],[9669.63,13318.1,0],[9676.46,13408.2,0],[9674.06,13437.4,0],[9665.92,13420.6,0],[9684.08,13529.3,0],[9663.56,13534.7,0],[9681.31,13591.1,0],[9662.18,13595.8,0],[9713.52,13371.2,0],[9695.07,13388.5,0],[9693.23,13460.9,0],[9715.67,13484,0],[9706.78,13522.2,0],[9717.94,13577.7,0],[9699.96,13584.7,0],[9746.08,13345.5,0],[9729.07,13358.4,0],[9728.62,13497.9,0],[9733.6,13506.5,0],[9745.63,13517,0],[9747.21,13523.7,0],[9736.11,13570.9,0],[9761.32,13335.8,0],[9765.15,13504.8,0],[9750.59,13541.7,0],[9754.36,13562.5,0],[9804.27,13499.9,0],[9789.5,13501,0],[9788.84,13562.8,0],[9824.12,13500.7,0],[9814.25,13563.2,0],[9853.43,13524,0],[9853.68,13508.5,0],[9853.08,13545.1,0],[9869.69,13563.1,0],[9840.42,13564.1,0],[9873.28,13503.1,0],[9891,13504,0],[9893.63,13504,0],[9910.26,13503.7,0],[9927.21,13557.4,0],[9901.83,13560,0]]],["vagalala01",[[10744.8,9548.8,0],[10770.6,9556.25,0],[10784,9561.07,0],[10785.3,9587.84,0],[10783.8,9571.95,0],[10788,9601.69,0],[10797.3,9636.44,3.20352],[10809.8,9563.62,0],[10813.6,9684.86,0],[10807.1,9670.37,0],[10825.9,9708.84,0],[10829.2,10008.1,0],[10823.5,10029.3,0],[10853.5,9567.35,0],[10830.9,9565.6,0],[10841.8,9738.9,0],[10857.9,9768.5,0],[10855,9948.24,0],[10840.6,9978.45,0.616959],[10876.3,9568.92,0],[10879.8,9807.2,0],[10870.1,9790.43,0],[10883.7,9888.71,0],[10874.3,9908.45,0],[10864.2,9929.34,0],[10897.9,9570.39,0],[10893.6,9830.27,0],[10898.5,9860.34,0],[10916.2,9844.86,0],[10904.2,9847.94,0],[10892.4,9871.03,0],[10923.1,9572.55,0],[10933,9840.92,0],[10969.4,9591.93,0],[10975.1,9573.54,0],[10960.5,9581.11,0],[10960.5,9576.64,0],[10979.2,9613.35,0],[10957.1,9838.49,0],[10996,9569.02,0],[10994.5,9653.17,0],[10988,9635.5,0],[11001.3,9672.08,0],[11008.1,9691.74,0],[10981.8,9836.87,0],[11004.7,9835.64,0],[11018.9,9563.98,0],[11038.9,9559.37,0],[11014.9,9711.65,0],[11021.6,9731.31,0],[11027.9,9750.24,0],[11033.7,9767.92,0],[11025.9,9834.47,0],[11046.2,9381.26,0],[11063.1,9409.3,0],[11065.3,9552.2,0],[11041,9790.11,0],[11067.3,9832.1,0],[11048,9811.59,0],[11051.6,9822.48,0],[11052.9,9829.95,0],[11080.6,9438.62,0],[11097.7,9466.98,0],[11094.4,9543.29,0],[11088.9,9830.88,0],[11112.8,9492.18,0],[11119,9534.36,0],[11124.6,9511.97,0],[11108.9,9550.86,0],[11111.2,9559.72,0],[11111.2,9571.28,0],[11121,9821.6,0],[11103.1,9829.03,0],[11143.2,9523.93,0],[11147.5,9808.73,0],[11166.7,9512.16,0],[11185.7,9789.21,0],[11168.7,9797.93,0],[11218.8,9484.4,0],[11192.2,9498.63,0],[11203.7,9780.13,0],[11240.3,9472.97,0],[11222.2,9771.18,0],[11240.5,9762.85,0],[11274.4,9454.88,0],[11257,9464.15,0],[11258,9755.62,0],[11292.1,9445.4,0],[11281.9,9747.45,0],[11313.1,9738.46,0],[11343.6,9731.3,0],[11370.4,9726.54,0],[11400.4,9725.77,0],[11433.4,9732.28,0],[11438.8,9720.81,0]]],["belfort01",[[2989.4,11331.7,0],[3013.66,11054.4,0],[3004.3,11063,0],[3024.93,11091.1,0],[3001.54,11075.8,0],[3004.31,11092.3,0],[3012.42,11092.1,0],[3004,11112.7,0],[3005.69,11130.7,0],[3006.31,11147.4,0],[3029.42,11186.1,0],[3005.45,11168.6,0],[3004.09,11195.7,0],[3003.55,11224.8,0],[3005.41,11244,0],[3016.52,11252.1,0],[3018.38,11291.1,0],[3024.11,11295.1,0],[3005.21,11310.7,0],[3048.17,11032.2,0],[3043.86,11089.7,0],[3057,11090.5,0],[3056.76,11176.6,0],[3052.37,11208.4,0],[3051.18,11190.3,0],[3043.93,11234.8,0],[3031.1,11257.3,0],[3034.19,11301.8,0],[3053.75,11315.1,0],[3079.62,11027.5,0],[3063.95,11024.7,0],[3062.58,11094.6,0],[3080.7,11129.7,0],[3068.61,11122,0],[3066.07,11105,0],[3061.26,11157.9,0],[3069.88,11136.4,0],[3064,11210.3,0],[3085.64,11210.5,0],[3075.87,11212.2,0],[3076.62,11330.5,0],[3105.78,11034.4,0],[3105.95,11118.5,0],[3111.18,11185.8,0],[3101.84,11195.8,0],[3093.74,11204.5,0],[3099.66,11344.6,0],[3132.25,11041.5,0],[3149.39,11046.6,0],[3145.58,11071.4,0],[3137.96,11092.6,0],[3128.24,11107.1,0],[3136.44,11117.9,0],[3130.76,11180,0],[3138.61,11187.9,0],[3120.65,11179.4,0],[3140.48,11199.9,0],[3124.94,11361,0],[3154.16,11121.6,0],[3173.34,11124.9,0],[3204.69,11112.2,0],[3196.94,11120.8,0],[3186.82,11124.7,0],[3219.78,11085.8,0],[3211.89,11099.9,0],[3226.8,11072.2,0]]],["lailai01",[[3247.65,2129.9,0],[3268.33,2138.78,0],[3289.5,2147.55,0],[3295.95,2395.52,0],[3310.56,2155.7,0],[3320.53,2392.84,0],[3330.94,2162.69,0],[3350.02,2168.29,0],[3349.18,2390.89,0],[3368.39,2172.98,0],[3386.91,2177.24,0],[3379.72,2389.36,0],[3405.44,2181.02,0],[3409.97,2387.97,0],[3432.87,2185.51,0],[3437.75,2386.44,0],[3468.33,2189.75,0],[3460.88,2384.46,0],[3498.21,2191.27,0],[3484.39,2380.07,0],[3509.48,2374.28,0],[3524.62,2190.41,0],[3536.53,2371.87,0],[3551.16,2188.34,0],[3569.64,2203.35,0],[3561.43,2224.75,0],[3557.8,2244.85,0],[3557.37,2266.03,0],[3560.04,2288.79,0],[3567.04,2317.92,0],[3566.48,2373.12,0],[3599.42,2157.64,0],[3573.19,2186.04,0],[3586.13,2184.48,0],[3575.05,2344.36,0],[3581.21,2361.96,0],[3584.6,2374.61,0],[3618.04,2143.43,0],[3600.85,2410.09,0],[3609.1,2437.02,0],[3614.51,2465.25,0],[3618.96,2495.85,0],[3622.56,2525.52,0],[3625.26,2549.66,0],[3627.23,2568.88,0],[3629.03,2606.2,0],[3628.6,2587.33,0],[3657.16,2146.31,0],[3636.23,2143.31,0],[3677.24,2150.06,0],[3697.16,2154.65,0],[3718.23,2159.26,0],[3738.26,2160.1,0],[3779.8,2151.53,0],[3758.55,2156.92,0],[3798.74,2144.78,0],[3820.8,2129.06,0],[3849.19,2109.76,0],[3890.07,2092.07,0],[3872.65,2099.14,0],[3929.16,2072.95,0],[3908.89,2083.44,0],[3950.54,2062.43,0],[3974.51,2053.69,0]]],["nasua01",[[11392.9,12375.5,0],[11414,12405.2,0],[11433.4,12424.6,0],[11449.8,12433.6,0],[11475,12444.2,0],[11502.4,12456.8,0],[11522.3,12468,0],[11542.3,12481,0],[11560.6,12494.5,0],[11573.2,12508.6,0],[11581.4,12528,0],[11589.8,12549.6,0],[11600.8,12567.7,0],[11618.8,12584,0],[11635,12598.1,0],[11642,12613.4,0],[11646.7,12634.9,0],[11651,12663.1,0]]],["momea01",[[10055.9,13179.2,0],[10095.9,13060.1,0],[10093.1,13195.3,-0.576412],[10123.1,13058.9,0],[10122.8,13212.2,0],[10123.3,13491.7,0],[10123.7,13511.5,0],[10160.5,13053.7,0],[10141.5,13056.7,0],[10145.6,13224.4,0],[10165.6,13468.8,0],[10149.1,13479.9,0],[10179.6,13050,0],[10192.6,13235.1,0],[10170.5,13233.1,0],[10186.7,13453.3,0],[10218.6,12938,0],[10206.4,13044.1,0],[10213.2,13238.7,0],[10212.6,13435.5,0],[10246.5,12951.6,0],[10236.5,13036.7,0],[10251.6,13252.8,0],[10232,13245,0],[10236,13422.5,0],[10256,13415,0],[10271.6,12959,0],[10261,13029.2,0],[10281.4,13021,0],[10270.1,13261.1,0],[10280.9,13409.2,0],[10294.8,12959.1,0],[10318.4,12957.5,0],[10301.3,13011.8,0],[10290.5,13272.2,0],[10312.3,13284.8,0],[10312.1,13393.8,0],[10305.4,13403.2,0],[10337.2,12956.8,0],[10348.8,12959.3,0],[10322.7,13001,0],[10340,12990.8,0],[10334.5,13290.8,0],[10344.7,13371.2,0],[10324.9,13383.8,0],[10333.2,13412.7,0],[10350.5,12980.4,0],[10353.4,12968.1,0],[10362.2,13288.3,0],[10364.5,13358.8,0],[10373.7,13425.8,0],[10355.4,13419.1,0],[10393.2,13282.7,0],[10382.8,13347.1,0],[10401.6,13334.7,0],[10392.7,13433.4,0],[10420,13282.1,0],[10430.1,13306.6,0],[10433.8,13290.1,0],[10417.3,13322.8,0],[10437.7,13450.2,0],[10411.6,13440.9,0],[10471.1,13460.6,0],[10501.7,13467.3,0],[10531.2,13469.9,0],[10561.2,13469.2,0],[10592.7,13465.4,0],[10626.7,13460.1,0],[10659.3,13454.9,0],[10685.2,13451.5,0],[10705.4,13449.5,0],[10724.6,13447.7,0],[10762.6,13441.9,0],[10743.4,13445.3,0]]],["moddergat01",[[9013.3,4068.19,0],[9035.62,4077.2,0],[9057.14,4086.18,0],[9083.28,4098.1,0],[9112.57,4115.27,0],[9141.58,4129.96,0],[9169.52,4139.28,0],[9199.09,4149.54,0],[9233.46,4161.57,0],[9264.14,3771.36,0],[9268.72,3793.35,0],[9263.72,4172.2,0],[9269.94,4408.58,0],[9263.96,4431.83,0],[9259.7,4450.12,0],[9265.25,4498.01,0],[9260.16,4471.07,0],[9271.31,3822.97,0],[9283.6,3849.45,0],[9295.83,4142.27,0],[9285.65,4160.79,0],[9277.77,4191.5,0],[9281.08,4178.32,0],[9281.5,4217.53,0],[9287.31,4242.57,0],[9293.74,4278.04,0],[9291.73,4261.93,0],[9291.61,4318.83,0],[9294.15,4296.33,0],[9287.36,4340.27,0],[9282.98,4358.57,0],[9276.96,4381.82,0],[9315.05,3868.86,0],[9315.54,3894.94,0],[9312.41,3884.48,0],[9312.66,3876.28,0],[9324.18,3909.2,0],[9318.38,4102.54,0],[9325.28,4091.12,0],[9307.99,4120.66,0],[9336.49,3875.61,0],[9335.82,3927.69,0],[9343.64,3940.6,0],[9346.43,3948.43,0],[9347.5,3963.59,0],[9347.94,3992.02,0],[9347.98,4027.06,0],[9347.93,4057.09,0],[9348.04,4078.53,0],[9331.97,4085.18,0],[9354.19,4094.66,0],[9349.53,4088.25,0],[9339.72,4081.82,0],[9364.44,3884.58,0],[9389.16,3969.21,0],[9362.71,3970.72,0],[9367.26,4035.57,0],[9366.73,4101.39,0],[9379.89,4108.31,0],[9385.24,4115.56,0],[9394.9,3894.3,0],[9419.57,3903.11,0],[9418.07,3968.07,0],[9396.14,4028.33,0],[9390.97,4133.31,0],[9398.07,4155.04,0],[9406.41,4167.52,0],[9434.17,3910.87,0],[9440.04,3919.79,0],[9441.32,3952.23,0],[9441.32,3933.34,0],[9440.96,3968.02,0],[9429.06,4020.07,0],[9422.57,4178.44,0],[9460.05,3971.34,0],[9470.83,3981.84,0],[9458.67,4012.64,0],[9477.66,4007.88,0],[9472.91,4041.46,0],[9453.25,4047.03,0],[9487.68,4037.28,0],[9494.2,4057.52,0],[9507.97,4068.36,0],[9527.86,4070.69,0],[9553.89,4067.9,0],[9583.87,4063.42,0],[9609.32,4060.38,0],[9626.94,4061.47,0],[9642.79,4067.59,0],[9663.47,4078.4,0],[9687.77,4092.02,0],[9710.4,4104.88,0],[9729.96,4116.18,0],[9746.65,4125.5,0],[9760.19,4130.43,0],[9771.37,4130.43,0],[9787.95,4124.2,0]]],["tanouka01",[[8631.3,10119.7,0],[8631.95,10157.3,0],[8667.82,10098.9,0],[8644.57,10093.1,0],[8640.6,10101.6,0],[8655.02,10170.5,0],[8695.64,10110.7,0],[8673.77,10181,0],[8692.79,10191.4,0],[8699.48,10431.8,0],[8726.48,10125.3,0],[8710.65,10200.9,0],[8719.37,10419,0],[8756.07,10117.3,0],[8739.43,10122,0],[8730.25,10128.4,0],[8730.4,10210.3,0],[8746.77,10215.2,0],[8757.13,10399,0],[8739.07,10406.8,0],[8735.43,10408.7,0],[8781.5,10075.4,0],[8777.63,10086.5,0],[8775.93,10100.4,0],[8769.88,10110.5,0],[8778.4,10161.8,0],[8763.17,10167.3,0],[8771.62,10189.2,0],[8786.22,10216.5,0],[8761.67,10211.5,0],[8781.61,10387.2,0],[8807.68,10057.3,0],[8791.67,10067.5,0],[8799.46,10153.9,0],[8818.85,10146.1,0],[8806.86,10256.5,0],[8813.43,10236,0],[8796.86,10236.7,0],[8818.81,10275.4,0],[8818.79,10338.1,0],[8806.3,10348.1,0],[8799.16,10367.8,0],[8794.4,10378.4,0],[8802.97,10356.1,0],[8829.82,10042,0],[8836.98,10138,0],[8833.44,10228,0],[8846.04,10280.5,0],[8828.42,10280.7,0],[8839.87,10326.1,0],[8832.56,10557.4,0],[8870.79,10011.8,0],[8854.39,10023.6,0],[8862.05,10127.6,0],[8871.25,10207.8,0],[8853.98,10217.4,0],[8870.74,10269,0],[8852.01,10293.5,0],[8853.77,10316.2,0],[8856.31,10307.1,0],[8862.89,10557.6,0],[8902.73,9994.63,0],[8889.33,10009.7,0],[8884.25,10004,0],[8897.72,10021.9,0],[8902.8,10041.4,0],[8899.99,10061.7,0],[8891.93,10081.8,0],[8887.43,10095.1,0],[8891.99,10111,0],[8906.6,10138.7,0],[8885,10121.5,0],[8899.06,10127.4,0],[8889.01,10197.9,0],[8902.72,10193.6,0],[8902.38,10280,0],[8884.69,10270.9,0],[8909.68,10557,0],[8890.16,10557.3,0],[8934.94,9979.85,0],[8917.14,10159.3,0],[8924.59,10175.4,0],[8922.42,10223.9,0],[8910.91,10206.2,0],[8936.48,10245.8,0],[8923.88,10292.2,0],[8939.85,10298.4,0],[8929.1,10556.6,0],[8962.01,9968.76,0],[8954.84,10174.2,0],[8940.39,10173,0],[8951.9,10270,0],[8951.45,10297.5,0],[8962.27,10294.8,0],[8947.72,10556.2,0],[8983.55,9960.34,0],[8975.16,10177.5,0],[8990.4,10178.4,0],[8982.1,10318.6,0],[8994.49,10339.5,0],[8971.63,10555.7,0],[9006.56,9951.47,0],[9008.75,10172.5,0],[9015.16,10347.5,0],[9010.88,10375.9,0],[9001.84,10353.9,0],[9016.33,10404.8,0],[9018.51,10431,0],[9019.6,10452.5,0],[9020.53,10474.8,0],[9021.35,10496.5,0],[9022.53,10523.2,0],[9002.1,10555,0],[9021.24,10554.5,0],[9026.81,10579.1,0],[9028.43,10599,0],[9030.41,9942.33,0],[9054.49,9933.1,0],[9049.39,10156.1,0],[9030.98,10163.6,0],[9038.28,10336.5,0],[9078.17,9923.94,0],[9085.93,10142.2,0],[9067.35,10149,0],[9086.37,10315.2,0],[9064.33,10324.6,0],[9102.16,9914.56,0],[9107.19,10134.5,0],[9104.78,10310,0],[9128.79,9904.1,0],[9129.68,10126.4,0],[9122.48,10311.8,0],[9139.57,10329.3,0],[9158.5,9892.44,0],[9151.93,10118.3,0],[9172.47,10110.7,0],[9157.27,10359.1,0],[9173.33,10380.8,0],[9189.56,9880.25,0],[9194.88,10101.7,0],[9199.95,10409.6,0],[9187.33,10392.9,0],[9223.59,10083.1,0],[9211.59,10093.4,0],[9210.97,10433.6,0],[9221.73,10461.1,0],[9232.53,10486.3,0],[9267.33,10041.6,0],[9243.46,10064.3,0],[9245.32,10507.1,0],[9287.85,10022.9,0],[9317.45,10005.7,0],[9301.66,10012.4,0],[9340.57,9998.42,0]]],["saintjulien01",[[5418.61,11152.1,0],[5415.01,11194.9,0],[5431.29,11166.8,0],[5441.74,11174.6,0],[5446.01,11181.1,0],[5445.95,11189.4,0],[5434.98,11205.3,0],[5441.56,11197.5,0],[5454.81,11222.8,0],[5471.67,11237.6,0],[5479.25,11252.3,0],[5484.14,11270.4,0],[5488.37,11282.1,0],[5468.42,11390.9,0],[5501.44,11293.8,0],[5516.49,11357.7,0],[5492.14,11375.3,0],[5526.96,11313.5,0],[5542.16,11337.4,0],[5552.1,11307.7,0],[5571.09,11291.5,0],[5578.83,11326.3,0],[5568.78,11321.7,0],[5572.06,11325.7,0],[5591.63,11276.8,0],[5588.2,11299.6,0],[5607.08,11285.1,0],[5604.62,11313.7,0],[5589.41,11322.9,0],[5637.17,11009.4,0],[5636.38,11015.4,0],[5625.48,11274.8,0],[5611.16,11266.5,0],[5628.19,11261.5,0],[5623.26,11307.5,0],[5651.05,10995.1,0],[5663.42,10983.9,0],[5640.68,11004.5,0],[5640.81,11023.1,0],[5661.99,11232.5,0],[5650.05,11243.1,0],[5669.09,11262.1,0],[5643.25,11252.7,0],[5643.89,11267,0],[5640.26,11259.4,0],[5661.27,11326.9,0],[5642.34,11312.6,0],[5663.81,11365.8,0],[5669.18,11347.2,0],[5654.87,11375.3,0],[5671.6,10979.1,0],[5690.7,10986.1,0],[5680.83,10980.4,0],[5690.08,11139.6,0],[5677.05,11130.3,0],[5678.43,11218.5,0],[5692.25,11255.2,0],[5704.23,10996.3,0],[5724,11011.5,0],[5701.96,11147,0],[5708.8,11149.8,0],[5714.17,11153.3,0],[5722.64,11162.8,0],[5700.78,11199.7,0],[5726.25,11199,0],[5727.5,11194.8,0],[5719.96,11244.1,0],[5753.92,10947.6,0],[5736.07,10930.5,0],[5747.92,11030.5,0],[5753.82,11155.6,0],[5731.51,11172.7,0],[5735.58,11217,0],[5743.33,11227.2,0],[5773.36,10966.2,0],[5788.53,10981,0],[5772.1,11050,0],[5784.7,11056,0],[5779.82,11134,0],[5796.75,10989.6,0],[5800.11,10995.7,0],[5800.98,11014.4,0],[5800.18,11034.3,0],[5816.78,11063,0],[5790.6,11049.4,0],[5798.13,11068.5,0],[5806.38,11068.1,0],[5796.78,11042,0],[5802.34,11115.3,0],[5819.03,11101.5,0],[5805.56,11189.7,0],[5798.2,11219,0],[5790.06,11207.2,0],[5809.74,11235.6,0],[5845.31,11048.9,0],[5829.83,11056.1,0],[5831.59,11091.2,0],[5843.99,11084,0],[5848.78,11120,0],[5839.4,11141.4,0],[5825.06,11166.9,0],[5830.73,11191.8,0],[5845.7,11200.1,0],[5864.24,10842.4,0],[5868.78,10848.4,0],[5854.94,10858.4,0],[5855.48,10831.4,0],[5857.45,10839.6,0],[5854.12,10849.9,0],[5855.81,10868.2,-0.624921],[5871.18,10860.5,0],[5879.73,10884,0],[5873.99,10874.3,0],[5858.27,10892.1,2.43677],[5862,10928,4.71565],[5865.73,10963.8,5.72742],[5868.2,10987.7,0.00759792],[5861.79,11032.3,0],[5878.55,11025.4,0],[5871.54,11020.8,0],[5878.56,11049,0],[5858.55,11043.1,0],[5869.89,11053.4,0],[5856.33,11083.1,0],[5851.68,11081.9,0],[5854.94,11102.6,0],[5866.42,11201,0],[5908.72,10901.1,0],[5891.39,10892.4,0],[5904.78,11026,0],[5889.57,11031.7,0],[5885.49,11042.1,0],[5892.96,11195.4,0],[5930.97,10851,0],[5930.7,10910.5,0],[5923.11,11019.5,0],[5936.73,11015.8,0],[5919.96,11181.3,0],[5946.45,10871.2,0],[5956.78,10920.3,0],[5960.51,11019.7,0],[5947.14,11016.1,0],[5947.09,11161.7,0],[5970.21,10886.3,0],[5994.31,10893.8,0],[5999.8,10932.2,0],[5980.11,10927.5,0],[5993.58,11030.2,0],[5972.28,11144.7,0],[5999.11,11133.9,0],[6016.12,10900.1,0],[6020.76,10936.6,0],[6009.78,11035.1,0],[6029.53,11128.6,0],[6034.09,10907.6,0],[6046.08,10919,0],[6050.09,10930.9,0],[6049.59,10938.7,0],[6037.09,11043.8,0],[6054.67,11127.4,0],[6069.17,10945.8,0],[6065.61,11054.6,0],[6073.9,11130.7,0],[6087.85,11131.9,0],[6100.87,10951.4,0],[6094.43,11067.5,0],[6118.41,11081.5,0],[6107.34,11102.1,0],[6095.5,11124.2,0],[6144.06,11093.5,0],[6159.21,11104.5,0],[6166.18,11116.2,0],[6172.41,11140.3,0],[6179.43,11165.1,0],[6187.55,11179.8,0],[6202.36,11197.8,0]]],["cerebu01",[[2179.32,4525.99,0],[2203.17,4509.56,0],[2229.52,4488.93,0],[2276.3,4410.2,0],[2266.97,4441.34,0],[2251.7,4466.94,0],[2283.78,4259.72,0],[2282.39,4235.97,0],[2285.16,4286.17,0],[2285.32,4313.57,0],[2283.87,4343.44,0],[2281.18,4376.62,0]]],["nandai01",[[14187.7,9044.65,0],[14168.5,9064.07,0],[14219.8,9011.94,0],[14200.7,9031.39,0],[14243.8,8987.64,0],[14258.3,8561.53,0],[14254.1,8585.71,0],[14253.1,8608.34,0],[14259.4,8629.67,0],[14275.6,8650.63,0],[14262.7,8968.86,0],[14277.3,8954.86,0],[14300.2,8668.1,0],[14297.2,8935.88,0],[14328.6,8682.23,0],[14338.3,8895.34,0],[14320.1,8913.4,0],[14328.6,9182.88,0],[14327,9204.08,0],[14332.6,9224.66,0],[14352.1,8694.45,0],[14368,8704.95,0],[14363.8,8876.98,0],[14351,8884.31,0],[14357.5,8880.13,0],[14358.8,9144.02,0],[14340.1,9161.95,0],[14344.4,9243.33,0],[14380.7,8717.93,0],[14388.7,8736.07,0],[14389.1,8762.25,0],[14385.2,8787.33,0],[14381.6,8805.82,0],[14373.3,8846.04,0],[14377.7,8825.12,0],[14386.5,8893.83,0],[14371.4,8896.43,0],[14388.4,8936.2,0],[14374.3,8915.34,0],[14397.7,8955.09,0],[14399.3,8979.92,0],[14399.5,9009.25,0],[14395.4,9052.67,0],[14398.3,9031.3,0],[14390.7,9074.38,0],[14382.4,9103.04,0],[14372.5,9128.02,0],[14422,8896.49,0],[14406.4,8892.46,0],[14444.2,8901.87,0]]]]; \ No newline at end of file diff --git a/A3-Antistasi/roadsDBAltis.sqf b/A3-Antistasi/roadsDBAltis.sqf deleted file mode 100644 index ac707c3085..0000000000 --- a/A3-Antistasi/roadsDBAltis.sqf +++ /dev/null @@ -1 +0,0 @@ -{roadsX setVariable [_x select 0,_x select 1]} forEach [["Therisa",[[10236.8,12210.1,0],[10285.7,12053.2,0],[10260.7,12231.2,0],[10284.2,12252,0],[10288.7,12453.6,0],[10309.9,12074.5,0],[10306.9,12272.1,0],[10306.9,12470.1,0],[10315.5,12491.6,0],[10331.8,12093.5,0],[10328.3,12291,0],[10347.9,12308.4,0],[10347.3,12460.6,0],[10331.1,12476.4,0],[10372.3,11930.1,0],[10353.9,12112.6,0],[10376.9,12132.2,0],[10365.5,12323.9,0],[10362.8,12445.1,0],[10388,11943.7,0],[10402.9,11956.5,0],[10399.7,12151.7,0],[10385.6,12341.8,0],[10406.7,12360.5,0],[10401.3,12405.3,0],[10381.2,12426.5,0],[10420.7,11971.9,0],[10435,11984.2,0],[10436.3,11999,0],[10438.7,12015.3,0],[10421.4,12170.2,0],[10434.4,12364.2,0],[10419.5,12371.8,0],[10435.5,12395.1,0],[10421.7,12390.6,0],[10461.6,11929.7,0],[10448.4,11953.5,0],[10440.8,11971.5,0],[10446.3,12038.2,0],[10457,12059.5,0],[10462,12205.2,0],[10440.9,12186.9,0],[10451.6,12348.6,0],[10459.9,12403.3,0],[10491,11885.7,0],[10476.9,11906.3,0],[10471.6,12078.6,0],[10488.1,12095.8,0],[10487,12237.6,0],[10477.7,12219.5,0],[10497.3,12261.2,0],[10492.6,12324.2,0],[10470.1,12336,0],[10489.9,12413.4,0],[10507.9,11861.7,0],[10504,12109.7,0],[10522.5,12125,0],[10508.8,12276.5,0],[10521,12287.4,0],[10514.6,12311.5,0],[10528.6,12300.9,0],[10514.7,12420.4,0],[10541.2,12140.5,0],[10558.8,12155.1,0],[10554.1,12274.8,0],[10541,12289.1,0],[10530.7,12295.6,0],[10552.7,12318.6,0],[10537.7,12300.9,0],[10536.7,12422.9,0],[10557.8,12422.5,0],[10575.8,12169.3,0],[10584.8,12239.5,0],[10567.6,12259.3,0],[10576.4,12323.9,0],[10572.2,12345.6,0],[10585.3,12367.6,0],[10578.3,12418.7,0],[10592.6,12183.2,0],[10612.7,12205.6,0],[10602.3,12218.7,0],[10591.4,12314.8,0],[10607.9,12306.7,0],[10595.1,12384.7,0],[10605.9,12404,0],[10601.6,12396.4,0],[10623.1,12211.1,0],[10638.6,12227.1,0],[10636.5,12294,0],[10648.1,12286.6,0],[10622.9,12300.7,0],[10647.1,12385.8,0],[10628.1,12396.7,0],[10670.4,12163.6,0],[10655.1,12244.4,0],[10657.9,12279.2,0],[10664.7,12273.2,0],[10662.2,12379.6,0],[10677.2,12373.5,0],[10702.5,12201.3,0],[10684,12180.2,0],[10705.1,12252.3,0],[10683.3,12269.4,0],[10690.4,12263.7,0],[10693.5,12285.3,0],[10706.3,12352.1,0],[10691.5,12364.7,0],[10717.3,12217.8,0],[10725.7,12227.2,0],[10712.3,12306.4,0],[10719.7,12340.1,0],[10729.6,12331.8,0],[10756.1,12213.4,0],[10740.5,12338.8,0],[10753.4,12358.1,0],[10765.7,12380,0],[10762.4,12374.4,0],[10794.6,12183.4,0],[10775.7,12197.7,0],[10785.4,12421,0],[10796.8,12448.1,0],[10815.3,12168.3,0],[10805.9,12473.3,0],[10815.1,12496.8,0],[10825.6,12519.6,0],[10855.3,12133.1,0],[10858.3,12150.3,0],[10842.7,12151.5,0],[10848.5,12559.8,0],[10836.7,12540.5,0],[10885.3,12098.4,0],[10869.7,12116.4,0],[10881.5,12148.7,0],[10901.8,12079.9,0],[10908,12147.2,0],[10949,12015.2,0],[10921.7,12056.6,0],[10938.9,12033.4,0],[10933.6,12146.4,0],[10959.7,12146.9,0],[10988.2,12148.8,0]]],["Zaros",[[8696.71,11678.7,0],[8701.25,11704.2,0],[8704.32,11736.1,0],[8708.01,11769.4,0],[8713.28,11799.9,0],[8719.75,11827.8,0],[8726.31,11853.2,0],[8732.56,11875.6,0],[8739.26,11898.9,0],[8745.51,11920.2,0],[8751.38,11939.9,0],[8756.96,11958.7,0],[8767.31,11999.1,0],[8781.39,11990.5,0],[8770.35,11986,0],[8772.13,12019.8,0],[8780.29,12046.4,0],[8785.67,12063.2,0],[8815.36,11566.4,0],[8814.24,11838,0],[8807.28,11850.8,0],[8804.78,11866.9,0],[8814.24,11905.4,0],[8807.54,11885,0],[8801.29,11996.9,0],[8790.24,12052.8,0],[8810.88,12068.1,0],[8797.41,12085.3,0],[8812.17,12105.8,0],[8835.61,11576.6,0],[8843.22,11806.8,0],[8827.46,11823.2,0],[8824.06,11926.8,0],[8832.99,11945.5,0],[8837.59,11962.2,0],[8838.15,11982.1,0],[8837.18,11999.6,0],[8837.95,12085.9,0],[8826.52,12127.6,0],[8839.5,12149.7,0],[8877.8,11511.4,0],[8864.01,11538,0],[8854.74,11561,0],[8857.52,11591.1,0],[8879.81,11609.6,0],[8873.09,11762.8,0],[8861.93,11781.9,0],[8853.99,11794.3,0],[8858.76,12003.7,0],[8869.35,12095.3,0],[8850.43,12170.9,0],[8877.2,12179.8,0],[8866.66,12206.7,0],[8859.34,12189.9,0],[8874.46,12202.2,0],[8872.16,12219.8,0],[8872.47,12254.8,0],[8867.93,12294.8,0],[8869.82,12325.9,0],[8874.51,12356.4,0],[8895.91,11627.9,0],[8905.96,11643.9,0],[8908.45,11725.6,0],[8886.04,11743.5,0],[8897.02,11731.7,0],[8883.12,12002.7,0],[8909.22,12005.1,0],[8903.05,12072.6,0],[8883.19,12085.9,0],[8906.91,12118.4,0],[8890.92,12137.4,0],[8897.98,12121.2,0],[8882.37,12158.9,0],[8907.83,12267.9,0],[8885,12255.2,0],[8896.88,12257.4,0],[8880.85,12386.2,0],[8887.49,12412.6,0],[8914.95,11657.2,0],[8929.77,11675.4,0],[8922.11,11724.1,0],[8927.91,11994.1,0],[8912.68,12016.1,0],[8917.12,12032.4,0],[8919.62,12049.9,0],[8916.49,12061.6,0],[8924.16,12120,0],[8922.58,12287,0],[8931.14,12318.5,0],[8929.28,12304.4,0],[8949.22,11697.7,0],[8940.99,11724.5,0],[8960.78,11725.6,0],[8954.37,11986.4,0],[8951.11,12116.2,0],[8968.9,12124.8,0],[8969.59,12127.6,0],[8963.11,12358.9,0],[8942.4,12336.6,0],[8969.41,12385.7,0],[8959.2,12402.4,0],[8947.24,12423,0],[8971.85,11719,0],[8993.73,11736.7,0],[8999.54,11971.7,0],[8975.65,11979.4,0],[8973.53,12007.7,0],[8990.74,12057.9,0],[8983.05,12035.3,0],[8999.36,12081.6,0],[8978.22,12110.5,0],[8992.03,12135.8,0],[8971.15,12133.7,0],[8999.31,12364.7,0],[8985.87,12368,0],[8976.99,12372.7,0],[9011.85,11752.6,0],[9027.92,11771.1,0],[9024.05,12100.2,0],[9013.11,12108.9,0],[9015.12,12116,0],[9016.17,12119.9,0],[9017.84,12126.2,0],[9019.79,12363,0],[9029.45,12444.5,0],[9039.34,11788.2,0],[9049.42,11804.9,0],[9053.26,11897.3,0],[9046.62,11915.5,0],[9044.52,11932,0],[9059.23,11956.9,0],[9048.21,11969,0],[9044.62,11944.7,0],[9052.04,11986.3,0],[9057.15,12007.4,0],[9057.51,12099.3,0],[9059.2,12108.1,0],[9044.22,12361.6,0],[9054.73,12404.7,0],[9042.21,12424.4,0],[9062.04,11824,0],[9069.68,11875.1,0],[9084.98,11859.6,0],[9086.33,11951.8,0],[9086.48,12025.7,0],[9061.42,12020.4,0],[9067.04,12025.1,0],[9085.13,12089,0],[9060.54,12115.5,0],[9074.2,12126.7,0],[9061.99,12123.7,0],[9065.55,12359.4,0],[9088.92,12350.7,0],[9079.54,12365.6,0],[9066.34,12386.4,0],[9116.97,11874.8,0],[9096.9,11862.4,0],[9117.23,11945.7,0],[9104.58,12026.7,0],[9111.63,12043.7,0],[9108.15,12031.2,0],[9116.8,12065.2,0],[9108.07,12087.1,0],[9101.98,12344.7,0],[9136.05,11884.7,0],[9120.72,12082.1,0],[9142.54,12093.2,0],[9128.87,12339.8,0],[9179.29,11907.3,0],[9153.34,11893.9,0],[9150.49,11938.6,0],[9176.43,11932.4,0],[9167.97,12105.1,0],[9167.07,12328.9,0],[9150.3,12336.3,0],[9195.13,11927.3,0],[9202.62,11918.2,0],[9209.16,11923.4,0],[9196.25,12120.4,0],[9188.11,12317.5,0],[9206.51,12303.9,0],[9235.55,11917.2,0],[9220.82,12140.2,0],[9218.19,12145.9,0],[9224.38,12175.2,0],[9216.98,12153.8,0],[9235.97,12201.9,0],[9239.78,12225.4,0],[9230.31,12265.8,0],[9237.24,12246.7,0],[9220.06,12286.5,0],[9256.55,11912.1,0],[9253.36,12157,0],[9283.12,11910.4,0],[9287.15,11922.4,0],[9291.99,11926.5,0],[9284.91,11917,0],[9274.66,12172.4,0],[9290.23,12184,0],[9305.34,11897.9,0],[9327.85,11891,0],[9307.44,11925.3,0],[9305.79,12195.7,0],[9320.67,12207,0],[9358.17,11881.3,0],[9355.93,11916.7,0],[9330.67,11921.6,0],[9339.38,12220.9,0],[9345.76,12327.3,0],[9334.97,12340.9,0],[9333.34,12360.9,0],[9341.37,12376.8,0],[9385.61,11838.9,0],[9374.41,11863.9,0],[9362.35,11877.4,0],[9373.04,11883.5,0],[9377.62,11896.5,0],[9384.02,11909.8,0],[9375.61,11889.7,0],[9374.48,11911.8,0],[9363.34,12238.3,0],[9383.82,12253.2,0],[9381.86,12317.4,0],[9361.93,12321.3,0],[9417.81,11724.6,0],[9411.82,11747.8,0],[9405.64,11771.1,0],[9399.48,11794,0],[9393.71,11814.3,0],[9415.25,11879.3,0],[9394.85,11880.1,0],[9403.15,11910.6,0],[9395.67,12262.5,0],[9410.35,12276.3,-2.22985],[9408.87,12308.6,0],[9442.15,11631.3,0],[9435.56,11654.2,0],[9429.46,11677.7,0],[9423.64,11701.2,0],[9449.56,11777.1,0],[9441.89,11807.9,0],[9434.22,11838.3,0],[9427.62,11861.7,0],[9422.49,11874.7,0],[9427.14,11911.9,0],[9446.45,11913.1,0],[9424.64,12289.5,0],[9430.98,12295.5,0],[9445.37,12311.5,0],[9468.37,11653.7,0],[9451.16,11648.6,0],[9469.65,11697.9,0],[9474.83,11677.5,0],[9463.26,11723.1,0],[9456.57,11749.4,0],[9466.93,11914.3,0]]],["Poliakko",[[10539.1,13210.9,0],[10558.3,13219.5,0],[10577.9,13226.3,0],[10589,13405.5,0],[10588,13420.7,0],[10601,13233.5,0],[10614.3,13336.3,0],[10604.9,13360.1,0],[10594.6,13385.6,0],[10590.5,13435.9,0],[10596.9,13451.6,0],[10607.3,13463.7,0],[10627.9,13241.7,0],[10639.9,13256.9,0],[10637.1,13269.1,0],[10629.6,13293.1,0],[10621.1,13317.3,0],[10624.9,13476,0],[10648.1,13490.2,0],[10677.7,13256.7,0],[10653.4,13249.4,0],[10665,13499.6,0],[10675.7,13503,0],[10700.7,13263.7,0],[10703.7,13499,0],[10688.5,13502.7,0],[10721.6,13270.1,0],[10737.7,13274.3,0],[10719.7,13494.1,0],[10736.2,13490.2,0],[10764,13275.3,0],[10748.7,13275.4,0],[10763.7,13462.6,0],[10760.4,13473.6,0],[10758.9,13484.6,0],[10783,13275.9,0],[10784.7,13445.7,0],[10771.6,13453.5,0],[10770.1,13493.7,0],[10788.4,13500,0],[10822.2,13289.1,0],[10801.6,13279.5,0],[10824.1,13351,0],[10801.9,13437.5,0],[10820.3,13428.8,0],[10805.6,13504.7,0],[10823,13506.2,0],[10853.2,13318.1,0],[10839.8,13302.5,0],[10839.6,13375.3,0],[10831.3,13359.7,0],[10848.7,13395.8,0],[10854.4,13409.8,0],[10840.2,13419,0],[10855.2,13411.4,0],[10841,13505.1,0],[10866.8,13337.9,0],[10881.5,13360.8,0],[10862.6,13407.9,0],[10882.8,13397.9,0],[10860.3,13425.3,0],[10866.9,13444.1,0],[10872.4,13463.2,0],[10875.5,13480.7,0],[10876.5,13493.9,0],[10861.1,13502,0],[10896.9,13386.4,0],[10909,13408.3,0],[10902.3,13387.7,0],[10895.9,13391.4,0],[10918.2,13426.9,0],[10910.5,13489.8,0],[10947.7,13363.5,0],[10920.4,13379.1,0],[10936.4,13465.7,0],[10945.9,13446.4,0],[10933.5,13452,0],[10933.9,13483.6,0],[10970.2,13344.1,0],[10962.5,13439,0],[10953.6,13478.9,0],[10969.3,13480.9,0],[10972.9,13496.8,0],[10971.1,13489,0],[10975.7,13506.2,0],[10978.8,13513.9,0],[10974.8,13555.1,0],[10978.1,13542.8,0],[10971,13569.9,0],[10968.1,13579.6,0],[10993.6,12954.7,0],[10998.3,12942.1,0],[10990.8,12981.7,0],[10985.9,13015.2,0],[10983.4,13045.4,0],[10984.7,13068,0],[10992.8,13090.3,0],[11005.5,13131.5,0],[11001.4,13112.6,0],[11002.7,13291,0],[10996.6,13305,0],[11003.6,13305,0],[10983.1,13326.5,0],[10981.8,13430.2,0],[11002.8,13420.2,0],[10985.8,13476.5,0],[11008.7,13496,0],[10994.3,13512.8,0],[11002.4,13503.5,0],[10982.9,13521.1,0],[10982.2,13531.1,0],[11011.6,12953.9,0],[11033.2,12971.6,0],[11010.2,13151.7,0],[11016.3,13173.7,0],[11022.7,13196.9,0],[11027.4,13216.7,0],[11021.8,13253,0],[11028.4,13232.7,0],[11011.7,13273.7,0],[11024.8,13299.1,0],[11010.3,13304.3,0],[11037.7,13375.7,0],[11039.7,13365.2,0],[11032.1,13398,0],[11026.2,13406.2,0],[11035.7,13387.8,0],[11017.8,13412.5,0],[11039.7,13448.4,0],[11028.7,13463.1,0],[11029,13489.1,0],[11022.9,13475,0],[11020.1,13484.4,0],[11052.8,12987.9,0],[11069.2,13003.9,0],[11047.8,13287.3,0],[11052,13350.9,0],[11043.3,13358.2,0],[11054.6,13432.5,0],[11050.1,13495.9,0],[11087.2,13022.2,0],[11090.8,13261.9,0],[11077.3,13288.1,0],[11070.4,13279.8,0],[11099,13315.4,0],[11086.8,13299.8,0],[11070.2,13341.4,0],[11089.8,13332.6,0],[11088.6,13401.8,0],[11072.7,13415,0],[11070.8,13502.1,0],[11090.6,13507.8,0],[11105.2,13040.4,0],[11121.3,13056.3,0],[11112.6,13246.8,0],[11121.5,13312.7,0],[11111.7,13333.3,0],[11109.9,13323.1,0],[11102.5,13327.1,0],[11124.4,13352.4,0],[11105.1,13392.7,0],[11122.4,13383.4,0],[11110.5,13513.8,0],[11136,13070.7,0],[11156.1,13089.5,0],[11132.7,13231.9,0],[11158,13269.4,0],[11138.5,13294.2,0],[11131,13375.2,0],[11131.9,13366.8,0],[11130.3,13520.5,0],[11154.8,13531,0],[11178.4,13107.7,0],[11189.3,13230.6,0],[11175.1,13247.8,0],[11177.2,13543.8,0],[11202.7,13121.1,0],[11217.5,13197.4,0],[11203.9,13213.2,0],[11194.4,13560.2,0],[11211.6,13578.6,0],[11225.9,13136.5,0],[11240.5,13150.1,0],[11236.5,13177.4,0],[11224.5,13589.4,0],[11248.2,13598.1,0],[11235,13594.6,0],[11274.2,13142.9,0],[11250.7,13158.3,0],[11272.1,13600.4,0],[11291,13128.1,0],[11282.3,13165.5,0],[11298.7,13181.2,0],[11298.9,13602,0],[11313.9,13109.9,0],[11315.7,13199.8,0],[11329.7,13217.7,0],[11321.5,13603.3,0],[11351.4,13251.3,0],[11340.5,13234,0],[11362.6,13267.9,0],[11361,13606.4,0],[11342.3,13604.7,0],[11378.7,13286.3,0],[11399.7,13307.6,0],[11380.7,13608.4,0],[11428.1,13342.7,0],[11416.2,13326.1,0],[11400.6,13610.3,0],[11419.7,13612,0],[11439.8,13360.1,0],[11451,13376.3,0],[11463.3,13392.2,0]]],["Katalaki",[[11272.1,13600.4,0],[11298.9,13602,0],[11321.5,13603.3,0],[11361,13606.4,0],[11342.3,13604.7,0],[11380.7,13608.4,0],[11428.1,13342.7,0],[11416.2,13326.1,0],[11400.6,13610.3,0],[11419.7,13612,0],[11439.8,13360.1,0],[11451,13376.3,0],[11438.5,13613.5,0],[11453,14008.8,0],[11430.4,14026.1,0],[11463.3,13392.2,0],[11477.3,13408.3,0],[11465.7,13616,0],[11488.7,13978,0],[11472.7,13992.9,0],[11494.7,13426.3,0],[11515.8,13447.8,0],[11496.9,13619.6,0],[11518.6,13946.9,0],[11501.7,13964,0],[11536.9,13473.3,0],[11549.4,13628.5,0],[11522.2,13623.6,0],[11539.6,13929.5,0],[11556.5,13501.1,0],[11573.9,13526.9,0],[11576.1,13635.3,0],[11560.3,13914.8,0],[11578.5,13899.9,0],[11594.8,13556.9,0],[11598.8,13579.7,0],[11605.7,13599.5,0],[11609.9,13618.5,0],[11593.3,13642,0],[11593.5,13884.9,0],[11608.6,13868.8,0],[11631.3,13529.8,0],[11610.6,13545.7,0],[11610.9,13633.9,0],[11610.7,13645.2,0],[11613.6,13658.8,0],[11624.6,13673.2,0],[11635.9,13689.6,0],[11636.7,13837.8,0],[11621.9,13854.2,0],[11667.6,13460.3,0],[11656.3,13491.4,0],[11645.8,13513.8,0],[11667.9,13701.1,0],[11656.1,13709.6,0],[11659.9,13725.5,0],[11654.6,13819.4,0],[11699.9,13368.9,0],[11692.6,13388,0],[11684.8,13410.3,0],[11677.2,13432.5,0],[11685.1,13688.8,0],[11672.1,13743.1,0],[11683.7,13760.5,0],[11686.9,13790.6,0],[11695.7,13783.8,0],[11672.9,13802.6,0],[11720.2,13334.6,0],[11711.6,13372.2,0],[11705.7,13361.8,0],[11726.6,13408,0],[11719,13387.9,0],[11704.2,13675.1,0],[11719.9,13798.3,0],[11705.5,13793.6,0],[11709.5,13827.4,0],[11716.2,13848.4,0],[11723.1,13869.3,0],[11752.9,13298.9,0],[11733.6,13318.8,0],[11734.3,13429.7,0],[11742.3,13454.8,0],[11748.9,13480.5,0],[11755.4,13504.4,0],[11740,13649.9,0],[11759.7,13636.2,0],[11739.2,13673.2,0],[11732,13663.3,0],[11750.3,13688.6,0],[11738.4,13804.7,0],[11737.9,13912.4,0],[11730.4,13890.7,0],[11745.1,13934.3,0],[11751.9,13956.9,0],[11758.1,13980.2,0],[11776.1,13277.6,0],[11764.5,13528.9,0],[11776,13554.9,0],[11784.7,13577,0],[11782.7,13610.6,0],[11786.4,13593.6,0],[11773.8,13624.6,0],[11765,13708.8,0],[11780.9,13729.6,0],[11761.7,13815,0],[11764,14003.7,0],[11770.2,14026.8,0],[11783.2,14068.8,0],[11776.6,14048.4,0],[11812.1,13256.8,0],[11795.1,13263.6,0],[11795.9,13749.1,0],[11805.8,13766.1,0],[11808.4,13795.2,0],[11809.3,13781,0],[11804.7,13809.7,0],[11796.4,13827.4,0],[11800.7,13820.2,0],[11806.2,13845.5,0],[11790.1,14088.7,0],[11797,14107.7,0],[11830.9,13244.7,0],[11824.7,13863.1,0],[11838.2,13876.2,0],[11863.7,13254.1,0],[11852.6,13889.6,0],[11868.2,13903.9,0],[11884,13918,0],[11898.8,13930.6,0],[11921.4,13946.3,0],[11950.7,13961.9,0],[11977.2,13973.1,0],[11997.6,13987.5,0]]],["Alikampos",[[10709.4,14728.3,0],[10728.7,14734.2,0],[10753.9,14736.9,0],[10783.7,14731.7,0],[10808.8,14717.6,0],[10832,14697.3,0],[10883.3,14657.1,0],[10882.4,14666.6,0],[10867,14671.6,0],[10906.4,14636.7,0],[10903.1,14659.3,0],[10942.8,14592.7,0],[10927.5,14611.2,0],[10927.3,14648.2,0],[10960.9,14581.4,0],[10955.2,14633.5,0],[10979.1,14621.5,0],[10987.9,14566.5,0],[10998,14615.5,0],[11033.2,14542.7,0],[11012.2,14551.7,0],[11019.6,14615.4,0],[11064.7,14539.7,0],[11067.6,14545.3,0],[11059.6,14576.6,0],[11069.5,14553.3,0],[11062,14563.1,0],[11064.9,14558.3,0],[11058.5,14596.4,0],[11043.6,14621.5,0],[11057.5,14611.6,0],[11056.2,14622.4,0],[11093.2,14518.8,0],[11075.5,14532.7,0],[11082.6,14557.2,0],[11096.2,14562.7,0],[11077.7,14635.5,0],[11095.6,14638.7,0],[11128.4,14461.3,0],[11116.9,14485.5,0],[11106.3,14502.2,0],[11111.5,14563.2,0],[11128,14562.2,0],[11121.6,14562.4,0],[11113.1,14638.1,0],[11129.7,14631.9,0],[11141.3,14429.7,0],[11152.8,14403.5,0],[11153.7,14489.5,0],[11134.2,14482.6,0],[11134.5,14497.5,0],[11134.4,14513.7,0],[11133.7,14534.1,0],[11157.9,14562.7,0],[11132,14575.6,0],[11132.8,14556.9,0],[11135.4,14561.5,0],[11144.6,14561.6,0],[11131.1,14595.4,0],[11148.1,14632.5,0],[11130.3,14616.1,0],[11174.2,14364.1,0],[11184.2,14346.1,0],[11163.3,14383.8,0],[11174.8,14502.1,0],[11177.6,14572.6,0],[11189.7,14582.7,0],[11189.5,14617.6,0],[11178,14624.1,0],[11165.3,14628.5,0],[11219.7,14264,0],[11210.3,14289.3,0],[11196.4,14321.7,0],[11215.7,14481.6,0],[11202.3,14494.1,0],[11193.9,14502.6,0],[11193.7,14522.3,0],[11210.8,14544.2,0],[11211.3,14575.8,0],[11195.1,14587,0],[11197.8,14596.9,0],[11195.7,14608.7,0],[11242.4,14209.1,0],[11234.1,14227.9,0],[11226.6,14246,0],[11247.2,14454,0],[11231.6,14467.5,0],[11242.9,14577.5,0],[11220.3,14565.8,0],[11260.7,14173.1,0],[11251.1,14190.5,0],[11263.7,14440.1,0],[11269,14597,0],[11282.4,14425.4,0],[11299.5,14413.8,0],[11291.4,14610.9,0],[11339.8,14390.9,0],[11315.4,14404.5,0],[11330.4,14633.3,0],[11310.1,14621.1,0],[11365.9,14375.3,0],[11351.5,14648.1,0],[11369.4,14664.9,0],[11385.2,14363.3,0],[11386.5,14688.7,0],[11411.1,14354.1,0],[11404.1,14716.4,0],[11418,14734.3,0],[11429.3,14740.9,0],[11445.5,14348,0],[11444.2,14745,0],[11474.7,14344.5,0],[11465.7,14749.9,0],[11491.1,14755.6,0],[11513.9,14761.4,0]]],["Neochori",[[12010.8,14334.5,0],[12036.4,14343.6,0],[12084.3,14357.1,0],[12061.3,14350.4,0],[12066.4,14568.3,0],[12082.7,14550.5,0],[12095,14080.9,0],[12108.6,14366.7,0],[12109.4,14517.1,0],[12094.6,14534.6,0],[12140.6,14099.9,0],[12120.7,14091.8,0],[12149.4,14387.9,0],[12130.7,14377.6,0],[12129.8,14496.3,0],[12161.2,14108.2,0],[12170.8,14400.6,0],[12173,14456.5,0],[12152.7,14474.5,0],[12181.8,14116.4,0],[12201.8,14124.4,0],[12203.9,14371.8,0],[12194.9,14389.5,0],[12194.4,14415.3,0],[12191.3,14443.9,0],[12208,14437.4,0],[12220.5,14131.9,0],[12230,14315.5,0],[12222,14334.4,0],[12213.5,14352.3,0],[12239.7,14445.7,0],[12220.4,14435.4,0],[12262.6,14149.3,0],[12240.1,14140,0],[12255.4,14258.6,0],[12249.5,14276.5,0],[12243.3,14279.1,0],[12246.8,14276.5,0],[12242.9,14283.2,0],[12259.2,14280.5,0],[12259.1,14458.7,0],[12285.3,14158.7,0],[12283.8,14219.2,0],[12299.8,14204.7,0],[12274.8,14234.5,0],[12284.3,14238.6,0],[12275.4,14287.3,0],[12299.9,14484.5,0],[12275.9,14469.4,0],[12322.5,14185.2,0],[12305,14166.8,0],[12324.3,14205.6,0],[12315.1,14198.8,0],[12300.5,14245.1,0],[12326.3,14256,0],[12301.4,14298.1,0],[12322.1,14483.5,0],[12325,14500.3,0],[12342.9,14145.7,0],[12337.7,14151.2,0],[12350.7,14142.2,0],[12331.1,14164.3,0],[12342.8,14213.5,0],[12353.7,14267.3,0],[12331.3,14310.5,0],[12357.4,14321.3,0],[12354.2,14408.2,0],[12343.1,14435.5,0],[12330.2,14466.4,0],[12345.6,14513.2,0],[12372.1,14146.4,0],[12360,14142.4,0],[12363.3,14222,0],[12383.6,14230.5,0],[12378.3,14277.2,0],[12389.9,14321.3,0],[12373.3,14327.7,0],[12371.8,14365.5,0],[12380.8,14343.6,0],[12362.8,14387.2,0],[12365.7,14517.9,0],[12371.4,14510.9,0],[12388.3,14540.9,0],[12419.6,14067.4,0],[12390.1,14153.6,0],[12411.4,14162.6,0],[12402.8,14238.6,0],[12417.2,14244.7,0],[12408.7,14275.4,0],[12399.4,14298.2,0],[12400.3,14286.1,0],[12407.5,14289.2,0],[12392.6,14282.9,0],[12419,14431.4,0],[12408.7,14449.7,0],[12397.1,14470,0],[12396.2,14484.6,0],[12411.1,14491.2,0],[12406.6,14554,0],[12435.4,14079.6,0],[12430,14170.5,0],[12439.7,14174.5,0],[12444.4,14190.1,0],[12435.8,14210.3,0],[12426.2,14233.1,0],[12442,14223.6,0],[12424.6,14295.8,0],[12449,14305.2,0],[12440.1,14392.1,0],[12449.2,14374.8,0],[12429.7,14411.7,0],[12441.7,14430.7,0],[12432.3,14500.7,0],[12426.2,14569.5,0],[12447.3,14586.9,0],[12453.3,14093.5,0],[12476.8,14115.5,0],[12474.2,14121.7,0],[12467.8,14136.3,0],[12455.5,14164.5,0],[12458.2,14230,0],[12470.4,14330.4,0],[12474.5,14315.2,0],[12479.6,14317.4,0],[12465.1,14311.5,0],[12474.1,14369.7,0],[12460.1,14363.4,0],[12463,14440.6,0],[12455.5,14511,0],[12476,14520.2,0],[12467.2,14602.8,0],[12474.6,14828.9,0],[12485.9,14118.4,0],[12501.7,14130.3,0],[12483.4,14239.9,0],[12505.9,14248.8,0],[12498.5,14245.8,0],[12502.4,14263.4,0],[12491.8,14285.5,0],[12481.6,14306.6,0],[12499.9,14325.4,0],[12485.2,14319.9,0],[12493.8,14378.7,0],[12486.2,14451.5,0],[12506.7,14461,0],[12507.9,14500.2,0],[12509.1,14535,0],[12491.9,14533.8,0],[12499.1,14530.7,0],[12489.2,14526.1,0],[12488.9,14542.9,0],[12488.6,14554.4,0],[12489.7,14568.3,0],[12489.6,14578.7,0],[12484.7,14592.5,0],[12508.8,14632.7,0],[12485.4,14616.4,0],[12492.2,14823.1,0],[12524.1,14146.9,0],[12538.5,14182.4,0],[12530.1,14201.9,0],[12521.5,14222.2,0],[12527.9,14335.9,0],[12515.6,14388.5,0],[12535.1,14397.3,0],[12527.9,14458.3,0],[12537.7,14437.2,0],[12517.7,14479.7,0],[12526,14470.1,0],[12519.9,14467.2,0],[12533.4,14647.7,0],[12529,14808.7,0],[12510.9,14818.3,0],[12566,14177.6,0],[12545.2,14166.9,0],[12552.1,14345.9,0],[12563.9,14351.2,0],[12562,14381,0],[12554.5,14399.3,0],[12546.6,14417.5,0],[12548.6,14403.4,0],[12555.2,14406.7,0],[12562.7,14409.9,0],[12549,14482.1,0],[12555.2,14486.1,0],[12568.3,14509.4,0],[12561.1,14493.7,0],[12555.8,14657.5,0],[12564.1,14759,0],[12546.6,14787.7,0],[12590.1,14191.6,0],[12596,14337.3,0],[12596,14365.7,0],[12577.3,14352.1,0],[12586.4,14344.1,0],[12570.7,14354,0],[12584.1,14360.4,0],[12577.8,14416.4,0],[12598.5,14425.4,0],[12574.3,14528.2,0],[12580.7,14543,0],[12593.4,14555.3,0],[12578.8,14665.7,0],[12597.9,14719.3,0],[12581.5,14735.2,0],[12617,14205.3,0],[12609.5,14329.3,0],[12621.1,14322.3,0],[12625.8,14318,0],[12617,14375,0],[12617.2,14433.3,0],[12626.4,14560.9,0],[12611.3,14579.6,0],[12613.9,14566.5,0],[12620.8,14593.8,0],[12602.3,14672.9,0],[12616.9,14682.7,0],[12610.6,14700,0],[12645.1,14218.1,0],[12649.9,14266.4,0],[12639.1,14291.4,0],[12631.1,14308.4,0],[12638.5,14384.9,0],[12658.6,14394.6,0],[12637.7,14441.8,0],[12655.4,14449.1,0],[12653.2,14503.5,0],[12643.8,14530.2,0],[12636.7,14551.2,0],[12642.4,14605.9,0],[12650.7,14685.6,0],[12661.3,14240.5,0],[12666.2,14226.9,0],[12685.6,14226,0],[12677.3,14225.2,0],[12688.9,14422.3,0],[12676.9,14403.2,0],[12672.9,14456.2,0],[12665.7,14453.3,0],[12664.1,14479.7,0],[12672.9,14462.4,0],[12673,14690.1,0],[12697.9,14232.8,0],[12712.7,14242.3,0],[12713.3,14365.5,0],[12706.4,14380.6,0],[12712.3,14419.9,0],[12698,14400.1,0],[12690.4,14409.2,0],[12696.4,14412.1,0],[12714.2,14698.3,0],[12693.9,14693.6,0],[12726.4,14251.1,0],[12739.5,14258.4,0],[12741.3,14309.6,0],[12729.6,14332.8,0],[12720.2,14351.5,0],[12733.5,14430.1,0],[12749.3,14437.6,0],[12747.1,14713.7,0],[12732,14704.7,0],[12751,14264.1,0],[12759.4,14273.7,0],[12752.2,14288,0],[12772.9,14434.3,0],[12764.1,14439,0],[12758.1,14440.2,0],[12763.3,14726.8,0],[12788.9,14279.4,0],[12792.9,14304.9,0],[12798.7,14291.5,0],[12788.4,14325.8,0],[12787.3,14348,0],[12788.9,14396.4,0],[12787.7,14370.4,0],[12788.5,14424.1,0],[12781.4,14428.8,0],[12796.9,14451.4,0],[12805.4,14481.8,0],[12808.9,14681.3,0],[12803,14698.7,0],[12797.2,14716,0],[12783,14746.6,0],[12794,14736.1,0],[12827.8,14289.2,0],[12815.2,14512.1,0],[12823.1,14538.2,0],[12827.5,14563.7,0],[12828.6,14589,0],[12826,14617.3,0],[12815.5,14661.5,0],[12821.1,14642.9,0],[12866.7,14296.9,0],[12847.6,14292.7,0],[12889.1,14304,0],[12881,14300.8,0],[12904.8,14308.9,0],[12928.9,14316.7,0],[12955.7,14325.8,0],[12979.4,14334.7,0],[13000.2,14344.6,0]]],["Stavros",[[12747.1,14713.7,0],[12763.3,14726.8,0],[12754.8,14933.8,0],[12757.5,14945.5,0],[12762.2,14960,0],[12769.6,14974.4,0],[12777.9,15121.8,0],[12766.2,15394.5,0],[12808.9,14681.3,0],[12803,14698.7,0],[12797.2,14716,0],[12783,14746.6,0],[12794,14736.1,0],[12806.2,14784.4,0],[12798.2,14766.5,0],[12784.1,14996.1,0],[12780.4,14998.8,0],[12790.2,14999.6,0],[12786.6,15028.1,0],[12798.3,15002.9,0],[12782.2,15011.4,0],[12797.3,15048.4,0],[12798.4,15113.3,0],[12807.1,15368,0],[12783.6,15383,0],[12818.1,14809.2,0],[12835,14832.9,0],[12811.4,15006,0],[12823.7,15006.1,0],[12833.9,15004.5,0],[12815.3,15069,0],[12835.5,15083.8,0],[12822,15100,0],[12835.7,15350,0],[12856.7,14851.7,0],[12855.8,15003,0],[12843.2,15003.1,0],[12846.1,15083.2,0],[12869.9,15062.3,0],[12861.8,15071.5,0],[12854.7,15093.8,0],[12858.4,15334.7,0],[12879.9,14865.7,0],[12880.3,14879.8,0],[12897.8,14873.8,0],[12874.9,14870.5,0],[12889.3,14896.7,0],[12886.5,15008.8,0],[12871,15004.8,0],[12899,15021.8,0],[12879.1,15048.2,0],[12891,15032.3,0],[12873.3,15102.5,0],[12894.3,15114.6,0],[12886,15108,0],[12895.7,15306.3,0],[12876,15321.6,0],[12917,14886.7,0],[12900.5,14918.2,0],[12913.4,14942,0],[12918.1,14986.7,0],[12924.3,14970.2,0],[12909.4,15004.4,0],[12903.7,15014.4,0],[12909.6,15010.1,0],[12917.2,15011.6,0],[12922.7,15112.5,0],[12929,15144.2,0],[12912.6,15121.6,0],[12917.1,15289.2,0],[12941.2,14907,0],[12948,14992.7,0],[12930,15011.6,0],[12946.3,15014,0],[12947.4,15021.8,0],[12948.3,15048.8,0],[12948.2,15031.4,0],[12940.2,15085.2,0],[12959.1,15074.4,0],[12950,15069.4,0],[12931.9,15101.3,0],[12945.7,15154.2,0],[12953,15252.4,0],[12937.1,15270.3,0],[12965.8,14929.8,0],[12969.3,15014.7,0],[12984.4,15022.4,0],[12980.6,15086.5,0],[12969.8,15079.9,0],[12962.9,15161.1,0],[12979,15162.3,0],[12988.5,15160.7,0],[12981.8,15204.4,0],[12973.7,15221.3,0],[12964.1,15237.4,0],[12991.4,14954,0],[13010.6,14997.9,0],[12995.6,15011.9,0],[13006.3,15047.6,0],[12994.1,15100.1,0],[13005.8,15114.6,0],[13012.2,15123.4,0],[12995.5,15158.4,0],[12990.4,15185.3,0],[13038.9,14969.1,0],[13034.3,14995.3,0],[13021.5,14987.6,0],[13048.5,15067.7,0],[13023.1,15062.4,0],[13035.7,15073.6,0],[13026.4,15100.9,0],[13021,15147.7,0],[13034.7,15155.8,0],[13070.4,14931.8,0],[13054.9,14950.5,0],[13052.6,15014,0],[13065.7,15028.7,0],[13064.8,15054.5,0],[13073.2,15044.9,0],[13075.1,15046.2,0],[13067.9,15169.7,0],[13061.9,15172.6,0],[13070.7,15184,0],[13099.7,14895.1,0],[13085.9,14912.5,0],[13100.8,15026.8,0],[13086,15057.8,0],[13086.8,15038.3,0],[13080.5,15042.8,0],[13102,15078.4,0],[13088.5,15172.7,0],[13080.8,15204.3,0],[13087.1,15226.4,0],[13090.8,15248.1,0],[13098.6,15299,0],[13094.5,15273.1,0],[13103.7,15325.8,0],[13138.6,14847.4,0],[13112.4,14879.3,0],[13125.7,14862.9,0],[13132.5,14986.6,0],[13117.9,15008,0],[13114.9,15099.9,0],[13126.7,15117.5,0],[13116.2,15177.9,0],[13110.2,15354.7,0],[13116.8,15383.3,0],[13169.7,14813.2,0],[13153.3,14831,0],[13156.9,14948.3,0],[13143.5,14968,0],[13141.9,15009.4,0],[13159.8,15023,0],[13141.7,15134.1,0],[13161.5,15154.2,0],[13144.8,15185.6,0],[13186.2,14794.3,0],[13198.9,14895,0],[13184,14913.1,0],[13171.6,14929.1,0],[13180,15036.6,0],[13179.2,15172.8,0],[13174.2,15195.4,0],[13193.4,15188.8,0],[13218.2,14755.4,0],[13202.7,14773.9,0],[13215.5,14876.1,0],[13203.2,15049.9,0],[13203.8,15200.6,0],[13256.9,14840.5,0],[13234.3,14858.5,0],[13232,15063,0],[13234.3,15211.2,0],[13275.4,14824.3,0],[13264.7,15075.7,0],[13288.7,15177,0],[13275.3,15197.7,0],[13276,15219.9,0],[13266.4,15211.4,0],[13294.2,15088.3,0],[13318.5,15118.5,0],[13318.1,15098.5,0],[13313.1,15135.5,0],[13302.6,15154.4,0],[13297.8,15224.3,0],[13331,15093.2,0]]],["Lakka",[[11800.3,15625.6,0],[11809.5,15849.3,0],[11827.8,15633.5,0],[11837.1,15851.1,0],[11879.8,15648.1,0],[11853.3,15638.4,0],[11858.4,15851.3,0],[11907.3,15660.8,0],[11908.1,15850.1,0],[11882.3,15850.9,0],[11933.2,15673.9,0],[11934.6,15849.1,0],[11961.5,15688.3,0],[11961.1,15848.1,0],[11961.1,16113.7,0],[11994.3,15675.4,0],[11984,15685.1,0],[11986,15700,0],[11986.5,15847.2,0],[11996,16045.5,0],[11985.2,16069.1,0],[11974.3,16094.2,0],[12014.3,15662.7,0],[12005.8,15707,0],[12025.4,15708.9,0],[12010,15846.5,0],[12026.1,16006.4,0],[12007.9,16025.7,0],[12051.7,15647,0],[12034.1,15653.7,0],[12046.1,15707.6,0],[12036.1,15846.2,0],[12046.5,15991.2,0],[12075.8,15284,0],[12088.3,15312.1,0],[12071.1,15640.1,0],[12088.9,15634,0],[12067.6,15706.8,0],[12088.4,15707.8,0],[12064.8,15845.9,0],[12080.5,15965.1,0],[12063.4,15980.3,0],[12097.1,15340.7,0],[12101.5,15368.9,0],[12110.5,15399.2,0],[12110.1,15628,0],[12111.1,15710.1,0],[12091.6,15845.9,0],[12117.4,15846.2,0],[12097.8,15946.4,0],[12116.7,15932,0],[12124.9,15428.6,0],[12146.7,15473.5,0],[12137,15452.1,0],[12135.3,15623,0],[12141.6,15653.9,0],[12147.9,15634.1,0],[12135.2,15686,0],[12135,15708.3,0],[12140.4,15846.9,0],[12137.6,15921.3,0],[12161.7,15494.9,0],[12159.8,15619.6,0],[12157.4,15715.1,0],[12179.6,15849.1,0],[12160.2,15847.8,0],[12168.9,15896,0],[12154.9,15909.9,0],[12180.4,15510,0],[12203.3,15516.4,0],[12185.4,15614,0],[12202.3,15609.2,0],[12206.6,15706.2,0],[12180.8,15716.2,0],[12181.3,15715.8,0],[12196.2,15865.2,0],[12204.2,15855.5,0],[12183.5,15879.9,0],[12229.2,15251.4,0],[12237.2,15297.2,0],[12231.5,15278.4,0],[12231.9,15521,0],[12235.2,15598.5,0],[12233.8,15719.1,0],[12228.7,15704.1,0],[12229.8,15830.4,0],[12223,15847.1,0],[12224.3,15840.5,0],[12246.1,15317.1,0],[12266.4,15338.8,0],[12255.9,15330.4,0],[12258.4,15530,0],[12254.2,15593.2,0],[12256.1,15687.8,0],[12243.6,15744.3,0],[12252.4,15766,0],[12255.1,15781.6,0],[12253.8,15794.5,0],[12243.5,15810.3,0],[12251.3,15855.7,0],[12283.6,15348.7,0],[12299,15355.2,0],[12286.6,15561.6,0],[12276.8,15543.1,0],[12291.2,15578.6,0],[12275.8,15681.3,0],[12291,15677.8,0],[12281.6,15859,0],[12313.4,15356.4,0],[12322,15580,0],[12300,15582.7,0],[12311.4,15678.9,0],[12325.3,15700.1,0],[12325.1,15717.7,0],[12313.9,15862.7,0],[12334.7,15357.4,0],[12350,15359.5,0],[12344.7,15579.8,0],[12359.6,15582.8,0],[12356.1,15639.2,0],[12348.2,15662.9,0],[12353.3,15684.7,0],[12333.7,15682,0],[12331,15736.1,0],[12344.1,15760.5,0],[12346.4,15866.5,0],[12381.8,15374.5,0],[12363.8,15364.8,0],[12386.8,15507.7,0],[12380.5,15531.8,0],[12375.3,15562.6,0],[12370.2,15585.8,0],[12364.6,15611.5,0],[12376,15684.6,0],[12381.1,15770.2,0],[12370.2,15774.9,0],[12360.7,15778.4,0],[12365.8,15800.1,0],[12375.5,15818.3,0],[12383.8,15835,0],[12377.3,15870.3,0],[12363.3,16224,0],[12378.3,16201.5,0],[12394.6,15386.3,0],[12401.8,15400.8,0],[12407.4,15418.6,0],[12411.3,15436.1,0],[12410.4,15464.8,0],[12412.6,15451.5,0],[12399.4,15485.3,0],[12414,15528.7,0],[12397.3,15522.1,0],[12402.9,15677.7,0],[12414.4,15744.5,0],[12393.9,15763.3,0],[12406,15754.3,0],[12390.8,15851.7,0],[12395.8,15865.5,0],[12404.8,15873.7,0],[12404.6,15892.8,0],[12399.5,15877.7,0],[12411.8,15914.1,0],[12419.1,15936.5,0],[12410.2,16163.9,0],[12393.8,16182.6,0],[12433.4,15535.4,0],[12449,15555.8,0],[12449.7,15544.3,0],[12447.6,15572.5,0],[12445.5,15592.3,0],[12442.7,15609.4,0],[12438.8,15622.6,0],[12430.5,15646.8,0],[12434.3,15633.8,0],[12428.7,15656.4,0],[12428.4,15663.6,0],[12438.1,15721.1,0],[12424,15733.6,0],[12447.1,15825,0],[12442.7,15853.6,0],[12427,15876.5,0],[12424.5,15954.8,0],[12428.3,15984.3,0],[12427.2,15969,0],[12428.8,16004.4,0],[12429.4,16028.4,0],[12432.9,16077.4,0],[12430.3,16051.9,0],[12436.3,16103.6,0],[12432.4,16135.7,0],[12436.7,16122.5,0],[12423.6,16148.3,0],[12477.3,15635.8,0],[12459.8,15655,0],[12450.3,15659.9,0],[12468.2,15680.5,0],[12466,15667.1,0],[12455,15706.7,0],[12470.9,15711.8,0],[12468.2,15695.2,0],[12467,15732.8,0],[12456.9,15776.2,0],[12462.3,15753.1,0],[12451.8,15799.2,0],[12453,15880.3,0],[12489,15543.7,0],[12499.3,15607.1,0],[12485.7,15674.9,0],[12509.3,15683.9,0],[12483.2,15885,0],[12486.7,15901.7,0],[12506.2,15918.7,0],[12513.2,15546.7,0],[12529.8,15547.5,0],[12520.1,15578.5,0],[12527.7,15690.5,0],[12513.3,15889.7,0],[12526.8,15936.1,0],[12553.7,15542.3,0],[12541.5,15547.6,0],[12547.4,15697.3,0],[12566.7,15703.4,0],[12567.7,15897.4,0],[12541.9,15893.9,0],[12547.4,15953.5,0],[12567.1,15972,0],[12573.9,15528.2,0],[12590.9,15709.5,0],[12595.6,15901,0],[12585,15996.5,0],[12599,16027.7,0],[12625.2,15496.2,0],[12601.3,15511.3,0],[12618.9,15715.1,0],[12625.1,15904.6,0],[12610.4,16061.3,0],[12619.7,16090.7,0],[12644.1,15483.2,0],[12646.1,15719.1,0],[12650.3,15907.5,0],[12677.9,15458.2,0],[12661.5,15470.6,0],[12688.5,15720.7,0],[12669,15720.8,0],[12670.9,15909.7,0],[12709.9,15720.1,0],[12714.5,15913.9,0],[12692.4,15911.8,0],[12730.3,15719.7,0],[12749.5,15720.4,0],[12737.2,15916,0],[12769.7,15721.8,0]]],["AgiosDionysios",[[9086.69,16048.4,0],[9109.28,15836.5,0],[9116.65,16005,0],[9099.98,16015.8,0],[9090.41,16030.1,0],[9133.21,15846.3,0],[9139.21,15995.7,0],[9153.36,15802.5,0],[9160.87,15838.7,0],[9150.61,15864.4,0],[9178.99,15953.6,0],[9168.82,15972.6,0],[9156.95,15985.9,0],[9202.83,15804.4,0],[9183.25,15816.4,0],[9200.8,15901.6,0],[9206.44,15919.2,0],[9193.61,15916.2,0],[9194.74,15912.5,0],[9201.02,15906.4,0],[9212.23,15828.4,0],[9219.04,15857.2,0],[9210.11,15880.4,0],[9213.46,15937.5,0],[9217,15953.3,0],[9214.83,15972.3,0],[9241.49,15839.6,0],[9296.37,15835.8,0],[9271.33,15851.2,0],[9297.88,15861.5,0],[9290.48,15850.5,0],[9280.87,15878.3,0],[9277.03,15894.5,0],[9298.13,15915.4,0],[9283.51,15904.6,0],[9319.87,15869.8,0],[9315.89,15930.3,0],[9335.86,15949,0],[9350.39,15955.7,0]]],["Panochori",[[4762.76,10879.8,0],[4753.74,10862,0],[4763.08,11644.8,0],[4775.53,10903.7,0],[4795.91,10939.5,0],[4786.4,10925.5,0],[4796.33,11141.3,0],[4788.4,11139.7,0],[4797.6,11638.5,0],[4780.13,11638.3,0],[4810,10962.1,0],[4819.72,10988.6,0],[4824.67,11005.1,0],[4815.81,11135.6,0],[4823.41,11634.3,0],[4813.02,11638.7,0],[4845.95,11021.9,0],[4832.55,11014.5,0],[4843.33,11122.5,0],[4859.01,11558.7,0],[4845.44,11576,0],[4839.45,11589.1,0],[4832.88,11613.4,0],[4878.31,11031,0],[4862.42,11026.8,0],[4876.47,11129,0],[4867.01,11119.4,0],[4861.04,11116.6,0],[4877.16,11536.7,0],[4889.87,11521.2,0],[4895.93,11037.9,0],[4915.92,11046.4,0],[4893.85,11144.7,0],[4908.11,11153.9,0],[4905.5,11485.9,0],[4912.72,11467.8,0],[4896.97,11508.6,0],[4931.38,10768.4,0],[4944.82,10791.1,0],[4934.03,11053.9,0],[4926.36,11154.2,0],[4945.91,11154.3,0],[4934.37,11442.8,0],[4920.94,11457.6,0],[4976.34,10822.1,0],[4959.01,10805.1,0],[4971.54,11069,0],[4952.64,11059.9,0],[4953.55,11156.5,0],[4965.08,11165.3,0],[4972.65,11396,0],[4951.64,11420.9,0],[4992.72,10841,0],[5004.08,10855.1,0],[4987.54,11082.8,0],[5005.8,11106.7,0],[4984.54,11182.3,0],[5004.69,11207.5,0],[5003.92,11227.2,0],[5005.1,11243.8,0],[5000.71,11273.5,0],[5008.85,11253.1,0],[4989.9,11284.2,0],[4989.18,11306,0],[4987.51,11294.8,0],[5004.79,11337.4,0],[4993.65,11316.6,0],[4998.92,11326.4,0],[5005.15,11364.5,0],[4990.98,11377.9,0],[5013.97,10874.3,0],[5026.23,10898.7,0],[5038.79,10916.2,0],[5018.53,11118.9,0],[5035.55,11135.2,0],[5034.06,11165.4,0],[5013.84,11188.1,0],[5010.25,11262.3,0],[5010.05,11348.7,0],[5052.27,10931.3,0],[5068.35,10952.5,0],[5062.17,11127.2,0],[5049.23,11150.4,0],[5057.41,11138.3,0],[5063.4,11165.1,0],[5056.43,11308.6,0],[5062.99,11293.6,0],[5047.75,11324.7,0],[5051.15,11368.9,0],[5045.63,11355.9,0],[5041.06,11345.7,0],[5061.03,11396.4,0],[5056.18,11380.6,0],[5067.46,11414.1,0],[5096.41,10840.8,0],[5096.99,10861.3,0],[5096.93,10887.7,0],[5093.38,10912.3,0],[5084.98,10939.2,0],[5084.46,10974.6,0],[5097.61,10990.9,0],[5088.54,11077.4,0],[5073.71,11104.5,0],[5072.85,11180.5,0],[5081.76,11195.1,0],[5087.33,11209.9,0],[5091.67,11230.9,0],[5095.33,11248.6,0],[5079.42,11273.4,0],[5089.77,11262.9,0],[5070.55,11282.9,0],[5089.38,11427.7,0],[5076.25,11423,0],[5107.72,11007,0],[5108.63,11035.2,0],[5112.4,11020.8,0],[5113.51,11021.4,0],[5112.4,11027.7,0],[5103.73,11059.2,0],[5107.14,11065.4,0],[5117.45,11088.3,0],[5111.36,11073.9,0],[5123.01,11100.6,0],[5129.49,11207.8,0],[5106.28,11245.9,0],[5116.91,11233.9,0],[5124.13,11223.3,0],[5104.99,11427.9,0],[5118.63,11427,0],[5130.53,11110.9,0],[5138.42,11122.9,0],[5143.69,11135.5,0],[5147.83,11146.9,0],[5151.57,11156.5,0],[5150.68,11181.2,0],[5159.28,11213.9,0],[5156.06,11192.7,0],[5135.45,11192.2,0],[5158.89,11243,0],[5155.53,11272.9,0],[5157.58,11263.1,0],[5151.13,11288.4,0],[5146.51,11305.6,0],[5143.42,11318.5,0],[5140.02,11330.9,0],[5137.95,11352.1,0],[5136.99,11377.2,0],[5136.14,11403.4,0],[5135.9,11427.7,0],[5136,11421.1,0],[5157.58,11445.9,0],[5146.61,11436.7,0],[5178.85,11142.1,0],[5174.53,11458.9,0],[5187.54,11468.9,0],[5205.8,10967.4,0],[5211.51,10975,0],[5211.24,11118.1,0],[5195.08,11129.4,0],[5208.01,11483.3,0],[5196.55,11475.3,0],[5240.14,10990.1,0],[5222.53,10981.7,0],[5229.29,11108,0],[5246.84,11101.2,0],[5231.79,11502.3,0],[5220.12,11493.1,0],[5242.33,11507.3,0],[5268.81,10999.9,0],[5279.28,11006.4,0],[5255.75,10995.7,0],[5276.23,11073.3,0],[5269.06,11090.2,0],[5260.44,11097.1,0],[5254.3,11507.8,0],[5303.71,10989.4,0],[5286.26,11014.3,0],[5283.12,11048.7,0],[5323.98,10960.4,0],[5313.79,10971.7,0],[5361.87,10939.5,0],[5340.44,10949.5,0],[5384.88,10931.4,0],[5406.77,10925.5,0]]],["Topolia",[[7003.28,15463.5,0],[7043.99,15474.8,0],[7025.75,15466.8,0],[7065.25,15485.6,0],[7093.19,15495.2,0],[7127.68,15500.6,0],[7162.13,15499.4,0],[7188.09,15495.1,0],[7206.24,15491.4,0],[7224.18,15488.2,0],[7242.44,15485.1,0],[7267.11,15480.9,0],[7317.7,15466.1,0],[7290.91,15476.5,0],[7305.11,15472.4,0],[7315.32,15498.6,0],[7309.82,15524.6,0],[7318.39,15559,0],[7310,15546.5,0],[7322.16,15477.9,0],[7326.82,15463.8,0],[7329.02,15568.2,0],[7336.19,15580,0],[7338.99,15598.1,0],[7338.18,15618.4,0],[7344.99,15654.6,0],[7338.46,15637.1,0],[7375.26,15164.7,0],[7369.17,15180.6,0],[7367.25,15208.3,0],[7366.3,15193.4,0],[7368.27,15227.3,0],[7374.46,15263.8,0],[7369.28,15244.6,0],[7371.31,15357.3,0],[7358.84,15377.6,0],[7360.27,15368.7,0],[7362.4,15414,0],[7361.35,15392,0],[7377.54,15434.7,0],[7360.26,15433.3,0],[7357.69,15689.1,0],[7354.2,15670.7,0],[7357.23,15714.7,0],[7360.26,15737.3,0],[7370.16,15752.3,0],[7402.64,15087,0],[7391.24,15117.2,0],[7382.18,15144.8,0],[7382.64,15288,0],[7387.67,15319.2,0],[7387.66,15304.8,0],[7383.73,15338.5,0],[7397.06,15425.8,0],[7388,15768.6,0],[7414.6,15059,0],[7425.52,15416.6,0],[7411.42,15788.2,0],[7434.62,15806.7,0],[7448.28,15418.6,0],[7475.66,15422.1,0],[7493.79,15424.1,0],[7511.36,15423.6,0],[7550.72,15411,0],[7530.6,15418.6,0],[7570.95,15406.6,0],[7589.79,15407.1,0],[7610.64,15413.3,0],[7644.35,15403.4,0],[7627.17,15417,0],[7672.01,15388.5,0],[7695.35,15381.4,0],[7729.16,15362.5,0],[7711.62,15372,0],[7748.14,15352.9,0]]],["Ekali",[[16692.8,9905.6,0],[16720.1,9913.98,0],[16721.9,10200.8,0],[16763.4,9926.11,0],[16743.4,9920.74,0],[16750,10220.7,0],[16785.3,9931.67,0],[16787,10248.3,0],[16771.1,10236.1,0],[16807.9,9937.28,0],[16809.4,10266,0],[16825,10305.1,0],[16830.4,9942.79,0],[16851.8,9948.05,0],[16858.2,10136.5,0],[16852.1,10166,0],[16845.2,10200.3,0],[16839.8,10227.5,0],[16836.3,10245.9,0],[16831.2,10272.5,0],[16878.4,9954.97,0],[16888.7,10050.5,0],[16875.8,10078.5,0],[16867.9,10098,0],[16863.1,10114.6,0],[16911,9964.9,0],[16916.5,9983.44,0],[16908,10007.6,0],[16900.4,10025.2,0],[16947.6,9764.25,0],[16934.7,9808.63,0],[16941.5,9782.78,0],[16928.4,9841.48,0],[16924.2,9869.18,0],[16921.8,9891.33,0],[16921.8,9917.89,0],[16921.9,9950.7,0],[16938.3,9978.98,0],[16975.1,9659.44,0],[16979.5,9641.24,0],[16967.2,9681.14,0],[16957.4,9703.92,0],[16951.9,9717.93,0],[16950.6,9738.5,0],[16962,9999.77,0],[16982.4,9615.74,0],[16981.4,10018.8,0],[16994.8,10032.4,0],[17014,10051.3,0],[17036.9,10072.6,0],[17057.1,10090.5,0],[17076.9,10107.6,0],[17096.3,10124.2,0],[17114.8,10139.8,0],[17132.4,10154.5,0],[17149.5,10168.8,0],[17184.6,10199.3,0],[17165.7,10182.5,0],[17205.1,10218,0],[17222.7,10232.7,0],[17239.6,10244,0],[17257.2,10254,0],[17274.2,10262.5,0],[17309.5,10282,0],[17290.6,10270.9,0]]],["Pyrgos",[[16370.8,12805.5,0],[16374.4,12782,0],[16374.1,12833.5,0],[16406.3,12733.5,0],[16386.6,12760.8,0],[16381.8,12856.7,0],[16394.6,12874,0],[16433.2,12696.4,0],[16422.5,12711.5,0],[16414.5,12887.7,0],[16438,12901.6,0],[16466.5,12651.3,0],[16448.9,12674.5,0],[16461.8,12918.6,0],[16497.5,12616.9,0],[16481.1,12633.9,0],[16483.4,12938.2,0],[16516,12599.4,0],[16506,12961,0],[16525.2,12980.8,0],[16557,12481,0],[16559.6,12509.1,0],[16554.9,12500.4,0],[16553.9,12491.4,0],[16554,12560,0],[16535.2,12580.2,0],[16555.8,13012.1,0],[16538.7,12994.5,0],[16578.6,12449.4,0],[16589.2,12437.5,0],[16566,12466.5,0],[16572.4,12523.1,0],[16569,12543.8,0],[16586.3,12767.4,0],[16574.8,13031.3,0],[16598.3,12432.5,0],[16607.7,12755.5,0],[16592.2,13047.1,0],[16609.2,13058.8,0],[16644.6,12397.5,0],[16630.1,12418.4,0],[16631,12442.5,0],[16620.3,12432.6,0],[16630.6,12743.2,0],[16649.2,12734,0],[16646.6,13046.5,0],[16633.2,13060.4,0],[16622.9,13063.3,0],[16672,12359.6,0],[16658.4,12378.2,0],[16668,12444.8,0],[16667.2,12467.2,0],[16658.6,12457.5,0],[16663.1,12729.2,0],[16675,12729.3,0],[16679.9,13011.7,0],[16662.8,13027.7,0],[16700.4,12321.1,0],[16687,12339.3,0],[16696.7,12406.4,0],[16682.1,12425.9,0],[16683.9,12478.9,0],[16699.8,12490.4,0],[16709.9,12722.9,0],[16694.4,12743.6,0],[16690.8,12732.9,0],[16705.2,12758.2,0],[16707.8,12815.7,0],[16692.3,12829.9,0],[16689.3,12838.6,0],[16699.5,12863.9,0],[16690.5,12849.5,0],[16699.7,12996.2,0],[16728.5,12376.2,0],[16711,12389.8,0],[16717.2,12503.4,0],[16735.9,12518.1,0],[16733.8,12710.4,0],[16720,12778.6,0],[16732.4,12795.3,0],[16716.4,12882.6,0],[16721.7,12981.8,0],[16750.5,12368.5,0],[16752.1,12532.4,0],[16765.6,12546.2,0],[16752.4,12700.6,0],[16760.1,12772,0],[16745.2,12785,0],[16747.1,12811.2,0],[16764,12828.8,0],[16755.5,12886.7,0],[16740,12899.7,0],[16748.7,12917.1,0],[16763.9,12933.2,0],[16748.2,12964.7,0],[16798.6,12370.4,0],[16775,12367.5,0],[16796.4,12444.8,0],[16790.9,12469.3,0],[16785.5,12499.4,0],[16782.2,12526.3,0],[16776,12559.1,0],[16781.6,12544.6,0],[16794.7,12563.1,0],[16781.4,12559.3,0],[16783.3,12563.1,0],[16781.8,12575.6,0],[16784.3,12603.8,0],[16787.6,12636.9,0],[16776.2,12687.2,0],[16793.2,12663.2,0],[16795,12740,0],[16774.9,12758.3,0],[16778.2,12867.4,0],[16778.4,12844.4,0],[16788,12855.2,0],[16789.7,12858.1,0],[16788.2,12937.2,0],[16775.1,12944.8,0],[16827.9,12111,0],[16827,12323.7,0],[16820.3,12350.8,0],[16814.4,12374.2,0],[16806.6,12403.4,0],[16801.7,12422.9,0],[16815,12560.7,0],[16812.2,12705.8,0],[16808.5,12694.8,0],[16824.2,12700.6,0],[16823.1,12720,0],[16812.8,12699.5,0],[16812,12724.6,0],[16816.5,12734.8,0],[16818.2,12758.3,0],[16820.4,12776.1,0],[16829.6,12793.7,0],[16825.6,12825.9,0],[16802.9,12846,0],[16800.5,12872.7,0],[16815.6,12892.3,0],[16805.9,12924.2,0],[16829.2,12909,0],[16834.8,12134.9,0],[16842.4,12161.5,0],[16848.3,12184.1,0],[16850.7,12200.3,0],[16847.9,12231.7,0],[16857,12223.7,0],[16854.3,12212.4,0],[16843.9,12251.5,0],[16833,12298.9,0],[16838.9,12273.5,0],[16859.6,12277.7,0],[16857.9,12307.2,0],[16859.5,12339.5,0],[16857,12547.7,0],[16837.8,12555.3,0],[16856.3,12678.8,0],[16835.4,12693,0],[16833.3,12710.3,0],[16830.4,12716.6,0],[16847.3,12717,0],[16838.9,12715.9,0],[16838.5,12814.3,0],[16843.9,12894.2,0],[16838.5,12919.1,0],[16850.2,12932,0],[16880.3,12241.5,0],[16865.5,12252.2,0],[16862.2,12374.6,0],[16862.9,12403,0],[16866.4,12426.6,0],[16884.8,12474.8,0],[16873.5,12450.4,0],[16876.9,12538.7,0],[16881.5,12614.4,0],[16877.2,12627,0],[16879.1,12642,0],[16880.7,12656.2,0],[16875,12665.4,0],[16889.7,12717.4,0],[16883.8,12743.4,0],[16873.8,12733.9,0],[16865.3,12726.2,0],[16872,12722.7,0],[16861.9,12838.9,0],[16874.7,12870,0],[16870.7,12850.2,0],[16885.5,12861.9,0],[16877.1,12856.2,0],[16884.3,12858,0],[16860.6,12880.9,0],[16902.6,12224.9,0],[16900.7,12502.6,0],[16896.5,12530.4,0],[16912.3,12521.9,0],[16910.9,12527.1,0],[16895.9,12598.7,0],[16916.4,12583.5,0],[16911.4,12704.1,0],[16917.2,12772.6,0],[16897.2,12755.7,0],[16906,12850.1,0],[16926.8,12206.4,0],[16947.1,12190,0],[16949.6,12534.8,0],[16933.3,12546.2,0],[16936.8,12571.3,0],[16929.3,12575.7,0],[16943.9,12688.9,0],[16928,12693.3,0],[16936.4,12789.1,0],[16948.8,12802.5,0],[16941.5,12830.7,0],[16931.5,12837,0],[16943,12857.3,0],[16966.3,12170.2,0],[16966.8,12521.9,0],[16976.8,12517.5,0],[16972.1,12599.1,0],[16955.9,12582.5,0],[16962.8,12684.7,0],[16978.5,12680.9,0],[16958,12813.8,0],[16965.3,12822.2,0],[16956.8,12825.5,0],[16960,12888.4,0],[16975.2,12919.8,0],[16972.9,13028.7,0],[16961.1,13058.1,0],[16983.1,12149.4,0],[16997.8,12533.5,0],[16986.2,12522.3,0],[16989.7,12616.3,0],[17006.1,12633.4,0],[17001.3,12675.1,0],[16985.2,12837,0],[17004.4,12853.9,0],[16985.4,12951.4,0],[16987.5,12980.6,0],[16982.7,13004.7,0],[17031.6,12568.7,0],[17012.5,12547.4,0],[17029.1,12655.5,0],[17036,12649,0],[17031.6,12671.4,0],[17035,12667.1,0],[17014.2,12672.7,0],[17025.6,12872.5,0],[17048.6,12589.6,0],[17061.1,12626.7,0],[17060,12604.4,0],[17046.3,12639.8,0],[17062.4,12669.5,0],[17055.8,12685,0],[17045.7,12674.4,0],[17068.9,12698.7,0],[17040.9,12886.5,0],[17069.9,12916,0],[17055.4,12900.6,0],[17095.7,12595.9,0],[17077.9,12611.9,0],[17094.4,12667,0],[17082.5,12712.7,0],[17096.8,12727.5,0],[17085.4,12933.5,0],[17113.6,12578.3,0],[17126.2,12663.1,0],[17112.4,12743.3,0],[17101.5,12952.8,0],[17147.6,12543.1,0],[17130.8,12560.3,0],[17157.1,12657.8,0],[17130,12759.8,0],[17147.2,12774.3,0],[17177.2,12517.6,0],[17162.7,12529.3,0],[17183.1,12653.7,0],[17183.5,12801.3,0],[17164.2,12787.3,0],[17193.5,12505,0],[17208.7,12493.6,0],[17204.2,12651,0],[17204,12815.6,0],[17227.4,12480.1,0],[17226,12648.3,0],[17247.8,12645.7,0],[17224.5,12829.7,0],[17253.6,12462.9,0],[17269.1,12643,0]]],["Orino",[[10182.4,16866,0],[10186.9,16891.2,0],[10191.5,16914,0],[10219.4,16945.6,0],[10201.3,16930.6,0],[10237.4,16960,0],[10250.1,16982.3,0],[10269.7,17038.7,0],[10261.1,17011,0],[10278.8,17061.9,0],[10288.3,17078.9,0],[10298.8,17094.7,0],[10310.2,17108.8,0],[10323.5,17122.3,0],[10339.1,17137.2,0],[10354.6,17151,0],[10371.3,17163.6,0],[10388.6,17175.2,0],[10402.3,17186.8,0],[10401.5,17628.2,0],[10393.5,17659.1,0],[10415.4,17204.5,0],[10430.2,17227.8,0],[10439.5,17544.7,0],[10432.5,17572.1,0],[10419.1,17599.4,0],[10447.7,17249.5,0],[10469.1,17272.6,0],[10464.9,17480.5,0],[10455.5,17500.7,0],[10446.8,17520.6,0],[10486.5,17293.8,0],[10495.5,17309.9,0],[10498.9,17328.2,0],[10492,17369.6,0],[10496.7,17348.4,0],[10488.4,17391.4,0],[10486,17412.5,0],[10480.8,17438.2,0],[10473.1,17462,0]]],["Neri",[[3741.51,11636,0],[3734.33,11634,0],[3748.79,11642.6,0],[3741.62,11701.2,0],[3726.99,11720,0],[3773.25,11657.7,0],[3757.52,11648.1,0],[3774.37,11650.8,0],[3765.54,11650,0],[3757.04,11679.9,0],[3775.95,11931.3,0],[3799.37,11623.1,0],[3786.89,11639.2,0],[3801.07,11660.9,0],[3785.83,11651.9,0],[3794.19,11655.7,0],[3805.96,11670.5,0],[3802.58,11897.1,0],[3786.96,11914.6,0],[3827.5,11490.2,0],[3824.66,11537.8,0],[3832.62,11526.7,0],[3826.79,11568.5,0],[3824.87,11552.8,0],[3813.58,11605,0],[3823.67,11586.5,0],[3828.93,11678.4,0],[3818.53,11681.4,0],[3812.21,11688,0],[3822.14,11727.5,0],[3817.54,11701.6,0],[3825.77,11750.8,0],[3833.17,11763.7,0],[3821.55,11877,0],[3869.7,11528.6,0],[3847.47,11528,0],[3861.54,11677.2,0],[3843.32,11676.5,0],[3862.39,11840.5,0],[3843.5,11855.4,0],[3861.59,11964.9,0],[3867.45,11962.3,0],[3851.92,11985,0],[3856.8,11972.5,0],[3848.58,11999.1,0],[3848.58,12023,0],[3847.66,12011.5,0],[3893.07,11528.8,0],[3899.66,11684,0],[3880.66,11679.9,0],[3874.11,11833.8,0],[3884.2,11830.3,0],[3894.22,11828.9,0],[3878.64,11966.5,0],[3874.07,11962.9,0],[3880.24,11980.8,0],[3880.62,11972.3,0],[3927.92,11539.8,0],[3909.6,11531.3,0],[3922.65,11696.6,0],[3914.01,11688.7,0],[3929.95,11704.4,0],[3903.45,11829.4,0],[3911.76,11831.1,0],[3925.61,11832.6,0],[3918.51,11832.3,0],[3959.69,11396.4,0],[3954.27,11387,0],[3951.29,11379.7,0],[3947.08,11547.1,0],[3955.6,11546.4,0],[3947.32,11571.6,0],[3950.37,11591.7,0],[3959.75,11709,0],[3938.44,11707.8,0],[3944.01,11831,0],[3933.85,11832,0],[3953.53,11830.7,0],[3959.28,11830.5,0],[3961.94,11370.5,0],[3965.4,11421.1,0],[3963.68,11406.8,0],[3965.91,11449.9,0],[3965.44,11437,0],[3966.65,11484.6,0],[3967.19,11472.2,0],[3966.77,11461.2,0],[3965.36,11501.4,0],[3964.2,11519.8,0],[3961.13,11542.3,0],[3963.55,11533.3,0],[3963.26,11604.4,0],[3983.21,11617.7,0],[3984.23,11828.3,0],[3964.19,11828.1,0],[3970.59,11825.8,0],[3976.35,11825,0],[4007.24,11364.8,0],[3992.63,11357.8,0],[4002.07,11626.6,0],[3993.93,11708.8,0],[3996.28,11838.5,0],[4010.67,11852.8,0],[4030.95,11357.1,0],[4025.04,11369.4,0],[4020.84,11371.2,0],[4026.16,11636.3,0],[4048.33,11721.5,0],[4024.3,11711.5,0],[4040.56,11848.7,0],[4038.83,11837.8,0],[4026.4,11863.1,0],[4040.7,11864.9,0],[4036.94,11866.3,0],[4042.62,11861.8,0],[4042.91,11858,0],[4053.2,11648.3,0],[4074.27,11662.7,0],[4072.7,11754.3,0],[4077.48,11732.1,0],[4068.08,11746.1,0],[4064.89,11736.6,0],[4093.38,11681.4,0],[4092.04,11736.2,0],[4093.38,11771.2,0],[4106.81,11782.8,0],[4080.43,11761.1,0],[4118.27,11703,0],[4114.33,11739.6,0],[4134.58,11739.6,0],[4120.23,11794.3,0],[4131.79,11803,0],[4156.94,11699.5,0],[4166.32,11689.6,0],[4143.28,11713.4,0],[4146.95,11725.6,0],[4149.47,11707.1,0],[4153.54,11749.6,0],[4146.83,11737.1,0],[4158.54,11771.2,0],[4164.19,11786,0],[4168.65,11795.5,0],[4140.34,11806.3,0],[4164.84,11802,0],[4156.57,11805.2,0],[4148.44,11806.9,0],[4195.4,11659.8,0],[4185.3,11670.1,0],[4175.07,11680.5,0],[4182.86,11794.8,0],[4196.47,11792.3,0],[4220.21,11641.5,0],[4206.07,11651,0],[4220.15,11716.4,0],[4226.67,11702.2,0],[4216.56,11724.2,0],[4223.63,11709.1,0],[4214.65,11759.4,0],[4213.06,11748.4,0],[4213.84,11731.7,0],[4212.47,11739.3,0],[4216.91,11773.7,0],[4218.97,11787.4,0],[4211.64,11792.5,0],[4237.87,11630.6,0],[4247.99,11638.5,0],[4251.17,11626.5,0],[4244.02,11652.5,0],[4240.43,11665,0],[4237.07,11676.2,0],[4230.1,11694.1,0],[4233.52,11685.9,0],[4255.58,11812.1,0],[4239.9,11802.7,0],[4284.37,11410.2,0],[4289.27,11463.1,0],[4286.93,11476.4,0],[4284.79,11488.6,0],[4281.45,11510.5,0],[4278.42,11539.3,0],[4277,11564.2,0],[4268.92,11601.9,0],[4274.49,11585.6,0],[4261.7,11612.9,0],[4271.54,11822,0],[4290.41,11417.8,0],[4292.68,11426.6,0],[4291.19,11449.8,0],[4292.47,11437.1,0],[4294.31,11835.5,0],[4303.96,12074,0],[4324.36,11853.1,0],[4345.45,11865.8,0],[4344.64,11938.6,0],[4346.53,11933.4,0],[4344.03,11961,0],[4343.96,11947.8,0],[4345.4,11998.1,0],[4345.12,11978.1,0],[4342.47,12017.9,0],[4339.86,12029.1,0],[4325.44,12052.4,0],[4354.46,11874,0],[4359.13,11883.6,0],[4360.44,11895.7,0],[4359.34,11907.2,0],[4354.04,11922.9,0],[4350,11928.9,0],[4357.13,11915.8,0],[4377.89,12015.4,0],[4351.77,12031.2,0],[4402.04,12005.6,0]]],["Kore",[[6711.17,16217.4,0],[6739.15,16224.5,0],[6778.63,16148.2,0],[6768.49,16172.1,0],[6763.54,16195.3,0],[6762.85,16216.5,0],[6757.97,16227.6,0],[6773.33,16245.5,0],[6792.7,16124.3,0],[6792.54,16252.8,0],[6808.84,16398,0],[6818.46,16262.7,0],[6820.9,16379.8,0],[6810.69,16387.6,0],[6817.26,16413.4,0],[6832.58,16427.4,0],[6844.19,16279.5,0],[6843.93,16376.1,0],[6864.52,16372.4,0],[6850.48,16435.8,0],[6871.12,16299.3,0],[6892.73,16315.7,0],[6894.9,16342.4,0],[6879.44,16359.7,0],[6871.09,16443.9,0],[6889.19,16451.2,0],[6899.62,16565.4,0],[6894.55,16585.9,0],[6896.43,16603.8,0],[6904.91,16325.1,0],[6903.63,16331,0],[6904.73,16459.6,0],[6917.09,16472.7,0],[6924.62,16489.7,0],[6921.39,16527.6,0],[6927.2,16508.3,0],[6909.67,16546.6,0],[6907.53,16618.3,0],[6924.76,16633.3,0],[6946.03,16335.7,0],[6935.83,16343.4,0],[6940.28,16354,0],[6956.94,16367.1,0],[6944.17,16648.5,0],[6986.65,16316.5,0],[6964.25,16326.6,0],[6973.26,16377.8,0],[6960.34,16663.1,0],[6972.38,16682.3,0],[6982.21,16699,0],[7007.23,16040.8,0],[7007.15,16070.8,-0.836994],[7007.01,16051.5,0],[7009.89,16100.8,0],[7007.19,16087.8,0],[7017.25,16118,0],[7005.09,16305.5,0],[7018.6,16293.8,0],[6993.21,16391.4,0],[7019.39,16405.1,0],[6996.33,16709.2,0],[7014.95,16718.3,0],[7043.36,16168.7,0],[7029.28,16140.5,0],[7028.06,16285.5,0],[7043.35,16410.7,0],[7033.89,16723.4,0],[7066.84,16035.8,0],[7056.49,16199.2,0],[7071.83,16224.6,0],[7062.06,16411.1,0],[7061.92,16724.7,0],[7098.18,16041.3,0],[7086.25,16243.5,0],[7098.81,16258.1,0],[7085.27,16417.5,0],[7095.79,16721.4,0],[7107.85,16792.7,0],[7107.76,16807.9,0],[7125.89,16046.8,0],[7138.87,16275.2,0],[7117.19,16266.2,0],[7130.72,16425.2,0],[7113.95,16434,0],[7118.96,16458.1,0],[7123.94,16484.2,0],[7123.61,16528.2,0],[7124.56,16508.6,0],[7122.43,16547.4,0],[7121.24,16566.5,0],[7119.46,16594.2,0],[7117.55,16644.3,0],[7117.74,16622.2,0],[7123.43,16668.7,0],[7131.25,16691.4,0],[7134.49,16706.4,0],[7122.39,16717.1,0],[7139.56,16736.6,0],[7123.9,16762.6,0],[7134.24,16747.4,0],[7113.08,16779.2,0],[7111.6,16824.2,0],[7119.72,16842.6,0],[7133.03,16866.6,0],[7150.41,16053.5,0],[7156.02,16289.4,0],[7169.35,16305.4,0],[7158.01,16410.8,0],[7167.1,16546.4,0],[7144.44,16556,0],[7140.3,16726.1,0],[7198.15,16071.9,0],[7174.35,16062.1,0],[7186.46,16323.5,0],[7188.3,16394.6,0],[7189.37,16529,0],[7221.96,16082,0],[7206.61,16341.5,0],[7223.69,16354.1,0],[7214.11,16380.2,0],[7213.84,16509.3,0],[7246.65,16092.6,0],[7256.46,16348.1,0],[7238.87,16364,0],[7235.27,16361.9,0],[7242.94,16368.9,0],[7254.31,16380.6,0],[7239.23,16489.8,0],[7285.86,16109.5,0],[7268.05,16101.8,0],[7288.86,16275.8,0],[7271.69,16302.3,0],[7262.01,16329.3,0],[7271.31,16397.8,0],[7284.79,16414.2,0],[7288.35,16430.7,0],[7264.16,16467.8,0],[7282.22,16447.7,0],[7306.27,16118.3,0],[7309.28,16250.2,0],[7328.31,16127.8,0],[7326.91,16229.7,0],[7343.39,16217.9,0],[7362.29,16215.9,0],[7380.14,16224.4,0],[7398.02,16237.1,0],[7418.34,16249.6,0]]],["Kavala",[[3259.71,12508.7,0],[3269.84,13068.5,0],[3295.13,12527.7,0],[3279.51,12517.5,0],[3285.51,13032.1,0],[3293.06,13020.9,0],[3279.05,13043.9,0],[3273.83,13053.9,0],[3272.24,13074.9,0],[3277.23,13079.6,0],[3270.47,13061.7,0],[3295.05,13085.6,0],[3284.43,13082.4,0],[3312.48,12539.9,0],[3314.43,13002.5,0],[3301.42,13012,0],[3318.99,13092.6,0],[3307.4,13089.1,0],[3329.88,13096.3,0],[3329.91,13194.7,0],[3320.67,13181.5,0],[3331.23,12550.4,0],[3348.98,12558,0],[3351.53,12977.5,0],[3332.76,12990.3,0],[3341.78,13101.1,0],[3359.14,13094.3,0],[3356.29,13103,0],[3357.5,13112.1,0],[3331.33,13165.6,0],[3350.28,13140.2,0],[3342.56,13149,0],[3350.29,13208.2,0],[3365.01,12569.2,0],[3371.89,12962.4,0],[3364.33,12968.3,0],[3374.08,12961.1,0],[3372.05,12972.6,0],[3372.28,12966.4,0],[3377.81,13009.4,0],[3379.75,12995,0],[3379.87,13048.9,0],[3380.15,13024.7,0],[3380.94,13036.8,0],[3376.52,13062.3,0],[3375.03,13078,0],[3385.17,13078.3,0],[3364.39,13086.4,0],[3360.02,13133.1,0],[3374.81,13144.6,0],[3385.68,13159.3,0],[3367.76,13221.3,0],[3385.47,13235.4,0],[3394.83,12612.5,0],[3410.09,12600.2,0],[3391.93,12600.4,0],[3411.63,12638.3,0],[3412.87,12914.1,0],[3414.67,12922.6,0],[3394.67,12940.1,0],[3403.58,12931.5,0],[3416.79,12974,0],[3412.88,12985.9,0],[3395.83,12992.8,0],[3408.89,12997.3,0],[3408.64,13004.7,0],[3409.81,13048.1,0],[3408.92,13020.7,0],[3396.44,13078.5,0],[3410.69,13074.3,0],[3410.47,13065.5,0],[3397.11,13171,0],[3411.05,13175.4,0],[3401.22,13249.7,0],[3415.98,13265.2,0],[3435.23,12599.9,0],[3425.73,12660.3,0],[3441.02,12673.7,0],[3447.04,12695.2,0],[3448.3,12792.9,0],[3440.86,12835.3,0],[3444.99,12814.4,0],[3439.74,12856.2,0],[3447.79,12852.6,0],[3420.57,12894.9,0],[3431.29,12884.2,0],[3439.56,12887.1,0],[3445.15,12888.7,0],[3448.29,12888.9,0],[3423.03,12926.8,0],[3423.79,12954.6,0],[3447.04,12936,0],[3430.28,12937.4,0],[3448.96,12989.4,0],[3421.04,12990.7,0],[3440.46,13084.7,0],[3425.07,13080.6,0],[3421.76,13163.9,0],[3433.67,13157.7,0],[3446.64,13171.1,0],[3422.58,13194.1,0],[3447.95,13219.7,0],[3444.16,13207.4,0],[3431.83,13283.6,0],[3474.27,12588.3,0],[3450.14,12599.7,0],[3473.88,12629.5,0],[3464.5,12614.5,0],[3457.58,12603.6,0],[3479.22,12650.3,0],[3455.24,12665.2,0],[3469.6,12719.6,0],[3461.14,12755.4,0],[3450.25,12774.6,0],[3469.75,12750.5,0],[3454.56,12759.9,0],[3451.57,12764.6,0],[3471.43,12840.3,0],[3457.88,12847.6,0],[3464.38,12885.3,0],[3452.93,12888,0],[3463.86,12938.5,0],[3473,12987.8,0],[3456.23,13091.4,0],[3467.86,13098.9,0],[3479.68,13105.2,0],[3457.28,13127.1,0],[3473.97,13110.5,0],[3479.32,13188.3,0],[3452.81,13198.5,0],[3459.73,13184.5,0],[3460.06,13191.4,0],[3456.55,13228.4,0],[3467.98,13239.6,0],[3468,13290.4,0],[3452.58,13299.8,0],[3461.46,13325.4,0],[3499.99,12571.8,0],[3503.16,12635.3,0],[3488,12652.7,0],[3481.66,12641.9,0],[3503.41,12677.1,0],[3494.96,12663.7,0],[3508.15,12696.6,0],[3483.82,12711.1,0],[3494.62,12778.9,0],[3483.3,12759.3,0],[3505.79,12798,0],[3489.07,12830.9,0],[3502.73,12823.8,0],[3482.66,12880.9,0],[3500.76,12881.7,0],[3503.76,12889.6,0],[3508.16,12901.5,0],[3500.28,12936.8,0],[3482.61,12938.8,0],[3493.83,12985.6,0],[3495.28,13090,0],[3491.94,13124.7,0],[3505.52,13179.3,0],[3498.85,13192,0],[3494.7,13187.7,0],[3507.68,13207.5,0],[3481.19,13252.3,0],[3486.65,13279.7,0],[3507.46,13268.9,0],[3505.96,13342,0],[3494.32,13377.6,2.61898],[3494.74,13352.4,0],[3486.73,13360,0],[3485.53,13365.3,0],[3503.46,13390.2,0],[3508.67,13396.5,0],[3539.79,12505.4,0],[3536.1,12525.8,0],[3520.18,12556.3,0],[3531.56,12541.6,0],[3522.37,12580.2,0],[3522.8,12623.1,0],[3537.25,12614.1,0],[3536.49,12679.4,0],[3510.25,12687.9,0],[3523.14,12711.6,0],[3516.42,12700.3,0],[3534.48,12730.5,0],[3528.95,12799.4,0],[3517.89,12806,0],[3524.46,12831.6,0],[3510.82,12819.7,0],[3532.86,12849.1,0],[3536.9,12869.4,0],[3522.85,12872.2,0],[3531.77,12924.8,0],[3513.42,12915.9,0],[3517.14,12926.3,0],[3514.42,12952.2,0],[3512.65,12939.2,0],[3530.41,12980.2,0],[3516.26,12966.5,0],[3517.59,12977.7,0],[3531,13055,0],[3514.97,13070.7,0],[3520.31,13131,0],[3535.93,13120.3,0],[3520.44,13165.4,0],[3510.73,13141.7,0],[3537.22,13175.8,0],[3513.82,13171.3,0],[3519.48,13228.1,0],[3527.72,13242.5,0],[3514.64,13282.3,0],[3515.09,13262.5,0],[3539.34,13310.2,0],[3533.74,13315.7,0],[3521.88,13327.1,0],[3516.63,13406.2,0],[3528.92,13421.1,0],[3544.98,12485.5,0],[3546.82,12624.6,0],[3542.83,12615,0],[3552.33,12650.2,0],[3554.69,12656.5,0],[3550.83,12642.2,0],[3549.65,12634.2,0],[3564.83,12671.4,0],[3554.34,12668.4,0],[3549.65,12755.7,0],[3567.18,12770.3,0],[3560.19,12773.2,0],[3542.51,12791.7,0],[3555.02,12784.6,0],[3554.33,12885.6,0],[3544.38,12915.9,0],[3553.04,12907.4,0],[3562.55,12966.9,0],[3545.77,12974.9,0],[3548.18,13038.1,0],[3564.62,13022.3,0],[3549.96,13098.4,0],[3568.33,13085.3,0],[3558.81,13128,0],[3543.46,13123.1,0],[3549.67,13125.3,0],[3560.87,13202.4,0],[3550.55,13232.9,0],[3565.8,13286.1,0],[3554.85,13319.3,2.68615],[3556.1,13294.8,0],[3545.73,13304.3,0],[3545.28,13309.4,0],[3567,13331.7,0],[3545.15,13440.5,0],[3573.29,12680.5,0],[3582.29,12689.5,0],[3589.89,12715.4,0],[3588.2,12696.3,0],[3590.33,12702.5,0],[3588.78,12733.4,0],[3596.02,12749.8,0],[3587.89,12747,0],[3583.52,12753.6,0],[3598.31,12778.5,0],[3574.02,12759.8,0],[3591.82,12771.2,0],[3587.52,12757.3,0],[3588.93,12764.5,0],[3594.32,12897.1,0],[3599.08,12927.2,0],[3571.59,12901.1,0],[3585.97,12904.5,0],[3584.38,12954.3,0],[3579.76,13008.1,0],[3594.21,12995.1,0],[3579.41,13067.3,0],[3595.88,13050.8,0],[3586.55,13092.7,0],[3576.17,13088.8,0],[3598.17,13095.8,0],[3571.64,13131.6,0],[3584.18,13134.7,0],[3596.19,13136.5,0],[3581.63,13225.1,0],[3598.91,13243.1,0],[3598.06,13274.8,0],[3572.44,13281,0],[3580.2,13277.5,0],[3574.97,13340.9,0],[3589.82,13358.4,0],[3615.77,12748.3,0],[3611.31,12785.1,0],[3629.3,12867,0],[3606.73,12886.3,0],[3620.9,12874.1,0],[3611.77,12959.5,0],[3602.35,12943.2,0],[3605.47,12985.2,0],[3611.83,13009.7,0],[3607.65,13039.2,0],[3624.84,13022.8,0],[3614.39,13076.6,0],[3613.13,13054,0],[3609.08,13097.4,0],[3618.73,13123.8,0],[3624.42,13136.6,0],[3615.21,13136.9,0],[3606.19,13137.2,0],[3625.44,13164.6,0],[3621.72,13144,0],[3629.66,13185,0],[3614.45,13258.7,0],[3618.8,13272.2,0],[3626.01,13267.8,0],[3606.51,13378.1,0],[3619.7,13393.5,0],[3640.63,12747.3,0],[3630.57,12792.1,0],[3650.48,12805,0],[3645.42,12821.7,0],[3639.08,12842.5,0],[3634.71,12856.9,0],[3632.18,12863.8,0],[3636.82,12955,0],[3657.26,12940.2,0],[3645.36,13021.3,0],[3632.93,13022.6,0],[3659.68,13134.7,0],[3636.51,13135.9,0],[3634.47,13205.2,0],[3642.19,13231.2,0],[3651.12,13264.1,0],[3642.91,13268.7,0],[3631.01,13270.5,0],[3634.47,13410.4,0],[3683.5,12742.9,0],[3662.66,12745.6,0],[3682.01,12807.8,0],[3687.23,12803.9,0],[3675.54,12839.1,0],[3680.16,12824.2,0],[3683.85,12812.6,0],[3666.81,12870,0],[3671.21,12854.3,0],[3663.89,12892.8,0],[3664.08,12880.4,0],[3663.8,12884.7,0],[3663.87,12906.5,0],[3666.55,12923.7,0],[3664.36,12917.4,0],[3684.9,12940.5,0],[3668.05,12932.5,0],[3673.93,12932.7,0],[3660.01,13018.5,0],[3674.88,13015.2,0],[3687.42,13011.5,0],[3686.73,13133.4,0],[3677.3,13257.9,0],[3663.98,13264,0],[3673.83,13293.4,-1.41768],[3686.68,13312.8,0],[3703.66,12739,0],[3710.83,12780.5,0],[3695.81,12793.1,0],[3690.46,12798.2,0],[3700.05,12812.4,0],[3703.53,12952.9,0],[3715.73,12979.5,0],[3715.91,12962.2,0],[3715.76,12969.3,0],[3716.91,13012.2,0],[3699.07,13006.6,0],[3710.06,13001.4,0],[3708.18,13132.5,0],[3698.29,13246.6,0],[3718.16,13233.8,0],[3698.99,13327.9,0],[3712.36,13344,0],[3743.44,12729.9,0],[3723.19,12734.7,0],[3732.32,12762.6,0],[3724.56,12818,0],[3739.05,12960.1,0],[3724.15,13030.1,0],[3733.36,13050,0],[3741.78,13070.6,0],[3749.95,13091.1,0],[3730.65,13131.6,0],[3745.73,13135.5,0],[3749.39,13154.5,0],[3747.3,13143.7,0],[3743.12,13206,0],[3731.68,13222.9,0],[3727.97,13226.6,0],[3725.04,13360.2,0],[3737.42,13376.9,0],[3753.19,12746,0],[3766.17,12723.2,0],[3770.52,12733,0],[3779.78,12725.7,0],[3755.18,12824.6,0],[3777.89,12959.6,0],[3755.6,12960.2,0],[3769.15,12960.3,0],[3757.7,13110.6,0],[3763.49,13125.1,0],[3752.48,13171,0],[3753.79,13189,0],[3754.41,13183.2,0],[3784.15,12718.8,0],[3784.74,12829.5,0],[3808.17,12944.9,0],[3788.4,12955,0],[3783.15,13134.8,0],[3790.16,13137.8,0],[3806.17,13150.9,3.20698],[3795.13,13141,0],[3815.01,12702.3,0],[3834.54,12697.5,0],[3836.93,12830.3,0],[3811.95,12831.5,0],[3831.55,12931.6,0],[3834.13,13154.1,0],[3826.74,13163.1,0],[3817.41,13160.9,0],[3838.15,13178,0],[3854.39,12679.6,0],[3843.84,12709.4,0],[3853.06,12721.3,0],[3864.13,12733.8,0],[3858.23,12743.5,0],[3857.38,12728.3,0],[3857.55,12759.6,0],[3858.76,12776.5,0],[3861.88,12787.6,0],[3865.36,12796,0],[3868.09,12803.5,0],[3856.07,12827.5,0],[3868.12,12825,0],[3866.3,12832.7,0],[3859.71,12861.6,0],[3863.09,12842.8,0],[3856.37,12885.7,0],[3847.11,12921.4,0],[3854.29,12903.9,0],[3852.37,12914.2,0],[3856.24,13135.1,0],[3843.04,13144.9,0],[3855.32,13192.2,0],[3885.87,12726.8,0],[3890.4,12836.8,0],[3880.33,12828.7,0],[3873.74,12820.6,0],[3870.55,12826.4,0],[3870.23,12811.9,0],[3894.32,13119.1,0],[3873.42,13125.7,0],[3887.59,13218.7,0],[3872,13205.9,0],[3921.23,12852.5,0],[3903.07,12844.7,0],[3928.59,13109.2,0],[3914.29,13114.4,0],[3944.45,12861.6,0]]],["Aggelochori",[[3508,14115.6,0],[3500.44,14124.2,0],[3528.92,13421.1,0],[3519.47,14105.5,0],[3536.25,14103,0],[3545.15,13440.5,0],[3562.34,13466.2,0],[3554.43,14107,0],[3574.55,13495.2,0],[3583.74,13524.4,0],[3591.37,13550.1,0],[3597.8,13573.6,0],[3572.15,14120.9,0],[3586.23,14140.7,0],[3593.56,14157.6,0],[3619.7,13393.5,0],[3603.14,13595.5,0],[3627.66,13613.2,0],[3614.47,13616.5,0],[3610.12,13637.8,0],[3612.15,13665.3,0],[3613.48,13692.2,0],[3616,13717.3,0],[3618.81,13738.8,0],[3620.8,13758.9,0],[3622.83,13779.5,0],[3624.89,13799.6,0],[3627.18,13825.1,0],[3629.45,13852.9,0],[3651.46,13429.9,0],[3634.47,13410.4,0],[3645.49,13607.2,0],[3658.5,13716.1,0],[3636.91,13723.6,0],[3631.69,13876.8,0],[3635.48,13898.7,0],[3658.48,13911.2,0],[3645.23,13915.7,0],[3642.88,13945.3,0],[3645.62,13971.4,0],[3647.84,13990.6,0],[3650.49,14012.7,0],[3654.71,14040.6,0],[3657.3,14069.7,0],[3655.69,14093,0],[3652.05,14113,0],[3646.75,14137.9,0],[3641.25,14165.5,0],[3674.58,13455.2,0],[3664.34,13444.6,0],[3687.86,13589,0],[3664.42,13599.3,0],[3682.5,13707.2,0],[3679.77,13898.9,0],[3711.75,13462.9,0],[3704.34,13466.7,0],[3708.26,13486.4,0],[3698.92,13471.2,0],[3712.41,13580.6,0],[3708.24,13697.8,0],[3707.13,13880,0],[3749.19,13393.8,0],[3738.64,13428.5,0],[3749.05,13415.4,0],[3742.03,13419.6,0],[3738.79,13447.4,0],[3720.46,13459.9,0],[3740.65,13475.6,0],[3743.78,13505.7,0],[3729.47,13504.4,0],[3747.68,13529.1,0],[3741.48,13513.7,0],[3746.91,13517.2,0],[3734.5,13576.3,0],[3736.68,13686.8,0],[3734.74,13865,0],[3775.84,13433.9,0],[3766.8,13527.8,0],[3751.58,13550.3,0],[3751.02,13573.6,0],[3762.4,13614.2,0],[3759.58,13594,0],[3765.36,13631.6,0],[3756.92,13674.7,0],[3764.96,13662.2,0],[3770.09,13651.1,0],[3775.69,13828.1,0],[3779.12,13858.3,0],[3753.27,13856.7,0],[3770.04,13851,0],[3793.91,13457.1,0],[3791.38,13540.7,0],[3809.97,13550.3,0],[3803.55,13674.7,0],[3787.57,13659.4,0],[3793.07,13805.4,0],[3792.48,13866.5,0],[3834.4,13492.4,0],[3813.88,13477.2,0],[3828.62,13561,0],[3835.29,13682.8,0],[3825.82,13690.5,0],[3838.7,13711.5,0],[3813.59,13785.6,0],[3834.71,13770.3,0],[3812.67,13872.7,0],[3859.27,13509.5,0],[3846.64,13572.4,0],[3864.15,13582.9,0],[3852.59,13670.1,0],[3855.24,13728.3,0],[3869.44,13738.7,0],[3853.26,13759.3,0],[3865.6,13750.9,0],[3841.14,13876.2,0],[3866.26,13878.9,0],[3885.21,13527.3,0],[3882.33,13593.1,0],[3877.31,13654.1,0],[3899.31,13743.9,0],[3872.47,13744.4,0],[3880.8,13883.4,0],[3894.52,13890.5,0],[3909.95,13545.2,0],[3903.09,13604.8,0],[3921.53,13616.1,0],[3900.79,13640.2,0],[3919.36,13631,0],[3918.22,13746.7,0],[3929.79,13750.8,0],[3923.53,13889.3,0],[3908.98,13894.1,0],[3931.3,13562.7,0],[3949.05,13579.5,0],[3954.21,13622.5,0],[3932.56,13623.6,0],[3944.66,13763.8,0],[3936.26,13755.3,0],[3953.7,13774.1,0],[3937.4,13880.7,0],[3950.09,13874.3,0],[3964.37,13594.5,0],[3977.72,13607.8,0],[3978.56,13598.5,0],[3969.67,13609.9,0],[3984.97,13591.1,0],[3964.09,13616.5,0],[3974.72,13795.9,0],[3962.75,13784.1,0],[3988.93,13808.8,0],[3966.73,13871.2,0],[3983.66,13871.1,0],[4010.08,13566.4,0],[3995.17,13580.8,0],[3996.19,13627.1,0],[4015.84,13649.1,0],[4005.9,13820.9,0],[4011.63,13882.7,0],[3997.08,13875.4,0],[4035.49,13665.5,0],[4027.44,13833.5,0],[4045.71,13846.3,0],[4027.1,13889.2,0],[4043.36,13892.2,0],[4050.13,13659.9,0],[4051.37,13698.4,0],[4065.32,13718.8,0],[4079.11,13739.3,0],[4058.67,13863.1,0],[4068.95,13879.2,0]]],["Koroni",[[11511.9,18727.3,0],[11504.9,18738,0],[11501.9,18751.5,0],[11502.5,18773.2,0],[11501.9,18763.4,0],[11544.5,18704.9,0],[11524.7,18718.5,0],[11534.6,18783.6,0],[11566.7,18685.4,0],[11560.3,18790.1,0],[11600.7,18644,0],[11586.3,18664.5,0],[11582.9,18798.5,0],[11614.9,18625.8,0],[11630.5,18610.5,0],[11610.6,18809.4,0],[11655.7,17899.3,0],[11667.4,18398.6,0],[11658.1,18415.9,0],[11657.9,18448.1,0],[11654.4,18432.2,0],[11667,18465.9,0],[11667.5,18562.4,0],[11657,18581,0],[11644.4,18596.4,0],[11642.1,18821.6,0],[11667.3,18831.1,0],[11676.1,17914.9,0],[11687.9,17930.7,0],[11698.5,17952.9,0],[11684,18379.8,0],[11674.8,18485.7,0],[11674.7,18538.3,0],[11677.4,18510.2,0],[11685.4,18837.1,0],[11706.2,17998.5,0],[11705.2,17976.7,0],[11706.2,18022.6,0],[11706.3,18043.9,0],[11714.3,18086.6,0],[11708.3,18064.3,0],[11725.9,18112.6,0],[11717.3,18348.5,0],[11729.7,18332.3,0],[11702.4,18363.2,0],[11725.7,18839.9,0],[11703.9,18840.1,0],[11758.7,18130.3,0],[11744,18135.7,0],[11749.2,18167.6,0],[11750.7,18220.7,0],[11748.2,18245,0],[11745.5,18271.1,0],[11744.3,18292.5,0],[11758.3,18324.9,0],[11742,18314.6,0],[11737.2,18321.5,0],[11750.9,18836.5,0],[11777.7,18122.2,0],[11779.8,18213.2,0],[11760.5,18211.4,0],[11774.1,18347,0],[11786,18360.9,0],[11779.6,18830.1,0],[11811.3,18098.6,0],[11795.1,18111.7,0],[11819.9,18232,0],[11800.1,18218.6,0],[11802.5,18372.1,0],[11811.6,18823.3,0],[11830,18083.2,0],[11840.3,18250,0],[11821.2,18384.4,0],[11837.1,18402.2,0],[11845.8,18816.7,0],[11871,18054.2,0],[11851,18067.1,0],[11860.1,18270.3,0],[11877.7,18289.6,0],[11852.1,18425.9,0],[11862.4,18448.2,0],[11867.9,18466.8,0],[11877.2,18491.9,0],[11874.2,18811.4,0],[11865.3,18828.6,0],[11864.3,18844.5,0],[11908.7,18040.3,0],[11889.6,18046.3,0],[11893.5,18302.8,0],[11894,18523.1,0],[11896.4,18807.2,0],[11927.4,18033.2,0],[11932,18306.4,0],[11910.1,18307.4,0],[11915.7,18551.6,0],[11935.1,18574.5,0],[11919.1,18803.1,0],[11963.7,18014.7,0],[11945,18024.7,0],[11954.1,18304.2,0],[11947.2,18593,0],[11956.4,18610.9,0],[11967.1,18630.5,0],[11965.5,18797.4,0],[11940.8,18799.7,0],[11982.4,18004,0],[11975.4,18301.9,0],[11981.1,18652.4,0],[12000,18678.1,0],[11994,18796.5,0],[12020,17979.6,0],[12001.1,17992.5,0],[12028.7,18295.4,0],[12000.8,18298.9,0],[12018.1,18701,0],[12019.6,18796.7,0],[12038.7,17966.6,0],[12056.5,17955.1,0],[12057.5,18291.8,0],[12033,18719.4,0],[12048.4,18738,0],[12043.5,18797.5,0],[12085.7,18288.3,0],[12063.3,18755.9,0],[12111.7,18285.3,0],[12133.9,18283.1,0],[12158.8,18281.5,0],[12186,18280.9,0],[12207.8,18282.3,0],[12226.7,18285.5,0],[12264,18297.3,0],[12245.1,18290.5,0]]],["Gravia",[[13881.3,17199.1,0],[13903.6,17225.2,0],[13926.4,17253,0],[13948.2,17279.6,0],[13946,17428.9,0],[13925.8,17411.4,0],[13967.1,17300.9,0],[13969.3,17446.1,0],[13983.4,17316.7,0],[13999.9,17329.7,0],[13990.7,17461.5,0],[14008.9,17475.2,0],[14039.1,17350,0],[14016.7,17340,0],[14025.4,17489.1,0],[14039.9,17502.7,0],[14061.1,17355.6,0],[14052.3,17513.2,0],[14099.5,17349.4,0],[14078.7,17354.6,0],[14099.3,17540.7,0],[14071,17524.8,0],[14121.9,17341.9,0],[14124.4,17554.5,0],[14156.8,17335.4,0],[14140,17336.9,0],[14144.2,17565.5,0],[14177.2,17338.8,0],[14162,17575.4,0],[14178.6,17584.5,0],[14200.4,17349.7,0],[14202.2,17597.5,0],[14212.4,18287.8,0],[14221.7,17362.9,0],[14239,17374.2,0],[14225.7,17610.2,0],[14241.5,17618.1,0],[14248.2,18219.2,0],[14235.7,18242.6,0],[14223.2,18266.8,0],[14277.4,17388.1,0],[14255.3,17382.8,0],[14259.4,17625.9,0],[14263.5,18194.5,0],[14302.5,17393.5,0],[14282,17634.7,0],[14307.1,17644.2,0],[14301.1,18140.5,0],[14281.7,18167.9,0],[14328,17403.9,0],[14338.3,17644.6,0],[14329.2,17651.4,0],[14328.4,17651.3,0],[14336.5,17654.5,0],[14320.2,18113,0],[14333.7,18091,0],[14350.5,17416.6,0],[14368.4,17433.5,0],[14355,17633.9,0],[14349.6,17660.5,0],[14360,18035.4,0],[14345.6,18066.5,0],[14386.8,17459.6,0],[14390.2,17625,0],[14370.8,17625.2,0],[14378.1,17623.9,0],[14374.4,17672.6,0],[14398.5,17684.6,0],[14398,17923.4,0],[14393.8,17944.9,0],[14391.6,17962.4,0],[14390.9,17974.9,0],[14373,18010.1,0],[14404.3,17490.2,0],[14420.7,17516.7,0],[14420,17618.9,0],[14406.4,17624.4,0],[14417.2,17694,0],[14423.8,17828.1,0],[14413,17862.1,0],[14404.4,17895.7,0],[14425.7,17946.7,0],[14404.8,17966,0],[14451.8,17372.1,0],[14442.3,17393.4,0],[14435.8,17408.7,0],[14433.5,17422.6,0],[14433.2,17444,0],[14433.5,17474.7,0],[14434.6,17504.6,0],[14435.1,17536.7,0],[14437.3,17524.3,0],[14440.1,17534.2,0],[14457.3,17556.1,0],[14456.3,17572.4,0],[14434.2,17607.5,0],[14450.5,17605.6,0],[14445.6,17596.7,0],[14454.1,17627.9,0],[14457.6,17714.3,0],[14437,17704,0],[14458.7,17729.7,0],[14453.3,17744.2,0],[14445.9,17766.9,0],[14435.9,17795.2,0],[14445,17931.6,0],[14487.7,17292.2,0],[14479.9,17311.6,0],[14469.5,17332.4,0],[14462.6,17348.3,0],[14470.3,17368.1,0],[14469.4,17347.7,0],[14473.4,17391.1,0],[14479.7,17418.6,0],[14487.4,17443.4,0],[14473.3,17546.1,0],[14468.5,17653.5,0],[14476.3,17694.3,0],[14486.6,17674.5,0],[14478.3,17724.7,0],[14465.8,17714.2,0],[14462.8,17721.2,0],[14487.4,17905.7,0],[14462.9,17919.9,0],[14490.9,16885.7,0],[14509.2,16904.4,0],[14507,17245,0],[14517.4,17221.6,0],[14495.6,17270.9,0],[14503.4,17488.2,0],[14495.2,17464.2,0],[14508.2,17504.2,0],[14496.1,17532,0],[14519.7,17539.7,0],[14511.5,17522.4,0],[14519.4,17669,0],[14503.9,17674.7,0],[14498.9,17735.1,0],[14518.8,17745,0],[14511.5,17892.3,0],[14547.3,16943.3,0],[14528,16923.6,0],[14549.8,17104.6,0],[14541.1,17126.5,0],[14534.9,17150.4,0],[14529.6,17179.2,0],[14537.4,17201.3,0],[14526.7,17196.8,0],[14535.6,17574.5,0],[14527.1,17558,0],[14548.9,17669.5,0],[14549.1,17652.7,0],[14539.6,17660.8,0],[14537.6,17754.3,0],[14549.9,17871.8,0],[14530.5,17882.1,0],[14566.9,16963.4,0],[14577.8,17036.9,0],[14570.5,17055.2,0],[14560.7,17078.7,0],[14554.3,17210.8,0],[14574.7,17226.4,0],[14563.7,17575,0],[14557.4,17605.6,0],[14550.3,17582.1,0],[14568.6,17619.6,0],[14577.1,17629.9,0],[14578.6,17632.2,0],[14564.6,17641.4,0],[14570.5,17685.9,0],[14562.1,17766.2,0],[14568.3,17861.9,0],[14586.9,16983.9,0],[14598.1,17001,0],[14590.3,17011.5,0],[14583.3,17023.4,0],[14593.7,17244.8,0],[14606,17556.8,0],[14582.3,17566,0],[14595.4,17706.4,0],[14587.5,17778.1,0],[14607,17785.4,0],[14590.3,17850,0],[14627.6,17025.5,0],[14612.4,17263.8,0],[14630.4,17282.6,0],[14633.7,17548.4,0],[14622.5,17725.7,0],[14628.9,17789.2,0],[14612.5,17837.3,0],[14629.1,17826.6,0],[14668.8,17067.7,0],[14648.2,17046.5,0],[14648.9,17303.7,0],[14668.9,17327.7,0],[14659.5,17542.3,0],[14646.7,17740.9,0],[14666.4,17751.3,0],[14665.4,17800.4,0],[14654.4,17790.7,0],[14660,17839.8,0],[14645.8,17822.7,0],[14689.4,17088.8,0],[14687.3,17348.8,0],[14681.6,17536.4,0],[14685.3,17785.6,0],[14686.4,17760.4,0],[14680.6,17788.5,0],[14672.4,17791.3,0],[14683.2,17878.4,0],[14674.7,17860.5,0],[14692.6,17900.3,0],[14710,17109.8,0],[14704.2,17366.9,0],[14721.8,17385.3,0],[14705.4,17526.2,0],[14723.5,17756.7,0],[14703.6,17787.7,0],[14701.9,17766.7,0],[14705.7,17928.1,0],[14719.3,17954.7,0],[14730.5,17130.7,0],[14750.7,17151.4,0],[14757.3,17418.9,0],[14737.9,17401.5,0],[14734.7,17511.7,0],[14742.5,17742,0],[14732.3,17787.2,0],[14752.5,17787.5,0],[14730.8,17974.9,0],[14744.1,17993.3,0],[14758.6,18010.6,0],[14770.7,17171.8,0],[14780.6,17437.3,0],[14765.6,17495.8,0],[14780.9,17713.6,0],[14761.5,17727.7,0],[14776.6,17789.5,0],[14774,18035.7,0],[14789.3,18067.6,0],[14790.4,17191.9,0],[14809.6,17211.6,0],[14796.1,17450.9,0],[14790.1,17481.5,0],[14800.4,17471,0],[14801.1,17461.6,0],[14800.9,17699.5,0],[14806.5,17793.7,0],[14805.1,18095.3,0],[14818.5,18119.1,0],[14828.4,17230.7,0],[14846.7,17249.4,0],[14820.6,17685.8,0],[14838.3,17674.1,0],[14837.1,17798.7,0],[14827.4,18145,0],[14835.3,18166.7,0],[14844.3,18183.3,0],[14864.4,17267.4,0],[14860.2,17661.4,0],[14866.6,17803,0],[14855.1,18201.4,0],[14866,18218.9,0],[14881.4,17284.8,0],[14897.7,17301.4,0],[14888.4,17648,0],[14891.5,17805.1,0],[14932.2,17040.5,0],[14926.1,17070.2,0],[14921.7,17094.4,0],[14921.6,17129.6,0],[14919.7,17113.7,0],[14929.3,17144.5,0],[14913.2,17317.1,0],[14927.9,17332,0],[14937.7,17632.6,0],[14914,17639,0],[14912.9,17805.4,0],[14947,17166.4,0],[14955.2,17359.8,0],[14941.6,17346,0],[14969.1,17374,0],[14960.1,17626.5,0],[14940.3,17805.3,0],[14965.5,17806.9,0],[14970.2,17192.2,0],[14988.9,17212,0],[14982.8,17388.1,0],[14996.3,17401.9,0],[14980.7,17620.6,0],[14987.3,17813,0],[15023.8,17248.4,0],[15005.4,17229.2,0],[15028.5,17225.2,0],[15015.7,17421.9,0],[15024,17607.6,0],[15002.5,17614.2,0],[15014.9,17822.2,0],[15044.7,17209.6,0],[15043.8,17269,0],[15040.4,17447.4,0],[15044.3,17601,0],[15041.8,17827.7,0],[15063.1,17192,0],[15064.8,17290.7,0],[15086.5,17313,0],[15063.3,17470.8,0],[15083.9,17491.6,0],[15089.7,17584.7,0],[15064,17594.4,0],[15086.7,17823,0],[15062.3,17828.2,0],[15108.3,17335.3,0],[15102,17509.4,0],[15117,17523.5,0],[15112.6,17573.7,0],[15113.3,17816.3,0],[15129.9,17357.3,0],[15135.1,17537.7,0],[15125.6,17562.4,0],[15132.9,17811.8,0],[15150.6,17378.3,0],[15170.1,17398,0],[15157.4,17547.9,0],[15177.7,17550.4,0],[15158.8,17803.5,0],[15198.4,17550.7,0],[15186.6,17794.7,0]]],["Anthrakia",[[16093.7,16094.3,0],[16135.9,16079.1,0],[16111.8,16087.9,0],[16166.1,16067.9,0],[16194.3,16056.5,0],[16222.4,16043.6,0],[16252,16028,0],[16256.3,16407,0],[16233.9,16424.9,0],[16289.3,16003.1,0],[16289.9,16027.9,0],[16274.2,16024,0],[16288.2,16372.5,0],[16273.6,16389.8,0],[16305.7,15693.6,0],[16304.5,15991,0],[16308,16031.2,0],[16304.9,16354.7,0],[16349.1,15678,0],[16324.1,15687.2,0],[16321.2,15977.4,0],[16338.5,15963.3,0],[16344.4,16029.9,0],[16324.5,16031.5,0],[16343.1,16321.9,0],[16323,16338.3,0],[16375.7,15933,0],[16356.3,15948.9,0],[16367.3,16027.2,0],[16365.3,16302,0],[16409.9,15649.6,0],[16401.3,15658,0],[16380.4,15666.1,0],[16396.4,15916,0],[16392.3,16024.4,0],[16404.3,16256.2,0],[16384.9,16279.7,0],[16420,15636.2,0],[16413.8,15678.4,0],[16424.3,15702.6,0],[16436.5,15727.3,0],[16418,15898.2,0],[16418,16022.1,0],[16438.5,16222.8,0],[16422.5,16236.9,0],[16464.2,15778,0],[16449.7,15750.8,0],[16462.2,15861.8,0],[16440,15880.1,0],[16443.9,16020.8,0],[16469.3,16021.1,0],[16456.4,16207.9,0],[16479.7,15808.6,0],[16489.8,15828.9,0],[16484.2,15843.9,0],[16495.6,15840.8,0],[16490.9,16023.5,0],[16489.5,16181.1,0],[16473.3,16194.1,0],[16527.8,15808.8,0],[16505.5,15826.7,0],[16503.7,15860.7,0],[16510.7,15884.8,0],[16517.9,15918.6,0],[16512.8,15901.8,0],[16509,16027.7,0],[16525.2,16047.3,0],[16521.4,16036.4,0],[16523.9,16158,0],[16505.6,16169,0],[16552.5,15789,0],[16551.4,15958.2,0],[16530.6,15937.1,0],[16548.5,16038.3,0],[16543.2,16079.6,0],[16531.6,16062.1,0],[16553.1,16144.3,0],[16578.3,15768.4,0],[16577.1,15980.8,0],[16575.5,16043.9,0],[16561.5,16097.6,0],[16575.8,16129.7,0],[16580.7,16112.8,0],[16604,15748,0],[16599.2,15999.3,0],[16615.8,16012.4,0],[16606,16049.7,0],[16599.5,16105.9,0],[16617.5,16082.7,0],[16615.1,16138.8,0],[16596.3,16124.5,0],[16649.7,15711.6,0],[16628.2,15728.7,0],[16631.2,16023.3,0],[16643,16030.7,0],[16630.4,16064.4,0],[16644,16053.2,0],[16631.4,16054.8,0],[16623.1,16053.3,0],[16648.1,16058.6,0],[16635,16154.3,0],[16667.2,15697.7,0],[16671.7,15976.8,0],[16662.6,16002.7,0],[16677,16045.4,0],[16654.2,16022,0],[16657.2,16034.7,0],[16654.7,16068.6,0],[16671.3,16094.6,0],[16663.9,16082.6,0],[16678,16106.3,0],[16651.7,16168.8,0],[16679.9,16186.5,0],[16665.7,16180.2,0],[16699.3,15672.1,0.170062],[16680.5,15687.2,0],[16696.3,15894.8,0],[16703.2,15873,0],[16689.6,15916.2,0],[16681.5,15943.9,0],[16703.5,16058.1,0],[16691.7,16139.1,0],[16685.5,16126.3,0],[16681.7,16116,0],[16699.6,16152.4,0],[16698.5,16191.8,0],[16731,15647.3,0],[16718,15657.4,0],[16729.8,15805.7,0],[16719,15830,0],[16710.2,15852.4,0],[16725.4,16067.4,0],[16714.9,16167.4,0],[16737.4,16183.9,0],[16715.3,16197.3,0],[16733.8,16217.3,0],[16725.3,16203.9,0],[16748.9,15633.4,0],[16768.4,15728.3,0],[16764.5,15736.6,0],[16742.6,15779.6,0],[16756.3,15752.7,0],[16749.4,16081.6,0],[16766.4,16222.1,0],[16756,16239.5,0],[16741.7,16234.3,0],[16746.4,16246.5,0],[16742.6,16270.3,0],[16741.2,16280.4,0],[16744.4,16262,0],[16741.3,16308.6,0],[16740.3,16291.9,0],[16745,16329.4,0],[16748.1,16351,0],[16749,16370.8,0],[16749.4,16390.1,0],[16749.7,16412,0],[16750.1,16433.6,0],[16750.8,16458.7,0],[16751.9,16487,0],[16753.6,16511.3,0],[16755.5,16531.2,0],[16758.2,16556.7,0],[16757.4,16549.7,0],[16756.7,16542.6,0],[16759,16565.5,0],[16795.2,15675.5,0],[16788.8,15688.4,0],[16775.2,15715.1,-2.17536],[16784.5,15696.9,0],[16774.7,16101.3,0],[16798.2,16121.4,0],[16785.9,16199.7,0],[16771.4,16204.8,0],[16770.4,16212.1,0],[16804.3,15656.7,0],[16818.9,16139.4,0],[16813,16198.9,0],[16838.7,16152.8,0],[16858.1,16166.9,0],[16844,16188.1,0],[16853,16177.1,0],[16832.6,16195.5,0],[16882.5,16155.7,0],[16907.9,16147.6,0],[16931.5,16141.1,0],[16953.7,16137.5,0],[16981.3,16133.9,0],[17006.5,16130.8,0],[17025.9,16128.6,0],[17046.2,16126.4,0],[17066.7,16124.5,0]]],["Syrta",[[8238.13,18085.5,0],[8253.72,18106.3,0],[8271.4,18123.7,0],[8295.22,18146.9,0],[8320.1,18170.5,0],[8343.53,18191.5,0],[8368.49,18210.5,0],[8398.01,18226.2,0],[8423.23,18235.1,0],[8448.3,18237.3,0],[8465.95,18229.6,0],[8465.46,18244.6,0],[8484.06,18248.9,0],[8490.76,18219.1,0],[8510.33,18211.7,0],[8498.92,18253.9,0],[8513.78,18258,0],[8524.05,18209.6,0],[8539.17,18213.6,0],[8542.83,18254.9,0],[8528.72,18253.1,0],[8520.39,18254.2,0],[8530.99,18279.5,0],[8544.8,18295.2,0],[8559.78,18222,0],[8571.43,18241.6,0],[8561.43,18256.9,0],[8555.24,18311.1,0],[8560.2,18325.2,0],[8562.29,18346.6,0],[8571.58,18379.3,0],[8565.01,18367.4,0],[8597.81,18058.2,0],[8588.82,18081,0],[8606.05,18114,0],[8588.86,18115.5,0],[8592.5,18104.8,0],[8587.49,18101,0],[8593.76,18136.1,0],[8602.44,18158.2,0],[8608.24,18175.2,0],[8599.81,18200,0],[8607.56,18185.8,0],[8586.09,18220.1,0],[8581.53,18267.8,0],[8605.6,18276.6,0],[8598.41,18380.6,0],[8605.43,18368.3,0],[8605.18,18404.7,0],[8591.94,18390.8,0],[8638.24,18010.9,0],[8615,18034.4,0],[8628.33,18126.9,0],[8632.56,18272.8,0],[8622.91,18294.5,0],[8623.88,18283.1,0],[8630.49,18285.6,0],[8616.54,18316.4,0],[8613.49,18337.6,0],[8610.51,18354.7,0],[8626.95,18419.2,0],[8665.44,17989.5,0],[8662.38,18149.5,0],[8661.94,18209.5,0],[8669.71,18200,0],[8653.35,18227.9,0],[8643.28,18249.6,0],[8645.71,18292.4,0],[8667.26,18305.2,0],[8642.67,18429.7,0],[8661.01,18421.3,0],[8648.69,18437.2,0],[8646.97,18452.4,0],[8645.43,18471.5,0],[8644.43,18491.5,0],[8643.89,18513.2,0],[8644.41,18532.4,0],[8648.59,18551.7,0],[8655.51,18567.7,0],[8665.91,18580.8,0],[8692.05,17971.5,0],[8671.7,18156.1,0],[8677.29,18172.8,0],[8677.14,18163.6,0],[8683.86,18210.1,0],[8682.79,18318.3,0],[8687.77,18353.4,0],[8688.08,18332.8,0],[8685.16,18379.5,0],[8671.95,18409.9,0],[8680.76,18399.1,0],[8686.98,18459.3,0],[8679.95,18597.4,0],[8690.25,18615.1,0],[8695.25,18639.1,0],[8694.72,18765,0],[8715.26,17958.3,0],[8702.29,18223.2,0],[8725.02,18234.5,0],[8710.1,18476.8,0],[8702.08,18662.7,0],[8712.4,18678.7,0],[8719.48,18691.2,0],[8727.83,18709.4,0],[8702.71,18744.8,0],[8715.06,18725.7,0],[8750.57,17951.4,0],[8732.32,17952.2,0],[8739.9,18213.4,0],[8730.57,18226.7,0],[8734.47,18246.1,0],[8731.34,18495.1,0],[8751.96,18517.4,0],[8733.46,18716,0],[8743.81,18733.7,0],[8774.72,17951.2,0],[8771.4,18545.9,0],[8787.93,18574.6,0],[8816.61,17945.4,0],[8795.07,17950.4,0],[8809.25,18596.5,0],[8799.52,18591.2,0],[8842.1,17935.4,0],[8826.79,18598.6,0],[8847.69,18597.5,0],[8857.67,17924.7,0],[8860.71,17911.8,0],[8867.8,18593.6,0],[8889.22,18588.2,0],[8912.15,18581.6,0],[8936.44,18574.1,0],[8957.74,18567.3,0],[8977.95,18560.9,0],[8995.37,18556.4,0],[9029.09,18555.3,0],[9010.29,18555.2,0]]],["Negades",[[4496.49,16182.9,0],[4502.17,16083,0],[4526.48,16087.8,0],[4514.68,16205.4,0],[4525.83,16226.2,0],[4543.68,16095.1,0],[4533.98,16244.5,0],[4540.97,16263.6,0],[4547.11,16282.6,0],[4557.45,16305.6,0],[4560.85,16103.7,0],[4577.58,16111.9,0],[4573.21,16329.7,0],[4615.56,15959.8,0],[4592.59,15949.4,0],[4599.38,16120.6,0],[4595.37,16349,0],[4617.66,16365.4,0],[4635.9,15966.6,0],[4625.09,16129.1,0],[4649.51,16134,0],[4634.67,16379.5,0],[4643.53,16485.6,0],[4675.72,15966.3,0],[4654.01,15967.9,0],[4679.63,16135.5,0],[4676.98,16396,0],[4652.87,16389.5,0],[4662.84,16485.3,0],[4700.31,15964.1,0],[4708.31,16140.8,0],[4700.34,16400.5,0],[4686.55,16485.4,0],[4735.6,15966.1,0],[4721.08,15963.3,0],[4729.27,16151.1,0],[4718.75,16403.3,0],[4712.67,16485.1,0],[4735,16482.3,0],[4751.83,15972.5,0],[4749.49,16156.8,0],[4767.72,16155.6,0],[4746.16,16408.1,0],[4768.49,16466.2,0],[4754.5,16474.5,0],[4773.01,15978.3,0],[4794.08,15981.7,0],[4784.68,16151.8,0],[4795.81,16426.1,0],[4771.65,16414.2,0],[4784.57,16419.6,0],[4781.64,16455,-2.16082],[4797.68,16442.4,0],[4814.66,15980.7,0],[4803.25,16147.9,0],[4812.95,16429,0],[4823.53,16416.2,0],[4805.68,16432.8,0],[4858.83,15945.5,0],[4844.08,15961.7,0],[4831.58,15974,0],[4830.17,16145.8,0],[4856.36,16145.7,0],[4847.48,16336.7,0],[4836.23,16345.1,0],[4835.69,16360.2,0],[4831.81,16400,0],[4836.68,16380.6,0],[4883.52,15820.1,0],[4885.28,15927.9,0],[4873.77,15933.2,0],[4874.81,16146,0],[4868.83,16330.7,0],[4904.53,15828.2,0],[4914.18,15927.6,0],[4897.69,15926.4,0],[4897.15,16144.7,0],[4909.12,16309.4,0],[4890.4,16324.1,0],[4930.06,15836.1,0],[4933.12,15930,0],[4948.91,16136.1,0],[4923.25,16141.2,0],[4930.33,16287.3,0],[4948.47,16269,0],[4974.46,15861.7,0],[4963.43,15850.1,0],[4950.87,15842.6,0],[4970.61,15920.5,0],[4950.5,15929.2,0],[4972.19,16130.8,0],[4957.92,16256.1,0],[4973.46,16242.1,0],[4964.26,16247,0],[4985.01,15881.5,0],[4990.4,15900,0],[4986.49,15909.6,0],[5006.91,16130.2,0],[4991.63,16128.4,0],[5001.77,16199,0],[4994.2,16217.5,0],[4984.87,16234.9,0],[5025.82,16138.9,0],[5035.41,16181.1,0],[5015.14,16188.4,0],[5058.36,16151.7,0],[5050.37,16158.1,0],[5048.23,16170.6,0],[5097.55,16152.7,0],[5076.29,16152.4,0],[5122.22,16146.5,0],[5149.41,16134.2,0],[5175.24,16122,0],[5213.43,16109.3,0],[5205.03,16108.7,0],[5194.21,16112.6,0],[5224.45,15988.4,0],[5236.29,16012.5,0],[5239.63,16036.6,0],[5238.66,16074.1,0],[5236.32,16056.9,0],[5243.9,16101.7,0],[5230.21,16117,0],[5246.76,16122.3,0],[5243.71,16308.1,0],[5230.04,16297.7,0],[5268.91,16131.5,0]]],["Galati",[[9761.51,18839.2,0],[9778.22,18830.2,0],[9801.16,18704.2,0],[9801.74,18826.2,0],[9826.74,18613.9,0],[9834.93,18637.8,0],[9838.21,18676.9,0],[9819.71,18690.5,0],[9834.46,18809.4,0],[9821.4,18822.4,0],[9866.42,18588.1,0],[9842.18,18661.7,0],[9849.67,18796.3,0],[9885.51,18605.9,0],[9873.36,18787.1,0],[9908.22,18626.7,0],[9928.14,18643.5,0],[9906.6,18777.2,0],[9927.62,18772.2,0],[9923.03,18797.1,0],[9914.51,18810.3,0],[9924.41,18823.8,0],[9914.05,18819.9,0],[9949.9,18656.6,0],[9934.18,18774.5,0],[9932.16,18784.3,0],[9944.77,18828,0],[9972.23,18664.8,0],[9985.81,18828.9,0],[9966.9,18830.3,0],[9994.02,18669.7,0],[10011.6,18830.9,0],[10021.7,18673.6,0],[10046.4,18797.7,0],[10040.3,18818.2,0],[10032.5,18830.5,0],[10054,18677,0],[10067.5,18747.3,0],[10074.5,18726.4,0],[10055.8,18772.7,0],[10082.3,18680.4,0],[10105.4,18684,0],[10094.4,18702.6,0],[10081.4,18712,0],[10110.9,18695.3,0],[10123.4,18690.4,0],[10159.8,18690.9,0],[10185.5,18691.6,0],[10222.7,18698.7,0],[10204.6,18693,0],[10229.8,19083.9,0],[10226.7,19099.9,0],[10227.3,19110,0],[10245.2,18714.2,0],[10256.6,19009.9,0],[10241.8,19041,0],[10248.5,19022.3,0],[10235.7,19062.8,0],[10257.1,19123.9,0],[10233,19118.3,0],[10242.1,19123.3,0],[10262.5,18737.1,0],[10277.7,18774.7,0],[10271.5,18757.2,0],[10284,18794.3,0],[10289.8,18813.3,0],[10283.2,18998.1,0],[10267.2,19002.1,0],[10280.7,19131.4,0],[10289.7,19122.3,0],[10270.5,19123.5,0],[10277.2,19148.4,0],[10276.2,19167.2,0],[10287,19199.4,0],[10278.3,19182.4,0],[10261.9,19318.5,0],[10280.9,19323.7,0],[10285.2,19617.1,0],[10260.3,19628.4,0],[10296.3,18834.7,0],[10302.6,18858.5,0],[10306.4,18880,0],[10306.5,18922,0],[10307.8,18900.1,0],[10303.4,18945.9,0],[10301.4,18968.7,0],[10301.6,18989.6,0],[10307.5,19013.1,0],[10305.9,19002.9,0],[10298.2,18997,0],[10303.4,19100.3,0],[10303.3,19121.3,0],[10306.4,19221,0],[10301.3,19331.1,0],[10310.2,19609,0],[10320.4,19004.4,0],[10339.1,19005.7,0],[10320.5,19039.8,0],[10347.3,19051.6,0],[10332.1,19059.6,0],[10328.9,19069.2,0],[10320.9,19081.9,0],[10325.4,19115.8,0],[10334.7,19239.7,0],[10322.2,19340.6,0],[10339.3,19352.3,0],[10347.2,19599.1,0],[10328.1,19604.2,0],[10360.5,19005.2,0],[10367.2,19040.7,0],[10352.3,19107.1,0],[10379.9,19102,0],[10361.2,19256.3,0],[10378,19272,0],[10351.7,19366.4,0],[10366.2,19385.5,0],[10364.8,19593.7,0],[10384.9,19002.7,0],[10408.8,18999.5,0],[10384.6,19031.2,0],[10404.2,19033.4,0],[10396.6,19025,0],[10407.8,19051.1,0],[10392.2,19294.6,0],[10403.8,19320.4,0],[10409.9,19342.8,0],[10382.6,19407.7,0],[10397,19426.7,0],[10406.5,19438.1,0],[10388.1,19582.4,0],[10432.4,18996.5,0],[10411,19070.4,0],[10426.6,19103.1,0],[10413,19087.2,0],[10413.7,19097.7,0],[10413.1,19363.7,0],[10413.9,19382.7,0],[10414,19410.4,0],[10421.3,19460.9,0],[10412.3,19443.9,0],[10430.1,19482.1,0],[10436,19501.3,0],[10436.8,19518.6,0],[10431,19539.9,0],[10414.7,19563.2,0],[10457.7,18994.7,0],[10443.4,19107.3,0],[10486.4,18994.5,0],[10528.5,18995,0],[10510.1,18994.7,0],[10549.5,18995.6,0],[10571.9,18996.2,0],[10594.3,18996.7,0],[10615.4,18996.9,0],[10639.7,18996.1,0],[10675.8,18984.2,0],[10661.8,18992.5,0],[10697.5,18954.1,0],[10687,18969.5,0],[10710.4,18942.8,0],[10726.3,18937.9,0],[10759.2,18957.5,0],[10743.3,18943.1,0],[10774.1,18977.1,0],[10795.7,18998.6,0],[10824.6,18822.7,0],[10820.9,18862.3,0],[10821.1,18843.7,0],[10825.7,18898.9,0],[10822.7,18880.6,0],[10827.4,18917.4,0],[10827.5,18936.7,0],[10826.4,18963.9,0],[10824.4,18986.3,0],[10819.6,18997.6,0],[10812.8,19007.6,0],[10833.3,18769.4,0],[10830.5,18795.3,0],[10855.3,19023.1,0],[10831.7,19021.8,0],[10880.3,19022.4,0]]],["Telos",[[16031.4,17390.7,0],[16052,17382.1,0],[16071.8,17373.1,0],[16093,17366.2,0],[16139.4,17271,0],[16123.9,17281.8,0],[16118.4,17301.4,0],[16117.7,17288.1,0],[16116.6,17294.9,0],[16127.5,17317.7,0],[16135.5,17336,0],[16125.4,17354.8,0],[16134.5,17344.1,0],[16131.2,17349.4,0],[16135.2,17465.1,0],[16162.4,17254.9,0],[16150.2,17366,0],[16169.6,17424.3,0],[16152.3,17443.5,0],[16167.4,17440.2,0],[16165.2,17460.4,0],[16164.5,17478.2,0],[16183.6,17240.6,0],[16195.2,17286.9,0],[16176.1,17297.9,0],[16194.6,17362,0],[16177.3,17367.3,0],[16184.2,17375.4,0],[16190.3,17384.1,0],[16194.8,17418.8,0],[16181.7,17401.1,0],[16225.1,17214.1,0],[16201.4,17229.3,0],[16219.7,17272.9,0],[16214.6,17299.8,0],[16226.1,17319.2,0],[16218.8,17350.6,0],[16200.7,17444.7,0],[16214.4,17462.1,0],[16254,17195.4,0],[16246.9,17256.9,0],[16234.7,17333.7,0],[16237.2,17474.5,0],[16279.8,17126,0],[16284.2,17142.1,0],[16278.1,17180.7,0],[16285.7,17211.6,0],[16275.9,17228.7,0],[16269.1,17249.2,0],[16269.5,17239.3,0],[16277.5,17262.8,0],[16289.1,17281.3,0],[16276.3,17315.9,0],[16265.7,17482.4,0],[16290.3,17134.9,0],[16300,17145.5,0],[16307.3,17152.9,0],[16290.2,17161.7,0],[16306.8,17175.7,0],[16314.3,17166.1,0],[16302.9,17187,0],[16299.7,17181.9,0],[16292.2,17172.7,0],[16296.8,17191.9,0],[16312,17198.6,0],[16297.9,17295.2,0],[16347.9,17186,0],[16344.1,17169.2,0],[16332.2,17171,0],[16327.4,17218.5,0],[16343.8,17246.4,0],[16334.4,17284,0],[16357.4,17167.4,0],[16369.3,17199.4,0],[16374.6,17265.5,0],[16352.5,17266.5,0],[16397.4,17256.6,0]]],["Charkia",[[17667.2,15353.6,0],[17755.8,15519.7,0],[17763.8,15008.5,0],[17776.4,15541.8,0],[17819.3,15028.5,0],[17791.5,15015.9,0],[17817,15557.6,0],[17790.4,15555.8,0],[17801,15559.4,0],[17848.3,15043.2,0],[17843.5,15559.4,0],[17832.3,15555.4,0],[17876.7,15057,0],[17871.1,15563.8,0],[17855.4,15563.8,0],[17907.8,14929.1,0],[17898,14911.7,0],[17903.1,15068.3,0],[17892.6,15562.1,0],[17927.7,14967.3,0],[17917.3,14947.1,0],[17939.1,14990.5,0],[17933.1,15078.6,0],[17936.2,15266.6,0],[17916.7,15560.2,0],[17949.9,15013.9,0],[17958.1,15034.3,0],[17962,15054.5,0],[17962.4,15073.4,0],[17955.3,15085,0],[17958.9,15101.4,0],[17955.3,15109.9,0],[17952.5,15126.4,0],[17954.6,15156,0],[17957.5,15206.7,0],[17959.4,15186.8,0],[17955.6,15231.3,0],[17951.7,15254.3,0],[17954.4,15246.2,0],[17942.5,15558.9,0],[17967.2,15557.7,0],[17977.5,15102.1,0],[17994,15112.5,0],[17981,15208.5,0],[17995.1,15272.9,0],[17980.5,15285.5,0],[17988,15553.5,0],[18011.4,15121.8,0],[18003.2,15231.3,0],[18025,15249.8,0],[18008.7,15260.8,0],[18012.6,15255.9,0],[18021.4,15304.2,0],[18027.8,15500.8,0],[18023.5,15516.1,0],[18018.6,15530.7,0],[18013.3,15539.6,0],[18003.7,15546.5,0],[18031.5,15128.1,0],[18054.2,15128.4,0],[18054.1,15152.5,0],[18042.1,15267.8,0],[18031.2,15295,0],[18059,15463.1,0],[18039.2,15484.1,0],[18083,15121.8,0],[18066.6,15173,0],[18080.9,15203.7,0],[18088.4,15190.4,0],[18077.4,15191.8,0],[18060.2,15286.4,0],[18083.6,15270.2,0],[18077.5,15280.5,0],[18084.8,15301.5,0],[18079.5,15382.2,0],[18082,15379,0],[18078.4,15402.8,0],[18073,15444.3,0],[18078.4,15427.1,0],[18111.9,15114.2,0],[18100.5,15192.8,0],[18090.5,15219.3,0],[18100.8,15231.1,0],[18101.1,15251.8,0],[18115.9,15319.9,0],[18109.6,15339,0],[18101,15355.4,0],[18091,15366.2,0],[18107.4,15564.6,0],[18093.1,15592.5,0],[18097.5,15576.3,0],[18092,15616.4,0],[18092.9,15642.1,0],[18132.6,14880.7,0],[18146.1,14913,0],[18138.8,15110.1,0],[18120.4,15204.1,0],[18122,15236.4,0],[18142.3,15217.5,0],[18138.2,15229.8,0],[18133.2,15317.9,0],[18138.5,15365.5,0],[18147.4,15539.6,0],[18122,15552.9,0],[18137.5,15543.8,0],[18146.5,15592.1,0],[18135.6,15598.2,0],[18136.9,15618.9,0],[18133.5,15607.2,0],[18146.2,15631.6,0],[18160.4,14944.9,0],[18170,14968.2,0],[18175.8,14985.9,0],[18167,15108.2,0],[18171.1,15223.9,0],[18150.8,15226.8,0],[18173.3,15267.4,0],[18161,15279.3,0],[18153.1,15289.8,0],[18152.4,15303.2,0],[18154.3,15323.7,0],[18153.4,15315.7,0],[18177.1,15348.1,0],[18163.2,15347,0],[18155.1,15357.1,0],[18166.5,15367.9,0],[18167.4,15383.5,0],[18154.5,15537.4,0],[18160.2,15539.3,0],[18160.2,15563.5,0],[18159.7,15549.2,0],[18167.5,15584.9,0],[18158.7,15588.7,0],[18185.9,15027.5,0],[18181.3,15005.8,0],[18188.8,15049.5,0],[18189,15071.8,0],[18187.7,15089.4,0],[18206.6,15111.9,0],[18188.6,15109.1,0],[18186.3,15100,0],[18183.3,15110.1,0],[18182.1,15126.9,0],[18181.1,15150,0],[18183.5,15172.2,0],[18185.4,15191,0],[18184.3,15205.2,0],[18190.9,15223.8,0],[18183.5,15217.1,0],[18182.9,15230.9,0],[18180.7,15254.4,0],[18182.7,15241.5,0],[18208.9,15324.4,0],[18199.2,15337.6,0],[18186.1,15587,0],[18239.8,15109.7,0],[18221.7,15113.2,0],[18213.8,15223.5,0],[18233.6,15224,0],[18227.1,15290.8,0],[18216.7,15299.5,0],[18238.6,15286.2,0],[18211.5,15310.2,0],[18216.2,15597.5,0],[18239.6,15609.8,0],[18267.3,15103.4,0],[18248.8,15226.7,0],[18258.3,15266.4,0],[18262.2,15251.5,0],[18254,15281,0],[18248.1,15285.8,0],[18298.2,15094.4,0],[18274.9,15256.2,0],[18287.3,15271.5,0],[18289.4,15306.7,0],[18284.5,15322.8,0],[18328.3,15082.8,0],[18306.4,15287,0],[18329,15305.5,0],[18353,15073.5,0],[18353.3,15323.2,0],[18374.3,15066.3,0],[18377.8,15343.8,0],[18397.3,15365.6,0],[18411,15383.5,0],[18415,15399.3,0],[18411.6,15422.3,0]]],["Athira",[[13500.2,18679.1,0],[13544.9,18543.5,0],[13530.3,18673.4,0],[13556.5,18667.3,0],[13576.4,18548.7,0],[13578.7,18661.7,0],[13604.4,18551.9,0],[13601.9,18655.4,0],[13630.1,18393.6,0],[13641.9,18417.2,0],[13643.9,18558.2,0],[13623.4,18554.2,0],[13625.7,18649.1,0],[13653.8,18440.4,0],[13665.5,18463.5,0],[13676,18484.9,0],[13665.7,18563.2,0],[13651.6,18642.4,0],[13685.5,18507.3,0],[13693.9,18529.8,0],[13701,18550.9,0],[13685.1,18565,0],[13699.3,18564,0],[13709,18627.9,0],[13680.4,18635,0],[13700,19078.8,0],[13684.6,19093.7,0],[13724.2,18592.5,0],[13733.8,18622.6,0],[13738.3,18607.2,0],[13733.2,19029.1,0],[13715.4,19057.3,0],[13757.4,18620.1,0],[13752.3,19001.7,0],[13777,18622.3,0],[13798.1,18633.8,0],[13789.7,18955.2,0],[13771.1,18978.1,0],[13794.5,19114.6,0],[13786.5,19134,0],[13781.3,19153.1,0],[13819.9,18645.3,0],[13810.8,18929.9,0],[13823.7,19047.8,0],[13816.3,19065.2,0],[13806.2,19088.2,0],[13854.9,18643.5,0],[13830.2,18653.8,0],[13845.4,18664.8,0],[13846.8,18892.8,0],[13854.5,18890,0],[13832.9,18905.5,0],[13858.2,18953.5,0],[13851.9,18972.8,0],[13839,19009.5,0],[13845.9,18990.6,0],[13831.2,19029.5,0],[13877.2,18636.9,0],[13864.9,18677.5,0],[13881.4,18686.8,0],[13889.1,18854,0],[13883.4,18872.4,0],[13870.9,18893.4,0],[13862.6,18890.1,0],[13878.5,18907.3,0],[13864.6,18933.3,0],[13895.5,18564.3,0],[13916.7,18619.9,0],[13895,18629.5,0],[13904.3,18700.5,0],[13916.3,18766.4,0],[13909.8,18786.4,0],[13895.7,18832.8,0],[13905.3,18811.9,0],[13906.2,18923.2,0],[13891.1,18913.2,0],[13946.5,18532.6,0],[13920.1,18549.8,0],[13940.9,18608.7,0],[13943.4,18698,0],[13927.8,18715.6,0],[13936.3,18716.5,0],[13925.2,18743.5,0],[13943.8,18726.3,0],[13933,18725.3,0],[13941.6,18838.3,0],[13920.9,18821,0],[13949,18812.6,0],[13941.4,18955.9,0],[13922.8,18937.9,0],[13978.1,18516.2,0],[13966.2,18596.5,0],[13955.5,18676.7,0],[13970.2,18662.6,0],[13961.2,18732.5,0],[13968.4,18796.7,0],[13957.3,18855.6,0],[13969.6,18870.6,0],[13958.2,18972.7,0],[14005.3,18484.4,0],[13987.4,18501.2,0],[13986,18529.2,0],[14000.6,18551,0],[13991.1,18584.2,0],[13987.1,18652.4,0],[14004.1,18645.7,0],[13997.3,18724.2,0],[13980.4,18731.5,0],[14005.1,18802.5,0],[14004.3,18790.2,0],[13985.8,18786.5,0],[13982.1,18886.5,0],[14008.9,18921.5,0],[13994.2,18902,0],[14034.4,18561.6,0],[14012.6,18568.2,0],[14018.3,18641.3,0],[14013.1,18719.9,0],[14032.7,18778.9,0],[14017,18785.2,0],[14010.2,18787.8,0],[14027.1,18836.5,0],[14016.9,18820.2,0],[14038,18854.3,0],[14052.4,18551.3,0],[14069.4,18541,0],[14062.9,18584.1,0],[14062.1,18687.6,0],[14054.1,18704.3,0],[14048,18716.3,0],[14046.2,18739,0],[14042.6,18726.1,0],[14070,18774.6,0],[14058,18755.1,0],[14064.2,18896.6,0],[14049,18872.3,0],[14089.5,18526.7,0],[14084.4,18612.8,0],[14097,18624.4,0],[14094.3,18629,0],[14082.9,18647.1,0],[14089.7,18635.3,0],[14072.3,18667.1,0],[14087.8,18749.2,0],[14071.5,18759.2,0],[14083.9,18797.4,0],[14098.4,18820.4,0],[14079.8,18920.9,0],[14091.4,18938.7,0],[14121.8,18479.6,0],[14108.7,18506.9,0],[14109.9,18613.6,0],[14125.6,18604.5,0],[14101.8,18635.8,0],[14114.8,18653.2,0],[14127.8,18672,0],[14119.7,18722.8,0],[14103.7,18736.9,0],[14111,18839.3,0],[14121.7,18854.7,0],[14129.9,18866.6,0],[14107,18960.2,0],[14124.2,18977.3,0],[14157.1,18367.5,0],[14150.4,18387.5,0],[14144.1,18408,0],[14137.2,18431.2,0],[14130.7,18452.8,0],[14138.2,18606.2,0],[14151.6,18611.6,0],[14141,18692.8,0],[14134.3,18709.4,0],[14148.4,18704.6,0],[14144.6,18700.6,0],[14149.9,18707.2,0],[14131.2,18754.3,0],[14147.5,18776.1,0],[14155.2,18796.1,0],[14150.7,18821.7,0],[14140.4,18848.4,0],[14132.3,18863.4,0],[14132.6,18883.2,0],[14134.1,18912.5,0],[14138.6,18943.8,0],[14143.7,18982.1,0],[14135.2,18982,0],[14153.6,19003.2,0],[14159.3,19023.4,0],[14188.3,18326.1,0],[14175.2,18340.6,0],[14164.9,18352,0],[14170.5,18608.7,0],[14164.8,18732.8,0],[14175.5,18750.5,0],[14185.8,18766.7,0],[14165.4,19043.5,0],[14171.6,19061.7,0],[14183.1,19085.9,0],[14212.4,18287.8,0],[14201.3,18307.8,0],[14196.1,18597.7,0],[14201,18787.5,0],[14217.6,19104.2,0],[14205.8,19099.4,0],[14200.6,19116.9,0],[14218.2,19146.9,0],[14223.2,18266.8,0],[14223.1,18589.8,0],[14220.7,18811.2,0],[14235.9,18825.5,0],[14250,18830.2,0],[14234.2,19116.5,0],[14279.3,18585.1,0],[14250.2,18587.1,0],[14268.8,18830.8,0],[14300.8,18583.7,0],[14297.5,18834.1,0],[14333.5,18582,0],[14316.8,18582.5,0],[14312.3,18582.8,0],[14326.7,18842,0],[14359,18581.3,0],[14348.9,18852.8,0],[14369.6,18864.7,0],[14386.8,18580.3,0],[14388.3,18876.9,0],[14410.6,18579.4,0],[14404.6,18889,0],[14419,18901.4,0],[14435,18577.7,0],[14435,18917.8,0],[14463.3,18573.8,0]]],["Dorida",[[18895.3,13032.6,0],[18898.2,13090.6,0],[18872.7,13081.1,0],[18897.5,13405.1,0],[18871.8,13422.3,0],[18916.1,13037.1,0],[18925.5,13100.3,0],[18916.9,13392.6,0],[18937.5,13041.4,0],[18959.7,13045.7,0],[18948.9,13109.4,0],[18938.2,13379.3,0],[18987.7,13050.8,0],[18984.6,13134.9,0],[18968.2,13119.5,0],[18982.2,13343.2,0],[18960.2,13362.6,0],[19016.6,13055.5,0],[18997.6,13155.4,0],[19009.5,13180.1,0],[19019,13202.3,0],[19009.8,13324.5,0],[19042.3,13059,0],[19031.8,13057.7,0],[19025.9,13221,0],[19035,13246.9,0],[19043,13269.9,0],[19039.4,13308.9,0],[19063.1,13060.9,-1.58454],[19052.7,13285.1,0],[19060.6,13295.3,0],[19055,13300.3,0],[19105.7,13063.2,0],[19088,13062.8,0],[19087.7,13298.5,0],[19130.2,13061.1,0],[19113,13298.9,0],[19164.2,13073.6,0],[19153.4,13064.3,0],[19143.4,13297.9,0],[19198.3,13038.7,0],[19178.2,13047.5,0],[19194.2,13098.9,0],[19178.9,13086.2,0],[19176.1,13296.4,0],[19217.6,13029.3,0],[19228.1,13126.1,0],[19210.6,13112.2,0],[19208.2,13295.2,0],[19253.3,13005.2,0],[19234.8,13019.7,0],[19245.2,13139.3,0],[19236.8,13276.5,0],[19249.2,13261.1,0],[19259.6,13298.8,0],[19234.3,13294.5,0],[19254.4,13626.1,0],[19250.1,13649.2,0],[19247.1,13672.2,0],[19245,13695,0],[19245.6,13735.4,0],[19244.3,13715.9,0],[19272.5,12985.5,0],[19266.2,13154.8,0],[19287.9,13225.1,0],[19260.2,13251.1,0],[19280.4,13237.7,0],[19271.2,13245.2,0],[19287.8,13308.8,0],[19280.5,13498.7,0],[19274.6,13515.4,0],[19273.7,13535.1,0],[19272.3,13558.1,0],[19267.2,13578.8,0],[19260.5,13602.2,0],[19308.6,12942.5,0],[19291.3,12963.1,0],[19290.2,13171.5,0],[19301.3,13199.1,0],[19307,13188,0],[19295,13211.6,0],[19318.9,13297,0],[19311.1,13311.9,0],[19311.8,13431.6,0],[19303.7,13448.4,0],[19292.3,13472.4,0],[19340.6,12906.7,0],[19324.1,12925,0],[19339,13201.7,0],[19343.3,13259,0],[19330.2,13277.4,0],[19344.7,13329.4,0],[19347.9,13355.1,0],[19322.7,13408.7,0],[19335.9,13380.8,0],[19375,12869.6,0],[19357.5,12888.2,0],[19361.7,13218,0],[19358.3,13241.8,0],[19369.3,13230,0],[19377.9,13305,0],[19369.6,13318.8,0],[19367.6,13336,0],[19363.3,13328.5,0],[19355.9,13337.9,0],[19393.4,12850.8,0],[19391.1,13239.6,0],[19407.2,13240.3,0],[19401.8,13254.8,0],[19387.1,13285.4,0],[19395.4,13266.6,0],[19409.9,13349.2,0],[19385.1,13341,0],[19411.9,12832,0],[19429,12813.5,0],[19425.6,13163.5,0],[19433.6,13149.5,0],[19435.8,13148.1,0],[19429.4,13154.9,0],[19420.3,13178.2,0],[19418.1,13194.4,0],[19413.9,13226.8,0],[19418.3,13210.2,0],[19414.7,13256.5,0],[19434.5,13273.3,0],[19429.9,13358.1,0],[19434.9,13368.9,0],[19435,13390.9,0],[19434.5,13419.9,0],[19435.6,13452.7,0],[19432.9,13463.3,0],[19435.4,13440.1,0],[19429.4,13481.1,0],[19428,13512.6,0],[19430.7,13544.7,0],[19436,13571.3,0],[19439.2,13590.3,0],[19453.2,12781.6,0],[19449.3,12800.1,0],[19457.6,12815,0],[19467.5,12834.6,0],[19465.9,12891.1,0],[19469.2,12924,0],[19462.9,12910,0],[19468.4,13069.8,0],[19469.7,13053.7,0],[19468.7,13090.7,0],[19467.5,13106,0],[19458.7,13123.6,0],[19445.6,13140.9,0],[19450.1,13287.9,0],[19468.6,13304.8,0],[19440.4,13610.3,0],[19441.2,13632.5,0],[19442.6,13672.5,0],[19441.9,13651.8,0],[19443.4,13693.6,0],[19445,13722.5,0],[19472.9,12852.6,0],[19472.5,12870.2,0],[19493.8,12958.6,0],[19480.3,12940.2,0],[19499.4,13018.3,0],[19480.4,13038.1,0],[19481.9,13316.9,0],[19494.7,13326.6,0],[19505.1,12975,0],[19511.8,12990.3,0],[19511.5,13003.4,0],[19513.2,13340.4,0],[19533.4,13355.4,0],[19551.2,13368.4,0],[19567,13379.3,0],[19582.3,13389.6,0],[19598.3,13402.9,0],[19615.4,13419.5,0],[19637.3,13439.1,0],[19660.8,13461.8,0],[19679.3,13483.2,0],[19691.2,13496.2,0],[19710.2,13504.5,0],[19738.3,13514.4,0]]],["Ifestiona",[[12430.4,20002.5,0],[12449.6,19999.6,0],[12472.8,19994.1,0],[12498.8,19986.4,0],[12534.6,19982.9,0],[12518.4,19981.8,0],[12559.3,19982.6,0],[12548.9,19984.7,0],[12577.5,19970,0],[12598.1,19951.2,0],[12629.1,19883.4,0],[12616.7,19902.8,0],[12612.7,19919.5,0],[12608.7,19935.6,0],[12645.6,19858.1,0],[12660,19829.9,0],[12672.9,19806.9,0],[12718.9,19743.5,0],[12708.7,19764.5,0],[12691.1,19785.7,0],[12739.5,19695.3,0],[12728.6,19719.1,0],[12763.9,19666.1,0],[12750.9,19678.1,0],[12768.2,19707.1,0],[12807.6,19642.7,0],[12784.8,19652.7,0],[12791.3,19712.9,0],[12826.1,19637.2,0],[12810.9,19721.2,0],[12823.8,19731.5,0],[12837.4,19753.1,0],[12840.2,19189.1,0],[12841.6,19209.7,0],[12846.4,19253.3,0],[12843.1,19232.4,0],[12851.5,19272.3,0],[12862.3,19317.6,0],[12857,19293.4,0],[12866.6,19338.6,0],[12869.7,19356.7,0],[12860.4,19609.6,0],[12842.5,19628.5,0],[12853.7,19778.6,0],[12875,19381.3,0],[12883.7,19402.2,0],[12893.3,19410.7,0],[12898.6,19541.4,0],[12885,19563.3,0],[12875.3,19585.6,0],[12870.1,19798.9,0],[12888.2,19820.3,0],[12911.3,19416.4,0],[12915.6,19522.1,0],[12902.6,19838.8,0],[12910.4,19853.6,0],[12911.2,19877.8,0],[12909.2,19904.2,0],[12911,19927.4,0],[12916.1,19956.5,0],[12918.8,19987.3,0],[12923.2,20008.7,0],[12940.9,19422.7,0],[12959.7,19487.6,0],[12944.4,19498.8,0],[12930.7,19508.1,0],[12938.3,20022,0],[12969.7,19430.4,0],[12976.8,19473.6,0],[12962.1,20038.3,0],[12985.9,20055.8,0],[12994.2,19439.4,0],[12995.5,19460.3,0],[13011.5,19446.3,0],[13007.9,20072.9,0],[13048.5,19427.8,0],[13029.7,19458.7,0],[13035,20088.2,0],[13073.8,19417.7,0],[13060.4,19473.5,0],[13097.7,19409.8,0],[13087.7,19486.3,0],[13124,19401.3,0],[13110.3,19496.6,0],[13136.1,19510.6,0],[13169.2,19382.1,0],[13147.3,19393.1,0],[13162,19522.9,0],[13183.1,19529.3,0],[13220.4,19552,0],[13202.6,19538.4,0],[13239,19568,0],[13261.4,19583.4,0]]],["Chalkeia",[[19828,11930.8,0],[19821.3,11965.9,-2.23034],[19825.2,11942,0],[19859.4,11812.5,-1.72182],[19853.6,11833.1,0],[19842.9,11873.5,0],[19849,11850.5,0],[19836.6,11897.7,0],[19831.3,11917.9,0],[19880.9,11285.4,0],[19886.4,11713.9,0],[19880,11739.4,0],[19872.6,11766.7,0],[19866.4,11788.3,0],[19897.4,11306.1,0],[19918.7,11330.3,0],[19913.5,11613.4,0],[19905.3,11636.9,0],[19898.3,11661.8,0],[19892.3,11688.2,0],[19916,11686.2,0],[19900.9,11694.8,0],[19938,11354.5,0],[19946.4,11534.3,0],[19933.8,11562.5,0],[19923.2,11588.2,0],[19939.3,11676.7,0],[19954.3,11377.8,0],[19970.1,11396.9,0],[19977.2,11471.5,0],[19961.5,11502.9,0],[19972.9,11669.5,0],[19959.1,11671,0],[20003.2,11423.3,0],[19984.8,11411,0],[19996.6,11420.9,0],[20005.7,11427.6,0],[19991.6,11444.2,0],[19991.4,11668.9,0],[20039.3,11363.5,0],[20024.7,11387.7,0],[20013,11406.9,0],[20022.1,11432.4,0],[20010.5,11635.1,0],[20019.5,11655.3,0],[20024.7,11669.8,0],[20010.6,11670.1,0],[20064,11324.8,0],[20052.5,11342.4,0],[20067.4,11448.3,0],[20043.9,11439.4,0],[20054.9,11679.3,0],[20099.6,11271.5,0],[20075.9,11306.6,0],[20087.4,11289.6,0],[20092.3,11459.4,0],[20086.3,11688.6,0],[20126.8,11234.6,0],[20113,11252.6,0],[20115.5,11470.6,0],[20117.8,11699.6,0],[20159.6,11198.2,0],[20141.3,11217.4,0],[20136.5,11481.4,0],[20155.8,11491.9,0],[20147.4,11712.3,0],[20158.9,11709.6,0],[20153.4,11724.5,0],[20148.1,11741.4,0],[20138.7,11761.6,0],[20131.4,11771.8,0],[20185.7,11177.4,0],[20187.7,11478.2,0],[20176,11491.7,0],[20166.9,11510.1,0],[20163.3,11533.8,0],[20162.5,11560.1,0],[20177.4,11586.5,0],[20162.7,11583.4,0],[20163.3,11601.8,0],[20164.7,11620.9,0],[20166.5,11634.6,0],[20170.5,11648.2,0],[20173,11665.8,0],[20169.1,11683.1,0],[20163.2,11699.1,0],[20172.2,11726.5,0],[20214.4,11449.7,0],[20200.1,11464.9,0],[20196,11600.7,0],[20218.8,11625.5,0],[20208.7,11612.2,0],[20191.6,11741.9,0],[20206.9,11757.7,0],[20218.7,11772.8,0],[20242.6,11425.8,0],[20228.4,11434.9,0],[20243.8,11664.8,0],[20231,11644.1,0],[20233.8,11789.3,0],[20278.5,11382.8,0],[20262.1,11401.4,0],[20255.6,11427.1,0],[20279,11430.5,0],[20256.4,11685.7,0],[20268.5,11705.7,0],[20275.1,11716.3,0],[20253.7,11806.4,0],[20269.6,11817.2,0],[20308,11339.4,0],[20293.7,11362.3,0],[20300.9,11438.6,0],[20306.7,11548,0],[20296.7,11567.9,0],[20287.4,11583.7,0],[20286,11602.4,0],[20285.5,11592.6,0],[20290.2,11620.3,0],[20297.5,11668.5,0],[20295,11644.6,0],[20287.3,11701.7,0],[20290,11741.5,0],[20304.2,11766.2,0],[20306.3,11827.2,0],[20285.8,11822.1,0],[20336.3,11273.8,0],[20330.3,11292.9,0],[20321,11314.8,0],[20311,11452,0],[20315.6,11473.5,0],[20315.1,11500.8,0],[20311.4,11527.1,0],[20339,11668.7,0],[20311.9,11683.4,0],[20315.7,11759.2,0],[20317.8,11790.3,0],[20326.8,11806.5,0],[20333.8,11819.4,0],[20324.8,11832.8,0],[20338.8,11829,0],[20337.2,11835.4,0],[20351,11208.9,0],[20346,11234.6,0],[20341.4,11254.6,0],[20362.7,11655.4,0],[20341.8,11770.6,0],[20369.5,11786.3,0],[20354.8,11824.9,0],[20346.7,11841.5,0],[20349.8,11847.7,0],[20360.3,11859.3,0],[20388.2,11644.6,0],[20373.6,11808.5,0],[20388.3,11799,0],[20379,11882.7,0],[20395.2,11902.4,0],[20416.4,11638.9,0],[20413.6,11788,0],[20401.1,11813.1,0],[20421.6,11831.7,0],[20427.1,11923.9,0],[20410.2,11913.8,0],[20440.2,11638.5,0],[20449.6,11759.8,0],[20430.7,11779.3,0],[20444.6,11848.3,0],[20445.6,11936.2,0],[20464,11643.8,0],[20478.8,11718.4,0],[20466.8,11736.4,0],[20467.5,11864.4,0],[20488.4,11878.5,0],[20464.6,11953.2,0],[20483,11973.5,0],[20494.7,11652.9,0],[20508.6,11673.3,0],[20492.7,11698.1,0],[20507.7,11887.6,0],[20499.4,11991,0],[20513.3,12003.5,0],[20547,11608.1,0],[20531.8,11629.4,0],[20521.4,11649.6,0],[20527.5,11890.2,0],[20546.7,11887.9,0],[20533.1,12014.3,0],[20565.5,11591,0],[20565,11882,0],[20607.6,11567.9,0],[20583.9,11579.7,0],[20600.4,11864.2,0],[20583,11874,0],[20633.7,11555.7,0],[20636.6,11843,0],[20618.8,11853.1,0],[20666.2,11510.9,0],[20653.7,11544.4,0],[20663.4,11533.7,0],[20656.3,11834,0]]],["AgiosKonstantinos",[[3896.81,17383.3,0],[3893.57,17405,0],[3889.14,17428.8,0],[3883.14,17450.9,0],[3926.2,17276.2,0],[3922.05,17298.9,0],[3916.07,17323,0],[3908.69,17346.6,0],[3901.67,17366.2,0],[3950.9,17176.9,0],[3943.81,17190.1,0],[3938.61,17204.8,0],[3930.48,17249.6,0],[3934.63,17223.5,0],[3981.36,17148.7,0],[3964.34,17162.8,0],[4014.63,17122.8,0],[3996.5,17137.4,0],[4035.14,17104.1,0]]],["Abdera",[[9328.09,20269.5,0],[9335.94,19858.8,0],[9342,19875.9,0],[9351.38,19892.2,0],[9340.6,20292.7,0],[9330.48,20280,0],[9346.5,20629,0],[9336.71,20664.3,0],[9339.68,20643.6,0],[9338.1,20686,0],[9344.82,20700.3,0],[9367.59,19896.3,0],[9385.66,19898.9,0],[9363.9,20301.8,0],[9387.91,20304.8,0],[9376.73,20487.5,0],[9389.05,20480.5,0],[9368.11,20510.7,0],[9369.96,20497.2,0],[9369.6,20530.9,0],[9374.37,20549.7,0],[9381.83,20564.8,0],[9387.43,20577.6,0],[9378.03,20598.3,0],[9387.43,20587,0],[9360.43,20613.3,0],[9360.26,20717.8,0],[9404.77,19916.2,0],[9395.91,19905.3,0],[9411.54,19933.5,0],[9414.4,19949.5,0],[9414.06,19964,0],[9413.94,19977.2,0],[9416.56,19985.5,0],[9418.11,20238.2,0],[9413.26,20254.3,0],[9411.25,20266.6,0],[9410.17,20282.4,0],[9403.38,20303.3,0],[9416.99,20302.9,0],[9409.28,20478.4,0],[9442.25,20008.6,0],[9423.14,19994.3,0],[9445.65,20156.9,0],[9435.99,20184.8,0],[9426.99,20211.8,0],[9448.63,20272,0],[9443.35,20284.8,0],[9438.39,20300.1,0],[9441.56,20306.2,0],[9433.71,20305.1,0],[9426.18,20304,0],[9436.31,20317.1,0],[9438.34,20331.4,0],[9446.12,20341.9,0],[9438.46,20478.5,0],[9466.22,20033.4,0],[9459.32,20021.3,0],[9471.66,20046.6,0],[9472.03,20055.6,0],[9466.37,20075.6,0],[9459.51,20100.3,0],[9456.25,20119.5,0],[9453.23,20135.6,0],[9454.29,20132.9,0],[9463.2,20309.9,0],[9450.23,20307.7,0],[9457.87,20351.1,0],[9468.61,20356.8,0],[9469.12,20480.2,0],[9508.44,20247.4,0],[9506.12,20234.5,0],[9483.79,20313.3,0],[9500.25,20316,0],[9484.05,20359,0],[9501.64,20358.8,0],[9489.73,20482.7,0],[9509.9,20492.4,0],[9535.38,20170,0],[9522.25,20197.4,0],[9510.75,20220.4,0],[9518.58,20263.3,0],[9527.68,20276.6,0],[9521.86,20305.7,0],[9528.28,20287.2,0],[9510.18,20317.9,0],[9514.97,20345.9,0],[9531.72,20369.3,0],[9513.65,20357.5,0],[9537.1,20374.5,0],[9537.95,20499.8,0],[9528.93,20500.9,0],[9559.81,20121,0],[9547.69,20143.3,0],[9540.6,20381.6,0],[9543.78,20403.2,0],[9545.41,20430.4,0],[9560.7,20464.7,0],[9546.5,20477,0],[9544.27,20495.1,0],[9584.01,20086.5,0],[9595.35,20070.5,0],[9571.49,20103.8,0],[9583.99,20476.8,0],[9578.4,20469.5,0],[9585.8,20510.9,0],[9586.06,20490.8,0],[9586.49,20533,0],[9593.7,20579.1,0],[9589.02,20554.8,0],[9622.98,20023.9,0],[9609.13,20047.5,0],[9601.32,20604.8,0],[9610.42,20629.5,0],[9617.12,20653.7,0],[9651.5,19984.9,0],[9634.25,20007.5,0],[9673.43,19958.6,0]]],["Panagia",[[20204.1,8830.31,0],[20218,8829.82,0],[20242.1,8759.46,0],[20235.9,8829.22,0],[20236.2,8931.56,0],[20263.4,8763.64,0],[20259.5,8828.73,0],[20275.5,8895.24,0],[20257.1,8912.34,0],[20300.9,8775.32,0],[20283,8768.65,0],[20280.3,8828.66,0],[20298.3,8829.68,0],[20291.3,8880.23,0],[20316.5,8781.98,0],[20314.9,8780.96,0],[20329.4,8790.56,0],[20332,8842.29,0],[20316.5,8832.2,0],[20331.8,8834.73,0],[20312.9,8859.87,0],[20361,8643.33,0],[20363.5,8814.24,0],[20346.1,8801.89,0],[20359.2,8827.63,0],[20382.5,8652.55,0],[20390.9,8830.02,0],[20377.1,8824.24,0],[20401.7,8663.71,0],[20418.1,8676.26,0],[20411.9,8836.69,0],[20429.7,8842.15,0],[20433.2,8690.29,0],[20456.9,8709.72,0],[20444.9,8701.71,0],[20447.3,8703.4,0],[20445.4,8844.7,0],[20468.4,8719.29,0],[20481.6,8732.19,0],[20486.7,8846.16,0],[20463.9,8845.27,0],[20480.4,8845.57,0],[20479.7,8863.03,0],[20471.7,8880.1,0],[20487.5,9078.84,0],[20478.8,9119.85,0],[20483.6,9096.94,0],[20473.3,9143.92,0],[20467.3,9168,0],[20461.2,9190.44,0],[20519.8,8720.37,0],[20496.7,8747.31,0],[20517.5,8739.75,0],[20508.3,8759.01,0],[20515.8,8753.57,0],[20507.6,8778.28,0],[20501.2,8804.09,0],[20493.1,8828.96,0],[20501.7,8855.53,0],[20501.9,8965.77,0],[20514.2,8940.38,0],[20494.6,8985.89,0],[20495.2,8996.7,0],[20500.1,9005.14,0],[20515.1,9016.69,0],[20507.3,9011.87,0],[20493.4,9058.55,0],[20505.6,9032.35,0],[20498.9,9042.13,0],[20515.3,9201.41,0],[20541.8,8619.58,0],[20535.6,8640.28,0],[20529.4,8659.68,0],[20523.2,8693.76,0],[20526,8672.88,0],[20535,8746.02,0],[20523.4,8870.32,0],[20540.3,8882.93,0],[20542.6,8895.82,0],[20532,8910.82,0],[20523.5,8923.2,0],[20533.5,8995.05,0],[20546.6,8972.85,0],[20548.1,9175.96,0],[20532,9188.79,0],[20575.9,8729.19,0],[20551.7,8735.86,0],[20564.8,8730.38,0],[20575.8,8842.47,0],[20555.6,8875.49,0],[20567.8,8855.13,0],[20559.1,8895.63,0],[20572.4,8903.46,0],[20562.6,8937.29,0],[20570.3,8919.38,0],[20554.8,8955.58,0],[20579.2,9149.56,0],[20563.8,9162.79,0],[20595.7,8729.47,0],[20597,8840.63,0],[20582.4,8836.94,0],[20589.4,8836.55,0],[20606.5,8850.63,0],[20594.8,8888.12,0],[20609.8,9122.95,0],[20593.7,9136.95,0],[20637.2,8731.36,0],[20618.2,8730.54,0],[20619.5,8873.06,0],[20616.5,8864.32,0],[20630.4,8883.86,0],[20627.9,9106.87,0],[20659.7,8731.91,0],[20647.7,8861.36,0],[20654.7,8908.45,0],[20643.8,8899.58,0],[20649.7,9085.58,0],[20669.3,9065.23,0],[20683.9,8732.14,0],[20674.7,8851.36,0],[20691,8936.75,0],[20671.1,8921.37,0],[20695.5,9035.84,0],[20682.5,9050.76,0],[20718.5,8732.81,0],[20703,8732.24,0],[20703.6,8840.95,0],[20729.2,8964.37,0],[20709.4,8950.66,0],[20708.5,9020.17,0],[20721.2,9004.41,0],[20732.5,8830.27,0],[20756.5,8820.5,0],[20747.8,8968.11,0],[20752.5,8981.52,0],[20732.6,8989.73,0],[20776.1,8911.17,0],[20764,8939.88,0]]],["Nifi",[[19188.9,15178.9,0],[19213.1,15192,0],[19230.2,15201.3,0],[19254.5,15214.5,0],[19281.2,15229.3,0],[19299.7,15239.9,0],[19318.7,15254.9,0],[19338.8,15274.3,0],[19356.6,15293.4,0],[19374.2,15298.5,0],[19403.5,15062.9,0],[19405.7,15083.5,0],[19403,15074.6,0],[19408.1,15142.4,0],[19405.8,15167.7,0],[19407,15183.3,0],[19409.3,15259.7,0],[19385.2,15287.7,0],[19398.5,15273.9,0],[19385.2,15323.6,0],[19398.7,15337.5,0],[19410.5,15094,0],[19412.1,15118.5,0],[19413.3,15106,0],[19412.3,15206.3,0],[19417.1,15230.6,0],[19415.8,15245.6,0],[19411.8,15350.5,0],[19426.4,15364.5,0],[19443,15379.2,0],[19460,15391.6,0],[19478.7,15402.7,0],[19528.1,15368.4,0],[19517.6,15377.9,0],[19510.2,15391.6,0],[19504,15407,0],[19515.8,15424.9,0],[19544.4,15356.6,0],[19535.6,15437,0],[19554.1,15448.7,0],[19588.5,15305.9,0],[19581.9,15325.6,0],[19565,15342.7,0],[19572.4,15460.7,0],[19610.4,15256.6,0],[19599.2,15279.3,0],[19604.5,15323.1,0],[19590.8,15473.8,0],[19610.1,15489,0],[19592.6,15831.1,0],[19617.5,15815.6,0],[19645.1,15186.7,0],[19635.2,15207.3,0],[19623.3,15231.4,0],[19627.6,15318.6,0],[19649.7,15317.6,0],[19632.1,15508.1,0],[19632,15802.8,0],[19642.2,15790.4,0],[19671.6,15138.3,0],[19657.3,15163.6,0],[19670.1,15320.2,0],[19655.8,15530.2,0],[19674.7,15548.5,0],[19677.2,15743.1,0],[19665.1,15762.4,0],[19652.3,15778.5,0],[19694.4,15322.9,0],[19688.6,15562.3,0],[19702.9,15576.7,0],[19705.8,15688.2,0],[19695.4,15707.2,0],[19686.1,15726,0],[19719.8,15322.3,0],[19717.5,15591.3,0],[19731.6,15626.8,0],[19732.2,15613.6,0],[19729.3,15642.4,0],[19725.4,15653.8,0],[19714.5,15673.6,0],[19720.5,15662.8,0],[19748.5,15318.9,0],[19769.1,15593.6,0],[19757.4,15618.9,0],[19762.4,15611.6,0],[19759.7,15633.2,0],[19777.2,15313.3,0],[19799.3,15308.1,0],[19778.5,15575.1,0],[19790.3,15572.1,0],[19773.7,15646.7,0],[19788.3,15660.6,0],[19814.6,15306.4,0],[19811.7,15579.8,0],[19803,15674.5,0],[19833.9,15308.8,0],[19836.7,15593,0]]],["Rodopoli",[[18313.2,16401.4,0],[18354,16423.2,0],[18332.7,16412.1,0],[18376,16434.3,0],[18418.5,16459.7,0],[18397.3,16445.3,0],[18435.8,16473.1,0],[18449.7,16852.1,0],[18450.2,16481.8,0],[18466.7,16487.9,0],[18471.7,16853.3,0],[18484.1,16493.5,0],[18503.6,16503.2,0],[18490.2,16854.7,0],[18505.9,16855.7,0],[18527.4,16516.2,0],[18535,16847.1,0],[18519.3,16853.6,0],[18525.6,17025.6,0],[18551.3,16527.6,0],[18552,16839,0],[18567.5,16831.4,0],[18559.1,16976,0],[18543.2,16999.8,0],[18574.7,16536.4,0],[18599.3,16545.1,0],[18597,16824.9,0],[18582.6,16827,0],[18596.3,16924.1,0],[18576.4,16951.1,0],[18620.9,16553.1,0],[18621.1,16813.2,0],[18609.4,16820.7,0],[18614,16901.5,0],[18615.5,17062.6,0],[18641.8,16563.3,0],[18651.6,16606.3,0],[18647.8,16613,0],[18657.5,16632.6,0],[18649,16620.7,0],[18655.6,16793.4,0],[18637.9,16801.3,0],[18653.3,16847.4,0],[18630.4,16882.7,0],[18642.9,16867.4,0],[18647.6,17017.5,0],[18630.3,17040.7,0],[18662.3,16576.6,0],[18662.8,16598.4,0],[18687.2,16593.4,0],[18674.5,16590.4,0],[18672.8,16651.3,0],[18685.8,16668.4,0],[18685.6,16787.2,0],[18672,16794.4,0],[18665.7,16793,0],[18664,16824.2,0],[18671.9,16807.3,0],[18681,16858.4,0],[18670.9,16846.4,0],[18687.3,16966.1,0],[18667.5,16992.3,0],[18700.1,16575.9,0],[18696.2,16607.4,0],[18711.1,16619.1,0],[18712,16619.5,0],[18694.4,16709.9,0],[18692.6,16684.7,0],[18696.5,16730.1,0],[18701.8,16737.8,0],[18708.1,16745,0],[18714.9,16752.9,0],[18695.4,16780.1,0],[18705.5,16773,0],[18696,16876.7,0],[18710.2,16893,0],[18720,16902.9,0],[18706.2,16938.3,0],[18746.6,16497.2,0],[18736.4,16517.7,0],[18720.4,16547.1,0],[18744.7,16617.1,0],[18736.4,16630,0],[18748.3,16697.4,0],[18736.7,16720.1,0],[18725.1,16742,0],[18741.2,16878.2,0],[18749.8,16861.4,0],[18731.1,16896.8,0],[18776.2,16491.5,0],[18758.2,16489.6,0],[18755.8,16599.9,0],[18751.2,16643.7,0],[18757.7,16677.4,0],[18765.5,16661.7,0],[18767.5,16654,0],[18777.2,16793.8,0],[18767.7,16818.2,0],[18758.5,16841.7,0],[18789.6,16109.9,0],[18794.1,16137.4,0],[18799.4,16169.2,0],[18803.1,16198,0],[18804.8,16220.5,0],[18805.4,16239.3,0],[18805.8,16260.5,0],[18806.1,16282.4,0],[18806.3,16304.7,0],[18806.2,16328.2,0],[18806.1,16351.8,0],[18806.1,16374.8,0],[18806.4,16404.4,0],[18807.3,16439.5,0],[18808,16468.5,0],[18808.8,16491.2,0],[18793.8,16497.2,0],[18805.3,16501.5,0],[18807.8,16617.6,0],[18781.7,16642,0],[18792.2,16632.5,0],[18804,16732.5,0],[18789.3,16765,0],[18810.9,16511.7,0],[18832,16505.9,0],[18814.4,16504.9,0],[18821.3,16505.5,0],[18813.9,16534.2,0],[18817.1,16561.2,0],[18820.7,16589.3,0],[18826,16599.3,0],[18824.6,16616.9,0],[18829.3,16636.4,0],[18833.4,16644.3,0],[18838.1,16650.7,0],[18825.5,16685.2,0],[18816.2,16705.9,0],[18853.5,16506.6,0],[18859.7,16565,0],[18842.3,16582.7,0],[18854.8,16640.3,0],[18897.8,16525.9,0],[18878.2,16507.1,0],[18899,16507.2,0],[18876.8,16547.4,0],[18874.7,16638.3,0],[18898.2,16640.2,0],[18914,16509.2,0],[18923.4,16667.8,0],[18923.1,16650.4,0],[18921.5,16659.3,0],[18949.8,16492,0],[18930.2,16502.1,0],[18956.2,16639.6,0],[18934.2,16642,0],[18932.3,16678.5,0],[18947.9,16692.2,0],[18985.9,16464.2,0],[18964.1,16479.4,0],[18986,16635.2,0],[18987.8,16732.5,0],[18966.9,16710.1,0],[19014.6,16435.7,0],[18995.1,16452.3,0],[18997.4,16473.4,0],[19009.6,16481.3,0],[19012.3,16630.4,0],[19005.4,16752.8,0],[19019.8,16770.1,0],[19033.5,16420.5,0],[19033.8,16491.7,0],[19020.6,16485.4,0],[19048.7,16501.5,0],[19044.9,16619.6,0],[19030.3,16625.5,0],[19034.4,16788.4,0],[19048,16806.4,0],[19050.9,16407,0],[19068,16396.1,0],[19066.2,16513.8,0],[19061.7,16612.4,0],[19063.3,16829.2,0],[19079.5,16856.5,0],[19098.9,16371.4,0],[19083.8,16385.5,0],[19090.1,16529.3,0],[19085.3,16602.7,0],[19107.5,16885.4,0],[19092.2,16881.3,0],[19102.6,16904.9,0],[19133.7,16334.7,0],[19115.9,16353.5,0],[19114.8,16543.6,0],[19133.1,16553.8,0],[19132.4,16585.4,0],[19112.8,16592.2,0],[19128.8,16901.4,0],[19111.9,16928.2,0],[19150.6,16317.2,0],[19146,16562.4,0],[19152.6,16570.1,0],[19173.1,16575.5,0],[19191,16573.5,0],[19209.9,16571.5,0],[19231.6,16569.4,0]]],["Kalithea",[[17571.9,17985.5,0],[17574.6,18191.1,0],[17554,18208.6,0],[17592.3,17995.7,0],[17595.4,18174,0],[17617.8,18006.2,0],[17632,18145,0],[17614.7,18158.4,0],[17643.6,18014.1,0],[17662.4,18018.6,0],[17650.9,18132.3,0],[17681.6,18026.8,0],[17698.3,18037.4,0],[17675.2,18119.9,0],[17711.1,18049.8,0],[17727.1,18072.5,0],[17723.2,18103.8,0],[17700.2,18110.6,0],[17740.9,18092.4,0],[17739.5,18099.2,0],[17777.6,18107.7,0],[17761.8,18105,0],[17803.3,18116.5,0],[17792.2,18110.8,0],[17813.4,18125.2,0],[17838.2,18119.4,0],[17826.6,18133.5,0],[17846.1,18165.7,0],[17876,18032.5,0],[17872.8,18059.5,0],[17866,18080,0],[17853.7,18099.6,0],[17858.6,18184,0],[17896.5,17988.8,0],[17882.8,18006.4,0],[17934.8,17938.9,0],[17922.2,17958.9,0],[17910.1,17974.9,0],[17960.7,17896.3,0],[17945.9,17919.1,0],[17975.7,17875.1,0]]],["Selakano",[[20578.4,6455.64,0],[20593.1,6486.3,0],[20605.3,6510.88,0],[20585.6,7008.82,0],[20601,6995.2,0],[20615.2,6527.63,0],[20639,6561.7,0],[20626.2,6544.19,0],[20633.8,6965.86,0],[20615.8,6982.15,0],[20653.1,6580.32,0],[20666.8,6597.84,0],[20668.8,6928.86,0],[20654.5,6945.99,0],[20681.4,6616.41,0],[20696.2,6634.57,0],[20697.6,6804.58,0],[20696.7,6814.15,0],[20698.8,6862.13,0],[20691.4,6880.2,0],[20680.4,6905.84,0],[20707.2,6646.08,0],[20708.7,6647.39,0],[20719.6,6654.44,0],[20714.3,6651.69,0],[20726.8,6697.36,0],[20722.2,6715.41,0],[20724.4,6739.74,0],[20721.1,6727.4,0],[20718.4,6777.64,0],[20726.6,6764.35,0],[20728,6752.96,0],[20705.8,6792.01,0],[20723.9,6824.87,0],[20702.9,6823.23,0],[20712.2,6831.26,0],[20705.5,6846.02,0],[20704,6849.35,0],[20753.9,6657.69,0],[20732.5,6656.16,0],[20734.4,6674.67,0],[20756,6799.84,0],[20740.1,6811.95,0],[20756.4,7060.46,0],[20750.4,7080.75,0],[20781,6674.13,0],[20789.9,6665.25,0],[20771.3,6663.21,0],[20783.9,6675.71,0],[20785.9,6687.34,0],[20784.6,6680,0],[20786.9,6709.04,0],[20788.1,6729.06,0],[20789.4,6778.96,0],[20774.1,6787.14,0],[20786.5,6840.03,0],[20781.5,6860.67,0],[20782.9,6855.21,0],[20778.5,6887.08,0],[20779,6871.12,0],[20780.1,6908.82,0],[20780.8,6934.18,0],[20777.5,6987.33,0],[20779.5,6961.03,0],[20772.6,7012.33,0],[20764.2,7037.41,0],[20809.7,6610.61,0],[20801.1,6620.04,0],[20798.1,6626.6,0],[20796.2,6637.97,0],[20794.2,6652.66,0],[20811,6685.81,0],[20796.7,6680.19,0],[20791.5,6742.48,0],[20795.9,6759.86,0],[20799.5,6776.6,0],[20818.9,6809.21,0],[20798.5,6805.2,0],[20802.2,6795.72,0],[20792.8,6820.07,0],[20824.2,6597.91,0],[20838.8,6584.09,0],[20835.8,6714.42,0],[20833.6,6705.03,0],[20840.5,6734.23,0],[20844.2,6752.42,0],[20845.9,6829.08,0],[20825.2,6814.07,0],[20851.8,6569.79,0],[20852.2,6698.27,0],[20872.9,6691.84,0],[20852.1,6766.32,0],[20862.6,6783.69,0],[20872.2,6798.7,0],[20860.8,6839.83,0],[20877.5,6851.97,0],[20904.6,6680.65,0],[20886.8,6687.21,0],[20884,6810.94,0],[20896.7,6821.27,0],[20907.1,6829.44,0],[20895,6865.12,0],[20932,6671.96,0],[20915.7,6837.78,0],[20912.1,6862.05,0],[20918.6,6852.9,0],[20920.2,6845.93,0],[20916.1,6881.93,0],[20962.4,6658.52,0],[20942,6903.37,0],[20968.2,6925.67,0],[20991.1,6644.57,0],[20990.8,6944.91,0],[21016.7,6634.36,0],[21011.6,6962.2,0],[21055.9,6613.9,0],[21032.1,6627.97,0],[21037.6,6625.14,0],[21044.1,6622.47,0],[21076.5,6594.14,0]]],["Frini",[[14397.7,21024.4,0],[14419.6,21021.8,0],[14445.3,21027,0],[14468.7,21036.8,0],[14480.4,21052.9,0],[14484.4,21042.3,0],[14474,21074.7,0],[14495.1,20498.7,0],[14498.9,20522.5,0],[14499.6,20547.3,0],[14501.6,20567.1,0],[14506.8,20588.9,0],[14511.4,20620.9,0],[14514.9,20654.8,0],[14517.8,20996.3,0],[14506.3,21016,0],[14522.5,20682.7,0],[14534.6,20706,0],[14533.1,20956.5,0],[14526.5,20976,0],[14550.5,20732.7,0],[14565.4,20758.7,0],[14571.9,20749.5,0],[14576.1,20780.6,0],[14572.6,20898.2,0],[14556.8,20916.6,0],[14554.6,20924.6,0],[14566.6,20944.4,0],[14609,20748.6,0],[14586.7,20748.9,0],[14587.6,20808.5,0],[14595.5,20833.6,0],[14601.2,20846,0],[14586,20879,0],[14595.6,20861.2,0],[14584.5,20968.5,0],[14598.7,20989.6,0],[14607.3,21016.9,0],[14625.3,20812,0],[14637.8,20795.9,0],[14611.6,20830.8,0],[14612.8,21046.7,0],[14629.5,21089.7,0],[14618.9,21070.1,0],[14666.5,20609.3,0],[14661.3,20629.2,0],[14653.8,20655.9,0],[14647.3,20681.2,0],[14645.3,20697.6,0],[14645.1,20729.4,0],[14644.7,20713.6,0],[14657.6,20744.8,0],[14661.1,20757.7,0],[14649.6,20752.9,0],[14646.6,20744.5,0],[14644,20776.4,0],[14661.5,20801.9,0],[14647.5,20799.8,0],[14699.1,20486.8,0],[14693.8,20506.2,0],[14687.7,20527.8,0],[14678.9,20559.9,0],[14673.4,20581.9,0],[14695.8,20727.3,0],[14677.9,20738.3,0],[14678,20761.4,0],[14695.8,20761.2,0],[14682.8,20796.3,0],[14714.5,20714.7,0],[14714.6,20757.9,0],[14710.5,20781,0],[14756.2,20700,0],[14734.5,20706.6,0],[14744.8,20755.9,0],[14732.2,20754.9,0],[14746.1,20753.6,0],[14733.3,20765.3,0],[14774.8,20693.6,0],[14773,20694,0],[14766.3,20752.6,0],[14814.4,20675.6,0],[14790.4,20686.5,0],[14795.1,20752.1,0],[14841.1,20663.4,0],[14820.1,20755,0],[14840.1,20765.4,0],[14864.5,20652.6,0],[14857.1,20780.4,0],[14878.2,20793,0],[14884.5,20642.8,0],[14892.5,20805.9,0],[14890.4,20792,0],[14908.2,20820.8,0],[14914.7,20793.1,0],[14916.8,20837.9,0]]],["AgiosPetros",[[19226.7,17790.9,0],[19249.9,17482.8,0],[19254.6,17510.3,0],[19253.6,17495.5,0],[19255.1,17533.3,0],[19258.4,17553.9,0],[19251.4,17669.3,0],[19252.5,17642.7,0],[19248.4,17653.9,0],[19254.8,17686.5,0],[19245,17726.5,0],[19251.9,17705.7,0],[19238.1,17745,0],[19232.1,17765.7,0],[19265.6,17570.9,0],[19274.4,17587.3,0],[19280.9,17600.2,0],[19283.3,17608.9,0],[19264.1,17632.5,0],[19283.4,17617.5,0],[19307.1,17625.5,0],[19291.9,17621.7,0],[19320.3,17631.7,0],[19330.4,17638.9,0],[19345.8,17653.6,0],[19331.5,17662,0],[19330.8,17646.8,0],[19336.9,17641,0],[19330.8,17681.1,0],[19333.2,17726.7,0],[19331,17701.9,0],[19338,17750,0],[19343.8,17767.4,0],[19346.5,17780,0],[19348.3,17793.3,0],[19359.9,17671.9,0],[19373.3,17683,0],[19357.1,17818.3,0],[19393.2,17696.2,0],[19421.4,17714.4,0],[19451.3,17734.5,0],[19473.6,17751.8,0],[19487.3,17764.5,0]]],["Feres",[[21387.6,7429.95,0],[21377.1,7697.16,0],[21401.3,7453.64,0],[21418.1,7480.77,0],[21395.1,7675.31,0],[21415.9,7656.66,0],[21449,7520.21,0],[21432.7,7502.23,0],[21435.4,7641.59,0],[21468.9,7536.47,0],[21472.2,7610.54,0],[21454.4,7624.63,0],[21489.8,7552.23,0],[21490.4,7601.61,0],[21505.1,7595.28,0],[21509.9,7593.37,0],[21530.6,7585.34,0],[21510.6,7569.34,0],[21524.8,7581.64,0],[21532.6,7586.74,0],[21562.1,7572.85,0],[21551.1,7608.05,0],[21541,7595.62,0],[21562,7623.35,0],[21564.4,7872.74,0],[21586.7,7562.51,0],[21574.9,7642.96,0],[21589.5,7666.21,0],[21593.2,7785.02,0],[21584.4,7810.7,0],[21570.7,7852.73,0],[21576.4,7834.56,0],[21624.3,7546.59,0],[21603.7,7554.82,0],[21605,7692.14,0],[21609.7,7739.04,0],[21617.5,7718.2,0],[21616,7711,0],[21600.5,7764.2,0],[21650,7437.98,0],[21659.6,7493.51,0],[21651.3,7513.03,0],[21647.8,7528.12,0],[21641.4,7537.86,0],[21646.4,7685.82,0],[21631.6,7703.36,0],[21662.7,7462.74,0],[21670.6,7479.52,0],[21686.9,7620.41,0],[21674.3,7645.71,0],[21661,7665.96,0],[21698.4,7458.47,0],[21717,7543.56,0],[21708.8,7557.21,0],[21702.5,7575.31,0],[21695.5,7597.5,0],[21749.4,7438.34,0],[21744.3,7424.58,0],[21744.5,7426.4,0],[21724,7440.45,0],[21746.8,7496.92,0],[21737,7524.18,0],[21743.9,7521.68,0],[21744.5,7513.17,0],[21726.3,7531.79,0],[21734.2,7654.84,0],[21723.7,7669.17,0],[21721.8,7663.49,0],[21734.9,7683.05,0],[21767.8,7394.97,0],[21754.9,7412.85,0],[21752.2,7455.21,0],[21775.3,7495.59,0],[21750.6,7474.39,0],[21767,7525.36,0],[21760,7511.4,0],[21778.8,7544.43,0],[21757.5,7639.11,0],[21751.3,7703.8,0],[21767.6,7725.33,0],[21792.5,7345.46,0],[21781.1,7369.62,0],[21798.3,7477.95,0],[21793.3,7560.52,0],[21810,7570.5,0],[21785.6,7618.75,0],[21803,7604.58,0],[21784.3,7748.07,0],[21801.3,7771.82,0],[21821.9,7460.58,0],[21820.6,7578.05,0],[21817.3,7586.09,0],[21811.5,7595.1,0],[21815.7,7792.83,0],[21828.4,7813.99,0],[21857.5,7435.01,0],[21842,7446.03,0],[21852.6,7572.68,0],[21873.6,7423.62,0],[21893.7,7561.85,0],[21875.6,7566.9,0],[21915.6,7555.32,0],[21937.3,7548.75,0]]],["AgiaTriada",[[16560,20334.9,0],[16576.3,20344.9,0],[16593.6,20355.6,0],[16611,20366.7,0],[16627.8,20377.6,0],[16643.2,20387.9,0],[16648.9,20601.7,0],[16660.9,20400.8,0],[16676.9,20415.4,0],[16664,20579,0],[16672.4,20562.6,0],[16685.1,20429.6,0],[16685.9,20450.9,0],[16688.7,20479.6,0],[16691.4,20504.8,0],[16680.1,20544.3,0],[16686.8,20524.9,0]]],["Paros",[[20453.7,16967.4,0],[20489.5,16758.9,0],[20473.5,16982.3,0],[20505.1,16752.2,0],[20499.2,16998.7,0],[20505.3,17173.9,0],[20514.3,17161.4,0],[20545.8,16735.5,0],[20527,16742.2,0],[20524.6,17011.6,0],[20547.6,17017.3,0],[20549.4,17088.5,0],[20530.7,17124.3,0],[20539.4,17104.1,0],[20522.7,17145.8,0],[20567.9,16731.3,0],[20566.9,17020,0],[20576.7,17040.4,0],[20566.9,17055.6,0],[20558.4,17071.8,0],[20597.4,16731.2,0],[20603.1,17032,0],[20585.3,17027.9,0],[20622.8,16717.1,0],[20618.1,16735.8,0],[20622.5,17040.3,0],[20648.6,16703.8,0],[20650.6,16743.3,0],[20648.7,17049.3,0],[20677.5,16687.4,0],[20680.8,16750.9,0],[20699,17063.4,0],[20676.5,17056.9,0],[20710.2,16549.7,0],[20727.2,16570.6,0],[20701.8,16672.7,0],[20720,16660.7,0],[20705.8,16758.4,0],[20723.1,16766.5,0],[20723.4,17069.7,0],[20746.1,16593.7,0],[20737.3,16648.2,0],[20753.4,16636.6,0],[20735.3,16776.7,0],[20750,16785.4,0],[20746,17039.7,0],[20731.6,17059.3,0],[20759.9,17094.2,0],[20738.6,17081.9,0],[20762.7,16613.9,0],[20787.1,16641.2,0],[20766.3,16630.6,0],[20772.7,16626.1,0],[20766.8,16792.7,0],[20783,16802.6,0],[20765.2,17023,0],[20781.1,17015.3,0],[20782.2,17107.9,0],[20813.2,16674.5,0],[20798.9,16655.7,0],[20803.1,16818.7,0],[20805.5,16854.9,0],[20798.5,16881.2,0],[20798.4,16902.1,0],[20807.1,16926.8,0],[20817.5,16970.5,0],[20793.8,17005.8,0],[20806.5,16995.9,0],[20815.4,16986.2,0],[20803.9,17121.4,0],[20812,17310.6,0],[20803.2,17339.7,0],[20803.3,17320.3,0],[20800.8,17327.6,0],[20805.9,17355.6,0],[20801.7,17374.8,0],[20794.6,17390.5,0],[20828.4,16695.5,0],[20850,16739.4,0],[20840.7,16716,0],[20822.3,16840.3,0],[20836.1,16862.4,0],[20834,16968,0],[20820.2,16959.2,0],[20849.2,17150.4,0],[20824.5,17134.3,0],[20849.6,17225.1,0],[20847.7,17243,0],[20846,17235,0],[20837.5,17276,0],[20846.2,17258.1,0],[20849.1,17250.5,0],[20824.8,17297.5,0],[20857.6,16764.8,0],[20866.7,16789.3,0],[20862.5,16781.3,0],[20850,16886,0],[20869.3,16909.7,0],[20851.9,16978.4,0],[20869.6,16983.1,0],[20877.1,17068.3,0],[20857.7,17174.6,0],[20863.5,17163.6,0],[20855.1,17194.8,0],[20854.2,17213.9,0],[20880.2,16803.2,0],[20899.2,16821.2,0],[20904.9,16922.4,0],[20888.3,16922.3,0],[20891,16982,0],[20895.3,17060.5,0],[20899.2,17153.3,0],[20883.4,17166.4,0],[20919.5,16842.4,0],[20934.4,16859.5,0],[20927.4,16882.7,0],[20935.2,16873.2,0],[20921.2,16892.2,0],[20920.9,16898.7,0],[20933.8,16936.8,0],[20930.2,16931.4,0],[20919.4,16920.8,0],[20918,17004.6,0],[20913.3,16985.1,0],[20918,17050,0],[20930.2,17055.3,0],[20932.4,17075.6,0],[20937.6,17090.7,0],[20919.9,17128.1,0],[20937.6,17109.3,0],[20953.7,16875.4,0],[20940.6,16868.4,0],[20943.1,16946.6,0],[20959.4,16963.8,0],[20940.6,16973.9,0],[20959.2,16970.5,0],[20941.6,17037.8,0],[20962.7,17027.1,0],[20969.1,17091.4,0],[20953.4,17104.6,0],[20949.8,17100.6,0],[20994,16887.9,0],[20972.7,16882.4,0],[20989.8,16957.3,0],[20973,16968.1,0],[20988.4,16994.9,0],[20975,16980.4,0],[20980,17018,0],[20991.5,17084,0],[20974.1,17119.4,0],[20994.5,17131.5,0],[20973.3,17139,0],[20970.2,17147.8,0],[20970.7,17168.5,0],[20972.9,17202.7,0],[20978.9,17249.4,0],[20975.3,17238.9,0],[20974.6,17234.4,0],[20974.4,17224.9,0],[20981.5,17263.8,0],[20991.5,17305.3,0],[20984.9,17282.4,0],[20999,17330.3,0],[21023.6,16897.9,0],[21020.8,16923.8,0],[21007.5,16942.5,0],[21006.5,17014.1,0],[21020.3,17027.9,0],[21011.9,17076.7,0],[21015.3,17143.4,0],[21003.7,17351.4,0],[21003.7,17371.6,0],[21002.4,17390.1,0],[21051.3,16847,0],[21031,16883.5,0],[21041.1,16864.6,0],[21031.5,16907.6,0],[21058.5,16924.5,0],[21031.5,17035.6,0],[21034.2,17065.9,0],[21049.5,17058.2,0],[21033.8,17155.9,0],[21051.2,17168.3,0],[21085.3,16793,0],[21062,16829.8,0],[21073.3,16812.1,0],[21077.2,16941.1,0],[21082.2,17058.2,0],[21088.3,17050.6,0],[21067,17179.9,0],[21084.1,17192.3,0],[21110.6,16753.4,0],[21098.2,16772.5,0],[21109.4,16968.8,0],[21091.4,16954.3,0],[21100.2,17036.2,0],[21114.9,17018.1,0],[21119.1,17087.6,0],[21102.3,17077.9,0],[21101.3,17204.8,0],[21113.6,17215.2,0],[21122.7,16735,0],[21145.4,16714.9,0],[21126.5,17002.8,0],[21135.5,16990.9,0],[21136.5,17097.6,0],[21141.2,17247.6,0],[21125.4,17228.3,0],[21176.9,16678.5,0],[21151.8,16699.7,0],[21159.2,16727.1,0],[21177.7,16743.6,0],[21174.9,16984.1,0],[21151.1,16996.9,0],[21167.3,17006.5,0],[21173.2,17118.7,0],[21154.8,17108.1,0],[21161.7,17277.2,0],[21153.2,17262.3,0],[21154.4,17264.3,0],[21171.9,17295.4,0],[21199.3,16661.2,0],[21192.7,16756.9,0],[21204.7,16763.2,0],[21201.8,16946.9,0],[21189.1,16964.7,0],[21207.6,17017.1,0],[21184.1,17012.3,0],[21191.6,17129.5,0],[21209.9,17140.7,0],[21226.9,16764.6,0],[21215.8,16762.5,0],[21238.6,16773.3,0],[21228.4,16912.5,0],[21213.3,16930.8,0],[21228.2,17152.2,0],[21252.5,16786.1,0],[21268.1,16801.4,0],[21267.7,16871.3,0],[21247.5,16891.7,0],[21260.2,17029.3,0],[21245.4,17024.7,0],[21246.3,17163.8,0],[21263.9,17175.3,0],[21281.4,16815,0],[21291.4,16826.1,0],[21285.6,16852.7,0],[21294.5,16837.6,0],[21279,17035.5,0],[21297.8,17042.6,0],[21316.4,17050.7,0]]],["Kalochori",[[20955,16393.7,0],[20982.8,16383.9,0],[21026.6,16165,0],[21009.5,16374.2,0],[21046.3,16173,0],[21038.5,16363,0],[21074.3,16184.5,0],[21068.7,16350.6,0],[21098.9,16196,0],[21095.6,16339.4,0],[21120.5,16204.5,0],[21143.4,16214.5,0],[21120,16330.5,0],[21142.6,16324.1,0],[21178.3,16021.1,0],[21158.5,16223.2,0],[21163.1,16228.4,0],[21179.6,16247.2,0],[21170.5,16236.1,0],[21167,16318,0],[21176.9,16678.5,0],[21151.8,16699.7,0],[21199.6,16041.5,0],[21187.6,16256.3,0],[21200.2,16258.6,0],[21192.6,16258.3,0],[21187.6,16316.6,0],[21206.6,16322.7,0],[21199.3,16661.2,0],[21219.2,16059.5,0],[21235.8,16075.8,0],[21231.7,16270.9,0],[21213.7,16261.9,0],[21232.5,16309,0],[21228.7,16331.6,0],[21230.3,16632.4,0],[21213.6,16649.5,0],[21267.6,15989.6,0],[21257.2,16011.4,0],[21249.7,16031.1,0],[21244.6,16051.2,0],[21243.1,16067.8,0],[21244.2,16079.7,0],[21258.5,16115.5,0],[21264.4,16138.1,0],[21267.3,16157.3,0],[21258.3,16276.5,0],[21248.6,16281.6,0],[21266.9,16261.7,0],[21259.3,16289.8,0],[21246.5,16292.2,0],[21266.9,16298.7,0],[21261.8,16325.2,0],[21250.1,16336,0],[21242.8,16336.9,0],[21260.1,16599.5,0],[21246.6,16614,0],[21270.5,16176.6,0],[21273.8,16195,0],[21275.3,16218.4,0],[21293.1,16259.4,0],[21272.7,16250.3,0],[21278,16252.6,0],[21274.9,16237.1,0],[21273.5,16308.3,0],[21298.6,16317.2,0],[21274.8,16583.6,0],[21288.8,16568.3,0],[21320.7,16286,0],[21310.3,16267.9,0],[21321.2,16274.2,0],[21307.8,16303.2,0],[21308.5,16333.3,0],[21325.6,16349.8,0],[21302.6,16552.4,0],[21316.7,16535.1,0],[21352,16244.2,0],[21343.4,16258.5,0],[21345.6,16271.6,0],[21336.9,16268.7,0],[21342,16363.4,0],[21359.9,16380.3,0],[21351.6,16482.5,0],[21333.3,16511.7,0],[21389.2,16072.5,0],[21385.9,16091.5,0],[21382,16112.1,0],[21378.5,16132.3,0],[21376,16153.7,0],[21389.1,16170.1,0],[21374.4,16176.6,0],[21373.5,16193.1,0],[21362.1,16226.1,0],[21389,16248.1,0],[21373.2,16240.7,0],[21363.4,16261.3,0],[21378.2,16265.9,0],[21380.9,16290.2,0],[21379.8,16313.6,0],[21385.5,16337.8,0],[21380.9,16329.2,0],[21385.8,16354.2,0],[21379.9,16375.6,0],[21374.9,16389.4,0],[21373.6,16418.4,0],[21379.4,16434.9,0],[21386.4,16432.6,0],[21367.2,16453.7,0],[21403.2,15980.7,0],[21396.3,16012.6,0],[21391.8,16046.1,0],[21417,16123.6,0],[21403.1,16144.2,0],[21415.3,16233.6,0],[21407.1,16402.4,0],[21415.5,16395.4,0],[21392.8,16418.7,0],[21401.1,16441.3,0],[21443.4,16090.2,0],[21430.5,16105.8,0],[21449.1,16214.3,0],[21429.6,16223.4,0],[21432.3,16222.6,0],[21448.7,16378.9,0],[21438.3,16387.6,0],[21426,16392.2,0],[21425.7,16456.5,0],[21472,16056.5,0],[21457.5,16073.7,0],[21471.9,16202,0],[21459.7,16368.5,0],[21476.1,16363.8,0],[21450.8,16474.1,0],[21464.9,16486.8,0],[21471.2,16495.1,0],[21473.5,16515.6,0],[21476.1,16528.4,0],[21474,16502.3,0],[21504.9,16014.4,0],[21487.8,16036.9,0],[21492.3,16189.7,0],[21500.9,16312.3,0],[21481.4,16338.4,0],[21494.1,16365.8,0],[21507.9,16366.9,0],[21508.5,16383.5,0],[21498.2,16442.9,0],[21490.6,16464,0],[21481.2,16484.5,0],[21487.8,16543.9,0],[21498.9,16558.2,0],[21502,16568.9,0],[21504.5,16579.4,0],[21539.7,16164,0],[21513.5,16177,0],[21520.7,16285.9,0],[21529.7,16287.8,0],[21531.7,16273.5,0],[21524.5,16314.2,0],[21516.4,16348.9,0],[21536.8,16370.8,0],[21520.8,16369.2,0],[21528.4,16421.1,0],[21510.5,16417.3,0],[21514.3,16596.4,0],[21528.6,16620.2,0],[21539.6,16640.2,0],[21568.1,16152.4,0],[21555.3,16222.7,0],[21565.2,16203.3,0],[21545.7,16242.4,0],[21557.4,16373,0],[21556.8,16430.6,0],[21546.7,16660.2,0],[21549.2,16675.4,0],[21549.5,16693,0],[21584.9,16166.3,0],[21591.8,16144.2,0],[21584.1,16146.5,0],[21575.1,16184.1,0],[21578,16375,0],[21598.5,16376.3,0],[21581,16443.7,0],[21592.3,16456.5,0],[21627.4,16093.5,0],[21616.8,16115.1,0],[21609.6,16139.8,0],[21618.3,16135.5,0],[21619,16376.9,0],[21603,16469.4,0],[21624.1,16482.1,0],[21638.8,16127,0],[21640.6,16377,0],[21659.8,16376.2,0],[21648.5,16492.4,0],[21665.3,16116.9,0],[21680,16372.3,0],[21671.7,16501.1,0],[21705.1,16363.6,0],[21709.6,16517.6,0],[21691.9,16509.4,0],[21732.9,16352.5,0]]],["Oreokastro",[[3831.24,21503.7,0],[3855.94,21506,0],[3883.87,21508.3,0],[3909.39,21510.2,0],[3938.27,21510.9,0],[3968.81,21511,0],[3987.05,21511.9,0],[4014.33,21524.2,0],[3997.46,21515.4,0],[4040.75,21531.6,0],[4030.73,21531.4,0],[4069.35,21511,0],[4051.48,21527.2,0],[4105.22,21358.2,0],[4098.65,21388.7,0],[4101.61,21369.7,0],[4094.71,21408.3,0],[4086.1,21447.6,0],[4089.9,21426,0],[4084.64,21471.7,0],[4083.19,21490.6,0],[4119.52,21350.5,0],[4143.05,21342.3,0],[4166.66,21336.6,0],[4190.12,21335.1,0],[4225.96,20785.2,0],[4212.27,21338.2,0],[4251.73,20783.4,0],[4233.27,21343.3,0],[4253.48,21348.4,0],[4280.81,20783.1,0],[4276.12,21350.4,0],[4310.59,20784,0],[4300.52,21347.4,0],[4339.67,20786.4,0],[4336.86,21326.7,0],[4320.7,21338.9,0],[4371.21,20793.4,0],[4377.88,21083.2,0],[4365.57,21111.5,0],[4356.23,21133.6,0],[4351.47,21176.9,0],[4352.45,21151.2,0],[4352.19,21207.9,0],[4354.44,21234.8,0],[4359.16,21255.1,0],[4376.4,21291.2,0],[4366.24,21271.3,0],[4360.24,21312.8,0],[4399.96,20802.7,0],[4404.06,20900.2,0],[4395.78,20925.3,0],[4389.47,20946,0],[4385.19,20963.2,0],[4383.48,20978.7,0],[4383.55,20995.2,0],[4384.48,21013.7,0],[4385.62,21037.6,0],[4384.91,21060.3,0],[4389.05,21315.7,0],[4400.53,21332.6,0],[4423.11,20811.4,0],[4424.64,20847.4,0],[4434.46,20827.3,0],[4414.51,20872.3,0],[4411.61,21339.5,0],[4431.73,21337.3,0],[4422.3,21340.8,0],[4433.61,21871.3,0],[4415.64,21881.6,0],[4410.4,21893.9,0],[4419.1,21909.2,0],[4435.4,21923.4,0],[4457.29,20799.5,0],[4440.06,20818,0],[4456.13,21314.8,0],[4441.84,21329.4,0],[4453.92,21863.7,0],[4455.26,21931.3,0],[4473.83,20789.3,0],[4491.91,20780.9,0],[4499.97,21282.7,0],[4475.44,21298.1,0],[4479.71,21862.9,0],[4481.96,21933.7,0],[4528.96,20760.5,0],[4510.03,20772.2,0],[4528.37,21272.5,0],[4518.76,21343.4,0],[4507.49,21357.2,0],[4502.26,21385.8,0],[4502.36,21369.8,0],[4505.74,21402.9,0],[4511.01,21420.4,0],[4524.95,21437.7,0],[4507.91,21477,0],[4513.86,21456.7,0],[4505.27,21498.1,0],[4511.86,21520.2,0],[4527.92,21542.3,0],[4511.42,21865.5,0],[4512.74,21935.4,0],[4547.19,20746.1,0],[4554.64,21273.2,0],[4547.62,21416.6,0],[4534.37,21429.1,0],[4530.01,21448,0],[4548.84,21456.7,0],[4546.85,21562.9,0],[4537.19,21864.3,0],[4554.16,21860,0],[4537.42,21937.8,0],[4552.28,21943.2,0],[4577.4,20719.6,0],[4562.58,20732.1,0],[4575.26,21280.5,0],[4573.03,21392.3,0],[4570.51,21417.9,0],[4561.94,21410,0],[4580.54,21427,0],[4578.1,21444.4,0],[4575.89,21422.7,0],[4578.4,21457.3,0],[4575.72,21464.7,0],[4566.51,21462.3,0],[4563.99,21582.9,0],[4581.25,21604.7,0],[4586.44,21785.1,0],[4573.5,21805.1,0],[4561.45,21835,0],[4564.75,21820.4,0],[4575.18,21860.6,0],[4587.96,21865.3,0],[4563.57,21856.3,0],[4562.3,21956.9,0],[4570.72,21975.1,0],[4577.98,21994.1,0],[4585.68,22012.8,0],[4592.53,21290.4,0],[4610.05,21301.7,0],[4617.76,21412.4,0],[4593.69,21423.8,0],[4591.7,21491,0],[4601.97,21509.2,0],[4611.4,21525.9,0],[4599.34,21630.3,0],[4610.61,21651.6,0],[4618.79,21674,0],[4617.6,21681.4,0],[4613.76,21664.7,0],[4615.07,21674.7,0],[4614.91,21692.4,0],[4610.34,21722.8,0],[4605.25,21748.7,0],[4597.65,21765.8,0],[4604.82,21862.5,0],[4606.49,22049.2,0],[4593.94,22029.8,0],[4641.55,21325.4,0],[4626.62,21313,0],[4641.96,21401.1,0],[4620.6,21544.5,0],[4628.03,21564.4,0],[4632.46,21586.1,0],[4633.89,21610.9,0],[4627.09,21650.1,0],[4632.32,21631.1,0],[4626.51,21854.2,0],[4621.39,22067.1,0],[4633.89,22081.2,0],[4642,22097.9,0],[4645.12,22117.1,0],[4647.79,22144.1,0],[4654.83,21339.9,0],[4662.37,21354.5,0],[4656.06,21389.6,0],[4661.86,21378.5,0],[4663.57,21367,0],[4672.15,21833.9,0],[4650.17,21843.5,0],[4652.36,22175.3,0],[4658.84,22203.5,0],[4690.68,21827.1,0],[4709.5,21822.8,0],[4728.56,20727.2,0],[4738.09,20750.8,0],[4727.07,21822.1,0],[4747.9,20776.8,0],[4757.55,20800.1,0],[4767.7,20819.2,0],[4758.43,21832.3,0],[4741.14,21824.3,0],[4790.97,20847,0],[4778.36,20834.2,0],[4780.93,21845.2,0],[4812.82,20862.3,0],[4805.51,21856.6,0],[4825.41,21859.7,0],[4843.42,20879.3,0],[4844.76,21852.8,0],[4875.24,20891.3,0],[4869.64,21841.3,0],[4901.46,20897.5,0],[4890.92,21831.3,0],[4907.77,21826.8,0],[4922.89,20903.1,0],[4945.27,20912.1,0],[4930.76,21828.2,0],[4939.35,21886.7,0],[4969.13,20924.3,0],[4961.63,21837.3,0],[4962.89,21854.3,0],[4955.64,21872.1,0],[4991.38,20934.3,0],[4980.05,21839.8,0],[5007.44,21838.8,0],[5012.28,20941.2,0],[5034.21,20947.8,0],[5029.09,21833.6,0],[5054.37,20954.4,0],[5049.14,21830.8,0],[5073.37,20962.1,0],[5090.98,20971.4,0],[5071.69,21830.1,0],[5094.68,21829.3,0],[5108.92,20988,0],[5124.53,21009.9,0],[5116.54,21828.3,0],[5135.33,21031.2,0],[5144.17,21828.8,0],[5173.77,21832.3,0]]],["Ioannina",[[22859.2,20038.9,0],[22882,20041.5,0],[22904.6,20049.8,0],[22926.9,20063,0],[22949.2,20078.9,0],[22947.7,20208.1,0],[22975.2,20096.5,0],[22977.4,20159.6,0],[22958.4,20186,0],[22967.7,20170.3,0],[22997.2,20109.5,0],[23009.3,20115.3,0],[23006.1,20131.6,0],[22990.4,20146.6,0],[23035.8,20104.3,0],[23066.9,20078.9,0],[23050.6,20091.6,0],[23085,20065.7,0],[23125.7,20026,0],[23106.1,20048.2,0],[23140.4,20003.9,0],[23157,19985.4,0],[23186.5,19966.9,0],[23172.2,19974.4,0],[23212.2,19649.7,0],[23218.5,19967.5,0],[23205,19959.8,0],[23232.8,19665.8,0],[23237.5,19917.4,0],[23221.5,19932.7,0],[23248.1,20001.8,0],[23234.2,19982.3,0],[23250.9,19679.2,0],[23270.2,19693.1,0],[23258.9,19903.7,0],[23276.6,19894.7,0],[23268.4,20022.9,0],[23289.9,19707.2,0],[23300.3,19894,0],[23293.9,20043.3,0],[23331.2,19737.9,0],[23310,19722,0],[23333.7,19880.2,0],[23320.9,19892.3,0],[23313.8,20061.4,0],[23327.3,20082.4,0],[23339.2,20106.8,0],[23352.3,19753.7,0],[23355.8,19857.3,0],[23350.1,20125,0],[23358.8,20144,0],[23366.2,20165.6,0],[23371.3,19768.1,0],[23387.6,19780.4,0],[23393.5,19817.5,0],[23376.6,19835.3,0],[23375,20185.1,0],[23384.9,20206.4,0],[23392.5,20224.7,0],[23395.7,20239.9,0],[23391.1,20255.9,0],[23381.9,20282.1,0],[23404,19792.8,0],[23418.4,19793.7,0],[23420.4,19805.3,0],[23405.3,19805,0],[23450.2,19753,0],[23431.3,19776.5,0],[23438,19818.4,0],[23486.8,19854.3,0],[23460.4,19834.9,0],[23508.5,19870.3,0],[23524.2,19881.9,0]]],["Delfinaki",[[23628.5,19958.8,0],[23646.8,19972.3,0],[23665.1,19986,0],[23683.4,19999.6,0],[23671.7,20399,0],[23694.7,20376.6,0],[23701.6,20013.2,0],[23719.6,20026.6,0],[23712.2,20359.4,0],[23728,20347.5,0],[23737.2,20039.9,0],[23754.5,20052.9,0],[23747.1,20336.9,0],[23771.3,20065.7,0],[23787.5,20078,0],[23778.3,20307.9,0],[23762.8,20325.3,0],[23803.1,20090,0],[23807.3,20269.3,0],[23794.9,20288.7,0],[23824.8,20106.8,0],[23842.3,20215.5,0],[23820.1,20247.7,0],[23831.5,20229.3,0],[23851,20127.5,0],[23873.1,20145.5,0],[23859.2,20202.5,0],[23883.4,20188.3,0],[23890.4,20160.2,0],[23904.1,20172.5,0],[23901.1,20178.6,0],[23909.5,20170,0],[23924.4,20151.3,0],[23921.1,20188.8,0],[23913.5,20162,0],[23963.8,20138.5,0],[23942.6,20143.2,0],[23941.1,20208.8,0],[23960.5,20228.1,0],[23987.6,20114.8,0],[23979.9,20131.2,0],[23980.9,20247,0],[24026.6,20066.1,0],[24003.4,20089.5,0],[24001.5,20264.9,0],[24022.3,20282.6,0],[24059.4,20028.2,0],[24047,20044.7,0],[24044.4,20301.5,0],[24087.9,19993.8,0],[24070.4,20013,0],[24082.8,20335.6,0],[24064.5,20319,0],[24104.6,19976.3,0],[24117.7,19962.1,0],[24102.7,20354.1,0],[24139.3,19930.8,0],[24127.6,19949,0],[24123.3,20373.2,0],[24143.9,20392.1,0],[24152.8,19912.2,0]]],["Sofia",[[25490,21382,0],[25520.4,21259.5,0],[25506.4,21270.6,0],[25510.5,21371.7,0],[25528.8,21364,0],[25559,21227.4,0],[25542.6,21241.2,0],[25551.5,21349.4,0],[25557.9,21464,0],[25551.4,21473.6,0],[25545.3,21504.2,0],[25548.5,21487.6,0],[25589.6,21231.8,0],[25581,21326,0],[25584.4,21411.6,0],[25579,21437.2,0],[25582,21423.7,0],[25568.8,21451.6,0],[25590.1,21202.6,0],[25596.7,21219.3,0],[25595,21226.2,0],[25617.4,21266,0],[25600.3,21248.6,0],[25608.7,21292.4,0],[25594,21307.8,0],[25594.7,21340.7,0],[25611.2,21357.5,0],[25609.8,21382.8,0],[25594.1,21398.8,0],[25639.2,21250.8,0],[25628.3,21268.5,0],[25631.9,21262.8,0],[25632.8,21284.7,0],[25646,21299.1,0],[25620,21280.5,0],[25644.3,21376.6,0],[25622.7,21370.5,0],[25677.8,21205.7,0],[25655.2,21229.1,0],[25661.4,21313.5,0],[25676.6,21327.8,0],[25679.6,21367.4,0],[25662.9,21379,0],[25704.3,21208.1,0],[25697.9,21185.9,0],[25708.3,21260.9,0],[25705.9,21356.6,0],[25693.3,21352.2,0],[25708.7,21440.6,0],[25711.3,21170.5,0],[25722.3,21225.4,0],[25739.8,21242.8,0],[25723.9,21244.5,0],[25735.5,21386.9,0],[25733.2,21366.5,0],[25725.7,21374.2,0],[25738,21420.7,0],[25719.3,21434.9,0],[25727.6,21430.7,0],[25756.3,21259.9,0],[25757.9,21314.3,0],[25747.6,21328.1,0],[25765.8,21356.7,0],[25743.4,21355.8,0],[25753.2,21345.4,0],[25766.6,21392.7,0],[25749.1,21410.3,0],[25759.1,21400.3,0],[25768.3,21478.7,0],[25762.2,21493.5,0],[25754,21531.1,0],[25760,21512.3,0],[25745.1,21547.5,0],[25777.9,21279.6,0],[25773.2,21300.1,0],[25776.3,21383.2,0],[25785.4,21374.5,0],[25790.2,21441.5,0],[25770.3,21422.8,0],[25781.7,21464.5,0],[25793.2,21454,0],[25800.5,21299.3,0],[25818.9,21316.2,0],[25809.9,21399,0],[25825.6,21415.5,0],[25815.2,21432,0],[25803.9,21443.8,0],[25810.4,21460,0],[25839.4,21334.4,0],[25858.7,21352.4,0],[25846.5,21399.7,0],[25830.6,21477.3,0],[25861.8,21381.3,0],[25867.1,21367,0]]],["Molos",[[26624,23061.7,0],[26669.3,23057.8,0],[26645.9,23059.8,0],[26692.6,23055.8,0],[26719.2,22933.7,0],[26727.5,22955.9,0],[26714.4,23053.6,0],[26701.1,23399.2,0],[26734.9,22977.4,0],[26741.7,22996.5,0],[26752.5,23020.4,0],[26738.7,23050.3,0],[26758.3,23045.5,0],[26731.2,23390.7,0],[26773,23046.6,0],[26783.6,23054.1,0],[26761.7,23384.7,0],[26792.4,23064.8,0],[26799.4,23078,0],[26805,23090.6,0],[26812.1,23110.8,0],[26794.2,23383.3,0],[26835,22854.1,0],[26822.4,23138.6,0],[26831,23158.5,0],[26842.2,23171.9,0],[26825,23387.7,0],[26857.3,22870.2,0],[26878.5,22885.8,0],[26859.2,23184.6,0],[26876.9,23197.3,0],[26850.8,23398.2,0],[26873.5,23412,0],[26898.1,22900.3,0],[26893.9,23210.2,0],[26900.2,23418.9,0],[26887.4,23418.9,0],[26903.4,23447.3,0],[26897.3,23488.6,0],[26895.2,23460.6,0],[26894.1,23472.7,0],[26903.6,23510.5,0],[26915.5,22913.4,0],[26936.5,22929.9,0],[26914,23227.1,0],[26936.7,23247.1,0],[26932.7,23356.3,0],[26921.8,23376.6,0],[26916.9,23396.1,0],[26914.2,23417.8,0],[26912.8,23432.4,0],[26961.7,22950.8,0],[26963.9,23235.8,0],[26961.2,23265.8,0],[26946.8,23333.8,0],[26961.2,23313.6,0],[26987.5,22943.4,0],[26986.5,22973,0],[26983.3,23211.1,0],[26999.2,23190.4,0],[26984.9,23284.9,0],[26971.6,23305.9,0],[26979.7,23318.5,0],[26990.8,23335,0],[27023.9,22901.3,0],[27005.9,22921.8,0],[27020.5,23005.3,0],[27006.2,22991.4,0],[27024.6,23148.6,0],[27012.2,23169.3,0],[27004.3,23214.4,0],[27019.7,23229.1,0],[27018.6,23283,0],[27007.6,23294.7,0],[27028.6,23316.7,0],[27003,23351,0],[27016.6,23366.5,0],[27042.6,22880.6,0],[27035.3,23019.6,0],[27050.2,23034.1,0],[27057.7,23104.6,0],[27039.6,23128.2,0],[27047,23153.6,0],[27038.8,23247.3,0],[27059.9,23267.4,0],[27033.1,23267.3,0],[27048.4,23251.9,0],[27043.8,23255.8,0],[27054.4,23334.4,0],[27031.1,23381.8,0],[27046.2,23396.2,0],[27055.2,23487.8,0],[27063,22858.3,0],[27064.9,23048.4,0],[27079.1,23062.1,0],[27088.5,23065.8,0],[27074.1,23083.6,0],[27084.4,23070.7,0],[27082.7,23188,0],[27063,23169,0],[27081.8,23218,0],[27062.2,23237.9,0],[27081.6,23288.1,0],[27080.6,23309.1,0],[27065.6,23323.5,0],[27076.5,23357.4,0],[27078.1,23385.1,0],[27072.2,23398.4,0],[27080.2,23420.1,0],[27069.6,23406.7,0],[27072.7,23438.8,0],[27062.5,23465.4,0],[27116.8,23039.5,0],[27100,23055.1,0],[27105.9,23088,0],[27092.6,23075,0],[27119.6,23101.6,0],[27111.9,23188.8,0],[27104.5,23209.1,0],[27098.6,23199.9,0],[27095.2,23204.5,0],[27107.6,23281.8,0],[27102.4,23308,0],[27093.2,23296.4,0],[27091.5,23298.5,0],[27101.1,23368.9,0],[27115.1,23428.4,0],[27135.4,23022.1,0],[27133.2,23115.3,0],[27128.5,23175.6,0],[27139.6,23168.4,0],[27147.1,23166.2,0],[27127,23230.8,0],[27141.1,23247.6,0],[27127.9,23261.1,0],[27120.8,23325.5,0],[27135.3,23339.3,0],[27121.4,23364.4,0],[27136,23353.8,0],[27147.3,23350.8,0],[27144.6,23348.2,0],[27143.6,23440.1,0],[27171,22988.2,0],[27152.5,23006,0],[27152.3,23133.6,0],[27173.6,23152.4,0],[27166.2,23165.2,0],[27167.6,23269.9,0],[27166.3,23326.2,0],[27162,23365.2,0],[27150,23341.3,0],[27193.7,22965.7,0],[27203.5,23165.3,0],[27186.7,23165,0],[27182.5,23284.3,0],[27192,23301.6,0],[27192.1,23293.6,0],[27181.4,23311.8,0],[27182.9,23386.5,0],[27222.2,23171.7,0],[27259.3,23189.9,0],[27241.4,23180.5,0],[27278.8,23200.4,0]]]]; \ No newline at end of file diff --git a/A3-Antistasi/scheduler.sqf b/A3-Antistasi/scheduler.sqf deleted file mode 100644 index e5311b7f88..0000000000 --- a/A3-Antistasi/scheduler.sqf +++ /dev/null @@ -1,19 +0,0 @@ -if (!isServer) exitWith {}; -private _params = _this select 0; -private _function = _this select 1; - -if (count hcArray == 0) exitWith {_params remoteExec [_function,2]}; -if (count hcArray == 1) exitWith {_params remoteExec [_function,hcArray select 0]}; -_return = 2; -_min = 1000; -{ -_hcID = _x; -_num = {owner _x == _hcID} count allUnits; -if (_num < _min) then - { - _return = _hcID; - _min = _num; - }; -} forEach hcArray; - -_params remoteExec [_function,_return]; diff --git a/A3-Antistasi/statSave/loadPreviousSession.sqf b/A3-Antistasi/statSave/loadPreviousSession.sqf deleted file mode 100644 index 0d6c95d8a3..0000000000 --- a/A3-Antistasi/statSave/loadPreviousSession.sqf +++ /dev/null @@ -1,7 +0,0 @@ -if (hasInterface) then { - [] call A3A_fnc_loadPlayer; -}; - -if (!isMultiplayer) then { - [] execVM "statSave\loadServer.sqf"; -}; diff --git a/A3-Antistasi/statSave/loadServer.sqf b/A3-Antistasi/statSave/loadServer.sqf deleted file mode 100644 index 8c39523b3a..0000000000 --- a/A3-Antistasi/statSave/loadServer.sqf +++ /dev/null @@ -1,236 +0,0 @@ -diag_log format ["%1: [Antistasi] | INFO | loadServer Starting.",servertime]; -if (isServer) then -{ -diag_log format ["%1: [Antistasi] | INFO | Starting Persistent Load.",servertime]; -petros allowdamage false; - -["outpostsFIA"] call fn_LoadStat; publicVariable "outpostsFIA"; -["mrkSDK"] call fn_LoadStat; /*if (isMultiplayer) then {sleep 5}*/; -["mrkCSAT"] call fn_LoadStat; -["difficultyX"] call fn_LoadStat; -["gameMode"] call fn_LoadStat; -["destroyedCities"] call fn_LoadStat; -["minesX"] call fn_LoadStat; -["countCA"] call fn_LoadStat; -["antennas"] call fn_LoadStat; -["prestigeNATO"] call fn_LoadStat; -["prestigeCSAT"] call fn_LoadStat; -["hr"] call fn_LoadStat; -["dateX"] call fn_LoadStat; -["weather"] call fn_LoadStat; -["prestigeOPFOR"] call fn_LoadStat; -["prestigeBLUFOR"] call fn_LoadStat; -["resourcesFIA"] call fn_LoadStat; -["garrison"] call fn_LoadStat; -["skillFIA"] call fn_LoadStat; -["distanceSPWN"] call fn_LoadStat; -["civPerc"] call fn_LoadStat; -["maxUnits"] call fn_LoadStat; -["membersX"] call fn_LoadStat; -["vehInGarage"] call fn_LoadStat; -["destroyedBuildings"] call fn_LoadStat; -["idlebases"] call fn_LoadStat; -["idleassets"] call fn_LoadStat; -["killZones"] call fn_LoadStat; -["controlsSDK"] call fn_LoadStat; -["bombRuns"] call fn_LoadStat; -waitUntil {!isNil "arsenalInit"}; -["jna_dataList"] call fn_LoadStat; -//=========================================================================== -#include "\A3\Ui_f\hpp\defineResinclDesign.inc" - -unlockedWeapons = []; -unlockedBackpacks = []; -unlockedMagazines = []; -unlockedOptics = []; -unlockedItems = []; -unlockedRifles = []; -unlockedMG = []; -unlockedGL = []; -unlockedSN = []; -unlockedAA = []; -unlockedAT = []; - -{unlockedWeapons pushBack (_x select 0)} forEach (((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_PRIMARYWEAPON) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_HANDGUN) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOTHROW) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOPUT) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_SECONDARYWEAPON)) select {_x select 1 == -1}); publicVariable "unlockedWeapons"; -{unlockedBackpacks pushBack (_x select 0)} forEach ((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_BACKPACK) select {_x select 1 == -1}); publicVariable "unlockedBackpacks"; -{unlockedMagazines pushBack (_x select 0)} forEach (((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOMAG) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL)) select {_x select 1 == -1}); publicVariable "unlockedMagazines"; -{unlockedOptics pushBack (_x select 0)} forEach ((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMOPTIC) select {_x select 1 == -1}); -unlockedOptics = [unlockedOptics,[],{getNumber (configfile >> "CfgWeapons" >> _x >> "ItemInfo" >> "mass")},"DESCEND"] call BIS_fnc_sortBy; -publicVariable "unlockedOptics"; -{unlockedItems pushBack (_x select 0)} forEach ((((jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_HEADGEAR) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_VEST) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_GOGGLES) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_MAP) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_GPS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_RADIO) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_COMPASS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_WATCH) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMACC) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMMUZZLE) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_ITEMBIPOD) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_BINOCULARS) + (jna_dataList select IDC_RSCDISPLAYARSENAL_TAB_NVGS)) select {_x select 1 == -1})); -unlockedItems = unlockedItems + unlockedOptics; publicVariable "unlockedItems"; - - -//unlockedRifles = unlockedweapons - hguns - mlaunchers - rlaunchers - ["Binocular","Laserdesignator","Rangefinder"] - srifles - mguns; publicVariable "unlockedRifles"; -//unlockedRifles = unlockedweapons select {_x in arifles}; publicVariable "unlockedRifles"; - -{ -_weaponX = _x; -if (_weaponX in arifles) then - { - unlockedRifles pushBack _weaponX; - if (count (getArray (configfile >> "CfgWeapons" >> _weaponX >> "muzzles")) == 2) then - { - unlockedGL pushBack _weaponX; - }; - } -else - { - if (_weaponX in mguns) then - { - unlockedMG pushBack _weaponX; - } - else - { - if (_weaponX in srifles) then - { - unlockedSN pushBack _weaponX; - } - else - { - if (_weaponX in ((rlaunchers + mlaunchers) select {(getNumber (configfile >> "CfgWeapons" >> _x >> "lockAcquire") == 0)})) then - { - unlockedAT pushBack _weaponX; - } - else - { - if (_weaponX in (mlaunchers select {(getNumber (configfile >> "CfgWeapons" >> _x >> "lockAcquire") == 1)})) then {unlockedAA pushBack _weaponX}; - }; - }; - }; - }; -} forEach unlockedWeapons; -if (hasIFA) then {unlockedRifles = unlockedRifles - ["LIB_M2_Flamethrower","LIB_PTRD"]}; - -publicVariable "unlockedRifles"; -publicVariable "unlockedMG"; -publicVariable "unlockedSN"; -publicVariable "unlockedGL"; -publicVariable "unlockedAT"; -publicVariable "unlockedAA"; -if ("NVGoggles" in unlockedItems) then {haveNV = true; publicVariable "haveNV"}; -//Check if we have radios unlocked and update haveRadio. -call A3A_fnc_checkRadiosUnlocked; - -{ -if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then - { - _positionX = getMarkerPos _x; - _nearX = [(markersX - controlsX - outpostsFIA),_positionX] call BIS_fnc_nearestPosition; - _sideX = sidesX getVariable [_nearX,sideUnknown]; - sidesX setVariable [_x,_sideX,true]; - }; -} forEach controlsX; - - -{ -if (sidesX getVariable [_x,sideUnknown] == sideUnknown) then - { - sidesX setVariable [_x,Occupants,true]; - }; -} forEach markersX; - -{[_x] call A3A_fnc_mrkUpdate} forEach (markersX - controlsX); -if (count outpostsFIA > 0) then {markersX = markersX + outpostsFIA; publicVariable "markersX"}; - -{if (_x in destroyedCities) then {[_x] call A3A_fnc_destroyCity}} forEach citiesX; - -["chopForest"] call fn_LoadStat; -["destroyedBuildings"] call fn_LoadStat; -/* -{ -_buildings = nearestObjects [_x, listMilBld, 25, true]; -(_buildings select 1) setDamage 1; -} forEach destroyedBuildings; -*/ -["posHQ"] call fn_LoadStat; -["nextTick"] call fn_LoadStat; -["staticsX"] call fn_LoadStat;//tiene que ser el Ćŗltimo para que el sleep del borrado del contenido no haga que despawneen - - -if (!isMultiPlayer) then {player setPos getMarkerPos respawnTeamPlayer} else {{_x setPos getMarkerPos respawnTeamPlayer} forEach (playableUnits select {side _x == teamPlayer})}; -_sites = markersX select {sidesX getVariable [_x,sideUnknown] == teamPlayer}; -tierWar = 1 + (floor (((5*({(_x in outposts) or (_x in resourcesX) or (_x in citiesX)} count _sites)) + (10*({_x in seaports} count _sites)) + (20*({_x in airportsX} count _sites)))/10)); -if (tierWar > 10) then {tierWar = 10}; -publicVariable "tierWar"; - -clearMagazineCargoGlobal boxX; -clearWeaponCargoGlobal boxX; -clearItemCargoGlobal boxX; -clearBackpackCargoGlobal boxX; - -[] remoteExec ["A3A_fnc_statistics",[teamPlayer,civilian]]; -diag_log format ["%1: [Antistasi] | INFO | Persistent Load Completed.",servertime]; -diag_log format ["%1: [Antistasi] | INFO | Generating Map Markers.",servertime]; -["tasks"] call fn_LoadStat; -if !(isMultiplayer) then - { - { - _pos = getMarkerPos _x; - _dmrk = createMarker [format ["Dum%1",_x], _pos]; - _dmrk setMarkerShape "ICON"; - [_x] call A3A_fnc_mrkUpdate; - if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then - { - _nul = [_x] call A3A_fnc_createControls; - }; - } forEach airportsX; - - { - _pos = getMarkerPos _x; - _dmrk = createMarker [format ["Dum%1",_x], _pos]; - _dmrk setMarkerShape "ICON"; - _dmrk setMarkerType "loc_rock"; - _dmrk setMarkerText "Resources"; - [_x] call A3A_fnc_mrkUpdate; - if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then - { - _nul = [_x] call A3A_fnc_createControls; - }; - } forEach resourcesX; - - { - _pos = getMarkerPos _x; - _dmrk = createMarker [format ["Dum%1",_x], _pos]; - _dmrk setMarkerShape "ICON"; - _dmrk setMarkerType "u_installation"; - _dmrk setMarkerText "Factory"; - [_x] call A3A_fnc_mrkUpdate; - if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then - { - _nul = [_x] call A3A_fnc_createControls; - }; - } forEach factories; - - { - _pos = getMarkerPos _x; - _dmrk = createMarker [format ["Dum%1",_x], _pos]; - _dmrk setMarkerShape "ICON"; - _dmrk setMarkerType "loc_bunker"; - [_x] call A3A_fnc_mrkUpdate; - if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then - { - _nul = [_x] call A3A_fnc_createControls; - }; - } forEach outposts; - - { - _pos = getMarkerPos _x; - _dmrk = createMarker [format ["Dum%1",_x], _pos]; - _dmrk setMarkerShape "ICON"; - _dmrk setMarkerType "b_naval"; - _dmrk setMarkerText "Sea Port"; - [_x] call A3A_fnc_mrkUpdate; - if (sidesX getVariable [_x,sideUnknown] != teamPlayer) then - { - _nul = [_x] call A3A_fnc_createControls; - }; - } forEach seaports; - sidesX setVariable ["NATO_carrier",Occupants,true]; - sidesX setVariable ["CSAT_carrier",Invaders,true]; - }; -statsLoaded = 0; publicVariable "statsLoaded"; -placementDone = true; publicVariable "placementDone"; -petros allowdamage true; -}; -diag_log format ["%1: [Antistasi] | INFO | loadServer Completed.",servertime]; \ No newline at end of file diff --git a/A3-Antistasi/statSave/saveFuncs.sqf b/A3-Antistasi/statSave/saveFuncs.sqf index 26d92c756f..7f80a7576b 100755 --- a/A3-Antistasi/statSave/saveFuncs.sqf +++ b/A3-Antistasi/statSave/saveFuncs.sqf @@ -1,67 +1,50 @@ fn_varNameToSaveName = { params ["_varName", ""]; //Return the name of the save slot for the variable. - if (worldName == "Tanoa") then - { + if (worldName == "Tanoa") then { _varName + serverID + campaignID + "WotP"; - } - else - { - if (side group petros == independent) then - { + } else { + if (side group petros == independent) then { _varName + serverID + campaignID + "Antistasi" + worldName; - } - else - { + } else { _varName + serverID + campaignID + "AntistasiB" + worldName; - }; }; + }; }; -fn_SaveStat = -{ +fn_SaveStat = { _varName = _this select 0; _varValue = _this select 1; - if (!isNil "_varValue") then - { + if (!isNil "_varValue") then { _varSaveName = [_varName] call fn_varNameToSaveName; profileNameSpace setVariable [_varSaveName, _varValue]; if (isDedicated) then {saveProfileNamespace}; - }; + }; }; -fn_ReturnSavedStat = -{ +fn_ReturnSavedStat = { private _varName = _this select 0; - - _loadVariable = { - private ["_varName","_varValue"]; - _varName = _this select 0; + _loadVariable = { + private ["_varName","_varValue"]; + _varName = _this select 0; _varSaveName = [_varName] call fn_varNameToSaveName; - - //Return the value of this statement + //Return the value of this statement profileNameSpace getVariable (_varSaveName); - }; - - private _varValue = [_varName] call _loadVariable; - - if(isNil "_varValue") then - { - _spanishVarName = [_varName] call A3A_fnc_translateVariable; - _varValue = [_spanishVarName] call _loadVariable; - }; - - if(isNil "_varValue") exitWith { + }; + private _varValue = [_varName] call _loadVariable; + if (isNil "_varValue") then { + _spanishVarName = [_varName] call A3A_fnc_translateVariable; + _varValue = [_spanishVarName] call _loadVariable; + }; + if (isNil "_varValue") exitWith { diag_log format ["%1: [Antistasi] | ERROR | saveFuncs.sqf | Variable %2 does not exist.",servertime, _varName]; - }; + }; _varValue; }; -fn_LoadStat = -{ +fn_LoadStat = { private ["_varName","_varValue"]; _varName = _this select 0; - _varValue = [_varName] call fn_ReturnSavedStat; if (isNil "_varValue") exitWith {}; [_varName,_varValue] call fn_SetStat; @@ -71,28 +54,22 @@ fn_SavePlayerStat = { private _playerUID = _this select 0; private _varName = _this select 1; private _varValue = _this select 2; - private _abort = false; - if (isNil "_playerUID") then { _playerUID = ""; _abort = true; }; - if (isNil "_varName") then { _varName = ""; _abort = true; }; - if (isNil "_varValue") then { _varValue = ""; _abort = true; }; - if (_abort) exitWith { diag_log format ["[Antistiasi] Save invalid for %1, saving %3 as %2", _playerUID, _varName, _varValue]; }; - private _playerVarName = format ["player_%1_%2", _playerUID, _varName]; [_playerVarName, _varValue] call fn_SaveStat; }; @@ -100,9 +77,7 @@ fn_SavePlayerStat = { fn_RetrievePlayerStat = { private _playerUID = _this select 0; private _varName = _this select 1; - if (isNil "_playerUID" || isNil "_varName") exitWith {diag_log ["[Antistiasi] Load invalid for player %1 var %2", _playerUID, _varName]}; - private _playerVarName = format ["player_%1_%2", _playerUID, _varName]; [_playerVarName] call fn_ReturnSavedStat; }; @@ -118,163 +93,173 @@ fn_RetrievePlayerStat = { "mrkSDK", "prestigeNATO","prestigeCSAT", "hr","planesAAFcurrent","helisAAFcurrent","APCAAFcurrent","tanksAAFcurrent","armas","items","backpcks","ammunition","dateX", "WitemsPlayer","prestigeOPFOR","prestigeBLUFOR","resourcesAAF","resourcesFIA","skillFIA"]; */ -specialVarLoads = -["outpostsFIA","minesX","staticsX","countCA","antennas","mrkNATO","mrkSDK","prestigeNATO","prestigeCSAT","posHQ", "hr","armas","items","backpcks","ammunition","dateX", "prestigeOPFOR","prestigeBLUFOR","resourcesFIA","skillFIA","distanceSPWN","civPerc","maxUnits","destroyedCities","garrison","tasks","smallCAmrk","membersX","vehInGarage","destroyedBuildings","idlebases","idleassets","chopForest","weather","killZones","jna_dataList","controlsSDK","mrkCSAT","nextTick","bombRuns","difficultyX","gameMode"]; +specialVarLoads = [ + "outpostsFIA","minesX","staticsX","countCA","antennas","mrkNATO","mrkSDK","prestigeNATO", + "prestigeCSAT","posHQ","hr","armas","items","backpcks","ammunition","dateX","prestigeOPFOR", + "prestigeBLUFOR","resourcesFIA","skillFIA","distanceSPWN","civPerc","maxUnits","destroyedSites", + "garrison","tasks","smallCAmrk","membersX","vehInGarage","destroyedBuildings","idlebases", + "idleassets","chopForest","weather","killZones","jna_dataList","controlsSDK","mrkCSAT","nextTick", + "bombRuns","difficultyX","gameMode","wurzelGarrison" +]; + //THIS FUNCTIONS HANDLES HOW STATS ARE LOADED -fn_SetStat = -{ +fn_SetStat = { _varName = _this select 0; _varValue = _this select 1; - if(isNil '_varValue') exitWith {}; - if(_varName in specialVarLoads) then - { - if(_varName == 'countCA') then {countCA = _varValue; publicVariable "countCA"}; - if(_varName == 'difficultyX') then - { - if !(isMultiplayer) then - { + if (isNil '_varValue') exitWith {}; + if (_varName in specialVarLoads) then { + if (_varName == 'countCA') then {countCA = _varValue; publicVariable "countCA"}; + if (_varName == 'difficultyX') then { + if !(isMultiplayer) then { skillMult = _varValue; - if (skillMult == 0.5) then {minWeaps = 15}; - if (skillMult == 2) then {minWeaps = 40}; - }; + if (skillMult == 1) then {minWeaps = 15}; + if (skillMult == 3) then {minWeaps = 40}; }; - if(_varName == 'gameMode') then - { - if !(isMultiplayer) then - { + }; + if(_varName == 'gameMode') then { + if !(isMultiplayer) then { gameMode = _varValue; - if (gameMode != 1) then - { + if (gameMode != 1) then { Occupants setFriend [Invaders,1]; - Invaders setFriend [Occupants,1]; - if (gameMode == 3) then {"CSAT_carrier" setMarkerAlpha 0}; - if (gameMode == 4) then {"NATO_carrier" setMarkerAlpha 0}; - }; + Invaders setFriend [Occupants,1]; + if (gameMode == 3) then {"CSAT_carrier" setMarkerAlpha 0}; + if (gameMode == 4) then {"NATO_carrier" setMarkerAlpha 0}; }; }; - if(_varName == 'bombRuns') then {bombRuns = _varValue; publicVariable "bombRuns"}; - if(_varName == 'nextTick') then {nextTick = time + _varValue}; - if(_varName == 'membersX') then {membersX = +_varValue; publicVariable "membersX"}; - if(_varName == 'smallCAmrk') then {smallCAmrk = +_varValue}; - if(_varName == 'mrkNATO') then {{sidesX setVariable [_x,Occupants,true]} forEach _varValue;}; - if(_varName == 'mrkCSAT') then {{sidesX setVariable [_x,Invaders,true]} forEach _varValue;}; - if(_varName == 'mrkSDK') then {{sidesX setVariable [_x,teamPlayer,true]} forEach _varValue;}; - if(_varName == 'controlsSDK') then - { + }; + if (_varName == 'bombRuns') then {bombRuns = _varValue; publicVariable "bombRuns"}; + if (_varName == 'nextTick') then {nextTick = time + _varValue}; + if (_varName == 'membersX') then {membersX = +_varValue; publicVariable "membersX"}; + if (_varName == 'smallCAmrk') then {smallCAmrk = +_varValue}; + if (_varName == 'mrkNATO') then {{sidesX setVariable [_x,Occupants,true]} forEach _varValue;}; + if (_varName == 'mrkCSAT') then {{sidesX setVariable [_x,Invaders,true]} forEach _varValue;}; + if (_varName == 'mrkSDK') then {{sidesX setVariable [_x,teamPlayer,true]} forEach _varValue;}; + if (_varName == 'controlsSDK') then { { - sidesX setVariable [_x,teamPlayer,true] + sidesX setVariable [_x,teamPlayer,true] } forEach _varValue; - }; - if(_varName == 'chopForest') then {chopForest = _varValue; publicVariable "chopForest"}; - if(_varName == 'jna_dataList') then {jna_dataList = +_varValue}; - if(_varName == 'prestigeNATO') then {prestigeNATO = _varValue; publicVariable "prestigeNATO"}; - if(_varName == 'prestigeCSAT') then {prestigeCSAT = _varValue; publicVariable "prestigeCSAT"}; - if(_varName == 'hr') then {server setVariable ["HR",_varValue,true]}; - if(_varName == 'dateX') then {setDate _varValue}; - if(_varName == 'weather') then - { + }; + if (_varName == 'chopForest') then {chopForest = _varValue; publicVariable "chopForest"}; + if (_varName == 'jna_dataList') then {jna_dataList = +_varValue}; + if (_varName == 'prestigeNATO') then {prestigeNATO = _varValue; publicVariable "prestigeNATO"}; + if (_varName == 'prestigeCSAT') then {prestigeCSAT = _varValue; publicVariable "prestigeCSAT"}; + if (_varName == 'hr') then {server setVariable ["HR",_varValue,true]}; + if (_varName == 'dateX') then {setDate _varValue}; + if (_varName == 'weather') then { 0 setFog (_varValue select 0); 0 setRain (_varValue select 1); forceWeatherChange - }; - if(_varName == 'resourcesFIA') then {server setVariable ["resourcesFIA",_varValue,true]}; - if(_varName == 'destroyedCities') then {destroyedCities = +_varValue; publicVariable "destroyedCities"}; - if(_varName == 'skillFIA') then - { + }; + if (_varName == 'resourcesFIA') then {server setVariable ["resourcesFIA",_varValue,true]}; + if (_varName == 'destroyedSites') then {destroyedSites = +_varValue; publicVariable "destroyedSites"}; + if (_varName == 'skillFIA') then { skillFIA = _varValue; publicVariable "skillFIA"; { - _costs = server getVariable _x; - for "_i" from 1 to _varValue do - { - _costs = round (_costs + (_costs * (_i/280))); + _costs = server getVariable _x; + for "_i" from 1 to _varValue do { + _costs = round (_costs + (_costs * (_i/280))); }; - server setVariable [_x,_costs,true]; + server setVariable [_x,_costs,true]; } forEach soldiersSDK; - }; - if(_varName == 'distanceSPWN') then {distanceSPWN = _varValue; distanceSPWN1 = distanceSPWN * 1.3; distanceSPWN2 = distanceSPWN /2; publicVariable "distanceSPWN";publicVariable "distanceSPWN1";publicVariable "distanceSPWN2"}; - if(_varName == 'civPerc') then {civPerc = _varValue; if (civPerc < 1) then {civPerc = 35}; publicVariable "civPerc"}; - if(_varName == 'maxUnits') then {maxUnits=_varValue; publicVariable "maxUnits"}; - if(_varName == 'vehInGarage') then {vehInGarage= +_varValue; publicVariable "vehInGarage"}; - if(_varName == 'destroyedBuildings') then - { + }; + if (_varName == 'distanceSPWN') then {distanceSPWN = _varValue; distanceSPWN1 = distanceSPWN * 1.3; distanceSPWN2 = distanceSPWN /2; publicVariable "distanceSPWN";publicVariable "distanceSPWN1";publicVariable "distanceSPWN2"}; + if (_varName == 'civPerc') then {civPerc = _varValue; if (civPerc < 1) then {civPerc = 35}; publicVariable "civPerc"}; + if (_varName == 'maxUnits') then {maxUnits=_varValue; publicVariable "maxUnits"}; + if (_varName == 'vehInGarage') then {vehInGarage= +_varValue; publicVariable "vehInGarage"}; + if (_varName == 'destroyedBuildings') then { destroyedBuildings= +_varValue; //publicVariable "destroyedBuildings"; + private _building = objNull; { - (nearestObject [_x, "House"]) setDamage [1,false]; + _building = nearestObject [_x, "House"]; + if !(_building in antennas) then { + private _ruin = [_building] call BIS_fnc_createRuin; + //JIP on the _ruin, as repairRuinedBuilding will delete the ruin. + if !(isNull _ruin) then { + [_building, true] remoteExec ["hideObject", 0, _ruin]; + } else { + diag_log format ["Loading Destroyed Buildings: Unable to create ruin for %1", typeOf _building]; + }; + }; } forEach destroyedBuildings; - }; - if(_varName == 'minesX') then - { - for "_i" from 0 to (count _varvalue) - 1 do - { + }; + if (_varName == 'minesX') then { + for "_i" from 0 to (count _varvalue) - 1 do { _typeMine = _varvalue select _i select 0; - switch _typeMine do - { + switch _typeMine do { case "APERSMine_Range_Ammo": {_typeMine = "APERSMine"}; case "ATMine_Range_Ammo": {_typeMine = "ATMine"}; case "APERSBoundingMine_Range_Ammo": {_typeMine = "APERSBoundingMine"}; case "SLAMDirectionalMine_Wire_Ammo": {_typeMine = "SLAMDirectionalMine"}; case "APERSTripMine_Wire_Ammo": {_typeMine = "APERSTripMine"}; case "ClaymoreDirectionalMine_Remote_Ammo": {_typeMine = "Claymore_F"}; - }; + }; _posMine = _varvalue select _i select 1; _mineX = createMine [_typeMine, _posMine, [], 0]; _detected = _varvalue select _i select 2; {_x revealMine _mineX} forEach _detected; - if (count (_varvalue select _i) > 3) then//borrar esto en febrero - { + if (count (_varvalue select _i) > 3) then { _dirMine = _varvalue select _i select 3; _mineX setDir _dirMine; - }; }; }; - if(_varName == 'garrison') then - { + }; + if (_varName == 'garrison') then { //_markersX = markersX - outpostsFIA - controlsX - citiesX; {garrison setVariable [_x select 0,_x select 1,true]} forEach _varvalue; - }; - if(_varName == 'outpostsFIA') then + }; + if (_varName == 'wurzelGarrison') then { { - if (count (_varValue select 0) == 2) then - { + garrison setVariable [format ["%1_garrison", (_x select 0)], _x select 1, true]; + garrison setVariable [format ["%1_requested", (_x select 0)], _x select 2, true]; + garrison setVariable [format ["%1_over", (_x select 0)], _x select 3, true]; + [(_x select 0)] call A3A_fnc_updateReinfState; + } forEach _varvalue; + }; + if (_varName == 'outpostsFIA') then { + if (count (_varValue select 0) == 2) then { { - _positionX = _x select 0; - _garrison = _x select 1; - _mrk = createMarker [format ["FIApost%1", random 1000], _positionX]; - _mrk setMarkerShape "ICON"; - _mrk setMarkerType "loc_bunker"; - _mrk setMarkerColor colourTeamPlayer; - if (isOnRoad _positionX) then {_mrk setMarkerText format ["%1 Roadblock",nameTeamPlayer]} else {_mrk setMarkerText format ["%1 Watchpost",nameTeamPlayer]}; - spawner setVariable [_mrk,2,true]; - if (count _garrison > 0) then {garrison setVariable [_mrk,_garrison,true]}; - outpostsFIA pushBack _mrk; - sidesX setVariable [_mrk,teamPlayer,true]; + _positionX = _x select 0; + _garrison = _x select 1; + _mrk = createMarker [format ["FIApost%1", random 1000], _positionX]; + _mrk setMarkerShape "ICON"; + _mrk setMarkerType "loc_bunker"; + _mrk setMarkerColor colorTeamPlayer; + if (isOnRoad _positionX) then {_mrk setMarkerText format ["%1 Roadblock",nameTeamPlayer]} else {_mrk setMarkerText format ["%1 Watchpost",nameTeamPlayer]}; + spawner setVariable [_mrk,2,true]; + if (count _garrison > 0) then {garrison setVariable [_mrk,_garrison,true]}; + outpostsFIA pushBack _mrk; + sidesX setVariable [_mrk,teamPlayer,true]; } forEach _varvalue; - }; }; - - if(_varName == 'antennas') then - { - antennasDead = +_varvalue; - for "_i" from 0 to (count _varvalue - 1) do - { + }; + if (_varName == 'antennas') then { + antennasDead = []; + for "_i" from 0 to (count _varvalue - 1) do { _posAnt = _varvalue select _i; _mrk = [mrkAntennas, _posAnt] call BIS_fnc_nearestPosition; _antenna = [antennas,_mrk] call BIS_fnc_nearestPosition; {if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,false] spawn A3A_fnc_blackout}} forEach citiesX; antennas = antennas - [_antenna]; + antennasDead pushBack _antenna; _antenna removeAllEventHandlers "Killed"; - _antenna setDamage [1,false]; + + private _ruin = [_antenna] call BIS_fnc_createRuin; + + if !(isNull _ruin) then { + //JIP on the _ruin, as repairRuinedBuilding will delete the ruin. + [_antenna, true] remoteExec ["hideObject", 0, _ruin]; + } else { + diag_log format ["Loading Antennas: Unable to create ruin for %1", typeOf _antenna]; + }; + deleteMarker _mrk; - }; - antennasDead = _varvalue; + }; publicVariable "antennas"; publicVariable "antennasDead"; - }; - if(_varname == 'prestigeOPFOR') then - { - for "_i" from 0 to (count citiesX) - 1 do - { + }; + if (_varname == 'prestigeOPFOR') then { + for "_i" from 0 to (count citiesX) - 1 do { _city = citiesX select _i; _dataX = server getVariable _city; _numCiv = _dataX select 0; @@ -283,12 +268,10 @@ fn_SetStat = _prestigeBLUFOR = _dataX select 3; _dataX = [_numCiv,_numVeh,_prestigeOPFOR,_prestigeBLUFOR]; server setVariable [_city,_dataX,true]; - }; }; - if(_varname == 'prestigeBLUFOR') then - { - for "_i" from 0 to (count citiesX) - 1 do - { + }; + if (_varname == 'prestigeBLUFOR') then { + for "_i" from 0 to (count citiesX) - 1 do { _city = citiesX select _i; _dataX = server getVariable _city; _numCiv = _dataX select 0; @@ -297,48 +280,40 @@ fn_SetStat = _prestigeBLUFOR = _varvalue select _i; _dataX = [_numCiv,_numVeh,_prestigeOPFOR,_prestigeBLUFOR]; server setVariable [_city,_dataX,true]; - }; }; - if(_varname == 'idlebases') then - { + }; + if (_varname == 'idlebases') then { { - server setVariable [(_x select 0),(_x select 1),true]; + server setVariable [(_x select 0),(_x select 1),true]; } forEach _varValue; - }; - if(_varname == 'idleassets') then - { + }; + if (_varname == 'idleassets') then { { - timer setVariable [(_x select 0),(_x select 1),true]; + timer setVariable [(_x select 0),(_x select 1),true]; } forEach _varValue; - }; - if(_varname == 'killZones') then - { + }; + if (_varname == 'killZones') then { { - killZones setVariable [(_x select 0),(_x select 1),true]; + killZones setVariable [(_x select 0),(_x select 1),true]; } forEach _varValue; - }; - if(_varName == 'posHQ') then - { + }; + if (_varName == 'posHQ') then { _posHQ = if (count _varValue >3) then {_varValue select 0} else {_varValue}; - {if (getMarkerPos _x distance _posHQ < 1000) then - { - sidesX setVariable [_x,teamPlayer,true]; + { + if (getMarkerPos _x distance _posHQ < 1000) then { + sidesX setVariable [_x,teamPlayer,true]; }; } forEach controlsX; respawnTeamPlayer setMarkerPos _posHQ; posHQ = getMarkerPos respawnTeamPlayer; petros setPos _posHQ; "Synd_HQ" setMarkerPos _posHQ; - if (chopForest) then - { + if (chopForest) then { if (!isMultiplayer) then {{ _x hideObject true } foreach (nearestTerrainObjects [position petros,["tree","bush"],70])} else {{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [position petros,["tree","bush"],70])}; - }; - if (count _varValue == 3) then - { + }; + if (count _varValue == 3) then { [] spawn A3A_fnc_buildHQ; - } - else - { + } else { fireX setPos (_varValue select 1); boxX setDir ((_varValue select 2) select 0); boxX setPos ((_varValue select 2) select 1); @@ -347,51 +322,39 @@ fn_SetStat = flagX setPos (_varValue select 4); vehicleBox setDir ((_varValue select 5) select 0); vehicleBox setPos ((_varValue select 5) select 1); - }; - {_x setPos _posHQ} forEach (playableUnits select {side _x == teamPlayer}); }; - if(_varname == 'staticsX') then - { - for "_i" from 0 to (count _varvalue) - 1 do - { + {_x setPos _posHQ} forEach ((call A3A_fnc_playableUnits) select {side _x == teamPlayer}); + }; + if (_varname == 'staticsX') then { + for "_i" from 0 to (count _varvalue) - 1 do { _typeVehX = _varvalue select _i select 0; _posVeh = _varvalue select _i select 1; _dirVeh = _varvalue select _i select 2; _veh = createVehicle [_typeVehX,[0,0,1000],[],0,"NONE"]; _veh setDir _dirVeh;_veh setDir _dirVeh; - _veh setPos _posVeh; - _veh setVectorUp surfaceNormal (getPos _veh); - if ((_veh isKindOf "StaticWeapon") or (_veh isKindOf "Building")) then - { + _veh setVectorUp surfaceNormal (_posVeh); + _veh setPosATL _posVeh; + if ((_veh isKindOf "StaticWeapon") or (_veh isKindOf "Building")) then { staticsToSave pushBack _veh; - }; - [_veh] call A3A_fnc_AIVEHinit; }; - publicVariable "staticsToSave"; + [_veh] call A3A_fnc_AIVEHinit; }; - if(_varname == 'tasks') then - { + publicVariable "staticsToSave"; + }; + if (_varname == 'tasks') then { { - if (_x == "AttackAAF") then - { - [] call A3A_fnc_attackAAF; - } - else - { - if (_x == "DEF_HQ") then - { - [] spawn A3A_fnc_attackHQ; - } - else - { - [_x,true] call A3A_fnc_missionRequest; + if (_x == "rebelAttack") then { + [] call A3A_fnc_rebelAttack; + } else { + if (_x == "DEF_HQ") then { + [] spawn A3A_fnc_attackHQ; + } else { + [_x,true] call A3A_fnc_missionRequest; }; }; } forEach _varvalue; - }; - } - else - { + }; + } else { call compile format ["%1 = %2",_varName,_varValue]; }; }; diff --git a/A3-Antistasi/statSave/saveLoop.sqf b/A3-Antistasi/statSave/saveLoop.sqf index 8f7f120fc2..a03567aad3 100644 --- a/A3-Antistasi/statSave/saveLoop.sqf +++ b/A3-Antistasi/statSave/saveLoop.sqf @@ -15,7 +15,9 @@ private ["_garrison"]; ["bombRuns", bombRuns] call fn_SaveStat; ["smallCAmrk", smallCAmrk] call fn_SaveStat; ["membersX", membersX] call fn_SaveStat; -["antennas", antennasDead] call fn_SaveStat; +private _antennasDeadPositions = []; +{ _antennasDeadPositions pushBack getPos _x; } forEach antennasDead; +["antennas", _antennasDeadPositions] call fn_SaveStat; //["mrkNATO", (markersX - controlsX) select {sidesX getVariable [_x,sideUnknown] == Occupants}] call fn_SaveStat; ["mrkSDK", (markersX - controlsX - outpostsFIA) select {sidesX getVariable [_x,sideUnknown] == teamPlayer}] call fn_SaveStat; ["mrkCSAT", (markersX - controlsX) select {sidesX getVariable [_x,sideUnknown] == Invaders}] call fn_SaveStat; @@ -24,64 +26,44 @@ private ["_garrison"]; ["prestigeCSAT", prestigeCSAT] call fn_SaveStat; ["dateX", date] call fn_SaveStat; ["skillFIA", skillFIA] call fn_SaveStat; -["destroyedCities", destroyedCities] call fn_SaveStat; +["destroyedSites", destroyedSites] call fn_SaveStat; ["distanceSPWN", distanceSPWN] call fn_SaveStat; ["civPerc", civPerc] call fn_SaveStat; ["chopForest", chopForest] call fn_SaveStat; ["maxUnits", maxUnits] call fn_SaveStat; ["nextTick", nextTick - time] call fn_SaveStat; -/* -["unlockedWeapons", unlockedWeapons] call fn_SaveStat; -["unlockedItems", unlockedItems] call fn_SaveStat; -["unlockedMagazines", unlockedMagazines] call fn_SaveStat; -["unlockedBackpacks", unlockedBackpacks] call fn_SaveStat; -*/ ["weather",[fogParams,rain]] call fn_SaveStat; ["destroyedBuildings",destroyedBuildings] call fn_SaveStat; -//["firstLoad",false] call fn_SaveStat; + private ["_hrBackground","_resourcesBackground","_veh","_typeVehX","_weaponsX","_ammunition","_items","_backpcks","_containers","_arrayEst","_posVeh","_dierVeh","_prestigeOPFOR","_prestigeBLUFOR","_city","_dataX","_markersX","_garrison","_arrayMrkMF","_arrayOutpostsFIA","_positionOutpost","_typeMine","_posMine","_detected","_typesX","_exists","_friendX"]; _hrBackground = (server getVariable "hr") + ({(alive _x) and (not isPlayer _x) and (_x getVariable ["spawner",false]) and ((group _x in (hcAllGroups theBoss) or (isPlayer (leader _x))) and (side group _x == teamPlayer))} count allUnits); _resourcesBackground = server getVariable "resourcesFIA"; -/* -_weaponsX = []; -_ammunition = []; -_items = []; -_backpcks = [];*/ _vehInGarage = []; _vehInGarage = _vehInGarage + vehInGarage; { -_friendX = _x; -if ((_friendX getVariable ["spawner",false]) and (side group _friendX == teamPlayer))then - { - if ((alive _friendX) and (!isPlayer _friendX)) then - { - if (((isPlayer leader _friendX) and (!isMultiplayer)) or (group _friendX in (hcAllGroups theBoss)) and (not((group _friendX) getVariable ["esNATO",false]))) then - { - _resourcesBackground = _resourcesBackground + (server getVariable [(typeOf _friendX),0]); - _backpck = backpack _friendX; - if (_backpck != "") then - { - switch (_backpck) do - { - case MortStaticSDKB: {_resourcesBackground = _resourcesBackground + ([SDKMortar] call A3A_fnc_vehiclePrice)}; - case AAStaticSDKB: {_resourcesBackground = _resourcesBackground + ([staticAAteamPlayer] call A3A_fnc_vehiclePrice)}; - case MGStaticSDKB: {_resourcesBackground = _resourcesBackground + ([SDKMGStatic] call A3A_fnc_vehiclePrice)}; - case ATStaticSDKB: {_resourcesBackground = _resourcesBackground + ([staticATteamPlayer] call A3A_fnc_vehiclePrice)}; + _friendX = _x; + if ((_friendX getVariable ["spawner",false]) and (side group _friendX == teamPlayer))then { + if ((alive _friendX) and (!isPlayer _friendX)) then { + if (((isPlayer leader _friendX) and (!isMultiplayer)) or (group _friendX in (hcAllGroups theBoss)) and (not((group _friendX) getVariable ["esNATO",false]))) then { + _resourcesBackground = _resourcesBackground + (server getVariable [(typeOf _friendX),0]); + _backpck = backpack _friendX; + if (_backpck != "") then { + switch (_backpck) do { + case MortStaticSDKB: {_resourcesBackground = _resourcesBackground + ([SDKMortar] call A3A_fnc_vehiclePrice)}; + case AAStaticSDKB: {_resourcesBackground = _resourcesBackground + ([staticAAteamPlayer] call A3A_fnc_vehiclePrice)}; + case MGStaticSDKB: {_resourcesBackground = _resourcesBackground + ([SDKMGStatic] call A3A_fnc_vehiclePrice)}; + case ATStaticSDKB: {_resourcesBackground = _resourcesBackground + ([staticATteamPlayer] call A3A_fnc_vehiclePrice)}; }; }; - if (vehicle _friendX != _friendX) then - { - _veh = vehicle _friendX; - _typeVehX = typeOf _veh; - if (not(_veh in staticsToSave)) then - { - if ((_veh isKindOf "StaticWeapon") or (driver _veh == _friendX)) then - { - if ((group _friendX in (hcAllGroups theBoss)) or (!isMultiplayer)) then - { - _resourcesBackground = _resourcesBackground + ([_typeVehX] call A3A_fnc_vehiclePrice); - if (count attachedObjects _veh != 0) then {{_resourcesBackground = _resourcesBackground + ([typeOf _x] call A3A_fnc_vehiclePrice)} forEach attachedObjects _veh}; + if (vehicle _friendX != _friendX) then { + _veh = vehicle _friendX; + _typeVehX = typeOf _veh; + if (not(_veh in staticsToSave)) then { + if ((_veh isKindOf "StaticWeapon") or (driver _veh == _friendX)) then { + if ((group _friendX in (hcAllGroups theBoss)) or (!isMultiplayer)) then { + _resourcesBackground = _resourcesBackground + ([_typeVehX] call A3A_fnc_vehiclePrice); + if (count attachedObjects _veh != 0) then {{_resourcesBackground = _resourcesBackground + ([typeOf _x] call A3A_fnc_vehiclePrice)} forEach attachedObjects _veh}; }; }; }; @@ -98,32 +80,22 @@ if ((_friendX getVariable ["spawner",false]) and (side group _friendX == teamPla _arrayEst = []; { -_veh = _x; -_typeVehX = typeOf _veh; -if ((_veh distance getMarkerPos respawnTeamPlayer < 50) and !(_veh in staticsToSave) and !(_typeVehX in ["ACE_SandbagObject","Land_PaperBox_01_open_boxes_F","Land_PaperBox_01_open_empty_F"])) then - { - if (((not (_veh isKindOf "StaticWeapon")) and (not (_veh isKindOf "ReammoBox")) and (not (_veh isKindOf "FlagCarrier")) and (not(_veh isKindOf "Building"))) and (not (_typeVehX == "C_Van_01_box_F")) and (count attachedObjects _veh == 0) and (alive _veh) and ({(alive _x) and (!isPlayer _x)} count crew _veh == 0) and (not(_typeVehX == "WeaponHolderSimulated"))) then - { - _posVeh = getPos _veh; - _dirVeh = getDir _veh; - _arrayEst pushBack [_typeVehX,_posVeh,_dirVeh]; + _veh = _x; + _typeVehX = typeOf _veh; + if ((_veh distance getMarkerPos respawnTeamPlayer < 50) and !(_veh in staticsToSave) and !(_typeVehX in ["ACE_SandbagObject","Land_PaperBox_01_open_boxes_F","Land_PaperBox_01_open_empty_F"])) then { + if (((not (_veh isKindOf "StaticWeapon")) and (not (_veh isKindOf "ReammoBox")) and (not (_veh isKindOf "FlagCarrier")) and (not(_veh isKindOf "Building"))) and (not (_typeVehX == "C_Van_01_box_F")) and (count attachedObjects _veh == 0) and (alive _veh) and ({(alive _x) and (!isPlayer _x)} count crew _veh == 0) and (not(_typeVehX == "WeaponHolderSimulated"))) then { + _posVeh = getPos _veh; + _dirVeh = getDir _veh; + _arrayEst pushBack [_typeVehX,_posVeh,_dirVeh]; }; }; } forEach vehicles - [boxX,flagX,fireX,vehicleBox,mapX]; _sites = markersX select {sidesX getVariable [_x,sideUnknown] == teamPlayer}; { -_positionX = position _x; -if ((alive _x) and !(surfaceIsWater _positionX) and !(isNull _x)) then - { - _arrayEst pushBack [typeOf _x,getPos _x,getDir _x]; - /* - _nearX = [_sites,_positionX] call BIS_fnc_nearestPosition; - if (_positionX inArea _nearX) then - { - _arrayEst pushBack [typeOf _x,getPos _x,getDir _x] - }; - */ + _positionX = position _x; + if ((alive _x) and !(surfaceIsWater _positionX) and !(isNull _x)) then { + _arrayEst pushBack [typeOf _x,getPosATL _x,getDir _x]; }; } forEach staticsToSave; @@ -138,10 +110,10 @@ _prestigeOPFOR = []; _prestigeBLUFOR = []; { -_city = _x; -_dataX = server getVariable _city; -_prestigeOPFOR = _prestigeOPFOR + [_dataX select 2]; -_prestigeBLUFOR = _prestigeBLUFOR + [_dataX select 3]; + _city = _x; + _dataX = server getVariable _city; + _prestigeOPFOR = _prestigeOPFOR + [_dataX select 2]; + _prestigeBLUFOR = _prestigeBLUFOR + [_dataX select 3]; } forEach citiesX; ["prestigeOPFOR", _prestigeOPFOR] call fn_SaveStat; @@ -149,40 +121,38 @@ _prestigeBLUFOR = _prestigeBLUFOR + [_dataX select 3]; _markersX = markersX - outpostsFIA - controlsX; _garrison = []; +_wurzelGarrison = []; + { -_garrison pushBack [_x,garrison getVariable [_x,[]]]; + _garrison pushBack [_x,garrison getVariable [_x,[]]]; + _wurzelGarrison pushBack [ + _x, + garrison getVariable [format ["%1_garrison",_x], []], + garrison getVariable [format ["%1_requested",_x], []], + garrison getVariable [format ["%1_over", _x], []] + ]; } forEach _markersX; ["garrison",_garrison] call fn_SaveStat; -/* -_arrayMrkMF = []; - -{ -_posMineF = getMarkerPos _x; -_arrayMrkMF = _arrayMrkMF + [_posMineF]; -} forEach minefieldMrk; +["wurzelGarrison", _wurzelGarrison] call fn_SaveStat; +["usesWurzelGarrison", true] call fn_SaveStat; -["mineFieldMrk", _arrayMrkMF] call fn_SaveStat; -*/ _arrayMines = []; { -_typeMine = typeOf _x; -_posMine = getPos _x; -_dirMine = getDir _x; -_detected = []; -if (_x mineDetectedBy teamPlayer) then - { - _detected pushBack teamPlayer + _typeMine = typeOf _x; + _posMine = getPos _x; + _dirMine = getDir _x; + _detected = []; + if (_x mineDetectedBy teamPlayer) then { + _detected pushBack teamPlayer }; -if (_x mineDetectedBy Occupants) then - { - _detected pushBack Occupants + if (_x mineDetectedBy Occupants) then { + _detected pushBack Occupants }; -if (_x mineDetectedBy Invaders) then - { - _detected pushBack Invaders + if (_x mineDetectedBy Invaders) then { + _detected pushBack Invaders }; -_arrayMines = _arrayMines + [[_typeMine,_posMine,_detected,_dirMine]]; + _arrayMines = _arrayMines + [[_typeMine,_posMine,_detected,_dirMine]]; } forEach allMines; ["minesX", _arrayMines] call fn_SaveStat; @@ -190,46 +160,43 @@ _arrayMines = _arrayMines + [[_typeMine,_posMine,_detected,_dirMine]]; _arrayOutpostsFIA = []; { -_positionOutpost = getMarkerPos _x; -_arrayOutpostsFIA pushBack [_positionOutpost,garrison getVariable [_x,[]]]; + _positionOutpost = getMarkerPos _x; + _arrayOutpostsFIA pushBack [_positionOutpost,garrison getVariable [_x,[]]]; } forEach outpostsFIA; ["outpostsFIA", _arrayOutpostsFIA] call fn_SaveStat; -if (!isDedicated) then - { +if (!isDedicated) then { _typesX = []; { - if ([_x] call BIS_fnc_taskExists) then - { - _state = [_x] call BIS_fnc_taskState; - if (_state == "CREATED") then - { - _typesX pushBackUnique _x; + if ([_x] call BIS_fnc_taskExists) then { + _state = [_x] call BIS_fnc_taskState; + if (_state == "CREATED") then { + _typesX pushBackUnique _x; }; }; - } forEach ["AS","CON","DES","LOG","RES","CONVOY","DEF_HQ","AttackAAF"]; + } forEach ["AS","CON","DES","LOG","RES","CONVOY","DEF_HQ","rebelAttack","invaderPunish"]; ["tasks",_typesX] call fn_SaveStat; - }; +}; _dataX = []; { -_dataX pushBack [_x,server getVariable _x]; + _dataX pushBack [_x,server getVariable _x]; } forEach airportsX + outposts; ["idlebases",_dataX] call fn_SaveStat; _dataX = []; { -_dataX pushBack [_x,timer getVariable _x]; + _dataX pushBack [_x,timer getVariable _x]; } forEach (vehAttack + vehNATOAttackHelis + vehPlanes + vehCSATAttackHelis); ["idleassets",_dataX] call fn_SaveStat; _dataX = []; { -_dataX pushBack [_x,killZones getVariable [_x,[]]]; + _dataX pushBack [_x,killZones getVariable [_x,[]]]; } forEach airportsX + outposts; ["killZones",_dataX] call fn_SaveStat; @@ -239,4 +206,4 @@ _controlsX = controlsX select {(sidesX getVariable [_x,sideUnknown] == teamPlaye savingServer = false; [[petros,"hint",format ["Savegame Done.\n\nYou won't lose your stats in the event of a game update.\n\nRemember: if you want to preserve any vehicle, it must be near the HQ Flag with no AI inside.\nIf AI are inside, you will save the funds you spent on it.\n\nAI will be refunded\n\nStolen and purchased Static Weapons need to be ASSEMBLED in order to be saved. You can save disassembled Static Weapons in the ammo box.\n\nMounted Statics (Mortar/AA/AT squads) won't get saved, but you will be able to recover the cost.\n\nSame for assigned vehicles more than 50m away from HQ.\n\n%1 fund count:\nHR: %2\nMoney: %3 ā‚¬",nameTeamPlayer,_hrBackground,_resourcesBackground]],"A3A_fnc_commsMP"] call BIS_fnc_MP; -diag_log format ["%1: [Antistasi] | INFO | Persistent Save Completed.",servertime]; \ No newline at end of file +diag_log format ["%1: [Antistasi] | INFO | Persistent Save Completed.",servertime]; diff --git a/A3-Antistasi/undercover.sqf b/A3-Antistasi/undercover.sqf deleted file mode 100644 index 8395c4e230..0000000000 --- a/A3-Antistasi/undercover.sqf +++ /dev/null @@ -1,257 +0,0 @@ -private ["_player"]; -if (player != player getVariable ["owner",player]) exitWith {hint "You cannot go Undercover while you are controlling AI"}; -_player = player getVariable ["owner",player]; -if (captive _player) exitWith {hint "You are Undercover already"}; - -private ["_compromised","_changeX","_airportsX","_roadblocks","_arrayCivVeh","_player","_size","_base","_onDetectionMarker","_onBaseMarker","_airportSide"]; - -_changeX = ""; -_roadblocks = (controlsX select {isOnRoad (getMarkerPos _x)}); -_airportsX = airportsX + outposts + _roadblocks; -_airportsX1 = airportsX; -_arrayCivVeh = arrayCivVeh + [civHeli] + civBoats; -_compromised = _player getVariable "compromised"; - - - -if (vehicle _player != _player) then - { - if (not(typeOf(vehicle _player) in _arrayCivVeh)) then - { - hint "You are not in a civilian vehicle"; - _changeX = "Init" - }; - if (vehicle _player in reportedVehs) then - { - hint "This vehicle has been reported to the enemy. Change or renew your vehicle in the Garage to go Undercover"; - _changeX = "Init"; - }; - } -else - { - if ((primaryWeapon _player != "") or (secondaryWeapon _player != "") or (handgunWeapon _player != "") or (vest _player != "") or (getNumber (configfile >> "CfgWeapons" >> headgear _player >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") > 2) or (hmd _player != "") or (not(uniform _player in civUniforms))) then - { - hint "You cannot go Undercover while:\n\nA weapon is visible\nWearing a vest\nWearing a helmet\nWearing NVGs\nWearing a mil uniform"; - _changeX = "Init"; - }; - if (dateToNumber date < _compromised) then - { - hint "You have been reported in the last 30 minutes therefore you cannot go Undercover"; - _changeX = "Init"; - }; - }; - -if (_changeX != "") exitWith {}; - -if ({((side _x== Invaders) or (side _x== Occupants)) and (((_x knowsAbout _player > 1.4) and (_x distance _player < 500)) or (_x distance _player < 350))} count allUnits > 0) exitWith - { - hint "You cannot go Undercover while enemies are spotting you"; - if (vehicle _player != _player) then - { - { - if ((isPlayer _x) and (captive _x)) then {[_x,false] remoteExec ["setCaptive"]; _x setCaptive false; reportedVehs pushBackUnique (vehicle _player); publicVariable "reportedVehs"} - } forEach ((crew (vehicle _player)) + (assignedCargo (vehicle _player)) - [_player]); - }; - }; - -_base = [_airportsX,_player] call BIS_fnc_nearestPosition; -_size = [_base] call A3A_fnc_sizeMarker; -if ((_player distance getMarkerPos _base < _size*2) and (not(sidesX getVariable [_base,sideUnknown] == teamPlayer))) exitWith {hint "You cannot go Undercover near Airports, Outposts or Roadblocks"}; - -["Undercover ON",0,0,4,0,0,4] spawn bis_fnc_dynamicText; - -[_player,true] remoteExec ["setCaptive",0,_player]; -_player setCaptive true; -[] spawn A3A_fnc_statistics; -if (_player == leader group _player) then - { - {if ((!isplayer _x) and (local _x) and (_x getVariable ["owner",_x] == _player)) then {[_x] spawn A3A_fnc_undercoverAI}} forEach units group _player; - }; -_isInControl = false; -while {_changeX == ""} do - { - sleep 1; - if (!captive _player) then - { - _changeX = "Reported"; - } - else - { - _veh = vehicle _player; - _typeX = typeOf _veh; - if (_veh != _player) then - { - if (not(_typeX in _arrayCivVeh)) then - { - _changeX = "VNoCivil" - } - else - { - if (_veh in reportedVehs) then - { - _changeX = "VCompromised" - } - else - { - if ((_typeX != civHeli) and (!(_typeX in civBoats))) then - { - if !(isOnRoad position _veh) then - { - if (count (_veh nearRoads 50) == 0) then - { - if ({((side _x== Invaders) or (side _x== Occupants)) and ((_x knowsAbout _player > 1.4) or (_x distance _player < 350))} count allUnits > 0) then {_changeX = "Carretera"}; - }; - }; - if (hasACE) then - { - if (((position _player nearObjects ["DemoCharge_Remote_Ammo", 5]) select 0) mineDetectedBy Occupants) then - { - _changeX = "SpotBombTruck"; - }; - if (((position _player nearObjects ["SatchelCharge_Remote_Ammo", 5]) select 0) mineDetectedBy Occupants) then - { - _changeX = "SpotBombTruck"; - }; - }; - }; - }; - } - } - else - { - if ((primaryWeapon _player != "") or (secondaryWeapon _player != "") or (handgunWeapon _player != "") or (vest _player != "") or (getNumber (configfile >> "CfgWeapons" >> headgear _player >> "ItemInfo" >> "HitpointsProtectionInfo" >> "Head" >> "armor") > 2) or (hmd _player != "") or (not(uniform _player in civUniforms))) then - { - if ({((side _x== Invaders) or (side _x== Occupants)) and ((_x knowsAbout _player > 1.4) or (_x distance _player < 350))} count allUnits > 0) then {_changeX = "clothes2"} else {_changeX = "clothes"}; - }; - if (dateToNumber date < _compromised) then - { - _changeX = "Compromised"; - }; - }; - if (_changeX == "") then - { - if ((_typeX != civHeli) and (!(_typeX in civBoats))) then - { - _base = [_airportsX,_player] call BIS_fnc_nearestPosition; - //_size = [_base] call A3A_fnc_sizeMarker; -//Following lines are for the detection of players in the detectionAreas -_onDetectionMarker = (detectionAreas findIf {_player inArea _x } != -1); -_onBaseMarker = (_player inArea _base); -_airportSide = (sidesX getVariable [_base, sideUnknown]); -_airport = [_airportsX1,_player] call BIS_fnc_nearestPosition; - if(_onBaseMarker && {_airportSide != teamPlayer} || {_onDetectionMarker && {sidesX getVariable _airport != teamPlayer}}) then - { - if !(_isInControl) then - { - _aggro = if (sidesX getVariable [_base,sideUnknown] == Occupants) then {prestigeNATO + (tierWar*10)} else {prestigeCSAT + (tierWar*10)}; - //Probability of being spotted. Unless we're in an airfield - then we're always spotted. - if (_base in _airportsX1 || _onDetectionMarker || random 100 < _aggro) then - { - if (_base in _roadblocks) then - { - _changeX = "distanceX"; - } - else - { - _changeX = "Control"; - }; - } - else - { - _isInControl = true; - }; - }; - } - else - { - _isInControl = false; - }; - } - else - { - if (_typeX == civHeli) then - { - _base = [_airportsX1,_player] call BIS_fnc_nearestPosition; - _size = [_base] call A3A_fnc_sizeMarker; - if ((_player distance2d getMarkerPos _base < _size*3) and ((sidesX getVariable [_base,sideUnknown] == Occupants) or (sidesX getVariable [_base,sideUnknown] == Invaders))) then - { - _changeX = "NoFly"; - }; - }; - }; - }; - }; - }; -diag_log format ["[Antistasi] Player detected in %1 (undercover.sqf)", _onDetectionMarker]; - -if (captive _player) then {[_player,false] remoteExec ["setCaptive"]; _player setCaptive false}; - -if (vehicle _player != _player) then - { - {if (isPlayer _x) then {[_x,false] remoteExec ["setCaptive",0,_x]; _x setCaptive false}} forEach ((assignedCargo (vehicle _player)) + (crew (vehicle _player)) - [_player]); - }; - -["Undercover OFF",0,0,4,0,0,4] spawn bis_fnc_dynamicText; -[] spawn A3A_fnc_statistics; -switch _changeX do - { - case "Reported": - { - hint "You have been reported or spotted by the enemy"; - //_compromised = _player getVariable "compromised"; - if (vehicle _player != _player) then - { - //_player setVariable ["compromised",[_compromised select 0,vehicle _player]]; - reportedVehs pushBackUnique (vehicle _player); publicVariable "reportedVehs"; - } - else - { - _player setVariable ["compromised",(dateToNumber [date select 0, date select 1, date select 2, date select 3, (date select 4) + 30])]; - }; - }; - case "VNoCivil": {hint "You entered a non civilian vehicle"}; - case "VCompromised": {hint "You entered in a reported vehicle"}; - case "SpotBombTruck": - { - hint "Explosives have been spotted on your vehicle"; - reportedVehs pushBackUnique (vehicle _player); publicVariable "reportedVehs"; - }; - case "Carretera": - { - hint "You went too far away from any roads and have been spotted"; - reportedVehs pushBackUnique (vehicle _player); publicVariable "reportedVehs"; - }; - case "clothes": {hint "You cannot stay Undercover while:\n\nA weapon is visible\nWearing a vest\nWearing a helmet\nWearing NVGs\nWearing a mil uniform"}; - case "clothes2": - { - hint "You cannot stay Undercover while showing:\n\nA weapon is visible\nWearing a vest\nWearing a helmet\nWearing NVGs\nWearing a mil uniform\n\nThe enemy added you to their Wanted List"; - _player setVariable ["compromised",dateToNumber [date select 0, date select 1, date select 2, date select 3, (date select 4) + 30]]; - }; - case "Compromised": {hint "You left your vehicle and you are still on the Wanted List"}; - case "distanceX": - { - hint "You have gotten too close to an enemy Base, Outpost or Roadblock"; - //_compromised = _player getVariable "compromised"; - if (vehicle _player != _player) then - { - //_player setVariable ["compromised",[_compromised select 0,vehicle _player]]; - reportedVehs pushBackUnique (vehicle _player); publicVariable "reportedVehs"; - } - else - { - _player setVariable ["compromised",(dateToNumber [date select 0, date select 1, date select 2, date select 3, (date select 4) + 30])]; - }; - }; - case "NoFly": - { - hint "You have gotten too close to an enemy Airbase no-fly zone"; - //_compromised = _player getVariable "compromised"; - reportedVehs pushBackUnique (vehicle _player); publicVariable "reportedVehs"; - }; - case "Control": - { - hint "The Roadblock Garrison has recognised you"; - //_compromised = _player getVariable "compromised"; - reportedVehs pushBackUnique (vehicle _player); publicVariable "reportedVehs"; - }; - }; diff --git a/LICENSE b/LICENSE index 6d17c25841..cd8ea87a9a 100644 --- a/LICENSE +++ b/LICENSE @@ -19,3 +19,22 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + +PLEASE NOTE THAT FOLLOWING INTEGRATED SCRIPTS, FOLDERS AND FILES ARE UNDER A DIFFERENT LICENSE: + +Snow Storm Script by aliascartoons + + located in: + - A3-Antistasi\Map-Templates\Antistasi-ChernarusWinter.chernarus_winter\AL_snowstorm + - A3-Antistasi\Map-Templates\Antistasi-ChernarusWinter.chernarus_winter\sound + + License: + As from what we can see his script is not published under a certain license. Nevertheless, it was posted and published with following "License / Disclaimer": + "You can use, adapt and/or modify the script as you see fit. + DO NOT INCORPORATE THIS SCRIPT OR PORTIONS OF IT IN MONETIZED PRODUCTS OR SERVERS WITHOUT ASKING FOR PERMISSION AND OBTAINING APPROVAL FROM ME!!!" + + You can find more information to this script behind following links: + - http://www.armaholic.com/page.php?id=31841 + - https://steamcommunity.com/sharedfiles/filedetails/?id=786813177 diff --git a/A3-Antistasi/PIC.jpg b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/PIC.jpg similarity index 100% rename from A3-Antistasi/PIC.jpg rename to Map-Templates/Antistasi-Altis-BLUFOR.Altis/PIC.jpg diff --git a/Map-Templates/Antistasi-Altis-BLUFOR.Altis/description.ext b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/description.ext new file mode 100755 index 0000000000..b741042811 --- /dev/null +++ b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_altisB_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_altis_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_altisB_mapname_text; +overviewText = $STR_antistasi_mission_info_altis_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Altis is Ours!"; + description = "The population of Altis loves you!
The brave soldiers have proven their valour, and Petros, Altis new Prime Minister, could at last to have a nice holidays. 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 rebels without a leader, you may think about joining them, and free Altis"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Altis is Destroyed"; + subtitle = "Altis got Destroyed by OPFOR"; + description = "One third of the population in Altis has been murdered by the OPFOR.
Altis no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/Map-Templates/Antistasi-Altis-BLUFOR.Altis/mission.sqm b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/mission.sqm new file mode 100755 index 0000000000..16bd68d176 --- /dev/null +++ b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/mission.sqm @@ -0,0 +1,14043 @@ +version=53; +class EditorData +{ + moveGridStep=1; + angleGridStep=0.2617994; + scaleGridStep=1; + autoGroupingDist=10; + toggles=514; + class ItemIDProvider + { + nextID=2964; + }; + class MarkerIDProvider + { + nextID=176; + }; + class LayerIndexProvider + { + nextID=498; + }; + class Camera + { + pos[]={13556.234,41.887928,12059.663}; + dir[]={-0.66024649,-0.60780692,0.44120061}; + up[]={-0.5053609,0.79408169,0.33770081}; + aside[]={0.55560595,1.5355181e-007,0.83145243}; + }; +}; +binarizationWanted=0; +addons[]= +{ + "A3_Ui_F", + "A3_Weapons_F_Ammoboxes", + "A3_Modules_F", + "A3_Characters_F", + "A3_Structures_F_EPC_Civ_InfoBoards", + "A3_Weapons_F", + "A3_Structures_F_Mil_Flags", + "A3_Ui_F_Exp", + "A3_Characters_F_Exp", + "A3_Props_F_Enoch_Military_Camps", + "A3_Modules_F_Curator_Curator", + "A3_Structures_F_Ind_AirPort", + "A3_Structures_F_Mil_Cargo", + "A3_Structures_F_Mil_TentHangar", + "A3_Structures_F_Exp_Infrastructure_Airports", + "A3_Structures_F_Exp_Military_Flags", + "A3_Structures_F_Mil_Helipads", + "A3_Structures_F_Mil_Fortification", + "A3_Structures_F_Walls", + "A3_Structures_F_Ind_Transmitter_Tower", + "A3_Structures_F_Ind_Cargo", + "A3_Modules_F_Hc" +}; +class AddonsMetaData +{ + class List + { + items=14; + class Item0 + { + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item1 + { + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item2 + { + className="A3_Modules_F"; + name="Arma 3 Alpha - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item3 + { + className="A3_Characters_F"; + name="Arma 3 Alpha - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item4 + { + className="A3_Structures_F_EPC"; + name="Arma 3 Win Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item5 + { + className="A3_Structures_F_Mil"; + name="Arma 3 - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item6 + { + className="A3_Ui_F_Exp"; + name="Arma 3 Apex - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item7 + { + className="A3_Characters_F_Exp"; + name="Arma 3 Apex - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item8 + { + className="A3_Props_F_Enoch"; + name="Arma 3 Enoch - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item9 + { + className="A3_Modules_F_Curator"; + name="Arma 3 Zeus Update - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item10 + { + className="A3_Structures_F_Ind"; + name="Arma 3 - Industrial Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item11 + { + className="A3_Structures_F_Exp_Infrastructure"; + name="Arma 3 Apex - Infrastructure Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item12 + { + className="A3_Structures_F_Exp"; + name="Arma 3 Apex - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item13 + { + className="A3_Structures_F"; + name="Arma 3 - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + }; +}; +randomSeed=8109385; +class Mission +{ + class Intel + { + briefingName=$STR_antistasi_mission_info_altisB_mapname_text; + resistanceWest=0; + year=2035; + month=6; + day=1; + hour=10; + minute=0; + + }; + class Entities + { + items=412; + class Item0 + { + dataType="Marker"; + position[]={3605.7151,17.347,10279.321}; + name="Synd_HQ"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorPink"; + a=50; + b=50; + id=933; + atlOffset=1.603302; + }; + class Item1 + { + dataType="Marker"; + position[]={3607.0481,2.7037606e+012,10281.5}; + name="respawn_west"; + text="Your Headquarters"; + type="hd_flag"; + colorName="ColorWEST"; + id=934; + atlOffset=2.7037606e+012; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3611.6396,16.176582,10280.448}; + angles[]={6.2725158,0,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="vehicleBox"; + }; + id=935; + type="Box_East_AmmoVeh_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={3603.4663,15.792626,10272.64}; + angles[]={6.2631893,0,6.2485328}; + }; + name="server"; + id=939; + type="Logic"; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={3605.0405,15.709817,10271.228}; + angles[]={6.2631893,0,6.2485328}; + }; + name="garrison"; + id=940; + type="Logic"; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={3606.8276,15.619447,10269.807}; + angles[]={6.2631893,0,6.2485328}; + }; + name="spawner"; + id=941; + type="Logic"; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={3599.2339,15.983887,10269.939}; + angles[]={6.2818413,0,6.2431998}; + }; + name="hc"; + isPlayable=1; + id=942; + type="HeadlessClient_F"; + }; + class Item7 + { + dataType="Logic"; + class PositionInfo + { + position[]={3608.7026,15.474901,10268.476}; + angles[]={6.2631893,0,6.2046809}; + }; + name="roadsX"; + id=945; + type="Logic"; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={3610.1187,15.338509,10267.392}; + angles[]={6.2325621,0,6.2046804}; + }; + name="timer"; + id=949; + type="Logic"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={3610.7017,16.36245,10275.696}; + angles[]={0.014664836,0,6.213963}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=950; + type="IG_supplyCrate_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + nAttributes=1; + }; + }; + class Item10 + { + dataType="Logic"; + class PositionInfo + { + position[]={3611.3882,15.175223,10266.14}; + angles[]={6.2325621,0,6.2046804}; + }; + name="sidesX"; + id=1010; + type="Logic"; + }; + class Item11 + { + dataType="Logic"; + class PositionInfo + { + position[]={3612.2993,15.061396,10265.308}; + angles[]={6.2325621,0,6.2046804}; + }; + name="killZones"; + id=1011; + type="Logic"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3604.6182,16.735788,10282.353}; + angles[]={0.014664836,0,6.2232571}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="mapX"; + }; + id=1098; + type="MapBoard_seismic_F"; + }; + class Item13 + { + dataType="Marker"; + position[]={13537.383,17.983999,12063.334}; + name="respawn_guerrila"; + type="flag_Altis"; + id=1390; + atlOffset=4.0481062; + }; + class Item14 + { + dataType="Group"; + side="West"; + class Entities + { + items=60; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3606.198,15.751395,10275.502}; + }; + side="West"; + flags=7; + class Attributes + { + name="commanderX"; + description="Default Commander"; + isPlayer=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1487; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={3611.3052,15.357435,10272.316}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1492; + type="B_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.7786,14.942623,10277.655}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1502; + type="B_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={3623.3313,14.7978,10277.673}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1504; + type="B_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.3606,14.680888,10277.655}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1506; + type="B_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={3629.23,14.596958,10277.691}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1508; + type="B_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.9236,14.522006,10277.673}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1510; + type="B_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={3618.2109,15.07185,10277.62}; + }; + side="West"; + flags=5; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1512; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.6335,14.914344,10280.802}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1514; + type="B_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={3623.1863,14.765662,10280.819}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1516; + type="B_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.2156,14.677603,10280.802}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1518; + type="B_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={3629.085,14.608832,10280.838}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1520; + type="B_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.7786,14.536454,10280.819}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1522; + type="B_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3618.0659,15.082511,10280.767}; + }; + side="West"; + flags=5; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1524; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.5249,14.972713,10283.839}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1526; + type="B_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={3623.0776,14.776744,10283.856}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1528; + type="B_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.1069,14.703787,10283.839}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1530; + type="B_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.9763,14.635045,10283.875}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1532; + type="B_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.6699,14.622231,10283.856}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1534; + type="B_G_Soldier_GL_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.9573,15.138463,10283.804}; + }; + side="West"; + flags=5; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1536; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.4529,15.050589,10286.695}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1538; + type="B_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={3623.0056,14.820369,10286.713}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1540; + type="B_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.0349,14.747169,10286.695}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1542; + type="B_G_medic_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.9043,14.674952,10286.731}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1544; + type="B_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.5979,14.65974,10286.713}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1546; + type="B_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.8853,15.303119,10286.66}; + }; + side="West"; + flags=5; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1548; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.4165,15.095855,10289.518}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1550; + type="B_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.9692,14.862626,10289.535}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1552; + type="B_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.9985,14.785713,10289.518}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1554; + type="B_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.8679,14.713508,10289.554}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1556; + type="B_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.5615,14.698468,10289.535}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1558; + type="B_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.8489,15.369222,10289.482}; + }; + side="West"; + flags=5; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1560; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.5378,15.507857,10292.378}; + }; + side="West"; + flags=1; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1583; + type="B_G_Soldier_AR_F"; + atlOffset=0.31138611; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={3623.0906,15.274629,10292.396}; + }; + side="West"; + flags=1; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1585; + type="B_G_Soldier_LAT_F"; + atlOffset=0.31738853; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.1199,15.197716,10292.378}; + }; + side="West"; + flags=1; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1587; + type="B_G_medic_F"; + atlOffset=0.31792545; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.9893,15.12551,10292.414}; + }; + side="West"; + flags=1; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1589; + type="B_G_engineer_F"; + atlOffset=0.33147812; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.6829,15.110471,10292.396}; + }; + side="West"; + flags=1; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1591; + type="B_G_Soldier_GL_F"; + atlOffset=0.33759689; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.9702,15.781224,10292.343}; + }; + side="West"; + flags=1; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1593; + type="B_G_officer_F"; + atlOffset=0.3096056; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.4919,15.320822,10294.948}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1595; + type="B_G_Soldier_AR_F"; + atlOffset=0.019706726; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={3623.0447,15.087593,10294.966}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1597; + type="B_G_Soldier_LAT_F"; + atlOffset=0.029860497; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.074,15.01068,10294.948}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1599; + type="B_G_medic_F"; + atlOffset=0.040740967; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.9434,14.938475,10294.984}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1601; + type="B_G_engineer_F"; + atlOffset=0.070830345; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.637,14.923435,10294.966}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1603; + type="B_G_Soldier_GL_F"; + atlOffset=0.07905674; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.9243,15.594189,10294.913}; + }; + side="West"; + flags=5; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1605; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.3542,15.447033,10297.748}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1607; + type="B_G_Soldier_AR_F"; + atlOffset=0.019241333; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.907,15.213804,10297.766}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1609; + type="B_G_Soldier_LAT_F"; + atlOffset=0.048957825; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.9363,15.136891,10297.748}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1611; + type="B_G_medic_F"; + atlOffset=0.081747055; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.8057,15.064686,10297.784}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1613; + type="B_G_engineer_F"; + atlOffset=0.11147594; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.4993,15.049646,10297.766}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1615; + type="B_G_Soldier_GL_F"; + atlOffset=0.094394684; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.7866,15.7204,10297.713}; + }; + side="West"; + flags=5; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1617; + type="B_G_officer_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.4919,15.557705,10300.18}; + }; + side="West"; + flags=5; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1619; + type="B_G_Soldier_AR_F"; + atlOffset=0.028369904; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={3623.0447,15.324476,10300.197}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1621; + type="B_G_Soldier_LAT_F"; + atlOffset=0.07380867; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.074,15.247563,10300.18}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1623; + type="B_G_medic_F"; + atlOffset=0.1065979; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.9434,15.175358,10300.216}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1625; + type="B_G_engineer_F"; + atlOffset=0.093374252; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.637,15.160318,10300.197}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1627; + type="B_G_Soldier_GL_F"; + atlOffset=0.045767784; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.9243,15.831072,10300.145}; + }; + side="West"; + flags=5; + class Attributes + { + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1629; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.4502,14.762181,10272.334}; + }; + side="West"; + flags=5; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1500; + type="B_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.7566,14.877787,10272.353}; + }; + side="West"; + flags=5; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1498; + type="B_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={3616.8872,15.00565,10272.316}; + }; + side="West"; + flags=5; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1496; + type="B_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={3613.8579,15.180957,10272.334}; + }; + side="West"; + flags=5; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1494; + type="B_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1486; + class CustomAttributes + { + class Attribute0 + { + property="groupID"; + expression="_this setGroupID [_value];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Guerillas"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3600.1211,15.997869,10278.858}; + angles[]={0,2.0248263,0}; + }; + side="West"; + flags=7; + class Attributes + { + name="petros"; + }; + id=1488; + type="B_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.05; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1489; + class CustomAttributes + { + class Attribute0 + { + property="groupID"; + expression="_this setGroupID [_value];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Petros"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={3608.8811,19.602364,10284.22}; + angles[]={6.2272439,0,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="flagX"; + }; + id=1490; + type="Flag_FIA_F"; + atlOffset=9.5367432e-007; + }; + class Item17 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={13537.176,16.839275,12079.607}; + }; + side="Independent"; + flags=3; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_green_1"; + isPlayable=1; + }; + id=1562; + type="I_Soldier_SL_F"; + atlOffset=1.1369991; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={13532.44,16.044815,12074.052}; + }; + side="Independent"; + flags=1; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_green_2"; + isPlayable=1; + }; + id=1563; + type="I_medic_F"; + atlOffset=1.2700014; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={13540.869,15.886252,12074.554}; + }; + side="Independent"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; + name="pvp_green_4"; + isPlayable=1; + }; + id=1564; + type="I_Soldier_M_F"; + atlOffset=-1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={13536.766,15.660179,12076.168}; + }; + side="Independent"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; + name="pvp_green_3"; + isPlayable=1; + }; + id=1649; + type="I_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={13540.1,15.931467,12079.609}; + }; + side="Independent"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; + name="pvp_green_6"; + isPlayable=1; + }; + id=1650; + type="I_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male05GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={13538.076,15.801028,12082.178}; + }; + side="Independent"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; + name="pvp_green_5"; + isPlayable=1; + }; + id=1651; + type="I_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1561; + atlOffset=1.1369991; + }; + class Item18 + { + dataType="Marker"; + position[]={8431.7119,115.93193,25106.738}; + name="respawn_east"; + type="flag_Viper"; + id=1571; + atlOffset=5.68927; + }; + class Item19 + { + dataType="Group"; + side="East"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8430.2979,111.02246,25110.721}; + }; + side="East"; + flags=7; + class Attributes + { + init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_red_1"; + isPlayable=1; + }; + id=1573; + type="O_T_Recon_TL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={8425.4854,110.56212,25106.207}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_red_2"; + isPlayable=1; + }; + id=1574; + type="O_T_Recon_Medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={8434.96,109.85142,25106.357}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; + name="pvp_red_4"; + isPlayable=1; + }; + id=1575; + type="O_T_Recon_M_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={8421.1982,110.12845,25101.018}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; + name="pvp_red_5"; + isPlayable=1; + }; + id=1576; + type="O_T_Recon_LAT_F"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={8436.4316,109.33715,25104.035}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; + name="pvp_red_3"; + isPlayable=1; + }; + id=1644; + type="O_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01PER"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={8433.3594,110.63219,25111.08}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; + name="pvp_red_6"; + isPlayable=1; + }; + id=1646; + type="O_T_Recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1572; + }; + class Item20 + { + dataType="Logic"; + class PositionInfo + { + position[]={3602.1523,15.835608,10267.798}; + angles[]={6.2818413,0,6.2431998}; + }; + name="hc_1"; + isPlayable=1; + id=1633; + type="HeadlessClient_F"; + atlOffset=1.7166138e-005; + }; + class Item21 + { + dataType="Logic"; + class PositionInfo + { + position[]={3605.4236,15.676936,10265.767}; + angles[]={6.2818413,0,6.2431998}; + }; + name="hc_2"; + isPlayable=1; + id=1634; + type="HeadlessClient_F"; + atlOffset=2.9563904e-005; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={3607.073,16.1,10278.632}; + angles[]={0.014660765,0,6.2232509}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=1641; + type="Land_TentSolar_01_olive_F"; + atlOffset=-0.14473438; + }; + class Item23 + { + dataType="Logic"; + class PositionInfo + { + position[]={3593.9009,16.122522,10260.412}; + }; + id=1643; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + }; + nAttributes=4; + }; + }; + class Item24 + { + dataType="Logic"; + class PositionInfo + { + position[]={3613.3989,14.92534,10264.33}; + }; + name="pathfinding"; + id=1652; + type="Logic"; + atlOffset=9.5367432e-007; + }; + class Item25 + { + dataType="Marker"; + position[]={11722.869,-186.03819,4256.5566}; + name="NATO_carrier"; + type="flag_AltisColonial"; + id=23; + }; + class Item26 + { + dataType="Marker"; + position[]={15372.398,-56.407341,14833.389}; + name="seaPatrol_9"; + type="Empty"; + id=176; + atlOffset=3.8146973e-006; + }; + class Item27 + { + dataType="Marker"; + position[]={15388.874,-90.985153,12976.936}; + name="seaPatrol_8"; + type="Empty"; + id=175; + atlOffset=7.6293945e-006; + }; + class Item28 + { + dataType="Marker"; + position[]={15241.775,0,13870.712}; + name="seaAttackSpawn_5"; + type="mil_ambush"; + angle=28.695; + id=1180; + atlOffset=67.766624; + }; + class Item29 + { + dataType="Marker"; + position[]={24070.148,-0.050999999,29143.369}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=22; + atlOffset=185.91901; + }; + class Item30 + { + dataType="Marker"; + position[]={3337.3398,130.54485,17042.906}; + name="seaPatrol"; + type="Empty"; + id=2278; + atlOffset=206.54761; + }; + class Item31 + { + dataType="Marker"; + position[]={3247.0752,100.62038,15367.988}; + name="seaPatrol_1"; + type="Empty"; + id=2279; + atlOffset=207.06781; + }; + class Item32 + { + dataType="Marker"; + position[]={3004.0684,174.38411,13716.562}; + name="seaPatrol_2"; + type="Empty"; + id=2280; + atlOffset=207.08414; + }; + class Item33 + { + dataType="Marker"; + position[]={2779.2949,184.87955,12867.355}; + name="seaPatrol_3"; + type="Empty"; + id=2281; + atlOffset=206.94388; + }; + class Item34 + { + dataType="Marker"; + position[]={2678.4688,179.98424,12424.213}; + name="seaPatrol_4"; + type="Empty"; + id=2282; + atlOffset=206.71344; + }; + class Item35 + { + dataType="Marker"; + position[]={2717.3252,155.85457,10870.713}; + name="seaPatrol_5"; + type="Empty"; + id=2283; + atlOffset=207.29001; + }; + class Item36 + { + dataType="Marker"; + position[]={14518.147,69.005302,9158.7578}; + name="seaPatrol_6"; + type="Empty"; + id=2284; + atlOffset=207.1091; + }; + class Item37 + { + dataType="Marker"; + position[]={13564.181,111.91078,11123.83}; + name="seaPatrol_7"; + type="Empty"; + id=2285; + atlOffset=206.22696; + }; + class Item38 + { + dataType="Marker"; + position[]={15389.546,116.11678,12979.282}; + name="seaPatrol_10"; + type="Empty"; + id=2286; + atlOffset=207.32629; + }; + class Item39 + { + dataType="Marker"; + position[]={15373.07,150.69458,14835.735}; + name="seaPatrol_11"; + type="Empty"; + id=2287; + atlOffset=207.19003; + }; + class Item40 + { + dataType="Marker"; + position[]={27998.807,179.53445,24281.582}; + name="seaPatrol_12"; + type="Empty"; + id=2288; + atlOffset=207.30873; + }; + class Item41 + { + dataType="Marker"; + position[]={28478.389,168.63277,24857.613}; + name="seaPatrol_13"; + type="Empty"; + id=2289; + atlOffset=206.64738; + }; + class Item42 + { + dataType="Marker"; + position[]={28748.992,174.2493,25990.926}; + name="seaPatrol_14"; + type="Empty"; + id=2290; + atlOffset=207.14847; + }; + class Item43 + { + dataType="Marker"; + position[]={27755,165.46266,25878.398}; + name="seaPatrol_15"; + type="Empty"; + id=2291; + atlOffset=207.02464; + }; + class Item44 + { + dataType="Marker"; + position[]={26996.783,176.42392,25465.797}; + name="seaPatrol_16"; + type="Empty"; + id=2292; + atlOffset=206.93188; + }; + class Item45 + { + dataType="Marker"; + position[]={25962.609,186.89674,24431.621}; + name="seaPatrol_17"; + type="Empty"; + id=2293; + atlOffset=207.10718; + }; + class Item46 + { + dataType="Marker"; + position[]={26495.033,191.812,25001.895}; + name="seaPatrol_18"; + type="Empty"; + id=2294; + atlOffset=207.35278; + }; + class Item47 + { + dataType="Marker"; + position[]={21037.496,200.95976,19986.074}; + name="seaPatrol_19"; + type="Empty"; + id=2295; + atlOffset=207.03401; + }; + class Item48 + { + dataType="Marker"; + position[]={21440.449,172.8671,20567.477}; + name="seaPatrol_20"; + type="Empty"; + id=2296; + atlOffset=207.3761; + }; + class Item49 + { + dataType="Marker"; + position[]={20829.973,95.750183,21009.922}; + name="seaPatrol_21"; + type="Empty"; + id=2297; + atlOffset=207.43275; + }; + class Item50 + { + dataType="Marker"; + position[]={19649.236,149.68198,20360.035}; + name="seaPatrol_22"; + type="Empty"; + id=2298; + atlOffset=207.43951; + }; + class Item51 + { + dataType="Marker"; + position[]={18765.988,137.21149,19434.543}; + name="seaPatrol_23"; + type="Empty"; + id=2299; + atlOffset=206.81441; + }; + class Item52 + { + dataType="Marker"; + position[]={18105.475,192.92429,18436.09}; + name="seaPatrol_24"; + type="Empty"; + id=2300; + atlOffset=207.00026; + }; + class Item53 + { + dataType="Marker"; + position[]={17655.588,161.94582,19880.805}; + name="seaPatrol_25"; + type="Empty"; + id=2301; + atlOffset=206.98421; + }; + class Item54 + { + dataType="Marker"; + position[]={17094.916,172.08469,20418.434}; + name="seaPatrol_26"; + type="Empty"; + id=2302; + atlOffset=207.6337; + }; + class Item55 + { + dataType="Marker"; + position[]={24402.568,160.39333,24634.41}; + name="seaPatrol_27"; + type="Empty"; + id=2303; + atlOffset=207.66992; + }; + class Item56 + { + dataType="Marker"; + position[]={21877.943,122.56293,22559.484}; + name="seaPatrol_28"; + type="Empty"; + id=2304; + atlOffset=207.25781; + }; + class Item57 + { + dataType="Marker"; + position[]={22722.113,113.7464,24121.598}; + name="seaPatrol_29"; + type="Empty"; + id=2305; + atlOffset=207.11432; + }; + class Item58 + { + dataType="Marker"; + position[]={21333.643,225.95993,7324.0293}; + name="spawnPoint"; + type="hd_start"; + angle=28.146917; + id=2384; + atlOffset=207.1053; + }; + class Item59 + { + dataType="Marker"; + position[]={22913.398,217.03192,19081.605}; + name="spawnPoint_1"; + type="hd_start"; + angle=311.68082; + id=2385; + atlOffset=205.69991; + }; + class Item60 + { + dataType="Marker"; + position[]={26833.752,234.14293,24436.691}; + name="spawnPoint_2"; + type="hd_start"; + angle=220.45634; + id=2386; + atlOffset=207.12477; + }; + class Item61 + { + dataType="Marker"; + position[]={14415.887,223.65625,16813.977}; + name="spawnPoint_3"; + type="hd_start"; + angle=223.34677; + id=2387; + atlOffset=207.05586; + }; + class Item62 + { + dataType="Marker"; + position[]={11565.752,232.28767,12099.108}; + name="spawnPoint_4"; + type="hd_start"; + angle=286.13657; + id=2388; + atlOffset=206.98756; + }; + class Item63 + { + dataType="Marker"; + position[]={9185.0156,221.89238,21736.594}; + name="spawnPoint_5"; + type="hd_start"; + angle=143.57869; + id=2389; + atlOffset=207.08432; + }; + class Item64 + { + dataType="Marker"; + position[]={3181.8047,209.52193,12484.441}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2390; + atlOffset=207.08269; + }; + class Item65 + { + dataType="Marker"; + position[]={4219.875,253.21332,12253.836}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2391; + atlOffset=207.16989; + }; + class Item66 + { + dataType="Marker"; + position[]={5097.6211,231.5822,13861.521}; + name="control_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2392; + atlOffset=207.02454; + }; + class Item67 + { + dataType="Marker"; + position[]={5203.1016,225.64362,14487.979}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2393; + atlOffset=207.16223; + }; + class Item68 + { + dataType="Marker"; + position[]={3631.9053,214.55852,13876.935}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2394; + atlOffset=207.10887; + }; + class Item69 + { + dataType="Marker"; + position[]={4387.4189,278.14285,16017.934}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2395; + atlOffset=207.22113; + }; + class Item70 + { + dataType="Marker"; + position[]={5953.5791,443.88956,19867.109}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2396; + atlOffset=207.08942; + }; + class Item71 + { + dataType="Marker"; + position[]={9128.9141,227.78291,22071.156}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2397; + atlOffset=207.10239; + }; + class Item72 + { + dataType="Marker"; + position[]={8409.6992,262.42349,20836.609}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2398; + atlOffset=206.81137; + }; + class Item73 + { + dataType="Marker"; + position[]={9351.9639,245.55682,21245.773}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2399; + atlOffset=207.35381; + }; + class Item74 + { + dataType="Marker"; + position[]={9466.8467,221.96548,21873.234}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2400; + atlOffset=207.09254; + }; + class Item75 + { + dataType="Marker"; + position[]={8784.1973,306.97516,15790.667}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2401; + atlOffset=207.06302; + }; + class Item76 + { + dataType="Marker"; + position[]={7241.6289,211.59077,11031.837}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2402; + atlOffset=207.0925; + }; + class Item77 + { + dataType="Marker"; + position[]={10772.411,210.57669,10875.501}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2403; + atlOffset=207.00285; + }; + class Item78 + { + dataType="Marker"; + position[]={10831.6,224.31812,12158.453}; + name="control_14"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2404; + atlOffset=207.11411; + }; + class Item79 + { + dataType="Marker"; + position[]={10094.229,225.83615,12922.144}; + name="control_15"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2405; + atlOffset=207.04605; + }; + class Item80 + { + dataType="Marker"; + position[]={12378.049,228.68013,15873.92}; + name="control_16"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2406; + atlOffset=207.11403; + }; + class Item81 + { + dataType="Marker"; + position[]={11293.979,265.90872,17519.941}; + name="control_17"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2407; + atlOffset=207.0988; + }; + class Item82 + { + dataType="Marker"; + position[]={13548.217,226.20168,18671.605}; + name="control_18"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2408; + atlOffset=207.08403; + }; + class Item83 + { + dataType="Marker"; + position[]={14300.13,235.71681,19469.402}; + name="control_19"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2409; + atlOffset=207.17482; + }; + class Item84 + { + dataType="Marker"; + position[]={13645.948,226.2572,16086.868}; + name="control_20"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2410; + atlOffset=207.08447; + }; + class Item85 + { + dataType="Marker"; + position[]={15868.847,221.71736,17423.516}; + name="control_21"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2411; + atlOffset=207.0769; + }; + class Item86 + { + dataType="Marker"; + position[]={15987.165,215.13191,16133.075}; + name="control_22"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2412; + atlOffset=207.0587; + }; + class Item87 + { + dataType="Marker"; + position[]={18362.799,226.33023,17344.508}; + name="control_23"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2413; + atlOffset=207.12338; + }; + class Item88 + { + dataType="Marker"; + position[]={17491.359,212.65886,14327.144}; + name="control_24"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2414; + atlOffset=207.10353; + }; + class Item89 + { + dataType="Marker"; + position[]={18272.131,234.37762,12903.081}; + name="control_25"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2415; + atlOffset=207.0889; + }; + class Item90 + { + dataType="Marker"; + position[]={20229.326,259.12195,9770.4014}; + name="control_26"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2416; + atlOffset=207.05414; + }; + class Item91 + { + dataType="Marker"; + position[]={21587.594,221.20706,7804.3369}; + name="control_27"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2417; + atlOffset=207.10014; + }; + class Item92 + { + dataType="Marker"; + position[]={20792.701,244.05165,16647.652}; + name="control_28"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2418; + atlOffset=207.07555; + }; + class Item93 + { + dataType="Marker"; + position[]={21686.252,229.47137,17645.633}; + name="control_29"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2419; + atlOffset=207.1114; + }; + class Item94 + { + dataType="Marker"; + position[]={22971.781,220.59483,19368.418}; + name="control_30"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2420; + atlOffset=207.12585; + }; + class Item95 + { + dataType="Marker"; + position[]={24790.805,227.57651,20723.227}; + name="control_31"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2421; + atlOffset=207.11124; + }; + class Item96 + { + dataType="Marker"; + position[]={25990.932,231.85326,21570.633}; + name="control_32"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2422; + atlOffset=206.9996; + }; + class Item97 + { + dataType="Marker"; + position[]={26981.951,218.94193,23833.32}; + name="control_33"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=2423; + atlOffset=207.10193; + }; + class Item98 + { + dataType="Marker"; + position[]={5931.9932,242.60175,22075.207}; + name="control_34"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2424; + atlOffset=27.08403; + }; + class Item99 + { + dataType="Marker"; + position[]={4079.6465,340.33676,22093.223}; + name="control_35"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2425; + atlOffset=207.93146; + }; + class Item100 + { + dataType="Marker"; + position[]={3877.3984,357.211,21274.602}; + name="control_36"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2426; + atlOffset=206.75163; + }; + class Item101 + { + dataType="Marker"; + position[]={7788.5166,305.2428,21687.223}; + name="control_37"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2427; + atlOffset=181.51501; + }; + class Item102 + { + dataType="Marker"; + position[]={3262.584,329.63889,19388.117}; + name="control_38"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2428; + atlOffset=164.57132; + }; + class Item103 + { + dataType="Marker"; + position[]={4095.8125,497.85452,19933.289}; + name="control_39"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2429; + atlOffset=206.00711; + }; + class Item104 + { + dataType="Marker"; + position[]={5529.1685,380.71536,21302.027}; + name="control_40"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2430; + atlOffset=205.84341; + }; + class Item105 + { + dataType="Marker"; + position[]={8185.6787,290.59659,22895.996}; + name="control_41"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2431; + atlOffset=206.11313; + }; + class Item106 + { + dataType="Marker"; + position[]={14259.37,303.48303,22078.895}; + name="control_42"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2432; + atlOffset=232.04526; + }; + class Item107 + { + dataType="Marker"; + position[]={8006.9063,278.0835,20045.223}; + name="control_43"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2433; + atlOffset=207.25772; + }; + class Item108 + { + dataType="Marker"; + position[]={5772.4678,396.59335,19096.383}; + name="control_44"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2434; + atlOffset=206.20912; + }; + class Item109 + { + dataType="Marker"; + position[]={11739.365,252.59326,8852.958}; + name="control_45"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2435; + atlOffset=207.39941; + }; + class Item110 + { + dataType="Marker"; + position[]={21061.072,208.47031,14719.993}; + name="control_46"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2436; + atlOffset=207.11006; + }; + class Item111 + { + dataType="Marker"; + position[]={17992.754,277.02676,10674.25}; + name="control_47"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2437; + atlOffset=206.83978; + }; + class Item112 + { + dataType="Marker"; + position[]={22961.645,232.05942,21889.684}; + name="control_48"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2438; + atlOffset=206.50633; + }; + class Item113 + { + dataType="Marker"; + position[]={24233.471,273.37555,21798.02}; + name="control_49"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2439; + atlOffset=207.77448; + }; + class Item114 + { + dataType="Marker"; + position[]={23924.107,252.82391,22726.109}; + name="control_50"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2440; + atlOffset=207.53732; + }; + class Item115 + { + dataType="Marker"; + position[]={24348.051,232.91309,23562.535}; + name="control_51"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2441; + atlOffset=207.0984; + }; + class Item116 + { + dataType="Marker"; + position[]={28046.412,246.60393,25411.922}; + name="control_52"; + markerType="RECTANGLE"; + type="rectangle"; + a=200; + b=200; + angle=231.22296; + id=2442; + atlOffset=206.91652; + }; + class Item117 + { + dataType="Marker"; + position[]={25964.469,273.6788,22491.207}; + name="control_53"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2443; + atlOffset=207.02988; + }; + class Item118 + { + dataType="Marker"; + position[]={8800.2266,336.78128,15253.247}; + name="control_54"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2444; + atlOffset=206.35326; + }; + class Item119 + { + dataType="Marker"; + position[]={10823.294,313.38348,15027.392}; + name="control_55"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2445; + atlOffset=206.99362; + }; + class Item120 + { + dataType="Marker"; + position[]={6642.3921,339.61301,12200.023}; + name="control_56"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2446; + atlOffset=205.74603; + }; + class Item121 + { + dataType="Marker"; + position[]={9523.2363,259.60046,7535.1172}; + name="control_57"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2447; + atlOffset=201.50053; + }; + class Item122 + { + dataType="Marker"; + position[]={23663.305,212.40474,16241.952}; + name="control_58"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2448; + atlOffset=207.0988; + }; + class Item123 + { + dataType="Marker"; + position[]={3377.2734,207.10193,12755.404}; + name="seaSpawn"; + type="mil_objective"; + id=2449; + atlOffset=209.90524; + }; + class Item124 + { + dataType="Marker"; + position[]={3535.8174,207.10193,13776.693}; + name="seaSpawn_1"; + type="mil_objective"; + id=2450; + atlOffset=208.26828; + }; + class Item125 + { + dataType="Marker"; + position[]={3807.7119,207.10193,17344.215}; + name="seaSpawn_2"; + type="mil_objective"; + id=2451; + atlOffset=211.43423; + }; + class Item126 + { + dataType="Marker"; + position[]={16582.803,207.10193,12306.157}; + name="seaSpawn_3"; + type="mil_objective"; + id=2452; + atlOffset=215.26413; + }; + class Item127 + { + dataType="Marker"; + position[]={12750.637,207.10193,14200.559}; + name="seaSpawn_4"; + type="mil_objective"; + id=2453; + atlOffset=216.75415; + }; + class Item128 + { + dataType="Marker"; + position[]={11838.184,207.10193,13532.533}; + name="seaSpawn_5"; + type="mil_objective"; + id=2454; + atlOffset=211.54929; + }; + class Item129 + { + dataType="Marker"; + position[]={2256.4541,207.10193,13237.144}; + name="seaAttackSpawn"; + type="mil_ambush"; + angle=28.695; + id=2455; + atlOffset=333.48044; + }; + class Item130 + { + dataType="Marker"; + position[]={3173.6484,207.10193,16759.453}; + name="seaAttackSpawn_1"; + type="mil_ambush"; + angle=327.2157; + id=2456; + atlOffset=314.88629; + }; + class Item131 + { + dataType="Marker"; + position[]={19879.965,207.10193,21961.16}; + name="seaAttackSpawn_2"; + type="mil_ambush"; + angle=111.40697; + id=2457; + atlOffset=378.37085; + }; + class Item132 + { + dataType="Marker"; + position[]={25806.242,207.10193,25993.34}; + name="seaAttackSpawn_3"; + type="mil_ambush"; + angle=28.695; + id=2458; + atlOffset=385.92563; + }; + class Item133 + { + dataType="Marker"; + position[]={24006.816,207.10193,6605.4922}; + name="seaAttackSpawn_4"; + type="mil_ambush"; + angle=216.66417; + id=2459; + atlOffset=387.65833; + }; + class Item134 + { + dataType="Marker"; + position[]={15242.447,207.10193,13873.059}; + name="seaAttackSpawn_6"; + type="mil_ambush"; + angle=28.695; + id=2460; + atlOffset=274.9671; + }; + class Item135 + { + dataType="Marker"; + position[]={13682.604,207.10193,10428.973}; + name="seaAttackSpawn_7"; + type="mil_ambush"; + angle=218.59846; + id=2461; + atlOffset=348.68527; + }; + class Item136 + { + dataType="Marker"; + position[]={3239.709,207.10193,12863.792}; + name="seaSpawn_6"; + type="mil_objective"; + id=2462; + atlOffset=215.90306; + }; + class Item137 + { + dataType="Marker"; + position[]={20650.537,207.10193,19499.43}; + name="seaSpawn_7"; + type="mil_objective"; + id=2463; + atlOffset=209.23535; + }; + class Item138 + { + dataType="Marker"; + position[]={27620.217,207.10193,24545.668}; + name="seaSpawn_8"; + type="mil_objective"; + id=2464; + atlOffset=211.59435; + }; + class Item139 + { + dataType="Marker"; + position[]={15383.626,207.10193,15816.063}; + name="seaSpawn_9"; + type="mil_objective"; + id=2465; + atlOffset=213.25826; + }; + class Item140 + { + dataType="Object"; + class PositionInfo + { + position[]={8978.0156,27.769226,21412.445}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2466; + type="Land_Airport_Tower_F"; + atlOffset=0.0086307526; + }; + class Item141 + { + dataType="Object"; + class PositionInfo + { + position[]={23071.043,8.6534567,18754.797}; + angles[]={0,4.7255015,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2467; + type="Land_Hangar_F"; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={4843.1943,340.28717,22003.879}; + angles[]={0,4.7289844,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2468; + type="Land_Cargo_HQ_V1_F"; + }; + class Item143 + { + dataType="Object"; + class PositionInfo + { + position[]={8997.1445,21.440441,21412.289}; + angles[]={0,2.4943135,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2469; + type="Land_Cargo_HQ_V1_F"; + }; + class Item144 + { + dataType="Object"; + class PositionInfo + { + position[]={11421.552,27.822861,11679.306}; + angles[]={0,1.0115303,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2470; + type="Land_Cargo_HQ_V1_F"; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={22995.797,8.8610239,18855.105}; + angles[]={0,5.6882114,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2471; + type="Land_Cargo_HQ_V1_F"; + atlOffset=0.92003775; + class CustomAttributes + { + class Attribute0 + { + property="DoorStates"; + expression="['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;"; + class Value + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=3; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item2 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + }; + }; + }; + nAttributes=1; + }; + }; + class Item146 + { + dataType="Object"; + class PositionInfo + { + position[]={26737.18,24.961863,24585.527}; + angles[]={0,2.2082093,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2472; + type="Land_Cargo_HQ_V1_F"; + atlOffset=0.11933517; + }; + class Item147 + { + dataType="Object"; + class PositionInfo + { + position[]={20942.199,32.265015,7187.6475}; + angles[]={0,1.5555797,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2473; + type="Land_Cargo_HQ_V1_F"; + atlOffset=0.1354351; + }; + class Item148 + { + dataType="Object"; + class PositionInfo + { + position[]={9293.7188,21.995558,21569.176}; + angles[]={0,4.30966,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2474; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-0.026918411; + }; + class Item149 + { + dataType="Object"; + class PositionInfo + { + position[]={9171.2217,22.445509,21448.746}; + angles[]={0,5.6333933,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2475; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.014034271; + }; + class Item150 + { + dataType="Object"; + class PositionInfo + { + position[]={9028.4297,23.519743,21346.301}; + angles[]={0,5.6333933,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2476; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.039430618; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={26823.307,28.679115,24577.422}; + angles[]={0,0.78758019,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2477; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-0.01877594; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={21136.605,28.391066,7181.8975}; + angles[]={0,4.8921785,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2478; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.20433426; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={20975.402,30.012251,7333.2549}; + angles[]={0,4.8921785,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2479; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item154 + { + dataType="Object"; + class PositionInfo + { + position[]={20726.535,36.566708,7210.7354}; + angles[]={0,0.99436247,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2480; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.12693214; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={9126.8271,27.40102,21639.547}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2481; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-0.00058269501; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={11478.437,35.948227,11725.854}; + angles[]={0,4.2127972,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2482; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-1.9073486e-006; + }; + class Item157 + { + dataType="Object"; + class PositionInfo + { + position[]={22989.355,16.949791,18914.172}; + angles[]={0,4.0796099,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2483; + type="Land_Cargo_Tower_V1_F"; + atlOffset=0.098054171; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={26800.232,31.576736,24690.836}; + angles[]={0,5.3050466,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2484; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-0.94850731; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={21048.203,34.76487,7280.46}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2485; + type="Land_Cargo_Tower_V1_F"; + atlOffset=0.26329422; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={9061.917,19.949732,21536.992}; + angles[]={0,2.360858,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2486; + type="Land_TentHangar_V1_F"; + atlOffset=0.04709816; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={9091.7139,19.31608,21563.684}; + angles[]={0,2.3761454,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2487; + type="Land_TentHangar_V1_F"; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={21181.338,22.844112,7368.7344}; + angles[]={0,4.3736625,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2488; + type="Land_TentHangar_V1_F"; + atlOffset=-0.029521942; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={21158.234,25.359081,7249.5371}; + angles[]={0,5.1925039,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2489; + type="Land_TentHangar_V1_F"; + atlOffset=0.10547829; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={23222.516,5.8685412,18861.938}; + angles[]={0,1.5504203,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2490; + type="Land_Airport_01_hangar_F"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={23218.836,8.0950003,18806.879}; + angles[]={0,5.2616692,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2491; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={26851.268,31.363411,24472.711}; + angles[]={0,6.2068391,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2492; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.024765015; + }; + class Item167 + { + dataType="Object"; + class PositionInfo + { + position[]={26950.059,28.964684,24595.824}; + angles[]={0,4.8006735,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2493; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.087217331; + }; + class Item168 + { + dataType="Object"; + class PositionInfo + { + position[]={26735.406,31.617685,24608.664}; + angles[]={0,3.7836525,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2494; + type="Land_Airport_Tower_F"; + atlOffset=0.46519089; + }; + class Item169 + { + dataType="Object"; + class PositionInfo + { + position[]={23073.867,8.0950003,18691.406}; + angles[]={0,0.71987998,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2495; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item170 + { + dataType="Object"; + class PositionInfo + { + position[]={11554.779,27.332811,11561.861}; + angles[]={0,5.1253457,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2496; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item171 + { + dataType="Object"; + class PositionInfo + { + position[]={11639.347,27.282761,11801.24}; + angles[]={0,4.1140165,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2497; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item172 + { + dataType="Object"; + class PositionInfo + { + position[]={11661.997,27.855053,11992.638}; + angles[]={0,3.8163784,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2498; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item173 + { + dataType="Object"; + class PositionInfo + { + position[]={11543.608,28.869238,11930.87}; + angles[]={0,1.3898941,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2499; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item174 + { + dataType="Object"; + class PositionInfo + { + position[]={14827.856,22.847761,16424.313}; + angles[]={0,4.4921894,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2500; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-0.0054092407; + }; + class Item175 + { + dataType="Object"; + class PositionInfo + { + position[]={14731.388,30.796209,16573.699}; + angles[]={0,0.78664351,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2501; + type="Land_Cargo_Tower_V1_F"; + }; + class Item176 + { + dataType="Object"; + class PositionInfo + { + position[]={14771.134,21.7854,16649.293}; + angles[]={0,3.2631023,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2502; + type="Land_Cargo_HQ_V1_F"; + }; + class Item177 + { + dataType="Object"; + class PositionInfo + { + position[]={14898.41,22.811354,16670.586}; + angles[]={0,3.867835,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2503; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.0009021759; + }; + class Item178 + { + dataType="Marker"; + position[]={10028.254,224.69717,12817.005}; + name="road"; + type="hd_arrow"; + angle=227.508; + id=2514; + atlOffset=207.04475; + }; + class Item179 + { + dataType="Marker"; + position[]={8781.5693,242.69424,12046.101}; + name="road_1"; + type="hd_arrow"; + angle=223.50795; + id=2515; + atlOffset=207.11841; + }; + class Item180 + { + dataType="Marker"; + position[]={7337.1489,223.14734,11420.635}; + name="road_2"; + type="hd_arrow"; + angle=13.06902; + id=2516; + atlOffset=210.4803; + }; + class Item181 + { + dataType="Marker"; + position[]={10433.247,221.79193,11984.847}; + name="road_4"; + type="hd_arrow"; + angle=227.508; + id=2517; + atlOffset=207.10417; + }; + class Item182 + { + dataType="Marker"; + position[]={9615.7051,219.70853,11698.256}; + name="road_5"; + type="hd_arrow"; + angle=266.26797; + id=2518; + atlOffset=207.72679; + }; + class Item183 + { + dataType="Marker"; + position[]={11035.04,270.21774,12975.45}; + name="road_3"; + type="hd_arrow"; + angle=41.155243; + id=2519; + atlOffset=250.81619; + }; + class Item184 + { + dataType="Marker"; + position[]={11739.101,220.42517,13915.596}; + name="road_6"; + type="hd_arrow"; + angle=26.564579; + id=2520; + atlOffset=207.09477; + }; + class Item185 + { + dataType="Marker"; + position[]={13483.799,222.38394,16031.15}; + name="road_7"; + type="hd_arrow"; + angle=254.67212; + id=2521; + atlOffset=207.07001; + }; + class Item186 + { + dataType="Marker"; + position[]={12480.492,239.24866,15888.915}; + name="road_8"; + type="hd_arrow"; + angle=263.33395; + id=2522; + atlOffset=219.98683; + }; + class Item187 + { + dataType="Marker"; + position[]={14287.046,224.37161,18163.477}; + name="road_9"; + type="hd_arrow"; + angle=333.82483; + id=2523; + atlOffset=207.09567; + }; + class Item188 + { + dataType="Marker"; + position[]={14311.098,233.83075,19602.867}; + name="road_10"; + type="hd_arrow"; + angle=14.435917; + id=2524; + atlOffset=207.10059; + }; + class Item189 + { + dataType="Marker"; + position[]={14772.826,221.88092,17177.539}; + name="road_11"; + type="hd_arrow"; + angle=53.226994; + id=2525; + atlOffset=207.11859; + }; + class Item190 + { + dataType="Marker"; + position[]={16953.717,223.38274,17815.453}; + name="road_12"; + type="hd_arrow"; + angle=64.545609; + id=2526; + atlOffset=207.0988; + }; + class Item191 + { + dataType="Marker"; + position[]={15897.321,218.30458,16180.612}; + name="road_13"; + type="hd_arrow"; + angle=120.79032; + id=2527; + atlOffset=207.07936; + }; + class Item192 + { + dataType="Marker"; + position[]={17470.652,211.46404,14446.198}; + name="road_14"; + type="hd_arrow"; + angle=148.54735; + id=2528; + atlOffset=207.13133; + }; + class Item193 + { + dataType="Marker"; + position[]={17046.191,222.78551,12895.485}; + name="road_15"; + type="hd_arrow"; + angle=227.508; + id=2529; + atlOffset=207.10774; + }; + class Item194 + { + dataType="Marker"; + position[]={9381.4385,254.64844,21154.723}; + name="road_16"; + type="hd_arrow"; + angle=155.2245; + id=2530; + atlOffset=207.071; + }; + class Item195 + { + dataType="Marker"; + position[]={9719.1211,390.66769,19931.555}; + name="road_17"; + type="hd_arrow"; + angle=117.23835; + id=2531; + atlOffset=207.17831; + }; + class Item196 + { + dataType="Marker"; + position[]={9819.6953,301.79428,18542.309}; + name="road_18"; + type="hd_arrow"; + angle=227.508; + id=2532; + atlOffset=207.17839; + }; + class Item197 + { + dataType="Marker"; + position[]={7528.8491,378.86459,17283.188}; + name="road_19"; + type="hd_arrow"; + angle=227.508; + id=2533; + atlOffset=206.94324; + }; + class Item198 + { + dataType="Marker"; + position[]={6923.1553,396.07712,19242.508}; + name="road_20"; + type="hd_arrow"; + angle=1.5074006; + id=2534; + atlOffset=207.02161; + }; + class Item199 + { + dataType="Marker"; + position[]={5246.8613,437.67661,20361.473}; + name="road_21"; + type="hd_arrow"; + angle=284.62128; + id=2535; + atlOffset=207.15965; + }; + class Item200 + { + dataType="Marker"; + position[]={21952.133,221.23347,7365.5059}; + name="road_22"; + type="hd_arrow"; + angle=128.61185; + id=2536; + atlOffset=207.02257; + }; + class Item201 + { + dataType="Marker"; + position[]={21275.615,222.55862,8188.9502}; + name="road_23"; + type="hd_arrow"; + angle=317.16461; + id=2537; + atlOffset=207.08943; + }; + class Item202 + { + dataType="Marker"; + position[]={20047,262.94885,8867.416}; + name="road_24"; + type="hd_arrow"; + angle=290.07159; + id=2538; + atlOffset=207.10971; + }; + class Item203 + { + dataType="Marker"; + position[]={20574.352,226.96756,10698.154}; + name="road_25"; + type="hd_arrow"; + angle=354.21683; + id=2539; + atlOffset=207.00183; + }; + class Item204 + { + dataType="Marker"; + position[]={22283.16,222.5508,18424.008}; + name="road_26"; + type="hd_arrow"; + angle=227.508; + id=2540; + atlOffset=207.09207; + }; + class Item205 + { + dataType="Marker"; + position[]={21706.771,229.67892,17681.234}; + name="road_27"; + type="hd_arrow"; + angle=213.26985; + id=2541; + atlOffset=207.11749; + }; + class Item206 + { + dataType="Marker"; + position[]={21006.381,242.58272,17678.875}; + name="road_28"; + type="hd_arrow"; + angle=2.0592506; + id=2542; + atlOffset=207.26607; + }; + class Item207 + { + dataType="Marker"; + position[]={20652.164,241.22063,18728.516}; + name="road_29"; + type="hd_arrow"; + angle=353.88327; + id=2543; + atlOffset=207.00783; + }; + class Item208 + { + dataType="Marker"; + position[]={20633.988,237.71661,16460.012}; + name="road_30"; + type="hd_arrow"; + angle=227.508; + id=2544; + atlOffset=207.07196; + }; + class Item209 + { + dataType="Marker"; + position[]={19814.883,223.16016,15689.729}; + name="road_31"; + type="hd_arrow"; + angle=227.508; + id=2545; + atlOffset=207.07376; + }; + class Item210 + { + dataType="Marker"; + position[]={23162.822,221.3853,19609.68}; + name="road_32"; + type="hd_arrow"; + angle=34.257725; + id=2546; + atlOffset=207.12292; + }; + class Item211 + { + dataType="Marker"; + position[]={22555.842,234.20135,20591.816}; + name="road_33"; + type="hd_arrow"; + angle=335.03088; + id=2547; + atlOffset=207.09488; + }; + class Item212 + { + dataType="Marker"; + position[]={23030.576,258.94626,21115.848}; + name="road_34"; + type="hd_arrow"; + angle=63.785625; + id=2548; + atlOffset=207.08276; + }; + class Item213 + { + dataType="Marker"; + position[]={24638.145,228.38713,20651.25}; + name="road_35"; + type="hd_arrow"; + angle=57.619133; + id=2549; + atlOffset=207.08659; + }; + class Item214 + { + dataType="Marker"; + position[]={25175.039,221.76308,20625.598}; + name="road_36"; + type="hd_arrow"; + angle=127.69429; + id=2550; + atlOffset=207.07173; + }; + class Item215 + { + dataType="Marker"; + position[]={25326.443,224.68488,21113.227}; + name="road_37"; + type="hd_arrow"; + angle=334.7471; + id=2551; + atlOffset=207.00446; + }; + class Item216 + { + dataType="Marker"; + position[]={24740.145,282.32803,21813.039}; + name="road_38"; + type="hd_arrow"; + angle=69.393608; + id=2552; + atlOffset=207.01666; + }; + class Item217 + { + dataType="Marker"; + position[]={26281.104,247.36038,21791.027}; + name="road_39"; + type="hd_arrow"; + angle=52.54501; + id=2553; + atlOffset=206.93509; + }; + class Item218 + { + dataType="Marker"; + position[]={26493.738,227.28189,21327.176}; + name="road_40"; + type="hd_arrow"; + angle=113.11586; + id=2554; + atlOffset=207.00717; + }; + class Item219 + { + dataType="Marker"; + position[]={27081.205,218.9371,24021.121}; + name="road_41"; + type="hd_arrow"; + angle=227.508; + id=2555; + atlOffset=207.10999; + }; + class Item220 + { + dataType="Marker"; + position[]={26717.316,230.62947,22930.988}; + name="road_42"; + type="hd_arrow"; + angle=227.508; + id=2556; + atlOffset=207.14931; + }; + class Item221 + { + dataType="Object"; + class PositionInfo + { + position[]={8431.4258,114.24372,25106.762}; + angles[]={6.2711902,0,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=2565; + type="Flag_Viper_F"; + }; + class Item222 + { + dataType="Object"; + class PositionInfo + { + position[]={11587.15,30.269897,11889.158}; + angles[]={0,5.2593365,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2574; + type="Land_HelipadCircle_F"; + atlOffset=7.1189671; + }; + class Item223 + { + dataType="Object"; + class PositionInfo + { + position[]={11603.809,30.241005,11913.01}; + angles[]={0,5.2871041,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2575; + type="Land_HelipadCircle_F"; + atlOffset=7.2019939; + }; + class Item224 + { + dataType="Object"; + class PositionInfo + { + position[]={11609.816,30.053322,11890.792}; + angles[]={0,5.2837157,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2576; + type="Land_HelipadCircle_F"; + atlOffset=7.1081963; + }; + class Item225 + { + dataType="Object"; + class PositionInfo + { + position[]={11618.138,27.595428,11978.368}; + angles[]={0,3.6764419,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2577; + type="Land_TentHangar_V1_F"; + atlOffset=-1.9073486e-006; + }; + class Item226 + { + dataType="Object"; + class PositionInfo + { + position[]={11643.347,27.120995,11961.702}; + angles[]={0,3.7511308,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2578; + type="Land_TentHangar_V1_F"; + atlOffset=-1.9073486e-006; + }; + class Item227 + { + dataType="Object"; + class PositionInfo + { + position[]={20820.236,28.463039,7246.1611}; + angles[]={0,5.633924,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2579; + type="Land_HelipadCircle_F"; + atlOffset=0.16606903; + }; + class Item228 + { + dataType="Object"; + class PositionInfo + { + position[]={20839.957,27.983303,7260.2852}; + angles[]={0,5.633924,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2580; + type="Land_HelipadCircle_F"; + atlOffset=0.074874878; + }; + class Item229 + { + dataType="Object"; + class PositionInfo + { + position[]={21058.494,23.510403,7241.2705}; + angles[]={0,1.6479356,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2581; + type="Land_HelipadCircle_F"; + atlOffset=0.12126541; + }; + class Item230 + { + dataType="Object"; + class PositionInfo + { + position[]={21055.268,24.325771,7213.8809}; + angles[]={0,1.6741188,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2582; + type="Land_HelipadCircle_F"; + atlOffset=0.12021446; + }; + class Item231 + { + dataType="Object"; + class PositionInfo + { + position[]={23071.385,8.6534567,18817.496}; + angles[]={0,4.7135677,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2583; + type="Land_Hangar_F"; + }; + class Item232 + { + dataType="Object"; + class PositionInfo + { + position[]={23072.695,3.1900001,18927.695}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2584; + type="Land_HelipadCircle_F"; + }; + class Item233 + { + dataType="Object"; + class PositionInfo + { + position[]={23069.787,3.1900001,18890.918}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2585; + type="Land_HelipadCircle_F"; + }; + class Item234 + { + dataType="Object"; + class PositionInfo + { + position[]={23095.24,3.1900001,18874.094}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2586; + type="Land_HelipadCircle_F"; + }; + class Item235 + { + dataType="Object"; + class PositionInfo + { + position[]={23093.674,3.1900001,18909.113}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2587; + type="Land_HelipadCircle_F"; + }; + class Item236 + { + dataType="Object"; + class PositionInfo + { + position[]={23096.629,3.1900001,18942.527}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2588; + type="Land_HelipadCircle_F"; + }; + class Item237 + { + dataType="Object"; + class PositionInfo + { + position[]={23212.42,8.0950003,18907.629}; + angles[]={0,1.0745872,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2589; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item238 + { + dataType="Object"; + class PositionInfo + { + position[]={26819.641,26.895329,24604.059}; + angles[]={0,5.3539333,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2590; + type="Land_TentHangar_V1_F"; + atlOffset=-0.41496658; + }; + class Item239 + { + dataType="Object"; + class PositionInfo + { + position[]={26844.191,26.393604,24635.336}; + angles[]={0,5.4110885,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2591; + type="Land_TentHangar_V1_F"; + atlOffset=-0.0004234314; + }; + class Item240 + { + dataType="Object"; + class PositionInfo + { + position[]={26878.291,22.038961,24659.176}; + angles[]={0,2.257772,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2592; + type="Land_HelipadCircle_F"; + atlOffset=0.062786102; + }; + class Item241 + { + dataType="Object"; + class PositionInfo + { + position[]={26804.643,23.560736,24581.145}; + angles[]={0,2.3342323,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2593; + type="Land_HelipadCircle_F"; + }; + class Item242 + { + dataType="Object"; + class PositionInfo + { + position[]={26872.012,25.557013,24512.039}; + angles[]={0,2.2256284,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2594; + type="Land_HelipadSquare_F"; + atlOffset=0.058639526; + }; + class Item243 + { + dataType="Object"; + class PositionInfo + { + position[]={26884.867,25.401312,24528.746}; + angles[]={0,2.2256284,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2595; + type="Land_HelipadSquare_F"; + atlOffset=0.042076111; + }; + class Item244 + { + dataType="Object"; + class PositionInfo + { + position[]={26896.025,25.180746,24544.223}; + angles[]={0,2.2256284,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2596; + type="Land_HelipadSquare_F"; + atlOffset=0.014266968; + }; + class Item245 + { + dataType="Object"; + class PositionInfo + { + position[]={14876.287,17.860012,16671.328}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2597; + type="Land_HelipadCircle_F"; + atlOffset=-0.0034770966; + }; + class Item246 + { + dataType="Object"; + class PositionInfo + { + position[]={14853.754,17.786709,16648.168}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2598; + type="Land_HelipadCircle_F"; + atlOffset=0.008939743; + }; + class Item247 + { + dataType="Object"; + class PositionInfo + { + position[]={14830.811,17.874187,16623.91}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2599; + type="Land_HelipadCircle_F"; + atlOffset=-0.0062427521; + }; + class Item248 + { + dataType="Object"; + class PositionInfo + { + position[]={14807.035,17.850018,16599.41}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2600; + type="Land_HelipadCircle_F"; + atlOffset=1.7166138e-005; + }; + class Item249 + { + dataType="Object"; + class PositionInfo + { + position[]={14786.688,17.85693,16576.191}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2601; + type="Land_HelipadCircle_F"; + atlOffset=-0.0030708313; + }; + class Item250 + { + dataType="Object"; + class PositionInfo + { + position[]={14766.711,17.861965,16554.219}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2602; + type="Land_HelipadCircle_F"; + atlOffset=0.00091362; + }; + class Item251 + { + dataType="Object"; + class PositionInfo + { + position[]={14804.416,17.91,16661.109}; + angles[]={0,2.3781972,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2603; + type="Land_HelipadSquare_F"; + }; + class Item252 + { + dataType="Object"; + class PositionInfo + { + position[]={14823.855,17.910015,16680.723}; + angles[]={0,2.3781972,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2604; + type="Land_HelipadSquare_F"; + atlOffset=1.5258789e-005; + }; + class Item253 + { + dataType="Object"; + class PositionInfo + { + position[]={14842.77,17.910015,16698.641}; + angles[]={0,2.3781972,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2605; + type="Land_HelipadSquare_F"; + atlOffset=1.5258789e-005; + }; + class Item254 + { + dataType="Object"; + class PositionInfo + { + position[]={9162.8516,16.201351,21562.328}; + angles[]={0,5.5412021,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2606; + type="Land_HelipadCircle_F"; + atlOffset=-0.067829132; + }; + class Item255 + { + dataType="Object"; + class PositionInfo + { + position[]={9180.3643,16.460537,21577.523}; + angles[]={0,5.5412021,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2607; + type="Land_HelipadCircle_F"; + atlOffset=0.31982994; + }; + class Item256 + { + dataType="Object"; + class PositionInfo + { + position[]={9199.0537,16.376522,21589.582}; + angles[]={0,5.5730138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2608; + type="Land_HelipadCircle_F"; + atlOffset=0.017000198; + }; + class Item257 + { + dataType="Layer"; + name="Airports"; + class Entities + { + items=23; + class Item0 + { + dataType="Marker"; + position[]={23191.982,210.29193,18920.34}; + name="airp_1_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=6.9310002; + b=6.744; + id=2610; + atlOffset=207.10193; + }; + class Item1 + { + dataType="Marker"; + position[]={26846.889,230.83893,24608.387}; + name="airp_2_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.8610001; + b=9.5749998; + id=2611; + atlOffset=207.14072; + }; + class Item2 + { + dataType="Marker"; + position[]={14854.421,225.05873,16493.359}; + name="airp_3_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=17.136; + b=16.895; + angle=353.42892; + id=2612; + atlOffset=207.08806; + }; + class Item3 + { + dataType="Marker"; + position[]={14955.207,224.86761,16599.574}; + name="airp_3_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=17.136; + b=16.895; + angle=353.42892; + id=2613; + atlOffset=207.11873; + }; + class Item4 + { + dataType="Marker"; + position[]={11563.052,230.85258,11932.094}; + name="airp_4_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.927; + b=15.271; + id=2614; + atlOffset=207.10684; + }; + class Item5 + { + dataType="Marker"; + position[]={9196.2402,223.62096,21570.77}; + name="airp_5_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3.8843985; + b=3.8741875; + id=2615; + atlOffset=207.11081; + }; + class Item6 + { + dataType="Marker"; + position[]={21025.248,231.02393,7254.5166}; + name="airp_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.302; + b=8.4110003; + id=2616; + atlOffset=207.66475; + }; + class Item7 + { + dataType="Marker"; + position[]={22966.156,212.00192,18855.773}; + name="airp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.01; + b=6; + angle=317.85184; + id=2617; + atlOffset=207.11067; + }; + class Item8 + { + dataType="Marker"; + position[]={26764.42,230.34993,24548.898}; + name="airp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=33.296001; + b=6; + angle=220.58192; + id=2618; + atlOffset=207.34215; + }; + class Item9 + { + dataType="Marker"; + position[]={14300.083,227.58192,16254.604}; + name="airp_3_hangar"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBlue"; + alpha=0.19649974; + a=172.931; + b=121.228; + angle=136.51895; + id=2619; + atlOffset=207.77068; + }; + class Item10 + { + dataType="Marker"; + position[]={14701.32,225.01193,16602.996}; + name="airp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=35.460999; + b=6; + angle=225.2576; + id=2620; + atlOffset=207.10193; + }; + class Item11 + { + dataType="Marker"; + position[]={14820.278,225.10193,16457.016}; + name="airp_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=31.379; + b=6; + angle=222.93495; + id=2621; + atlOffset=207.19095; + }; + class Item12 + { + dataType="Marker"; + position[]={11504.589,230.33423,11753.648}; + name="airp_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.308634; + b=6; + angle=123.88646; + id=2622; + atlOffset=207.12505; + }; + class Item13 + { + dataType="Marker"; + position[]={11712.979,229.81892,11822.823}; + name="airp_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.937; + b=6; + angle=300.15302; + id=2623; + atlOffset=207.08279; + }; + class Item14 + { + dataType="Marker"; + position[]={9187.5889,221.49792,21668.27}; + name="airp_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=26.197001; + b=6; + angle=146.48099; + id=2624; + atlOffset=207.11072; + }; + class Item15 + { + dataType="Marker"; + position[]={20768.215,236.47592,7240.168}; + name="airp_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17; + b=6; + angle=325.87982; + id=2625; + atlOffset=207.3744; + }; + class Item16 + { + dataType="Marker"; + position[]={20947.65,234.27792,7216.0225}; + name="airp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.5; + b=6; + angle=22.82; + id=2626; + atlOffset=207.22173; + }; + class Item17 + { + dataType="Marker"; + position[]={21018.615,231.21985,7305.4531}; + name="airport"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=271.35101; + b=200.60085; + angle=129.67987; + id=2627; + atlOffset=208.68733; + }; + class Item18 + { + dataType="Marker"; + position[]={23076.52,207.10193,18814.809}; + name="airport_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=279.2023; + b=205.09465; + angle=304.11368; + id=2628; + atlOffset=203.83119; + }; + class Item19 + { + dataType="Marker"; + position[]={26955.475,228.48193,24774.936}; + name="airport_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=314.17865; + b=121.54485; + angle=130.48837; + id=2629; + atlOffset=207.84039; + }; + class Item20 + { + dataType="Marker"; + position[]={14779.392,207.10193,16403.672}; + name="airport_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=647.73114; + b=193.50763; + angle=135.513; + id=2630; + atlOffset=188.94734; + }; + class Item21 + { + dataType="Marker"; + position[]={11504.147,207.10193,11703.517}; + name="airport_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=331.07092; + b=181.34116; + angle=314.02783; + id=2631; + atlOffset=184.12549; + }; + class Item22 + { + dataType="Marker"; + position[]={9097.1865,222.45056,21510.531}; + name="airport_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=200; + b=100; + angle=143.29141; + id=2632; + atlOffset=205.85873; + }; + }; + id=2609; + atlOffset=181.23535; + }; + class Item258 + { + dataType="Object"; + class PositionInfo + { + position[]={20744.559,17.669258,15743.7}; + angles[]={0,2.4153216,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2633; + type="Land_HelipadCircle_F"; + }; + class Item259 + { + dataType="Object"; + class PositionInfo + { + position[]={26989.162,19.947716,21469.859}; + angles[]={0,2.3535261,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2634; + type="Land_HelipadCircle_F"; + }; + class Item260 + { + dataType="Object"; + class PositionInfo + { + position[]={11048.066,17.457672,12644.104}; + angles[]={0,2.0727766,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2635; + type="Land_HelipadCircle_F"; + atlOffset=5.7220459e-006; + }; + class Item261 + { + dataType="Object"; + class PositionInfo + { + position[]={8233.2607,15.829116,10998.54}; + angles[]={0,4.0670872,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2636; + type="Land_HelipadCircle_F"; + }; + class Item262 + { + dataType="Object"; + class PositionInfo + { + position[]={4233.6445,25.565334,15057.72}; + angles[]={0,3.1258714,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2637; + type="Land_HelipadCircle_F"; + atlOffset=7.1380177; + }; + class Item263 + { + dataType="Layer"; + name="Factories"; + class Entities + { + items=31; + class Item0 + { + dataType="Marker"; + position[]={8286.5811,222.59393,10905.673}; + name="fact_10_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.764999; + b=5.5; + angle=265.375; + id=2639; + atlOffset=207.69806; + }; + class Item1 + { + dataType="Marker"; + position[]={4186.3389,224.38893,15048.432}; + name="fact_11_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=6.835; + b=5.5; + angle=270.978; + id=2640; + atlOffset=207.07259; + }; + class Item2 + { + dataType="Marker"; + position[]={4132.0508,222.31177,15059.849}; + name="fact_11_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.722984; + b=5.5; + angle=106.54834; + id=2641; + atlOffset=206.25948; + }; + class Item3 + { + dataType="Marker"; + position[]={14311.691,243.84193,18880.594}; + name="fact_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.722; + b=5.5; + angle=228.60692; + id=2642; + atlOffset=207.08849; + }; + class Item4 + { + dataType="Marker"; + position[]={14363.188,244.40988,18960.465}; + name="fact_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.722; + b=5.5; + angle=143.54582; + id=2643; + atlOffset=207.08028; + }; + class Item5 + { + dataType="Marker"; + position[]={6346.1426,242.10773,14912.563}; + name="fact_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.722; + b=5.5; + angle=295.82956; + id=2644; + atlOffset=207.32056; + }; + class Item6 + { + dataType="Marker"; + position[]={6245.4819,250.10193,16280.549}; + name="fact_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.01; + b=5.5; + angle=180.597; + id=2645; + atlOffset=207.10193; + }; + class Item7 + { + dataType="Marker"; + position[]={6188.6597,250.10193,16274.035}; + name="fact_3_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=8.8719997; + b=5.5; + angle=270.99994; + id=2646; + atlOffset=207.10193; + }; + class Item8 + { + dataType="Marker"; + position[]={3247.6113,211.81793,12465.963}; + name="fact_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13; + b=6; + angle=256.22601; + id=2647; + atlOffset=205.61971; + }; + class Item9 + { + dataType="Marker"; + position[]={25449.211,217.12692,20332.883}; + name="fact_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=8.6000004; + b=5.5; + angle=150.81094; + id=2648; + atlOffset=207.10867; + }; + class Item10 + { + dataType="Marker"; + position[]={25359.326,216.8717,20304.652}; + name="fact_5_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.529018; + b=5.5; + angle=56.906193; + id=2649; + atlOffset=207.01587; + }; + class Item11 + { + dataType="Marker"; + position[]={20649.652,225.23293,15759.644}; + name="fact_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=25; + b=6; + angle=233.04599; + id=2650; + atlOffset=207.58266; + }; + class Item12 + { + dataType="Marker"; + position[]={27044.781,227.79092,21470.379}; + name="fact_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=11.13; + b=5.5; + angle=137.11894; + id=2651; + atlOffset=207.0806; + }; + class Item13 + { + dataType="Marker"; + position[]={27010.672,225.88943,21426.352}; + name="fact_7_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=11.13; + b=5.5; + angle=141.68312; + id=2652; + atlOffset=207.02812; + }; + class Item14 + { + dataType="Marker"; + position[]={15292.33,217.11031,16215.285}; + name="fact_8_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=33.26709; + b=6; + angle=352.70258; + id=2653; + atlOffset=207.09932; + }; + class Item15 + { + dataType="Marker"; + position[]={10968.884,228.86293,12691.428}; + name="fact_9_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.265; + b=5.5; + angle=299.42899; + id=2654; + atlOffset=207.08134; + }; + class Item16 + { + dataType="Marker"; + position[]={10915.332,230.82693,12709.733}; + name="fact_9_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.265; + b=5.5; + angle=118.049; + id=2655; + atlOffset=207.08405; + }; + class Item17 + { + dataType="Marker"; + position[]={12729.938,241.83392,16356.146}; + name="fact_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.265; + b=5.5; + angle=15.596994; + id=2656; + atlOffset=207.05469; + }; + class Item18 + { + dataType="Marker"; + position[]={12628.892,207.10193,16376.896}; + name="factory"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=121.49196; + b=80.056549; + angle=38.800323; + id=2657; + atlOffset=173.18607; + }; + class Item19 + { + dataType="Marker"; + position[]={14340.763,244.03619,18942.813}; + name="factory_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=120; + b=80; + angle=317.49139; + id=2658; + atlOffset=207.04469; + }; + class Item20 + { + dataType="Marker"; + position[]={8227.0117,221.34793,10942.049}; + name="factory_10"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=100; + b=100; + angle=50.816978; + id=2659; + atlOffset=207.14206; + }; + class Item21 + { + dataType="Marker"; + position[]={4228.4805,225.23193,15055.118}; + name="factory_11"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=75; + b=60; + angle=180.3139; + id=2660; + atlOffset=206.9897; + }; + class Item22 + { + dataType="Marker"; + position[]={6340.4888,207.10193,14892.035}; + name="factory_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=55; + b=40; + angle=27.999996; + id=2661; + atlOffset=171.82599; + }; + class Item23 + { + dataType="Marker"; + position[]={6191.6719,207.10193,16251.347}; + name="factory_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=110; + b=60; + angle=178.99994; + id=2662; + atlOffset=164.10193; + }; + class Item24 + { + dataType="Marker"; + position[]={3270.4561,214.00594,12453.801}; + name="factory_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=40; + b=40; + angle=72.914001; + id=2663; + atlOffset=207.10182; + }; + class Item25 + { + dataType="Marker"; + position[]={25414.021,216.99294,20339.727}; + name="factory_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=80; + b=80; + angle=324.89685; + id=2664; + atlOffset=207.08121; + }; + class Item26 + { + dataType="Marker"; + position[]={20671.971,224.33792,15729.396}; + name="factory_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=240; + b=100; + angle=324.89685; + id=2665; + atlOffset=207.09789; + }; + class Item27 + { + dataType="Marker"; + position[]={27005.951,228.76393,21524.027}; + name="factory_7"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=100; + b=100; + angle=227.32204; + id=2666; + atlOffset=207.02788; + }; + class Item28 + { + dataType="Marker"; + position[]={15325.565,207.10193,16243.168}; + name="factory_8"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=67.430664; + b=62.17627; + id=2667; + atlOffset=197.0842; + }; + class Item29 + { + dataType="Marker"; + position[]={11013.672,207.10193,12657.347}; + name="factory_9"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=100; + b=100; + angle=26.999985; + id=2668; + atlOffset=188.34282; + }; + class Item30 + { + dataType="Marker"; + position[]={20586.734,224.08392,15654.748}; + name="fact_6_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.151; + b=5.9330001; + id=2669; + atlOffset=207.10056; + }; + }; + id=2638; + atlOffset=160.58017; + }; + class Item264 + { + dataType="Layer"; + name="Resources"; + class Entities + { + items=17; + class Item0 + { + dataType="Marker"; + position[]={18437.703,230.52592,14270.91}; + name="reso_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.881001; + b=5.5; + angle=337.52081; + id=2671; + atlOffset=207.02895; + }; + class Item1 + { + dataType="Marker"; + position[]={17075.133,231.03293,11301.278}; + name="reso_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.902; + b=5.5; + angle=84.137978; + id=2672; + atlOffset=207.17563; + }; + class Item2 + { + dataType="Marker"; + position[]={18161.996,253.96494,15508.908}; + name="reso_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.263; + b=5.5; + angle=69.593002; + id=2673; + atlOffset=207.0777; + }; + class Item3 + { + dataType="Marker"; + position[]={18292.264,254.58192,15541.804}; + name="reso_3_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.263; + b=5.5; + angle=268.1944; + id=2674; + atlOffset=207.10193; + }; + class Item4 + { + dataType="Marker"; + position[]={4392.7285,248.22693,12558.969}; + name="reso_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.902; + b=5.5; + angle=56.794907; + id=2675; + atlOffset=207.30643; + }; + class Item5 + { + dataType="Marker"; + position[]={5848.0708,430.66495,20137.195}; + name="reso_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.412001; + b=5.5; + angle=102.60397; + id=2676; + atlOffset=207.30446; + }; + class Item6 + { + dataType="Marker"; + position[]={5935.7939,315.07993,12540.928}; + name="reso_6_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.657; + b=5.5; + angle=106.70496; + id=2677; + atlOffset=207.18584; + }; + class Item7 + { + dataType="Marker"; + position[]={7531.4897,237.04193,12173.371}; + name="reso_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.902; + b=5.5; + angle=313.40295; + id=2678; + atlOffset=206.89113; + }; + class Item8 + { + dataType="Marker"; + position[]={19632.293,224.21693,15590.698}; + name="reso_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.902; + b=5.5; + angle=117.35296; + id=2679; + atlOffset=201.38168; + }; + class Item9 + { + dataType="Marker"; + position[]={19614.264,235.26053,15638.449}; + name="resource"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=89.556335; + b=69.559898; + angle=281.88538; + id=2680; + atlOffset=207.14438; + }; + class Item10 + { + dataType="Marker"; + position[]={18484.469,231.86768,14279.807}; + name="resource_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=80; + b=40; + angle=76.925522; + id=2681; + atlOffset=207.22664; + }; + class Item11 + { + dataType="Marker"; + position[]={17099.322,231.98701,11297.922}; + name="resource_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=100; + b=80; + angle=64.347397; + id=2682; + atlOffset=207.1402; + }; + class Item12 + { + dataType="Marker"; + position[]={18293.6,254.58192,15536.591}; + name="resource_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=160; + b=70; + angle=181.06282; + id=2683; + atlOffset=207.10193; + }; + class Item13 + { + dataType="Marker"; + position[]={4425.2109,207.10193,12604.764}; + name="resource_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=40; + b=40; + angle=128.39394; + id=2684; + atlOffset=169.7346; + }; + class Item14 + { + dataType="Marker"; + position[]={5890.7578,424.73993,20209.059}; + name="resource_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=120; + b=100; + angle=281.88486; + id=2685; + atlOffset=207.35837; + }; + class Item15 + { + dataType="Marker"; + position[]={5955.9771,314.63492,12533.466}; + name="resource_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=80; + b=60; + angle=139.39099; + id=2686; + atlOffset=206.88478; + }; + class Item16 + { + dataType="Marker"; + position[]={7551.5127,207.10193,12185.032}; + name="resource_7"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=40; + b=40; + angle=139.39099; + id=2687; + atlOffset=174.40234; + }; + }; + id=2670; + atlOffset=90.896408; + }; + class Item265 + { + dataType="Object"; + class PositionInfo + { + position[]={16649.008,2.1900001,12356.169}; + angles[]={0,4.0987434,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2688; + type="Land_HelipadCircle_F"; + }; + class Item266 + { + dataType="Object"; + class PositionInfo + { + position[]={15309.577,210.83505,15854.73}; + angles[]={0,1.5801737,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2689; + type="Land_HelipadCircle_F"; + atlOffset=206.42648; + }; + class Item267 + { + dataType="Object"; + class PositionInfo + { + position[]={20725.881,3.0239599,19527.777}; + angles[]={0,5.374979,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2690; + type="Land_HelipadCircle_F"; + }; + class Item268 + { + dataType="Layer"; + name="Seaports"; + class Entities + { + items=10; + class Item0 + { + dataType="Marker"; + position[]={27573.756,220.39493,24632.621}; + name="seap_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.816999; + b=6; + angle=301.90982; + id=2692; + atlOffset=207.31386; + }; + class Item1 + { + dataType="Marker"; + position[]={15419.954,211.40092,15905.347}; + name="seap_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=26.716999; + b=6; + angle=79.410004; + id=2693; + atlOffset=207.05843; + }; + class Item2 + { + dataType="Marker"; + position[]={3179.377,209.18893,12911.707}; + name="seap_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.816999; + b=6; + angle=343.38199; + id=2694; + atlOffset=206.99257; + }; + class Item3 + { + dataType="Marker"; + position[]={20662.215,213.94693,19410.602}; + name="seap_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.816999; + b=6; + angle=179.15591; + id=2695; + atlOffset=207.33385; + }; + class Item4 + { + dataType="Marker"; + position[]={16663.607,209.89594,12289.583}; + name="seap_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=26.716999; + b=6; + angle=3.9379992; + id=2696; + atlOffset=207.05704; + }; + class Item5 + { + dataType="Marker"; + position[]={16661.295,209.67993,12309.969}; + name="seaport"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=68.870865; + b=90; + angle=323.24982; + id=2697; + atlOffset=207.17963; + }; + class Item6 + { + dataType="Marker"; + position[]={15391.801,207.10193,15861.71}; + name="seaport_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=131.52846; + b=91.684944; + angle=169.33798; + id=2698; + atlOffset=202.76398; + }; + class Item7 + { + dataType="Marker"; + position[]={3208.7754,207.10193,12906.107}; + name="seaport_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=90; + b=77.211243; + angle=97.696968; + id=2699; + atlOffset=205.10193; + }; + class Item8 + { + dataType="Marker"; + position[]={20686.709,207.10193,19464.961}; + name="seaport_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=80; + b=97.842819; + angle=128.327; + id=2700; + atlOffset=202.98956; + }; + class Item9 + { + dataType="Marker"; + position[]={27606.32,211.03493,24582.771}; + name="seaport_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=99.73439; + b=91.807388; + angle=255.87393; + id=2701; + atlOffset=207.83099; + }; + }; + id=2691; + atlOffset=246.84656; + }; + class Item269 + { + dataType="Object"; + class PositionInfo + { + position[]={23096.74,47.766155,7271.6172}; + angles[]={0,2.0688248,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2702; + type="Land_HelipadCircle_F"; + }; + class Item270 + { + dataType="Object"; + class PositionInfo + { + position[]={23086.549,48.117825,7252.1475}; + angles[]={0,2.0688248,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2703; + type="Land_HelipadCircle_F"; + atlOffset=-0.10459518; + }; + class Item271 + { + dataType="Object"; + class PositionInfo + { + position[]={14879.139,8.2818995,11083.434}; + angles[]={0,2.3566189,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2704; + type="Land_HelipadCircle_F"; + }; + class Item272 + { + dataType="Object"; + class PositionInfo + { + position[]={14892.146,8.4706259,11096.3}; + angles[]={0,2.3384774,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2705; + type="Land_HelipadCircle_F"; + atlOffset=-7.6293945e-006; + }; + class Item273 + { + dataType="Object"; + class PositionInfo + { + position[]={15975.451,22.245941,16958.23}; + angles[]={0,6.22577,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2706; + type="Land_HelipadCircle_F"; + atlOffset=8.1710167; + }; + class Item274 + { + dataType="Object"; + class PositionInfo + { + position[]={16119.685,21.442612,16940.875}; + angles[]={0,5.7018437,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2707; + type="Land_HelipadCircle_F"; + atlOffset=8.1646986; + }; + class Item275 + { + dataType="Object"; + class PositionInfo + { + position[]={12503.869,72.875717,15178.333}; + angles[]={0.013332055,0,0.017332481}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2708; + type="Land_HelipadSquare_F"; + }; + class Item276 + { + dataType="Object"; + class PositionInfo + { + position[]={9190.9248,272.08487,19322.727}; + angles[]={0,4.8010998,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2709; + type="Land_HelipadCircle_F"; + }; + class Item277 + { + dataType="Object"; + class PositionInfo + { + position[]={16566.945,241.65891,19029.371}; + angles[]={0,2.5089569,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2710; + type="Land_HelipadCircle_F"; + atlOffset=207.18915; + }; + class Item278 + { + dataType="Object"; + class PositionInfo + { + position[]={16547.334,240.8452,19015.27}; + angles[]={0,2.4870965,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2711; + type="Land_HelipadCircle_F"; + atlOffset=207.10306; + }; + class Item279 + { + dataType="Object"; + class PositionInfo + { + position[]={8983.6494,70.519409,7483.3916}; + angles[]={0,3.4829223,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2712; + type="Land_HelipadCircle_F"; + }; + class Item280 + { + dataType="Object"; + class PositionInfo + { + position[]={13776.697,56.153141,6397.4614}; + angles[]={0,1.135582,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2713; + type="Land_HelipadCircle_F"; + atlOffset=-4.1425972; + }; + class Item281 + { + dataType="Object"; + class PositionInfo + { + position[]={14293.937,19.921284,16252.889}; + angles[]={0,2.2420623,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2714; + type="Land_HelipadCircle_F"; + atlOffset=0.079021454; + }; + class Item282 + { + dataType="Object"; + class PositionInfo + { + position[]={14316.127,19.22768,16278.767}; + angles[]={0,2.2062798,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2715; + type="Land_HelipadCircle_F"; + }; + class Item283 + { + dataType="Object"; + class PositionInfo + { + position[]={18141.746,14.556971,19175.996}; + angles[]={0,6.2051988,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2716; + type="Land_HelipadCircle_F"; + }; + class Item284 + { + dataType="Object"; + class PositionInfo + { + position[]={18690.914,208.40114,10186.197}; + angles[]={6.1206331,0,6.2725158}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2717; + type="Land_HelipadCircle_F"; + atlOffset=-0.10194397; + }; + class Item285 + { + dataType="Object"; + class PositionInfo + { + position[]={18723.064,208.28987,10186.651}; + angles[]={6.2126365,0,6.2818484}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2718; + type="Land_HelipadCircle_F"; + }; + class Item286 + { + dataType="Object"; + class PositionInfo + { + position[]={19378.064,196.53777,9716.4404}; + angles[]={0,6.1653204,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2719; + type="Land_HelipadSquare_F"; + }; + class Item287 + { + dataType="Object"; + class PositionInfo + { + position[]={19285.492,196.07848,9723.2227}; + angles[]={0,6.0208106,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2720; + type="Land_HelipadCircle_F"; + atlOffset=-0.46903992; + }; + class Item288 + { + dataType="Object"; + class PositionInfo + { + position[]={17843.465,86.951797,11715.474}; + angles[]={0,4.7580857,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2721; + type="Land_HelipadCircle_F"; + }; + class Item289 + { + dataType="Object"; + class PositionInfo + { + position[]={17854.535,86.293655,11697.305}; + angles[]={0,4.7155051,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2722; + type="Land_HelipadCircle_F"; + atlOffset=0.14759827; + }; + class Item290 + { + dataType="Object"; + class PositionInfo + { + position[]={6854.7085,88.874161,16143.916}; + angles[]={0,0.53791499,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2723; + type="Land_HelipadCircle_F"; + atlOffset=9.0383759; + }; + class Item291 + { + dataType="Object"; + class PositionInfo + { + position[]={15068.089,222.29721,17374.77}; + angles[]={0,2.3417857,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2724; + type="Land_HelipadCircle_F"; + atlOffset=207.16562; + }; + class Item292 + { + dataType="Object"; + class PositionInfo + { + position[]={15091.412,222.10669,17394.383}; + angles[]={0,2.3417857,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2725; + type="Land_HelipadCircle_F"; + atlOffset=207.06699; + }; + class Item293 + { + dataType="Object"; + class PositionInfo + { + position[]={15118.191,222.57774,17421.379}; + angles[]={0,2.3417857,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2726; + type="Land_HelipadCircle_F"; + atlOffset=207.16269; + }; + class Item294 + { + dataType="Object"; + class PositionInfo + { + position[]={15143.904,222.45006,17444.309}; + angles[]={0,2.3417857,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2727; + type="Land_HelipadCircle_F"; + atlOffset=207.12726; + }; + class Item295 + { + dataType="Object"; + class PositionInfo + { + position[]={26478.723,65.743179,22155.906}; + angles[]={0,0.68220085,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2728; + type="Land_HelipadSquare_F"; + }; + class Item296 + { + dataType="Object"; + class PositionInfo + { + position[]={26505.09,64.989639,22136.412}; + angles[]={0,0.68220085,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2729; + type="Land_HelipadSquare_F"; + atlOffset=0.4276886; + }; + class Item297 + { + dataType="Object"; + class PositionInfo + { + position[]={26520.15,63.934978,22221.215}; + angles[]={0,3.8397243,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2730; + type="Land_HelipadSquare_F"; + atlOffset=1.8909988; + }; + class Item298 + { + dataType="Object"; + class PositionInfo + { + position[]={26541.656,62.586639,22204.768}; + angles[]={0,3.8397243,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2731; + type="Land_HelipadSquare_F"; + atlOffset=1.093998; + }; + class Item299 + { + dataType="Object"; + class PositionInfo + { + position[]={4545.832,270.43802,15423.553}; + angles[]={0,3.7516909,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2732; + type="Land_HelipadCircle_F"; + atlOffset=7.4586487; + }; + class Item300 + { + dataType="Object"; + class PositionInfo + { + position[]={8441.5244,179.97906,18219.625}; + angles[]={0,2.0549212,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2733; + type="Land_HelipadSquare_F"; + }; + class Item301 + { + dataType="Object"; + class PositionInfo + { + position[]={9884.7354,245.88272,19360.711}; + angles[]={0,3.1037161,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2734; + type="Land_HelipadCircle_F"; + }; + class Item302 + { + dataType="Object"; + class PositionInfo + { + position[]={9958.335,252.07632,19347.332}; + angles[]={0,3.0500429,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2735; + type="Land_HelipadCircle_F"; + atlOffset=-0.19012451; + }; + class Item303 + { + dataType="Object"; + class PositionInfo + { + position[]={3189.1973,57.822716,13152.682}; + angles[]={6.247201,0,0.015994642}; + }; + side="Empty"; + class Attributes + { + }; + id=2736; + type="Land_HelipadCircle_F"; + atlOffset=7.1169586; + }; + class Item304 + { + dataType="Object"; + class PositionInfo + { + position[]={3166.2158,56.519379,13177.389}; + angles[]={0.027993103,0,0.051953323}; + }; + side="Empty"; + class Attributes + { + }; + id=2737; + type="Land_HelipadCircle_F"; + atlOffset=6.9489403; + }; + class Item305 + { + dataType="Object"; + class PositionInfo + { + position[]={16880.713,9.7696066,12085.448}; + angles[]={0,1.5608044,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2738; + type="Land_HelipadSquare_F"; + atlOffset=-0.078055382; + }; + class Item306 + { + dataType="Object"; + class PositionInfo + { + position[]={16897.254,11.915133,12051.704}; + angles[]={0,1.6317124,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2739; + type="Land_HelipadSquare_F"; + atlOffset=9.5367432e-007; + }; + class Item307 + { + dataType="Object"; + class PositionInfo + { + position[]={16884.232,11.147048,12021.029}; + angles[]={0,1.5630903,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2740; + type="Land_HelipadSquare_F"; + }; + class Item308 + { + dataType="Object"; + class PositionInfo + { + position[]={6539.8564,96.359779,22689.109}; + angles[]={0,1.50015,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2741; + type="Land_HelipadCircle_F"; + atlOffset=7.8716507; + }; + class Item309 + { + dataType="Object"; + class PositionInfo + { + position[]={12893.218,83.591782,16761.586}; + angles[]={0,5.3815179,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2742; + type="Land_HelipadSquare_F"; + atlOffset=-0.019302368; + }; + class Item310 + { + dataType="Object"; + class PositionInfo + { + position[]={12851.649,85.241898,16760.246}; + angles[]={0,5.3532887,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2743; + type="Land_HelipadSquare_F"; + }; + class Item311 + { + dataType="Object"; + class PositionInfo + { + position[]={8848.6016,285.33496,23420.191}; + angles[]={0,0.14381067,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2744; + type="Land_HelipadCircle_F"; + atlOffset=207.56033; + }; + class Item312 + { + dataType="Object"; + class PositionInfo + { + position[]={8875.0791,285.5925,23419.117}; + angles[]={0,0.11547722,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2745; + type="Land_HelipadCircle_F"; + atlOffset=208.94418; + }; + class Item313 + { + dataType="Object"; + class PositionInfo + { + position[]={5455.7861,34.302979,14991.786}; + angles[]={0,5.3775945,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2746; + type="Land_HelipadCircle_F"; + atlOffset=7.0029793; + }; + class Item314 + { + dataType="Object"; + class PositionInfo + { + position[]={5473.667,34.302979,14977.719}; + angles[]={0,5.3873763,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2747; + type="Land_HelipadCircle_F"; + atlOffset=7.0029793; + }; + class Item315 + { + dataType="Object"; + class PositionInfo + { + position[]={5484.7656,34.302979,15030.047}; + angles[]={0,5.4298773,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2748; + type="Land_HelipadCircle_F"; + atlOffset=7.0029793; + }; + class Item316 + { + dataType="Object"; + class PositionInfo + { + position[]={5505.1714,34.302979,15011.729}; + angles[]={0,5.4187303,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2749; + type="Land_HelipadSquare_F"; + atlOffset=7.0029793; + }; + class Item317 + { + dataType="Object"; + class PositionInfo + { + position[]={14148.476,76.84584,21231.273}; + angles[]={0,6.1767998,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2750; + type="Land_HelipadCircle_F"; + }; + class Item318 + { + dataType="Object"; + class PositionInfo + { + position[]={23507.848,90.558037,21146.078}; + angles[]={0,0.025469249,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2751; + type="Land_HelipadSquare_F"; + atlOffset=-0.27038574; + }; + class Item319 + { + dataType="Object"; + class PositionInfo + { + position[]={23462.635,90.497826,21147.695}; + angles[]={0,6.1700931,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2752; + type="Land_HelipadSquare_F"; + atlOffset=-0.23748779; + }; + class Item320 + { + dataType="Object"; + class PositionInfo + { + position[]={23522.6,93.275017,21100.398}; + angles[]={0.058599081,0,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2753; + type="Land_HelipadCircle_F"; + atlOffset=-0.072425842; + }; + class Item321 + { + dataType="Object"; + class PositionInfo + { + position[]={23548.344,92.433281,21100.293}; + angles[]={0.07452935,0,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2754; + type="Land_HelipadCircle_F"; + }; + class Item322 + { + dataType="Object"; + class PositionInfo + { + position[]={20092.658,95.365158,6678.0068}; + angles[]={6.2285743,0,0.0053265258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2755; + type="Land_HelipadCircle_F"; + }; + class Item323 + { + dataType="Object"; + class PositionInfo + { + position[]={20068.893,95.949356,6677.4658}; + angles[]={6.2285743,0,0.0053265258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2756; + type="Land_HelipadCircle_F"; + atlOffset=-0.096824646; + }; + class Item324 + { + dataType="Object"; + class PositionInfo + { + position[]={21051.975,16.001163,19244.652}; + angles[]={0,4.7164183,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2757; + type="Land_HelipadCircle_F"; + atlOffset=-0.089668274; + }; + class Item325 + { + dataType="Object"; + class PositionInfo + { + position[]={21050.998,15.808552,19208.43}; + angles[]={0,4.6983566,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2758; + type="Land_HelipadCircle_F"; + atlOffset=0.076579094; + }; + class Item326 + { + dataType="Object"; + class PositionInfo + { + position[]={21050.959,15.819828,19226.707}; + angles[]={0,4.6877656,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2759; + type="Land_HelipadSquare_F"; + atlOffset=0.024902344; + }; + class Item327 + { + dataType="Object"; + class PositionInfo + { + position[]={17508,12.7401,13262.486}; + angles[]={0,3.9311891,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2760; + type="Land_HelipadCircle_F"; + }; + class Item328 + { + dataType="Object"; + class PositionInfo + { + position[]={17568.416,14.111484,13195.952}; + angles[]={0,3.9649823,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2761; + type="Land_HelipadCircle_F"; + atlOffset=0.0084524155; + }; + class Item329 + { + dataType="Object"; + class PositionInfo + { + position[]={17536.086,13.230273,13227.091}; + angles[]={0,0.76598108,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2762; + type="Land_HelipadCircle_F"; + atlOffset=0.022742271; + }; + class Item330 + { + dataType="Object"; + class PositionInfo + { + position[]={22006.854,29.717476,21067.418}; + angles[]={0,3.9954243,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2763; + type="Land_HelipadCircle_F"; + atlOffset=0.70133972; + }; + class Item331 + { + dataType="Object"; + class PositionInfo + { + position[]={21788.855,2.8452075,20867.223}; + angles[]={0,0.55026066,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2764; + type="Land_HelipadCircle_F"; + }; + class Item332 + { + dataType="Object"; + class PositionInfo + { + position[]={21764.264,3.2465136,20877.918}; + angles[]={0,0.4472712,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2765; + type="Land_HelipadCircle_F"; + atlOffset=0.64060044; + }; + class Item333 + { + dataType="Object"; + class PositionInfo + { + position[]={12283.997,123.64735,8923.7148}; + angles[]={0,1.2853196,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2766; + type="Land_HelipadCircle_F"; + atlOffset=-7.6293945e-006; + }; + class Item334 + { + dataType="Object"; + class PositionInfo + { + position[]={12275.75,123.8661,8889.624}; + angles[]={0,1.3764457,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2767; + type="Land_HelipadCircle_F"; + atlOffset=0.076263428; + }; + class Item335 + { + dataType="Object"; + class PositionInfo + { + position[]={12271.793,123.66414,8908.3877}; + angles[]={0,1.3927937,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2768; + type="Land_HelipadCircle_F"; + atlOffset=0.22304535; + }; + class Item336 + { + dataType="Object"; + class PositionInfo + { + position[]={8249.335,76.115822,10029.904}; + angles[]={0,5.8827057,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2769; + type="Land_HelipadCircle_F"; + }; + class Item337 + { + dataType="Object"; + class PositionInfo + { + position[]={8241.4482,77.844002,10049.91}; + angles[]={0,5.7600188,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2770; + type="Land_HelipadCircle_F"; + atlOffset=0.42436981; + }; + class Item338 + { + dataType="Object"; + class PositionInfo + { + position[]={8332.8174,74.821388,10089.672}; + angles[]={0,5.6924443,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2771; + type="Land_HelipadSquare_F"; + }; + class Item339 + { + dataType="Object"; + class PositionInfo + { + position[]={5377.5303,39.335682,14184.198}; + angles[]={0,6.2534728,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2772; + type="Land_HelipadCircle_F"; + atlOffset=7.9072399; + }; + class Item340 + { + dataType="Object"; + class PositionInfo + { + position[]={5353.0205,40.581699,14183.59}; + angles[]={0,6.1241469,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2773; + type="Land_HelipadCircle_F"; + atlOffset=7.9235306; + }; + class Item341 + { + dataType="Object"; + class PositionInfo + { + position[]={28273.678,21.847076,25707.266}; + angles[]={0,0.99104774,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2774; + type="Land_HelipadCircle_F"; + atlOffset=1.3495522; + }; + class Item342 + { + dataType="Object"; + class PositionInfo + { + position[]={28256.049,22.820801,25733.176}; + angles[]={0,0.99104774,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2775; + type="Land_HelipadCircle_F"; + atlOffset=1.4686909; + }; + class Item343 + { + dataType="Object"; + class PositionInfo + { + position[]={28343.318,15.108185,25687.23}; + angles[]={0,0.99104774,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2776; + type="Land_HelipadCircle_F"; + atlOffset=0.39395142; + }; + class Item344 + { + dataType="Object"; + class PositionInfo + { + position[]={25214.801,87.422318,21830.23}; + angles[]={0,0.30005011,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2777; + type="Land_HelipadCircle_F"; + atlOffset=-1.0588913; + }; + class Item345 + { + dataType="Object"; + class PositionInfo + { + position[]={25239.525,86.191116,21824.34}; + angles[]={0,0.32980898,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2778; + type="Land_HelipadCircle_F"; + atlOffset=-0.83277893; + }; + class Item346 + { + dataType="Object"; + class PositionInfo + { + position[]={20631.455,35.865597,18870.66}; + angles[]={0,5.8312001,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2779; + type="Land_HelipadCircle_F"; + atlOffset=0.013858795; + }; + class Item347 + { + dataType="Object"; + class PositionInfo + { + position[]={20624.91,35.818233,18847.273}; + angles[]={0,5.1722984,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2780; + type="Land_HelipadCircle_F"; + }; + class Item348 + { + dataType="Object"; + class PositionInfo + { + position[]={20652.354,49.702774,20090.52}; + angles[]={0,1.1312355,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2781; + type="Land_HelipadCircle_F"; + }; + class Item349 + { + dataType="Layer"; + name="Outposts"; + class Entities + { + items=112; + class Item0 + { + dataType="Marker"; + position[]={16078.491,220.64093,16868.797}; + name="outp_10_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=24.986; + b=6; + angle=6.7139964; + id=2783; + atlOffset=207.16919; + }; + class Item1 + { + dataType="Marker"; + position[]={12439.351,280.26791,15223.208}; + name="outp_11_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=1.4779993; + id=2784; + atlOffset=207.54642; + }; + class Item2 + { + dataType="Marker"; + position[]={9240.0635,478.43292,19325.934}; + name="outp_12_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=328.29099; + id=2785; + atlOffset=207.15146; + }; + class Item3 + { + dataType="Marker"; + position[]={16594.805,242.50394,19002.012}; + name="outp_13_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=323.29181; + id=2786; + atlOffset=207.11433; + }; + class Item4 + { + dataType="Marker"; + position[]={3909.9844,254.55093,12275.594}; + name="outp_14_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=335.46381; + id=2787; + atlOffset=203.74103; + }; + class Item5 + { + dataType="Marker"; + position[]={8934.8037,270.18292,7540.168}; + name="outp_15_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=297.65393; + id=2788; + atlOffset=207.47806; + }; + class Item6 + { + dataType="Marker"; + position[]={13762.174,267.72495,6390.0107}; + name="outp_16_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=185.17293; + id=2789; + atlOffset=207.09605; + }; + class Item7 + { + dataType="Marker"; + position[]={14211.598,225.50993,16372.656}; + name="outp_17_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.965; + b=6; + angle=313.526; + id=2790; + atlOffset=207.17938; + }; + class Item8 + { + dataType="Marker"; + position[]={18061.934,223.66992,19172.449}; + name="outp_18_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=356.86978; + id=2791; + atlOffset=205.74556; + }; + class Item9 + { + dataType="Marker"; + position[]={9679.709,210.38493,22281.676}; + name="outp_19_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=179.15395; + id=2792; + atlOffset=207.22461; + }; + class Item10 + { + dataType="Marker"; + position[]={14942.777,213.35793,11127.453}; + name="outp_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.330999; + b=6; + angle=116.12996; + id=2793; + atlOffset=207.22694; + }; + class Item11 + { + dataType="Marker"; + position[]={18749.133,415.81693,10198.637}; + name="outp_20_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=31.330996; + id=2794; + atlOffset=206.86227; + }; + class Item12 + { + dataType="Marker"; + position[]={17905.875,293.23993,11739.514}; + name="outp_21_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=179.00998; + id=2795; + atlOffset=207.2533; + }; + class Item13 + { + dataType="Marker"; + position[]={6805.375,271.08694,16093.973}; + name="outp_22_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.957001; + b=6; + angle=54.413975; + id=2796; + atlOffset=206.96396; + }; + class Item14 + { + dataType="Marker"; + position[]={15140.342,224.37193,17384.344}; + name="outp_23_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.108999; + b=6; + angle=135.44598; + id=2797; + atlOffset=207.15535; + }; + class Item15 + { + dataType="Marker"; + position[]={15188.106,225.02933,17299.227}; + name="outp_23_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.883682; + b=6; + angle=46.395073; + id=2798; + atlOffset=207.10416; + }; + class Item16 + { + dataType="Marker"; + position[]={26428.559,272.40692,22177.891}; + name="outp_24_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.091999; + b=6; + angle=127.84294; + id=2799; + atlOffset=207.3084; + }; + class Item17 + { + dataType="Marker"; + position[]={10035.121,222.52293,11233.685}; + name="outp_25_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=126.10399; + id=2800; + atlOffset=206.60255; + }; + class Item18 + { + dataType="Marker"; + position[]={4577.7207,458.54694,15485.069}; + name="outp_26_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.419001; + b=6; + angle=148.88396; + id=2801; + atlOffset=207.68512; + }; + class Item19 + { + dataType="Marker"; + position[]={8380.9102,387.25293,18245.422}; + name="outp_27_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.6168661; + b=6; + angle=162.08994; + id=2802; + atlOffset=207.15036; + }; + class Item20 + { + dataType="Marker"; + position[]={9893.373,443.91891,19393.891}; + name="outp_28_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.695999; + b=6; + angle=210.56499; + id=2803; + atlOffset=206.33826; + }; + class Item21 + { + dataType="Marker"; + position[]={3053.5127,256.59995,13168.589}; + name="outp_29_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.511999; + b=6; + angle=17.710993; + id=2804; + atlOffset=207.6209; + }; + class Item22 + { + dataType="Marker"; + position[]={19331.217,401.37192,9683.2744}; + name="outp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=22.808001; + id=2805; + atlOffset=206.79659; + }; + class Item23 + { + dataType="Marker"; + position[]={6576.0317,300.07993,22665.629}; + name="outp_30_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.7550001; + b=6; + angle=79.897995; + id=2806; + atlOffset=206.46753; + }; + class Item24 + { + dataType="Marker"; + position[]={12796.879,294.82593,16666.621}; + name="outp_31_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.977; + b=6; + angle=86.280991; + id=2807; + atlOffset=207.09195; + }; + class Item25 + { + dataType="Marker"; + position[]={12867.362,294.21939,16707.762}; + name="outp_31_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.977; + b=6; + angle=43.421745; + id=2808; + atlOffset=207.30878; + }; + class Item26 + { + dataType="Marker"; + position[]={8906.9092,282.78592,23441.871}; + name="outp_32_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.806999; + b=6; + angle=206.726; + id=2809; + atlOffset=206.89075; + }; + class Item27 + { + dataType="Marker"; + position[]={5489.7578,234.40193,14995.95}; + name="outp_33_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.37; + b=6; + angle=129.084; + id=2810; + atlOffset=207.10193; + }; + class Item28 + { + dataType="Marker"; + position[]={14173.13,282.78293,21203.504}; + name="outp_34_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.285; + b=6; + angle=292.5199; + id=2811; + atlOffset=206.7498; + }; + class Item29 + { + dataType="Marker"; + position[]={4300.4434,499.59793,20655.25}; + name="outp_35_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.218; + b=6; + angle=52.910992; + id=2812; + atlOffset=207.35101; + }; + class Item30 + { + dataType="Marker"; + position[]={23484.605,297.97192,21125.313}; + name="outp_36_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.618999; + b=6; + angle=358.60391; + id=2813; + atlOffset=207.24437; + }; + class Item31 + { + dataType="Marker"; + position[]={20950.596,222.66693,19267.031}; + name="outp_37_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.469999; + b=6; + angle=153.76292; + id=2814; + atlOffset=207.90268; + }; + class Item32 + { + dataType="Marker"; + position[]={20055.119,302.31293,6720.0469}; + name="outp_38_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.07; + b=6; + angle=234.786; + id=2815; + atlOffset=201.03491; + }; + class Item33 + { + dataType="Marker"; + position[]={17545.283,220.13393,13242.321}; + name="outp_39_helipad"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorRed"; + a=66.589996; + b=50; + angle=45.695976; + id=2816; + atlOffset=207.12695; + }; + class Item34 + { + dataType="Marker"; + position[]={17402.594,221.56293,13175.228}; + name="outp_39_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.298; + b=6; + angle=48.046001; + id=2817; + atlOffset=207.14107; + }; + class Item35 + { + dataType="Marker"; + position[]={16809.652,213.06194,12057.39}; + name="outp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=11.13; + b=6; + angle=89.784973; + id=2818; + atlOffset=208.42146; + }; + class Item36 + { + dataType="Marker"; + position[]={12314.965,327.97891,8837.1357}; + name="outp_40_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=23.473; + b=6; + angle=146.304; + id=2819; + atlOffset=206.74661; + }; + class Item37 + { + dataType="Marker"; + position[]={8333.2529,280.64594,10120.304}; + name="outp_41_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.212; + b=6; + angle=141.97301; + id=2820; + atlOffset=207.50159; + }; + class Item38 + { + dataType="Marker"; + position[]={5244.9844,233.46693,14231.432}; + name="outp_42_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.914; + b=6; + angle=201.08298; + id=2821; + atlOffset=207.39359; + }; + class Item39 + { + dataType="Marker"; + position[]={21825.271,216.64793,20910.031}; + name="outp_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.976; + b=6; + angle=295.16293; + id=2822; + atlOffset=206.95357; + }; + class Item40 + { + dataType="Marker"; + position[]={28305.785,223.79793,25729.547}; + name="outp_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.976; + b=6; + angle=237.77997; + id=2823; + atlOffset=207.19431; + }; + class Item41 + { + dataType="Marker"; + position[]={25371.506,281.61493,21816.719}; + name="outp_6_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.875; + b=6; + angle=104.42495; + id=2824; + atlOffset=207.34317; + }; + class Item42 + { + dataType="Marker"; + position[]={4945.6289,544.125,21895.238}; + name="outp_7_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.875; + b=6; + angle=216.69794; + id=2825; + atlOffset=205.36996; + }; + class Item43 + { + dataType="Marker"; + position[]={20617.783,243.59593,18783.656}; + name="outp_8_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.891; + b=6; + angle=53.623981; + id=2826; + atlOffset=207.11325; + }; + class Item44 + { + dataType="Marker"; + position[]={20531.777,249.94193,20076.355}; + name="outp_9_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.466999; + b=6; + angle=343.647; + id=2827; + atlOffset=205.95844; + }; + class Item45 + { + dataType="Marker"; + position[]={23036.4,255.12793,7290.7891}; + name="outp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=144.64497; + id=2828; + atlOffset=206.55913; + }; + class Item46 + { + dataType="Marker"; + position[]={23068.254,255.2583,7293.6377}; + name="outpost"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=128.48125; + b=85.299866; + angle=148.493; + id=2829; + atlOffset=206.9926; + }; + class Item47 + { + dataType="Marker"; + position[]={14832.858,214.19177,11132.929}; + name="outpost_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=111.65083; + b=92.584541; + angle=223.67722; + id=2830; + atlOffset=205.94215; + }; + class Item48 + { + dataType="Marker"; + position[]={16083.852,222.95555,17005.07}; + name="outpost_10"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=150; + b=150; + angle=59.834778; + id=2831; + atlOffset=207.08986; + }; + class Item49 + { + dataType="Marker"; + position[]={12480.511,281.60645,15199.8}; + name="outpost_11"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=93.247932; + b=59.666313; + angle=179.33261; + id=2832; + atlOffset=207.1987; + }; + class Item50 + { + dataType="Marker"; + position[]={9210.9004,479.33194,19282.949}; + name="outpost_12"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=73.601997; + b=78.302002; + angle=11.914993; + id=2833; + atlOffset=207.133; + }; + class Item51 + { + dataType="Marker"; + position[]={16584.584,242.24493,19015.676}; + name="outpost_13"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=87.918999; + b=63.997002; + angle=320.76587; + id=2834; + atlOffset=207.17905; + }; + class Item52 + { + dataType="Marker"; + position[]={3912.0742,257.22678,12300.014}; + name="outpost_14"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=35.515831; + b=30.457802; + angle=208.80701; + id=2835; + atlOffset=207.17393; + }; + class Item53 + { + dataType="Marker"; + position[]={8915.6719,207.10193,7479.3467}; + name="outpost_15"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=90; + b=90; + angle=180.99997; + id=2836; + atlOffset=139.84222; + }; + class Item54 + { + dataType="Marker"; + position[]={13786.237,207.10193,6392.3477}; + name="outpost_16"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=146.16084; + b=108.68304; + angle=180.99997; + id=2837; + atlOffset=146.83026; + }; + class Item55 + { + dataType="Marker"; + position[]={14275.845,226.40993,16277.497}; + name="outpost_17"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=194.21001; + b=123.19; + angle=135.83093; + id=2838; + atlOffset=207.0433; + }; + class Item56 + { + dataType="Marker"; + position[]={18090.57,225.88109,19183.602}; + name="outpost_18"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=64.573318; + b=62.230595; + angle=5.8140187; + id=2839; + atlOffset=207.19221; + }; + class Item57 + { + dataType="Marker"; + position[]={9708.1338,209.69313,22308.246}; + name="outpost_19"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=75.518005; + b=40; + angle=180.64592; + id=2840; + atlOffset=207.0988; + }; + class Item58 + { + dataType="Marker"; + position[]={19353.299,402.75513,9682.7891}; + name="outpost_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=113.56775; + b=93.518616; + angle=263.16; + id=2841; + atlOffset=206.91301; + }; + class Item59 + { + dataType="Marker"; + position[]={18727.447,416.39786,10214.844}; + name="outpost_20"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=90.591553; + b=102.88486; + angle=79.841003; + id=2842; + atlOffset=207.06076; + }; + class Item60 + { + dataType="Marker"; + position[]={17861.146,296.09738,11750.148}; + name="outpost_21"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=69.961136; + b=65.694496; + angle=148.493; + id=2843; + atlOffset=207.06094; + }; + class Item61 + { + dataType="Marker"; + position[]={6842.3789,207.10193,16110.396}; + name="outpost_22"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=79.827721; + b=78.197495; + angle=147.99994; + id=2844; + atlOffset=135.97592; + }; + class Item62 + { + dataType="Marker"; + position[]={15176.815,207.10193,17364.488}; + name="outpost_23"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=130; + b=119.167; + angle=132.57394; + id=2845; + atlOffset=189.17027; + }; + class Item63 + { + dataType="Marker"; + position[]={26435.707,273.61649,22142.957}; + name="outpost_24"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=115.21288; + b=89.814232; + angle=187.06653; + id=2846; + atlOffset=207.11597; + }; + class Item64 + { + dataType="Marker"; + position[]={10011.971,223.51991,11237.686}; + name="outpost_25"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=60; + b=40; + angle=103.32623; + id=2847; + atlOffset=206.97961; + }; + class Item65 + { + dataType="Marker"; + position[]={4552.2051,468.26111,15428.511}; + name="outpost_26"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=80; + b=84.554283; + angle=311.44165; + id=2848; + atlOffset=206.0441; + }; + class Item66 + { + dataType="Marker"; + position[]={8393.9297,387.16599,18248.578}; + name="outpost_27"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=69.973289; + b=50.811649; + angle=246.62001; + id=2849; + atlOffset=207.08029; + }; + class Item67 + { + dataType="Marker"; + position[]={9931.1787,450.62292,19388.625}; + name="outpost_28"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=124.208; + b=92.790001; + angle=11.914993; + id=2850; + atlOffset=208.71935; + }; + class Item68 + { + dataType="Marker"; + position[]={3089.459,207.10193,13203.2}; + name="outpost_29"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=122.33163; + b=104.55561; + angle=198.82098; + id=2851; + atlOffset=159.33647; + }; + class Item69 + { + dataType="Marker"; + position[]={16839.963,212.18228,12056.903}; + name="outpost_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=65.068436; + b=65.217522; + angle=180.25404; + id=2852; + atlOffset=207.05397; + }; + class Item70 + { + dataType="Marker"; + position[]={6566.5044,207.10193,22682.164}; + name="outpost_30"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=68.098083; + b=67.079865; + angle=207.99992; + id=2853; + atlOffset=116.02888; + }; + class Item71 + { + dataType="Marker"; + position[]={12850.806,207.10193,16723.691}; + name="outpost_31"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=138.955; + b=103.767; + angle=305.90884; + id=2854; + atlOffset=121.1294; + }; + class Item72 + { + dataType="Marker"; + position[]={8851.2334,207.10193,23453.914}; + name="outpost_32"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=72.266563; + b=72.315842; + angle=207.99992; + id=2855; + atlOffset=128.31204; + }; + class Item73 + { + dataType="Marker"; + position[]={5473.6973,207.10193,15005.7}; + name="outpost_33"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=80; + b=106.27872; + angle=41.308632; + id=2856; + atlOffset=179.80193; + }; + class Item74 + { + dataType="Marker"; + position[]={14216.63,281.10693,21228.02}; + name="outpost_34"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=95.519997; + b=107.119; + angle=108.33795; + id=2857; + atlOffset=207.13876; + }; + class Item75 + { + dataType="Marker"; + position[]={4276.8555,207.10193,20686.961}; + name="outpost_35"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=62.662998; + b=62.290001; + angle=10.999998; + id=2858; + atlOffset=-85.634552; + }; + class Item76 + { + dataType="Marker"; + position[]={23595.176,300.74994,21102.676}; + name="outpost_36"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=228.10001; + b=126.625; + angle=20.485994; + id=2859; + atlOffset=206.54553; + }; + class Item77 + { + dataType="Marker"; + position[]={20941.406,207.10193,19237.988}; + name="outpost_37"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=120; + b=120; + angle=16.886997; + id=2860; + atlOffset=192.75766; + }; + class Item78 + { + dataType="Marker"; + position[]={20083.568,308.12192,6730.6875}; + name="outpost_38"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=60; + b=60; + angle=36.850998; + id=2861; + atlOffset=207.12936; + }; + class Item79 + { + dataType="Marker"; + position[]={17437.107,221.06393,13171.57}; + name="outpost_39"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=108; + b=95; + angle=46.794998; + id=2862; + atlOffset=207.16478; + }; + class Item80 + { + dataType="Marker"; + position[]={21925.568,224.39793,20984.559}; + name="outpost_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=205.00101; + b=120; + angle=319.12381; + id=2863; + atlOffset=203.31961; + }; + class Item81 + { + dataType="Marker"; + position[]={12294.565,331.09494,8897.2256}; + name="outpost_40"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=78.936996; + b=67.440002; + angle=243.71994; + id=2864; + atlOffset=207.12021; + }; + class Item82 + { + dataType="Marker"; + position[]={8292.1221,283.04193,10067.769}; + name="outpost_41"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=59.033001; + b=77.987; + angle=54.859959; + id=2865; + atlOffset=206.23737; + }; + class Item83 + { + dataType="Marker"; + position[]={5372.9414,252.06293,14239.489}; + name="outpost_42"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=195; + b=100; + angle=348.11884; + id=2866; + atlOffset=207.58299; + }; + class Item84 + { + dataType="Marker"; + position[]={28324.66,221.65469,25756.758}; + name="outpost_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=82.389435; + b=86.495293; + angle=148.493; + id=2867; + atlOffset=207.10587; + }; + class Item85 + { + dataType="Marker"; + position[]={25259.225,293.02969,21830.031}; + name="outpost_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=114.15364; + b=88.959595; + angle=358.83786; + id=2868; + atlOffset=206.94327; + }; + class Item86 + { + dataType="Marker"; + position[]={4843.1777,207.10193,21952.797}; + name="outpost_7"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=127.844; + b=94.438004; + angle=6.0409966; + id=2869; + atlOffset=-133.49112; + }; + class Item87 + { + dataType="Marker"; + position[]={20600.746,244.18895,18817.328}; + name="outpost_8"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=72.874878; + b=54.685825; + angle=321.35321; + id=2870; + atlOffset=207.12741; + }; + class Item88 + { + dataType="Marker"; + position[]={20628,207.10193,20106.289}; + name="outpost_9"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=73.530098; + b=137.52365; + angle=93.484039; + id=2871; + atlOffset=155.71988; + }; + class Item89 + { + dataType="Marker"; + position[]={15991.876,220.84793,17101.48}; + name="outp_10_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=6.7709999; + b=7.2989998; + id=2872; + atlOffset=207.11189; + }; + class Item90 + { + dataType="Marker"; + position[]={12482.896,281.83093,15175.528}; + name="outp_11_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2873; + atlOffset=207.0481; + }; + class Item91 + { + dataType="Marker"; + position[]={9700.3623,209.75493,22311.484}; + name="outp_19_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2874; + atlOffset=207.10063; + }; + class Item92 + { + dataType="Marker"; + position[]={6832.041,288.75592,16149.803}; + name="outp_22_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=33.497993; + id=2875; + atlOffset=206.5618; + }; + class Item93 + { + dataType="Marker"; + position[]={15189.25,225.00192,17348.617}; + name="outp_23_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=49.468983; + id=2876; + atlOffset=207.0981; + }; + class Item94 + { + dataType="Marker"; + position[]={10018.202,223.63293,11244.637}; + name="outp_25_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2877; + atlOffset=207.07321; + }; + class Item95 + { + dataType="Marker"; + position[]={4578.5547,466.35294,15444.063}; + name="outp_26_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=24.434999; + id=2878; + atlOffset=207.57117; + }; + class Item96 + { + dataType="Marker"; + position[]={8399.4326,387.74649,18216.141}; + name="outp_27_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=18.951014; + id=2879; + atlOffset=207.03757; + }; + class Item97 + { + dataType="Marker"; + position[]={9956.415,459.34195,19368.781}; + name="outp_28_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=33.497993; + id=2880; + atlOffset=207.10681; + }; + class Item98 + { + dataType="Marker"; + position[]={3129.6699,276.35593,13091.188}; + name="outp_29_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=33.497993; + id=2881; + atlOffset=207.22568; + }; + class Item99 + { + dataType="Marker"; + position[]={3053.3193,245.3219,13257.432}; + name="outp_29_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=33.497993; + id=2882; + atlOffset=213.21635; + }; + class Item100 + { + dataType="Marker"; + position[]={19375.732,402.17392,9682.2227}; + name="outp_2_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2883; + atlOffset=207.0954; + }; + class Item101 + { + dataType="Marker"; + position[]={8839.3916,285.87494,23448.535}; + name="outp_32_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2884; + atlOffset=207.20067; + }; + class Item102 + { + dataType="Marker"; + position[]={14220.59,280.89194,21236.531}; + name="outp_34_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2885; + atlOffset=207.26447; + }; + class Item103 + { + dataType="Marker"; + position[]={4289.9863,500.25293,20684.34}; + name="outp_35_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2886; + atlOffset=207.09549; + }; + class Item104 + { + dataType="Marker"; + position[]={23538.99,296.62683,21125.59}; + name="outp_36_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2887; + atlOffset=204.97156; + }; + class Item105 + { + dataType="Marker"; + position[]={20915.852,218.70093,19197.449}; + name="outp_37_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2888; + atlOffset=207.30057; + }; + class Item106 + { + dataType="Marker"; + position[]={17413.1,220.53593,13210.528}; + name="outp_39_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2889; + atlOffset=207.14786; + }; + class Item107 + { + dataType="Marker"; + position[]={21924.563,224.36893,20974.449}; + name="outp_4_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2890; + atlOffset=206.83174; + }; + class Item108 + { + dataType="Marker"; + position[]={28329.502,221.68793,25778.965}; + name="outp_5_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2891; + atlOffset=207.08511; + }; + class Item109 + { + dataType="Marker"; + position[]={20584.633,258.32794,20116.129}; + name="outp_9_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=2892; + atlOffset=207.0994; + }; + class Item110 + { + dataType="Marker"; + position[]={14081.111,34.843975,22968.395}; + name="outpost_43"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=87.105591; + b=74.364456; + angle=43.078976; + id=2950; + }; + class Item111 + { + dataType="Marker"; + position[]={14060.512,33.164883,23014.5}; + name="outp_34_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.285; + b=6; + angle=314.16183; + id=2952; + }; + }; + id=2782; + atlOffset=126.60043; + }; + class Item350 + { + dataType="Marker"; + position[]={14253.987,224.8902,15840.211}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=167.41121; + b=126.42507; + angle=44.982628; + id=2893; + atlOffset=206.99365; + }; + class Item351 + { + dataType="Marker"; + position[]={15347.921,224.37141,17059.684}; + name="detectPlayer_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=232.08978; + b=221.01483; + angle=44.982628; + id=2894; + atlOffset=206.46141; + }; + class Item352 + { + dataType="Marker"; + position[]={14631.026,224.02478,16666.316}; + name="detectPlayer_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=157.70596; + b=747.32251; + angle=44.982628; + id=2895; + atlOffset=206.11478; + }; + class Item353 + { + dataType="Marker"; + position[]={21150.719,228.69763,7173.3672}; + name="detectPlayer_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=49.782391; + b=184.25052; + angle=41.68185; + id=2896; + atlOffset=206.11505; + }; + class Item354 + { + dataType="Marker"; + position[]={21181.049,225.48235,7539.1064}; + name="detectPlayer_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=78.340714; + b=112.18743; + angle=4.9869037; + id=2897; + atlOffset=206.72942; + }; + class Item355 + { + dataType="Object"; + class PositionInfo + { + position[]={8203.7549,21.286436,10993.729}; + angles[]={0,2.6051571,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2899; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.00016593933; + }; + class Item356 + { + dataType="Marker"; + position[]={11094.279,56.207184,15710.343}; + name="control_59"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=2901; + }; + class Item357 + { + dataType="Object"; + class PositionInfo + { + position[]={14043.024,36.020645,22962.395}; + angles[]={0,0.79759693,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2902; + type="Land_HBarrier_Big_F"; + }; + class Item358 + { + dataType="Object"; + class PositionInfo + { + position[]={14048.961,36.372517,22956.313}; + angles[]={0,0.79759693,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2903; + type="Land_HBarrier_Big_F"; + }; + class Item359 + { + dataType="Object"; + class PositionInfo + { + position[]={14050.36,35.183212,22969.555}; + angles[]={0.086451322,0.79759693,6.2685165}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2904; + type="Land_HBarrier_Big_F"; + }; + class Item360 + { + dataType="Object"; + class PositionInfo + { + position[]={14054.898,36.724312,22950.229}; + angles[]={0,0.79759693,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2905; + type="Land_HBarrier_Big_F"; + }; + class Item361 + { + dataType="Object"; + class PositionInfo + { + position[]={14060.835,37.005466,22944.146}; + angles[]={0,0.79759693,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2906; + type="Land_HBarrier_Big_F"; + }; + class Item362 + { + dataType="Object"; + class PositionInfo + { + position[]={14066.771,37.287483,22938.063}; + angles[]={0,0.79759693,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2907; + type="Land_HBarrier_Big_F"; + }; + class Item363 + { + dataType="Object"; + class PositionInfo + { + position[]={14072.708,37.331871,22931.979}; + angles[]={0,0.79759693,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2908; + type="Land_HBarrier_Big_F"; + }; + class Item364 + { + dataType="Object"; + class PositionInfo + { + position[]={14079.434,36.975994,22932.604}; + angles[]={0,5.5099859,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2909; + type="Land_HBarrier_Big_F"; + }; + class Item365 + { + dataType="Object"; + class PositionInfo + { + position[]={14056.297,35.687477,22963.471}; + angles[]={0.086450629,0.79759693,0.034652505}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2910; + type="Land_HBarrier_Big_F"; + }; + class Item366 + { + dataType="Object"; + class PositionInfo + { + position[]={14062.233,36.416508,22957.389}; + angles[]={0.051953323,0.79759693,0.034654226}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2911; + type="Land_HBarrier_Big_F"; + }; + class Item367 + { + dataType="Object"; + class PositionInfo + { + position[]={14068.171,36.613556,22951.305}; + angles[]={0.051953323,0.79759693,6.2605233}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2912; + type="Land_HBarrier_Big_F"; + }; + class Item368 + { + dataType="Object"; + class PositionInfo + { + position[]={14074.107,36.800529,22945.221}; + angles[]={0.067895547,0.79759693,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2913; + type="Land_HBarrier_Big_F"; + }; + class Item369 + { + dataType="Object"; + class PositionInfo + { + position[]={14085.338,36.458363,22938.367}; + angles[]={0,5.5099859,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2914; + type="Land_HBarrier_Big_F"; + }; + class Item370 + { + dataType="Object"; + class PositionInfo + { + position[]={14050.6,34.948311,22974.678}; + angles[]={0.021328852,5.5099859,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2915; + type="Land_HBarrier_Big_F"; + }; + class Item371 + { + dataType="Object"; + class PositionInfo + { + position[]={14056.683,34.869293,22980.615}; + angles[]={0.018660666,5.5099859,0.047963165}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2916; + type="Land_HBarrier_Big_F"; + }; + class Item372 + { + dataType="Object"; + class PositionInfo + { + position[]={14062.767,34.943043,22986.551}; + angles[]={0.033319358,5.5099859,0.0053265258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2917; + type="Land_HBarrier_Big_F"; + }; + class Item373 + { + dataType="Object"; + class PositionInfo + { + position[]={14068.766,34.953388,22992.406}; + angles[]={6.2818484,5.5099859,0.010664274}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2918; + type="Land_HBarrier_Big_F"; + }; + class Item374 + { + dataType="Object"; + class PositionInfo + { + position[]={14074.933,35.084152,22998.426}; + angles[]={6.2765174,5.5099859,0.030656165}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2919; + type="Land_HBarrier_Big_F"; + }; + class Item375 + { + dataType="Object"; + class PositionInfo + { + position[]={14085.466,35.6119,22992.285}; + angles[]={0.11942852,0.79759693,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2920; + type="Land_HBarrier_Big_F"; + }; + class Item376 + { + dataType="Object"; + class PositionInfo + { + position[]={14091.283,35.875328,22986.299}; + angles[]={6.2711945,0.797598,6.2751913}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2921; + type="Land_HBarrier_Big_F"; + atlOffset=-0.25000381; + }; + class Item377 + { + dataType="Object"; + class PositionInfo + { + position[]={14097.339,35.951111,22980.119}; + angles[]={6.2711854,0.79759693,6.2645216}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2922; + type="Land_HBarrier_Big_F"; + }; + class Item378 + { + dataType="Object"; + class PositionInfo + { + position[]={14103.413,35.439045,22974.021}; + angles[]={6.2525272,0.79759693,6.2020307}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2923; + type="Land_HBarrier_Big_F"; + }; + class Item379 + { + dataType="Object"; + class PositionInfo + { + position[]={14109.212,34.936302,22967.953}; + angles[]={6.2645216,0.79759693,6.2605233}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2924; + type="Land_HBarrier_Big_F"; + }; + class Item380 + { + dataType="Object"; + class PositionInfo + { + position[]={14091.521,36.099869,22944.463}; + angles[]={0,5.5099869,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2925; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; + }; + class Item381 + { + dataType="Object"; + class PositionInfo + { + position[]={14097.33,35.564468,22950.418}; + angles[]={0,5.5099859,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2926; + type="Land_HBarrier_Big_F"; + }; + class Item382 + { + dataType="Object"; + class PositionInfo + { + position[]={14103.413,35.189999,22956.355}; + angles[]={0,5.5099859,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2927; + type="Land_HBarrier_Big_F"; + }; + class Item383 + { + dataType="Object"; + class PositionInfo + { + position[]={14109.496,34.850777,22962.291}; + angles[]={0,5.5099859,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2928; + type="Land_HBarrier_Big_F"; + }; + class Item384 + { + dataType="Object"; + class PositionInfo + { + position[]={14043.465,38.197285,22969.461}; + angles[]={0.086450629,5.5099859,6.2525291}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2929; + type="Land_BarGate_F"; + }; + class Item385 + { + dataType="Object"; + class PositionInfo + { + position[]={14058.927,38.892929,22976.168}; + angles[]={0,2.3683929,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2930; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item386 + { + dataType="Object"; + class PositionInfo + { + position[]={14117.25,34.685989,22974.75}; + angles[]={6.2698536,3.9391894,6.2458706}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2931; + type="Land_HBarrier_Big_F"; + }; + class Item387 + { + dataType="Object"; + class PositionInfo + { + position[]={14111.313,35.05769,22980.832}; + angles[]={6.2578554,3.9391894,6.2299018}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2932; + type="Land_HBarrier_Big_F"; + }; + class Item388 + { + dataType="Object"; + class PositionInfo + { + position[]={14105.377,35.565216,22986.916}; + angles[]={6.2578578,3.9391894,6.2126365}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2933; + type="Land_HBarrier_Big_F"; + }; + class Item389 + { + dataType="Object"; + class PositionInfo + { + position[]={14099.44,35.898575,22993}; + angles[]={0.013332055,3.9391894,6.2618566}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2934; + type="Land_HBarrier_Big_F"; + }; + class Item390 + { + dataType="Object"; + class PositionInfo + { + position[]={14093.504,35.655579,22999.082}; + angles[]={0.083803542,3.9391894,6.2618566}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2935; + type="Land_HBarrier_Big_F"; + }; + class Item391 + { + dataType="Object"; + class PositionInfo + { + position[]={14087.567,35.370598,23005.166}; + angles[]={0.014664836,3.9391894,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2936; + type="Land_HBarrier_Big_F"; + }; + class Item392 + { + dataType="Object"; + class PositionInfo + { + position[]={14080.842,35.273449,23004.541}; + angles[]={0.0093286335,2.3683932,0.030656165}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2937; + type="Land_HBarrier_Big_F"; + }; + class Item393 + { + dataType="Object"; + class PositionInfo + { + position[]={14116.811,37.475636,22967.684}; + angles[]={0,2.3683932,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2938; + type="Land_BarGate_F"; + }; + class Item394 + { + dataType="Object"; + class PositionInfo + { + position[]={14100.919,39.187572,22969.291}; + angles[]={0,3.9391894,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2939; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item395 + { + dataType="Object"; + class PositionInfo + { + position[]={14100.815,39.471081,22960.807}; + angles[]={0,5.5099859,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2940; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.42819977; + }; + class Item396 + { + dataType="Object"; + class PositionInfo + { + position[]={14078.576,36.126324,22949.232}; + angles[]={0,3.9391894,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2941; + type="Land_Cargo_House_V1_F"; + }; + class Item397 + { + dataType="Object"; + class PositionInfo + { + position[]={14081.176,35.256081,22988.449}; + angles[]={0,0.79759693,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2942; + type="Land_Cargo_House_V1_F"; + atlOffset=0.10601425; + }; + class Item398 + { + dataType="Object"; + class PositionInfo + { + position[]={14081.7,39.549854,22993.57}; + angles[]={0,3.4155905,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2943; + type="Land_TTowerSmall_1_F"; + atlOffset=0.38066864; + }; + class Item399 + { + dataType="Object"; + class PositionInfo + { + position[]={14077.8,43.044819,22943.586}; + angles[]={0,3.9391894,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2944; + type="Land_TTowerSmall_2_F"; + atlOffset=-1.0318947; + }; + class Item400 + { + dataType="Object"; + class PositionInfo + { + position[]={14058.823,39.27285,22967.684}; + angles[]={0,0.79759693,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2945; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item401 + { + dataType="Object"; + class PositionInfo + { + position[]={14092.573,36.170288,22981.086}; + angles[]={0,0.797598,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=2946; + type="Land_Cargo40_military_green_F"; + }; + class Item402 + { + dataType="Object"; + class PositionInfo + { + position[]={14090.604,36.195377,22979.168}; + angles[]={0,0.797598,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=2947; + type="Land_Cargo40_military_green_F"; + atlOffset=3.8146973e-006; + }; + class Item403 + { + dataType="Object"; + class PositionInfo + { + position[]={14091.679,38.643986,22980.213}; + angles[]={0,0.797598,0}; + }; + side="Empty"; + class Attributes + { + createAsSimpleObject=1; + }; + id=2948; + type="Land_Cargo40_military_green_F"; + atlOffset=2.4690018; + }; + class Item404 + { + dataType="Object"; + class PositionInfo + { + position[]={14068.973,35.74432,22959.074}; + angles[]={0,3.9391894,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2949; + type="Land_Medevac_house_V1_F"; + }; + class Item405 + { + dataType="Object"; + class PositionInfo + { + position[]={14018.689,33.278011,22978.408}; + angles[]={0,5.4688473,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2951; + type="Land_HelipadCircle_F"; + }; + class Item406 + { + dataType="Marker"; + position[]={26895.244,20.950012,24798.67}; + name="detectPlayer_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=232.08978; + b=344.77521; + angle=40.931957; + id=2957; + atlOffset=0.82716751; + }; + class Item407 + { + dataType="Object"; + class PositionInfo + { + position[]={27227.061,31.493397,24924.066}; + angles[]={0,4.5403128,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2958; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=6.1035156e-005; + }; + class Item408 + { + dataType="Object"; + class PositionInfo + { + position[]={27152.494,29.299078,24997.223}; + angles[]={0,3.1307805,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2959; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=3.2424927e-005; + }; + class Item409 + { + dataType="Logic"; + class PositionInfo + { + position[]={3600.0771,15.89888,10275.092}; + }; + name="HC_commanderX"; + id=2960; + type="HighCommand"; + atlOffset=-0.0594244; + }; + class Item410 + { + dataType="Logic"; + class PositionInfo + { + position[]={3603.4766,15.89888,10274.996}; + }; + id=2961; + type="HighCommandSubordinate"; + atlOffset=0.059479713; + }; + class Item411 + { + dataType="Object"; + class PositionInfo + { + position[]={13536.585,19.295261,12072.4}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=2963; + type="Flag_Altis_F"; + }; + }; + class Connections + { + class LinkIDProvider + { + nextID=61; + }; + class Links + { + items=61; + class Item0 + { + linkID=0; + item0=2960; + item1=2961; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=1487; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=1492; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item3 + { + linkID=3; + item0=1502; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item4 + { + linkID=4; + item0=1504; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item5 + { + linkID=5; + item0=1506; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item6 + { + linkID=6; + item0=1508; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item7 + { + linkID=7; + item0=1510; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item8 + { + linkID=8; + item0=1512; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item9 + { + linkID=9; + item0=1514; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item10 + { + linkID=10; + item0=1516; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item11 + { + linkID=11; + item0=1518; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item12 + { + linkID=12; + item0=1520; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item13 + { + linkID=13; + item0=1522; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item14 + { + linkID=14; + item0=1524; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item15 + { + linkID=15; + item0=1526; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item16 + { + linkID=16; + item0=1528; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item17 + { + linkID=17; + item0=1530; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item18 + { + linkID=18; + item0=1532; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item19 + { + linkID=19; + item0=1534; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item20 + { + linkID=20; + item0=1536; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item21 + { + linkID=21; + item0=1538; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item22 + { + linkID=22; + item0=1540; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item23 + { + linkID=23; + item0=1542; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item24 + { + linkID=24; + item0=1544; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item25 + { + linkID=25; + item0=1546; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item26 + { + linkID=26; + item0=1548; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item27 + { + linkID=27; + item0=1550; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item28 + { + linkID=28; + item0=1552; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item29 + { + linkID=29; + item0=1554; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item30 + { + linkID=30; + item0=1556; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item31 + { + linkID=31; + item0=1558; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item32 + { + linkID=32; + item0=1560; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item33 + { + linkID=33; + item0=1583; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item34 + { + linkID=34; + item0=1585; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item35 + { + linkID=35; + item0=1587; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item36 + { + linkID=36; + item0=1589; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item37 + { + linkID=37; + item0=1591; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item38 + { + linkID=38; + item0=1593; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item39 + { + linkID=39; + item0=1595; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item40 + { + linkID=40; + item0=1597; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item41 + { + linkID=41; + item0=1599; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item42 + { + linkID=42; + item0=1601; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item43 + { + linkID=43; + item0=1603; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item44 + { + linkID=44; + item0=1605; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item45 + { + linkID=45; + item0=1607; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item46 + { + linkID=46; + item0=1609; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item47 + { + linkID=47; + item0=1611; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item48 + { + linkID=48; + item0=1613; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item49 + { + linkID=49; + item0=1615; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item50 + { + linkID=50; + item0=1617; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item51 + { + linkID=51; + item0=1619; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item52 + { + linkID=52; + item0=1621; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item53 + { + linkID=53; + item0=1623; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item54 + { + linkID=54; + item0=1625; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item55 + { + linkID=55; + item0=1627; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item56 + { + linkID=56; + item0=1629; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item57 + { + linkID=57; + item0=1500; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item58 + { + linkID=58; + item0=1498; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item59 + { + linkID=59; + item0=1496; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + class Item60 + { + linkID=60; + item0=1494; + item1=2960; + class CustomData + { + type="Sync"; + }; + }; + }; + }; +}; diff --git a/A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/roadsDBAltis.sqf b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/roadsDBAltis.sqf similarity index 100% rename from A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/roadsDBAltis.sqf rename to Map-Templates/Antistasi-Altis-BLUFOR.Altis/roadsDBAltis.sqf diff --git a/A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/PIC.jpg b/Map-Templates/Antistasi-Altis.Altis/PIC.jpg similarity index 100% rename from A3-Antistasi/Templates/A3-AA-BLUFORTemplate.Altis/PIC.jpg rename to Map-Templates/Antistasi-Altis.Altis/PIC.jpg diff --git a/Map-Templates/Antistasi-Altis.Altis/description.ext b/Map-Templates/Antistasi-Altis.Altis/description.ext new file mode 100755 index 0000000000..f09215205c --- /dev/null +++ b/Map-Templates/Antistasi-Altis.Altis/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_altis_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_altis_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_altis_mapname_text; +overviewText = $STR_antistasi_mission_info_altis_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Altis is Ours!"; + description = "The population of Altis loves you!
The brave soldiers have proven their valour, and Petros, Altis new Prime Minister, could at last to have a nice holidays. 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 rebels without a leader, you may think about joining them, and free Altis"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Altis is Destroyed"; + subtitle = "Altis got Destroyed by OPFOR"; + description = "One third of the population in Altis has been murdered by the OPFOR.
Altis no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/Map-Templates/Antistasi-Altis.Altis/mission.sqm b/Map-Templates/Antistasi-Altis.Altis/mission.sqm new file mode 100755 index 0000000000..dd6eb8c403 --- /dev/null +++ b/Map-Templates/Antistasi-Altis.Altis/mission.sqm @@ -0,0 +1,13981 @@ +version=53; +class EditorData +{ + moveGridStep=1; + angleGridStep=0.2617994; + scaleGridStep=1; + autoGroupingDist=10; + toggles=1666; + class ItemIDProvider + { + nextID=2076; + }; + class MarkerIDProvider + { + nextID=204; + }; + class LayerIndexProvider + { + nextID=503; + }; + class Camera + { + pos[]={3643.606,51.059433,10276.297}; + dir[]={-0.63776839,-0.7528035,-0.16295114}; + up[]={-0.72937334,0.65824056,-0.18635601}; + aside[]={-0.24755117,-9.6391886e-008,0.96888137}; + }; +}; +binarizationWanted=0; +addons[]= +{ + "A3_Ui_F", + "A3_Weapons_F_Ammoboxes", + "A3_Modules_F", + "A3_Characters_F", + "A3_Weapons_F", + "A3_Structures_F_EPC_Civ_InfoBoards", + "A3_Structures_F_Ind_AirPort", + "A3_Structures_F_Mil_Cargo", + "A3_Structures_F_Mil_TentHangar", + "A3_Structures_F_Exp_Infrastructure_Airports", + "A3_Structures_F_Mil_Flags", + "A3_Ui_F_Exp", + "A3_Characters_F_Patrol", + "A3_Characters_F_Exp", + "A3_Structures_F_Exp_Military_Flags", + "A3_Modules_F_Curator_Curator", + "A3_Props_F_Enoch_Military_Camps", + "A3_Structures_F_Mil_Helipads", + "A3_Structures_F_Mil_Fortification", + "A3_Structures_F_Walls", + "A3_Structures_F_Ind_Transmitter_Tower", + "A3_Structures_F_Ind_Cargo", + "A3_Modules_F_Hc" +}; +class AddonsMetaData +{ + class List + { + items=15; + class Item0 + { + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item1 + { + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item2 + { + className="A3_Modules_F"; + name="Arma 3 Alpha - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item3 + { + className="A3_Characters_F"; + name="Arma 3 Alpha - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item4 + { + className="A3_Structures_F_EPC"; + name="Arma 3 Win Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item5 + { + className="A3_Structures_F_Ind"; + name="Arma 3 - Industrial Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item6 + { + className="A3_Structures_F_Mil"; + name="Arma 3 - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item7 + { + className="A3_Structures_F_Exp_Infrastructure"; + name="Arma 3 Apex - Infrastructure Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item8 + { + className="A3_Ui_F_Exp"; + name="Arma 3 Apex - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item9 + { + className="A3_Characters_F_Patrol"; + name="Arma 3 Patrol - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item10 + { + className="A3_Characters_F_Exp"; + name="Arma 3 Apex - Characters and Clothing"; + 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_Modules_F_Curator"; + name="Arma 3 Zeus Update - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item13 + { + className="A3_Props_F_Enoch"; + name="Arma 3 Enoch - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item14 + { + className="A3_Structures_F"; + name="Arma 3 - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + }; +}; +randomSeed=8109385; +class Mission +{ + class Intel + { + briefingName=$STR_antistasi_mission_info_altis_mapname_text; + resistanceWest=0; + year=2035; + month=6; + day=1; + hour=10; + minute=0; + }; + class Entities + { + items=407; + class Item0 + { + dataType="Marker"; + position[]={24070.148,-0.050999999,29143.369}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=22; + atlOffset=185.91901; + }; + class Item1 + { + dataType="Marker"; + position[]={12538.913,-185.97,4160.5513}; + name="NATO_carrier"; + type="flag_UN"; + id=23; + atlOffset=-13.617798; + }; + class Item2 + { + dataType="Marker"; + position[]={3336.6682,-76.557083,17040.561}; + name="seaPatrol"; + type="Empty"; + id=167; + }; + class Item3 + { + dataType="Marker"; + position[]={3246.4033,-106.48155,15365.642}; + name="seaPatrol_1"; + type="Empty"; + id=168; + atlOffset=7.6293945e-006; + }; + class Item4 + { + dataType="Marker"; + position[]={3003.3965,-32.717815,13714.215}; + name="seaPatrol_2"; + type="Empty"; + id=169; + atlOffset=-3.8146973e-006; + }; + class Item5 + { + dataType="Marker"; + position[]={2778.6235,-22.222387,12865.009}; + name="seaPatrol_3"; + type="Empty"; + id=170; + }; + class Item6 + { + dataType="Marker"; + position[]={2677.7971,-27.117685,12421.866}; + name="seaPatrol_4"; + type="Empty"; + id=171; + }; + class Item7 + { + dataType="Marker"; + position[]={2716.6533,-51.24736,10868.366}; + name="seaPatrol_5"; + type="Empty"; + id=172; + }; + class Item8 + { + dataType="Marker"; + position[]={14517.476,-138.09663,9156.4111}; + name="seaPatrol_6"; + type="Empty"; + id=173; + }; + class Item9 + { + dataType="Marker"; + position[]={13563.509,-95.191154,11121.483}; + name="seaPatrol_7"; + type="Empty"; + id=174; + atlOffset=7.6293945e-006; + }; + class Item10 + { + dataType="Marker"; + position[]={15388.874,-90.985153,12976.936}; + name="seaPatrol_8"; + type="Empty"; + id=175; + atlOffset=7.6293945e-006; + }; + class Item11 + { + dataType="Marker"; + position[]={15372.398,-56.407341,14833.389}; + name="seaPatrol_9"; + type="Empty"; + id=176; + atlOffset=3.8146973e-006; + }; + class Item12 + { + dataType="Marker"; + position[]={27998.135,-27.567476,24279.234}; + name="seaPatrol_10"; + type="Empty"; + id=194; + }; + class Item13 + { + dataType="Marker"; + position[]={28477.717,-38.469158,24855.266}; + name="seaPatrol_11"; + type="Empty"; + id=195; + }; + class Item14 + { + dataType="Marker"; + position[]={28748.32,-32.852638,25988.58}; + name="seaPatrol_12"; + type="Empty"; + id=196; + }; + class Item15 + { + dataType="Marker"; + position[]={27754.328,-41.639271,25876.051}; + name="seaPatrol_13"; + type="Empty"; + id=197; + }; + class Item16 + { + dataType="Marker"; + position[]={26996.111,-30.678017,25463.451}; + name="seaPatrol_14"; + type="Empty"; + id=198; + }; + class Item17 + { + dataType="Marker"; + position[]={25961.938,-20.205185,24429.273}; + name="seaPatrol_16"; + type="Empty"; + id=200; + }; + class Item18 + { + dataType="Marker"; + position[]={26494.361,-15.289934,24999.549}; + name="seaPatrol_15"; + type="Empty"; + id=202; + }; + class Item19 + { + dataType="Marker"; + position[]={21036.824,-6.1421623,19983.729}; + name="seaPatrol_17"; + type="Empty"; + id=203; + atlOffset=4.7683716e-007; + }; + class Item20 + { + dataType="Marker"; + position[]={21439.777,-34.234825,20565.129}; + name="seaPatrol_18"; + type="Empty"; + id=204; + }; + class Item21 + { + dataType="Marker"; + position[]={20829.301,-111.35175,21007.574}; + name="seaPatrol_19"; + type="Empty"; + id=205; + atlOffset=-7.6293945e-006; + }; + class Item22 + { + dataType="Marker"; + position[]={19648.564,-57.419949,20357.688}; + name="seaPatrol_20"; + type="Empty"; + id=206; + }; + class Item23 + { + dataType="Marker"; + position[]={18765.316,-69.89045,19432.197}; + name="seaPatrol_21"; + type="Empty"; + id=207; + atlOffset=-7.6293945e-006; + }; + class Item24 + { + dataType="Marker"; + position[]={18104.803,-14.177645,18433.744}; + name="seaPatrol_22"; + type="Empty"; + id=208; + atlOffset=-9.5367432e-007; + }; + class Item25 + { + dataType="Marker"; + position[]={17654.916,-45.156113,19878.459}; + name="seaPatrol_23"; + type="Empty"; + id=209; + }; + class Item26 + { + dataType="Marker"; + position[]={17094.244,-35.017235,20416.088}; + name="seaPatrol_24"; + type="Empty"; + id=210; + }; + class Item27 + { + dataType="Marker"; + position[]={24401.896,-46.708607,24632.064}; + name="seaPatrol_25"; + type="Empty"; + id=211; + }; + class Item28 + { + dataType="Marker"; + position[]={21877.271,-84.539009,22557.137}; + name="seaPatrol_26"; + type="Empty"; + id=213; + }; + class Item29 + { + dataType="Marker"; + position[]={22721.441,-93.355537,24119.252}; + name="seaPatrol_27"; + type="Empty"; + id=214; + }; + class Item30 + { + dataType="Marker"; + position[]={3605.7153,17.346928,10279.321}; + name="Synd_HQ"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=933; + atlOffset=1.6032429; + }; + class Item31 + { + dataType="Marker"; + position[]={3607.0483,2.7037606e+012,10281.5}; + name="respawn_guerrila"; + text="Your Headquarters"; + type="hd_flag"; + colorName="ColorGUER"; + id=934; + atlOffset=2.7037606e+012; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={3611.6396,16.176582,10280.448}; + angles[]={6.2725215,0,6.2392201}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="vehicleBox"; + }; + id=935; + type="Box_East_AmmoVeh_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item33 + { + dataType="Logic"; + class PositionInfo + { + position[]={3603.4663,15.792626,10272.64}; + angles[]={6.2631893,0,6.2485328}; + }; + name="server"; + id=939; + type="Logic"; + }; + class Item34 + { + dataType="Logic"; + class PositionInfo + { + position[]={3605.0405,15.709817,10271.228}; + angles[]={6.2631893,0,6.2485328}; + }; + name="garrison"; + id=940; + type="Logic"; + }; + class Item35 + { + dataType="Logic"; + class PositionInfo + { + position[]={3606.8276,15.619447,10269.807}; + angles[]={6.2631893,0,6.2485328}; + }; + name="spawner"; + id=941; + type="Logic"; + }; + class Item36 + { + dataType="Logic"; + class PositionInfo + { + position[]={3599.2339,15.983887,10269.939}; + angles[]={6.2818413,0,6.2431998}; + }; + name="hc"; + isPlayable=1; + id=942; + type="HeadlessClient_F"; + }; + class Item37 + { + dataType="Logic"; + class PositionInfo + { + position[]={3608.7026,15.474901,10268.476}; + angles[]={6.2631893,0,6.2046809}; + }; + name="roadsX"; + id=945; + type="Logic"; + }; + class Item38 + { + dataType="Logic"; + class PositionInfo + { + position[]={3610.1187,15.338509,10267.392}; + angles[]={6.2325621,0,6.2046804}; + }; + name="timer"; + id=949; + type="Logic"; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={3610.7017,16.36245,10275.696}; + angles[]={0.014660765,0,6.2139654}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=950; + type="IG_supplyCrate_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Logic"; + class PositionInfo + { + position[]={3611.3882,15.175223,10266.14}; + angles[]={6.2325621,0,6.2046804}; + }; + name="sidesX"; + id=1010; + type="Logic"; + }; + class Item41 + { + dataType="Logic"; + class PositionInfo + { + position[]={3612.2993,15.061396,10265.308}; + angles[]={6.2325621,0,6.2046804}; + }; + name="killZones"; + id=1011; + type="Logic"; + }; + class Item42 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=60; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3607.4099,15.69819,10275.639}; + angles[]={0.014660765,0,6.2232509}; + }; + side="Independent"; + flags=6; + class Attributes + { + skill=1; + name="commanderX"; + description="Default Commander"; + isPlayer=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1013; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={3610.9431,15.376605,10272.114}; + angles[]={6.253861,6.2412972,6.213963}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1014; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.4028,14.829173,10278.267}; + angles[]={0.012000273,6.2412972,6.2179451}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1020; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.4768,14.704896,10278.502}; + angles[]={0.012000273,0,6.2445378}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1022; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.4067,14.617949,10278.153}; + angles[]={6.2805333,0,6.259192}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1024; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.3059,14.541884,10278.332}; + angles[]={6.2805333,0,6.253861}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1026; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.2937,14.465902,10278.552}; + angles[]={6.2432079,0,0.0080009829}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1028; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.9419,14.99068,10278.206}; + angles[]={0.012000273,0,6.2179451}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1030; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.2998,14.802361,10281.062}; + angles[]={0.012000273,6.2412972,6.2179451}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1032; + type="I_G_Soldier_AR_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.3738,14.699122,10281.297}; + angles[]={6.2805333,0,6.259192}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1034; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.3037,14.627873,10280.948}; + angles[]={6.2805333,0,6.259192}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1036; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.2029,14.552358,10281.127}; + angles[]={6.2805333,0,6.253861}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1038; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.1907,14.576846,10281.347}; + angles[]={6.2432079,0,0.0080009829}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1040; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.8389,14.963868,10281.001}; + angles[]={0.012000273,0,6.2179451}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1042; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.3738,14.728109,10284.298}; + angles[]={6.2685165,0,6.2591896}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1046; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.3037,14.652675,10283.949}; + angles[]={6.2685165,0,6.2591896}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1048; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.2029,14.622108,10284.128}; + angles[]={6.2698507,0,0.0079936078}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1050; + type="I_G_engineer_F"; + atlOffset=9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.1907,14.64894,10284.348}; + angles[]={6.2698536,0,0.0079935296}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1052; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.8389,15.026655,10284.002}; + angles[]={6.2272439,0,6.2179451}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1054; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.27,14.76855,10286.885}; + angles[]={6.2685165,0,6.2591896}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1058; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.2,14.690199,10286.536}; + angles[]={6.2698536,0,6.2578602}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1060; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.0991,14.655776,10286.715}; + angles[]={6.2698536,0,0.0079935296}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1062; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.0869,14.683905,10286.935}; + angles[]={6.2685208,0,0.0093286335}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1064; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.7351,15.12558,10286.589}; + angles[]={6.2685208,0,6.1769204}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1066; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.3989,14.806094,10284.178}; + angles[]={6.2685208,6.1574922,6.1769204}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1044; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.4939,14.833896,10286.765}; + angles[]={6.2685208,0,6.1769204}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1056; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.6023,14.795665,10289.511}; + angles[]={6.2698536,0,6.2578602}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1417; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.5322,14.716789,10289.162}; + angles[]={6.2698536,0,6.2578602}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1419; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.4314,14.694407,10289.341}; + angles[]={6.2685208,0,0.0093286335}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1421; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.4192,14.725517,10289.561}; + angles[]={6.2685208,0,0.0093286335}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1423; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.0674,15.128654,10289.215}; + angles[]={6.2685208,0,6.1769204}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1425; + type="I_G_officer_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.8262,14.863952,10289.391}; + angles[]={6.2685165,0,6.2591896}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1427; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.6758,14.89904,10292.585}; + angles[]={6.2445378,0,6.2578578}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1429; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.6057,14.802868,10292.236}; + angles[]={6.2551947,0,6.247201}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1431; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.5049,14.771727,10292.415}; + angles[]={6.2551947,0,0.0093286335}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1433; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.4927,14.805766,10292.635}; + angles[]={6.2551947,0,0.0093286335}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1435; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.1409,15.237556,10292.289}; + angles[]={6.2365522,0,6.1769204}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1437; + type="I_G_officer_F"; + atlOffset=9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.8997,14.964696,10292.465}; + angles[]={6.2445378,0,6.2578578}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1439; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.709,15.089675,10295.571}; + angles[]={6.2445378,0,6.2578578}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1498; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.6389,14.993293,10295.223}; + angles[]={6.2551947,0,6.247201}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1500; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.5381,14.893919,10295.401}; + angles[]={6.2551947,0,6.247201}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1502; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.5259,14.861694,10295.621}; + angles[]={6.2551947,0,0.0093286335}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1504; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.1741,15.693403,10295.275}; + angles[]={6.2365522,0,6.1769204}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1506; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.9329,15.384641,10295.451}; + angles[]={6.2445378,0,6.1690178}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1508; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.5605,15.217278,10298.836}; + angles[]={6.2458687,0,6.247201}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1510; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.4905,15.098813,10298.487}; + angles[]={6.2458687,0,6.247201}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1512; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.3896,15.001105,10298.666}; + angles[]={6.2458687,0,6.247201}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1514; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.3774,15.023723,10298.886}; + angles[]={6.2192731,0,0.02666023}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1516; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={3617.0256,15.850656,10298.54}; + angles[]={6.2312322,0,6.1690178}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1518; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.7844,15.543464,10298.716}; + angles[]={6.2312322,0,6.1690178}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1520; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={3621.3738,15.467607,10301.581}; + angles[]={6.2458706,0,6.1545658}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1522; + type="I_G_Soldier_LAT_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={3624.3037,15.524534,10301.232}; + angles[]={5.957521,0,0.24143139}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1524; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={3627.2029,15.174692,10301.411}; + angles[]={6.2192731,0,6.2738566}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1526; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={3630.1907,15.167741,10301.631}; + angles[]={6.2192731,0,0.02666023}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1528; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={3615.8389,16.323023,10301.285}; + angles[]={5.8855929,0,5.4282241}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1530; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={3618.5977,15.822173,10301.461}; + angles[]={6.2458706,0,6.1545658}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1532; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={3616.947,14.993358,10272.001}; + angles[]={6.253861,0,6.2325621}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1016; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.9722,14.865136,10272.26}; + angles[]={6.2458687,0,6.2405448}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1017; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.5569,14.771102,10272.666}; + angles[]={6.2458706,0,6.259192}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1018; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={3614.0171,15.170384,10272.35}; + angles[]={6.253861,0,6.213963}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=1015; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1067; + class CustomAttributes + { + class Attribute0 + { + property="groupID"; + expression="_this setGroupID [_value];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Guerillas"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3601.614,15.950262,10279.248}; + angles[]={6.2725215,2.1016905,6.2485409}; + }; + side="Independent"; + flags=6; + class Attributes + { + name="petros"; + }; + id=1182; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute2 + { + property="face"; + expression="_this setface _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=1068; + class CustomAttributes + { + class Attribute0 + { + property="groupID"; + expression="_this setGroupID [_value];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Petros"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={3604.6182,16.735788,10282.353}; + angles[]={0.014660765,0,6.2232509}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="mapX"; + }; + id=1098; + type="MapBoard_seismic_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Marker"; + position[]={21332.971,18.858,7321.6831}; + name="spawnPoint"; + type="hd_start"; + angle=28.146921; + id=1099; + atlOffset=0.00024414063; + }; + class Item46 + { + dataType="Marker"; + position[]={22912.727,9.9300003,19079.26}; + name="spawnPoint_1"; + type="hd_start"; + angle=311.68082; + id=1100; + atlOffset=-1.441308; + }; + class Item47 + { + dataType="Marker"; + position[]={26833.08,27.041002,24434.344}; + name="spawnPoint_2"; + type="hd_start"; + angle=220.45634; + id=1102; + }; + class Item48 + { + dataType="Marker"; + position[]={14415.215,16.554316,16811.631}; + name="spawnPoint_3"; + type="hd_start"; + angle=223.34677; + id=1103; + }; + class Item49 + { + dataType="Marker"; + position[]={11565.08,25.18574,12096.762}; + name="spawnPoint_4"; + type="hd_start"; + angle=286.13657; + id=1104; + }; + class Item50 + { + dataType="Marker"; + position[]={9184.3438,14.790446,21734.248}; + name="spawnPoint_5"; + type="hd_start"; + angle=143.57869; + id=1105; + }; + class Item51 + { + dataType="Marker"; + position[]={3181.1331,2.4200001,12482.095}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1107; + atlOffset=9.059906e-006; + }; + class Item52 + { + dataType="Marker"; + position[]={4219.2031,46.111389,12251.489}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1108; + }; + class Item53 + { + dataType="Marker"; + position[]={5096.9497,24.480274,13859.174}; + name="control_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1109; + }; + class Item54 + { + dataType="Marker"; + position[]={5202.4297,18.541693,14485.633}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1110; + }; + class Item55 + { + dataType="Marker"; + position[]={3631.2336,7.4565849,13874.588}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1111; + }; + class Item56 + { + dataType="Marker"; + position[]={4386.7471,71.040924,16015.587}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1112; + }; + class Item57 + { + dataType="Marker"; + position[]={5952.9072,236.78763,19864.762}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1113; + }; + class Item58 + { + dataType="Marker"; + position[]={9128.2422,20.68099,22068.809}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1114; + }; + class Item59 + { + dataType="Marker"; + position[]={8409.0273,55.321545,20834.262}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1115; + }; + class Item60 + { + dataType="Marker"; + position[]={9351.292,38.454903,21243.428}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1116; + }; + class Item61 + { + dataType="Marker"; + position[]={9466.1748,14.863552,21870.887}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1117; + }; + class Item62 + { + dataType="Marker"; + position[]={8783.5254,99.873222,15788.32}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1118; + }; + class Item63 + { + dataType="Marker"; + position[]={7240.957,4.4888473,11029.49}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1119; + }; + class Item64 + { + dataType="Marker"; + position[]={10771.739,3.4747643,10873.154}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1120; + }; + class Item65 + { + dataType="Marker"; + position[]={10830.928,17.216188,12156.106}; + name="control_14"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1121; + }; + class Item66 + { + dataType="Marker"; + position[]={10093.558,18.734219,12919.797}; + name="control_15"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1122; + }; + class Item67 + { + dataType="Marker"; + position[]={12377.377,21.578207,15871.573}; + name="control_16"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1123; + }; + class Item68 + { + dataType="Marker"; + position[]={11293.307,58.806793,17517.594}; + name="control_17"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1124; + }; + class Item69 + { + dataType="Marker"; + position[]={13547.545,19.099752,18669.258}; + name="control_18"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1125; + }; + class Item70 + { + dataType="Marker"; + position[]={14299.458,28.614883,19467.055}; + name="control_19"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1126; + }; + class Item71 + { + dataType="Marker"; + position[]={13645.276,19.155266,16084.521}; + name="control_20"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1127; + atlOffset=-3.8146973e-006; + }; + class Item72 + { + dataType="Marker"; + position[]={15868.175,14.615435,17421.17}; + name="control_21"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1128; + }; + class Item73 + { + dataType="Marker"; + position[]={15986.493,8.0299902,16130.729}; + name="control_22"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1129; + atlOffset=3.1471252e-005; + }; + class Item74 + { + dataType="Marker"; + position[]={18362.127,19.228302,17342.16}; + name="control_23"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1130; + }; + class Item75 + { + dataType="Marker"; + position[]={17490.688,5.5569239,14324.797}; + name="control_24"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1131; + }; + class Item76 + { + dataType="Marker"; + position[]={18271.459,27.275703,12900.734}; + name="control_25"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1132; + }; + class Item77 + { + dataType="Marker"; + position[]={20228.654,52.020004,9768.0547}; + name="control_26"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1133; + }; + class Item78 + { + dataType="Marker"; + position[]={21586.922,14.105127,7801.9902}; + name="control_27"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1134; + }; + class Item79 + { + dataType="Marker"; + position[]={20792.029,36.949718,16645.305}; + name="control_28"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1135; + }; + class Item80 + { + dataType="Marker"; + position[]={21685.58,22.36945,17643.285}; + name="control_29"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1136; + }; + class Item81 + { + dataType="Marker"; + position[]={22971.109,13.492899,19366.07}; + name="control_30"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1137; + }; + class Item82 + { + dataType="Marker"; + position[]={24790.133,20.474581,20720.881}; + name="control_31"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1138; + }; + class Item83 + { + dataType="Marker"; + position[]={25990.26,24.751326,21568.287}; + name="control_32"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1139; + }; + class Item84 + { + dataType="Marker"; + position[]={26981.279,11.84,23830.973}; + name="control_33"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1140; + }; + class Item85 + { + dataType="Marker"; + position[]={5931.3213,35.499817,22072.861}; + name="control_34"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1141; + atlOffset=-180.69971; + }; + class Item86 + { + dataType="Marker"; + position[]={4078.9751,133.23485,22090.877}; + name="control_35"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1142; + }; + class Item87 + { + dataType="Marker"; + position[]={3876.7268,150.10907,21272.254}; + name="control_36"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1143; + }; + class Item88 + { + dataType="Marker"; + position[]={7787.8447,98.140869,21684.877}; + name="control_37"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1144; + atlOffset=-25.776688; + }; + class Item89 + { + dataType="Marker"; + position[]={3261.9119,122.53696,19385.77}; + name="control_38"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1145; + atlOffset=-42.672791; + }; + class Item90 + { + dataType="Marker"; + position[]={4095.1401,290.75259,19930.941}; + name="control_39"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1146; + }; + class Item91 + { + dataType="Marker"; + position[]={5528.4966,173.61342,21299.682}; + name="control_40"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1147; + }; + class Item92 + { + dataType="Marker"; + position[]={8185.0068,83.494675,22893.648}; + name="control_41"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1148; + }; + class Item93 + { + dataType="Marker"; + position[]={14258.698,96.381104,22076.549}; + name="control_42"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1149; + atlOffset=24.824684; + }; + class Item94 + { + dataType="Marker"; + position[]={8006.2344,70.981575,20042.875}; + name="control_43"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1150; + }; + class Item95 + { + dataType="Marker"; + position[]={5771.7959,189.49142,19094.035}; + name="control_44"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1151; + }; + class Item96 + { + dataType="Marker"; + position[]={11738.693,45.491325,8850.6113}; + name="control_45"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1152; + }; + class Item97 + { + dataType="Marker"; + position[]={21060.4,1.3683789,14717.646}; + name="control_46"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1153; + atlOffset=-3.4213066e-005; + }; + class Item98 + { + dataType="Marker"; + position[]={17992.082,69.924828,10671.903}; + name="control_47"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1154; + }; + class Item99 + { + dataType="Marker"; + position[]={22960.973,24.957481,21887.336}; + name="control_48"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1155; + }; + class Item100 + { + dataType="Marker"; + position[]={24232.799,66.273628,21795.674}; + name="control_49"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1156; + }; + class Item101 + { + dataType="Marker"; + position[]={23923.436,45.721985,22723.762}; + name="control_50"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1157; + }; + class Item102 + { + dataType="Marker"; + position[]={24347.379,25.81115,23560.189}; + name="control_51"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1158; + }; + class Item103 + { + dataType="Marker"; + position[]={28045.74,39.501999,25409.574}; + name="control_52"; + markerType="RECTANGLE"; + type="rectangle"; + a=200; + b=200; + angle=231.22296; + id=1159; + atlOffset=0.00048828125; + }; + class Item104 + { + dataType="Marker"; + position[]={25963.797,66.576874,22488.859}; + name="control_53"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1160; + }; + class Item105 + { + dataType="Marker"; + position[]={8799.5547,129.67937,15250.9}; + name="control_54"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1161; + }; + class Item106 + { + dataType="Marker"; + position[]={10822.622,106.28155,15025.045}; + name="control_55"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1162; + }; + class Item107 + { + dataType="Marker"; + position[]={6641.7202,132.51106,12197.677}; + name="control_56"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1163; + }; + class Item108 + { + dataType="Marker"; + position[]={9522.5645,52.498535,7532.7705}; + name="control_57"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1165; + atlOffset=-6.007225; + }; + class Item109 + { + dataType="Marker"; + position[]={23662.633,5.3028078,16239.605}; + name="control_58"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + angle=231.22296; + id=1166; + }; + class Item110 + { + dataType="Marker"; + position[]={3376.6011,0,12753.058}; + name="seaSpawn"; + type="mil_objective"; + id=1167; + atlOffset=2.941112; + }; + class Item111 + { + dataType="Marker"; + position[]={3535.1458,2.8441161e-009,13774.347}; + name="seaSpawn_1"; + type="mil_objective"; + id=1168; + atlOffset=1.2454736; + }; + class Item112 + { + dataType="Marker"; + position[]={3807.0403,8.2976584e-008,17341.869}; + name="seaSpawn_2"; + type="mil_objective"; + id=1169; + atlOffset=4.6103921; + }; + class Item113 + { + dataType="Marker"; + position[]={16582.131,0,12303.811}; + name="seaSpawn_3"; + type="mil_objective"; + id=1170; + atlOffset=8.3859863; + }; + class Item114 + { + dataType="Marker"; + position[]={12749.965,2.2184195e-006,14198.212}; + name="seaSpawn_4"; + type="mil_objective"; + id=1171; + atlOffset=9.9826164; + }; + class Item115 + { + dataType="Marker"; + position[]={11837.512,-2.1113763e-006,13530.187}; + name="seaSpawn_5"; + type="mil_objective"; + id=1172; + atlOffset=4.5436969; + }; + class Item116 + { + dataType="Marker"; + position[]={2255.782,0,13234.797}; + name="seaAttackSpawn"; + type="mil_ambush"; + angle=28.695; + id=1174; + atlOffset=126.38051; + }; + class Item117 + { + dataType="Marker"; + position[]={3172.9761,2.8623674e-008,16757.107}; + name="seaAttackSpawn_1"; + type="mil_ambush"; + angle=327.2157; + id=1176; + atlOffset=107.35194; + }; + class Item118 + { + dataType="Marker"; + position[]={19879.293,0,21958.814}; + name="seaAttackSpawn_2"; + type="mil_ambush"; + angle=111.40697; + id=1177; + atlOffset=171.26703; + }; + class Item119 + { + dataType="Marker"; + position[]={25805.57,0,25990.992}; + name="seaAttackSpawn_3"; + type="mil_ambush"; + angle=28.695; + id=1178; + atlOffset=178.77411; + }; + class Item120 + { + dataType="Marker"; + position[]={24006.145,-6.4275355e-008,6603.1455}; + name="seaAttackSpawn_4"; + type="mil_ambush"; + angle=216.66417; + id=1179; + atlOffset=180.55885; + }; + class Item121 + { + dataType="Marker"; + position[]={15241.775,0,13870.712}; + name="seaAttackSpawn_5"; + type="mil_ambush"; + angle=28.695; + id=1180; + atlOffset=67.766624; + }; + class Item122 + { + dataType="Marker"; + position[]={13681.933,-8.68244e-008,10426.626}; + name="seaAttackSpawn_6"; + type="mil_ambush"; + angle=218.59846; + id=1181; + atlOffset=141.36031; + }; + class Item123 + { + dataType="Marker"; + position[]={3239.0374,7.4641165e-010,12861.445}; + name="seaSpawn_6"; + type="mil_objective"; + id=1184; + atlOffset=8.8429317; + }; + class Item124 + { + dataType="Marker"; + position[]={20649.865,0,19497.082}; + name="seaSpawn_7"; + type="mil_objective"; + id=1185; + atlOffset=2.1248169; + }; + class Item125 + { + dataType="Marker"; + position[]={27619.545,1.5190345e-008,24543.322}; + name="seaSpawn_8"; + type="mil_objective"; + id=1186; + atlOffset=5.0577831; + }; + class Item126 + { + dataType="Marker"; + position[]={15382.954,-4.1486221e-008,15813.717}; + name="seaSpawn_9"; + type="mil_objective"; + id=1187; + atlOffset=6.1902537; + }; + class Item127 + { + dataType="Object"; + class PositionInfo + { + position[]={8977.3438,27.781113,21410.1}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1188; + type="Land_Airport_Tower_F"; + }; + class Item128 + { + dataType="Object"; + class PositionInfo + { + position[]={23070.371,8.6534567,18752.451}; + angles[]={0,4.7255015,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1200; + type="Land_Hangar_F"; + }; + class Item129 + { + dataType="Object"; + class PositionInfo + { + position[]={4842.5225,341.48743,22001.531}; + angles[]={0,4.7289844,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=1235; + type="Land_Cargo_HQ_V1_F"; + atlOffset=0.3626709; + }; + class Item130 + { + dataType="Object"; + class PositionInfo + { + position[]={8996.4727,21.45295,21409.941}; + angles[]={0,2.4943135,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1237; + type="Land_Cargo_HQ_V1_F"; + }; + class Item131 + { + dataType="Object"; + class PositionInfo + { + position[]={11422.4,29.309406,11671.359}; + angles[]={0,1.0115303,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=1238; + type="Land_Cargo_HQ_V1_F"; + atlOffset=1.0188999; + }; + class Item132 + { + dataType="Object"; + class PositionInfo + { + position[]={22995.125,8.8610163,18852.758}; + angles[]={0,5.6882114,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=1243; + type="Land_Cargo_HQ_V1_F"; + atlOffset=0.94216871; + class CustomAttributes + { + class Attribute0 + { + property="DoorStates"; + expression="['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;"; + class Value + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=3; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item2 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + }; + }; + }; + nAttributes=1; + }; + }; + class Item133 + { + dataType="Object"; + class PositionInfo + { + position[]={26736.508,25.002501,24583.18}; + angles[]={0,2.2082093,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1244; + type="Land_Cargo_HQ_V1_F"; + }; + class Item134 + { + dataType="Object"; + class PositionInfo + { + position[]={20941.527,32.202915,7185.3008}; + angles[]={0,1.5555797,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1245; + type="Land_Cargo_HQ_V1_F"; + atlOffset=9.5367432e-006; + }; + class Item135 + { + dataType="Object"; + class PositionInfo + { + position[]={9293.0469,22.007439,21566.828}; + angles[]={0,4.30966,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1262; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item136 + { + dataType="Object"; + class PositionInfo + { + position[]={9170.5498,22.457399,21446.398}; + angles[]={0,5.6333933,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1264; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item137 + { + dataType="Object"; + class PositionInfo + { + position[]={9027.7578,23.531631,21343.953}; + angles[]={0,5.6333933,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1265; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item138 + { + dataType="Object"; + class PositionInfo + { + position[]={26822.635,28.719749,24575.076}; + angles[]={0,0.78758019,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1271; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item139 + { + dataType="Object"; + class PositionInfo + { + position[]={21135.934,28.32896,7179.5508}; + angles[]={0,4.8921785,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1273; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item140 + { + dataType="Object"; + class PositionInfo + { + position[]={20974.73,29.950148,7330.9082}; + angles[]={0,4.8921785,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1274; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=1.5258789e-005; + }; + class Item141 + { + dataType="Object"; + class PositionInfo + { + position[]={20725.863,36.504616,7208.3887}; + angles[]={0,0.99436247,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1275; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=2.0980835e-005; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={9126.1553,27.412918,21637.201}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1286; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-0.0099000931; + }; + class Item143 + { + dataType="Object"; + class PositionInfo + { + position[]={11477.765,35.963001,11723.507}; + angles[]={0,4.2127972,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1287; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-0.017017365; + }; + class Item144 + { + dataType="Object"; + class PositionInfo + { + position[]={22988.684,16.9498,18911.826}; + angles[]={0,4.0796099,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1289; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-4.7683716e-007; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={26799.561,31.617382,24688.488}; + angles[]={0,5.3050466,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1292; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-1.011385; + }; + class Item146 + { + dataType="Object"; + class PositionInfo + { + position[]={21047.531,34.702774,7278.1133}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1293; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-1.9073486e-006; + }; + class Item147 + { + dataType="Object"; + class PositionInfo + { + position[]={9061.2451,19.961628,21534.646}; + angles[]={0,2.360858,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1318; + type="Land_TentHangar_V1_F"; + atlOffset=-9.5367432e-007; + }; + class Item148 + { + dataType="Object"; + class PositionInfo + { + position[]={9091.042,19.327972,21561.338}; + angles[]={0,2.3761454,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1319; + type="Land_TentHangar_V1_F"; + atlOffset=9.5367432e-007; + }; + class Item149 + { + dataType="Object"; + class PositionInfo + { + position[]={21180.666,22.782005,7366.3877}; + angles[]={0,4.3736625,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1331; + type="Land_TentHangar_V1_F"; + atlOffset=1.9073486e-006; + }; + class Item150 + { + dataType="Object"; + class PositionInfo + { + position[]={21157.563,25.296978,7247.1904}; + angles[]={0,5.1925039,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1332; + type="Land_TentHangar_V1_F"; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={23221.844,5.8685412,18859.59}; + angles[]={0,1.5504203,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1336; + type="Land_Airport_01_hangar_F"; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={23218.164,8.0950003,18804.531}; + angles[]={0,5.2616692,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1337; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={26850.596,31.404058,24470.365}; + angles[]={0,6.2068391,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1338; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item154 + { + dataType="Object"; + class PositionInfo + { + position[]={27018.689,28.935732,24672.563}; + angles[]={0,5.4241157,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=1339; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=1.4176254; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={26734.734,31.658321,24606.318}; + angles[]={0,3.7836525,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=1340; + type="Land_Airport_Tower_F"; + atlOffset=0.48480988; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={23073.195,8.0950003,18689.061}; + angles[]={0,0.71987998,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1343; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item157 + { + dataType="Object"; + class PositionInfo + { + position[]={11553.854,27.335001,11559.937}; + angles[]={0,5.1253457,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1344; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={11638.675,27.272053,11798.894}; + angles[]={0,4.1140165,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1345; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={11661.325,27.89052,11990.291}; + angles[]={0,3.8163784,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1346; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={11542.937,28.960028,11928.523}; + angles[]={0,1.3898941,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1347; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={14827.185,22.847755,16421.967}; + angles[]={0,4.4921894,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1350; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={14730.716,30.796209,16571.352}; + angles[]={0,0.78664351,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1351; + type="Land_Cargo_Tower_V1_F"; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={14770.462,21.7854,16646.947}; + angles[]={0,3.2631023,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1357; + type="Land_Cargo_HQ_V1_F"; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={14897.738,22.811348,16668.238}; + angles[]={0,3.867835,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1358; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={3608.8811,19.602364,10284.22}; + angles[]={6.2272477,0,6.2392201}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="flagX"; + }; + id=1370; + type="Flag_Altis_F"; + atlOffset=9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={13537.357,18.774933,12085.127}; + }; + side="Empty"; + flags=5; + class Attributes + { + init="if (!isMultiplayer) then {deleteVehicle this};"; + }; + id=1389; + type="Flag_NATO_F"; + atlOffset=-0.6429987; + }; + class Item167 + { + dataType="Marker"; + position[]={13537.383,17.984203,12063.334}; + name="respawn_west"; + type="flag_CTRG"; + id=1390; + atlOffset=4.0483103; + }; + class Item168 + { + dataType="Group"; + side="West"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={13537.015,15.694531,12077.749}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_blue_1"; + isPlayable=1; + }; + id=1407; + type="B_recon_TL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={13542.015,15.338387,12072.749}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; + name="pvp_blue_4"; + isPlayable=1; + }; + id=1408; + type="B_recon_M_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={13532.015,14.565668,12072.749}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_blue_2"; + isPlayable=1; + }; + id=1409; + type="B_recon_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={13527.015,14.16153,12067.749}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; + name="pvp_blue_5"; + isPlayable=1; + }; + id=1411; + type="B_recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={13544.494,14.759296,12070.628}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; + name="pvp_blue_3"; + isPlayable=1; + }; + id=1415; + type="B_Patrol_Soldier_MG_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={13539.265,14.667098,12068.41}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; + name="pvp_blue_6"; + isPlayable=1; + }; + id=1552; + type="B_recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1406; + }; + class Item169 + { + dataType="Marker"; + position[]={10027.582,17.59524,12814.658}; + name="road"; + type="hd_arrow"; + angle=227.508; + id=1440; + }; + class Item170 + { + dataType="Marker"; + position[]={8780.8975,35.592316,12043.754}; + name="road_1"; + type="hd_arrow"; + angle=223.50795; + id=1441; + }; + class Item171 + { + dataType="Marker"; + position[]={7336.4771,16.04541,11418.288}; + name="road_2"; + type="hd_arrow"; + angle=13.06902; + id=1442; + atlOffset=3.2962132; + }; + class Item172 + { + dataType="Marker"; + position[]={10432.575,14.689998,11982.5}; + name="road_4"; + type="hd_arrow"; + angle=227.508; + id=1445; + }; + class Item173 + { + dataType="Marker"; + position[]={9615.0332,12.606598,11695.909}; + name="road_5"; + type="hd_arrow"; + angle=266.26797; + id=1446; + atlOffset=0.63069153; + }; + class Item174 + { + dataType="Marker"; + position[]={11034.368,63.11581,12973.104}; + name="road_3"; + type="hd_arrow"; + angle=41.155243; + id=1443; + atlOffset=43.66288; + }; + class Item175 + { + dataType="Marker"; + position[]={11738.429,13.323238,13913.249}; + name="road_6"; + type="hd_arrow"; + angle=26.564579; + id=1447; + }; + class Item176 + { + dataType="Marker"; + position[]={13483.127,15.282019,16028.804}; + name="road_7"; + type="hd_arrow"; + angle=254.67212; + id=1448; + }; + class Item177 + { + dataType="Marker"; + position[]={12479.82,32.146729,15886.568}; + name="road_8"; + type="hd_arrow"; + angle=263.33395; + id=1450; + atlOffset=12.854931; + }; + class Item178 + { + dataType="Marker"; + position[]={14286.374,17.269678,18161.129}; + name="road_9"; + type="hd_arrow"; + angle=333.82483; + id=1451; + }; + class Item179 + { + dataType="Marker"; + position[]={14310.426,26.728813,19600.521}; + name="road_10"; + type="hd_arrow"; + angle=14.435917; + id=1452; + }; + class Item180 + { + dataType="Marker"; + position[]={14772.154,14.778986,17175.191}; + name="road_11"; + type="hd_arrow"; + angle=53.226994; + id=1453; + }; + class Item181 + { + dataType="Marker"; + position[]={16953.045,16.280811,17813.107}; + name="road_12"; + type="hd_arrow"; + angle=64.545609; + id=1454; + }; + class Item182 + { + dataType="Marker"; + position[]={15896.649,11.202651,16178.266}; + name="road_13"; + type="hd_arrow"; + angle=120.79032; + id=1455; + }; + class Item183 + { + dataType="Marker"; + position[]={17469.98,4.3621092,14443.852}; + name="road_14"; + type="hd_arrow"; + angle=148.54735; + id=1456; + }; + class Item184 + { + dataType="Marker"; + position[]={17045.52,15.683575,12893.139}; + name="road_15"; + type="hd_arrow"; + angle=227.508; + id=1457; + }; + class Item185 + { + dataType="Marker"; + position[]={9380.7666,47.546509,21152.375}; + name="road_16"; + type="hd_arrow"; + angle=155.2245; + id=1458; + }; + class Item186 + { + dataType="Marker"; + position[]={9718.4492,183.56577,19929.207}; + name="road_17"; + type="hd_arrow"; + angle=117.23835; + id=1459; + }; + class Item187 + { + dataType="Marker"; + position[]={9819.0234,94.69236,18539.961}; + name="road_18"; + type="hd_arrow"; + angle=227.508; + id=1460; + }; + class Item188 + { + dataType="Marker"; + position[]={7528.1772,171.76268,17280.842}; + name="road_19"; + type="hd_arrow"; + angle=227.508; + id=1462; + }; + class Item189 + { + dataType="Marker"; + position[]={6922.4834,188.9752,19240.162}; + name="road_20"; + type="hd_arrow"; + angle=1.5074006; + id=1463; + }; + class Item190 + { + dataType="Marker"; + position[]={5246.1899,230.57468,20359.127}; + name="road_21"; + type="hd_arrow"; + angle=284.62128; + id=1464; + }; + class Item191 + { + dataType="Marker"; + position[]={21951.461,14.131549,7363.1597}; + name="road_22"; + type="hd_arrow"; + angle=128.61185; + id=1465; + }; + class Item192 + { + dataType="Marker"; + position[]={21274.943,15.456692,8186.6035}; + name="road_23"; + type="hd_arrow"; + angle=317.16461; + id=1466; + }; + class Item193 + { + dataType="Marker"; + position[]={20046.328,55.846924,8865.0693}; + name="road_24"; + type="hd_arrow"; + angle=290.07159; + id=1467; + }; + class Item194 + { + dataType="Marker"; + position[]={20573.68,19.865625,10695.808}; + name="road_25"; + type="hd_arrow"; + angle=354.21683; + id=1468; + }; + class Item195 + { + dataType="Marker"; + position[]={22282.488,15.448867,18421.662}; + name="road_26"; + type="hd_arrow"; + angle=227.508; + id=1469; + }; + class Item196 + { + dataType="Marker"; + position[]={21706.1,22.576994,17678.889}; + name="road_27"; + type="hd_arrow"; + angle=213.26985; + id=1470; + }; + class Item197 + { + dataType="Marker"; + position[]={21005.709,35.480789,17676.527}; + name="road_28"; + type="hd_arrow"; + angle=2.0592506; + id=1471; + }; + class Item198 + { + dataType="Marker"; + position[]={20651.492,34.118702,18726.168}; + name="road_29"; + type="hd_arrow"; + angle=353.88327; + id=1472; + }; + class Item199 + { + dataType="Marker"; + position[]={20633.316,30.614683,16457.666}; + name="road_30"; + type="hd_arrow"; + angle=227.508; + id=1473; + }; + class Item200 + { + dataType="Marker"; + position[]={19814.211,16.058229,15687.382}; + name="road_31"; + type="hd_arrow"; + angle=227.508; + id=1474; + }; + class Item201 + { + dataType="Marker"; + position[]={23162.15,14.283377,19607.332}; + name="road_32"; + type="hd_arrow"; + angle=34.257725; + id=1475; + }; + class Item202 + { + dataType="Marker"; + position[]={22555.17,27.099434,20589.469}; + name="road_33"; + type="hd_arrow"; + angle=335.03088; + id=1476; + }; + class Item203 + { + dataType="Marker"; + position[]={23029.904,51.844334,21113.5}; + name="road_34"; + type="hd_arrow"; + angle=63.785625; + id=1477; + }; + class Item204 + { + dataType="Marker"; + position[]={24637.473,21.285206,20648.904}; + name="road_35"; + type="hd_arrow"; + angle=57.619133; + id=1478; + }; + class Item205 + { + dataType="Marker"; + position[]={25174.367,14.661154,20623.25}; + name="road_36"; + type="hd_arrow"; + angle=127.69429; + id=1479; + }; + class Item206 + { + dataType="Marker"; + position[]={25325.771,17.582952,21110.881}; + name="road_37"; + type="hd_arrow"; + angle=334.7471; + id=1480; + }; + class Item207 + { + dataType="Marker"; + position[]={24739.473,75.226112,21810.691}; + name="road_38"; + type="hd_arrow"; + angle=69.393608; + id=1481; + }; + class Item208 + { + dataType="Marker"; + position[]={26280.432,40.25845,21788.68}; + name="road_39"; + type="hd_arrow"; + angle=52.54501; + id=1482; + }; + class Item209 + { + dataType="Marker"; + position[]={26493.066,20.179955,21324.83}; + name="road_40"; + type="hd_arrow"; + angle=113.11586; + id=1483; + }; + class Item210 + { + dataType="Marker"; + position[]={27080.533,11.835176,24018.773}; + name="road_41"; + type="hd_arrow"; + angle=227.508; + id=1484; + atlOffset=9.5367432e-007; + }; + class Item211 + { + dataType="Marker"; + position[]={26716.645,23.527546,22928.643}; + name="road_42"; + type="hd_arrow"; + angle=227.508; + id=1485; + }; + class Item212 + { + dataType="Marker"; + position[]={8431.4795,115.94597,25108.053}; + name="respawn_east"; + type="flag_Viper"; + id=1486; + atlOffset=5.421051; + }; + class Item213 + { + dataType="Group"; + side="East"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8430.0654,111.13419,25112.033}; + }; + side="East"; + flags=7; + class Attributes + { + init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_red_1"; + isPlayable=1; + }; + id=1488; + type="O_T_Recon_TL_F"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={8425.2529,110.82542,25107.521}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_red_2"; + isPlayable=1; + }; + id=1489; + type="O_T_Recon_Medic_F"; + atlOffset=-7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={8434.7275,110.06153,25107.672}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; + name="pvp_red_4"; + isPlayable=1; + }; + id=1490; + type="O_T_Recon_M_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={8420.9658,110.31297,25102.33}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; + name="pvp_red_5"; + isPlayable=1; + }; + id=1491; + type="O_T_Recon_LAT_F"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={8431.4385,111.04685,25113.623}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; + name="pvp_red_3"; + isPlayable=1; + }; + id=1554; + type="O_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01PER"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={8430.5313,110.82644,25109.266}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; + name="pvp_red_6"; + isPlayable=1; + }; + id=1556; + type="O_T_Recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1487; + atlOffset=7.6293945e-006; + }; + class Item214 + { + dataType="Object"; + class PositionInfo + { + position[]={8421.9697,115.51557,25113.684}; + angles[]={6.2711902,0,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=1496; + type="Flag_Viper_F"; + }; + class Item215 + { + dataType="Logic"; + class PositionInfo + { + position[]={3601.2261,15.886338,10268.799}; + angles[]={6.2818413,0,6.2431998}; + }; + name="hc_1"; + isPlayable=1; + id=1536; + type="HeadlessClient_F"; + atlOffset=1.1444092e-005; + }; + class Item216 + { + dataType="Logic"; + class PositionInfo + { + position[]={3603.0728,15.78653,10267.805}; + angles[]={6.2818413,0,6.2431998}; + }; + name="hc_2"; + isPlayable=1; + id=1537; + type="HeadlessClient_F"; + atlOffset=1.5258789e-005; + }; + class Item217 + { + dataType="Logic"; + class PositionInfo + { + position[]={3630.5549,14.448284,10270.185}; + }; + id=1542; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + }; + nAttributes=4; + }; + }; + class Item218 + { + dataType="Object"; + class PositionInfo + { + position[]={3605.1279,16.32,10278.098}; + angles[]={0.014660765,1.0016968,6.2232509}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=1546; + type="Land_TentSolar_01_olive_F"; + atlOffset=-0.049278259; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item219 + { + dataType="Logic"; + class PositionInfo + { + position[]={3612.949,14.978458,10264.68}; + }; + name="pathfinding"; + id=1557; + type="Logic"; + atlOffset=9.5367432e-007; + }; + class Item220 + { + dataType="Object"; + class PositionInfo + { + position[]={11586.479,23.150442,11886.812}; + angles[]={0,5.2593365,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1563; + type="Land_HelipadCircle_F"; + }; + class Item221 + { + dataType="Object"; + class PositionInfo + { + position[]={11603.137,23.015364,11910.663}; + angles[]={0,5.2871041,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1564; + type="Land_HelipadCircle_F"; + }; + class Item222 + { + dataType="Object"; + class PositionInfo + { + position[]={11609.145,22.967529,11888.445}; + angles[]={0,5.2837157,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1565; + type="Land_HelipadCircle_F"; + atlOffset=3.2424927e-005; + }; + class Item223 + { + dataType="Object"; + class PositionInfo + { + position[]={11617.466,27.614178,11976.021}; + angles[]={0,3.6764419,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1567; + type="Land_TentHangar_V1_F"; + }; + class Item224 + { + dataType="Object"; + class PositionInfo + { + position[]={11642.675,27.122509,11959.355}; + angles[]={0,3.7511308,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1568; + type="Land_TentHangar_V1_F"; + }; + class Item225 + { + dataType="Object"; + class PositionInfo + { + position[]={20819.564,28.400938,7243.8145}; + angles[]={0,5.633924,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1575; + type="Land_HelipadCircle_F"; + }; + class Item226 + { + dataType="Object"; + class PositionInfo + { + position[]={20839.285,27.921206,7257.9385}; + angles[]={0,5.633924,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1576; + type="Land_HelipadCircle_F"; + }; + class Item227 + { + dataType="Object"; + class PositionInfo + { + position[]={21057.822,23.448298,7238.9238}; + angles[]={0,1.6479356,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1577; + type="Land_HelipadCircle_F"; + atlOffset=5.7220459e-006; + }; + class Item228 + { + dataType="Object"; + class PositionInfo + { + position[]={21054.596,24.263668,7211.5337}; + angles[]={0,1.6741188,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1578; + type="Land_HelipadCircle_F"; + }; + class Item229 + { + dataType="Object"; + class PositionInfo + { + position[]={23070.713,8.6534567,18815.15}; + angles[]={0,4.7135677,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1585; + type="Land_Hangar_F"; + }; + class Item230 + { + dataType="Object"; + class PositionInfo + { + position[]={23072.023,3.1900001,18925.348}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1587; + type="Land_HelipadCircle_F"; + }; + class Item231 + { + dataType="Object"; + class PositionInfo + { + position[]={23069.115,3.1900001,18888.572}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1588; + type="Land_HelipadCircle_F"; + }; + class Item232 + { + dataType="Object"; + class PositionInfo + { + position[]={23094.568,3.1900001,18871.748}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1589; + type="Land_HelipadCircle_F"; + }; + class Item233 + { + dataType="Object"; + class PositionInfo + { + position[]={23093.002,3.1900001,18906.766}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1590; + type="Land_HelipadCircle_F"; + }; + class Item234 + { + dataType="Object"; + class PositionInfo + { + position[]={23095.957,3.1900001,18940.182}; + angles[]={0,4.7131939,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1591; + type="Land_HelipadCircle_F"; + }; + class Item235 + { + dataType="Object"; + class PositionInfo + { + position[]={23211.748,8.0950003,18905.283}; + angles[]={0,1.0745872,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1592; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item236 + { + dataType="Object"; + class PositionInfo + { + position[]={26818.969,26.935982,24601.713}; + angles[]={0,5.3539333,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1597; + type="Land_TentHangar_V1_F"; + atlOffset=-0.41318321; + }; + class Item237 + { + dataType="Object"; + class PositionInfo + { + position[]={26843.52,26.43425,24632.99}; + angles[]={0,5.4110885,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1598; + type="Land_TentHangar_V1_F"; + atlOffset=1.1444092e-005; + }; + class Item238 + { + dataType="Object"; + class PositionInfo + { + position[]={26877.619,22.079607,24656.828}; + angles[]={0,2.257772,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1599; + type="Land_HelipadCircle_F"; + atlOffset=6.4849854e-005; + }; + class Item239 + { + dataType="Object"; + class PositionInfo + { + position[]={26803.971,23.601379,24578.797}; + angles[]={0,2.3342323,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1600; + type="Land_HelipadCircle_F"; + }; + class Item240 + { + dataType="Object"; + class PositionInfo + { + position[]={26871.34,25.597649,24509.693}; + angles[]={0,2.2256284,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1606; + type="Land_HelipadSquare_F"; + }; + class Item241 + { + dataType="Object"; + class PositionInfo + { + position[]={26884.195,25.441963,24526.4}; + angles[]={0,2.2256284,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1610; + type="Land_HelipadSquare_F"; + }; + class Item242 + { + dataType="Object"; + class PositionInfo + { + position[]={26895.354,25.221388,24541.877}; + angles[]={0,2.2256284,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1611; + type="Land_HelipadSquare_F"; + }; + class Item243 + { + dataType="Object"; + class PositionInfo + { + position[]={14875.615,17.860001,16668.982}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1617; + type="Land_HelipadCircle_F"; + }; + class Item244 + { + dataType="Object"; + class PositionInfo + { + position[]={14853.082,17.786697,16645.82}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1618; + type="Land_HelipadCircle_F"; + }; + class Item245 + { + dataType="Object"; + class PositionInfo + { + position[]={14830.139,17.874176,16621.564}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1619; + type="Land_HelipadCircle_F"; + }; + class Item246 + { + dataType="Object"; + class PositionInfo + { + position[]={14806.363,17.85,16597.064}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1620; + type="Land_HelipadCircle_F"; + }; + class Item247 + { + dataType="Object"; + class PositionInfo + { + position[]={14786.016,17.856924,16573.846}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1621; + type="Land_HelipadCircle_F"; + }; + class Item248 + { + dataType="Object"; + class PositionInfo + { + position[]={14766.039,17.861952,16551.871}; + angles[]={0,2.3506138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1622; + type="Land_HelipadCircle_F"; + atlOffset=3.8146973e-006; + }; + class Item249 + { + dataType="Object"; + class PositionInfo + { + position[]={14803.744,17.91,16658.764}; + angles[]={0,2.3781972,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1623; + type="Land_HelipadSquare_F"; + }; + class Item250 + { + dataType="Object"; + class PositionInfo + { + position[]={14823.184,17.91,16678.377}; + angles[]={0,2.3781972,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1624; + type="Land_HelipadSquare_F"; + }; + class Item251 + { + dataType="Object"; + class PositionInfo + { + position[]={14842.098,17.91,16696.295}; + angles[]={0,2.3781972,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1625; + type="Land_HelipadSquare_F"; + }; + class Item252 + { + dataType="Object"; + class PositionInfo + { + position[]={9162.1797,16.213236,21559.98}; + angles[]={0,5.5412021,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1631; + type="Land_HelipadCircle_F"; + }; + class Item253 + { + dataType="Object"; + class PositionInfo + { + position[]={9179.6924,16.472427,21575.178}; + angles[]={0,5.5412021,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1632; + type="Land_HelipadCircle_F"; + atlOffset=0.27338982; + }; + class Item254 + { + dataType="Object"; + class PositionInfo + { + position[]={9198.3818,16.388416,21587.236}; + angles[]={0,5.5730138,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1633; + type="Land_HelipadCircle_F"; + }; + class Item255 + { + dataType="Layer"; + name="Airports"; + class Entities + { + items=23; + class Item0 + { + dataType="Marker"; + position[]={23191.311,3.1900001,18917.994}; + name="airp_1_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=6.9310002; + b=6.744; + id=1596; + }; + class Item1 + { + dataType="Marker"; + position[]={26846.217,23.737,24606.039}; + name="airp_2_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.8610001; + b=9.5749998; + id=1609; + atlOffset=2.0980835e-005; + }; + class Item2 + { + dataType="Marker"; + position[]={14853.749,17.956806,16491.012}; + name="airp_3_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=17.136; + b=16.895; + angle=353.42892; + id=1628; + }; + class Item3 + { + dataType="Marker"; + position[]={14954.535,17.765684,16597.229}; + name="airp_3_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=17.136; + b=16.895; + angle=353.42892; + id=1629; + }; + class Item4 + { + dataType="Marker"; + position[]={11562.38,23.750654,11929.747}; + name="airp_4_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.927; + b=15.271; + id=1561; + }; + class Item5 + { + dataType="Marker"; + position[]={9195.5684,16.519024,21568.422}; + name="airp_5_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3.8843985; + b=3.8741875; + id=1635; + atlOffset=0.013372421; + }; + class Item6 + { + dataType="Marker"; + position[]={21024.576,23.922001,7252.1699}; + name="airp_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.302; + b=8.4110003; + id=1583; + atlOffset=0.50602913; + }; + class Item7 + { + dataType="Marker"; + position[]={22965.484,4.9000001,18853.426}; + name="airp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.01; + b=6; + angle=317.85184; + id=1593; + atlOffset=0.0022754669; + }; + class Item8 + { + dataType="Marker"; + position[]={26763.748,23.247999,24546.551}; + name="airp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=33.296001; + b=6; + angle=220.58192; + id=1607; + atlOffset=0.18144035; + }; + class Item9 + { + dataType="Marker"; + position[]={14299.411,20.48,16252.257}; + name="airp_3_hangar"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBlue"; + alpha=0.19649974; + a=172.931; + b=121.228; + angle=136.51895; + id=1630; + atlOffset=0.65313721; + }; + class Item10 + { + dataType="Marker"; + position[]={14700.648,17.91,16600.648}; + name="airp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=35.460999; + b=6; + angle=225.25763; + id=1626; + }; + class Item11 + { + dataType="Marker"; + position[]={14819.606,18,16454.67}; + name="airp_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=31.379; + b=6; + angle=222.93495; + id=1627; + atlOffset=0.00088882446; + }; + class Item12 + { + dataType="Marker"; + position[]={11503.917,23.232302,11751.302}; + name="airp_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.308634; + b=6; + angle=123.88646; + id=1560; + }; + class Item13 + { + dataType="Marker"; + position[]={11712.308,22.716999,11820.477}; + name="airp_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.937; + b=6; + angle=300.15302; + id=1562; + atlOffset=0.00036048889; + }; + class Item14 + { + dataType="Marker"; + position[]={9186.917,14.396,21665.922}; + name="airp_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=26.197001; + b=6; + angle=146.48099; + id=1634; + atlOffset=0.00047016144; + }; + class Item15 + { + dataType="Marker"; + position[]={20767.543,29.374001,7237.8218}; + name="airp_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17; + b=6; + angle=325.87982; + id=1582; + atlOffset=-0.00016021729; + }; + class Item16 + { + dataType="Marker"; + position[]={20946.979,27.176001,7213.6758}; + name="airp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.5; + b=6; + angle=22.82; + id=1581; + atlOffset=-0.010564804; + }; + class Item17 + { + dataType="Marker"; + position[]={21017.943,24.11792,7303.1069}; + name="airport"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=271.35101; + b=200.60085; + angle=129.67987; + id=6; + atlOffset=1.4751205; + }; + class Item18 + { + dataType="Marker"; + position[]={23075.848,0,18812.463}; + name="airport_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=279.2023; + b=205.09465; + angle=304.11368; + id=7; + atlOffset=-3.1900001; + }; + class Item19 + { + dataType="Marker"; + position[]={26954.967,21.379999,24778.498}; + name="airport_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=318.77859; + b=125.25679; + angle=130.48837; + id=1101; + atlOffset=0.79302025; + }; + class Item20 + { + dataType="Marker"; + position[]={14778.72,0,16401.324}; + name="airport_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=647.73114; + b=193.50763; + angle=135.513; + id=31; + atlOffset=-18.090067; + }; + class Item21 + { + dataType="Marker"; + position[]={11503.476,0,11701.17}; + name="airport_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=331.07092; + b=181.34116; + angle=314.02783; + id=45; + atlOffset=-22.98; + }; + class Item22 + { + dataType="Marker"; + position[]={9096.5146,15.348633,21508.184}; + name="airport_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=200; + b=100; + angle=143.29141; + id=46; + atlOffset=-1.2858829; + }; + }; + id=1636; + atlOffset=-25.965174; + }; + class Item256 + { + dataType="Object"; + class PositionInfo + { + position[]={20743.887,17.562506,15741.354}; + angles[]={0,2.4153216,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1648; + type="Land_HelipadCircle_F"; + atlOffset=2.2888184e-005; + }; + class Item257 + { + dataType="Object"; + class PositionInfo + { + position[]={26988.49,19.880995,21467.514}; + angles[]={0,2.3535261,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1652; + type="Land_HelipadCircle_F"; + }; + class Item258 + { + dataType="Object"; + class PositionInfo + { + position[]={11047.395,18.104622,12641.758}; + angles[]={0,2.0727766,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1656; + type="Land_HelipadCircle_F"; + atlOffset=0.64629745; + }; + class Item259 + { + dataType="Object"; + class PositionInfo + { + position[]={8232.5889,15.575656,10996.193}; + angles[]={0,4.0670872,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1657; + type="Land_HelipadCircle_F"; + }; + class Item260 + { + dataType="Object"; + class PositionInfo + { + position[]={4232.9731,18.254112,15055.373}; + angles[]={0,3.1258714,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1660; + type="Land_HelipadCircle_F"; + }; + class Item261 + { + dataType="Layer"; + name="Factories"; + class Entities + { + items=31; + class Item0 + { + dataType="Marker"; + position[]={8285.9092,15.492,10903.326}; + name="fact_10_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.764999; + b=5.5; + angle=265.375; + id=1658; + atlOffset=0.57285213; + }; + class Item1 + { + dataType="Marker"; + position[]={4185.667,17.287001,15046.085}; + name="fact_11_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=6.835; + b=5.5; + angle=270.978; + id=1659; + atlOffset=-0.00025367737; + }; + class Item2 + { + dataType="Marker"; + position[]={4131.3794,15.209846,15057.502}; + name="fact_11_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.722984; + b=5.5; + angle=106.54834; + id=1661; + atlOffset=-0.63444233; + }; + class Item3 + { + dataType="Marker"; + position[]={14311.02,36.740002,18878.246}; + name="fact_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.722; + b=5.5; + angle=228.60692; + id=1640; + atlOffset=0.0013275146; + }; + class Item4 + { + dataType="Marker"; + position[]={14362.517,37.307957,18958.117}; + name="fact_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.722; + b=5.5; + angle=143.54582; + id=1641; + }; + class Item5 + { + dataType="Marker"; + position[]={6345.4707,35.005791,14910.216}; + name="fact_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.722; + b=5.5; + angle=295.82956; + id=1642; + }; + class Item6 + { + dataType="Marker"; + position[]={6244.8101,43,16278.202}; + name="fact_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.01; + b=5.5; + angle=180.597; + id=1643; + }; + class Item7 + { + dataType="Marker"; + position[]={6187.9878,43,16271.688}; + name="fact_3_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=8.8719997; + b=5.5; + angle=270.99994; + id=1644; + }; + class Item8 + { + dataType="Marker"; + position[]={3246.9399,4.7160001,12463.616}; + name="fact_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13; + b=6; + angle=256.22601; + id=1559; + atlOffset=-1.5001416; + }; + class Item9 + { + dataType="Marker"; + position[]={25448.539,10.025,20330.535}; + name="fact_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=8.6000004; + b=5.5; + angle=150.81094; + id=1645; + atlOffset=0.00035190582; + }; + class Item10 + { + dataType="Marker"; + position[]={25358.654,9.7697802,20302.305}; + name="fact_5_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.529018; + b=5.5; + angle=56.9062; + id=1646; + atlOffset=-0.15297318; + }; + class Item11 + { + dataType="Marker"; + position[]={20648.98,18.131001,15757.297}; + name="fact_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=25; + b=6; + angle=233.04599; + id=1647; + atlOffset=0.93072128; + }; + class Item12 + { + dataType="Marker"; + position[]={27044.109,20.688999,21468.033}; + name="fact_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=11.13; + b=5.5; + angle=137.11894; + id=1650; + atlOffset=0.064939499; + }; + class Item13 + { + dataType="Marker"; + position[]={27010,18.7875,21424.006}; + name="fact_7_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=11.13; + b=5.5; + angle=141.68312; + id=1651; + }; + class Item14 + { + dataType="Marker"; + position[]={15291.658,10.008375,16212.938}; + name="fact_8_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=33.26709; + b=6; + angle=352.70258; + id=1653; + }; + class Item15 + { + dataType="Marker"; + position[]={10968.212,21.761,12689.081}; + name="fact_9_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.265; + b=5.5; + angle=299.42899; + id=1654; + atlOffset=-0.00028800964; + }; + class Item16 + { + dataType="Marker"; + position[]={10914.66,23.725,12707.387}; + name="fact_9_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.265; + b=5.5; + angle=118.049; + id=1655; + atlOffset=0.00044059753; + }; + class Item17 + { + dataType="Marker"; + position[]={12729.266,34.731998,16353.8}; + name="fact_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.265; + b=5.5; + angle=15.596994; + id=1637; + atlOffset=-0.00015640259; + }; + class Item18 + { + dataType="Marker"; + position[]={12628.22,0,16374.55}; + name="factory"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=121.49196; + b=80.056549; + angle=38.800323; + id=13; + atlOffset=-33.912735; + }; + class Item19 + { + dataType="Marker"; + position[]={14340.091,36.934258,18940.465}; + name="factory_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=120; + b=80; + angle=317.49139; + id=14; + }; + class Item20 + { + dataType="Marker"; + position[]={8226.3398,14.246,10939.702}; + name="factory_10"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=100; + b=100; + angle=50.816978; + id=63; + atlOffset=-0.00012683868; + }; + class Item21 + { + dataType="Marker"; + position[]={4227.8091,18.129999,15052.771}; + name="factory_11"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=75; + b=60; + angle=180.3139; + id=64; + atlOffset=-0.00013160706; + }; + class Item22 + { + dataType="Marker"; + position[]={6339.8169,0,14889.688}; + name="factory_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=55; + b=40; + angle=27.999996; + id=59; + atlOffset=-35.288883; + }; + class Item23 + { + dataType="Marker"; + position[]={6191,0,16249}; + name="factory_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=110; + b=60; + angle=178.99994; + id=60; + atlOffset=-43; + }; + class Item24 + { + dataType="Marker"; + position[]={3269.7839,6.9039998,12451.454}; + name="factory_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=40; + b=40; + angle=72.914001; + id=61; + atlOffset=-0.00010585785; + }; + class Item25 + { + dataType="Marker"; + position[]={25413.35,9.8909998,20337.379}; + name="factory_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=80; + b=80; + angle=324.89685; + id=12; + atlOffset=0.0003528595; + }; + class Item26 + { + dataType="Marker"; + position[]={20671.299,17.236,15727.05}; + name="factory_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=240; + b=100; + angle=324.89685; + id=0; + atlOffset=0.00019645691; + }; + class Item27 + { + dataType="Marker"; + position[]={27005.279,21.662001,21521.68}; + name="factory_7"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=100; + b=100; + angle=227.32204; + id=2; + atlOffset=-0.00027656555; + }; + class Item28 + { + dataType="Marker"; + position[]={15324.894,0,16240.821}; + name="factory_8"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=67.430664; + b=62.17627; + id=32; + atlOffset=-10.015665; + }; + class Item29 + { + dataType="Marker"; + position[]={11013,0,12655}; + name="factory_9"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=100; + b=100; + angle=26.999985; + id=62; + atlOffset=-18.755997; + }; + class Item30 + { + dataType="Marker"; + position[]={20586.063,16.982,15652.401}; + name="fact_6_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.151; + b=5.9330001; + id=1649; + atlOffset=4.5776367e-005; + }; + }; + id=1662; + atlOffset=-46.166866; + }; + class Item262 + { + dataType="Layer"; + name="Resources"; + class Entities + { + items=17; + class Item0 + { + dataType="Marker"; + position[]={18437.031,23.424,14268.563}; + name="reso_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.881001; + b=5.5; + angle=337.52081; + id=1664; + atlOffset=-0.00035667419; + }; + class Item1 + { + dataType="Marker"; + position[]={17074.461,23.931,11298.932}; + name="reso_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.902; + b=5.5; + angle=84.137978; + id=1665; + }; + class Item2 + { + dataType="Marker"; + position[]={18161.324,46.862999,15506.562}; + name="reso_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.263; + b=5.5; + angle=69.593002; + id=1666; + atlOffset=-0.00010681152; + }; + class Item3 + { + dataType="Marker"; + position[]={18291.592,47.48,15539.457}; + name="reso_3_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.263; + b=5.5; + angle=268.1944; + id=1667; + }; + class Item4 + { + dataType="Marker"; + position[]={4392.0562,41.125,12556.622}; + name="reso_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.902; + b=5.5; + angle=56.794914; + id=1668; + atlOffset=-0.00017929077; + }; + class Item5 + { + dataType="Marker"; + position[]={5847.3989,223.563,20134.848}; + name="reso_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.412001; + b=5.5; + angle=102.60397; + id=1669; + atlOffset=0.076858521; + }; + class Item6 + { + dataType="Marker"; + position[]={5935.1221,107.978,12538.581}; + name="reso_6_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.657; + b=5.5; + angle=106.70496; + id=1670; + atlOffset=0.20936584; + }; + class Item7 + { + dataType="Marker"; + position[]={7530.8179,29.940001,12171.024}; + name="reso_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.902; + b=5.5; + angle=313.40295; + id=1671; + atlOffset=-0.0004825592; + }; + class Item8 + { + dataType="Marker"; + position[]={19631.621,17.115,15588.352}; + name="reso_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.902; + b=5.5; + angle=117.35296; + id=1663; + atlOffset=-5.7194519; + }; + class Item9 + { + dataType="Marker"; + position[]={19613.592,28.158596,15636.103}; + name="resource"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=89.556335; + b=69.559898; + angle=281.88538; + id=8; + }; + class Item10 + { + dataType="Marker"; + position[]={18483.797,24.765739,14277.46}; + name="resource_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=80; + b=40; + angle=76.925522; + id=9; + }; + class Item11 + { + dataType="Marker"; + position[]={17098.65,24.885092,11295.575}; + name="resource_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=100; + b=80; + angle=64.347397; + id=10; + }; + class Item12 + { + dataType="Marker"; + position[]={18292.928,47.48,15534.244}; + name="resource_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=160; + b=70; + angle=181.06282; + id=11; + }; + class Item13 + { + dataType="Marker"; + position[]={4424.5391,0,12602.417}; + name="resource_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=40; + b=40; + angle=128.39394; + id=56; + atlOffset=-37.435524; + }; + class Item14 + { + dataType="Marker"; + position[]={5890.0859,217.638,20206.713}; + name="resource_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=120; + b=100; + angle=281.88486; + id=57; + atlOffset=0.00012207031; + }; + class Item15 + { + dataType="Marker"; + position[]={5955.3052,107.533,12531.119}; + name="resource_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=80; + b=60; + angle=139.39099; + id=58; + atlOffset=0.00012207031; + }; + class Item16 + { + dataType="Marker"; + position[]={7550.8408,0,12182.686}; + name="resource_7"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=40; + b=40; + angle=139.39099; + id=869; + atlOffset=-32.556007; + }; + }; + id=1672; + atlOffset=-116.46241; + }; + class Item263 + { + dataType="Object"; + class PositionInfo + { + position[]={16648.336,2.1900001,12353.822}; + angles[]={0,4.0987434,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1674; + type="Land_HelipadCircle_F"; + }; + class Item264 + { + dataType="Object"; + class PositionInfo + { + position[]={15308.905,3.7331238,15852.384}; + angles[]={0,1.5801737,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1677; + type="Land_HelipadCircle_F"; + }; + class Item265 + { + dataType="Object"; + class PositionInfo + { + position[]={20725.209,3.048938,19525.43}; + angles[]={0,5.374979,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1680; + type="Land_HelipadCircle_F"; + }; + class Item266 + { + dataType="Layer"; + name="Seaports"; + class Entities + { + items=10; + class Item0 + { + dataType="Marker"; + position[]={27573.084,13.293,24630.275}; + name="seap_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.816999; + b=6; + angle=301.90982; + id=1682; + atlOffset=0.58678913; + }; + class Item1 + { + dataType="Marker"; + position[]={15419.282,4.2989998,15903}; + name="seap_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=26.716999; + b=6; + angle=79.410004; + id=1676; + atlOffset=-0.00014829636; + }; + class Item2 + { + dataType="Marker"; + position[]={3178.7051,2.0869999,12909.36}; + name="seap_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.816999; + b=6; + angle=343.38199; + id=1678; + atlOffset=0.00014066696; + }; + class Item3 + { + dataType="Marker"; + position[]={20661.543,6.8449998,19408.256}; + name="seap_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.816999; + b=6; + angle=179.15591; + id=1681; + atlOffset=-0.00028800964; + }; + class Item4 + { + dataType="Marker"; + position[]={16662.936,2.7939999,12287.236}; + name="seap_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=26.716999; + b=6; + angle=3.9379992; + id=1673; + atlOffset=0.00033664703; + }; + class Item5 + { + dataType="Marker"; + position[]={16660.623,2.5780001,12307.622}; + name="seaport"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=68.870865; + b=90; + angle=323.24982; + id=17; + atlOffset=0.07685256; + }; + class Item6 + { + dataType="Marker"; + position[]={15391.129,0,15859.363}; + name="seaport_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=131.52846; + b=91.684944; + angle=169.33798; + id=18; + atlOffset=-4.3425069; + }; + class Item7 + { + dataType="Marker"; + position[]={3208.104,0,12903.761}; + name="seaport_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=90; + b=77.211243; + angle=97.696968; + id=55; + atlOffset=-2; + }; + class Item8 + { + dataType="Marker"; + position[]={20690.789,0,19468.619}; + name="seaport_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=96.727097; + b=97.842819; + angle=128.327; + id=192; + atlOffset=-4.2987647; + }; + class Item9 + { + dataType="Marker"; + position[]={27606.973,3.9330001,24585.254}; + name="seaport_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=100.54672; + b=91.807388; + angle=255.87393; + id=193; + atlOffset=0.52938175; + }; + }; + id=1683; + atlOffset=39.728893; + }; + class Item267 + { + dataType="Object"; + class PositionInfo + { + position[]={23096.068,47.822083,7269.27}; + angles[]={0,2.0688248,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1685; + type="Land_HelipadCircle_F"; + }; + class Item268 + { + dataType="Object"; + class PositionInfo + { + position[]={23085.877,48.173756,7249.8008}; + angles[]={0,2.0688248,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1686; + type="Land_HelipadCircle_F"; + }; + class Item269 + { + dataType="Object"; + class PositionInfo + { + position[]={14878.467,9.0240936,11081.087}; + angles[]={0,2.3566189,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1688; + type="Land_HelipadCircle_F"; + atlOffset=0.73409367; + }; + class Item270 + { + dataType="Object"; + class PositionInfo + { + position[]={14891.474,8.5510216,11093.953}; + angles[]={0,2.3384774,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1689; + type="Land_HelipadCircle_F"; + }; + class Item271 + { + dataType="Object"; + class PositionInfo + { + position[]={15974.779,14.081385,16955.883}; + angles[]={0,6.22577,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1691; + type="Land_HelipadCircle_F"; + atlOffset=7.6293945e-006; + }; + class Item272 + { + dataType="Object"; + class PositionInfo + { + position[]={16119.013,13.278065,16938.529}; + angles[]={0,5.7018437,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1692; + type="Land_HelipadCircle_F"; + }; + class Item273 + { + dataType="Object"; + class PositionInfo + { + position[]={12503.197,74.461906,15175.986}; + angles[]={0.013332055,0,0.017332481}; + }; + side="Empty"; + class Attributes + { + }; + id=1695; + type="Land_HelipadSquare_F"; + atlOffset=1.3027191; + }; + class Item274 + { + dataType="Object"; + class PositionInfo + { + position[]={9190.2529,272.2128,19320.379}; + angles[]={0,4.8010998,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1698; + type="Land_HelipadCircle_F"; + }; + class Item275 + { + dataType="Object"; + class PositionInfo + { + position[]={16560.094,34.58279,19022.43}; + angles[]={0,2.5089569,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1699; + type="Land_HelipadCircle_F"; + }; + class Item276 + { + dataType="Object"; + class PositionInfo + { + position[]={8982.9775,70.472054,7481.0449}; + angles[]={0,3.4829223,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1703; + type="Land_HelipadCircle_F"; + }; + class Item277 + { + dataType="Object"; + class PositionInfo + { + position[]={13757.612,58.360432,6431.7026}; + angles[]={0,6.1836114,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1705; + type="Land_HelipadCircle_F"; + atlOffset=2.0363579; + }; + class Item278 + { + dataType="Object"; + class PositionInfo + { + position[]={14293.265,19.877386,16250.542}; + angles[]={0,2.2420623,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1707; + type="Land_HelipadCircle_F"; + atlOffset=1.7166138e-005; + }; + class Item279 + { + dataType="Object"; + class PositionInfo + { + position[]={14315.455,19.183779,16276.42}; + angles[]={0,2.2062798,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1708; + type="Land_HelipadCircle_F"; + atlOffset=3.0517578e-005; + }; + class Item280 + { + dataType="Object"; + class PositionInfo + { + position[]={18141.074,14.509654,19173.65}; + angles[]={0,6.2051988,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1710; + type="Land_HelipadCircle_F"; + }; + class Item281 + { + dataType="Object"; + class PositionInfo + { + position[]={18690.242,208.17896,10183.851}; + angles[]={6.1206331,0,6.2725158}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1715; + type="Land_HelipadCircle_F"; + }; + class Item282 + { + dataType="Object"; + class PositionInfo + { + position[]={18722.393,208.06769,10184.305}; + angles[]={6.2126365,0,6.2818484}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1716; + type="Land_HelipadCircle_F"; + }; + class Item283 + { + dataType="Object"; + class PositionInfo + { + position[]={19377.393,196.99937,9714.0938}; + angles[]={0,6.1653204,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1718; + type="Land_HelipadSquare_F"; + atlOffset=0.56990051; + }; + class Item284 + { + dataType="Object"; + class PositionInfo + { + position[]={19284.82,196.54007,9720.876}; + angles[]={0,6.0208106,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1719; + type="Land_HelipadCircle_F"; + atlOffset=9.1552734e-005; + }; + class Item285 + { + dataType="Object"; + class PositionInfo + { + position[]={17842.793,86.773109,11713.127}; + angles[]={0,4.7580857,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1721; + type="Land_HelipadCircle_F"; + }; + class Item286 + { + dataType="Object"; + class PositionInfo + { + position[]={17853.863,86.114967,11694.958}; + angles[]={0,4.7155051,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1722; + type="Land_HelipadCircle_F"; + }; + class Item287 + { + dataType="Object"; + class PositionInfo + { + position[]={6854.0366,79.374405,16141.569}; + angles[]={0,0.53791499,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1724; + type="Land_HelipadCircle_F"; + }; + class Item288 + { + dataType="Object"; + class PositionInfo + { + position[]={15067.417,15.195288,17372.422}; + angles[]={0,2.3417857,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1727; + type="Land_HelipadCircle_F"; + atlOffset=1.6212463e-005; + }; + class Item289 + { + dataType="Object"; + class PositionInfo + { + position[]={15090.74,15.004763,17392.037}; + angles[]={0,2.3417857,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1728; + type="Land_HelipadCircle_F"; + }; + class Item290 + { + dataType="Object"; + class PositionInfo + { + position[]={15117.52,15.475821,17419.033}; + angles[]={0,2.3417857,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1729; + type="Land_HelipadCircle_F"; + }; + class Item291 + { + dataType="Object"; + class PositionInfo + { + position[]={15143.232,15.34813,17441.963}; + angles[]={0,2.3417857,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1730; + type="Land_HelipadCircle_F"; + }; + class Item292 + { + dataType="Object"; + class PositionInfo + { + position[]={26478.051,65.826698,22153.561}; + angles[]={0,0.69813168,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1734; + type="Land_HelipadSquare_F"; + atlOffset=7.6293945e-006; + }; + class Item293 + { + dataType="Object"; + class PositionInfo + { + position[]={26504.422,64.924149,22132.076}; + angles[]={0,0.69813168,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1735; + type="Land_HelipadSquare_F"; + atlOffset=0.37651825; + }; + class Item294 + { + dataType="Object"; + class PositionInfo + { + position[]={26508.758,63.855774,22207.883}; + angles[]={0,3.8397243,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1736; + type="Land_HelipadSquare_F"; + atlOffset=1.1153603; + }; + class Item295 + { + dataType="Object"; + class PositionInfo + { + position[]={26533.111,62.507416,22187.557}; + angles[]={0,3.8397243,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1737; + type="Land_HelipadSquare_F"; + atlOffset=0.3127594; + }; + class Item296 + { + dataType="Object"; + class PositionInfo + { + position[]={4545.1597,263.09171,15421.206}; + angles[]={0,3.7516909,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1742; + type="Land_HelipadCircle_F"; + }; + class Item297 + { + dataType="Object"; + class PositionInfo + { + position[]={8440.8525,180.10931,18217.277}; + angles[]={0,2.0549212,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1744; + type="Land_HelipadSquare_F"; + }; + class Item298 + { + dataType="Object"; + class PositionInfo + { + position[]={9884.0635,246.0697,19358.363}; + angles[]={0,3.1037161,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1747; + type="Land_HelipadCircle_F"; + }; + class Item299 + { + dataType="Object"; + class PositionInfo + { + position[]={9957.6631,252.26331,19344.986}; + angles[]={0,3.0500429,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1748; + type="Land_HelipadCircle_F"; + }; + class Item300 + { + dataType="Object"; + class PositionInfo + { + position[]={3188.5256,50.589947,13150.335}; + angles[]={6.247201,0,0.015994642}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1752; + type="Land_HelipadCircle_F"; + }; + class Item301 + { + dataType="Object"; + class PositionInfo + { + position[]={3165.5437,49.607079,13175.042}; + angles[]={0.027993103,0,0.051953323}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1753; + type="Land_HelipadCircle_F"; + }; + class Item302 + { + dataType="Object"; + class PositionInfo + { + position[]={16880.041,9.7656565,12083.102}; + angles[]={0,1.5608044,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1759; + type="Land_HelipadSquare_F"; + }; + class Item303 + { + dataType="Object"; + class PositionInfo + { + position[]={16896.582,10.536606,12049.357}; + angles[]={0,1.6317124,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1760; + type="Land_HelipadSquare_F"; + }; + class Item304 + { + dataType="Object"; + class PositionInfo + { + position[]={16883.561,11.143103,12018.683}; + angles[]={0,1.5630903,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1761; + type="Land_HelipadSquare_F"; + }; + class Item305 + { + dataType="Object"; + class PositionInfo + { + position[]={6539.1846,88.383896,22686.762}; + angles[]={0,1.50015,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1766; + type="Land_HelipadCircle_F"; + }; + class Item306 + { + dataType="Object"; + class PositionInfo + { + position[]={12892.546,83.64743,16759.24}; + angles[]={0,5.3815179,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1767; + type="Land_HelipadSquare_F"; + atlOffset=0.00032043457; + }; + class Item307 + { + dataType="Object"; + class PositionInfo + { + position[]={12850.978,85.297554,16757.9}; + angles[]={0,5.3532887,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1768; + type="Land_HelipadSquare_F"; + }; + class Item308 + { + dataType="Object"; + class PositionInfo + { + position[]={8847.9297,78.233025,23417.846}; + angles[]={0,0.14381067,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1772; + type="Land_HelipadCircle_F"; + atlOffset=0.7975235; + }; + class Item309 + { + dataType="Object"; + class PositionInfo + { + position[]={8874.4072,78.490578,23416.771}; + angles[]={0,0.11547722,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1773; + type="Land_HelipadCircle_F"; + atlOffset=2.1677933; + }; + class Item310 + { + dataType="Object"; + class PositionInfo + { + position[]={5455.1143,27.299999,14989.439}; + angles[]={0,5.3775945,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1776; + type="Land_HelipadCircle_F"; + }; + class Item311 + { + dataType="Object"; + class PositionInfo + { + position[]={5472.9951,27.299999,14975.372}; + angles[]={0,5.3873763,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1777; + type="Land_HelipadCircle_F"; + }; + class Item312 + { + dataType="Object"; + class PositionInfo + { + position[]={5484.0938,27.299999,15027.7}; + angles[]={0,5.4298773,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1778; + type="Land_HelipadCircle_F"; + }; + class Item313 + { + dataType="Object"; + class PositionInfo + { + position[]={5504.4995,27.299999,15009.382}; + angles[]={0,5.4187303,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1779; + type="Land_HelipadSquare_F"; + }; + class Item314 + { + dataType="Object"; + class PositionInfo + { + position[]={14147.804,76.776085,21228.928}; + angles[]={0,6.1767998,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1782; + type="Land_HelipadCircle_F"; + }; + class Item315 + { + dataType="Object"; + class PositionInfo + { + position[]={23507.176,90.784378,21143.732}; + angles[]={0,0.025469249,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1787; + type="Land_HelipadSquare_F"; + }; + class Item316 + { + dataType="Object"; + class PositionInfo + { + position[]={23461.963,90.724182,21145.35}; + angles[]={0,6.1700931,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1788; + type="Land_HelipadSquare_F"; + }; + class Item317 + { + dataType="Object"; + class PositionInfo + { + position[]={23521.928,93.501381,21098.051}; + angles[]={0.058599081,0,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1789; + type="Land_HelipadCircle_F"; + }; + class Item318 + { + dataType="Object"; + class PositionInfo + { + position[]={23547.672,92.65963,21097.947}; + angles[]={0.07452935,0,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1790; + type="Land_HelipadCircle_F"; + atlOffset=3.0517578e-005; + }; + class Item319 + { + dataType="Object"; + class PositionInfo + { + position[]={20091.986,95.147873,6675.6602}; + angles[]={6.2285743,0,0.0053265258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1794; + type="Land_HelipadCircle_F"; + }; + class Item320 + { + dataType="Object"; + class PositionInfo + { + position[]={20068.221,95.732063,6675.1191}; + angles[]={6.2285743,0,0.0053265258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1795; + type="Land_HelipadCircle_F"; + }; + class Item321 + { + dataType="Object"; + class PositionInfo + { + position[]={21051.303,16.026138,19242.307}; + angles[]={0,4.7164183,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1797; + type="Land_HelipadCircle_F"; + }; + class Item322 + { + dataType="Object"; + class PositionInfo + { + position[]={21050.326,15.833519,19206.084}; + angles[]={0,4.6983566,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1798; + type="Land_HelipadCircle_F"; + }; + class Item323 + { + dataType="Object"; + class PositionInfo + { + position[]={21050.287,15.844805,19224.359}; + angles[]={0,4.6877656,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1799; + type="Land_HelipadSquare_F"; + }; + class Item324 + { + dataType="Object"; + class PositionInfo + { + position[]={17507.328,12.763365,13260.14}; + angles[]={0,3.9311891,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1801; + type="Land_HelipadCircle_F"; + atlOffset=1.335144e-005; + }; + class Item325 + { + dataType="Object"; + class PositionInfo + { + position[]={17567.744,14.134752,13193.605}; + angles[]={0,3.9649823,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1802; + type="Land_HelipadCircle_F"; + }; + class Item326 + { + dataType="Object"; + class PositionInfo + { + position[]={17535.414,13.253544,13224.744}; + angles[]={0,0.76598108,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1803; + type="Land_HelipadCircle_F"; + }; + class Item327 + { + dataType="Object"; + class PositionInfo + { + position[]={22006.182,28.881382,21065.07}; + angles[]={0,3.9954243,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1809; + type="Land_HelipadCircle_F"; + }; + class Item328 + { + dataType="Object"; + class PositionInfo + { + position[]={21788.184,2.0091095,20864.875}; + angles[]={0,0.55026066,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1810; + type="Land_HelipadCircle_F"; + }; + class Item329 + { + dataType="Object"; + class PositionInfo + { + position[]={21763.592,2.4104142,20875.57}; + angles[]={0,0.4472712,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1811; + type="Land_HelipadCircle_F"; + atlOffset=4.0769577e-005; + }; + class Item330 + { + dataType="Object"; + class PositionInfo + { + position[]={12283.325,123.53374,8921.3682}; + angles[]={0,1.2853196,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1813; + type="Land_HelipadCircle_F"; + }; + class Item331 + { + dataType="Object"; + class PositionInfo + { + position[]={12275.078,123.75247,8887.2773}; + angles[]={0,1.3764457,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1814; + type="Land_HelipadCircle_F"; + }; + class Item332 + { + dataType="Object"; + class PositionInfo + { + position[]={12271.121,123.55052,8906.041}; + angles[]={0,1.3927937,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1815; + type="Land_HelipadCircle_F"; + atlOffset=2.2888184e-005; + }; + class Item333 + { + dataType="Object"; + class PositionInfo + { + position[]={8235.5908,77.240517,10045.627}; + angles[]={0,5.7600188,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1818; + type="Land_HelipadCircle_F"; + }; + class Item334 + { + dataType="Object"; + class PositionInfo + { + position[]={8332.1455,74.95623,10087.325}; + angles[]={0,5.6924443,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1819; + type="Land_HelipadSquare_F"; + }; + class Item335 + { + dataType="Object"; + class PositionInfo + { + position[]={5376.8584,29.359585,14181.852}; + angles[]={0,6.2534728,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1821; + type="Land_HelipadCircle_F"; + }; + class Item336 + { + dataType="Object"; + class PositionInfo + { + position[]={5352.3486,32.420795,14181.243}; + angles[]={0,6.1241469,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1822; + type="Land_HelipadCircle_F"; + }; + class Item337 + { + dataType="Object"; + class PositionInfo + { + position[]={28273.006,21.636665,25704.92}; + angles[]={0,0.99104774,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1825; + type="Land_HelipadCircle_F"; + atlOffset=0.96735001; + }; + class Item338 + { + dataType="Object"; + class PositionInfo + { + position[]={28255.377,22.610382,25730.83}; + angles[]={0,0.99104774,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1826; + type="Land_HelipadCircle_F"; + atlOffset=0.80735016; + }; + class Item339 + { + dataType="Object"; + class PositionInfo + { + position[]={28342.646,14.897771,25684.885}; + angles[]={0,0.99104774,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1827; + type="Land_HelipadCircle_F"; + }; + class Item340 + { + dataType="Object"; + class PositionInfo + { + position[]={25214.129,88.372414,21827.885}; + angles[]={0,0.30005011,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1828; + type="Land_HelipadCircle_F"; + }; + class Item341 + { + dataType="Object"; + class PositionInfo + { + position[]={25238.854,87.141212,21821.994}; + angles[]={0,0.32980898,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1829; + type="Land_HelipadCircle_F"; + atlOffset=0.25952148; + }; + class Item342 + { + dataType="Object"; + class PositionInfo + { + position[]={20624.238,35.897972,18844.926}; + angles[]={0,5.1722984,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1833; + type="Land_HelipadCircle_F"; + atlOffset=0.00011825562; + }; + class Item343 + { + dataType="Object"; + class PositionInfo + { + position[]={20651.682,49.858612,20088.172}; + angles[]={0,1.1312355,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1835; + type="Land_HelipadCircle_F"; + atlOffset=0.55281067; + }; + class Item344 + { + dataType="Layer"; + name="Outposts"; + class Entities + { + items=112; + class Item0 + { + dataType="Marker"; + position[]={16077.819,13.539,16866.449}; + name="outp_10_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=24.986; + b=6; + angle=6.7139964; + id=1690; + atlOffset=0.038648605; + }; + class Item1 + { + dataType="Marker"; + position[]={12438.679,73.166,15220.861}; + name="outp_11_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=1.4779993; + id=1694; + atlOffset=0.00018310547; + }; + class Item2 + { + dataType="Marker"; + position[]={9239.3916,271.33099,19323.588}; + name="outp_12_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=328.29099; + id=1697; + atlOffset=0.00030517578; + }; + class Item3 + { + dataType="Marker"; + position[]={16594.133,35.402,18999.666}; + name="outp_13_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=323.29181; + id=1701; + atlOffset=-0.00033187866; + }; + class Item4 + { + dataType="Marker"; + position[]={3909.313,47.449001,12273.247}; + name="outp_14_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=335.46381; + id=1558; + atlOffset=-3.5655365; + }; + class Item5 + { + dataType="Marker"; + position[]={8934.1318,63.081001,7537.8208}; + name="outp_15_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=297.65393; + id=1702; + atlOffset=-0.00037765503; + }; + class Item6 + { + dataType="Marker"; + position[]={13761.502,60.623001,6387.6641}; + name="outp_16_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=185.17293; + id=1704; + atlOffset=0.00010299683; + }; + class Item7 + { + dataType="Marker"; + position[]={14210.926,18.408001,16370.31}; + name="outp_17_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.965; + b=6; + angle=313.526; + id=1706; + atlOffset=0.00035095215; + }; + class Item8 + { + dataType="Marker"; + position[]={18061.262,16.568001,19170.102}; + name="outp_18_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=356.86978; + id=1709; + atlOffset=-1.2892303; + }; + class Item9 + { + dataType="Marker"; + position[]={9679.0371,3.283,22279.33}; + name="outp_19_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=179.15395; + id=1711; + atlOffset=-0.00029850006; + }; + class Item10 + { + dataType="Marker"; + position[]={14942.105,6.256,11125.106}; + name="outp_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.330999; + b=6; + angle=116.12996; + id=1687; + atlOffset=4.196167e-005; + }; + class Item11 + { + dataType="Marker"; + position[]={18748.461,208.715,10196.29}; + name="outp_20_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=31.330996; + id=1717; + atlOffset=0.0004119873; + }; + class Item12 + { + dataType="Marker"; + position[]={17905.203,86.138,11737.167}; + name="outp_21_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=179.00998; + id=1720; + atlOffset=0.00012969971; + }; + class Item13 + { + dataType="Marker"; + position[]={6804.7031,63.985001,16091.626}; + name="outp_22_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.957001; + b=6; + angle=54.413975; + id=1723; + atlOffset=0.00025177002; + }; + class Item14 + { + dataType="Marker"; + position[]={15139.67,17.27,17381.998}; + name="outp_23_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.108999; + b=6; + angle=135.44598; + id=1726; + atlOffset=0.024906158; + }; + class Item15 + { + dataType="Marker"; + position[]={15187.435,17.927404,17296.881}; + name="outp_23_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.883682; + b=6; + angle=46.395073; + id=1731; + }; + class Item16 + { + dataType="Marker"; + position[]={26427.887,65.305,22175.545}; + name="outp_24_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.091999; + b=6; + angle=127.84294; + id=1733; + atlOffset=0.092727661; + }; + class Item17 + { + dataType="Marker"; + position[]={10034.449,15.421,11231.338}; + name="outp_25_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=126.10399; + id=1738; + atlOffset=0.0004491806; + }; + class Item18 + { + dataType="Marker"; + position[]={4577.0488,251.44501,15482.723}; + name="outp_26_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.419001; + b=6; + angle=148.88396; + id=1741; + atlOffset=-0.00035095215; + }; + class Item19 + { + dataType="Marker"; + position[]={8380.2383,180.151,18243.074}; + name="outp_27_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.6168661; + b=6; + angle=162.08994; + id=1745; + atlOffset=0.016784668; + }; + class Item20 + { + dataType="Marker"; + position[]={9892.7012,236.817,19391.545}; + name="outp_28_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.695999; + b=6; + angle=210.56499; + id=1749; + atlOffset=-1.5672455; + }; + class Item21 + { + dataType="Marker"; + position[]={3052.8411,49.498001,13166.242}; + name="outp_29_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.511999; + b=6; + angle=17.710993; + id=1751; + atlOffset=-0.000415802; + }; + class Item22 + { + dataType="Marker"; + position[]={19330.545,194.27,9680.9277}; + name="outp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=22.808001; + id=1713; + atlOffset=0.00032043457; + }; + class Item23 + { + dataType="Marker"; + position[]={6575.3599,92.977997,22663.283}; + name="outp_30_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.7550001; + b=6; + angle=79.897995; + id=1763; + atlOffset=-0.83794403; + }; + class Item24 + { + dataType="Marker"; + position[]={12796.207,87.723999,16664.273}; + name="outp_31_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.977; + b=6; + angle=86.280991; + id=1769; + atlOffset=-0.0043945313; + }; + class Item25 + { + dataType="Marker"; + position[]={12866.69,87.117477,16705.414}; + name="outp_31_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.977; + b=6; + angle=43.421745; + id=1771; + }; + class Item26 + { + dataType="Marker"; + position[]={8906.2373,75.683998,23439.525}; + name="outp_32_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.806999; + b=6; + angle=206.726; + id=1774; + atlOffset=0.00011444092; + }; + class Item27 + { + dataType="Marker"; + position[]={5489.0859,27.299999,14993.604}; + name="outp_33_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.37; + b=6; + angle=129.084; + id=1780; + }; + class Item28 + { + dataType="Marker"; + position[]={14172.458,75.681,21201.158}; + name="outp_34_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.285; + b=6; + angle=292.5199; + id=1783; + atlOffset=-0.0004196167; + }; + class Item29 + { + dataType="Marker"; + position[]={4299.771,292.496,20652.904}; + name="outp_35_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.218; + b=6; + angle=52.910992; + id=1785; + atlOffset=0.2104187; + }; + class Item30 + { + dataType="Marker"; + position[]={23483.934,90.870003,21122.965}; + name="outp_36_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.618999; + b=6; + angle=358.60391; + id=1791; + atlOffset=-0.0001449585; + }; + class Item31 + { + dataType="Marker"; + position[]={20949.924,15.565,19264.684}; + name="outp_37_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.469999; + b=6; + angle=153.76292; + id=1796; + atlOffset=0.92764091; + }; + class Item32 + { + dataType="Marker"; + position[]={20054.447,95.210999,6717.7002}; + name="outp_38_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.07; + b=6; + angle=234.786; + id=1793; + atlOffset=-5.8579941; + }; + class Item33 + { + dataType="Marker"; + position[]={17544.611,13.032,13239.975}; + name="outp_39_helipad"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorRed"; + a=66.589996; + b=50; + angle=45.695976; + id=1804; + atlOffset=0.00043678284; + }; + class Item34 + { + dataType="Marker"; + position[]={17401.922,14.461,13172.881}; + name="outp_39_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.298; + b=6; + angle=48.046001; + id=1805; + atlOffset=-6.8664551e-005; + }; + class Item35 + { + dataType="Marker"; + position[]={16808.98,5.96,12055.043}; + name="outp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=11.13; + b=6; + angle=89.784973; + id=1762; + atlOffset=1.2909422; + }; + class Item36 + { + dataType="Marker"; + position[]={12314.293,120.877,8834.7891}; + name="outp_40_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=23.473; + b=6; + angle=146.304; + id=1812; + atlOffset=-0.031738281; + }; + class Item37 + { + dataType="Marker"; + position[]={8332.5811,73.543999,10117.957}; + name="outp_41_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.212; + b=6; + angle=141.97301; + id=1816; + atlOffset=-0.00046539307; + }; + class Item38 + { + dataType="Marker"; + position[]={5244.313,26.365,14229.085}; + name="outp_42_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.914; + b=6; + angle=201.08298; + id=1820; + atlOffset=0.74362564; + }; + class Item39 + { + dataType="Marker"; + position[]={21824.6,9.5459995,20907.686}; + name="outp_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.976; + b=6; + angle=295.16293; + id=1807; + atlOffset=0.00031280518; + }; + class Item40 + { + dataType="Marker"; + position[]={28305.113,16.695999,25727.201}; + name="outp_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.976; + b=6; + angle=237.77997; + id=1823; + atlOffset=0.00021934509; + }; + class Item41 + { + dataType="Marker"; + position[]={25370.834,74.513,21814.371}; + name="outp_6_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.875; + b=6; + angle=104.42495; + id=1830; + atlOffset=-0.00026702881; + }; + class Item42 + { + dataType="Marker"; + position[]={4944.957,337.02301,21892.891}; + name="outp_7_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.875; + b=6; + angle=216.69794; + id=1831; + atlOffset=-1.4115601; + }; + class Item43 + { + dataType="Marker"; + position[]={20617.111,36.493999,18781.311}; + name="outp_8_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.891; + b=6; + angle=53.623981; + id=1834; + atlOffset=0.00044250488; + }; + class Item44 + { + dataType="Marker"; + position[]={20531.105,42.84,20074.008}; + name="outp_9_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.466999; + b=6; + angle=343.647; + id=1836; + atlOffset=-1.055233; + }; + class Item45 + { + dataType="Marker"; + position[]={23035.729,48.026001,7288.4419}; + name="outp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16; + b=6; + angle=144.64497; + id=1684; + atlOffset=-0.70531082; + }; + class Item46 + { + dataType="Marker"; + position[]={23067.582,48.156364,7291.291}; + name="outpost"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=128.48125; + b=85.299866; + angle=148.493; + id=15; + atlOffset=-0.14864349; + }; + class Item47 + { + dataType="Marker"; + position[]={14832.187,7.0898438,11130.582}; + name="outpost_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=111.65083; + b=92.584541; + angle=223.67722; + id=16; + atlOffset=-1.1140766; + }; + class Item48 + { + dataType="Marker"; + position[]={16083.18,15.853616,17002.723}; + name="outpost_10"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=150; + b=150; + angle=59.834778; + id=40; + }; + class Item49 + { + dataType="Marker"; + position[]={12479.839,74.504509,15197.453}; + name="outpost_11"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=93.247932; + b=59.666313; + angle=179.33261; + id=47; + }; + class Item50 + { + dataType="Marker"; + position[]={9210.2285,272.23001,19280.602}; + name="outpost_12"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=73.601997; + b=78.302002; + angle=11.914993; + id=1106; + atlOffset=-3.0517578e-005; + }; + class Item51 + { + dataType="Marker"; + position[]={16583.912,35.143002,19013.328}; + name="outpost_13"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=87.918999; + b=63.997002; + angle=320.76587; + id=37; + atlOffset=-0.00025177002; + }; + class Item52 + { + dataType="Marker"; + position[]={3911.4023,50.124836,12297.667}; + name="outpost_14"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=35.515831; + b=30.457802; + angle=208.80701; + id=50; + }; + class Item53 + { + dataType="Marker"; + position[]={8915,0,7477}; + name="outpost_15"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=90; + b=90; + angle=180.99997; + id=871; + atlOffset=-67.197334; + }; + class Item54 + { + dataType="Marker"; + position[]={13785.565,0,6390.001}; + name="outpost_16"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=146.16084; + b=108.68304; + angle=180.99997; + id=872; + atlOffset=-60.326199; + }; + class Item55 + { + dataType="Marker"; + position[]={14275.173,19.308001,16275.15}; + name="outpost_17"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=194.21001; + b=123.19; + angle=135.83093; + id=1183; + atlOffset=-0.061306; + }; + class Item56 + { + dataType="Marker"; + position[]={18089.898,18.779161,19181.254}; + name="outpost_18"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=64.573318; + b=62.230595; + angle=5.8140187; + id=53; + }; + class Item57 + { + dataType="Marker"; + position[]={9707.4619,2.5912011,22305.9}; + name="outpost_19"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=75.518005; + b=40; + angle=180.64592; + id=54; + }; + class Item58 + { + dataType="Marker"; + position[]={19352.627,195.6532,9680.4424}; + name="outpost_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=113.56775; + b=93.518616; + angle=263.16; + id=20; + }; + class Item59 + { + dataType="Marker"; + position[]={18726.775,209.29594,10212.497}; + name="outpost_20"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=90.591553; + b=102.88486; + angle=79.841003; + id=67; + }; + class Item60 + { + dataType="Marker"; + position[]={17860.475,88.995438,11747.802}; + name="outpost_21"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=69.961136; + b=65.694496; + angle=148.493; + id=68; + }; + class Item61 + { + dataType="Marker"; + position[]={6841.707,0,16108.049}; + name="outpost_22"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=79.827721; + b=78.197495; + angle=147.99994; + id=69; + atlOffset=-70.221909; + }; + class Item62 + { + dataType="Marker"; + position[]={15176.144,0,17362.143}; + name="outpost_23"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=130; + b=119.167; + angle=132.57394; + id=822; + atlOffset=-17.914383; + }; + class Item63 + { + dataType="Marker"; + position[]={26435.035,66.514542,22140.609}; + name="outpost_24"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=115.21288; + b=89.814232; + angle=187.06653; + id=71; + }; + class Item64 + { + dataType="Marker"; + position[]={10011.299,16.417982,11235.339}; + name="outpost_25"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=60; + b=40; + angle=103.32623; + id=91; + }; + class Item65 + { + dataType="Marker"; + position[]={4551.5327,261.15918,15426.164}; + name="outpost_26"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=80; + b=84.554283; + angle=311.44165; + id=93; + atlOffset=-1.2987671; + }; + class Item66 + { + dataType="Marker"; + position[]={8393.2578,180.06404,18246.23}; + name="outpost_27"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=69.973289; + b=50.811649; + angle=246.62001; + id=94; + atlOffset=-0.098068237; + }; + class Item67 + { + dataType="Marker"; + position[]={9930.5068,243.521,19386.279}; + name="outpost_28"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=124.208; + b=92.790001; + angle=11.914993; + id=41; + atlOffset=0.88917542; + }; + class Item68 + { + dataType="Marker"; + position[]={3088.7871,0,13200.854}; + name="outpost_29"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=122.33163; + b=104.55561; + angle=198.82098; + id=863; + atlOffset=-47.813633; + }; + class Item69 + { + dataType="Marker"; + position[]={16839.291,5.0803537,12054.557}; + name="outpost_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=65.068436; + b=65.217522; + angle=180.25404; + id=21; + atlOffset=-0.039912701; + }; + class Item70 + { + dataType="Marker"; + position[]={6565.8325,0,22679.818}; + name="outpost_30"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=68.098083; + b=67.079865; + angle=207.99992; + id=864; + atlOffset=-91.033112; + }; + class Item71 + { + dataType="Marker"; + position[]={12850.134,0,16721.346}; + name="outpost_31"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=138.955; + b=103.767; + angle=305.90884; + id=35; + atlOffset=-86.045792; + }; + class Item72 + { + dataType="Marker"; + position[]={8850.5615,0,23451.566}; + name="outpost_32"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=72.266563; + b=72.315842; + angle=207.99992; + id=866; + atlOffset=-78.791023; + }; + class Item73 + { + dataType="Marker"; + position[]={5473.0254,0,15003.354}; + name="outpost_33"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=80; + b=106.27872; + angle=41.308632; + id=867; + atlOffset=-27.299999; + }; + class Item74 + { + dataType="Marker"; + position[]={14215.958,74.004997,21225.672}; + name="outpost_34"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=95.519997; + b=107.119; + angle=108.33795; + id=36; + atlOffset=-0.00031280518; + }; + class Item75 + { + dataType="Marker"; + position[]={4276.1841,0,20684.613}; + name="outpost_35"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=62.662998; + b=62.290001; + angle=10.999998; + id=898; + atlOffset=-292.7337; + }; + class Item76 + { + dataType="Marker"; + position[]={23594.504,93.648003,21100.33}; + name="outpost_36"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=228.10001; + b=126.625; + angle=20.485994; + id=25; + atlOffset=-1.1079559; + }; + class Item77 + { + dataType="Marker"; + position[]={20940.734,0,19235.641}; + name="outpost_37"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=120; + b=120; + angle=16.886997; + id=24; + atlOffset=-14.022084; + }; + class Item78 + { + dataType="Marker"; + position[]={20082.896,101.02,6728.3408}; + name="outpost_38"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=60; + b=60; + angle=36.850998; + id=4; + atlOffset=-9.1552734e-005; + }; + class Item79 + { + dataType="Marker"; + position[]={17436.436,13.962,13169.224}; + name="outpost_39"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=108; + b=95; + angle=46.794998; + id=5; + atlOffset=2.2888184e-005; + }; + class Item80 + { + dataType="Marker"; + position[]={21930.902,17.916773,20976.832}; + name="outpost_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=205.00101; + b=162.96994; + angle=319.12381; + id=26; + }; + class Item81 + { + dataType="Marker"; + position[]={12293.894,123.993,8894.8789}; + name="outpost_40"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=78.936996; + b=67.440002; + angle=243.71994; + id=42; + atlOffset=-0.00023651123; + }; + class Item82 + { + dataType="Marker"; + position[]={8291.4502,75.940002,10065.422}; + name="outpost_41"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=59.033001; + b=77.987; + angle=54.859959; + id=43; + atlOffset=-0.90668488; + }; + class Item83 + { + dataType="Marker"; + position[]={5372.269,44.960999,14237.143}; + name="outpost_42"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=195; + b=100; + angle=348.11884; + id=44; + atlOffset=1.4786491; + }; + class Item84 + { + dataType="Marker"; + position[]={28323.988,14.552761,25754.41}; + name="outpost_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=82.389435; + b=86.495293; + angle=148.493; + id=27; + }; + class Item85 + { + dataType="Marker"; + position[]={25258.553,85.927757,21827.684}; + name="outpost_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=114.15364; + b=88.959595; + angle=358.83786; + id=29; + }; + class Item86 + { + dataType="Marker"; + position[]={4842.5059,0,21950.449}; + name="outpost_7"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=127.844; + b=94.438004; + angle=6.0409966; + id=868; + atlOffset=-340.86972; + }; + class Item87 + { + dataType="Marker"; + position[]={20600.074,37.087017,18814.98}; + name="outpost_8"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=72.874878; + b=54.685825; + angle=321.35321; + id=38; + atlOffset=0.029518127; + }; + class Item88 + { + dataType="Marker"; + position[]={20627.328,0,20103.941}; + name="outpost_9"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=73.530098; + b=137.52365; + angle=93.484039; + id=39; + atlOffset=-51.286819; + }; + class Item89 + { + dataType="Marker"; + position[]={15991.204,13.746,17099.135}; + name="outp_10_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=6.7709999; + b=7.2989998; + id=1693; + atlOffset=0.00012111664; + }; + class Item90 + { + dataType="Marker"; + position[]={12482.224,74.728996,15173.182}; + name="outp_11_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1696; + atlOffset=0.12184143; + }; + class Item91 + { + dataType="Marker"; + position[]={9699.6904,2.6530001,22309.137}; + name="outp_19_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1712; + atlOffset=1.7881393e-005; + }; + class Item92 + { + dataType="Marker"; + position[]={6831.3691,81.653999,16147.456}; + name="outp_22_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=33.497993; + id=1725; + atlOffset=-9.9182129e-005; + }; + class Item93 + { + dataType="Marker"; + position[]={15188.578,17.9,17346.27}; + name="outp_23_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=49.468983; + id=1732; + atlOffset=0.00040435791; + }; + class Item94 + { + dataType="Marker"; + position[]={10017.53,16.531,11242.29}; + name="outp_25_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1739; + atlOffset=0.00042915344; + }; + class Item95 + { + dataType="Marker"; + position[]={4577.8828,259.25101,15441.716}; + name="outp_26_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=24.434999; + id=1743; + atlOffset=0.00042724609; + }; + class Item96 + { + dataType="Marker"; + position[]={8398.7607,180.64455,18213.795}; + name="outp_27_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=18.951014; + id=1746; + }; + class Item97 + { + dataType="Marker"; + position[]={9955.7432,252.24001,19366.436}; + name="outp_28_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=33.497993; + id=1750; + atlOffset=-0.00048828125; + }; + class Item98 + { + dataType="Marker"; + position[]={3128.998,69.253998,13088.842}; + name="outp_29_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=33.497993; + id=1757; + atlOffset=9.9182129e-005; + }; + class Item99 + { + dataType="Marker"; + position[]={3052.6475,38.219971,13255.085}; + name="outp_29_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + angle=33.497993; + id=1758; + atlOffset=6.1582565; + }; + class Item100 + { + dataType="Marker"; + position[]={19375.061,195.07201,9679.876}; + name="outp_2_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1714; + atlOffset=-0.00024414063; + }; + class Item101 + { + dataType="Marker"; + position[]={8838.7197,78.773003,23446.189}; + name="outp_32_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1775; + atlOffset=7.6293945e-006; + }; + class Item102 + { + dataType="Marker"; + position[]={14219.918,73.790001,21234.186}; + name="outp_34_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1784; + atlOffset=-0.00046539307; + }; + class Item103 + { + dataType="Marker"; + position[]={4289.3149,293.151,20681.994}; + name="outp_35_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1786; + atlOffset=0.0002746582; + }; + class Item104 + { + dataType="Marker"; + position[]={23538.318,89.524902,21123.242}; + name="outp_36_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1792; + atlOffset=-2.1778412; + }; + class Item105 + { + dataType="Marker"; + position[]={20915.18,11.599,19195.104}; + name="outp_37_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1800; + atlOffset=0.00035476685; + }; + class Item106 + { + dataType="Marker"; + position[]={17412.428,13.434,13208.182}; + name="outp_39_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1806; + atlOffset=6.8664551e-005; + }; + class Item107 + { + dataType="Marker"; + position[]={21923.891,17.267,20972.102}; + name="outp_4_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1808; + atlOffset=0.00042915344; + }; + class Item108 + { + dataType="Marker"; + position[]={28328.83,14.586,25776.619}; + name="outp_5_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1824; + atlOffset=-0.00040340424; + }; + class Item109 + { + dataType="Marker"; + position[]={20583.961,51.226002,20113.781}; + name="outp_9_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.2979999; + b=5.1939998; + id=1837; + atlOffset=0.00015258789; + }; + class Item110 + { + dataType="Marker"; + position[]={14065.475,34.910465,22961.996}; + name="outpost_43"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=95.519997; + b=107.119; + angle=108.33795; + id=2066; + }; + class Item111 + { + dataType="Marker"; + position[]={14021.675,33.834,22974.539}; + name="outp_43_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.285; + b=6; + angle=312.75592; + id=2067; + atlOffset=-0.0001335144; + }; + }; + id=1838; + atlOffset=77.531845; + }; + class Item345 + { + dataType="Marker"; + position[]={14253.315,17.788271,15837.864}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=167.41121; + b=126.42507; + angle=44.982628; + id=1842; + atlOffset=-0.11751556; + }; + class Item346 + { + dataType="Marker"; + position[]={15347.249,17.269489,17057.338}; + name="detectPlayer_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=232.08978; + b=221.01483; + angle=44.982628; + id=1843; + atlOffset=-0.64051056; + }; + class Item347 + { + dataType="Marker"; + position[]={14630.354,16.922852,16663.969}; + name="detectPlayer_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=157.70596; + b=747.32251; + angle=44.982628; + id=1844; + atlOffset=-0.98714828; + }; + class Item348 + { + dataType="Marker"; + position[]={21150.047,21.595703,7171.021}; + name="detectPlayer_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=49.782391; + b=184.25052; + angle=41.68185; + id=1845; + atlOffset=-1.137167; + }; + class Item349 + { + dataType="Marker"; + position[]={21180.377,18.380419,7536.7598}; + name="detectPlayer_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=78.340714; + b=112.18743; + angle=4.9869037; + id=1846; + atlOffset=-0.41155434; + }; + class Item350 + { + dataType="Marker"; + position[]={26809.674,20.055626,24839.627}; + name="detectPlayer_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=28.420944; + b=258.4447; + angle=41.144028; + id=1847; + atlOffset=-1.4739056; + }; + class Item351 + { + dataType="Object"; + class PositionInfo + { + position[]={14028.912,36.482021,22953.412}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2018; + type="Land_HBarrier_Big_F"; + }; + class Item352 + { + dataType="Object"; + class PositionInfo + { + position[]={14034.55,37.07119,22947.049}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2019; + type="Land_HBarrier_Big_F"; + }; + class Item353 + { + dataType="Object"; + class PositionInfo + { + position[]={14036.584,36.229534,22960.209}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2020; + type="Land_HBarrier_Big_F"; + }; + class Item354 + { + dataType="Object"; + class PositionInfo + { + position[]={14040.187,37.544735,22940.688}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2021; + type="Land_HBarrier_Big_F"; + }; + class Item355 + { + dataType="Object"; + class PositionInfo + { + position[]={14045.824,37.85849,22934.326}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2022; + type="Land_HBarrier_Big_F"; + }; + class Item356 + { + dataType="Object"; + class PositionInfo + { + position[]={14051.461,38.024464,22927.965}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2023; + type="Land_HBarrier_Big_F"; + }; + class Item357 + { + dataType="Object"; + class PositionInfo + { + position[]={14057.098,38.325909,22921.604}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2024; + type="Land_HBarrier_Big_F"; + }; + class Item358 + { + dataType="Object"; + class PositionInfo + { + position[]={14063.846,38.174915,22921.904}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2025; + type="Land_HBarrier_Big_F"; + }; + class Item359 + { + dataType="Object"; + class PositionInfo + { + position[]={14042.221,36.677586,22953.848}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2026; + type="Land_HBarrier_Big_F"; + }; + class Item360 + { + dataType="Object"; + class PositionInfo + { + position[]={14047.857,36.817955,22947.486}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2027; + type="Land_HBarrier_Big_F"; + }; + class Item361 + { + dataType="Object"; + class PositionInfo + { + position[]={14053.495,37.247833,22941.123}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2028; + type="Land_HBarrier_Big_F"; + }; + class Item362 + { + dataType="Object"; + class PositionInfo + { + position[]={14059.132,37.552708,22934.762}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2029; + type="Land_HBarrier_Big_F"; + }; + class Item363 + { + dataType="Object"; + class PositionInfo + { + position[]={14070.021,37.597038,22927.375}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2030; + type="Land_HBarrier_Big_F"; + atlOffset=6.4849854e-005; + }; + class Item364 + { + dataType="Object"; + class PositionInfo + { + position[]={14037.069,35.818417,22965.316}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2031; + type="Land_HBarrier_Big_F"; + }; + class Item365 + { + dataType="Object"; + class PositionInfo + { + position[]={14043.431,35.228703,22970.953}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2032; + type="Land_HBarrier_Big_F"; + }; + class Item366 + { + dataType="Object"; + class PositionInfo + { + position[]={14049.792,34.901073,22976.59}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2033; + type="Land_HBarrier_Big_F"; + }; + class Item367 + { + dataType="Object"; + class PositionInfo + { + position[]={14056.154,34.813828,22982.229}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2034; + type="Land_HBarrier_Big_F"; + }; + class Item368 + { + dataType="Object"; + class PositionInfo + { + position[]={14062.516,34.909134,22987.865}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2035; + type="Land_HBarrier_Big_F"; + }; + class Item369 + { + dataType="Object"; + class PositionInfo + { + position[]={14072.741,35.515434,22981.225}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2036; + type="Land_HBarrier_Big_F"; + }; + class Item370 + { + dataType="Object"; + class PositionInfo + { + position[]={14078.378,36.055168,22974.865}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2037; + type="Land_HBarrier_Big_F"; + }; + class Item371 + { + dataType="Object"; + class PositionInfo + { + position[]={14084.016,36.098282,22968.504}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2038; + type="Land_HBarrier_Big_F"; + }; + class Item372 + { + dataType="Object"; + class PositionInfo + { + position[]={14089.652,35.953918,22962.141}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2039; + type="Land_HBarrier_Big_F"; + }; + class Item373 + { + dataType="Object"; + class PositionInfo + { + position[]={14095.29,35.678814,22955.779}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2040; + type="Land_HBarrier_Big_F"; + }; + class Item374 + { + dataType="Object"; + class PositionInfo + { + position[]={14076.217,37.101246,22933.199}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2041; + type="Land_HBarrier_Big_F"; + }; + class Item375 + { + dataType="Object"; + class PositionInfo + { + position[]={14082.578,36.619598,22938.838}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2042; + type="Land_HBarrier_Big_F"; + }; + class Item376 + { + dataType="Object"; + class PositionInfo + { + position[]={14088.94,36.222355,22944.473}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2043; + type="Land_HBarrier_Big_F"; + }; + class Item377 + { + dataType="Object"; + class PositionInfo + { + position[]={14095.302,35.736694,22950.111}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2044; + type="Land_HBarrier_Big_F"; + }; + class Item378 + { + dataType="Object"; + class PositionInfo + { + position[]={14029.691,38.780243,22960.447}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2045; + type="Land_BarGate_F"; + }; + class Item379 + { + dataType="Object"; + class PositionInfo + { + position[]={14045.458,39.259121,22966.404}; + angles[]={0,2.4164968,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2046; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item380 + { + dataType="Object"; + class PositionInfo + { + position[]={14103.646,35.161423,22962.182}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2047; + type="Land_HBarrier_Big_F"; + }; + class Item381 + { + dataType="Object"; + class PositionInfo + { + position[]={14098.008,35.617924,22968.543}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2048; + type="Land_HBarrier_Big_F"; + }; + class Item382 + { + dataType="Object"; + class PositionInfo + { + position[]={14092.371,36.035774,22974.906}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2049; + type="Land_HBarrier_Big_F"; + }; + class Item383 + { + dataType="Object"; + class PositionInfo + { + position[]={14086.733,36.155319,22981.268}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2050; + type="Land_HBarrier_Big_F"; + }; + class Item384 + { + dataType="Object"; + class PositionInfo + { + position[]={14081.097,35.663727,22987.627}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2051; + type="Land_HBarrier_Big_F"; + }; + class Item385 + { + dataType="Object"; + class PositionInfo + { + position[]={14075.459,35.099125,22993.99}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2052; + type="Land_HBarrier_Big_F"; + }; + class Item386 + { + dataType="Object"; + class PositionInfo + { + position[]={14068.712,34.954521,22993.689}; + angles[]={0,2.416497,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2053; + type="Land_HBarrier_Big_F"; + }; + class Item387 + { + dataType="Object"; + class PositionInfo + { + position[]={14102.867,38.06916,22955.145}; + angles[]={0,2.416497,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2054; + type="Land_BarGate_F"; + }; + class Item388 + { + dataType="Object"; + class PositionInfo + { + position[]={14087.071,39.930779,22957.516}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2055; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item389 + { + dataType="Object"; + class PositionInfo + { + position[]={14086.56,40.018272,22949.045}; + angles[]={0,5.5580893,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2056; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item390 + { + dataType="Object"; + class PositionInfo + { + position[]={14063.789,36.751133,22938.555}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2057; + type="Land_Cargo_House_V1_F"; + }; + class Item391 + { + dataType="Object"; + class PositionInfo + { + position[]={14068.271,34.795521,22977.6}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2058; + type="Land_Cargo_House_V1_F"; + }; + class Item392 + { + dataType="Object"; + class PositionInfo + { + position[]={14069.041,38.881191,22982.691}; + angles[]={0,3.4636943,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2059; + type="Land_TTowerSmall_1_F"; + }; + class Item393 + { + dataType="Object"; + class PositionInfo + { + position[]={14062.742,44.821911,22932.951}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2060; + type="Land_TTowerSmall_2_F"; + }; + class Item394 + { + dataType="Object"; + class PositionInfo + { + position[]={14044.946,40.054173,22957.934}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2061; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item395 + { + dataType="Object"; + class PositionInfo + { + position[]={14079.237,36.143406,22969.693}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2062; + type="Land_Cargo40_military_green_F"; + atlOffset=-0.0017242432; + }; + class Item396 + { + dataType="Object"; + class PositionInfo + { + position[]={14077.167,36.137745,22967.902}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2063; + type="Land_Cargo40_military_green_F"; + atlOffset=-0.0065155029; + }; + class Item397 + { + dataType="Object"; + class PositionInfo + { + position[]={14078.302,38.766918,22968.865}; + angles[]={0,0.8457005,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2064; + type="Land_Cargo40_military_green_F"; + atlOffset=2.6157455; + }; + class Item398 + { + dataType="Object"; + class PositionInfo + { + position[]={14054.67,36.290642,22948.846}; + angles[]={0,3.9872932,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2065; + type="Land_Medevac_house_V1_F"; + }; + class Item399 + { + dataType="Object"; + class PositionInfo + { + position[]={14092.071,33.120018,22997.445}; + angles[]={0,5.5456343,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2068; + type="Land_HelipadCircle_F"; + }; + class Item400 + { + dataType="Marker"; + position[]={23151.998,3.1900001,18710.371}; + name="detectPlayer_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=331.90103; + b=419.68304; + angle=35.229828; + id=2069; + }; + class Item401 + { + dataType="Marker"; + position[]={26907.941,19.783936,24787.373}; + name="detectPlayer_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=232.08978; + b=356.7608; + angle=40.230858; + id=2070; + atlOffset=-0.27813339; + }; + class Item402 + { + dataType="Object"; + class PositionInfo + { + position[]={27230.6,31.640327,24923.701}; + angles[]={0,4.8690257,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2071; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=1.9073486e-006; + }; + class Item403 + { + dataType="Object"; + class PositionInfo + { + position[]={27154.068,29.099325,25006.623}; + angles[]={0,3.1593726,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2072; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=5.531311e-005; + }; + class Item404 + { + dataType="Marker"; + position[]={9100.9619,16.686979,21505.963}; + name="detectPlayer_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=120.49665; + b=220.47403; + angle=53.608429; + id=2073; + atlOffset=0.051624298; + }; + class Item405 + { + dataType="Logic"; + class PositionInfo + { + position[]={3596.8462,16.245623,10281.467}; + }; + name="HC_commanderX"; + id=2074; + type="HighCommand"; + atlOffset=-0.25428963; + }; + class Item406 + { + dataType="Logic"; + class PositionInfo + { + position[]={3600.2461,16.245623,10281.371}; + }; + id=2075; + type="HighCommandSubordinate"; + atlOffset=0.22619057; + }; + }; + class Connections + { + class LinkIDProvider + { + nextID=61; + }; + class Links + { + items=61; + class Item0 + { + linkID=0; + item0=2074; + item1=2075; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=1013; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=1014; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item3 + { + linkID=3; + item0=1020; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item4 + { + linkID=4; + item0=1022; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item5 + { + linkID=5; + item0=1024; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item6 + { + linkID=6; + item0=1026; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item7 + { + linkID=7; + item0=1028; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item8 + { + linkID=8; + item0=1030; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item9 + { + linkID=9; + item0=1032; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item10 + { + linkID=10; + item0=1034; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item11 + { + linkID=11; + item0=1036; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item12 + { + linkID=12; + item0=1038; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item13 + { + linkID=13; + item0=1040; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item14 + { + linkID=14; + item0=1042; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item15 + { + linkID=15; + item0=1046; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item16 + { + linkID=16; + item0=1048; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item17 + { + linkID=17; + item0=1050; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item18 + { + linkID=18; + item0=1052; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item19 + { + linkID=19; + item0=1054; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item20 + { + linkID=20; + item0=1058; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item21 + { + linkID=21; + item0=1060; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item22 + { + linkID=22; + item0=1062; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item23 + { + linkID=23; + item0=1064; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item24 + { + linkID=24; + item0=1066; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item25 + { + linkID=25; + item0=1044; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item26 + { + linkID=26; + item0=1056; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item27 + { + linkID=27; + item0=1417; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item28 + { + linkID=28; + item0=1419; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item29 + { + linkID=29; + item0=1421; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item30 + { + linkID=30; + item0=1423; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item31 + { + linkID=31; + item0=1425; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item32 + { + linkID=32; + item0=1427; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item33 + { + linkID=33; + item0=1429; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item34 + { + linkID=34; + item0=1431; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item35 + { + linkID=35; + item0=1433; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item36 + { + linkID=36; + item0=1435; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item37 + { + linkID=37; + item0=1437; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item38 + { + linkID=38; + item0=1439; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item39 + { + linkID=39; + item0=1498; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item40 + { + linkID=40; + item0=1500; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item41 + { + linkID=41; + item0=1502; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item42 + { + linkID=42; + item0=1504; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item43 + { + linkID=43; + item0=1506; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item44 + { + linkID=44; + item0=1508; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item45 + { + linkID=45; + item0=1510; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item46 + { + linkID=46; + item0=1512; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item47 + { + linkID=47; + item0=1514; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item48 + { + linkID=48; + item0=1516; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item49 + { + linkID=49; + item0=1518; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item50 + { + linkID=50; + item0=1520; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item51 + { + linkID=51; + item0=1522; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item52 + { + linkID=52; + item0=1524; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item53 + { + linkID=53; + item0=1526; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item54 + { + linkID=54; + item0=1528; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item55 + { + linkID=55; + item0=1530; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item56 + { + linkID=56; + item0=1532; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item57 + { + linkID=57; + item0=1016; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item58 + { + linkID=58; + item0=1017; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item59 + { + linkID=59; + item0=1018; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + class Item60 + { + linkID=60; + item0=1015; + item1=2074; + class CustomData + { + type="Sync"; + }; + }; + }; + }; +}; diff --git a/A3-Antistasi/Templates/A3-AATemplate.Altis/roadsDBAltis.sqf b/Map-Templates/Antistasi-Altis.Altis/roadsDBAltis.sqf similarity index 100% rename from A3-Antistasi/Templates/A3-AATemplate.Altis/roadsDBAltis.sqf rename to Map-Templates/Antistasi-Altis.Altis/roadsDBAltis.sqf diff --git a/Map-Templates/Antistasi-Anizay.tem_anizay/PIC.jpg b/Map-Templates/Antistasi-Anizay.tem_anizay/PIC.jpg new file mode 100644 index 0000000000..cf617cb7ec Binary files /dev/null and b/Map-Templates/Antistasi-Anizay.tem_anizay/PIC.jpg differ diff --git a/Map-Templates/Antistasi-Anizay.tem_anizay/description.ext b/Map-Templates/Antistasi-Anizay.tem_anizay/description.ext new file mode 100644 index 0000000000..cfc55dd33c --- /dev/null +++ b/Map-Templates/Antistasi-Anizay.tem_anizay/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_anizay_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_anizay_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_anizay_mapname_text; +overviewText = $STR_antistasi_mission_info_anizay_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Anizay is Ours!"; + description = "The population of Anizay loves you!
The SDK brave soldiers have proven their valour, and Petros, Anizays 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 = "Maru is Dead"; + subtitle = "Maru is Dead"; + description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Anizay"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Anizay is Destroyed"; + subtitle = "Anizay got Destroyed by CSAT"; + description = "One third of the population in Anizay has been murdered by CSAT.
Anizay no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/Map-Templates/Antistasi-Anizay.tem_anizay/mission.sqm b/Map-Templates/Antistasi-Anizay.tem_anizay/mission.sqm new file mode 100644 index 0000000000..b415f70bfa --- /dev/null +++ b/Map-Templates/Antistasi-Anizay.tem_anizay/mission.sqm @@ -0,0 +1,26911 @@ +version=53; +class EditorData +{ + moveGridStep=1; + angleGridStep=0.2617994; + scaleGridStep=1; + autoGroupingDist=10; + toggles=1025; + class ItemIDProvider + { + nextID=2638; + }; + class MarkerIDProvider + { + nextID=6; + }; + class LayerIndexProvider + { + nextID=163; + }; + class Camera + { + pos[]={4529.8794,285.65625,3572.1687}; + dir[]={-0.559551,-0.75248569,0.34744111}; + up[]={-0.63928288,0.65858829,0.39694855}; + aside[]={0.52752161,-3.8635335e-008,0.84956974}; + }; +}; +binarizationWanted=0; +addons[]= +{ + "A3_Ui_F", + "A3_Weapons_F_Ammoboxes", + "A3_Modules_F", + "A3_Characters_F", + "A3_Modules_F_Hc", + "A3_Weapons_F", + "A3_Structures_F_EPC_Civ_InfoBoards", + "A3_Structures_F_Mil_Flags", + "A3_Modules_F_Curator_Curator", + "A3_Props_F_Enoch_Military_Camps", + "A3_Structures_F_Mil_BagFence", + "A3_Structures_F_EPA_Mil_Scrapyard", + "A3_Structures_F_Items_Vessels", + "A3_Structures_F_Mil_Fortification", + "A3_Structures_F_Ind_Cargo", + "A3_Structures_F_Mil_Shelters", + "A3_Structures_F_System", + "A3_Structures_F_Heli_Civ_Constructions", + "A3_Structures_F_Heli_Furniture", + "A3_Structures_F_EPA_Civ_Constructions", + "A3_Structures_F_Walls", + "A3_Structures_F_Enoch_Military_Camps", + "A3_Structures_F_Civ_Lamps", + "A3_Structures_F_Orange_Humanitarian_Camps", + "A3_Structures_F_Heli_Ind_Machines", + "A3_Props_F_Orange_Humanitarian_Camps", + "A3_Structures_F_Enoch_Military_Radar", + "A3_Structures_F_Mil_Cargo", + "A3_Structures_F_Mil_Helipads", + "A3_Supplies_F_Heli_Bladders", + "A3_Ui_F_Exp", + "A3_Characters_F_Exp", + "A3_Structures_F_Exp_Military_Flags", + "A3_Structures_F_Ind_Transmitter_Tower", + "A3_Structures_F_Mil_BagBunker", + "A3_Structures_F_Civ_Camping", + "A3_Structures_F_Civ_Constructions", + "CUP_CAStructures_E_Ind_Misc_PowerStation", + "CUP_CAStructures_E_HouseC", + "CUP_CAStructures_E_Misc", + "CUP_CAStructures_E_Mil", + "CUP_CAStructures_E_Wall_Wall_L", + "A3_Signs_F", + "A3_Structures_F_EPC_Civ_Garbage", + "A3_Structures_F_Ind_DieselPowerPlant", + "CUP_CAMisc", + "CUP_CAStructures_PMC_FuelStation", + "A3_Structures_F_Kart_Mil_Flags", + "CUP_CAStructuresHouse_A_FuelStation" +}; +class AddonsMetaData +{ + class List + { + items=29; + class Item0 + { + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item1 + { + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item2 + { + className="A3_Modules_F"; + name="Arma 3 Alpha - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item3 + { + className="A3_Characters_F"; + name="Arma 3 Alpha - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item4 + { + className="A3_Structures_F_EPC"; + name="Arma 3 Win Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item5 + { + className="A3_Structures_F_Mil"; + name="Arma 3 - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item6 + { + className="A3_Modules_F_Curator"; + name="Arma 3 Zeus Update - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item7 + { + className="A3_Props_F_Enoch"; + name="Arma 3 Enoch - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item8 + { + className="A3_Structures_F_EPA"; + name="Arma 3 Survive Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item9 + { + className="A3_Structures_F"; + name="Arma 3 - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item10 + { + className="A3_Structures_F_Ind"; + name="Arma 3 - Industrial Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item11 + { + className="A3_Structures_F_Heli"; + name="Arma 3 Helicopters - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item12 + { + className="A3_Structures_F_Enoch_Military"; + name="Arma 3 Enoch - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item13 + { + className="A3_Structures_F_Orange"; + name="Arma 3 Orange - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item14 + { + className="A3_Props_F_Orange"; + name="Arma 3 Orange - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item15 + { + className="A3_Supplies_F_Heli"; + name="Arma 3 Helicopters - Ammoboxes and Supplies"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item16 + { + className="A3_Ui_F_Exp"; + name="Arma 3 Apex - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item17 + { + className="A3_Characters_F_Exp"; + name="Arma 3 Apex - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item18 + { + className="A3_Structures_F_Exp"; + name="Arma 3 Apex - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item19 + { + className="CUP_CAStructures_E_Ind_Misc_PowerStation"; + name="CUP_CAStructures_E_Ind_Misc_PowerStation"; + }; + class Item20 + { + className="CUP_CAStructures_E_HouseC"; + name="CUP_CAStructures_E_HouseC"; + }; + class Item21 + { + className="CUP_CAStructures_E_Misc"; + name="CUP_CAStructures_E_Misc"; + }; + class Item22 + { + className="CUP_CAStructures_E_Mil"; + name="CUP_CAStructures_E_Mil"; + }; + class Item23 + { + className="CUP_CAStructures_E_Wall_Wall_L"; + name="CUP_CAStructures_E_Wall_Wall_L"; + }; + class Item24 + { + className="A3_Signs_F"; + name="Arma 3 - Signs"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item25 + { + className="CUP_CAMisc"; + name="CUP_CAMisc"; + }; + class Item26 + { + className="CUP_CAStructures_PMC_FuelStation"; + name="CUP_CAStructures_PMC_FuelStation"; + }; + class Item27 + { + className="A3_Structures_F_Kart"; + name="Arma 3 Karts - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item28 + { + className="CUP_CAStructuresHouse_A_FuelStation"; + name="CUP_CAStructuresHouse_A_FuelStation"; + }; + }; +}; +randomSeed=10030831; +class Mission +{ + assetType="Free"; + class Intel + { + briefingName=$STR_antistasi_mission_info_anizay_mapname_text; + resistanceWest=0; + timeOfChanges=1800.0002; + startWeather=0; + startWind=0.10000001; + startWaves=0.1; + forecastWeather=0; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2018; + month=7; + day=2; + hour=12; + startFogDecay=0.014; + forecastFogDecay=0.014; + }; + class Entities + { + items=870; + class Item0 + { + dataType="Layer"; + name="Airports"; + class Entities + { + items=17; + class Item0 + { + dataType="Marker"; + position[]={8347.793,107.30859,7121.7002}; + name="airp_1_hangar"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorRed"; + a=31.700153; + b=56.972252; + id=775; + atlOffset=-4.2314072; + }; + class Item1 + { + dataType="Marker"; + position[]={8373.8047,111.54,7032.0776}; + name="airp_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.6176758; + b=15; + id=777; + }; + class Item2 + { + dataType="Marker"; + position[]={8446.2324,111.53596,6955.0713}; + name="airport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=187.27679; + b=400.20657; + id=778; + atlOffset=-0.0040435791; + }; + class Item3 + { + dataType="Marker"; + position[]={968.62103,130.72977,4669.5083}; + name="airp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15; + b=15; + angle=84.683006; + id=783; + atlOffset=1.1395111; + }; + class Item4 + { + dataType="Marker"; + position[]={963.61017,130.76479,4641.5034}; + name="airport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=120.82069; + b=70.956009; + angle=340.80389; + id=784; + }; + class Item5 + { + dataType="Marker"; + position[]={936.17566,130.6075,4659.1479}; + name="airp_2_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + angle=84.683006; + id=785; + }; + class Item6 + { + dataType="Marker"; + position[]={3142.5439,142.11449,8491.4043}; + name="airp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15; + b=15; + angle=350.40146; + id=789; + }; + class Item7 + { + dataType="Marker"; + position[]={3094.8013,143.78299,8473.7295}; + name="airport_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=127.35516; + b=127.31008; + angle=353.3689; + id=790; + atlOffset=0.18624878; + }; + class Item8 + { + dataType="Marker"; + position[]={3084.866,131.96582,8439.5811}; + name="airp_3_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=791; + atlOffset=-11.387115; + }; + class Item9 + { + dataType="Marker"; + position[]={3092.2659,132.07495,8440.7041}; + name="airp_3_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=1251; + atlOffset=-11.3647; + }; + class Item10 + { + dataType="Marker"; + position[]={3088.9624,132.20865,8434.8184}; + name="airp_3_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=1252; + atlOffset=-11.3647; + }; + class Item11 + { + dataType="Marker"; + position[]={8512.6992,91.91848,6906.0991}; + name="airp_1_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=1281; + atlOffset=-11.607124; + }; + class Item12 + { + dataType="Marker"; + position[]={8503.1582,92.921722,6893.3569}; + name="airp_1_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=1282; + atlOffset=-11.607124; + }; + class Item13 + { + dataType="Marker"; + position[]={8512.8564,91.932678,6885.6812}; + name="airp_1_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=1283; + atlOffset=-11.607124; + }; + class Item14 + { + dataType="Marker"; + position[]={8496.6221,100.07291,7143.541}; + name="airp_1_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=1284; + atlOffset=-11.607132; + }; + class Item15 + { + dataType="Marker"; + position[]={8497.8828,101.10397,7134.7158}; + name="airp_1_mortar_5"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=1285; + atlOffset=-11.607117; + }; + class Item16 + { + dataType="Marker"; + position[]={8480.7461,111.54,6780.7744}; + name="airp_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.256348; + b=5.4956055; + id=1286; + }; + }; + id=681; + atlOffset=-5.8201523; + }; + class Item1 + { + dataType="Layer"; + name="Outposts"; + class Entities + { + items=31; + class Item0 + { + dataType="Marker"; + position[]={6832.3169,104.36263,7168.9512}; + name="outp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5.2213364; + b=5.9778852; + angle=347.34448; + id=793; + }; + class Item1 + { + dataType="Marker"; + position[]={6847.0435,104.64729,7160.1313}; + name="outpost_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=41.747002; + b=47.109745; + angle=345.63541; + id=794; + atlOffset=-0.034439087; + }; + class Item2 + { + dataType="Marker"; + position[]={4860.3286,143.74292,8338.5244}; + name="outp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=10.09345; + b=6.7367115; + angle=351.44574; + id=797; + atlOffset=-0.077224731; + }; + class Item3 + { + dataType="Marker"; + position[]={4832.751,144.03,8328.0293}; + name="outpost_2"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=76.262627; + b=58.999046; + id=798; + atlOffset=0.034790039; + }; + class Item4 + { + dataType="Marker"; + position[]={8550.5986,77.867943,4985.7588}; + name="outp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=7.7494531; + b=12.772196; + angle=12.947085; + id=801; + atlOffset=0.023376465; + }; + class Item5 + { + dataType="Marker"; + position[]={8515.6758,77.950996,4973.127}; + name="outpost_3"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=45.390999; + b=57.394001; + angle=350.54489; + id=802; + atlOffset=-0.010658264; + }; + class Item6 + { + dataType="Marker"; + position[]={8505.3184,67.859375,5021.0225}; + name="outp_3_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=803; + atlOffset=-11.472702; + }; + class Item7 + { + dataType="Marker"; + position[]={9065.7344,92.917603,1980.2229}; + name="outp_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=10.331858; + b=15; + angle=13.303684; + id=805; + atlOffset=0.068611145; + }; + class Item8 + { + dataType="Marker"; + position[]={9101.3643,94.049545,1954.8256}; + name="outpost_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=52.454731; + b=41.750999; + angle=13.567805; + id=806; + atlOffset=-0.0062637329; + }; + class Item9 + { + dataType="Marker"; + position[]={6009.1309,185.571,4022.8501}; + name="outp_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=6; + b=9; + angle=328.63501; + id=809; + atlOffset=-0.66110229; + }; + class Item10 + { + dataType="Marker"; + position[]={6026.2026,180.26758,3996.1697}; + name="outpost_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=54.500015; + b=56.263123; + angle=328.50308; + id=810; + atlOffset=-3.7432404; + }; + class Item11 + { + dataType="Marker"; + position[]={3806.104,180.46899,2626.8501}; + name="outpost_6"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=41.747002; + b=41.750999; + id=814; + atlOffset=0.0004119873; + }; + class Item12 + { + dataType="Marker"; + position[]={3864.4954,254.45128,835.36792}; + name="outpost_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=41.747002; + b=41.750999; + id=818; + atlOffset=-0.00022888184; + }; + class Item13 + { + dataType="Marker"; + position[]={934.91901,164.15199,1688.246}; + name="outp_8_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=8; + id=821; + atlOffset=6.1035156e-005; + }; + class Item14 + { + dataType="Marker"; + position[]={896.03046,165.56384,1676.8254}; + name="outpost_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=41.747002; + b=41.750999; + id=822; + atlOffset=0.9473114; + }; + class Item15 + { + dataType="Marker"; + position[]={1749.9393,134.09795,4069.1262}; + name="outp_9_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5.3373957; + b=10.667358; + angle=346.92667; + id=825; + atlOffset=1.5769958; + }; + class Item16 + { + dataType="Marker"; + position[]={1745.2333,132.58057,4093.0774}; + name="outpost_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=57.305679; + b=62.10952; + angle=345.94681; + id=826; + }; + class Item17 + { + dataType="Marker"; + position[]={2255.1306,130.07422,6257.4727}; + name="outp_10_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.154152; + b=7.750545; + angle=299.73911; + id=829; + atlOffset=-0.13000488; + }; + class Item18 + { + dataType="Marker"; + position[]={2221.928,133.32614,6261.2705}; + name="outpost_10"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=62.954399; + b=59.139183; + id=830; + }; + class Item19 + { + dataType="Marker"; + position[]={667.125,140.28,7737.8154}; + name="outp_11_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.3086567; + b=7.4419618; + angle=320.34232; + id=833; + atlOffset=-0.014373779; + }; + class Item20 + { + dataType="Marker"; + position[]={633.65582,140.30399,7750.6484}; + name="outpost_11"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=63.5868; + b=49.415287; + angle=322.45303; + id=834; + atlOffset=0.25761414; + }; + class Item21 + { + dataType="Marker"; + position[]={610.15216,139.4545,7728.166}; + name="outp_11_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=835; + }; + class Item22 + { + dataType="Marker"; + position[]={4982.8892,130.9873,5354.6128}; + name="outpost_12"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=49.300724; + b=58.934929; + angle=328.13611; + id=838; + atlOffset=-0.66390991; + }; + class Item23 + { + dataType="Marker"; + position[]={4529.7222,134.42,5845.3975}; + name="outp_13_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5.6225586; + b=15; + id=841; + }; + class Item24 + { + dataType="Marker"; + position[]={4499.7695,134.9958,5818.3721}; + name="outpost_13"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=88.276054; + b=90.156029; + id=842; + atlOffset=0.32458496; + }; + class Item25 + { + dataType="Marker"; + position[]={4543.8574,122.81934,5779.1069}; + name="outp_13_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=843; + atlOffset=-11.600655; + }; + class Item26 + { + dataType="Marker"; + position[]={5792.668,267.841,943.71643}; + name="outp_14_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15; + b=7.7193232; + angle=24.224901; + id=845; + }; + class Item27 + { + dataType="Marker"; + position[]={5823.3232,269.88901,929.38599}; + name="outpost_14"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=105.033; + b=98.226997; + id=846; + atlOffset=-0.00036621094; + }; + class Item28 + { + dataType="Marker"; + position[]={8213.3271,209.37012,8847.7207}; + name="outp_15_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=7.4907227; + b=15; + id=853; + atlOffset=-2.2090149; + }; + class Item29 + { + dataType="Marker"; + position[]={8291.7275,228.40198,8794.292}; + name="outpost_15"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=65.837334; + b=72.871117; + id=854; + atlOffset=10.335693; + }; + class Item30 + { + dataType="Marker"; + position[]={7122.1406,332.90665,3555.4648}; + name="outpost_16"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=60.318535; + b=54.743553; + angle=304.17081; + id=938; + }; + }; + id=682; + atlOffset=158.19859; + }; + class Item2 + { + dataType="Layer"; + name="Factories"; + class Entities + { + items=9; + class Item0 + { + dataType="Marker"; + position[]={3976.353,136.70599,6965.6709}; + name="factory_1"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorBrown"; + a=41.747002; + b=41.750999; + id=858; + atlOffset=-0.51400757; + }; + class Item1 + { + dataType="Marker"; + position[]={5600.2222,123.21,5565.1069}; + name="fact_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=6; + b=6; + angle=334.37885; + id=861; + }; + class Item2 + { + dataType="Marker"; + position[]={5576.0313,118.79004,5569.8286}; + name="factory_2"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorBrown"; + a=73.618828; + b=73.162865; + id=862; + atlOffset=-4.41996; + }; + class Item3 + { + dataType="Marker"; + position[]={2448.1948,149.21387,2690.9822}; + name="fact_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.043173; + b=10.875315; + angle=350.19751; + id=865; + atlOffset=-1.5237274; + }; + class Item4 + { + dataType="Marker"; + position[]={2413.0642,154.09082,2744.3989}; + name="factory_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=100.42547; + b=80.503685; + angle=355.21445; + id=866; + atlOffset=-0.95860291; + }; + class Item5 + { + dataType="Marker"; + position[]={1733.7537,160.62,1387.802}; + name="factory_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=56.784512; + b=62.693451; + angle=33.250938; + id=870; + }; + class Item6 + { + dataType="Marker"; + position[]={1728.5785,160.61322,1408.39}; + name="fact_4_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=871; + }; + class Item7 + { + dataType="Marker"; + position[]={6809.9468,119.71,5529.8828}; + name="fact_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=6.757081; + b=12.512598; + angle=330.504; + id=893; + }; + class Item8 + { + dataType="Marker"; + position[]={6830.6504,119.10511,5520.2129}; + name="factory_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=62.738213; + b=54.947777; + angle=332.14972; + id=894; + atlOffset=-0.60488892; + }; + }; + id=683; + atlOffset=-38.278885; + }; + class Item3 + { + dataType="Layer"; + name="Resources"; + class Entities + { + items=21; + class Item0 + { + dataType="Marker"; + position[]={1382.2677,150.91113,9944.3506}; + name="reso_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=6.6992302; + b=8.030777; + angle=352.66891; + id=877; + atlOffset=-0.62649536; + }; + class Item1 + { + dataType="Marker"; + position[]={1399.3651,149.40039,9960.1943}; + name="resource_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=41.747002; + b=41.750999; + angle=350.36285; + id=878; + atlOffset=-0.58551025; + }; + class Item2 + { + dataType="Marker"; + position[]={8978.0576,123.767,9401.6494}; + name="resource_2"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorOrange"; + a=38.899067; + b=68.954964; + angle=23.456604; + id=882; + atlOffset=-0.90015411; + }; + class Item3 + { + dataType="Marker"; + position[]={6705.3901,132.57416,8384.084}; + name="resource_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=47.507618; + b=78.107933; + angle=326.10388; + id=886; + atlOffset=-3.1813812; + }; + class Item4 + { + dataType="Marker"; + position[]={6801.7349,142.55273,5094.9307}; + name="resource_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=59.402908; + b=60.699497; + angle=13.536361; + id=890; + atlOffset=-1.8619385; + }; + class Item5 + { + dataType="Marker"; + position[]={8562.209,172.211,3817.2971}; + name="reso_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=10; + b=6; + angle=27.656986; + id=897; + atlOffset=1.0401154; + }; + class Item6 + { + dataType="Marker"; + position[]={8583.2666,169.20801,3850.6182}; + name="resource_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=57.268486; + b=60.64077; + angle=61.372841; + id=898; + atlOffset=-0.85723877; + }; + class Item7 + { + dataType="Marker"; + position[]={8072.5015,107.62083,1649.7207}; + name="resource_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=46.738213; + b=52.558495; + angle=29.457516; + id=902; + }; + class Item8 + { + dataType="Marker"; + position[]={4051.7112,215.48999,1143.7477}; + name="resource_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=49.548325; + b=54.036896; + angle=332.65384; + id=906; + atlOffset=0.61697388; + }; + class Item9 + { + dataType="Marker"; + position[]={2603.9431,157.41992,2509.9341}; + name="resource_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=41.747002; + b=41.750999; + id=910; + atlOffset=-0.60572815; + }; + class Item10 + { + dataType="Marker"; + position[]={3951.5728,137.42175,7875.3276}; + name="reso_9_helipad"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBlue"; + a=15; + b=15; + id=912; + atlOffset=-0.00022888184; + }; + class Item11 + { + dataType="Marker"; + position[]={3954.522,140.07982,7917.3926}; + name="reso_9_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15; + b=15; + id=913; + atlOffset=0.00042724609; + }; + class Item12 + { + dataType="Marker"; + position[]={3932.7905,138.88977,7896.4995}; + name="resource_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=41.747002; + b=41.750999; + id=914; + atlOffset=-0.62234497; + }; + class Item13 + { + dataType="Marker"; + position[]={3912.3091,138.1409,7875.3276}; + name="reso_9_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=915; + atlOffset=0.00074768066; + }; + class Item14 + { + dataType="Marker"; + position[]={6526.6514,209.43945,2305.8027}; + name="reso_10_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=8.477664; + b=6.7829733; + angle=330.57599; + id=917; + }; + class Item15 + { + dataType="Marker"; + position[]={6552.1514,211.03906,2304.447}; + name="resource_10"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=41.747002; + b=41.750999; + angle=332.22455; + id=918; + atlOffset=-0.52651978; + }; + class Item16 + { + dataType="Marker"; + position[]={3498.717,155.39101,4655.1377}; + name="resource_11"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorOrange"; + a=62.564751; + b=66.754662; + id=922; + atlOffset=-0.59725952; + }; + class Item17 + { + dataType="Marker"; + position[]={1575.953,142.76215,8708.6377}; + name="reso_12_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.8387365; + b=15; + angle=357.23572; + id=925; + }; + class Item18 + { + dataType="Marker"; + position[]={1571.7598,142.504,8661.3223}; + name="resource_12"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=68.335403; + b=85.723038; + angle=356.54248; + id=926; + atlOffset=-0.70600891; + }; + class Item19 + { + dataType="Marker"; + position[]={2357.0657,143.08105,8649.0244}; + name="resource_13"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=41.747002; + b=30.633812; + id=930; + atlOffset=-0.65724182; + }; + class Item20 + { + dataType="Marker"; + position[]={628.72333,125.39258,5377.9316}; + name="resource_14"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=66.06353; + b=64.443871; + id=934; + atlOffset=-3.0438843; + }; + }; + id=684; + atlOffset=-10.600906; + }; + class Item4 + { + dataType="Layer"; + name="Seaports"; + id=685; + atlOffset=-182.61; + }; + class Item5 + { + dataType="Layer"; + name="Layer 6"; + id=686; + atlOffset=-182.61; + }; + class Item6 + { + dataType="Layer"; + name="Layer 7"; + id=687; + atlOffset=-182.61; + }; + class Item7 + { + dataType="Layer"; + name="Layer 8"; + id=688; + atlOffset=-182.61; + }; + class Item8 + { + dataType="Layer"; + name="Layer 9"; + id=689; + atlOffset=-182.61; + }; + class Item9 + { + dataType="Layer"; + name="Layer 10"; + id=690; + atlOffset=-182.61; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={4441.3545,192.76682,3616.6685}; + angles[]={6.1854959,0,6.215291}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="vehicleBox"; + }; + id=692; + type="Box_East_AmmoVeh_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Logic"; + class PositionInfo + { + position[]={4442.8086,190.60143,3599.1221}; + angles[]={6.211309,0,6.2571888}; + }; + name="server"; + id=693; + type="Logic"; + atlOffset=0.31767273; + }; + class Item12 + { + dataType="Logic"; + class PositionInfo + { + position[]={4444.3828,190.37617,3597.7119}; + angles[]={6.211309,0,6.2571888}; + }; + name="garrison"; + id=694; + type="Logic"; + atlOffset=0.23487854; + }; + class Item13 + { + dataType="Logic"; + class PositionInfo + { + position[]={4446.1699,190.16508,3596.29}; + angles[]={6.2113094,0,6.2811723}; + }; + name="spawner"; + id=695; + type="Logic"; + atlOffset=0.14454651; + }; + class Item14 + { + dataType="Logic"; + class PositionInfo + { + position[]={4440.7344,190.14587,3593.7617}; + angles[]={6.2212658,0,6.2631927}; + }; + name="hc"; + isPlayable=1; + id=696; + type="HeadlessClient_F"; + atlOffset=0.19734192; + }; + class Item15 + { + dataType="Logic"; + class PositionInfo + { + position[]={4448.0449,189.9214,3594.958}; + angles[]={6.2232571,0,6.2812018}; + }; + name="roadsX"; + id=697; + type="Logic"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={4439.2461,190.26427,3597.4746}; + angles[]={6.2073302,4.511023,6.2352209}; + }; + name="HC_commanderX"; + id=698; + type="HighCommand"; + atlOffset=1.5258789e-005; + }; + class Item17 + { + dataType="Logic"; + class PositionInfo + { + position[]={4433.5508,190.64781,3596.1953}; + angles[]={6.1993828,1.3577622,6.2292376}; + }; + id=699; + type="HighCommandSubordinate"; + atlOffset=0.21913147; + }; + class Item18 + { + dataType="Logic"; + class PositionInfo + { + position[]={4449.2637,190.02219,3593.853}; + angles[]={6.2232571,0,6.2812018}; + }; + name="timer"; + id=700; + type="Logic"; + atlOffset=0.16954041; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={4444.5693,192.01698,3609.7427}; + angles[]={6.1973982,0,6.2312312}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=701; + type="IG_supplyCrate_F"; + atlOffset=-0.00021362305; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Logic"; + class PositionInfo + { + position[]={4450.5332,189.78328,3592.5991}; + angles[]={6.2232571,0,0.0019834081}; + }; + name="sidesX"; + id=702; + type="Logic"; + atlOffset=0.0062561035; + }; + class Item21 + { + dataType="Logic"; + class PositionInfo + { + position[]={4451.4453,189.72893,3591.7671}; + angles[]={6.2232571,0,0.0019834081}; + }; + name="killZones"; + id=703; + type="Logic"; + }; + class Item22 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=60; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={4448.9102,190.20132,3599.4604}; + angles[]={6.2232571,0,6.2691903}; + }; + side="Independent"; + flags=6; + class Attributes + { + skill=1; + name="commanderX"; + description="Default Commander"; + isPlayer=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=705; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={4456.2725,189.97711,3595.896}; + angles[]={6.2292376,6.2412972,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=706; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={4467.7334,190.04243,3602.0483}; + angles[]={6.2511988,6.2412972,6.2491965}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=707; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={4466.9785,190.07692,3602.3237}; + angles[]={6.2511988,0,6.2491965}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=708; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={4469.9082,189.97354,3601.9761}; + angles[]={6.2471995,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=709; + type="I_G_medic_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={4472.8066,189.84813,3602.1558}; + angles[]={6.2471995,0,6.2372193}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=710; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={4475.7949,189.67661,3602.3745}; + angles[]={6.2372193,0,6.1558776}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=711; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={4461.4434,190.20978,3602.0269}; + angles[]={6.2491984,0,6.2631893}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=712; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={4467.6299,190.14502,3604.8413}; + angles[]={6.2471995,6.2412972,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=713; + type="I_G_Soldier_AR_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={4466.875,190.17688,3605.1206}; + angles[]={6.2591896,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=714; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={4469.8047,190.07719,3604.769}; + angles[]={6.2471995,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=715; + type="I_G_medic_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={4472.7031,189.97946,3604.9487}; + angles[]={6.2372193,0,6.2471995}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=716; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={4475.6914,189.85979,3605.1675}; + angles[]={6.2491965,0,6.2172837}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=717; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={4461.3398,190.30472,3604.8237}; + angles[]={6.2511969,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=718; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={4466.875,190.24889,3608.1206}; + angles[]={6.2591896,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=719; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={4469.8047,190.15263,3607.7729}; + angles[]={6.259192,0,6.2531939}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=720; + type="I_G_medic_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={4472.7031,190.05969,3607.9487}; + angles[]={6.2491965,0,6.2571931}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=721; + type="I_G_engineer_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={4475.6914,189.96193,3608.1714}; + angles[]={6.2491965,0,6.2172837}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=722; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={4461.3398,190.40071,3607.8237}; + angles[]={6.251195,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=723; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={4466.7715,190.31404,3610.7065}; + angles[]={6.259192,0,6.2531939}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=724; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={4469.7012,190.21779,3610.3589}; + angles[]={6.2591896,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=725; + type="I_G_medic_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={4472.5996,190.14557,3610.5386}; + angles[]={6.2591872,0,6.2571931}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=726; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={4475.5879,190.07831,3610.7573}; + angles[]={6.2551904,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=727; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={4461.2363,190.47729,3610.4097}; + angles[]={6.2472029,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=728; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={4467.7295,190.21935,3607.9585}; + angles[]={6.259192,6.1574922,6.2531939}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=729; + type="I_G_Soldier_AR_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={4467.8232,190.27861,3610.5444}; + angles[]={6.259192,0,6.2531939}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=730; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={4467.1035,190.36707,3613.3315}; + angles[]={6.2591896,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=731; + type="I_G_Soldier_LAT_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={4470.0332,190.27098,3612.9839}; + angles[]={6.2591872,0,6.2571931}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=732; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={4472.9316,190.20413,3613.1636}; + angles[]={6.2551904,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=733; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={4475.9199,190.1445,3613.3823}; + angles[]={6.2551904,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=734; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={4461.5684,190.56198,3613.0386}; + angles[]={6.2472029,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=735; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={4468.1553,190.33173,3613.1733}; + angles[]={6.2591896,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=736; + type="I_G_Soldier_AR_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={4467.1777,190.45493,3616.4058}; + angles[]={6.2472029,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=737; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={4470.1074,190.34932,3616.0581}; + angles[]={6.2531958,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=738; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={4473.0059,190.29094,3616.2378}; + angles[]={6.2531958,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=739; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={4475.9941,190.24368,3616.4565}; + angles[]={6.2531977,0,6.2731905}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=740; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={4461.6426,190.65919,3616.1128}; + angles[]={6.2392135,0,6.2412114}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=741; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={4468.2295,190.41765,3616.2476}; + angles[]={6.2472029,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=742; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={4464.209,190.66737,3619.394}; + angles[]={6.2472029,0,6.2332263}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=743; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={4467.1406,190.54425,3619.0464}; + angles[]={6.2531958,0,6.2472029}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=744; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={4470.0391,190.44574,3619.2222}; + angles[]={6.2531958,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=745; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={4473.0273,190.38666,3619.4448}; + angles[]={6.2531958,0,6.261188}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=746; + type="I_G_Soldier_GL_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={4458.6758,190.9469,3619.0972}; + angles[]={6.2392135,0,6.2172809}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=747; + type="I_G_officer_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={4465.2627,190.61409,3619.2319}; + angles[]={6.2472029,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=748; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={4464.0605,190.8345,3622.6597}; + angles[]={6.2332263,0,6.2272439}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=749; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={4466.9922,190.69261,3622.3081}; + angles[]={6.2332263,0,6.2472029}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=750; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={4469.8906,190.57863,3622.4878}; + angles[]={6.2412114,0,6.2392135}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=751; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={4472.8789,190.51537,3622.7065}; + angles[]={6.2491999,0,6.2531958}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=752; + type="I_G_Soldier_GL_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={4458.5273,191.13992,3622.3628}; + angles[]={6.2272439,0,6.2093177}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=753; + type="I_G_officer_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={4465.1143,190.76968,3622.4976}; + angles[]={6.2332263,0,6.2472029}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=754; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={4462.875,191.03943,3625.4019}; + angles[]={6.2292366,0,6.2272449}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=755; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={4465.8047,190.86621,3625.0542}; + angles[]={6.2372155,0,6.2392135}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=756; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={4468.7031,190.74695,3625.2339}; + angles[]={6.2372155,0,6.2392135}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=757; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={4468.8223,190.86305,3628.1187}; + angles[]={6.2432051,0,6.2332263}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=758; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={4457.3398,191.38159,3625.1089}; + angles[]={6.2272439,0,6.2093177}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=759; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={4463.9287,190.97188,3625.2437}; + angles[]={6.2292366,0,6.2272449}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=760; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={4458.4473,189.97321,3595.8237}; + angles[]={6.2292376,0,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=761; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={4461.4727,189.95149,3596.0815}; + angles[]={6.2352209,0,6.2631893}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=762; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={4464.0586,189.91928,3596.4878}; + angles[]={6.2352209,0,6.2631893}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=763; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={4455.5176,189.99199,3596.1714}; + angles[]={6.2292376,0,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + }; + }; + id=764; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=704; + }; + class Item23 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={4443.1152,190.60461,3603.0698}; + angles[]={6.2033539,2.1016905,6.245204}; + }; + side="Independent"; + flags=6; + class Attributes + { + name="petros"; + }; + id=766; + type="I_G_officer_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute2 + { + property="face"; + expression="_this setface _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=765; + atlOffset=-1.5258789e-005; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={4446.6475,192.37035,3614.208}; + angles[]={6.2113094,0,6.219274}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="mapX"; + }; + id=767; + type="MapBoard_seismic_F"; + atlOffset=-0.00053405762; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={4450.5488,194.98672,3612.1245}; + angles[]={6.2113094,0,6.2412086}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="flagX"; + }; + id=768; + type="Flag_Altis_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Logic"; + class PositionInfo + { + position[]={4442.7266,189.93709,3592.6211}; + angles[]={6.2232599,0,6.2611909}; + }; + name="hc_1"; + isPlayable=1; + id=769; + type="HeadlessClient_F"; + atlOffset=0.099807739; + }; + class Item27 + { + dataType="Logic"; + class PositionInfo + { + position[]={4444.5742,189.73697,3591.627}; + angles[]={6.2232599,0,6.2611909}; + }; + name="hc_2"; + isPlayable=1; + id=770; + type="HeadlessClient_F"; + atlOffset=-1.5258789e-005; + }; + class Item28 + { + dataType="Logic"; + class PositionInfo + { + position[]={4472.0566,189.42114,3594.0078}; + angles[]={6.2013679,0,6.2212658}; + }; + id=771; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + }; + nAttributes=4; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={4436.377,192.34113,3611.4917}; + angles[]={6.1736255,1.0016968,6.2212658}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=772; + type="Land_TentSolar_01_olive_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Logic"; + class PositionInfo + { + position[]={4452.5742,189.6521,3590.4492}; + angles[]={6.2232571,0,0.0019834081}; + }; + name="pathFinding"; + id=773; + type="Logic"; + }; + class Item31 + { + dataType="Marker"; + position[]={8385.1416,110.13867,6670.5601}; + name="spawnPoint_1"; + type="hd_start"; + id=774; + atlOffset=-0.59091949; + }; + class Item32 + { + dataType="Marker"; + position[]={719.8089,137.07715,4622.2583}; + name="spawnPoint_2"; + type="hd_start"; + angle=84.683006; + id=780; + atlOffset=-7.109848; + }; + class Item33 + { + dataType="Marker"; + position[]={3189.446,143.52148,8383.582}; + name="spawnPoint_3"; + type="hd_start"; + id=786; + atlOffset=-1.2295227; + }; + class Item34 + { + dataType="Logic"; + class PositionInfo + { + position[]={966.16309,130.62363,4642.7285}; + angles[]={0.035982672,2.7792044,6.2332263}; + }; + areaSize[]={113.49379,0,62.547222}; + areaIsRectangle=1; + flags=1; + id=940; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item35 + { + dataType="Layer"; + name="Open Ammo Dump_4"; + class Entities + { + items=24; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={931.69635,131.11131,4637.8047}; + angles[]={0.0080009829,2.769927,6.2651882}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=942; + type="Land_BagFence_Short_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={928.95978,131.17397,4636.6494}; + angles[]={0.0080009829,2.769927,6.2611909}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=943; + type="Land_BagFence_Short_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={932.46826,131.14261,4636.6333}; + angles[]={0.0080009829,4.3136024,6.2651882}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=944; + type="Land_Pallet_MilBoxes_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={929.62372,131.17941,4635.0381}; + angles[]={0.0060001095,2.7632599,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=945; + type="Land_MetalBarrel_F"; + atlOffset=-0.00064086914; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={931.22144,131.47194,4634.7856}; + angles[]={0.015998369,1.1879252,6.2651916}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=946; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={929.95569,131.18457,4634.1807}; + angles[]={0.013999403,2.7804689,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=947; + type="Land_MetalBarrel_F"; + atlOffset=-0.00057983398; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={929.51202,131.20435,4633.3862}; + angles[]={0.013999403,2.7319307,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=948; + type="Land_MetalBarrel_F"; + atlOffset=-0.00080871582; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={930.28906,131.19183,4633.2612}; + angles[]={0.013999403,2.7698212,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=949; + type="Land_MetalBarrel_F"; + atlOffset=-0.00065612793; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={933.6474,131.1519,4633.9087}; + angles[]={0.015998369,2.769927,6.2651916}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=950; + type="Land_Pallet_MilBoxes_F"; + atlOffset=-1.5258789e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={935.95178,131.02148,4639.4385}; + angles[]={0.011995304,2.769927,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=951; + type="Land_BagFence_Short_F"; + atlOffset=-1.5258789e-005; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={936.24957,131.22346,4638.3584}; + angles[]={0.010000871,2.769927,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=952; + type="Land_PaperBox_open_empty_F"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={929.94318,131.20842,4632.4746}; + angles[]={0.013999403,2.7563477,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=953; + type="Land_MetalBarrel_F"; + atlOffset=-0.00088500977; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={930.72803,131.19942,4632.1997}; + angles[]={0.013999403,2.7612171,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=954; + type="Land_MetalBarrel_F"; + atlOffset=-0.00091552734; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={924.8623,131.26778,4635.0879}; + angles[]={6.2812018,2.769927,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=955; + type="Land_BagFence_Short_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={936.85724,131.26912,4636.9229}; + angles[]={0.010000871,2.769927,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=956; + type="Land_PaperBox_closed_F"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={924.99512,131.42583,4634.0249}; + angles[]={0.0099949092,2.8308764,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=957; + type="Land_WaterBarrel_F"; + atlOffset=-0.00099182129; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={932.71344,131.49573,4631.5264}; + angles[]={0.013999403,2.769927,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=958; + type="Land_HBarrier_5_F"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={926.39087,131.54163,4631.894}; + angles[]={0.0099949092,1.1648692,6.2671909}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=959; + type="Land_WaterTank_F"; + atlOffset=-0.0022277832; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={937.43915,131.36868,4635.3604}; + angles[]={0.010000871,2.7572556,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=960; + type="Land_CargoBox_V1_F"; + atlOffset=-0.00057983398; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={938.40802,131.34514,4637.6055}; + angles[]={0.011995304,1.1879252,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=961; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={924.3493,131.63579,4632.0332}; + angles[]={0.0099949092,1.1879252,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=962; + type="Land_HBarrier_5_F"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={937.84467,131.40062,4633.5693}; + angles[]={0.015998369,2.769927,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=963; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={927.63428,131.60651,4629.5474}; + angles[]={0.01799392,2.769927,6.2671909}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=964; + type="Land_HBarrier_5_F"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={931.25397,134.3576,4634.3525}; + angles[]={0,2.769927,0}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=965; + type="CamoNet_BLUFOR_open_F"; + atlOffset=1.0664825; + }; + }; + id=941; + atlOffset=1.22966; + }; + class Item36 + { + dataType="Layer"; + name="Vehicle Repair_4"; + class Entities + { + items=15; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1014.5587,127.06186,4668.3569}; + angles[]={6.2751918,2.78864,6.2491984}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=967; + type="Land_ClutterCutter_large_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1013.7539,128.37816,4671.2236}; + angles[]={6.2412086,2.6896801,6.2491965}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=968; + type="Land_Scrap_MRAP_01_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={1013.6198,127.77195,4665.6162}; + angles[]={6.2811723,4.3908281,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=969; + type="Land_WeldingTrolley_01_F"; + atlOffset=-0.00061035156; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={1016.3259,127.47793,4666.4375}; + angles[]={6.2751846,2.8095417,6.2452054}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=970; + type="Land_Workbench_01_F"; + atlOffset=-0.00029754639; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={1011.8265,128.23141,4665.332}; + angles[]={0,3.3685646,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=971; + type="Land_PortableLight_double_F"; + atlOffset=-7.6293945e-006; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={1009.3772,127.98795,4666.2681}; + angles[]={6.2811723,4.3766074,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=972; + type="Land_HBarrier_5_F"; + atlOffset=-7.6293945e-006; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={1018.051,128.01573,4667.8252}; + angles[]={0,2.4332561,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=973; + type="Land_PortableLight_double_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={1008.2853,127.99966,4669.4878}; + angles[]={6.2811723,4.3740973,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=974; + type="Land_HBarrier_1_F"; + atlOffset=-1.5258789e-005; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={1013.0431,127.87197,4663.8149}; + angles[]={0.027993103,5.9464121,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=975; + type="Land_HBarrier_5_F"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={1007.7922,128.04617,4670.8047}; + angles[]={6.2511969,4.3740973,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=976; + type="Land_HBarrier_1_F"; + atlOffset=7.6293945e-006; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={1019.1787,127.66415,4669.8101}; + angles[]={6.269186,4.3766074,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=977; + type="Land_HBarrier_5_F"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={1018.3562,127.63904,4665.7568}; + angles[]={6.2751846,5.9464121,6.2452054}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=978; + type="Land_HBarrier_5_F"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={1018.1062,127.81612,4673.1216}; + angles[]={6.229239,4.3740973,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=979; + type="Land_HBarrier_1_F"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={1017.7239,127.88657,4674.2563}; + angles[]={6.229239,4.3740973,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=980; + type="Land_HBarrier_1_F"; + atlOffset=7.6293945e-006; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={1014.5587,129.13179,4668.3569}; + angles[]={6.2751918,2.9650755,6.2491984}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=981; + type="CamoNet_BLUFOR_big_F"; + atlOffset=-7.6293945e-006; + }; + }; + id=966; + atlOffset=0.049041748; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={947.61194,132.31183,4588.6987}; + angles[]={6.269186,0.20583975,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=982; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={941.93488,132.34456,4587.6792}; + angles[]={6.2551923,5.9278083,6.2671833}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=983; + type="Land_HBarrier_5_F"; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={941.22388,132.75832,4585.2817}; + angles[]={6.2551923,5.9278083,6.2671833}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=984; + type="Land_HBarrier_Big_F"; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={936.77893,132.44095,4585.7646}; + angles[]={6.2511988,5.9278083,6.2471995}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=985; + type="Land_HBarrier_5_F"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={933.25543,132.89302,4582.3247}; + angles[]={6.2332273,5.9278083,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=986; + type="Land_HBarrier_Big_F"; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={931.62213,132.57172,4583.8516}; + angles[]={6.2332273,5.9278083,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=987; + type="Land_HBarrier_5_F"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={926.46527,132.73909,4581.9375}; + angles[]={6.2591872,5.9278083,6.223259}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=988; + type="Land_HBarrier_5_F"; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={925.2868,133.21071,4579.3667}; + angles[]={6.2591896,5.9278083,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=989; + type="Land_HBarrier_Big_F"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={1018.1307,132.38084,4614.9717}; + angles[]={0.071875811,5.9278083,0.0060001095}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=990; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={1016.0283,131.81189,4616.3247}; + angles[]={0.063911393,5.9278083,0.0060001095}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=991; + type="Land_HBarrier_5_F"; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={1020.2471,131.78851,4617.8911}; + angles[]={0.065901861,5.9278083,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=992; + type="Land_HBarrier_3_F"; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={988.43384,130.8685,4694.7539}; + angles[]={6.2033563,2.7862158,6.2651849}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=993; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={990.15637,130.25929,4693.4067}; + angles[]={0.68405241,2.7862158,0.30726975}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=994; + type="Land_HBarrier_5_F"; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={1036.4197,133.84543,4718.3252}; + angles[]={6.1598134,2.8103323,6.2571931}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=995; + type="Land_HBarrier_Big_F"; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={1042.8328,133.50209,4717.3579}; + angles[]={6.1598129,1.2395357,6.2372193}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=996; + type="Land_HBarrier_Big_F"; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={1050.8303,132.43343,4712.646}; + angles[]={6.1480136,1.2395357,6.215291}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=997; + type="Land_HBarrier_Big_F"; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={1046.7893,132.59639,4715.0435}; + angles[]={6.1598134,5.9519243,6.2232599}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=998; + type="Land_HBarrier_3_F"; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={1023.7791,128.01721,4660.9346}; + angles[]={0.02599225,2.78864,6.2491984}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=999; + type="Land_HBarrier_Big_F"; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={1050.9902,131.22523,4707.4736}; + angles[]={6.136251,5.9519243,6.2212648}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1000; + type="Land_HBarrier_5_F"; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={1075.8042,132.27043,4642.2471}; + angles[]={0.14301735,4.3811283,0.091743298}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1001; + type="Land_HBarrier_Big_F"; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={1074.7563,133.0761,4636.0713}; + angles[]={0.14693438,2.8103323,0.10362876}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1002; + type="Land_HBarrier_Big_F"; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={1069.6631,133.50021,4627.9121}; + angles[]={0.10560538,2.8103323,0.12140039}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1003; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={1072.4224,132.92522,4632.0962}; + angles[]={0.12534021,1.2395357,0.11548408}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1004; + type="Land_HBarrier_3_F"; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={1015.8032,128.45488,4657.9966}; + angles[]={0.059927464,2.78864,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1005; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={1008.2966,128.95818,4655.2305}; + angles[]={0.057935834,2.78864,6.24121}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1006; + type="Land_HBarrier_Big_F"; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={992.81329,129.9431,4649.5269}; + angles[]={0.077842705,2.78864,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1007; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={1066.1833,130.06163,4647.9277}; + angles[]={0.11351148,1.2395357,0.11942702}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1008; + type="Land_HBarrierWall6_F"; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={1072.2864,130.88684,4646.3252}; + angles[]={0.12927385,5.9519243,0.09966857}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1009; + type="Land_HBarrier_5_F"; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={866.25824,137.98566,4604.5933}; + angles[]={0,1.2181596,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1010; + type="Land_Mil_WiredFence_Gate_F"; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={886.68457,133.50998,4654.6387}; + angles[]={0.039977662,2.7862158,6.191442}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1011; + type="Land_HBarrier_5_F"; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={887.39539,133.78566,4657.0352}; + angles[]={0.055941612,2.7862158,6.191443}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1012; + type="Land_HBarrier_Big_F"; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={891.84033,132.95465,4656.5518}; + angles[]={0.049959254,2.7862158,6.1973982}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1013; + type="Land_HBarrier_5_F"; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={895.36346,133.00986,4659.9932}; + angles[]={0.029993678,2.7862158,6.2272406}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1014; + type="Land_HBarrier_Big_F"; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={896.99677,132.49469,4658.4663}; + angles[]={0.029993678,2.7862158,6.2272406}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1015; + type="Land_HBarrier_5_F"; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={902.62219,132.19377,4660.5542}; + angles[]={0.02399601,2.7862158,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1016; + type="Land_HBarrier_5_F"; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={903.33307,132.59615,4662.9507}; + angles[]={0.015994642,2.7862158,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1017; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={907.77795,132.05855,4662.4673}; + angles[]={0.0080009829,2.7862158,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1018; + type="Land_HBarrier_5_F"; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={911.30151,132.47597,4665.9077}; + angles[]={0.0039967569,2.7862158,6.2751918}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1019; + type="Land_HBarrier_Big_F"; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={913.14764,131.99336,4664.5073}; + angles[]={6.2791886,2.7749805,6.2751918}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1020; + type="Land_HBarrier_5_F"; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={917.95099,131.98814,4667.6904}; + angles[]={6.2571907,2.1534214,0.0060001095}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1021; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={918.09637,132.52756,4671.4956}; + angles[]={6.2771854,2.1534214,0.0060001095}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1022; + type="Land_HBarrier_Big_F"; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={921.1756,132.11374,4672.5439}; + angles[]={6.2631893,2.1534214,0.0020132356}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1023; + type="Land_HBarrier_5_F"; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={922.77295,132.73946,4678.5942}; + angles[]={6.2591896,2.1534214,0.02999169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1024; + type="Land_HBarrier_Big_F"; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={924.40021,132.29005,4677.397}; + angles[]={6.2591896,2.1534214,0.02999169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1025; + type="Land_HBarrier_5_F"; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={927.62482,132.408,4682.251}; + angles[]={0.0019834081,2.1534214,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1026; + type="Land_HBarrier_5_F"; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={927.45117,132.8701,4685.6909}; + angles[]={0.019996032,2.1534214,0.0219975}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1027; + type="Land_HBarrier_Big_F"; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={930.84943,132.42252,4687.104}; + angles[]={0.02199479,2.1534214,6.2811723}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1028; + type="Land_HBarrier_5_F"; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={932.12726,132.71974,4692.7896}; + angles[]={0.037981652,2.1534214,6.2811723}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1029; + type="Land_HBarrier_Big_F"; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={934.07397,132.27592,4691.957}; + angles[]={0.039977662,2.1534214,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1030; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={938.09644,132.0419,4695.7788}; + angles[]={0.051954471,2.8252039,6.2611909}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1031; + type="Land_HBarrier_5_F"; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={938.66315,132.37982,4698.1387}; + angles[]={0.049958061,2.8252039,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1032; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={943.32343,131.76804,4697.4893}; + angles[]={0.043971907,2.8252039,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1033; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={946.74158,131.93022,4700.7847}; + angles[]={0.049958061,2.8252039,6.2312298}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1034; + type="Land_HBarrier_Big_F"; + }; + class Item90 + { + dataType="Object"; + class PositionInfo + { + position[]={947.60095,131.55304,4698.8901}; + angles[]={0.035987642,5.9667964,6.2312298}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1035; + type="Land_HBarrier_3_F"; + atlOffset=-1.5258789e-005; + }; + class Item91 + { + dataType="Object"; + class PositionInfo + { + position[]={992.21014,129.62624,4659.1143}; + angles[]={0.049958061,5.930233,6.2232571}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1036; + type="Land_MedicalTent_01_NATO_generic_open_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + class Item92 + { + dataType="Object"; + class PositionInfo + { + position[]={852.20276,135.86484,4636.1509}; + angles[]={0.039977662,4.3570118,6.2133012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1037; + type="Land_Razorwire_F"; + }; + class Item93 + { + dataType="Object"; + class PositionInfo + { + position[]={859.37933,135.48399,4629.7476}; + angles[]={0.0219975,4.3570118,6.1973944}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1038; + type="Land_Razorwire_F"; + }; + class Item94 + { + dataType="Object"; + class PositionInfo + { + position[]={858.11835,135.9072,4620.2129}; + angles[]={0.039980642,4.3570118,6.1874762}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1039; + type="Land_Razorwire_F"; + }; + class Item95 + { + dataType="Object"; + class PositionInfo + { + position[]={874.52496,136.49574,4590.3052}; + angles[]={6.2791886,4.3570118,6.2212658}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1040; + type="Land_Razorwire_F"; + }; + class Item96 + { + dataType="Object"; + class PositionInfo + { + position[]={873.26294,136.06641,4580.7705}; + angles[]={6.2192712,4.3570118,6.2073336}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1041; + type="Land_Razorwire_F"; + }; + class Item97 + { + dataType="Object"; + class PositionInfo + { + position[]={880.44,135.13083,4574.3672}; + angles[]={6.2272439,4.3570118,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1042; + type="Land_Razorwire_F"; + }; + class Item98 + { + dataType="Object"; + class PositionInfo + { + position[]={922.24719,133.0215,4580.3716}; + angles[]={6.2791886,5.9278083,6.2172809}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1043; + type="Land_HBarrier_3_F"; + }; + class Item99 + { + dataType="Object"; + class PositionInfo + { + position[]={867.17145,139.87553,4600.123}; + angles[]={0,1.2041844,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1044; + type="Land_LampSolar_F"; + }; + class Item100 + { + dataType="Object"; + class PositionInfo + { + position[]={1000.7253,159.74902,4663.478}; + angles[]={0,2.78864,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1045; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=28.810425; + }; + class Item101 + { + dataType="Object"; + class PositionInfo + { + position[]={992.21014,131.5938,4659.1143}; + angles[]={6.2072682,2.78864,0.27551216}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1046; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.1700592; + }; + class Item102 + { + dataType="Object"; + class PositionInfo + { + position[]={1000.6729,129.45891,4652.4224}; + angles[]={0.069887079,2.78864,6.251195}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1047; + type="Land_HBarrier_Big_F"; + }; + class Item103 + { + dataType="Object"; + class PositionInfo + { + position[]={1010.2644,127.80056,4667.9014}; + angles[]={6.2811723,4.359437,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1048; + type="Land_PressureWasher_01_F"; + atlOffset=-0.00073242188; + }; + class Item104 + { + dataType="Object"; + class PositionInfo + { + position[]={999.85266,128.59503,4655.1509}; + angles[]={0.05394781,2.78864,6.2392149}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1049; + type="Land_AirConditioner_03_F"; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={986.4043,129.20145,4657.5718}; + angles[]={0.035987642,4.359437,6.2172809}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1050; + type="Land_AirConditioner_02_F"; + }; + class Item106 + { + dataType="Object"; + class PositionInfo + { + position[]={1001.5925,129.04027,4662.5708}; + angles[]={0.033988956,5.930233,6.2412086}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1051; + type="Land_MedicalTent_01_NATO_generic_closed_F"; + class CustomAttributes + { + class Attribute0 + { + property="MedSign_Hide"; + expression="_this animateSource ['MedSign_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute1 + { + property="Door_Hide"; + expression="_this animateSource ['Door_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute2 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + class Item107 + { + dataType="Object"; + class PositionInfo + { + position[]={871.21552,134.83099,4648.8975}; + angles[]={0.0080009829,2.7862158,6.2352209}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1052; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item108 + { + dataType="Object"; + class PositionInfo + { + position[]={871.92535,135.20323,4651.2939}; + angles[]={0.041976813,2.7862158,6.2352209}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1053; + type="Land_HBarrier_Big_F"; + }; + class Item109 + { + dataType="Object"; + class PositionInfo + { + position[]={876.37238,134.51147,4650.8115}; + angles[]={0.043971907,2.7862158,6.215291}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1054; + type="Land_HBarrier_5_F"; + }; + class Item110 + { + dataType="Object"; + class PositionInfo + { + position[]={879.89508,134.59001,4654.2524}; + angles[]={0.043971907,2.7862158,6.215291}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1055; + type="Land_HBarrier_Big_F"; + }; + class Item111 + { + dataType="Object"; + class PositionInfo + { + position[]={881.52814,134.04614,4652.7246}; + angles[]={0.043971907,2.7862158,6.1954112}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1056; + type="Land_HBarrier_5_F"; + }; + class Item112 + { + dataType="Object"; + class PositionInfo + { + position[]={863.95679,135.55165,4648.3364}; + angles[]={0.016002094,2.7862158,6.2591872}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1057; + type="Land_HBarrier_Big_F"; + }; + class Item113 + { + dataType="Object"; + class PositionInfo + { + position[]={865.59009,135.0603,4646.8096}; + angles[]={0.015998369,2.7862158,6.2472029}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1058; + type="Land_HBarrier_5_F"; + }; + class Item114 + { + dataType="Object"; + class PositionInfo + { + position[]={861.8396,135.24847,4645.4175}; + angles[]={0.019996032,5.9278083,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1059; + type="Land_HBarrier_3_F"; + }; + class Item115 + { + dataType="Object"; + class PositionInfo + { + position[]={918.49683,133.21883,4578.9805}; + angles[]={0.0060001095,5.9278083,6.2152882}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1060; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item116 + { + dataType="Object"; + class PositionInfo + { + position[]={917.31769,133.81705,4576.4092}; + angles[]={0.031988446,5.9278083,6.1894608}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1061; + type="Land_HBarrier_Big_F"; + }; + class Item117 + { + dataType="Object"; + class PositionInfo + { + position[]={914.27869,133.63867,4577.4146}; + angles[]={0.031986579,5.9278083,6.2172837}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1062; + type="Land_HBarrier_3_F"; + atlOffset=-1.5258789e-005; + }; + class Item118 + { + dataType="Object"; + class PositionInfo + { + position[]={910.05902,133.98314,4575.8481}; + angles[]={0.049958061,5.9278083,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1063; + type="Land_HBarrier_5_F"; + }; + class Item119 + { + dataType="Object"; + class PositionInfo + { + position[]={908.88007,134.66125,4573.2773}; + angles[]={0.051955618,5.9278083,6.2192712}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1064; + type="Land_HBarrier_Big_F"; + }; + class Item120 + { + dataType="Object"; + class PositionInfo + { + position[]={905.84045,134.39185,4574.2827}; + angles[]={0.051955618,5.9278083,6.2192712}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1065; + type="Land_HBarrier_3_F"; + }; + class Item121 + { + dataType="Object"; + class PositionInfo + { + position[]={901.62183,134.61687,4572.7168}; + angles[]={0.04596737,5.9278083,6.2531919}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1066; + type="Land_HBarrier_5_F"; + }; + class Item122 + { + dataType="Object"; + class PositionInfo + { + position[]={900.44238,135.24001,4570.146}; + angles[]={0.04596737,5.9278083,6.2531919}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1067; + type="Land_HBarrier_Big_F"; + }; + class Item123 + { + dataType="Object"; + class PositionInfo + { + position[]={897.40277,134.8363,4571.1509}; + angles[]={0.023993526,5.9278083,6.2771854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1068; + type="Land_HBarrier_3_F"; + }; + class Item124 + { + dataType="Object"; + class PositionInfo + { + position[]={1046.2856,130.92833,4703.4761}; + angles[]={6.1382074,1.2395357,6.2212648}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1069; + type="Land_HBarrier_5_F"; + }; + class Item125 + { + dataType="Object"; + class PositionInfo + { + position[]={1048.6643,131.1382,4702.708}; + angles[]={6.1382108,1.2395357,6.221262}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1070; + type="Land_HBarrier_Big_F"; + }; + class Item126 + { + dataType="Object"; + class PositionInfo + { + position[]={1051.2668,129.90446,4695.1431}; + angles[]={6.1421304,1.2395357,6.2312312}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1071; + type="Land_HBarrier_Big_F"; + }; + class Item127 + { + dataType="Object"; + class PositionInfo + { + position[]={1048.074,130.06491,4698.2744}; + angles[]={6.1421304,1.2395357,6.2212648}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1072; + type="Land_HBarrier_5_F"; + }; + class Item128 + { + dataType="Object"; + class PositionInfo + { + position[]={1049.8621,129.25412,4693.0742}; + angles[]={6.1617851,1.2395357,6.2212648}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1073; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item129 + { + dataType="Object"; + class PositionInfo + { + position[]={1051.6519,128.60736,4687.8735}; + angles[]={6.1815362,1.2395357,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1074; + type="Land_HBarrier_5_F"; + atlOffset=-7.6293945e-006; + }; + class Item130 + { + dataType="Object"; + class PositionInfo + { + position[]={1054.0308,128.91365,4687.1045}; + angles[]={6.1973968,1.2395357,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1075; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item131 + { + dataType="Object"; + class PositionInfo + { + position[]={1056.6321,128.3862,4679.54}; + angles[]={6.2611909,1.2395357,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1076; + type="Land_HBarrier_Big_F"; + }; + class Item132 + { + dataType="Object"; + class PositionInfo + { + position[]={1053.4407,128.11987,4682.6724}; + angles[]={6.2212629,1.2395357,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1077; + type="Land_HBarrier_5_F"; + }; + class Item133 + { + dataType="Object"; + class PositionInfo + { + position[]={1055.2302,127.82042,4677.4712}; + angles[]={6.245204,1.2395357,0.025994543}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1078; + type="Land_HBarrier_5_F"; + }; + class Item134 + { + dataType="Object"; + class PositionInfo + { + position[]={1057.0176,127.77631,4672.2705}; + angles[]={6.2651849,1.2395357,0.051953323}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1079; + type="Land_HBarrier_5_F"; + atlOffset=7.6293945e-006; + }; + class Item135 + { + dataType="Object"; + class PositionInfo + { + position[]={1062.0002,128.75017,4663.937}; + angles[]={0.065902762,1.2395357,0.079830162}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1080; + type="Land_HBarrier_Big_F"; + }; + class Item136 + { + dataType="Object"; + class PositionInfo + { + position[]={1058.8074,127.92228,4667.0693}; + angles[]={0.031988446,1.2395357,0.051954471}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1081; + type="Land_HBarrier_5_F"; + }; + class Item137 + { + dataType="Object"; + class PositionInfo + { + position[]={1060.5957,128.26939,4661.8672}; + angles[]={0.051953323,1.2395357,0.093722604}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1082; + type="Land_HBarrier_5_F"; + atlOffset=-7.6293945e-006; + }; + class Item138 + { + dataType="Object"; + class PositionInfo + { + position[]={1059.2749,128.32631,4671.856}; + angles[]={0.0080009829,1.2395357,0.02599225}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1083; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; + }; + class Item139 + { + dataType="Object"; + class PositionInfo + { + position[]={1029.3872,131.46878,4621.2842}; + angles[]={0.083802827,5.9278083,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1084; + type="Land_HBarrier_5_F"; + }; + class Item140 + { + dataType="Object"; + class PositionInfo + { + position[]={1026.3342,132.20078,4618.0171}; + angles[]={0.071875811,5.9278083,0.0060001095}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1085; + type="Land_HBarrier_Big_F"; + }; + class Item141 + { + dataType="Object"; + class PositionInfo + { + position[]={1024.2322,131.62744,4619.3691}; + angles[]={0.071875811,5.9278083,6.2811723}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1086; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={1041.802,131.70088,4623.7573}; + angles[]={0.10362818,5.9278083,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1087; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item143 + { + dataType="Object"; + class PositionInfo + { + position[]={1039.6997,131.06952,4625.1108}; + angles[]={0.10955995,5.9278083,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1088; + type="Land_HBarrier_5_F"; + }; + class Item144 + { + dataType="Object"; + class PositionInfo + { + position[]={1033.8336,131.9651,4620.8003}; + angles[]={0.083802827,5.9278083,6.2811723}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1089; + type="Land_HBarrier_Big_F"; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={1034.5444,131.27092,4623.1973}; + angles[]={0.09174265,5.9278083,6.2731786}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1090; + type="Land_HBarrier_5_F"; + }; + class Item146 + { + dataType="Object"; + class PositionInfo + { + position[]={1045.0913,130.89066,4627.1108}; + angles[]={0.11942702,5.9278083,0.037981652}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1091; + type="Land_HBarrier_5_F"; + }; + class Item147 + { + dataType="Object"; + class PositionInfo + { + position[]={1057.5054,131.87279,4629.5859}; + angles[]={0.11350832,5.9278083,0.10560538}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1092; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item148 + { + dataType="Object"; + class PositionInfo + { + position[]={1055.4045,131.00562,4630.9395}; + angles[]={0.13517201,5.9278083,0.10560538}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1093; + type="Land_HBarrier_5_F"; + }; + class Item149 + { + dataType="Object"; + class PositionInfo + { + position[]={1049.5364,131.58699,4626.6284}; + angles[]={0.11942702,5.9278083,0.037981652}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1094; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item150 + { + dataType="Object"; + class PositionInfo + { + position[]={1050.2466,130.86536,4629.0244}; + angles[]={0.11942702,5.9278083,0.071875811}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1095; + type="Land_HBarrier_5_F"; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={1059.6226,131.29765,4632.5049}; + angles[]={0.13517201,5.9278083,0.10560538}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1096; + type="Land_HBarrier_3_F"; + atlOffset=-1.5258789e-005; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={1063.1936,132.51741,4629.7144}; + angles[]={0.10955995,4.3811283,0.12336899}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1097; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={1064.9192,129.54509,4656.2168}; + angles[]={0.07983166,1.2395357,0.093723245}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1098; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item154 + { + dataType="Object"; + class PositionInfo + { + position[]={1062.7019,128.82938,4656.5122}; + angles[]={0.061920606,1.2395357,0.11153574}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1099; + type="Land_HBarrier_5_F"; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={1063.759,129.64064,4653.438}; + angles[]={0,4.3811283,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1100; + type="Land_HBarrier_1_F"; + atlOffset=0.4875946; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={1064.4019,129.33066,4652.3379}; + angles[]={0.095706008,4.3811283,0.11153627}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1101; + type="Land_HBarrier_1_F"; + }; + class Item157 + { + dataType="Object"; + class PositionInfo + { + position[]={1009.1014,130.92723,4700.5806}; + angles[]={6.1954145,2.7862158,0.015994642}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1102; + type="Land_HBarrier_5_F"; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={1012.155,131.79901,4703.8477}; + angles[]={6.1696739,2.7862158,0.027990974}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1103; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={1014.2573,131.23407,4702.4941}; + angles[]={6.1696739,2.7862158,0.027990974}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1104; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={996.55042,131.01743,4698.0332}; + angles[]={6.2073302,2.7862158,6.2811723}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1105; + type="Land_HBarrier_Big_F"; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={998.78882,130.45164,4696.7534}; + angles[]={6.1973982,2.7862158,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1106; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={1004.6551,131.36403,4701.0645}; + angles[]={6.1954141,2.7862158,0.027990974}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1107; + type="Land_HBarrier_Big_F"; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={1003.9447,130.66783,4698.6675}; + angles[]={6.1874771,2.7862158,0.013999403}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1108; + type="Land_HBarrier_5_F"; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={994.43372,130.39336,4695.1143}; + angles[]={6.2212629,2.7862158,6.2691903}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1109; + type="Land_HBarrier_3_F"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={1024.8037,131.85768,4706.4087}; + angles[]={6.1558781,2.7862158,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1110; + type="Land_HBarrier_5_F"; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={1027.8594,132.75671,4709.6758}; + angles[]={6.1460514,2.7862158,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1111; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item167 + { + dataType="Object"; + class PositionInfo + { + position[]={1029.9604,132.10876,4708.3218}; + angles[]={6.1460514,2.7862158,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1112; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item168 + { + dataType="Object"; + class PositionInfo + { + position[]={1020.3588,132.33989,4706.8916}; + angles[]={6.1637554,2.7862158,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1113; + type="Land_HBarrier_Big_F"; + }; + class Item169 + { + dataType="Object"; + class PositionInfo + { + position[]={1019.6479,131.56889,4704.4956}; + angles[]={6.1558776,2.7862158,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1114; + type="Land_HBarrier_5_F"; + }; + class Item170 + { + dataType="Object"; + class PositionInfo + { + position[]={1032.3567,133.22348,4713.2261}; + angles[]={6.1480165,1.2395357,0.0019834081}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1115; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item171 + { + dataType="Object"; + class PositionInfo + { + position[]={1012.3767,135.08133,4647.2725}; + angles[]={0,1.2178415,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1116; + type="Land_MobileRadar_01_radar_F"; + }; + class Item172 + { + dataType="Object"; + class PositionInfo + { + position[]={1007.9775,130.31241,4645.6016}; + angles[]={0,1.2178439,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1117; + type="Land_MobileRadar_01_generator_F"; + atlOffset=0.058380127; + }; + class Item173 + { + dataType="Object"; + class PositionInfo + { + position[]={1017.463,134.37215,4625.4282}; + angles[]={0,5.9451499,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1118; + type="Land_Cargo_HQ_V1_F"; + }; + class Item174 + { + dataType="Object"; + class PositionInfo + { + position[]={1046.853,136.04626,4710.2808}; + angles[]={0,4.3811255,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1119; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item175 + { + dataType="Object"; + class PositionInfo + { + position[]={1038.592,136.98091,4714.313}; + angles[]={0,2.8103292,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1120; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-1.5258789e-005; + }; + class Item176 + { + dataType="Object"; + class PositionInfo + { + position[]={1067.6801,136.46126,4632.0508}; + angles[]={0,5.9519215,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1121; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item177 + { + dataType="Object"; + class PositionInfo + { + position[]={1071.738,135.82742,4640.3452}; + angles[]={0,4.3811255,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1122; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item178 + { + dataType="Object"; + class PositionInfo + { + position[]={947.6839,131.52403,4684.061}; + angles[]={0,2.7862158,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1123; + type="Land_HelipadSquare_F"; + atlOffset=0.46276855; + }; + class Item179 + { + dataType="Object"; + class PositionInfo + { + position[]={893.23401,134.8196,4569.5596}; + angles[]={0.029989703,5.9181871,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1124; + type="Land_HBarrier_5_F"; + }; + class Item180 + { + dataType="Object"; + class PositionInfo + { + position[]={892.08386,135.34048,4566.9756}; + angles[]={0.012000273,5.9278083,0.025989957}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1125; + type="Land_HBarrier_Big_F"; + }; + class Item181 + { + dataType="Object"; + class PositionInfo + { + position[]={889.28278,134.79732,4570.4946}; + angles[]={6.2491965,1.1773485,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1126; + type="Land_HBarrier_5_F"; + }; + class Item182 + { + dataType="Object"; + class PositionInfo + { + position[]={887.00616,135.27664,4570.7837}; + angles[]={6.2491965,1.1773485,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1127; + type="Land_HBarrier_Big_F"; + }; + class Item183 + { + dataType="Object"; + class PositionInfo + { + position[]={955.11401,131.09428,4699.2329}; + angles[]={0.025994543,3.42309,6.2292366}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1128; + type="Land_HBarrier_5_F"; + }; + class Item184 + { + dataType="Object"; + class PositionInfo + { + position[]={963.2359,131.28882,4699.0039}; + angles[]={0,3.4549866,6.2611909}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1129; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item185 + { + dataType="Object"; + class PositionInfo + { + position[]={960.39716,130.90073,4697.7061}; + angles[]={0.0099949092,3.42309,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1130; + type="Land_HBarrier_5_F"; + }; + class Item186 + { + dataType="Object"; + class PositionInfo + { + position[]={955.09729,131.50252,4701.3687}; + angles[]={0.031988446,3.4549866,6.245204}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1131; + type="Land_HBarrier_Big_F"; + }; + class Item187 + { + dataType="Object"; + class PositionInfo + { + position[]={971.20435,130.6685,4694.5815}; + angles[]={6.2412128,3.42309,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1132; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item188 + { + dataType="Object"; + class PositionInfo + { + position[]={979.83612,130.9857,4694.1304}; + angles[]={6.2292376,3.4549866,6.2671909}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1133; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item189 + { + dataType="Object"; + class PositionInfo + { + position[]={976.48773,130.51706,4693.0527}; + angles[]={6.2412114,3.42309,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1134; + type="Land_HBarrier_5_F"; + }; + class Item190 + { + dataType="Object"; + class PositionInfo + { + position[]={971.53558,131.17352,4696.5674}; + angles[]={6.2691903,3.4549866,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1135; + type="Land_HBarrier_Big_F"; + }; + class Item191 + { + dataType="Object"; + class PositionInfo + { + position[]={965.92126,130.76576,4696.1089}; + angles[]={0,3.42309,6.2671909}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1136; + type="Land_HBarrier_5_F"; + }; + class Item192 + { + dataType="Object"; + class PositionInfo + { + position[]={950.80634,131.3483,4699.9893}; + angles[]={0.025994543,5.9667964,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1137; + type="Land_HBarrier_3_F"; + }; + class Item193 + { + dataType="Object"; + class PositionInfo + { + position[]={1011.3755,131.96396,4613.2847}; + angles[]={0.073863581,5.2824249,0.011995304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1138; + type="Land_HBarrier_5_F"; + }; + class Item194 + { + dataType="Object"; + class PositionInfo + { + position[]={1011.2771,132.7171,4609.4775}; + angles[]={0.07983166,5.2824249,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1139; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item195 + { + dataType="Object"; + class PositionInfo + { + position[]={1008.2122,132.29308,4608.3916}; + angles[]={0.085790239,5.2824249,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1140; + type="Land_HBarrier_5_F"; + }; + class Item196 + { + dataType="Object"; + class PositionInfo + { + position[]={1006.6905,133.28967,4602.3203}; + angles[]={0.097688988,5.2824249,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1141; + type="Land_HBarrier_Big_F"; + }; + class Item197 + { + dataType="Object"; + class PositionInfo + { + position[]={1005.0488,132.67851,4603.4976}; + angles[]={0.097688988,5.2824249,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1142; + type="Land_HBarrier_5_F"; + }; + class Item198 + { + dataType="Object"; + class PositionInfo + { + position[]={1001.8854,133.06609,4598.603}; + angles[]={0.10362876,5.2824249,0.031990308}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1143; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item199 + { + dataType="Object"; + class PositionInfo + { + position[]={1002.1022,133.90005,4595.1655}; + angles[]={0.10362876,5.2824249,0.031990308}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1144; + type="Land_HBarrier_Big_F"; + }; + class Item200 + { + dataType="Object"; + class PositionInfo + { + position[]={998.72168,133.44814,4593.7104}; + angles[]={0.10362818,5.2824249,0.051952176}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1145; + type="Land_HBarrier_5_F"; + }; + class Item201 + { + dataType="Object"; + class PositionInfo + { + position[]={997.5152,134.42699,4588.0088}; + angles[]={0.095706008,5.2824249,0.05394781}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1146; + type="Land_HBarrier_Big_F"; + }; + class Item202 + { + dataType="Object"; + class PositionInfo + { + position[]={995.55981,133.77309,4588.8169}; + angles[]={0.093724519,5.2824249,0.055941612}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1147; + type="Land_HBarrier_5_F"; + }; + class Item203 + { + dataType="Object"; + class PositionInfo + { + position[]={991.58502,133.86615,4584.9453}; + angles[]={0.085788146,5.9542074,0.069887936}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1148; + type="Land_HBarrier_5_F"; + }; + class Item204 + { + dataType="Object"; + class PositionInfo + { + position[]={991.04791,134.4906,4582.5786}; + angles[]={0.077842705,5.9542074,0.077842705}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1149; + type="Land_HBarrier_Big_F"; + }; + class Item205 + { + dataType="Object"; + class PositionInfo + { + position[]={986.37988,133.621,4583.168}; + angles[]={0.067894675,5.9542074,0.083802827}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1150; + type="Land_HBarrier_5_F"; + }; + class Item206 + { + dataType="Object"; + class PositionInfo + { + position[]={983.00311,134.04179,4579.8306}; + angles[]={0.067898184,5.9542074,0.079828672}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1151; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item207 + { + dataType="Object"; + class PositionInfo + { + position[]={982.12018,133.45537,4581.7144}; + angles[]={0.053948916,2.8126144,0.079828672}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1152; + type="Land_HBarrier_3_F"; + }; + class Item208 + { + dataType="Object"; + class PositionInfo + { + position[]={974.61267,132.90802,4581.2773}; + angles[]={0.037981652,0.26890814,0.035982672}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1153; + type="Land_HBarrier_5_F"; + }; + class Item209 + { + dataType="Object"; + class PositionInfo + { + position[]={966.48822,133.0636,4581.4033}; + angles[]={0.0099949092,0.30080473,0.031984717}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1154; + type="Land_HBarrier_Big_F"; + }; + class Item210 + { + dataType="Object"; + class PositionInfo + { + position[]={969.31042,132.64243,4582.7368}; + angles[]={0.023993526,0.26890814,0.017997233}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1155; + type="Land_HBarrier_5_F"; + }; + class Item211 + { + dataType="Object"; + class PositionInfo + { + position[]={974.65533,133.45543,4579.1406}; + angles[]={0.037981652,0.30080473,0.049958061}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1156; + type="Land_HBarrier_Big_F"; + }; + class Item212 + { + dataType="Object"; + class PositionInfo + { + position[]={958.46429,132.38576,4585.7246}; + angles[]={6.2791886,0.26890814,0.017997233}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1157; + type="Land_HBarrier_5_F"; + }; + class Item213 + { + dataType="Object"; + class PositionInfo + { + position[]={949.82739,132.73563,4586.0679}; + angles[]={6.269186,0.30080473,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1158; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item214 + { + dataType="Object"; + class PositionInfo + { + position[]={953.16199,132.32191,4587.1875}; + angles[]={6.2791886,0.26890814,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1159; + type="Land_HBarrier_5_F"; + }; + class Item215 + { + dataType="Object"; + class PositionInfo + { + position[]={958.15729,132.84175,4583.7349}; + angles[]={6.2791886,0.30080473,0.017997233}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1160; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item216 + { + dataType="Object"; + class PositionInfo + { + position[]={963.76703,132.49319,4584.2651}; + angles[]={0.010000871,0.26890814,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1161; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item217 + { + dataType="Object"; + class PositionInfo + { + position[]={978.92871,133.28152,4580.5747}; + angles[]={0.037981652,2.8126144,0.069887079}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1162; + type="Land_HBarrier_3_F"; + }; + class Item218 + { + dataType="Object"; + class PositionInfo + { + position[]={985.88312,130.28285,4691.6323}; + angles[]={6.2152882,2.7862158,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1163; + type="Land_HBarrier_3_F"; + }; + class Item219 + { + dataType="Object"; + class PositionInfo + { + position[]={980.89374,130.41469,4691.7251}; + angles[]={6.2292366,3.4257517,6.2531919}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1164; + type="Land_HBarrier_3_F"; + }; + class Item220 + { + dataType="Object"; + class PositionInfo + { + position[]={983.37018,130.21597,4691.2031}; + angles[]={6.2292366,3.2012405,6.2531919}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1165; + type="Land_HBarrier_1_F"; + }; + class Item221 + { + dataType="Object"; + class PositionInfo + { + position[]={883.64355,135.69316,4578.7271}; + angles[]={6.2332263,4.3317766,6.2192731}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1166; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item222 + { + dataType="Object"; + class PositionInfo + { + position[]={886.98688,134.93272,4575.7568}; + angles[]={6.2332273,4.3317766,6.2551947}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1167; + type="Land_HBarrier_5_F"; + }; + class Item223 + { + dataType="Object"; + class PositionInfo + { + position[]={884.94397,135.24667,4580.8633}; + angles[]={6.2352238,4.3317766,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1168; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item224 + { + dataType="Object"; + class PositionInfo + { + position[]={882.90009,135.65958,4585.9697}; + angles[]={6.239212,4.3317766,6.1993818}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1169; + type="Land_HBarrier_5_F"; + }; + class Item225 + { + dataType="Object"; + class PositionInfo + { + position[]={880.48553,136.36046,4586.6191}; + angles[]={6.239212,4.3317766,6.1993818}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1170; + type="Land_HBarrier_Big_F"; + }; + class Item226 + { + dataType="Object"; + class PositionInfo + { + position[]={877.51508,136.77435,4594.0479}; + angles[]={6.2731848,4.3317766,6.209322}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1171; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item227 + { + dataType="Object"; + class PositionInfo + { + position[]={880.85614,136.0125,4591.0757}; + angles[]={6.2731786,4.3317766,6.1914463}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1172; + type="Land_HBarrier_5_F"; + }; + class Item228 + { + dataType="Object"; + class PositionInfo + { + position[]={867.85791,135.56027,4619.416}; + angles[]={0.073864385,4.3979897,6.2053428}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1173; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item229 + { + dataType="Object"; + class PositionInfo + { + position[]={864.97534,135.49922,4627.6787}; + angles[]={0.016002094,4.3979897,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1174; + type="Land_HBarrier_Big_F"; + }; + class Item230 + { + dataType="Object"; + class PositionInfo + { + position[]={867.58844,134.84529,4626.1333}; + angles[]={0.015998369,4.3979897,6.2033539}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1175; + type="Land_HBarrier_5_F"; + }; + class Item231 + { + dataType="Object"; + class PositionInfo + { + position[]={865.88757,134.93478,4631.3643}; + angles[]={6.2771854,4.3979897,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1176; + type="Land_HBarrier_5_F"; + }; + class Item232 + { + dataType="Object"; + class PositionInfo + { + position[]={864.18817,135.077,4636.5942}; + angles[]={6.2711902,4.3979897,6.2372169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1177; + type="Land_HBarrier_5_F"; + }; + class Item233 + { + dataType="Object"; + class PositionInfo + { + position[]={859.87213,135.74391,4643.3696}; + angles[]={0.012005239,4.3979897,6.2491984}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1178; + type="Land_HBarrier_Big_F"; + }; + class Item234 + { + dataType="Object"; + class PositionInfo + { + position[]={862.48627,135.17424,4641.8247}; + angles[]={0.012000273,4.3979897,6.2372169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1179; + type="Land_HBarrier_5_F"; + }; + class Item235 + { + dataType="Object"; + class PositionInfo + { + position[]={862.46185,135.65002,4635.4043}; + angles[]={0.0060001095,4.3979897,6.2192712}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1180; + type="Land_HBarrier_Big_F"; + }; + class Item236 + { + dataType="Object"; + class PositionInfo + { + position[]={870.38,146.99213,4640.979}; + angles[]={0,4.3570051,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1181; + type="Land_Cargo_Tower_V1_F"; + }; + class Item237 + { + dataType="Object"; + class PositionInfo + { + position[]={892.763,146.93771,4577.4131}; + angles[]={0,1.1974355,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1182; + type="Land_Cargo_Tower_V1_F"; + }; + class Item238 + { + dataType="Object"; + class PositionInfo + { + position[]={996.021,141.7713,4687.73}; + angles[]={0,4.3570051,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1183; + type="Land_Cargo_Tower_V1_F"; + }; + class Item239 + { + dataType="Object"; + class PositionInfo + { + position[]={1029.9283,129.09756,4688.8613}; + angles[]={0,3.5603781,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1184; + type="Land_HelipadSquare_F"; + atlOffset=0.5135498; + }; + class Item240 + { + dataType="Object"; + class PositionInfo + { + position[]={901.86566,132.25812,4646.1157}; + angles[]={0,3.5603781,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1185; + type="Land_HelipadSquare_F"; + atlOffset=0.4744873; + }; + class Item241 + { + dataType="Object"; + class PositionInfo + { + position[]={921.49078,132.7966,4595.0039}; + angles[]={0,5.131175,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1186; + type="Land_HelipadSquare_F"; + atlOffset=0.4243927; + }; + class Item242 + { + dataType="Object"; + class PositionInfo + { + position[]={942.40381,143.13745,4631.5542}; + angles[]={0.015998369,1.1991304,0.01799392}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1187; + type="Land_LampAirport_F"; + }; + class Item243 + { + dataType="Object"; + class PositionInfo + { + position[]={899.50677,144.91893,4616.6899}; + angles[]={0.055941612,4.340723,6.2132974}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1188; + type="Land_LampAirport_F"; + }; + class Item244 + { + dataType="Object"; + class PositionInfo + { + position[]={917.49121,132.4529,4629.8291}; + angles[]={0.017997233,4.340723,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1189; + type="Land_MedicalTent_01_NATO_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + class Item245 + { + dataType="Object"; + class PositionInfo + { + position[]={917.49121,134.55528,4629.8291}; + angles[]={5.9652162,4.340723,6.1195006}; + }; + side="Empty"; + class Attributes + { + }; + id=1190; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.26722717; + }; + class Item246 + { + dataType="Object"; + class PositionInfo + { + position[]={904.797,133.15245,4624.8809}; + angles[]={0.037981652,4.340723,6.2172809}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1191; + type="Land_MedicalTent_01_NATO_generic_open_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + class Item247 + { + dataType="Object"; + class PositionInfo + { + position[]={904.797,135.26018,4624.8809}; + angles[]={5.9831305,4.340723,6.0850382}; + }; + side="Empty"; + class Attributes + { + }; + id=1192; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.27192688; + }; + class Item248 + { + dataType="Object"; + class PositionInfo + { + position[]={899.25726,132.90315,4618.8491}; + angles[]={0.055941612,3.5553255,6.2132974}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1193; + type="Land_AirConditioner_04_F"; + }; + class Item249 + { + dataType="Object"; + class PositionInfo + { + position[]={944.03302,131.62859,4626.5649}; + angles[]={0.012000273,2.769927,0.017997233}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1194; + type="StorageBladder_01_fuel_forest_F"; + atlOffset=-1.5258789e-005; + }; + class Item250 + { + dataType="Object"; + class PositionInfo + { + position[]={933.74792,131.72404,4622.3081}; + angles[]={0.0219975,2.769927,6.2671833}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1195; + type="StorageBladder_01_fuel_forest_F"; + }; + class Item251 + { + dataType="Object"; + class PositionInfo + { + position[]={936.44159,131.94839,4629.292}; + angles[]={0.013999403,2.78864,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1196; + type="Land_HBarrier_Big_F"; + }; + class Item252 + { + dataType="Object"; + class PositionInfo + { + position[]={928.46582,132.12018,4626.3545}; + angles[]={0.017997233,2.78864,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1197; + type="Land_HBarrier_Big_F"; + }; + class Item253 + { + dataType="Object"; + class PositionInfo + { + position[]={920.95978,132.32686,4623.5889}; + angles[]={0.033985451,2.78864,6.2611909}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1198; + type="Land_HBarrier_Big_F"; + }; + class Item254 + { + dataType="Object"; + class PositionInfo + { + position[]={905.47589,133.24571,4617.8843}; + angles[]={0.053948916,2.78864,6.2232571}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1199; + type="Land_HBarrier_Big_F"; + }; + class Item255 + { + dataType="Object"; + class PositionInfo + { + position[]={913.33551,132.67848,4620.7803}; + angles[]={0.035982672,2.78864,6.2372179}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1200; + type="Land_HBarrier_Big_F"; + }; + class Item256 + { + dataType="Object"; + class PositionInfo + { + position[]={987.94086,141.52882,4647.5664}; + angles[]={0.069883667,4.345777,6.2252526}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1201; + type="Land_LampAirport_F"; + }; + class Item257 + { + dataType="Object"; + class PositionInfo + { + position[]={1054.3052,139.3598,4673.7456}; + angles[]={6.2651882,4.2946596,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1202; + type="Land_LampAirport_F"; + }; + class Item258 + { + dataType="Object"; + class PositionInfo + { + position[]={864.22363,139.38921,4608.498}; + angles[]={0,4.345777,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1203; + type="Land_LampSolar_F"; + }; + class Item259 + { + dataType="Object"; + class PositionInfo + { + position[]={871.86432,136.99088,4598.7114}; + angles[]={0.039977662,3.0388775,6.2292376}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1204; + type="Land_HBarrier_Big_F"; + }; + class Item260 + { + dataType="Object"; + class PositionInfo + { + position[]={866.73883,136.18973,4612.4102}; + angles[]={0.083802827,2.6096668,6.2212658}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1205; + type="Land_HBarrier_Big_F"; + }; + class Item261 + { + dataType="Object"; + class PositionInfo + { + position[]={880.71503,140.12596,4598.0791}; + angles[]={0,1.2041899,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1206; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item262 + { + dataType="Object"; + class PositionInfo + { + position[]={872.37097,138.91531,4619.894}; + angles[]={0,1.2041899,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1207; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-1.5258789e-005; + }; + class Item263 + { + dataType="Object"; + class PositionInfo + { + position[]={981.33307,132.0399,4596.0757}; + angles[]={0,5.9149809,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1208; + type="Land_HelipadSquare_F"; + atlOffset=0.45439148; + }; + class Item264 + { + dataType="Object"; + class PositionInfo + { + position[]={1045.8213,128.01175,4647.1831}; + angles[]={0,5.114964,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1209; + type="Land_HelipadSquare_F"; + atlOffset=0.45397949; + }; + class Item265 + { + dataType="Marker"; + position[]={10688.864,86.584534,5004.3037}; + name="seaAttackSpawn_1"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1210; + atlOffset=33.583786; + }; + class Item266 + { + dataType="Marker"; + position[]={10683.529,150.57507,2139.2688}; + name="seaAttackSpawn_2"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1211; + atlOffset=33.583809; + }; + class Item267 + { + dataType="Marker"; + position[]={8998.6348,96.559372,-224.72046}; + name="seaAttackSpawn_3"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1212; + atlOffset=33.583797; + }; + class Item268 + { + dataType="Marker"; + position[]={5909.6606,190.36778,-321.87012}; + name="seaAttackSpawn_4"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1213; + atlOffset=33.583801; + }; + class Item269 + { + dataType="Marker"; + position[]={2075.4426,211.8815,-332.66479}; + name="seaAttackSpawn_5"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1214; + atlOffset=33.583801; + }; + class Item270 + { + dataType="Marker"; + position[]={-300.69156,217.39087,1448.4241}; + name="seaAttackSpawn_6"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1215; + atlOffset=33.583801; + }; + class Item271 + { + dataType="Marker"; + position[]={-515.336,183.31531,4880.666}; + name="seaAttackSpawn_7"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1216; + atlOffset=33.583847; + }; + class Item272 + { + dataType="Marker"; + position[]={-588.20789,182.28105,8076.2329}; + name="seaAttackSpawn_8"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1217; + atlOffset=33.583801; + }; + class Item273 + { + dataType="Marker"; + position[]={2075.4431,189.1348,10645.318}; + name="seaAttackSpawn_9"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1218; + atlOffset=33.583801; + }; + class Item274 + { + dataType="Marker"; + position[]={4916.0039,187.65778,10612.936}; + name="seaAttackSpawn_10"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1219; + atlOffset=33.583801; + }; + class Item275 + { + dataType="Marker"; + position[]={8145.3857,200.84288,10548.168}; + name="seaAttackSpawn_11"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1220; + atlOffset=33.583801; + }; + class Item276 + { + dataType="Marker"; + position[]={10586.324,111.18447,8194.9717}; + name="seaAttackSpawn_12"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=1221; + atlOffset=33.583801; + }; + class Item277 + { + dataType="Marker"; + position[]={2399.3965,179.49533,-123.15674}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=1222; + atlOffset=2.5770569; + }; + class Item278 + { + dataType="Marker"; + position[]={377.32193,156.50502,10260.37}; + name="NATO_carrier"; + type="flag_UN"; + id=1223; + }; + class Item279 + { + dataType="Marker"; + position[]={10182.242,144.28058,10193.891}; + name="respawn_east"; + type="flag_Viper"; + id=1233; + atlOffset=5.4211731; + }; + class Item280 + { + dataType="Group"; + side="East"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={10219.797,140.35477,10225.055}; + }; + side="East"; + flags=7; + class Attributes + { + init="groupPlayersCSAT = group this;this setVariable [""pvp"",true]"; + name="pvp_red_1"; + isPlayable=1; + }; + id=1235; + type="O_T_Recon_TL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={10216.047,140.3756,10223.305}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]"; + name="pvp_red_2"; + isPlayable=1; + }; + id=1236; + type="O_T_Recon_Medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={10219.547,140.25609,10220.055}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]"; + name="pvp_red_4"; + isPlayable=1; + }; + id=1237; + type="O_T_Recon_M_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={10225.047,140.16599,10218.305}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]"; + name="pvp_red_6"; + isPlayable=1; + }; + id=1238; + type="O_T_Recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={10223.797,140.27115,10222.555}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]"; + name="pvp_red_3"; + isPlayable=1; + }; + id=1239; + type="O_T_Recon_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={10215.547,140.2372,10218.055}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]"; + name="pvp_red_5"; + isPlayable=1; + }; + id=1240; + type="O_T_Recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1234; + }; + class Item281 + { + dataType="Object"; + class PositionInfo + { + position[]={10208.167,144.36122,10219.104}; + angles[]={6.2471995,0,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=1241; + type="Flag_Viper_F"; + atlOffset=3.0517578e-005; + }; + class Item282 + { + dataType="Object"; + class PositionInfo + { + position[]={10233.016,35.958992,15.575212}; + }; + side="Empty"; + flags=5; + class Attributes + { + init="if (!isMultiplayer) then {deleteVehicle this};"; + }; + id=1242; + type="Flag_NATO_F"; + }; + class Item283 + { + dataType="Marker"; + position[]={10203.88,32.664989,40.245483}; + name="respawn_west"; + type="flag_CTRG"; + id=1243; + atlOffset=4.0481567; + }; + class Item284 + { + dataType="Group"; + side="West"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={10223.138,31.646664,15.590837}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="groupPlayersNATO = group this; this setVariable [""pvp"",true]"; + name="pvp_blue_1"; + isPlayable=1; + }; + id=1245; + type="B_recon_TL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={10226.888,31.994093,11.340837}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setVariable [""pvp"",true]"; + name="pvp_blue_4"; + isPlayable=1; + }; + id=1246; + type="B_recon_M_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={10219.388,31.56432,13.590837}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]"; + name="pvp_blue_2"; + isPlayable=1; + }; + id=1247; + type="B_recon_medic_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={10216.388,31.521395,10.340837}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]"; + name="pvp_blue_3"; + isPlayable=1; + }; + id=1248; + type="B_recon_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={10217.388,31.657965,7.090837}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]"; + name="pvp_blue_5"; + isPlayable=1; + }; + id=1249; + type="B_recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={10213.638,31.425621,6.590837}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]"; + name="pvp_blue_6"; + isPlayable=1; + }; + id=1250; + type="B_recon_LAT_F"; + atlOffset=3.8146973e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=1244; + }; + class Item285 + { + dataType="Object"; + class PositionInfo + { + position[]={3000.0654,158.00383,8540.3203}; + angles[]={0,4.4022145,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1253; + type="Land_Cargo_Tower_V3_F"; + }; + class Item286 + { + dataType="Object"; + class PositionInfo + { + position[]={3022.0212,147.79773,8463.9512}; + angles[]={0,1.1275489,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1254; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item287 + { + dataType="Logic"; + class PositionInfo + { + position[]={3023.4246,142.89693,8464.1123}; + angles[]={6.2571907,0,0}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1255; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item288 + { + dataType="Logic"; + class PositionInfo + { + position[]={2999.2656,145.36809,8516.2842}; + angles[]={6.2571907,0,0}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1256; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.7195435; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item289 + { + dataType="Object"; + class PositionInfo + { + position[]={2995.6438,148.63341,8514.8379}; + angles[]={0,1.1275489,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1257; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item290 + { + dataType="Logic"; + class PositionInfo + { + position[]={3065.1804,144.11166,8397.833}; + angles[]={0.0080009829,5.6464229,0.023993526}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1258; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item291 + { + dataType="Object"; + class PositionInfo + { + position[]={3064.1479,149.00301,8396.8691}; + angles[]={0,0.49078631,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1259; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item292 + { + dataType="Logic"; + class PositionInfo + { + position[]={3169.3584,144.36525,8412.1953}; + angles[]={0.061919641,4.2255907,6.2531939}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1260; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.052124023; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item293 + { + dataType="Object"; + class PositionInfo + { + position[]={3170.1572,149.26672,8411.0303}; + angles[]={0,5.3531399,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1261; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item294 + { + dataType="Logic"; + class PositionInfo + { + position[]={3155.8433,141.41272,8527.7363}; + angles[]={6.2232561,2.7830477,0.02199479}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1262; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item295 + { + dataType="Object"; + class PositionInfo + { + position[]={3157.1008,146.3821,8528.3799}; + angles[]={0,3.9105966,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1263; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item296 + { + dataType="Logic"; + class PositionInfo + { + position[]={3135.9397,143.92957,8427.5283}; + angles[]={0.061919641,4.2255907,6.2531939}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1264; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.052124023; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item297 + { + dataType="Logic"; + class PositionInfo + { + position[]={3131.7659,143.49745,8454.1133}; + angles[]={0.061919641,4.2255907,6.2531939}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1265; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.052124023; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item298 + { + dataType="Object"; + class PositionInfo + { + position[]={3132.207,144.14699,8420.8506}; + angles[]={0.043964844,4.509407,0.0020071287}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1266; + type="Land_HelipadSquare_F"; + }; + class Item299 + { + dataType="Object"; + class PositionInfo + { + position[]={3127.1816,143.77797,8445.792}; + angles[]={0.0060001095,4.509407,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1267; + type="Land_HelipadSquare_F"; + }; + class Item300 + { + dataType="Object"; + class PositionInfo + { + position[]={3122.3022,143.84167,8469.8135}; + angles[]={0.0039967569,4.509407,6.2531919}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1268; + type="Land_HelipadSquare_F"; + }; + class Item301 + { + dataType="Marker"; + position[]={8559.5391,111.54,7591.9707}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=101.91895; + b=261.06348; + id=1269; + atlOffset=0.010665894; + }; + class Item302 + { + dataType="Marker"; + position[]={8577.7803,109.53027,6442.6914}; + name="detectPlayer_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=101.91895; + b=261.06348; + id=1270; + atlOffset=-2.0097275; + }; + class Item303 + { + dataType="Logic"; + class PositionInfo + { + position[]={8360.0674,111.54,6944.2285}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1271; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item304 + { + dataType="Logic"; + class PositionInfo + { + position[]={8360.0713,111.54,6963.6392}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1272; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item305 + { + dataType="Logic"; + class PositionInfo + { + position[]={8359.8857,111.54,6924.4375}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1273; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item306 + { + dataType="Logic"; + class PositionInfo + { + position[]={8359.625,111.54,6904.4629}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1274; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item307 + { + dataType="Logic"; + class PositionInfo + { + position[]={8358.8359,111.54,6883.3467}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1275; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item308 + { + dataType="Object"; + class PositionInfo + { + position[]={8358.8252,111.54,6884.5}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1276; + type="Land_HelipadSquare_F"; + }; + class Item309 + { + dataType="Object"; + class PositionInfo + { + position[]={8359.25,111.54,6904.938}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1277; + type="Land_HelipadSquare_F"; + }; + class Item310 + { + dataType="Object"; + class PositionInfo + { + position[]={8359.25,111.54,6925.1089}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1278; + type="Land_HelipadSquare_F"; + }; + class Item311 + { + dataType="Object"; + class PositionInfo + { + position[]={8359.25,111.54,6944.9922}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1279; + type="Land_HelipadSquare_F"; + }; + class Item312 + { + dataType="Object"; + class PositionInfo + { + position[]={8359.25,111.54,6965.0601}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1280; + type="Land_HelipadSquare_F"; + }; + class Item313 + { + dataType="Object"; + class PositionInfo + { + position[]={8408.7813,124.42621,6984.8345}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1287; + type="Land_Cargo_Tower_V3_F"; + }; + class Item314 + { + dataType="Object"; + class PositionInfo + { + position[]={8410.1934,116.445,7020.4199}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1288; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item315 + { + dataType="Object"; + class PositionInfo + { + position[]={8392.2803,124.42621,6780.4277}; + angles[]={0,1.596018,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1289; + type="Land_Cargo_Tower_V3_F"; + }; + class Item316 + { + dataType="Object"; + class PositionInfo + { + position[]={8308.7793,124.42621,7184.833}; + angles[]={0,3.1611209,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1290; + type="Land_Cargo_Tower_V3_F"; + }; + class Item317 + { + dataType="Logic"; + class PositionInfo + { + position[]={8305.126,111.54,7186.71}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1291; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item318 + { + dataType="Object"; + class PositionInfo + { + position[]={8303.7607,116.445,7056.3008}; + angles[]={0,1.5845745,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1292; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item319 + { + dataType="Object"; + class PositionInfo + { + position[]={8349.957,116.445,6865.0713}; + angles[]={0,1.5448161,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1293; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item320 + { + dataType="Object"; + class PositionInfo + { + position[]={8463.1895,116.445,6534.9175}; + angles[]={0,0.85195392,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1294; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item321 + { + dataType="Logic"; + class PositionInfo + { + position[]={8464.2461,116.44381,6535.8042}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1295; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.5998383; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item322 + { + dataType="Logic"; + class PositionInfo + { + position[]={8530.6953,118.56761,6536.6152}; + angles[]={0,4.6772447,0}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1296; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.3627243; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item323 + { + dataType="Object"; + class PositionInfo + { + position[]={8531.6182,116.445,6535.5903}; + angles[]={0,5.5291986,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1297; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item324 + { + dataType="Logic"; + class PositionInfo + { + position[]={8376.5527,116.47065,7220.6558}; + angles[]={0,2.2563751,0}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1298; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.5995636; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item325 + { + dataType="Object"; + class PositionInfo + { + position[]={8376.5352,116.47183,7222.0352}; + angles[]={0,3.1083291,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1299; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=0.026832581; + }; + class Item326 + { + dataType="Object"; + class PositionInfo + { + position[]={8652.9834,114.52174,7228.6318}; + angles[]={0,4.7214727,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1300; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item327 + { + dataType="Object"; + class PositionInfo + { + position[]={8649.7568,116.445,6914.4932}; + angles[]={0,4.720696,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1301; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item328 + { + dataType="Object"; + class PositionInfo + { + position[]={8645.541,116.42362,6614.5283}; + angles[]={0,4.7126322,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1302; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item329 + { + dataType="Object"; + class PositionInfo + { + position[]={8263.7051,222.955,8816.8516}; + angles[]={0,1.4200934,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1303; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item330 + { + dataType="Logic"; + class PositionInfo + { + position[]={8265.0557,226.9675,8817.1279}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1304; + type="ModuleHideTerrainObjects_F"; + atlOffset=5.5194855; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item331 + { + dataType="Object"; + class PositionInfo + { + position[]={8283.1445,222.95551,8840.249}; + angles[]={0,2.9755926,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1305; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item332 + { + dataType="Logic"; + class PositionInfo + { + position[]={8283.4473,223.76091,8838.8818}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1306; + type="ModuleHideTerrainObjects_F"; + atlOffset=2.3108521; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item333 + { + dataType="Object"; + class PositionInfo + { + position[]={8320.1406,223.04408,8810.7432}; + angles[]={0,6.1422987,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1307; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item334 + { + dataType="Logic"; + class PositionInfo + { + position[]={8320.1182,223.83549,8812.5449}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1308; + type="ModuleHideTerrainObjects_F"; + atlOffset=2.5838623; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item335 + { + dataType="Logic"; + class PositionInfo + { + position[]={8268.5117,223.56949,8807.8838}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1309; + type="ModuleHideTerrainObjects_F"; + atlOffset=5.5194855; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item336 + { + dataType="Object"; + class PositionInfo + { + position[]={6861.2495,105.54453,7145.1074}; + angles[]={0,6.0662537,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1310; + type="Land_HBarrier_5_F"; + atlOffset=0.0090103149; + }; + class Item337 + { + dataType="Object"; + class PositionInfo + { + position[]={6855.7837,105.53296,7143.7402}; + angles[]={6.2771854,6.0662537,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1311; + type="Land_HBarrier_5_F"; + }; + class Item338 + { + dataType="Object"; + class PositionInfo + { + position[]={6850.2876,105.47377,7142.4351}; + angles[]={6.2711854,6.0662537,0.013995145}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1312; + type="Land_HBarrier_5_F"; + }; + class Item339 + { + dataType="Object"; + class PositionInfo + { + position[]={6844.7271,105.30093,7141.1548}; + angles[]={6.2651882,6.0662537,0.037981652}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1313; + type="Land_HBarrier_5_F"; + atlOffset=-7.6293945e-006; + }; + class Item340 + { + dataType="Object"; + class PositionInfo + { + position[]={6839.2671,105.03333,7139.7881}; + angles[]={6.2611909,6.0662537,0.057934806}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1314; + type="Land_HBarrier_5_F"; + }; + class Item341 + { + dataType="Object"; + class PositionInfo + { + position[]={6833.8018,104.68104,7138.4795}; + angles[]={6.2631893,6.0662537,0.065904573}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1315; + type="Land_HBarrier_5_F"; + atlOffset=7.6293945e-006; + }; + class Item342 + { + dataType="Object"; + class PositionInfo + { + position[]={6828.3345,104.29799,7137.1948}; + angles[]={6.269186,6.0662537,0.07386519}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1316; + type="Land_HBarrier_5_F"; + }; + class Item343 + { + dataType="Object"; + class PositionInfo + { + position[]={6822.9092,103.90366,7136.0073}; + angles[]={6.2811723,6.0662537,0.075853623}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1317; + type="Land_HBarrier_5_F"; + atlOffset=7.6293945e-006; + }; + class Item344 + { + dataType="Object"; + class PositionInfo + { + position[]={6818.9209,103.59001,7137.2266}; + angles[]={6.2811723,1.3538646,0.087772869}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1318; + type="Land_HBarrier_5_F"; + atlOffset=7.6293945e-006; + }; + class Item345 + { + dataType="Object"; + class PositionInfo + { + position[]={6817.7827,103.52639,7142.6582}; + angles[]={6.2731848,1.3538646,0.085788846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1319; + type="Land_HBarrier_5_F"; + atlOffset=-7.6293945e-006; + }; + class Item346 + { + dataType="Object"; + class PositionInfo + { + position[]={6816.5854,103.52135,7148.1025}; + angles[]={6.2591896,1.3538646,0.085788846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1320; + type="Land_HBarrier_5_F"; + }; + class Item347 + { + dataType="Object"; + class PositionInfo + { + position[]={6811.8647,103.93224,7169.957}; + angles[]={6.251195,1.3538646,0.065904573}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1321; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item348 + { + dataType="Object"; + class PositionInfo + { + position[]={6810.7007,103.9759,7175.4541}; + angles[]={6.2631893,1.3538646,0.065904573}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1322; + type="Land_HBarrier_5_F"; + atlOffset=6.1035156e-005; + }; + class Item349 + { + dataType="Object"; + class PositionInfo + { + position[]={6850.3027,105.29065,7188.5063}; + angles[]={0.0039967569,6.0662537,6.2671909}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1323; + type="Land_HBarrier_5_F"; + atlOffset=0.0090026855; + }; + class Item350 + { + dataType="Object"; + class PositionInfo + { + position[]={6844.8364,105.34264,7187.1392}; + angles[]={0.0039967569,6.0662537,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1324; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item351 + { + dataType="Object"; + class PositionInfo + { + position[]={6839.3408,105.35931,7185.834}; + angles[]={0.0039967569,6.0662537,0.011995304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1325; + type="Land_HBarrier_5_F"; + atlOffset=3.8146973e-005; + }; + class Item352 + { + dataType="Object"; + class PositionInfo + { + position[]={6833.7798,105.27551,7184.5537}; + angles[]={6.2811723,6.0662537,0.027993103}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1326; + type="Land_HBarrier_5_F"; + atlOffset=5.3405762e-005; + }; + class Item353 + { + dataType="Object"; + class PositionInfo + { + position[]={6828.3203,105.08912,7183.187}; + angles[]={6.2771854,6.0662537,0.041975394}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1327; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item354 + { + dataType="Object"; + class PositionInfo + { + position[]={6817.3872,104.5009,7180.5938}; + angles[]={6.2711902,6.0662537,0.059928458}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1328; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item355 + { + dataType="Object"; + class PositionInfo + { + position[]={6811.9624,104.13818,7179.4063}; + angles[]={6.2631893,6.0662537,0.065904573}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1329; + type="Land_HBarrier_5_F"; + atlOffset=3.8146973e-005; + }; + class Item356 + { + dataType="Object"; + class PositionInfo + { + position[]={6872.333,104.61404,7193.7695}; + angles[]={0.039977662,6.0662537,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1330; + type="Land_HBarrier_5_F"; + atlOffset=0.008972168; + }; + class Item357 + { + dataType="Object"; + class PositionInfo + { + position[]={6866.8667,104.81364,7192.4028}; + angles[]={0.02999169,6.0662537,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1331; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item358 + { + dataType="Object"; + class PositionInfo + { + position[]={6861.3706,105.00075,7191.0977}; + angles[]={0.0219975,6.0662537,6.2571907}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1332; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item359 + { + dataType="Object"; + class PositionInfo + { + position[]={6855.8096,105.16334,7189.8174}; + angles[]={0.011995304,6.0662537,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1333; + type="Land_HBarrier_5_F"; + atlOffset=6.8664551e-005; + }; + class Item360 + { + dataType="Object"; + class PositionInfo + { + position[]={6883.2251,105.27325,7152.5137}; + angles[]={0.035984326,1.3538646,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1334; + type="Land_HBarrier_5_F"; + atlOffset=-7.6293945e-006; + }; + class Item361 + { + dataType="Object"; + class PositionInfo + { + position[]={6882.0869,105.10587,7157.9453}; + angles[]={0.041976813,1.3538646,6.2491965}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1335; + type="Land_HBarrier_5_F"; + atlOffset=2.2888184e-005; + }; + class Item362 + { + dataType="Object"; + class PositionInfo + { + position[]={6880.8892,104.95184,7163.3896}; + angles[]={0.031988446,1.3538646,6.2491984}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1336; + type="Land_HBarrier_5_F"; + atlOffset=3.8146973e-005; + }; + class Item363 + { + dataType="Object"; + class PositionInfo + { + position[]={6879.7598,104.83829,7168.8232}; + angles[]={0.025994543,1.3538646,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1337; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item364 + { + dataType="Object"; + class PositionInfo + { + position[]={6875.0044,104.64062,7190.7412}; + angles[]={0.039977662,1.3538646,6.2272439}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1338; + type="Land_HBarrier_5_F"; + }; + class Item365 + { + dataType="Object"; + class PositionInfo + { + position[]={6823.9702,104.94766,7182.1299}; + angles[]={6.2771955,6.0662537,0.051952176}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1339; + type="Land_HBarrier_3_F"; + atlOffset=8.392334e-005; + }; + class Item366 + { + dataType="Object"; + class PositionInfo + { + position[]={6822.5762,104.88819,7184.2998}; + angles[]={6.2771955,1.3538646,0.051952176}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1340; + type="Land_HBarrier_3_F"; + atlOffset=8.392334e-005; + }; + class Item367 + { + dataType="Object"; + class PositionInfo + { + position[]={6818.8447,104.67519,7183.3774}; + angles[]={6.2731905,1.3538646,0.057934806}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1341; + type="Land_HBarrier_3_F"; + atlOffset=9.1552734e-005; + }; + class Item368 + { + dataType="Object"; + class PositionInfo + { + position[]={6819.75,104.68614,7187.6025}; + angles[]={0,6.0662537,0.057934806}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1342; + type="Land_HBarrier_5_F"; + atlOffset=0.00010681152; + }; + class Item369 + { + dataType="Object"; + class PositionInfo + { + position[]={6819.6406,104.61306,7137.2104}; + angles[]={0,0.56846654,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1343; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item370 + { + dataType="Object"; + class PositionInfo + { + position[]={6820.9438,104.71484,7136.3989}; + angles[]={0,5.2808557,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1344; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item371 + { + dataType="Object"; + class PositionInfo + { + position[]={6823.6875,104.93005,7137.5249}; + angles[]={0,6.0662537,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1345; + type="Land_Mil_WallBig_4m_F"; + atlOffset=7.6293945e-006; + }; + class Item372 + { + dataType="Object"; + class PositionInfo + { + position[]={6819.5103,104.60905,7140.188}; + angles[]={0,1.3538646,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1346; + type="Land_Mil_WallBig_4m_F"; + atlOffset=-7.6293945e-006; + }; + class Item373 + { + dataType="Object"; + class PositionInfo + { + position[]={6869.9888,105.70276,7191.874}; + angles[]={0,2.9111433,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1347; + type="Land_Mil_WallBig_4m_F"; + atlOffset=3.0517578e-005; + }; + class Item374 + { + dataType="Object"; + class PositionInfo + { + position[]={6872.7168,105.58186,7193.0371}; + angles[]={0,2.1257453,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1348; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item375 + { + dataType="Object"; + class PositionInfo + { + position[]={6874.0308,105.57157,7192.2427}; + angles[]={0,3.6965418,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1349; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item376 + { + dataType="Object"; + class PositionInfo + { + position[]={6874.2017,105.66837,7189.2676}; + angles[]={0,4.4819398,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1350; + type="Land_Mil_WallBig_4m_F"; + atlOffset=3.0517578e-005; + }; + class Item377 + { + dataType="Object"; + class PositionInfo + { + position[]={6824.8901,116.30996,7145.5903}; + angles[]={0,1.3538646,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1351; + type="Land_Cargo_Tower_V1_F"; + }; + class Item378 + { + dataType="Object"; + class PositionInfo + { + position[]={6834.6157,104.85357,7146.0933}; + angles[]={0,2.9246607,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1352; + type="Land_Cargo_House_V1_F"; + }; + class Item379 + { + dataType="Object"; + class PositionInfo + { + position[]={6843.5767,105.31248,7147.8022}; + angles[]={0,2.9246607,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1353; + type="Land_Cargo_House_V1_F"; + }; + class Item380 + { + dataType="Object"; + class PositionInfo + { + position[]={6858.7598,109.70748,7149.2754}; + angles[]={0,6.0662537,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1354; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item381 + { + dataType="Object"; + class PositionInfo + { + position[]={6878.6113,104.75688,7174.3813}; + angles[]={0.0219975,1.3538646,6.2452021}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1355; + type="Land_HBarrier_5_F"; + }; + class Item382 + { + dataType="Object"; + class PositionInfo + { + position[]={6877.4731,104.7201,7179.8135}; + angles[]={0.017997233,1.3538646,6.2372179}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1356; + type="Land_HBarrier_5_F"; + }; + class Item383 + { + dataType="Object"; + class PositionInfo + { + position[]={6876.2759,104.70593,7185.2573}; + angles[]={0.0219975,1.3538646,6.2292366}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1357; + type="Land_HBarrier_5_F"; + }; + class Item384 + { + dataType="Object"; + class PositionInfo + { + position[]={6815.3911,103.58916,7153.6992}; + angles[]={6.2491999,1.3538646,0.083802827}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1358; + type="Land_HBarrier_5_F"; + atlOffset=-7.6293945e-006; + }; + class Item385 + { + dataType="Object"; + class PositionInfo + { + position[]={6814.2529,103.71049,7159.1313}; + angles[]={6.2432079,1.3538646,0.073864385}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1359; + type="Land_HBarrier_5_F"; + }; + class Item386 + { + dataType="Object"; + class PositionInfo + { + position[]={6813.0557,103.83305,7164.5757}; + angles[]={6.247201,1.3538646,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1360; + type="Land_HBarrier_5_F"; + }; + class Item387 + { + dataType="Object"; + class PositionInfo + { + position[]={6815.0869,108.41675,7174.8335}; + angles[]={0,1.3538646,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1361; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item388 + { + dataType="Object"; + class PositionInfo + { + position[]={6869.7754,109.02059,7187.4868}; + angles[]={0,2.9246607,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1362; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-7.6293945e-006; + }; + class Item389 + { + dataType="Object"; + class PositionInfo + { + position[]={6877.6558,109.47288,7155.0078}; + angles[]={0,6.0662584,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1363; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item390 + { + dataType="Object"; + class PositionInfo + { + position[]={6880.2329,105.42849,7149.8218}; + angles[]={0.019996032,6.0662537,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1364; + type="Land_HBarrier_5_F"; + }; + class Item391 + { + dataType="Object"; + class PositionInfo + { + position[]={6874.7671,105.48981,7148.4546}; + angles[]={0.0060001095,6.0662537,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1365; + type="Land_HBarrier_5_F"; + atlOffset=2.2888184e-005; + }; + class Item392 + { + dataType="Object"; + class PositionInfo + { + position[]={6873.6279,105.50338,7144.5596}; + angles[]={6.2731905,1.3538646,0.0019834081}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1366; + type="Land_HBarrier_5_F"; + atlOffset=7.6293945e-006; + }; + class Item393 + { + dataType="Object"; + class PositionInfo + { + position[]={6863.9473,105.50687,7142.0239}; + angles[]={6.2771854,1.3538646,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1367; + type="Land_HBarrier_5_F"; + atlOffset=-7.6293945e-006; + }; + class Item394 + { + dataType="Object"; + class PositionInfo + { + position[]={6847.6445,105.27355,7181.7319}; + angles[]={0,6.0478468,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1368; + type="Land_Cargo_House_V1_F"; + }; + class Item395 + { + dataType="Object"; + class PositionInfo + { + position[]={6856.5728,105.14413,7183.6055}; + angles[]={0,6.0478468,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1369; + type="Land_Cargo_House_V1_F"; + }; + class Item396 + { + dataType="Logic"; + class PositionInfo + { + position[]={6846.709,104.66454,7163.5034}; + angles[]={0.011995304,6.0302858,6.2812018}; + }; + areaSize[]={35.166805,0,25.726395}; + areaIsRectangle=1; + flags=1; + id=1370; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item397 + { + dataType="Object"; + class PositionInfo + { + position[]={6865.2339,104.40295,7167.3799}; + angles[]={0.01399754,6.0662584,6.2671809}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1371; + type="Land_HelipadSquare_F"; + }; + class Item398 + { + dataType="Logic"; + class PositionInfo + { + position[]={6841.1694,119.71,5509.4556}; + angles[]={0,5.7691269,0}; + }; + areaSize[]={5,0,10.192701}; + flags=1; + id=1372; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item399 + { + dataType="Object"; + class PositionInfo + { + position[]={6872.9556,124.80881,5477.5151}; + angles[]={0,5.861639,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1373; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item400 + { + dataType="Object"; + class PositionInfo + { + position[]={6822.4907,125.11742,5554.4663}; + angles[]={0,3.0073233,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1374; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item401 + { + dataType="Object"; + class PositionInfo + { + position[]={6837.8623,146.35056,5101.6167}; + angles[]={0.13516936,4.8290062,0.071876638}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1375; + type="Land_HBarrier_Big_F"; + atlOffset=0.014328003; + }; + class Item402 + { + dataType="Object"; + class PositionInfo + { + position[]={6836.0581,149.10583,5076.7446}; + angles[]={0.087774232,4.8290062,0.051955618}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1376; + type="Land_HBarrier_Big_F"; + atlOffset=0.014328003; + }; + class Item403 + { + dataType="Object"; + class PositionInfo + { + position[]={6834.6646,150.11176,5052.7646}; + angles[]={0.043971907,4.8290062,0.1508444}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1377; + type="Land_HBarrier_Big_F"; + atlOffset=0.014328003; + }; + class Item404 + { + dataType="Object"; + class PositionInfo + { + position[]={6819.6865,149.48048,5040.4517}; + angles[]={0.1213999,0.0773689,0.077842705}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1378; + type="Land_HBarrier_Big_F"; + }; + class Item405 + { + dataType="Object"; + class PositionInfo + { + position[]={6795.4312,148.39696,5041.1553}; + angles[]={0.053948916,0.0773689,0.067894675}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1379; + type="Land_HBarrier_Big_F"; + }; + class Item406 + { + dataType="Object"; + class PositionInfo + { + position[]={6828.8066,142.93001,5134.4102}; + angles[]={0.1213999,0.34571931,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1380; + type="Land_HBarrier_Big_F"; + }; + class Item407 + { + dataType="Object"; + class PositionInfo + { + position[]={6806.3032,142.17078,5141.7407}; + angles[]={0.055941612,0.40788025,0.013999403}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1381; + type="Land_HBarrier_Big_F"; + }; + class Item408 + { + dataType="Logic"; + class PositionInfo + { + position[]={6803.4116,145.12527,5106.5269}; + angles[]={0,0.2852931,0}; + }; + areaSize[]={26.516315,0,31.608171}; + areaIsRectangle=1; + flags=1; + id=1382; + type="ModuleHideTerrainObjects_F"; + atlOffset=2.0402069; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item409 + { + dataType="Object"; + class PositionInfo + { + position[]={6794.0439,159.22635,5054.1787}; + angles[]={0,1.5992278,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1383; + type="Land_Cargo_Tower_V3_F"; + }; + class Item410 + { + dataType="Object"; + class PositionInfo + { + position[]={6832.6904,149.89294,5100.4736}; + angles[]={0,4.6956677,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1384; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item411 + { + dataType="Object"; + class PositionInfo + { + position[]={6788.2363,144.62466,5140.2134}; + angles[]={0,2.1316109,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1386; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item412 + { + dataType="Object"; + class PositionInfo + { + position[]={6783.9614,140.83171,5143.0835}; + angles[]={6.2711854,2.1200421,0.033987202}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1387; + type="Land_HBarrier_Big_F"; + }; + class Item413 + { + dataType="Logic"; + class PositionInfo + { + position[]={2410.3696,155.15909,2739.7036}; + angles[]={0,6.0684576,0}; + }; + areaSize[]={2.0476005,0,19.557089}; + areaIsRectangle=1; + flags=1; + id=1391; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.2543335; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item414 + { + dataType="Object"; + class PositionInfo + { + position[]={2360.5098,154.91,2790.2813}; + angles[]={0,1.5997182,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1392; + type="Land_HelipadSquare_F"; + }; + class Item415 + { + dataType="Object"; + class PositionInfo + { + position[]={2417.6682,156.67157,2820.8335}; + angles[]={0,3.1863353,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1393; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item416 + { + dataType="Object"; + class PositionInfo + { + position[]={2429.4392,157.98296,2709.8096}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1394; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item417 + { + dataType="Object"; + class PositionInfo + { + position[]={2340.9524,159.79906,2813.9241}; + angles[]={0,2.2747464,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1395; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item418 + { + dataType="Object"; + class PositionInfo + { + position[]={872.26025,165.27277,1647.4708}; + angles[]={6.2571888,0,6.1854959}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1396; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item419 + { + dataType="Object"; + class PositionInfo + { + position[]={880.76025,164.49498,1647.4708}; + angles[]={6.2571907,0,6.2053428}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1397; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item420 + { + dataType="Object"; + class PositionInfo + { + position[]={872.26025,165.77086,1657.7208}; + angles[]={6.211309,0,6.1795568}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1398; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item421 + { + dataType="Object"; + class PositionInfo + { + position[]={889.26025,163.90337,1647.4708}; + angles[]={6.2471995,0,6.2232599}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1399; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item422 + { + dataType="Object"; + class PositionInfo + { + position[]={897.76025,163.51964,1647.4708}; + angles[]={6.2292399,0,6.2491999}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1400; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; + }; + class Item423 + { + dataType="Object"; + class PositionInfo + { + position[]={906.26025,163.13762,1647.4708}; + angles[]={6.2212648,0,6.2232561}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1401; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item424 + { + dataType="Object"; + class PositionInfo + { + position[]={914.76025,162.59943,1647.4708}; + angles[]={6.2172837,0,6.2152872}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1402; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; + }; + class Item425 + { + dataType="Object"; + class PositionInfo + { + position[]={919.01025,162.72517,1652.7208}; + angles[]={6.175601,4.712389,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1403; + type="Land_HBarrier_Big_F"; + atlOffset=6.1035156e-005; + }; + class Item426 + { + dataType="Object"; + class PositionInfo + { + position[]={880.76025,164.9812,1657.7208}; + angles[]={6.2113094,0,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1404; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item427 + { + dataType="Object"; + class PositionInfo + { + position[]={889.26025,164.44897,1657.7208}; + angles[]={6.2132983,0,6.2312331}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1405; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; + }; + class Item428 + { + dataType="Object"; + class PositionInfo + { + position[]={897.76025,164.20889,1657.7208}; + angles[]={6.1993828,0,6.2651849}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1406; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item429 + { + dataType="Object"; + class PositionInfo + { + position[]={906.26025,163.99579,1657.7208}; + angles[]={6.1874795,0,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1407; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item430 + { + dataType="Object"; + class PositionInfo + { + position[]={919.01025,163.75569,1660.9708}; + angles[]={6.157845,4.712389,6.219274}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1408; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item431 + { + dataType="Object"; + class PositionInfo + { + position[]={868.76025,166.43567,1661.4708}; + angles[]={6.1854997,4.712389,6.1854963}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1409; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item432 + { + dataType="Object"; + class PositionInfo + { + position[]={868.76025,167.35071,1669.9708}; + angles[]={6.1677008,4.712389,6.191443}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1410; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item433 + { + dataType="Object"; + class PositionInfo + { + position[]={868.76025,168.23418,1678.4708}; + angles[]={6.1934242,4.712389,6.209321}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1411; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; + }; + class Item434 + { + dataType="Object"; + class PositionInfo + { + position[]={868.76025,168.52223,1686.9708}; + angles[]={0.0099949092,4.712389,6.2252526}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1412; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item435 + { + dataType="Object"; + class PositionInfo + { + position[]={868.76025,168.31412,1695.4708}; + angles[]={0.037981652,4.712389,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1413; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item436 + { + dataType="Object"; + class PositionInfo + { + position[]={880.51025,167.41202,1698.7208}; + angles[]={0.01400366,0,6.1934276}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1414; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item437 + { + dataType="Object"; + class PositionInfo + { + position[]={889.01025,166.6891,1698.7208}; + angles[]={0.013995145,0,6.2013717}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1415; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item438 + { + dataType="Object"; + class PositionInfo + { + position[]={897.51025,166.23048,1698.7208}; + angles[]={0.027993103,0,6.2491946}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1416; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item439 + { + dataType="Object"; + class PositionInfo + { + position[]={906.01025,166.16629,1698.7208}; + angles[]={0.035985984,0,0.01999305}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1417; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item440 + { + dataType="Object"; + class PositionInfo + { + position[]={914.51025,166.25105,1698.7208}; + angles[]={0.049958061,0,0.0059901671}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1418; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item441 + { + dataType="Object"; + class PositionInfo + { + position[]={918.76025,164.91376,1669.4708}; + angles[]={6.1499791,4.712389,6.2471995}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1419; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item442 + { + dataType="Object"; + class PositionInfo + { + position[]={918.76025,165.87634,1677.9708}; + angles[]={6.1795573,4.712389,6.269186}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1420; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item443 + { + dataType="Object"; + class PositionInfo + { + position[]={918.76025,166.4523,1686.4708}; + angles[]={6.2611909,4.712389,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1421; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item444 + { + dataType="Object"; + class PositionInfo + { + position[]={918.76025,166.41063,1694.9708}; + angles[]={0.023993526,4.712389,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1422; + type="Land_HBarrier_Big_F"; + }; + class Item445 + { + dataType="Object"; + class PositionInfo + { + position[]={867.51025,169.04033,1652.7208}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1423; + type="Land_BarGate_F"; + atlOffset=0.25006104; + }; + class Item446 + { + dataType="Object"; + class PositionInfo + { + position[]={915.26025,165.53665,1709.2208}; + angles[]={0.077841938,3.1415927,6.2671833}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1424; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item447 + { + dataType="Object"; + class PositionInfo + { + position[]={906.76025,165.53981,1709.2208}; + angles[]={0.075855196,3.1415927,0.0060001095}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1425; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item448 + { + dataType="Object"; + class PositionInfo + { + position[]={898.26025,165.54822,1709.2208}; + angles[]={0.10164732,3.1415927,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1426; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item449 + { + dataType="Object"; + class PositionInfo + { + position[]={889.76025,165.89482,1709.2208}; + angles[]={0.14497496,3.1415927,6.2372179}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1427; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item450 + { + dataType="Object"; + class PositionInfo + { + position[]={881.26025,166.35719,1709.2208}; + angles[]={0.17809469,3.1415927,6.2252488}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1428; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; + }; + class Item451 + { + dataType="Object"; + class PositionInfo + { + position[]={872.76025,166.70404,1709.2208}; + angles[]={0.22226405,3.1415927,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1429; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; + }; + class Item452 + { + dataType="Object"; + class PositionInfo + { + position[]={868.51025,167.91251,1703.9708}; + angles[]={0.04596737,1.5707965,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1430; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; + }; + class Item453 + { + dataType="Object"; + class PositionInfo + { + position[]={920.01025,168.94997,1703.9708}; + angles[]={0,1.5707965,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1431; + type="Land_BarGate_F"; + atlOffset=0.25003052; + }; + class Item454 + { + dataType="Object"; + class PositionInfo + { + position[]={876.95996,171.50069,1696.923}; + angles[]={0,2.6179938,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1432; + type="Land_TTowerSmall_1_F"; + atlOffset=3.0517578e-005; + }; + class Item455 + { + dataType="Object"; + class PositionInfo + { + position[]={910.01025,171.29398,1659.2208}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1433; + type="Land_TTowerSmall_2_F"; + atlOffset=3.0517578e-005; + }; + class Item456 + { + dataType="Object"; + class PositionInfo + { + position[]={892.76001,164.30783,1663.7209}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1434; + type="Land_Medevac_house_V1_F"; + }; + class Item457 + { + dataType="Object"; + class PositionInfo + { + position[]={873.51001,170.39961,1668.4709}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1435; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item458 + { + dataType="Object"; + class PositionInfo + { + position[]={879.51001,169.17825,1662.4709}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1436; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-1.5258789e-005; + }; + class Item459 + { + dataType="Object"; + class PositionInfo + { + position[]={906.51001,164.06261,1663.7209}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1437; + type="Land_Cargo_House_V3_F"; + atlOffset=1.5258789e-005; + }; + class Item460 + { + dataType="Object"; + class PositionInfo + { + position[]={880.26001,166.98991,1692.9709}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1438; + type="Land_Cargo_House_V3_F"; + }; + class Item461 + { + dataType="Object"; + class PositionInfo + { + position[]={907.76001,170.05833,1693.7209}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1439; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item462 + { + dataType="Object"; + class PositionInfo + { + position[]={913.76001,170.18752,1687.7209}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1440; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=1.5258789e-005; + }; + class Item463 + { + dataType="Object"; + class PositionInfo + { + position[]={893.51025,166.58855,1693.2208}; + angles[]={0.0060001095,0,6.2292376}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1441; + type="Land_Cargo40_sand_F"; + atlOffset=-0.0128479; + }; + class Item464 + { + dataType="Object"; + class PositionInfo + { + position[]={893.51025,166.56581,1695.9708}; + angles[]={0.013995145,0,6.2292376}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1442; + type="Land_Cargo40_sand_F"; + atlOffset=-0.011413574; + }; + class Item465 + { + dataType="Object"; + class PositionInfo + { + position[]={893.69202,169.18666,1694.7208}; + angles[]={0.0060001095,0,6.2292376}; + }; + side="Empty"; + class Attributes + { + }; + id=1443; + type="Land_Cargo40_sand_F"; + atlOffset=2.6040955; + }; + class Item466 + { + dataType="Object"; + class PositionInfo + { + position[]={2571.8428,156.15903,2512.1709}; + angles[]={6.259192,1.5816321,0.079828672}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1444; + type="Land_HBarrier_5_F"; + atlOffset=0.0089874268; + }; + class Item467 + { + dataType="Object"; + class PositionInfo + { + position[]={2571.7451,156.33904,2517.8047}; + angles[]={6.2472029,1.5816321,0.095706008}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1445; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item468 + { + dataType="Object"; + class PositionInfo + { + position[]={2571.7151,156.58247,2523.4536}; + angles[]={6.2332273,1.5816321,0.12140039}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1446; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item469 + { + dataType="Object"; + class PositionInfo + { + position[]={2571.7234,156.80748,2529.1594}; + angles[]={6.2432079,1.5816321,0.12730782}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1447; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item470 + { + dataType="Object"; + class PositionInfo + { + position[]={2633.1599,161.32469,2529.8843}; + angles[]={6.2432051,3.434459,6.2133012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1455; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item471 + { + dataType="Object"; + class PositionInfo + { + position[]={2638.5261,160.76622,2528.2178}; + angles[]={6.2531939,3.434459,6.175601}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1456; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item472 + { + dataType="Object"; + class PositionInfo + { + position[]={2617.554,160.28796,2488.0908}; + angles[]={0.043971907,3.0230751,0.063911393}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1457; + type="Land_HBarrier_5_F"; + }; + class Item473 + { + dataType="Object"; + class PositionInfo + { + position[]={2623.1277,160.5293,2488.9141}; + angles[]={0.04596737,3.0230751,0.03798322}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1458; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item474 + { + dataType="Object"; + class PositionInfo + { + position[]={2628.7253,160.66856,2489.6729}; + angles[]={0.041976813,3.0230751,0.027993103}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1459; + type="Land_HBarrier_5_F"; + }; + class Item475 + { + dataType="Object"; + class PositionInfo + { + position[]={2639.7493,160.39728,2519.873}; + angles[]={6.2691903,1.8636627,6.209322}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1462; + type="Land_HBarrier_5_F"; + }; + class Item476 + { + dataType="Object"; + class PositionInfo + { + position[]={2641.3601,160.37743,2525.188}; + angles[]={6.2531958,1.8636627,6.1815348}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1463; + type="Land_HBarrier_5_F"; + }; + class Item477 + { + dataType="Object"; + class PositionInfo + { + position[]={2600.687,158.87358,2485.8408}; + angles[]={0.043971907,3.0230751,0.10164732}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1465; + type="Land_HBarrier_5_F"; + }; + class Item478 + { + dataType="Object"; + class PositionInfo + { + position[]={2606.2847,159.40605,2486.5994}; + angles[]={0.043971907,3.0230751,0.097689599}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1466; + type="Land_HBarrier_5_F"; + }; + class Item479 + { + dataType="Object"; + class PositionInfo + { + position[]={2611.9443,159.90144,2487.3271}; + angles[]={0.043973263,3.0230751,0.083803542}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1467; + type="Land_HBarrier_5_F"; + }; + class Item480 + { + dataType="Object"; + class PositionInfo + { + position[]={2574.0957,156.74989,2489.0908}; + angles[]={0.027993103,3.1524284,0.061920606}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1468; + type="Land_HBarrier_5_F"; + }; + class Item481 + { + dataType="Object"; + class PositionInfo + { + position[]={2579.6443,157.08481,2488.9731}; + angles[]={0.033985451,3.1524284,0.057936866}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1469; + type="Land_HBarrier_5_F"; + }; + class Item482 + { + dataType="Object"; + class PositionInfo + { + position[]={2585.2183,157.43852,2488.9104}; + angles[]={0.037981652,3.1524284,0.075855196}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1470; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item483 + { + dataType="Object"; + class PositionInfo + { + position[]={2637.8774,160.45331,2513.3774}; + angles[]={0,1.8636627,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1473; + type="Land_HBarrier_3_F"; + atlOffset=6.1035156e-005; + }; + class Item484 + { + dataType="Object"; + class PositionInfo + { + position[]={2585.6067,158.61104,2533.1917}; + angles[]={6.2671871,3.1150758,0.097688988}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1490; + type="Land_HBarrier_5_F"; + }; + class Item485 + { + dataType="Object"; + class PositionInfo + { + position[]={2591.1792,159.13156,2533.3372}; + angles[]={6.269186,3.1150758,0.079828672}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1491; + type="Land_HBarrier_5_F"; + }; + class Item486 + { + dataType="Object"; + class PositionInfo + { + position[]={2627.8818,161.57922,2531.4709}; + angles[]={6.2751918,3.434459,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1494; + type="Land_HBarrier_5_F"; + }; + class Item487 + { + dataType="Object"; + class PositionInfo + { + position[]={2572.1492,156.50967,2492.6138}; + angles[]={0.035982672,1.5816321,0.061920606}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1498; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item488 + { + dataType="Object"; + class PositionInfo + { + position[]={2572.0515,156.28078,2498.2471}; + angles[]={0.043971907,1.5816321,0.059928458}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1499; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item489 + { + dataType="Object"; + class PositionInfo + { + position[]={2568.5142,155.95753,2500.2358}; + angles[]={0.029989703,3.1524284,0.077841938}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1500; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item490 + { + dataType="Object"; + class PositionInfo + { + position[]={2568.2302,155.79413,2510.2393}; + angles[]={6.2711802,3.1524284,0.089761026}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1501; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item491 + { + dataType="Object"; + class PositionInfo + { + position[]={2578.4585,157.60387,2528.7788}; + angles[]={6.2432079,4.7232246,0.12730782}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1504; + type="Land_Cargo_House_V3_F"; + atlOffset=1.5258789e-005; + }; + class Item492 + { + dataType="Object"; + class PositionInfo + { + position[]={2620.8645,160.12344,2494.571}; + angles[]={0.04796192,3.004668,0.037981652}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1505; + type="Land_Cargo_House_V3_F"; + }; + class Item493 + { + dataType="Object"; + class PositionInfo + { + position[]={2611.7954,159.55597,2493.5837}; + angles[]={0.04596737,3.004668,0.083806388}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1506; + type="Land_Cargo_House_V3_F"; + atlOffset=1.5258789e-005; + }; + class Item494 + { + dataType="Object"; + class PositionInfo + { + position[]={2576.4653,160.77502,2513.6555}; + angles[]={6.2232599,1.5816321,0.095706008}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1507; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item495 + { + dataType="Object"; + class PositionInfo + { + position[]={2635.8442,165.07425,2524.6921}; + angles[]={0,3.434459,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1510; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item496 + { + dataType="Layer"; + name="Camp Audacity"; + class Entities + { + items=127; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3850.2109,255.35837,806.71021}; + angles[]={6.1894608,0.38426512,0.035985984}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1511; + type="Land_HBarrierBig_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={3840.8872,255.93321,807.02356}; + angles[]={6.1775799,0.38426512,6.2033567}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1512; + type="Land_BagBunker_Large_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3821.678,256.73718,817.30273}; + angles[]={0,0.38426512,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1513; + type="Land_PortableLight_double_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={3871.52,255.88647,852.87653}; + angles[]={6.2033539,1.9456893,6.1736283}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1514; + type="Land_ToiletBox_F"; + atlOffset=-0.027740479; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={3819.9895,256.81485,835.36823}; + angles[]={0.061919641,0.34970617,0.12336948}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1515; + type="Land_WaterTank_F"; + atlOffset=-0.012329102; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={3852.5283,255.90982,812.29901}; + angles[]={6.1934276,0.73011988,6.2671833}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1516; + type="Land_Cargo20_military_green_F"; + atlOffset=-0.036468506; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={3859.0503,256.09146,805.59076}; + angles[]={6.2412128,6.1399455,0.17033349}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1517; + type="Land_HBarrierBig_F"; + atlOffset=-1.5258789e-005; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={3867.0945,257.42435,808.70453}; + angles[]={6.1147943,5.7112389,0.11153521}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1518; + type="Land_HBarrierBig_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={3824.0603,256.35376,814.92871}; + angles[]={6.0666342,0.38426512,0.2108213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1519; + type="Land_HBarrier_5_F"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={3818.9033,255.83908,816.97919}; + angles[]={6.0552177,0.38426512,0.1095605}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1520; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={3827.345,256.99838,817.47644}; + angles[]={6.1775827,5.1181169,0.063911393}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1521; + type="Land_HBarrier_5_F"; + atlOffset=0.015289307; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={3816.5337,256.82208,821.59497}; + angles[]={6.2372155,5.1234193,0.10955995}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1522; + type="Land_HBarrierBig_F"; + atlOffset=-1.5258789e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3815.6748,256.9137,829.37018}; + angles[]={6.2651882,4.1673713,0.12534069}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1523; + type="Land_HBarrierBig_F"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3815.1311,256.52451,837.72644}; + angles[]={0.073864385,5.1234193,0.13517246}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1524; + type="Land_HBarrierBig_F"; + atlOffset=0.0184021; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3814.6729,253.28383,854.25043}; + angles[]={0.22417066,5.1064544,0.17421354}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1525; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={3821.2593,257.32605,838.75238}; + angles[]={0.045969963,0.38426512,0.13909224}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1526; + type="Land_HBarrierBig_F"; + atlOffset=0.032318115; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={3810.335,255.35516,835.89832}; + angles[]={0.077842705,3.5774498,0.17227443}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1527; + type="Land_HBarrier_5_F"; + atlOffset=0.016418457; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={3816.9722,252.42801,859.4101}; + angles[]={0.23743641,5.1337514,0.18776138}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1528; + type="Land_HBarrier_5_F"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={3833.3857,253.50417,871.70911}; + angles[]={0.15084717,3.4885077,0.1993168}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1529; + type="Land_HBarrierBig_F"; + atlOffset=-1.5258789e-005; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={3842.75,254.58035,871.703}; + angles[]={0.14105751,3.4885118,0.10955431}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1530; + type="Land_BagBunker_Large_F"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={3867.5046,256.78864,868.48853}; + angles[]={0,3.4885077,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1531; + type="Land_PortableLight_double_F"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={3825.2434,251.97261,871.04736}; + angles[]={0.16839139,2.7499194,0.20507453}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1532; + type="Land_HBarrierBig_F"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={3820.011,251.96529,865.72656}; + angles[]={0.21273224,1.9512392,0.1993168}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1533; + type="Land_HBarrierBig_F"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={3865.0256,256.44394,871.04016}; + angles[]={0.053945597,3.4885077,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1534; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={3870.2634,256.38794,869.16522}; + angles[]={6.2731848,3.4885077,6.191443}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1535; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={3861.8018,256.39871,868.35681}; + angles[]={0.012005239,1.9391614,0.03798008}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1536; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={3872.697,256.56564,864.57733}; + angles[]={6.2212648,1.9444672,6.191442}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1537; + type="Land_HBarrierBig_F"; + atlOffset=-3.0517578e-005; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={3873.8948,255.93393,856.8623}; + angles[]={6.2033563,0.98841071,6.1795568}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1538; + type="Land_HBarrierBig_F"; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={3874.7463,255.27959,848.91095}; + angles[]={6.2571907,1.9444672,6.1736279}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1539; + type="Land_HBarrierBig_F"; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={3877.0222,257.81635,817.60968}; + angles[]={0.079828672,2.2854292,6.2212648}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1540; + type="Land_HBarrier_5_F"; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={3868.6763,255.8203,847.62268}; + angles[]={6.2113094,3.4885077,6.1617856}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1541; + type="Land_HBarrierBig_F"; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={3877.5767,255.17674,844.03235}; + angles[]={0.17033349,0.39848965,0.12730782}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1542; + type="Land_HBarrier_5_F"; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={3873.3093,257.8833,813.39697}; + angles[]={6.2073302,2.2854292,0.085787453}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1543; + type="Land_HBarrier_5_F"; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={3861.2488,255.71358,826.16565}; + angles[]={6.209321,3.5229433,6.2132983}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1544; + type="Land_Cargo20_military_green_F"; + atlOffset=-0.026428223; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={3852.5398,256.49969,821.81561}; + angles[]={6.1894603,2.6916778,6.1499791}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1545; + type="Land_Cargo20_military_green_F"; + atlOffset=-0.052566528; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={3839.8357,256.67081,814.93408}; + angles[]={6.183517,5.1181169,6.2412057}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1546; + type="Land_HBarrier_5_F"; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={3840.2495,257.14755,820.20654}; + angles[]={6.1914454,4.284256,6.1954107}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1547; + type="Land_HBarrier_5_F"; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={3843.7622,255.67145,864.21002}; + angles[]={0.15670641,5.0853252,0.091740042}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1548; + type="Land_HBarrier_5_F"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={3843.3411,256.57162,858.82281}; + angles[]={0.1508444,4.3626213,0.065905474}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1549; + type="Land_HBarrier_5_F"; + atlOffset=0.051651001; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={3827.969,257.77869,835.84198}; + angles[]={0.045969963,0.38426512,0.09966857}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1550; + type="Land_HBarrier_5_F"; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={3882.8396,256.36621,842.02417}; + angles[]={0.17033349,0.37975779,0.1858315}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1551; + type="Land_HBarrier_5_F"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={3870.7729,255.80414,850.82001}; + angles[]={6.2033539,1.9456893,6.1736283}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1552; + type="Land_ToiletBox_F"; + atlOffset=-0.027740479; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={3818.8074,256.73499,832.2912}; + angles[]={0.019999012,0.34970045,0.13517201}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1553; + type="Land_WaterTank_F"; + atlOffset=-0.0083618164; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={3825.7839,252.23715,869.49365}; + angles[]={0,5.8654089,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1555; + type="Land_PortableLight_double_F"; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={3819.5657,257.21539,825.90613}; + angles[]={0,4.5838943,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1556; + type="Land_PortableLight_double_F"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={3864.3022,256.84991,817.06848}; + angles[]={0.21081874,1.9333497,0.14105861}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1557; + type="Land_Cargo20_military_green_F"; + atlOffset=-0.005645752; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={3866.3042,255.45242,851.1709}; + angles[]={6.2292376,0.28034592,6.1617856}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1560; + type="Land_Pallets_F"; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={3821.1526,254.50555,853.46045}; + angles[]={0.21654841,5.1624203,0.16644807}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1561; + type="Land_PaperBox_closed_F"; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={3823.1746,254.3831,855.66754}; + angles[]={0.23743641,2.574671,0.17809166}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1565; + type="Land_PaperBox_closed_F"; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={3822.8376,253.63326,857.70087}; + angles[]={0.22606729,0.38426703,0.18969272}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1566; + type="Land_Pallets_stack_F"; + atlOffset=-0.0088500977; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={3866.958,260.64249,865.67792}; + angles[]={0.012005239,3.4899254,6.2452021}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1569; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=1.5258789e-005; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={3822.4719,261.05237,820.19702}; + angles[]={0,0.37173766,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1570; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={4077.1304,216.54091,1111.5771}; + angles[]={0,5.5671854,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1571; + type="Land_PortableLight_double_F"; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={4080.3264,216.08199,1112.6241}; + angles[]={0.087774232,5.5671854,0.03798322}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1572; + type="Land_HBarrier_5_F"; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={4076.1609,216.53436,1108.9573}; + angles[]={0.15670604,5.5671854,6.2651882}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1573; + type="Land_HBarrier_5_F"; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={4079.5447,215.75014,1116.7069}; + angles[]={0.071875811,4.0178518,0.0060001095}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1574; + type="Land_HBarrier_5_F"; + atlOffset=0.015258789; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={4070.9724,217.4229,1108.9377}; + angles[]={0.16060434,4.0231543,6.1815381}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1575; + type="Land_HBarrierBig_F"; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={4074.9109,220.20854,1113.597}; + angles[]={0,5.5546498,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1576; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={4010.8752,215.98885,1169.8976}; + angles[]={0,2.2629855,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1577; + type="Land_PortableLight_double_F"; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={4007.8909,215.72115,1168.3469}; + angles[]={0.08777491,2.2629855,0.025996836}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1578; + type="Land_HBarrier_5_F"; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={4011.4077,215.34787,1172.6399}; + angles[]={0.10560538,2.2629855,6.2812018}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1579; + type="Land_HBarrier_5_F"; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={4009.3232,216.05115,1164.4446}; + angles[]={0.039977662,0.7136519,0.083802827}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1580; + type="Land_HBarrier_5_F"; + atlOffset=0.015258789; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={4016.5247,215.87415,1173.499}; + angles[]={0.18389724,0.71895432,6.2013707}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1581; + type="Land_HBarrierBig_F"; + atlOffset=-1.5258789e-005; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={4013.3931,220.07289,1168.264}; + angles[]={0,2.2504625,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1582; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={6708.7124,136.36407,8423.0879}; + angles[]={0,3.2408748,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1676; + type="Land_PortableLight_double_F"; + atlOffset=3.0517578e-005; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={6705.7593,136.02023,8424.6963}; + angles[]={0.0039967569,3.2408748,6.2812018}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1677; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={6711.2847,136.07825,8424.1787}; + angles[]={6.2811723,3.2408748,0.053945597}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1678; + type="Land_HBarrier_5_F"; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={6703.3232,136.42741,8421.3281}; + angles[]={0.035982672,1.6915412,0.053948916}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1679; + type="Land_HBarrier_5_F"; + atlOffset=0.015258789; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={6708.7651,140.31416,8420.0869}; + angles[]={0,3.2283528,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1681; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={6760.5181,129.68414,8341.4316}; + angles[]={0,4.4084315,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1682; + type="Land_PortableLight_double_F"; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={6760.8394,129.45573,8344.7793}; + angles[]={6.2531919,4.4084315,0.025994543}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1683; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={6762.5317,129.34332,8339.4941}; + angles[]={6.2671871,4.4084315,0.027993103}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1684; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={6756.7852,129.59801,8345.6973}; + angles[]={6.245204,2.859098,6.2471995}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1685; + type="Land_HBarrier_5_F"; + atlOffset=0.015258789; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={6760.4707,129.69116,8334.7324}; + angles[]={6.2791886,2.8644004,0.025994543}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1686; + type="Land_HBarrierBig_F"; + atlOffset=-1.5258789e-005; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={6757.7798,133.45096,8340.2061}; + angles[]={0,4.3959084,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1687; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={6714.5293,132.77928,8306.4316}; + angles[]={0,5.9511099,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1688; + type="Land_PortableLight_double_F"; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={6713.2271,136.7489,8309.1357}; + angles[]={0,5.9385877,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1693; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={6716.8066,132.69748,8304.9189}; + angles[]={6.2631865,2.8349164,6.2053428}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1694; + type="Land_HBarrierBig_F"; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={6708.0933,133.15779,8302.9893}; + angles[]={6.2571888,6.1996474,6.2412086}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1695; + type="Land_HBarrierBig_F"; + atlOffset=-1.5258789e-005; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={2276.2375,132.37463,6271.8428}; + angles[]={0.02999169,1.301059,0.0079935296}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1754; + type="Land_HBarrierBig_F"; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={2205.7832,135.35762,6219.1104}; + angles[]={0,0.52843207,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1756; + type="Land_PortableLight_double_F"; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={2249.76,133.30766,6285.6855}; + angles[]={6.18748,2.1881495,6.2651916}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1757; + type="Land_ToiletBox_F"; + atlOffset=-0.008392334; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={2269.2117,131.5542,6225.0259}; + angles[]={0.05394781,2.0479679,0.047964405}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1759; + type="Land_Cargo20_military_green_F"; + atlOffset=-0.0051269531; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={2278.6692,131.74913,6263.1533}; + angles[]={6.215291,1.3255502,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1760; + type="Land_HBarrierBig_F"; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={2280.5481,131.51744,6253.8921}; + angles[]={0.059925474,1.5550934,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1761; + type="Land_HBarrierBig_F"; + atlOffset=-0.36781311; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={2207.7998,134.81012,6216.4185}; + angles[]={0.043971907,0.52843207,6.1245294}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1762; + type="Land_HBarrier_5_F"; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={2202.991,134.86298,6219.1885}; + angles[]={0.043973263,0.52843207,0.13517201}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1763; + type="Land_HBarrier_5_F"; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={2211.4163,134.34753,6218.4673}; + angles[]={6.2671871,5.2622838,6.1128521}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1764; + type="Land_HBarrier_5_F"; + atlOffset=0.015151978; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={2201.3091,134.97572,6224.0967}; + angles[]={0.081817582,5.2675862,0.069883667}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1765; + type="Land_HBarrierBig_F"; + atlOffset=1.5258789e-005; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={2201.5762,135.07404,6231.9146}; + angles[]={6.2212648,4.3115382,6.261188}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1766; + type="Land_HBarrierBig_F"; + }; + class Item90 + { + dataType="Object"; + class PositionInfo + { + position[]={2231.1191,132.93634,6210.7544}; + angles[]={0.10955723,5.1064544,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1768; + type="Land_HBarrier_5_F"; + }; + class Item91 + { + dataType="Object"; + class PositionInfo + { + position[]={2197.2581,135.04579,6237.9434}; + angles[]={6.1147943,3.7216167,0.10362818}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1770; + type="Land_HBarrier_5_F"; + }; + class Item92 + { + dataType="Object"; + class PositionInfo + { + position[]={2233.4185,132.48944,6215.9146}; + angles[]={0.18969272,5.1337514,0.053945597}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1771; + type="Land_HBarrier_5_F"; + }; + class Item93 + { + dataType="Object"; + class PositionInfo + { + position[]={2249.832,132.42361,6228.2134}; + angles[]={0.015998369,3.4885077,6.2531919}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1772; + type="Land_HBarrierBig_F"; + }; + class Item94 + { + dataType="Object"; + class PositionInfo + { + position[]={2254.8047,134.43178,6298.8521}; + angles[]={0,3.730968,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1774; + type="Land_PortableLight_double_F"; + atlOffset=1.5258789e-005; + }; + class Item95 + { + dataType="Object"; + class PositionInfo + { + position[]={2241.6897,132.64503,6227.5518}; + angles[]={0.019999012,2.7499194,6.2571907}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1775; + type="Land_HBarrierBig_F"; + }; + class Item96 + { + dataType="Object"; + class PositionInfo + { + position[]={2236.4573,132.68207,6222.231}; + angles[]={0,1.9512392,0}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=1776; + type="Land_HBarrierBig_F"; + atlOffset=0.32894897; + }; + class Item97 + { + dataType="Object"; + class PositionInfo + { + position[]={2253.0107,134.51945,6301.9243}; + angles[]={6.1973982,3.730968,6.2312312}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1777; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item98 + { + dataType="Object"; + class PositionInfo + { + position[]={2257.6453,133.80353,6298.8467}; + angles[]={6.1894603,3.730968,6.1558776}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1778; + type="Land_HBarrier_5_F"; + }; + class Item99 + { + dataType="Object"; + class PositionInfo + { + position[]={2249.2368,134.49892,6300.0933}; + angles[]={6.1954107,2.1816216,0.025996836}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1779; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item100 + { + dataType="Object"; + class PositionInfo + { + position[]={2258.906,133.59586,6293.8086}; + angles[]={6.2053437,2.1869273,6.211309}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1780; + type="Land_HBarrierBig_F"; + atlOffset=1.5258789e-005; + }; + class Item101 + { + dataType="Object"; + class PositionInfo + { + position[]={2253.9993,133.22234,6286.3037}; + angles[]={6.2033567,2.2055836,6.2352209}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1781; + type="Land_HBarrierBig_F"; + }; + class Item102 + { + dataType="Object"; + class PositionInfo + { + position[]={2240.916,134.97787,6307.563}; + angles[]={6.2551923,5.5294456,0.093725152}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1782; + type="Land_HBarrierBig_F"; + }; + class Item103 + { + dataType="Object"; + class PositionInfo + { + position[]={2186.9612,135.32959,6226.5513}; + angles[]={6.2232571,2.2854292,6.0800276}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1783; + type="Land_HBarrier_5_F"; + }; + class Item104 + { + dataType="Object"; + class PositionInfo + { + position[]={2246.9517,135.38399,6306.1226}; + angles[]={6.2412114,0.79030061,0.023993526}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1784; + type="Land_HBarrierBig_F"; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={2221.6404,132.74054,6212.333}; + angles[]={6.2571888,0.39848965,0.023998493}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1785; + type="Land_HBarrier_5_F"; + }; + class Item106 + { + dataType="Object"; + class PositionInfo + { + position[]={2280.1204,131.72609,6245.2456}; + angles[]={0.017997233,1.7379349,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1786; + type="Land_HBarrier_5_F"; + }; + class Item107 + { + dataType="Object"; + class PositionInfo + { + position[]={2277.5708,132.19743,6237.894}; + angles[]={0.055944808,4.8407912,0.16060434}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1787; + type="Land_Cargo20_military_green_F"; + atlOffset=-0.050582886; + }; + class Item108 + { + dataType="Object"; + class PositionInfo + { + position[]={2269.7324,130.21954,6240.1313}; + angles[]={6.261188,4.8594794,6.1382074}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1788; + type="Land_Cargo20_military_green_F"; + atlOffset=-0.017074585; + }; + class Item109 + { + dataType="Object"; + class PositionInfo + { + position[]={2265.9961,131.48566,6279.9448}; + angles[]={6.2212648,3.5949855,6.1421275}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1789; + type="Land_HBarrier_5_F"; + }; + class Item110 + { + dataType="Object"; + class PositionInfo + { + position[]={2271.2393,131.0161,6276.7847}; + angles[]={6.2212658,3.5540802,0.2336536}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1790; + type="Land_HBarrier_5_F"; + }; + class Item111 + { + dataType="Object"; + class PositionInfo + { + position[]={2263.2466,131.13768,6224.7153}; + angles[]={0.057936866,0.080031067,6.0857897}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1791; + type="Land_HBarrier_5_F"; + }; + class Item112 + { + dataType="Object"; + class PositionInfo + { + position[]={2257.0977,131.81053,6226.1919}; + angles[]={0.019999012,0.24493916,6.261188}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1792; + type="Land_HBarrier_5_F"; + }; + class Item113 + { + dataType="Object"; + class PositionInfo + { + position[]={2226.9033,132.82239,6210.3247}; + angles[]={0.12534021,0.37975779,0.053945597}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1794; + type="Land_HBarrier_5_F"; + }; + class Item114 + { + dataType="Object"; + class PositionInfo + { + position[]={2248.5447,133.44223,6283.8672}; + angles[]={0,2.1881495,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1795; + type="Land_ToiletBox_F"; + atlOffset=0.2461853; + }; + class Item115 + { + dataType="Object"; + class PositionInfo + { + position[]={2204.929,134.87143,6227.9272}; + angles[]={0,4.7280612,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1798; + type="Land_PortableLight_double_F"; + atlOffset=-1.5258789e-005; + }; + class Item116 + { + dataType="Object"; + class PositionInfo + { + position[]={2269.4224,130.90897,6232.6035}; + angles[]={0.081817582,3.2511976,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1799; + type="Land_Cargo20_military_green_F"; + atlOffset=-0.013336182; + }; + class Item117 + { + dataType="Object"; + class PositionInfo + { + position[]={2247.5723,134.19235,6301.8994}; + angles[]={6.1954107,3.865324,0.025996836}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1800; + type="Land_Pallets_F"; + }; + class Item118 + { + dataType="Object"; + class PositionInfo + { + position[]={2227.1504,132.25893,6214.3164}; + angles[]={0.10955723,5.1624203,0.069887079}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1801; + type="Land_PaperBox_closed_F"; + }; + class Item119 + { + dataType="Object"; + class PositionInfo + { + position[]={2229.1724,132.13211,6216.5234}; + angles[]={0.18969272,2.574671,6.2332263}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1802; + type="Land_PaperBox_closed_F"; + atlOffset=1.5258789e-005; + }; + class Item120 + { + dataType="Object"; + class PositionInfo + { + position[]={2228.8354,131.53383,6218.5566}; + angles[]={0.18969272,0.38426703,6.2332263}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1803; + type="Land_Pallets_stack_F"; + atlOffset=-0.019424438; + }; + class Item121 + { + dataType="Object"; + class PositionInfo + { + position[]={2253.5991,137.92461,6296.2549}; + angles[]={0,3.7323866,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1804; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item122 + { + dataType="Object"; + class PositionInfo + { + position[]={2206.9851,138.91399,6221.8599}; + angles[]={0,0.51590186,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1805; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item123 + { + dataType="Object"; + class PositionInfo + { + position[]={2198.2336,136.71451,6244.9541}; + angles[]={6.1186852,5.051013,0.14497785}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1808; + type="Land_HBarrierBig_F"; + atlOffset=-1.5258789e-005; + }; + class Item124 + { + dataType="Object"; + class PositionInfo + { + position[]={2201.2046,137.13873,6253.4741}; + angles[]={0.013995145,5.0755043,6.2312331}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1809; + type="Land_HBarrierBig_F"; + }; + class Item125 + { + dataType="Object"; + class PositionInfo + { + position[]={2204.9558,136.62976,6262.1475}; + angles[]={0.0060001095,5.305047,6.2232571}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1810; + type="Land_HBarrierBig_F"; + atlOffset=1.5258789e-005; + }; + class Item126 + { + dataType="Object"; + class PositionInfo + { + position[]={2210.2485,135.51074,6268.9985}; + angles[]={6.2212648,5.4878893,6.0552177}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1811; + type="Land_HBarrier_5_F"; + }; + }; + id=1567; + atlOffset=0.13801575; + }; + class Item497 + { + dataType="Logic"; + class PositionInfo + { + position[]={3845.5801,257.37802,842.396}; + }; + areaSize[]={40,0,40}; + flags=1; + id=1568; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item498 + { + dataType="Logic"; + class PositionInfo + { + position[]={5814.8594,269.82748,919.95764}; + angles[]={0,0.41165337,0}; + }; + areaSize[]={11.631,0,10.311714}; + flags=1; + id=1583; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.011627197; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item499 + { + dataType="Logic"; + class PositionInfo + { + position[]={5829.8501,269.85831,930.95166}; + angles[]={0,0.73664105,0}; + }; + areaSize[]={16.026917,0,11.21768}; + areaIsRectangle=1; + flags=1; + id=1584; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.070922852; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item500 + { + dataType="Logic"; + class PositionInfo + { + position[]={5797.3232,267.91281,896.4054}; + angles[]={0.065908194,0.41165337,0.013995145}; + }; + areaSize[]={13.397742,0,10.355013}; + flags=1; + id=1585; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.066955566; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item501 + { + dataType="Object"; + class PositionInfo + { + position[]={5796.1245,267.94229,896.71899}; + angles[]={0.065908194,5.4405499,0.013995145}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1586; + type="Land_HelipadSquare_F"; + }; + class Item502 + { + dataType="Logic"; + class PositionInfo + { + position[]={5796.1406,268.01224,945.68378}; + angles[]={0,0.41165337,0}; + }; + areaSize[]={16.150024,0,11.398073}; + flags=1; + id=1587; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.042907715; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item503 + { + dataType="Logic"; + class PositionInfo + { + position[]={6536.8325,210.03107,2299.5142}; + angles[]={0,6.2635899,0}; + }; + areaSize[]={24.490536,0,34.704666}; + areaIsRectangle=1; + flags=1; + id=1588; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.53419495; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=4; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item504 + { + dataType="Object"; + class PositionInfo + { + position[]={6536.6445,211.88251,2265.4082}; + angles[]={0,0.14209932,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1589; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item505 + { + dataType="Object"; + class PositionInfo + { + position[]={6515.9224,214.84492,2313.8738}; + angles[]={0,2.6143095,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1590; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item506 + { + dataType="Object"; + class PositionInfo + { + position[]={9131.7441,93.942154,1971.1243}; + angles[]={0.097688988,3.3446834,6.2272439}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1594; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item507 + { + dataType="Object"; + class PositionInfo + { + position[]={9090.2559,93.946274,1979.3625}; + angles[]={0.107583,3.3446834,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1598; + type="Land_HBarrier_Big_F"; + }; + class Item508 + { + dataType="Object"; + class PositionInfo + { + position[]={9123.4189,94.041565,1972.8387}; + angles[]={0.10164909,3.3446834,6.2571931}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1600; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item509 + { + dataType="Object"; + class PositionInfo + { + position[]={9115.0938,94.094749,1974.5532}; + angles[]={0.10560651,3.3446834,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1601; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item510 + { + dataType="Object"; + class PositionInfo + { + position[]={9106.7686,94.019325,1976.2676}; + angles[]={0.13517068,3.3446834,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1602; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item511 + { + dataType="Object"; + class PositionInfo + { + position[]={9098.4434,93.955681,1977.9819}; + angles[]={0.12730736,3.3446834,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1603; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item512 + { + dataType="Object"; + class PositionInfo + { + position[]={9085.2998,94.215981,1977.3705}; + angles[]={0.093725152,1.7738873,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1604; + type="Land_HBarrier_Big_F"; + }; + class Item513 + { + dataType="Object"; + class PositionInfo + { + position[]={9134.416,93.909233,1966.7455}; + angles[]={0.0019834081,1.7738873,6.2272449}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1605; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item514 + { + dataType="Object"; + class PositionInfo + { + position[]={9132.7021,93.872711,1958.4202}; + angles[]={6.2591896,1.7738873,6.1874795}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1606; + type="Land_HBarrier_Big_F"; + atlOffset=2.2888184e-005; + }; + class Item515 + { + dataType="Object"; + class PositionInfo + { + position[]={9130.9883,93.729752,1950.0948}; + angles[]={6.2531939,1.7738873,6.209321}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1607; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item516 + { + dataType="Object"; + class PositionInfo + { + position[]={9129.2725,93.471474,1941.7695}; + angles[]={6.2192702,1.7738873,6.2033567}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1608; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item517 + { + dataType="Object"; + class PositionInfo + { + position[]={9127.5586,92.828247,1933.4442}; + angles[]={6.1499782,1.7738873,6.2272439}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1609; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; + }; + class Item518 + { + dataType="Object"; + class PositionInfo + { + position[]={9115.3945,93.255203,1932.631}; + angles[]={6.1499796,3.3446834,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1610; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item519 + { + dataType="Object"; + class PositionInfo + { + position[]={9107.0693,93.807594,1934.3455}; + angles[]={6.1558781,3.3446834,6.2452021}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1611; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item520 + { + dataType="Object"; + class PositionInfo + { + position[]={9098.7441,94.233315,1936.0598}; + angles[]={6.1954112,3.3446834,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1612; + type="Land_HBarrier_Big_F"; + }; + class Item521 + { + dataType="Object"; + class PositionInfo + { + position[]={9090.4189,94.353645,1937.7743}; + angles[]={6.1973968,3.3446834,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1613; + type="Land_HBarrier_Big_F"; + atlOffset=2.2888184e-005; + }; + class Item522 + { + dataType="Object"; + class PositionInfo + { + position[]={9082.0938,94.132912,1939.4886}; + angles[]={6.2095089,3.3446834,0.061578684}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1614; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; + }; + class Item523 + { + dataType="Object"; + class PositionInfo + { + position[]={9083.8311,94.815887,1968.9946}; + angles[]={0.041973971,1.7738873,0.013995145}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1615; + type="Land_HBarrier_Big_F"; + atlOffset=2.2888184e-005; + }; + class Item524 + { + dataType="Object"; + class PositionInfo + { + position[]={9082.1152,94.988106,1960.6696}; + angles[]={0.0080009829,1.7738873,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1616; + type="Land_HBarrier_Big_F"; + }; + class Item525 + { + dataType="Object"; + class PositionInfo + { + position[]={9080.4014,94.684525,1952.3441}; + angles[]={6.2396827,1.7738873,0.052245189}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1617; + type="Land_HBarrier_Big_F"; + }; + class Item526 + { + dataType="Object"; + class PositionInfo + { + position[]={9078.6875,94.228249,1944.0187}; + angles[]={6.2173743,1.7738873,0.059470914}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1618; + type="Land_HBarrier_Big_F"; + atlOffset=-7.6293945e-006; + }; + class Item527 + { + dataType="Object"; + class PositionInfo + { + position[]={9079.2412,93.131859,1929.3557}; + angles[]={6.1705346,0.20309079,0.052178949}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1620; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; + }; + class Item528 + { + dataType="Object"; + class PositionInfo + { + position[]={9087.5664,93.268173,1927.6414}; + angles[]={6.165729,0.20309079,0.0219975}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1621; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item529 + { + dataType="Object"; + class PositionInfo + { + position[]={9095.8916,93.104576,1925.927}; + angles[]={6.1617856,0.20309079,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1622; + type="Land_HBarrier_Big_F"; + atlOffset=2.2888184e-005; + }; + class Item530 + { + dataType="Object"; + class PositionInfo + { + position[]={9104.2168,92.554771,1924.2125}; + angles[]={6.1323395,0.20309079,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1623; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item531 + { + dataType="Object"; + class PositionInfo + { + position[]={9112.542,91.857506,1922.498}; + angles[]={6.1206322,0.20309079,6.2312322}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1624; + type="Land_HBarrier_Big_F"; + atlOffset=2.2888184e-005; + }; + class Item532 + { + dataType="Object"; + class PositionInfo + { + position[]={9120.8682,91.117897,1920.7836}; + angles[]={6.1128521,0.20309079,6.229239}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1625; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item533 + { + dataType="Object"; + class PositionInfo + { + position[]={9126.0898,91.596893,1925.0685}; + angles[]={6.1186852,4.9154801,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1626; + type="Land_HBarrier_Big_F"; + atlOffset=2.2888184e-005; + }; + class Item534 + { + dataType="Object"; + class PositionInfo + { + position[]={9075.6475,96.612907,1935.4558}; + angles[]={0,4.9154801,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1627; + type="Land_BarGate_F"; + atlOffset=0.25001526; + }; + class Item535 + { + dataType="Object"; + class PositionInfo + { + position[]={9119.2354,97.017448,1933.6757}; + angles[]={0,5.962677,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1628; + type="Land_TTowerSmall_1_F"; + atlOffset=1.5258789e-005; + }; + class Item536 + { + dataType="Object"; + class PositionInfo + { + position[]={9094.4678,101.38163,1977.2692}; + angles[]={0,0.20309079,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1629; + type="Land_TTowerSmall_2_F"; + atlOffset=7.6293945e-006; + }; + class Item537 + { + dataType="Object"; + class PositionInfo + { + position[]={9110.4561,94.20108,1969.382}; + angles[]={0,0.20308651,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1630; + type="Land_Medevac_house_V1_F"; + }; + class Item538 + { + dataType="Object"; + class PositionInfo + { + position[]={9128.3525,98.016273,1960.847}; + angles[]={0,4.9154754,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1631; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item539 + { + dataType="Object"; + class PositionInfo + { + position[]={9123.6855,98.152496,1967.9341}; + angles[]={0.061919641,3.3446834,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1632; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-7.6293945e-006; + }; + class Item540 + { + dataType="Object"; + class PositionInfo + { + position[]={9096.9883,94.088333,1972.156}; + angles[]={0,0.20308651,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1633; + type="Land_Cargo_House_V3_F"; + }; + class Item541 + { + dataType="Object"; + class PositionInfo + { + position[]={9116.7988,93.367828,1938.212}; + angles[]={0,3.3446791,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1634; + type="Land_Cargo_House_V3_F"; + }; + class Item542 + { + dataType="Object"; + class PositionInfo + { + position[]={9089.7129,98.407982,1943.0243}; + angles[]={6.2212648,0.20309079,0.050629131}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1635; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=7.6293945e-006; + }; + class Item543 + { + dataType="Object"; + class PositionInfo + { + position[]={9085.0469,98.525093,1950.111}; + angles[]={0,1.7738829,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1636; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item544 + { + dataType="Object"; + class PositionInfo + { + position[]={9103.9443,94.679359,1940.7336}; + angles[]={6.2133021,3.3446791,6.2591867}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1637; + type="Land_Cargo40_sand_F"; + atlOffset=-0.0092849731; + }; + class Item545 + { + dataType="Object"; + class PositionInfo + { + position[]={9103.3916,94.435974,1938.0555}; + angles[]={0,3.3446791,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1638; + type="Land_Cargo40_sand_F"; + atlOffset=-0.016242981; + }; + class Item546 + { + dataType="Object"; + class PositionInfo + { + position[]={9103.7813,97.178055,1939.3256}; + angles[]={6.1795583,3.3446791,6.2590609}; + }; + side="Empty"; + class Attributes + { + }; + id=1639; + type="Land_Cargo40_sand_F"; + atlOffset=2.6031113; + }; + class Item547 + { + dataType="Object"; + class PositionInfo + { + position[]={9058.0547,92.315331,1953.7195}; + angles[]={6.2232571,1.7955788,0.075853623}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1641; + type="Land_HelipadSquare_F"; + }; + class Item548 + { + dataType="Object"; + class PositionInfo + { + position[]={7094.6885,345.59619,3572.3179}; + angles[]={0,3.7483561,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1642; + type="Land_Cargo_Tower_V3_F"; + }; + class Item549 + { + dataType="Object"; + class PositionInfo + { + position[]={7105.6025,338.02255,3612.728}; + angles[]={0,3.7033274,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1643; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item550 + { + dataType="Object"; + class PositionInfo + { + position[]={8611.9658,172.13217,3816.7517}; + angles[]={0.1095605,5.2860312,6.1993818}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1644; + type="Land_HBarrier_Big_F"; + }; + class Item551 + { + dataType="Object"; + class PositionInfo + { + position[]={8616.5791,171.03287,3823.8909}; + angles[]={0.08777491,5.2860312,6.1854963}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1645; + type="Land_HBarrier_Big_F"; + }; + class Item552 + { + dataType="Object"; + class PositionInfo + { + position[]={8621.1914,170.0703,3831.0303}; + angles[]={0.049958061,5.2860312,6.1677008}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1646; + type="Land_HBarrier_Big_F"; + }; + class Item553 + { + dataType="Object"; + class PositionInfo + { + position[]={8588.8301,172.55374,3821.6033}; + angles[]={0.12140039,3.7152352,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1647; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item554 + { + dataType="Object"; + class PositionInfo + { + position[]={8581.6904,172.05885,3826.2156}; + angles[]={0.085787453,3.7152352,0.0020132356}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1648; + type="Land_HBarrier_Big_F"; + }; + class Item555 + { + dataType="Object"; + class PositionInfo + { + position[]={8574.5508,171.75049,3830.8279}; + angles[]={0.017997233,3.7152352,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1649; + type="Land_HBarrier_Big_F"; + }; + class Item556 + { + dataType="Object"; + class PositionInfo + { + position[]={8618.0508,169.58913,3837.2258}; + angles[]={0.029993678,2.1444345,6.2033539}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1650; + type="Land_Medevac_house_V1_F"; + }; + class Item557 + { + dataType="Object"; + class PositionInfo + { + position[]={8585.5273,175.39531,3829.3911}; + angles[]={0.1056082,0.57363784,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1651; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item558 + { + dataType="Object"; + class PositionInfo + { + position[]={8611.9102,174.97316,3825.4185}; + angles[]={0.081817582,5.2860312,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1652; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item559 + { + dataType="Logic"; + class PositionInfo + { + position[]={8551.9512,77.847458,4984.749}; + angles[]={0,0.23086977,0}; + }; + areaSize[]={8.2773981,0,13.111902}; + flags=1; + id=1653; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.0052642822; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item560 + { + dataType="Logic"; + class PositionInfo + { + position[]={8502.4268,78.480827,4952.4219}; + angles[]={0.023998277,1.3488427,6.2532005}; + }; + areaSize[]={11.257754,0,19.167}; + flags=1; + id=1654; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.041259766; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item561 + { + dataType="Object"; + class PositionInfo + { + position[]={8500.7139,78.568954,4950.8452}; + angles[]={0.0080009829,4.3878784,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1655; + type="Land_HelipadSquare_F"; + }; + class Item562 + { + dataType="Object"; + class PositionInfo + { + position[]={8527.9033,90.968735,5012.9604}; + angles[]={0,0.28521544,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1656; + type="Land_Cargo_Tower_V3_F"; + atlOffset=-0.026695251; + }; + class Item563 + { + dataType="Logic"; + class PositionInfo + { + position[]={8532.334,77.898033,5010.6416}; + angles[]={0.0020132356,1.3488427,6.2571931}; + }; + areaSize[]={2,0,2}; + flags=1; + id=1657; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=4; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item564 + { + dataType="Object"; + class PositionInfo + { + position[]={8484.1221,83.752174,4944.3462}; + angles[]={0,1.1043617,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1658; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item565 + { + dataType="Object"; + class PositionInfo + { + position[]={8521.3281,82.993027,4959.9688}; + angles[]={0,4.9993057,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1659; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item566 + { + dataType="Object"; + class PositionInfo + { + position[]={8529.832,82.298424,4973.6577}; + angles[]={0,1.8187221,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1660; + type="Land_BarGate_F"; + atlOffset=0.25002289; + }; + class Item567 + { + dataType="Logic"; + class PositionInfo + { + position[]={4486.3154,134.42,5890.4673}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1661; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item568 + { + dataType="Logic"; + class PositionInfo + { + position[]={4498.8945,134.42,5872.7051}; + }; + areaSize[]={5,0,14.404785}; + flags=1; + id=1662; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item569 + { + dataType="Logic"; + class PositionInfo + { + position[]={4563.8281,134.42273,5890.8315}; + angles[]={0.0080009829,0,6.2751846}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1663; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item570 + { + dataType="Logic"; + class PositionInfo + { + position[]={4562.9697,134.42,5755.8247}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1664; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item571 + { + dataType="Logic"; + class PositionInfo + { + position[]={4486.3472,134.42,5758.2363}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1665; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item572 + { + dataType="Object"; + class PositionInfo + { + position[]={4546.4819,147.6591,5763.979}; + angles[]={0,3.1590459,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1666; + type="Land_Cargo_Tower_V3_F"; + atlOffset=-1.5258789e-005; + }; + class Item573 + { + dataType="Logic"; + class PositionInfo + { + position[]={4520.9277,138.12088,5875.7778}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1667; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.700882; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item574 + { + dataType="Object"; + class PositionInfo + { + position[]={4518.4058,147.30621,5873.6128}; + angles[]={0,3.1590459,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1668; + type="Land_Cargo_Tower_V3_F"; + }; + class Item575 + { + dataType="Object"; + class PositionInfo + { + position[]={4485.4741,139.325,5757.5444}; + angles[]={0,0.8696239,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1669; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item576 + { + dataType="Object"; + class PositionInfo + { + position[]={4563.9502,139.325,5891.0732}; + angles[]={0,3.9022543,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1670; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item577 + { + dataType="Object"; + class PositionInfo + { + position[]={4486.7837,139.325,5890.9263}; + angles[]={0,2.3839238,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1671; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item578 + { + dataType="Object"; + class PositionInfo + { + position[]={4461.4272,139.325,5855.3735}; + angles[]={0,1.5283558,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1672; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item579 + { + dataType="Object"; + class PositionInfo + { + position[]={4499.0342,134.42,5872}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1673; + type="Land_HelipadSquare_F"; + }; + class Item580 + { + dataType="Object"; + class PositionInfo + { + position[]={4505.1108,134.42,5779.2681}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1674; + type="Land_HelipadSquare_F"; + }; + class Item581 + { + dataType="Logic"; + class PositionInfo + { + position[]={4505.3086,134.42,5775.5532}; + angles[]={0,1.5385038,0}; + }; + areaSize[]={5,0,14.404785}; + flags=1; + id=1675; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item582 + { + dataType="Logic"; + class PositionInfo + { + position[]={3942.2944,139.35347,7905.5264}; + angles[]={0,5.9930053,0}; + }; + areaSize[]={9.3691759,0,9.5095587}; + areaIsRectangle=1; + flags=1; + id=1696; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.32707214; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item583 + { + dataType="Object"; + class PositionInfo + { + position[]={4977.6602,132.22551,5326.5415}; + angles[]={6.2711854,5.7478089,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1697; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item584 + { + dataType="Object"; + class PositionInfo + { + position[]={5013.8862,131.41951,5348.377}; + angles[]={0.010000871,5.7478089,0.023993526}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1698; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item585 + { + dataType="Object"; + class PositionInfo + { + position[]={4984.9707,131.79073,5330.8779}; + angles[]={6.2511969,5.7478089,6.1954141}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1699; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item586 + { + dataType="Object"; + class PositionInfo + { + position[]={4992.2813,131.57452,5335.2139}; + angles[]={6.2531958,5.7478089,6.269186}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1700; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item587 + { + dataType="Object"; + class PositionInfo + { + position[]={4999.5918,131.43974,5339.5503}; + angles[]={0.017997233,5.7478089,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1701; + type="Land_HBarrier_Big_F"; + }; + class Item588 + { + dataType="Object"; + class PositionInfo + { + position[]={5006.9019,131.37733,5343.8867}; + angles[]={0.02199479,5.7478089,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1702; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item589 + { + dataType="Object"; + class PositionInfo + { + position[]={5016.2104,131.44873,5353.1865}; + angles[]={0.0039967569,4.1770124,0.025994543}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1703; + type="Land_HBarrier_Big_F"; + }; + class Item590 + { + dataType="Object"; + class PositionInfo + { + position[]={4972.7363,132.52068,5327.981}; + angles[]={6.2711854,4.1770124,6.219275}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1704; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item591 + { + dataType="Object"; + class PositionInfo + { + position[]={4968.3994,133.22754,5335.291}; + angles[]={6.2232571,4.1770124,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1705; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item592 + { + dataType="Object"; + class PositionInfo + { + position[]={4964.063,133.76581,5342.6016}; + angles[]={6.2631893,4.1770124,6.2472029}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1706; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item593 + { + dataType="Object"; + class PositionInfo + { + position[]={4959.7271,133.93489,5349.9131}; + angles[]={0.0060001095,4.1770124,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1707; + type="Land_HBarrier_Big_F"; + }; + class Item594 + { + dataType="Object"; + class PositionInfo + { + position[]={4955.3901,134.38329,5357.2231}; + angles[]={6.1716509,4.1770124,6.2172809}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1708; + type="Land_HBarrier_Big_F"; + }; + class Item595 + { + dataType="Object"; + class PositionInfo + { + position[]={4963.8384,133.8472,5366.0132}; + angles[]={6.2053399,5.7478089,6.1225815}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1709; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item596 + { + dataType="Object"; + class PositionInfo + { + position[]={4971.1494,133.18906,5370.3491}; + angles[]={0.033987202,5.7478089,6.2491984}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1710; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item597 + { + dataType="Object"; + class PositionInfo + { + position[]={4978.46,132.64999,5374.6855}; + angles[]={0.055941612,5.7478089,6.2232571}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1711; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item598 + { + dataType="Object"; + class PositionInfo + { + position[]={4985.7705,131.68202,5379.022}; + angles[]={0.083802827,5.7478089,6.1795573}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1712; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item599 + { + dataType="Object"; + class PositionInfo + { + position[]={4993.0811,131.31473,5383.3584}; + angles[]={6.2531958,5.7478089,0.023993526}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1713; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item600 + { + dataType="Object"; + class PositionInfo + { + position[]={5011.6577,131.32343,5360.3696}; + angles[]={6.2731848,4.1770124,0.035982672}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1714; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; + }; + class Item601 + { + dataType="Object"; + class PositionInfo + { + position[]={5007.3232,131.2726,5367.6802}; + angles[]={6.2631893,4.1770124,0.033987202}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1715; + type="Land_HBarrier_Big_F"; + }; + class Item602 + { + dataType="Object"; + class PositionInfo + { + position[]={5002.9858,131.31932,5374.9912}; + angles[]={6.2551923,4.1770124,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1716; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; + }; + class Item603 + { + dataType="Object"; + class PositionInfo + { + position[]={4998.6484,131.4277,5382.3018}; + angles[]={6.2491965,4.1770124,0.02999169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1717; + type="Land_HBarrier_Big_F"; + }; + class Item604 + { + dataType="Object"; + class PositionInfo + { + position[]={4988.3691,131.43091,5392.772}; + angles[]={6.2591872,2.6062164,0.027995232}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1718; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item605 + { + dataType="Object"; + class PositionInfo + { + position[]={4981.0586,131.28047,5388.4351}; + angles[]={0.061920606,2.6062164,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1719; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item606 + { + dataType="Object"; + class PositionInfo + { + position[]={4973.748,131.95183,5384.0991}; + angles[]={0.12336899,2.6062164,6.2352247}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1720; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; + }; + class Item607 + { + dataType="Object"; + class PositionInfo + { + position[]={4966.4375,133.2899,5379.7627}; + angles[]={0.077841938,2.6062164,6.1186848}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1721; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item608 + { + dataType="Object"; + class PositionInfo + { + position[]={4959.127,134.98776,5375.4268}; + angles[]={0.081817582,2.6062164,6.1323385}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1722; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item609 + { + dataType="Object"; + class PositionInfo + { + position[]={4951.8154,135.89397,5371.0894}; + angles[]={0.039980642,2.6062164,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1723; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item610 + { + dataType="Object"; + class PositionInfo + { + position[]={4950.8384,135.73935,5364.4058}; + angles[]={6.1657267,1.0354202,6.1637583}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1724; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; + }; + class Item611 + { + dataType="Object"; + class PositionInfo + { + position[]={4995.1333,134.67224,5390.6797}; + angles[]={0,1.0354202,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1725; + type="Land_BarGate_F"; + atlOffset=0.25001526; + }; + class Item612 + { + dataType="Object"; + class PositionInfo + { + position[]={4961.7012,137.8158,5362.6548}; + angles[]={0,2.082617,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1726; + type="Land_TTowerSmall_1_F"; + atlOffset=1.5258789e-005; + }; + class Item613 + { + dataType="Object"; + class PositionInfo + { + position[]={5009.3623,138.61255,5347.0898}; + angles[]={0,2.6062164,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1727; + type="Land_TTowerSmall_2_F"; + atlOffset=1.5258789e-005; + }; + class Item614 + { + dataType="Object"; + class PositionInfo + { + position[]={4992.2295,131.19695,5342.1602}; + angles[]={6.2412086,2.6062121,6.2232599}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1728; + type="Land_Medevac_house_V1_F"; + }; + class Item615 + { + dataType="Object"; + class PositionInfo + { + position[]={4973.25,136.68942,5336.4238}; + angles[]={0,1.0354166,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1729; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item616 + { + dataType="Object"; + class PositionInfo + { + position[]={4981.4722,135.9039,5334.3262}; + angles[]={0,5.7478056,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1730; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=1.5258789e-005; + }; + class Item617 + { + dataType="Object"; + class PositionInfo + { + position[]={5004.0562,130.70039,5349.1743}; + angles[]={0.023993526,2.6062121,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1731; + type="Land_Cargo_House_V3_F"; + atlOffset=1.5258789e-005; + }; + class Item618 + { + dataType="Object"; + class PositionInfo + { + position[]={4966.5566,132.96648,5360.9404}; + angles[]={6.2731905,5.7478046,6.2491965}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1732; + type="Land_Cargo_House_V3_F"; + }; + class Item619 + { + dataType="Object"; + class PositionInfo + { + position[]={4989.8262,135.25639,5375.6152}; + angles[]={0,2.6062129,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1733; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item620 + { + dataType="Object"; + class PositionInfo + { + position[]={4998.0469,134.87468,5373.5151}; + angles[]={0,4.1770091,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1734; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item621 + { + dataType="Object"; + class PositionInfo + { + position[]={4977.6226,133.11581,5367.6597}; + angles[]={0.027990974,5.7478046,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1735; + type="Land_Cargo40_sand_F"; + atlOffset=-0.0090789795; + }; + class Item622 + { + dataType="Object"; + class PositionInfo + { + position[]={4976.2197,133.11925,5369.9922}; + angles[]={0.045966074,5.7478046,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1736; + type="Land_Cargo40_sand_F"; + atlOffset=-0.010482788; + }; + class Item623 + { + dataType="Object"; + class PositionInfo + { + position[]={4979.208,130.25043,5405.6401}; + angles[]={6.2651906,1.0471976,0.01399754}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1738; + type="Land_HelipadSquare_F"; + }; + class Item624 + { + dataType="Logic"; + class PositionInfo + { + position[]={3974.0549,137.22,6966.9102}; + angles[]={0,5.9237895,0}; + }; + areaSize[]={35.052307,0,20.035036}; + areaIsRectangle=1; + flags=1; + id=1739; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item625 + { + dataType="Object"; + class PositionInfo + { + position[]={3943.5986,139.26854,6967.02}; + angles[]={0,5.9131007,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1740; + type="Land_Ind_PowerStation_EP1"; + }; + class Item626 + { + dataType="Object"; + class PositionInfo + { + position[]={3958.3677,139.6519,6940.0688}; + angles[]={0,3.3316913,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1741; + type="Land_House_C_2_EP1"; + }; + class Item627 + { + dataType="Object"; + class PositionInfo + { + position[]={3991.7673,140.91721,6987.4429}; + angles[]={0,4.327312,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1742; + type="Land_House_C_12_EP1"; + }; + class Item628 + { + dataType="Object"; + class PositionInfo + { + position[]={4002.8076,138.44577,6983.001}; + angles[]={0,1.1882324,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1743; + type="Land_Shed_M01_EP1"; + }; + class Item629 + { + dataType="Object"; + class PositionInfo + { + position[]={4005.6721,137.22292,6975.7314}; + angles[]={0,1.1748385,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1744; + type="Land_Shed_W02_EP1"; + }; + class Item630 + { + dataType="Object"; + class PositionInfo + { + position[]={3968.5955,139.21735,6984.3887}; + angles[]={0,1.217692,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1745; + type="Land_Mil_Guardhouse_EP1"; + }; + class Item631 + { + dataType="Object"; + class PositionInfo + { + position[]={3960.7441,137.68597,6985.126}; + angles[]={0,2.8690193,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1748; + type="Wall_L1_2m5_EP1"; + }; + class Item632 + { + dataType="Object"; + class PositionInfo + { + position[]={3955.5203,137.68597,6983.6978}; + angles[]={0,2.8690193,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1752; + type="Wall_L1_2m5_EP1"; + }; + class Item633 + { + dataType="Object"; + class PositionInfo + { + position[]={3955.5352,139.6519,6976.6973}; + angles[]={0,5.9541774,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1753; + type="Land_House_C_2_EP1"; + }; + class Item634 + { + dataType="Logic"; + class PositionInfo + { + position[]={2234.697,131.645,6258.3159}; + angles[]={6.2571969,0,6.221261}; + }; + areaSize[]={50,0,50}; + flags=1; + id=1806; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item635 + { + dataType="Object"; + class PositionInfo + { + position[]={2214.1589,146.42068,6260.9658}; + angles[]={0,2.1352532,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1807; + type="Land_Cargo_Tower_V3_F"; + atlOffset=1.5258789e-005; + }; + class Item636 + { + dataType="Logic"; + class PositionInfo + { + position[]={657.28625,139.92299,7758.2773}; + angles[]={0.0019834081,5.5506349,0.0019834081}; + }; + areaSize[]={15.25861,0,28.56249}; + areaIsRectangle=1; + flags=1; + id=1812; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.29167175; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item637 + { + dataType="Logic"; + class PositionInfo + { + position[]={603.01758,142.4819,7713.062}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1813; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.062088; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item638 + { + dataType="Object"; + class PositionInfo + { + position[]={645.43872,139.98546,7767.0142}; + angles[]={0.0039967569,4.0140028,0.0079935296}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1814; + type="Land_HelipadSquare_F"; + }; + class Item639 + { + dataType="Object"; + class PositionInfo + { + position[]={643.93256,153.46419,7730.4453}; + angles[]={0,0.85620248,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1815; + type="Land_Cargo_Tower_V3_F"; + }; + class Item640 + { + dataType="Object"; + class PositionInfo + { + position[]={598.14868,144.33107,7708.3159}; + angles[]={0,0.017611509,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1816; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item641 + { + dataType="Object"; + class PositionInfo + { + position[]={684.2146,145.21292,7744.8657}; + angles[]={0,4.0546594,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1817; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item642 + { + dataType="Object"; + class PositionInfo + { + position[]={649.68103,144.81448,7785.9287}; + angles[]={0,2.482234,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1818; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item643 + { + dataType="Object"; + class PositionInfo + { + position[]={3792.2305,181.22032,2624.3806}; + angles[]={0,5.3929996,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1819; + type="Land_Cargo_House_V3_F"; + }; + class Item644 + { + dataType="Object"; + class PositionInfo + { + position[]={3819.6509,184.38632,2628.5649}; + angles[]={0,3.8094709,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1822; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item645 + { + dataType="Object"; + class PositionInfo + { + position[]={3804.647,179.52621,2640.978}; + angles[]={0,5.3944778,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1823; + type="Land_Medevac_house_V1_F"; + }; + class Item646 + { + dataType="Object"; + class PositionInfo + { + position[]={3806.8262,186.41046,2612.2087}; + angles[]={0,0.67313486,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1824; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item647 + { + dataType="Object"; + class PositionInfo + { + position[]={3797.0996,184.89943,2633.1458}; + angles[]={0,2.2483015,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1825; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item648 + { + dataType="Layer"; + name="Roadblock"; + class Entities + { + items=40; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6035.124,186.78815,3937.3645}; + angles[]={0.07983166,2.6220038,0.043973263}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1833; + type="Land_CncBarrier_F"; + atlOffset=0.0061950684; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6037.4102,186.78641,3938.6912}; + angles[]={0.075855196,2.6181989,0.047964405}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1834; + type="Land_CncBarrier_F"; + atlOffset=0.0055847168; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6032.6528,186.80501,3937.042}; + angles[]={0.083802827,3.3900008,6.2811723}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1835; + type="Land_CncBarrier_F"; + atlOffset=0.0061798096; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6030.7349,186.68195,3938.55}; + angles[]={0.083802827,4.2280121,6.2811723}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1836; + type="Land_CncBarrier_F"; + atlOffset=0.0059509277; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6047.0122,187.12167,3943.8547}; + angles[]={0.083805673,2.6234522,0.087771513}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1837; + type="Land_CncBarrier_F"; + atlOffset=0.0027160645; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6049.3145,187.21304,3945.1997}; + angles[]={0.077841938,2.6195428,0.087771513}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1838; + type="Land_CncBarrier_F"; + atlOffset=0.0032958984; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6050.8188,187.17249,3947.0837}; + angles[]={0.089757703,1.8807621,0.087774232}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1839; + type="Land_CncBarrier_F"; + atlOffset=0.0022735596; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6050.5015,186.9203,3949.5735}; + angles[]={0.10164732,1.042603,0.075855985}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1840; + type="Land_CncBarrier_F"; + atlOffset=0.0030212402; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6048.2056,187.51669,3942.4246}; + angles[]={0.083805673,2.6775401,0.087771513}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1841; + type="RoadBarrier_F"; + atlOffset=-0.0024719238; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6038.2563,187.1366,3936.8269}; + angles[]={0.075855196,2.5520508,0.047964405}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1842; + type="RoadBarrier_F"; + atlOffset=0.00025939941; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={5993.6958,186.77545,4040.4717}; + angles[]={0.043971907,5.7176504,0.057933778}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1853; + type="Land_CncBarrier_F"; + atlOffset=0.0061950684; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5991.4731,186.71652,4039.0415}; + angles[]={0.051955618,5.7138453,0.057933778}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1854; + type="Land_CncBarrier_F"; + atlOffset=0.0055541992; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={5996.1499,186.87901,4040.9075}; + angles[]={0.095706008,0.20246196,0.081817582}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1855; + type="Land_CncBarrier_F"; + atlOffset=0.0061798096; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={5998.1348,187.15114,4039.489}; + angles[]={0.043971907,1.0404732,0.081817582}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1856; + type="Land_CncBarrier_F"; + atlOffset=0.0059509277; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={5982.1187,185.88593,4033.4424}; + angles[]={6.2392135,5.719099,0.10164732}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1857; + type="Land_CncBarrier_F"; + atlOffset=0.0027008057; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={5979.8804,185.59854,4031.9932}; + angles[]={6.2392135,5.7151895,0.067897305}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1858; + type="Land_CncBarrier_F"; + atlOffset=0.0033111572; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={5978.4639,185.4243,4030.042}; + angles[]={6.2452068,4.976409,0.061919641}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1859; + type="Land_CncBarrier_F"; + atlOffset=0.0022735596; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5978.8955,185.41133,4027.5693}; + angles[]={6.2671871,4.1382494,0.061919641}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1860; + type="Land_CncBarrier_F"; + atlOffset=0.0030059814; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={5980.7798,185.98132,4034.7656}; + angles[]={6.2392135,5.7731867,0.10164732}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1861; + type="RoadBarrier_F"; + atlOffset=0.0019683838; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={5990.4473,186.73802,4040.8315}; + angles[]={0.043971907,5.6476974,0.057933778}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1862; + type="RoadBarrier_F"; + atlOffset=0.0005645752; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={1735.3397,129.02014,4046.252}; + angles[]={6.1677041,2.8249185,0.085787453}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2279; + type="Land_CncBarrier_F"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={1737.8463,129.33298,4047.0906}; + angles[]={6.1677041,2.8211136,0.085787453}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2280; + type="Land_CncBarrier_F"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={1732.8542,129.07622,4046.4341}; + angles[]={6.215291,3.5929155,6.2212648}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2281; + type="Land_CncBarrier_F"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={1731.2795,129.30058,4048.2976}; + angles[]={6.215291,4.4309268,6.2212648}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2282; + type="Land_CncBarrier_F"; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={1748.2919,130.60428,4050.2134}; + angles[]={6.1696773,2.8263669,0.13713144}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2283; + type="Land_CncBarrier_F"; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={1750.818,131.07434,4051.0667}; + angles[]={6.1775775,2.8224576,0.17615773}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2284; + type="Land_CncBarrier_F"; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={1752.6711,131.56602,4052.6089}; + angles[]={6.183517,2.0836768,0.17033385}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2285; + type="Land_CncBarrier_F"; + atlOffset=1.5258789e-005; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={1752.8621,131.85202,4055.1116}; + angles[]={6.1578484,1.2455177,0.17033349}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2286; + type="Land_CncBarrier_F"; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={1749.1654,130.75928,4048.5427}; + angles[]={6.2073336,2.8804548,0.13713101}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2287; + type="RoadBarrier_F"; + atlOffset=-0.0082855225; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={1738.2885,129.28604,4045.0583}; + angles[]={6.1677041,2.7549655,0.085787453}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2288; + type="RoadBarrier_F"; + atlOffset=-0.025939941; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={1719.7,134.22295,4153.6743}; + angles[]={6.1167407,5.9205651,0.09966857}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2289; + type="Land_CncBarrier_F"; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={1717.2346,133.81656,4152.7207}; + angles[]={6.1245298,5.91676,0.09174265}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2290; + type="Land_CncBarrier_F"; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={1722.1915,134.46712,4153.6064}; + angles[]={6.1089687,0.40537667,0.10758467}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2291; + type="Land_CncBarrier_F"; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={1723.8497,134.33124,4151.8169}; + angles[]={6.1089687,1.2433879,0.10758467}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2292; + type="Land_CncBarrier_F"; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={1706.9436,132.57405,4149.1221}; + angles[]={6.173625,5.9220138,0.053948916}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2293; + type="Land_CncBarrier_F"; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={1704.4592,132.32893,4148.1533}; + angles[]={6.1637583,5.9181042,0.027993103}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2294; + type="Land_CncBarrier_F"; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={1702.6786,132.10306,4146.5278}; + angles[]={6.1874795,5.1793237,0.0040116427}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2295; + type="Land_CncBarrier_F"; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={1702.603,131.85408,4144.019}; + angles[]={6.1795573,4.3411641,0.0040116427}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2296; + type="Land_CncBarrier_F"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={1705.8921,132.86777,4150.6953}; + angles[]={6.1519437,5.9761014,0.053948916}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2297; + type="RoadBarrier_F"; + atlOffset=-0.014450073; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={1716.5851,134.24756,4154.6787}; + angles[]={6.1167407,5.8506122,0.09966857}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2298; + type="RoadBarrier_F"; + atlOffset=-0.014144897; + }; + }; + id=1843; + atlOffset=0.15333557; + }; + class Item649 + { + dataType="Layer"; + name="Hasty Roadblock"; + id=1851; + atlOffset=-182.61; + }; + class Item650 + { + dataType="Layer"; + name="Check Point (Large)"; + id=1869; + atlOffset=-182.61; + }; + class Item651 + { + dataType="Layer"; + name="Check Point (Medium)"; + id=1874; + atlOffset=-182.61; + }; + class Item652 + { + dataType="Layer"; + name="Check Point (Small)"; + id=1879; + atlOffset=-182.61; + }; + class Item653 + { + dataType="Layer"; + name="Camp Fortitude"; + id=1930; + atlOffset=-182.61; + }; + class Item654 + { + dataType="Layer"; + name="Camp Endurance"; + id=1981; + atlOffset=-182.61; + }; + class Item655 + { + dataType="Layer"; + name="Camp Defiance"; + id=2031; + atlOffset=-182.61; + }; + class Item656 + { + dataType="Layer"; + name="Camp Courage"; + id=2084; + atlOffset=-182.61; + }; + class Item657 + { + dataType="Layer"; + name="Camp Bravery"; + id=2134; + atlOffset=-182.61; + }; + class Item658 + { + dataType="Layer"; + name="Camp Audacity"; + id=2191; + atlOffset=-182.61; + }; + class Item659 + { + dataType="Layer"; + name="Camp Endurance"; + class Entities + { + items=88; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5998.4785,187.27901,3976.3289}; + angles[]={0.047963165,2.5872016,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2192; + type="Land_HBarrier_5_F"; + atlOffset=0.044036865; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6001.4287,186.96535,3980.1665}; + angles[]={0.047960676,1.871634,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2193; + type="Land_HBarrier_5_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={5986.9321,186.35675,3996.1211}; + angles[]={0.051955618,2.5767121,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2194; + type="Land_HBarrier_5_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5991.293,186.30118,3996.6829}; + angles[]={0.049958061,0.27891642,6.2792039}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2195; + type="Land_HBarrier_5_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5977.4907,186.88173,3990.0913}; + angles[]={0.04596737,5.7245131,6.2372179}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2196; + type="Land_HBarrier_5_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5974.9751,187.29805,3981.9585}; + angles[]={0.03798322,1.0235612,6.2053437}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2197; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5974.5024,187.16962,3986.353}; + angles[]={0.035985984,5.008935,6.2073302}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2198; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5980.7842,187.49242,3972.667}; + angles[]={0.051952176,4.1318007,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2199; + type="Land_HBarrier_5_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={5988.9565,187.51086,3970.5354}; + angles[]={0.051952176,5.7140207,6.2691903}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2200; + type="Land_HBarrier_5_F"; + atlOffset=0.013595581; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={5995.1211,186.4288,3993.7551}; + angles[]={0.047960676,1.0235612,6.2711902}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2204; + type="Land_HBarrier_5_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6000.7686,186.78728,3984.4358}; + angles[]={0.04596737,1.0235612,6.2452021}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2205; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5977.8364,187.36829,3977.3794}; + angles[]={0.043971907,1.0235612,6.2412086}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2206; + type="Land_HBarrier_5_F"; + atlOffset=0.0015869141; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={5982.1313,186.59081,3993.0752}; + angles[]={0.04796192,5.7222528,6.261188}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2207; + type="Land_HBarrier_5_F"; + atlOffset=0.0048065186; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={5993.6587,187.362,3973.4995}; + angles[]={0.013995145,5.7245131,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2208; + type="Land_HBarrier_5_F"; + atlOffset=0.00047302246; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={5990.9507,186.70743,3995.5012}; + angles[]={0,0.2923556,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=2229; + type="Land_PortableLight_double_F"; + atlOffset=0.0024871826; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={5998.8105,187.13773,3985.2549}; + angles[]={0,3.8539968,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=2230; + type="Land_PortableLight_double_F"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={5988.5435,187.30954,3973.1248}; + angles[]={0.033985451,3.3527727,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2231; + type="Land_PaperBox_closed_F"; + atlOffset=0.008392334; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5988.1543,187.23915,3975.1116}; + angles[]={0.043971907,5.405797,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2232; + type="Land_PaperBox_closed_F"; + atlOffset=0.0082397461; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={5998.5791,186.88641,3982.2605}; + angles[]={0.047960676,4.1626921,6.2691903}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2233; + type="Land_WaterTank_F"; + atlOffset=-0.00073242188; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={5983.9297,187.0518,3992.031}; + angles[]={0.04796192,5.7335033,6.261188}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2234; + type="Land_ToiletBox_F"; + atlOffset=-0.026016235; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={5986.4175,187.4895,3969.1152}; + angles[]={6.2332273,4.9364939,6.2691903}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2235; + type="Land_HBarrier_1_F"; + atlOffset=0.011489868; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={5982.5195,187.56088,3970.29}; + angles[]={0.051952176,5.0309496,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2236; + type="Land_HBarrier_1_F"; + atlOffset=0.0041046143; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={5984.2266,194.59277,3987.5916}; + angles[]={0,4.1694298,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=2237; + type="Land_TTowerSmall_2_F"; + atlOffset=0.062606812; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={5987.6294,186.34651,3993.4995}; + angles[]={0.049958061,0.77029663,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2238; + type="Land_GarbageBarrel_01_F"; + atlOffset=-0.01210022; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={5986.0889,186.95978,3993.3599}; + angles[]={0.047960676,5.7335491,6.2771854}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2239; + type="Land_ToiletBox_F"; + atlOffset=-0.023910522; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={6020.314,187.45563,3943.2542}; + angles[]={0.057932746,2.5872016,6.1874795}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2243; + type="Land_HBarrier_5_F"; + atlOffset=0.044036865; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={6023.2642,186.93053,3947.0918}; + angles[]={0.045969963,1.871634,6.1934252}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2244; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={6005.8716,187.33449,3967.9807}; + angles[]={0.02999169,2.5767121,6.2412086}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2245; + type="Land_HBarrier_5_F"; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={6010.2324,187.03923,3968.5425}; + angles[]={0.053944495,0.27891642,6.1973982}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2246; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={5996.4302,186.96777,3961.9509}; + angles[]={6.261188,5.7245131,0.03798322}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2247; + type="Land_HBarrier_5_F"; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={5993.9146,187.34517,3953.8181}; + angles[]={0.176155,1.0235612,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2248; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={5993.4419,186.99234,3958.2126}; + angles[]={0.041973971,5.008935,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2249; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={6002.6196,189.45201,3939.5923}; + angles[]={0.067894675,4.1318007,6.2312298}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2250; + type="Land_HBarrier_5_F"; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={6010.792,188.92838,3937.4607}; + angles[]={0.069887079,5.7140207,6.1657295}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2251; + type="Land_HBarrier_5_F"; + atlOffset=0.013595581; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={5999.6719,189.1505,3944.3047}; + angles[]={0.087774232,1.0235612,0.09966857}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2257; + type="Land_HBarrier_5_F"; + atlOffset=0.0015869141; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={6001.0708,187.21504,3964.9348}; + angles[]={0.017997233,5.7222528,0.063914195}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2258; + type="Land_HBarrier_5_F"; + atlOffset=0.0048065186; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={6015.4941,188.14532,3940.4248}; + angles[]={0.061923493,5.7245131,6.1637549}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2259; + type="Land_HBarrier_5_F"; + atlOffset=0.00047302246; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={6006.3774,189.39001,3936.8196}; + angles[]={0.067895547,0.27891642,6.1914454}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2271; + type="Land_HBarrier_5_F"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={5996.7837,188.23508,3949.0835}; + angles[]={0.16644771,1.0235612,0.061920606}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2272; + type="Land_HBarrier_5_F"; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={5993.8218,187.12672,3979.9553}; + angles[]={0,2.5804472,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2273; + type="Land_Cargo_House_V3_F"; + atlOffset=0.074584961; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={5981.6763,186.83365,3986.488}; + angles[]={0,5.7205095,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2274; + type="Land_Cargo_House_V3_F"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={5979.061,191.45154,3978.0659}; + angles[]={0,1.0252064,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2275; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=0.0020141602; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={5982.6196,190.24649,4028.0103}; + angles[]={6.2551923,2.5606837,0.10164732}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2276; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={6046.0869,191.13322,3949.1597}; + angles[]={0.089757703,5.785562,0.075852051}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2277; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={1706.1356,130.95389,4103.0615}; + angles[]={0.057933778,2.7901163,6.2312331}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2299; + type="Land_HBarrier_5_F"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={1709.7987,130.63074,4106.2261}; + angles[]={0.039977662,2.0745487,6.2372155}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2300; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={1698.8147,131.24611,4124.7744}; + angles[]={6.2551923,2.7796268,6.1973982}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2301; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={1703.1993,130.87906,4124.4463}; + angles[]={6.2551923,0.48183107,6.2033539}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2302; + type="Land_HBarrier_5_F"; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={1688.3519,132.00195,4120.7715}; + angles[]={6.2711902,5.9274278,6.2212629}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2303; + type="Land_HBarrier_5_F"; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={1684.2489,132.27443,4113.3125}; + angles[]={0.017997233,1.226476,6.2252507}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2304; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={1684.6716,132.21564,4117.7124}; + angles[]={0,5.2118497,6.2372193}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2305; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={1688.0663,132.3533,4103.041}; + angles[]={0.055941612,4.3347154,6.209321}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2306; + type="Land_HBarrier_5_F"; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={1695.6415,131.96935,4099.3062}; + angles[]={0.075855196,5.9169354,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2307; + type="Land_HBarrier_5_F"; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={1706.3589,130.57059,4120.8071}; + angles[]={6.2551923,1.226476,6.2372179}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2308; + type="Land_HBarrier_5_F"; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={1710.0125,130.45966,4110.5405}; + angles[]={0.019996032,1.226476,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2309; + type="Land_HBarrier_5_F"; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={1686.1288,132.26994,4108.251}; + angles[]={0.035982672,1.226476,6.209321}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2310; + type="Land_HBarrier_5_F"; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={1693.4985,131.65131,4122.7583}; + angles[]={6.261188,5.9251676,6.2033529}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2311; + type="Land_HBarrier_5_F"; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={1700.8445,131.41904,4101.2617}; + angles[]={0.055941612,5.9274278,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2312; + type="Land_HBarrier_5_F"; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={1702.626,131.23776,4123.3579}; + angles[]={0,0.49527025,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=2313; + type="Land_PortableLight_double_F"; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={1708.2595,130.85913,4111.7373}; + angles[]={0,4.0569115,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=2314; + type="Land_PortableLight_double_F"; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={1695.7587,131.70166,4101.9253}; + angles[]={0.055941612,3.5556874,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2315; + type="Land_PaperBox_closed_F"; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={1695.7778,131.58667,4103.9497}; + angles[]={0.055941612,5.6087117,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2316; + type="Land_PaperBox_closed_F"; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={1707.4501,130.56685,4108.8643}; + angles[]={0.039977662,4.3656068,6.2372155}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2317; + type="Land_WaterTank_F"; + atlOffset=-0.012069702; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={1695.0643,131.97594,4121.377}; + angles[]={6.2611909,5.9364181,6.1914454}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2318; + type="Land_ToiletBox_F"; + atlOffset=-0.0033721924; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={1692.8683,132.22647,4098.4268}; + angles[]={0.075854406,5.1394086,6.2013679}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2319; + type="Land_HBarrier_1_F"; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={1689.2871,132.37453,4100.3628}; + angles[]={0.055941612,5.2338643,6.209321}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2320; + type="Land_HBarrier_1_F"; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={1694.4458,139.26169,4116.9653}; + angles[]={0,4.3723445,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=2321; + type="Land_TTowerSmall_2_F"; + atlOffset=0.018539429; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={1698.9719,131.03261,4122.0742}; + angles[]={6.2551923,0.97321129,6.1973982}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2322; + type="Land_GarbageBarrel_01_F"; + atlOffset=-0.00022888184; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={1697.4373,131.78038,4122.2554}; + angles[]={6.2611909,5.9364638,6.1914454}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2323; + type="Land_ToiletBox_F"; + atlOffset=-0.00053405762; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={1720.8577,131.71552,4066.2651}; + angles[]={6.2352238,2.7901163,6.2531919}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2324; + type="Land_HBarrier_5_F"; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={1724.5208,131.797,4069.4294}; + angles[]={6.2252488,2.0745487,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2325; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={1711.6946,131.30632,4093.395}; + angles[]={0.057937894,2.7796268,6.261188}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2326; + type="Land_HBarrier_5_F"; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={1716.0792,131.25266,4093.0664}; + angles[]={0.057936866,0.48183107,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2327; + type="Land_HBarrier_5_F"; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={1701.2318,132.29323,4089.3916}; + angles[]={0.07983166,5.9274278,6.1973953}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2328; + type="Land_HBarrier_5_F"; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={1697.1288,133.29301,4081.9326}; + angles[]={0.07982792,1.226476,6.1835165}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2329; + type="Land_HBarrier_5_F"; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={1697.5514,132.89568,4086.332}; + angles[]={0.089757703,5.2118497,6.1874762}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2330; + type="Land_HBarrier_5_F"; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={1702.7885,133.19081,4066.2441}; + angles[]={6.2711854,4.3347154,6.1637559}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2331; + type="Land_HBarrier_5_F"; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={1710.3635,132.15775,4062.5095}; + angles[]={6.2113094,5.9169354,6.191442}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2332; + type="Land_HBarrier_5_F"; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={1700.8508,133.4357,4071.4541}; + angles[]={0.025994543,1.226476,6.1696739}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2333; + type="Land_HBarrier_5_F"; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={1706.3785,131.7247,4091.3789}; + angles[]={0.077841938,5.9251676,6.219274}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2334; + type="Land_HBarrier_5_F"; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={1715.5665,131.86504,4064.4651}; + angles[]={6.1973953,5.9274278,6.2312331}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2335; + type="Land_HBarrier_5_F"; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={1705.9104,132.66489,4062.7712}; + angles[]={6.2212648,0.48183107,6.165729}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2336; + type="Land_HBarrier_5_F"; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={1698.9849,133.44588,4076.7168}; + angles[]={0.055941612,1.226476,6.183517}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2337; + type="Land_HBarrier_5_F"; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={1702.3052,130.98299,4107.5522}; + angles[]={0.037981652,2.7833619,6.209321}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2338; + type="Land_Cargo_House_V3_F"; + atlOffset=0.030548096; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={1691.7253,131.68066,4116.3984}; + angles[]={6.2791886,5.9234242,6.1993828}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2339; + type="Land_Cargo_House_V3_F"; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={1687.4666,136.32469,4108.6763}; + angles[]={0.031990308,1.2281212,6.2132983}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2340; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={1706.34,136.41229,4143.7012}; + angles[]={0,2.7636068,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2341; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={1734.751,134.06857,4051.0129}; + angles[]={0,5.9884691,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2342; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-1.5258789e-005; + }; + }; + id=2242; + atlOffset=-0.51138306; + }; + class Item660 + { + dataType="Object"; + class PositionInfo + { + position[]={6008.1646,187.23492,3954.0344}; + angles[]={0.061919641,4.2157087,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2278; + type="Land_HelipadSquare_F"; + }; + class Item661 + { + dataType="Object"; + class PositionInfo + { + position[]={1711.13,131.46999,4079.2727}; + angles[]={0.031988446,4.4186234,6.2272449}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2343; + type="Land_HelipadSquare_F"; + }; + class Item662 + { + dataType="Logic"; + class PositionInfo + { + position[]={601.16974,125.52169,5341.7881}; + angles[]={0,6.2341757,0}; + }; + areaSize[]={15.970406,0,31.309999}; + areaIsRectangle=1; + flags=1; + id=2344; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.0046691895; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=11; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item663 + { + dataType="Logic"; + class PositionInfo + { + position[]={637.92902,128.63306,5378.4258}; + angles[]={6.1894612,6.2075253,0.01399754}; + }; + areaSize[]={16.249001,0,9.4619999}; + areaIsRectangle=1; + flags=1; + id=2345; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item664 + { + dataType="Object"; + class PositionInfo + { + position[]={611.3537,129.19513,5333.0034}; + angles[]={0,6.2619452,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2346; + type="Land_Ind_PowerStation_EP1"; + atlOffset=0.77583313; + }; + class Item665 + { + dataType="Object"; + class PositionInfo + { + position[]={602.04669,128.65479,5357.5786}; + angles[]={0.0039967569,4.7067165,0.0039967569}; + }; + side="Empty"; + class Attributes + { + }; + id=2347; + type="Land_House_C_2_EP1"; + atlOffset=0.71500397; + }; + class Item666 + { + dataType="Logic"; + class PositionInfo + { + position[]={2356.2043,143.92323,8668.9473}; + }; + areaSize[]={25.473755,0,15.017578}; + flags=1; + id=2348; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.027816772; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item667 + { + dataType="Object"; + class PositionInfo + { + position[]={2344.5586,147.0947,8669.0381}; + angles[]={6.2671871,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2349; + type="Land_House_C_3_dam_EP1"; + }; + class Item668 + { + dataType="Logic"; + class PositionInfo + { + position[]={2374.5659,144.0793,8650.2598}; + }; + areaSize[]={17.262451,0,12.098145}; + flags=1; + id=2350; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.034667969; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item669 + { + dataType="Object"; + class PositionInfo + { + position[]={2387.7778,145.17418,8663.0742}; + angles[]={0,0.45482829,0}; + }; + side="Empty"; + class Attributes + { + }; + id=2351; + type="Land_House_C_1_v2_EP1"; + atlOffset=0.34170532; + }; + class Item670 + { + dataType="Logic"; + class PositionInfo + { + position[]={2386.0908,143.36397,8668.2031}; + angles[]={6.2591896,0,0.033987202}; + }; + areaSize[]={17.262451,0,12.098145}; + flags=1; + id=2352; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item671 + { + dataType="Marker"; + position[]={4456.8687,190.47711,3606.6189}; + name="Synd_HQ"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorPink"; + a=50; + b=50; + id=2353; + }; + class Item672 + { + dataType="Marker"; + position[]={4463.71,2.7037606e+012,3610.7322}; + name="respawn_guerrila"; + text="Your Headquarters"; + type="hd_flag"; + colorName="ColorGUER"; + id=2354; + atlOffset=2.7037606e+012; + }; + class Item673 + { + dataType="Marker"; + position[]={5205.9829,154.868,5194.752}; + name="island_1"; + markerType="RECTANGLE"; + type="rectangle"; + fillName="Border"; + a=5135.3979; + b=5166.2832; + drawBorder=1; + id=2440; + atlOffset=-0.71340942; + }; + class Item674 + { + dataType="Marker"; + position[]={7903.9082,112.85633,6730.4644}; + name="road"; + type="hd_arrow"; + angle=227.508; + id=2442; + }; + class Item675 + { + dataType="Marker"; + position[]={7323.8711,86.567894,6915.7256}; + name="road_1"; + type="hd_arrow"; + angle=227.508; + id=2443; + }; + class Item676 + { + dataType="Marker"; + position[]={6799.0586,100.56138,7111.6851}; + name="road_2"; + type="hd_arrow"; + angle=227.508; + id=2444; + }; + class Item677 + { + dataType="Marker"; + position[]={5934.9629,113.91276,7145.8306}; + name="road_3"; + type="hd_arrow"; + angle=227.508; + id=2445; + }; + class Item678 + { + dataType="Marker"; + position[]={5257.1509,115.4539,7035.2681}; + name="road_4"; + type="hd_arrow"; + angle=227.508; + id=2446; + }; + class Item679 + { + dataType="Marker"; + position[]={4598.3291,136.91579,6981.1094}; + name="road_5"; + type="hd_arrow"; + angle=227.508; + id=2447; + }; + class Item680 + { + dataType="Marker"; + position[]={4050.3445,136.64241,6907.9141}; + name="road_6"; + type="hd_arrow"; + angle=227.508; + id=2448; + }; + class Item681 + { + dataType="Marker"; + position[]={4166.0698,136.03134,6484.4424}; + name="road_7"; + type="hd_arrow"; + angle=227.508; + id=2449; + }; + class Item682 + { + dataType="Marker"; + position[]={4293.9258,137.30052,6021.228}; + name="road_8"; + type="hd_arrow"; + angle=227.508; + id=2450; + }; + class Item683 + { + dataType="Marker"; + position[]={4311.5908,133.75879,5660.5771}; + name="road_9"; + type="hd_arrow"; + angle=227.508; + id=2451; + }; + class Item684 + { + dataType="Marker"; + position[]={3989.1768,127.41193,5219.5762}; + name="road_10"; + type="hd_arrow"; + angle=227.508; + id=2452; + atlOffset=-7.6293945e-006; + }; + class Item685 + { + dataType="Marker"; + position[]={3498.0703,156.86731,4549.0088}; + name="road_11"; + type="hd_arrow"; + angle=227.508; + id=2453; + }; + class Item686 + { + dataType="Marker"; + position[]={4105.0332,156.6432,4759.7324}; + name="road_12"; + type="hd_arrow"; + angle=227.508; + id=2454; + }; + class Item687 + { + dataType="Marker"; + position[]={5184.0425,165.94556,5099.5479}; + name="road_13"; + type="hd_arrow"; + angle=227.508; + id=2455; + }; + class Item688 + { + dataType="Marker"; + position[]={6080.3027,192.04518,3845.8979}; + name="road_14"; + type="hd_arrow"; + angle=227.508; + id=2456; + }; + class Item689 + { + dataType="Marker"; + position[]={7111.9653,297.34232,3385.6274}; + name="road_15"; + type="hd_arrow"; + angle=227.508; + id=2457; + }; + class Item690 + { + dataType="Marker"; + position[]={8513.8281,171.41595,3848.6235}; + name="road_16"; + type="hd_arrow"; + angle=227.508; + id=2458; + }; + class Item691 + { + dataType="Marker"; + position[]={8164.748,123.16555,4348.8281}; + name="road_17"; + type="hd_arrow"; + angle=227.508; + id=2459; + }; + class Item692 + { + dataType="Marker"; + position[]={8437.4014,77.830002,5358.4033}; + name="road_18"; + type="hd_arrow"; + angle=227.508; + id=2460; + }; + class Item693 + { + dataType="Marker"; + position[]={6869.1094,119.71,5586.9019}; + name="road_19"; + type="hd_arrow"; + angle=227.508; + id=2461; + }; + class Item694 + { + dataType="Marker"; + position[]={7109.1108,103.3672,6243.3799}; + name="road_20"; + type="hd_arrow"; + angle=227.508; + id=2462; + atlOffset=7.6293945e-006; + }; + class Item695 + { + dataType="Marker"; + position[]={7198.2852,84.688133,6676.1284}; + name="road_21"; + type="hd_arrow"; + angle=227.508; + id=2463; + }; + class Item696 + { + dataType="Marker"; + position[]={5471.2114,117.53523,6318.8008}; + name="road_22"; + type="hd_arrow"; + angle=227.508; + id=2464; + }; + class Item697 + { + dataType="Marker"; + position[]={1387.6671,149.92709,9917.2793}; + name="road_23"; + type="hd_arrow"; + angle=227.508; + id=2465; + }; + class Item698 + { + dataType="Marker"; + position[]={1334.3232,148.04881,9595.8418}; + name="road_24"; + type="hd_arrow"; + angle=227.508; + id=2466; + }; + class Item699 + { + dataType="Marker"; + position[]={1330.6385,143.92969,9004.543}; + name="road_25"; + type="hd_arrow"; + angle=227.508; + id=2467; + }; + class Item700 + { + dataType="Marker"; + position[]={1301.5686,139.1483,8400.9688}; + name="road_26"; + type="hd_arrow"; + angle=227.508; + id=2468; + }; + class Item701 + { + dataType="Marker"; + position[]={1310.5763,142.33211,8129.2568}; + name="road_27"; + type="hd_arrow"; + angle=227.508; + id=2469; + }; + class Item702 + { + dataType="Marker"; + position[]={1249.5706,140.64145,7850.9985}; + name="road_28"; + type="hd_arrow"; + angle=227.508; + id=2470; + }; + class Item703 + { + dataType="Marker"; + position[]={1224.595,138.6162,7469.2114}; + name="road_29"; + type="hd_arrow"; + angle=227.508; + id=2471; + }; + class Item704 + { + dataType="Marker"; + position[]={1366.6693,138.04636,7224.0986}; + name="road_30"; + type="hd_arrow"; + angle=227.508; + id=2472; + }; + class Item705 + { + dataType="Marker"; + position[]={1007.8506,137.33551,7154.0308}; + name="road_31"; + type="hd_arrow"; + angle=227.508; + id=2473; + }; + class Item706 + { + dataType="Marker"; + position[]={1032.4167,134.16518,6830.2832}; + name="road_32"; + type="hd_arrow"; + angle=227.508; + id=2474; + }; + class Item707 + { + dataType="Marker"; + position[]={1018.4197,133.41061,6320.6797}; + name="road_33"; + type="hd_arrow"; + angle=227.508; + id=2475; + }; + class Item708 + { + dataType="Marker"; + position[]={1088.1899,138.78212,7986.2041}; + name="road_34"; + type="hd_arrow"; + angle=227.508; + id=2476; + }; + class Item709 + { + dataType="Marker"; + position[]={632.86353,140.09219,7682.8276}; + name="road_35"; + type="hd_arrow"; + angle=227.508; + id=2477; + }; + class Item710 + { + dataType="Marker"; + position[]={607.58344,129.61633,5654.9023}; + name="road_36"; + type="hd_arrow"; + angle=227.508; + id=2478; + }; + class Item711 + { + dataType="Marker"; + position[]={493.11285,131.63519,5653.5801}; + name="road_37"; + type="hd_arrow"; + angle=227.508; + id=2479; + }; + class Item712 + { + dataType="Marker"; + position[]={497.08289,130.13283,6095.3311}; + name="road_38"; + type="hd_arrow"; + angle=227.508; + id=2480; + }; + class Item713 + { + dataType="Marker"; + position[]={497.08289,134.84021,6626.3579}; + name="road_39"; + type="hd_arrow"; + angle=227.508; + id=2481; + }; + class Item714 + { + dataType="Marker"; + position[]={2234.9827,131.32094,6249.5107}; + name="road_40"; + type="hd_arrow"; + angle=227.508; + id=2482; + }; + class Item715 + { + dataType="Marker"; + position[]={2001.4194,134.0605,5873.085}; + name="road_41"; + type="hd_arrow"; + angle=227.508; + id=2483; + }; + class Item716 + { + dataType="Marker"; + position[]={1667.4977,127.30618,5458.4121}; + name="road_42"; + type="hd_arrow"; + angle=227.508; + id=2484; + }; + class Item717 + { + dataType="Marker"; + position[]={1269.6084,128.23842,5377.4717}; + name="road_43"; + type="hd_arrow"; + angle=227.508; + id=2485; + }; + class Item718 + { + dataType="Marker"; + position[]={1195.0776,129.06998,5669.5605}; + name="road_44"; + type="hd_arrow"; + angle=227.508; + id=2486; + }; + class Item719 + { + dataType="Marker"; + position[]={1296.5265,119.59484,4615.2046}; + name="road_45"; + type="hd_arrow"; + angle=227.508; + id=2487; + }; + class Item720 + { + dataType="Marker"; + position[]={670.37024,129.51768,5245.6885}; + name="road_46"; + type="hd_arrow"; + angle=227.508; + id=2488; + }; + class Item721 + { + dataType="Marker"; + position[]={718.25586,136.47786,4840.4531}; + name="road_47"; + type="hd_arrow"; + angle=227.508; + id=2489; + }; + class Item722 + { + dataType="Marker"; + position[]={625.70154,146.29971,4320.8936}; + name="road_48"; + type="hd_arrow"; + angle=227.508; + id=2490; + }; + class Item723 + { + dataType="Marker"; + position[]={1003.7279,140.34142,4226.8945}; + name="road_49"; + type="hd_arrow"; + angle=227.508; + id=2491; + }; + class Item724 + { + dataType="Marker"; + position[]={1690.7842,138.47931,4250.4858}; + name="road_50"; + type="hd_arrow"; + angle=227.508; + id=2492; + }; + class Item725 + { + dataType="Marker"; + position[]={1711.3572,140.07838,3499.3176}; + name="road_51"; + type="hd_arrow"; + angle=227.508; + id=2493; + }; + class Item726 + { + dataType="Marker"; + position[]={2396.4524,150.98032,2909.439}; + name="road_52"; + type="hd_arrow"; + angle=227.508; + id=2494; + }; + class Item727 + { + dataType="Marker"; + position[]={2532.7585,147.06201,2408.1714}; + name="road_53"; + type="hd_arrow"; + angle=227.508; + id=2495; + }; + class Item728 + { + dataType="Marker"; + position[]={1828.1792,146.1882,2670.2324}; + name="road_54"; + type="hd_arrow"; + angle=227.508; + id=2496; + }; + class Item729 + { + dataType="Marker"; + position[]={2023.8654,146.48511,3105.2002}; + name="road_55"; + type="hd_arrow"; + angle=227.508; + id=2497; + }; + class Item730 + { + dataType="Marker"; + position[]={1815.3469,145.25621,3061.3831}; + name="road_56"; + type="hd_arrow"; + angle=227.508; + id=2498; + }; + class Item731 + { + dataType="Marker"; + position[]={1703.0679,147.32896,2496.0315}; + name="road_57"; + type="hd_arrow"; + angle=227.508; + id=2499; + }; + class Item732 + { + dataType="Marker"; + position[]={1220.1426,135.45865,2249.2852}; + name="road_58"; + type="hd_arrow"; + angle=227.508; + id=2500; + }; + class Item733 + { + dataType="Marker"; + position[]={1980.1057,159.39584,1481.7572}; + name="road_59"; + type="hd_arrow"; + angle=227.508; + id=2501; + }; + class Item734 + { + dataType="Marker"; + position[]={2259.644,167.59979,975.36682}; + name="road_60"; + type="hd_arrow"; + angle=227.508; + id=2502; + }; + class Item735 + { + dataType="Marker"; + position[]={2965.1685,175.48628,944.91028}; + name="road_61"; + type="hd_arrow"; + angle=227.508; + id=2503; + }; + class Item736 + { + dataType="Marker"; + position[]={3706.5171,211.99948,678.42163}; + name="road_62"; + type="hd_arrow"; + angle=227.508; + id=2504; + }; + class Item737 + { + dataType="Marker"; + position[]={4384.8394,220.06963,1104.856}; + name="road_63"; + type="hd_arrow"; + angle=227.508; + id=2505; + }; + class Item738 + { + dataType="Marker"; + position[]={5227.6973,213.57674,1423.5925}; + name="road_64"; + type="hd_arrow"; + angle=227.508; + id=2506; + }; + class Item739 + { + dataType="Marker"; + position[]={5238.0396,232.59465,1016.2347}; + name="road_65"; + type="hd_arrow"; + angle=227.508; + id=2507; + atlOffset=-1.5258789e-005; + }; + class Item740 + { + dataType="Marker"; + position[]={5704.7266,255.02541,1012.2681}; + name="road_66"; + type="hd_arrow"; + angle=227.508; + id=2508; + atlOffset=1.5258789e-005; + }; + class Item741 + { + dataType="Marker"; + position[]={5837.0576,199.00586,1784.3237}; + name="road_67"; + type="hd_arrow"; + angle=227.508; + id=2509; + }; + class Item742 + { + dataType="Marker"; + position[]={6457.5757,213.05002,2384.4951}; + name="road_68"; + type="hd_arrow"; + angle=227.508; + id=2510; + }; + class Item743 + { + dataType="Marker"; + position[]={6962.1753,214.38515,2260.9766}; + name="road_69"; + type="hd_arrow"; + angle=227.508; + id=2511; + }; + class Item744 + { + dataType="Marker"; + position[]={7602.582,140.57263,1809.7522}; + name="road_70"; + type="hd_arrow"; + angle=227.508; + id=2512; + }; + class Item745 + { + dataType="Marker"; + position[]={8030.5215,107.27513,1645.9631}; + name="road_71"; + type="hd_arrow"; + angle=227.508; + id=2513; + }; + class Item746 + { + dataType="Marker"; + position[]={8583.9082,102.97036,1955.4364}; + name="road_72"; + type="hd_arrow"; + angle=227.508; + id=2514; + }; + class Item747 + { + dataType="Marker"; + position[]={8896.207,79.46431,2107.3359}; + name="road_73"; + type="hd_arrow"; + angle=227.508; + id=2515; + }; + class Item748 + { + dataType="Marker"; + position[]={7926.4448,145.50204,3005.2192}; + name="road_74"; + type="hd_arrow"; + angle=227.508; + id=2516; + }; + class Item749 + { + dataType="Marker"; + position[]={8723.748,96.189384,2329.0857}; + name="road_75"; + type="hd_arrow"; + angle=227.508; + id=2517; + }; + class Item750 + { + dataType="Marker"; + position[]={8637.0049,126.93756,2855.2544}; + name="road_76"; + type="hd_arrow"; + angle=227.508; + id=2518; + }; + class Item751 + { + dataType="Marker"; + position[]={8585.2715,170.22696,3297.0752}; + name="road_77"; + type="hd_arrow"; + angle=227.508; + id=2519; + }; + class Item752 + { + dataType="Marker"; + position[]={7989.5586,179.58904,3757.5752}; + name="road_78"; + type="hd_arrow"; + angle=227.508; + id=2520; + }; + class Item753 + { + dataType="Marker"; + position[]={9511.6738,67.452042,2194.2134}; + name="road_79"; + type="hd_arrow"; + angle=227.508; + id=2521; + }; + class Item754 + { + dataType="Marker"; + position[]={9349.1367,93.910873,2729.6411}; + name="road_80"; + type="hd_arrow"; + angle=227.508; + id=2522; + }; + class Item755 + { + dataType="Marker"; + position[]={9592.9443,126.63605,3093.0059}; + name="road_81"; + type="hd_arrow"; + angle=227.508; + id=2523; + }; + class Item756 + { + dataType="Marker"; + position[]={9085.0156,196.46713,3459.5771}; + name="road_82"; + type="hd_arrow"; + angle=227.508; + id=2524; + }; + class Item757 + { + dataType="Marker"; + position[]={8997.2793,142.84566,4040.981}; + name="road_83"; + type="hd_arrow"; + angle=227.508; + id=2525; + }; + class Item758 + { + dataType="Marker"; + position[]={8866.8213,101.86787,4453.5083}; + name="road_84"; + type="hd_arrow"; + angle=227.508; + id=2526; + atlOffset=-7.6293945e-006; + }; + class Item759 + { + dataType="Marker"; + position[]={9083.8955,69.852875,4807.2549}; + name="road_85"; + type="hd_arrow"; + angle=227.508; + id=2527; + }; + class Item760 + { + dataType="Marker"; + position[]={8444.5234,64.285133,5793.0068}; + name="road_86"; + type="hd_arrow"; + angle=227.508; + id=2528; + }; + class Item761 + { + dataType="Marker"; + position[]={8628.7813,58.664654,5953.749}; + name="road_87"; + type="hd_arrow"; + angle=227.508; + id=2529; + }; + class Item762 + { + dataType="Marker"; + position[]={8071.8501,54.827595,6183.1582}; + name="road_88"; + type="hd_arrow"; + angle=227.508; + id=2530; + }; + class Item763 + { + dataType="Marker"; + position[]={7310.3945,71.54364,6630.9873}; + name="road_89"; + type="hd_arrow"; + angle=227.508; + id=2531; + }; + class Item764 + { + dataType="Marker"; + position[]={8470.6318,111.42742,7542.2656}; + name="road_90"; + type="hd_arrow"; + angle=227.508; + id=2532; + }; + class Item765 + { + dataType="Marker"; + position[]={8473.1465,120.76546,8042.9487}; + name="road_91"; + type="hd_arrow"; + angle=227.508; + id=2533; + }; + class Item766 + { + dataType="Marker"; + position[]={8254.2109,188.7316,8695.6621}; + name="road_92"; + type="hd_arrow"; + angle=227.508; + id=2534; + }; + class Item767 + { + dataType="Marker"; + position[]={8953.625,142.82301,8649.25}; + name="road_93"; + type="hd_arrow"; + angle=227.508; + id=2535; + }; + class Item768 + { + dataType="Marker"; + position[]={8958.3223,116.90911,9111.4336}; + name="road_94"; + type="hd_arrow"; + angle=227.508; + id=2536; + }; + class Item769 + { + dataType="Marker"; + position[]={6623.98,101.63037,7527.3608}; + name="road_95"; + type="hd_arrow"; + angle=227.508; + id=2537; + }; + class Item770 + { + dataType="Marker"; + position[]={6884.6924,118.5795,8236.1416}; + name="road_96"; + type="hd_arrow"; + angle=227.508; + id=2538; + }; + class Item771 + { + dataType="Marker"; + position[]={5013.1992,137.68842,7333.9023}; + name="road_97"; + type="hd_arrow"; + angle=227.508; + id=2539; + }; + class Item772 + { + dataType="Marker"; + position[]={4978.1353,140.01778,7744.7402}; + name="road_98"; + type="hd_arrow"; + angle=227.508; + id=2540; + }; + class Item773 + { + dataType="Marker"; + position[]={4906.5142,142.00604,8240.5781}; + name="road_99"; + type="hd_arrow"; + angle=227.508; + id=2541; + }; + class Item774 + { + dataType="Marker"; + position[]={5284.7588,131.18858,7913.9966}; + name="road_100"; + type="hd_arrow"; + angle=227.508; + id=2542; + }; + class Item775 + { + dataType="Marker"; + position[]={5248.2036,125.82599,7363.728}; + name="road_101"; + type="hd_arrow"; + angle=227.508; + id=2543; + }; + class Item776 + { + dataType="Marker"; + position[]={4310.8301,142.03046,8062.5415}; + name="road_102"; + type="hd_arrow"; + angle=227.508; + id=2544; + }; + class Item777 + { + dataType="Marker"; + position[]={3903.2021,141.13139,7914.439}; + name="road_103"; + type="hd_arrow"; + angle=227.508; + id=2545; + }; + class Item778 + { + dataType="Marker"; + position[]={3265.4355,142.57207,7920.3169}; + name="road_104"; + type="hd_arrow"; + angle=227.508; + id=2546; + }; + class Item779 + { + dataType="Marker"; + position[]={2546.9724,145.02423,8245.2363}; + name="road_105"; + type="hd_arrow"; + angle=227.508; + id=2547; + }; + class Item780 + { + dataType="Marker"; + position[]={1868.6412,141.50815,8167.7617}; + name="road_106"; + type="hd_arrow"; + angle=227.508; + id=2548; + }; + class Item781 + { + dataType="Marker"; + position[]={3017.7266,161.14365,2942.4414}; + name="road_107"; + type="hd_arrow"; + angle=227.508; + id=2549; + }; + class Item782 + { + dataType="Marker"; + position[]={3491.5525,164.97371,3112.3433}; + name="road_108"; + type="hd_arrow"; + angle=227.508; + id=2550; + }; + class Item783 + { + dataType="Marker"; + position[]={3702.5442,166.89229,2797.8438}; + name="road_109"; + type="hd_arrow"; + angle=227.508; + id=2551; + }; + class Item784 + { + dataType="Marker"; + position[]={4620.6328,179.69034,2554.7583}; + name="road_110"; + type="hd_arrow"; + angle=227.508; + id=2552; + }; + class Item785 + { + dataType="Marker"; + position[]={3570.2244,195.11763,2018.5333}; + name="road_111"; + type="hd_arrow"; + angle=227.508; + id=2553; + }; + class Item786 + { + dataType="Marker"; + position[]={2804.0042,172.26936,2197.4866}; + name="road_112"; + type="hd_arrow"; + angle=227.508; + id=2554; + }; + class Item787 + { + dataType="Marker"; + position[]={1988.7231,152.67973,2221.4678}; + name="road_113"; + type="hd_arrow"; + angle=227.508; + id=2555; + }; + class Item788 + { + dataType="Marker"; + position[]={2081.6938,155.96461,1850.1776}; + name="road_114"; + type="hd_arrow"; + angle=227.508; + id=2556; + }; + class Item789 + { + dataType="Marker"; + position[]={1442.7388,157.71983,1234.903}; + name="road_115"; + type="hd_arrow"; + angle=227.508; + id=2557; + }; + class Item790 + { + dataType="Marker"; + position[]={1082.1212,168.78,1180.0146}; + name="road_116"; + type="hd_arrow"; + angle=227.508; + id=2558; + }; + class Item791 + { + dataType="Marker"; + position[]={925.96405,164.96494,1690.5438}; + name="road_117"; + type="hd_arrow"; + angle=227.508; + id=2559; + }; + class Item792 + { + dataType="Marker"; + position[]={2652.9041,136.63206,6831.5679}; + name="road_118"; + type="hd_arrow"; + angle=227.508; + id=2560; + }; + class Item793 + { + dataType="Marker"; + position[]={2915.7888,140.99557,7346.9736}; + name="road_119"; + type="hd_arrow"; + angle=227.508; + id=2561; + }; + class Item794 + { + dataType="Marker"; + position[]={2994.5432,140.76611,7860.5781}; + name="road_120"; + type="hd_arrow"; + angle=227.508; + id=2562; + }; + class Item795 + { + dataType="Marker"; + position[]={1737.095,144.80362,8864.8223}; + name="road_121"; + type="hd_arrow"; + angle=227.508; + id=2563; + }; + class Item796 + { + dataType="Marker"; + position[]={2328.8125,146.04866,9046.1973}; + name="road_122"; + type="hd_arrow"; + angle=227.508; + id=2564; + }; + class Item797 + { + dataType="Marker"; + position[]={2926.7905,145.43372,9160.2061}; + name="road_123"; + type="hd_arrow"; + angle=227.508; + id=2565; + }; + class Item798 + { + dataType="Marker"; + position[]={3235.5251,143.73969,8581.6934}; + name="road_124"; + type="hd_arrow"; + angle=227.508; + id=2566; + }; + class Item799 + { + dataType="Marker"; + position[]={3783.4998,141.88722,8713.3613}; + name="road_125"; + type="hd_arrow"; + angle=227.508; + id=2567; + }; + class Item800 + { + dataType="Marker"; + position[]={4362.124,143.29799,8761.4316}; + name="road_126"; + type="hd_arrow"; + angle=227.508; + id=2568; + }; + class Item801 + { + dataType="Marker"; + position[]={4895.7207,149.30823,8789.2178}; + name="road_127"; + type="hd_arrow"; + angle=227.508; + id=2569; + }; + class Item802 + { + dataType="Object"; + class PositionInfo + { + position[]={8083.0903,117.04044,1680.6832}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2570; + type="Land_dp_smallTank_F"; + atlOffset=7.6293945e-006; + }; + class Item803 + { + dataType="Object"; + class PositionInfo + { + position[]={8091.3521,116.76373,1676.355}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2571; + type="Land_dp_smallTank_F"; + atlOffset=7.6293945e-006; + }; + class Item804 + { + dataType="Object"; + class PositionInfo + { + position[]={8099.6367,116.48664,1672.9004}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2572; + type="Land_dp_smallTank_F"; + }; + class Item805 + { + dataType="Object"; + class PositionInfo + { + position[]={8123.0688,113.42136,1663.9749}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2573; + type="Land_dp_bigTank_F"; + atlOffset=-7.6293945e-006; + }; + class Item806 + { + dataType="Object"; + class PositionInfo + { + position[]={8065.561,110.78197,1659.5741}; + angles[]={6.1147957,0,0.0080084298}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2574; + type="Land_Fuel_tank_stairs"; + }; + class Item807 + { + dataType="Object"; + class PositionInfo + { + position[]={8045.1299,108.72034,1632.5604}; + angles[]={6.2511969,2.9346437,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2575; + type="Land_FuelStation_Shed_PMC"; + }; + class Item808 + { + dataType="Logic"; + class PositionInfo + { + position[]={8044.4014,105.82977,1635.4425}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=2576; + type="ModuleHideTerrainObjects_F"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item809 + { + dataType="Object"; + class PositionInfo + { + position[]={8035.2642,111.36317,1650.1901}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2577; + type="Flag_Fuel_F"; + atlOffset=-0.046134949; + }; + class Item810 + { + dataType="Object"; + class PositionInfo + { + position[]={8045.1479,106.74127,1632.012}; + angles[]={6.2511969,4.494411,6.2471814}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2578; + type="Land_A_FuelStation_Feed"; + atlOffset=0.00086212158; + }; + class Item811 + { + dataType="Object"; + class PositionInfo + { + position[]={8044.7222,106.82484,1634.1448}; + angles[]={6.2511969,4.494411,6.2471814}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2579; + type="Land_A_FuelStation_Feed"; + atlOffset=0.00085449219; + }; + class Item812 + { + dataType="Marker"; + position[]={2596.3071,118.60456,5233.71}; + name="road_128"; + type="hd_arrow"; + angle=227.508; + id=2580; + }; + class Item813 + { + dataType="Marker"; + position[]={2391.7888,125.01167,5041.915}; + name="road_129"; + type="hd_arrow"; + angle=227.508; + id=2581; + }; + class Item814 + { + dataType="Marker"; + position[]={2339.4814,133.09361,6072.5952}; + name="road_130"; + type="hd_arrow"; + angle=227.508; + id=2582; + }; + class Item815 + { + dataType="Marker"; + position[]={2899.4629,133.35263,6536.3721}; + name="road_131"; + type="hd_arrow"; + angle=227.508; + id=2583; + }; + class Item816 + { + dataType="Marker"; + position[]={1751.1658,118.01345,4948.9502}; + name="road_132"; + type="hd_arrow"; + angle=227.508; + id=2584; + }; + class Item817 + { + dataType="Marker"; + position[]={5544.3071,174.20535,4510.8086}; + name="road_133"; + type="hd_arrow"; + angle=227.508; + id=2585; + }; + class Item818 + { + dataType="Marker"; + position[]={8016.9131,113.62109,6743.106}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2586; + atlOffset=-6.4071274; + }; + class Item819 + { + dataType="Marker"; + position[]={5596.3457,222.30594,3685.8198}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2587; + atlOffset=-6.4071198; + }; + class Item820 + { + dataType="Marker"; + position[]={3494.6838,149.24261,3921.4941}; + name="control_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2588; + atlOffset=-6.4071198; + }; + class Item821 + { + dataType="Marker"; + position[]={2295.3977,129.82422,4820.3481}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2589; + atlOffset=-6.4325256; + }; + class Item822 + { + dataType="Marker"; + position[]={4113.8896,123.80766,5322.4473}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2590; + atlOffset=-6.4071198; + }; + class Item823 + { + dataType="Marker"; + position[]={610.54071,123.32086,5213.7363}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2591; + atlOffset=-6.4071198; + }; + class Item824 + { + dataType="Marker"; + position[]={1270.5529,121.79486,5376.6284}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2592; + atlOffset=-6.4071198; + }; + class Item825 + { + dataType="Marker"; + position[]={2302.6797,130.12689,5492.1904}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2593; + atlOffset=-6.4071198; + }; + class Item826 + { + dataType="Marker"; + position[]={4140.019,124.32593,6609.1626}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2594; + atlOffset=-6.4071198; + }; + class Item827 + { + dataType="Marker"; + position[]={3446.3147,129.20721,6391.7681}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2595; + atlOffset=-6.4071198; + }; + class Item828 + { + dataType="Marker"; + position[]={5095.0527,126.3951,6966.5879}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2596; + atlOffset=-6.4071121; + }; + class Item829 + { + dataType="Marker"; + position[]={7982.0088,139.07753,9244.6699}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2597; + atlOffset=-6.4071198; + }; + class Item830 + { + dataType="Marker"; + position[]={9020.9121,111.24505,9524.0615}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2598; + atlOffset=-6.4071198; + }; + class Item831 + { + dataType="Marker"; + position[]={8433.0254,71.422882,5355.2437}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2599; + atlOffset=-6.4071198; + }; + class Item832 + { + dataType="Marker"; + position[]={8335.6523,136.16066,4030.9729}; + name="control_14"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2600; + atlOffset=-6.4071198; + }; + class Item833 + { + dataType="Marker"; + position[]={6531.3872,208.98811,2419.8816}; + name="control_15"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2601; + atlOffset=-6.4071198; + }; + class Item834 + { + dataType="Marker"; + position[]={7734.438,120.4747,1705.9161}; + name="control_16"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2602; + atlOffset=-6.4071198; + }; + class Item835 + { + dataType="Marker"; + position[]={5384.0156,227.12245,989.9408}; + name="control_17"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2603; + atlOffset=-6.4071198; + }; + class Item836 + { + dataType="Marker"; + position[]={4532.0967,224.2269,911.18103}; + name="control_18"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2604; + atlOffset=-6.4071198; + }; + class Item837 + { + dataType="Marker"; + position[]={2193.5515,158.67892,1119.8474}; + name="control_19"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2605; + atlOffset=-6.4071198; + }; + class Item838 + { + dataType="Marker"; + position[]={1971.045,144.78444,2251.8958}; + name="control_20"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2606; + atlOffset=-6.4071198; + }; + class Item839 + { + dataType="Marker"; + position[]={1713.1868,133.66725,3497.2058}; + name="control_21"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2607; + atlOffset=-6.4071198; + }; + class Item840 + { + dataType="Marker"; + position[]={626.62299,139.91359,4320.8452}; + name="control_22"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2608; + atlOffset=-6.4071198; + }; + class Item841 + { + dataType="Marker"; + position[]={4549.6333,137.57285,8083.3618}; + name="control_23"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2609; + atlOffset=-6.4071198; + }; + class Item842 + { + dataType="Marker"; + position[]={3810.8997,141.93123,8562.3975}; + name="control_24"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2610; + atlOffset=-6.4071198; + }; + class Item843 + { + dataType="Marker"; + position[]={2517.0425,139.00204,9073.377}; + name="control_25"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2611; + atlOffset=-6.4071198; + }; + class Item844 + { + dataType="Marker"; + position[]={1327.5206,141.11029,8749.1475}; + name="control_26"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2612; + atlOffset=-6.4071198; + }; + class Item845 + { + dataType="Marker"; + position[]={1339.541,139.94246,9657.1914}; + name="control_27"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2613; + atlOffset=-6.4071198; + }; + class Item846 + { + dataType="Marker"; + position[]={785.97772,142.39632,9489.5684}; + name="control_28"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2614; + atlOffset=-6.4071198; + }; + class Item847 + { + dataType="Marker"; + position[]={475.00439,137.72285,8850.0166}; + name="control_29"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2615; + atlOffset=-6.4071198; + }; + class Item848 + { + dataType="Marker"; + position[]={255.57129,132.83481,8011.7241}; + name="control_30"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2616; + atlOffset=-6.4071198; + }; + class Item849 + { + dataType="Marker"; + position[]={281.4068,131.06479,7478.0811}; + name="control_31"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2617; + atlOffset=-6.4071198; + }; + class Item850 + { + dataType="Marker"; + position[]={1624.3846,133.25714,7259.5664}; + name="control_32"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2618; + atlOffset=-6.4071198; + }; + class Item851 + { + dataType="Marker"; + position[]={2310.6577,128.34216,6689.7808}; + name="control_33"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2619; + atlOffset=-6.4071198; + }; + class Item852 + { + dataType="Marker"; + position[]={1949.3798,129.72643,5827.3857}; + name="control_34"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2620; + atlOffset=-6.4071198; + }; + class Item853 + { + dataType="Marker"; + position[]={2885.8752,130.69649,6852.6719}; + name="control_35"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2621; + atlOffset=-6.4071198; + }; + class Item854 + { + dataType="Marker"; + position[]={4514.9604,136.74278,9351.3652}; + name="control_36"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2622; + atlOffset=-6.4071198; + }; + class Item855 + { + dataType="Marker"; + position[]={5156.0737,141.71494,8982.7764}; + name="control_37"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2623; + atlOffset=-6.4071198; + }; + class Item856 + { + dataType="Marker"; + position[]={6348.4966,127.63069,7860.4863}; + name="control_38"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2624; + atlOffset=-6.4071198; + }; + class Item857 + { + dataType="Marker"; + position[]={6873.3398,114.06079,8259.9199}; + name="control_39"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2625; + atlOffset=-6.4071198; + }; + class Item858 + { + dataType="Marker"; + position[]={7943.9229,141.41728,3031.7085}; + name="control_40"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2626; + atlOffset=-6.4071198; + }; + class Item859 + { + dataType="Marker"; + position[]={8773.3848,183.80649,3504.0107}; + name="control_41"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2627; + atlOffset=-6.4071198; + }; + class Item860 + { + dataType="Marker"; + position[]={7324.2373,117.02272,552.26624}; + name="control_42"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2628; + atlOffset=-6.4071198; + }; + class Item861 + { + dataType="Marker"; + position[]={5590.9092,223.70375,221.37573}; + name="control_43"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2629; + atlOffset=-6.4071198; + }; + class Item862 + { + dataType="Marker"; + position[]={2328.6221,166.40311,283.60901}; + name="control_44"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2630; + atlOffset=-6.4071198; + }; + class Item863 + { + dataType="Marker"; + position[]={880.64941,167.31091,447.01843}; + name="control_45"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2631; + atlOffset=-6.4071198; + }; + class Item864 + { + dataType="Marker"; + position[]={371.89377,176.20584,3180.4692}; + name="control_46"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2632; + atlOffset=-6.4071198; + }; + class Item865 + { + dataType="Marker"; + position[]={583.41504,125.17369,6120.7432}; + name="control_47"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2633; + atlOffset=-6.4071198; + }; + class Item866 + { + dataType="Marker"; + position[]={2108.5444,141.91605,9579.0801}; + name="control_48"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2634; + atlOffset=-6.4071198; + }; + class Item867 + { + dataType="Marker"; + position[]={3409.7593,142.90096,9876.3193}; + name="control_49"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2635; + atlOffset=-6.4071198; + }; + class Item868 + { + dataType="Marker"; + position[]={7140.8271,134.57773,5711.207}; + name="control_50"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2636; + atlOffset=-6.4071198; + }; + class Item869 + { + dataType="Marker"; + position[]={7249.7808,176.22713,4233.6602}; + name="control_51"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=2637; + atlOffset=-6.4071198; + }; + }; + class Connections + { + class LinkIDProvider + { + nextID=61; + }; + class Links + { + items=61; + class Item0 + { + linkID=0; + item0=698; + item1=699; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=705; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=706; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item3 + { + linkID=3; + item0=707; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item4 + { + linkID=4; + item0=713; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item5 + { + linkID=5; + item0=729; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item6 + { + linkID=6; + item0=730; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item7 + { + linkID=7; + item0=736; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item8 + { + linkID=8; + item0=742; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item9 + { + linkID=9; + item0=748; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item10 + { + linkID=10; + item0=754; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item11 + { + linkID=11; + item0=760; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item12 + { + linkID=12; + item0=709; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item13 + { + linkID=13; + item0=715; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item14 + { + linkID=14; + item0=720; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item15 + { + linkID=15; + item0=725; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item16 + { + linkID=16; + item0=732; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item17 + { + linkID=17; + item0=738; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item18 + { + linkID=18; + item0=744; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item19 + { + linkID=19; + item0=750; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item20 + { + linkID=20; + item0=756; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item21 + { + linkID=21; + item0=761; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item22 + { + linkID=22; + item0=710; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item23 + { + linkID=23; + item0=716; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item24 + { + linkID=24; + item0=721; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item25 + { + linkID=25; + item0=726; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item26 + { + linkID=26; + item0=733; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item27 + { + linkID=27; + item0=739; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item28 + { + linkID=28; + item0=745; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item29 + { + linkID=29; + item0=751; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item30 + { + linkID=30; + item0=757; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item31 + { + linkID=31; + item0=762; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item32 + { + linkID=32; + item0=711; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item33 + { + linkID=33; + item0=717; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item34 + { + linkID=34; + item0=722; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item35 + { + linkID=35; + item0=727; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item36 + { + linkID=36; + item0=734; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item37 + { + linkID=37; + item0=740; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item38 + { + linkID=38; + item0=746; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item39 + { + linkID=39; + item0=752; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item40 + { + linkID=40; + item0=758; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item41 + { + linkID=41; + item0=763; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item42 + { + linkID=42; + item0=712; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item43 + { + linkID=43; + item0=718; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item44 + { + linkID=44; + item0=723; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item45 + { + linkID=45; + item0=728; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item46 + { + linkID=46; + item0=735; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item47 + { + linkID=47; + item0=741; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item48 + { + linkID=48; + item0=747; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item49 + { + linkID=49; + item0=753; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item50 + { + linkID=50; + item0=759; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item51 + { + linkID=51; + item0=708; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item52 + { + linkID=52; + item0=714; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item53 + { + linkID=53; + item0=719; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item54 + { + linkID=54; + item0=724; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item55 + { + linkID=55; + item0=731; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item56 + { + linkID=56; + item0=737; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item57 + { + linkID=57; + item0=743; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item58 + { + linkID=58; + item0=749; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item59 + { + linkID=59; + item0=755; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + class Item60 + { + linkID=60; + item0=764; + item1=698; + class CustomData + { + type="Sync"; + }; + }; + }; + }; +}; diff --git a/Map-Templates/Antistasi-Anizay.tem_anizay/roadsDBAnizay.sqf b/Map-Templates/Antistasi-Anizay.tem_anizay/roadsDBAnizay.sqf new file mode 100644 index 0000000000..86b1b04031 --- /dev/null +++ b/Map-Templates/Antistasi-Anizay.tem_anizay/roadsDBAnizay.sqf @@ -0,0 +1 @@ +{roadsX setVariable [_x select 0,_x select 1]} forEach [["Anizay",[[3593,7941,0],[3598,8110,0],[3639,7944,0],[3623,7945,0],[3609,7945,0],[3620,7957,0],[3619,7948,0],[3619,7984,0],[3620,7969,0],[3620,8020,0],[3618,8001,0],[3621,8038,0],[3618,8054,0],[3613,8070,0],[3612,8107,0],[3607,8107,0],[3611,8087,0],[3615,8151,0],[3615,8130,0],[3620,8121,0],[3631,8121,0],[3670,7772,0],[3651,7797,0],[3647,7787,0],[3648,7775,0],[3660,7768,0],[3652,7768,0],[3656,7835,0],[3657,7804,0],[3660,7823,0],[3661,7812,0],[3678,7868,0],[3666,7863,0],[3656,7857,0],[3652,7847,0],[3656,7942,0],[3671,7940,0],[3655,8128,0],[3643,8121,0],[3653,8123,0],[3659,8132,0],[3674,8134,0],[3666,8133,0],[3684,7775,0],[3697,7778,0],[3709,7780,0],[3690,7874,0],[3688,7909,0],[3694,7896,0],[3713,7917,0],[3696,7884,0],[3685,7918,0],[3694,7929,0],[3682,7936,0],[3703,7921,0],[3686,7927,0],[3710,7991,0],[3715,7980,0],[3718,7971,0],[3699,8031,0],[3701,8013,0],[3705,8002,0],[3694,8053,0],[3689,8073,0],[3709,8067,0],[3719,8070,0],[3698,8062,0],[3703,8064,0],[3685,8092,0],[3684,8112,0],[3684,8143,0],[3682,8128,0],[3687,8156,0],[3681,8133,0],[3710,8167,0],[3720,8170,0],[3699,8165,0],[3691,8163,0],[3715,8260,0],[3713,8269,0],[3701,8314,0],[3687,8304,0],[3712,8298,0],[3713,8283,0],[3708,8308,0],[3702,8312,0],[3716,8343,0],[3710,8328,0],[3741,7672,0],[3741,7656,0],[3745,7715,0],[3743,7687,0],[3744,7701,0],[3745,7751,0],[3745,7733,0],[3747,7787,0],[3746,7768,0],[3733,7780,0],[3721,7781,0],[3743,7780,0],[3752,7824,0],[3749,7806,0],[3753,7871,0],[3751,7856,0],[3752,7841,0],[3756,7886,0],[3722,7912,0],[3754,7907,0],[3740,7908,0],[3757,7901,0],[3729,7908,0],[3726,7967,0],[3740,7973,0],[3754,7986,0],[3749,7979,0],[3735,7968,0],[3754,7995,0],[3743,7978,0],[3759,8006,0],[3756,8001,0],[3731,8070,0],[3754,8074,0],[3742,8068,0],[3750,8068,0],[3751,8106,0],[3753,8087,0],[3750,8124,0],[3750,8146,0],[3748,8137,0],[3757,8151,0],[3725,8179,0],[3728,8190,0],[3727,8231,0],[3726,8216,0],[3727,8202,0],[3723,8252,0],[3729,8243,0],[3798,7903,0],[3769,7906,0],[3783,7905,0],[3791,8007,0],[3772,8011,0],[3780,8009,0],[3764,8010,0],[3784,8006,0],[3768,8154,0],[3793,8169,0],[3781,8160,0],[3815,7901,0],[3831,7901,0],[3839,8029,0],[3801,8009,0],[3815,8027,0],[3825,8026,0],[3808,8013,0],[3809,8019,0],[3809,8025,0],[3836,8179,0],[3805,8178,0],[3820,8182,0],[3865,7904,0],[3847,7902,0],[3858,8031,0],[3875,8030,0],[3879,8170,0],[3864,8172,0],[3851,8173,0],[3876,8459,0],[3888,7909,0],[3911,7915,0],[3903,7916,0],[3896,7943,0],[3901,7926,0],[3887,8000,0],[3890,7979,0],[3892,7961,0],[3887,8017,0],[3885,8026,0],[3914,8079,0],[3909,8086,0],[3906,8103,0],[3906,8094,0],[3900,8179,0],[3892,8170,0],[3901,8191,0],[3902,8201,0],[3907,8206,0],[3915,8207,0],[3890,8461,0],[3917,8476,0],[3907,8472,0],[3900,8465,0],[3952,7670,0],[3939,7687,0],[3928,7708,0],[3926,7733,0],[3926,7759,0],[3929,7799,0],[3925,7781,0],[3941,7812,0],[3958,7822,0],[3951,7927,0],[3931,7921,0],[3928,8077,0],[3943,8077,0],[3953,8079,0],[3959,8090,0],[3957,8083,0],[3947,8186,0],[3951,8176,0],[3945,8198,0],[3948,8239,0],[3942,8234,0],[3929,8207,0],[3941,8214,0],[3941,8224,0],[3940,8207,0],[3941,8205,0],[3959,8242,0],[3955,8376,0],[3955,8398,0],[3956,8361,0],[3954,8422,0],[3953,8448,0],[3945,8477,0],[3952,8467,0],[3929,8478,0],[3960,8474,0],[3938,8478,0],[3952,8474,0],[3989,7547,0],[3989,7530,0],[3992,7566,0],[3993,7585,0],[3994,7619,0],[3993,7603,0],[3992,7637,0],[3994,7629,0],[3966,7653,0],[3998,7644,0],[3983,7643,0],[3976,7831,0],[3995,7839,0],[3985,7940,0],[3969,7934,0],[3996,8110,0],[3969,8094,0],[3998,8087,0],[3991,8093,0],[3981,8094,0],[3984,8159,0],[3996,8147,0],[3998,8133,0],[3965,8169,0],[3961,8277,0],[3973,8245,0],[3986,8249,0],[3998,8251,0],[3961,8248,0],[3961,8259,0],[3961,8304,0],[3961,8327,0],[3960,8357,0],[3980,8340,0],[3963,8343,0],[3969,8342,0],[3990,8339,0],[3999,8338,0],[3963,8352,0],[3990,8455,0],[3980,8466,0],[3997,8443,0],[3988,8470,0],[3970,8472,0],[3983,8466,0],[4012,7649,0],[4027,7653,0],[4011,7847,0],[4015,7879,0],[4017,7861,0],[4031,7854,0],[4021,7853,0],[4013,7917,0],[4012,7897,0],[4002,7948,0],[4017,7957,0],[4017,7936,0],[4025,7958,0],[4021,7948,0],[4031,7969,0],[4018,7997,0],[4026,7980,0],[4031,7971,0],[4010,8017,0],[4005,8034,0],[4001,8069,0],[4003,8051,0],[4015,8252,0],[4038,8268,0],[4031,8251,0],[4025,8270,0],[4014,8272,0],[4008,8276,0],[4008,8293,0],[4009,8317,0],[4009,8305,0],[4006,8282,0],[4013,8337,0],[4009,8331,0],[4010,8343,0],[4035,8337,0],[4010,8354,0],[4026,8337,0],[4036,8399,0],[4017,8400,0],[4025,8397,0],[4003,8431,0],[4008,8418,0],[4012,8407,0],[4001,8477,0],[4029,8489,0],[4015,8484,0],[4035,8489,0],[4037,8481,0],[4062,7652,0],[4045,7653,0],[4059,7857,0],[4043,7855,0],[4072,7860,0],[4048,7980,0],[4076,7997,0],[4060,7988,0],[4076,7998,0],[4067,7993,0],[4047,8249,0],[4058,8266,0],[4061,8262,0],[4067,8267,0],[4059,8255,0],[4077,8267,0],[4057,8250,0],[4049,8267,0],[4069,8338,0],[4065,8345,0],[4056,8337,0],[4045,8337,0],[4056,8399,0],[4063,8361,0],[4060,8380,0],[4048,8436,0],[4051,8418,0],[4049,8402,0],[4044,8454,0],[4040,8470,0],[4045,8495,0],[4058,8500,0],[4071,8505,0],[4105,7654,0],[4081,7652,0],[4115,7872,0],[4119,7841,0],[4087,7864,0],[4109,7870,0],[4100,7868,0],[4107,7903,0],[4112,7907,0],[4089,7956,0],[4098,7928,0],[4082,7982,0],[4092,8012,0],[4101,8025,0],[4084,8003,0],[4098,8021,0],[4105,8027,0],[4097,8035,0],[4116,8029,0],[4091,8066,0],[4094,8048,0],[4084,8105,0],[4088,8085,0],[4100,8147,0],[4090,8142,0],[4111,8151,0],[4082,8123,0],[4084,8135,0],[4117,8239,0],[4090,8267,0],[4117,8268,0],[4104,8268,0],[4085,8340,0],[4108,8346,0],[4098,8342,0],[4118,8348,0],[4149,7680,0],[4129,7657,0],[4158,7662,0],[4150,7663,0],[4142,7660,0],[4145,7710,0],[4137,7755,0],[4141,7736,0],[4130,7780,0],[4123,7811,0],[4139,7913,0],[4121,7910,0],[4152,8024,0],[4128,8027,0],[4139,8026,0],[4133,8038,0],[4131,8029,0],[4149,8063,0],[4138,8050,0],[4125,8155,0],[4144,8200,0],[4156,8178,0],[4140,8162,0],[4153,8169,0],[4139,8226,0],[4151,8237,0],[4136,8238,0],[4126,8239,0],[4141,8251,0],[4147,8272,0],[4139,8269,0],[4129,8268,0],[4153,8317,0],[4152,8292,0],[4154,8342,0],[4129,8350,0],[4147,8353,0],[4138,8352,0],[4153,8365,0],[4152,8387,0],[4150,8412,0],[4149,8437,0],[4154,8431,0],[4147,8459,0],[4144,8480,0],[4137,8499,0],[4177,7659,0],[4168,7916,0],[4197,7921,0],[4187,8034,0],[4173,8025,0],[4163,8023,0],[4162,8079,0],[4199,8044,0],[4169,8096,0],[4170,8114,0],[4169,8136,0],[4166,8159,0],[4182,8229,0],[4165,8233,0],[4188,8426,0],[4194,8415,0],[4196,8403,0],[4169,8430,0],[4178,8431,0],[4162,8430,0],[4201,7664,0],[4220,7675,0],[4229,7924,0],[4237,8048,0],[4225,8048,0],[4208,8049,0],[4215,8049,0],[4204,8230,0],[4224,8232,0],[4206,8397,0],[4224,8393,0],[4269,7688,0],[4241,7683,0],[4258,7924,0],[4258,8054,0],[4280,8057,0],[4248,8051,0],[4267,8057,0],[4240,8230,0],[4273,8231,0],[4263,8227,0],[4252,8227,0],[4280,8398,0],[4242,8392,0],[4258,8392,0],[4272,8392,0],[4279,8434,0],[4276,8448,0],[4276,8459,0],[4318,7682,0],[4298,7693,0],[4311,7700,0],[4313,7709,0],[4311,7754,0],[4314,7723,0],[4314,7739,0],[4306,7773,0],[4302,7791,0],[4297,7810,0],[4292,7829,0],[4285,7864,0],[4287,7844,0],[4294,7919,0],[4287,7918,0],[4284,7897,0],[4305,7915,0],[4285,7882,0],[4285,7909,0],[4281,7923,0],[4311,8065,0],[4301,8059,0],[4291,8057,0],[4281,8239,0],[4290,8211,0],[4285,8221,0],[4318,8207,0],[4299,8208,0],[4283,8238,0],[4309,8208,0],[4284,8230,0],[4293,8256,0],[4300,8266,0],[4287,8248,0],[4306,8274,0],[4306,8318,0],[4308,8299,0],[4308,8284,0],[4304,8337,0],[4309,8354,0],[4302,8353,0],[4318,8358,0],[4305,8382,0],[4311,8389,0],[4301,8374,0],[4316,8396,0],[4300,8364,0],[4281,8409,0],[4280,8421,0],[4316,8406,0],[4318,8421,0],[4315,8416,0],[4324,7593,0],[4327,7573,0],[4326,7620,0],[4328,7653,0],[4327,7916,0],[4355,7917,0],[4321,8075,0],[4330,8085,0],[4340,8092,0],[4358,8095,0],[4349,8096,0],[4338,8196,0],[4350,8197,0],[4329,8196,0],[4325,8202,0],[4339,8310,0],[4342,8294,0],[4347,8283,0],[4354,8282,0],[4335,8329,0],[4327,8353,0],[4332,8343,0],[4351,8369,0],[4332,8363,0],[4322,8436,0],[4321,8426,0],[4384,7920,0],[4373,8089,0],[4379,8116,0],[4377,8094,0],[4386,8084,0],[4378,8104,0],[4394,8083,0],[4377,8153,0],[4378,8134,0],[4370,8191,0],[4375,8170,0],[4374,8183,0],[4362,8195,0],[4371,8376,0],[4390,8381,0],[4427,7933,0],[4408,7925,0],[4429,8077,0],[4405,8082,0],[4416,8080,0],[4405,8384,0],[4444,7673,0],[4471,7705,0],[4456,7693,0],[4447,7683,0],[4451,7940,0],[4477,7941,0],[4443,8072,0],[4461,8080,0],[4467,8069,0],[4457,8069,0],[4454,8069,0],[4470,8090,0],[4478,8102,0],[4487,7718,0],[4519,7930,0],[4497,7935,0],[4496,8075,0],[4512,8078,0],[4481,8071,0],[4481,8114,0],[4490,8136,0],[4512,8137,0],[4483,8133,0],[4481,8124,0],[4500,8137,0],[4519,8226,0],[4518,8240,0],[4519,8256,0],[4542,7930,0],[4531,8081,0],[4551,8082,0],[4543,8152,0],[4525,8137,0],[4536,8139,0],[4543,8144,0],[4538,8164,0],[4532,8179,0],[4527,8195,0],[4523,8211,0],[4561,7932,0],[4576,7933,0],[4579,7980,0],[4580,7962,0],[4577,8003,0],[4576,8030,0],[4576,8054,0],[4575,8072,0],[4571,8080,0]]],["Sufian",[[1031,7154,0],[1006,7153,0],[1012,7170,0],[1018,7201,0],[1023,7228,0],[1030,7269,0],[1026,7246,0],[1035,7296,0],[1039,7321,0],[1072,7014,0],[1072,7156,0],[1054,7155,0],[1042,7347,0],[1045,7376,0],[1069,7386,0],[1049,7385,0],[1055,7385,0],[1050,7403,0],[1056,7427,0],[1057,7477,0],[1057,7450,0],[1060,7502,0],[1066,7546,0],[1062,7521,0],[1107,7028,0],[1090,7020,0],[1100,7157,0],[1094,7386,0],[1151,7029,0],[1124,7034,0],[1137,7031,0],[1147,7138,0],[1129,7155,0],[1149,7385,0],[1121,7384,0],[1185,7035,0],[1169,7031,0],[1198,7042,0],[1181,7130,0],[1160,7125,0],[1178,7388,0],[1240,7061,0],[1211,7049,0],[1225,7054,0],[1209,7141,0],[1233,7153,0],[1206,7390,0],[1224,7397,0],[1228,7415,0],[1226,7445,0],[1224,7478,0],[1239,7464,0],[1228,7467,0],[1225,7504,0],[1227,7552,0],[1226,7525,0],[1228,7584,0],[1232,7574,0],[1229,7617,0],[1231,7646,0],[1233,7670,0],[1234,7692,0],[1235,7714,0],[1252,7073,0],[1264,7089,0],[1269,7171,0],[1251,7162,0],[1271,7188,0],[1266,7225,0],[1268,7212,0],[1269,7200,0],[1254,7461,0],[1269,7460,0],[1272,7547,0],[1246,7565,0],[1315,6817,0],[1309,6831,0],[1315,6833,0],[1317,6861,0],[1314,6841,0],[1316,6849,0],[1320,6909,0],[1316,6883,0],[1285,7100,0],[1308,7106,0],[1287,7181,0],[1305,7191,0],[1289,7458,0],[1310,7456,0],[1313,7528,0],[1294,7534,0],[1322,6838,0],[1338,6839,0],[1354,6840,0],[1325,6937,0],[1324,6971,0],[1326,7005,0],[1332,7034,0],[1337,7056,0],[1341,7075,0],[1327,7113,0],[1341,7096,0],[1339,7112,0],[1352,7133,0],[1341,7123,0],[1346,7213,0],[1322,7200,0],[1359,7379,0],[1356,7404,0],[1352,7428,0],[1327,7454,0],[1349,7445,0],[1341,7452,0],[1342,7526,0],[1396,6850,0],[1373,6840,0],[1388,6841,0],[1372,7153,0],[1363,7142,0],[1387,7168,0],[1400,7175,0],[1378,7162,0],[1399,7237,0],[1373,7226,0],[1364,7239,0],[1365,7226,0],[1365,7230,0],[1364,7270,0],[1364,7254,0],[1365,7308,0],[1365,7288,0],[1361,7354,0],[1363,7330,0],[1396,7334,0],[1380,7333,0],[1370,7332,0],[1370,7528,0],[1393,7530,0],[1438,6867,0],[1417,6867,0],[1403,6862,0],[1411,7183,0],[1419,7191,0],[1429,7195,0],[1425,7247,0],[1416,7344,0],[1436,7346,0],[1426,7349,0],[1408,7337,0],[1439,7532,0],[1424,7548,0],[1414,7532,0],[1424,7534,0],[1426,7570,0],[1427,7591,0],[1428,7632,0],[1427,7611,0],[1431,7654,0],[1453,6870,0],[1456,6905,0],[1456,6881,0],[1455,6937,0],[1452,6965,0],[1455,6987,0],[1459,7030,0],[1460,7006,0],[1457,7054,0],[1455,7076,0],[1477,7109,0],[1463,7102,0],[1455,7092,0],[1443,7198,0],[1458,7208,0],[1470,7220,0],[1447,7258,0],[1467,7272,0],[1461,7271,0],[1453,7297,0],[1449,7315,0],[1458,7281,0],[1444,7333,0],[1471,7529,0],[1458,7661,0],[1473,7668,0],[1440,7663,0],[1476,7663,0],[1478,7686,0],[1479,7709,0],[1476,7757,0],[1477,7732,0],[1477,7783,0],[1504,7156,0],[1496,7139,0],[1489,7121,0],[1517,7165,0],[1482,7232,0],[1519,7270,0],[1497,7243,0],[1512,7250,0],[1487,7283,0],[1505,7284,0],[1486,7310,0],[1488,7295,0],[1488,7286,0],[1498,7338,0],[1516,7345,0],[1486,7327,0],[1503,7525,0],[1513,7651,0],[1499,7656,0],[1487,7660,0],[1555,7169,0],[1534,7167,0],[1557,7195,0],[1557,7173,0],[1557,7185,0],[1555,7220,0],[1555,7235,0],[1555,7207,0],[1560,7248,0],[1536,7254,0],[1559,7247,0],[1524,7255,0],[1523,7358,0],[1523,7381,0],[1525,7437,0],[1523,7407,0],[1529,7464,0],[1533,7486,0],[1536,7508,0],[1527,7520,0],[1556,7635,0],[1528,7646,0],[1549,7641,0],[1540,7643,0],[1579,7171,0],[1588,7246,0],[1577,7391,0],[1586,7375,0],[1582,7433,0],[1578,7414,0],[1587,7457,0],[1593,7486,0],[1565,7629,0],[1577,7622,0],[1598,7621,0],[1588,7619,0],[1635,6821,0],[1634,6840,0],[1630,6878,0],[1633,6858,0],[1639,6855,0],[1625,6898,0],[1621,6921,0],[1617,6947,0],[1611,6972,0],[1604,6999,0],[1614,7027,0],[1626,7035,0],[1605,7019,0],[1628,7063,0],[1630,7046,0],[1635,7040,0],[1624,7088,0],[1621,7115,0],[1621,7155,0],[1620,7136,0],[1628,7172,0],[1603,7169,0],[1618,7164,0],[1635,7232,0],[1637,7216,0],[1639,7201,0],[1626,7264,0],[1612,7249,0],[1626,7250,0],[1632,7243,0],[1621,7304,0],[1631,7287,0],[1637,7307,0],[1623,7304,0],[1613,7352,0],[1613,7324,0],[1604,7369,0],[1601,7518,0],[1607,7549,0],[1612,7581,0],[1615,7614,0],[1609,7627,0],[1634,7629,0],[1622,7630,0],[1617,7646,0],[1621,7672,0],[1631,7691,0],[1653,6875,0],[1649,6860,0],[1657,6894,0],[1667,6908,0],[1658,7064,0],[1648,7043,0],[1658,7050,0],[1652,7101,0],[1653,7083,0],[1652,7123,0],[1653,7143,0],[1652,7158,0],[1646,7179,0],[1669,7181,0],[1650,7171,0],[1641,7187,0],[1675,7290,0],[1659,7311,0],[1672,7308,0],[1649,7629,0],[1663,7630,0],[1674,7633,0],[1640,7710,0],[1679,7712,0],[1671,7703,0],[1642,7700,0],[1657,7699,0],[1664,7699,0],[1650,7699,0],[1641,7734,0],[1700,6914,0],[1682,6912,0],[1697,7183,0],[1696,7189,0],[1696,7199,0],[1688,7237,0],[1694,7213,0],[1681,7264,0],[1688,7312,0],[1716,7312,0],[1716,7316,0],[1718,7328,0],[1706,7631,0],[1687,7631,0],[1693,7724,0],[1724,6915,0],[1740,6929,0],[1741,6949,0],[1741,6966,0],[1747,6977,0],[1760,6993,0],[1755,6984,0],[1741,7186,0],[1722,7184,0],[1755,7262,0],[1753,7276,0],[1745,7293,0],[1753,7286,0],[1742,7319,0],[1732,7314,0],[1740,7301,0],[1737,7307,0],[1725,7345,0],[1739,7359,0],[1750,7325,0],[1751,7374,0],[1755,7394,0],[1752,7371,0],[1748,7437,0],[1752,7414,0],[1745,7465,0],[1753,7518,0],[1743,7490,0],[1744,7507,0],[1723,7637,0],[1727,7679,0],[1728,7649,0],[1728,7664,0],[1731,7693,0],[1740,7701,0],[1746,7708,0],[1797,6985,0],[1768,7001,0],[1796,7004,0],[1780,7004,0],[1791,7006,0],[1768,7190,0],[1795,7179,0],[1788,7195,0],[1791,7189,0],[1773,7233,0],[1785,7220,0],[1787,7202,0],[1761,7245,0],[1765,7282,0],[1791,7284,0],[1778,7283,0],[1787,7334,0],[1772,7334,0],[1761,7329,0],[1789,7390,0],[1773,7382,0],[1762,7376,0],[1791,7546,0],[1781,7532,0],[1767,7525,0],[1790,7533,0],[1798,7525,0],[1799,7567,0],[1804,6929,0],[1801,6960,0],[1804,7019,0],[1817,7030,0],[1831,7035,0],[1830,7153,0],[1811,7154,0],[1801,7163,0],[1827,7283,0],[1807,7284,0],[1835,7329,0],[1804,7332,0],[1820,7330,0],[1807,7399,0],[1825,7406,0],[1812,7429,0],[1812,7409,0],[1813,7418,0],[1809,7445,0],[1806,7466,0],[1805,7488,0],[1802,7510,0],[1808,7589,0],[1816,7612,0],[1819,7634,0],[1849,7038,0],[1867,7045,0],[1864,7154,0],[1848,7155,0],[1879,7276,0],[1860,7278,0],[1845,7280,0],[1869,7326,0],[1852,7328,0],[1879,7378,0],[1879,7392,0],[1843,7411,0],[1877,7434,0],[1868,7420,0],[1877,7407,0],[1873,7421,0],[1858,7415,0],[1901,7065,0],[1883,7055,0],[1919,7041,0],[1918,7058,0],[1918,7070,0],[1904,7152,0],[1884,7153,0],[1919,7150,0],[1916,7180,0],[1908,7194,0],[1904,7226,0],[1905,7208,0],[1909,7212,0],[1915,7213,0],[1903,7257,0],[1905,7271,0],[1904,7243,0],[1894,7274,0],[1903,7273,0],[1915,7316,0],[1908,7285,0],[1908,7300,0],[1900,7319,0],[1908,7311,0],[1886,7350,0],[1889,7337,0],[1892,7325,0],[1886,7322,0],[1882,7365,0],[1884,7447,0],[1886,7463,0],[1884,7480,0],[1891,7493,0],[1905,7502,0],[1921,7071,0],[1935,7079,0],[1934,7071,0],[1936,7092,0],[1937,7105,0],[1938,7118,0],[1930,7149,0],[1938,7133,0],[1937,7148,0],[1929,7164,0],[1926,7214,0],[1943,7214,0],[1958,7215,0],[1960,7308,0],[1935,7312,0],[1922,7508,0],[1972,7218,0],[1987,7286,0],[1984,7306,0]]],["Zarifkheyl",[[4192,9059,0],[4176,9058,0],[4209,9063,0],[4227,9071,0],[4224,9200,0],[4231,9185,0],[4239,9173,0],[4218,9214,0],[4214,9228,0],[4207,9265,0],[4212,9246,0],[4201,9282,0],[4234,9378,0],[4273,8828,0],[4271,9022,0],[4273,9008,0],[4276,9002,0],[4268,9042,0],[4265,9060,0],[4263,9075,0],[4252,9096,0],[4259,9099,0],[4241,9082,0],[4256,9112,0],[4262,9087,0],[4253,9131,0],[4247,9159,0],[4251,9147,0],[4265,9356,0],[4280,9341,0],[4249,9371,0],[4297,8833,0],[4316,8835,0],[4287,9002,0],[4302,9005,0],[4314,9008,0],[4294,9333,0],[4310,9331,0],[4339,8757,0],[4341,8751,0],[4333,8834,0],[4348,8835,0],[4357,8837,0],[4351,8865,0],[4353,8851,0],[4349,8879,0],[4353,8840,0],[4351,8887,0],[4357,8889,0],[4328,9012,0],[4354,9020,0],[4341,9017,0],[4344,9334,0],[4326,9331,0],[4371,8760,0],[4365,8840,0],[4397,8849,0],[4374,8843,0],[4386,8846,0],[4389,8896,0],[4369,8891,0],[4372,9029,0],[4367,9022,0],[4376,9035,0],[4383,9038,0],[4394,9041,0],[4376,9337,0],[4361,9336,0],[4390,9338,0],[4438,8764,0],[4405,8762,0],[4434,8857,0],[4408,8854,0],[4419,8857,0],[4420,8902,0],[4429,9061,0],[4407,9045,0],[4418,9051,0],[4438,9070,0],[4428,9345,0],[4406,9340,0],[4466,8764,0],[4474,8861,0],[4447,8860,0],[4459,8863,0],[4448,8906,0],[4467,8907,0],[4446,9077,0],[4455,9083,0],[4467,9085,0],[4477,9085,0],[4466,9348,0],[4450,9348,0],[4513,8764,0],[4489,8764,0],[4500,8853,0],[4488,8857,0],[4512,8848,0],[4480,8908,0],[4487,8913,0],[4486,8950,0],[4515,8930,0],[4489,8935,0],[4490,8922,0],[4502,8929,0],[4494,8927,0],[4486,8965,0],[4484,8995,0],[4486,8980,0],[4486,9032,0],[4484,9012,0],[4491,9074,0],[4488,9052,0],[4496,9114,0],[4487,9086,0],[4492,9094,0],[4500,9136,0],[4516,9138,0],[4501,9154,0],[4504,9140,0],[4502,9195,0],[4502,9173,0],[4513,9197,0],[4504,9195,0],[4499,9219,0],[4490,9275,0],[4494,9245,0],[4487,9319,0],[4488,9300,0],[4513,9349,0],[4495,9349,0],[4486,9336,0],[4480,9349,0],[4486,9346,0],[4538,8766,0],[4559,8768,0],[4557,8838,0],[4540,8839,0],[4546,8839,0],[4534,8838,0],[4528,8840,0],[4521,8844,0],[4533,8933,0],[4553,8935,0],[4533,9136,0],[4551,9134,0],[4525,9199,0],[4553,9202,0],[4538,9200,0],[4546,9349,0],[4530,9350,0],[4582,8770,0],[4575,8841,0],[4589,8844,0],[4599,8848,0],[4590,8943,0],[4572,8938,0],[4581,9111,0],[4596,9109,0],[4570,9116,0],[4569,9134,0],[4569,9147,0],[4566,9125,0],[4562,9132,0],[4570,9162,0],[4570,9179,0],[4570,9193,0],[4565,9201,0],[4583,9347,0],[4564,9348,0],[4599,9346,0],[4623,8631,0],[4620,8655,0],[4618,8679,0],[4615,8704,0],[4612,8729,0],[4609,8751,0],[4612,8770,0],[4608,8771,0],[4607,8788,0],[4605,8803,0],[4603,8819,0],[4603,8832,0],[4617,8878,0],[4603,8844,0],[4611,8869,0],[4606,8853,0],[4609,8860,0],[4630,8885,0],[4622,8947,0],[4607,8946,0],[4614,8959,0],[4636,8946,0],[4614,8950,0],[4614,8976,0],[4613,8996,0],[4612,9017,0],[4613,9039,0],[4618,9078,0],[4615,9058,0],[4610,9111,0],[4620,9097,0],[4620,9111,0],[4625,9118,0],[4635,9120,0],[4621,9114,0],[4635,9338,0],[4620,9339,0],[4610,9343,0],[4641,8770,0],[4663,8770,0],[4644,8893,0],[4658,8898,0],[4675,8899,0],[4656,8910,0],[4656,8900,0],[4655,8934,0],[4653,8943,0],[4646,8946,0],[4656,8922,0],[4645,9120,0],[4659,9122,0],[4666,9152,0],[4676,9123,0],[4665,9138,0],[4665,9130,0],[4664,9121,0],[4665,9125,0],[4670,9190,0],[4667,9166,0],[4668,9176,0],[4672,9207,0],[4672,9231,0],[4672,9220,0],[4672,9245,0],[4677,9268,0],[4675,9260,0],[4672,9254,0],[4677,9281,0],[4675,9296,0],[4674,9311,0],[4655,9337,0],[4673,9324,0],[4672,9335,0],[4679,9349,0],[4674,9342,0],[4676,9345,0],[4669,9337,0],[4718,8770,0],[4688,8770,0],[4720,8898,0],[4692,8899,0],[4706,8899,0],[4711,9120,0],[4693,9122,0],[4682,9354,0],[4685,9360,0],[4693,9363,0],[4714,9365,0],[4704,9364,0],[4752,8770,0],[4737,8899,0],[4750,8903,0],[4759,8908,0],[4752,9127,0],[4736,9124,0],[4725,9120,0],[4756,9358,0],[4744,9356,0],[4728,9355,0],[4735,9354,0],[4724,9359,0],[4730,9399,0],[4726,9384,0],[4724,9374,0],[4721,9364,0],[4721,9368,0],[4733,9418,0],[4746,9480,0],[4737,9440,0],[4741,9460,0],[4753,9501,0],[4759,9519,0],[4785,8773,0],[4766,8915,0],[4770,8953,0],[4770,8934,0],[4771,8925,0],[4768,8943,0],[4786,8987,0],[4780,8974,0],[4774,8964,0],[4791,9017,0],[4792,9016,0],[4793,9036,0],[4790,9001,0],[4793,9016,0],[4800,9019,0],[4789,9003,0],[4792,9030,0],[4796,9052,0],[4798,9065,0],[4793,9115,0],[4781,9122,0],[4768,9127,0],[4786,9355,0],[4770,9357,0],[4769,9558,0],[4764,9538,0],[4774,9579,0],[4778,9601,0],[4814,8777,0],[4823,9030,0],[4836,9038,0],[4809,9023,0],[4804,9079,0],[4810,9094,0],[4814,9109,0],[4802,9109,0],[4808,9105,0],[4825,9139,0],[4819,9123,0],[4834,9158,0],[4830,9150,0],[4838,9170,0],[4826,9350,0],[4812,9353,0],[4800,9354,0],[4841,8781,0],[4868,8785,0],[4851,9046,0],[4868,9050,0],[4867,9199,0],[4855,9194,0],[4843,9179,0],[4849,9187,0],[4842,9344,0],[4858,9340,0],[4871,9341,0],[4902,8699,0],[4898,8719,0],[4913,8716,0],[4902,8709,0],[4907,8713,0],[4895,8738,0],[4895,8756,0],[4899,8787,0],[4896,8777,0],[4894,8823,0],[4896,8801,0],[4896,8877,0],[4895,8849,0],[4917,8913,0],[4894,8899,0],[4903,8911,0],[4895,8908,0],[4918,9064,0],[4884,9053,0],[4900,9058,0],[4920,9048,0],[4918,9060,0],[4880,9203,0],[4891,9209,0],[4914,9229,0],[4909,9222,0],[4897,9215,0],[4917,9238,0],[4903,9219,0],[4886,9345,0],[4904,9349,0],[4917,9351,0],[4922,8719,0],[4936,8722,0],[4959,8726,0],[4949,8723,0],[4928,8787,0],[4952,8788,0],[4929,8917,0],[4936,8950,0],[4936,8935,0],[4935,8924,0],[4936,8970,0],[4933,8989,0],[4923,9028,0],[4928,9005,0],[4941,9068,0],[4922,9247,0],[4952,9263,0],[4933,9253,0],[4942,9258,0],[4933,9357,0],[4947,9338,0],[4957,9324,0],[4938,9349,0],[4933,9356,0],[4950,9365,0],[4975,8790,0],[4996,8792,0],[4971,9078,0],[4960,9072,0],[4990,9099,0],[4978,9089,0],[4970,9280,0],[4962,9270,0],[4967,9311,0],[4975,9292,0],[4974,9301,0],[4969,9370,0],[4989,9374,0],[5027,8795,0],[5039,8797,0],[5019,8778,0],[5011,8793,0],[5024,8796,0],[5022,8791,0],[5021,8794,0],[5021,8786,0],[5032,8839,0],[5031,8819,0],[5028,8805,0],[5032,8858,0],[5031,8875,0],[5031,8887,0],[5031,8892,0],[5035,8894,0],[5008,9107,0],[5025,9110,0],[5032,9376,0],[5010,9375,0],[5069,8895,0],[5043,8894,0],[5055,8894,0],[5069,9106,0],[5044,9109,0],[5080,9236,0],[5079,9278,0],[5079,9250,0],[5078,9264,0],[5075,9308,0],[5078,9294,0],[5073,9324,0],[5071,9353,0],[5072,9339,0],[5071,9386,0],[5053,9380,0],[5076,9373,0],[5071,9366,0],[5093,8907,0],[5084,8899,0],[5097,8919,0],[5113,8959,0],[5100,8931,0],[5105,8944,0],[5101,8997,0],[5115,8981,0],[5108,8989,0],[5118,8973,0],[5118,8980,0],[5119,9001,0],[5119,9029,0],[5092,9006,0],[5096,9002,0],[5114,9069,0],[5116,9048,0],[5109,9090,0],[5099,9101,0],[5104,9106,0],[5088,9105,0],[5106,9097,0],[5099,9125,0],[5093,9147,0],[5089,9166,0],[5086,9184,0],[5083,9201,0],[5080,9219,0],[5088,9382,0],[5146,9035,0],[5153,9023,0],[5144,9052,0],[5148,9068,0],[5154,9079,0],[5160,9090,0],[5162,9115,0],[5162,9102,0],[5163,9129,0]]],["Musakhan",[[4516,6960,0],[4514,7058,0],[4542,6967,0],[4536,7073,0],[4528,7062,0],[4554,7095,0],[4543,7085,0],[4552,7162,0],[4539,7167,0],[4568,6974,0],[4592,6980,0],[4563,7108,0],[4563,7152,0],[4568,7124,0],[4569,7140,0],[4617,6988,0],[4642,6996,0],[4666,7004,0],[4679,7297,0],[4679,7306,0],[4665,7344,0],[4676,7321,0],[4653,7362,0],[4690,7012,0],[4713,7019,0],[4717,7005,0],[4717,7035,0],[4714,7024,0],[4713,7016,0],[4716,7066,0],[4717,7050,0],[4714,7081,0],[4718,7099,0],[4713,7092,0],[4694,7212,0],[4691,7227,0],[4720,7202,0],[4697,7203,0],[4711,7201,0],[4703,7201,0],[4681,7274,0],[4685,7254,0],[4688,7240,0],[4703,7304,0],[4713,7309,0],[4715,7301,0],[4691,7307,0],[4714,7318,0],[4684,7307,0],[4714,7330,0],[4714,7347,0],[4713,7361,0],[4687,7378,0],[4693,7369,0],[4705,7368,0],[4757,6909,0],[4747,6929,0],[4741,6951,0],[4733,6972,0],[4724,6991,0],[4741,7028,0],[4731,7111,0],[4725,7104,0],[4734,7137,0],[4733,7123,0],[4737,7148,0],[4734,7191,0],[4736,7176,0],[4737,7160,0],[4728,7200,0],[4735,7309,0],[4740,7318,0],[4728,7303,0],[4753,7322,0],[4786,6565,0],[4797,6569,0],[4796,6757,0],[4790,6781,0],[4788,6801,0],[4786,6822,0],[4784,6845,0],[4782,6866,0],[4780,6883,0],[4774,6893,0],[4766,6897,0],[4775,7036,0],[4794,7080,0],[4797,7066,0],[4798,7051,0],[4790,7117,0],[4790,7095,0],[4791,7143,0],[4792,7167,0],[4792,7192,0],[4795,7185,0],[4789,7213,0],[4789,7233,0],[4790,7279,0],[4789,7256,0],[4793,7301,0],[4792,7316,0],[4796,7294,0],[4769,7324,0],[4784,7323,0],[4825,6537,0],[4817,6551,0],[4814,6576,0],[4822,6591,0],[4806,6570,0],[4812,6561,0],[4826,6607,0],[4829,6639,0],[4828,6624,0],[4830,6656,0],[4831,6674,0],[4817,6710,0],[4827,6698,0],[4831,6688,0],[4806,6731,0],[4836,7032,0],[4805,7037,0],[4800,7041,0],[4832,7182,0],[4818,7183,0],[4806,7183,0],[4809,7298,0],[4829,7304,0],[4878,6842,0],[4874,6871,0],[4874,6855,0],[4878,6919,0],[4876,6901,0],[4874,6887,0],[4879,6938,0],[4871,7023,0],[4849,7191,0],[4843,7182,0],[4849,7224,0],[4850,7206,0],[4848,7238,0],[4875,7246,0],[4853,7244,0],[4862,7246,0],[4861,7308,0],[4846,7307,0],[4871,7306,0],[4898,6825,0],[4886,6832,0],[4908,6816,0],[4913,6806,0],[4881,6957,0],[4904,6984,0],[4887,6969,0],[4897,6973,0],[4908,6996,0],[4904,7014,0],[4912,7005,0],[4884,7040,0],[4883,7026,0],[4895,7064,0],[4902,7072,0],[4887,7058,0],[4883,7051,0],[4916,7090,0],[4907,7082,0],[4895,7246,0],[4919,7246,0],[4910,7305,0],[4893,7303,0],[4880,7302,0],[4929,6807,0],[4952,6816,0],[4949,6996,0],[4930,7005,0],[4947,7114,0],[4941,7102,0],[4929,7095,0],[4953,7147,0],[4952,7129,0],[4949,7166,0],[4946,7184,0],[4944,7221,0],[4945,7201,0],[4942,7240,0],[4936,7246,0],[4950,7313,0],[4929,7308,0],[4993,6504,0],[4971,6826,0],[4989,6834,0],[4967,6988,0],[4985,6981,0],[4968,7318,0],[4986,7322,0],[4999,7439,0],[5000,7423,0],[4991,7471,0],[4996,7456,0],[4986,7484,0],[4982,7493,0],[5009,6515,0],[5015,6543,0],[5006,6555,0],[5020,6528,0],[5020,6531,0],[5021,6522,0],[5018,6522,0],[5030,6522,0],[5020,6590,0],[5010,6578,0],[5004,6566,0],[5036,6585,0],[5025,6593,0],[5030,6590,0],[5029,6619,0],[5031,6638,0],[5027,6602,0],[5026,6670,0],[5030,6654,0],[5034,6697,0],[5022,6686,0],[5024,6694,0],[5008,6840,0],[5039,6866,0],[5026,6851,0],[5010,6980,0],[5040,6983,0],[5039,7188,0],[5037,7228,0],[5038,7207,0],[5031,7264,0],[5034,7247,0],[5030,7301,0],[5030,7283,0],[5028,7317,0],[5014,7360,0],[5004,7328,0],[5012,7340,0],[5022,7328,0],[5014,7333,0],[5012,7379,0],[5007,7394,0],[5029,7429,0],[5003,7409,0],[5002,7429,0],[5014,7429,0],[5041,6523,0],[5079,6525,0],[5055,6524,0],[5067,6525,0],[5075,6571,0],[5042,6580,0],[5078,6563,0],[5054,6575,0],[5069,6575,0],[5047,6576,0],[5063,6575,0],[5065,6701,0],[5072,6712,0],[5055,6696,0],[5045,6696,0],[5075,6726,0],[5053,6885,0],[5070,6899,0],[5065,6982,0],[5077,7104,0],[5055,7150,0],[5067,7128,0],[5043,7169,0],[5052,7429,0],[5076,7432,0],[5097,6516,0],[5090,6520,0],[5100,6536,0],[5086,6550,0],[5093,6543,0],[5108,6529,0],[5111,6522,0],[5080,6556,0],[5081,6743,0],[5104,6758,0],[5090,6758,0],[5096,6756,0],[5094,6783,0],[5088,6761,0],[5115,6762,0],[5106,6832,0],[5100,6807,0],[5112,6870,0],[5110,6854,0],[5115,6855,0],[5113,6906,0],[5087,6905,0],[5099,6913,0],[5115,6887,0],[5099,6953,0],[5120,6929,0],[5106,6923,0],[5106,6940,0],[5112,6923,0],[5111,6932,0],[5091,6981,0],[5092,6995,0],[5090,6976,0],[5094,6966,0],[5088,6984,0],[5102,7038,0],[5098,7014,0],[5090,7080,0],[5100,7059,0],[5109,7149,0],[5119,7120,0],[5098,7180,0],[5096,7228,0],[5093,7208,0],[5109,7246,0],[5100,7437,0],[5111,7473,0],[5118,7459,0],[5106,7489,0],[5127,6769,0],[5141,6774,0],[5156,6777,0],[5145,6852,0],[5127,6855,0],[5143,6945,0],[5129,6939,0],[5121,6988,0],[5152,6996,0],[5143,6994,0],[5134,6992,0],[5139,7026,0],[5141,7003,0],[5138,7061,0],[5130,7092,0],[5128,7262,0],[5142,7274,0],[5147,7293,0],[5145,7317,0],[5142,7344,0],[5138,7397,0],[5140,7372,0],[5132,7423,0],[5121,7437,0],[5127,7436,0],[5123,7449,0],[5126,7441,0],[5192,6760,0],[5180,6769,0],[5168,6775,0],[5182,6832,0],[5165,6843,0],[5184,6948,0],[5163,6947,0],[5174,7002,0],[5197,7101,0],[5191,7123,0],[5188,7146,0],[5193,7199,0],[5189,7172,0],[5199,7229,0],[5234,6717,0],[5217,6736,0],[5202,6750,0],[5230,6776,0],[5216,6792,0],[5200,6817,0],[5211,6802,0],[5215,6899,0],[5232,6885,0],[5206,6920,0],[5200,6937,0],[5203,7009,0],[5234,7020,0],[5211,7080,0],[5229,7060,0],[5206,7257,0],[5225,7309,0],[5215,7284,0],[5236,7333,0],[5257,6693,0],[5273,6687,0],[5246,6703,0],[5249,6759,0],[5264,6748,0],[5277,6740,0],[5272,6871,0],[5252,6881,0],[5259,7036,0],[5250,7039,0],[5277,7053,0],[5243,7046,0],[5246,7357,0],[5255,7381,0],[5262,7407,0],[5304,6715,0],[5288,6702,0],[5283,6714,0],[5286,6692,0],[5294,6701,0],[5283,6731,0],[5287,6752,0],[5316,6732,0],[5296,6774,0],[5301,6804,0],[5297,6833,0],[5287,6855,0],[5287,7070,0],[5308,7108,0],[5296,7089,0],[5342,6749,0],[5328,6742,0],[5356,6756,0],[5345,7144,0],[5324,7126,0],[5372,6759,0],[5389,6763,0],[5369,7160,0],[5392,7177,0],[5426,6777,0],[5407,6769,0],[5412,7193,0],[5429,7208,0],[5444,6786,0],[5446,7223,0]]],["Salam",[[3170,6060,0],[3169,6076,0],[3173,6090,0],[3176,6105,0],[3189,6136,0],[3177,6123,0],[3235,6143,0],[3212,6140,0],[3272,6159,0],[3256,6149,0],[3280,6190,0],[3280,6461,0],[3261,6472,0],[3250,6484,0],[3246,6499,0],[3302,5857,0],[3280,6174,0],[3288,6223,0],[3319,6216,0],[3280,6204,0],[3303,6215,0],[3291,6215,0],[3298,6274,0],[3295,6247,0],[3298,6301,0],[3311,6348,0],[3302,6325,0],[3318,6366,0],[3301,6450,0],[3357,5866,0],[3330,5861,0],[3326,5855,0],[3324,5844,0],[3342,6217,0],[3335,6396,0],[3323,6380,0],[3321,6440,0],[3339,6430,0],[3356,6421,0],[3351,6407,0],[3381,5878,0],[3397,5896,0],[3366,6220,0],[3387,6225,0],[3374,6411,0],[3394,6401,0],[3363,6411,0],[3436,5848,0],[3428,5877,0],[3408,5917,0],[3427,5904,0],[3414,5940,0],[3416,5933,0],[3423,5923,0],[3414,5962,0],[3422,5999,0],[3418,5981,0],[3426,6023,0],[3435,6047,0],[3406,6228,0],[3424,6232,0],[3418,6393,0],[3450,5784,0],[3446,5817,0],[3463,6071,0],[3446,6063,0],[3441,6235,0],[3457,6239,0],[3472,6241,0],[3444,6390,0],[3469,6390,0],[3451,6395,0],[3457,6436,0],[3454,6415,0],[3452,6404,0],[3463,6479,0],[3458,6459,0],[3473,6499,0],[3480,6524,0],[3501,6111,0],[3483,6085,0],[3513,6138,0],[3519,6237,0],[3518,6258,0],[3488,6244,0],[3509,6248,0],[3500,6246,0],[3514,6284,0],[3507,6311,0],[3502,6339,0],[3488,6385,0],[3498,6366,0],[3485,6551,0],[3506,6586,0],[3492,6574,0],[3541,5736,0],[3560,5739,0],[3559,5916,0],[3557,5942,0],[3522,6164,0],[3532,6190,0],[3557,6196,0],[3538,6197,0],[3525,6220,0],[3533,6208,0],[3531,6590,0],[3556,6590,0],[3583,5741,0],[3574,5747,0],[3576,5754,0],[3575,5769,0],[3571,5793,0],[3568,5815,0],[3565,5838,0],[3563,5860,0],[3562,5887,0],[3569,5961,0],[3593,5968,0],[3582,6195,0],[3598,6591,0],[3577,6590,0],[3612,5745,0],[3634,5757,0],[3619,5973,0],[3623,6197,0],[3601,6195,0],[3617,6593,0],[3650,5777,0],[3664,5804,0],[3673,5829,0],[3649,5979,0],[3674,6234,0],[3657,6221,0],[3645,6202,0],[3664,6248,0],[3676,6265,0],[3668,6254,0],[3645,6599,0],[3676,6605,0],[3683,5853,0],[3698,5875,0],[3716,5887,0],[3707,6000,0],[3681,5984,0],[3716,6029,0],[3708,6075,0],[3712,6056,0],[3704,6095,0],[3701,6115,0],[3693,6153,0],[3697,6135,0],[3687,6179,0],[3681,6208,0],[3698,6273,0],[3701,6609,0],[3718,6611,0],[3716,6673,0],[3710,6699,0],[3736,5893,0],[3754,5899,0],[3753,6312,0],[3744,6287,0],[3721,6281,0],[3744,6344,0],[3736,6374,0],[3723,6431,0],[3730,6401,0],[3721,6455,0],[3724,6474,0],[3726,6519,0],[3726,6493,0],[3725,6546,0],[3724,6589,0],[3725,6567,0],[3721,6640,0],[3723,6612,0],[3778,5753,0],[3781,5772,0],[3784,5790,0],[3781,5835,0],[3784,5811,0],[3782,5858,0],[3782,5877,0],[3775,5902,0],[3766,5896,0],[3775,5888,0],[3797,5902,0],[3786,6273,0],[3767,6287,0],[3761,6291,0],[3838,5905,0],[3817,5903,0],[3837,6059,0],[3832,6071,0],[3824,6115,0],[3827,6098,0],[3830,6083,0],[3818,6150,0],[3821,6132,0],[3815,6168,0],[3812,6183,0],[3810,6196,0],[3809,6211,0],[3807,6227,0],[3813,6275,0],[3803,6256,0],[3800,6267,0],[3805,6241,0],[3804,6268,0],[3831,6283,0],[3861,5909,0],[3865,6001,0],[3854,6010,0],[3846,6024,0],[3842,6042,0],[3872,6295,0],[3850,6291,0],[3883,5915,0],[3902,5919,0],[3917,5919,0],[3910,5934,0],[3903,5950,0],[3918,5920,0],[3899,5970,0],[3880,5994,0],[3893,5987,0],[3914,6299,0],[3893,6297,0],[3942,5912,0],[3953,5916,0],[3923,5912,0],[3931,5909,0],[3942,5960,0],[3951,5939,0],[3958,5931,0],[3941,5986,0],[3953,6037,0],[3944,6012,0],[3958,6307,0],[3937,6302,0],[3999,5911,0],[3964,5925,0],[3990,5922,0],[3963,5921,0],[3972,5924,0],[3981,5925,0],[3989,6075,0],[3970,6058,0],[3996,6318,0],[3978,6312,0],[3997,6293,0],[3997,6309,0],[4006,5893,0],[4004,5911,0],[4027,5936,0],[4009,5925,0],[4006,6096,0],[4016,6122,0],[4022,6152,0],[4020,6183,0],[4013,6214,0],[4007,6244,0],[4001,6271,0],[4013,6327,0],[4027,6335,0],[4055,5940,0],[4064,6346,0],[4046,6339,0],[4075,6359,0],[4092,6388,0],[4083,6373,0],[4100,6401,0]]],["Seyyedan",[[2514,7176,0],[2500,7172,0],[2559,6938,0],[2543,6951,0],[2529,6960,0],[2532,7186,0],[2547,7197,0],[2529,7298,0],[2547,7300,0],[2551,7382,0],[2581,6925,0],[2593,7223,0],[2560,7207,0],[2576,7215,0],[2582,7301,0],[2563,7301,0],[2576,7385,0],[2600,7389,0],[2638,6875,0],[2604,6915,0],[2631,6903,0],[2631,6887,0],[2619,6908,0],[2626,6903,0],[2635,6923,0],[2638,6943,0],[2639,6959,0],[2640,6991,0],[2640,7014,0],[2613,7229,0],[2638,7236,0],[2628,7233,0],[2603,7303,0],[2622,7305,0],[2638,7306,0],[2612,7399,0],[2612,7415,0],[2613,7437,0],[2611,7427,0],[2619,7443,0],[2628,7444,0],[2636,7444,0],[2644,6797,0],[2656,6832,0],[2677,6829,0],[2651,6822,0],[2666,6829,0],[2653,6836,0],[2649,6809,0],[2649,6866,0],[2654,6879,0],[2656,6857,0],[2656,6846,0],[2648,6873,0],[2674,6907,0],[2661,6891,0],[2640,6975,0],[2641,7042,0],[2643,7067,0],[2643,7093,0],[2642,7117,0],[2641,7141,0],[2641,7195,0],[2641,7168,0],[2679,7232,0],[2663,7235,0],[2642,7218,0],[2643,7236,0],[2654,7239,0],[2647,7244,0],[2645,7256,0],[2648,7275,0],[2650,7292,0],[2651,7306,0],[2649,7318,0],[2648,7306,0],[2647,7331,0],[2647,7344,0],[2646,7362,0],[2648,7397,0],[2646,7381,0],[2651,7414,0],[2652,7433,0],[2651,7467,0],[2652,7450,0],[2643,7445,0],[2651,7445,0],[2646,7492,0],[2672,7494,0],[2654,7496,0],[2650,7483,0],[2659,7508,0],[2658,7519,0],[2688,6836,0],[2694,6849,0],[2717,6864,0],[2698,6860,0],[2706,6865,0],[2702,6943,0],[2688,6925,0],[2714,7230,0],[2697,7230,0],[2697,7497,0],[2757,6799,0],[2756,6818,0],[2757,6836,0],[2742,6861,0],[2757,6852,0],[2754,6860,0],[2730,6862,0],[2722,6957,0],[2753,6989,0],[2740,6969,0],[2731,7228,0],[2746,7227,0],[2758,7230,0],[2723,7499,0],[2748,7500,0],[2772,6774,0],[2762,6783,0],[2787,6769,0],[2782,6865,0],[2767,6862,0],[2796,7036,0],[2789,7001,0],[2782,7019,0],[2767,7008,0],[2775,7008,0],[2763,7237,0],[2766,7277,0],[2765,7261,0],[2764,7248,0],[2776,7310,0],[2770,7303,0],[2768,7291,0],[2788,7310,0],[2792,7502,0],[2770,7500,0],[2821,6747,0],[2815,6757,0],[2830,6738,0],[2803,6763,0],[2834,6863,0],[2800,6865,0],[2818,6865,0],[2811,6991,0],[2837,6983,0],[2804,7060,0],[2827,7062,0],[2816,7065,0],[2809,7067,0],[2813,7106,0],[2806,7083,0],[2833,7144,0],[2824,7125,0],[2835,7306,0],[2802,7309,0],[2818,7308,0],[2813,7510,0],[2822,7524,0],[2822,7542,0],[2818,7592,0],[2821,7564,0],[2848,6734,0],[2871,6728,0],[2860,6856,0],[2847,6859,0],[2874,6854,0],[2857,6974,0],[2871,6966,0],[2845,7057,0],[2865,7052,0],[2854,7185,0],[2841,7166,0],[2869,7198,0],[2875,7304,0],[2852,7305,0],[2864,7305,0],[2893,6717,0],[2914,6705,0],[2891,6851,0],[2911,6846,0],[2902,6953,0],[2885,6959,0],[2919,6947,0],[2900,7065,0],[2881,7048,0],[2894,7051,0],[2907,7097,0],[2910,7115,0],[2903,7081,0],[2916,7138,0],[2913,7129,0],[2904,7231,0],[2883,7212,0],[2893,7277,0],[2915,7277,0],[2904,7277,0],[2882,7296,0],[2885,7283,0],[2913,7351,0],[2908,7374,0],[2912,7402,0],[2917,7429,0],[2939,6677,0],[2952,6676,0],[2935,6660,0],[2941,6671,0],[2927,6691,0],[2948,6861,0],[2930,6846,0],[2944,6850,0],[2944,6874,0],[2950,6871,0],[2942,6899,0],[2944,6917,0],[2942,6884,0],[2951,6929,0],[2932,6942,0],[2949,6933,0],[2942,6937,0],[2958,7148,0],[2938,7146,0],[2924,7143,0],[2923,7254,0],[2924,7277,0],[2926,7282,0],[2957,7300,0],[2922,7308,0],[2934,7302,0],[2924,7304,0],[2944,7301,0],[2920,7328,0],[2938,7473,0],[2926,7450,0],[2944,7474,0],[2954,7474,0],[2949,7498,0],[2956,7525,0],[2959,7552,0],[2966,6690,0],[2975,6711,0],[2983,6733,0],[2990,6753,0],[2997,6773,0],[2995,6876,0],[2962,6875,0],[2977,6878,0],[2978,6939,0],[2963,6936,0],[2992,6942,0],[2980,7151,0],[2998,7154,0],[2974,7298,0],[2992,7297,0],[2999,7469,0],[2982,7472,0],[2966,7474,0],[2976,7582,0],[2999,7588,0],[2962,7572,0],[3007,6790,0],[3034,6837,0],[3018,6801,0],[3027,6810,0],[3029,6817,0],[3013,6873,0],[3035,6860,0],[3027,6874,0],[3036,6876,0],[3030,6871,0],[3039,6851,0],[3027,6897,0],[3027,6917,0],[3028,6880,0],[3004,6945,0],[3026,6947,0],[3013,6945,0],[3008,6950,0],[3010,6941,0],[3023,6935,0],[3027,6929,0],[3016,6937,0],[3014,6984,0],[3010,6965,0],[3025,7033,0],[3018,7030,0],[3017,7001,0],[3034,7033,0],[3018,7015,0],[3021,7046,0],[3024,7064,0],[3027,7105,0],[3026,7083,0],[3026,7127,0],[3024,7146,0],[3026,7159,0],[3011,7155,0],[3021,7157,0],[3031,7175,0],[3033,7197,0],[3028,7240,0],[3031,7217,0],[3036,7217,0],[3025,7264,0],[3032,7256,0],[3022,7320,0],[3023,7290,0],[3016,7296,0],[3005,7297,0],[3023,7348,0],[3027,7395,0],[3025,7370,0],[3031,7371,0],[3030,7421,0],[3031,7402,0],[3037,7402,0],[3020,7462,0],[3033,7449,0],[3038,7474,0],[3040,7457,0],[3038,7527,0],[3034,7553,0],[3031,7575,0],[3018,7588,0],[3029,7586,0],[3023,7634,0],[3028,7601,0],[3066,6857,0],[3047,6854,0],[3073,6872,0],[3056,6875,0],[3044,6876,0],[3043,6948,0],[3064,6948,0],[3072,7034,0],[3057,7034,0],[3045,7033,0],[3053,7218,0],[3067,7217,0],[3044,7218,0],[3065,7252,0],[3049,7253,0],[3041,7256,0],[3073,7374,0],[3054,7372,0],[3041,7371,0],[3048,7402,0],[3063,7402,0],[3078,7463,0],[3064,7460,0],[3053,7456,0],[3041,7499,0],[3099,6666,0],[3101,6708,0],[3102,6685,0],[3102,6754,0],[3101,6731,0],[3106,6777,0],[3115,6795,0],[3089,6856,0],[3089,6867,0],[3110,6854,0],[3103,6861,0],[3114,6856,0],[3118,6874,0],[3116,6861,0],[3100,6952,0],[3081,6947,0],[3111,7033,0],[3089,7032,0],[3107,7198,0],[3119,7198,0],[3099,7204,0],[3096,7231,0],[3081,7216,0],[3097,7217,0],[3093,7216,0],[3099,7259,0],[3115,7266,0],[3081,7254,0],[3120,7277,0],[3095,7243,0],[3093,7252,0],[3117,7305,0],[3118,7290,0],[3116,7322,0],[3093,7377,0],[3113,7381,0],[3081,7404,0],[3120,7408,0],[3101,7405,0],[3109,7465,0],[3094,7465,0],[3156,6763,0],[3148,6789,0],[3127,6830,0],[3137,6808,0],[3129,6809,0],[3122,6803,0],[3137,6855,0],[3122,6850,0],[3121,6893,0],[3122,6914,0],[3123,6947,0],[3122,6931,0],[3121,6964,0],[3145,6972,0],[3159,6975,0],[3126,6962,0],[3132,6969,0],[3130,6976,0],[3129,6988,0],[3144,7026,0],[3160,7023,0],[3130,7031,0],[3130,7023,0],[3129,7001,0],[3130,7012,0],[3154,7099,0],[3155,7112,0],[3155,7089,0],[3158,7134,0],[3154,7125,0],[3145,7196,0],[3132,7196,0],[3155,7201,0],[3136,7337,0],[3148,7346,0],[3154,7355,0],[3122,7331,0],[3159,7338,0],[3158,7346,0],[3150,7391,0],[3150,7360,0],[3153,7363,0],[3147,7376,0],[3129,7382,0],[3140,7383,0],[3159,7411,0],[3150,7407,0],[3159,7400,0],[3137,7410,0],[3141,7464,0],[3126,7462,0],[3152,7469,0],[3175,6744,0],[3171,6857,0],[3199,6859,0],[3168,6983,0],[3178,6989,0],[3189,6992,0],[3194,7016,0],[3179,7024,0],[3196,7001,0],[3196,7036,0],[3195,7022,0],[3197,7075,0],[3196,7061,0],[3196,7049,0],[3195,7088,0],[3175,7086,0],[3160,7085,0],[3197,7085,0],[3192,7089,0],[3184,7088,0],[3167,7083,0],[3168,7139,0],[3181,7153,0],[3179,7144,0],[3172,7184,0],[3177,7167,0],[3170,7211,0],[3166,7235,0],[3168,7219,0],[3187,7220,0],[3169,7203,0],[3176,7271,0],[3191,7275,0],[3164,7251,0],[3166,7264,0],[3199,7278,0],[3191,7319,0],[3200,7298,0],[3196,7310,0],[3170,7324,0],[3161,7328,0],[3182,7323,0],[3195,7396,0],[3171,7366,0],[3190,7362,0],[3185,7365,0],[3161,7365,0],[3167,7396,0],[3181,7366,0],[3178,7396,0],[3171,7439,0],[3168,7434,0],[3165,7425,0],[3179,7466,0],[3173,7476,0],[3177,7452,0],[3162,7473,0],[3175,7445,0],[3176,7501,0],[3177,7519,0],[3177,7483,0],[3179,7551,0],[3177,7535,0],[3179,7569,0],[3178,7586,0],[3177,7604,0],[3202,6739,0],[3223,6738,0],[3239,6722,0],[3236,6734,0],[3221,6860,0],[3211,7092,0],[3228,7094,0],[3231,7223,0],[3202,7220,0],[3216,7221,0],[3201,7285,0],[3220,7397,0],[3244,6863,0],[3265,6865,0],[3247,7091,0],[3267,7087,0],[3246,7227,0],[3260,7232,0],[3273,7234,0],[3242,7400,0],[3271,7412,0],[3258,7405,0],[3289,6871,0],[3308,6883,0],[3306,7092,0],[3286,7087,0],[3295,7239,0],[3285,7234,0],[3301,7262,0],[3301,7248,0],[3299,7283,0],[3296,7305,0],[3293,7337,0],[3293,7352,0],[3294,7320,0],[3299,7383,0],[3297,7365,0],[3300,7423,0],[3286,7438,0],[3300,7402,0],[3280,7422,0],[3300,7439,0],[3299,7473,0],[3295,7449,0],[3291,7457,0],[3309,7486,0],[3319,7497,0],[3331,6891,0],[3359,6891,0],[3345,7110,0],[3325,7100,0],[3331,7505,0],[3380,6889,0],[3367,7120,0],[3388,7144,0],[3381,7132,0],[3398,7151,0],[3403,6891,0],[3416,6916,0],[3416,6900,0],[3419,6937,0],[3427,6984,0],[3422,6960,0],[3431,7007,0],[3435,7029,0],[3431,7146,0],[3412,7150,0],[3442,7047,0],[3458,7076,0],[3450,7061,0],[3466,7086,0],[3473,7090,0],[3451,7142,0],[3469,7139,0],[3489,7141,0]]],["Didar",[[28,5051,0],[38,5055,0],[17,5047,0],[7,5045,0],[7,5159,0],[25,5164,0],[17,5161,0],[33,5166,0],[40,5165,0],[31,5347,0],[11,5342,0],[20,5345,0],[32,5606,0],[24,5617,0],[24,5631,0],[33,5653,0],[40,5663,0],[28,5642,0],[15,5858,0],[27,5856,0],[76,5069,0],[48,5062,0],[67,5073,0],[57,5068,0],[76,5078,0],[78,5086,0],[78,5096,0],[46,5154,0],[73,5152,0],[62,5149,0],[53,5147,0],[66,5151,0],[49,5149,0],[58,5146,0],[75,5198,0],[43,5161,0],[67,5227,0],[61,5255,0],[57,5278,0],[56,5313,0],[62,5291,0],[55,5296,0],[72,5292,0],[45,5350,0],[75,5347,0],[56,5352,0],[69,5350,0],[57,5328,0],[63,5352,0],[59,5339,0],[64,5345,0],[71,5346,0],[70,5456,0],[65,5472,0],[66,5491,0],[65,5507,0],[60,5556,0],[63,5534,0],[65,5521,0],[62,5546,0],[52,5565,0],[42,5597,0],[46,5575,0],[45,5586,0],[43,5672,0],[48,5697,0],[52,5710,0],[44,5685,0],[52,5749,0],[51,5739,0],[55,5730,0],[55,5721,0],[45,5785,0],[50,5772,0],[54,5761,0],[49,5825,0],[44,5804,0],[68,5869,0],[44,5866,0],[57,5844,0],[62,5858,0],[65,5866,0],[90,5059,0],[103,5050,0],[113,5046,0],[87,5115,0],[81,5105,0],[82,5151,0],[88,5145,0],[112,5150,0],[90,5125,0],[90,5135,0],[101,5148,0],[87,5150,0],[89,5147,0],[86,5156,0],[95,5148,0],[83,5172,0],[102,5299,0],[85,5294,0],[118,5303,0],[95,5355,0],[80,5345,0],[108,5374,0],[115,5394,0],[118,5392,0],[112,5409,0],[106,5435,0],[108,5422,0],[81,5447,0],[94,5448,0],[102,5447,0],[89,5880,0],[157,4999,0],[154,5009,0],[152,5021,0],[152,5034,0],[122,5048,0],[131,5050,0],[152,5044,0],[140,5051,0],[148,5053,0],[152,5051,0],[125,5156,0],[140,5163,0],[155,5167,0],[137,5318,0],[137,5307,0],[130,5304,0],[142,5351,0],[139,5339,0],[136,5330,0],[147,5347,0],[157,5347,0],[142,5387,0],[138,5366,0],[133,5380,0],[126,5386,0],[181,4988,0],[182,4980,0],[183,4973,0],[192,4968,0],[186,4969,0],[178,4992,0],[161,4994,0],[167,4994,0],[173,4994,0],[189,5158,0],[193,5152,0],[172,5169,0],[184,5166,0],[198,5292,0],[194,5322,0],[190,5350,0],[168,5349,0],[187,5349,0],[178,5351,0],[166,5397,0],[187,5373,0],[181,5397,0],[184,5388,0],[194,5407,0],[225,4923,0],[219,4929,0],[216,4937,0],[215,4949,0],[215,4959,0],[208,4967,0],[214,4964,0],[200,4968,0],[206,5155,0],[212,5190,0],[235,5167,0],[216,5165,0],[222,5160,0],[214,5175,0],[208,5216,0],[204,5244,0],[202,5268,0],[235,5431,0],[218,5413,0],[234,5418,0],[240,5415,0],[228,5452,0],[219,5471,0],[225,5494,0],[240,5500,0],[214,5481,0],[212,5488,0],[237,5580,0],[235,5606,0],[278,4923,0],[254,5174,0],[278,5185,0],[269,5180,0],[279,5435,0],[264,5424,0],[250,5417,0],[244,5517,0],[241,5549,0],[264,5636,0],[245,5624,0],[287,4935,0],[297,4945,0],[307,4953,0],[320,4956,0],[294,5184,0],[315,5182,0],[308,5183,0],[298,5445,0],[317,5450,0],[316,5650,0],[288,5645,0],[318,5880,0],[332,4959,0],[355,4994,0],[346,4981,0],[340,4969,0],[360,5009,0],[325,5177,0],[342,5174,0],[356,5176,0],[358,5390,0],[351,5415,0],[344,5435,0],[334,5448,0],[342,5652,0],[329,5853,0],[349,5844,0],[373,5034,0],[365,5022,0],[384,5045,0],[395,5052,0],[398,5142,0],[377,5180,0],[395,5161,0],[393,5177,0],[369,5339,0],[385,5327,0],[375,5328,0],[364,5362,0],[383,5661,0],[362,5654,0],[400,5785,0],[394,5821,0],[388,5838,0],[383,5842,0],[368,5844,0],[408,5069,0],[407,5057,0],[403,5054,0],[404,5104,0],[407,5086,0],[401,5123,0],[405,5186,0],[424,5196,0],[433,5190,0],[422,5195,0],[431,5236,0],[432,5213,0],[429,5258,0],[428,5277,0],[431,5291,0],[437,5302,0],[439,5314,0],[433,5325,0],[401,5327,0],[417,5326,0],[406,5671,0],[431,5677,0],[411,5680,0],[409,5709,0],[410,5691,0],[405,5752,0],[408,5727,0],[424,5853,0],[401,5843,0],[453,5189,0],[476,5190,0],[445,5323,0],[469,5326,0],[456,5325,0],[446,5324,0],[480,5327,0],[459,5673,0],[448,5863,0],[496,4997,0],[495,5022,0],[491,5075,0],[493,5048,0],[490,5103,0],[489,5130,0],[489,5155,0],[517,5195,0],[489,5177,0],[495,5190,0],[487,5195,0],[488,5190,0],[488,5217,0],[489,5266,0],[488,5244,0],[489,5288,0],[490,5309,0],[490,5334,0],[486,5327,0],[491,5365,0],[491,5392,0],[491,5420,0],[490,5453,0],[490,5481,0],[490,5504,0],[490,5530,0],[490,5554,0],[490,5575,0],[491,5603,0],[492,5637,0],[494,5671,0],[483,5661,0],[514,5650,0],[494,5651,0],[496,5651,0],[496,5704,0],[497,5739,0],[496,5774,0],[494,5808,0],[494,5841,0],[541,5200,0],[545,5650,0],[585,5205,0],[562,5201,0],[580,5652,0],[616,5230,0],[639,5225,0],[605,5211,0],[622,5215,0],[609,5213,0],[620,5261,0],[620,5318,0],[620,5290,0],[620,5349,0],[617,5378,0],[615,5397,0],[630,5412,0],[620,5407,0],[637,5460,0],[627,5480,0],[610,5518,0],[618,5499,0],[605,5545,0],[606,5576,0],[608,5635,0],[608,5606,0],[615,5654,0],[607,5653,0],[654,5239,0],[672,5244,0],[672,5241,0],[644,5439,0],[641,5421,0],[650,5656,0],[681,5232,0],[700,5239,0],[690,5244,0]]],["Baluchan",[[33,6943,0],[36,6977,0],[40,7008,0],[40,7159,0],[39,7157,0],[10,7161,0],[20,7161,0],[44,7037,0],[47,7066,0],[46,7094,0],[44,7119,0],[77,7151,0],[42,7140,0],[62,7160,0],[67,7176,0],[76,7166,0],[58,7205,0],[52,7234,0],[52,7262,0],[53,7293,0],[53,7314,0],[105,7101,0],[95,7112,0],[87,7128,0],[101,7167,0],[83,7164,0],[81,7361,0],[116,7386,0],[100,7375,0],[153,6743,0],[148,6758,0],[138,6760,0],[157,6760,0],[146,7072,0],[122,7089,0],[148,7164,0],[126,7170,0],[133,7397,0],[151,7408,0],[163,6779,0],[168,6797,0],[171,6825,0],[177,6875,0],[174,6854,0],[181,6895,0],[186,6913,0],[191,6938,0],[192,6967,0],[190,6992,0],[192,7013,0],[196,7028,0],[167,7056,0],[185,7043,0],[171,7159,0],[195,7159,0],[169,7419,0],[187,7429,0],[190,7434,0],[196,7448,0],[213,6690,0],[239,6699,0],[207,7027,0],[231,7009,0],[213,7150,0],[228,7140,0],[203,7438,0],[205,7468,0],[220,7448,0],[237,7456,0],[216,7493,0],[265,6702,0],[253,6993,0],[274,6978,0],[275,7140,0],[249,7139,0],[254,7465,0],[272,7474,0],[308,6707,0],[287,6704,0],[313,6948,0],[293,6963,0],[302,7140,0],[312,7495,0],[289,7482,0],[337,6643,0],[352,6660,0],[355,6716,0],[332,6711,0],[359,6915,0],[331,6935,0],[344,6925,0],[331,7138,0],[338,7510,0],[357,7524,0],[361,6686,0],[366,6717,0],[364,6707,0],[374,6725,0],[390,6738,0],[381,6898,0],[363,7132,0],[395,7126,0],[376,7538,0],[394,7551,0],[406,6754,0],[428,6770,0],[407,6876,0],[434,6854,0],[425,7121,0],[413,7563,0],[433,7574,0],[457,6603,0],[475,6614,0],[452,6782,0],[473,6789,0],[459,6835,0],[476,6816,0],[453,7120,0],[478,7122,0],[474,7595,0],[453,7585,0],[496,6624,0],[496,6626,0],[494,6655,0],[489,6710,0],[491,6682,0],[488,6741,0],[484,6794,0],[488,6770,0],[488,6794,0],[498,6794,0],[489,6791,0],[513,6824,0],[509,6803,0],[515,6879,0],[514,6849,0],[520,6909,0],[519,6919,0],[516,6949,0],[517,6928,0],[517,6981,0],[520,7009,0],[519,7079,0],[497,7108,0],[515,7094,0],[512,7092,0],[497,7141,0],[487,7135,0],[507,7145,0],[511,7157,0],[482,7123,0],[483,7129,0],[511,7150,0],[519,7193,0],[513,7164,0],[518,7168,0],[517,7212,0],[515,7229,0],[502,7279,0],[514,7243,0],[511,7265,0],[506,7270,0],[514,7255,0],[502,7320,0],[502,7297,0],[505,7345,0],[509,7367,0],[518,7392,0],[512,7382,0],[528,6634,0],[558,6643,0],[556,6927,0],[531,6923,0],[522,7029,0],[524,7054,0],[555,7066,0],[540,7100,0],[550,7084,0],[558,7086,0],[521,7176,0],[528,7400,0],[536,7430,0],[533,7411,0],[537,7452,0],[537,7471,0],[551,7509,0],[538,7487,0],[543,7499,0],[557,7521,0],[588,6653,0],[598,6651,0],[582,6932,0],[562,7047,1],[570,7051,0],[577,7074,0],[568,7071,0],[578,7053,0],[584,7055,0],[560,7068,0],[570,7111,0],[566,7089,0],[571,7091,0],[572,7535,0],[595,7543,0],[586,7538,0],[562,7530,0],[601,6631,0],[631,6667,0],[613,6660,0],[623,6943,0],[601,6935,0],[633,7123,0],[601,7120,0],[618,7156,0],[619,7129,0],[618,7140,0],[616,7184,0],[613,7210,0],[612,7228,0],[610,7255,0],[610,7288,0],[612,7314,0],[616,7338,0],[638,7328,0],[617,7326,0],[621,7366,0],[626,7393,0],[630,7422,0],[634,7472,0],[634,7448,0],[633,7497,0],[639,7547,0],[635,7520,0],[604,7558,0],[636,7571,0],[614,7575,0],[654,6678,0],[675,6691,0],[645,6952,0],[664,6958,0],[670,7122,0],[669,7331,0],[700,6702,0],[692,6964,0],[700,7120,0],[716,7330,0],[695,7332,0],[728,6711,0],[748,6727,0],[754,6988,0],[725,6974,0],[750,7123,0],[725,7121,0],[735,7320,0],[754,7303,0],[779,6689,0],[779,6708,0],[762,6745,0],[779,6731,0],[780,6750,0],[779,6763,0],[780,6762,0],[778,7006,0],[798,7019,0],[777,7126,0],[798,7233,0],[786,7239,0],[786,7254,0],[785,7273,0],[773,7287,0],[801,6780,0],[831,6792,0],[836,7035,0],[816,7025,0],[808,7131,0],[835,7137,0],[834,7224,0],[816,7228,0],[861,6802,0],[863,7046,0],[854,7141,0],[873,7146,0],[876,7215,0],[854,7220,0],[890,6810,0],[896,7059,0],[917,7077,0],[916,7155,0],[891,7150,0],[918,7156,0],[917,7182,0],[918,7166,0],[920,7206,0],[897,7210,0],[912,7206,0],[921,7103,0],[949,7157,0],[921,7130,0],[921,7146,0],[925,7233,0],[932,7264,0],[936,7297,0],[937,7340,0],[936,7321,0],[980,7155,0],[1001,7083,0]]],["Gholam",[[1275,5691,0],[1273,5840,0],[1297,5692,0],[1297,5847,0],[1345,5697,0],[1320,5692,0],[1359,5777,0],[1354,5802,0],[1321,5849,0],[1351,5847,0],[1370,5706,0],[1386,5718,0],[1369,5751,0],[1399,5735,0],[1374,5732,0],[1379,5720,0],[1367,5818,0],[1387,5829,0],[1395,5836,0],[1381,5848,0],[1394,5845,0],[1429,5496,0],[1421,5748,0],[1411,5853,0],[1431,5862,0],[1471,5391,0],[1473,5497,0],[1448,5496,0],[1462,5757,0],[1443,5753,0],[1451,5866,0],[1475,5865,0],[1501,5406,0],[1497,5502,0],[1514,5513,0],[1488,5766,0],[1513,5770,0],[1518,5869,0],[1516,5853,0],[1494,5868,0],[1509,5872,0],[1551,5395,0],[1558,5378,0],[1528,5419,0],[1549,5429,0],[1544,5421,0],[1546,5410,0],[1527,5529,0],[1538,5547,0],[1549,5566,0],[1527,5789,0],[1530,5775,0],[1531,5768,0],[1548,5767,0],[1521,5833,0],[1524,5810,0],[1532,5880,0],[1521,5873,0],[1548,5911,0],[1543,5890,0],[1548,5943,0],[1553,5933,0],[1541,5991,0],[1544,5969,0],[1539,6012,0],[1537,6031,0],[1536,6069,0],[1536,6050,0],[1530,6110,0],[1534,6089,0],[1527,6137,0],[1524,6171,0],[1524,6199,0],[1553,6217,0],[1533,6213,0],[1580,5344,0],[1568,5364,0],[1575,5436,0],[1599,5441,0],[1564,5584,0],[1579,5595,0],[1599,5591,0],[1590,5596,0],[1580,5768,0],[1594,5767,0],[1564,5766,0],[1579,5943,0],[1598,5952,0],[1562,5936,0],[1570,6229,0],[1619,5446,0],[1622,5595,0],[1608,5589,0],[1636,5604,0],[1616,5771,0],[1607,5766,0],[1626,5775,0],[1616,5959,0],[1635,5964,0],[1676,5306,0],[1676,5352,0],[1675,5327,0],[1676,5378,0],[1674,5407,0],[1674,5432,0],[1642,5453,0],[1670,5456,0],[1661,5457,0],[1673,5446,0],[1667,5470,0],[1668,5459,0],[1665,5490,0],[1663,5512,0],[1668,5558,0],[1659,5530,0],[1659,5546,0],[1658,5615,0],[1642,5778,0],[1664,5787,0],[1672,5794,0],[1656,5780,0],[1671,5974,0],[1653,5968,0],[1713,5459,0],[1684,5459,0],[1683,5569,0],[1698,5581,0],[1709,5593,0],[1680,5626,0],[1692,5634,0],[1720,5601,0],[1703,5642,0],[1712,5653,0],[1691,5804,0],[1719,5814,0],[1691,5979,0],[1705,5978,0],[1738,5456,0],[1758,5455,0],[1737,5616,0],[1729,5608,0],[1746,5633,0],[1744,5623,0],[1723,5669,0],[1759,5650,0],[1751,5643,0],[1758,5717,0],[1743,5704,0],[1733,5688,0],[1741,5824,0],[1722,5973,0],[1742,5968,0],[1782,5452,0],[1770,5659,0],[1783,5669,0],[1798,5711,0],[1793,5682,0],[1793,5717,0],[1797,5694,0],[1788,5726,0],[1775,5730,0],[1788,5754,0],[1768,5724,0],[1784,5746,0],[1784,5737,0],[1795,5760,0],[1762,5836,0],[1789,5821,0],[1780,5836,0],[1794,5804,0],[1790,5969,0],[1764,5967,0],[1836,5312,0],[1809,5291,0],[1832,5343,0],[1832,5325,0],[1838,5400,0],[1834,5384,0],[1833,5364,0],[1833,5454,0],[1807,5453,0],[1829,5717,0],[1811,5712,0],[1801,5705,0],[1816,5799,0],[1800,5769,0],[1805,5787,0],[1802,5795,0],[1803,5778,0],[1839,5815,0],[1815,5975,0],[1835,5983,0],[1841,5298,0],[1843,5426,0],[1842,5413,0],[1845,5438,0],[1864,5449,0],[1846,5448,0],[1863,5741,0],[1846,5727,0],[1880,5756,0],[1861,5833,0],[1876,5852,0],[1848,5988,0],[1861,5991,0],[1871,5992,0],[1897,5444,0],[1894,5771,0],[1909,5786,0],[1896,5869,0],[1885,5985,0],[1904,5978,0],[1958,5447,0],[1928,5444,0],[1959,5653,0],[1954,5711,0],[1957,5680,0],[1950,5744,0],[1948,5774,0],[1924,5799,0],[1946,5793,0],[1941,5804,0],[1944,5819,0],[1954,5829,0],[1936,5809,0],[1921,5884,0],[1942,5897,0],[1922,5983,0],[1935,5995,0],[1948,6004,0],[1999,5378,0],[1992,5392,0],[1981,5421,0],[1987,5405,0],[1976,5436,0],[1975,5446,0],[1979,5450,0],[1975,5456,0],[1975,5467,0],[1976,5451,0],[1976,5487,0],[1976,5514,0],[1979,5535,0],[1980,5550,0],[1997,5599,0],[1976,5566,0],[1970,5584,0],[1974,5595,0],[1983,5596,0],[1961,5626,0],[1965,5602,0],[1966,5838,0],[1979,5851,0],[1994,5866,0],[2000,5873,0],[1982,5900,0],[1994,5885,0],[1963,5904,0],[1986,6021,0],[1964,6011,0],[2006,5363,0],[2001,5448,0],[2031,5446,0],[2019,5604,0],[2009,5878,0],[2023,5890,0],[2035,5901,0],[2023,6039,0],[2005,6031,0],[2057,5448,0],[2040,5608,0],[2076,5614,0],[2058,5612,0],[2053,5914,0],[2044,5906,0],[2049,5910,0],[2068,5929,0],[2059,5921,0],[2074,5938,0],[2071,5952,0],[2073,5946,0],[2074,5985,0],[2071,5961,0],[2074,5971,0],[2069,6001,0],[2066,6015,0],[2068,6027,0],[2071,6036,0],[2043,6045,0],[2060,6047,0],[2076,6054,0],[2066,6049,0],[2070,6044,0],[2070,6051,0],[2119,5458,0],[2085,5453,0],[2099,5617,0],[2082,6051,0],[2108,6055,0],[2096,6070,0],[2085,6060,0],[2110,6084,0],[2127,5623,0],[2152,5626,0],[2143,6067,0],[2128,6058,0],[2135,6109,0],[2123,6097,0],[2198,5633,0],[2172,5628,0],[2163,6079,0],[2232,5640,0]]],["Mahajerin",[[350,8637,0],[339,8639,0],[320,8663,0],[329,8647,0],[379,8350,0],[400,8352,0],[362,8634,0],[373,8633,0],[382,8635,0],[392,8634,0],[399,8634,0],[415,8356,0],[429,8381,0],[422,8373,0],[421,8363,0],[404,8637,0],[435,8672,0],[423,8650,0],[430,8659,0],[433,8646,0],[414,8645,0],[426,8650,0],[408,8641,0],[438,8688,0],[459,8388,0],[475,8392,0],[442,8384,0],[479,8452,0],[476,8475,0],[479,8479,0],[471,8517,0],[475,8496,0],[452,8518,0],[441,8517,0],[446,8518,0],[465,8534,0],[462,8550,0],[470,8526,0],[462,8521,0],[460,8573,0],[457,8599,0],[444,8634,0],[453,8618,0],[441,8707,0],[459,8759,0],[445,8725,0],[451,8741,0],[465,8777,0],[469,8790,0],[475,8814,0],[479,8827,0],[472,8801,0],[467,8854,0],[459,8872,0],[462,8862,0],[474,8848,0],[479,8844,0],[455,8906,0],[456,8882,0],[455,8892,0],[451,8951,0],[454,8935,0],[455,8922,0],[515,8343,0],[509,8354,0],[502,8374,0],[496,8381,0],[490,8387,0],[506,8366,0],[485,8393,0],[482,8398,0],[512,8429,0],[517,8409,0],[482,8429,0],[483,8410,0],[508,8449,0],[500,8480,0],[506,8465,0],[487,8479,0],[505,8474,0],[513,8480,0],[482,8531,0],[512,8537,0],[498,8534,0],[481,8838,0],[507,8848,0],[494,8844,0],[484,8841,0],[559,8185,0],[556,8319,0],[540,8316,0],[552,8305,0],[546,8310,0],[558,8301,0],[547,8335,0],[537,8351,0],[532,8324,0],[523,8334,0],[528,8368,0],[521,8389,0],[553,8513,0],[527,8499,0],[540,8510,0],[520,8483,0],[531,8507,0],[525,8490,0],[525,8541,0],[552,8546,0],[539,8544,0],[558,8835,0],[539,8844,0],[522,8848,0],[564,8194,0],[590,8207,0],[578,8207,0],[572,8211,0],[574,8237,0],[574,8224,0],[569,8201,0],[567,8272,0],[572,8253,0],[561,8303,0],[563,8288,0],[566,8518,0],[563,8550,0],[572,8527,0],[573,8554,0],[572,8539,0],[592,8555,0],[582,8556,0],[571,8548,0],[595,8822,0],[576,8828,0],[602,8209,0],[629,8214,0],[616,8212,0],[606,8553,0],[626,8551,0],[614,8816,0],[628,8810,0],[670,8155,0],[671,8131,0],[669,8176,0],[669,8190,0],[658,8211,0],[643,8214,0],[670,8208,0],[670,8202,0],[680,8208,0],[648,8552,0],[667,8553,0],[673,8790,0],[656,8799,0],[640,8805,0],[710,8233,0],[698,8223,0],[688,8214,0],[718,8308,0],[714,8327,0],[711,8347,0],[710,8369,0],[708,8389,0],[702,8429,0],[705,8408,0],[695,8474,0],[699,8451,0],[691,8500,0],[689,8523,0],[686,8552,0],[707,8550,0],[687,8542,0],[690,8778,0],[706,8767,0],[717,8761,0],[725,8243,0],[738,8255,0],[753,8279,0],[746,8266,0],[742,8300,0],[754,8308,0],[757,8302,0],[729,8294,0],[722,8296,0],[757,8290,0],[730,8549,0],[752,8547,0],[730,8761,0],[744,8761,0],[757,8761,0],[740,8958,0],[758,8947,0],[746,8948,0],[738,8991,0],[739,8975,0],[737,9010,0],[737,9029,0],[737,9049,0],[736,9068,0],[729,9090,0],[734,9081,0],[778,8319,0],[764,8311,0],[773,8312,0],[783,8330,0],[791,8335,0],[798,8338,0],[800,8467,0],[799,8473,0],[776,8545,0],[794,8546,0],[793,8678,0],[779,8710,0],[784,8694,0],[776,8726,0],[774,8741,0],[774,8753,0],[772,8759,0],[767,8761,0],[773,8954,0],[790,8964,0],[823,8268,0],[820,8276,0],[826,8260,0],[828,8253,0],[818,8287,0],[816,8310,0],[815,8299,0],[819,8319,0],[816,8336,0],[819,8327,0],[811,8341,0],[811,8345,0],[804,8341,0],[811,8354,0],[810,8392,0],[810,8376,0],[810,8363,0],[806,8427,0],[803,8437,0],[809,8417,0],[810,8406,0],[801,8448,0],[801,8459,0],[803,8510,0],[802,8495,0],[800,8483,0],[802,8543,0],[804,8526,0],[803,8535,0],[802,8550,0],[805,8556,0],[806,8568,0],[807,8582,0],[808,8596,0],[806,8630,0],[808,8611,0],[822,8603,0],[811,8603,0],[801,8664,0],[805,8649,0],[827,8980,0],[807,8973,0],[864,8117,0],[865,8130,0],[864,8148,0],[866,8157,0],[864,8140,0],[867,8181,0],[867,8168,0],[865,8192,0],[872,8200,0],[868,8237,0],[866,8202,0],[867,8214,0],[867,8226,0],[873,8271,0],[871,8251,0],[874,8294,0],[873,8321,0],[873,8347,0],[876,8393,0],[873,8368,0],[841,8604,0],[876,8608,0],[860,8605,0],[848,8987,0],[866,8992,0],[901,8194,0],[883,8197,0],[882,8419,0],[894,8442,0],[913,8459,0],[902,8598,0],[911,8591,0],[891,8607,0],[907,8999,0],[886,8995,0],[926,8191,0],[951,8188,0],[953,8432,0],[929,8470,0],[950,8471,0],[939,8478,0],[953,8460,0],[953,8446,0],[946,8476,0],[936,8488,0],[938,8511,0],[941,8551,0],[940,8531,0],[938,8586,0],[942,8568,0],[939,8593,0],[926,8590,0],[941,8578,0],[955,8600,0],[955,8836,0],[958,8817,0],[951,8859,0],[946,8883,0],[942,8905,0],[938,8928,0],[933,8951,0],[929,8978,0],[926,8998,0],[928,9002,0],[942,9011,0],[946,9026,0],[944,9065,0],[945,9045,0],[946,9082,0],[979,8185,0],[980,8422,0],[961,8422,0],[975,8605,0],[994,8618,0],[988,8609,0],[994,8642,0],[997,8660,0],[992,8668,0],[989,8687,0],[986,8706,0],[977,8749,0],[983,8725,0],[996,8727,0],[985,8725,0],[971,8778,0],[967,8800,0],[962,8809,0],[1032,8182,0],[1008,8183,0],[1037,8428,0],[1018,8428,0],[1000,8426,0],[1024,8665,0],[1008,8663,0],[1008,8729,0],[1029,8730,0],[1019,8730,0],[1056,8182,0],[1072,8186,0],[1058,8425,0],[1080,8424,0],[1072,8667,0],[1046,8667,0],[1057,8731,0],[1071,8731,0],[1042,8731,0],[1109,8341,0],[1103,8424,0],[1101,8667,0],[1081,8733,0],[1089,8759,0],[1085,8754,0],[1085,8746,0],[1084,8738,0],[1099,8761,0],[1112,8761,0],[1146,8342,0],[1125,8341,0],[1151,8424,0],[1127,8423,0],[1127,8667,0],[1149,8668,0],[1125,8672,0],[1124,8693,0],[1123,8711,0],[1125,8681,0],[1123,8730,0],[1124,8749,0],[1121,8758,0],[1189,8301,0],[1190,8286,0],[1189,8315,0],[1192,8328,0],[1166,8344,0],[1182,8344,0],[1192,8340,0],[1191,8427,0],[1174,8425,0],[1200,8596,0],[1196,8627,0],[1197,8608,0],[1196,8651,0],[1184,8673,0],[1167,8671,0],[1195,8668,0],[1202,8435,0],[1206,8452,0],[1206,8473,0],[1207,8498,0],[1208,8526,0],[1206,8547,0],[1205,8567,0],[1203,8584,0],[1202,8677,0],[1221,8679,0],[1238,8680,0],[1252,8678,0],[1264,8675,0],[1274,8677,0],[1284,8679,0],[1294,8682,0]]],["Barekzi",[[1551,8777,0],[1558,8779,0],[1569,8796,0],[1563,8785,0],[1577,8808,0],[1585,8818,0],[1591,8822,0],[1632,8836,0],[1621,8828,0],[1601,8824,0],[1612,8825,0],[1667,8879,0],[1643,8844,0],[1655,8850,0],[1669,8861,0],[1667,8855,0],[1664,8902,0],[1662,8923,0],[1659,8942,0],[1654,8979,0],[1656,8960,0],[1652,8999,0],[1652,9039,0],[1651,9019,0],[1653,9061,0],[1652,9114,0],[1653,9085,0],[1651,9141,0],[1656,9159,0],[1652,9152,0],[1664,9183,0],[1662,9167,0],[1660,9207,0],[1654,9235,0],[1650,9259,0],[1700,8570,0],[1706,8595,0],[1699,8563,0],[1706,8580,0],[1707,8629,0],[1705,8613,0],[1707,8646,0],[1702,8661,0],[1699,8675,0],[1698,8697,0],[1698,8707,0],[1699,8687,0],[1699,8740,0],[1699,8721,0],[1697,8764,0],[1696,8789,0],[1695,8815,0],[1694,8836,0],[1692,8850,0],[1680,8858,0],[1696,8859,0],[1710,8859,0],[1716,9313,0],[1692,9303,0],[1693,9310,0],[1724,8862,0],[1752,8867,0],[1739,8864,0],[1742,9321,0],[1795,8872,0],[1783,8869,0],[1770,8869,0],[1761,8871,0],[1768,9328,0],[1788,9333,0],[1806,8878,0],[1825,8879,0],[1836,8878,0],[1815,8901,0],[1813,8914,0],[1818,8885,0],[1815,8881,0],[1817,8893,0],[1812,8931,0],[1811,8949,0],[1811,8967,0],[1810,8984,0],[1810,8997,0],[1835,9006,0],[1821,9005,0],[1813,9003,0],[1836,9256,0],[1830,9289,0],[1827,9313,0],[1806,9336,0],[1824,9329,0],[1822,9336,0],[1863,8754,0],[1859,8747,0],[1863,8799,0],[1869,8776,0],[1868,8761,0],[1857,8816,0],[1846,8831,0],[1851,8824,0],[1844,8845,0],[1842,8871,0],[1843,8859,0],[1864,8879,0],[1846,8876,0],[1856,8876,0],[1872,8883,0],[1867,9032,0],[1865,9014,0],[1879,9021,0],[1871,9024,0],[1849,9009,0],[1868,9021,0],[1859,9009,0],[1866,9047,0],[1866,9065,0],[1859,9119,0],[1864,9089,0],[1854,9150,0],[1846,9196,0],[1849,9176,0],[1842,9222,0],[1879,9343,0],[1841,9337,0],[1860,9339,0],[1904,8902,0],[1918,8909,0],[1892,8894,0],[1881,8888,0],[1916,8990,0],[1909,9015,0],[1913,9006,0],[1891,9020,0],[1901,9020,0],[1892,9349,0],[1897,9360,0],[1904,9345,0],[1890,9345,0],[1895,9344,0],[1895,9374,0],[1890,9385,0],[1887,9394,0],[1912,9414,0],[1897,9407,0],[1888,9401,0],[1931,8915,0],[1926,8946,0],[1932,8923,0],[1942,8921,0],[1953,8927,0],[1930,8932,0],[1920,8969,0],[1946,9353,0],[1922,9348,0],[1931,9422,0],[1952,9428,0],[1998,8641,0],[1994,8661,0],[1992,8679,0],[1989,8718,0],[1991,8697,0],[1989,8737,0],[1986,8791,0],[1989,8761,0],[1990,8798,0],[1982,8824,0],[2000,8800,0],[1981,8854,0],[1979,8882,0],[1976,8904,0],[1974,8919,0],[1979,8924,0],[1971,8928,0],[1989,8923,0],[1963,8930,0],[1969,9356,0],[1985,9355,0],[2008,8463,0],[2037,8443,0],[2012,8451,0],[2027,8446,0],[2006,8477,0],[2017,8446,0],[2016,8489,0],[2037,8490,0],[2008,8486,0],[2027,8489,0],[2038,8541,0],[2035,8536,0],[2023,8547,0],[2039,8522,0],[2028,8540,0],[2037,8529,0],[2018,8583,0],[2021,8561,0],[2014,8607,0],[2006,8625,0],[2035,8631,0],[2011,8628,0],[2020,8630,0],[2035,8803,0],[2011,8802,0],[2023,8802,0],[2038,8901,0],[2036,8915,0],[2040,8887,0],[2003,8926,0],[2032,8932,0],[2026,8936,0],[2038,8942,0],[2015,8931,0],[2034,8924,0],[2039,9330,0],[2002,9353,0],[2033,9345,0],[2018,9353,0],[2027,9352,0],[2041,8509,0],[2042,8495,0],[2047,8549,0],[2068,8591,0],[2055,8573,0],[2061,8581,0],[2051,8561,0],[2074,8609,0],[2055,8634,0],[2070,8636,0],[2079,8630,0],[2077,8622,0],[2055,8820,0],[2051,8810,0],[2057,8833,0],[2065,8834,0],[2044,8806,0],[2076,8834,0],[2059,8847,0],[2061,8878,0],[2058,8861,0],[2042,8878,0],[2050,8876,0],[2056,8871,0],[2048,8876,0],[2053,8875,0],[2072,8879,0],[2078,8954,0],[2046,8948,0],[2064,8954,0],[2053,8953,0],[2061,9236,0],[2065,9224,0],[2074,9220,0],[2057,9255,0],[2052,9280,0],[2045,9308,0],[2114,8633,0],[2081,8633,0],[2100,8628,0],[2090,8628,0],[2096,8838,0],[2086,8834,0],[2081,8880,0],[2105,8843,0],[2113,8844,0],[2090,8884,0],[2100,8889,0],[2115,8893,0],[2108,8891,0],[2089,8959,0],[2101,8965,0],[2111,8972,0],[2107,9221,0],[2089,9221,0],[2128,8639,0],[2156,8641,0],[2139,8642,0],[2148,8644,0],[2139,8851,0],[2132,8846,0],[2143,8860,0],[2144,8872,0],[2123,8844,0],[2145,8897,0],[2158,8892,0],[2124,8894,0],[2143,8884,0],[2142,8893,0],[2132,8898,0],[2139,8898,0],[2153,8895,0],[2122,8979,0],[2144,8989,0],[2134,8984,0],[2154,8991,0],[2140,8990,0],[2141,8995,0],[2142,9024,0],[2141,9005,0],[2154,9061,0],[2145,9044,0],[2130,9220,0],[2153,9221,0],[2198,8580,0],[2189,8591,0],[2187,8598,0],[2178,8596,0],[2167,8615,0],[2162,8629,0],[2172,8602,0],[2200,8601,0],[2200,8724,0],[2198,8741,0],[2198,8750,0],[2199,8878,0],[2187,8881,0],[2164,8887,0],[2170,8884,0],[2177,8882,0],[2175,8994,0],[2164,8992,0],[2188,9000,0],[2168,9074,0],[2172,9090,0],[2170,9111,0],[2170,9133,0],[2169,9155,0],[2169,9180,0],[2168,9204,0],[2168,9223,0],[2176,9233,0],[2175,9225,0],[2168,9219,0],[2170,9273,0],[2174,9249,0],[2170,9318,0],[2170,9296,0],[2168,9358,0],[2169,9339,0],[2164,9385,0],[2214,8476,0],[2222,8491,0],[2226,8505,0],[2218,8556,0],[2223,8540,0],[2226,8522,0],[2208,8569,0],[2216,8606,0],[2234,8609,0],[2203,8664,0],[2228,8642,0],[2215,8642,0],[2207,8643,0],[2204,8646,0],[2201,8696,0],[2209,8756,0],[2219,8758,0],[2201,8754,0],[2224,8778,0],[2223,8790,0],[2224,8761,0],[2225,8767,0],[2220,8819,0],[2218,8839,0],[2221,8801,0],[2214,8866,0],[2207,8874,0],[2217,8854,0],[2209,9011,0],[2226,9022,0],[2216,9017,0],[2236,9025,0],[2201,9006,0],[2265,8614,0],[2249,8611,0],[2265,8634,0],[2264,8618,0],[2265,8626,0],[2244,8643,0],[2257,8643,0],[2265,8640,0],[2263,8643,0],[2271,9030,0],[2257,9028,0],[2246,9028,0],[2304,8527,0],[2295,8551,0],[2288,8573,0],[2302,8623,0],[2285,8600,0],[2281,8615,0],[2285,9036,0],[2295,9040,0],[2317,9078,0],[2314,9041,0],[2304,9040,0],[2316,9100,0],[2314,9087,0],[2320,9153,0],[2317,9171,0],[2313,9191,0],[2312,9209,0],[2311,9225,0],[2309,9246,0],[2307,9269,0],[2307,9303,0],[2307,9287,0],[2306,9320,0],[2303,9337,0],[2303,9349,0],[2352,8580,0],[2355,8595,0],[2329,8631,0],[2354,8632,0],[2350,8601,0],[2352,8620,0],[2351,8611,0],[2356,8913,0],[2343,8918,0],[2347,8913,0],[2345,8927,0],[2324,9074,0],[2329,9050,0],[2329,9070,0],[2330,9062,0],[2331,9046,0],[2323,9043,0],[2357,9045,0],[2350,9048,0],[2338,9048,0],[2344,9049,0],[2321,9117,0],[2322,9135,0],[2382,8599,0],[2366,8596,0],[2379,8632,0],[2384,8943,0],[2372,8932,0],[2364,8921,0],[2393,9040,0],[2364,9046,0],[2376,9046,0],[2380,9043,0],[2385,9041,0],[2370,9048,0],[2403,8631,0],[2440,8869,0],[2431,8918,0],[2436,8893,0],[2427,8942,0],[2401,8951,0],[2417,8956,0],[2425,8960,0],[2424,8981,0],[2428,8992,0],[2423,8971,0],[2428,9032,0],[2430,9016,0],[2430,9002,0],[2408,9038,0],[2401,9039,0],[2422,9038,0],[2416,9038,0],[2424,9046,0],[2420,9059,0],[2440,9051,0],[2428,9041,0],[2433,9046,0],[2444,8701,0],[2443,8682,0],[2449,8727,0],[2471,8743,0],[2451,8746,0],[2449,8754,0],[2479,8738,0],[2445,8792,0],[2447,8768,0],[2444,8820,0],[2472,8813,0],[2461,8807,0],[2449,8805,0],[2442,8846,0],[2466,9060,0],[2451,9056,0],[2483,8822,0],[2492,8831,0],[2502,8837,0],[2493,9064,0],[2480,9063,0]]],["Rangrezan",[[2466,9060,0],[2451,9056,0],[2506,9066,0],[2493,9064,0],[2480,9063,0],[2517,9074,0],[2509,9107,0],[2514,9087,0],[2504,9128,0],[2502,9146,0],[2498,9171,0],[2493,9196,0],[2502,9221,0],[2511,9228,0],[2494,9211,0],[2517,9237,0],[2516,9257,0],[2512,9289,0],[2506,9317,0],[2499,9346,0],[2495,9371,0],[2492,9390,0],[2554,8850,0],[2524,9071,0],[2540,9077,0],[2552,9081,0],[2591,8807,0],[2570,8854,0],[2584,8857,0],[2593,8859,0],[2564,9086,0],[2578,9089,0],[2590,9089,0],[2614,8797,0],[2600,8790,0],[2634,8831,0],[2613,8816,0],[2631,8807,0],[2631,8851,0],[2638,8842,0],[2623,8859,0],[2613,8861,0],[2602,8861,0],[2639,9088,0],[2602,9089,0],[2626,9087,0],[2614,9089,0],[2647,8818,0],[2664,8827,0],[2676,8872,0],[2655,8850,0],[2663,9095,0],[2651,9091,0],[2677,9097,0],[2685,8835,0],[2709,8847,0],[2695,8894,0],[2713,8916,0],[2693,9099,0],[2708,9100,0],[2751,8866,0],[2728,8856,0],[2730,8939,0],[2746,8960,0],[2756,9113,0],[2724,9102,0],[2741,9107,0],[2774,8878,0],[2789,8889,0],[2785,8989,0],[2761,8978,0],[2785,9129,0],[2771,9120,0],[2796,9138,0],[2815,8901,0],[2800,8897,0],[2832,8903,0],[2822,9014,0],[2836,9026,0],[2809,9000,0],[2805,9149,0],[2816,9157,0],[2831,9161,0],[2875,8674,0],[2875,8686,0],[2876,8709,0],[2876,8698,0],[2879,8731,0],[2876,8721,0],[2864,8906,0],[2848,8903,0],[2878,8910,0],[2879,8953,0],[2868,8973,0],[2860,8990,0],[2854,9037,0],[2855,9009,0],[2855,9037,0],[2855,9025,0],[2872,9048,0],[2848,9163,0],[2867,9164,0],[2893,8749,0],[2886,8740,0],[2899,8758,0],[2897,8759,0],[2919,8778,0],[2907,8767,0],[2894,8792,0],[2896,8773,0],[2891,8815,0],[2887,8840,0],[2884,8863,0],[2887,8885,0],[2890,8912,0],[2897,8901,0],[2908,8901,0],[2886,8912,0],[2887,8934,0],[2890,9079,0],[2886,9060,0],[2885,9104,0],[2914,9149,0],[2891,9128,0],[2919,9188,0],[2882,9163,0],[2914,9161,0],[2898,9161,0],[2906,9228,0],[2912,9210,0],[2918,9205,0],[2900,9248,0],[2895,9268,0],[2890,9295,0],[2890,9329,0],[2897,9363,0],[2899,9398,0],[2897,9425,0],[2912,9406,0],[2901,9404,0],[2891,9466,0],[2894,9445,0],[2888,9486,0],[2885,9506,0],[2882,9544,0],[2883,9524,0],[2883,9586,0],[2882,9565,0],[2883,9607,0],[2882,9628,0],[2880,9647,0],[2931,8789,0],[2941,8797,0],[2959,8807,0],[2950,8802,0],[2924,8902,0],[2941,8906,0],[2949,8916,0],[2940,8948,0],[2947,8930,0],[2934,8970,0],[2931,8988,0],[2946,9022,0],[2934,9019,0],[2929,9002,0],[2929,9013,0],[2924,9159,0],[2940,9163,0],[2926,9166,0],[2957,9215,0],[2958,9232,0],[2939,9208,0],[2927,9206,0],[2945,9273,0],[2952,9249,0],[2941,9298,0],[2935,9348,0],[2939,9322,0],[2933,9370,0],[2932,9388,0],[2931,9402,0],[2924,9407,0],[2979,8835,0],[2971,8827,0],[2964,8813,0],[2966,8819,0],[2987,8843,0],[2995,8849,0],[2960,9026,0],[2973,9029,0],[2985,9031,0],[2966,9171,0],[2993,9176,0],[2997,9237,0],[2978,9225,0],[2963,9222,0],[3011,8858,0],[3002,8853,0],[3028,8870,0],[3021,8867,0],[3016,8864,0],[3033,8873,0],[3034,8878,0],[3040,8898,0],[3035,8892,0],[3034,8885,0],[3039,9097,0],[3036,9132,0],[3033,9163,0],[3018,9177,0],[3039,9193,0],[3029,9188,0],[3026,9178,0],[3025,9183,0],[3018,9249,0],[3039,9260,0],[3077,8703,0],[3077,8732,0],[3079,8759,0],[3079,8795,0],[3074,8827,0],[3073,8857,0],[3067,8916,0],[3072,8886,0],[3062,8906,0],[3048,8902,0],[3055,8904,0],[3058,8951,0],[3050,8985,0],[3045,9031,0],[3047,9012,0],[3043,9051,0],[3041,9071,0],[3069,9129,0],[3055,9134,0],[3044,9135,0],[3073,9200,0],[3053,9198,0],[3069,9235,0],[3074,9217,0],[3077,9205,0],[3063,9253,0],[3054,9262,0],[3105,8740,0],[3117,8740,0],[3089,8766,0],[3082,8775,0],[3101,9135,0],[3120,9139,0],[3083,9130,0],[3093,9200,0],[3109,9200,0],[3119,9202,0],[3118,9311,0],[3113,9333,0],[3109,9354,0],[3117,9384,0],[3108,9369,0],[3110,9379,0],[3120,8719,0],[3153,8753,0],[3136,8745,0],[3125,8742,0],[3159,8783,0],[3153,8802,0],[3148,8822,0],[3142,8842,0],[3135,8861,0],[3141,8880,0],[3134,8874,0],[3156,8886,0],[3153,9107,0],[3149,9126,0],[3159,9146,0],[3138,9142,0],[3145,9145,0],[3142,9160,0],[3138,9177,0],[3134,9191,0],[3130,9201,0],[3139,9213,0],[3157,9216,0],[3138,9230,0],[3127,9207,0],[3140,9218,0],[3135,9249,0],[3131,9271,0],[3125,9291,0],[3138,9393,0],[3127,9387,0],[3149,9402,0],[3161,8767,0],[3190,8885,0],[3172,8890,0],[3181,8887,0],[3163,9098,0],[3181,9097,0],[3198,9098,0],[3189,9115,0],[3191,9104,0],[3184,9142,0],[3176,9148,0],[3186,9128,0],[3189,9218,0],[3172,9217,0],[3164,9416,0],[3180,9432,0],[3192,9447,0],[3226,8895,0],[3206,8889,0],[3215,9099,0],[3230,9099,0],[3222,9227,0],[3207,9222,0],[3217,9469,0],[3203,9459,0],[3230,9480,0],[3237,9488,0],[3267,8907,0],[3247,8901,0],[3254,9109,0],[3242,9102,0],[3274,9138,0],[3265,9122,0],[3244,9234,0],[3264,9240,0],[3276,9241,0],[3279,9427,0],[3274,9440,0],[3265,9469,0],[3269,9455,0],[3261,9481,0],[3257,9489,0],[3256,9517,0],[3254,9506,0],[3251,9498,0],[3248,9496,0],[3242,9493,0],[3252,9499,0],[3253,9493,0],[3260,9537,0],[3256,9528,0],[3286,8914,0],[3312,8908,0],[3319,8903,0],[3307,8914,0],[3300,8918,0],[3285,9154,0],[3298,9169,0],[3309,9183,0],[3314,9196,0],[3317,9220,0],[3313,9208,0],[3316,9246,0],[3289,9241,0],[3303,9242,0],[3286,9421,0],[3318,9421,0],[3309,9420,0],[3294,9419,0],[3301,9419,0],[3332,8906,0],[3346,8908,0],[3329,9233,0],[3341,9244,0],[3347,9254,0],[3331,9251,0],[3343,9256,0],[3353,9259,0],[3334,9439,0],[3325,9423,0],[3329,9427,0],[3330,9435,0],[3330,9431,0],[3340,9444,0],[3382,9275,0],[3372,9267,0],[3362,9262,0],[3397,9284,0],[3410,9294,0]]],["Dehqobad",[[32,9158,0],[27,9151,0],[24,9388,0],[8,9387,0],[14,9387,0],[37,9592,0],[41,9164,0],[72,9161,0],[61,9164,0],[52,9166,0],[42,9391,0],[62,9392,0],[51,9598,0],[66,9602,0],[106,9029,0],[84,9159,0],[101,9162,0],[119,9166,0],[118,9281,0],[114,9298,0],[113,9315,0],[110,9331,0],[108,9359,0],[107,9345,0],[99,9386,0],[81,9390,0],[109,9373,0],[114,9383,0],[110,9382,0],[80,9607,0],[104,9616,0],[92,9612,0],[121,9038,0],[136,9056,0],[151,9077,0],[143,9059,0],[153,9058,0],[159,9095,0],[134,9171,0],[160,9177,0],[147,9191,0],[154,9176,0],[145,9175,0],[157,9236,0],[132,9234,0],[142,9224,0],[139,9218,0],[150,9228,0],[142,9205,0],[124,9266,0],[127,9250,0],[128,9383,0],[146,9384,0],[141,9627,0],[121,9621,0],[127,9710,0],[144,9715,0],[153,9719,0],[156,9726,0],[171,9057,0],[167,9108,0],[178,9122,0],[193,9151,0],[184,9136,0],[188,9148,0],[177,9164,0],[170,9247,0],[181,9257,0],[191,9261,0],[168,9384,0],[192,9384,0],[162,9634,0],[181,9642,0],[195,9649,0],[200,9057,0],[226,9056,0],[235,9143,0],[221,9144,0],[206,9145,0],[215,9269,0],[229,9277,0],[201,9263,0],[215,9381,0],[239,9380,0],[209,9654,0],[223,9658,0],[234,9660,0],[261,9057,0],[245,9057,0],[274,9057,0],[265,9134,0],[249,9139,0],[276,9301,0],[262,9289,0],[245,9282,0],[260,9383,0],[279,9389,0],[263,9654,0],[248,9658,0],[284,9057,0],[284,9129,0],[304,9126,0],[289,9316,0],[314,9347,0],[301,9332,0],[295,9396,0],[307,9400,0],[319,9636,0],[280,9648,0],[299,9642,0],[347,8890,0],[345,8909,0],[345,8956,0],[344,8930,0],[344,8988,0],[340,9021,0],[338,9063,0],[338,9045,0],[339,9083,0],[352,9118,0],[339,9104,0],[336,9120,0],[339,9117,0],[322,9123,0],[351,9395,0],[328,9362,0],[337,9375,0],[324,9399,0],[343,9390,0],[340,9383,0],[355,9626,0],[338,9630,0],[343,9835,0],[355,9831,0],[368,9115,0],[385,9114,0],[398,9201,0],[396,9225,0],[398,9261,0],[396,9244,0],[378,9390,0],[389,9616,0],[372,9621,0],[384,9824,0],[367,9828,0],[379,9833,0],[379,9827,0],[439,9019,0],[438,9011,0],[438,9087,0],[402,9114,0],[431,9113,0],[418,9114,0],[436,9099,0],[435,9107,0],[403,9119,0],[402,9147,0],[403,9128,0],[400,9174,0],[405,9279,0],[414,9298,0],[420,9321,0],[421,9346,0],[402,9385,0],[431,9380,0],[423,9367,0],[428,9378,0],[433,9386,0],[439,9402,0],[409,9610,0],[427,9606,0],[431,9816,0],[401,9820,0],[415,9817,0],[459,8872,0],[462,8862,0],[455,8906,0],[456,8882,0],[455,8892,0],[451,8951,0],[454,8935,0],[455,8922,0],[448,8979,0],[450,8966,0],[445,8990,0],[441,9001,0],[441,9029,0],[441,9072,0],[442,9057,0],[442,9042,0],[477,9105,0],[459,9105,0],[441,9109,0],[448,9106,0],[477,9375,0],[456,9377,0],[443,9424,0],[445,9445,0],[445,9463,0],[444,9479,0],[444,9501,0],[443,9554,0],[443,9527,0],[444,9585,0],[464,9600,0],[479,9596,0],[444,9615,0],[446,9603,0],[444,9641,0],[443,9663,0],[443,9705,0],[443,9684,0],[445,9747,0],[445,9726,0],[446,9789,0],[446,9768,0],[449,9815,0],[465,9814,0],[445,9803,0],[445,9810,0],[498,9105,0],[515,9106,0],[499,9370,0],[516,9369,0],[495,9593,0],[514,9592,0],[517,9817,0],[482,9813,0],[499,9815,0],[544,9115,0],[529,9107,0],[539,9108,0],[545,9145,0],[546,9129,0],[539,9183,0],[542,9163,0],[536,9199,0],[534,9208,0],[548,9371,0],[530,9371,0],[551,9584,0],[532,9589,0],[537,9817,0],[555,9817,0],[598,9368,0],[572,9369,0],[581,9575,0],[566,9579,0],[597,9574,0],[575,9817,0],[597,9817,0],[622,9368,0],[631,9572,0],[613,9574,0],[613,9823,0],[619,9833,0],[630,9818,0],[614,9818,0],[643,9370,0],[664,9374,0],[669,9568,0],[650,9569,0],[649,9819,0],[718,9164,0],[717,9193,0],[713,9214,0],[704,9227,0],[697,9239,0],[698,9256,0],[709,9306,0],[704,9280,0],[717,9324,0],[686,9379,0],[705,9386,0],[717,9378,0],[712,9386,0],[689,9566,0],[707,9565,0],[740,8958,0],[746,8948,0],[738,8991,0],[739,8975,0],[737,9010,0],[737,9029,0],[737,9049,0],[736,9068,0],[726,9108,0],[730,9120,0],[729,9090,0],[734,9081,0],[722,9133,0],[740,9121,0],[747,9121,0],[736,9358,0],[725,9337,0],[746,9354,0],[755,9352,0],[729,9351,0],[722,9396,0],[724,9365,0],[728,9363,0],[741,9407,0],[759,9418,0],[748,9560,0],[759,9557,0],[737,9564,0],[723,9566,0],[787,9124,0],[761,9122,0],[775,9352,0],[791,9345,0],[786,9350,0],[796,9342,0],[764,9351,0],[775,9430,0],[790,9437,0],[788,9459,0],[787,9479,0],[787,9469,0],[789,9449,0],[789,9441,0],[783,9519,0],[785,9490,0],[784,9503,0],[782,9536,0],[781,9550,0],[768,9557,0],[775,9557,0],[779,9556,0],[813,9127,0],[821,9353,0],[803,9349,0],[829,9350,0],[838,9348,0],[801,9344,0],[807,9353,0],[813,9355,0],[802,9439,0],[831,9453,0],[815,9444,0],[840,9133,0],[872,9138,0],[864,9359,0],[854,9354,0],[846,9349,0],[875,9365,0],[855,9463,0],[918,9145,0],[897,9141,0],[919,9371,0],[885,9372,0],[897,9376,0],[909,9376,0],[880,9473,0],[906,9509,0],[898,9482,0],[909,9494,0],[908,9488,0],[909,9534,0],[914,9561,0],[925,9390,0],[932,9366,0],[947,9365,0],[921,9377,0],[931,9414,0],[937,9438,0],[949,9479,0],[943,9455,0],[921,9488,0],[936,9487,0],[947,9486,0],[962,9366,0]]],["Kakoran",[[1055,4958,0],[1084,4270,0],[1104,4275,0],[1118,4878,0],[1112,4908,0],[1082,4944,0],[1102,4930,0],[1151,4290,0],[1127,4282,0],[1152,4792,0],[1140,4823,0],[1128,4850,0],[1194,4306,0],[1173,4297,0],[1189,4713,0],[1171,4747,0],[1179,4729,0],[1162,4766,0],[1226,4314,0],[1210,4314,0],[1229,4675,0],[1208,4694,0],[1248,4314,0],[1276,4332,0],[1263,4320,0],[1273,4621,0],[1257,4640,0],[1241,4660,0],[1285,4157,0],[1312,4169,0],[1317,4354,0],[1294,4343,0],[1303,4599,0],[1316,4579,0],[1296,4636,0],[1295,4619,0],[1290,4613,0],[1281,4614,0],[1307,4649,0],[1338,4183,0],[1341,4372,0],[1356,4395,0],[1349,4555,0],[1332,4564,0],[1323,4654,0],[1335,4656,0],[1344,4657,0],[1361,4195,0],[1379,4204,0],[1399,4213,0],[1362,4418,0],[1369,4440,0],[1378,4460,0],[1386,4479,0],[1398,4519,0],[1391,4497,0],[1363,4547,0],[1377,4536,0],[1391,4526,0],[1434,4228,0],[1417,4221,0],[1406,4516,0],[1416,4508,0],[1424,4505,0],[1434,4507,0],[1430,4505,0],[1404,4544,0],[1411,4567,0],[1419,4589,0],[1431,4604,0],[1425,4601,0],[1453,4235,0],[1471,4240,0],[1510,4248,0],[1489,4245,0],[1559,4255,0],[1533,4250,0],[1587,4261,0],[1631,4265,0],[1612,4265,0],[1656,4260,0],[1679,4254,0],[1676,4416,0],[1669,4445,0],[1665,4474,0],[1663,4502,0],[1658,4517,0],[1678,4486,0],[1667,4482,0],[1665,4539,0],[1663,4523,0],[1678,4589,0],[1673,4567,0],[1692,4218,0],[1691,4251,0],[1689,4252,0],[1693,4286,0],[1690,4354,0],[1693,4321,0],[1684,4385,0],[1694,4490,0],[1684,4617,0],[1689,4649,0],[1693,4680,0],[1696,4711,0],[1699,4740,0],[1702,4768,0],[1704,4792,0],[1698,4838,0],[1704,4814,0],[1690,4862,0],[1694,4886,0],[1707,4906,0],[1721,4494,0],[1749,4495,0],[1724,4924,0],[1743,4941,0],[1760,4954,0],[1789,4493,0],[1768,4494,0],[1779,4963,0],[1834,4502,0],[1811,4497,0],[1856,4509,0],[1876,4511,0],[1895,4508,0]]],["Akhund",[[1538,2388,0],[1557,2405,0],[1600,2435,0],[1575,2420,0],[1624,2449,0],[1660,2473,0],[1640,2459,0],[1716,2443,0],[1710,2467,0],[1686,2487,0],[1705,2491,0],[1703,2513,0],[1703,2495,0],[1702,2556,0],[1701,2535,0],[1716,2594,0],[1706,2575,0],[1751,2353,0],[1741,2375,0],[1731,2397,0],[1723,2420,0],[1753,2626,0],[1732,2611,0],[1797,1870,0],[1791,1901,0],[1788,1935,0],[1788,1970,0],[1788,2004,0],[1788,2033,0],[1787,2057,0],[1788,2105,0],[1787,2081,0],[1790,2159,0],[1788,2131,0],[1791,2188,0],[1790,2216,0],[1782,2264,0],[1787,2241,0],[1768,2309,0],[1776,2287,0],[1760,2331,0],[1774,2640,0],[1794,2654,0],[1829,1786,0],[1816,1812,0],[1805,1840,0],[1815,2666,0],[1835,2678,0],[1834,2656,0],[1828,2670,0],[1859,1745,0],[1843,1764,0],[1869,2557,0],[1867,2594,0],[1866,2575,0],[1863,2618,0],[1849,2639,0],[1854,2691,0],[1913,2436,0],[1907,2465,0],[1900,2496,0],[1892,2516,0],[1881,2535,0],[1958,2274,0],[1948,2297,0],[1943,2315,0],[1936,2334,0],[1929,2356,0],[1926,2378,0],[1921,2406,0],[1984,2225,0],[1996,2201,0],[1990,2220,0],[1972,2248,0],[2028,2156,0],[2007,2178,0],[2027,2216,0],[2005,2218,0],[2079,1865,0],[2072,1912,0],[2076,1888,0],[2060,1959,0],[2067,1936,0],[2054,1981,0],[2054,2000,0],[2065,2036,0],[2057,2018,0],[2072,2118,0],[2053,2136,0],[2068,2216,0],[2048,2215,0],[2106,1787,0],[2094,1812,0],[2084,1839,0],[2081,2056,0],[2094,2080,0],[2088,2101,0],[2096,2218,0],[2121,1763,0],[2159,2220,0],[2128,2218,0],[2189,2225,0],[2216,2229,0],[2246,2236,0],[2271,2248,0],[2320,2267,0],[2292,2260,0],[2354,2269,0],[2385,2269,0],[2412,2268,0],[2443,2269,0],[2477,2271,0]]],["Qalandar",[[3075,2976,0],[3055,2968,0],[3097,2982,0],[3122,2982,0],[3144,2983,0],[3161,2986,0],[3179,2992,0],[3194,2999,0],[3212,3004,0],[3233,3007,0],[3273,2995,0],[3263,3003,0],[3251,3006,0],[3313,2958,0],[3298,2968,0],[3283,2982,0],[3332,2951,0],[3354,2947,0],[3373,2952,0],[3390,2963,0],[3404,2980,0],[3428,3026,0],[3416,3001,0],[3435,3002,0],[3424,3012,0],[3429,3009,0],[3440,3052,0],[3473,2876,0],[3476,2915,0],[3466,2905,0],[3467,2888,0],[3464,2897,0],[3466,2957,0],[3448,2984,0],[3456,3076,0],[3473,3095,0],[3516,2829,0],[3507,2836,0],[3496,2839,0],[3500,2837,0],[3511,2833,0],[3503,2837,0],[3511,2879,0],[3482,2860,0],[3490,2847,0],[3513,2906,0],[3508,2899,0],[3506,2891,0],[3493,2926,0],[3511,2937,0],[3480,2936,0],[3487,2925,0],[3517,3037,0],[3508,3058,0],[3493,3110,0],[3499,3083,0],[3492,3104,0],[3514,3122,0],[3547,2799,0],[3541,2799,0],[3522,2819,0],[3539,2836,0],[3555,2803,0],[3529,2809,0],[3535,2802,0],[3546,2830,0],[3552,2830,0],[3521,2864,0],[3531,2848,0],[3522,2913,0],[3558,2937,0],[3538,2923,0],[3530,2948,0],[3546,2957,0],[3560,2964,0],[3544,3004,0],[3529,3019,0],[3548,3134,0],[3532,3128,0],[3548,3346,0],[3535,3365,0],[3567,2811,0],[3581,2820,0],[3561,2836,0],[3593,2827,0],[3577,2846,0],[3593,2858,0],[3580,2878,0],[3588,2868,0],[3592,2862,0],[3579,2913,0],[3571,2891,0],[3571,2906,0],[3568,2899,0],[3575,2948,0],[3590,2920,0],[3585,2954,0],[3561,2985,0],[3578,2964,0],[3570,2969,0],[3566,3148,0],[3584,3172,0],[3596,3194,0],[3592,3296,0],[3577,3314,0],[3562,3328,0],[3633,2417,0],[3617,2440,0],[3607,2469,0],[3604,2505,0],[3607,2559,0],[3604,2535,0],[3612,2588,0],[3618,2622,0],[3630,2650,0],[3604,2834,0],[3611,2870,0],[3637,2856,0],[3625,2848,0],[3614,2841,0],[3631,2884,0],[3602,2945,0],[3631,2929,0],[3604,2930,0],[3616,2937,0],[3605,3236,0],[3601,3213,0],[3604,3268,0],[3646,2397,0],[3646,2671,0],[3666,2690,0],[3650,2866,0],[3662,2874,0],[3669,2879,0],[3670,2885,0],[3654,2910,0],[3646,2896,0],[3654,2902,0],[3686,2709,0],[3702,2730,0],[3711,2753,0],[3699,2796,0],[3709,2775,0],[3713,2795,0],[3703,2793,0],[3689,2823,0],[3681,2855,0],[3758,2791,0],[3733,2795,0],[3780,2779,0],[3809,2767,0],[3838,2763,0],[3864,2756,0],[3893,2749,0],[3919,2745,0],[3946,2738,0],[3986,2714,0],[3970,2728,0],[4003,2704,0]]],["Riqay",[[3119,848,0],[3144,827,0],[3196,791,0],[3169,807,0],[3224,778,0],[3253,766,0],[3306,737,0],[3280,753,0],[3330,718,0],[3354,698,0],[3379,679,0],[3407,665,0],[3440,653,0],[3474,645,0],[3509,639,0],[3543,638,0],[3551,956,0],[3557,929,0],[3548,987,0],[3552,1011,0],[3578,640,0],[3599,859,0],[3577,884,0],[3563,908,0],[3562,1026,0],[3576,1041,0],[3589,1056,0],[3599,1073,0],[3613,645,0],[3619,832,0],[3635,804,0],[3608,1090,0],[3614,1109,0],[3621,1149,0],[3619,1128,0],[3619,1174,0],[3646,653,0],[3675,662,0],[3661,754,0],[3675,733,0],[3649,778,0],[3699,673,0],[3688,714,0],[3698,697,0],[3704,684,0],[3746,698,0],[3722,685,0],[3773,713,0],[3797,725,0],[3837,747,0],[3813,734,0],[3865,765,0],[3887,785,0],[3905,809,0],[3923,834,0],[3944,860,0],[3966,889,0],[3984,919,0],[3995,946,0]]],["Gorqan",[[5964,2466,0],[5985,2468,0],[6033,2466,0],[6005,2466,0],[6040,2455,0],[6034,2462,0],[6036,2459,0],[6065,2469,0],[6077,2455,0],[6058,2452,0],[6046,2451,0],[6090,2067,0],[6114,2075,0],[6094,2476,0],[6106,2462,0],[6093,2458,0],[6118,2464,0],[6138,2083,0],[6152,2401,0],[6146,2413,0],[6147,2426,0],[6151,2436,0],[6134,2461,0],[6151,2446,0],[6147,2454,0],[6123,2485,0],[6146,2490,0],[6162,2089,0],[6185,2094,0],[6174,2392,0],[6198,2388,0],[6188,2390,0],[6162,2395,0],[6172,2494,0],[6209,2101,0],[6230,2108,0],[6234,2388,0],[6210,2383,0],[6222,2382,0],[6204,2506,0],[6233,2521,0],[6274,1955,0],[6261,1944,0],[6253,1937,0],[6246,1934,0],[6251,2116,0],[6270,2125,0],[6244,2396,0],[6252,2404,0],[6273,2411,0],[6263,2410,0],[6264,2536,0],[6293,1969,0],[6307,1985,0],[6302,1976,0],[6312,1994,0],[6286,1963,0],[6317,2002,0],[6287,2136,0],[6301,2150,0],[6311,2167,0],[6318,2186,0],[6307,2397,0],[6285,2407,0],[6295,2402,0],[6288,2546,0],[6304,2554,0],[6329,2033,0],[6323,2012,0],[6326,2022,0],[6345,2061,0],[6349,2072,0],[6339,2051,0],[6334,2043,0],[6351,2106,0],[6351,2092,0],[6352,2120,0],[6350,2083,0],[6353,2142,0],[6355,2156,0],[6352,2131,0],[6355,2180,0],[6356,2168,0],[6353,2191,0],[6325,2206,0],[6331,2226,0],[6353,2222,0],[6356,2240,0],[6352,2203,0],[6341,2269,0],[6336,2247,0],[6360,2265,0],[6359,2252,0],[6347,2289,0],[6359,2331,0],[6356,2352,0],[6358,2398,0],[6356,2373,0],[6335,2388,0],[6322,2392,0],[6345,2385,0],[6352,2385,0],[6358,2437,0],[6358,2466,0],[6356,2455,0],[6356,2445,0],[6330,2563,0],[6365,2278,0],[6361,2276,0],[6362,2313,0],[6386,2312,0],[6373,2291,0],[6380,2300,0],[6364,2303,0],[6368,2284,0],[6362,2284,0],[6362,2318,0],[6363,2293,0],[6364,2312,0],[6395,2346,0],[6380,2333,0],[6384,2355,0],[6387,2340,0],[6388,2327,0],[6380,2368,0],[6376,2380,0],[6373,2392,0],[6364,2425,0],[6369,2406,0],[6392,2420,0],[6380,2426,0],[6361,2429,0],[6364,2420,0],[6366,2431,0],[6371,2429,0],[6379,2448,0],[6361,2478,0],[6372,2518,0],[6368,2499,0],[6364,2488,0],[6377,2537,0],[6387,2560,0],[6381,2549,0],[6366,2569,0],[6400,2596,0],[6394,2581,0],[6391,2570,0],[6386,2571,0],[6413,2359,0],[6435,2372,0],[6408,2413,0],[6425,2407,0],[6437,2405,0],[6404,2466,0],[6429,2477,0],[6411,2622,0],[6417,2638,0],[6405,2608,0],[6425,2659,0],[6420,2650,0],[6429,2669,0],[6433,2681,0],[6436,2694,0],[6439,2707,0],[6440,2718,0],[6474,2314,0],[6466,2327,0],[6460,2342,0],[6457,2356,0],[6459,2385,0],[6457,2373,0],[6454,2394,0],[6457,2385,0],[6447,2402,0],[6451,2487,0],[6468,2501,0],[6456,2749,0],[6468,2759,0],[6446,2736,0],[6441,2726,0],[6515,2114,0],[6515,2144,0],[6513,2157,0],[6513,2133,0],[6511,2123,0],[6519,2180,0],[6513,2169,0],[6490,2268,0],[6509,2257,0],[6520,2250,0],[6486,2280,0],[6498,2261,0],[6480,2303,0],[6484,2295,0],[6486,2288,0],[6484,2397,0],[6507,2409,0],[6495,2543,0],[6481,2521,0],[6512,2566,0],[6481,2770,0],[6501,2792,0],[6492,2782,0],[6510,2802,0],[6517,2813,0],[6520,2824,0],[6556,2025,0],[6548,2041,0],[6530,2069,0],[6539,2056,0],[6522,2107,0],[6525,2089,0],[6526,2098,0],[6524,2081,0],[6524,2193,0],[6526,2213,0],[6527,2230,0],[6525,2240,0],[6530,2419,0],[6552,2429,0],[6521,2593,0],[6523,2622,0],[6526,2648,0],[6533,2671,0],[6534,2698,0],[6538,2748,0],[6534,2725,0],[6547,2770,0],[6559,2788,0],[6555,2835,0],[6524,2834,0],[6530,2871,0],[6544,2851,0],[6530,2843,0],[6539,2851,0],[6535,2847,0],[6600,1954,0],[6593,1968,0],[6579,1991,0],[6587,1980,0],[6564,2014,0],[6571,2002,0],[6574,2439,0],[6595,2447,0],[6585,2796,0],[6569,2817,0],[6579,2802,0],[6613,1910,0],[6610,1926,0],[6606,1940,0],[6614,2455,0],[6632,2462,0],[6634,2688,0],[6625,2722,0],[6614,2749,0],[6600,2774,0],[6609,2810,0],[6638,2813,0],[6672,2476,0],[6650,2469,0],[6674,2569,0],[6663,2584,0],[6648,2625,0],[6654,2602,0],[6642,2654,0],[6665,2824,0],[6697,2484,0],[6709,2514,0],[6715,2489,0],[6698,2536,0],[6686,2555,0],[6759,2435,0],[6747,2456,0],[6734,2474,0],[6721,2493,0],[6782,2397,0],[6798,2383,0],[6769,2414,0],[6831,2359,0],[6815,2370,0],[6847,2348,0],[6864,2339,0],[6904,2183,0],[6918,2228,0],[6904,2204,0],[6881,2333,0],[6909,2333,0],[6895,2333,0],[6945,2318,0],[6925,2330,0],[6937,2325,0]]],["Murabat",[[9069,1583,0],[9084,1598,0],[9100,1613,0],[9097,1624,0],[9086,1627,0],[9105,1621,0],[9121,1628,0],[9145,1634,0],[9176,1633,0],[9210,1627,0],[9239,1617,0],[9263,1607,0],[9302,1037,0],[9305,1052,0],[9312,1063,0],[9305,1584,0],[9284,1596,0],[9324,1075,0],[9345,1106,0],[9334,1091,0],[9355,1120,0],[9359,1554,0],[9331,1570,0],[9364,1135,0],[9373,1150,0],[9382,1163,0],[9393,1174,0],[9382,1538,0],[9406,1185,0],[9428,1202,0],[9425,1511,0],[9403,1524,0],[9472,1234,0],[9449,1216,0],[9460,1224,0],[9477,1474,0],[9444,1499,0],[9460,1489,0],[9472,1569,0],[9466,1596,0],[9463,1622,0],[9468,1670,0],[9463,1647,0],[9474,1694,0],[9476,1893,0],[9466,1913,0],[9453,1932,0],[9503,1277,0],[9491,1261,0],[9483,1247,0],[9513,1293,0],[9497,1455,0],[9511,1506,0],[9494,1525,0],[9481,1545,0],[9481,1716,0],[9486,1738,0],[9490,1764,0],[9494,1791,0],[9496,1819,0],[9485,1870,0],[9492,1845,0],[9520,1305,0],[9525,1320,0],[9526,1338,0],[9525,1351,0],[9525,1390,0],[9520,1373,0],[9523,1360,0],[9550,1428,0],[9543,1414,0],[9535,1404,0],[9543,1437,0],[9554,1440,0],[9544,1461,0],[9522,1441,0],[9552,1441,0],[9528,1486,0],[9598,1397,0],[9561,1434,0],[9577,1414,0],[9591,1690,0],[9580,1707,0],[9579,1744,0],[9575,1724,0],[9587,1764,0],[9600,1795,0],[9595,1780,0],[9625,1379,0],[9635,1425,0],[9626,1447,0],[9624,1472,0],[9637,1518,0],[9629,1496,0],[9630,1648,0],[9617,1664,0],[9605,1677,0],[9608,1826,0],[9604,1810,0],[9611,1844,0],[9612,1862,0],[9609,1916,0],[9613,1881,0],[9612,1898,0],[9605,1933,0],[9654,1362,0],[9663,1381,0],[9679,1362,0],[9646,1403,0],[9647,1540,0],[9653,1567,0],[9653,1594,0],[9643,1630,0],[9651,1612,0],[9708,1335,0],[9681,1349,0],[9693,1345,0],[9711,1336,0],[9757,1316,0],[9734,1324,0],[9733,1333,0],[9778,1307,0],[9796,1299,0],[9762,1330,0],[9791,1324,0],[9820,1289,0],[9813,1317,0],[9879,1263,0],[9844,1280,0],[9861,1272,0],[9842,1308,0],[9868,1300,0],[9917,1243,0],[9897,1252,0],[9909,1287,0],[9886,1294,0],[9942,1234,0],[9937,1279,0],[9981,1218,0],[9963,1225,0],[9962,1270,0],[9983,1263,0],[10003,1256,0]]],["Mian",[[7503,3207,0],[7482,3214,0],[7546,3194,0],[7525,3201,0],[7564,3182,0],[7582,3168,0],[7623,3149,0],[7600,3160,0],[7671,3113,0],[7648,3131,0],[7693,3099,0],[7710,3089,0],[7722,2551,0],[7739,2555,0],[7756,2557,0],[7727,3075,0],[7748,3067,0],[7788,2552,0],[7772,2556,0],[7767,3069,0],[7781,3072,0],[7793,3073,0],[7786,3469,0],[7795,3464,0],[7778,3475,0],[7825,2514,0],[7814,2536,0],[7802,2545,0],[7822,2527,0],[7827,3046,0],[7814,3056,0],[7803,3067,0],[7830,3446,0],[7813,3456,0],[7804,3460,0],[7839,3441,0],[7822,3451,0],[7878,2758,0],[7870,2775,0],[7865,2792,0],[7865,2839,0],[7862,2813,0],[7863,2826,0],[7863,2802,0],[7868,2874,0],[7865,2858,0],[7873,2889,0],[7874,2906,0],[7877,2938,0],[7873,2922,0],[7868,3030,0],[7844,3039,0],[7867,3391,0],[7873,3386,0],[7864,3399,0],[7848,3438,0],[7870,3415,0],[7858,3435,0],[7866,3407,0],[7866,3433,0],[7871,3428,0],[7872,3422,0],[7908,2678,0],[7896,2694,0],[7889,2708,0],[7885,2743,0],[7887,2725,0],[7885,2956,0],[7910,2985,0],[7896,2972,0],[7891,3021,0],[7904,3013,0],[7915,3007,0],[7914,3355,0],[7919,3347,0],[7897,3375,0],[7904,3368,0],[7889,3380,0],[7909,3362,0],[7881,3383,0],[7935,2654,0],[7950,2646,0],[7922,2664,0],[7922,3000,0],[7944,3034,0],[7932,3012,0],[7938,3023,0],[7925,3004,0],[7959,3055,0],[7951,3044,0],[7951,3271,0],[7957,3257,0],[7960,3246,0],[7933,3306,0],[7945,3283,0],[7939,3294,0],[7928,3318,0],[7922,3336,0],[7925,3327,0],[7994,2611,0],[7963,2638,0],[7974,2628,0],[7981,2618,0],[7974,3077,0],[7966,3066,0],[7996,3102,0],[7983,3088,0],[7964,3229,0],[7996,3209,0],[7970,3218,0],[7976,3212,0],[7983,3209,0],[7961,3239,0],[8012,2605,0],[8028,2602,0],[8006,3115,0],[8021,3153,0],[8014,3141,0],[8010,3130,0],[8009,3122,0],[8028,3163,0],[8034,3170,0],[8030,3194,0],[8035,3188,0],[8024,3199,0],[8038,3182,0],[8038,3176,0],[8019,3206,0],[8010,3210,0],[8065,2594,0],[8045,2598,0],[8087,2592,0],[8107,2590,0],[8122,2583,0],[8136,2573,0],[8154,2569,0]]],["Naw",[[6910,5518,0],[6948,5469,0],[6933,5484,0],[6921,5502,0],[6999,5306,0],[6998,5336,0],[6997,5370,0],[6992,5402,0],[6985,5426,0],[6963,5457,0],[6977,5443,0],[7034,5237,0],[7020,5255,0],[7007,5280,0],[7009,5646,0],[7033,5660,0],[7072,4860,0],[7078,5227,0],[7049,5223,0],[7062,5218,0],[7046,5672,0],[7064,5683,0],[7086,4873,0],[7119,4905,0],[7100,4886,0],[7102,5242,0],[7084,5693,0],[7102,5696,0],[7117,5696,0],[7144,4927,0],[7145,5246,0],[7125,5249,0],[7158,5514,0],[7134,5553,0],[7142,5529,0],[7131,5584,0],[7130,5619,0],[7134,5654,0],[7139,5689,0],[7127,5694,0],[7135,5693,0],[7140,5723,0],[7170,4945,0],[7192,4962,0],[7196,5199,0],[7162,5238,0],[7185,5212,0],[7175,5226,0],[7199,5519,0],[7179,5512,0],[7213,4978,0],[7232,4994,0],[7219,5191,0],[7227,5527,0],[7246,4792,0],[7251,4801,0],[7270,4810,0],[7261,4807,0],[7277,4816,0],[7276,4863,0],[7280,4840,0],[7276,4851,0],[7250,5011,0],[7261,5035,0],[7277,5039,0],[7266,5065,0],[7263,5046,0],[7269,5043,0],[7276,5114,0],[7269,5092,0],[7270,5135,0],[7261,5149,0],[7280,5127,0],[7244,5182,0],[7256,5167,0],[7261,5532,0],[7280,4827,0],[7319,4877,0],[7290,4877,0],[7304,4878,0],[7280,4874,0],[7312,4937,0],[7306,4954,0],[7310,4985,0],[7309,4970,0],[7290,5034,0],[7307,5021,0],[7301,5029,0],[7308,5000,0],[7309,5011,0],[7315,5152,0],[7291,5134,0],[7318,5526,0],[7292,5532,0],[7331,4879,0],[7324,4920,0],[7330,4902,0],[7333,4887,0],[7342,5154,0],[7356,5154,0],[7330,5159,0],[7334,5156,0],[7339,5167,0],[7340,5515,0],[7358,5498,0],[7370,5156,0],[7361,5180,0],[7384,5161,0],[7396,5163,0],[7377,5202,0],[7385,5233,0],[7388,5264,0],[7386,5293,0],[7399,5302,0],[7388,5301,0],[7393,5301,0],[7385,5326,0],[7384,5362,0],[7381,5394,0],[7377,5421,0],[7369,5476,0],[7374,5449,0],[7412,5164,0],[7431,5166,0],[7433,5316,0],[7413,5306,0],[7474,5180,0],[7447,5167,0],[7463,5171,0],[7479,5193,0],[7451,5328,0],[7470,5331,0],[7481,5217,0],[7483,5234,0],[7481,5203,0],[7484,5251,0],[7489,5265,0],[7500,5272,0],[7512,5275,0],[7513,5324,0],[7489,5328,0],[7550,5292,0],[7528,5280,0],[7539,5322,0],[7585,5311,0],[7563,5318,0],[7566,5309,0],[7592,5344,0],[7574,5323,0],[7582,5335,0],[7617,4877,0],[7617,4865,0],[7623,4891,0],[7633,4905,0],[7639,4916,0],[7636,5261,0],[7604,5300,0],[7620,5283,0],[7615,5359,0],[7604,5351,0],[7628,5365,0],[7649,4960,0],[7644,4949,0],[7642,4927,0],[7642,4938,0],[7679,4990,0],[7659,4969,0],[7670,4979,0],[7673,5172,0],[7665,5196,0],[7657,5219,0],[7649,5239,0],[7675,5375,0],[7643,5367,0],[7658,5370,0],[7691,5018,0],[7687,5003,0],[7692,5034,0],[7691,5080,0],[7689,5047,0],[7687,5061,0],[7703,5113,0],[7698,5099,0],[7685,5153,0],[7700,5138,0],[7711,5137,0],[7719,5156,0],[7715,5148,0],[7707,5125,0],[7691,5384,0],[7701,5397,0],[7719,5418,0],[7709,5409,0],[7759,5112,0],[7742,5118,0],[7721,5125,0],[7732,5190,0],[7723,5166,0],[7726,5178,0],[7740,5198,0],[7760,5207,0],[7748,5202,0],[7735,5439,0],[7728,5427,0],[7749,5467,0],[7743,5453,0],[7758,5484,0],[7788,5077,0],[7772,5098,0],[7770,5214,0],[7777,5223,0],[7787,5239,0],[7781,5231,0],[7793,5244,0],[7782,5501,0],[7767,5496,0],[7813,5253,0],[7827,5255,0],[7802,5248,0]]],["Landay",[[6932,6697,0],[6954,6702,0],[6952,7131,0],[6987,6690,0],[6971,6699,0],[6996,7122,0],[6974,7127,0],[7015,6661,0],[7034,6644,0],[7001,6677,0],[7036,7109,0],[7016,7116,0],[7059,6633,0],[7077,7089,0],[7055,7101,0],[7090,6635,0],[7120,6645,0],[7102,7073,0],[7149,6653,0],[7151,6824,0],[7141,6847,0],[7136,6872,0],[7139,6916,0],[7135,6895,0],[7149,6936,0],[7144,7028,0],[7124,7052,0],[7175,6427,0],[7189,6447,0],[7199,6649,0],[7173,6661,0],[7187,6668,0],[7193,6672,0],[7198,6677,0],[7196,6681,0],[7193,6709,0],[7182,6757,0],[7188,6733,0],[7173,6781,0],[7162,6803,0],[7163,6954,0],[7187,6989,0],[7178,6969,0],[7191,6979,0],[7165,7006,0],[7201,6473,0],[7208,6501,0],[7207,6554,0],[7210,6527,0],[7203,6580,0],[7200,6623,0],[7200,6603,0],[7233,6675,0],[7211,6677,0],[7214,6972,0],[7274,6663,0],[7256,6670,0],[7245,6955,0],[7273,6941,0],[7278,7021,0],[7275,7042,0],[7277,7172,0],[7277,7192,0],[7265,7309,0],[7273,7294,0],[7256,7331,0],[7248,7354,0],[7317,6595,0],[7304,6637,0],[7313,6615,0],[7311,6631,0],[7289,6653,0],[7319,6641,0],[7318,6800,0],[7316,6827,0],[7316,6850,0],[7318,6872,0],[7319,6892,0],[7299,6928,0],[7304,6988,0],[7286,7004,0],[7280,7065,0],[7289,7090,0],[7294,7114,0],[7290,7133,0],[7282,7150,0],[7281,7212,0],[7287,7242,0],[7283,7274,0],[7355,6514,0],[7345,6534,0],[7334,6553,0],[7324,6574,0],[7326,6658,0],[7328,6685,0],[7327,6716,0],[7325,6744,0],[7322,6770,0],[7347,6906,0],[7323,6917,0],[7323,6911,0],[7328,6949,0],[7328,6929,0],[7328,6955,0],[7342,6964,0],[7321,6970,0],[7393,6462,0],[7374,6480,0],[7364,6496,0],[7371,6894,0],[7393,6881,0],[7391,6996,0],[7365,6978,0],[7440,6440,0],[7417,6449,0],[7415,6866,0],[7436,6847,0],[7428,6880,0],[7414,6876,0],[7407,7016,0],[7409,7035,0],[7422,7069,0],[7414,7053,0],[7432,7085,0],[7469,6433,0],[7472,6819,0],[7454,6831,0],[7446,6888,0],[7455,6903,0],[7459,6922,0],[7466,6935,0],[7451,7099,0],[7476,7109,0],[7501,6427,0],[7509,6795,0],[7490,6807,0],[7483,6943,0],[7497,6955,0],[7506,6973,0],[7517,6994,0],[7503,7147,0],[7493,7124,0],[7512,7175,0],[7510,7222,0],[7516,7200,0],[7501,7243,0],[7496,7266,0],[7504,7312,0],[7496,7289,0],[7518,7335,0],[7533,6421,0],[7545,6772,0],[7527,6783,0],[7554,7039,0],[7542,7019,0],[7529,7008,0],[7560,7068,0],[7581,6750,0],[7563,6760,0],[7563,7096,0],[7574,7124,0],[7592,7145,0],[7607,6738,0],[7639,6724,0],[7608,7145,0],[7627,7138,0],[7667,6710,0],[7648,7139,0],[7662,7146,0],[7693,6696,0],[7681,7157,0],[7706,7173,0],[7757,6679,0],[7722,6685,0],[7725,7193,0],[7735,7213,0],[7784,6679,0],[7823,6693,0],[7804,6685,0]]],["Tebbi",[[6345,8193,0],[6350,8175,0],[6333,8204,0],[6346,8565,0],[6373,8575,0],[6376,8591,0],[6363,8566,0],[6381,8616,0],[6399,8624,0],[6373,8605,0],[6415,8633,0],[6434,8675,0],[6427,8645,0],[6436,8658,0],[6418,8691,0],[6449,8664,0],[6469,8656,0],[6441,8666,0],[6514,8647,0],[6491,8653,0],[6534,8638,0],[6553,8632,0],[6591,8606,0],[6569,8622,0],[6640,8551,0],[6624,8573,0],[6612,8590,0],[6671,8516,0],[6657,8530,0],[6702,8484,0],[6686,8500,0],[6735,7902,0],[6731,7880,0],[6751,7920,0],[6721,8468,0],[6742,8454,0],[6759,8445,0],[6770,7936,0],[6786,7951,0],[6782,8394,0],[6799,8369,0],[6792,8382,0],[6771,8410,0],[6762,8430,0],[6763,8445,0],[6786,8442,0],[6831,7989,0],[6806,7968,0],[6808,8354,0],[6832,8323,0],[6816,8341,0],[6823,8333,0],[6832,8431,0],[6810,8440,0],[6858,8034,0],[6848,8011,0],[6866,8058,0],[6871,8078,0],[6878,8099,0],[6864,8191,0],[6874,8178,0],[6876,8229,0],[6863,8210,0],[6877,8249,0],[6873,8268,0],[6872,8301,0],[6874,8285,0],[6842,8314,0],[6863,8308,0],[6851,8309,0],[6864,8397,0],[6878,8377,0],[6849,8416,0],[6886,8122,0],[6891,8147,0],[6885,8168,0],[6916,8239,0],[6893,8234,0],[6904,8234,0],[6882,8238,0],[6885,8236,0],[6893,8249,0],[6905,8269,0],[6917,8309,0],[6913,8284,0],[6896,8354,0],[6912,8334,0],[6948,8261,0],[6931,8247,0],[6996,8274,0],[6969,8272,0],[7028,8270,0],[7079,8236,0],[7065,8253,0],[7050,8264,0],[7068,8450,0],[7061,8479,0],[7063,8503,0],[7071,8522,0],[7078,8542,0],[7093,7989,0],[7088,8008,0],[7084,8027,0],[7092,8076,0],[7085,8057,0],[7082,8042,0],[7099,8116,0],[7097,8096,0],[7097,8137,0],[7094,8164,0],[7092,8194,0],[7088,8218,0],[7115,8405,0],[7095,8419,0],[7081,8430,0],[7090,8584,0],[7085,8560,0],[7093,8614,0],[7094,8668,0],[7094,8643,0],[7113,8716,0],[7099,8693,0],[7113,8682,0],[7098,8680,0],[7136,8390,0],[7151,8374,0],[7139,8689,0],[7160,8704,0],[7132,8737,0],[7181,8339,0],[7165,8358,0],[7201,8319,0],[7237,8287,0],[7221,8302,0],[7256,8269,0],[7275,8249,0]]],["Herati",[[8794,9864,0],[8824,9861,0],[8878,9201,0],[8847,9862,0],[8864,9869,0],[8879,9873,0],[8920,9114,0],[8902,9123,0],[8885,9151,0],[8890,9135,0],[8881,9186,0],[8884,9169,0],[8883,9219,0],[8890,9239,0],[8898,9253,0],[8908,9264,0],[8914,9275,0],[8908,9873,0],[8892,9873,0],[8944,9111,0],[8933,9317,0],[8922,9289,0],[8942,9352,0],[8953,9376,0],[8924,9878,0],[8937,9889,0],[8986,9096,0],[8969,9106,0],[8999,9084,0],[8965,9390,0],[8982,9427,0],[8974,9407,0],[8988,9449,0],[8994,9469,0],[9024,9059,0],[9039,9045,0],[9010,9073,0],[9035,9466,0],[9031,9458,0],[9028,9450,0],[9025,9445,0],[9007,9506,0],[9000,9488,0],[9035,9547,0],[9018,9522,0],[9027,9533,0],[9010,9894,0],[9036,9886,0],[9066,9040,0],[9051,9038,0],[9043,9436,0],[9051,9451,0],[9047,9443,0],[9046,9470,0],[9058,9464,0],[9054,9456,0],[9057,9580,0],[9074,9594,0],[9044,9563,0],[9077,9869,0],[9057,9878,0],[9097,9056,0],[9113,9067,0],[9082,9046,0],[9095,9605,0],[9099,9858,0],[9152,9062,0],[9131,9072,0],[9144,9073,0],[9122,9614,0],[9148,9624,0],[9159,9822,0],[9139,9835,0],[9121,9846,0],[9196,9017,0],[9178,9034,0],[9162,9048,0],[9170,9633,0],[9188,9640,0],[9180,9808,0],[9208,9000,0],[9211,8967,0],[9211,8984,0],[9211,9635,0],[9229,9626,0],[9201,9793,0],[9218,9780,0],[9231,9767,0],[9274,9592,0],[9245,9615,0],[9262,9627,0],[9264,9602,0],[9255,9610,0],[9263,9674,0],[9267,9650,0],[9257,9717,0],[9259,9697,0],[9243,9752,0],[9252,9736,0],[9297,9558,0],[9311,9540,0],[9283,9577,0],[9354,9435,0],[9339,9457,0],[9330,9479,0],[9327,9500,0],[9321,9521,0],[9387,9399,0],[9371,9415,0],[9419,9358,0],[9432,9338,0],[9402,9381,0],[9446,9321,0]]],["FobNauzad",[[4038,5758,0],[4029,5798,0],[4033,5784,0],[4034,5772,0],[4016,5832,0],[4022,5812,0],[4013,5853,0],[4027,5936,0],[4070,5598,0],[4070,5629,0],[4071,5613,0],[4067,5648,0],[4063,5665,0],[4058,5682,0],[4050,5711,0],[4054,5698,0],[4045,5741,0],[4048,5726,0],[4055,5940,0],[4075,5950,0],[4114,5573,0],[4091,5571,0],[4108,5967,0],[4088,5961,0],[4141,5578,0],[4131,5972,0],[4153,5974,0],[4169,5588,0],[4193,5596,0],[4198,5973,0],[4174,5971,0],[4236,5591,0],[4214,5596,0],[4217,5988,0],[4233,6006,0],[4234,6224,0],[4240,6203,0],[4262,5585,0],[4274,5782,0],[4275,5833,0],[4273,5807,0],[4278,5859,0],[4255,6017,0],[4279,6061,0],[4262,6119,0],[4271,6089,0],[4255,6144,0],[4245,6182,0],[4250,6163,0],[4303,5381,0],[4319,5545,0],[4289,5581,0],[4317,5570,0],[4311,5588,0],[4316,5586,0],[4314,5589,0],[4304,5582,0],[4314,5607,0],[4313,5631,0],[4312,5659,0],[4316,5658,0],[4307,5709,0],[4310,5687,0],[4297,5732,0],[4283,5757,0],[4294,5898,0],[4285,5881,0],[4312,5893,0],[4297,5895,0],[4308,5921,0],[4316,5945,0],[4310,5970,0],[4299,6003,0],[4289,6033,0],[4281,6020,0],[4302,6021,0],[4325,5391,0],[4342,5398,0],[4327,5365,0],[4325,5384,0],[4324,5410,0],[4322,5437,0],[4321,5459,0],[4321,5515,0],[4321,5484,0],[4359,5656,0],[4332,5657,0],[4335,5890,0],[4358,5890,0],[4323,6019,0],[4346,6021,0],[4366,5405,0],[4394,5412,0],[4386,5657,0],[4379,5892,0],[4371,6024,0],[4440,5424,0],[4417,5419,0],[4440,5661,0],[4412,5659,0],[4404,5895,0],[4426,5896,0],[4438,6026,0],[4403,6024,0],[4466,5432,0],[4469,5662,0],[4467,5833,0],[4473,5824,0],[4464,5869,0],[4467,5850,0],[4454,5886,0],[4441,5895,0],[4471,6029,0],[4493,5441,0],[4498,5660,0],[4514,5796,0],[4496,5796,0],[4505,5795,0],[4481,5816,0],[4488,5803,0],[4504,6032,0],[4521,5451,0],[4550,5462,0],[4527,5658,0],[4552,5654,0],[4524,5804,0],[4535,5839,0],[4533,5820,0],[4532,5855,0],[4534,5851,0],[4532,6037,0],[4553,6046,0],[4599,5478,0],[4575,5470,0],[4599,5445,0],[4598,5468,0],[4598,5490,0],[4597,5511,0],[4598,5550,0],[4596,5530,0],[4600,5574,0],[4599,5618,0],[4598,5633,0],[4571,5651,0],[4586,5649,0],[4597,5647,0],[4575,6056,0],[4596,6064,0],[4610,5346,0],[4607,5380,0],[4610,5363,0],[4604,5402,0],[4601,5424,0],[4623,5490,0],[4601,5599,0],[4615,5665,0],[4601,5644,0],[4606,5652,0],[4627,5685,0],[4638,5703,0],[4638,6005,0],[4628,6022,0],[4616,6043,0],[4619,6067,0],[4605,6061,0],[4646,5505,0],[4667,5518,0],[4676,5702,0],[4660,5715,0],[4674,5757,0],[4649,5744,0],[4661,5748,0],[4649,5725,0],[4651,5741,0],[4645,5721,0],[4654,5770,0],[4656,5796,0],[4650,5839,0],[4653,5817,0],[4651,5859,0],[4652,5873,0],[4649,5902,0],[4650,5885,0],[4679,5933,0],[4663,5960,0],[4657,5957,0],[4649,5922,0],[4650,5943,0],[4649,5984,0],[4673,5983,0],[4666,5968,0],[4673,6003,0],[4672,6022,0],[4669,6074,0],[4645,6066,0],[4672,6060,0],[4667,6075,0],[4673,6041,0],[4668,6074,0],[4656,6097,0],[4652,6111,0],[4660,6086,0],[4663,6080,0],[4649,6127,0],[4648,6145,0],[4646,6185,0],[4648,6165,0],[4641,6206,0],[4641,6228,0],[4645,6246,0],[4653,6261,0],[4663,6271,0],[4678,6281,0],[4690,5532,0],[4714,5545,0],[4710,5599,0],[4712,5579,0],[4716,5566,0],[4708,5620,0],[4709,5642,0],[4710,5662,0],[4698,5682,0],[4691,5764,0],[4711,5766,0],[4714,5874,0],[4697,5903,0],[4719,6094,0],[4693,6086,0],[4690,6295,0],[4723,5557,0],[4730,5556,0],[4744,5565,0],[4757,5573,0],[4760,5799,0],[4731,5768,0],[4749,5770,0],[4748,5817,0],[4738,5835,0],[4728,5852,0],[4750,6102,0],[4770,5585,0],[4787,5598,0],[4786,5754,0],[4771,5780,0],[4786,5776,0],[4767,5772,0],[4798,5784,0],[4799,5809,0],[4793,5823,0],[4789,5837,0],[4794,5853,0],[4777,6108,0],[4796,6109,0],[4799,6108,0],[4775,6110,0],[4774,6153,0],[4772,6122,0],[4768,6136,0],[4767,6145,0],[4786,6162,0],[4791,6195,0],[4792,6175,0],[4799,6222,0],[4791,6211,0],[4801,5607,0],[4812,5616,0],[4818,5627,0],[4839,5667,0],[4824,5641,0],[4833,5653,0],[4828,5685,0],[4817,5702,0],[4804,5725,0],[4801,5795,0],[4805,5869,0],[4818,5882,0],[4828,5894,0],[4835,5905,0],[4831,6033,0],[4820,6080,0],[4825,6062,0],[4828,6047,0],[4824,6115,0],[4814,6103,0],[4809,6107,0],[4811,6108,0],[4817,6094,0],[4838,6130,0],[4864,5630,0],[4875,5609,0],[4848,5666,0],[4851,5650,0],[4867,5680,0],[4842,5916,0],[4855,5926,0],[4864,5958,0],[4867,5944,0],[4866,5934,0],[4856,5987,0],[4861,5972,0],[4840,6017,0],[4849,6002,0],[4847,6153,0],[4851,6182,0],[4905,5560,0],[4889,5587,0],[4882,5690,0],[4896,5701,0],[4910,5710,0],[4916,5992,0],[4912,6019,0],[4914,6037,0],[4911,6002,0],[4915,6028,0],[4910,6010,0],[4903,6054,0],[4900,6075,0],[4898,6065,0],[4910,6045,0],[4914,6090,0],[4907,6082,0],[4917,6101,0],[4917,6111,0],[4936,5735,0],[4923,5722,0],[4949,5748,0],[4957,5758,0],[4959,5837,0],[4939,5954,0],[4947,5943,0],[4955,5936,0],[4930,5968,0],[4922,5981,0],[4964,5775,0],[4996,5797,0],[4971,5792,0],[4984,5792,0],[4976,5791,0],[4973,5827,0],[4973,5815,0],[4965,5827,0],[4983,5833,0],[4994,5836,0],[4975,5803,0],[4961,5849,0],[4966,5862,0],[4967,5873,0],[4965,5897,0],[4966,5882,0],[4964,5910,0],[4961,5929,0],[4963,5920,0],[5010,5809,0],[5005,5835,0]]],["FobObeh",[[2598,8308,0],[2595,8334,0],[2594,8365,0],[2592,8394,0],[2585,8438,0],[2588,8416,0],[2584,8463,0],[2591,8516,0],[2587,8489,0],[2596,8545,0],[2600,8573,0],[2600,8602,0],[2625,8259,0],[2663,8219,0],[2677,8218,0],[2678,8228,0],[2645,8212,0],[2644,8216,0],[2648,8201,0],[2664,8267,0],[2644,8263,0],[2655,8700,0],[2669,8701,0],[2677,8703,0],[2713,8115,0],[2707,8139,0],[2700,8183,0],[2704,8163,0],[2693,8202,0],[2687,8214,0],[2684,8271,0],[2703,8275,0],[2684,8247,0],[2692,8266,0],[2700,8276,0],[2716,8700,0],[2711,8705,0],[2702,8707,0],[2684,8706,0],[2692,8708,0],[2722,8279,0],[2741,8284,0],[2759,8288,0],[2743,8306,0],[2753,8312,0],[2736,8298,0],[2733,8289,0],[2737,8398,0],[2746,8396,0],[2755,8396,0],[2736,8427,0],[2735,8411,0],[2735,8403,0],[2737,8450,0],[2737,8470,0],[2737,8486,0],[2738,8517,0],[2738,8502,0],[2739,8532,0],[2739,8546,0],[2738,8559,0],[2744,8594,0],[2741,8581,0],[2738,8571,0],[2743,8627,0],[2745,8610,0],[2741,8650,0],[2737,8660,0],[2743,8656,0],[2753,8655,0],[2742,8640,0],[2737,8667,0],[2737,8674,0],[2721,8693,0],[2728,8689,0],[2734,8686,0],[2737,8681,0],[2772,8060,0],[2794,8055,0],[2786,8294,0],[2770,8314,0],[2776,8317,0],[2762,8314,0],[2774,8324,0],[2768,8349,0],[2770,8335,0],[2769,8387,0],[2769,8364,0],[2764,8394,0],[2770,8376,0],[2791,8640,0],[2773,8656,0],[2780,8653,0],[2782,8647,0],[2763,8656,0],[2784,8643,0],[2805,8045,0],[2820,8302,0],[2817,8637,0],[2834,8637,0],[2802,8638,0],[2847,8309,0],[2868,8315,0],[2869,8623,0],[2858,8636,0],[2849,8637,0],[2859,8641,0],[2868,8647,0],[2873,8655,0],[2875,8664,0],[2875,8674,0],[2875,8686,0],[2876,8709,0],[2876,8698,0],[2879,8731,0],[2876,8721,0],[2878,8910,0],[2906,7986,0],[2906,8015,0],[2907,8048,0],[2909,8076,0],[2911,8100,0],[2910,8150,0],[2913,8125,0],[2903,8172,0],[2909,8167,0],[2898,8191,0],[2920,8174,0],[2895,8211,0],[2892,8234,0],[2892,8275,0],[2891,8255,0],[2893,8294,0],[2892,8317,0],[2892,8307,0],[2888,8321,0],[2907,8327,0],[2919,8418,0],[2906,8469,0],[2913,8445,0],[2896,8491,0],[2896,8516,0],[2890,8507,0],[2900,8546,0],[2902,8526,0],[2892,8574,0],[2881,8602,0],[2893,8749,0],[2886,8740,0],[2899,8758,0],[2897,8759,0],[2919,8778,0],[2907,8767,0],[2894,8792,0],[2896,8773,0],[2891,8815,0],[2887,8840,0],[2884,8863,0],[2887,8885,0],[2890,8912,0],[2897,8901,0],[2908,8901,0],[2886,8912,0],[2936,7974,0],[2957,7983,0],[2935,8186,0],[2955,8205,0],[2926,8333,0],[2944,8339,0],[2926,8338,0],[2924,8348,0],[2922,8387,0],[2923,8360,0],[2931,8789,0],[2941,8797,0],[2959,8807,0],[2950,8802,0],[2924,8902,0],[2941,8906,0],[2949,8916,0],[2947,8930,0],[2972,7993,0],[2991,8006,0],[2985,8240,0],[2972,8221,0],[2999,8263,0],[2983,8349,0],[2963,8344,0],[2979,8835,0],[2971,8827,0],[2964,8813,0],[2966,8819,0],[2987,8843,0],[2995,8849,0],[3011,8020,0],[3027,8035,0],[3012,8284,0],[3022,8302,0],[3034,8323,0],[3005,8355,0],[3032,8360,0],[3011,8858,0],[3002,8853,0],[3028,8870,0],[3021,8867,0],[3016,8864,0],[3033,8873,0],[3034,8878,0],[3040,8898,0],[3035,8892,0],[3034,8885,0],[3045,8049,0],[3064,8059,0],[3051,8344,0],[3060,8354,0],[3061,8366,0],[3065,8360,0],[3061,8505,0],[3076,8495,0],[3055,8519,0],[3079,8540,0],[3060,8531,0],[3077,8703,0],[3077,8732,0],[3079,8759,0],[3079,8795,0],[3074,8827,0],[3073,8857,0],[3067,8916,0],[3072,8886,0],[3062,8906,0],[3048,8902,0],[3055,8904,0],[3058,8951,0],[3083,8069,0],[3107,8096,0],[3098,8081,0],[3113,8114,0],[3117,8146,0],[3114,8130,0],[3090,8372,0],[3118,8377,0],[3114,8478,0],[3095,8487,0],[3108,8546,0],[3106,8614,0],[3092,8629,0],[3080,8675,0],[3084,8650,0],[3105,8740,0],[3117,8740,0],[3089,8766,0],[3082,8775,0],[3122,8169,0],[3126,8191,0],[3129,8209,0],[3134,8225,0],[3137,8243,0],[3139,8262,0],[3137,8277,0],[3131,8309,0],[3133,8291,0],[3138,8346,0],[3129,8326,0],[3131,8337,0],[3142,8356,0],[3144,8381,0],[3147,8372,0],[3144,8364,0],[3128,8469,0],[3124,8472,0],[3137,8553,0],[3140,8589,0],[3152,8575,0],[3153,8562,0],[3123,8600,0],[3157,8676,0],[3144,8690,0],[3132,8705,0],[3120,8719,0],[3153,8753,0],[3136,8745,0],[3125,8742,0],[3159,8783,0],[3153,8802,0],[3148,8822,0],[3142,8842,0],[3135,8861,0],[3141,8880,0],[3134,8874,0],[3156,8886,0],[3173,8383,0],[3195,8382,0],[3199,8627,0],[3169,8661,0],[3182,8647,0],[3161,8767,0],[3190,8885,0],[3172,8890,0],[3181,8887,0],[3236,8173,0],[3230,8193,0],[3224,8219,0],[3219,8253,0],[3216,8289,0],[3236,8351,0],[3212,8321,0],[3209,8349,0],[3216,8338,0],[3204,8370,0],[3236,8580,0],[3238,8580,0],[3220,8602,0],[3226,8895,0],[3206,8889,0],[3251,8007,0],[3247,8036,0],[3248,8079,0],[3246,8060,0],[3250,8098,0],[3251,8117,0],[3243,8154,0],[3249,8135,0],[3259,8155,0],[3256,8146,0],[3250,8142,0],[3259,8187,0],[3259,8170,0],[3279,8220,0],[3260,8204,0],[3265,8214,0],[3254,8369,0],[3259,8386,0],[3263,8407,0],[3265,8428,0],[3264,8472,0],[3265,8449,0],[3261,8494,0],[3258,8515,0],[3247,8559,0],[3254,8536,0],[3244,8591,0],[3254,8610,0],[3265,8629,0],[3270,8636,0],[3273,8653,0],[3267,8907,0],[3247,8901,0],[3316,8233,0],[3297,8226,0],[3282,8644,0],[3316,8679,0],[3300,8661,0],[3281,8682,0],[3290,8711,0],[3298,8739,0],[3306,8764,0],[3315,8779,0],[3337,8241,0],[3353,8248,0],[3348,8694,0],[3330,8690,0],[3327,8792,0],[3339,8811,0],[3344,8835,0],[3348,8860,0],[3379,8277,0],[3372,8255,0],[3376,8264,0],[3364,8252,0],[3386,8301,0],[3393,8311,0],[3382,8290,0],[3399,8696,0],[3373,8696,0],[3417,8091,0],[3421,8114,0],[3425,8134,0],[3431,8149,0],[3431,8134,0],[3439,8132,0],[3402,8320,0],[3411,8331,0],[3432,8349,0],[3418,8340,0],[3425,8344,0],[3423,8697,0],[3445,8126,0],[3445,8156,0],[3461,8161,0],[3442,8357,0],[3454,8365,0],[3473,8374,0],[3464,8371,0],[3462,8699,0],[3442,8698,0],[3481,8167,0],[3482,8378,0],[3495,8395,0],[3493,8389,0],[3486,8383,0],[3489,8386,0],[3508,8406,0],[3498,8402,0],[3504,8695,0],[3482,8698,0],[3529,8243,0],[3534,8258,0],[3537,8271,0],[3538,8285,0],[3543,8292,0],[3537,8411,0],[3523,8409,0],[3552,8412,0],[3567,8413,0]]],["Idak",[[4720,4976,0],[4740,4984,0],[4760,4997,0],[4788,5005,0],[4816,5009,0],[4841,5013,0],[4865,5016,0],[4912,5021,0],[4887,5018,0],[4944,5029,0],[4957,5470,0],[4943,5493,0],[4931,5513,0],[4975,5038,0],[4986,5423,0],[4973,5446,0],[5005,5045,0],[5036,5051,0],[5033,5347,0],[5017,5373,0],[5001,5400,0],[5067,5056,0],[5079,5274,0],[5064,5299,0],[5048,5323,0],[5096,5065,0],[5117,5210,0],[5102,5236,0],[5090,5256,0],[5123,5075,0],[5151,5085,0],[5146,5160,0],[5132,5183,0],[5173,5116,0],[5193,5083,0],[5184,5099,0],[5180,5097,0],[5170,5092,0],[5160,5137,0],[5236,5021,0],[5219,5047,0],[5205,5066,0],[5234,5052,0],[5223,5046,0],[5269,4960,0],[5259,4979,0],[5249,4998,0],[5254,5062,0],[5273,5073,0],[5311,4901,0],[5297,4922,0],[5282,4942,0],[5310,5093,0],[5290,5083,0],[5350,4830,0],[5336,4854,0],[5323,4879,0],[5333,5101,0],[5355,5104,0],[5393,4756,0],[5377,4785,0],[5363,4808,0],[5383,5107,0],[5438,4678,0],[5418,4711,0],[5429,4693,0],[5407,4731,0],[5411,5113,0],[5435,5121,0],[5462,5131,0],[5458,5227,0],[5470,5201,0],[5453,5273,0],[5453,5250,0],[5454,5304,0],[5447,5349,0],[5453,5330,0],[5468,5380,0],[5445,5367,0],[5453,5376,0],[5486,5139,0],[5505,5142,0],[5490,5182,0],[5516,5170,0],[5481,5394,0],[5508,5423,0],[5493,5409,0],[5545,5148,0],[5524,5144,0],[5555,5179,0],[5537,5171,0],[5521,5447,0],[5527,5477,0],[5570,5154,0],[5589,5186,0],[5573,5188,0],[5590,5161,0],[5618,5108,0],[5608,5129,0],[5607,5153,0],[5602,5173,0],[5601,5166,0],[5660,5076,0],[5640,5091,0],[5681,5063,0]]],["Zaranj",[[5743,7245,0],[5774,6763,0],[5796,7203,0],[5779,7219,0],[5761,7233,0],[5804,6766,0],[5829,6765,0],[5814,7188,0],[5832,7176,0],[5862,6770,0],[5848,6767,0],[5866,7156,0],[5849,7165,0],[5881,6774,0],[5904,6776,0],[5911,7145,0],[5884,7149,0],[5943,6772,0],[5924,6775,0],[5954,7037,0],[5942,7066,0],[5937,7094,0],[5935,7117,0],[5957,7150,0],[5938,7146,0],[5934,7137,0],[5933,7151,0],[5963,6769,0],[5997,6769,0],[5982,6766,0],[5990,7004,0],[5969,7017,0],[5977,7159,0],[5986,7138,0],[5973,7146,0],[5968,7152,0],[5999,7174,0],[6032,6774,0],[6012,6773,0],[6015,6998,0],[6034,6996,0],[6038,7049,0],[6025,7076,0],[6030,7063,0],[6023,7092,0],[6020,7108,0],[6014,7120,0],[6003,7130,0],[6022,7192,0],[6075,6754,0],[6060,6765,0],[6048,6772,0],[6069,6896,0],[6060,6910,0],[6054,6927,0],[6053,6944,0],[6054,6968,0],[6048,6989,0],[6046,7035,0],[6062,7020,0],[6053,7025,0],[6071,7016,0],[6069,7225,0],[6043,7209,0],[6093,6743,0],[6112,6734,0],[6115,6856,0],[6106,6877,0],[6089,6887,0],[6115,6995,0],[6099,7002,0],[6082,7011,0],[6111,7027,0],[6104,7038,0],[6106,7031,0],[6109,7048,0],[6114,7069,0],[6114,7058,0],[6114,7080,0],[6114,7089,0],[6114,7097,0],[6100,7238,0],[6138,6724,0],[6159,6776,0],[6143,6802,0],[6131,6821,0],[6124,6836,0],[6159,6821,0],[6151,6813,0],[6143,6808,0],[6157,6921,0],[6152,6950,0],[6152,6934,0],[6156,6964,0],[6127,6993,0],[6147,6991,0],[6138,6992,0],[6156,7026,0],[6122,7026,0],[6141,7029,0],[6132,7028,0],[6129,7246,0],[6156,7248,0],[6182,6713,0],[6163,6718,0],[6169,6747,0],[6168,6721,0],[6170,6729,0],[6167,6831,0],[6195,6866,0],[6182,6852,0],[6174,6842,0],[6165,6912,0],[6192,6912,0],[6174,6908,0],[6183,6909,0],[6177,6984,0],[6162,6976,0],[6160,6988,0],[6196,6983,0],[6168,6987,0],[6171,6997,0],[6169,7017,0],[6172,7006,0],[6184,7249,0],[6207,6704,0],[6232,6694,0],[6205,6880,0],[6211,6891,0],[6211,6907,0],[6203,6912,0],[6214,6900,0],[6212,6987,0],[6229,6992,0],[6212,7248,0],[6235,7246,0],[6268,6675,0],[6251,6684,0],[6257,6937,0],[6249,6937,0],[6241,6936,0],[6264,6937,0],[6241,6956,0],[6246,6956,0],[6255,6957,0],[6264,6957,0],[6241,6974,0],[6264,6974,0],[6250,6974,0],[6259,6974,0],[6276,6994,0],[6263,6990,0],[6242,6991,0],[6252,6990,0],[6276,7099,0],[6266,7113,0],[6274,7149,0],[6265,7131,0],[6255,7244,0],[6274,7241,0],[6310,6653,0],[6285,6664,0],[6313,7039,0],[6288,7001,0],[6308,7028,0],[6295,7004,0],[6301,7005,0],[6314,7055,0],[6309,7072,0],[6294,7086,0],[6285,7175,0],[6286,7188,0],[6283,7163,0],[6317,7235,0],[6292,7238,0],[6291,7226,0],[6286,7215,0],[6285,7202,0],[6301,7272,0],[6295,7242,0],[6295,7260,0],[6315,7282,0],[6314,7481,0],[6304,7497,0],[6336,6645,0],[6357,6644,0],[6349,7231,0],[6330,7293,0],[6340,7307,0],[6348,7322,0],[6355,7335,0],[6356,7436,0],[6328,7467,0],[6338,7453,0],[6400,6644,0],[6377,6646,0],[6378,7228,0],[6361,7347,0],[6363,7360,0],[6372,7374,0],[6382,7390,0],[6379,7406,0],[6372,7420,0],[6425,6638,0],[6428,7218,0],[6405,7225,0],[6444,6628,0],[6476,7183,0],[6463,7196,0],[6447,7208,0],[6509,7157,0],[6491,7169,0],[6535,7143,0],[6560,7133,0],[6578,7127,0],[6638,7119,0],[6605,7122,0]]],["Bum",[[5351,980,0],[5399,986,0],[5365,985,0],[5382,990,0],[5419,974,0],[5434,962,0],[5473,937,0],[5443,950,0],[5454,941,0],[5514,942,0],[5495,936,0],[5534,949,0],[5549,955,0],[5595,959,0],[5577,957,0],[5561,958,0],[5612,963,0],[5626,965,0],[5637,965,0],[5671,980,0],[5659,972,0],[5648,967,0],[5674,1188,0],[5674,1198,0],[5678,1206,0],[5686,990,0],[5697,1001,0],[5717,1004,0],[5701,1014,0],[5709,1010,0],[5698,1025,0],[5708,1034,0],[5713,1039,0],[5704,1010,0],[5702,1031,0],[5697,1019,0],[5715,1065,0],[5715,1046,0],[5715,1055,0],[5715,1075,0],[5711,1104,0],[5710,1119,0],[5714,1084,0],[5713,1092,0],[5700,1152,0],[5706,1142,0],[5709,1132,0],[5680,1179,0],[5688,1171,0],[5693,1162,0],[5695,1211,0],[5707,1209,0],[5685,1211,0],[5749,959,0],[5755,951,0],[5742,972,0],[5726,994,0],[5734,984,0],[5754,1215,0],[5741,1210,0],[5721,1207,0],[5731,1207,0],[5768,941,0],[5777,936,0],[5784,932,0],[5761,945,0],[5792,930,0],[5799,928,0],[5789,1223,0],[5766,1220,0],[5776,1223,0],[5824,916,0],[5816,918,0],[5831,913,0],[5838,915,0],[5835,913,0],[5810,921,0],[5804,924,0],[5823,1208,0],[5811,1213,0],[5801,1217,0],[5832,1205,0],[5842,915,0],[5868,1200,0],[5842,1202,0],[5854,1200,0],[5901,1218,0],[5892,1208,0],[5908,1229,0],[5881,1202,0],[5917,1256,0],[5912,1242,0],[5923,1269,0],[5934,1283,0],[5947,1296,0],[5957,1307,0],[5996,850,0],[5979,867,0],[5999,916,0],[5981,903,0],[5974,887,0],[5992,1227,0],[5982,1245,0],[5977,1261,0],[5975,1278,0],[5967,1317,0],[5978,1294,0],[5983,1307,0],[5981,1317,0],[5978,1328,0],[5991,1345,0],[5985,1337,0],[5997,1352,0],[5976,1323,0],[6033,660,0],[6034,788,0],[6024,817,0],[6015,836,0],[6026,946,0],[6017,938,0],[6011,927,0],[6033,956,0],[6038,969,0],[6032,1197,0],[6015,1206,0],[6003,1213,0],[6004,1356,0],[6023,1357,0],[6013,1357,0],[6032,1356,0],[6045,636,0],[6067,622,0],[6040,687,0],[6055,708,0],[6059,742,0],[6062,724,0],[6050,763,0],[6063,975,0],[6077,980,0],[6048,975,0],[6055,1183,0],[6076,1164,0],[6113,592,0],[6087,613,0],[6102,602,0],[6088,989,0],[6099,997,0],[6096,1018,0],[6102,1006,0],[6090,1039,0],[6090,1028,0],[6094,1055,0],[6098,1073,0],[6099,1114,0],[6100,1092,0],[6089,1139,0],[6151,552,0],[6138,558,0],[6126,575,0],[6169,549,0]]],["makan_aljamal",[[3014,4644,0],[3033,4641,0],[3031,4690,0],[3056,4635,0],[3058,4673,0],[3118,4616,0],[3100,4616,0],[3119,4602,0],[3103,4637,0],[3080,4627,0],[3085,4654,0],[3107,4818,0],[3094,4828,0],[3107,4835,0],[3101,4832,0],[3158,4535,0],[3146,4562,0],[3133,4590,0],[3129,4592,0],[3157,4780,0],[3140,4791,0],[3129,4804,0],[3142,4837,0],[3121,4837,0],[3159,4841,0],[3199,4414,0],[3189,4435,0],[3181,4459,0],[3166,4512,0],[3174,4485,0],[3186,4759,0],[3173,4769,0],[3174,4845,0],[3190,4847,0],[3212,4389,0],[3227,4365,0],[3236,4744,0],[3201,4752,0],[3218,4748,0],[3212,4851,0],[3227,4853,0],[3238,4856,0],[3200,4848,0],[3241,4348,0],[3269,4321,0],[3255,4334,0],[3278,4640,0],[3267,4657,0],[3268,4679,0],[3266,4717,0],[3270,4699,0],[3253,4734,0],[3272,4859,0],[3258,4857,0],[3247,4858,0],[3315,4270,0],[3300,4288,0],[3284,4306,0],[3312,4624,0],[3297,4632,0],[3320,4608,0],[3311,4877,0],[3297,4869,0],[3285,4863,0],[3357,4196,0],[3338,4233,0],[3348,4215,0],[3327,4252,0],[3333,4545,0],[3350,4534,0],[3322,4555,0],[3322,4587,0],[3321,4568,0],[3324,4887,0],[3327,4903,0],[3332,4889,0],[3353,4881,0],[3341,4884,0],[3325,4922,0],[3323,4940,0],[3322,4960,0],[3322,4982,0],[3322,5002,0],[3391,4134,0],[3375,4154,0],[3367,4174,0],[3394,4519,0],[3371,4524,0],[3395,4883,0],[3368,4881,0],[3380,4883,0],[3440,4118,0],[3414,4121,0],[3437,4466,0],[3438,4483,0],[3440,4500,0],[3416,4522,0],[3440,4523,0],[3413,4881,0],[3428,4881,0],[3474,4069,0],[3467,4094,0],[3462,4115,0],[3457,4117,0],[3468,4140,0],[3462,4129,0],[3476,4145,0],[3462,4427,0],[3478,4412,0],[3449,4440,0],[3441,4453,0],[3441,4512,0],[3472,4540,0],[3441,4529,0],[3470,4889,0],[3457,4885,0],[3442,4882,0],[3478,4979,0],[3475,4996,0],[3474,5012,0],[3474,5028,0],[3474,5044,0],[3497,4152,0],[3485,4147,0],[3512,4164,0],[3507,4277,0],[3489,4286,0],[3482,4309,0],[3482,4297,0],[3501,4334,0],[3489,4321,0],[3510,4350,0],[3492,4398,0],[3503,4384,0],[3510,4368,0],[3504,4550,0],[3501,4559,0],[3499,4551,0],[3510,4588,0],[3504,4571,0],[3483,4898,0],[3497,4919,0],[3494,4907,0],[3494,4934,0],[3488,4947,0],[3483,4961,0],[3515,5042,0],[3529,4177,0],[3546,4188,0],[3557,4252,0],[3526,4270,0],[3540,4263,0],[3558,4549,0],[3534,4553,0],[3535,4539,0],[3539,4628,0],[3523,4607,0],[3555,4647,0],[3537,4998,0],[3555,4987,0],[3523,5018,0],[3560,4196,0],[3573,4239,0],[3572,4206,0],[3579,4217,0],[3580,4227,0],[3582,4544,0],[3574,4669,0],[3590,4689,0],[3598,4965,0],[3583,4975,0],[3572,4981,0],[3613,4540,0],[3604,4707,0],[3620,4724,0],[3635,4738,0],[3632,4945,0],[3616,4955,0],[3643,4538,0],[3666,4536,0],[3646,4753,0],[3655,4771,0],[3664,4789,0],[3649,4837,0],[3675,4809,0],[3672,4821,0],[3657,4818,0],[3679,4837,0],[3669,4804,0],[3649,4859,0],[3651,4882,0],[3653,4907,0],[3647,4929,0],[3705,4548,0],[3687,4539,0],[3715,4583,0],[3718,4571,0],[3714,4601,0],[3717,4616,0],[3716,4795,0],[3705,4801,0],[3692,4806,0],[3688,4848,0],[3695,4862,0],[3699,4876,0],[3716,4909,0],[3704,4892,0],[3742,4576,0],[3722,4560,0],[3723,4564,0],[3727,4632,0],[3740,4649,0],[3752,4664,0],[3757,4678,0],[3752,4693,0],[3736,4714,0],[3744,4704,0],[3726,4738,0],[3724,4751,0],[3729,4726,0],[3727,4779,0],[3725,4765,0],[3724,4790,0],[3737,4931,0],[3752,4954,0],[3763,4593,0],[3796,4630,0],[3778,4610,0],[3761,4972,0],[3821,4649,0],[3839,4663,0],[3857,4677,0],[3879,4691,0],[3901,4701,0],[3952,4718,0],[3924,4709,0]]],["Maku",[[6430,5391,0],[6417,5375,0],[6459,5439,0],[6442,5407,0],[6449,5424,0],[6474,5451,0],[6495,5464,0],[6540,5213,0],[6557,5230,0],[6521,5475,0],[6560,5484,0],[6542,5481,0],[6549,5901,0],[6549,5940,0],[6544,5922,0],[6590,5263,0],[6569,5246,0],[6578,5488,0],[6593,5494,0],[6600,5547,0],[6594,5593,0],[6597,5567,0],[6593,5624,0],[6597,5673,0],[6592,5651,0],[6595,5780,0],[6582,5822,0],[6588,5801,0],[6560,5874,0],[6571,5849,0],[6620,5280,0],[6638,5465,0],[6611,5505,0],[6622,5481,0],[6622,5510,0],[6605,5502,0],[6604,5528,0],[6606,5697,0],[6604,5753,0],[6608,5724,0],[6664,5316,0],[6644,5296,0],[6679,5343,0],[6665,5422,0],[6676,5405,0],[6658,5439,0],[6652,5453,0],[6643,5516,0],[6660,5520,0],[6679,5522,0],[6683,5387,0],[6684,5368,0],[6699,5524,0],[6715,6021,0],[6713,6028,0],[6713,6035,0],[6713,6049,0],[6713,6042,0],[6722,5527,0],[6748,5534,0],[6759,5876,0],[6731,5912,0],[6749,5885,0],[6741,5893,0],[6736,5902,0],[6725,5958,0],[6726,5936,0],[6727,5924,0],[6725,5946,0],[6728,5978,0],[6733,5995,0],[6728,5969,0],[6728,5987,0],[6723,6015,0],[6734,6004,0],[6730,6011,0],[6766,5546,0],[6782,5557,0],[6787,5863,0],[6769,5869,0],[6802,5563,0],[6824,5566,0],[6838,5825,0],[6812,5854,0],[6828,5841,0],[6861,5580,0],[6875,5593,0],[6843,5569,0],[6878,5572,0],[6869,5585,0],[6873,5580,0],[6860,5788,0],[6871,5776,0],[6847,5806,0],[6910,5518,0],[6899,5535,0],[6891,5550,0],[6885,5561,0],[6905,5608,0],[6889,5601,0],[6919,5637,0],[6914,5669,0],[6918,5651,0],[6911,5688,0],[6902,5719,0],[6907,5704,0],[6883,5759,0],[6895,5737,0],[6948,5469,0],[6933,5484,0],[6921,5502,0],[6927,5614,0],[6951,5618,0],[6920,5626,0],[6922,5616,0],[6999,5306,0],[6998,5336,0],[6997,5370,0],[6992,5402,0],[6985,5426,0],[6963,5457,0],[6977,5443,0],[6985,5632,0],[6969,5624,0],[7034,5237,0],[7020,5255,0],[7007,5280,0],[7009,5646,0],[7033,5660,0],[7078,5227,0],[7049,5223,0],[7062,5218,0],[7046,5672,0],[7064,5683,0],[7102,5242,0],[7084,5693,0],[7102,5696,0],[7117,5696,0],[7102,5836,0],[7116,5808,0],[7090,5865,0],[7089,5916,0],[7086,5890,0],[7094,5949,0],[7098,5997,0],[7097,5976,0],[7099,6018,0],[7145,5246,0],[7125,5249,0],[7158,5514,0],[7134,5553,0],[7142,5529,0],[7131,5584,0],[7130,5619,0],[7134,5654,0],[7139,5689,0],[7127,5694,0],[7135,5693,0],[7137,5754,0],[7140,5723,0],[7139,5760,0],[7129,5783,0],[7154,5762,0],[7144,5761,0],[7196,5199,0],[7162,5238,0],[7185,5212,0],[7175,5226,0],[7199,5519,0],[7179,5512,0],[7192,5766,0],[7172,5763,0],[7227,5527,0],[7225,5778,0],[7208,5772,0],[7240,5784,0],[7261,5532,0],[7253,5792,0],[7265,5799,0],[7275,5806,0],[7318,5526,0],[7292,5532,0],[7289,5811,0],[7300,5812,0],[7340,5515,0],[7358,5498,0]]],["Dola",[[6107,4689,0],[6096,4705,0],[6088,4729,0],[6083,4759,0],[6086,4787,0],[6110,4837,0],[6096,4811,0],[6118,5036,0],[6108,5062,0],[6097,5088,0],[6123,4672,0],[6142,4654,0],[6123,4864,0],[6132,4888,0],[6135,4909,0],[6134,4932,0],[6132,4955,0],[6130,4977,0],[6125,5008,0],[6195,4651,0],[6161,4645,0],[6177,4645,0],[6234,4656,0],[6215,4658,0],[6275,4353,0],[6273,4372,0],[6278,4390,0],[6256,4638,0],[6277,4617,0],[6270,4804,0],[6260,4831,0],[6280,4870,0],[6263,4855,0],[6317,4297,0],[6301,4321,0],[6286,4338,0],[6308,4389,0],[6288,4399,0],[6299,4398,0],[6317,4382,0],[6303,4602,0],[6317,4724,0],[6309,4744,0],[6287,4779,0],[6300,4761,0],[6307,4880,0],[6337,4236,0],[6349,4214,0],[6329,4266,0],[6348,4318,0],[6341,4340,0],[6337,4363,0],[6329,4378,0],[6329,4593,0],[6347,4592,0],[6358,4593,0],[6351,4631,0],[6356,4612,0],[6336,4675,0],[6346,4650,0],[6325,4702,0],[6331,4894,0],[6349,4906,0],[6363,4197,0],[6374,4179,0],[6360,4302,0],[6374,4303,0],[6383,4350,0],[6381,4321,0],[6385,4378,0],[6386,4408,0],[6383,4435,0],[6376,4476,0],[6380,4453,0],[6372,4501,0],[6370,4528,0],[6368,4552,0],[6365,4573,0],[6360,4593,0],[6366,4916,0],[6382,4925,0],[6395,4933,0],[6410,4954,0],[6403,4941,0],[6418,4968,0],[6432,4976,0],[6439,5134,0],[6468,4194,0],[6457,4230,0],[6471,4215,0],[6451,4266,0],[6446,4247,0],[6454,4286,0],[6456,4304,0],[6458,4318,0],[6472,4353,0],[6463,4335,0],[6479,4370,0],[6452,4981,0],[6467,4993,0],[6466,5017,0],[6458,5049,0],[6449,5080,0],[6442,5108,0],[6485,4391,0],[6492,4418,0],[6501,4451,0],[6511,4482,0],[6513,5112,0],[6510,5134,0],[6521,4509,0],[6535,4535,0],[6551,4556,0],[6549,4693,0],[6547,4718,0],[6556,4740,0],[6560,4813,0],[6552,4825,0],[6557,4844,0],[6548,4942,0],[6558,4926,0],[6536,4955,0],[6531,4974,0],[6534,4997,0],[6542,5038,0],[6540,5016,0],[6533,5063,0],[6521,5089,0],[6574,4600,0],[6566,4573,0],[6577,4625,0],[6560,4662,0],[6573,4641,0],[6577,4784,0],[6567,4762,0],[6575,4802,0],[6566,4865,0],[6562,4902,0],[6565,4880,0],[6810,4559,0],[6809,4590,0],[6820,4619,0],[6837,4641,0]]],["Kaza",[[759,808,0],[778,826,0],[799,876,0],[791,848,0],[803,909,0],[803,939,0],[816,989,0],[806,966,0],[830,1009,0],[869,1039,0],[847,1024,0],[895,1054,0],[922,1068,0],[949,1083,0],[957,1425,0],[955,1453,0],[960,1488,0],[947,1599,0],[960,1575,0],[935,1628,0],[927,1662,0],[996,1111,0],[974,1097,0],[995,1348,0],[972,1386,0],[982,1368,0],[963,1405,0],[966,1515,0],[969,1555,0],[971,1536,0],[1018,1126,0],[1038,1140,0],[1029,1307,0],[1012,1327,0],[1055,1152,0],[1070,1164,0],[1066,1266,0],[1047,1287,0],[1082,1185,0],[1097,1174,0],[1080,1181,0],[1089,1215,0],[1083,1243,0],[1143,1148,0],[1122,1161,0],[1164,1135,0],[1186,1123,0],[1213,1119,0],[1244,1123,0],[1269,1133,0],[1286,1146,0],[1299,1163,0],[1310,1180,0],[1323,1198,0],[1341,1210,0],[1360,1212,0],[1380,1210,0],[1405,1213,0],[1430,1225,0],[1449,1241,0],[1464,1259,0],[1476,1275,0],[1490,1291,0],[1508,1306,0],[1531,1316,0]]],["Khas",[[3497,6907,0],[3515,7091,0],[3508,7147,0],[3549,6905,0],[3521,6905,0],[3542,7093,0],[3558,7097,0],[3545,7160,0],[3525,7154,0],[3558,7140,0],[3557,7151,0],[3592,6910,0],[3573,6907,0],[3562,7110,0],[3589,7159,0],[3561,7127,0],[3561,7157,0],[3573,7191,0],[3567,7163,0],[3571,7175,0],[3564,7161,0],[3573,7236,0],[3573,7220,0],[3573,7207,0],[3583,7277,0],[3572,7252,0],[3578,7267,0],[3573,7262,0],[3585,7291,0],[3611,6914,0],[3630,6917,0],[3620,7158,0],[3676,6605,0],[3680,6834,0],[3679,6857,0],[3680,6849,0],[3679,6882,0],[3677,6903,0],[3676,6917,0],[3655,6921,0],[3671,7158,0],[3646,7158,0],[3701,6609,0],[3718,6611,0],[3716,6673,0],[3705,6718,0],[3710,6699,0],[3699,6738,0],[3692,6758,0],[3688,6777,0],[3686,6796,0],[3683,6815,0],[3709,6864,0],[3693,6855,0],[3686,6925,0],[3714,6926,0],[3700,7157,0],[3724,6589,0],[3725,6567,0],[3721,6640,0],[3723,6612,0],[3725,6877,0],[3740,6917,0],[3741,6886,0],[3757,6890,0],[3759,7147,0],[3723,7156,0],[3755,7159,0],[3739,7156,0],[3752,7157,0],[3753,7171,0],[3757,7184,0],[3747,7191,0],[3751,7182,0],[3747,7223,0],[3746,7205,0],[3747,7245,0],[3744,7267,0],[3741,7289,0],[3735,7320,0],[3738,7306,0],[3748,7284,0],[3743,7306,0],[3754,7308,0],[3733,7335,0],[3730,7349,0],[3760,7349,0],[3758,7359,0],[3728,7359,0],[3734,7366,0],[3746,7371,0],[3738,7394,0],[3741,7374,0],[3754,7365,0],[3740,7383,0],[3745,7422,0],[3740,7408,0],[3765,6902,0],[3787,6895,0],[3769,6894,0],[3777,7106,0],[3765,7114,0],[3794,7103,0],[3762,7130,0],[3773,7187,0],[3786,7189,0],[3765,7186,0],[3785,7235,0],[3795,7226,0],[3788,7226,0],[3783,7251,0],[3781,7266,0],[3784,7311,0],[3791,7289,0],[3774,7287,0],[3767,7309,0],[3780,7280,0],[3760,7285,0],[3763,7313,0],[3766,7343,0],[3761,7336,0],[3762,7324,0],[3786,7345,0],[3777,7344,0],[3795,7345,0],[3765,7430,0],[3789,7420,0],[3832,6905,0],[3809,6898,0],[3829,7099,0],[3809,7101,0],[3838,7191,0],[3818,7190,0],[3801,7190,0],[3829,7197,0],[3808,7229,0],[3822,7232,0],[3818,7235,0],[3825,7221,0],[3827,7210,0],[3828,7204,0],[3824,7254,0],[3827,7266,0],[3822,7244,0],[3828,7277,0],[3830,7293,0],[3809,7291,0],[3801,7313,0],[3816,7315,0],[3832,7316,0],[3828,7287,0],[3807,7319,0],[3804,7347,0],[3810,7360,0],[3806,7328,0],[3804,7344,0],[3807,7357,0],[3806,7352,0],[3806,7335,0],[3801,7345,0],[3805,7340,0],[3833,7400,0],[3834,7364,0],[3824,7362,0],[3815,7361,0],[3813,7411,0],[3854,6912,0],[3854,7096,0],[3875,7089,0],[3874,7137,0],[3868,7159,0],[3864,7183,0],[3856,7191,0],[3862,7211,0],[3864,7278,0],[3863,7243,0],[3863,7309,0],[3857,7295,0],[3853,7317,0],[3846,7294,0],[3867,7281,0],[3874,7281,0],[3844,7316,0],[3880,7282,0],[3855,7360,0],[3860,7334,0],[3847,7382,0],[3844,7367,0],[3881,6918,0],[3912,6924,0],[3891,7095,0],[3881,7115,0],[3906,7081,0],[3887,7084,0],[3898,7083,0],[3919,7140,0],[3917,7154,0],[3914,7179,0],[3916,7229,0],[3911,7203,0],[3908,7228,0],[3919,7204,0],[3911,7271,0],[3905,7253,0],[3913,7254,0],[3911,7267,0],[3907,7286,0],[3890,7283,0],[3913,7484,0],[3945,6923,0],[3948,7067,0],[3926,7073,0],[3925,7155,0],[3939,7142,0],[3948,7143,0],[3956,7144,0],[3949,7160,0],[3934,7156,0],[3922,7140,0],[3931,7141,0],[3922,7180,0],[3945,7195,0],[3946,7186,0],[3947,7177,0],[3931,7181,0],[3948,7168,0],[3940,7238,0],[3942,7221,0],[3925,7230,0],[3928,7205,0],[3943,7212,0],[3941,7230,0],[3944,7203,0],[3922,7255,0],[3939,7247,0],[3938,7256,0],[3937,7265,0],[3928,7273,0],[3953,7276,0],[3944,7291,0],[3925,7289,0],[3951,7480,0],[3932,7480,0],[3981,6918,0],[3987,7045,0],[3969,7059,0],[3993,7059,0],[3983,7054,0],[3966,7074,0],[3967,7064,0],[3965,7086,0],[3987,7102,0],[3992,7100,0],[3995,7091,0],[3966,7099,0],[3970,7101,0],[3994,7095,0],[3982,7103,0],[3965,7094,0],[3976,7102,0],[3982,7147,0],[3989,7123,0],[4000,7148,0],[3991,7147,0],[3974,7146,0],[3965,7145,0],[3981,7122,0],[3996,7182,0],[3970,7197,0],[3971,7189,0],[3974,7162,0],[3995,7191,0],[3972,7180,0],[3998,7165,0],[3997,7174,0],[3973,7171,0],[3968,7215,0],[3993,7218,0],[3966,7232,0],[3991,7235,0],[3969,7206,0],[3967,7224,0],[3992,7226,0],[3994,7200,0],[3993,7209,0],[3987,7270,0],[3978,7278,0],[3962,7268,0],[3963,7259,0],[3964,7250,0],[3988,7262,0],[3990,7244,0],[3965,7241,0],[3989,7253,0],[3995,7299,0],[3967,7295,0],[3963,7288,0],[3966,7289,0],[3972,7478,0],[3993,7488,0],[3987,7481,0],[4012,6912,0],[4039,6909,0],[4037,6950,0],[4025,6977,0],[4002,7024,0],[4014,7000,0],[4040,7070,0],[4005,7062,0],[4017,7065,0],[4028,7067,0],[4009,7093,0],[4017,7096,0],[4001,7090,0],[4023,7098,0],[4039,7101,0],[4034,7100,0],[4029,7099,0],[4016,7150,0],[4008,7149,0],[4025,7151,0],[4012,7190,0],[4014,7165,0],[4023,7166,0],[4020,7190,0],[4009,7214,0],[4007,7239,0],[4018,7215,0],[4004,7264,0],[4015,7240,0],[4012,7265,0],[4020,7302,0],[4003,7281,0],[4013,7477,0],[4028,7469,0],[4003,7484,0],[4074,6828,0],[4064,6857,0],[4057,6880,0],[4063,6906,0],[4054,6898,0],[4047,6921,0],[4054,7073,0],[4063,7076,0],[4067,7080,0],[4050,7104,0],[4057,7105,0],[4044,7102,0],[4062,7105,0],[4066,7086,0],[4064,7102,0],[4065,7099,0],[4065,7094,0],[4065,7091,0],[4073,7281,0],[4044,7305,0],[4058,7316,0],[4066,7300,0],[4060,7311,0],[4060,7335,0],[4059,7355,0],[4054,7391,0],[4057,7373,0],[4077,7374,0],[4063,7372,0],[4050,7416,0],[4048,7443,0],[4042,7461,0],[4119,6690,0],[4114,6709,0],[4103,6746,0],[4109,6727,0],[4096,6766,0],[4090,6785,0],[4083,6803,0],[4089,6904,0],[4114,6904,0],[4115,7091,0],[4102,7154,0],[4108,7121,0],[4097,7188,0],[4093,7217,0],[4088,7241,0],[4081,7260,0],[4098,7377,0],[4157,6533,0],[4151,6557,0],[4146,6581,0],[4140,6604,0],[4135,6626,0],[4130,6648,0],[4124,6670,0],[4140,6905,0],[4156,6914,0],[4151,6959,0],[4155,6931,0],[4143,6994,0],[4134,7028,0],[4124,7061,0],[4128,7380,0],[4159,7380,0],[4172,6907,0],[4180,7374,0],[4193,7362,0],[4206,6910,0],[4234,6912,0],[4236,7357,0],[4209,7355,0],[4273,6904,0],[4264,6914,0],[4271,6916,0],[4252,6914,0],[4254,6957,0],[4257,6935,0],[4259,6921,0],[4250,6983,0],[4246,7006,0],[4260,7039,0],[4246,7035,0],[4276,7038,0],[4243,7024,0],[4267,7361,0],[4288,6892,0],[4306,6882,0],[4290,6918,0],[4317,6922,0],[4310,7038,0],[4292,7037,0],[4294,7368,0],[4326,6878,0],[4345,6876,0],[4352,6926,0],[4349,7048,0],[4330,7041,0],[4370,6860,0],[4382,6849,0],[4360,6872,0],[4396,6846,0],[4382,6931,0],[4374,7055,0],[4428,6791,0],[4420,6812,0],[4411,6829,0],[4404,6841,0],[4437,6942,0],[4410,6936,0],[4432,7059,0],[4403,7057,0],[4464,6948,0],[4459,7060,0]]],["Janur",[[4834,3272,0],[4812,3265,0],[4855,3279,0],[4874,3287,0],[4914,3307,0],[4891,3295,0],[4945,3319,0],[4976,3327,0],[5026,3341,0],[5003,3334,0],[5050,3354,0],[5074,3366,0],[5079,3568,0],[5074,3589,0],[5073,3608,0],[5078,3633,0],[5075,3623,0],[5114,3389,0],[5095,3375,0],[5120,3497,0],[5105,3517,0],[5091,3542,0],[5095,3638,0],[5083,3637,0],[5119,3642,0],[5142,3437,0],[5128,3410,0],[5155,3461,0],[5153,3466,0],[5145,3474,0],[5135,3483,0],[5146,3651,0],[5167,3475,0],[5181,3487,0],[5196,3498,0],[5193,3627,0],[5200,3610,0],[5191,3671,0],[5166,3661,0],[5186,3644,0],[5178,3661,0],[5182,3654,0],[5212,3508,0],[5229,3516,0],[5225,3552,0],[5237,3525,0],[5232,3534,0],[5215,3575,0],[5207,3593,0],[5217,3681,0],[5233,3689,0],[5239,3688,0],[5264,3533,0],[5247,3525,0],[5276,3607,0],[5264,3637,0],[5253,3661,0],[5244,3677,0],[5309,3552,0],[5285,3542,0],[5299,3556,0],[5288,3581,0],[5294,3566,0],[5331,3563,0],[5351,3575,0],[5363,3596,0],[5391,3640,0],[5374,3620,0],[5411,3659,0],[5428,3672,0],[5449,3682,0],[5475,3684,0],[5520,3671,0],[5495,3678,0],[5548,3670,0],[5572,3676,0],[5595,3686,0],[5618,3699,0],[5642,3714,0]]],["Deraz",[[4512,8078,0],[4512,8137,0],[4500,8137,0],[4519,8226,0],[4518,8240,0],[4519,8256,0],[4517,8269,0],[4499,8292,0],[4511,8280,0],[4495,8317,0],[4491,8304,0],[4497,8326,0],[4509,8324,0],[4531,8081,0],[4551,8082,0],[4543,8152,0],[4525,8137,0],[4536,8139,0],[4543,8144,0],[4538,8164,0],[4532,8179,0],[4527,8195,0],[4523,8211,0],[4558,8354,0],[4538,8323,0],[4549,8327,0],[4524,8323,0],[4553,8346,0],[4553,8336,0],[4559,8467,0],[4558,8447,0],[4582,7941,0],[4579,7980,0],[4580,7962,0],[4577,8003,0],[4576,8030,0],[4576,8054,0],[4588,8080,0],[4575,8072,0],[4571,8080,0],[4566,8377,0],[4566,8360,0],[4562,8402,0],[4561,8426,0],[4576,8502,0],[4565,8486,0],[4589,8515,0],[4638,8096,0],[4624,8088,0],[4612,8084,0],[4600,8081,0],[4640,8103,0],[4639,8111,0],[4640,8121,0],[4621,8545,0],[4615,8529,0],[4601,8523,0],[4638,8536,0],[4628,8536,0],[4622,8537,0],[4620,8565,0],[4652,8105,0],[4663,8113,0],[4643,8139,0],[4674,8121,0],[4648,8158,0],[4651,8178,0],[4650,8199,0],[4644,8234,0],[4648,8217,0],[4662,8266,0],[4651,8261,0],[4643,8255,0],[4674,8270,0],[4640,8247,0],[4664,8537,0],[4650,8537,0],[4676,8538,0],[4717,7892,0],[4717,7902,0],[4690,8128,0],[4707,8133,0],[4684,8273,0],[4691,8281,0],[4693,8295,0],[4692,8315,0],[4691,8307,0],[4699,8323,0],[4715,8328,0],[4715,8438,0],[4710,8451,0],[4708,8470,0],[4706,8488,0],[4703,8505,0],[4700,8515,0],[4693,8535,0],[4697,8523,0],[4684,8541,0],[4690,8542,0],[4753,7793,0],[4736,7833,0],[4739,7813,0],[4740,7801,0],[4730,7856,0],[4724,7875,0],[4729,7908,0],[4744,7914,0],[4758,7918,0],[4747,8150,0],[4725,8140,0],[4739,8354,0],[4740,8339,0],[4737,8330,0],[4729,8329,0],[4734,8392,0],[4737,8371,0],[4731,8412,0],[4729,8425,0],[4724,8433,0],[4772,7795,0],[4788,7795,0],[4772,7923,0],[4786,7926,0],[4797,7924,0],[4770,8163,0],[4791,8177,0],[4769,8185,0],[4769,8170,0],[4772,8233,0],[4768,8203,0],[4769,8219,0],[4790,8266,0],[4778,8244,0],[4787,8252,0],[4791,8283,0],[4795,8292,0],[4805,7795,0],[4822,7795,0],[4837,7795,0],[4829,7918,0],[4836,7917,0],[4823,7920,0],[4813,7921,0],[4805,7921,0],[4817,7922,0],[4827,8198,0],[4810,8188,0],[4837,8306,0],[4828,8298,0],[4816,8296,0],[4804,8295,0],[4815,8514,0],[4821,8499,0],[4840,8492,0],[4828,8493,0],[4812,8531,0],[4807,8544,0],[4809,8539,0],[4863,7799,0],[4850,7796,0],[4873,7804,0],[4851,7917,0],[4870,7918,0],[4878,8038,0],[4879,8024,0],[4878,8056,0],[4877,8075,0],[4876,8092,0],[4875,8106,0],[4864,8148,0],[4872,8120,0],[4869,8134,0],[4860,8162,0],[4852,8188,0],[4856,8176,0],[4848,8197,0],[4855,8219,0],[4841,8209,0],[4869,8228,0],[4845,8203,0],[4842,8316,0],[4876,8344,0],[4862,8342,0],[4848,8324,0],[4854,8338,0],[4851,8331,0],[4869,8474,0],[4880,8469,0],[4866,8484,0],[4853,8492,0],[4862,8491,0],[4892,7744,0],[4890,7760,0],[4898,7776,0],[4903,7794,0],[4908,7761,0],[4901,7761,0],[4896,7761,0],[4892,7760,0],[4896,7808,0],[4887,7813,0],[4890,7839,0],[4880,7808,0],[4890,7823,0],[4893,7877,0],[4891,7865,0],[4891,7854,0],[4886,7919,0],[4894,7912,0],[4895,7899,0],[4895,7888,0],[4891,7925,0],[4891,7951,0],[4890,7938,0],[4889,7978,0],[4884,7989,0],[4892,7965,0],[4880,8011,0],[4881,8000,0],[4914,8197,0],[4920,8189,0],[4882,8234,0],[4910,8214,0],[4896,8238,0],[4909,8239,0],[4905,8234,0],[4907,8227,0],[4889,8349,0],[4905,8373,0],[4898,8360,0],[4912,8385,0],[4911,8408,0],[4911,8434,0],[4914,8456,0],[4905,8470,0],[4893,8468,0],[4915,8475,0],[4914,8469,0],[4915,8480,0],[4901,8637,0],[4907,8628,0],[4903,8675,0],[4901,8653,0],[4902,8699,0],[4913,8716,0],[4902,8709,0],[4907,8713,0],[4958,7739,0],[4942,7740,0],[4936,7746,0],[4934,7755,0],[4920,7762,0],[4931,7760,0],[4954,8127,0],[4949,8150,0],[4946,8166,0],[4944,8179,0],[4939,8187,0],[4933,8189,0],[4926,8188,0],[4944,8250,0],[4959,8251,0],[4932,8245,0],[4921,8240,0],[4957,8344,0],[4922,8383,0],[4941,8363,0],[4948,8377,0],[4960,8380,0],[4939,8374,0],[4933,8370,0],[4935,8479,0],[4924,8476,0],[4922,8496,0],[4949,8484,0],[4924,8510,0],[4924,8527,0],[4926,8547,0],[4931,8590,0],[4929,8567,0],[4947,8572,0],[4958,8572,0],[4933,8574,0],[4938,8573,0],[4933,8610,0],[4920,8626,0],[4931,8621,0],[4922,8719,0],[4936,8722,0],[4981,7755,0],[4979,7731,0],[4982,7741,0],[4975,7741,0],[4990,7740,0],[4979,7746,0],[4985,7796,0],[4984,7776,0],[4985,7838,0],[4985,7817,0],[4986,7862,0],[4986,7890,0],[4984,7914,0],[4994,7934,0],[4976,7959,0],[4990,7952,0],[4980,7936,0],[4987,7970,0],[4973,7983,0],[4986,7990,0],[4992,8024,0],[4973,8005,0],[4975,8024,0],[4985,8014,0],[4985,8004,0],[4976,8019,0],[4975,8045,0],[4971,8066,0],[4988,8098,0],[4961,8104,0],[4967,8085,0],[4971,8094,0],[4999,8181,0],[4993,8205,0],[4986,8239,0],[4987,8231,0],[4996,8235,0],[4989,8221,0],[4975,8246,0],[4964,8262,0],[4961,8247,0],[4963,8317,0],[4966,8287,0],[4989,8384,0],[4974,8382,0],[4962,8491,0],[4972,8501,0],[4978,8512,0],[4997,8526,0],[4985,8521,0],[4974,8594,0],[4974,8587,0],[4965,8573,0],[4974,8581,0],[4973,8576,0],[4971,8573,0],[4978,8600,0],[4995,8604,0],[4986,8603,0],[5019,7742,0],[5038,7743,0],[5001,7740,0],[5030,7908,0],[5027,7917,0],[5017,7918,0],[5003,7922,0],[5039,7943,0],[5034,7925,0],[5036,7934,0],[5014,8031,0],[5031,8038,0],[5006,8104,0],[5014,8112,0],[5004,8158,0],[5009,8137,0],[5013,8122,0],[5028,8236,0],[5008,8236,0],[5003,8389,0],[5013,8394,0],[5031,8396,0],[5021,8397,0],[5013,8532,0],[5027,8539,0],[5039,8545,0],[5035,8638,0],[5005,8605,0],[5015,8606,0],[5033,8607,0],[5024,8606,0],[5029,8677,0],[5031,8656,0],[5021,8704,0],[5059,7730,0],[5051,7740,0],[5073,7822,0],[5064,7837,0],[5049,7869,0],[5055,7852,0],[5070,7871,0],[5055,7866,0],[5063,7868,0],[5041,7889,0],[5067,7950,0],[5049,7948,0],[5069,8078,0],[5059,8049,0],[5068,8060,0],[5046,8044,0],[5066,8109,0],[5067,8095,0],[5067,8120,0],[5074,8126,0],[5072,8234,0],[5047,8236,0],[5060,8236,0],[5059,8400,0],[5043,8396,0],[5080,8413,0],[5072,8405,0],[5079,8507,0],[5079,8485,0],[5077,8496,0],[5079,8547,0],[5067,8535,0],[5058,8543,0],[5076,8528,0],[5059,8554,0],[5049,8547,0],[5060,8543,0],[5048,8600,0],[5055,8584,0],[5074,8563,0],[5058,8568,0],[5074,8580,0],[5075,8592,0],[5041,8624,0],[5074,8625,0],[5041,8612,0],[5074,8606,0],[5042,8610,0],[5064,8677,0],[5068,8662,0],[5073,8641,0],[5071,8650,0],[5073,8704,0],[5066,8697,0],[5063,8689,0],[5097,7792,0],[5112,7784,0],[5084,7805,0],[5090,7879,0],[5080,7875,0],[5102,7884,0],[5115,7885,0],[5091,7953,0],[5110,7955,0],[5113,8127,0],[5094,8125,0],[5083,8128,0],[5102,8124,0],[5086,8232,0],[5099,8229,0],[5111,8229,0],[5119,8230,0],[5108,8388,0],[5119,8362,0],[5093,8411,0],[5083,8439,0],[5084,8420,0],[5082,8424,0],[5081,8472,0],[5083,8456,0],[5081,8519,0],[5116,8533,0],[5084,8528,0],[5100,8534,0],[5091,8532,0],[5084,8536,0],[5084,8527,0],[5083,8709,0],[5153,7799,0],[5136,7770,0],[5130,7787,0],[5143,7791,0],[5133,7783,0],[5126,7784,0],[5158,7813,0],[5158,7886,0],[5126,7884,0],[5136,7885,0],[5144,7884,0],[5126,7959,0],[5140,7969,0],[5138,7998,0],[5141,7982,0],[5156,8032,0],[5142,8021,0],[5136,8011,0],[5141,8146,0],[5135,8129,0],[5155,8157,0],[5125,8128,0],[5147,8161,0],[5142,8189,0],[5143,8170,0],[5136,8209,0],[5136,8227,0],[5130,8228,0],[5124,8228,0],[5128,8274,0],[5129,8246,0],[5125,8320,0],[5127,8301,0],[5122,8340,0],[5132,8538,0],[5145,8547,0],[5175,7836,0],[5162,7825,0],[5184,7876,0],[5186,7862,0],[5185,7847,0],[5187,7886,0],[5176,7885,0],[5190,7899,0],[5192,7913,0],[5197,7926,0],[5197,7974,0],[5189,7983,0],[5185,7994,0],[5183,8010,0],[5179,8038,0],[5181,8026,0],[5166,8037,0],[5183,8076,0],[5173,8040,0],[5188,8055,0],[5181,8047,0],[5190,8065,0],[5173,8110,0],[5172,8095,0],[5175,8085,0],[5171,8139,0],[5162,8152,0],[5175,8124,0],[5184,8216,0],[5160,8223,0],[5172,8225,0],[5179,8241,0],[5186,8263,0],[5184,8307,0],[5186,8286,0],[5186,8344,0],[5182,8326,0],[5195,8399,0],[5194,8361,0],[5197,8377,0],[5198,8422,0],[5200,8462,0],[5194,8481,0],[5192,8501,0],[5188,8542,0],[5192,8522,0],[5161,8552,0],[5177,8552,0],[5202,7938,0],[5204,7950,0],[5204,7963,0],[5238,8176,0],[5224,8189,0],[5206,8204,0],[5203,8444,0],[5270,7839,0],[5270,7818,0],[5273,7862,0],[5279,7888,0],[5275,8124,0],[5262,8147,0],[5251,8162,0],[5284,7912,0],[5289,7934,0],[5293,7954,0],[5298,7974,0],[5300,7995,0],[5296,8040,0],[5299,8017,0],[5292,8063,0],[5286,8092,0]]],["Naudeh",[[7919,5269,0],[7931,5269,0],[7948,5277,0],[7941,5272,0],[7952,5285,0],[7958,5304,0],[7954,5296,0],[7965,5313,0],[7992,5332,0],[7974,5322,0],[7982,5328,0],[8005,5338,0],[8032,5347,0],[8018,5344,0],[8054,5357,0],[8045,5351,0],[8065,5364,0],[8079,5366,0],[8096,5364,0],[8115,5362,0],[8142,5370,0],[8130,5363,0],[8147,5382,0],[8151,5392,0],[8157,5403,0],[8176,5423,0],[8165,5415,0],[8187,5431,0],[8199,5440,0],[8235,4702,0],[8216,5448,0],[8231,5453,0],[8247,4723,0],[8257,4744,0],[8266,4795,0],[8263,4767,0],[8269,4825,0],[8261,4878,0],[8267,4853,0],[8257,4904,0],[8261,4932,0],[8269,4953,0],[8266,5000,0],[8270,4972,0],[8269,5031,0],[8269,5001,0],[8275,5061,0],[8277,5108,0],[8276,5085,0],[8249,5460,0],[8262,5469,0],[8267,5477,0],[8254,5510,0],[8267,5489,0],[8262,5500,0],[8255,5552,0],[8253,5534,0],[8250,5521,0],[8256,5571,0],[8256,5587,0],[8259,5620,0],[8268,5636,0],[8255,5603,0],[8273,5648,0],[8317,4973,0],[8298,4984,0],[8281,4994,0],[8306,5145,0],[8287,5127,0],[8318,5138,0],[8302,5138,0],[8317,5168,0],[8319,5190,0],[8357,4951,0],[8335,4963,0],[8340,5138,0],[8346,5191,0],[8323,5191,0],[8343,5239,0],[8324,5212,0],[8330,5226,0],[8356,5252,0],[8347,5240,0],[8385,4936,0],[8365,5138,0],[8389,5138,0],[8381,5191,0],[8372,5266,0],[8391,5241,0],[8365,5241,0],[8392,5304,0],[8386,5286,0],[8392,5288,0],[8397,5355,0],[8379,5394,0],[8377,5369,0],[8375,5381,0],[8382,5361,0],[8385,5411,0],[8388,5428,0],[8395,5454,0],[8389,5443,0],[8396,5667,0],[8414,4921,0],[8431,5139,0],[8410,5138,0],[8418,5191,0],[8422,5241,0],[8414,5289,0],[8405,5320,0],[8422,5333,0],[8438,5359,0],[8418,5354,0],[8433,5345,0],[8438,5354,0],[8406,5467,0],[8418,5504,0],[8412,5483,0],[8422,5529,0],[8418,5547,0],[8419,5593,0],[8413,5562,0],[8413,5578,0],[8419,5626,0],[8422,5609,0],[8408,5647,0],[8440,4910,0],[8465,4902,0],[8453,5139,0],[8473,5139,0],[8454,5191,0],[8478,5191,0],[8478,5208,0],[8474,5235,0],[8475,5221,0],[8450,5242,0],[8469,5242,0],[8474,5251,0],[8473,5264,0],[8472,5274,0],[8446,5289,0],[8468,5289,0],[8475,5283,0],[8477,5357,0],[8469,5359,0],[8457,5360,0],[8508,4909,0],[8488,4900,0],[8510,5103,0],[8500,5118,0],[8495,5136,0],[8492,5154,0],[8489,5139,0],[8483,5195,0],[8490,5169,0],[8487,5183,0],[8481,5296,0],[8486,5311,0],[8482,5345,0],[8485,5327,0],[8529,4947,0],[8522,4926,0],[8535,4971,0],[8540,4995,0],[8547,5020,0],[8554,5046,0],[8554,5076,0],[8524,5091,0],[8540,5082,0],[8597,4714,0],[8582,4704,0],[8584,5037,0],[8590,5029,0],[8560,5065,0],[8576,5050,0],[8571,5061,0],[8565,5070,0],[8635,4730,0],[8613,4724,0],[8620,5021,0],[8601,5025,0],[8637,5010,0],[8632,5016,0],[8657,4954,0],[8668,4937,0],[8677,4926,0],[8642,4997,0],[8649,4971,0],[8646,4984,0],[8688,4918,0],[8716,4917,0],[8703,4918,0],[8748,4913,0],[8758,4908,0],[8727,4914,0],[8735,4914,0],[8788,4902,0],[8763,4900,0],[8778,4895,0],[8770,4894,0],[8801,4913,0],[8817,4920,0]]]] \ No newline at end of file diff --git a/Map-Templates/Antistasi-Chernarus.chernarus_summer/PIC.jpg b/Map-Templates/Antistasi-Chernarus.chernarus_summer/PIC.jpg new file mode 100644 index 0000000000..747b003c58 Binary files /dev/null and b/Map-Templates/Antistasi-Chernarus.chernarus_summer/PIC.jpg differ diff --git a/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/ak.jpg b/Map-Templates/Antistasi-Chernarus.chernarus_summer/ak.jpg similarity index 100% rename from A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/ak.jpg rename to Map-Templates/Antistasi-Chernarus.chernarus_summer/ak.jpg diff --git a/Map-Templates/Antistasi-Chernarus.chernarus_summer/description.ext b/Map-Templates/Antistasi-Chernarus.chernarus_summer/description.ext new file mode 100644 index 0000000000..6e076a5835 --- /dev/null +++ b/Map-Templates/Antistasi-Chernarus.chernarus_summer/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_cherna_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_cherna_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_cherna_mapname_text; +overviewText = $STR_antistasi_mission_info_cherna_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Chernarus is Ours!"; + description = "The population of Chernarus loves you!
The SDK brave soldiers have proven their valour, and Petros, Chernarus 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 Chernarus"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Chernarus is Destroyed"; + subtitle = "Chernarus got Destroyed by Soviets"; + description = "One third of the population in Chernarus has been murdered by the Soviets.
Chernarus no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/mission.sqm b/Map-Templates/Antistasi-Chernarus.chernarus_summer/mission.sqm similarity index 67% rename from A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/mission.sqm rename to Map-Templates/Antistasi-Chernarus.chernarus_summer/mission.sqm index f893e21316..9a70c94989 100644 --- a/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/mission.sqm +++ b/Map-Templates/Antistasi-Chernarus.chernarus_summer/mission.sqm @@ -8,18 +8,22 @@ class EditorData toggles=1025; class ItemIDProvider { - nextID=827; + nextID=887; }; class MarkerIDProvider { - nextID=50; + nextID=51; + }; + class LayerIndexProvider + { + nextID=7; }; class Camera { - pos[]={8401.8418,308.8595,5972.4888}; - dir[]={0,-0.70710683,0.70710683}; - up[]={0,0.70710677,0.70710677}; - aside[]={0.99999994,0,-0}; + pos[]={4160.0986,370.77472,8830.498}; + dir[]={0.047367383,-0.47201225,0.88032174}; + up[]={0.02536091,0.88159066,0.47133157}; + aside[]={0.99855709,3.8953658e-009,-0.053729318}; }; }; binarizationWanted=0; @@ -30,6 +34,7 @@ addons[]= "A3_Modules_F", "A3_Characters_F", "A3_Modules_F_Hc", + "A3_Weapons_F", "A3_Characters_F_Tank", "A3_Structures_F_EPC_Civ_InfoBoards", "A3_Structures_F_Mil_Flags", @@ -38,7 +43,8 @@ addons[]= "A3_Ui_F_Exp", "A3_Characters_F_Patrol", "A3_Characters_F_Exp", - "A3_Structures_F_Exp_Military_Flags" + "A3_Structures_F_Exp_Military_Flags", + "A3_Structures_F_Mil_Helipads" }; class AddonsMetaData { @@ -139,80 +145,22 @@ class AddonsMetaData }; }; randomSeed=16007350; -class ScenarioData -{ - author=$STR_antistasi_credits_generic_author_text; -}; class Mission { class Intel { briefingName=$STR_antistasi_mission_info_cherna_mapname_text; - overviewText=$STR_antistasi_credits_generic_version_text; resistanceWest=0; - timeOfChanges=1800.0002; - startWeather=0.25; - startWind=0.1; - startWaves=0.1; - forecastWeather=0.25; - forecastWind=0.1; - forecastWaves=0.1; - forecastLightnings=0.1; - wavesForced=1; - windForced=1; - year=2008; - month=10; - day=11; - hour=9; - minute=20; - startFogDecay=0.014; - forecastFogDecay=0.014; + year=1942; + month=6; + day=1; + hour=10; + minute=0; }; class Entities { - items=159; + items=56; class Item0 - { - dataType="Marker"; - position[]={12102.295,158.89999,12628.667}; - name="airport"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=390.76028; - b=150; - angle=19.882999; - id=4; - atlOffset=-0.053817749; - }; - class Item1 - { - dataType="Marker"; - position[]={4720.6362,339,10248.794}; - name="airport_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=476.16949; - b=207.12466; - angle=59.539993; - id=5; - }; - class Item2 - { - dataType="Marker"; - position[]={4854.7817,8.790967,2507.9417}; - name="airport_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=249.14926; - b=109.36142; - angle=28.489845; - id=6; - atlOffset=-0.20903301; - }; - class Item3 { dataType="Marker"; position[]={11716.97,168.66901,12767.416}; @@ -222,7 +170,7 @@ class Mission id=7; atlOffset=-0.00045776367; }; - class Item4 + class Item1 { dataType="Marker"; position[]={4542.4678,338.95331,9809.332}; @@ -232,7 +180,7 @@ class Mission id=8; atlOffset=-0.00045776367; }; - class Item5 + class Item2 { dataType="Marker"; position[]={4790.5229,6.199542,2354.5579}; @@ -242,1703 +190,1219 @@ class Mission id=9; atlOffset=-0.00045776367; }; - class Item6 + class Item3 { dataType="Marker"; - position[]={5146.8965,8.7180004,2345.7275}; - name="outpost"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=89.797859; - b=108.29008; - angle=210.03189; - id=10; - atlOffset=-0.28199959; + position[]={24.004,5.4130001,1591.299}; + name="NATO_carrier"; + type="flag_NATO"; + id=254; + atlOffset=0.00024938583; }; - class Item7 + class Item4 { dataType="Marker"; - position[]={4543.8359,52.517578,3147.2974}; - name="outpost_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=63.250797; - b=66.292366; - angle=155.90392; - id=11; - atlOffset=-5.2461052; + position[]={2301.5923,515.14795,15327.388}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=255; + atlOffset=-5.5229492; }; - class Item8 + class Item5 { dataType="Marker"; - position[]={3701.5046,402,5978.062}; - name="outpost_2"; + position[]={8398.3311,293.80499,5999.0068}; + name="Synd_HQ"; markerType="RECTANGLE"; type="rectangle"; - colorName="ColorGreen"; - a=96.04599; - b=86.994995; - angle=47.747215; - id=12; + colorName="ColorPink"; + a=50; + b=50; + id=710; + atlOffset=1.6029053; }; - class Item9 + class Item6 { dataType="Marker"; - position[]={4174.2148,324.01001,8945.1338}; - name="factory"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=50; - b=50; - angle=188.34593; - id=13; + position[]={8399.6641,2.7037606e+012,6001.1855}; + name="respawn_guerrila"; + text="Your Headquarters"; + type="hd_flag"; + colorName="ColorGUER"; + id=711; + atlOffset=2.7037606e+012; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={8388.9502,293.00729,5989.4932}; + }; + side="Empty"; + class Attributes + { + name="vehicleBox"; + }; + id=712; + type="Box_East_AmmoVeh_F"; + atlOffset=0.25802612; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={8396.082,291.94522,5992.3252}; + angles[]={0,0,6.2818937}; + }; + name="server"; + id=713; + type="Logic"; + }; + class Item9 + { + dataType="Logic"; + class PositionInfo + { + position[]={8397.6563,291.94312,5990.9131}; + angles[]={0,0,6.2818937}; + }; + name="garrison"; + id=714; + type="Logic"; }; class Item10 { - dataType="Marker"; - position[]={4411.21,339,10796.395}; - name="outpost_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=156.02531; - b=203.82967; - angle=239.93896; - id=14; + dataType="Logic"; + class PositionInfo + { + position[]={8399.4434,291.94073,5989.4922}; + angles[]={0,0,6.2818937}; + }; + name="spawner"; + id=715; + type="Logic"; }; class Item11 { - dataType="Marker"; - position[]={6895.8628,394.51886,11440.411}; - name="outpost_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=113.01675; - b=82.41481; - angle=235.19092; - id=15; + dataType="Logic"; + class PositionInfo + { + position[]={8391.8496,291.95178,5989.625}; + angles[]={0,0,6.2805333}; + }; + name="hc"; + isPlayable=1; + id=716; + type="HeadlessClient_F"; + atlOffset=3.0517578e-005; }; class Item12 { - dataType="Marker"; - position[]={6434.1392,384.95474,6548.1943}; - name="outpost_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=45.783302; - b=46.773125; - angle=130.869; - id=16; + dataType="Logic"; + class PositionInfo + { + position[]={8401.3184,291.93823,5988.1611}; + angles[]={0,0,6.2818937}; + }; + name="roadsX"; + id=717; + type="Logic"; }; class Item13 { - dataType="Marker"; - position[]={6532.7114,401.37402,5600.3213}; - name="outpost_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=89.587685; - b=75.625938; - angle=48.989975; - id=17; - atlOffset=12.033905; + dataType="Logic"; + class PositionInfo + { + position[]={8390.3613,291.96802,5993.3379}; + angles[]={6.2685246,4.511023,6.2805333}; + }; + name="HC_commanderX"; + id=718; + type="HighCommand"; }; class Item14 { - dataType="Marker"; - position[]={6567.459,83.094223,3418.2791}; - name="outpost_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=53.966309; - b=54.225342; - id=18; - atlOffset=2.1130753; + dataType="Logic"; + class PositionInfo + { + position[]={8384.665,291.97086,5992.0586}; + angles[]={0,1.3577622,6.2805333}; + }; + id=719; + type="HighCommandSubordinate"; + atlOffset=-3.0517578e-005; }; class Item15 { - dataType="Marker"; - position[]={10256.854,357.54529,12042.293}; - name="outpost_8"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=142.01855; - b=94.024902; - id=19; - atlOffset=-3.0738525; + dataType="Logic"; + class PositionInfo + { + position[]={8402.7344,291.93634,5987.0771}; + angles[]={0,0,6.2818937}; + }; + name="timer"; + id=720; + type="Logic"; }; class Item16 { - dataType="Marker"; - position[]={10427.643,6,2581.9363}; - name="factory_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=68.609634; - b=66.307854; - angle=205.30093; - id=20; + dataType="Logic"; + class PositionInfo + { + position[]={8404.0039,291.93466,5985.8252}; + angles[]={0,0,6.2818937}; + }; + name="sidesX"; + id=722; + type="Logic"; }; class Item17 { - dataType="Marker"; - position[]={10063.688,6,1839.64}; - name="resource"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=90; - b=50; - id=21; + dataType="Logic"; + class PositionInfo + { + position[]={8404.915,291.93344,5984.9932}; + angles[]={0,0,6.2818937}; + }; + name="killZones"; + id=723; + type="Logic"; }; class Item18 { - dataType="Marker"; - position[]={11250.48,292.00342,4294.0674}; - name="outpost_9"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=78.738342; - b=83.958069; - angle=225.59978; - id=22; - atlOffset=1.309967; - }; - class Item19 - { - dataType="Marker"; - position[]={11470.222,221,7510.728}; - name="resource_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=80; - b=50; - angle=97.399902; - id=23; - }; - class Item20 - { - dataType="Marker"; - position[]={9700.9033,298.99799,8918.7803}; - name="resource_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=70; - b=50; - angle=104.40878; - id=24; - atlOffset=-0.00030517578; - }; - class Item21 - { - dataType="Marker"; - position[]={10266.166,168.32201,9522.1777}; - name="resource_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - angle=184.80492; - id=25; - atlOffset=0.00010681152; - }; - class Item22 - { - dataType="Marker"; - position[]={11845.592,148.39,12407.44}; - name="resource_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - angle=200.38896; - id=26; - atlOffset=-0.00032043457; - }; - class Item23 - { - dataType="Marker"; - position[]={11347.209,198.56,12548.99}; - name="outpost_10"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=54.134045; - b=68.95639; - angle=297.99689; - id=27; - atlOffset=0.51525879; - }; - class Item24 - { - dataType="Marker"; - position[]={12923.339,213.45667,12766.218}; - name="outpost_11"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=63.164063; - b=63.14502; - id=28; - atlOffset=3.7282562; - }; - class Item25 - { - dataType="Marker"; - position[]={12761.23,6,9655.4131}; - name="resource_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=110; - b=70; - angle=191.55794; - id=29; - }; - class Item26 - { - dataType="Marker"; - position[]={12863.338,6.013,9952.0381}; - name="factory_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=84.660927; - b=51.169899; - angle=100.412; - id=30; - atlOffset=0.00021314621; - }; - class Item27 - { - dataType="Marker"; - position[]={13078.55,6,7089.2612}; - name="factory_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=102.92614; - b=57.434551; - angle=73.819817; - id=31; - }; - class Item28 - { - dataType="Marker"; - position[]={12924.147,15.181418,7003.6519}; - name="outpost_12"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=59.300125; - b=58.015564; - angle=170.78795; - id=32; - }; - class Item29 - { - dataType="Marker"; - position[]={13273.817,10.119,6095.9707}; - name="resource_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=68.961441; - b=65.203957; - angle=58.644993; - id=33; - atlOffset=2.1734037; - }; - class Item30 - { - dataType="Marker"; - position[]={13001.697,131.11667,5969.8618}; - name="outpost_13"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=61.152096; - b=56.497181; - angle=212.11694; - id=34; - atlOffset=1.0144348; - }; - class Item31 - { - dataType="Marker"; - position[]={13469.644,71.769997,3345.7439}; - name="outpost_14"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=50; - b=50; - angle=141.42493; - id=35; - atlOffset=0.00019073486; - }; - class Item32 - { - dataType="Marker"; - position[]={6267.6372,81.399101,3789.1489}; - name="outpost_15"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=73.771751; - b=104.24509; - angle=99.916; - id=36; - }; - class Item33 - { - dataType="Marker"; - position[]={6498.6138,6,2617.9641}; - name="factory_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=120; - b=90; - angle=130.13901; - id=37; - }; - class Item34 - { - dataType="Marker"; - position[]={6240.0112,5.4920001,2208.729}; - name="resource_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - angle=149.799; - id=38; - atlOffset=0.00037527084; - }; - class Item35 - { - dataType="Marker"; - position[]={7669.9839,211.76855,5149.6987}; - name="outpost_16"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=55.869678; - b=104.12814; - angle=113.13399; - id=39; - atlOffset=-2.6411896; - }; - class Item36 - { - dataType="Marker"; - position[]={6291.4487,301.02283,7718.4253}; - name="outpost_17"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=97.076508; - b=53.799522; - angle=213.73801; - id=40; - }; - class Item37 - { - dataType="Marker"; - position[]={9665.4102,85,13528.062}; - name="resource_8"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - angle=147.22701; - id=41; - }; - class Item38 - { - dataType="Marker"; - position[]={8843.5234,214,11654.893}; - name="outpost_18"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=62.089123; - b=66.317612; - angle=100.45999; - id=42; - }; - class Item39 - { - dataType="Marker"; - position[]={3613.4883,6.5879998,2176.2937}; - name="seaport"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=85.861618; - b=56.654861; - angle=106.133; - id=46; - atlOffset=0.46815634; - }; - class Item40 - { - dataType="Marker"; - position[]={6953.5557,6.0109863,2348.8506}; - name="seaport_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=108.34799; - b=77.135849; - angle=138.239; - id=47; - }; - class Item41 - { - dataType="Marker"; - position[]={10393.712,3.0197072,1855.9868}; - name="seaport_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=67.480957; - b=65.192261; - id=48; - }; - class Item42 - { - dataType="Marker"; - position[]={13521.632,4.4954515,6320.7788}; - name="seaport_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=70; - b=65.142693; - angle=96.268379; - id=49; - atlOffset=1.1780939; - }; - class Item43 - { - dataType="Marker"; - position[]={13141.395,6.0570397,10301.52}; - name="resource_9"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=80; - b=47.947792; - angle=289.01877; - id=50; - atlOffset=-0.045758247; - }; - class Item44 - { - dataType="Marker"; - position[]={13049.766,6,10046.398}; - name="seaport_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=70; - b=59.038822; - angle=110.88124; - id=51; - }; - class Item45 - { - dataType="Marker"; - position[]={12277.556,33.997002,9145.0635}; - name="outpost_19"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=70; - b=50; - angle=59.917976; - id=52; - atlOffset=0.00049591064; - }; - class Item46 - { - dataType="Marker"; - position[]={12851.474,5.7764149,8706.6035}; - name="control"; - markerType="RECTANGLE"; - type="rectangle"; - a=99.020477; - b=118.70475; - angle=159.709; - id=53; - }; - class Item47 - { - dataType="Marker"; - position[]={11905.027,59.120438,9013.168}; - name="control_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=54; - atlOffset=-3.0517578e-005; - }; - class Item48 - { - dataType="Marker"; - position[]={10899.459,233.37083,11626.339}; - name="control_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=55; - atlOffset=-3.0517578e-005; - }; - class Item49 - { - dataType="Marker"; - position[]={10425.649,173.87366,9168.1826}; - name="control_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=56; - atlOffset=-3.0517578e-005; - }; - class Item50 - { - dataType="Marker"; - position[]={13121.454,6.1215343,7318.8486}; - name="control_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=40.993301; - b=44.654533; - angle=159.709; - id=57; - }; - class Item51 - { - dataType="Marker"; - position[]={13386.251,5.5412846,5473.9419}; - name="control_5"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=58; - }; - class Item52 - { - dataType="Marker"; - position[]={11860.865,6.2993064,3457.7217}; - name="control_6"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=59; - atlOffset=-2.9563904e-005; - }; - class Item53 - { - dataType="Marker"; - position[]={10210.945,58.036556,4034.8215}; - name="control_7"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=60; - atlOffset=-3.0517578e-005; - }; - class Item54 - { - dataType="Marker"; - position[]={9435.4189,5.8964725,2048.6206}; - name="control_8"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=61; - atlOffset=-2.9563904e-005; - }; - class Item55 - { - dataType="Marker"; - position[]={6291.395,28.154409,3376.8586}; - name="control_9"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=62; - }; - class Item56 - { - dataType="Marker"; - position[]={3702.2046,6.6223607,2488.6829}; - name="control_10"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=63; - }; - class Item57 - { - dataType="Marker"; - position[]={2661.8247,221.79205,5583.6392}; - name="control_11"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=64; - atlOffset=-3.0517578e-005; - }; - class Item58 - { - dataType="Marker"; - position[]={3128.1082,298.70691,8066.7251}; - name="control_12"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=65; - atlOffset=-3.0517578e-005; - }; - class Item59 - { - dataType="Marker"; - position[]={5132.0713,345.54288,8615.3408}; - name="control_13"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=66; - atlOffset=-3.0517578e-005; - }; - class Item60 - { - dataType="Marker"; - position[]={5060.5571,258.3627,6744.2349}; - name="control_14"; - markerType="RECTANGLE"; - type="rectangle"; - a=20; - b=20; - angle=159.709; - id=67; - atlOffset=-3.0517578e-005; - }; - class Item61 - { - dataType="Marker"; - position[]={9467.0781,195.077,4417.0298}; - name="control_15"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=69; - atlOffset=-0.52865601; - }; - class Item62 - { - dataType="Marker"; - position[]={8477.1055,133.16751,4911.9985}; - name="control_16"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=70; - }; - class Item63 - { - dataType="Marker"; - position[]={10919.603,223.7363,3935.2534}; - name="control_17"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=71; - atlOffset=-0.52865601; - }; - class Item64 - { - dataType="Marker"; - position[]={12130.07,98.910156,4193.022}; - name="control_18"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=72; - atlOffset=-0.52865601; - }; - class Item65 - { - dataType="Marker"; - position[]={13005.596,129.54488,4887.0337}; - name="control_19"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=73; - atlOffset=-0.52865601; - }; - class Item66 - { - dataType="Marker"; - position[]={11972.051,105.46842,5060.0024}; - name="control_20"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=74; - atlOffset=-0.52865601; - }; - class Item67 - { - dataType="Marker"; - position[]={7139.8784,262.06378,7218.9258}; - name="control_21"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=75; - }; - class Item68 - { - dataType="Marker"; - position[]={10985.485,207.30542,6140.5288}; - name="control_22"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=76; - atlOffset=-0.52865601; - }; - class Item69 - { - dataType="Marker"; - position[]={10227.41,232.15984,6554.8013}; - name="control_23"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=77; - atlOffset=-0.52865601; - }; - class Item70 - { - dataType="Marker"; - position[]={9101.5146,252.49112,6775.3618}; - name="control_24"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=78; - atlOffset=-0.52865601; - }; - class Item71 - { - dataType="Marker"; - position[]={9165.9092,244.23141,7750.748}; - name="control_25"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=79; - atlOffset=-0.52865601; - }; - class Item72 - { - dataType="Marker"; - position[]={8065.522,441.07968,7813.2495}; - name="control_26"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=80; - atlOffset=-0.52865601; - }; - class Item73 - { - dataType="Marker"; - position[]={5347.1377,250.2849,4647.0244}; - name="control_27"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=81; - atlOffset=-0.52865601; - }; - class Item74 - { - dataType="Marker"; - position[]={8135.2402,145.75612,4069.1785}; - name="control_28"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=82; - atlOffset=-0.52865601; - }; - class Item75 - { - dataType="Marker"; - position[]={5419.3701,272.93274,6255.3569}; - name="control_29"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=83; - atlOffset=-0.52865601; - }; - class Item76 - { - dataType="Marker"; - position[]={1307.5614,310.07672,8442.0205}; - name="control_30"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=84; - atlOffset=-0.52865601; - }; - class Item77 - { - dataType="Marker"; - position[]={1760.2065,200.40744,6939.624}; - name="control_31"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=85; - atlOffset=-0.52865601; - }; - class Item78 - { - dataType="Marker"; - position[]={3076.2637,244.12482,5511.9478}; - name="control_32"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=86; - }; - class Item79 - { - dataType="Marker"; - position[]={8881.3301,101.77972,3229.3672}; - name="control_33"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=87; - atlOffset=-0.52866364; - }; - class Item80 - { - dataType="Marker"; - position[]={11438.542,186.38509,8612.5342}; - name="control_34"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=88; - atlOffset=-0.52865601; - }; - class Item81 - { - dataType="Marker"; - position[]={10170.797,193.02316,11180.602}; - name="control_35"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=89; - atlOffset=-0.52865601; - }; - class Item82 - { - dataType="Marker"; - position[]={11275.662,195.52876,10898.277}; - name="control_36"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=90; - atlOffset=-0.52865601; - }; - class Item83 - { - dataType="Marker"; - position[]={12190.503,124.89822,11606.804}; - name="control_37"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=91; - atlOffset=-0.52865601; - }; - class Item84 - { - dataType="Marker"; - position[]={13784.009,36.270542,12570.509}; - name="control_38"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=92; - atlOffset=-0.52865601; - }; - class Item85 - { - dataType="Marker"; - position[]={13463.68,26.996731,11533.509}; - name="control_39"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=93; - atlOffset=-0.52865601; - }; - class Item86 - { - dataType="Marker"; - position[]={6576.9614,264.66397,4408.6304}; - name="control_40"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - id=94; - atlOffset=-0.52865601; - }; - class Item87 - { - dataType="Marker"; - position[]={4958.8213,338.98999,9856.377}; - name="outpost_20"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=171.24644; - b=198.93745; - angle=239.93896; - id=251; - atlOffset=-0.010009766; - }; - class Item88 - { - dataType="Marker"; - position[]={24.004,5.4130001,1591.299}; - name="NATO_carrier"; - type="flag_NATO"; - id=254; - atlOffset=0.00024938583; - }; - class Item89 - { - dataType="Marker"; - position[]={2301.5923,515.14795,15327.388}; - name="CSAT_carrier"; - type="flag_CSAT"; - id=255; - atlOffset=-5.5229492; - }; - class Item90 - { - dataType="Marker"; - position[]={258.70099,5.3889999,1621.2531}; - name="road"; - type="hd_arrow"; - angle=88.853943; - id=256; - atlOffset=-0.00031852722; - }; - class Item91 - { - dataType="Marker"; - position[]={939.92346,5.7131801,2027.6239}; - name="road_1"; - type="hd_arrow"; - angle=30.963726; - id=257; - atlOffset=-0.00031852722; - }; - class Item92 - { - dataType="Marker"; - position[]={1598.9821,5.891304,2241.0452}; - name="road_2"; - type="hd_arrow"; - angle=103.3924; - id=258; - atlOffset=-1.4724927; - }; - class Item93 - { - dataType="Marker"; - position[]={3345.2864,5.6333976,2305.1523}; - name="road_3"; - type="hd_arrow"; - angle=43.965599; - id=259; - atlOffset=-0.00031852722; - }; - class Item94 - { - dataType="Marker"; - position[]={4090.6475,6.0570912,2612.2219}; - name="road_4"; - type="hd_arrow"; - angle=101.1778; - id=260; - atlOffset=-0.00031852722; - }; - class Item95 - { - dataType="Marker"; - position[]={2662.3796,121.82533,2974.5503}; - name="road_5"; - type="hd_arrow"; - angle=4.8738437; - id=261; - atlOffset=-0.00032043457; - }; - class Item96 - { - dataType="Marker"; - position[]={1957.3148,140.93176,3838.4729}; - name="road_6"; - type="hd_arrow"; - angle=292.26508; - id=262; - atlOffset=-0.00032043457; - }; - class Item97 - { - dataType="Marker"; - position[]={2059.2329,200.65611,4674.1206}; - name="road_7"; - type="hd_arrow"; - angle=43.505791; - id=263; - atlOffset=-0.00032043457; - }; - class Item98 - { - dataType="Marker"; - position[]={2683.6555,231.61018,5758.2173}; - name="road_8"; - type="hd_arrow"; - angle=9.0245171; - id=264; - atlOffset=-0.00032043457; - }; - class Item99 - { - dataType="Marker"; - position[]={2721.6721,362.37604,6704.5928}; - name="road_9"; - type="hd_arrow"; - angle=355.36441; - id=265; - atlOffset=-0.00030517578; - }; - class Item100 - { - dataType="Marker"; - position[]={3195.0691,290.06183,8138.4082}; - name="road_10"; - type="hd_arrow"; - angle=37.844521; - id=266; - atlOffset=-0.00030517578; - }; - class Item101 - { - dataType="Marker"; - position[]={2198.103,483.35318,15009.752}; - name="road_11"; - type="hd_arrow"; - angle=181.73544; - id=267; - atlOffset=-0.00030517578; - }; - class Item102 - { - dataType="Marker"; - position[]={1401.7804,410.37631,14147.957}; - name="road_12"; - type="hd_arrow"; - angle=240.74304; - id=268; - atlOffset=-0.00030517578; - }; - class Item103 - { - dataType="Marker"; - position[]={608.33936,374.29495,13812.72}; - name="road_13"; - type="hd_arrow"; - angle=143.13023; - id=269; - atlOffset=-0.00030517578; - }; - class Item104 - { - dataType="Marker"; - position[]={1703.2456,280.41479,12664.974}; - name="road_14"; - type="hd_arrow"; - angle=153.32985; - id=270; - atlOffset=-5.0085754; - }; - class Item105 - { - dataType="Marker"; - position[]={2122.0762,252.93306,11368.781}; - name="road_15"; - type="hd_arrow"; - angle=152.50713; - id=271; - }; - class Item106 - { - dataType="Marker"; - position[]={2394.7847,273.40186,10390.532}; - name="road_16"; - type="hd_arrow"; - angle=138.85368; - id=272; - atlOffset=-0.00030517578; - }; - class Item107 - { - dataType="Marker"; - position[]={4460.8945,323.60547,8903.4063}; - name="road_17"; - type="hd_arrow"; - angle=173.95586; - id=273; - atlOffset=-0.00030517578; - }; - class Item108 - { - dataType="Marker"; - position[]={5525.1362,335.08444,8358.3604}; - name="road_18"; - type="hd_arrow"; - angle=130.01761; - id=274; - atlOffset=-0.00030517578; - }; - class Item109 - { - dataType="Marker"; - position[]={6894.6445,289.19427,7629.083}; - name="road_19"; - type="hd_arrow"; - angle=64.816978; - id=275; - atlOffset=-0.00030517578; - }; - class Item110 - { - dataType="Marker"; - position[]={5533.5454,5.7996817,2071.8228}; - name="road_20"; - type="hd_arrow"; - angle=66.925438; - id=276; - atlOffset=-0.00031852722; - }; - class Item111 - { - dataType="Marker"; - position[]={6643.0728,6.0210361,2931.645}; - name="road_21"; - type="hd_arrow"; - angle=60.499027; - id=277; - atlOffset=-0.00031852722; - }; - class Item112 - { - dataType="Marker"; - position[]={8412.9277,5.9941444,2937.2261}; - name="road_22"; - type="hd_arrow"; - angle=150.56462; - id=278; - atlOffset=-0.00031852722; - }; - class Item113 - { - dataType="Marker"; - position[]={9978.6836,5.9995394,2060.1489}; - name="road_23"; - type="hd_arrow"; - angle=62.230412; - id=279; - atlOffset=-0.00031852722; - }; - class Item114 - { - dataType="Marker"; - position[]={7092.5332,255.47208,6494.1597}; - name="road_24"; - type="hd_arrow"; - angle=162.60255; - id=280; - atlOffset=-0.00032043457; - }; - class Item115 - { - dataType="Marker"; - position[]={7521.0562,210.89975,5020.7319}; - name="road_25"; - type="hd_arrow"; - angle=144.19211; - id=281; - atlOffset=-0.00032043457; - }; - class Item116 - { - dataType="Marker"; - position[]={9039.4492,114.40299,4929.6533}; - name="road_26"; - type="hd_arrow"; - angle=88.853943; - id=282; - atlOffset=-0.00032043457; - }; - class Item117 - { - dataType="Marker"; - position[]={10161.726,69.612511,4084.5254}; - name="road_27"; - type="hd_arrow"; - angle=139.01399; - id=283; - atlOffset=-0.00032043457; - }; - class Item118 - { - dataType="Marker"; - position[]={11236.721,5.5773349,3253.1726}; - name="road_28"; - type="hd_arrow"; - angle=63.165874; - id=284; - atlOffset=-0.00031852722; - }; - class Item119 - { - dataType="Marker"; - position[]={13271.227,5.4616613,4017.5564}; - name="road_29"; - type="hd_arrow"; - angle=33.934391; - id=285; - atlOffset=-0.00031852722; - }; - class Item120 - { - dataType="Marker"; - position[]={13415.135,5.6989894,5928.4902}; - name="road_30"; - type="hd_arrow"; - angle=8.5305576; - id=286; - atlOffset=-0.00031852722; - }; - class Item121 - { - dataType="Marker"; - position[]={13045.818,5.7396812,7838.7095}; - name="road_31"; - type="hd_arrow"; - angle=357.37994; - id=287; - atlOffset=-0.00031852722; - }; - class Item122 - { - dataType="Marker"; - position[]={11176.414,197.88971,12129.997}; - name="road_32"; - type="hd_arrow"; - angle=210.06854; - id=288; - atlOffset=-0.00032043457; - }; - class Item123 - { - dataType="Marker"; - position[]={10815.897,169.952,11012.247}; - name="road_33"; - type="hd_arrow"; - angle=196.04909; - id=289; - atlOffset=-0.00032043457; - }; - class Item124 - { - dataType="Marker"; - position[]={10475.061,114.88372,10000.765}; - name="road_34"; - type="hd_arrow"; - angle=182.63902; - id=290; - atlOffset=-0.00032043457; - }; - class Item125 - { - dataType="Marker"; - position[]={10389.865,164.69736,9223.4395}; - name="road_35"; - type="hd_arrow"; - angle=152.52263; - id=291; - }; - class Item126 - { - dataType="Marker"; - position[]={9664.209,294.83313,8796.6426}; - name="road_36"; - type="hd_arrow"; - angle=279.66013; - id=292; - atlOffset=-0.00030517578; - }; - class Item127 - { - dataType="Marker"; - position[]={11262.418,101.19296,9363.6436}; - name="road_37"; - type="hd_arrow"; - angle=75.367722; - id=293; - atlOffset=-0.00032043457; - }; - class Item128 - { - dataType="Marker"; - position[]={12241.645,18.431227,9482.9922}; - name="road_38"; - type="hd_arrow"; - angle=45.44635; - id=294; - atlOffset=0.07661438; - }; - class Item129 - { - dataType="Marker"; - position[]={2356.3145,277.23047,10768.724}; - name="outpost_21"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=100; - b=100; - angle=150.44699; - id=295; - }; - class Item130 - { - dataType="Marker"; - position[]={8398.3311,293.80499,5999.0068}; - name="Synd_HQ"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorPink"; - a=50; - b=50; - id=710; - atlOffset=1.6029053; - }; - class Item131 - { - dataType="Marker"; - position[]={8399.6641,2.7037606e+012,6001.1855}; - name="respawn_guerrila"; - text="Your Headquarters"; - type="hd_flag"; - colorName="ColorGUER"; - id=711; - atlOffset=2.7037606e+012; - }; - class Item132 - { - dataType="Object"; - class PositionInfo - { - position[]={8388.9502,293.00729,5989.4932}; - }; - side="Empty"; - class Attributes - { - name="vehicleBox"; - }; - id=712; - type="Box_East_AmmoVeh_F"; - atlOffset=0.25802612; - class CustomAttributes + dataType="Group"; + side="Independent"; + class Entities { - class Attribute0 + items=60; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8400.0264,292.05978,5995.3242}; + angles[]={6.2405434,0,6.2818484}; + }; + side="Independent"; + flags=6; + class Attributes + { + skill=1; + name="commanderX"; + description="Default Commander"; + isPlayer=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=725; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={8403.5596,291.93668,5991.7998}; + angles[]={0,6.2412972,6.2818937}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=729; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.0186,291.93146,5997.9521}; + angles[]={0,6.2412972,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=730; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={8421.0225,291.93945,5997.8389}; + angles[]={0,0,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=732; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={8423.9219,291.94333,5998.0176}; + angles[]={0,0,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=733; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={8426.9092,291.94733,5998.2373}; + angles[]={0,0,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=734; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.5576,291.93143,5997.8916}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=735; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={8414.916,292.0769,6000.7471}; + angles[]={6.0768309,6.2412972,0.0066682254}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=736; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={8420.9199,292.06161,6000.6338}; + angles[]={6.0768313,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=738; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={8423.8193,292.09683,6000.8125}; + angles[]={6.084507,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=739; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={8426.8066,292.14505,6001.0322}; + angles[]={6.084507,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=740; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value + dataType="Object"; + class PositionInfo { - class data + position[]={8412.4551,292.06058,6000.6865}; + angles[]={6.0832248,0,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory { - class type + map="ItemMap"; + }; + }; + id=741; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value { - type[]= + class data { - "STRING" + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={8420.9199,292.6738,6003.6348}; + angles[]={6.084507,0,6.276526}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=743; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={8423.8193,292.70108,6003.8135}; + angles[]={6.084507,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=744; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={8426.8066,292.73346,6004.0332}; + angles[]={6.1038036,0,6.2645183}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=745; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; }; }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data + class Attribute1 { - class type + property="pitch"; + expression="_this setpitch _value;"; + class Value { - type[]= + class data { - "BOOL" + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; }; }; - value=0; }; + nAttributes=2; }; }; - nAttributes=2; - }; - }; - class Item133 - { - dataType="Logic"; - class PositionInfo - { - position[]={8396.082,291.94522,5992.3252}; - angles[]={0,0,6.2818937}; - }; - name="server"; - id=713; - type="Logic"; - }; - class Item134 - { - dataType="Logic"; - class PositionInfo - { - position[]={8397.6563,291.94312,5990.9131}; - angles[]={0,0,6.2818937}; - }; - name="garrison"; - id=714; - type="Logic"; - }; - class Item135 - { - dataType="Logic"; - class PositionInfo - { - position[]={8399.4434,291.94073,5989.4922}; - angles[]={0,0,6.2818937}; - }; - name="spawner"; - id=715; - type="Logic"; - }; - class Item136 - { - dataType="Logic"; - class PositionInfo - { - position[]={8391.8496,291.95178,5989.625}; - angles[]={0,0,6.2805333}; - }; - name="hc"; - isPlayable=1; - id=716; - type="HeadlessClient_F"; - atlOffset=3.0517578e-005; - }; - class Item137 - { - dataType="Logic"; - class PositionInfo - { - position[]={8401.3184,291.93823,5988.1611}; - angles[]={0,0,6.2818937}; - }; - name="roadsX"; - id=717; - type="Logic"; - }; - class Item138 - { - dataType="Logic"; - class PositionInfo - { - position[]={8390.3613,291.96802,5993.3379}; - angles[]={6.2685246,4.511023,6.2805333}; - }; - name="HC_commanderX"; - id=718; - type="HighCommand"; - }; - class Item139 - { - dataType="Logic"; - class PositionInfo - { - position[]={8384.665,291.97086,5992.0586}; - angles[]={0,1.3577622,6.2805333}; - }; - id=719; - type="HighCommandSubordinate"; - atlOffset=-3.0517578e-005; - }; - class Item140 - { - dataType="Logic"; - class PositionInfo - { - position[]={8402.7344,291.93634,5987.0771}; - angles[]={0,0,6.2818937}; - }; - name="timer"; - id=720; - type="Logic"; - }; - class Item141 - { - dataType="Logic"; - class PositionInfo - { - position[]={8404.0039,291.93466,5985.8252}; - angles[]={0,0,6.2818937}; - }; - name="sidesX"; - id=722; - type="Logic"; - }; - class Item142 - { - dataType="Logic"; - class PositionInfo - { - position[]={8404.915,291.93344,5984.9932}; - angles[]={0,0,6.2818937}; - }; - name="killZones"; - id=723; - type="Logic"; - }; - class Item143 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=60; - class Item0 + class Item15 { dataType="Object"; class PositionInfo { - position[]={8400.0264,292.05978,5995.3242}; - angles[]={6.2405434,0,6.2818484}; + position[]={8412.4551,292.67599,6003.6875}; + angles[]={6.0768309,0,0.0066682254}; }; side="Independent"; - flags=6; + flags=4; class Attributes { skill=1; - name="commanderX"; - description="Default Commander"; - isPlayer=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=725; + id=746; type="I_G_officer_F"; class CustomAttributes { @@ -1983,23 +1447,27 @@ class Mission nAttributes=2; }; }; - class Item1 + class Item16 { dataType="Object"; class PositionInfo { - position[]={8403.5596,291.93668,5991.7998}; - angles[]={0,6.2412972,6.2818937}; + position[]={8420.8154,293.19531,6006.2217}; + angles[]={6.084507,0,6.276526}; }; side="Independent"; flags=4; class Attributes { - description="Machinegunner"; + description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=729; - type="I_G_Soldier_AR_F"; + id=748; + type="I_G_medic_F"; class CustomAttributes { class Attribute0 @@ -2017,7 +1485,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -2036,30 +1504,34 @@ class Mission "SCALAR" }; }; - value=0.97000003; + value=1.02; }; }; }; nAttributes=2; }; }; - class Item2 + class Item17 { dataType="Object"; class PositionInfo { - position[]={8415.0186,291.93146,5997.9521}; - angles[]={0,6.2412972,0.0012918708}; + position[]={8423.7148,293.22043,6006.4004}; + angles[]={6.1038036,0,6.2645183}; }; side="Independent"; flags=4; class Attributes { - description="Machinegunner"; + description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=730; - type="I_G_Soldier_AR_F"; + id=749; + type="I_G_engineer_F"; class CustomAttributes { class Attribute0 @@ -2096,30 +1568,34 @@ class Mission "SCALAR" }; }; - value=0.97000003; + value=0.95999998; }; }; }; nAttributes=2; }; }; - class Item3 + class Item18 { dataType="Object"; class PositionInfo { - position[]={8421.0225,291.93945,5997.8389}; - angles[]={0,0,0.0012918708}; + position[]={8426.7031,293.20447,6006.6201}; + angles[]={6.1038036,0,6.2645183}; }; side="Independent"; flags=4; class Attributes { - description="Paramedic"; + description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=732; - type="I_G_medic_F"; + id=750; + type="I_G_Soldier_GL_F"; class CustomAttributes { class Attribute0 @@ -2137,7 +1613,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male03FRE"; }; }; }; @@ -2156,30 +1632,35 @@ class Mission "SCALAR" }; }; - value=1.02; + value=0.98000002; }; }; }; nAttributes=2; }; }; - class Item4 + class Item19 { dataType="Object"; class PositionInfo { - position[]={8423.9219,291.94333,5998.0176}; - angles[]={0,0,0.0012918708}; + position[]={8412.3506,293.21692,6006.2744}; + angles[]={6.0768309,0,0.0066682254}; }; side="Independent"; flags=4; class Attributes { - description="Engineer"; + skill=1; + description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=733; - type="I_G_engineer_F"; + id=751; + type="I_G_officer_F"; class CustomAttributes { class Attribute0 @@ -2216,30 +1697,34 @@ class Mission "SCALAR" }; }; - value=0.95999998; + value=1; }; }; }; nAttributes=2; }; }; - class Item5 + class Item20 { dataType="Object"; class PositionInfo { - position[]={8426.9092,291.94733,5998.2373}; - angles[]={0,0,0.0012918708}; + position[]={8415.0146,292.72977,6003.8633}; + angles[]={6.0768313,6.1574922,0.0013372133}; }; side="Independent"; flags=4; class Attributes { - description="Grenadier"; + description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=734; - type="I_G_Soldier_GL_F"; + id=752; + type="I_G_Soldier_AR_F"; class CustomAttributes { class Attribute0 @@ -2276,30 +1761,34 @@ class Mission "SCALAR" }; }; - value=0.98000002; + value=0.97000003; }; }; }; nAttributes=2; }; }; - class Item6 + class Item21 { dataType="Object"; class PositionInfo { - position[]={8412.5576,291.93143,5997.8916}; + position[]={8415.1104,293.27151,6006.4502}; + angles[]={6.0768313,0,0.0013372133}; }; side="Independent"; flags=4; class Attributes { - skill=1; - description="Officer"; + description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=735; - type="I_G_officer_F"; + id=753; + type="I_G_Soldier_AR_F"; class CustomAttributes { class Attribute0 @@ -2336,30 +1825,34 @@ class Mission "SCALAR" }; }; - value=1; + value=0.97000003; }; }; }; nAttributes=2; }; }; - class Item7 + class Item22 { dataType="Object"; class PositionInfo { - position[]={8414.916,292.0769,6000.7471}; - angles[]={6.0768309,6.2412972,0.0066682254}; + position[]={8421.1484,293.80838,6008.8477}; + angles[]={6.0213375,0,6.2765174}; }; side="Independent"; flags=4; class Attributes { - description="Machinegunner"; + description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=736; - type="I_G_Soldier_AR_F"; + id=755; + type="I_G_medic_F"; class CustomAttributes { class Attribute0 @@ -2377,7 +1870,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -2396,30 +1889,34 @@ class Mission "SCALAR" }; }; - value=0.97000003; + value=1.02; }; }; }; nAttributes=2; }; }; - class Item8 + class Item23 { dataType="Object"; class PositionInfo { - position[]={8420.9199,292.06161,6000.6338}; - angles[]={6.0768313,0,0.0013372133}; + position[]={8424.0479,293.81436,6009.0264}; + angles[]={6.0238295,0,6.2645183}; }; side="Independent"; flags=4; class Attributes { - description="Paramedic"; + description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=738; - type="I_G_medic_F"; + id=756; + type="I_G_engineer_F"; class CustomAttributes { class Attribute0 @@ -2437,7 +1934,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male03FRE"; }; }; }; @@ -2456,30 +1953,34 @@ class Mission "SCALAR" }; }; - value=1.02; + value=0.95999998; }; }; }; nAttributes=2; }; }; - class Item9 + class Item24 { dataType="Object"; class PositionInfo { - position[]={8423.8193,292.09683,6000.8125}; - angles[]={6.084507,0,0.0013372133}; + position[]={8427.0352,293.81689,6009.2461}; + angles[]={6.0238295,0,6.2645183}; }; side="Independent"; flags=4; class Attributes { - description="Engineer"; + description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=739; - type="I_G_engineer_F"; + id=757; + type="I_G_Soldier_GL_F"; class CustomAttributes { class Attribute0 @@ -2516,30 +2017,35 @@ class Mission "SCALAR" }; }; - value=0.95999998; + value=0.98000002; }; }; }; nAttributes=2; }; }; - class Item10 + class Item25 { dataType="Object"; class PositionInfo { - position[]={8426.8066,292.14505,6001.0322}; - angles[]={6.084507,0,0.0013372133}; + position[]={8412.6836,293.83182,6008.9004}; + angles[]={6.0325699,0,0.0066682254}; }; side="Independent"; flags=4; class Attributes { - description="Grenadier"; + skill=1; + description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=740; - type="I_G_Soldier_GL_F"; + id=758; + type="I_G_officer_F"; class CustomAttributes { class Attribute0 @@ -2576,31 +2082,34 @@ class Mission "SCALAR" }; }; - value=0.98000002; + value=1; }; }; }; nAttributes=2; }; }; - class Item11 + class Item26 { dataType="Object"; class PositionInfo { - position[]={8412.4551,292.06058,6000.6865}; - angles[]={6.0832248,0,0}; + position[]={8415.4424,293.90762,6009.0762}; + angles[]={6.0213375,0,6.2765174}; }; side="Independent"; flags=4; class Attributes { - skill=1; - description="Officer"; + description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=741; - type="I_G_officer_F"; + id=759; + type="I_G_Soldier_AR_F"; class CustomAttributes { class Attribute0 @@ -2637,20 +2146,20 @@ class Mission "SCALAR" }; }; - value=1; + value=0.97000003; }; }; }; nAttributes=2; }; }; - class Item12 + class Item27 { dataType="Object"; class PositionInfo { - position[]={8420.9199,292.6738,6003.6348}; - angles[]={6.084507,0,6.276526}; + position[]={8421.2217,294.62357,6011.9219}; + angles[]={6.0238295,0,6.2738504}; }; side="Independent"; flags=4; @@ -2658,8 +2167,12 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=743; + id=761; type="I_G_medic_F"; class CustomAttributes { @@ -2704,13 +2217,13 @@ class Mission nAttributes=2; }; }; - class Item13 + class Item28 { dataType="Object"; class PositionInfo { - position[]={8423.8193,292.70108,6003.8135}; - angles[]={6.084507,0,0.0013372133}; + position[]={8424.1211,294.62872,6012.1006}; + angles[]={6.0238295,0,6.2645183}; }; side="Independent"; flags=4; @@ -2718,8 +2231,12 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=744; + id=762; type="I_G_engineer_F"; class CustomAttributes { @@ -2764,13 +2281,13 @@ class Mission nAttributes=2; }; }; - class Item14 + class Item29 { dataType="Object"; class PositionInfo { - position[]={8426.8066,292.73346,6004.0332}; - angles[]={6.1038036,0,6.2645183}; + position[]={8427.1084,294.60117,6012.3203}; + angles[]={6.038835,0,6.2485313}; }; side="Independent"; flags=4; @@ -2778,8 +2295,12 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=745; + id=763; type="I_G_Soldier_GL_F"; class CustomAttributes { @@ -2824,13 +2345,13 @@ class Mission nAttributes=2; }; }; - class Item15 + class Item30 { dataType="Object"; class PositionInfo { - position[]={8412.4551,292.67599,6003.6875}; - angles[]={6.0768309,0,0.0066682254}; + position[]={8412.7568,294.64554,6011.9746}; + angles[]={6.0213375,0,0.018670246}; }; side="Independent"; flags=4; @@ -2839,8 +2360,12 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=746; + id=764; type="I_G_officer_F"; class CustomAttributes { @@ -2885,23 +2410,27 @@ class Mission nAttributes=2; }; }; - class Item16 + class Item31 { dataType="Object"; class PositionInfo { - position[]={8420.8154,293.19531,6006.2217}; - angles[]={6.084507,0,6.276526}; + position[]={8415.5156,294.73105,6012.1504}; + angles[]={6.0213375,0,6.2765174}; }; side="Independent"; flags=4; class Attributes { - description="Paramedic"; + description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=748; - type="I_G_medic_F"; + id=765; + type="I_G_Soldier_AR_F"; class CustomAttributes { class Attribute0 @@ -2919,7 +2448,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male03FRE"; }; }; }; @@ -2938,30 +2467,34 @@ class Mission "SCALAR" }; }; - value=1.02; + value=0.97000003; }; }; }; nAttributes=2; }; }; - class Item17 + class Item32 { dataType="Object"; class PositionInfo { - position[]={8423.7148,293.22043,6006.4004}; - angles[]={6.1038036,0,6.2645183}; + position[]={8418.2549,295.44351,6014.9082}; + angles[]={6.0238295,0,6.2738504}; }; side="Independent"; flags=4; class Attributes { - description="Engineer"; + description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=749; - type="I_G_engineer_F"; + id=767; + type="I_G_medic_F"; class CustomAttributes { class Attribute0 @@ -2979,7 +2512,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -2998,30 +2531,34 @@ class Mission "SCALAR" }; }; - value=0.95999998; + value=1.02; }; }; }; nAttributes=2; }; }; - class Item18 + class Item33 { dataType="Object"; class PositionInfo { - position[]={8426.7031,293.20447,6006.6201}; - angles[]={6.1038036,0,6.2645183}; + position[]={8421.1543,295.46671,6015.0869}; + angles[]={5.9566455,0,6.2738504}; }; side="Independent"; flags=4; class Attributes { - description="Grenadier"; + description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=750; - type="I_G_Soldier_GL_F"; + id=768; + type="I_G_engineer_F"; class CustomAttributes { class Attribute0 @@ -3058,31 +2595,34 @@ class Mission "SCALAR" }; }; - value=0.98000002; + value=0.95999998; }; }; }; nAttributes=2; }; }; - class Item19 + class Item34 { dataType="Object"; class PositionInfo { - position[]={8412.3506,293.21692,6006.2744}; - angles[]={6.0768309,0,0.0066682254}; + position[]={8424.1416,295.47058,6015.3066}; + angles[]={5.9602342,0,6.2485328}; }; side="Independent"; flags=4; class Attributes { - skill=1; - description="Officer"; + description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=751; - type="I_G_officer_F"; + id=769; + type="I_G_Soldier_GL_F"; class CustomAttributes { class Attribute0 @@ -3119,30 +2659,36 @@ class Mission "SCALAR" }; }; - value=1; + value=0.98000002; }; }; }; nAttributes=2; }; }; - class Item20 + class Item35 { dataType="Object"; class PositionInfo { - position[]={8415.0146,292.72977,6003.8633}; - angles[]={6.0768313,6.1574922,0.0013372133}; + position[]={8409.79,295.39053,6014.9609}; + angles[]={6.0213375,0,0.018670246}; }; side="Independent"; flags=4; class Attributes { - description="Machinegunner"; + skill=1; + description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=752; - type="I_G_Soldier_AR_F"; + id=770; + type="I_G_officer_F"; + atlOffset=3.0517578e-005; class CustomAttributes { class Attribute0 @@ -3179,20 +2725,20 @@ class Mission "SCALAR" }; }; - value=0.97000003; + value=1; }; }; }; nAttributes=2; }; }; - class Item21 + class Item36 { dataType="Object"; class PositionInfo { - position[]={8415.1104,293.27151,6006.4502}; - angles[]={6.0768313,0,0.0013372133}; + position[]={8412.5488,295.49496,6015.1367}; + angles[]={5.9602342,0,0.018667053}; }; side="Independent"; flags=4; @@ -3200,8 +2746,12 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=753; + id=771; type="I_G_Soldier_AR_F"; class CustomAttributes { @@ -3246,13 +2796,13 @@ class Mission nAttributes=2; }; }; - class Item22 + class Item37 { dataType="Object"; class PositionInfo { - position[]={8421.1484,293.80838,6008.8477}; - angles[]={6.0213375,0,6.2765174}; + position[]={8418.1064,296.54022,6018.1729}; + angles[]={5.9566455,0,6.2738504}; }; side="Independent"; flags=4; @@ -3260,8 +2810,12 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=755; + id=773; type="I_G_medic_F"; class CustomAttributes { @@ -3306,13 +2860,13 @@ class Mission nAttributes=2; }; }; - class Item23 + class Item38 { dataType="Object"; class PositionInfo { - position[]={8424.0479,293.81436,6009.0264}; - angles[]={6.0238295,0,6.2645183}; + position[]={8421.0059,296.56638,6018.3516}; + angles[]={5.9602346,0,6.2698579}; }; side="Independent"; flags=4; @@ -3320,8 +2874,12 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=756; + id=774; type="I_G_engineer_F"; class CustomAttributes { @@ -3366,13 +2924,13 @@ class Mission nAttributes=2; }; }; - class Item24 + class Item39 { dataType="Object"; class PositionInfo { - position[]={8427.0352,293.81689,6009.2461}; - angles[]={6.0238295,0,6.2645183}; + position[]={8423.9932,296.56824,6018.5713}; + angles[]={5.9602342,0,6.2485328}; }; side="Independent"; flags=4; @@ -3380,8 +2938,12 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=757; + id=775; type="I_G_Soldier_GL_F"; class CustomAttributes { @@ -3426,13 +2988,13 @@ class Mission nAttributes=2; }; }; - class Item25 + class Item40 { dataType="Object"; class PositionInfo { - position[]={8412.6836,293.83182,6008.9004}; - angles[]={6.0325699,0,0.0066682254}; + position[]={8409.6416,296.47437,6018.2256}; + angles[]={5.9602342,0,0.018667053}; }; side="Independent"; flags=4; @@ -3441,9 +3003,14 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=758; + id=776; type="I_G_officer_F"; + atlOffset=3.0517578e-005; class CustomAttributes { class Attribute0 @@ -3487,13 +3054,13 @@ class Mission nAttributes=2; }; }; - class Item26 + class Item41 { dataType="Object"; class PositionInfo { - position[]={8415.4424,293.90762,6009.0762}; - angles[]={6.0213375,0,6.2765174}; + position[]={8412.4004,296.58765,6018.4014}; + angles[]={5.9566455,0,0.022662206}; }; side="Independent"; flags=4; @@ -3501,8 +3068,12 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=759; + id=777; type="I_G_Soldier_AR_F"; class CustomAttributes { @@ -3547,13 +3118,13 @@ class Mission nAttributes=2; }; }; - class Item27 + class Item42 { dataType="Object"; class PositionInfo { - position[]={8421.2217,294.62357,6011.9219}; - angles[]={6.0238295,0,6.2738504}; + position[]={8416.9199,297.47983,6020.918}; + angles[]={5.9602346,0,6.2698579}; }; side="Independent"; flags=4; @@ -3561,8 +3132,12 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=761; + id=779; type="I_G_medic_F"; class CustomAttributes { @@ -3607,13 +3182,13 @@ class Mission nAttributes=2; }; }; - class Item28 + class Item43 { dataType="Object"; class PositionInfo { - position[]={8424.1211,294.62872,6012.1006}; - angles[]={6.0238295,0,6.2645183}; + position[]={8419.8193,297.50092,6021.0967}; + angles[]={5.9602346,0,6.2698579}; }; side="Independent"; flags=4; @@ -3621,8 +3196,12 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=762; + id=780; type="I_G_engineer_F"; class CustomAttributes { @@ -3667,13 +3246,13 @@ class Mission nAttributes=2; }; }; - class Item29 + class Item44 { dataType="Object"; class PositionInfo { - position[]={8427.1084,294.60117,6012.3203}; - angles[]={6.038835,0,6.2485313}; + position[]={8422.8066,297.52811,6021.3164}; + angles[]={5.9602342,0,6.2485328}; }; side="Independent"; flags=4; @@ -3681,8 +3260,12 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=763; + id=781; type="I_G_Soldier_GL_F"; class CustomAttributes { @@ -3727,13 +3310,13 @@ class Mission nAttributes=2; }; }; - class Item30 + class Item45 { dataType="Object"; class PositionInfo { - position[]={8412.7568,294.64554,6011.9746}; - angles[]={6.0213375,0,0.018670246}; + position[]={8408.4551,297.37094,6020.9707}; + angles[]={5.9602342,0,0.018667053}; }; side="Independent"; flags=4; @@ -3742,9 +3325,14 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=764; + id=782; type="I_G_officer_F"; + atlOffset=3.0517578e-005; class CustomAttributes { class Attribute0 @@ -3788,13 +3376,13 @@ class Mission nAttributes=2; }; }; - class Item31 + class Item46 { dataType="Object"; class PositionInfo { - position[]={8415.5156,294.73105,6012.1504}; - angles[]={6.0213375,0,6.2765174}; + position[]={8411.2139,297.49045,6021.1465}; + angles[]={5.9566455,0,0.022662206}; }; side="Independent"; flags=4; @@ -3802,8 +3390,12 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=765; + id=783; type="I_G_Soldier_AR_F"; class CustomAttributes { @@ -3848,13 +3440,12 @@ class Mission nAttributes=2; }; }; - class Item32 + class Item47 { dataType="Object"; class PositionInfo { - position[]={8418.2549,295.44351,6014.9082}; - angles[]={6.0238295,0,6.2738504}; + position[]={8409.5635,291.93143,5991.6865}; }; side="Independent"; flags=4; @@ -3862,8 +3453,12 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=767; + id=784; type="I_G_medic_F"; class CustomAttributes { @@ -3908,13 +3503,12 @@ class Mission nAttributes=2; }; }; - class Item33 + class Item48 { dataType="Object"; class PositionInfo { - position[]={8421.1543,295.46671,6015.0869}; - angles[]={5.9566455,0,6.2738504}; + position[]={8412.5879,291.93143,5991.9453}; }; side="Independent"; flags=4; @@ -3922,8 +3516,12 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=768; + id=785; type="I_G_engineer_F"; class CustomAttributes { @@ -3968,13 +3566,13 @@ class Mission nAttributes=2; }; }; - class Item34 + class Item49 { dataType="Object"; class PositionInfo { - position[]={8424.1416,295.47058,6015.3066}; - angles[]={5.9602342,0,6.2485328}; + position[]={8415.1729,291.93167,5992.3516}; + angles[]={0,0,0.0012918708}; }; side="Independent"; flags=4; @@ -3982,8 +3580,12 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=769; + id=786; type="I_G_Soldier_GL_F"; class CustomAttributes { @@ -4028,25 +3630,27 @@ class Mission nAttributes=2; }; }; - class Item35 + class Item50 { dataType="Object"; class PositionInfo { - position[]={8409.79,295.39053,6014.9609}; - angles[]={6.0213375,0,0.018670246}; + position[]={8418.0928,291.93555,5998.1875}; + angles[]={0,0,0.0012918708}; }; side="Independent"; flags=4; class Attributes { - skill=1; - description="Officer"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=770; - type="I_G_officer_F"; - atlOffset=3.0517578e-005; + id=815; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4064,7 +3668,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -4090,23 +3694,27 @@ class Mission nAttributes=2; }; }; - class Item36 + class Item51 { dataType="Object"; class PositionInfo { - position[]={8412.5488,295.49496,6015.1367}; - angles[]={5.9602342,0,0.018667053}; + position[]={8417.9893,292.13071,6000.9824}; + angles[]={6.0768313,0,0.0013372133}; }; side="Independent"; flags=4; class Attributes { - description="Machinegunner"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=771; - type="I_G_Soldier_AR_F"; + id=816; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4124,7 +3732,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -4143,30 +3751,34 @@ class Mission "SCALAR" }; }; - value=0.97000003; + value=1; }; }; }; nAttributes=2; }; }; - class Item37 + class Item52 { dataType="Object"; class PositionInfo { - position[]={8418.1064,296.54022,6018.1729}; - angles[]={5.9566455,0,6.2738504}; + position[]={8417.9893,292.75903,6003.9839}; + angles[]={6.0768352,0,0.0013439035}; }; side="Independent"; flags=4; class Attributes { - description="Paramedic"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=773; - type="I_G_medic_F"; + id=817; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4203,30 +3815,34 @@ class Mission "SCALAR" }; }; - value=1.02; + value=1; }; }; }; nAttributes=2; }; }; - class Item38 + class Item53 { dataType="Object"; class PositionInfo { - position[]={8421.0059,296.56638,6018.3516}; - angles[]={5.9602346,0,6.2698579}; + position[]={8417.8857,293.28506,6006.5703}; + angles[]={6.084507,0,6.276526}; }; side="Independent"; flags=4; class Attributes { - description="Engineer"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=774; - type="I_G_engineer_F"; + id=818; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4244,7 +3860,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -4263,30 +3879,98 @@ class Mission "SCALAR" }; }; - value=0.95999998; + value=1; }; }; }; nAttributes=2; }; }; - class Item39 + class Item54 { dataType="Object"; class PositionInfo { - position[]={8423.9932,296.56824,6018.5713}; - angles[]={5.9602342,0,6.2485328}; + position[]={8418.2178,293.92126,6009.1963}; + angles[]={6.0213375,0,6.2765174}; }; side="Independent"; flags=4; class Attributes { - description="Grenadier"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=775; - type="I_G_Soldier_GL_F"; + id=819; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={8418.292,294.74335,6012.2705}; + angles[]={6.0238295,0,6.2738504}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=820; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4304,7 +3988,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -4323,32 +4007,34 @@ class Mission "SCALAR" }; }; - value=0.98000002; + value=1; }; }; }; nAttributes=2; }; }; - class Item40 + class Item56 { dataType="Object"; class PositionInfo { - position[]={8409.6416,296.47437,6018.2256}; - angles[]={5.9602342,0,0.018667053}; + position[]={8415.3252,295.57861,6015.2568}; + angles[]={5.9566455,0,6.2738504}; }; side="Independent"; flags=4; class Attributes { - skill=1; - description="Officer"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=776; - type="I_G_officer_F"; - atlOffset=3.0517578e-005; + id=821; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4366,7 +4052,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -4392,23 +4078,27 @@ class Mission nAttributes=2; }; }; - class Item41 + class Item57 { dataType="Object"; class PositionInfo { - position[]={8412.4004,296.58765,6018.4014}; - angles[]={5.9566455,0,0.022662206}; + position[]={8415.1768,296.68567,6018.5215}; + angles[]={5.9566455,0,6.2738504}; }; side="Independent"; flags=4; class Attributes { - description="Machinegunner"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=777; - type="I_G_Soldier_AR_F"; + id=822; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4426,7 +4116,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -4445,30 +4135,34 @@ class Mission "SCALAR" }; }; - value=0.97000003; + value=1; }; }; }; nAttributes=2; }; }; - class Item42 + class Item58 { dataType="Object"; class PositionInfo { - position[]={8416.9199,297.47983,6020.918}; - angles[]={5.9602346,0,6.2698579}; + position[]={8413.9893,297.59396,6021.2666}; + angles[]={5.9566455,0,0.022662206}; }; side="Independent"; flags=4; class Attributes { - description="Paramedic"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=779; - type="I_G_medic_F"; + id=823; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4505,30 +4199,34 @@ class Mission "SCALAR" }; }; - value=1.02; + value=1; }; }; }; nAttributes=2; }; }; - class Item43 + class Item59 { dataType="Object"; class PositionInfo { - position[]={8419.8193,297.50092,6021.0967}; - angles[]={5.9602346,0,6.2698579}; + position[]={8406.6328,291.93259,5992.0352}; + angles[]={0,0,6.2818937}; }; side="Independent"; flags=4; class Attributes { - description="Engineer"; + description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; - id=780; - type="I_G_engineer_F"; + id=824; + type="I_G_Soldier_LAT2_F"; class CustomAttributes { class Attribute0 @@ -4546,7 +4244,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male01FRE"; }; }; }; @@ -4565,30 +4263,65 @@ class Mission "SCALAR" }; }; - value=0.95999998; + value=1; }; }; }; nAttributes=2; }; }; - class Item44 + }; + class Attributes + { + }; + id=724; + class CustomAttributes + { + class Attribute0 + { + property="groupID"; + expression="_this setGroupID [_value];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Rebels"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=1; + class Item0 { dataType="Object"; class PositionInfo { - position[]={8422.8066,297.52811,6021.3164}; - angles[]={5.9602342,0,6.2485328}; + position[]={8391.5244,292.32184,6001.5439}; + angles[]={6.1703324,2.1016905,0.039985489}; }; side="Independent"; - flags=4; + flags=6; class Attributes { - description="Grenadier"; - isPlayable=1; + name="petros"; }; - id=781; - type="I_G_Soldier_GL_F"; + id=727; + type="I_G_officer_F"; class CustomAttributes { class Attribute0 @@ -4606,7 +4339,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male06GRE"; }; }; }; @@ -4625,38 +4358,14 @@ class Mission "SCALAR" }; }; - value=0.98000002; + value=1; }; }; }; - nAttributes=2; - }; - }; - class Item45 - { - dataType="Object"; - class PositionInfo - { - position[]={8408.4551,297.37094,6020.9707}; - angles[]={5.9602342,0,0.018667053}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=782; - type="I_G_officer_F"; - atlOffset=3.0517578e-005; - class CustomAttributes - { - class Attribute0 + class Attribute2 { - property="speaker"; - expression="_this setspeaker _value;"; + property="face"; + expression="_this setface _value;"; class Value { class data @@ -4668,227 +4377,332 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value=""; }; }; }; - class Attribute1 + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=726; + class CustomAttributes + { + class Attribute0 + { + property="groupID"; + expression="_this setGroupID [_value];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Command"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={8395.1035,293.27808,6000.7822}; + angles[]={6.1703324,0,0.0093350215}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="mapX"; + }; + id=788; + type="MapBoard_seismic_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={8393.418,297.19052,6009.3501}; + angles[]={6.2059956,0,0.033321146}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="flagX"; + }; + id=789; + type="Flag_Altis_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; + "BOOL" }; }; + value=0; }; - nAttributes=2; }; }; - class Item46 + nAttributes=1; + }; + }; + class Item22 + { + dataType="Logic"; + class PositionInfo + { + position[]={8393.8418,291.94821,5988.4844}; + angles[]={0,0,6.2818937}; + }; + name="hc_1"; + isPlayable=1; + id=790; + type="HeadlessClient_F"; + }; + class Item23 + { + dataType="Logic"; + class PositionInfo + { + position[]={8395.6885,291.94577,5987.4902}; + angles[]={0,0,6.2818937}; + }; + name="hc_2"; + isPlayable=1; + id=791; + type="HeadlessClient_F"; + }; + class Item24 + { + dataType="Logic"; + class PositionInfo + { + position[]={8423.1709,291.94089,5989.8701}; + angles[]={0,0,0.0012918708}; + }; + id=795; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 { - dataType="Object"; - class PositionInfo - { - position[]={8411.2139,297.49045,6021.1465}; - angles[]={5.9566455,0,0.022662206}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=783; - type="I_G_Soldier_AR_F"; - class CustomAttributes + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; + "STRING" }; }; + value="#adminLogged"; }; - nAttributes=2; }; }; - class Item47 + class Attribute1 { - dataType="Object"; - class PositionInfo - { - position[]={8409.5635,291.93143,5991.6865}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=784; - type="I_G_medic_F"; - class CustomAttributes + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value { - class Attribute0 + class data { - property="speaker"; - expression="_this setspeaker _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; + "SCALAR" }; }; + value=0; }; - class Attribute1 + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; + "STRING" }; }; + value=""; }; - nAttributes=2; }; }; - class Item48 + class Attribute3 { - dataType="Object"; - class PositionInfo - { - position[]={8412.5879,291.93143,5991.9453}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=785; - type="I_G_engineer_F"; - class CustomAttributes + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value { - class Attribute0 + class data { - property="speaker"; - expression="_this setspeaker _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; + "SCALAR" }; }; + value=2; }; - class Attribute1 + }; + }; + nAttributes=4; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={8398.1973,293.69818,6006.7412}; + angles[]={6.1467061,1.0016968,0.033321146}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=796; + type="Land_TentSolar_01_olive_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; + "BOOL" }; }; + value=0; }; - nAttributes=2; }; }; - class Item49 + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={-0.74136949,28.374439,1694.4166}; + angles[]={0,1.7684679,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + init="if (!isMultiplayer) then {deleteVehicle this};"; + }; + id=797; + type="Flag_NATO_F"; + }; + class Item27 + { + dataType="Marker"; + position[]={-0.40327436,20.631073,1693.8477}; + name="respawn_west"; + type="flag_CTRG"; + id=798; + atlOffset=-3.6200981; + }; + class Item28 + { + dataType="Group"; + side="West"; + class Entities + { + items=6; + class Item0 { dataType="Object"; class PositionInfo { - position[]={8415.1729,291.93167,5992.3516}; - angles[]={0,0,0.0012918708}; + position[]={-7.9569998,25.3923,1696.2611}; + angles[]={0,1.7684722,0}; }; - side="Independent"; - flags=4; + side="West"; + flags=7; class Attributes { - description="Grenadier"; + rank="SERGEANT"; + init="call{groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}"; + name="pvp_blue_1"; isPlayable=1; }; - id=786; - type="I_G_Soldier_GL_F"; + id=800; + type="B_recon_TL_F"; + atlOffset=1.9073486e-006; class CustomAttributes { class Attribute0 @@ -4906,7 +4720,7 @@ class Mission "STRING" }; }; - value="Male03FRE"; + value="Male12ENG"; }; }; }; @@ -4925,30 +4739,33 @@ class Mission "SCALAR" }; }; - value=0.98000002; + value=0.99000001; }; }; }; nAttributes=2; }; }; - class Item50 + class Item1 { dataType="Object"; class PositionInfo { - position[]={8418.0928,291.93555,5998.1875}; - angles[]={0,0,0.0012918708}; + position[]={-13.842,25.222521,1692.3411}; + angles[]={0,1.7684722,0}; }; - side="Independent"; - flags=4; + side="West"; + flags=5; class Attributes { - description="AT Launcher"; + skill=0.44999999; + rank="CORPORAL"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}"; + name="pvp_blue_4"; isPlayable=1; }; - id=815; - type="I_G_Soldier_LAT2_F"; + id=801; + type="B_recon_M_F"; class CustomAttributes { class Attribute0 @@ -4966,7 +4783,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male12ENG"; }; }; }; @@ -4985,30 +4802,33 @@ class Mission "SCALAR" }; }; - value=1; + value=0.98000002; }; }; }; nAttributes=2; }; }; - class Item51 + class Item2 { dataType="Object"; class PositionInfo { - position[]={8417.9893,292.13071,6000.9824}; - angles[]={6.0768313,0,0.0013372133}; + position[]={-11.878,26.848005,1702.146}; + angles[]={0,1.7684722,0}; }; - side="Independent"; - flags=4; + side="West"; + flags=5; class Attributes { - description="AT Launcher"; + skill=0.40000001; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}"; + name="pvp_blue_2"; isPlayable=1; }; - id=816; - type="I_G_Soldier_LAT2_F"; + id=802; + type="B_recon_medic_F"; + atlOffset=1.9073486e-006; class CustomAttributes { class Attribute0 @@ -5026,7 +4846,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male03ENG"; }; }; }; @@ -5045,30 +4865,32 @@ class Mission "SCALAR" }; }; - value=1; + value=0.95999998; }; }; }; nAttributes=2; }; }; - class Item52 + class Item3 { dataType="Object"; class PositionInfo { - position[]={8417.9893,292.75903,6003.9839}; - angles[]={6.0768352,0,0.0013439035}; + position[]={-15.799,28.235004,1708.031}; + angles[]={0,1.7684722,0}; }; - side="Independent"; - flags=4; + side="West"; + flags=5; class Attributes { - description="AT Launcher"; + skill=0.40000001; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}"; + name="pvp_blue_5"; isPlayable=1; }; - id=817; - type="I_G_Soldier_LAT2_F"; + id=803; + type="B_recon_LAT_F"; class CustomAttributes { class Attribute0 @@ -5086,7 +4908,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male12ENG"; }; }; }; @@ -5105,30 +4927,33 @@ class Mission "SCALAR" }; }; - value=1; + value=0.97000003; }; }; }; nAttributes=2; }; }; - class Item53 + class Item4 { dataType="Object"; class PositionInfo { - position[]={8417.8857,293.28506,6006.5703}; - angles[]={6.084507,0,6.276526}; + position[]={-16.409,25.1043,1690.326}; + angles[]={6.0913739,1.7684722,6.1752715}; }; - side="Independent"; + side="West"; flags=4; class Attributes { - description="AT Launcher"; + skill=0.44999999; + rank="CORPORAL"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}"; + name="pvp_blue_3"; isPlayable=1; }; - id=818; - type="I_G_Soldier_LAT2_F"; + id=804; + type="B_Patrol_Soldier_MG_F"; class CustomAttributes { class Attribute0 @@ -5146,7 +4971,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male07ENG"; }; }; }; @@ -5165,30 +4990,32 @@ class Mission "SCALAR" }; }; - value=1; + value=0.94999999; }; }; }; nAttributes=2; }; }; - class Item54 + class Item5 { dataType="Object"; class PositionInfo { - position[]={8418.2178,293.92126,6009.1963}; - angles[]={6.0213375,0,6.2765174}; + position[]={-17.556,26.291941,1695.889}; + angles[]={0,1.7684722,0}; }; - side="Independent"; - flags=4; + side="West"; + flags=5; class Attributes { - description="AT Launcher"; + skill=0.40000001; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}"; + name="pvp_blue_6"; isPlayable=1; }; - id=819; - type="I_G_Soldier_LAT2_F"; + id=805; + type="B_recon_LAT_F"; class CustomAttributes { class Attribute0 @@ -5206,7 +5033,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male12ENG"; }; }; }; @@ -5225,30 +5052,45 @@ class Mission "SCALAR" }; }; - value=1; + value=0.97000003; }; }; }; nAttributes=2; }; }; - class Item55 + }; + class Attributes + { + }; + id=799; + atlOffset=1.9073486e-006; + }; + class Item29 + { + dataType="Group"; + side="East"; + class Entities + { + items=6; + class Item0 { dataType="Object"; class PositionInfo { - position[]={8418.292,294.74335,6012.2705}; - angles[]={6.0238295,0,6.2738504}; + position[]={2220.9399,522.68604,15364.722}; + angles[]={0,3.1888561,0}; }; - side="Independent"; - flags=4; + side="East"; + flags=7; class Attributes { - description="AT Launcher"; + init="call{groupPlayersCSAT = group this;this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}"; + name="pvp_red_1"; isPlayable=1; }; - id=820; - type="I_G_Soldier_LAT2_F"; + id=807; + type="O_T_Recon_TL_F"; class CustomAttributes { class Attribute0 @@ -5266,7 +5108,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male03CHI"; }; }; }; @@ -5285,30 +5127,31 @@ class Mission "SCALAR" }; }; - value=1; + value=0.98000002; }; }; }; nAttributes=2; }; }; - class Item56 + class Item1 { dataType="Object"; class PositionInfo { - position[]={8415.3252,295.57861,6015.2568}; - angles[]={5.9566455,0,6.2738504}; + position[]={2225.96,523.28003,15369.001}; + angles[]={0,3.1888561,0}; }; - side="Independent"; - flags=4; + side="East"; + flags=5; class Attributes { - description="AT Launcher"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}"; + name="pvp_red_2"; isPlayable=1; }; - id=821; - type="I_G_Soldier_LAT2_F"; + id=808; + type="O_T_Recon_Medic_F"; class CustomAttributes { class Attribute0 @@ -5326,7 +5169,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male02CHI"; }; }; }; @@ -5345,30 +5188,31 @@ class Mission "SCALAR" }; }; - value=1; + value=1.01; }; }; }; nAttributes=2; }; }; - class Item57 + class Item2 { dataType="Object"; class PositionInfo { - position[]={8415.1768,296.68567,6018.5215}; - angles[]={5.9566455,0,6.2738504}; + position[]={2216.49,523.28168,15369.298}; + angles[]={0,3.1888561,0}; }; - side="Independent"; - flags=4; + side="East"; + flags=5; class Attributes { - description="AT Launcher"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}"; + name="pvp_red_4"; isPlayable=1; }; - id=822; - type="I_G_Soldier_LAT2_F"; + id=809; + type="O_T_Recon_M_F"; class CustomAttributes { class Attribute0 @@ -5386,7 +5230,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male01CHI"; }; }; }; @@ -5405,30 +5249,31 @@ class Mission "SCALAR" }; }; - value=1; + value=1.03; }; }; }; nAttributes=2; }; }; - class Item58 + class Item3 { dataType="Object"; class PositionInfo { - position[]={8413.9893,297.59396,6021.2666}; - angles[]={5.9566455,0,0.022662206}; + position[]={2228.719,523.56873,15371.087}; + angles[]={0,3.1888561,0}; }; - side="Independent"; - flags=4; + side="East"; + flags=5; class Attributes { - description="AT Launcher"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}"; + name="pvp_red_5"; isPlayable=1; }; - id=823; - type="I_G_Soldier_LAT2_F"; + id=810; + type="O_T_Recon_LAT_F"; class CustomAttributes { class Attribute0 @@ -5446,7 +5291,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male01CHI"; }; }; }; @@ -5465,30 +5310,32 @@ class Mission "SCALAR" }; }; - value=1; + value=0.94999999; }; }; }; nAttributes=2; }; }; - class Item59 + class Item4 { dataType="Object"; class PositionInfo { - position[]={8406.6328,291.93259,5992.0352}; - angles[]={0,0,6.2818937}; + position[]={2219.4939,522.47052,15363.198}; + angles[]={0,3.1888561,0}; }; - side="Independent"; - flags=4; + side="East"; + flags=5; class Attributes { - description="AT Launcher"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}"; + name="pvp_red_3"; isPlayable=1; }; - id=824; - type="I_G_Soldier_LAT2_F"; + id=811; + type="O_Soldier_AR_F"; + atlOffset=6.1035156e-005; class CustomAttributes { class Attribute0 @@ -5506,7 +5353,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male01PER"; }; }; }; @@ -5525,65 +5372,32 @@ class Mission "SCALAR" }; }; - value=1; + value=0.99000001; }; }; }; nAttributes=2; }; }; - }; - class Attributes - { - }; - id=724; - class CustomAttributes - { - class Attribute0 - { - property="groupID"; - expression="_this setGroupID [_value];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Rebels"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item144 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=1; - class Item0 + class Item5 { dataType="Object"; class PositionInfo { - position[]={8391.5244,292.32184,6001.5439}; - angles[]={6.1703324,2.1016905,0.039985489}; + position[]={2220.606,523.05017,15367.508}; + angles[]={0,3.1888561,0}; }; - side="Independent"; - flags=6; + side="East"; + flags=5; class Attributes { - name="petros"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}"; + name="pvp_red_6"; + isPlayable=1; }; - id=727; - type="I_G_officer_F"; + id=812; + type="O_T_Recon_LAT_F"; + atlOffset=6.1035156e-005; class CustomAttributes { class Attribute0 @@ -5601,7 +5415,7 @@ class Mission "STRING" }; }; - value="Male06GRE"; + value="Male03CHI"; }; }; }; @@ -5620,183 +5434,67 @@ class Mission "SCALAR" }; }; - value=1; - }; - }; - }; - class Attribute2 - { - property="face"; - expression="_this setface _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=726; - class CustomAttributes - { - class Attribute0 - { - property="groupID"; - expression="_this setGroupID [_value];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" + value=0.97000003; }; }; - value="Command"; }; + nAttributes=2; }; }; - nAttributes=1; - }; - }; - class Item145 - { - dataType="Object"; - class PositionInfo - { - position[]={8395.1035,293.27808,6000.7822}; - angles[]={6.1703324,0,0.0093350215}; }; - side="Empty"; - flags=4; class Attributes { - name="mapX"; - }; - id=788; - type="MapBoard_seismic_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=806; }; - class Item146 + class Item30 { dataType="Object"; class PositionInfo { - position[]={8393.418,297.19052,6009.3501}; - angles[]={6.2059956,0,0.033321146}; + position[]={2221.7444,526.23309,15361.389}; + angles[]={6.1505861,3.1888621,0.012005239}; }; side="Empty"; flags=4; class Attributes { - name="flagX"; - }; - id=789; - type="Flag_Altis_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item147 - { - dataType="Logic"; - class PositionInfo - { - position[]={8393.8418,291.94821,5988.4844}; - angles[]={0,0,6.2818937}; + init="if !(isMultiplayer) then {deleteVehicle this}"; }; - name="hc_1"; - isPlayable=1; - id=790; - type="HeadlessClient_F"; + id=813; + type="Flag_Viper_F"; }; - class Item148 + class Item31 { - dataType="Logic"; - class PositionInfo - { - position[]={8395.6885,291.94577,5987.4902}; - angles[]={0,0,6.2818937}; - }; - name="hc_2"; - isPlayable=1; - id=791; - type="HeadlessClient_F"; + dataType="Marker"; + position[]={2220.9285,541.20178,15364.892}; + name="respawn_east"; + type="flag_Viper"; + id=814; + atlOffset=18.488037; }; - class Item149 + class Item32 { - dataType="Logic"; + dataType="Object"; class PositionInfo { - position[]={8423.1709,291.94089,5989.8701}; - angles[]={0,0,0.0012918708}; + position[]={8401.0586,292.83102,5988.606}; + angles[]={0,0,6.2818937}; }; - id=795; - type="ModuleCurator_F"; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=825; + type="B_supplyCrate_F"; class CustomAttributes { class Attribute0 { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; class Value { class data @@ -5808,14 +5506,14 @@ class Mission "STRING" }; }; - value="#adminLogged"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; }; }; }; class Attribute1 { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; + property="allowDamage"; + expression="_this allowdamage _value;"; class Value { class data @@ -5824,939 +5522,1802 @@ class Mission { type[]= { - "SCALAR" + "BOOL" }; }; value=0; }; }; }; - class Attribute2 + nAttributes=2; + }; + }; + class Item33 + { + dataType="Logic"; + class PositionInfo + { + position[]={8405.2891,291.93295,5983.9502}; + }; + name="pathfinding"; + id=826; + type="Logic"; + }; + class Item34 + { + dataType="Layer"; + name="Airports"; + class Entities + { + items=20; + class Item0 { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; + dataType="Marker"; + position[]={12102.295,158.89999,12628.667}; + name="airport"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=390.76028; + b=150; + angle=19.882999; + id=4; + atlOffset=-0.053817749; }; - class Attribute3 + class Item1 { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; + dataType="Marker"; + position[]={4720.6362,339,10248.794}; + name="airport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=476.16949; + b=207.12466; + angle=59.539993; + id=5; + }; + class Item2 + { + dataType="Marker"; + position[]={4854.7817,8.790967,2507.9417}; + name="airport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=249.14926; + b=109.36142; + angle=28.489843; + id=6; + atlOffset=-0.20903301; + }; + class Item3 + { + dataType="Marker"; + position[]={4747.793,339,10323.246}; + name="airp_1_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=843; + }; + class Item4 + { + dataType="Marker"; + position[]={4737.9219,339,10324.874}; + name="airp_1_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=844; + }; + class Item5 + { + dataType="Marker"; + position[]={4748.1094,339,10340.307}; + name="airp_1_mortar_5"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=845; + }; + class Item6 + { + dataType="Marker"; + position[]={4814.894,8.8579998,2536.582}; + name="airp_2_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=870; + atlOffset=0.00019359589; + }; + class Item7 + { + dataType="Marker"; + position[]={4805.021,8.8710003,2538.21}; + name="airp_2_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=871; + atlOffset=-0.00059700012; + }; + class Item8 + { + dataType="Marker"; + position[]={4811.2568,8.7320004,2541.2839}; + name="airp_2_mortar_5"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=872; + atlOffset=-0.00042152405; + }; + class Item9 + { + dataType="Marker"; + position[]={12140.338,158.939,12612.063}; + name="airp_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=868; + atlOffset=-0.00015258789; + }; + class Item10 + { + dataType="Marker"; + position[]={12146.573,158.89999,12615.138}; + name="airp_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=869; + }; + class Item11 + { + dataType="Marker"; + position[]={12150.21,158.89999,12610.436}; + name="airp_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=867; + }; + class Item12 + { + dataType="Marker"; + position[]={4596.8301,339,10405.223}; + name="airp_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=43.498734; + b=23.140686; + angle=237.01164; + id=860; + }; + class Item13 + { + dataType="Marker"; + position[]={4752.5908,339,10154.53}; + name="airp_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=44.02475; + b=23.856892; + angle=236.65271; + id=861; + }; + class Item14 + { + dataType="Marker"; + position[]={4752.0508,9,2535.6799}; + name="airp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.455002; + b=20.924999; + angle=207.52599; + id=874; + }; + class Item15 + { + dataType="Marker"; + position[]={12186.542,158.98723,12641.169}; + name="airp_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=43.499001; + b=23.141001; + angle=200.52629; + id=866; + }; + class Item16 + { + dataType="Marker"; + position[]={12038.437,159,12695.702}; + name="airp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.455002; + b=20.924999; + angle=195.99698; + id=873; + }; + class Item17 + { + dataType="Marker"; + position[]={4655.0957,339,10285.574}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=739.97546; + b=253.8351; + angle=59.967663; + id=834; + }; + class Item18 + { + dataType="Marker"; + position[]={4967.9453,8.9077148,2442.2239}; + name="detectPlayer_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=379.85837; + b=130.2925; + angle=29.909325; + id=835; + atlOffset=0.03082943; + }; + class Item19 + { + dataType="Marker"; + position[]={12111.572,158.22559,12628.975}; + name="detectPlayer_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=467.86603; + b=197.88884; + angle=19.954424; + id=836; + atlOffset=-0.67440796; + }; + }; + id=827; + atlOffset=-156.77542; + }; + class Item35 + { + dataType="Layer"; + name="Outposts"; + class Entities + { + items=32; + class Item0 + { + dataType="Marker"; + position[]={5146.8965,8.7180004,2345.7275}; + name="outpost"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=89.797859; + b=108.29008; + angle=210.03189; + id=10; + atlOffset=-0.28199959; + }; + class Item1 + { + dataType="Marker"; + position[]={4541.6143,44.214844,3155.5417}; + name="outpost_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=122.74355; + b=128.60263; + angle=155.90392; + id=11; + atlOffset=-14.062813; + }; + class Item2 + { + dataType="Marker"; + position[]={11226.278,190.0475,12185.473}; + name="outpost_10"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=64.31974; + b=68.95639; + angle=297.99689; + id=27; + }; + class Item3 + { + dataType="Marker"; + position[]={12923.339,213.45667,12766.218}; + name="outpost_11"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=63.164063; + b=63.14502; + id=28; + atlOffset=3.7282562; + }; + class Item4 + { + dataType="Marker"; + position[]={12940.608,27.022924,6770.3062}; + name="outpost_12"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=59.300125; + b=58.015564; + angle=170.78795; + id=32; + }; + class Item5 + { + dataType="Marker"; + position[]={13415.1,6.442688,6196.1709}; + name="outpost_13"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=79.427887; + b=60.68631; + angle=270.85022; + id=34; + atlOffset=1.2123933; + }; + class Item6 + { + dataType="Marker"; + position[]={13467.147,83.838745,3342.0027}; + name="outpost_14"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=89.13623; + b=85.462082; + angle=141.42493; + id=35; + atlOffset=12.189415; + }; + class Item7 + { + dataType="Marker"; + position[]={4404.1821,215.7998,4668.0483}; + name="outpost_15"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=73.771751; + b=104.24509; + angle=99.916; + id=36; + atlOffset=-19.800491; + }; + class Item8 + { + dataType="Marker"; + position[]={7561.6045,210.63184,5171.1587}; + name="outpost_16"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=55.869678; + b=48.883904; + angle=179.87865; + id=39; + atlOffset=-3.3840942; + }; + class Item9 + { + dataType="Marker"; + position[]={6291.4487,301.02283,7718.4253}; + name="outpost_17"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=97.076508; + b=53.799522; + angle=213.73801; + id=40; + }; + class Item10 + { + dataType="Marker"; + position[]={8843.5234,214,11654.893}; + name="outpost_18"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=62.089123; + b=66.317612; + angle=100.45999; + id=42; + }; + class Item11 + { + dataType="Marker"; + position[]={12207.529,25.302977,9414.1025}; + name="outpost_19"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=70; + b=50; + angle=318.96817; + id=52; + }; + class Item12 + { + dataType="Marker"; + position[]={3701.5046,402,5978.062}; + name="outpost_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=96.04599; + b=86.994995; + angle=47.747215; + id=12; + }; + class Item13 + { + dataType="Marker"; + position[]={4958.8213,338.98999,9856.377}; + name="outpost_20"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=171.24644; + b=198.93745; + angle=239.93896; + id=251; + atlOffset=-0.010009766; + }; + class Item14 + { + dataType="Marker"; + position[]={2732.8411,267.20313,9905.9258}; + name="outpost_21"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=55.818733; + b=57.456215; + angle=121.37392; + id=295; + atlOffset=-6.7468872; + }; + class Item15 + { + dataType="Marker"; + position[]={4411.21,339,10796.395}; + name="outpost_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=156.02531; + b=203.82967; + angle=239.93896; + id=14; + }; + class Item16 + { + dataType="Marker"; + position[]={6895.8628,394.51886,11440.411}; + name="outpost_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=113.01675; + b=82.41481; + angle=235.19092; + id=15; + }; + class Item17 + { + dataType="Marker"; + position[]={6434.1392,384.95474,6548.1943}; + name="outpost_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=45.783302; + b=46.773125; + angle=130.869; + id=16; + }; + class Item18 + { + dataType="Marker"; + position[]={4732.7896,282.24829,6759.6099}; + name="outpost_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=89.587685; + b=75.625938; + angle=48.989975; + id=17; + atlOffset=12.033936; + }; + class Item19 + { + dataType="Marker"; + position[]={6583.1733,91.995636,3424.0298}; + name="outpost_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=163.08447; + b=153.32703; + id=18; + atlOffset=11.036263; + }; + class Item20 + { + dataType="Marker"; + position[]={10256.854,357.54529,12042.293}; + name="outpost_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=142.01855; + b=94.024902; + id=19; + atlOffset=-3.0738525; + }; + class Item21 + { + dataType="Marker"; + position[]={11250.48,292.00342,4294.0674}; + name="outpost_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=78.738342; + b=83.958069; + angle=225.59978; + id=22; + atlOffset=1.309967; + }; + class Item22 + { + dataType="Marker"; + position[]={12211.771,24.93,9422.0146}; + name="outp_19_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=841; + atlOffset=-0.00021934509; + }; + class Item23 + { + dataType="Marker"; + position[]={3701.6641,402,5965.916}; + name="outp_2_mortar_6"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=846; + }; + class Item24 + { + dataType="Marker"; + position[]={10289.712,362.75101,12053.699}; + name="outp_8_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=842; + atlOffset=0.0002746582; + }; + class Item25 + { + dataType="Marker"; + position[]={11264.744,289.746,4292.293}; + name="outp_9_mortar_7"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=847; + atlOffset=3.0517578e-005; + }; + class Item26 + { + dataType="Marker"; + position[]={11250.149,189.44099,12165.023}; + name="outp_10_vehicle_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.791; + b=14.319; + angle=297.01099; + id=884; + atlOffset=0.0038299561; + }; + class Item27 + { + dataType="Marker"; + position[]={12949.378,27.011999,6745.0771}; + name="outp_12_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.625; + b=5.0040002; + angle=257.76401; + id=882; + atlOffset=-0.01247406; + }; + class Item28 + { + dataType="Marker"; + position[]={13418.469,5.75,6166.9551}; + name="outp_13_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.691; + b=18.506001; + angle=180.35098; + id=881; + atlOffset=0.45897436; + }; + class Item29 + { + dataType="Marker"; + position[]={4420.085,235.808,4663.5952}; + name="outp_15_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.183; + b=5.744; + angle=207.52599; + id=878; + atlOffset=0.072692871; + }; + class Item30 + { + dataType="Marker"; + position[]={12167.877,28.309,9392.2578}; + name="outp_19_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.214; + b=20.924999; + angle=225.60698; + id=883; + atlOffset=-0.138937; + }; + class Item31 + { + dataType="Marker"; + position[]={5168.876,8.8999996,2279.875}; + name="outp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.455002; + b=20.924999; + angle=207.52599; + id=876; + }; + }; + id=828; + atlOffset=-140.3578; + }; + class Item36 + { + dataType="Layer"; + name="Seaports"; + class Entities + { + items=7; + class Item0 + { + dataType="Marker"; + position[]={3615.9265,6.5879998,2177.1638}; + name="seaport"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=134.67267; + b=91.436241; + angle=106.133; + id=46; + atlOffset=0.58799982; + }; + class Item1 + { + dataType="Marker"; + position[]={6953.5557,6.0109863,2348.8506}; + name="seaport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=108.34799; + b=77.135849; + angle=138.239; + id=47; + }; + class Item2 + { + dataType="Marker"; + position[]={10393.712,3.0197072,1855.9868}; + name="seaport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=67.480957; + b=65.192261; + id=48; + }; + class Item3 + { + dataType="Marker"; + position[]={13521.632,4.4954515,6320.7788}; + name="seaport_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=70; + b=65.142693; + angle=96.268379; + id=49; + atlOffset=1.1780939; + }; + class Item4 + { + dataType="Marker"; + position[]={13049.766,6,10046.398}; + name="seaport_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=70; + b=59.038822; + angle=110.88124; + id=51; + }; + class Item5 + { + dataType="Marker"; + position[]={6926.167,6.013,2333.9231}; + name="seap_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.023001; + b=10.466; + angle=142.308; + id=877; + atlOffset=0.00021314621; + }; + class Item6 + { + dataType="Marker"; + position[]={10402.839,6.046,1889.443}; + name="seap_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.455002; + b=12.286; + angle=179.12999; + id=879; + atlOffset=0.24533272; }; - nAttributes=4; }; + id=829; + atlOffset=-108.53817; }; - class Item150 + class Item37 { - dataType="Object"; - class PositionInfo - { - position[]={8398.1973,293.69818,6006.7412}; - angles[]={6.1467061,1.0016968,0.033321146}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="fireX"; - }; - id=796; - type="Land_TentSolar_01_olive_F"; - class CustomAttributes + dataType="Layer"; + name="Factories"; + class Entities { - class Attribute0 + items=6; + class Item0 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; + dataType="Marker"; + position[]={4167.8696,323.37891,8939.7422}; + name="factory"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=108.2471; + b=107.57551; + angle=188.34593; + id=13; + atlOffset=-0.63394165; + }; + class Item1 + { + dataType="Marker"; + position[]={10427.643,6,2581.9363}; + name="factory_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=68.609634; + b=66.307854; + angle=205.30093; + id=20; + }; + class Item2 + { + dataType="Marker"; + position[]={12863.338,6.013,9952.0381}; + name="factory_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=84.660927; + b=51.169899; + angle=100.412; + id=30; + atlOffset=0.00021314621; + }; + class Item3 + { + dataType="Marker"; + position[]={13078.55,6,7089.2612}; + name="factory_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=102.92614; + b=57.434551; + angle=73.819817; + id=31; + }; + class Item4 + { + dataType="Marker"; + position[]={6498.6138,6,2617.9641}; + name="factory_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=120; + b=90; + angle=130.13901; + id=37; + }; + class Item5 + { + dataType="Marker"; + position[]={4195.167,324.00299,8953.9102}; + name="fact_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.231; + b=9.4980001; + angle=281.59299; + id=885; + atlOffset=-0.0034484863; }; - nAttributes=1; }; + id=830; + atlOffset=-167.34557; }; - class Item151 + class Item38 { - dataType="Object"; - class PositionInfo - { - position[]={-0.74136949,28.374439,1694.4166}; - angles[]={0,1.7684679,0}; - }; - side="Empty"; - flags=5; - class Attributes + dataType="Layer"; + name="Resources"; + class Entities { - init="if (!isMultiplayer) then {deleteVehicle this};"; + items=11; + class Item0 + { + dataType="Marker"; + position[]={10063.688,6,1839.64}; + name="resource"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=90; + b=50; + id=21; + }; + class Item1 + { + dataType="Marker"; + position[]={11470.222,221,7510.728}; + name="resource_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=80; + b=50; + angle=97.399902; + id=23; + }; + class Item2 + { + dataType="Marker"; + position[]={9700.9033,298.99799,8918.7803}; + name="resource_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=70; + b=50; + angle=104.40878; + id=24; + atlOffset=-0.00030517578; + }; + class Item3 + { + dataType="Marker"; + position[]={10266.166,168.32201,9522.1777}; + name="resource_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + angle=184.80492; + id=25; + atlOffset=0.00010681152; + }; + class Item4 + { + dataType="Marker"; + position[]={11845.592,148.39,12407.44}; + name="resource_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + angle=200.38896; + id=26; + atlOffset=-0.00032043457; + }; + class Item5 + { + dataType="Marker"; + position[]={12761.23,6,9655.4131}; + name="resource_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=110; + b=70; + angle=191.55794; + id=29; + }; + class Item6 + { + dataType="Marker"; + position[]={13273.817,10.119,6095.9707}; + name="resource_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=68.961441; + b=65.203957; + angle=58.644993; + id=33; + atlOffset=2.1734037; + }; + class Item7 + { + dataType="Marker"; + position[]={6240.0112,5.4920001,2208.729}; + name="resource_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + angle=149.799; + id=38; + atlOffset=0.00037527084; + }; + class Item8 + { + dataType="Marker"; + position[]={9673.1572,46.938477,13557.481}; + name="resource_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=133.86571; + b=128.34068; + angle=147.22701; + id=41; + atlOffset=-36.718025; + }; + class Item9 + { + dataType="Marker"; + position[]={13141.395,6.0570397,10301.52}; + name="resource_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=80; + b=47.947792; + angle=289.01877; + id=50; + atlOffset=-0.045758247; + }; + class Item10 + { + dataType="Marker"; + position[]={9996.3281,6,1843.3051}; + name="reso_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.939; + b=12.332; + angle=180.841; + id=880; + }; }; - id=797; - type="Flag_NATO_F"; - }; - class Item152 - { - dataType="Marker"; - position[]={-0.40327436,20.631073,1693.8477}; - name="respawn_west"; - type="flag_CTRG"; - id=798; - atlOffset=-3.6200981; + id=831; + atlOffset=-278.84216; }; - class Item153 + class Item39 { - dataType="Group"; - side="West"; + dataType="Layer"; + name="Roadblocks"; class Entities { - items=6; + items=41; class Item0 { - dataType="Object"; - class PositionInfo - { - position[]={-7.9569998,25.3923,1696.2611}; - angles[]={0,1.7684722,0}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}"; - name="pvp_blue_1"; - isPlayable=1; - }; - id=800; - type="B_recon_TL_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male12ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={12851.474,5.7764149,8706.6035}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=99.020477; + b=118.70475; + angle=159.709; + id=53; + }; + class Item1 + { + dataType="Marker"; + position[]={11891.186,31.970703,9017.7803}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=169.17923; + b=179.54099; + angle=159.709; + id=54; + atlOffset=-27.432232; + }; + class Item2 + { + dataType="Marker"; + position[]={3643.8086,8.4753141,2523.8491}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=108.25488; + b=100.38329; + angle=159.709; + id=63; + }; + class Item3 + { + dataType="Marker"; + position[]={2661.8247,221.79205,5583.6392}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=20; + b=20; + angle=159.709; + id=64; + atlOffset=-3.0517578e-005; + }; + class Item4 + { + dataType="Marker"; + position[]={3130.9856,298.29498,8072.5195}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=157.0043; + b=161.89716; + angle=159.709; + id=65; + }; + class Item5 + { + dataType="Marker"; + position[]={5058.7593,341.6015,8636.0986}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=135.16505; + b=145.20442; + angle=159.709; + id=66; + }; + class Item6 + { + dataType="Marker"; + position[]={4806.2607,276.80078,7174.6528}; + name="control_14"; + markerType="RECTANGLE"; + type="rectangle"; + a=188.29962; + b=158.81369; + angle=159.709; + id=67; + atlOffset=-25.2211; + }; + class Item7 + { + dataType="Marker"; + position[]={9467.0781,195.077,4417.0298}; + name="control_15"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=69; + atlOffset=-0.52865601; + }; + class Item8 + { + dataType="Marker"; + position[]={8477.1055,133.16751,4911.9985}; + name="control_16"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=70; + }; + class Item9 + { + dataType="Marker"; + position[]={10919.603,223.7363,3935.2534}; + name="control_17"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=71; + atlOffset=-0.52865601; + }; + class Item10 + { + dataType="Marker"; + position[]={12501.461,-79.317383,3547.23}; + name="control_18"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=72; + atlOffset=-85.433502; + }; + class Item11 + { + dataType="Marker"; + position[]={13005.596,129.54488,4887.0337}; + name="control_19"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=73; + atlOffset=-0.52865601; + }; + class Item12 + { + dataType="Marker"; + position[]={10899.459,233.37083,11626.339}; + name="control_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=20; + b=20; + angle=159.709; + id=55; + atlOffset=-3.0517578e-005; + }; + class Item13 + { + dataType="Marker"; + position[]={11972.051,105.46842,5060.0024}; + name="control_20"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=74; + atlOffset=-0.52865601; + }; + class Item14 + { + dataType="Marker"; + position[]={7139.8784,262.06378,7218.9258}; + name="control_21"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=75; + }; + class Item15 + { + dataType="Marker"; + position[]={10985.485,207.30542,6140.5288}; + name="control_22"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=76; + atlOffset=-0.52865601; + }; + class Item16 + { + dataType="Marker"; + position[]={5835.1284,277.32715,10067.057}; + name="control_23"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=77; + atlOffset=-1.5084839; + }; + class Item17 + { + dataType="Marker"; + position[]={9101.5146,252.49112,6775.3618}; + name="control_24"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=78; + atlOffset=-0.52865601; + }; + class Item18 + { + dataType="Marker"; + position[]={10052.591,227.49121,8855.5938}; + name="control_25"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=79; + atlOffset=-32.876678; + }; + class Item19 + { + dataType="Marker"; + position[]={8065.522,441.07968,7813.2495}; + name="control_26"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=80; + atlOffset=-0.52865601; + }; + class Item20 + { + dataType="Marker"; + position[]={5347.1377,250.2849,4647.0244}; + name="control_27"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=81; + atlOffset=-0.52865601; + }; + class Item21 + { + dataType="Marker"; + position[]={4520.4932,317.61523,9705.875}; + name="control_28"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=82; + atlOffset=-18.172058; + }; + class Item22 + { + dataType="Marker"; + position[]={4533.4355,285.88184,6429.5732}; + name="control_29"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=83; + atlOffset=-3.6246033; + }; + class Item23 + { + dataType="Marker"; + position[]={10425.649,173.87366,9168.1826}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=20; + b=20; + angle=159.709; + id=56; + atlOffset=-3.0517578e-005; + }; + class Item24 + { + dataType="Marker"; + position[]={2778.6279,260.37402,9456.1797}; + name="control_30"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=84; + atlOffset=-1.6228638; }; - class Item1 + class Item25 { - dataType="Object"; - class PositionInfo - { - position[]={-13.842,25.222521,1692.3411}; - angles[]={0,1.7684722,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}"; - name="pvp_blue_4"; - isPlayable=1; - }; - id=801; - type="B_recon_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male12ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={1760.2065,200.40744,6939.624}; + name="control_31"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=85; + atlOffset=-0.52865601; }; - class Item2 + class Item26 { - dataType="Object"; - class PositionInfo - { - position[]={-11.878,26.848005,1702.146}; - angles[]={0,1.7684722,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}"; - name="pvp_blue_2"; - isPlayable=1; - }; - id=802; - type="B_recon_medic_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={3076.2637,244.12482,5511.9478}; + name="control_32"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=86; }; - class Item3 + class Item27 { - dataType="Object"; - class PositionInfo - { - position[]={-15.799,28.235004,1708.031}; - angles[]={0,1.7684722,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}"; - name="pvp_blue_5"; - isPlayable=1; - }; - id=803; - type="B_recon_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male12ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={8881.3301,101.77972,3229.3672}; + name="control_33"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=87; + atlOffset=-0.52866364; }; - class Item4 + class Item28 { - dataType="Object"; - class PositionInfo - { - position[]={-16.409,25.1043,1690.326}; - angles[]={6.0913739,1.7684722,6.1752715}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}"; - name="pvp_blue_3"; - isPlayable=1; - }; - id=804; - type="B_Patrol_Soldier_MG_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={11758.557,201.75879,7391.0483}; + name="control_34"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=88; + atlOffset=-1.7794189; + }; + class Item29 + { + dataType="Marker"; + position[]={10170.797,193.02316,11180.602}; + name="control_35"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=89; + atlOffset=-0.52865601; + }; + class Item30 + { + dataType="Marker"; + position[]={11275.662,195.52876,10898.277}; + name="control_36"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=90; + atlOffset=-0.52865601; + }; + class Item31 + { + dataType="Marker"; + position[]={12190.503,124.89822,11606.804}; + name="control_37"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=91; + atlOffset=-0.52865601; }; - class Item5 + class Item32 { - dataType="Object"; - class PositionInfo - { - position[]={-17.556,26.291941,1695.889}; - angles[]={0,1.7684722,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}"; - name="pvp_blue_6"; - isPlayable=1; - }; - id=805; - type="B_recon_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male12ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={10650.565,255.55664,12415.6}; + name="control_38"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=92; + atlOffset=-6.5578613; }; - }; - class Attributes - { - }; - id=799; - atlOffset=1.9073486e-006; - }; - class Item154 - { - dataType="Group"; - side="East"; - class Entities - { - items=6; - class Item0 + class Item33 { - dataType="Object"; - class PositionInfo - { - position[]={2220.9399,522.68604,15364.722}; - angles[]={0,3.1888561,0}; - }; - side="East"; - flags=7; - class Attributes - { - init="call{groupPlayersCSAT = group this;this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}"; - name="pvp_red_1"; - isPlayable=1; - }; - id=807; - type="O_T_Recon_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={13463.68,26.996731,11533.509}; + name="control_39"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=93; + atlOffset=-0.52865601; }; - class Item1 + class Item34 { - dataType="Object"; - class PositionInfo - { - position[]={2225.96,523.28003,15369.001}; - angles[]={0,3.1888561,0}; - }; - side="East"; - flags=5; - class Attributes - { - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}"; - name="pvp_red_2"; - isPlayable=1; - }; - id=808; - type="O_T_Recon_Medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={13120.273,6.1183958,7321.2026}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=124.43841; + b=120.9002; + angle=159.709; + id=57; }; - class Item2 + class Item35 { - dataType="Object"; - class PositionInfo - { - position[]={2216.49,523.28168,15369.298}; - angles[]={0,3.1888561,0}; - }; - side="East"; - flags=5; - class Attributes - { - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}"; - name="pvp_red_4"; - isPlayable=1; - }; - id=809; - type="O_T_Recon_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={6576.9614,264.66397,4408.6304}; + name="control_40"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=94; + atlOffset=-0.52865601; + }; + class Item36 + { + dataType="Marker"; + position[]={13387.276,5.6766515,5494.439}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=170.06819; + b=156.81378; + angle=159.709; + id=58; }; - class Item3 + class Item37 { - dataType="Object"; - class PositionInfo - { - position[]={2228.719,523.56873,15371.087}; - angles[]={0,3.1888561,0}; - }; - side="East"; - flags=5; - class Attributes - { - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}"; - name="pvp_red_5"; - isPlayable=1; - }; - id=810; - type="O_T_Recon_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={11680.59,6.2993064,3413.7866}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=155.98209; + b=137.75055; + angle=159.709; + id=59; + atlOffset=0.65731668; }; - class Item4 + class Item38 { - dataType="Object"; - class PositionInfo - { - position[]={2219.4939,522.47052,15363.198}; - angles[]={0,3.1888561,0}; - }; - side="East"; - flags=5; - class Attributes - { - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}"; - name="pvp_red_3"; - isPlayable=1; - }; - id=811; - type="O_Soldier_AR_F"; - atlOffset=6.1035156e-005; - class CustomAttributes + dataType="Marker"; + position[]={10212.019,48.182617,4034.1069}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=122.87683; + b=111.55153; + angle=159.709; + id=60; + atlOffset=-9.7690239; + }; + class Item39 + { + dataType="Marker"; + position[]={9435.4189,5.8964725,2048.6206}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=20; + b=20; + angle=159.709; + id=61; + atlOffset=-2.9563904e-005; + }; + class Item40 + { + dataType="Marker"; + position[]={6295.6372,13.885742,3370.6223}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=108.98723; + b=105.96222; + angle=159.709; + id=62; + atlOffset=-13.916445; + }; + }; + id=832; + atlOffset=7.5841923; + }; + class Item40 + { + dataType="Logic"; + class PositionInfo + { + position[]={2732.4866,273.95001,9906.6455}; + }; + areaSize[]={8.9569092,0,7.2392578}; + flags=1; + id=833; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01PER"; - }; - }; - }; - class Attribute1 + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; + "SCALAR" }; }; + value=15; }; - nAttributes=2; }; }; - class Item5 + class Attribute1 { - dataType="Object"; - class PositionInfo - { - position[]={2220.606,523.05017,15367.508}; - angles[]={0,3.1888561,0}; - }; - side="East"; - flags=5; - class Attributes - { - init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}"; - name="pvp_red_6"; - isPlayable=1; - }; - id=812; - type="O_T_Recon_LAT_F"; - atlOffset=6.1035156e-005; - class CustomAttributes + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03CHI"; - }; - }; - }; - class Attribute1 + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; + "BOOL" }; }; + value=0; }; - nAttributes=2; }; }; + nAttributes=2; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={9618.377,86.686676,13544.433}; + angles[]={0.020939622,6.093493,6.2411475}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=848; + type="Land_HelipadSquare_F"; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={12191.556,27.420124,9409.2344}; + angles[]={0.077445425,4.1988201,6.1876712}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=849; + type="Land_HelipadSquare_F"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={6599.4321,81.452545,3414.2485}; + angles[]={0.027993103,3.1187696,6.2805109}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=850; + type="Land_HelipadSquare_F"; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={5099.7905,9,2336.02}; + angles[]={-0,2.0886309,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=851; + type="Land_HelipadSquare_F"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={4702.9102,8.999423,2572.5432}; + angles[]={0.013327583,3.6829305,0}; }; + side="Empty"; + flags=4; class Attributes { }; - id=806; + id=852; + type="Land_HelipadSquare_F"; }; - class Item155 + class Item46 { dataType="Object"; class PositionInfo { - position[]={2221.7444,526.23309,15361.389}; - angles[]={6.1505861,3.1888621,0.012005239}; + position[]={4795.1753,9,2522.0068}; + angles[]={-0,3.6794586,0}; }; side="Empty"; flags=4; class Attributes { - init="if !(isMultiplayer) then {deleteVehicle this}"; }; - id=813; - type="Flag_Viper_F"; + id=853; + type="Land_HelipadSquare_F"; }; - class Item156 + class Item47 { - dataType="Marker"; - position[]={2220.9285,541.20178,15364.892}; - name="respawn_east"; - type="flag_Viper"; - id=814; - atlOffset=18.488037; + dataType="Object"; + class PositionInfo + { + position[]={6251.6211,301.19858,7739.9458}; + angles[]={6.256525,5.3228745,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=855; + type="Land_HelipadSquare_F"; }; - class Item157 + class Item48 { dataType="Object"; class PositionInfo { - position[]={8401.0586,292.83102,5988.606}; - angles[]={0,0,6.2818937}; + position[]={6882.5283,393.91858,11436.774}; + angles[]={6.2791886,1.4099587,0.051951028}; }; side="Empty"; flags=4; class Attributes { - name="boxX"; }; - id=825; - type="B_supplyCrate_F"; + id=857; + type="Land_HelipadSquare_F"; + }; + class Item49 + { + dataType="Logic"; + class PositionInfo + { + position[]={6880.5,394.10928,11446.472}; + angles[]={6.1058249,0,6.2439637}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=858; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.27334595; class CustomAttributes { class Attribute0 { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; class Value { class data @@ -6765,17 +7326,17 @@ class Mission { type[]= { - "STRING" + "SCALAR" }; }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + value=15; }; }; }; class Attribute1 { - property="allowDamage"; - expression="_this allowdamage _value;"; + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; class Value { class data @@ -6794,16 +7355,524 @@ class Mission nAttributes=2; }; }; - class Item158 + class Item50 { dataType="Logic"; class PositionInfo { - position[]={8405.2891,291.93295,5983.9502}; + position[]={6886.6343,394.33795,11426.603}; + angles[]={6.1058249,0,6.2439637}; }; - name="pathfinding"; - id=826; - type="Logic"; + areaSize[]={5,-1,5}; + flags=1; + id=859; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.27334595; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={4773.082,339,10120.783}; + angles[]={-0,1.0440426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=862; + type="Land_HelipadSquare_F"; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={4793.561,339,10085.981}; + angles[]={-0,1.0440426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=863; + type="Land_HelipadSquare_F"; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={4816.0903,339,10048.161}; + angles[]={-0,1.0440426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=864; + type="Land_HelipadSquare_F"; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={4841.4712,339,10004.922}; + angles[]={-0,1.0440426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=865; + type="Land_HelipadSquare_F"; + }; + class Item55 + { + dataType="Layer"; + name="Roads"; + class Entities + { + items=39; + class Item0 + { + dataType="Marker"; + position[]={258.70099,5.3889999,1621.2531}; + name="road"; + type="hd_arrow"; + angle=88.853943; + id=256; + atlOffset=-0.00031852722; + }; + class Item1 + { + dataType="Marker"; + position[]={939.92346,5.7131801,2027.6239}; + name="road_1"; + type="hd_arrow"; + angle=30.963726; + id=257; + atlOffset=-0.00031852722; + }; + class Item2 + { + dataType="Marker"; + position[]={3195.0691,290.06183,8138.4082}; + name="road_10"; + type="hd_arrow"; + angle=37.844521; + id=266; + atlOffset=-0.00030517578; + }; + class Item3 + { + dataType="Marker"; + position[]={2198.103,483.35318,15009.752}; + name="road_11"; + type="hd_arrow"; + angle=181.73544; + id=267; + atlOffset=-0.00030517578; + }; + class Item4 + { + dataType="Marker"; + position[]={1401.7804,410.37631,14147.957}; + name="road_12"; + type="hd_arrow"; + angle=240.74304; + id=268; + atlOffset=-0.00030517578; + }; + class Item5 + { + dataType="Marker"; + position[]={608.33936,374.29495,13812.72}; + name="road_13"; + type="hd_arrow"; + angle=143.13023; + id=269; + atlOffset=-0.00030517578; + }; + class Item6 + { + dataType="Marker"; + position[]={1703.2456,280.41479,12664.974}; + name="road_14"; + type="hd_arrow"; + angle=153.32985; + id=270; + atlOffset=-5.0085754; + }; + class Item7 + { + dataType="Marker"; + position[]={2122.0762,252.93306,11368.781}; + name="road_15"; + type="hd_arrow"; + angle=152.50713; + id=271; + }; + class Item8 + { + dataType="Marker"; + position[]={2394.7847,273.40186,10390.532}; + name="road_16"; + type="hd_arrow"; + angle=138.85368; + id=272; + atlOffset=-0.00030517578; + }; + class Item9 + { + dataType="Marker"; + position[]={4460.8945,323.60547,8903.4063}; + name="road_17"; + type="hd_arrow"; + angle=173.95586; + id=273; + atlOffset=-0.00030517578; + }; + class Item10 + { + dataType="Marker"; + position[]={5525.1362,335.08444,8358.3604}; + name="road_18"; + type="hd_arrow"; + angle=130.01761; + id=274; + atlOffset=-0.00030517578; + }; + class Item11 + { + dataType="Marker"; + position[]={6894.6445,289.19427,7629.083}; + name="road_19"; + type="hd_arrow"; + angle=64.816978; + id=275; + atlOffset=-0.00030517578; + }; + class Item12 + { + dataType="Marker"; + position[]={1598.9821,5.891304,2241.0452}; + name="road_2"; + type="hd_arrow"; + angle=103.3924; + id=258; + atlOffset=-1.4724927; + }; + class Item13 + { + dataType="Marker"; + position[]={5533.5454,5.7996817,2071.8228}; + name="road_20"; + type="hd_arrow"; + angle=66.925438; + id=276; + atlOffset=-0.00031852722; + }; + class Item14 + { + dataType="Marker"; + position[]={6643.0728,6.0210361,2931.645}; + name="road_21"; + type="hd_arrow"; + angle=60.499027; + id=277; + atlOffset=-0.00031852722; + }; + class Item15 + { + dataType="Marker"; + position[]={8412.9277,5.9941444,2937.2261}; + name="road_22"; + type="hd_arrow"; + angle=150.56462; + id=278; + atlOffset=-0.00031852722; + }; + class Item16 + { + dataType="Marker"; + position[]={9978.6836,5.9995394,2060.1489}; + name="road_23"; + type="hd_arrow"; + angle=62.230412; + id=279; + atlOffset=-0.00031852722; + }; + class Item17 + { + dataType="Marker"; + position[]={7092.5332,255.47208,6494.1597}; + name="road_24"; + type="hd_arrow"; + angle=162.60255; + id=280; + atlOffset=-0.00032043457; + }; + class Item18 + { + dataType="Marker"; + position[]={7521.0562,210.89975,5020.7319}; + name="road_25"; + type="hd_arrow"; + angle=144.19211; + id=281; + atlOffset=-0.00032043457; + }; + class Item19 + { + dataType="Marker"; + position[]={9039.4492,114.40299,4929.6533}; + name="road_26"; + type="hd_arrow"; + angle=88.853943; + id=282; + atlOffset=-0.00032043457; + }; + class Item20 + { + dataType="Marker"; + position[]={10161.726,69.612511,4084.5254}; + name="road_27"; + type="hd_arrow"; + angle=139.01399; + id=283; + atlOffset=-0.00032043457; + }; + class Item21 + { + dataType="Marker"; + position[]={11236.721,5.5773349,3253.1726}; + name="road_28"; + type="hd_arrow"; + angle=63.165874; + id=284; + atlOffset=-0.00031852722; + }; + class Item22 + { + dataType="Marker"; + position[]={13271.227,5.4616613,4017.5564}; + name="road_29"; + type="hd_arrow"; + angle=33.934391; + id=285; + atlOffset=-0.00031852722; + }; + class Item23 + { + dataType="Marker"; + position[]={3345.2864,5.6333976,2305.1523}; + name="road_3"; + type="hd_arrow"; + angle=43.965599; + id=259; + atlOffset=-0.00031852722; + }; + class Item24 + { + dataType="Marker"; + position[]={13415.135,5.6989894,5928.4902}; + name="road_30"; + type="hd_arrow"; + angle=8.5305576; + id=286; + atlOffset=-0.00031852722; + }; + class Item25 + { + dataType="Marker"; + position[]={13045.818,5.7396812,7838.7095}; + name="road_31"; + type="hd_arrow"; + angle=357.37994; + id=287; + atlOffset=-0.00031852722; + }; + class Item26 + { + dataType="Marker"; + position[]={11176.414,197.88971,12129.997}; + name="road_32"; + type="hd_arrow"; + angle=210.06854; + id=288; + atlOffset=-0.00032043457; + }; + class Item27 + { + dataType="Marker"; + position[]={10815.897,169.952,11012.247}; + name="road_33"; + type="hd_arrow"; + angle=196.04909; + id=289; + atlOffset=-0.00032043457; + }; + class Item28 + { + dataType="Marker"; + position[]={10475.061,114.88372,10000.765}; + name="road_34"; + type="hd_arrow"; + angle=182.63902; + id=290; + atlOffset=-0.00032043457; + }; + class Item29 + { + dataType="Marker"; + position[]={10389.865,164.69736,9223.4395}; + name="road_35"; + type="hd_arrow"; + angle=152.52263; + id=291; + }; + class Item30 + { + dataType="Marker"; + position[]={9664.209,294.83313,8796.6426}; + name="road_36"; + type="hd_arrow"; + angle=279.66013; + id=292; + atlOffset=-0.00030517578; + }; + class Item31 + { + dataType="Marker"; + position[]={11262.418,101.19296,9363.6436}; + name="road_37"; + type="hd_arrow"; + angle=75.367722; + id=293; + atlOffset=-0.00032043457; + }; + class Item32 + { + dataType="Marker"; + position[]={12241.645,18.431227,9482.9922}; + name="road_38"; + type="hd_arrow"; + angle=45.44635; + id=294; + atlOffset=0.07661438; + }; + class Item33 + { + dataType="Marker"; + position[]={4090.6475,6.0570912,2612.2219}; + name="road_4"; + type="hd_arrow"; + angle=101.1778; + id=260; + atlOffset=-0.00031852722; + }; + class Item34 + { + dataType="Marker"; + position[]={2662.3796,121.82533,2974.5503}; + name="road_5"; + type="hd_arrow"; + angle=4.8738437; + id=261; + atlOffset=-0.00032043457; + }; + class Item35 + { + dataType="Marker"; + position[]={1957.3148,140.93176,3838.4729}; + name="road_6"; + type="hd_arrow"; + angle=292.26508; + id=262; + atlOffset=-0.00032043457; + }; + class Item36 + { + dataType="Marker"; + position[]={2059.2329,200.65611,4674.1206}; + name="road_7"; + type="hd_arrow"; + angle=43.505791; + id=263; + atlOffset=-0.00032043457; + }; + class Item37 + { + dataType="Marker"; + position[]={2683.6555,231.61018,5758.2173}; + name="road_8"; + type="hd_arrow"; + angle=9.0245171; + id=264; + atlOffset=-0.00032043457; + }; + class Item38 + { + dataType="Marker"; + position[]={2721.6721,362.37604,6704.5928}; + name="road_9"; + type="hd_arrow"; + angle=355.36441; + id=265; + atlOffset=-0.00030517578; + }; + }; + id=886; + atlOffset=29.723694; }; }; class Connections diff --git a/A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/roadsDBcherna.sqf b/Map-Templates/Antistasi-Chernarus.chernarus_summer/roadsDBcherna.sqf similarity index 100% rename from A3-Antistasi/Templates/A3-ArmiaKrajowaTemplate.chernarus_summer/roadsDBcherna.sqf rename to Map-Templates/Antistasi-Chernarus.chernarus_summer/roadsDBcherna.sqf diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_blow_objects.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_blow_objects.sqf new file mode 100644 index 0000000000..fbd904373e --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_blow_objects.sqf @@ -0,0 +1,13 @@ +// by ALIAS +params ["_vit_x","_vit_y"]; +waitUntil {!isNil "rafala"}; +if (rafala) then { + al_nearobjects = nearestObjects [hunt_alias,[],50]; + ar_obj_eligibl = []; + {if((_x isKindOf "LandVehicle") or (_x isKindOf "Man") or (_x isKindOf "Air") or (_x isKindOf "Wreck")) then {ar_obj_eligibl pushBack _x;}} foreach al_nearobjects; + sleep 1; + if (count ar_obj_eligibl > 0) then { + _blowobj= selectRandom ar_obj_eligibl; + _blowobj setvelocity [_vit_x,_vit_y,random 0.1];sleep 0.1;_blowobj setvelocity [_vit_x*1.5,_vit_y*1.5,random 0.1];sleep 0.1; _blowobj setvelocity [wind#0/4,wind#0/4,random 0.1]; + } +}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_breath.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_breath.sqf new file mode 100644 index 0000000000..429c790e91 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_breath.sqf @@ -0,0 +1,3 @@ +//by ALIAS + +drop [["\A3\data_f\ParticleEffects\Universal\Universal",16,12,8,1],"","Billboard",1,1,_this,[0,0,0.1],1,1.275,1,1,[.3,.5,.7],[[1,1,1,0.1],[1,1,1,0.03],[1,1,1,0]],[0.8],1,0.5,"","",_this,90]; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_check_pos.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_check_pos.sqf new file mode 100644 index 0000000000..33691e0dce --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_check_pos.sqf @@ -0,0 +1,18 @@ +// by ALIAS +if (!hasInterface) exitWith {}; +if (!isNil {player getVariable "ck_ON"}) exitwith {}; +player setVariable ["ck_ON",true]; + +alias_snow = "Land_HelipadEmpty_F" createVehiclelocal [0,0,0]; +//alias_snow = "Sign_Sphere100cm_F" createVehiclelocal [0,0,0]; + +KK_fnc_inHouse = +{ + _house = lineIntersectsSurfaces [getPosWorld _this,getPosWorld _this vectorAdd [0,0,50],_this,objNull,true,1,"GEOM","NONE"]; + if (((_house select 0) select 3) isKindOf "house") exitWith {pos_p = "in_da_house"; cladire = ((_house select 0) select 3); casa= typeOf ((_house select 0) select 3); raza_snow = sizeof casa}; + if ((getPosASL player select 2 < 0)&&(getPosASL player select 2 > -3)) exitWith {pos_p = "under_water"; alias_snow setPosASL [getPosASL player #0,getPosASL player #1,1]}; + if (getPosASL player select 2 < -3) exitWith {pos_p = "deep_sea"}; + if ((player != vehicle player)&&(getPosASL player select 2 > 0)) exitWith {pos_p = "player_car"; /*alias_snow attachTo [player,[0,0,15]]*/}; + pos_p = "open"; +}; +while {!isNull player} do {while {al_snowstorm_om} do {player call KK_fnc_inHouse;/* player sideChat (format ["%1",pos_p]);*/ sleep 0.5};waitUntil {sleep 10; al_snowstorm_om}}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_snow.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_snow.sqf new file mode 100644 index 0000000000..02a4bf9055 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_snow.sqf @@ -0,0 +1,23 @@ +// by ALIAS +// SNOW STORM SCRIPT DEMO +// Tutorial: https://www.youtube.com/aliascartoons + +if (!isServer) exitWith {}; +params ["_snowfall","_duration_storm","_ambient_sounds_al","_breath_vapors","_snow_burst","_effect_on_objects","_vanilla_fog","_local_fog","_intensifywind","_unitsneeze"]; +[] execVM "AL_snowstorm\alias_hunt.sqf"; waitUntil {!isNil "hunt_alias"}; +if (_vanilla_fog) then {al_foglevel = fog; publicVariable "al_foglevel"; 60 setFog [1,0.01,0.5]}; +[_duration_storm] spawn {params ["_duration_storm"];al_snowstorm_om=true; publicvariable "al_snowstorm_om"; sleep _duration_storm; al_snowstorm_om=false; publicvariable "al_snowstorm_om"; if (!isNil "al_foglevel") then {60 setFog al_foglevel}}; +sleep 5; +["AL_snowstorm\al_check_pos.sqf"] remoteExec ["execVM",0,true]; +if (_local_fog) then {["AL_snowstorm\medium_fog.sqf"] remoteExec ["execVM",0,true]}; +if (_ambient_sounds_al>0) then {[_ambient_sounds_al] execvm "AL_snowstorm\umblator.sqf"}; +if (_breath_vapors) then {["AL_snowstorm\snow_breath.sqf"] remoteExec ["execVM",0,true]}; +if (_unitsneeze) then {["AL_snowstorm\al_unit_seeze.sqf"] remoteExec ["execVM",0,true]}; +if (_snowfall) then {["AL_snowstorm\alias_snowfall_SFX.sqf"] remoteExec ["execVM",0,true]}; +if (_snow_burst>0.5) then {[_effect_on_objects] execvm "AL_snowstorm\rotocol_server.sqf"; interval_burst = _snow_burst; publicVariable "interval_burst"; sleep 10; [[_unitsneeze],"AL_snowstorm\rotocol_client.sqf"] remoteExec ["execVM",0,true]}; +if (_intensifywind) then { + ["AL_snowstorm\intens_sound.sqf"] remoteExec ["execVM",0,true]; + al_windlevel = wind; for "_i" from 1 to 5 step 0.2 do {setWind [(al_windlevel#0)*_i,(al_windlevel#1)*_i,true]; sleep 4}; + waitUntil {sleep 60; !al_snowstorm_om}; + al_windlevel = wind; for "_i" from 1 to 5 step 0.1 do {setWind [(al_windlevel#0)/_i,(al_windlevel#1)/_i,true]; sleep 4}; +}; diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_trembling.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_trembling.sqf new file mode 100644 index 0000000000..1412c6b79a --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_trembling.sqf @@ -0,0 +1,86 @@ +// by ALIAS + +if ((!hasInterface)or(pos_p!="open")) exitWith {}; +params ["_pozitie_x","_pozitie_y"]; + +drop [["\A3\data_f\cl_basic",1,0,1],"","Billboard",0.5,(snow_gust#1)/2,[_pozitie_x,_pozitie_y,0],[vit_x,vit_y,0],13,1.3,1,0.1,[1,10,15],[[1,1,1,0],[1,1,1,.1],[1,1,1,0]],[1],1,0,"AL_snowstorm\rotocol_drop.sqf","",hunt_alias,0,true,0.1]; +sleep 0.6; playSound "rafala_1"; + +_fulgi = "#particlesource" createVehiclelocal getposaTL player; +_fulgi setParticleCircle [0,[0,0,0]]; +_fulgi setParticleRandom [0,[10,10,5],[0,0,0],0,0.1,[0,0,0,0.1],0,0]; +_fulgi setParticleParams [["\A3\data_f\ParticleEffects\Universal\Universal.p3d",16,12,8,1],"","Billboard",1,5,[0,0,7],[vit_x,vit_y,0],0,1.7,1,0,[0.1],[[1,1,1,1]],[1],0,0,"","",player]; +_fulgi setDropInterval 0.01; + +_snow_flakes = "#particlesource" createVehiclelocal getposaTL player; +_snow_flakes setParticleCircle [0,[0,0,0]]; +_snow_flakes setParticleRandom [0,[5,5,9],[0,0,0],0,0.1,[0,0,0,0.1],0,0]; +_snow_flakes setParticleParams [["\A3\data_f\ParticleEffects\Universal\Universal.p3d",16,12,8,1],"","Billboard",1,3,[0,0,10],[vit_x*2,vit_y*2,0],3,1.7,1,0,[0.2],[[1,1,1,1]],[1],0.3,1,"","",player]; +_snow_flakes setDropInterval 0.01; + +if (player_act_cold) then { +enableCamShake true; + +0 = ["FilmGrain",2000] spawn +{ + params ["_name","_priority","_effect","_handle"]; + while {_handle = ppEffectCreate [_name, _priority]; _handle < 0} do {_priority = _priority + 1}; + _handle ppEffectEnable true; + for "_i" from 0 to 0.1 step 0.01 do + { + _handle ppEffectAdjust [_i,1,5,0.5,0.3,0]; + sleep 0.3; + //hint str _i; + _handle ppEffectCommit 0; + }; + sleep 5; + _i=0.1; + //systemChat "grain"; + while {_i>0} do + { + _i = _i-0.01; + _handle ppEffectAdjust [_i,1,5,0.5,0.3,0]; + //hint str _i; + sleep 0.5; + _handle ppEffectCommit 0; + }; + //systemChat "distruge grain"; + _handle ppEffectEnable false; + ppEffectDestroy _handle; +}; +if (goggles player=="") then +{ + 0 = ["RadialBlur",100,[0.11,1,0.33,0.16]] spawn + { + params ["_name", "_priority", "_effect", "_handle"]; + while { _handle = ppEffectCreate [_name, _priority];_handle < 0} do {_priority = _priority + 1}; + sleep 2; + call BIS_fnc_fatigueEffect; + _handle ppEffectEnable true; + _handle ppEffectAdjust _effect; + _handle ppEffectCommit 4; + waitUntil {ppEffectCommitted _handle}; + call BIS_fnc_fatigueEffect; + //systemChat "admire effect for a sec"; + _i = 0.11; + sleep 2; + while {_i>0} do + { + _i = _i-0.01; + _handle ppEffectAdjust [_i,1,0.33,0.16]; + //hint str _i; + sleep 0.5; + _handle ppEffectCommit 0; + }; + //sleep 4; + //systemChat "effect distrus"; + _handle ppEffectEnable false; + ppEffectDestroy _handle; + }; +}; + +sleep 1; +_tremurici = selectRandom ["tremurat_1","tremurat_2","NoSound","tremurat_3","tremurat_4","rafala_8"]; playSound _tremurici;addCamShake [0.5,(snow_gust#1)*2,25]}; +sleep (snow_gust#1)/2; +deleteVehicle _snow_flakes; +deleteVehicle _fulgi; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_unit_seeze.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_unit_seeze.sqf new file mode 100644 index 0000000000..c3902b218c --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_unit_seeze.sqf @@ -0,0 +1,13 @@ +// by ALIAS +if (!hasInterface) exitWith {}; +private ["_sik_unit"]; +sneeze = true; +while {sneeze} do { + if (pos_p in ["open","in_da_house","player_car"]) then + { + enableCamShake true; + if (eyePos player select 2 > 0) then {_tuse = selectRandom ["tuse_1","tuse_2","tuse_3","tuse_4","tuse_5","tuse_6"];_sik_unit=selectrandom allUnits; [_sik_unit,[_tuse,100]] remoteExec ["say3d",0]}; + if (player == _sik_unit) then {addCamShake [5,1,7]} + }; + sleep 120+random 900;// >> you can tweak sleep value if you want to hear playable units coughing more or less often +}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/alias_hunt.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/alias_hunt.sqf new file mode 100644 index 0000000000..9a2bb6d8a4 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/alias_hunt.sqf @@ -0,0 +1,13 @@ +// by ALIAS +// nul = [] execVM "AL_snowstorm\alias_hunt.sqf"; + +if (!isServer) exitWith {}; +if (!isNil "hunt_alias") exitwith {}; + +while {true} do +{ + _allunits = []; + {if (alive _x) then {_allunits pushBack _x};} foreach (if (isMultiplayer) then {playableUnits} else {switchableUnits}); + hunt_alias = selectRandom _allunits; publicVariable "hunt_alias"; + sleep 60; +}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/alias_snowfall_SFX.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/alias_snowfall_SFX.sqf new file mode 100644 index 0000000000..4abe622552 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/alias_snowfall_SFX.sqf @@ -0,0 +1,61 @@ +// by ALIAS +// Tutorial: https://www.youtube.com/user/aliascartoons + +if (!hasInterface) exitWith {}; + +waitUntil {!isNil "pos_p"}; +//al_snow =true; pos_p = "open"; +while {al_snowstorm_om} do +{ + if (pos_p=="open") then + { + _fulg_nea = "#particlesource" createVehiclelocal getposaTL player; + _fulg_nea setParticleCircle [0,[0,0,0]]; + _fulg_nea setParticleRandom [0,[20,20,9],[0,0,0],0,0.1,[0,0,0,0.1],0,0]; + _fulg_nea setParticleParams [["\A3\data_f\ParticleEffects\Universal\Universal.p3d",16,12,8,1],"","Billboard",1,7,[0,0,10],[0,0,0],3,1.7,1,1,[0.1],[[1,1,1,1]],[1],0.3,1,"","",player]; + _fulg_nea setDropInterval 0.005; + waitUntil {pos_p!="open"}; + deleteVehicle _fulg_nea; + }; + if (pos_p=="player_car") then + { + _fulg_nea = "#particlesource" createVehiclelocal getposaTL player; + _fulg_nea setParticleCircle [0,[0,0,0]]; + _fulg_nea setParticleRandom [0,[20,20,9],[0,0,0],0,0.1,[0,0,0,0.1],0,0]; + _fulg_nea setParticleParams [["\A3\data_f\ParticleEffects\Universal\Universal.p3d",16,12,8,1],"","Billboard",1,7,[0,0,10],[0,0,0],3,1.7,1,1,[0.1],[[1,1,1,1]],[1],0.3,1,"","",player]; + _fulg_nea setDropInterval 0.005; + waitUntil {pos_p!="player_car"}; + deleteVehicle _fulg_nea; +/* + _fulg_nea = "#particlesource" createVehiclelocal getposasl alias_snow; + _fulg_nea setParticleCircle [20,[0,0,0]]; + _fulg_nea setParticleRandom [0,[5,5,1],[0,0,0],0,0.1,[0,0,0,0.1],0,0]; + _fulg_nea setParticleParams [["\A3\data_f\ParticleEffects\Universal\Universal.p3d",16,12,8,1],"","Billboard",1,6,[0,0,0],[0,0,0],3,1.5,1,0,[0.1],[[1,1,1,1]],[1],1,0,"","",alias_snow]; + _fulg_nea setDropInterval 0.005; + waitUntil {pos_p!="player_car"}; + deleteVehicle _fulg_nea; +*/ + }; + if (pos_p=="under_water") then + { + _fulg_nea = "#particlesource" createVehiclelocal getposasl alias_snow; + _fulg_nea setParticleCircle [0,[0,0,0]]; + _fulg_nea setParticleRandom [0,[25,25,0],[0,0,0],0,0.1,[0,0,0,0.1],1,1]; + _fulg_nea setParticleParams [["\A3\data_f\ParticleEffects\Universal\Universal.p3d",16,12,8,1],"","Billboard",1,4,[0,0,15],[0,0,0],3,2,1,0.7,[0.1],[[1,1,1,1]],[1],1,1,"","",alias_snow]; + _fulg_nea setDropInterval 0.005; + waitUntil {pos_p!="under_water"}; + deleteVehicle _fulg_nea; + }; + if (pos_p=="deep_sea") then {waitUntil {pos_p!="deep_sea"}}; + if (pos_p=="in_da_house") then + { + _fulg_nea_1 = "#particlesource" createVehiclelocal getposATL cladire; + _fulg_nea_1 setParticleCircle [raza_snow,[0,0,0]]; + _fulg_nea_1 setParticleRandom [0,[5,5,0],[0,0,0],0,0,[0,0,0,0],0,0.5]; + _fulg_nea_1 setParticleParams [["\A3\data_f\ParticleEffects\Universal\Universal.p3d",16,12,8,1],"","Billboard",1,0.2,[0,0,1],[0,0,0],3,2,1,0,[0.1],[[1,1,1,1]],[1],0,1,"","AL_snowstorm\snow_drop.sqf",cladire,0,true]; + _fulg_nea_1 setDropInterval 0.01; + waitUntil {pos_p!="in_da_house"}; + deleteVehicle _fulg_nea_1; + }; +}; +//al_snow =false; pos_p = "open"; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/cloud_drop.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/cloud_drop.sqf new file mode 100644 index 0000000000..078a024d11 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/cloud_drop.sqf @@ -0,0 +1,2 @@ +// by ALIAS +drop [["\A3\data_f\cl_basic",1,0,1],"","Billboard",1,10,_this getRelPos [5,random 360],[3,3,0],13,10,7.5,0.1,[10,15,25],[[1,1,1,0],[1,1,1,0.1],[1,1,1,0]],[0],1,0,"","",_this]; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/intens_sound.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/intens_sound.sqf new file mode 100644 index 0000000000..2466b72ae6 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/intens_sound.sqf @@ -0,0 +1,5 @@ +// by ALIAS + +if (!hasInterface) exitWith {}; + +while {al_snowstorm_om} do {playSound "bcg_wind";sleep 42}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/medium_fog.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/medium_fog.sqf new file mode 100644 index 0000000000..58d15539cd --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/medium_fog.sqf @@ -0,0 +1,40 @@ +// by ALIAS +// null=[] execvm "AL_localfog\medium_fog.sqf"; + +if (!hasInterface) exitWith {}; +waitUntil {!isNil "pos_p"}; +while {(!isNull player) and (al_snowstorm_om)} do +{ + if (pos_p=="open") then + { + _alias_local_fog = "#particlesource" createVehicleLocal (getpos player); + _alias_local_fog setParticleCircle [10,[3,3,0]]; + _alias_local_fog setParticleRandom [2,[0.25,0.25,0],[1,1,0],1,1,[0,0,0,0.1],0,0]; + _alias_local_fog setParticleParams [["\A3\data_f\cl_basic",1,0,1],"","Billboard",1,8,[0,0,0],[-1,-1,0],3,10.15,7.9,0.03,[5,10,10],[[0.5,0.5,0.5,0],[0.5,0.5,0.5,0.1],[1,1,1,0]],[1],1, 0,"","",player]; + _alias_local_fog setDropInterval 0.1; + waitUntil {pos_p!="open"}; + deleteVehicle _alias_local_fog; + }; + if (pos_p=="player_car") then + { + _alias_local_fog = "#particlesource" createVehicleLocal (getpos player); + _alias_local_fog setParticleCircle [30,[3,3,0]]; + _alias_local_fog setParticleRandom [0,[0.25,0.25,0],[1,1,0],1,1,[0,0,0,0.1],0,0]; + _alias_local_fog setParticleParams [["\A3\data_f\cl_basic",1,0,1],"","Billboard",1,4,[0,0,0],[-1,-1,0],3,10.15,7.9,0.03,[5,10,20],[[0.5,0.5,0.5,0],[0.5,0.5,0.5,0.1],[1,1,1,0]],[1],1, 0,"","",player]; + _alias_local_fog setDropInterval 0.1; + waitUntil {pos_p!="player_car"}; + deleteVehicle _alias_local_fog; + }; + if (pos_p=="in_da_house") then + { + _alias_local_fog = "#particlesource" createVehicleLocal (getpos player); + _alias_local_fog setParticleCircle [raza_snow,[3,3,0]]; + _alias_local_fog setParticleRandom [0,[0.25,0.25,0],[1,1,0],1,1,[0,0,0,0.1],0,0]; + _alias_local_fog setParticleParams [["\A3\data_f\cl_basic",1,0,1],"","Billboard",1,4,[0,0,0],[-1,-1,0],3,10.15,7.9,0.03,[5,10,20],[[0.5,0.5,0.5,0],[0.5,0.5,0.5,0.1],[1,1,1,0]],[1],1, 0,"","",player]; + _alias_local_fog setDropInterval 0.1; + waitUntil {pos_p!="in_da_house"}; + deleteVehicle _alias_local_fog; + }; + if (pos_p=="under_water") then {waitUntil {sleep 5; pos_p!="under_water"}}; + if (pos_p=="deep_sea") then {waitUntil {sleep 5; pos_p!="deep_sea"}}; +}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rem_breath.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rem_breath.sqf new file mode 100644 index 0000000000..549b6dd3c9 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rem_breath.sqf @@ -0,0 +1,6 @@ +// by ALIAS +if (!hasInterface) exitWith {}; +params ["_alias_breath","_flow"]; +drop [["\A3\data_f\ParticleEffects\Universal\Universal",16,12,8,1],"","Billboard",0.15,0.3,[0,0,0],[_flow#0,_flow#1,-0.2],3,1.2,1,0.7,[0.1,.2,.3],[[1,1,1,0.05],[1,1,1,0.2],[1,1,1,0.05]],[0.1],0,0.04,"","AL_snowstorm\al_breath.sqf",_alias_breath,90]; +sleep 0.15; +drop [["\A3\data_f\ParticleEffects\Universal\Universal",16,12,8,1],"","Billboard",0.15,0.3,[0,0,0],[_flow#0/2,_flow#1/2,-0.2],3,1.2,1,0.7,[0.1,.2,.3],[[1,1,1,0.05],[1,1,1,0.2],[1,1,1,0]],[0.1],0,0.04,"","",_alias_breath,90]; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_client.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_client.sqf new file mode 100644 index 0000000000..18b55360b5 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_client.sqf @@ -0,0 +1,18 @@ +// by ALIAS +// Tutorial: https://www.youtube.com/user/aliascartoons + +if (!hasInterface) exitWith {}; +params ["_unit_cold"]; +if (_unit_cold) then {player_act_cold = true} else {player_act_cold = false}; +while {al_snowstorm_om} do +{ + if ((pos_p=="open")&&(player == hunt_alias)) then + { + rafala = true; publicVariable "rafala"; + _pozitie_x = (selectrandom [1,-1])*round(random 50); _pozitie_y = (selectrandom [1,-1])*round(random 50); + [[_pozitie_x,_pozitie_y],"AL_snowstorm\al_trembling.sqf"] remoteExec ["execVM",0]; + sleep (snow_gust#1); + rafala = false; publicVariable "rafala"; + }; + sleep 20+random interval_burst; +}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_drop.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_drop.sqf new file mode 100644 index 0000000000..57bda0bdd9 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_drop.sqf @@ -0,0 +1,16 @@ +// by ALIAS +//drop [["\A3\data_f\ParticleEffects\Universal\Universal",16,13,6,0],"","Billboard",1,3,[_this#0+1+random 3,_this#1+1+random 3,_this#2],[3,3,0],7+random 23,1.2,1,0.02+random 0.09,[1,8,16],[[1,1,1,0],[1,1,1,random 0.3],[1,1,1,0]],[1000],1,1,"","",_this,random 360]; +//hint str snow_gust; +_snow_fog = "#particlesource" createVehicleLocal [_this#0,_this#1,_this#2]; +_snow_fog setParticleCircle [5+random 10,[0,0,0]]; +_snow_fog setParticleRandom [1,[1,1,0.1],[0,0,0],0,0.01,[0,0,0,0.01],1,1]; +_snow_fog setParticleParams [["\A3\data_f\cl_basic",1,0,1],"","Billboard",1,5,[0,0,0],[vit_x,vit_y,0],15,10,8,0.07,[1,5,10],[[1,1,1,0.01],[1,1,1,0.02],[1,1,1,0]],[1],1,0,"","",[_this#0,_this#1,_this#2]]; +_snow_fog setDropInterval 0.01; +[_snow_fog] spawn {params["_snow_fog"];sleep 0.4;deleteVehicle _snow_fog}; + +_snow_cloud = "#particlesource" createVehicleLocal [_this#0,_this#1,_this#2]; +_snow_cloud setParticleCircle [3,[0,0,0]]; +_snow_cloud setParticleRandom [0.1,[1,1,0.1],[0,0,0],0,0.01,[0,0,0,0.01],1,0]; +_snow_cloud setParticleParams [["\A3\data_f\ParticleEffects\Universal\Universal",16,13,6,0],"","Billboard",1,2,[0,0,0],[vit_x,vit_y,0],7+random 33,1.2,1,0.02+random 0.09,[1,1,5,8],[[1,1,1,0],[1,1,1,0],[1,1,1,0.1],[1,1,1,0]],[1000],1,0,"","",[_this#0,_this#1,_this#2]]; +_snow_cloud setDropInterval 0.1; +[_snow_cloud] spawn {params["_snow_cloud"];sleep 1;deleteVehicle _snow_cloud}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_server.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_server.sqf new file mode 100644 index 0000000000..fcde244884 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/rotocol_server.sqf @@ -0,0 +1,9 @@ +// by ALIAS +params ["_effect_on_objects"];//rotocol = true; publicVariable "rotocol"; +while {al_snowstorm_om} do +{ + snow_gust=selectrandom [["rafala_1",12],["rafala_2",8.5],["rafala_3",17],["rafala_5",13],["rafala_6",16],["rafala_7",13.5]]; publicVariable "snow_gust"; + vit_x = (selectrandom [1,-1])*round(2+random 5); vit_y = (selectrandom [1,-1])*round(2+random 5); publicVariable "vit_x";publicVariable "vit_y"; + if (_effect_on_objects) then {[vit_x,vit_y] execvm "AL_snowstorm\al_blow_objects.sqf"}; + sleep 60; +}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/snow_breath.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/snow_breath.sqf new file mode 100644 index 0000000000..d97c2b4008 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/snow_breath.sqf @@ -0,0 +1,18 @@ +// by ALIAS +// Tutorial: https://www.youtube.com/user/aliascartoons +private ["_footmobile","_alias_breath"]; +if (!hasInterface) exitWith {}; +_alias_breath = "Land_HelipadEmpty_F" createVehiclelocal [0,0,0]; +_alias_breath attachto [player,[0,0.2,0],"head"]; +while {!isnull player} do +{ + if ((alive player)&&(eyePos player select 2 > 0)) then + { + _footmobile= player nearEntities ["Man",20]; + _alias_breath attachto [selectrandom _footmobile,[0,0.1,0],"head"]; + _flow = (getposasl _alias_breath vectorFromTo (_alias_breath getRelPos [10,90])) vectorMultiply 0.5; + drop [["\A3\data_f\ParticleEffects\Universal\Universal",16,12,8,1],"","Billboard",0.15,0.3,[0,0,0],[_flow#0,_flow#1,-0.2],3,1.2,1,0,[0.1,.2,.3],[[1,1,1,0.05],[1,1,1,0.2],[1,1,1,0.05]],[0.1],0,0.04,"","AL_snowstorm\al_breath.sqf",_alias_breath,90]; + sleep 0.15; drop [["\A3\data_f\ParticleEffects\Universal\Universal",16,12,8,1],"","Billboard",0.15,0.3,[0,0,0],[_flow#0/2,_flow#1/2,-0.2],3,1.2,1,0,[0.1,.2,.3],[[1,1,1,0.05],[1,1,1,0.1],[1,1,1,0]],[0.1],0,0.04,"","",_alias_breath,90]; + sleep 5+random 5; + } else {sleep 10}; +}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/snow_drop.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/snow_drop.sqf new file mode 100644 index 0000000000..8dfad46b5f --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/snow_drop.sqf @@ -0,0 +1,3 @@ +// by ALIAS +drop [["\A3\data_f\ParticleEffects\Universal\Universal.p3d",16,12,8,1],"","Billboard",1,4,[_this#0,_this#1,_this#2+25],[0,0,0],0,1.8,1,0,[0.2],[[1,1,1,1]],[1],1,1,"","",_this]; +//drop [["\A3\data_f\ParticleEffects\Universal\Universal",16,13,6,0],"","Billboard",1,5,[_this#0,_this#1,_this#2+25],[0,0,0],1,1.8,1,0.08,[10,10],[[1,1,1,0],[1,1,1,1],[1,1,1,0]],[1000],1,1,"","",_this]; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/umblator.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/umblator.sqf new file mode 100644 index 0000000000..82563cca69 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/umblator.sqf @@ -0,0 +1,21 @@ +// by Alias +// nul = [] execvm "scriptsmisc\umblator.sqf"; +params ["_ambient_sounds_al"]; + +_soundPath = [(str missionConfigFile), 0, -15] call BIS_fnc_trimString; +lup_01 = _soundPath + "sound\lup_01.ogg"; +lup_02 = _soundPath + "sound\lup_02.ogg"; +lup_03 = _soundPath + "sound\lup_03.ogg"; +//p_location = ["open","in_da_house","player_car"]; + +while {al_snowstorm_om} do +{ +// >> you can tweak sleep value if you want to hear ambient sounds more or less often + sleep 120+random _ambient_sounds_al; + if (pos_p in ["open","in_da_house","player_car"]) then + { + _natura = selectRandom [lup_01,lup_02,lup_03]; + _relpos = hunt_alias getRelPos [100+random 200,360]; + playSound3D [_natura,"",false,[_relpos#0,_relpos#1,50+random 100],0.2,0.7,2000] + }; +}; \ No newline at end of file diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/PIC.jpg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/PIC.jpg new file mode 100644 index 0000000000..b3be8600e1 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/PIC.jpg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/description.ext b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/description.ext new file mode 100644 index 0000000000..e1a4015741 --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/description.ext @@ -0,0 +1,318 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_chernawinter_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_chernawinter_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_chernawinter_mapname_text; +overviewText = $STR_antistasi_mission_info_chernawinter_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; + // Start Snow Script sounds + class bcg_wind + { + name = "bcg_wind"; + sound[] = {"\sound\bcg_wind.ogg", 0.3, 1}; + titles[] = {1, ""}; + }; + class bcg_wind_mild + { + name = "bcg_wind_mild"; + sound[] = {"\sound\bcg_wind_mild.ogg", 0.05, 1}; + titles[] = {1, ""}; + }; + class rafala_1 + { + name = "rafala_1"; + sound[] = {"\sound\rafala_1.ogg",1,1}; + titles[] = {1, ""}; + }; + class rafala_2 + { + name = "rafala_2"; + sound[] = {"\sound\rafala_2.ogg",1,1}; + titles[] = {1, ""}; + }; + class rafala_3 + { + name = "rafala_3"; + sound[] = {"\sound\rafala_3.ogg",1,1}; + titles[] = {1, ""}; + }; + class rafala_6 + { + name = "rafala_6"; + sound[] = {"\sound\rafala_6.ogg",1,1}; + titles[] = {1, ""}; + }; + class rafala_7 + { + name = "rafala_7"; + sound[] = {"\sound\rafala_7.ogg",1,1}; + titles[] = {1, ""}; + }; + class rafala_8 + { + name = "rafala_8"; + sound[] = {"\sound\rafala_8.ogg",1,1}; + titles[] = {1, ""}; + }; + class rafala_5 + { + name = "rafala_9"; + sound[] = {"\sound\rafala_9.ogg",1,1}; + titles[] = {1, ""}; + }; + class tree_crack_1 + { + name = "tree_crack_1"; + sound[] = {"\sound\tree_crack_1.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class tree_crack_2 + { + name = "tree_crack_2"; + sound[] = {"\sound\tree_crack_2.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class tree_crack_3 + { + name = "tree_crack_3"; + sound[] = {"\sound\tree_crack_3.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class tree_crack_4 + { + name = "tree_crack_4"; + sound[] = {"\sound\tree_crack_4.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class tree_crack_5 + { + name = "tree_crack_5"; + sound[] = {"\sound\tree_crack_5.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class tree_crack_6 + { + name = "tree_crack_6"; + sound[] = {"\sound\tree_crack_6.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class tree_crack_7 + { + name = "tree_crack_7"; + sound[] = {"\sound\tree_crack_7.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class tree_crack_8 + { + name = "tree_crack_8"; + sound[] = {"\sound\tree_crack_8.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class tree_crack_9 + { + name = "tree_crack_9"; + sound[] = {"\sound\tree_crack_9.ogg", db+5, 1}; + titles[] = {1, ""}; + }; + class lup_01 + { + name = "lup_01"; + sound[] = {"\sound\lup_01.ogg", 1, 1}; + titles[] = {}; + }; + class lup_02 + { + name = "lup_02"; + sound[] = {"\sound\lup_02.ogg", 1, 1}; + titles[] = {}; + }; + class lup_03 + { + name = "lup_03"; + sound[] = {"\sound\lup_03.ogg", 1, 1}; + titles[] = {}; + }; + class tremurat_1 + { + name = "tremurat_1"; + sound[] = {"\sound\tremurat_1.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class tremurat_2 + { + name = "tremurat_2"; + sound[] = {"\sound\tremurat_2.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class tremurat_3 + { + name = "tremurat_3"; + sound[] = {"\sound\tremurat_3.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class tremurat_4 + { + name = "tremurat_4"; + sound[] = {"\sound\tremurat_4.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class NoSound + { + name = "NoSound"; + sound[] = {"", 0, 1}; + titles[] = {0, ""}; + }; + class tuse_1 + { + name = "tuse_1"; + sound[] = {"\sound\tuse_1.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class tuse_2 + { + name = "tuse_2"; + sound[] = {"\sound\tuse_2.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class tuse_3 + { + name = "tuse_3"; + sound[] = {"\sound\tuse_3.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class tuse_4 + { + name = "tuse_4"; + sound[] = {"\sound\tuse_4.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class tuse_5 + { + name = "tuse_5"; + sound[] = {"\sound\tuse_5.ogg", 1, 1}; + titles[] = {1, ""}; + }; + class tuse_6 + { + name = "tuse_6"; + sound[] = {"\sound\tuse_6.ogg", 1, 1}; + titles[] = {1, ""}; + }; + // End Snow Script Sounds +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Chernarus is Ours!"; + description = "The population of Chernarus loves you!
The SDK brave soldiers have proven their valour, and Petros, Chernarus 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 Chernarus"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Chernarus is Destroyed"; + subtitle = "Chernarus got Destroyed by Soviets"; + description = "One third of the population in Chernarus has been murdered by the Soviets.
Chernarus no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/mission.sqm b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/mission.sqm new file mode 100644 index 0000000000..eb39b4d5fe --- /dev/null +++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/mission.sqm @@ -0,0 +1,7889 @@ +version=53; +class EditorData +{ + moveGridStep=1; + angleGridStep=0.2617994; + scaleGridStep=1; + autoGroupingDist=10; + toggles=1; + class ItemIDProvider + { + nextID=302; + }; + class LayerIndexProvider + { + nextID=42; + }; + class Camera + { + pos[]={8397.6348,364.55566,5928.7485}; + dir[]={0.10471021,-0.71442097,0.69185412}; + up[]={0.10690976,0.69970715,0.70638883}; + aside[]={0.9887526,-3.772584e-008,-0.1496447}; + }; +}; +binarizationWanted=0; +addons[]= +{ + "A3_Ui_F", + "A3_Modules_F", + "A3_Characters_F", + "A3_Weapons_F", + "A3_Characters_F_Tank", + "A3_Structures_F_EPC_Civ_InfoBoards", + "A3_Structures_F_Mil_Flags", + "A3_Props_F_Enoch_Military_Camps", + "A3_Ui_F_Exp", + "A3_Characters_F_Patrol", + "A3_Characters_F_Exp", + "A3_Structures_F_Exp_Military_Flags", + "A3_Structures_F_Mil_Helipads", + "A3_Weapons_F_Ammoboxes", + "A3_Modules_F_Curator_Curator", + "A3_Modules_F_Hc" +}; +class AddonsMetaData +{ + class List + { + items=13; + class Item0 + { + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item1 + { + className="A3_Modules_F"; + name="Arma 3 Alpha - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item2 + { + className="A3_Characters_F"; + name="Arma 3 Alpha - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item3 + { + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item4 + { + className="A3_Characters_F_Tank"; + name="Arma 3 Tank - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item5 + { + className="A3_Structures_F_EPC"; + name="Arma 3 Win Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item6 + { + className="A3_Structures_F_Mil"; + name="Arma 3 - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item7 + { + className="A3_Props_F_Enoch"; + name="Arma 3 Enoch - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item8 + { + className="A3_Ui_F_Exp"; + name="Arma 3 Apex - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item9 + { + className="A3_Characters_F_Patrol"; + name="Arma 3 Patrol - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item10 + { + className="A3_Characters_F_Exp"; + name="Arma 3 Apex - Characters and Clothing"; + 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_Modules_F_Curator"; + name="Arma 3 Zeus Update - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + }; +}; +randomSeed=5703879; +class Mission +{ + class Intel + { + briefingName=$STR_antistasi_mission_info_chernawinter_mapname_text; + resistanceWest=0; + timeOfChanges=1800.0002; + startWeather=0.25; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.25; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2008; + month=10; + day=11; + hour=9; + minute=20; + startFogDecay=0.014; + forecastFogDecay=0.014; + }; + class Entities + { + items=56; + class Item0 + { + dataType="Marker"; + position[]={11717.027,168.6429,12767.836}; + name="spawnPoint"; + type="hd_start"; + angle=208.38397; + id=0; + }; + class Item1 + { + dataType="Marker"; + position[]={4542.5249,338.95764,9809.752}; + name="spawnPoint_1"; + type="hd_start"; + angle=186.4299; + id=1; + atlOffset=-3.0517578e-005; + }; + class Item2 + { + dataType="Marker"; + position[]={4790.5801,6.1999998,2354.9768}; + name="spawnPoint_2"; + type="hd_start"; + angle=123.45325; + id=2; + }; + class Item3 + { + dataType="Marker"; + position[]={24.060547,5.4168329,1591.719}; + name="NATO_carrier"; + type="flag_NATO"; + id=3; + }; + class Item4 + { + dataType="Marker"; + position[]={2301.6494,520.74011,15327.807}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=4; + atlOffset=-6.1035156e-005; + }; + class Item5 + { + dataType="Marker"; + position[]={8398.3877,293.75073,5999.4268}; + name="Synd_HQ"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorPink"; + a=50; + b=50; + id=5; + atlOffset=1.5302124; + }; + class Item6 + { + dataType="Marker"; + position[]={8399.7207,2.7037606e+012,6001.6055}; + name="respawn_guerrila"; + text="Your Headquarters"; + type="hd_flag"; + colorName="ColorGUER"; + id=6; + atlOffset=2.7037606e+012; + }; + class Item7 + { + dataType="Logic"; + class PositionInfo + { + position[]={8396.1387,291.953,5992.7451}; + angles[]={6.2511988,0,6.2818484}; + }; + name="server"; + id=8; + type="Logic"; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={8397.7129,291.94305,5991.333}; + angles[]={0,0,6.2818937}; + }; + name="garrison"; + id=9; + type="Logic"; + }; + class Item9 + { + dataType="Logic"; + class PositionInfo + { + position[]={8399.5,291.94067,5989.9121}; + angles[]={0,0,6.2818937}; + }; + name="spawner"; + id=10; + type="Logic"; + }; + class Item10 + { + dataType="Logic"; + class PositionInfo + { + position[]={8391.9063,291.95163,5990.0449}; + angles[]={0,0,6.2805333}; + }; + name="hc"; + isPlayable=1; + id=11; + type="HeadlessClient_F"; + atlOffset=3.0517578e-005; + }; + class Item11 + { + dataType="Logic"; + class PositionInfo + { + position[]={8401.375,291.93817,5988.5811}; + angles[]={0,0,6.2818937}; + }; + name="roadsX"; + id=12; + type="Logic"; + }; + class Item12 + { + dataType="Logic"; + class PositionInfo + { + position[]={8402.791,291.93628,5987.4971}; + angles[]={0,0,6.2818937}; + }; + name="timer"; + id=15; + type="Logic"; + }; + class Item13 + { + dataType="Logic"; + class PositionInfo + { + position[]={8404.0605,291.93457,5986.2451}; + angles[]={0,0,6.2818937}; + }; + name="sidesX"; + id=16; + type="Logic"; + }; + class Item14 + { + dataType="Logic"; + class PositionInfo + { + position[]={8404.9717,291.93338,5985.4131}; + angles[]={0,0,6.2818937}; + }; + name="killZones"; + id=17; + type="Logic"; + }; + class Item15 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=60; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8400.083,292.07764,5995.7441}; + angles[]={6.2405434,0,6.2818484}; + }; + side="Independent"; + flags=6; + class Attributes + { + skill=1; + name="commanderX"; + description="Default Commander"; + isPlayer=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=19; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={8403.6162,291.93661,5992.2197}; + angles[]={0,6.2412972,6.2818937}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=20; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.0752,291.93152,5998.3721}; + angles[]={0,6.2412972,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=21; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={8421.0791,291.93954,5998.2588}; + angles[]={0,0,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=22; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={8426.9658,291.94739,5998.6572}; + angles[]={0,0,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=24; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.6143,291.93143,5998.3115}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=25; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={8414.9727,292.16516,6001.167}; + angles[]={6.0768309,6.2412972,0.0066682254}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=26; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={8420.9766,292.14963,6001.0537}; + angles[]={6.0768313,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=27; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={8426.8633,292.22964,6001.4521}; + angles[]={6.084507,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=29; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.5117,292.14563,6001.1064}; + angles[]={6.0832248,0,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=30; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={8420.9766,292.75793,6004.0547}; + angles[]={6.084507,0,6.276526}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=31; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={8426.8633,292.80853,6004.4531}; + angles[]={6.1038036,0,6.2645183}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=33; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.5117,292.76434,6004.1074}; + angles[]={6.0768309,0,0.0066682254}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=34; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={8420.8721,293.27954,6006.6416}; + angles[]={6.084507,0,6.276526}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=35; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={8426.7598,293.27954,6007.04}; + angles[]={6.1038036,0,6.2645183}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=37; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.4072,293.30515,6006.6943}; + angles[]={6.0768309,0,0.0066682254}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=38; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.0713,292.81781,6004.2832}; + angles[]={6.0768313,6.1574922,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=39; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.167,293.35944,6006.8701}; + angles[]={6.0768313,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=40; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={8421.2051,293.91937,6009.2676}; + angles[]={6.0238295,0,6.2738504}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=41; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={8427.0918,293.92734,6009.666}; + angles[]={6.0238295,0,6.2645183}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=43; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.7402,293.93967,6009.3203}; + angles[]={6.0325699,0,0.0066682254}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=44; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.499,294.01974,6009.4961}; + angles[]={6.0213375,0,6.2765174}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=45; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={8421.2783,294.73441,6012.3418}; + angles[]={6.0238295,0,6.2738504}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=46; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={8427.165,294.70389,6012.7402}; + angles[]={6.038835,0,6.2485313}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=48; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.8135,294.75909,6012.3945}; + angles[]={6.0213375,0,0.018670246}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=49; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.5723,294.8432,6012.5703}; + angles[]={6.0213375,0,6.2765174}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=50; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={8418.3115,295.57495,6015.3281}; + angles[]={5.9566455,0,6.2738504}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=51; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={8424.1982,295.60916,6015.7266}; + angles[]={5.9602342,0,6.2485328}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=53; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={8409.8467,295.52615,6015.3809}; + angles[]={5.9602342,0,0.018667053}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=54; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.6055,295.63647,6015.5566}; + angles[]={5.9602342,0,0.018667053}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=55; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={8418.1631,296.68182,6018.5928}; + angles[]={5.9566455,0,6.2738504}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=56; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={8424.0498,296.70688,6018.9912}; + angles[]={5.9602342,0,6.2485328}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=58; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={8409.6982,296.616,6018.6455}; + angles[]={5.9602342,0,0.018667053}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=59; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.457,296.73126,6018.8213}; + angles[]={5.9566455,0,0.022662206}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=60; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={8416.9766,297.61957,6021.3379}; + angles[]={5.9602346,0,6.2698579}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=61; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={8422.8633,297.66675,6021.7363}; + angles[]={5.9602342,0,6.2485328}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=63; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={8408.5117,297.51242,6021.3906}; + angles[]={5.9602342,0,0.018667053}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=64; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={8411.2705,297.63391,6021.5664}; + angles[]={5.9566455,0,0.022662206}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=65; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={8409.6201,291.93143,5992.1064}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=66; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.2295,291.93173,5992.7715}; + angles[]={0,0,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=68; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={8418.1494,291.93564,5998.6074}; + angles[]={0,0,0.0012918708}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=69; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={8418.0459,292.21866,6001.4023}; + angles[]={6.0768313,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=70; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={8418.0459,292.84689,6004.4033}; + angles[]={6.0768313,0,0.0013372133}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=71; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={8417.9424,293.3692,6006.9902}; + angles[]={6.084507,0,6.276526}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=72; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={8418.2744,294.03351,6009.6162}; + angles[]={6.0213375,0,6.2765174}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=73; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={8418.3486,294.85431,6012.6904}; + angles[]={6.0238295,0,6.2738504}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=74; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.3818,295.72028,6015.6768}; + angles[]={5.9566455,0,6.2738504}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=75; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={8415.2334,296.82733,6018.9414}; + angles[]={5.9566455,0,6.2738504}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=76; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={8414.0459,297.73758,6021.6865}; + angles[]={5.9566455,0,0.022662206}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=77; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={8406.6895,291.9325,5992.4551}; + angles[]={0,0,6.2818937}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=78; + type="I_G_Soldier_LAT2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={8420.123,297.57895,6021.3428}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=286; + type="I_G_engineer_F"; + atlOffset=-0.00033569336; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={8421.2002,296.67068,6018.6714}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=287; + type="I_G_engineer_F"; + atlOffset=-0.00015258789; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={8421.4307,295.64651,6015.626}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=288; + type="I_G_engineer_F"; + atlOffset=-9.1552734e-005; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={8424.2168,294.74435,6012.5439}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=289; + type="I_G_engineer_F"; + atlOffset=-0.0002746582; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={8424.2646,293.94699,6009.5425}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=290; + type="I_G_engineer_F"; + atlOffset=-0.00033569336; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={8424.2559,293.32309,6007.0225}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=291; + type="I_G_engineer_F"; + atlOffset=-3.0517578e-005; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={8424.2754,292.81985,6004.4004}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=292; + type="I_G_engineer_F"; + atlOffset=3.0517578e-005; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={8423.9922,292.1257,6000.9546}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=293; + type="I_G_engineer_F"; + atlOffset=6.1035156e-005; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={8424.2373,291.94376,5998.2524}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=294; + type="I_G_engineer_F"; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={8412.1709,291.93143,5992.6846}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=296; + type="I_G_engineer_F"; + }; + }; + class Attributes + { + }; + id=18; + }; + class Item16 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8391.5811,292.37164,6001.9639}; + angles[]={6.1703324,2.1016905,0.039982136}; + }; + side="Independent"; + flags=6; + class Attributes + { + name="petros"; + }; + id=80; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute2 + { + property="face"; + expression="_this setface _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=79; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={8395.1602,293.3262,6001.2017}; + angles[]={6.1703324,0,0.0093350215}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="mapX"; + }; + id=81; + type="MapBoard_seismic_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={8393.4746,297.22485,6009.7695}; + angles[]={6.206007,0,0.033321146}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="flagX"; + }; + id=82; + type="Flag_Altis_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Logic"; + class PositionInfo + { + position[]={8393.8984,291.94815,5988.9043}; + angles[]={0,0,6.2818937}; + }; + name="hc_1"; + isPlayable=1; + id=83; + type="HeadlessClient_F"; + }; + class Item20 + { + dataType="Logic"; + class PositionInfo + { + position[]={8395.7451,291.94568,5987.9102}; + angles[]={0,0,6.2818937}; + }; + name="hc_2"; + isPlayable=1; + id=84; + type="HeadlessClient_F"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={8398.2539,293.75775,6007.1611}; + angles[]={6.1467061,1.0016968,0.033321146}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=86; + type="Land_TentSolar_01_olive_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={-0.68359375,28.454832,1694.8362}; + angles[]={0,1.7684679,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + init="if (!isMultiplayer) then {deleteVehicle this};"; + }; + id=87; + type="Flag_NATO_F"; + }; + class Item23 + { + dataType="Marker"; + position[]={-0.34570313,24.331726,1694.2678}; + name="respawn_west"; + type="flag_CTRG"; + id=88; + }; + class Item24 + { + dataType="Group"; + side="West"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.9003906,25.464722,1696.6812}; + angles[]={0,1.7684722,0}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="call{groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}"; + name="pvp_blue_1"; + isPlayable=1; + }; + id=90; + type="B_recon_TL_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-13.785156,25.298214,1692.7612}; + angles[]={0,1.7684722,0}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}"; + name="pvp_blue_4"; + isPlayable=1; + }; + id=91; + type="B_recon_M_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-11.820313,26.920073,1702.5659}; + angles[]={0,1.7684722,0}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}"; + name="pvp_blue_2"; + isPlayable=1; + }; + id=92; + type="B_recon_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-15.742188,28.301579,1708.4507}; + angles[]={0,1.7684722,0}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}"; + name="pvp_blue_5"; + isPlayable=1; + }; + id=93; + type="B_recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-16.351563,25.179548,1690.7456}; + angles[]={6.0913806,1.7684722,6.1752687}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}"; + name="pvp_blue_3"; + isPlayable=1; + }; + id=94; + type="B_Patrol_Soldier_MG_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-17.499023,26.358706,1696.3081}; + angles[]={0,1.7684722,0}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}"; + name="pvp_blue_6"; + isPlayable=1; + }; + id=95; + type="B_recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=89; + atlOffset=1.9073486e-006; + }; + class Item25 + { + dataType="Group"; + side="East"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={2220.9971,522.74261,15365.142}; + angles[]={0,3.1888561,0}; + }; + side="East"; + flags=7; + class Attributes + { + init="call{groupPlayersCSAT = group this;this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}"; + name="pvp_red_1"; + isPlayable=1; + }; + id=97; + type="O_T_Recon_TL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={2226.0171,523.33417,15369.421}; + angles[]={0,3.1888561,0}; + }; + side="East"; + flags=5; + class Attributes + { + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}"; + name="pvp_red_2"; + isPlayable=1; + }; + id=98; + type="O_T_Recon_Medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={2216.5469,523.33881,15369.718}; + angles[]={0,3.1888561,0}; + }; + side="East"; + flags=5; + class Attributes + { + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}"; + name="pvp_red_4"; + isPlayable=1; + }; + id=99; + type="O_T_Recon_M_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={2228.7764,523.62366,15371.507}; + angles[]={0,3.1888561,0}; + }; + side="East"; + flags=5; + class Attributes + { + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}"; + name="pvp_red_5"; + isPlayable=1; + }; + id=100; + type="O_T_Recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2219.5508,522.52655,15363.618}; + angles[]={0,3.1888561,0}; + }; + side="East"; + flags=5; + class Attributes + { + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}"; + name="pvp_red_3"; + isPlayable=1; + }; + id=101; + type="O_Soldier_AR_F"; + atlOffset=6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01PER"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2220.6631,523.10614,15367.927}; + angles[]={0,3.1888561,0}; + }; + side="East"; + flags=5; + class Attributes + { + init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}"; + name="pvp_red_6"; + isPlayable=1; + }; + id=102; + type="O_T_Recon_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=96; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={2221.8018,526.28967,15361.809}; + angles[]={6.1505861,3.1888621,0.012005239}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=103; + type="Flag_Viper_F"; + }; + class Item27 + { + dataType="Marker"; + position[]={2220.9854,541.18561,15365.311}; + name="respawn_east"; + type="flag_Viper"; + id=104; + atlOffset=18.415283; + }; + class Item28 + { + dataType="Logic"; + class PositionInfo + { + position[]={8405.3457,291.93286,5984.3701}; + angles[]={0,0,6.2818937}; + }; + name="pathfinding"; + id=106; + type="Logic"; + }; + class Item29 + { + dataType="Layer"; + name="Airports"; + class Entities + { + items=20; + class Item0 + { + dataType="Marker"; + position[]={12102.352,158.94748,12629.086}; + name="airport"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=390.76028; + b=150; + angle=19.882999; + id=108; + }; + class Item1 + { + dataType="Marker"; + position[]={4720.6934,339,10249.213}; + name="airport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=476.16949; + b=207.12466; + angle=59.539993; + id=109; + }; + class Item2 + { + dataType="Marker"; + position[]={4854.8389,9,2508.3616}; + name="airport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=249.14926; + b=109.36142; + angle=28.48983; + id=110; + }; + class Item3 + { + dataType="Marker"; + position[]={4747.8501,339,10323.666}; + name="airp_1_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=111; + }; + class Item4 + { + dataType="Marker"; + position[]={4737.979,339,10325.293}; + name="airp_1_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=112; + }; + class Item5 + { + dataType="Marker"; + position[]={4748.1665,339,10340.727}; + name="airp_1_mortar_5"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=113; + }; + class Item6 + { + dataType="Marker"; + position[]={4814.9512,8.8466053,2537.0022}; + name="airp_2_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=114; + atlOffset=-9.5367432e-007; + }; + class Item7 + { + dataType="Marker"; + position[]={4805.0781,8.854826,2538.6292}; + name="airp_2_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=115; + atlOffset=9.5367432e-007; + }; + class Item8 + { + dataType="Marker"; + position[]={4811.314,8.7212391,2541.7034}; + name="airp_2_mortar_5"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=116; + atlOffset=-9.5367432e-007; + }; + class Item9 + { + dataType="Marker"; + position[]={12140.395,158.93355,12612.482}; + name="airp_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=117; + }; + class Item10 + { + dataType="Marker"; + position[]={12146.631,158.89999,12615.557}; + name="airp_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=118; + }; + class Item11 + { + dataType="Marker"; + position[]={12150.268,158.89999,12610.855}; + name="airp_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=119; + }; + class Item12 + { + dataType="Marker"; + position[]={4596.8872,339,10405.643}; + name="airp_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=43.498734; + b=23.140686; + angle=237.01163; + id=120; + }; + class Item13 + { + dataType="Marker"; + position[]={4752.6479,339,10154.949}; + name="airp_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=44.02475; + b=23.856892; + angle=236.65263; + id=121; + }; + class Item14 + { + dataType="Marker"; + position[]={4752.1079,9,2536.0999}; + name="airp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.455002; + b=20.924999; + angle=207.52591; + id=122; + }; + class Item15 + { + dataType="Marker"; + position[]={12186.6,158.98801,12641.588}; + name="airp_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=43.499001; + b=23.141001; + angle=200.52629; + id=123; + }; + class Item16 + { + dataType="Marker"; + position[]={12038.494,159,12696.121}; + name="airp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.455002; + b=20.924999; + angle=195.99693; + id=124; + }; + class Item17 + { + dataType="Marker"; + position[]={4655.1528,339,10285.994}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=739.97546; + b=253.8351; + angle=59.967659; + id=125; + }; + class Item18 + { + dataType="Marker"; + position[]={4968.0024,8.8774185,2442.6428}; + name="detectPlayer_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=379.85837; + b=130.2925; + angle=29.909319; + id=126; + }; + class Item19 + { + dataType="Marker"; + position[]={12111.629,158.89999,12629.395}; + name="detectPlayer_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=467.86603; + b=197.88884; + angle=19.954416; + id=127; + }; + }; + id=107; + atlOffset=-156.33533; + }; + class Item30 + { + dataType="Layer"; + name="Outposts"; + class Entities + { + items=32; + class Item0 + { + dataType="Marker"; + position[]={5146.9536,9,2346.1467}; + name="outpost"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=89.797859; + b=108.29008; + angle=210.03189; + id=129; + }; + class Item1 + { + dataType="Marker"; + position[]={4541.6714,58.302071,3155.9612}; + name="outpost_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=122.74355; + b=128.60263; + angle=155.90392; + id=130; + atlOffset=3.8146973e-006; + }; + class Item2 + { + dataType="Marker"; + position[]={11226.336,190.01878,12185.893}; + name="outpost_10"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=64.31974; + b=68.95639; + angle=297.99689; + id=131; + }; + class Item3 + { + dataType="Marker"; + position[]={12923.396,213.40721,12766.637}; + name="outpost_11"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=63.164063; + b=63.14502; + id=132; + atlOffset=3.6555481; + }; + class Item4 + { + dataType="Marker"; + position[]={12940.665,27.022367,6770.7256}; + name="outpost_12"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=59.300125; + b=58.015564; + angle=170.78795; + id=133; + atlOffset=1.9073486e-006; + }; + class Item5 + { + dataType="Marker"; + position[]={13415.155,6.3729405,6196.5908}; + name="outpost_13"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=79.427887; + b=60.68631; + angle=270.85022; + id=134; + atlOffset=1.1397004; + }; + class Item6 + { + dataType="Marker"; + position[]={13467.204,83.76133,3342.4221}; + name="outpost_14"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=89.13623; + b=85.462082; + angle=141.42493; + id=135; + atlOffset=12.116722; + }; + class Item7 + { + dataType="Marker"; + position[]={4404.2393,235.61742,4668.4678}; + name="outpost_15"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=73.771751; + b=104.24509; + angle=99.916; + id=136; + }; + class Item8 + { + dataType="Marker"; + position[]={7561.6616,214.01544,5171.5781}; + name="outpost_16"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=55.869678; + b=48.883904; + angle=179.87862; + id=137; + }; + class Item9 + { + dataType="Marker"; + position[]={6291.5059,301.03229,7718.8447}; + name="outpost_17"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=97.076508; + b=53.799522; + angle=213.73801; + id=138; + }; + class Item10 + { + dataType="Marker"; + position[]={8843.5801,213.99959,11655.313}; + name="outpost_18"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=62.089123; + b=66.317612; + angle=100.45999; + id=139; + }; + class Item11 + { + dataType="Marker"; + position[]={12207.586,25.273645,9414.5215}; + name="outpost_19"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=70; + b=50; + angle=318.96811; + id=140; + }; + class Item12 + { + dataType="Marker"; + position[]={3701.5615,402,5978.4814}; + name="outpost_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=96.04599; + b=86.994995; + angle=47.747215; + id=141; + }; + class Item13 + { + dataType="Marker"; + position[]={4958.8784,339,9856.7969}; + name="outpost_20"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=171.24644; + b=198.93745; + angle=239.93896; + id=142; + }; + class Item14 + { + dataType="Marker"; + position[]={2732.8984,273.95001,9906.3457}; + name="outpost_21"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=55.818733; + b=57.456215; + angle=121.37388; + id=143; + }; + class Item15 + { + dataType="Marker"; + position[]={4411.2671,339,10796.814}; + name="outpost_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=156.02531; + b=203.82967; + angle=239.93896; + id=144; + }; + class Item16 + { + dataType="Marker"; + position[]={6895.9199,394.51971,11440.83}; + name="outpost_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=113.01675; + b=82.41481; + angle=235.19092; + id=145; + }; + class Item17 + { + dataType="Marker"; + position[]={6434.1963,384.97241,6548.6143}; + name="outpost_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=45.783302; + b=46.773125; + angle=130.869; + id=146; + }; + class Item18 + { + dataType="Marker"; + position[]={4732.8467,282.15866,6760.0293}; + name="outpost_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=89.587685; + b=75.625938; + angle=48.989975; + id=147; + atlOffset=11.961243; + }; + class Item19 + { + dataType="Marker"; + position[]={6583.2305,91.891808,3424.4495}; + name="outpost_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=163.08447; + b=153.32703; + id=148; + atlOffset=10.96357; + }; + class Item20 + { + dataType="Marker"; + position[]={10256.91,360.57376,12042.713}; + name="outpost_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=142.01855; + b=94.024902; + id=149; + }; + class Item21 + { + dataType="Marker"; + position[]={11250.537,291.85916,4294.4863}; + name="outpost_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=78.738342; + b=83.958069; + angle=225.59978; + id=150; + atlOffset=1.2372742; + }; + class Item22 + { + dataType="Marker"; + position[]={12211.828,24.928659,9422.4336}; + name="outp_19_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=151; + }; + class Item23 + { + dataType="Marker"; + position[]={3701.7212,402,5966.3359}; + name="outp_2_mortar_6"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=152; + }; + class Item24 + { + dataType="Marker"; + position[]={10289.77,362.7421,12054.119}; + name="outp_8_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=153; + atlOffset=3.0517578e-005; + }; + class Item25 + { + dataType="Marker"; + position[]={11264.801,289.78238,4292.7129}; + name="outp_9_mortar_7"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=154; + }; + class Item26 + { + dataType="Marker"; + position[]={11250.207,189.42242,12165.443}; + name="outp_10_vehicle_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.791; + b=14.319; + angle=297.01099; + id=155; + }; + class Item27 + { + dataType="Marker"; + position[]={12949.435,27.026077,6745.4971}; + name="outp_12_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.625; + b=5.0040002; + angle=257.76401; + id=156; + }; + class Item28 + { + dataType="Marker"; + position[]={13418.524,5.6790943,6167.375}; + name="outp_13_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.691; + b=18.506001; + angle=180.35094; + id=157; + atlOffset=0.38628149; + }; + class Item29 + { + dataType="Marker"; + position[]={4420.1421,235.75182,4664.0146}; + name="outp_15_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.183; + b=5.744; + angle=207.52591; + id=158; + }; + class Item30 + { + dataType="Marker"; + position[]={12167.934,28.432972,9392.6777}; + name="outp_19_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.214; + b=20.924999; + angle=225.60686; + id=159; + }; + class Item31 + { + dataType="Marker"; + position[]={5168.9331,8.8999996,2280.2952}; + name="outp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.455002; + b=20.924999; + angle=207.52591; + id=160; + }; + }; + id=128; + atlOffset=-140.4162; + }; + class Item31 + { + dataType="Layer"; + name="Seaports"; + class Entities + { + items=7; + class Item0 + { + dataType="Marker"; + position[]={3615.9834,6.5153069,2177.5842}; + name="seaport"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=134.67267; + b=91.436241; + angle=106.133; + id=162; + atlOffset=0.51530695; + }; + class Item1 + { + dataType="Marker"; + position[]={6953.6128,6.0085158,2349.2698}; + name="seaport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=108.34799; + b=77.135849; + angle=138.239; + id=163; + }; + class Item2 + { + dataType="Marker"; + position[]={10393.77,3.0180333,1856.4065}; + name="seaport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=67.480957; + b=65.192261; + id=164; + atlOffset=-2.3841858e-007; + }; + class Item3 + { + dataType="Marker"; + position[]={13521.688,4.4208422,6321.1982}; + name="seaport_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=70; + b=65.142693; + angle=96.268379; + id=165; + atlOffset=1.105401; + }; + class Item4 + { + dataType="Marker"; + position[]={13049.821,6,10046.818}; + name="seaport_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=70; + b=59.038822; + angle=110.88124; + id=166; + }; + class Item5 + { + dataType="Marker"; + position[]={6926.2241,6.0100002,2334.342}; + name="seap_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.023001; + b=10.466; + angle=142.308; + id=167; + }; + class Item6 + { + dataType="Marker"; + position[]={10402.896,6.0287113,1889.8625}; + name="seap_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.455002; + b=12.286; + angle=179.12996; + id=168; + atlOffset=0.17263985; + }; + }; + id=161; + atlOffset=-108.57768; + }; + class Item32 + { + dataType="Layer"; + name="Factories"; + class Entities + { + items=6; + class Item0 + { + dataType="Marker"; + position[]={4167.9268,324.01276,8940.1621}; + name="factory"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=108.2471; + b=107.57551; + angle=188.34593; + id=170; + }; + class Item1 + { + dataType="Marker"; + position[]={10427.699,6,2582.3557}; + name="factory_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=68.609634; + b=66.307854; + angle=205.30093; + id=171; + }; + class Item2 + { + dataType="Marker"; + position[]={12863.394,6.0100002,9952.457}; + name="factory_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=84.660927; + b=51.169899; + angle=100.412; + id=172; + }; + class Item3 + { + dataType="Marker"; + position[]={13078.606,6,7089.6807}; + name="factory_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=102.92614; + b=57.434551; + angle=73.819817; + id=173; + }; + class Item4 + { + dataType="Marker"; + position[]={6498.6709,6,2618.3831}; + name="factory_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=120; + b=90; + angle=130.13901; + id=174; + }; + class Item5 + { + dataType="Marker"; + position[]={4195.2241,324.00638,8954.3301}; + name="fact_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.231; + b=9.4980001; + angle=281.59299; + id=175; + }; + }; + id=169; + atlOffset=-167.30002; + }; + class Item33 + { + dataType="Layer"; + name="Resources"; + class Entities + { + items=11; + class Item0 + { + dataType="Marker"; + position[]={10063.746,6,1840.0598}; + name="resource"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=90; + b=50; + id=177; + }; + class Item1 + { + dataType="Marker"; + position[]={11470.279,221,7511.1475}; + name="resource_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=80; + b=50; + angle=97.399902; + id=178; + }; + class Item2 + { + dataType="Marker"; + position[]={9700.9609,298.99774,8919.1992}; + name="resource_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=70; + b=50; + angle=104.40878; + id=179; + }; + class Item3 + { + dataType="Marker"; + position[]={10266.223,168.30716,9522.5977}; + name="resource_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + angle=184.80492; + id=180; + atlOffset=-1.5258789e-005; + }; + class Item4 + { + dataType="Marker"; + position[]={11845.648,148.39217,12407.859}; + name="resource_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + angle=200.38896; + id=181; + }; + class Item5 + { + dataType="Marker"; + position[]={12761.286,6,9655.832}; + name="resource_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=110; + b=70; + angle=191.55794; + id=182; + }; + class Item6 + { + dataType="Marker"; + position[]={13273.874,10.050711,6096.3906}; + name="resource_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=68.961441; + b=65.203957; + angle=58.644993; + id=183; + atlOffset=2.1007109; + }; + class Item7 + { + dataType="Marker"; + position[]={6240.0684,5.4899998,2209.1487}; + name="resource_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + angle=149.799; + id=184; + }; + class Item8 + { + dataType="Marker"; + position[]={9673.2148,83.649841,13557.9}; + name="resource_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=133.86571; + b=128.34068; + angle=147.22701; + id=185; + atlOffset=-7.6293945e-006; + }; + class Item9 + { + dataType="Marker"; + position[]={13141.45,6.099978,10301.939}; + name="resource_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=80; + b=47.947792; + angle=289.01877; + id=186; + }; + class Item10 + { + dataType="Marker"; + position[]={9996.3848,6,1843.7249}; + name="reso_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.939; + b=12.332; + angle=180.841; + id=187; + }; + }; + id=176; + atlOffset=-274.14001; + }; + class Item34 + { + dataType="Layer"; + name="Roadblocks"; + class Entities + { + items=41; + class Item0 + { + dataType="Marker"; + position[]={12851.53,5.7780962,8707.0234}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=99.020477; + b=118.70475; + angle=159.709; + id=189; + atlOffset=4.7683716e-007; + }; + class Item1 + { + dataType="Marker"; + position[]={11891.242,59.393539,9018.1992}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=169.17923; + b=179.54099; + angle=159.709; + id=190; + }; + class Item2 + { + dataType="Marker"; + position[]={3643.8657,8.4812126,2524.2688}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=108.25488; + b=100.38329; + angle=159.709; + id=191; + }; + class Item3 + { + dataType="Marker"; + position[]={2661.8818,221.81776,5584.0586}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=20; + b=20; + angle=159.709; + id=192; + }; + class Item4 + { + dataType="Marker"; + position[]={3131.043,298.27231,8072.9395}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=157.0043; + b=161.89716; + angle=159.709; + id=193; + }; + class Item5 + { + dataType="Marker"; + position[]={5058.8164,341.59491,8636.5176}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=135.16505; + b=145.20442; + angle=159.709; + id=194; + }; + class Item6 + { + dataType="Marker"; + position[]={4806.3179,302.03329,7175.0723}; + name="control_14"; + markerType="RECTANGLE"; + type="rectangle"; + a=188.29962; + b=158.81369; + angle=159.709; + id=195; + }; + class Item7 + { + dataType="Marker"; + position[]={9467.1348,195.4184,4417.4492}; + name="control_15"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=196; + atlOffset=1.5258789e-005; + }; + class Item8 + { + dataType="Marker"; + position[]={8477.1621,133.17473,4912.418}; + name="control_16"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=197; + atlOffset=1.5258789e-005; + }; + class Item9 + { + dataType="Marker"; + position[]={10919.66,224.47362,3935.6731}; + name="control_17"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=198; + }; + class Item10 + { + dataType="Marker"; + position[]={12501.518,6.1132569,3547.6497}; + name="control_18"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=199; + }; + class Item11 + { + dataType="Marker"; + position[]={13005.651,129.98528,4887.4531}; + name="control_19"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=200; + }; + class Item12 + { + dataType="Marker"; + position[]={10899.516,233.37639,11626.758}; + name="control_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=20; + b=20; + angle=159.709; + id=201; + }; + class Item13 + { + dataType="Marker"; + position[]={11972.107,105.97029,5060.4219}; + name="control_20"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=202; + }; + class Item14 + { + dataType="Marker"; + position[]={7139.9355,262.07141,7219.3457}; + name="control_21"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=203; + atlOffset=3.0517578e-005; + }; + class Item15 + { + dataType="Marker"; + position[]={10985.543,207.72282,6140.9482}; + name="control_22"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=204; + atlOffset=1.5258789e-005; + }; + class Item16 + { + dataType="Marker"; + position[]={5835.1855,278.83075,10067.477}; + name="control_23"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=205; + }; + class Item17 + { + dataType="Marker"; + position[]={9101.5723,253.17198,6775.7813}; + name="control_24"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=206; + }; + class Item18 + { + dataType="Marker"; + position[]={10052.648,260.34589,8856.0137}; + name="control_25"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=207; + }; + class Item19 + { + dataType="Marker"; + position[]={8065.5791,441.66965,7813.6689}; + name="control_26"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=208; + atlOffset=-3.0517578e-005; + }; + class Item20 + { + dataType="Marker"; + position[]={5347.1948,250.92462,4647.4434}; + name="control_27"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=209; + }; + class Item21 + { + dataType="Marker"; + position[]={4520.5503,335.79895,9706.2949}; + name="control_28"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=210; + }; + class Item22 + { + dataType="Marker"; + position[]={4533.4927,289.48022,6429.9932}; + name="control_29"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=211; + }; + class Item23 + { + dataType="Marker"; + position[]={10425.707,173.82129,9168.6016}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=20; + b=20; + angle=159.709; + id=212; + }; + class Item24 + { + dataType="Marker"; + position[]={2778.6851,261.99036,9456.5996}; + name="control_30"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=213; + }; + class Item25 + { + dataType="Marker"; + position[]={1760.2637,200.965,6940.0439}; + name="control_31"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=214; + }; + class Item26 + { + dataType="Marker"; + position[]={3076.3208,244.13062,5512.3672}; + name="control_32"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=215; + }; + class Item27 + { + dataType="Marker"; + position[]={8881.3867,102.41238,3229.7874}; + name="control_33"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=216; + }; + class Item28 + { + dataType="Marker"; + position[]={11758.613,203.53822,7391.4678}; + name="control_34"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=217; + atlOffset=-1.5258789e-005; + }; + class Item29 + { + dataType="Marker"; + position[]={10170.854,193.59335,11181.021}; + name="control_35"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=218; + }; + class Item30 + { + dataType="Marker"; + position[]={11275.719,196.14674,10898.697}; + name="control_36"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=219; + }; + class Item31 + { + dataType="Marker"; + position[]={12190.561,125.33263,11607.223}; + name="control_37"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=220; + atlOffset=-7.6293945e-006; + }; + class Item32 + { + dataType="Marker"; + position[]={10650.623,262.1048,12416.02}; + name="control_38"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=221; + }; + class Item33 + { + dataType="Marker"; + position[]={13463.735,27.579247,11533.928}; + name="control_39"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=222; + }; + class Item34 + { + dataType="Marker"; + position[]={13120.329,6.117837,7321.6221}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=124.43841; + b=120.9002; + angle=159.709; + id=223; + }; + class Item35 + { + dataType="Marker"; + position[]={6577.0186,265.08475,4409.0498}; + name="control_40"; + markerType="RECTANGLE"; + type="rectangle"; + a=300; + b=300; + id=224; + atlOffset=3.0517578e-005; + }; + class Item36 + { + dataType="Marker"; + position[]={13387.333,5.6839952,5494.8584}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=170.06819; + b=156.81378; + angle=159.709; + id=225; + }; + class Item37 + { + dataType="Marker"; + position[]={11680.646,6.2326393,3414.2063}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=155.98209; + b=137.75055; + angle=159.709; + id=226; + atlOffset=0.58462381; + }; + class Item38 + { + dataType="Marker"; + position[]={10212.076,58.016323,4034.5266}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=122.87683; + b=111.55153; + angle=159.709; + id=227; + }; + class Item39 + { + dataType="Marker"; + position[]={9435.4766,5.9109788,2049.0403}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=20; + b=20; + angle=159.709; + id=228; + }; + class Item40 + { + dataType="Marker"; + position[]={6295.6943,27.816875,3371.0422}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=108.98723; + b=105.96222; + angle=159.709; + id=229; + }; + }; + id=188; + atlOffset=15.737294; + }; + class Item35 + { + dataType="Logic"; + class PositionInfo + { + position[]={2732.5439,279.27542,9907.0645}; + }; + areaSize[]={8.9569092,0,7.2392578}; + flags=1; + id=230; + type="ModuleHideTerrainObjects_F"; + atlOffset=5.3254089; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={9618.4336,86.676628,13544.852}; + angles[]={0.021331646,6.093493,6.2405448}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=231; + type="Land_HelipadSquare_F"; + atlOffset=7.6293945e-006; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={12191.613,27.385157,9409.6543}; + angles[]={0.077179179,4.1988201,6.187479}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=232; + type="Land_HelipadSquare_F"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={6599.4893,81.440643,3414.6682}; + angles[]={0.027993103,3.1187696,6.2805109}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=233; + type="Land_HelipadSquare_F"; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={5099.8477,9,2336.4397}; + angles[]={0,2.0886309,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=234; + type="Land_HelipadSquare_F"; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={4702.9673,8.9938231,2572.9631}; + angles[]={0.013327583,3.6829305,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=235; + type="Land_HelipadSquare_F"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={4795.2324,9,2522.426}; + angles[]={0,3.6794586,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=236; + type="Land_HelipadSquare_F"; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={6251.6782,301.20001,7740.3652}; + angles[]={0,5.3228745,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=237; + type="Land_HelipadSquare_F"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={6882.5854,393.92322,11437.193}; + angles[]={6.2791886,1.4099587,0.051951028}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=238; + type="Land_HelipadSquare_F"; + }; + class Item44 + { + dataType="Logic"; + class PositionInfo + { + position[]={6880.5571,396.70984,11446.891}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=239; + type="ModuleHideTerrainObjects_F"; + atlOffset=2.8699036; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item45 + { + dataType="Logic"; + class PositionInfo + { + position[]={6886.6914,394.27179,11427.021}; + angles[]={6.2738566,0,0.046629332}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=240; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.20065308; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={4773.1392,339,10121.203}; + angles[]={0,1.0440426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=241; + type="Land_HelipadSquare_F"; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={4793.6182,339,10086.4}; + angles[]={0,1.0440426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=242; + type="Land_HelipadSquare_F"; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={4816.1475,339,10048.58}; + angles[]={0,1.0440426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=243; + type="Land_HelipadSquare_F"; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={4841.5283,339,10005.342}; + angles[]={0,1.0440426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=244; + type="Land_HelipadSquare_F"; + }; + class Item50 + { + dataType="Layer"; + name="Roads"; + class Entities + { + items=39; + class Item0 + { + dataType="Marker"; + position[]={258.75781,5.3926063,1621.6721}; + name="road"; + type="hd_arrow"; + angle=88.853943; + id=246; + }; + class Item1 + { + dataType="Marker"; + position[]={939.98047,5.7140574,2028.0432}; + name="road_1"; + type="hd_arrow"; + angle=30.963726; + id=247; + }; + class Item2 + { + dataType="Marker"; + position[]={3195.126,290.02942,8138.8281}; + name="road_10"; + type="hd_arrow"; + angle=37.844521; + id=248; + }; + class Item3 + { + dataType="Marker"; + position[]={2198.1602,483.38065,15010.172}; + name="road_11"; + type="hd_arrow"; + angle=181.73544; + id=249; + }; + class Item4 + { + dataType="Marker"; + position[]={1401.8379,410.38309,14148.377}; + name="road_12"; + type="hd_arrow"; + angle=240.74304; + id=250; + }; + class Item5 + { + dataType="Marker"; + position[]={608.39648,374.31506,13813.139}; + name="road_13"; + type="hd_arrow"; + angle=143.13023; + id=251; + }; + class Item6 + { + dataType="Marker"; + position[]={1703.3027,285.4559,12665.393}; + name="road_14"; + type="hd_arrow"; + angle=153.32985; + id=252; + }; + class Item7 + { + dataType="Marker"; + position[]={2122.1333,252.91904,11369.201}; + name="road_15"; + type="hd_arrow"; + angle=152.50713; + id=253; + }; + class Item8 + { + dataType="Marker"; + position[]={2394.8418,273.40381,10390.951}; + name="road_16"; + type="hd_arrow"; + angle=138.85368; + id=254; + }; + class Item9 + { + dataType="Marker"; + position[]={4460.9517,323.60736,8903.8262}; + name="road_17"; + type="hd_arrow"; + angle=173.95586; + id=255; + }; + class Item10 + { + dataType="Marker"; + position[]={5525.1934,335.09396,8358.7793}; + name="road_18"; + type="hd_arrow"; + angle=130.01761; + id=256; + atlOffset=-3.0517578e-005; + }; + class Item11 + { + dataType="Marker"; + position[]={6894.7017,289.23312,7629.5029}; + name="road_19"; + type="hd_arrow"; + angle=64.816978; + id=257; + }; + class Item12 + { + dataType="Marker"; + position[]={1599.0391,7.3636932,2241.4651}; + name="road_2"; + type="hd_arrow"; + angle=103.3924; + id=258; + atlOffset=4.7683716e-007; + }; + class Item13 + { + dataType="Marker"; + position[]={5533.6025,5.8000002,2072.2424}; + name="road_20"; + type="hd_arrow"; + angle=66.925438; + id=259; + }; + class Item14 + { + dataType="Marker"; + position[]={6643.1299,6.0199733,2932.0647}; + name="road_21"; + type="hd_arrow"; + angle=60.499027; + id=260; + }; + class Item15 + { + dataType="Marker"; + position[]={8412.9844,5.9926867,2937.6458}; + name="road_22"; + type="hd_arrow"; + angle=150.56462; + id=261; + }; + class Item16 + { + dataType="Marker"; + position[]={9978.7402,6,2060.5686}; + name="road_23"; + type="hd_arrow"; + angle=62.230412; + id=262; + }; + class Item17 + { + dataType="Marker"; + position[]={7092.5903,255.46463,6494.5791}; + name="road_24"; + type="hd_arrow"; + angle=162.60255; + id=263; + atlOffset=-1.5258789e-005; + }; + class Item18 + { + dataType="Marker"; + position[]={7521.1133,210.95322,5021.1514}; + name="road_25"; + type="hd_arrow"; + angle=144.19211; + id=264; + }; + class Item19 + { + dataType="Marker"; + position[]={9039.5059,114.36784,4930.0723}; + name="road_26"; + type="hd_arrow"; + angle=88.853943; + id=265; + }; + class Item20 + { + dataType="Marker"; + position[]={10161.783,69.648354,4084.9456}; + name="road_27"; + type="hd_arrow"; + angle=139.01399; + id=266; + atlOffset=7.6293945e-006; + }; + class Item21 + { + dataType="Marker"; + position[]={11236.777,5.5819979,3253.592}; + name="road_28"; + type="hd_arrow"; + angle=63.165874; + id=267; + }; + class Item22 + { + dataType="Marker"; + position[]={13271.282,5.4664192,4017.9758}; + name="road_29"; + type="hd_arrow"; + angle=33.934391; + id=268; + }; + class Item23 + { + dataType="Marker"; + position[]={3345.3438,5.6424031,2305.5725}; + name="road_3"; + type="hd_arrow"; + angle=43.965599; + id=269; + }; + class Item24 + { + dataType="Marker"; + position[]={13415.19,5.700428,5928.9102}; + name="road_30"; + type="hd_arrow"; + angle=8.5305576; + id=270; + atlOffset=-4.7683716e-007; + }; + class Item25 + { + dataType="Marker"; + position[]={13045.874,5.7399998,7839.1289}; + name="road_31"; + type="hd_arrow"; + angle=357.37994; + id=271; + }; + class Item26 + { + dataType="Marker"; + position[]={11176.471,197.8457,12130.416}; + name="road_32"; + type="hd_arrow"; + angle=210.06854; + id=272; + }; + class Item27 + { + dataType="Marker"; + position[]={10815.955,169.99748,11012.666}; + name="road_33"; + type="hd_arrow"; + angle=196.04909; + id=273; + }; + class Item28 + { + dataType="Marker"; + position[]={10475.117,114.87349,10001.184}; + name="road_34"; + type="hd_arrow"; + angle=182.63902; + id=274; + atlOffset=-7.6293945e-006; + }; + class Item29 + { + dataType="Marker"; + position[]={10389.922,164.66653,9223.8594}; + name="road_35"; + type="hd_arrow"; + angle=152.52263; + id=275; + atlOffset=-1.5258789e-005; + }; + class Item30 + { + dataType="Marker"; + position[]={9664.2656,294.87292,8797.0625}; + name="road_36"; + type="hd_arrow"; + angle=279.66013; + id=276; + atlOffset=3.0517578e-005; + }; + class Item31 + { + dataType="Marker"; + position[]={11262.475,101.16262,9364.0625}; + name="road_37"; + type="hd_arrow"; + angle=75.367722; + id=277; + }; + class Item32 + { + dataType="Marker"; + position[]={12241.701,18.434669,9483.4121}; + name="road_38"; + type="hd_arrow"; + angle=45.44635; + id=278; + atlOffset=0.0031681061; + }; + class Item33 + { + dataType="Marker"; + position[]={4090.7046,6.0571809,2612.6409}; + name="road_4"; + type="hd_arrow"; + angle=101.1778; + id=279; + }; + class Item34 + { + dataType="Marker"; + position[]={2662.4365,121.88425,2974.97}; + name="road_5"; + type="hd_arrow"; + angle=4.8738437; + id=280; + atlOffset=-7.6293945e-006; + }; + class Item35 + { + dataType="Marker"; + position[]={1957.3721,140.92625,3838.8928}; + name="road_6"; + type="hd_arrow"; + angle=292.26508; + id=281; + atlOffset=1.5258789e-005; + }; + class Item36 + { + dataType="Marker"; + position[]={2059.29,200.68654,4674.54}; + name="road_7"; + type="hd_arrow"; + angle=43.505791; + id=282; + }; + class Item37 + { + dataType="Marker"; + position[]={2683.7129,231.66516,5758.6367}; + name="road_8"; + type="hd_arrow"; + angle=9.0245171; + id=283; + atlOffset=-1.5258789e-005; + }; + class Item38 + { + dataType="Marker"; + position[]={2721.7295,362.41428,6705.0127}; + name="road_9"; + type="hd_arrow"; + angle=355.36441; + id=284; + }; + }; + id=245; + atlOffset=29.722382; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={8393.4121,293.78738,6006.0942}; + angles[]={6.1703324,0,0.0093375118}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=297; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={8393.2393,292.79132,5994.1274}; + angles[]={6.251193,0,6.2818413}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="vehicleBox"; + }; + id=298; + type="Box_East_AmmoVeh_F"; + }; + class Item53 + { + dataType="Logic"; + class PositionInfo + { + position[]={8397.085,293.97952,6012.793}; + }; + id=299; + type="ModuleCurator_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + }; + nAttributes=4; + }; + }; + class Item54 + { + dataType="Logic"; + class PositionInfo + { + position[]={8392.6963,293.96817,6016.8472}; + }; + name="HC_commanderX"; + id=300; + type="HighCommand"; + }; + class Item55 + { + dataType="Logic"; + class PositionInfo + { + position[]={8393.5986,293.52765,6013.332}; + }; + id=301; + type="HighCommandSubordinate"; + }; + }; + class Connections + { + class LinkIDProvider + { + nextID=61; + }; + class Links + { + items=61; + class Item0 + { + linkID=0; + item0=301; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=19; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=20; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item3 + { + linkID=3; + item0=21; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item4 + { + linkID=4; + item0=26; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item5 + { + linkID=5; + item0=39; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item6 + { + linkID=6; + item0=40; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item7 + { + linkID=7; + item0=45; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item8 + { + linkID=8; + item0=50; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item9 + { + linkID=9; + item0=55; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item10 + { + linkID=10; + item0=60; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item11 + { + linkID=11; + item0=65; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item12 + { + linkID=12; + item0=22; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item13 + { + linkID=13; + item0=27; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item14 + { + linkID=14; + item0=31; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item15 + { + linkID=15; + item0=35; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item16 + { + linkID=16; + item0=41; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item17 + { + linkID=17; + item0=46; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item18 + { + linkID=18; + item0=51; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item19 + { + linkID=19; + item0=56; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item20 + { + linkID=20; + item0=61; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item21 + { + linkID=21; + item0=66; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item22 + { + linkID=22; + item0=24; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item23 + { + linkID=23; + item0=29; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item24 + { + linkID=24; + item0=33; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item25 + { + linkID=25; + item0=37; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item26 + { + linkID=26; + item0=43; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item27 + { + linkID=27; + item0=48; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item28 + { + linkID=28; + item0=53; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item29 + { + linkID=29; + item0=58; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item30 + { + linkID=30; + item0=63; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item31 + { + linkID=31; + item0=68; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item32 + { + linkID=32; + item0=25; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item33 + { + linkID=33; + item0=30; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item34 + { + linkID=34; + item0=34; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item35 + { + linkID=35; + item0=38; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item36 + { + linkID=36; + item0=44; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item37 + { + linkID=37; + item0=49; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item38 + { + linkID=38; + item0=54; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item39 + { + linkID=39; + item0=59; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item40 + { + linkID=40; + item0=64; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item41 + { + linkID=41; + item0=69; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item42 + { + linkID=42; + item0=70; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item43 + { + linkID=43; + item0=71; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item44 + { + linkID=44; + item0=72; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item45 + { + linkID=45; + item0=73; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item46 + { + linkID=46; + item0=74; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item47 + { + linkID=47; + item0=75; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item48 + { + linkID=48; + item0=76; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item49 + { + linkID=49; + item0=77; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item50 + { + linkID=50; + item0=78; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item51 + { + linkID=51; + item0=286; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item52 + { + linkID=52; + item0=287; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item53 + { + linkID=53; + item0=288; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item54 + { + linkID=54; + item0=289; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item55 + { + linkID=55; + item0=290; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item56 + { + linkID=56; + item0=291; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item57 + { + linkID=57; + item0=292; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item58 + { + linkID=58; + item0=293; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item59 + { + linkID=59; + item0=294; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + class Item60 + { + linkID=60; + item0=296; + item1=300; + class CustomData + { + type="Sync"; + }; + }; + }; + }; +}; diff --git a/A3-Antistasi/roadsDBcherna.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/roadsDBcherna.sqf similarity index 100% rename from A3-Antistasi/roadsDBcherna.sqf rename to Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/roadsDBcherna.sqf diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/bcg_wind.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/bcg_wind.ogg new file mode 100644 index 0000000000..ab6f254647 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/bcg_wind.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_01.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_01.ogg new file mode 100644 index 0000000000..580cdad556 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_01.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_02.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_02.ogg new file mode 100644 index 0000000000..4309e08bcc Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_02.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_03.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_03.ogg new file mode 100644 index 0000000000..31fbde7be3 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/lup_03.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_1.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_1.ogg new file mode 100644 index 0000000000..af6bfbd067 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_1.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_2.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_2.ogg new file mode 100644 index 0000000000..06d3c9e01a Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_2.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_3.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_3.ogg new file mode 100644 index 0000000000..d8800e44ee Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_3.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_5.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_5.ogg new file mode 100644 index 0000000000..ba180c564a Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_5.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_6.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_6.ogg new file mode 100644 index 0000000000..4d391c9520 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_6.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_7.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_7.ogg new file mode 100644 index 0000000000..38a57d646b Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_7.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_8.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_8.ogg new file mode 100644 index 0000000000..cff95aba66 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/rafala_8.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_1.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_1.ogg new file mode 100644 index 0000000000..17722c58cc Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_1.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_2.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_2.ogg new file mode 100644 index 0000000000..44eba725f4 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_2.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_3.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_3.ogg new file mode 100644 index 0000000000..78528109ce Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_3.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_4.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_4.ogg new file mode 100644 index 0000000000..a21e1613a5 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tremurat_4.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_1.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_1.ogg new file mode 100644 index 0000000000..8487d3566d Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_1.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_2.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_2.ogg new file mode 100644 index 0000000000..09f84d1258 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_2.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_3.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_3.ogg new file mode 100644 index 0000000000..e8ba198a38 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_3.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_4.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_4.ogg new file mode 100644 index 0000000000..0151b5e701 Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_4.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_5.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_5.ogg new file mode 100644 index 0000000000..e20bcfb60f Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_5.ogg differ diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_6.ogg b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_6.ogg new file mode 100644 index 0000000000..2857d757ef Binary files /dev/null and b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/sound/tuse_6.ogg differ diff --git a/Map-Templates/Antistasi-Kunduz.Kunduz/PIC.jpg b/Map-Templates/Antistasi-Kunduz.Kunduz/PIC.jpg new file mode 100644 index 0000000000..bd39e1465f Binary files /dev/null and b/Map-Templates/Antistasi-Kunduz.Kunduz/PIC.jpg differ diff --git a/Map-Templates/Antistasi-Kunduz.Kunduz/description.ext b/Map-Templates/Antistasi-Kunduz.Kunduz/description.ext new file mode 100755 index 0000000000..9ca4da7e90 --- /dev/null +++ b/Map-Templates/Antistasi-Kunduz.Kunduz/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_kunduz_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_kunduz_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_kunduz_mapname_text; +overviewText = $STR_antistasi_mission_info_kunduz_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Kunduz is Ours!"; + description = "The population of Kunduz loves you!
The SDK brave soldiers have proven their valour, and Petros, Kunduz 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 = "Maru is Dead"; + subtitle = "Maru is Dead"; + description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Kunduz"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Kunduz is Destroyed"; + subtitle = "Kunduz got Destroyed by CSAT"; + description = "One third of the population in Livonia has been murdered by CSAT.
Kunduz no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/Map-Templates/Antistasi-Kunduz.Kunduz/mission.sqm b/Map-Templates/Antistasi-Kunduz.Kunduz/mission.sqm new file mode 100755 index 0000000000..58bba73b78 --- /dev/null +++ b/Map-Templates/Antistasi-Kunduz.Kunduz/mission.sqm @@ -0,0 +1,12426 @@ +version=53; +class EditorData +{ + moveGridStep=1; + angleGridStep=0.2617994; + scaleGridStep=1; + autoGroupingDist=10; + toggles=1026; + class ItemIDProvider + { + nextID=1349; + }; + class MarkerIDProvider + { + nextID=5; + }; + class LayerIndexProvider + { + nextID=76; + }; + class Camera + { + pos[]={1100.3102,365.37076,1605.1041}; + dir[]={0.64004093,-0.43384323,-0.63414103}; + up[]={0.30819207,0.90098763,-0.30535144}; + aside[]={-0.7038281,2.0611333e-007,-0.71037447}; + }; +}; +binarizationWanted=0; +addons[]= +{ + "A3_Weapons_F_Ammoboxes", + "A3_Modules_F", + "A3_Characters_F", + "A3_Weapons_F", + "A3_Structures_F_EPC_Civ_InfoBoards", + "A3_Structures_F_Mil_Flags", + "A3_Characters_F_Patrol", + "A3_Characters_F_Exp", + "A3_Structures_F_Exp_Military_Flags", + "A3_Modules_F_Curator_Curator", + "A3_Props_F_Enoch_Military_Camps", + "A3_Structures_F_Mil_Cargo", + "A3_Structures_F_Mil_Fortification", + "A3_Structures_F_Walls", + "A3_Structures_F_Ind_Transmitter_Tower", + "A3_Structures_F_Ind_Cargo", + "A3_Structures_F_Ind_DieselPowerPlant", + "A3_Structures_F_Enoch_Military_Camps", + "A3_Structures_F_Mil_Helipads", + "A3_Structures_F_Mil_BagFence", + "A3_Supplies_F_Heli_Bladders", + "A3_Structures_F_Civ_Constructions", + "A3_Structures_F_Bootcamp_Civ_SportsGrounds", + "A3_Structures_F_Training", + "A3_Structures_F_Civ_Market", + "A3_Structures_F_Ind_ConcreteMixingPlant", + "A3_Structures_F_Ind_Shed", + "A3_Structures_F_Ind_Tank", + "A3_Structures_F_Civ_Lamps", + "A3_Structures_F_EPA_Mil_Scrapyard", + "A3_Structures_F_Items_Vessels", + "A3_Structures_F_Mil_Shelters", + "A3_Structures_F_System", + "A3_Structures_F_Heli_Civ_Constructions", + "A3_Structures_F_Heli_Furniture", + "A3_Structures_F_EPA_Civ_Constructions", + "A3_Structures_F_Orange_Humanitarian_Camps", + "A3_Structures_F_Heli_Ind_Machines", + "A3_Props_F_Orange_Humanitarian_Camps", + "A3_Structures_F_Enoch_Military_Radar", + "A3_Ui_F", + "A3_Ui_F_Exp", + "A3_Modules_F_Hc" +}; +class AddonsMetaData +{ + class List + { + items=21; + class Item0 + { + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item1 + { + className="A3_Modules_F"; + name="Arma 3 Alpha - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item2 + { + className="A3_Characters_F"; + name="Arma 3 Alpha - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item3 + { + className="A3_Structures_F_EPC"; + name="Arma 3 Win Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item4 + { + className="A3_Structures_F_Mil"; + name="Arma 3 - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item5 + { + className="A3_Characters_F_Patrol"; + name="Arma 3 Patrol - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item6 + { + className="A3_Characters_F_Exp"; + name="Arma 3 Apex - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item7 + { + className="A3_Structures_F_Exp"; + name="Arma 3 Apex - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item8 + { + className="A3_Modules_F_Curator"; + name="Arma 3 Zeus Update - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item9 + { + className="A3_Props_F_Enoch"; + name="Arma 3 Enoch - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item10 + { + className="A3_Structures_F"; + name="Arma 3 - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item11 + { + className="A3_Structures_F_Ind"; + name="Arma 3 - Industrial Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item12 + { + className="A3_Structures_F_Enoch_Military"; + name="Arma 3 Enoch - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item13 + { + className="A3_Supplies_F_Heli"; + name="Arma 3 Helicopters - Ammoboxes and Supplies"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item14 + { + className="A3_Structures_F_Bootcamp"; + name="Arma 3 Bootcamp Update - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item15 + { + className="A3_Structures_F_EPA"; + name="Arma 3 Survive Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item16 + { + className="A3_Structures_F_Heli"; + name="Arma 3 Helicopters - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item17 + { + className="A3_Structures_F_Orange"; + name="Arma 3 Orange - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item18 + { + className="A3_Props_F_Orange"; + name="Arma 3 Orange - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item19 + { + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item20 + { + className="A3_Ui_F_Exp"; + name="Arma 3 Apex - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + }; +}; +randomSeed=2288247; +class Mission +{ + class Intel + { + briefingName=$STR_antistasi_mission_info_kunduz_mapname_text; + resistanceWest=0; + startWind=0.1; + forecastWind=0.1; + forecastWaves=0.1; + year=2035; + month=6; + day=1; + hour=10; + minute=0; + startFogDecay=0.0049333; + forecastFogDecay=0.0049333; + }; + class Entities + { + items=458; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1332.3381,35.091087,388.66797}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="vehicleBox"; + }; + id=134; + type="Box_East_AmmoVeh_F"; + atlOffset=0.01128006; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Logic"; + class PositionInfo + { + position[]={1324.1643,34.707466,380.85938}; + }; + name="server"; + id=135; + type="Logic"; + atlOffset=0.41746521; + }; + class Item2 + { + dataType="Logic"; + class PositionInfo + { + position[]={1325.7385,34.624657,379.44922}; + }; + name="garrison"; + id=136; + type="Logic"; + atlOffset=0.33465576; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={1327.5256,34.534279,378.02734}; + }; + name="spawner"; + id=137; + type="Logic"; + atlOffset=0.24427795; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={1319.9319,34.898727,378.16016}; + }; + name="hc"; + isPlayable=1; + id=138; + type="HeadlessClient_F"; + atlOffset=0.6087265; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={1329.4006,34.39296,376.69531}; + angles[]={0.0039967569,0,0}; + }; + name="roadsX"; + id=139; + type="Logic"; + atlOffset=0.099739075; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={1330.8167,34.297546,375.61328}; + angles[]={0.0039967569,0,0}; + }; + name="timer"; + id=142; + type="Logic"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={1331.4006,35.270676,383.91797}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=143; + type="IG_supplyCrate_F"; + atlOffset=0.088253021; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={1332.0862,34.299999,374.35938}; + }; + name="sidesX"; + id=144; + type="Logic"; + }; + class Item9 + { + dataType="Logic"; + class PositionInfo + { + position[]={1332.9983,34.299999,373.52734}; + }; + name="killZones"; + id=145; + type="Logic"; + }; + class Item10 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=24; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1328.1077,34.613026,383.85938}; + }; + side="Independent"; + flags=2; + class Attributes + { + skill=1; + name="commanderX"; + description="Default Commander"; + isPlayer=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=147; + type="I_G_officer_F"; + atlOffset=0.32158661; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1331.6409,34.291439,380.33594}; + angles[]={0,6.2412972,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=151; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={1343.1018,34.293846,386.48828}; + angles[]={0,6.2412972,0.0039967569}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=152; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={1349.1057,34.301437,386.375}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=154; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={1342.9983,34.291439,389.28125}; + angles[]={0,6.2412972,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=158; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={1349.0022,34.297443,389.16797}; + angles[]={0,0,0.0039967569}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=160; + type="I_G_medic_F"; + atlOffset=-3.8146973e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={1348.8987,34.291439,394.75781}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=170; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={1343.1917,34.291439,394.98438}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=175; + type="I_G_Soldier_AR_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={1349.2307,34.291439,397.38281}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=177; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={1352.2034,34.291439,400.63672}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=184; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={1355.1917,34.291439,400.85547}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=185; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={1340.8401,34.291439,400.51172}; + }; + side="Independent"; + flags=4; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=186; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={1343.4065,34.291439,403.79297}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=188; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={1349.2366,34.291439,403.62109}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=190; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={1352.2249,34.291439,403.84375}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=191; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={1337.8733,34.608242,403.49609}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=192; + type="I_G_officer_F"; + atlOffset=0.31680298; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={1343.2581,34.291439,407.05859}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=194; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={1352.0764,34.291439,407.10547}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=197; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={1342.0725,34.382442,409.80078}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=200; + type="I_G_Soldier_LAT_F"; + atlOffset=0.091003418; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={1347.9006,34.291439,409.63281}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=202; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={1336.5374,35.237858,409.50781}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=204; + type="I_G_officer_F"; + atlOffset=0.94641876; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={1340.6702,34.301437,380.48047}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=207; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={1343.2561,34.301437,380.88672}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=208; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={1334.7151,34.291439,380.57031}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=209; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=146; + atlOffset=0.32158661; + }; + class Item11 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1322.3127,34.865093,387.46875}; + angles[]={0,2.1016905,0}; + }; + side="Independent"; + flags=2; + class Attributes + { + name="petros"; + }; + id=149; + type="I_G_officer_F"; + atlOffset=0.57365417; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute2 + { + property="face"; + expression="_this setface _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=148; + atlOffset=0.57365417; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={1325.3167,35.646446,390.57422}; + }; + side="Empty"; + class Attributes + { + name="mapX"; + }; + id=210; + type="MapBoard_seismic_F"; + atlOffset=0.38756561; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={1329.5803,38.517204,392.44141}; + }; + side="Empty"; + class Attributes + { + name="flagX"; + }; + id=215; + type="Flag_Altis_F"; + atlOffset=0.25039673; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.418,10.761461,5206.0425}; + }; + side="Empty"; + flags=5; + class Attributes + { + init="if (!isMultiplayer) then {deleteVehicle this};"; + }; + id=216; + type="Flag_NATO_F"; + atlOffset=4.7683716e-007; + }; + class Item15 + { + dataType="Group"; + side="West"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.0742,6.7888441,5198.6655}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_blue_1"; + isPlayable=1; + }; + id=219; + type="B_recon_TL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={3639.0742,6.6270118,5193.6655}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; + name="pvp_blue_4"; + isPlayable=1; + }; + id=220; + type="B_recon_M_F"; + atlOffset=1.4305115e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3629.0742,7.2476296,5193.6655}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_blue_2"; + isPlayable=1; + }; + id=221; + type="B_recon_medic_F"; + atlOffset=2.3841858e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={3624.0742,8.4003878,5188.6655}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; + name="pvp_blue_5"; + isPlayable=1; + }; + id=222; + type="B_recon_LAT_F"; + atlOffset=9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={3641.5547,6.6279035,5191.5444}; + angles[]={0,0,6.2551923}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; + name="pvp_blue_3"; + isPlayable=1; + }; + id=223; + type="B_Patrol_Soldier_MG_F"; + atlOffset=1.4305115e-006; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={3636.3242,6.6596169,5189.3257}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; + name="pvp_blue_6"; + isPlayable=1; + }; + id=224; + type="B_recon_LAT_F"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=218; + }; + class Item16 + { + dataType="Group"; + side="East"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5178.0737,12.26793,793.2431}; + }; + side="East"; + flags=3; + class Attributes + { + init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_red_1"; + isPlayable=1; + }; + id=228; + type="O_T_Recon_TL_F"; + atlOffset=0.30826855; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5173.2612,11.575912,788.73138}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_red_2"; + isPlayable=1; + }; + id=229; + type="O_T_Recon_Medic_F"; + atlOffset=0.00050926208; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male02CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={5182.7358,11.589146,788.88177}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; + name="pvp_red_4"; + isPlayable=1; + }; + id=230; + type="O_T_Recon_M_F"; + atlOffset=0.00050926208; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5168.9741,11.309069,783.53998}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; + name="pvp_red_5"; + isPlayable=1; + }; + id=231; + type="O_T_Recon_LAT_F"; + atlOffset=0.00051021576; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5179.4468,12.314132,794.83295}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; + name="pvp_red_3"; + isPlayable=1; + }; + id=232; + type="O_Soldier_AR_F"; + atlOffset=0.22092533; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01PER"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5178.5386,11.727695,790.47552}; + }; + side="East"; + flags=5; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; + name="pvp_red_6"; + isPlayable=1; + }; + id=233; + type="O_T_Recon_LAT_F"; + atlOffset=0.00050926208; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=227; + atlOffset=0.30826855; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5169.978,16.792131,794.89349}; + }; + side="Empty"; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=234; + type="Flag_Viper_F"; + atlOffset=0.71427345; + }; + class Item18 + { + dataType="Logic"; + class PositionInfo + { + position[]={1321.9241,34.801178,377.01953}; + }; + name="hc_1"; + isPlayable=1; + id=235; + type="HeadlessClient_F"; + atlOffset=0.51117706; + }; + class Item19 + { + dataType="Logic"; + class PositionInfo + { + position[]={1323.7717,34.70137,376.02539}; + }; + name="hc_2"; + isPlayable=1; + id=236; + type="HeadlessClient_F"; + atlOffset=0.41136932; + }; + class Item20 + { + dataType="Logic"; + class PositionInfo + { + position[]={1351.2542,34.305016,378.40625}; + angles[]={0,0,0.0039967569}; + }; + id=240; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + }; + nAttributes=4; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={1325.8264,35.23484,386.31836}; + angles[]={0,1.0016968,0}; + }; + side="Empty"; + class Attributes + { + name="fireX"; + }; + id=241; + type="Land_TentSolar_01_olive_F"; + atlOffset=0.37243652; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Logic"; + class PositionInfo + { + position[]={3929.0085,4.606873,4636.5796}; + angles[]={6.2232571,1.1951427,6.2751846}; + }; + areaSize[]={54.162922,0,116.96795}; + areaIsRectangle=1; + flags=1; + id=248; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.21784687; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item23 + { + dataType="Layer"; + name="Open Ammo Dump"; + id=249; + atlOffset=-124.86; + }; + class Item24 + { + dataType="Layer"; + name="Vehicle Repair"; + id=274; + atlOffset=-124.86; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={2063.6294,42.424999,3023.1621}; + angles[]={0,0.14061472,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=682; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={2105.7827,42.540279,3061.8245}; + angles[]={0,4.8266172,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=683; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item27 + { + dataType="Logic"; + class PositionInfo + { + position[]={2049.5925,37.565399,3060.8623}; + angles[]={6.2631865,0,6.2631865}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=684; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={2048.5518,42.493782,3061.1624}; + angles[]={0,1.7374154,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=685; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={2652.125,17.421055,2100.7629}; + angles[]={0,3.1977115,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=717; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-9.5367432e-007; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={2613.9893,12.003625,2047.2776}; + angles[]={0,1.6753584,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=718; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={2677.8115,14.714727,2077.2996}; + angles[]={0,4.7550054,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=719; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={2671.5369,11.625069,2045.7054}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=720; + type="Land_Cargo_HQ_V3_F"; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={2620.0066,8.7491493,2081.9438}; + angles[]={0,4.7440324,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=721; + type="Land_Cargo_House_V3_F"; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={2619.123,8.3254633,2074.3618}; + angles[]={0,4.7440324,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=722; + type="Land_Cargo_House_V3_F"; + atlOffset=-4.7683716e-007; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={2650.1289,9.6618557,681.66302}; + angles[]={0,1.2375431,0.043964844}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=723; + type="Land_HBarrier_Big_F"; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={2652.9097,9.5112829,673.63068}; + angles[]={6.2232571,1.2375345,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=724; + type="Land_HBarrier_Big_F"; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={2659.8152,9.6086349,685.01605}; + angles[]={0.059927464,1.2375345,6.2312322}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=725; + type="Land_HBarrier_Big_F"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={2655.6902,9.1360302,665.59833}; + angles[]={6.2392135,1.2375345,0.071875811}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=726; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={2658.4707,9.1131287,657.56598}; + angles[]={6.2591896,1.2375345,0.083803542}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=727; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={2661.251,8.7054462,649.534}; + angles[]={0,1.2375431,0.031991884}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=728; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={2664.032,8.6093521,641.50134}; + angles[]={6.2312322,1.2375345,0.039977662}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=729; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={2670.3833,8.3613663,639.20258}; + angles[]={6.1677012,5.9499235,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=730; + type="Land_HBarrier_Big_F"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={2662.5957,9.6539488,676.9837}; + angles[]={6.2432079,1.2375345,0.047963165}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=731; + type="Land_HBarrier_Big_F"; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={2665.3762,9.5018215,668.95135}; + angles[]={6.259192,1.2375345,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=732; + type="Land_HBarrier_Big_F"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={2668.1567,9.3689108,660.91907}; + angles[]={6.2711902,1.2375345,0.011995304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=733; + type="Land_HBarrier_Big_F"; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={2670.9375,9.2616091,652.88672}; + angles[]={0.012000273,1.2375345,0.027990974}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=734; + type="Land_HBarrier_Big_F"; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={2678.1794,8.473505,641.90137}; + angles[]={6.187479,5.9499235,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=735; + type="Land_HBarrier_Big_F"; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={2662.2139,9.3768749,689.55023}; + angles[]={0.027993103,5.9499235,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=736; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={2670.2461,9.5259418,692.33081}; + angles[]={0.035985984,5.9499235,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=737; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={2678.2786,9.7231092,695.11139}; + angles[]={0.027990974,5.9499235,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=738; + type="Land_HBarrier_Big_F"; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={2686.3108,9.7511368,697.89197}; + angles[]={0.0080009829,5.9499235,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=739; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={2694.343,9.7541285,700.67255}; + angles[]={0.043971907,5.9499235,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=740; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={2701.2581,10.53318,690.63214}; + angles[]={0.019999012,1.2375345,0.09966857}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=741; + type="Land_HBarrier_Big_F"; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={2704.0386,10.954906,682.59985}; + angles[]={0.027993103,1.2375345,0.043970551}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=742; + type="Land_HBarrier_Big_F"; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={2706.8191,10.991399,674.56799}; + angles[]={0,1.2375431,0.051958453}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=743; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={2709.5999,10.857763,666.53516}; + angles[]={6.2671871,1.2375345,6.2751918}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=744; + type="Land_HBarrier_Big_F"; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={2712.3804,10.173396,658.50287}; + angles[]={6.1323409,1.2375345,6.2751918}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=745; + type="Land_HBarrier_Big_F"; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={2686.1299,8.5893736,644.91821}; + angles[]={6.2671909,5.9499235,0.035982672}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=746; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={2694.1624,9.0673923,647.69879}; + angles[]={6.1954122,5.9499235,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=747; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={2702.1946,9.455905,650.47937}; + angles[]={6.2033553,5.9499235,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=748; + type="Land_HBarrier_Big_F"; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={2710.2271,9.5988226,653.25995}; + angles[]={6.1362519,5.9499235,0.071875811}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=749; + type="Land_HBarrier_Big_F"; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={2653.5364,12.505449,687.86908}; + angles[]={0.1312411,5.9499235,0.051953323}; + }; + side="Empty"; + class Attributes + { + }; + id=750; + type="Land_BarGate_F"; + atlOffset=0.25; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={2722.5481,10.495522,661.22894}; + angles[]={6.2073312,4.3791275,0.043971907}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=751; + type="Land_HBarrier_Big_F"; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={2719.7671,11.286497,669.26099}; + angles[]={6.1959186,4.3791361,0.047961645}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=752; + type="Land_HBarrier_Big_F"; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={2716.9868,11.546179,677.29358}; + angles[]={6.2671871,4.3791275,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=753; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={2714.2061,11.553402,685.32599}; + angles[]={0.0087266462,4.3791361,0.10758209}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=754; + type="Land_HBarrier_Big_F"; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={2711.4258,11.215982,693.35828}; + angles[]={6.2511969,4.3791275,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=755; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={2708.645,10.652201,701.39099}; + angles[]={0.13962634,4.3791361,0.079831354}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=756; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={2702.2937,9.9165993,703.68933}; + angles[]={0.079830162,2.808331,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=757; + type="Land_HBarrier_Big_F"; + atlOffset=-9.5367432e-007; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={2719.1406,13.209116,655.02289}; + angles[]={6.211309,2.808331,6.2631865}; + }; + side="Empty"; + class Attributes + { + }; + id=758; + type="Land_BarGate_F"; + atlOffset=0.25; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={2698.3977,14.090937,693.39899}; + angles[]={0,3.8555284,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=759; + type="Land_TTowerSmall_1_F"; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={2673.5815,16.228161,649.83374}; + angles[]={0,4.3791275,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=760; + type="Land_TTowerSmall_2_F"; + atlOffset=4.7683716e-007; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={2672.1909,9.0864792,667.60699}; + angles[]={0,4.3791361,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=761; + type="Land_Medevac_house_V1_F"; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={2670.3831,13.340879,687.35101}; + angles[]={0,2.8083396,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=762; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-9.5367432e-007; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={2666.675,13.521282,679.71899}; + angles[]={0,1.2375431,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=763; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={2676.689,8.913002,654.61298}; + angles[]={0,4.3791361,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=764; + type="Land_Cargo_House_V3_F"; + atlOffset=9.5367432e-007; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={2695.7429,9.9789066,688.987}; + angles[]={0,1.2375431,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=765; + type="Land_Cargo_House_V3_F"; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={2705.447,14.228861,663.24597}; + angles[]={0,4.3791361,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=766; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={2701.74,13.69873,655.61298}; + angles[]={0,5.9499145,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=767; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={2700.3401,10.687263,676.6283}; + angles[]={0,1.2375431,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + disableSimulation=1; + }; + id=768; + type="Land_Cargo40_sand_F"; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={2702.9331,10.757576,677.53027}; + angles[]={0,1.2375431,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + disableSimulation=1; + }; + id=769; + type="Land_Cargo40_sand_F"; + atlOffset=-0.27700043; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={1416.756,46.828373,2995.3311}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=847; + type="Land_dp_mainFactory_F"; + atlOffset=-0.20000076; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={1515.0343,45.794598,3063.5244}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=848; + type="Land_dp_bigTank_F"; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={1517.1794,37.312336,2985.6042}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=849; + type="Land_dp_bigTank_F"; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={1516.068,38.63224,3006.167}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=850; + type="Land_dp_bigTank_F"; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={1453.942,45.191208,3062.634}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=851; + type="Land_dp_bigTank_F"; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={1368.24,37.101715,2992.6306}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=852; + type="CargoPlaftorm_01_brown_ruins_F"; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={1403.9264,47.965824,3046.6702}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=854; + type="Land_Cargo_Tower_V3_ruins_F"; + atlOffset=-0.11489105; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={1365.1606,41.480003,2976.6667}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=855; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item90 + { + dataType="Object"; + class PositionInfo + { + position[]={4849.0977,7.332305,1841.131}; + angles[]={0.011995304,3.0540287,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=856; + type="Land_HBarrier_5_F"; + atlOffset=0.008972168; + }; + class Item91 + { + dataType="Object"; + class PositionInfo + { + position[]={4854.6943,7.3421674,1841.7814}; + angles[]={0.0039967569,3.0540287,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=857; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item92 + { + dataType="Object"; + class PositionInfo + { + position[]={4860.313,7.3650475,1842.3665}; + angles[]={6.223258,3.0540287,0.071875811}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=858; + type="Land_HBarrier_5_F"; + }; + class Item93 + { + dataType="Object"; + class PositionInfo + { + position[]={4865.9922,7.5371661,1842.9185}; + angles[]={0.0079935296,3.0540287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=859; + type="Land_HBarrier_5_F"; + }; + class Item94 + { + dataType="Object"; + class PositionInfo + { + position[]={4871.583,7.7119565,1843.5697}; + angles[]={0.0079935296,3.0540287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=860; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item95 + { + dataType="Object"; + class PositionInfo + { + position[]={4877.1714,7.7018819,1844.1622}; + angles[]={0.012000273,3.0540287,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=861; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item96 + { + dataType="Object"; + class PositionInfo + { + position[]={4882.7583,7.6916299,1844.7313}; + angles[]={0.0080009829,3.0540287,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=862; + type="Land_HBarrier_5_F"; + }; + class Item97 + { + dataType="Object"; + class PositionInfo + { + position[]={4888.292,7.9077148,1845.2085}; + angles[]={6.2192721,3.0540287,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=863; + type="Land_HBarrier_5_F"; + }; + class Item98 + { + dataType="Object"; + class PositionInfo + { + position[]={4892.0894,8.0142756,1843.4851}; + angles[]={0.0080009829,4.624825,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=864; + type="Land_HBarrier_5_F"; + }; + class Item99 + { + dataType="Object"; + class PositionInfo + { + position[]={4892.5171,7.9287257,1837.9519}; + angles[]={6.2232571,4.624825,0.063913256}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=865; + type="Land_HBarrier_5_F"; + }; + class Item100 + { + dataType="Object"; + class PositionInfo + { + position[]={4893.0024,7.9855037,1832.3987}; + angles[]={0.0080009829,4.624825,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=866; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item101 + { + dataType="Object"; + class PositionInfo + { + position[]={4894.8643,8.3203354,1810.118}; + angles[]={0.0080009829,4.624825,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=867; + type="Land_HBarrier_5_F"; + }; + class Item102 + { + dataType="Object"; + class PositionInfo + { + position[]={4895.3091,8.3731747,1804.5166}; + angles[]={0.0080009829,4.624825,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=868; + type="Land_HBarrier_5_F"; + atlOffset=2.9563904e-005; + }; + class Item103 + { + dataType="Object"; + class PositionInfo + { + position[]={4854.3545,7.497592,1796.6824}; + angles[]={0.0039967569,3.0540287,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=869; + type="Land_HBarrier_5_F"; + atlOffset=0.0089712143; + }; + class Item104 + { + dataType="Object"; + class PositionInfo + { + position[]={4859.9507,7.6872506,1797.3331}; + angles[]={0.0039967569,3.0540287,0.079829417}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=870; + type="Land_HBarrier_5_F"; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={4865.5698,8.0293884,1797.918}; + angles[]={0.079829417,3.0540287,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=871; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item106 + { + dataType="Object"; + class PositionInfo + { + position[]={4871.249,8.0716591,1798.4702}; + angles[]={0.0039967569,3.0540287,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=872; + type="Land_HBarrier_5_F"; + atlOffset=2.9563904e-005; + }; + class Item107 + { + dataType="Object"; + class PositionInfo + { + position[]={4876.8394,8.2038145,1799.1215}; + angles[]={0.0039967569,3.0540287,0.075853623}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=873; + type="Land_HBarrier_5_F"; + }; + class Item108 + { + dataType="Object"; + class PositionInfo + { + position[]={4888.0156,8.419384,1800.2825}; + angles[]={0.0039967569,3.0540287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=874; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item109 + { + dataType="Object"; + class PositionInfo + { + position[]={4893.5483,8.4044323,1800.7603}; + angles[]={0.0079935296,3.0540287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=875; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item110 + { + dataType="Object"; + class PositionInfo + { + position[]={4831.8296,7.0550194,1794.3047}; + angles[]={0.0079935296,3.0540287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=876; + type="Land_HBarrier_5_F"; + atlOffset=0.0089421272; + }; + class Item111 + { + dataType="Object"; + class PositionInfo + { + position[]={4837.4263,7.2405772,1794.9554}; + angles[]={0.0080009829,3.0540287,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=877; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item112 + { + dataType="Object"; + class PositionInfo + { + position[]={4843.0449,7.2954326,1795.5405}; + angles[]={0.0080009829,3.0540287,0.071875811}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=878; + type="Land_HBarrier_5_F"; + }; + class Item113 + { + dataType="Object"; + class PositionInfo + { + position[]={4848.7236,7.4615917,1796.0928}; + angles[]={0.0080009829,3.0540287,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=879; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item114 + { + dataType="Object"; + class PositionInfo + { + position[]={4826.3501,6.714829,1836.6216}; + angles[]={0.0039967569,4.624825,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=880; + type="Land_HBarrier_5_F"; + }; + class Item115 + { + dataType="Object"; + class PositionInfo + { + position[]={4826.7783,6.7532754,1831.088}; + angles[]={0.0039967569,4.624825,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=881; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item116 + { + dataType="Object"; + class PositionInfo + { + position[]={4827.2632,6.9288974,1825.5352}; + angles[]={0.075853623,4.624825,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=882; + type="Land_HBarrier_5_F"; + }; + class Item117 + { + dataType="Object"; + class PositionInfo + { + position[]={4827.6831,7.0205035,1820.0009}; + angles[]={0.012000273,4.624825,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=883; + type="Land_HBarrier_5_F"; + }; + class Item118 + { + dataType="Object"; + class PositionInfo + { + position[]={4829.5703,7.017571,1797.6531}; + angles[]={0.0080009829,4.624825,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=884; + type="Land_HBarrier_5_F"; + }; + class Item119 + { + dataType="Object"; + class PositionInfo + { + position[]={4881.2891,8.3991899,1799.6085}; + angles[]={0.0080009829,3.0540287,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=885; + type="Land_HBarrier_3_F"; + atlOffset=6.1035156e-005; + }; + class Item120 + { + dataType="Object"; + class PositionInfo + { + position[]={4882.3916,8.4763346,1797.277}; + angles[]={6.2192721,4.624825,0.071875811}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=886; + type="Land_HBarrier_3_F"; + atlOffset=6.0558319e-005; + }; + class Item121 + { + dataType="Object"; + class PositionInfo + { + position[]={4886.2114,8.4094906,1797.7101}; + angles[]={0.0080009829,4.624825,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=887; + type="Land_HBarrier_3_F"; + atlOffset=6.1035156e-005; + }; + class Item122 + { + dataType="Object"; + class PositionInfo + { + position[]={4884.7686,8.286026,1793.6371}; + angles[]={0.0039967569,3.0540287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=888; + type="Land_HBarrier_5_F"; + atlOffset=6.0081482e-005; + }; + class Item123 + { + dataType="Object"; + class PositionInfo + { + position[]={4891.3774,8.9761286,1843.5939}; + angles[]={0,3.839427,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=889; + type="Land_Mil_WallBig_Corner_F"; + atlOffset=-4.7683716e-007; + }; + class Item124 + { + dataType="Object"; + class PositionInfo + { + position[]={4890.1899,8.9739513,1844.5669}; + angles[]={0,2.2686305,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=890; + type="Land_Mil_WallBig_Corner_F"; + atlOffset=-4.7683716e-007; + }; + class Item125 + { + dataType="Object"; + class PositionInfo + { + position[]={4887.3237,8.7981653,1843.8047}; + angles[]={0,3.0540287,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=891; + type="Land_Mil_WallBig_4m_F"; + atlOffset=-9.5367432e-007; + }; + class Item126 + { + dataType="Object"; + class PositionInfo + { + position[]={4891.1226,9.0103846,1840.6248}; + angles[]={0,4.624825,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=892; + type="Land_Mil_WallBig_4m_F"; + atlOffset=-4.7683716e-007; + }; + class Item127 + { + dataType="Object"; + class PositionInfo + { + position[]={4834.3984,8.1371012,1795.8823}; + angles[]={0,6.1821041,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=893; + type="Land_Mil_WallBig_4m_F"; + }; + class Item128 + { + dataType="Object"; + class PositionInfo + { + position[]={4831.543,7.9996271,1795.0812}; + angles[]={0,5.3967056,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=894; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item129 + { + dataType="Object"; + class PositionInfo + { + position[]={4830.3418,7.9919682,1796.0385}; + angles[]={0,0.68431711,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=895; + type="Land_Mil_WallBig_Corner_F"; + atlOffset=-4.7683716e-007; + }; + class Item130 + { + dataType="Object"; + class PositionInfo + { + position[]={4830.5576,7.9617491,1799.0104}; + angles[]={0,1.4697061,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=896; + type="Land_Mil_WallBig_4m_F"; + }; + class Item131 + { + dataType="Object"; + class PositionInfo + { + position[]={4828.1045,6.8755674,1814.3412}; + angles[]={0.0039967569,4.624825,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=901; + type="Land_HBarrier_5_F"; + }; + class Item132 + { + dataType="Object"; + class PositionInfo + { + position[]={4828.5322,6.9200516,1808.8079}; + angles[]={0.0079935296,4.624825,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=902; + type="Land_HBarrier_5_F"; + }; + class Item133 + { + dataType="Object"; + class PositionInfo + { + position[]={4829.0176,6.9614558,1803.2548}; + angles[]={0.012000273,4.624825,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=903; + type="Land_HBarrier_5_F"; + }; + class Item134 + { + dataType="Object"; + class PositionInfo + { + position[]={4893.4648,8.075798,1826.6945}; + angles[]={0.012000273,4.624825,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=904; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item135 + { + dataType="Object"; + class PositionInfo + { + position[]={4893.8926,8.2410078,1821.1613}; + angles[]={0.012000273,4.624825,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=905; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item136 + { + dataType="Object"; + class PositionInfo + { + position[]={4894.3774,8.2881393,1815.608}; + angles[]={0.0080009829,4.624825,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=906; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item137 + { + dataType="Object"; + class PositionInfo + { + position[]={4829.665,6.7949834,1838.9048}; + angles[]={6.2192721,3.0540287,0.075854406}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=910; + type="Land_HBarrier_5_F"; + }; + class Item138 + { + dataType="Object"; + class PositionInfo + { + position[]={4835.2617,6.7660975,1839.5552}; + angles[]={0.079830162,3.0540287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=911; + type="Land_HBarrier_5_F"; + }; + class Item139 + { + dataType="Object"; + class PositionInfo + { + position[]={4836.8931,7.0854273,1843.2711}; + angles[]={6.036325,4.624825,0.031990308}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=912; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item140 + { + dataType="Object"; + class PositionInfo + { + position[]={4846.8203,7.5719838,1844.5364}; + angles[]={6.1284328,4.624825,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=913; + type="Land_HBarrier_5_F"; + }; + class Item141 + { + dataType="Object"; + class PositionInfo + { + position[]={4875.3818,7.6667609,1836.717}; + angles[]={0,6.195622,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=916; + type="Land_Cargo_House_V3_F"; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={4866.2749,7.5405679,1836.179}; + angles[]={0,6.195622,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=917; + type="Land_Cargo_House_V3_F"; + }; + class Item143 + { + dataType="Object"; + class PositionInfo + { + position[]={4857.8638,7.4331894,1803.057}; + angles[]={0,3.0356162,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=918; + type="Land_Cargo_House_V3_F"; + }; + class Item144 + { + dataType="Object"; + class PositionInfo + { + position[]={4848.769,7.2776537,1802.351}; + angles[]={0,3.0356162,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=919; + type="Land_Cargo_House_V3_F"; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={4851.0288,11.351583,1836.677}; + angles[]={0,3.0540295,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=920; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-9.5367432e-007; + }; + class Item146 + { + dataType="Object"; + class PositionInfo + { + position[]={4831.5508,10.923687,1833.4301}; + angles[]={0,3.0540295,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=921; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-4.7683716e-007; + }; + class Item147 + { + dataType="Object"; + class PositionInfo + { + position[]={4835.1758,11.201475,1800.205}; + angles[]={0,6.195622,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=922; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item148 + { + dataType="Object"; + class PositionInfo + { + position[]={4891.04,12.545256,1805.698}; + angles[]={0,4.624826,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=923; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item149 + { + dataType="Object"; + class PositionInfo + { + position[]={4885.0908,19.984272,1835.9611}; + angles[]={0,4.624826,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=924; + type="Land_Cargo_Tower_V3_F"; + atlOffset=9.5367432e-007; + }; + class Item150 + { + dataType="Object"; + class PositionInfo + { + position[]={2353.6421,47.778564,306.57916}; + angles[]={0,1.4240013,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=933; + type="Land_dp_transformer_F"; + atlOffset=3.8146973e-006; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={2354.3049,48.125977,302.116}; + angles[]={0,1.4240013,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=934; + type="Land_dp_transformer_F"; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={2355.0471,48.368134,297.52411}; + angles[]={0,1.4240013,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=935; + type="Land_dp_transformer_F"; + atlOffset=3.8146973e-006; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={2358.8074,51.976765,289.84348}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=936; + type="Land_dp_smallTank_F"; + }; + class Item154 + { + dataType="Logic"; + class PositionInfo + { + position[]={2406.626,46.1133,292.55856}; + angles[]={0.019996032,6.1333303,6.2551923}; + }; + areaSize[]={1.4143066,0,5}; + flags=1; + id=937; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={2369.3181,50.844872,309.03055}; + angles[]={0,2.9753704,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=938; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={1494.3311,40.651726,3700.946}; + angles[]={0.067893311,0.21495475,6.2591867}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="Jackknal"; + }; + id=939; + type="Land_HelipadSquare_F"; + }; + class Item157 + { + dataType="Logic"; + class PositionInfo + { + position[]={1494.296,40.688805,3701.457}; + angles[]={0,0.25158921,0}; + }; + areaSize[]={8.3830004,0,9.974}; + areaIsRectangle=1; + flags=1; + id=940; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.070999146; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=4; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={1503.009,41.263611,3691.4531}; + angles[]={0.0080009829,1.8167582,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=941; + type="Land_BagFence_Long_F"; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={1504.2029,41.0065,3696.5486}; + angles[]={0.071874976,5.1096835,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=942; + type="Land_BagFence_Long_F"; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={1505.7197,40.741631,3702.0667}; + angles[]={0.011995304,1.8167582,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=943; + type="Land_BagFence_Long_F"; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={1506.9089,40.719196,3707.5291}; + angles[]={0.0039967569,4.7423553,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=944; + type="Land_BagFence_Long_F"; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={1506.2637,40.709312,3711.2056}; + angles[]={0,3.8384495,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=945; + type="Land_BagFence_Round_F"; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={1482.2892,41.25618,3702.4653}; + angles[]={0.027993103,4.9981432,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=946; + type="Land_BagFence_Long_F"; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={1480.8837,41.296234,3697.0544}; + angles[]={6.2551947,1.6405549,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=947; + type="Land_BagFence_Long_F"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={1481.3822,41.174587,3693.3552}; + angles[]={6.2432065,0.73664904,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=948; + type="Land_BagFence_Round_F"; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={1512.3845,41.117611,3704.2927}; + angles[]={0.0039967569,1.7710295,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=949; + type="StorageBladder_01_fuel_sand_F"; + }; + class Item167 + { + dataType="Object"; + class PositionInfo + { + position[]={1408.5442,49.163876,3681.3345}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=950; + type="Land_Cargo_Tower_V3_ruins_F"; + atlOffset=-0.054344177; + }; + class Item168 + { + dataType="Object"; + class PositionInfo + { + position[]={1470.3948,39.380741,3553.1699}; + angles[]={0,6.2571335,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=951; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item169 + { + dataType="Object"; + class PositionInfo + { + position[]={1512.3121,45.187695,3726.8262}; + angles[]={0,3.3182168,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=952; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item170 + { + dataType="Object"; + class PositionInfo + { + position[]={4739.7075,6.7929354,3428.8306}; + angles[]={6.2711902,6.0257177,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=955; + type="Land_WoodenBox_F"; + atlOffset=-4.5776367e-005; + }; + class Item171 + { + dataType="Object"; + class PositionInfo + { + position[]={4739.8696,6.7813053,3428.186}; + angles[]={6.2711902,2.92715,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=956; + type="Land_WoodenBox_F"; + atlOffset=-5.197525e-005; + }; + class Item172 + { + dataType="Object"; + class PositionInfo + { + position[]={4740.1265,6.7609034,3426.7432}; + angles[]={6.2751846,4.6735477,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=957; + type="Land_WoodenBox_F"; + }; + class Item173 + { + dataType="Object"; + class PositionInfo + { + position[]={4741.709,6.6789589,3418.3469}; + angles[]={6.2751846,6.0257177,6.2551947}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=958; + type="Land_WoodenBox_F"; + atlOffset=3.9100647e-005; + }; + class Item174 + { + dataType="Object"; + class PositionInfo + { + position[]={4739.124,7.1142101,3427.1787}; + angles[]={6.2751846,0,6.2551947}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=959; + type="TyreBarrier_01_black_F"; + }; + class Item175 + { + dataType="Object"; + class PositionInfo + { + position[]={4764.4287,7.0553923,3407.2375}; + angles[]={6.2631893,5.620935,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=960; + type="Dirthump_3_F"; + atlOffset=4.7683716e-007; + }; + class Item176 + { + dataType="Object"; + class PositionInfo + { + position[]={4743.1987,8.1930313,3420.4768}; + angles[]={6.2791886,1.3531355,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=961; + type="Land_MarketShelter_F"; + }; + class Item177 + { + dataType="Object"; + class PositionInfo + { + position[]={4746.6172,7.0267849,3429.7854}; + angles[]={6.2791886,3.5483963,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=962; + type="Land_WheelCart_F"; + atlOffset=-1.4305115e-006; + }; + class Item178 + { + dataType="Object"; + class PositionInfo + { + position[]={4754.4741,6.6509695,3412.3401}; + angles[]={6.2791886,0,6.2272449}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=963; + type="Land_StallWater_F"; + atlOffset=0.00066328049; + }; + class Item179 + { + dataType="Object"; + class PositionInfo + { + position[]={3165.897,15.102938,3470.7961}; + angles[]={0,6.1676316,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=965; + type="Land_cmp_Tower_F"; + atlOffset=4.7683716e-007; + }; + class Item180 + { + dataType="Object"; + class PositionInfo + { + position[]={3136.4448,15.451023,3468.8752}; + angles[]={0,1.5219246,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=966; + type="Land_cmp_Tower_F"; + }; + class Item181 + { + dataType="Object"; + class PositionInfo + { + position[]={3100.1665,10.907474,3535.6431}; + angles[]={0,1.2236947,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=967; + type="Land_Shed_Big_F"; + }; + class Item182 + { + dataType="Object"; + class PositionInfo + { + position[]={3146.686,8.9386139,3559.5181}; + angles[]={0,4.3252749,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="AntiAirPalme"; + }; + id=968; + type="Land_dp_transformer_F"; + }; + class Item183 + { + dataType="Object"; + class PositionInfo + { + position[]={3141.5891,8.8963156,3557.7419}; + angles[]={0,4.3416286,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="alij15"; + }; + id=969; + type="Land_dp_transformer_F"; + }; + class Item184 + { + dataType="Object"; + class PositionInfo + { + position[]={3136.3059,8.8290539,3555.8721}; + angles[]={0,4.378839,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="SocialSystemZF"; + }; + id=970; + type="Land_dp_transformer_F"; + atlOffset=4.7683716e-007; + }; + class Item185 + { + dataType="Object"; + class PositionInfo + { + position[]={3131.2959,8.8207216,3553.9609}; + angles[]={0,4.3661857,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="MatrikSky"; + }; + id=971; + type="Land_dp_transformer_F"; + atlOffset=4.7683716e-007; + }; + class Item186 + { + dataType="Object"; + class PositionInfo + { + position[]={3126.52,8.8721714,3552.0811}; + angles[]={0,4.3661857,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="Barmalei_UA"; + }; + id=972; + type="Land_dp_transformer_F"; + atlOffset=4.7683716e-007; + }; + class Item187 + { + dataType="Object"; + class PositionInfo + { + position[]={3121.8701,8.900979,3550.7041}; + angles[]={0,4.3661857,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="mocksybren"; + }; + id=973; + type="Land_dp_transformer_F"; + atlOffset=-4.7683716e-007; + }; + class Item188 + { + dataType="Object"; + class PositionInfo + { + position[]={3117.8181,9.0222836,3549.4629}; + angles[]={0,4.3661857,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="emicilord"; + }; + id=974; + type="Land_dp_transformer_F"; + }; + class Item189 + { + dataType="Object"; + class PositionInfo + { + position[]={3113.4651,9.0359192,3547.7881}; + angles[]={0,4.3661857,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="drodtm"; + }; + id=976; + type="Land_dp_transformer_F"; + atlOffset=-4.7683716e-007; + }; + class Item190 + { + dataType="Object"; + class PositionInfo + { + position[]={3151.4751,8.7000723,3554.7188}; + angles[]={6.2711902,4.1898656,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="JMcStone"; + }; + id=977; + type="Land_Tank_rust_F"; + }; + class Item191 + { + dataType="Object"; + class PositionInfo + { + position[]={3089.0581,10.813622,3500.199}; + angles[]={0,1.5442796,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=979; + type="Land_LampShabby_F"; + atlOffset=9.5367432e-007; + }; + class Item192 + { + dataType="Object"; + class PositionInfo + { + position[]={3161.3745,11.03163,3542.4749}; + angles[]={0,4.1981459,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=981; + type="Land_LampShabby_F"; + }; + class Item193 + { + dataType="Object"; + class PositionInfo + { + position[]={3168.8857,10.764041,3526.0801}; + angles[]={0,4.4929929,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=982; + type="Land_LampShabby_F"; + atlOffset=4.7683716e-007; + }; + class Item194 + { + dataType="Object"; + class PositionInfo + { + position[]={3089.9482,9.9434385,3513.8318}; + angles[]={0,1.4886326,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=983; + type="Land_Cargo_Patrol_V3_ruins_F"; + atlOffset=-0.019923687; + }; + class Item195 + { + dataType="Object"; + class PositionInfo + { + position[]={3155.2532,12.195105,3547.5259}; + angles[]={0,4.2043424,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=984; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item196 + { + dataType="Object"; + class PositionInfo + { + position[]={619.00287,40.682308,4523.4819}; + angles[]={0,5.709816,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=986; + type="Land_MarketShelter_F"; + }; + class Item197 + { + dataType="Object"; + class PositionInfo + { + position[]={601.96844,39.561501,4547.7988}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=987; + type="Land_StallWater_F"; + }; + class Item198 + { + dataType="Logic"; + class PositionInfo + { + position[]={1334.3306,34.299999,372.37488}; + }; + name="pathfinding"; + id=988; + type="Logic"; + }; + class Item199 + { + dataType="Layer"; + name="Open Ammo Dump_4"; + class Entities + { + items=24; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3897.9231,5.0714364,4632.9683}; + angles[]={0.055941612,2.7474427,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=997; + type="Land_BagFence_Short_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={3895.2131,5.1291261,4631.7524}; + angles[]={0.059927464,2.7474427,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=998; + type="Land_BagFence_Short_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3898.7212,5.1727657,4631.8149}; + angles[]={0.047963165,4.2911181,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=999; + type="Land_Pallet_MilBoxes_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={3895.9604,5.2312546,4630.2007}; + angles[]={0.059927464,2.7407756,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1000; + type="Land_MetalBarrel_F"; + atlOffset=-0.00013303757; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={3897.5164,5.5593061,4629.9395}; + angles[]={0,1.1654412,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1001; + type="Land_HBarrier_5_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={3896.3125,5.2284346,4629.3506}; + angles[]={6.2631865,2.7579851,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1002; + type="Land_MetalBarrel_F"; + atlOffset=-0.0013327599; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={3895.8887,5.2122774,4628.5449}; + angles[]={6.2631865,2.7094464,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1003; + type="Land_MetalBarrel_F"; + atlOffset=-0.0013766289; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={3896.6685,5.2101226,4628.437}; + angles[]={6.2631865,2.7473373,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1004; + type="Land_MetalBarrel_F"; + atlOffset=-0.0013771057; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={3899.9609,5.2524519,4629.1172}; + angles[]={6.2631865,2.7474427,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1005; + type="Land_Pallet_MilBoxes_F"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={3902.1409,4.8761721,4634.6978}; + angles[]={0.12336996,2.7474427,6.2152901}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1006; + type="Land_BagFence_Short_F"; + atlOffset=4.7683716e-007; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={3902.4629,5.180099,4633.6245}; + angles[]={0.12336996,2.7474427,6.2152901}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1007; + type="Land_PaperBox_open_empty_F"; + atlOffset=4.7683716e-007; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={3896.3406,5.1942415,4627.6431}; + angles[]={6.2631865,2.7338634,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1008; + type="Land_MetalBarrel_F"; + atlOffset=-0.0013766289; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3897.0613,5.2671394,4627.3721}; + angles[]={6.259192,2.7387333,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1009; + type="Land_MetalBarrel_F"; + atlOffset=0.077406406; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3891.1519,5.0229521,4630.0991}; + angles[]={0.059927464,2.7474427,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1010; + type="Land_BagFence_Short_F"; + atlOffset=1.1444092e-005; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3903.1025,5.3602653,4632.2026}; + angles[]={0.039977662,2.7474427,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1011; + type="Land_PaperBox_closed_F"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={3891.2878,5.2363029,4629.0796}; + angles[]={0.059927464,2.808392,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1012; + type="Land_WaterBarrel_F"; + atlOffset=-0.0018606186; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={3899.0811,5.5892739,4626.7153}; + angles[]={0.039977662,2.7474427,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1013; + type="Land_HBarrier_5_F"; + atlOffset=0.047375202; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={3892.8342,5.4438648,4627.0098}; + angles[]={6.2671871,1.1423851,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1014; + type="Land_WaterTank_F"; + atlOffset=-0.0019607544; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={3903.7437,5.5069666,4630.6655}; + angles[]={0.043970551,2.7347713,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1015; + type="Land_CargoBox_V1_F"; + atlOffset=-0.001906395; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={3904.6375,5.3859072,4632.9204}; + angles[]={0.043971907,1.1654412,0.071875811}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1016; + type="Land_HBarrier_5_F"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={3890.7075,5.5030484,4627.0332}; + angles[]={6.2671909,1.1654412,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1017; + type="Land_HBarrier_5_F"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={3904.165,5.5901361,4628.8726}; + angles[]={0.043970551,2.7474427,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1018; + type="Land_HBarrier_5_F"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={3894.0476,5.480947,4624.6221}; + angles[]={0.043970551,2.7474427,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1019; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={3897.5591,7.3726583,4629.5068}; + angles[]={0,2.7474451,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1275; + type="CamoNet_OPFOR_open_F"; + }; + }; + id=996; + atlOffset=0.70263624; + }; + class Item200 + { + dataType="Layer"; + name="Vehicle Repair_4"; + class Entities + { + items=15; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3980.0774,5.1241236,4665.376}; + angles[]={0.067895547,2.7661562,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1022; + type="Land_ClutterCutter_large_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={3979.2087,6.2043982,4668.2236}; + angles[]={0,2.6671958,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1023; + type="Land_Scrap_MRAP_01_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3979.1836,5.9454532,4662.7383}; + angles[]={0.067895547,4.3683438,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1024; + type="Land_WeldingTrolley_01_F"; + atlOffset=-0.0015926361; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={3981.9597,5.7408237,4663.5996}; + angles[]={0.071875811,2.7870574,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1025; + type="Land_Workbench_01_F"; + atlOffset=-0.00018548965; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={3977.4143,6.2488861,4662.2905}; + angles[]={0,3.3460803,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1026; + type="Land_PortableLight_double_F"; + atlOffset=-4.7683716e-007; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={3974.9443,5.8905144,4663.1714}; + angles[]={0,4.3541231,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1027; + type="Land_HBarrier_5_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={3983.5806,6.292974,4664.9229}; + angles[]={0,2.4107718,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=1028; + type="Land_PortableLight_double_F"; + atlOffset=4.7683716e-007; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={3973.7803,5.7543612,4666.3657}; + angles[]={0.067895547,4.351613,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1029; + type="Land_HBarrier_1_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={3978.6646,6.0920033,4660.8013}; + angles[]={0.071875811,5.9239278,0.067895547}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1030; + type="Land_HBarrier_5_F"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={3973.2578,5.6758204,4667.6709}; + angles[]={6.2791886,4.351613,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1031; + type="Land_HBarrier_1_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={3984.6641,5.8875895,4666.9326}; + angles[]={0.067895547,4.3541231,0.063913256}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1032; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={3983.9329,6.0229931,4662.8618}; + angles[]={0.071875811,5.9239278,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1033; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3983.5171,5.7630014,4670.2192}; + angles[]={6.2113094,4.351613,0.063913256}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1034; + type="Land_HBarrier_1_F"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3983.1094,5.8179646,4671.3452}; + angles[]={6.2113094,4.351613,0.063913256}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1035; + type="Land_HBarrier_1_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3980.0769,7.1940632,4665.376}; + angles[]={0.067893311,2.9425902,6.2791882}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=1274; + type="CamoNet_OPFOR_big_F"; + atlOffset=4.7683716e-007; + }; + }; + id=1021; + atlOffset=0.14096165; + }; + class Item201 + { + dataType="Object"; + class PositionInfo + { + position[]={3914.939,4.8703365,4584.2324}; + angles[]={0.10362703,0.18335514,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1037; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item202 + { + dataType="Object"; + class PositionInfo + { + position[]={3909.2864,5.0287957,4583.0859}; + angles[]={0.019999012,5.905324,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1038; + type="Land_HBarrier_5_F"; + }; + class Item203 + { + dataType="Object"; + class PositionInfo + { + position[]={3908.6289,5.5538473,4580.6733}; + angles[]={0.023993526,5.905324,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1039; + type="Land_HBarrier_Big_F"; + atlOffset=1.1444092e-005; + }; + class Item204 + { + dataType="Object"; + class PositionInfo + { + position[]={3904.1743,5.0736413,4581.0562}; + angles[]={0.015994642,5.905324,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1040; + type="Land_HBarrier_5_F"; + atlOffset=2.6702881e-005; + }; + class Item205 + { + dataType="Object"; + class PositionInfo + { + position[]={3900.728,5.7867236,4577.5371}; + angles[]={0.087773547,5.905324,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1041; + type="Land_HBarrier_Big_F"; + }; + class Item206 + { + dataType="Object"; + class PositionInfo + { + position[]={3899.0618,5.3287487,4579.0269}; + angles[]={0.087774232,5.905324,6.1323404}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1042; + type="Land_HBarrier_5_F"; + }; + class Item207 + { + dataType="Object"; + class PositionInfo + { + position[]={3893.9495,5.5227485,4576.998}; + angles[]={0.015998369,5.905324,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1043; + type="Land_HBarrier_5_F"; + }; + class Item208 + { + dataType="Object"; + class PositionInfo + { + position[]={3892.8291,6.0503259,4574.4009}; + angles[]={0,5.9053216,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1044; + type="Land_HBarrier_Big_F"; + }; + class Item209 + { + dataType="Object"; + class PositionInfo + { + position[]={3984.8486,6.2447457,4612.085}; + angles[]={6.2551923,5.905324,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1045; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item210 + { + dataType="Object"; + class PositionInfo + { + position[]={3982.7166,5.7001066,4613.3901}; + angles[]={0.039979152,5.905324,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1046; + type="Land_HBarrier_5_F"; + }; + class Item211 + { + dataType="Object"; + class PositionInfo + { + position[]={3986.8992,5.964489,4615.0508}; + angles[]={6.0959535,5.905324,0.42787534}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1047; + type="Land_HBarrier_3_F"; + }; + class Item212 + { + dataType="Object"; + class PositionInfo + { + position[]={3953.366,6.0658226,4691.1792}; + angles[]={6.2791886,2.7637315,6.2152901}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1048; + type="Land_HBarrier_Big_F"; + }; + class Item213 + { + dataType="Object"; + class PositionInfo + { + position[]={3955.1179,5.4799562,4689.8711}; + angles[]={6.2751846,2.7637315,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1049; + type="Land_HBarrier_5_F"; + }; + class Item214 + { + dataType="Object"; + class PositionInfo + { + position[]={4000.8096,6.6619215,4715.8228}; + angles[]={6.2751846,2.787848,0.055941612}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1050; + type="Land_HBarrier_Big_F"; + }; + class Item215 + { + dataType="Object"; + class PositionInfo + { + position[]={4007.2429,6.656179,4715.0005}; + angles[]={6.2671871,1.2170514,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1051; + type="Land_HBarrier_Big_F"; + atlOffset=2.3841858e-006; + }; + class Item216 + { + dataType="Object"; + class PositionInfo + { + position[]={4015.2966,6.443325,4710.5117}; + angles[]={6.2511969,1.2170514,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1052; + type="Land_HBarrier_Big_F"; + }; + class Item217 + { + dataType="Object"; + class PositionInfo + { + position[]={4011.2693,6.0749044,4712.7563}; + angles[]={6.2551923,5.92944,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1053; + type="Land_HBarrier_3_F"; + }; + class Item218 + { + dataType="Object"; + class PositionInfo + { + position[]={3989.4624,6.5639682,4658.1636}; + angles[]={0.063912325,2.7661562,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1054; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item219 + { + dataType="Object"; + class PositionInfo + { + position[]={4015.6206,5.928647,4705.3018}; + angles[]={0.039977662,5.92944,6.2352223}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1055; + type="Land_HBarrier_5_F"; + }; + class Item220 + { + dataType="Object"; + class PositionInfo + { + position[]={4041.8948,7.4694195,4640.6494}; + angles[]={0.091741994,4.3586445,0.083803542}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1056; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item221 + { + dataType="Object"; + class PositionInfo + { + position[]={4040.9854,7.5001602,4634.4517}; + angles[]={0.091741994,2.787848,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1057; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item222 + { + dataType="Object"; + class PositionInfo + { + position[]={4036.0278,7.6540723,4626.2256}; + angles[]={0.012000273,2.787848,0.027990974}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1058; + type="Land_HBarrier_Big_F"; + }; + class Item223 + { + dataType="Object"; + class PositionInfo + { + position[]={4038.7419,7.2430463,4630.4253}; + angles[]={0.011995304,1.2170514,0.023993526}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1059; + type="Land_HBarrier_3_F"; + }; + class Item224 + { + dataType="Object"; + class PositionInfo + { + position[]={3981.5547,6.6679368,4655.0469}; + angles[]={6.2751846,2.7661562,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1060; + type="Land_HBarrier_Big_F"; + }; + class Item225 + { + dataType="Object"; + class PositionInfo + { + position[]={3974.1125,6.8338037,4652.1128}; + angles[]={6.2671909,2.7661562,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1061; + type="Land_HBarrier_Big_F"; + }; + class Item226 + { + dataType="Object"; + class PositionInfo + { + position[]={3958.761,6.4099441,4646.0625}; + angles[]={6.2232571,2.7661562,0.107583}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1062; + type="Land_HBarrier_Big_F"; + }; + class Item227 + { + dataType="Object"; + class PositionInfo + { + position[]={4032.1487,6.3297081,4646.1123}; + angles[]={0.079830162,1.2170514,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1063; + type="Land_HBarrierWall6_F"; + atlOffset=-4.7683716e-007; + }; + class Item228 + { + dataType="Object"; + class PositionInfo + { + position[]={4038.2861,6.6155782,4644.6479}; + angles[]={0.015998369,5.92944,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1064; + type="Land_HBarrier_5_F"; + }; + class Item229 + { + dataType="Object"; + class PositionInfo + { + position[]={3833.2483,6.5027461,4598.2944}; + angles[]={0,1.1956755,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1065; + type="Land_Mil_WiredFence_Gate_F"; + atlOffset=1.9073486e-006; + }; + class Item230 + { + dataType="Object"; + class PositionInfo + { + position[]={3852.5439,5.9520574,4648.7871}; + angles[]={6.2511969,2.7637315,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1066; + type="Land_HBarrier_5_F"; + }; + class Item231 + { + dataType="Object"; + class PositionInfo + { + position[]={3853.2007,6.4839749,4651.1987}; + angles[]={6.2631865,2.7637315,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1067; + type="Land_HBarrier_Big_F"; + }; + class Item232 + { + dataType="Object"; + class PositionInfo + { + position[]={3857.6558,5.8123479,4650.8149}; + angles[]={6.2671871,2.7637315,6.148015}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1068; + type="Land_HBarrier_5_F"; + }; + class Item233 + { + dataType="Object"; + class PositionInfo + { + position[]={3861.1003,6.0942688,4654.335}; + angles[]={6.183517,2.7637315,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1069; + type="Land_HBarrier_Big_F"; + }; + class Item234 + { + dataType="Object"; + class PositionInfo + { + position[]={3862.7678,5.3578506,4652.8447}; + angles[]={6.183517,2.7637315,6.2192731}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1070; + type="Land_HBarrier_5_F"; + }; + class Item235 + { + dataType="Object"; + class PositionInfo + { + position[]={3868.3447,5.0291667,4655.0586}; + angles[]={6.2392135,2.7637315,6.2312322}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1071; + type="Land_HBarrier_5_F"; + }; + class Item236 + { + dataType="Object"; + class PositionInfo + { + position[]={3869.0015,5.6471577,4657.4702}; + angles[]={6.187479,2.7637315,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1072; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item237 + { + dataType="Object"; + class PositionInfo + { + position[]={3873.4563,4.7540932,4657.0874}; + angles[]={6.2791886,2.7637315,6.1637564}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1073; + type="Land_HBarrier_5_F"; + }; + class Item238 + { + dataType="Object"; + class PositionInfo + { + position[]={3876.9014,5.0577259,4660.606}; + angles[]={6.247201,2.7637315,6.2232571}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1074; + type="Land_HBarrier_Big_F"; + }; + class Item239 + { + dataType="Object"; + class PositionInfo + { + position[]={3878.7791,4.5458565,4659.2476}; + angles[]={0.067895547,2.7524962,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1075; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item240 + { + dataType="Object"; + class PositionInfo + { + position[]={3883.5093,4.4415822,4662.5381}; + angles[]={6.2551923,2.1309371,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1076; + type="Land_HBarrier_5_F"; + }; + class Item241 + { + dataType="Object"; + class PositionInfo + { + position[]={3883.5693,5.0027637,4666.3452}; + angles[]={6.247201,2.1309371,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1077; + type="Land_HBarrier_Big_F"; + atlOffset=2.3841858e-007; + }; + class Item242 + { + dataType="Object"; + class PositionInfo + { + position[]={3886.624,4.4938674,4667.4624}; + angles[]={6.2791886,2.1309371,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1078; + type="Land_HBarrier_5_F"; + atlOffset=2.3841858e-007; + }; + class Item243 + { + dataType="Object"; + class PositionInfo + { + position[]={3888.085,4.9302387,4673.5474}; + angles[]={6.2591896,2.1309371,0.059928458}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1079; + type="Land_HBarrier_Big_F"; + atlOffset=7.1525574e-007; + }; + class Item244 + { + dataType="Object"; + class PositionInfo + { + position[]={3889.7385,4.5343714,4672.3872}; + angles[]={6.2791886,2.1309371,0.059927464}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1080; + type="Land_HBarrier_5_F"; + }; + class Item245 + { + dataType="Object"; + class PositionInfo + { + position[]={3892.853,4.4532251,4677.312}; + angles[]={0,2.1309371,0.035984326}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1081; + type="Land_HBarrier_5_F"; + atlOffset=-2.3841858e-007; + }; + class Item246 + { + dataType="Object"; + class PositionInfo + { + position[]={3892.6025,5.0954885,4680.7476}; + angles[]={0,2.1309371,6.2392149}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1082; + type="Land_HBarrier_Big_F"; + atlOffset=2.3841858e-007; + }; + class Item247 + { + dataType="Object"; + class PositionInfo + { + position[]={3895.9678,4.5530934,4682.2368}; + angles[]={0,2.1309371,0.043970551}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1083; + type="Land_HBarrier_5_F"; + }; + class Item248 + { + dataType="Object"; + class PositionInfo + { + position[]={3897.1179,5.207798,4687.9492}; + angles[]={0.012000273,2.1309371,0.043970551}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1084; + type="Land_HBarrier_Big_F"; + }; + class Item249 + { + dataType="Object"; + class PositionInfo + { + position[]={3899.0823,4.7252479,4687.1611}; + angles[]={0.0080009829,2.1309371,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1085; + type="Land_HBarrier_5_F"; + atlOffset=2.3841858e-007; + }; + class Item250 + { + dataType="Object"; + class PositionInfo + { + position[]={3903.0183,5.0003276,4691.0718}; + angles[]={0.015998369,2.8027196,0.051953323}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1086; + type="Land_HBarrier_5_F"; + }; + class Item251 + { + dataType="Object"; + class PositionInfo + { + position[]={3903.5317,5.3947706,4693.4434}; + angles[]={0.087773547,2.8027196,0.055941612}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1087; + type="Land_HBarrier_Big_F"; + }; + class Item252 + { + dataType="Object"; + class PositionInfo + { + position[]={3908.2056,5.2856193,4692.8999}; + angles[]={0.087774232,2.8027196,0.12730782}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1088; + type="Land_HBarrier_5_F"; + }; + class Item253 + { + dataType="Object"; + class PositionInfo + { + position[]={3911.5486,5.8662257,4696.271}; + angles[]={0.02399601,2.8027196,0.055941612}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1089; + type="Land_HBarrier_Big_F"; + }; + class Item254 + { + dataType="Object"; + class PositionInfo + { + position[]={3912.4502,5.5377703,4694.3965}; + angles[]={0.0039967569,5.9443121,0.059927464}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1090; + type="Land_HBarrier_3_F"; + }; + class Item255 + { + dataType="Object"; + class PositionInfo + { + position[]={3957.9419,6.6775398,4655.6328}; + angles[]={0,5.9077477,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1091; + type="Land_MedicalTent_01_NATO_generic_open_F"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + class Item256 + { + dataType="Object"; + class PositionInfo + { + position[]={3818.4866,5.2650671,4629.5283}; + angles[]={0,4.334528,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1092; + type="Land_Razorwire_F"; + }; + class Item257 + { + dataType="Object"; + class PositionInfo + { + position[]={3825.8054,5.1319871,4623.2876}; + angles[]={0.0080009829,4.334528,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1093; + type="Land_Razorwire_F"; + }; + class Item258 + { + dataType="Object"; + class PositionInfo + { + position[]={3824.759,5.0534968,4613.7275}; + angles[]={0.015998369,4.334528,0.0079935296}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1094; + type="Land_Razorwire_F"; + atlOffset=-4.7683716e-007; + }; + class Item259 + { + dataType="Object"; + class PositionInfo + { + position[]={3841.8337,5.3124299,4584.1958}; + angles[]={0,4.334528,0.063912325}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1095; + type="Land_Razorwire_F"; + }; + class Item260 + { + dataType="Object"; + class PositionInfo + { + position[]={3840.7869,5.187079,4574.6357}; + angles[]={0.0039967569,4.334528,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1096; + type="Land_Razorwire_F"; + atlOffset=4.7683716e-007; + }; + class Item261 + { + dataType="Object"; + class PositionInfo + { + position[]={3848.1057,5.288219,4568.3945}; + angles[]={0.0079935296,4.334528,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1097; + type="Land_Razorwire_F"; + }; + class Item262 + { + dataType="Object"; + class PositionInfo + { + position[]={3889.7676,5.6328664,4575.3379}; + angles[]={0.012000273,5.905324,6.2033553}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1098; + type="Land_HBarrier_3_F"; + atlOffset=-4.7683716e-007; + }; + class Item263 + { + dataType="Object"; + class PositionInfo + { + position[]={3834.2615,8.2004318,4593.8457}; + angles[]={0,1.1817001,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1099; + type="Land_LampSolar_F"; + atlOffset=-4.7683716e-007; + }; + class Item264 + { + dataType="Object"; + class PositionInfo + { + position[]={3966.3572,24.170511,4660.187}; + angles[]={0,2.7661562,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1100; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=15.524203; + }; + class Item265 + { + dataType="Object"; + class PositionInfo + { + position[]={3957.9424,8.6621761,4655.6328}; + angles[]={6.121582,2.7661562,0.27926266}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1101; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.14673996; + }; + class Item266 + { + dataType="Object"; + class PositionInfo + { + position[]={3966.5535,6.6936793,4649.1338}; + angles[]={6.247201,2.7661562,0.015994642}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1102; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item267 + { + dataType="Object"; + class PositionInfo + { + position[]={3975.7393,5.6880293,4664.8667}; + angles[]={0.067895547,4.3369527,6.2152901}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1103; + type="Land_PressureWasher_01_F"; + atlOffset=-0.0090379715; + }; + class Item268 + { + dataType="Object"; + class PositionInfo + { + position[]={3965.6719,5.926352,4651.8423}; + angles[]={0.047963165,2.7661562,0.011995304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1104; + type="Land_AirConditioner_03_F"; + atlOffset=-4.7683716e-007; + }; + class Item269 + { + dataType="Object"; + class PositionInfo + { + position[]={3952.1726,5.5492673,4653.9609}; + angles[]={0.027993103,4.3369527,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1105; + type="Land_AirConditioner_02_F"; + atlOffset=-4.7683716e-007; + }; + class Item270 + { + dataType="Object"; + class PositionInfo + { + position[]={3967.2451,6.72013,4659.2998}; + angles[]={0,5.9077477,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1106; + type="Land_MedicalTent_01_NATO_generic_closed_F"; + class CustomAttributes + { + class Attribute0 + { + property="MedSign_Hide"; + expression="_this animateSource ['MedSign_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute1 + { + property="Door_Hide"; + expression="_this animateSource ['Door_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute2 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + class Item271 + { + dataType="Object"; + class PositionInfo + { + position[]={3837.208,6.2720451,4642.6992}; + angles[]={6.2312331,2.7637315,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1107; + type="Land_HBarrier_5_F"; + }; + class Item272 + { + dataType="Object"; + class PositionInfo + { + position[]={3837.8638,6.8615088,4645.1104}; + angles[]={6.2432079,2.7637315,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1108; + type="Land_HBarrier_Big_F"; + }; + class Item273 + { + dataType="Object"; + class PositionInfo + { + position[]={3842.3206,6.3307033,4644.728}; + angles[]={6.2392149,2.7637315,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1109; + type="Land_HBarrier_5_F"; + }; + class Item274 + { + dataType="Object"; + class PositionInfo + { + position[]={3845.7651,6.8244205,4648.2476}; + angles[]={6.2671909,2.7637315,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1110; + type="Land_HBarrier_Big_F"; + }; + class Item275 + { + dataType="Object"; + class PositionInfo + { + position[]={3847.4319,6.2889094,4646.7568}; + angles[]={0.0079935296,2.7637315,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1111; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item276 + { + dataType="Object"; + class PositionInfo + { + position[]={3829.9639,6.6743579,4641.9746}; + angles[]={6.2352238,2.7637315,0.011995304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1112; + type="Land_HBarrier_Big_F"; + }; + class Item277 + { + dataType="Object"; + class PositionInfo + { + position[]={3831.6309,6.1403432,4640.4854}; + angles[]={6.2352238,2.7637315,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1113; + type="Land_HBarrier_5_F"; + }; + class Item278 + { + dataType="Object"; + class PositionInfo + { + position[]={3827.9128,6.0973015,4639.0093}; + angles[]={6.2551947,5.905324,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1114; + type="Land_HBarrier_3_F"; + }; + class Item279 + { + dataType="Object"; + class PositionInfo + { + position[]={3886.0493,5.6713343,4573.8623}; + angles[]={0.012000273,5.905324,0.063912325}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1115; + type="Land_HBarrier_5_F"; + }; + class Item280 + { + dataType="Object"; + class PositionInfo + { + position[]={3884.9282,6.1940055,4571.2651}; + angles[]={0.083802827,5.905324,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1116; + type="Land_HBarrier_Big_F"; + }; + class Item281 + { + dataType="Object"; + class PositionInfo + { + position[]={3881.8669,5.6336856,4572.2021}; + angles[]={0,5.9053216,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1117; + type="Land_HBarrier_3_F"; + }; + class Item282 + { + dataType="Object"; + class PositionInfo + { + position[]={3877.6841,5.522542,4570.5415}; + angles[]={0.011995304,5.905324,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1118; + type="Land_HBarrier_5_F"; + }; + class Item283 + { + dataType="Object"; + class PositionInfo + { + position[]={3876.5635,6.0341153,4567.9453}; + angles[]={0.015998369,5.905324,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1119; + type="Land_HBarrier_Big_F"; + }; + class Item284 + { + dataType="Object"; + class PositionInfo + { + position[]={3873.5017,5.5363507,4568.8813}; + angles[]={0.015998369,5.905324,0.059928458}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1120; + type="Land_HBarrier_3_F"; + }; + class Item285 + { + dataType="Object"; + class PositionInfo + { + position[]={3869.3191,5.323204,4567.2212}; + angles[]={0.087774232,5.905324,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1121; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item286 + { + dataType="Object"; + class PositionInfo + { + position[]={3868.198,6.0449266,4564.624}; + angles[]={0.095706634,5.905324,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1122; + type="Land_HBarrier_Big_F"; + }; + class Item287 + { + dataType="Object"; + class PositionInfo + { + position[]={3865.1365,5.5873713,4565.5605}; + angles[]={0.087774232,5.905324,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1123; + type="Land_HBarrier_3_F"; + }; + class Item288 + { + dataType="Object"; + class PositionInfo + { + position[]={4011.0066,5.9134612,4701.1992}; + angles[]={6.2591896,1.2170514,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1124; + type="Land_HBarrier_5_F"; + }; + class Item289 + { + dataType="Object"; + class PositionInfo + { + position[]={4013.4023,6.3289576,4700.4849}; + angles[]={0.043971907,1.2170514,6.2392135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1125; + type="Land_HBarrier_Big_F"; + }; + class Item290 + { + dataType="Object"; + class PositionInfo + { + position[]={4016.1741,6.0713444,4692.981}; + angles[]={6.2671909,1.2170514,6.2352238}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1126; + type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; + }; + class Item291 + { + dataType="Object"; + class PositionInfo + { + position[]={4012.9114,5.6695361,4696.0396}; + angles[]={6.2631865,1.2170514,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1127; + type="Land_HBarrier_5_F"; + }; + class Item292 + { + dataType="Object"; + class PositionInfo + { + position[]={4014.8164,5.6338892,4690.8804}; + angles[]={6.2751846,1.2170514,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1128; + type="Land_HBarrier_5_F"; + }; + class Item293 + { + dataType="Object"; + class PositionInfo + { + position[]={4016.7224,5.6378469,4685.7212}; + angles[]={6.2791886,1.2170514,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1129; + type="Land_HBarrier_5_F"; + }; + class Item294 + { + dataType="Object"; + class PositionInfo + { + position[]={4019.1182,6.042345,4685.0063}; + angles[]={6.2791886,1.2170514,6.2352238}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1130; + type="Land_HBarrier_Big_F"; + }; + class Item295 + { + dataType="Object"; + class PositionInfo + { + position[]={4021.8892,5.9606919,4677.502}; + angles[]={0.071875811,1.2170514,6.1677012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1131; + type="Land_HBarrier_Big_F"; + atlOffset=1.001358e-005; + }; + class Item296 + { + dataType="Object"; + class PositionInfo + { + position[]={4018.6282,5.6547041,4680.5615}; + angles[]={0.071875811,1.2170514,6.1637564}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1132; + type="Land_HBarrier_5_F"; + atlOffset=7.6293945e-006; + }; + class Item297 + { + dataType="Object"; + class PositionInfo + { + position[]={4020.5337,5.6975641,4675.4019}; + angles[]={0.0039967569,1.2170514,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1133; + type="Land_HBarrier_5_F"; + atlOffset=7.6293945e-006; + }; + class Item298 + { + dataType="Object"; + class PositionInfo + { + position[]={4022.438,5.8173208,4670.2427}; + angles[]={0.0039967569,1.2170514,0.035984326}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1134; + type="Land_HBarrier_5_F"; + atlOffset=7.1525574e-006; + }; + class Item299 + { + dataType="Object"; + class PositionInfo + { + position[]={4027.6064,6.2549734,4662.0229}; + angles[]={0.075853623,1.2170514,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1135; + type="Land_HBarrier_Big_F"; + }; + class Item300 + { + dataType="Object"; + class PositionInfo + { + position[]={4024.344,5.6182084,4665.0835}; + angles[]={0.0080009829,1.2170514,6.2551947}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1136; + type="Land_HBarrier_5_F"; + }; + class Item301 + { + dataType="Object"; + class PositionInfo + { + position[]={4026.2488,5.9661555,4659.9229}; + angles[]={0.0080009829,1.2170514,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1137; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item302 + { + dataType="Object"; + class PositionInfo + { + position[]={4024.7041,6.2117872,4669.8799}; + angles[]={0,1.2170531,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1138; + type="Land_HBarrier_Big_F"; + }; + class Item303 + { + dataType="Object"; + class PositionInfo + { + position[]={3995.9607,6.1053567,4618.6484}; + angles[]={0.043971907,5.905324,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1139; + type="Land_HBarrier_5_F"; + }; + class Item304 + { + dataType="Object"; + class PositionInfo + { + position[]={3992.9817,6.5409808,4615.3135}; + angles[]={6.183517,5.905324,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1140; + type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; + }; + class Item305 + { + dataType="Object"; + class PositionInfo + { + position[]={3990.8499,6.0494351,4616.6187}; + angles[]={6.2551923,5.905324,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1141; + type="Land_HBarrier_5_F"; + }; + class Item306 + { + dataType="Object"; + class PositionInfo + { + position[]={4008.3169,6.8670812,4621.4004}; + angles[]={0.12730782,5.905324,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1142; + type="Land_HBarrier_Big_F"; + }; + class Item307 + { + dataType="Object"; + class PositionInfo + { + position[]={4006.1858,6.2288775,4622.7065}; + angles[]={6.2631893,5.905324,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1143; + type="Land_HBarrier_5_F"; + }; + class Item308 + { + dataType="Object"; + class PositionInfo + { + position[]={4000.417,6.7503381,4618.2646}; + angles[]={6.2631865,5.905324,0.083803542}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1144; + type="Land_HBarrier_Big_F"; + }; + class Item309 + { + dataType="Object"; + class PositionInfo + { + position[]={4001.0735,6.3069353,4620.6768}; + angles[]={6.2631893,5.905324,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1145; + type="Land_HBarrier_5_F"; + }; + class Item310 + { + dataType="Object"; + class PositionInfo + { + position[]={4011.5305,6.1623297,4624.8276}; + angles[]={0.13517068,5.905324,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1146; + type="Land_HBarrier_5_F"; + }; + class Item311 + { + dataType="Object"; + class PositionInfo + { + position[]={4023.8853,6.9877038,4627.5801}; + angles[]={0,5.905324,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1147; + type="Land_HBarrier_Big_F"; + }; + class Item312 + { + dataType="Object"; + class PositionInfo + { + position[]={4021.7551,6.4815745,4628.8862}; + angles[]={0,5.905324,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1148; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item313 + { + dataType="Object"; + class PositionInfo + { + position[]={4015.9844,6.7444129,4624.4443}; + angles[]={6.2791739,5.905324,0.087774232}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1149; + type="Land_HBarrier_Big_F"; + }; + class Item314 + { + dataType="Object"; + class PositionInfo + { + position[]={4016.6409,6.4076304,4626.8564}; + angles[]={6.2791886,5.905324,0.011995304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1150; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item315 + { + dataType="Object"; + class PositionInfo + { + position[]={4025.9363,6.5396552,4630.5459}; + angles[]={0,5.905324,6.2312322}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1151; + type="Land_HBarrier_3_F"; + }; + class Item316 + { + dataType="Object"; + class PositionInfo + { + position[]={4029.5693,7.0840616,4627.8369}; + angles[]={0.075854406,4.3586445,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1152; + type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; + }; + class Item317 + { + dataType="Object"; + class PositionInfo + { + position[]={4030.6982,6.6522346,4654.3711}; + angles[]={0.012000273,1.2170514,0.063912325}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1153; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item318 + { + dataType="Object"; + class PositionInfo + { + position[]={4028.4749,6.062047,4654.6167}; + angles[]={0.075854406,1.2170514,0.063913256}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1154; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item319 + { + dataType="Object"; + class PositionInfo + { + position[]={4029.6008,6.1931195,4651.5669}; + angles[]={6.2152901,4.3586445,0.063913256}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1155; + type="Land_HBarrier_1_F"; + }; + class Item320 + { + dataType="Object"; + class PositionInfo + { + position[]={4030.2683,6.1448731,4650.4819}; + angles[]={6.2152901,4.3586445,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1156; + type="Land_HBarrier_1_F"; + atlOffset=4.7683716e-007; + }; + class Item321 + { + dataType="Object"; + class PositionInfo + { + position[]={3973.8972,5.7977715,4697.4688}; + angles[]={6.2791886,2.7637315,0.083802827}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1157; + type="Land_HBarrier_5_F"; + }; + class Item322 + { + dataType="Object"; + class PositionInfo + { + position[]={3976.8765,6.3825183,4700.8037}; + angles[]={0,2.7637315,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1158; + type="Land_HBarrier_Big_F"; + }; + class Item323 + { + dataType="Object"; + class PositionInfo + { + position[]={3979.0085,5.858108,4699.498}; + angles[]={0.067895547,2.7637315,6.2192721}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1159; + type="Land_HBarrier_5_F"; + }; + class Item324 + { + dataType="Object"; + class PositionInfo + { + position[]={3961.4067,6.0154438,4694.6401}; + angles[]={6.2791886,2.7637315,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1160; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item325 + { + dataType="Object"; + class PositionInfo + { + position[]={3963.6731,5.5588517,4693.4111}; + angles[]={6.2791886,2.7637315,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1161; + type="Land_HBarrier_5_F"; + }; + class Item326 + { + dataType="Object"; + class PositionInfo + { + position[]={3969.4409,6.1535449,4697.8525}; + angles[]={0,2.7637315,6.223258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1162; + type="Land_HBarrier_Big_F"; + }; + class Item327 + { + dataType="Object"; + class PositionInfo + { + position[]={3968.7847,5.7151871,4695.4399}; + angles[]={6.2791886,2.7637315,6.223258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1163; + type="Land_HBarrier_5_F"; + }; + class Item328 + { + dataType="Object"; + class PositionInfo + { + position[]={3959.3562,5.572463,4691.6738}; + angles[]={6.2791886,2.7637315,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1164; + type="Land_HBarrier_3_F"; + }; + class Item329 + { + dataType="Object"; + class PositionInfo + { + position[]={3989.4646,6.085444,4703.6484}; + angles[]={6.2751846,2.7637315,0.063912325}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1165; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item330 + { + dataType="Object"; + class PositionInfo + { + position[]={3992.4456,6.6040249,4706.9839}; + angles[]={6.2711854,2.7637315,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1166; + type="Land_HBarrier_Big_F"; + }; + class Item331 + { + dataType="Object"; + class PositionInfo + { + position[]={3994.5769,6.0854149,4705.6777}; + angles[]={6.2711854,2.7637315,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1167; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item332 + { + dataType="Object"; + class PositionInfo + { + position[]={3985.0098,6.4360485,4704.0317}; + angles[]={6.2791886,2.7637315,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1168; + type="Land_HBarrier_Big_F"; + }; + class Item333 + { + dataType="Object"; + class PositionInfo + { + position[]={3984.353,5.9676523,4701.6201}; + angles[]={0.063913256,2.7637315,0.075853623}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1169; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item334 + { + dataType="Object"; + class PositionInfo + { + position[]={3996.8621,6.5952597,4710.6338}; + angles[]={6.2711902,1.2170514,6.2711902}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1170; + type="Land_HBarrier_Big_F"; + }; + class Item335 + { + dataType="Object"; + class PositionInfo + { + position[]={3978.3704,12.390957,4644.2476}; + angles[]={0,1.1953574,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1171; + type="Land_MobileRadar_01_radar_F"; + atlOffset=4.7683716e-007; + }; + class Item336 + { + dataType="Object"; + class PositionInfo + { + position[]={3974.0095,7.5219574,4642.478}; + angles[]={0,1.1953598,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=1172; + type="Land_MobileRadar_01_generator_F"; + atlOffset=0.25139809; + }; + class Item337 + { + dataType="Object"; + class PositionInfo + { + position[]={3912.8662,5.2689815,4679.5728}; + angles[]={0,2.7637315,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1178; + type="Land_HelipadSquare_F"; + atlOffset=0.65579796; + }; + class Item338 + { + dataType="Object"; + class PositionInfo + { + position[]={3861.0046,5.3818631,4563.876}; + angles[]={0.091741346,5.8957028,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1179; + type="Land_HBarrier_5_F"; + }; + class Item339 + { + dataType="Object"; + class PositionInfo + { + position[]={3859.9131,6.014379,4561.2666}; + angles[]={0.02399601,5.905324,0.059928458}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1180; + type="Land_HBarrier_Big_F"; + }; + class Item340 + { + dataType="Object"; + class PositionInfo + { + position[]={3857.0334,5.1842847,4564.7222}; + angles[]={0.087774232,1.1548644,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1181; + type="Land_HBarrier_5_F"; + }; + class Item341 + { + dataType="Object"; + class PositionInfo + { + position[]={3854.7512,5.6746297,4564.9595}; + angles[]={0.015998369,1.1548644,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1182; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item342 + { + dataType="Object"; + class PositionInfo + { + position[]={3919.9539,5.7760897,4694.9077}; + angles[]={0.0040116427,3.4006062,0.10362761}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1183; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item343 + { + dataType="Object"; + class PositionInfo + { + position[]={3928.0786,6.3980489,4694.8618}; + angles[]={0.0080009829,3.4325023,0.011995304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1184; + type="Land_HBarrier_Big_F"; + }; + class Item344 + { + dataType="Object"; + class PositionInfo + { + position[]={3925.27,5.9048352,4693.5}; + angles[]={0,3.4006062,0.015994642}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1185; + type="Land_HBarrier_5_F"; + }; + class Item345 + { + dataType="Object"; + class PositionInfo + { + position[]={3919.8889,6.2139297,4697.043}; + angles[]={0.012000273,3.4325023,0.10362703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1186; + type="Land_HBarrier_Big_F"; + }; + class Item346 + { + dataType="Object"; + class PositionInfo + { + position[]={3936.1443,5.9605098,4690.6191}; + angles[]={0.071875811,3.4006062,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1187; + type="Land_HBarrier_5_F"; + }; + class Item347 + { + dataType="Object"; + class PositionInfo + { + position[]={3944.7839,6.3000002,4690.3623}; + angles[]={0,3.4325023,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1188; + type="Land_HBarrier_Big_F"; + }; + class Item348 + { + dataType="Object"; + class PositionInfo + { + position[]={3941.4612,5.9121485,4689.2095}; + angles[]={6.2791886,3.4006062,6.2113094}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1189; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item349 + { + dataType="Object"; + class PositionInfo + { + position[]={3936.4314,6.2871909,4692.6123}; + angles[]={0.075853623,3.4325023,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1190; + type="Land_HBarrier_Big_F"; + }; + class Item350 + { + dataType="Object"; + class PositionInfo + { + position[]={3930.8281,5.9771399,4692.0269}; + angles[]={0,3.4006062,0.0079935296}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1191; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item351 + { + dataType="Object"; + class PositionInfo + { + position[]={3915.6306,5.4967694,4695.5669}; + angles[]={0.012000273,5.9443121,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1192; + type="Land_HBarrier_3_F"; + }; + class Item352 + { + dataType="Object"; + class PositionInfo + { + position[]={3978.1328,5.6844339,4610.2461}; + angles[]={0.035984326,5.2599406,0.035984326}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1193; + type="Land_HBarrier_5_F"; + }; + class Item353 + { + dataType="Object"; + class PositionInfo + { + position[]={3978.1206,6.0743766,4606.438}; + angles[]={6.259192,5.2599406,0.031988446}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1194; + type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; + }; + class Item354 + { + dataType="Object"; + class PositionInfo + { + position[]={3975.0808,5.4702158,4605.2827}; + angles[]={6.2591896,5.2599406,0.035984326}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1195; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item355 + { + dataType="Object"; + class PositionInfo + { + position[]={3973.6958,6.1076665,4599.1797}; + angles[]={0.055940546,5.2599406,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1196; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item356 + { + dataType="Object"; + class PositionInfo + { + position[]={3972.0286,5.5950394,4600.3193}; + angles[]={0.051953323,5.2599406,0.039977662}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1197; + type="Land_HBarrier_5_F"; + }; + class Item357 + { + dataType="Object"; + class PositionInfo + { + position[]={3968.9756,5.4423747,4595.355}; + angles[]={6.2751846,5.2599406,0.039977662}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1198; + type="Land_HBarrier_5_F"; + }; + class Item358 + { + dataType="Object"; + class PositionInfo + { + position[]={3969.269,6.2573395,4591.9233}; + angles[]={0.067895547,5.2599406,0.11153521}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1199; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item359 + { + dataType="Object"; + class PositionInfo + { + position[]={3965.9231,5.7427821,4590.3916}; + angles[]={0.071875811,5.2599406,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1200; + type="Land_HBarrier_5_F"; + }; + class Item360 + { + dataType="Object"; + class PositionInfo + { + position[]={3964.8447,6.4435644,4584.6655}; + angles[]={6.2192731,5.2599406,6.251195}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1201; + type="Land_HBarrier_Big_F"; + }; + class Item361 + { + dataType="Object"; + class PositionInfo + { + position[]={3962.8716,6.0277481,4585.4287}; + angles[]={0.071875811,5.2599406,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1202; + type="Land_HBarrier_5_F"; + }; + class Item362 + { + dataType="Object"; + class PositionInfo + { + position[]={3958.9846,6.0271268,4581.4692}; + angles[]={0.0039967569,5.9317231,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1203; + type="Land_HBarrier_5_F"; + }; + class Item363 + { + dataType="Object"; + class PositionInfo + { + position[]={3958.5012,6.5252323,4579.0908}; + angles[]={0.0080009829,5.9317231,6.2511969}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1204; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item364 + { + dataType="Object"; + class PositionInfo + { + position[]={3953.821,5.9497733,4579.5752}; + angles[]={0.0039967569,5.9317231,0.035984326}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1205; + type="Land_HBarrier_5_F"; + }; + class Item365 + { + dataType="Object"; + class PositionInfo + { + position[]={3950.5203,6.494081,4576.1626}; + angles[]={0.0039967569,5.9317231,0.035984326}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1206; + type="Land_HBarrier_Big_F"; + }; + class Item366 + { + dataType="Object"; + class PositionInfo + { + position[]={3949.5947,6.0037894,4578.0259}; + angles[]={0.075854406,2.7901301,0.035984326}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1207; + type="Land_HBarrier_3_F"; + atlOffset=-4.7683716e-007; + }; + class Item367 + { + dataType="Object"; + class PositionInfo + { + position[]={3942.0991,5.7431087,4577.4204}; + angles[]={0.067895547,0.246424,0.031990308}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1208; + type="Land_HBarrier_5_F"; + }; + class Item368 + { + dataType="Object"; + class PositionInfo + { + position[]={3933.9741,6.1043463,4577.3638}; + angles[]={0.063912325,0.27832013,0.091741994}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1209; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item369 + { + dataType="Object"; + class PositionInfo + { + position[]={3936.7654,5.5944128,4578.7603}; + angles[]={0.13517068,0.246424,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1210; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; + }; + class Item370 + { + dataType="Object"; + class PositionInfo + { + position[]={3942.1902,6.3607821,4575.2852}; + angles[]={0.071875811,0.27832013,0.027993103}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1211; + type="Land_HBarrier_Big_F"; + }; + class Item371 + { + dataType="Object"; + class PositionInfo + { + position[]={3925.8555,5.0603104,4581.5039}; + angles[]={0.11942852,0.246424,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1212; + type="Land_HBarrier_5_F"; + }; + class Item372 + { + dataType="Object"; + class PositionInfo + { + position[]={3917.2126,5.4928808,4581.6523}; + angles[]={6.2511969,0.27832013,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1213; + type="Land_HBarrier_Big_F"; + }; + class Item373 + { + dataType="Object"; + class PositionInfo + { + position[]={3920.5217,4.8822088,4582.8467}; + angles[]={0.035984326,0.246424,0.0079935296}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1214; + type="Land_HBarrier_5_F"; + }; + class Item374 + { + dataType="Object"; + class PositionInfo + { + position[]={3925.5933,5.7327313,4579.5073}; + angles[]={0.051953323,0.27832013,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1215; + type="Land_HBarrier_Big_F"; + atlOffset=-4.7683716e-007; + }; + class Item375 + { + dataType="Object"; + class PositionInfo + { + position[]={3931.1895,5.3103871,4580.1636}; + angles[]={0.055940546,0.246424,0.015994642}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1216; + type="Land_HBarrier_5_F"; + }; + class Item376 + { + dataType="Object"; + class PositionInfo + { + position[]={3946.4299,5.8018928,4576.8149}; + angles[]={0.075854406,2.7901301,0.035984326}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1217; + type="Land_HBarrier_3_F"; + }; + class Item377 + { + dataType="Object"; + class PositionInfo + { + position[]={3950.8862,5.7003436,4688.0005}; + angles[]={6.2791886,2.7637315,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1218; + type="Land_HBarrier_3_F"; + }; + class Item378 + { + dataType="Object"; + class PositionInfo + { + position[]={3945.8955,5.8202696,4687.981}; + angles[]={0,3.4032674,6.2073312}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1219; + type="Land_HBarrier_3_F"; + }; + class Item379 + { + dataType="Object"; + class PositionInfo + { + position[]={3948.3833,5.6021667,4687.5151}; + angles[]={6.2791886,3.1787562,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1220; + type="Land_HBarrier_1_F"; + }; + class Item380 + { + dataType="Object"; + class PositionInfo + { + position[]={3947.9622,5.070858,4593.314}; + angles[]={0,5.8940892,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1221; + type="Land_HelipadSquare_F"; + atlOffset=0.64489746; + }; + class Item381 + { + dataType="Object"; + class PositionInfo + { + position[]={3851.2104,5.5821619,4572.8257}; + angles[]={0.0040116427,4.3092923,6.1954112}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1222; + type="Land_HBarrier_Big_F"; + }; + class Item382 + { + dataType="Object"; + class PositionInfo + { + position[]={3854.6201,5.2997866,4569.9312}; + angles[]={0.0080009829,4.3092923,0.055941612}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1223; + type="Land_HBarrier_5_F"; + }; + class Item383 + { + dataType="Object"; + class PositionInfo + { + position[]={3852.4617,5.1606321,4574.9897}; + angles[]={6.2192721,4.3092923,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1224; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item384 + { + dataType="Object"; + class PositionInfo + { + position[]={3850.3047,5.3858352,4580.0498}; + angles[]={6.2791886,4.3092923,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1225; + type="Land_HBarrier_5_F"; + }; + class Item385 + { + dataType="Object"; + class PositionInfo + { + position[]={3847.8757,5.7495351,4580.6455}; + angles[]={0,4.3092923,0.051953323}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1226; + type="Land_HBarrier_Big_F"; + }; + class Item386 + { + dataType="Object"; + class PositionInfo + { + position[]={3844.7393,5.7720976,4588.0044}; + angles[]={0,4.3092923,6.2751918}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1227; + type="Land_HBarrier_Big_F"; + atlOffset=1.2874603e-005; + }; + class Item387 + { + dataType="Object"; + class PositionInfo + { + position[]={3848.1462,5.1345162,4585.1084}; + angles[]={6.2113094,4.3092923,0.055941612}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1228; + type="Land_HBarrier_5_F"; + atlOffset=5.7220459e-006; + }; + class Item388 + { + dataType="Object"; + class PositionInfo + { + position[]={3845.9895,5.2879772,4590.168}; + angles[]={0.0039967569,4.3092923,6.2711902}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1229; + type="Land_HBarrier_5_F"; + atlOffset=1.1920929e-005; + }; + class Item389 + { + dataType="Object"; + class PositionInfo + { + position[]={3834.5142,5.7850571,4613.1499}; + angles[]={0.019996032,4.3755054,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1230; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item390 + { + dataType="Object"; + class PositionInfo + { + position[]={3836.1729,5.3026338,4614.4971}; + angles[]={0.015998369,4.3755054,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1231; + type="Land_HBarrier_5_F"; + atlOffset=-9.5367432e-007; + }; + class Item391 + { + dataType="Object"; + class PositionInfo + { + position[]={3831.4465,5.8154392,4621.3452}; + angles[]={0.011995304,4.3755054,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1232; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-006; + }; + class Item392 + { + dataType="Object"; + class PositionInfo + { + position[]={3834.0938,5.3791456,4619.8589}; + angles[]={0.015998369,4.3755054,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1233; + type="Land_HBarrier_5_F"; + atlOffset=-4.7683716e-007; + }; + class Item393 + { + dataType="Object"; + class PositionInfo + { + position[]={3832.2756,5.3094182,4625.0498}; + angles[]={0.0039967569,4.3755054,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1234; + type="Land_HBarrier_5_F"; + }; + class Item394 + { + dataType="Object"; + class PositionInfo + { + position[]={3830.459,5.4768872,4630.2407}; + angles[]={6.2152901,4.3755054,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1235; + type="Land_HBarrier_5_F"; + }; + class Item395 + { + dataType="Object"; + class PositionInfo + { + position[]={3825.991,6.3411922,4636.917}; + angles[]={6.2073312,4.3755054,0.055941612}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1236; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item396 + { + dataType="Object"; + class PositionInfo + { + position[]={3828.6401,5.8433332,4635.4316}; + angles[]={6.2073312,4.3755054,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1237; + type="Land_HBarrier_5_F"; + }; + class Item397 + { + dataType="Object"; + class PositionInfo + { + position[]={3828.7598,5.8628678,4629.0127}; + angles[]={6.215291,4.3755054,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1238; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item398 + { + dataType="Object"; + class PositionInfo + { + position[]={3994.9824,5.9464064,4686.2207}; + angles[]={0,3.5378942,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1242; + type="Land_HelipadSquare_F"; + atlOffset=0.70659685; + }; + class Item399 + { + dataType="Object"; + class PositionInfo + { + position[]={4012.2581,5.9958444,4645.0737}; + angles[]={0,5.1086912,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1243; + type="Land_HelipadSquare_F"; + atlOffset=0.63049507; + }; + class Item400 + { + dataType="Object"; + class PositionInfo + { + position[]={3867.9131,5.1072426,4640.6069}; + angles[]={0,3.5378942,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1244; + type="Land_HelipadSquare_F"; + atlOffset=0.66751099; + }; + class Item401 + { + dataType="Object"; + class PositionInfo + { + position[]={3888.6826,5.2635531,4589.9497}; + angles[]={0,5.1086912,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=1245; + type="Land_HelipadSquare_F"; + atlOffset=0.61740541; + }; + class Item402 + { + dataType="Object"; + class PositionInfo + { + position[]={3908.7686,17.03849,4626.9604}; + angles[]={0.027990974,1.1766464,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1246; + type="Land_LampAirport_F"; + atlOffset=4.7683716e-007; + }; + class Item403 + { + dataType="Object"; + class PositionInfo + { + position[]={3866.2161,17.522602,4611.1362}; + angles[]={0,4.3182416,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1247; + type="Land_LampAirport_F"; + }; + class Item404 + { + dataType="Object"; + class PositionInfo + { + position[]={3883.9009,6.1528006,4624.6758}; + angles[]={0,4.3182416,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1248; + type="Land_MedicalTent_01_NATO_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + class Item405 + { + dataType="Object"; + class PositionInfo + { + position[]={3883.9006,8.4267359,4624.6758}; + angles[]={6.0109882,4.3182392,6.1356149}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1249; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.16068745; + }; + class Item406 + { + dataType="Object"; + class PositionInfo + { + position[]={3871.321,6.3422222,4619.4429}; + angles[]={0,4.3182416,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1250; + type="Land_MedicalTent_01_NATO_generic_open_F"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + class Item407 + { + dataType="Object"; + class PositionInfo + { + position[]={3871.3213,8.6255207,4619.4434}; + angles[]={6.0052419,4.3182392,6.1942797}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1251; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.17014885; + }; + class Item408 + { + dataType="Object"; + class PositionInfo + { + position[]={3865.9182,5.6197557,4613.2886}; + angles[]={0.035984326,3.5328412,0.055941612}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1252; + type="Land_AirConditioner_04_F"; + }; + class Item409 + { + dataType="Object"; + class PositionInfo + { + position[]={3902.8586,6.0257497,4624.5654}; + angles[]={6.247201,2.7661562,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1255; + type="Land_HBarrier_Big_F"; + }; + class Item410 + { + dataType="Object"; + class PositionInfo + { + position[]={3894.9507,6.0824461,4621.4487}; + angles[]={0.039977662,2.7661562,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1256; + type="Land_HBarrier_Big_F"; + }; + class Item411 + { + dataType="Object"; + class PositionInfo + { + position[]={3887.5085,6.2852502,4618.5146}; + angles[]={0.043970551,2.7661562,6.2711854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1257; + type="Land_HBarrier_Big_F"; + }; + class Item412 + { + dataType="Object"; + class PositionInfo + { + position[]={3872.1572,6.3740559,4612.4644}; + angles[]={6.2432065,2.7661562,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1258; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; + }; + class Item413 + { + dataType="Object"; + class PositionInfo + { + position[]={3879.9495,6.3519773,4615.5356}; + angles[]={6.2551923,2.7661562,0.059928458}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1259; + type="Land_HBarrier_Big_F"; + atlOffset=2.3841858e-006; + }; + class Item414 + { + dataType="Object"; + class PositionInfo + { + position[]={3953.9341,17.384016,4643.9922}; + angles[]={0,4.3232851,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1260; + type="Land_LampAirport_F"; + atlOffset=-4.7683716e-007; + }; + class Item415 + { + dataType="Object"; + class PositionInfo + { + position[]={3994.7871,17.779408,4660.3369}; + angles[]={0,1.1766486,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1261; + type="Land_LampAirport_F"; + atlOffset=-9.5367432e-007; + }; + class Item416 + { + dataType="Object"; + class PositionInfo + { + position[]={3831.126,8.1086617,4602.1528}; + angles[]={0,4.3232927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1262; + type="Land_LampSolar_F"; + atlOffset=2.8610229e-006; + }; + class Item417 + { + dataType="Object"; + class PositionInfo + { + position[]={3838.9849,5.692534,4592.5405}; + angles[]={0.0080084298,3.0163932,0.075854406}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1263; + type="Land_HBarrier_Big_F"; + }; + class Item418 + { + dataType="Object"; + class PositionInfo + { + position[]={3833.5525,5.5405054,4606.1196}; + angles[]={0.015998369,2.5871825,0.0079935296}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1264; + type="Land_HBarrier_Big_F"; + }; + class Item419 + { + dataType="Object"; + class PositionInfo + { + position[]={4037.8459,11.032583,4638.6221}; + angles[]={0,4.3586454,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1267; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item420 + { + dataType="Object"; + class PositionInfo + { + position[]={4034.002,10.989913,4630.2729}; + angles[]={0,5.9294419,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1268; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item421 + { + dataType="Object"; + class PositionInfo + { + position[]={3983.947,8.9280052,4622.5229}; + angles[]={0,5.9226699,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1269; + type="Land_Cargo_HQ_V3_F"; + }; + class Item422 + { + dataType="Object"; + class PositionInfo + { + position[]={4003.073,10.383595,4711.8599}; + angles[]={0,2.7878492,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1270; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=1.4305115e-006; + }; + class Item423 + { + dataType="Object"; + class PositionInfo + { + position[]={4011.4209,10.116953,4708.0151}; + angles[]={0,4.3586454,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1271; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-4.7683716e-007; + }; + class Item424 + { + dataType="Object"; + class PositionInfo + { + position[]={3961.1541,17.676426,4684.375}; + angles[]={0,4.3345251,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1272; + type="Land_Cargo_Tower_V3_F"; + atlOffset=-9.5367432e-007; + }; + class Item425 + { + dataType="Object"; + class PositionInfo + { + position[]={3836.4121,17.952597,4635.3921}; + angles[]={0,4.3345251,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1276; + type="Land_Cargo_Tower_V3_F"; + atlOffset=-4.7683716e-007; + }; + class Item426 + { + dataType="Object"; + class PositionInfo + { + position[]={3840.917,9.6205807,4616.1641}; + angles[]={0,1.1816926,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1277; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item427 + { + dataType="Object"; + class PositionInfo + { + position[]={3849.998,9.585022,4591.3809}; + angles[]={0,1.1816926,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1278; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item428 + { + dataType="Object"; + class PositionInfo + { + position[]={3860.3569,17.389338,4571.7168}; + angles[]={0,1.1749556,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1279; + type="Land_Cargo_Tower_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item429 + { + dataType="Object"; + class PositionInfo + { + position[]={3900.3301,5.5778189,4617.5571}; + angles[]={6.2431998,2.7474451,6.2551899}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1280; + type="StorageBladder_01_fuel_sand_F"; + }; + class Item430 + { + dataType="Object"; + class PositionInfo + { + position[]={3910.5291,5.3093553,4622.0088}; + angles[]={0.016004669,2.7474451,6.2392201}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1281; + type="StorageBladder_01_fuel_sand_F"; + atlOffset=9.5367432e-007; + }; + class Item431 + { + dataType="Logic"; + class PositionInfo + { + position[]={2021.0682,36.301563,3061.1606}; + angles[]={6.2631865,0,6.2631865}; + }; + areaSize[]={11.518372,0,10.682495}; + flags=1; + id=1287; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.27588272; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item432 + { + dataType="Object"; + class PositionInfo + { + position[]={3107.0007,6.9952321,3491.9038}; + angles[]={0,4.6408448,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1289; + type="Land_HelipadSquare_F"; + }; + class Item433 + { + dataType="Logic"; + class PositionInfo + { + position[]={3104.6978,6.9976559,3490.8135}; + }; + areaSize[]={11.960327,0,9.0390625}; + areaIsRectangle=1; + flags=1; + id=1290; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.011147022; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item434 + { + dataType="Object"; + class PositionInfo + { + position[]={2643.9585,10.815956,650.96503}; + angles[]={0,5.921464,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1291; + type="Land_HelipadCircle_F"; + atlOffset=3.7297664; + }; + class Item435 + { + dataType="Object"; + class PositionInfo + { + position[]={2644.7456,6.7616949,2048.8984}; + angles[]={0,0.083399855,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1294; + type="Land_HelipadSquare_F"; + }; + class Item436 + { + dataType="Layer"; + name="Resources"; + class Entities + { + items=7; + class Item0 + { + dataType="Marker"; + position[]={3883.0239,30.524418,1004.2935}; + name="resource"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=51.14547; + b=51.037296; + angle=281.88538; + id=125; + atlOffset=23.737984; + }; + class Item1 + { + dataType="Marker"; + position[]={1233.6819,55.213917,2749.3616}; + name="resource_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=33.808205; + b=43.442665; + angle=258.38504; + id=844; + atlOffset=25.133549; + }; + class Item2 + { + dataType="Marker"; + position[]={4981.1333,34.654079,4712.8867}; + name="resource_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=33.808205; + b=43.442665; + angle=258.38504; + id=845; + atlOffset=25.133549; + }; + class Item3 + { + dataType="Marker"; + position[]={2377.168,71.382957,292.37088}; + name="resource_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=34.811058; + b=34.364311; + angle=281.88538; + id=931; + atlOffset=24.968201; + }; + class Item4 + { + dataType="Marker"; + position[]={1399.2565,67.958206,3218.0715}; + name="resource_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=34.811058; + b=34.364311; + angle=281.88538; + id=953; + atlOffset=24.968204; + }; + class Item5 + { + dataType="Marker"; + position[]={4761.6929,31.134258,3422.4944}; + name="resource_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=34.811058; + b=34.364311; + angle=281.88538; + id=954; + atlOffset=24.968203; + }; + class Item6 + { + dataType="Marker"; + position[]={615.64569,64.118202,4531.6646}; + name="resource_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=34.811058; + b=34.364311; + angle=281.88538; + id=985; + atlOffset=24.968201; + }; + }; + id=1295; + atlOffset=48.67535; + }; + class Item437 + { + dataType="Layer"; + name="Outposts"; + class Entities + { + items=9; + class Item0 + { + dataType="Marker"; + position[]={1415.3971,23.813477,3642.7617}; + name="outp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=24.227222; + b=9.3463001; + angle=117.14042; + id=1282; + atlOffset=-17.058563; + }; + class Item1 + { + dataType="Marker"; + position[]={2032.615,37.313999,3057.0991}; + name="outp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.121; + b=6.9070001; + angle=100.403; + id=1286; + atlOffset=0.00026702881; + }; + class Item2 + { + dataType="Marker"; + position[]={4860.7744,52.124084,1823.7734}; + name="outpost"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=35.475227; + b=37.37513; + angle=86.265015; + id=127; + atlOffset=45.462868; + }; + class Item3 + { + dataType="Marker"; + position[]={1452.9749,84.846191,3675.1572}; + name="outpost_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=100.18131; + b=84.119888; + angle=222.62746; + id=247; + atlOffset=42.673824; + }; + class Item4 + { + dataType="Marker"; + position[]={2068.5688,82.962814,3058.2114}; + name="outpost_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=42.216072; + b=49.989052; + angle=96.4664; + id=681; + atlOffset=45.432816; + }; + class Item5 + { + dataType="Marker"; + position[]={2647.5386,53.165367,2067.3352}; + name="outpost_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=42.216072; + b=49.989052; + angle=96.4664; + id=716; + atlOffset=45.432816; + }; + class Item6 + { + dataType="Marker"; + position[]={2686.4749,54.17622,674.58069}; + name="outpost_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=57.423988; + b=39.442661; + angle=161.31964; + id=843; + atlOffset=45.314682; + }; + class Item7 + { + dataType="Marker"; + position[]={3034.5715,6.4892635,1120.2444}; + name="outpost_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=57.423988; + b=57.955338; + angle=165.46202; + id=1319; + }; + class Item8 + { + dataType="Marker"; + position[]={2636.5779,5.7779803,4985.8721}; + name="outpost_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=31.908295; + b=41.619595; + angle=140.43472; + id=1322; + atlOffset=-0.015707493; + }; + }; + id=1296; + atlOffset=13.568083; + }; + class Item438 + { + dataType="Layer"; + name="Roadblocks"; + class Entities + { + items=13; + class Item0 + { + dataType="Marker"; + position[]={3308.9822,3.6585898,979.12695}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=212; + }; + class Item1 + { + dataType="Marker"; + position[]={3049.5835,7.4179912,3872.4841}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=242; + }; + class Item2 + { + dataType="Marker"; + position[]={4266.3271,5.0996571,4582.0933}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=930; + }; + class Item3 + { + dataType="Marker"; + position[]={4265.9912,8.9496841,3286.0215}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=244; + }; + class Item4 + { + dataType="Marker"; + position[]={4627.585,9.5051651,2239.6206}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=245; + }; + class Item5 + { + dataType="Marker"; + position[]={1271.1563,38.992809,3619.6057}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=246; + }; + class Item6 + { + dataType="Marker"; + position[]={3948.8596,8.2044792,4177.8027}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=926; + }; + class Item7 + { + dataType="Marker"; + position[]={3719.1729,8.7402697,4819.1719}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=928; + }; + class Item8 + { + dataType="Marker"; + position[]={4160.6475,5.9042177,4873.8052}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=929; + }; + class Item9 + { + dataType="Marker"; + position[]={1401.7302,11.867155,2159.1555}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1345; + }; + class Item10 + { + dataType="Marker"; + position[]={1957.8864,7.4242187,1545.792}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1346; + }; + class Item11 + { + dataType="Marker"; + position[]={2237.446,7.9464197,4653.5996}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1347; + atlOffset=7.6293945e-006; + }; + class Item12 + { + dataType="Marker"; + position[]={3817.2368,5.7865357,470.80994}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=1348; + }; + }; + id=1297; + atlOffset=1.9014182; + }; + class Item439 + { + dataType="Layer"; + name="Spawner and Waypoints"; + class Entities + { + items=21; + class Item0 + { + dataType="Marker"; + position[]={-86.766953,10.392496,5012.8364}; + name="seaAttackSpawn"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=214; + }; + class Item1 + { + dataType="Marker"; + position[]={3617.7515,1.7949219,5236.0488}; + name="seaAttackSpawn_3"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=688; + atlOffset=-6.8075686; + }; + class Item2 + { + dataType="Marker"; + position[]={5180.1646,1.0527344,3885.031}; + name="seaAttackSpawn_4"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=689; + atlOffset=-10.168013; + }; + class Item3 + { + dataType="Marker"; + position[]={1861.449,8.3984413,-99.121216}; + name="seaAttackSpawn_5"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=690; + atlOffset=-27.055641; + }; + class Item4 + { + dataType="Marker"; + position[]={5277.0903,6.4091797,796.3894}; + name="seaAttackSpawn_7"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=692; + atlOffset=-5.711935; + }; + class Item5 + { + dataType="Marker"; + position[]={4058.6799,8.3559999,3858.542}; + name="road"; + type="hd_arrow"; + id=1298; + atlOffset=0.00029850006; + }; + class Item6 + { + dataType="Marker"; + position[]={4451.5996,8.6188192,2740.1096}; + name="road_1"; + type="hd_arrow"; + id=1299; + }; + class Item7 + { + dataType="Marker"; + position[]={1438.3711,26.031063,2265.2686}; + name="road_10"; + type="hd_arrow"; + id=1308; + }; + class Item8 + { + dataType="Marker"; + position[]={1329.1234,37.862492,3139.7598}; + name="road_11"; + type="hd_arrow"; + id=1309; + }; + class Item9 + { + dataType="Marker"; + position[]={649.07141,32.622135,4180.8223}; + name="road_12"; + type="hd_arrow"; + id=1310; + }; + class Item10 + { + dataType="Marker"; + position[]={1573.249,5.2747269,1357.7197}; + name="road_13"; + type="hd_arrow"; + id=1311; + }; + class Item11 + { + dataType="Marker"; + position[]={2497.8396,8.538537,1762.6943}; + name="road_14"; + type="hd_arrow"; + id=1312; + }; + class Item12 + { + dataType="Marker"; + position[]={4899.1104,7.3922772,1492.2739}; + name="road_2"; + type="hd_arrow"; + id=1300; + }; + class Item13 + { + dataType="Marker"; + position[]={4687.3867,6.3900547,572.10052}; + name="road_3"; + type="hd_arrow"; + id=1301; + }; + class Item14 + { + dataType="Marker"; + position[]={4034.6238,5.5726194,186.46881}; + name="road_4"; + type="hd_arrow"; + id=1302; + }; + class Item15 + { + dataType="Marker"; + position[]={3494.7595,4.7622852,1018.7125}; + name="road_5"; + type="hd_arrow"; + id=1303; + atlOffset=-1.4305115e-006; + }; + class Item16 + { + dataType="Marker"; + position[]={3110.3372,5.6137781,845.48492}; + name="road_6"; + type="hd_arrow"; + id=1304; + }; + class Item17 + { + dataType="Marker"; + position[]={2517.1807,14.921409,594.94141}; + name="road_7"; + type="hd_arrow"; + id=1305; + }; + class Item18 + { + dataType="Marker"; + position[]={1854.1124,35.718628,7.8616333}; + name="road_8"; + type="hd_arrow"; + id=1306; + }; + class Item19 + { + dataType="Marker"; + position[]={803.37457,10.002952,1270.8616}; + name="road_9"; + type="hd_arrow"; + id=1307; + }; + class Item20 + { + dataType="Marker"; + position[]={3854.791,20.436001,4481.6221}; + name="spawnpoint"; + type="hd_start"; + angle=28.14699; + id=211; + atlOffset=12.870616; + }; + }; + id=1313; + atlOffset=9.7822409; + }; + class Item440 + { + dataType="Layer"; + name="Factories"; + class Entities + { + items=3; + class Item0 + { + dataType="Marker"; + position[]={3129.2661,7.335,3542.813}; + name="fact_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.121; + b=6.9070001; + angle=162.44699; + id=1288; + atlOffset=-0.00011014938; + }; + class Item1 + { + dataType="Marker"; + position[]={1439.6815,38.797718,3023.0801}; + name="factory"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=85.199837; + b=48.280182; + angle=359.70923; + id=126; + atlOffset=0.22445679; + }; + class Item2 + { + dataType="Marker"; + position[]={3126.2844,7.6508861,3512.4392}; + name="factory_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=57.829742; + b=54.813107; + angle=359.70923; + id=964; + atlOffset=0.57536125; + }; + }; + id=1314; + atlOffset=5.7408857; + }; + class Item441 + { + dataType="Layer"; + name="Airport"; + class Entities + { + items=3; + class Item0 + { + dataType="Marker"; + position[]={3978.9839,4.973,4687}; + name="airp_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=4.803; + b=5.3460002; + id=1292; + atlOffset=0.00015306473; + }; + class Item1 + { + dataType="Marker"; + position[]={3904.501,4.5180001,4650.5479}; + name="airp_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.458; + b=5.0430002; + angle=161.61501; + id=1293; + atlOffset=0.00026082993; + }; + class Item2 + { + dataType="Marker"; + position[]={3930.6348,22.849316,4636.3511}; + name="airport"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=118.31271; + b=60.644157; + angle=159.46762; + id=124; + atlOffset=18.48539; + }; + }; + id=1315; + atlOffset=8.8944836; + }; + class Item442 + { + dataType="Layer"; + name="Standard marker"; + class Entities + { + items=9; + class Item0 + { + dataType="Marker"; + position[]={5189.0352,9.2373695,649.89111}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=129; + atlOffset=-9.5367432e-007; + }; + class Item1 + { + dataType="Marker"; + position[]={3614.7432,8.600626,5180.9927}; + name="respawn_west"; + type="flag_CTRG"; + id=217; + }; + class Item2 + { + dataType="Marker"; + position[]={3832.3286,-1.9667969,4493.7959}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=25.366987; + b=348.42606; + angle=339.89185; + id=925; + atlOffset=-9.6127625; + }; + class Item3 + { + dataType="Marker"; + position[]={4030.4436,9.5270004,2557.8586}; + name="island"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorCIV"; + fillName="Border"; + a=1103.1614; + b=2565.2739; + drawBorder=1; + id=714; + atlOffset=3.9198823; + }; + class Item4 + { + dataType="Marker"; + position[]={1495.9608,57.251976,2546.8567}; + name="island_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorCIV"; + fillName="Border"; + a=1443.525; + b=2554.7339; + drawBorder=1; + id=715; + atlOffset=33.54628; + }; + class Item5 + { + dataType="Marker"; + position[]={1324.1962,48.233715,385.39087}; + name="Synd_HQ"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorPink"; + a=50; + b=50; + id=132; + atlOffset=13.943714; + }; + class Item6 + { + dataType="Marker"; + position[]={3540.5605,6.3308487,5192.9038}; + name="NATO_carrier"; + type="flag_UN"; + id=130; + }; + class Item7 + { + dataType="Marker"; + position[]={5265.6465,122.77921,748.57959}; + name="respawn_east"; + type="flag_Viper"; + id=226; + atlOffset=112.75693; + }; + class Item8 + { + dataType="Marker"; + position[]={1320.0853,2.7037606e+012,385.2392}; + name="respawn_guerrila"; + text="Your Headquarters"; + type="hd_flag"; + colorName="ColorGUER"; + id=133; + atlOffset=2.7037606e+012; + }; + }; + id=1316; + atlOffset=1.3518803e+012; + }; + class Item443 + { + dataType="Logic"; + class PositionInfo + { + position[]={1312.6346,34.290001,391.96024}; + }; + name="HC_commanderX"; + id=1317; + type="HighCommand"; + }; + class Item444 + { + dataType="Logic"; + class PositionInfo + { + position[]={1316.0343,34.290001,391.86551}; + }; + id=1318; + type="HighCommandSubordinate"; + }; + class Item445 + { + dataType="Object"; + class PositionInfo + { + position[]={2990.3423,12.480574,1127.8311}; + angles[]={0,1.4983648,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1320; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item446 + { + dataType="Object"; + class PositionInfo + { + position[]={3039.627,12.210033,1076.4984}; + angles[]={0,0.025648184,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1321; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-9.5367432e-007; + }; + class Item447 + { + dataType="Object"; + class PositionInfo + { + position[]={2616.0569,10.785845,4988.7681}; + angles[]={0,1.3340008,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1323; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-4.7683716e-007; + }; + class Item448 + { + dataType="Object"; + class PositionInfo + { + position[]={2654.739,10.659266,4994.2832}; + angles[]={0,3.8913257,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1324; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=9.5367432e-007; + }; + class Item449 + { + dataType="Logic"; + class PositionInfo + { + position[]={3134.3909,7.4326992,867.79242}; + }; + areaSize[]={5.7648926,0,6.0116882}; + flags=1; + id=1328; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.15570736; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item450 + { + dataType="Logic"; + class PositionInfo + { + position[]={3175.3359,7.7366323,918.88867}; + }; + areaSize[]={8.0706787,0,8.0160217}; + flags=1; + id=1329; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.1527967; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item451 + { + dataType="Logic"; + class PositionInfo + { + position[]={3250.9468,4.5502481,964.71893}; + }; + areaSize[]={10.326538,0,9.0950012}; + flags=1; + id=1330; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.12501049; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item452 + { + dataType="Marker"; + position[]={3284.5493,0.56900001,968.2691}; + name="marker_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=14.98178; + b=5.3061624; + angle=335.49997; + id=1335; + atlOffset=4.1576209; + }; + class Item453 + { + dataType="Logic"; + class PositionInfo + { + position[]={3284.5493,2.6752458,968.29584}; + angles[]={0,5.8555794,0}; + }; + areaSize[]={15.056807,0,5.3783436}; + areaIsRectangle=1; + flags=1; + id=1337; + type="ModuleHideTerrainObjects_F"; + atlOffset=6.2623558; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item454 + { + dataType="Object"; + class PositionInfo + { + position[]={2398.7771,47.447998,315.45898}; + angles[]={0,2.9712381,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1338; + type="Land_dp_transformer_F"; + atlOffset=-0.049068451; + }; + class Item455 + { + dataType="Object"; + class PositionInfo + { + position[]={2394.3308,47.79541,314.69119}; + angles[]={0,2.9712381,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=1339; + type="Land_dp_transformer_F"; + atlOffset=0.37271881; + }; + class Item456 + { + dataType="Object"; + class PositionInfo + { + position[]={2389.7578,48.037567,313.84106}; + angles[]={0,2.9712381,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=1340; + type="Land_dp_transformer_F"; + atlOffset=0.65101624; + }; + class Item457 + { + dataType="Object"; + class PositionInfo + { + position[]={2358.9067,48.766106,282.12637}; + angles[]={0,1.3588662,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1344; + type="Land_Tank_rust_F"; + }; + }; + class Connections + { + class LinkIDProvider + { + nextID=25; + }; + class Links + { + items=25; + class Item0 + { + linkID=0; + item0=1317; + item1=1318; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=147; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=151; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item3 + { + linkID=3; + item0=152; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item4 + { + linkID=4; + item0=154; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item5 + { + linkID=5; + item0=158; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item6 + { + linkID=6; + item0=160; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item7 + { + linkID=7; + item0=170; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item8 + { + linkID=8; + item0=175; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item9 + { + linkID=9; + item0=177; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item10 + { + linkID=10; + item0=184; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item11 + { + linkID=11; + item0=185; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item12 + { + linkID=12; + item0=186; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item13 + { + linkID=13; + item0=188; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item14 + { + linkID=14; + item0=190; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item15 + { + linkID=15; + item0=191; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item16 + { + linkID=16; + item0=192; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item17 + { + linkID=17; + item0=194; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item18 + { + linkID=18; + item0=197; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item19 + { + linkID=19; + item0=200; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item20 + { + linkID=20; + item0=202; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item21 + { + linkID=21; + item0=204; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item22 + { + linkID=22; + item0=207; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item23 + { + linkID=23; + item0=208; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + class Item24 + { + linkID=24; + item0=209; + item1=1317; + class CustomData + { + type="Sync"; + }; + }; + }; + }; +}; diff --git a/Map-Templates/Antistasi-Kunduz.Kunduz/roadsDBKunduz.sqf b/Map-Templates/Antistasi-Kunduz.Kunduz/roadsDBKunduz.sqf new file mode 100644 index 0000000000..af619234c6 --- /dev/null +++ b/Map-Templates/Antistasi-Kunduz.Kunduz/roadsDBKunduz.sqf @@ -0,0 +1 @@ +{roadsX setVariable [_x select 0,_x select 1]} forEach [["1",[[4369,5026,0],[4394,5030,0],[4419,5035,0],[4442,5040,0],[4464,5044,0],[4486,5046,0],[4510,5047,0],[4550,5048,0],[4531,5048,0],[4572,5049,0],[4597,5051,0],[4633,4906,0],[4625,4903,0],[4635,5049,0],[4616,5053,0],[4627,5052,0],[4652,4869,0],[4654,4875,0],[4650,4866,0],[4648,4911,0],[4662,4915,0],[4673,4918,0],[4656,4881,0],[4662,4897,0],[4658,4887,0],[4663,4904,0],[4660,4891,0],[4666,4912,0],[4664,4908,0],[4678,4957,0],[4666,4981,0],[4656,5006,0],[4648,5027,0],[4641,5041,0],[4709,4937,0],[4687,4941,0],[4693,4935,0],[4700,4934,0],[4690,4930,0],[4681,4922,0],[4686,4925,0],[4743,4954,0],[4723,4943,0],[4781,4948,0],[4786,4943,0],[4794,4935,0],[4777,4953,0],[4774,4958,0],[4790,4939,0],[4764,4966,0],[4783,4973,0],[4770,4963,0],[4819,4905,0],[4812,4918,0],[4815,4913,0],[4822,4898,0],[4825,4894,0],[4800,4929,0],[4806,4923,0],[4825,4975,0],[4801,4975,0],[4879,4946,0],[4858,4970,0],[4866,4961,0],[4846,4975,0],[4913,4913,0],[4899,4924,0],[4932,4908,0],[4958,4904,0],[4979,4901,0],[5039,4732,0],[5003,4891,0],[5028,4881,0],[5064,4712,0],[5049,4719,0],[5078,4705,0],[5049,4751,0],[5041,4726,0],[5041,4739,0],[5061,4768,0],[5079,4799,0],[5071,4783,0],[5075,4862,0],[5061,4874,0],[5047,4879,0],[5094,4697,0],[5114,4688,0],[5106,4692,0],[5085,4820,0],[5087,4837,0],[5084,4849,0]]],["2",[[3282,4437,0],[3282,4429,0],[3291,4466,0],[3285,4458,0],[3297,4474,0],[3283,4448,0],[3302,4480,0],[3307,4487,0],[3310,4495,0],[3312,4505,0],[3313,4515,0],[3318,4532,0],[3315,4523,0],[3344,4026,0],[3357,4059,0],[3350,4041,0],[3322,4543,0],[3328,4560,0],[3336,4580,0],[3344,4597,0],[3354,4621,0],[3356,4634,0],[3350,4610,0],[3351,4652,0],[3333,4674,0],[3343,4666,0],[3365,4079,0],[3382,4106,0],[3374,4093,0],[3384,4119,0],[3398,4152,0],[3390,4140,0],[3385,4130,0],[3393,4238,0],[3399,4217,0],[3390,4263,0],[3390,4283,0],[3394,4305,0],[3389,4295,0],[3390,4301,0],[3413,4187,0],[3406,4163,0],[3412,4169,0],[3416,4176,0],[3407,4201,0],[3403,4309,0],[3413,4313,0],[3418,4319,0],[3417,4333,0],[3417,4352,0],[3431,4385,0],[3418,4368,0],[3423,4378,0],[3457,4391,0],[3443,4391,0],[3472,4388,0],[3507,4390,0],[3488,4387,0],[3524,4394,0],[3537,4398,0],[3545,4401,0],[3697,3863,0],[3697,3892,0],[3698,3918,0],[3699,3943,0],[3699,3971,0],[3696,4003,0],[3694,4031,0],[3695,4056,0],[3695,4077,0],[3697,4117,0],[3696,4096,0],[3700,4139,0],[3705,4166,0],[3710,4195,0],[3712,4209,0],[3714,4834,0],[3708,4852,0],[3741,4759,0],[3751,4733,0],[3731,4786,0],[3722,4812,0],[3771,3957,0],[3765,3949,0],[3768,3952,0],[3799,3969,0],[3777,3963,0],[3789,3968,0],[3782,3966,0],[3787,4406,0],[3780,4404,0],[3797,4411,0],[3797,4419,0],[3795,4409,0],[3798,4434,0],[3796,4433,0],[3798,4413,0],[3795,4432,0],[3793,4408,0],[3798,4416,0],[3795,4431,0],[3794,4428,0],[3796,4422,0],[3795,4424,0],[3796,4423,0],[3796,4421,0],[3795,4425,0],[3795,4426,0],[3791,4625,0],[3797,4607,0],[3790,4633,0],[3784,4643,0],[3778,4661,0],[3797,4641,0],[3770,4683,0],[3760,4707,0],[3797,4695,0],[3793,4717,0],[3789,4738,0],[3786,4763,0],[3793,4799,0],[3784,4789,0],[3783,4782,0],[3812,3970,0],[3825,3973,0],[3836,3976,0],[3800,4435,0],[3803,4437,0],[3806,4440,0],[3810,4461,0],[3815,4479,0],[3812,4472,0],[3807,4444,0],[3809,4451,0],[3839,4486,0],[3830,4511,0],[3820,4485,0],[3825,4490,0],[3831,4493,0],[3822,4534,0],[3814,4558,0],[3805,4584,0],[3802,4670,0],[3803,4649,0],[3804,4653,0],[3829,4826,0],[3810,4812,0],[3860,3983,0],[3847,3979,0],[3872,3985,0],[3879,4386,0],[3876,4398,0],[3862,4430,0],[3869,4412,0],[3855,4448,0],[3848,4465,0],[3847,4838,0],[3894,3986,0],[3907,3988,0],[3883,3985,0],[3910,4291,0],[3890,4352,0],[3901,4320,0],[3908,4385,0],[3888,4393,0],[3894,4382,0],[3910,4375,0],[3882,4386,0],[3955,3995,0],[3920,3990,0],[3933,3991,0],[3943,3993,0],[3942,4198,0],[3952,4168,0],[3931,4229,0],[3921,4260,0],[3954,4353,0],[3958,4346,0],[3958,4369,0],[3930,4376,0],[3927,4370,0],[3941,4365,0],[3949,4360,0],[3998,4034,0],[3969,4000,0],[3990,4009,0],[3981,4005,0],[3998,4013,0],[3991,4057,0],[3972,4110,0],[3982,4082,0],[3962,4140,0],[3964,4339,0],[3977,4328,0],[3971,4333,0],[3983,4323,0],[3983,4364,0],[4018,3975,0],[4007,4008,0],[4017,4346,0],[4001,4356,0],[4040,4341,0],[4066,4344,0],[4107,4351,0],[4084,4348,0],[4140,4353,0],[4183,4352,0],[4163,4353,0],[4205,4351,0]]],["6",[[2991,2966,0],[2993,2991,0],[3000,3027,0],[2997,3009,0],[2972,3817,0],[2974,3805,0],[2966,3841,0],[3004,3050,0],[3008,3073,0],[3017,3115,0],[3011,3092,0],[3023,3139,0],[3024,3158,0],[3025,3181,0],[3037,3226,0],[3029,3205,0],[3026,3853,0],[3034,3858,0],[3019,3851,0],[3052,3261,0],[3044,3245,0],[3063,3274,0],[3070,3294,0],[3068,3324,0],[3064,3349,0],[3054,3366,0],[3047,3385,0],[3047,3398,0],[3077,3880,0],[3077,3879,-4],[3053,3873,0],[3042,3866,0],[3059,3877,0],[3064,3878,0],[3070,3879,-1],[3112,3847,0],[3103,3866,0],[3099,3886,0],[3104,3897,0],[3096,3882,0],[3099,3890,0],[3147,3778,0],[3138,3792,0],[3122,3826,0],[3131,3806,0],[3186,3754,0],[3196,3749,0],[3166,3762,0],[3235,3678,0],[3238,3676,0],[3229,3699,0],[3233,3681,0],[3220,3720,0],[3206,3739,0],[3270,3142,0],[3246,3152,0],[3254,3148,0],[3270,3421,0],[3272,3412,0],[3271,3442,0],[3260,3582,0],[3276,3572,0],[3249,3602,0],[3245,3631,0],[3267,3680,0],[3241,3657,0],[3251,3674,0],[3245,3672,0],[3297,3133,0],[3320,3390,0],[3281,3465,0],[3295,3483,0],[3304,3506,0],[3292,3558,0],[3303,3534,0],[3318,3696,0],[3285,3687,0],[3297,3690,0],[3324,3126,0],[3348,3135,0],[3354,3149,0],[3360,3154,0],[3343,3124,0],[3339,3122,0],[3327,3385,0],[3340,3378,0],[3355,3374,0],[3340,3702,0],[3397,3142,0],[3381,3149,0],[3368,3154,0],[3387,3374,0],[3367,3369,0],[3375,3368,0],[3362,3710,0],[3384,3718,0],[3434,3127,0],[3415,3135,0],[3403,3385,0],[3413,3394,0],[3429,3400,0],[3419,3400,0],[3424,3402,0],[3401,3724,0],[3420,3741,0],[3412,3731,0],[3427,3751,0],[3435,3762,0],[3480,3114,0],[3453,3121,0],[3457,3382,0],[3440,3394,0],[3473,3371,0],[3445,3774,0],[3457,3788,0],[3467,3799,0],[3510,3107,0],[3488,3365,0],[3513,3362,0],[3499,3362,0],[3538,3101,0],[3549,3358,0],[3532,3361,0],[3599,3307,0],[3592,3318,0],[3562,3349,0],[3584,3329,0],[3574,3339,0],[3630,3273,0],[3640,3262,0],[3618,3285,0],[3610,3292,0],[3605,3298,0],[3639,3507,0],[3620,3552,0],[3627,3526,0],[3616,3582,0],[3611,3612,0],[3652,3493,0]]],["8",[[2085,4614,0],[2108,4614,0],[2152,4620,0],[2129,4616,0],[2194,4632,0],[2174,4626,0],[2220,4644,0],[2259,4676,0],[2243,4660,0],[2276,4692,0],[2292,4706,0],[2314,4725,0],[2332,4746,0],[2343,4761,0],[2352,4778,0],[2362,4795,0],[2376,4812,0],[2393,4832,0],[2416,4880,0],[2408,4853,0],[2422,4904,0],[2420,4927,0],[2412,4948,0],[2423,4988,0],[2411,4982,0],[2407,4962,0],[2406,4973,0],[2440,4993,0],[2465,5000,0],[2514,5006,0],[2491,5005,0],[2551,5007,0],[2533,5007,0],[2546,5078,0],[2554,5068,0],[2534,5091,0],[2526,5103,0],[2524,5114,0],[2599,4957,0],[2596,4969,0],[2594,4976,0],[2571,5010,0],[2578,5031,0],[2579,5015,0],[2581,5022,0],[2563,5008,0],[2564,5055,0],[2572,5041,0],[2628,4791,0],[2627,4833,0],[2624,4812,0],[2631,4856,0],[2619,4911,0],[2629,4882,0],[2606,4937,0],[2675,4548,0],[2659,4590,0],[2667,4564,0],[2655,4618,0],[2654,4667,0],[2653,4643,0],[2655,4692,0],[2657,4716,0],[2658,4737,0],[2657,4754,0],[2644,4770,0],[2673,5049,0],[2712,4475,0],[2701,4503,0],[2685,4537,0],[2693,4523,0],[2719,4829,0],[2713,4872,0],[2715,4849,0],[2711,4901,0],[2712,4950,0],[2709,4928,0],[2705,5051,0],[2684,5050,0],[2757,4655,0],[2741,4711,0],[2747,4682,0],[2734,4739,0],[2728,4763,0],[2726,4781,0],[2724,4804,0],[2722,4967,0],[2735,4980,0],[2743,4994,0],[2738,5035,0],[2745,5014,0],[2724,5048,0],[2786,4599,0],[2799,4573,0],[2771,4628,0],[2809,4555,0]]],["9",[[1636,2946,0],[1612,2943,0],[1631,3239,0],[1617,3255,0],[1603,3270,0],[1660,2950,0],[1663,3207,0],[1646,3223,0],[1702,2954,0],[1681,2953,0],[1681,3193,0],[1700,3179,0],[1727,2956,0],[1754,2958,0],[1722,3159,0],[1742,3139,0],[1756,3127,0],[1784,2735,0],[1797,2752,0],[1780,2958,0],[1794,3089,0],[1769,3113,0],[1779,3100,0],[1822,2783,0],[1809,2766,0],[1836,2802,0],[1807,2956,0],[1834,2953,0],[1830,3064,0],[1812,3077,0],[1850,2819,0],[1863,2834,0],[1877,2849,0],[1861,2950,0],[1869,3037,0],[1850,3050,0],[1898,2865,0],[1917,2879,0],[1910,2941,0],[1887,2946,0],[1890,3021,0],[1915,3007,0],[1931,2890,0],[1946,2898,0],[1956,2907,0],[1938,2935,0],[1942,2995,0],[1953,3388,0],[1958,3393,0],[1965,2919,0],[1968,2930,0],[1998,2929,0],[1971,2927,0],[1967,2986,0],[1986,2981,0],[1973,3414,0],[1981,3429,0],[1964,3401,0],[1996,3456,0],[1989,3442,0],[2022,2930,0],[2025,2979,0],[2005,2978,0],[2004,3470,0],[2010,3479,0],[2015,3489,0],[2022,3502,0],[2019,3497,0],[2025,3506,0],[2039,3512,0],[2030,3509,0],[2027,3508,0],[2036,3511,0],[2033,3510,0],[2044,2934,0],[2070,2939,0],[2042,2985,0],[2054,2990,0],[2064,2995,0],[2072,2998,0],[2076,3001,0],[2080,3004,0],[2042,3514,0],[2050,3527,0],[2061,3547,0],[2070,3565,0],[2094,2944,0],[2081,3008,0],[2082,3020,0],[2082,3011,0],[2083,3015,0],[2082,3587,0],[2100,3620,0],[2093,3606,0],[2122,2947,0],[2150,2946,0],[2175,2945,0],[2195,2945,0],[2236,2946,0],[2212,2945,0],[2265,2946,0],[2307,2935,0],[2289,2942,0],[2350,2910,0],[2328,2924,0],[2376,2892,0],[2402,2874,0],[2425,2859,0],[2446,2845,0]]],["10",[[1198,2556,0],[1195,2559,0],[1189,2597,0],[1193,2571,0],[1182,2624,0],[1175,2645,0],[1170,2665,0],[1172,2679,0],[1184,2687,0],[1225,2555,0],[1206,2555,0],[1202,2555,0],[1208,2691,0],[1234,2694,0],[1278,2558,0],[1253,2556,0],[1275,2697,0],[1254,2695,0],[1301,2560,0],[1298,2700,0],[1348,2567,0],[1322,2563,0],[1322,2702,0],[1346,2705,0],[1354,2873,0],[1357,2845,0],[1349,2903,0],[1357,2883,0],[1343,2935,0],[1339,2961,0],[1338,2981,0],[1337,3001,0],[1336,3021,0],[1335,3047,0],[1332,3080,0],[1330,3113,0],[1394,2149,0],[1380,2568,0],[1393,2632,0],[1397,2611,0],[1382,2675,0],[1388,2653,0],[1376,2698,0],[1366,2716,0],[1360,2709,0],[1371,2722,0],[1368,2746,0],[1370,2723,0],[1364,2794,0],[1367,2770,0],[1361,2818,0],[1386,2807,0],[1371,2806,0],[1364,2805,0],[1397,2903,0],[1378,2896,0],[1365,2889,0],[1406,2166,0],[1415,2183,0],[1422,2200,0],[1428,2219,0],[1434,2243,0],[1438,2268,0],[1434,2359,0],[1439,2331,0],[1430,2392,0],[1436,2389,0],[1432,2380,0],[1425,2422,0],[1419,2448,0],[1416,2473,0],[1413,2497,0],[1411,2519,0],[1408,2556,0],[1409,2538,0],[1440,2555,0],[1403,2583,0],[1413,2562,0],[1431,2809,0],[1406,2808,0],[1421,2912,0],[1440,2289,0],[1441,2310,0],[1441,2408,0],[1449,2428,0],[1464,2440,0],[1467,2552,0],[1462,2812,0],[1450,2922,0],[1477,2930,0],[1508,2449,0],[1485,2446,0],[1518,2538,0],[1495,2547,0],[1510,2813,0],[1489,2814,0],[1502,2934,0],[1533,2457,0],[1550,2465,0],[1554,2475,0],[1553,2470,0],[1551,2489,0],[1544,2510,0],[1535,2526,0],[1553,2589,0],[1558,2582,0],[1553,2638,0],[1550,2619,0],[1550,2603,0],[1560,2660,0],[1538,2810,0],[1552,2938,0],[1526,2935,0],[1576,2581,0],[1581,2698,0],[1567,2681,0],[1598,2790,0],[1571,2803,0],[1585,2942,0],[1607,2583,0],[1635,2584,0],[1602,2712,0],[1618,2748,0],[1616,2726,0],[1613,2772,0],[1636,2946,0],[1612,2943,0],[1667,2585,0],[1660,2950,0],[1691,2590,0],[1704,2601,0],[1718,2612,0],[1702,2954,0],[1681,2953,0],[1733,2621,0],[1751,2629,0],[1759,2672,0],[1759,2658,0],[1759,2691,0],[1727,2956,0],[1754,2958,0],[1768,2634,0],[1781,2635,0],[1796,2641,0],[1779,2649,0],[1766,2654,0],[1790,2645,0],[1796,2644,0],[1772,2717,0],[1763,2703,0],[1784,2735,0],[1797,2752,0],[1780,2958,0],[1812,2654,0],[1823,2667,0],[1835,2671,0],[1804,2646,0],[1800,2644,0],[1822,2783,0],[1809,2766,0],[1836,2802,0],[1807,2956,0],[1864,2650,0],[1847,2666,0],[1850,2819,0],[1863,2834,0],[1877,2849,0],[1885,2629,0],[1901,2612,0],[1921,2592,0]]],["11",[[572,3864,0],[601,3860,0],[627,3855,0],[669,3852,0],[649,3852,0],[674,4144,0],[697,3852,0],[716,4079,0],[706,4097,0],[696,4112,0],[685,4128,0],[733,3850,0],[759,3996,0],[744,4018,0],[734,4040,0],[726,4058,0],[795,3842,0],[765,3846,0],[781,3974,0],[840,3838,0],[819,3840,0],[824,3939,0],[804,3954,0],[861,3837,0],[868,3909,0],[846,3924,0],[882,3836,0],[902,3834,0],[913,3875,0],[891,3892,0],[948,3830,0],[921,3832,0],[938,3858,0],[992,3828,0],[972,3828,0],[985,3827,0],[965,3841,0],[1039,3778,0],[1026,3770,0],[1030,3774,0],[1022,3817,0],[1052,3778,0],[1071,3780,0],[1074,3783,0],[1075,3788,0],[1067,3778,0],[1062,3778,0],[1075,3794,0],[1075,3792,0],[1052,3807,0],[1082,3796,0],[1102,3788,0],[1111,3784,0],[1118,3779,0],[1155,3765,0],[1139,3767,0],[1121,3773,0],[1125,3768,0],[1130,3766,0],[1191,3748,0],[1173,3759,0],[1228,3717,0],[1210,3734,0],[1279,3548,0],[1276,3575,0],[1269,3633,0],[1274,3603,0],[1264,3659,0],[1280,3663,0],[1263,3670,0],[1271,3667,0],[1243,3700,0],[1255,3681,0],[1294,3413,0],[1291,3448,0],[1286,3483,0],[1282,3518,0],[1301,3652,0],[1290,3659,0],[1311,3646,0],[1300,3673,0],[1290,3666,0],[1283,3662,0],[1310,3680,0],[1341,3620,0],[1323,3636,0],[1321,3689,0],[1332,3698,0],[1342,3706,0],[1349,3714,0],[1357,3732,0],[1353,3722,0],[1381,3584,0],[1395,3577,0],[1398,3580,0],[1360,3603,0],[1370,3752,0],[1363,3743,0],[1382,3761,0],[1394,3769,0],[1425,3544,0],[1403,3563,0],[1404,3593,0],[1400,3585,0],[1421,3625,0],[1415,3614,0],[1425,3637,0],[1410,3606,0],[1407,3600,0],[1430,3649,0],[1435,3657,0],[1405,3773,0],[1416,3775,0],[1426,3776,0],[1436,3777,0],[1443,3527,0],[1440,3665,0],[1448,3679,0],[1445,3672,0],[1451,3690,0],[1461,3715,0],[1455,3700,0],[1457,3708,0],[1466,3721,0],[1444,3778,0],[1476,3774,0],[1467,3775,0],[1454,3777,0],[1450,3777,0],[1471,3775,0],[1462,3776,0],[1458,3776,0],[1492,3774,0],[1516,3773,0],[1550,3746,0],[1540,3757,0],[1532,3765,0],[1527,3793,0],[1526,3774,0],[1525,3783,0],[1529,3773,0],[1546,3834,0],[1538,3818,0],[1532,3805,0],[1554,3851,0],[1562,3869,0]]],["12",[[306,4377,0],[337,4389,0],[347,4673,0],[364,4403,0],[397,4420,0],[383,4411,0],[377,4635,0],[395,4610,0],[360,4658,0],[408,4438,0],[420,4455,0],[437,4462,0],[437,4529,0],[425,4555,0],[409,4589,0],[419,4573,0],[461,4426,0],[456,4466,0],[453,4445,0],[450,4463,0],[450,4504,0],[458,4484,0],[504,4386,0],[481,4408,0],[547,4315,0],[558,4308,0],[524,4359,0],[537,4335,0],[600,4241,0],[580,4266,0],[562,4290,0],[560,4314,0],[585,4350,0],[566,4324,0],[575,4337,0],[597,4365,0],[639,4195,0],[622,4215,0],[617,4389,0],[607,4378,0],[630,4402,0],[674,4144,0],[663,4162,0],[651,4180,0],[651,4426,0],[642,4414,0],[659,4439,0],[679,4465,0],[664,4449,0],[671,4458,0],[716,4079,0],[706,4097,0],[696,4112,0],[685,4128,0],[687,4472,0],[716,4461,0],[712,4467,0],[705,4474,0],[709,4471,0],[693,4475,0],[701,4476,0],[697,4476,0],[759,3996,0],[744,4018,0],[734,4040,0],[726,4058,0],[781,3974,0]]],["17",[[1789,180,0],[1794,446,0],[1811,171,0],[1835,162,0],[1804,433,0],[1819,412,0],[1828,405,0],[1812,421,0],[1837,401,0],[1872,7,0],[1858,155,0],[1858,409,0],[1847,403,0],[1873,419,0],[1867,414,0],[1879,422,0],[1889,13,0],[1906,22,0],[1905,143,0],[1881,150,0],[1903,419,0],[1915,415,0],[1892,422,0],[1885,423,0],[1924,31,0],[1942,41,0],[1930,137,0],[1953,133,0],[1958,417,0],[1929,412,0],[1944,414,0],[1979,69,0],[1960,54,0],[1998,86,0],[1996,134,0],[1974,132,0],[1994,419,0],[1972,420,0],[1983,421,0],[2015,102,0],[2030,118,0],[2019,137,0],[2035,401,0],[2019,409,0],[2007,415,0],[2045,132,0],[2060,146,0],[2045,144,0],[2071,152,0],[2079,166,0],[2052,394,0],[2068,388,0],[2117,158,0],[2094,157,0],[2103,188,0],[2110,354,0],[2112,356,0],[2105,375,0],[2093,384,0],[2111,363,0],[2081,386,0],[2148,154,0],[2153,224,0],[2127,206,0],[2176,149,0],[2196,146,0],[2176,239,0],[2194,250,0],[2221,145,0],[2212,263,0],[2232,277,0],[2277,154,0],[2250,148,0],[2255,294,0],[2277,312,0],[2320,177,0],[2301,164,0],[2296,327,0],[2313,341,0],[2337,194,0],[2355,210,0],[2329,355,0],[2352,370,0],[2397,223,0],[2374,219,0],[2377,386,0],[2395,400,0],[2437,238,0],[2437,220,0],[2419,224,0],[2429,254,0],[2430,276,0],[2427,270,0],[2426,263,0],[2429,317,0],[2432,295,0],[2431,306,0],[2432,284,0],[2428,343,0],[2430,359,0],[2428,329,0],[2431,389,0],[2431,370,0],[2432,399,0],[2431,379,0],[2423,431,0],[2407,414,0],[2437,415,0],[2434,407,0],[2473,157,0],[2474,149,0],[2467,193,0],[2467,174,0],[2459,193,0],[2462,183,0],[2471,166,0],[2452,207,0],[2454,206,0],[2446,221,0],[2446,439,0],[2440,424,0],[2457,474,0],[2440,451,0],[2453,458,0],[2457,469,0],[2471,500,0],[2508,191,0],[2486,189,0],[2483,525,0],[2494,548,0],[2504,569,0],[2514,587,0],[2549,189,0],[2529,192,0],[2538,622,0],[2525,604,0],[2551,637,0],[2580,139,0],[2575,159,0],[2583,126,0],[2567,176,0],[2584,664,0],[2565,651,0]]],["20",[[2952,1280,0],[2956,1264,0],[2959,1257,0],[2955,1272,0],[2931,1313,0],[2937,1306,0],[2941,1299,0],[2945,1292,0],[2949,1287,0],[2999,1197,0],[2990,1205,0],[2977,1222,0],[2969,1229,0],[2984,1214,0],[2965,1238,0],[2963,1249,0],[3040,810,0],[3005,1191,0],[3007,1185,0],[3008,1180,0],[3065,821,0],[3100,839,0],[3083,830,0],[3119,853,0],[3101,1063,0],[3117,1045,0],[3087,1073,0],[3081,1076,0],[3132,864,0],[3143,870,0],[3135,866,0],[3153,881,0],[3130,1028,0],[3144,1016,0],[3158,1005,0],[3163,901,0],[3174,916,0],[3166,906,0],[3173,927,0],[3182,951,0],[3188,932,0],[3199,943,0],[3180,984,0],[3169,995,0],[3186,971,0],[3213,956,0],[3205,949,0],[3222,964,0],[3230,969,0],[3238,971,0],[3272,963,0],[3247,968,0],[3255,964,0],[3271,962,0],[3261,961,0],[3276,964,0],[3266,961,0],[3274,964,0],[3285,968,0],[3282,967,-4],[3301,976,0],[3292,972,-3],[3304,977,0],[3317,980,0],[3295,973,0],[3316,1357,0],[3286,1392,0],[3299,1362,0],[3290,1372,0],[3287,1422,0],[3289,1466,0],[3288,1447,0],[3298,1519,0],[3291,1489,0],[3307,1551,0],[3315,1578,0],[3300,1625,0],[3308,1618,0],[3315,1612,0],[3320,1606,0],[3347,980,0],[3331,980,0],[3339,1360,0],[3360,1367,0],[3321,1593,0],[3322,1600,0],[3335,1633,0],[3332,1611,0],[3335,1620,0],[3326,1603,0],[3329,1606,0],[3385,989,0],[3365,984,0],[3383,1372,0],[3406,994,0],[3419,998,0],[3431,1001,0],[3437,1096,0],[3434,1105,0],[3438,1146,0],[3427,1169,0],[3416,1199,0],[3409,1220,0],[3422,1367,0],[3405,1372,0],[3479,1039,0],[3458,1038,0],[3457,1026,0],[3445,1005,0],[3454,1016,0],[3451,1009,0],[3467,1059,0],[3450,1061,0],[3445,1074,0],[3454,1049,0],[3459,1083,0],[3454,1110,0],[3441,1084,0],[3448,1130,0],[3469,1354,0],[3442,1360,0],[3493,1020,0],[3508,1004,0],[3491,1347,0],[3499,1339,0],[3499,1327,0],[3500,1333,0],[3528,988,0],[3551,977,0],[3599,953,0],[3592,958,0],[3588,963,0],[3571,973,0],[3639,871,0],[3625,918,0],[3632,892,0],[3612,940,0],[3607,969,0],[3632,983,0],[3658,744,0],[3649,790,0],[3654,763,0],[3645,834,0],[3646,815,0],[3643,853,0],[3657,995,0],[3683,1006,0],[3709,1015,0],[3738,1020,0],[3791,1035,0],[3765,1026,0],[3815,1077,0],[3817,1045,0],[3810,1055,0],[3808,1046,0],[3821,1107,0],[3832,1160,0],[3826,1134,0],[3839,1189,0],[3844,1049,0],[3873,1048,0],[3845,1221,0],[3857,1277,0],[3850,1249,0],[3862,1301,0]]],["21",[[3639,871,0],[3625,918,0],[3632,892,0],[3612,940,0],[3673,696,0],[3665,722,0],[3658,744,0],[3649,790,0],[3654,763,0],[3645,834,0],[3646,815,0],[3643,853,0],[3715,630,0],[3695,655,0],[3681,675,0],[3752,587,0],[3735,606,0],[3789,529,0],[3776,551,0],[3764,570,0],[3836,423,0],[3814,478,0],[3825,448,0],[3802,506,0],[3879,334,0],[3869,353,0],[3848,395,0],[3860,371,0],[3908,273,0],[3918,256,0],[3897,293,0],[3888,314,0],[3935,238,0],[3958,217,0],[3995,196,0],[3977,203,0],[4022,190,0],[4069,177,0],[4049,183,0],[4112,148,0],[4092,165,0],[4132,96,0],[4123,122,0]]],["22",[[4837,1660,0],[4818,1712,0],[4827,1686,0],[4809,1738,0],[4843,808,0],[4854,828,0],[4864,848,0],[4873,867,0],[4880,886,0],[4878,1548,0],[4865,1584,0],[4871,1566,0],[4848,1628,0],[4858,1602,0],[4887,906,0],[4903,949,0],[4894,927,0],[4913,973,0],[4917,1441,0],[4907,1468,0],[4898,1492,0],[4887,1523,0],[4923,994,0],[4939,1031,0],[4930,1012,0],[4943,1070,0],[4943,1051,0],[4954,1106,0],[4946,1089,0],[4960,1318,0],[4951,1345,0],[4942,1368,0],[4935,1389,0],[4938,1399,0],[4927,1411,0],[4945,1402,0],[4951,1405,0],[4968,1119,0],[4984,1126,0],[4999,1130,0],[4993,1226,0],[4984,1250,0],[4976,1273,0],[4968,1295,0],[4963,1407,0],[4975,1409,0],[5038,1101,0],[5020,1152,0],[5028,1129,0],[5011,1135,0],[5020,1141,0],[5011,1176,0],[5002,1201,0],[5071,1003,0],[5060,1035,0],[5049,1068,0],[5118,863,0],[5103,909,0],[5112,881,0],[5092,941,0],[5081,973,0]]],["23",[[3318,4532,0],[3315,4523,0],[3319,4700,0],[3314,4717,0],[3307,4748,0],[3310,4730,0],[3315,4789,0],[3309,4770,0],[3322,4543,0],[3328,4560,0],[3336,4580,0],[3344,4597,0],[3354,4621,0],[3356,4634,0],[3350,4610,0],[3351,4652,0],[3333,4674,0],[3343,4666,0],[3325,4684,0],[3326,4823,0],[3321,4806,0],[3330,4846,0],[3335,4869,0],[3350,4904,0],[3343,4887,0],[3358,4928,0],[3363,4950,0],[3372,4986,0],[3367,4966,0],[3371,5012,0],[3367,5035,0],[3372,5075,0],[3367,5050,0],[3367,5060,0],[3368,5068,0],[3380,5084,0],[3391,5093,0],[3435,5106,0],[3405,5098,0],[3419,5102,0],[3457,4391,0],[3472,4388,0],[3451,5110,0],[3467,5114,0],[3478,5117,0],[3507,4390,0],[3488,4387,0],[3524,4394,0],[3537,4398,0],[3545,4401,0],[3632,5058,0],[3622,5085,0],[3616,5103,0],[3612,5115,0],[3673,4946,0],[3659,4984,0],[3666,4965,0],[3643,5025,0],[3652,5002,0],[3714,4834,0],[3701,4869,0],[3708,4852,0],[3694,4887,0],[3687,4906,0],[3680,4925,0],[3741,4759,0],[3751,4733,0],[3731,4786,0],[3722,4812,0],[3787,4406,0],[3780,4404,0],[3797,4411,0],[3797,4419,0],[3795,4409,0],[3798,4434,0],[3796,4433,0],[3798,4413,0],[3795,4432,0],[3793,4408,0],[3798,4416,0],[3795,4431,0],[3794,4428,0],[3796,4422,0],[3795,4424,0],[3796,4423,0],[3796,4421,0],[3795,4425,0],[3795,4426,0],[3791,4625,0],[3797,4607,0],[3790,4633,0],[3784,4643,0],[3778,4661,0],[3797,4641,0],[3770,4683,0],[3760,4707,0],[3797,4695,0],[3793,4717,0],[3789,4738,0],[3786,4763,0],[3793,4799,0],[3784,4789,0],[3783,4782,0],[3800,4435,0],[3803,4437,0],[3806,4440,0],[3810,4461,0],[3815,4479,0],[3812,4472,0],[3807,4444,0],[3809,4451,0],[3839,4486,0],[3830,4511,0],[3820,4485,0],[3825,4490,0],[3831,4493,0],[3822,4534,0],[3814,4558,0],[3805,4584,0],[3802,4670,0],[3803,4649,0],[3804,4653,0],[3829,4826,0],[3810,4812,0],[3879,4386,0],[3876,4398,0],[3862,4430,0],[3869,4412,0],[3855,4448,0],[3848,4465,0],[3847,4838,0],[3879,4860,0],[3863,4849,0],[3890,4352,0],[3908,4385,0],[3888,4393,0],[3894,4382,0],[3910,4375,0],[3882,4386,0],[3896,4872,0],[3915,4882,0],[3930,4376,0],[3927,4370,0],[3941,4365,0],[3935,4891,0],[3954,4899,0],[3996,4914,0],[3974,4906,0],[4021,4924,0],[4043,4932,0],[4062,4938,0],[4082,4943,0],[4103,4949,0],[4123,4955,0],[4141,4961,0],[4180,4972,0],[4160,4966,0]]],["24",[[1786,1481,0],[1833,1499,0],[1807,1489,0],[1865,1509,0],[1889,1518,0],[1908,1527,0],[1935,1538,0],[1962,1548,0],[1984,1555,0],[1993,2156,0],[2010,1564,0],[2039,1577,0],[2004,2146,0],[2027,2139,0],[2013,2140,0],[2062,1590,0],[2069,2138,0],[2047,2139,0],[2087,1607,0],[2117,1624,0],[2119,2115,0],[2094,2132,0],[2145,1640,0],[2150,2085,0],[2137,2098,0],[2182,1664,0],[2166,1654,0],[2169,2066,0],[2190,2044,0],[2206,1677,0],[2237,1692,0],[2209,2025,0],[2229,2006,0],[2260,1702,0],[2278,1709,0],[2240,1995,0],[2303,1716,0],[2337,1724,0],[2383,1733,0],[2364,1729,0],[2423,1746,0],[2403,1739,0],[2446,1752,0],[2471,1757,0],[2495,1761,0],[2517,1764,0],[2551,1772,0],[2536,1768,0],[2599,1628,0],[2598,1602,0],[2596,1613,0],[2581,1775,0],[2598,1776,0],[2566,1774,0],[2594,1983,0],[2583,1987,0],[2577,1993,0],[2572,2021,0],[2573,2003,0],[2571,2048,0],[2615,1591,0],[2628,1584,0],[2603,1596,0],[2604,1642,0],[2610,1667,0],[2608,1653,0],[2631,1702,0],[2621,1691,0],[2640,1715,0],[2612,1681,0],[2640,1743,0],[2635,1756,0],[2627,1771,0],[2613,1776,0],[2621,1775,0],[2633,1776,0],[2632,1767,0],[2611,1978,0],[2628,1972,0],[2647,1582,0],[2669,1588,0],[2642,1727,0],[2657,1792,0],[2641,1784,0],[2672,1799,0],[2683,1597,0],[2684,1809,0]]]] \ No newline at end of file diff --git a/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/PIC.jpg b/Map-Templates/Antistasi-Livonia.Enoch/PIC.jpg similarity index 100% rename from A3-Antistasi/Templates/A3-Livonia-Template.Enoch/PIC.jpg rename to Map-Templates/Antistasi-Livonia.Enoch/PIC.jpg diff --git a/Map-Templates/Antistasi-Livonia.Enoch/description.ext b/Map-Templates/Antistasi-Livonia.Enoch/description.ext new file mode 100755 index 0000000000..c0460f2732 --- /dev/null +++ b/Map-Templates/Antistasi-Livonia.Enoch/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_livonia_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_livonia_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_livonia_mapname_text; +overviewText = $STR_antistasi_mission_info_livonia_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Livonia is Ours!"; + description = "The population of Livonia loves you!
The SDK brave soldiers have proven their valour, and Petros, Livonias 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 = "Maru is Dead"; + subtitle = "Maru is Dead"; + description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Livonia"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Livonia is Destroyed"; + subtitle = "Livonia got Destroyed by CSAT"; + description = "One third of the population in Livonia has been murdered by CSAT.
Livonia no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/mission.sqm b/Map-Templates/Antistasi-Livonia.Enoch/mission.sqm similarity index 68% rename from A3-Antistasi/Templates/A3-Livonia-Template.Enoch/mission.sqm rename to Map-Templates/Antistasi-Livonia.Enoch/mission.sqm index 4f2c5bff77..d821189931 100755 --- a/A3-Antistasi/Templates/A3-Livonia-Template.Enoch/mission.sqm +++ b/Map-Templates/Antistasi-Livonia.Enoch/mission.sqm @@ -5,10 +5,10 @@ class EditorData angleGridStep=0.2617994; scaleGridStep=1; autoGroupingDist=10; - toggles=1029; + toggles=1030; class ItemIDProvider { - nextID=2911; + nextID=3245; }; class MarkerIDProvider { @@ -16,29 +16,27 @@ class EditorData }; class LayerIndexProvider { - nextID=132; + nextID=204; }; class Camera { - pos[]={767.6051,785.06067,5238.9834}; - dir[]={0.13052656,-0.80110013,0.58412963}; - up[]={0.17470132,0.59852993,0.7818203}; - aside[]={0.97593617,1.1191878e-007,-0.21807796}; + pos[]={962.53094,105.17551,5544.4683}; + dir[]={-0.56049997,-0.64726299,0.51661855}; + up[]={-0.47593507,0.7622658,0.43867427}; + aside[]={0.67773896,-1.3553654e-007,0.73530573}; }; }; binarizationWanted=0; addons[]= { - "A3_Ui_F", "A3_Weapons_F_Ammoboxes", "A3_Modules_F", "A3_Characters_F", + "A3_Weapons_F", "A3_Structures_F_Mil_Flags", "A3_Modules_F_Curator_Curator", - "A3_Soft_F_Enoch_Offroad_01", "A3_Structures_F_Civ_Camping", "A3_Props_F_Enoch_Civilian_InfoBoards", - "A3_Ui_F_Exp", "A3_Characters_F_Exp", "A3_Structures_F_Exp_Military_Flags", "A3_Structures_F_Ind_Transmitter_Tower", @@ -54,546 +52,195 @@ addons[]= "A3_Structures_F_Walls", "A3_Structures_F_Ind_Cargo", "A3_Structures_F_Exp_Military_Fortifications", - "A3_Structures_F_Heli_Items_Airport", - "A3_Structures_F_Mil_BagFence", - "A3_Structures_F_EPA_Mil_Scrapyard", - "A3_Structures_F_Items_Vessels", - "A3_Structures_F_Enoch_Military_Camonets", "A3_Structures_F_System", + "A3_Structures_F_EPA_Mil_Scrapyard", "A3_Structures_F_Heli_Civ_Constructions", "A3_Structures_F_Heli_Furniture", "A3_Structures_F_EPA_Civ_Constructions", - "A3_Structures_F_Ind_WindPowerPlant", - "A3_Structures_F_Tank_Military_Fortifications", - "A3_Structures_F_Civ_Lamps", + "A3_Structures_F_Enoch_Military_Camonets", + "A3_Structures_F_Heli_Items_Airport", "A3_Structures_F_Orange_Humanitarian_Camps", "A3_Structures_F_Heli_Ind_Machines", + "A3_Structures_F_Mil_BagFence", + "A3_Structures_F_Items_Vessels", + "A3_Structures_F_Mil_Shelters", + "A3_Structures_F_Civ_Lamps", "A3_Props_F_Orange_Humanitarian_Camps", - "A3_Structures_F_Argo_Military_Fortifications", "A3_Structures_F_Enoch_Military_Radar", - "A3_Supplies_F_Heli_Bladders" + "A3_Supplies_F_Heli_Bladders", + "A3_Ui_F", + "A3_Structures_F_Mil_TentHangar", + "A3_Ui_F_Exp" }; class AddonsMetaData { class List { - items=23; + items=20; class Item0 - { - className="A3_Ui_F"; - name="Arma 3 - User Interface"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item1 { className="A3_Weapons_F"; name="Arma 3 Alpha - Weapons and Accessories"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item2 + class Item1 { className="A3_Modules_F"; name="Arma 3 Alpha - Scripted Modules"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item3 + class Item2 { className="A3_Characters_F"; name="Arma 3 Alpha - Characters and Clothing"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item4 + class Item3 { className="A3_Structures_F_Mil"; name="Arma 3 - Military Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item5 + class Item4 { className="A3_Modules_F_Curator"; name="Arma 3 Zeus Update - Scripted Modules"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item6 - { - className="A3_Soft_F_Enoch"; - name="Arma 3 Enoch - Unarmored Land Vehicles"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item7 + class Item5 { className="A3_Structures_F"; name="Arma 3 - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item8 + class Item6 { className="A3_Props_F_Enoch"; name="Arma 3 Enoch - Decorative and Mission Objects"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item9 - { - className="A3_Ui_F_Exp"; - name="Arma 3 Apex - User Interface"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item10 + class Item7 { className="A3_Characters_F_Exp"; name="Arma 3 Apex - Characters and Clothing"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item11 + class Item8 { className="A3_Structures_F_Exp"; name="Arma 3 Apex - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item12 + class Item9 { className="A3_Structures_F_Ind"; name="Arma 3 - Industrial Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item13 + class Item10 { className="A3_Structures_F_Enoch_Military"; name="Arma 3 Enoch - Military Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item14 + class Item11 { className="A3_Structures_F_Enoch_Civilian"; name="Arma 3 Enoch - Civilian Buildings"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item15 + class Item12 { className="A3_Structures_F_Enoch"; name="Arma 3 Enoch - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item16 - { - className="A3_Structures_F_Heli"; - name="Arma 3 Helicopters - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item17 + class Item13 { className="A3_Structures_F_EPA"; name="Arma 3 Survive Episode - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item18 + class Item14 { - className="A3_Structures_F_Tank"; - name="Arma 3 Tank - Buildings and Structures"; + className="A3_Structures_F_Heli"; + name="Arma 3 Helicopters - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item19 + class Item15 { className="A3_Structures_F_Orange"; name="Arma 3 Orange - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item20 + class Item16 { className="A3_Props_F_Orange"; name="Arma 3 Orange - Decorative and Mission Objects"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item21 + class Item17 { - className="A3_Structures_F_Argo"; - name="Arma 3 Malden - Buildings and Structures"; + className="A3_Supplies_F_Heli"; + name="Arma 3 Helicopters - Ammoboxes and Supplies"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item22 + class Item18 { - className="A3_Supplies_F_Heli"; - name="Arma 3 Helicopters - Ammoboxes and Supplies"; + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item19 + { + className="A3_Ui_F_Exp"; + name="Arma 3 Apex - User Interface"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; }; }; randomSeed=228300; -class ScenarioData -{ - author=$STR_antistasi_credits_generic_author_text; -}; class Mission { class Intel { briefingName=$STR_antistasi_mission_info_livonia_mapname_text; - overviewText=$STR_antistasi_credits_generic_version_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=2039; + year=2035; month=6; - day=6; + day=1; hour=10; minute=0; - startFogBase=250; - forecastFogBase=250; - startFogDecay=0.017999999; - forecastFogDecay=0.017999999; + startFogDecay=0.0049333; + forecastFogDecay=0.0049333; }; class Entities { - items=1113; + items=803; class Item0 - { - dataType="Marker"; - position[]={1078.702,275.09799,11408.5}; - name="outpost"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=50; - b=50; - id=56; - atlOffset=0.00015258789; - }; - class Item1 - { - dataType="Marker"; - position[]={2065.5,109.73633,11150.5}; - name="outpost_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=218.24034; - b=239.39792; - angle=67.836891; - id=57; - atlOffset=-8.0124741; - }; - class Item2 - { - dataType="Marker"; - position[]={4267.542,70,10474.541}; - name="outpost_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=94.135002; - b=135.55499; - angle=314.80792; - id=58; - atlOffset=1.7699966; - }; - class Item3 - { - dataType="Marker"; - position[]={2046.8824,50.054153,7278.7412}; - name="outpost_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=54.100723; - b=56.806438; - angle=27.074936; - id=59; - atlOffset=-2.2098808; - }; - class Item4 - { - dataType="Marker"; - position[]={4617.0688,131.88693,6314.8472}; - name="outpost_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=55.822796; - b=43.394402; - angle=338.12772; - id=60; - atlOffset=0.099838257; - }; - class Item5 - { - dataType="Marker"; - position[]={3182.5,235.84601,4950}; - name="outpost_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=50; - b=50; - angle=45.087116; - id=61; - }; - class Item6 - { - dataType="Marker"; - position[]={4544,115.01487,4745}; - name="outpost_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=50; - b=50; - id=62; - }; - class Item7 - { - dataType="Marker"; - position[]={5614.6919,251.62126,3780.3594}; - name="outpost_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=122.63338; - b=88.012146; - angle=331.32162; - id=63; - atlOffset=0.16125488; - }; - class Item8 - { - dataType="Marker"; - position[]={4952.9375,357.83502,2149.1367}; - name="outpost_8"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=168.66092; - b=127.42848; - angle=48.552986; - id=64; - atlOffset=3.6047058; - }; - class Item9 - { - dataType="Marker"; - position[]={3831.0908,388.78015,1830.3856}; - name="outpost_9"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=50; - b=50; - id=65; - atlOffset=0.00015258789; - }; - class Item10 - { - dataType="Marker"; - position[]={8916.5,308.25,2054.625}; - name="outpost_10"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=85.130371; - b=72.120605; - id=66; - atlOffset=3.9385986; - }; - class Item11 - { - dataType="Marker"; - position[]={9903.125,184.75,3899.75}; - name="outpost_11"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=92.072548; - b=125.04468; - angle=6.1560383; - id=67; - atlOffset=3.8208008; - }; - class Item12 - { - dataType="Marker"; - position[]={11123.143,185.5,2473.3086}; - name="outpost_12"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=84.215332; - b=81.173462; - id=68; - atlOffset=1.3292236; - }; - class Item13 - { - dataType="Marker"; - position[]={11311.66,176.89999,4201.9844}; - name="outpost_13"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=104.21985; - b=69.965927; - angle=340.66489; - id=69; - }; - class Item14 - { - dataType="Marker"; - position[]={7641.375,63.0014,5972.125}; - name="outpost_14"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=69.077148; - b=65.789063; - angle=332.43008; - id=70; - }; - class Item15 - { - dataType="Marker"; - position[]={8916.625,138.5596,6578.5}; - name="outpost_15"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=50; - b=50; - angle=334.25339; - id=71; - }; - class Item16 - { - dataType="Marker"; - position[]={9680.9219,43.615002,8495.7031}; - name="outpost_16"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=74.474213; - b=56.669998; - angle=322.1239; - id=72; - atlOffset=-0.01770401; - }; - class Item17 - { - dataType="Marker"; - position[]={9428.8545,72.030151,10362.884}; - name="outpost_17"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=30.086159; - b=61.861637; - angle=321.72488; - id=73; - atlOffset=0.016929626; - }; - class Item18 - { - dataType="Marker"; - position[]={8159.8047,35.146511,10768.631}; - name="outpost_18"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=57.197998; - b=171.13599; - angle=350.74753; - id=74; - atlOffset=-8.6170387; - }; - class Item19 - { - dataType="Marker"; - position[]={7823.1758,169.28152,10093.804}; - name="outpost_19"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=60.068604; - b=50; - id=75; - atlOffset=-0.045181274; - }; - class Item20 - { - dataType="Marker"; - position[]={6292.5024,36.670151,9904.5811}; - name="outpost_20"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=50; - b=50; - id=76; - atlOffset=0.00015258789; - }; - class Item21 - { - dataType="Marker"; - position[]={6415.625,53.427208,8178.375}; - name="outpost_21"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=79.035378; - b=67.170029; - angle=314.43701; - id=77; - }; - class Item22 - { - dataType="Marker"; - position[]={953.14001,78.643997,5568.0278}; - name="Synd_HQ"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorPink"; - a=50; - b=50; - id=78; - atlOffset=1.603363; - }; - class Item23 - { - dataType="Marker"; - position[]={954.47308,2.7037606e+012,5570.207}; - name="respawn_guerrila"; - text="Your Headquarters"; - type="hd_flag"; - colorName="ColorGUER"; - id=79; - atlOffset=2.7037606e+012; - }; - class Item24 { dataType="Object"; class PositionInfo @@ -652,7 +299,7 @@ class Mission nAttributes=2; }; }; - class Item25 + class Item1 { dataType="Logic"; class PositionInfo @@ -664,7 +311,7 @@ class Mission id=81; type="Logic"; }; - class Item26 + class Item2 { dataType="Logic"; class PositionInfo @@ -676,7 +323,7 @@ class Mission id=82; type="Logic"; }; - class Item27 + class Item3 { dataType="Logic"; class PositionInfo @@ -688,7 +335,7 @@ class Mission id=83; type="Logic"; }; - class Item28 + class Item4 { dataType="Logic"; class PositionInfo @@ -701,7 +348,7 @@ class Mission id=84; type="HeadlessClient_F"; }; - class Item29 + class Item5 { dataType="Logic"; class PositionInfo @@ -713,7 +360,7 @@ class Mission id=85; type="Logic"; }; - class Item30 + class Item6 { dataType="Logic"; class PositionInfo @@ -725,7 +372,7 @@ class Mission id=88; type="Logic"; }; - class Item31 + class Item7 { dataType="Object"; class PositionInfo @@ -784,7 +431,7 @@ class Mission nAttributes=2; }; }; - class Item32 + class Item8 { dataType="Logic"; class PositionInfo @@ -796,7 +443,7 @@ class Mission id=90; type="Logic"; }; - class Item33 + class Item9 { dataType="Logic"; class PositionInfo @@ -808,7 +455,7 @@ class Mission id=91; type="Logic"; }; - class Item34 + class Item10 { dataType="Group"; side="Independent"; @@ -831,6 +478,10 @@ class Mission name="commanderX"; description="Default Commander"; isPlayer=1; + class Inventory + { + map="ItemMap"; + }; }; id=93; type="I_G_officer_F"; @@ -891,6 +542,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=97; type="I_G_Soldier_AR_F"; @@ -951,6 +606,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=98; type="I_G_Soldier_AR_F"; @@ -1011,6 +670,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=104; type="I_G_Soldier_AR_F"; @@ -1071,6 +734,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=120; type="I_G_Soldier_AR_F"; @@ -1131,6 +798,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=121; type="I_G_Soldier_AR_F"; @@ -1191,6 +862,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=127; type="I_G_Soldier_AR_F"; @@ -1251,6 +926,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=133; type="I_G_Soldier_AR_F"; @@ -1311,6 +990,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=139; type="I_G_Soldier_AR_F"; @@ -1371,6 +1054,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=145; type="I_G_Soldier_AR_F"; @@ -1431,6 +1118,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=151; type="I_G_Soldier_AR_F"; @@ -1491,6 +1182,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=100; type="I_G_medic_F"; @@ -1551,6 +1246,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=106; type="I_G_medic_F"; @@ -1611,6 +1310,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=111; type="I_G_medic_F"; @@ -1671,6 +1374,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=116; type="I_G_medic_F"; @@ -1731,6 +1438,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=123; type="I_G_medic_F"; @@ -1791,6 +1502,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=129; type="I_G_medic_F"; @@ -1851,6 +1566,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=135; type="I_G_medic_F"; @@ -1911,6 +1630,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=141; type="I_G_medic_F"; @@ -1971,6 +1694,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=147; type="I_G_medic_F"; @@ -2031,6 +1758,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=152; type="I_G_medic_F"; @@ -2091,6 +1822,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=101; type="I_G_engineer_F"; @@ -2151,6 +1886,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=107; type="I_G_engineer_F"; @@ -2211,6 +1950,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=112; type="I_G_engineer_F"; @@ -2271,6 +2014,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=117; type="I_G_engineer_F"; @@ -2331,6 +2078,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=124; type="I_G_engineer_F"; @@ -2391,6 +2142,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=130; type="I_G_engineer_F"; @@ -2451,6 +2206,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=136; type="I_G_engineer_F"; @@ -2511,6 +2270,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=142; type="I_G_engineer_F"; @@ -2571,6 +2334,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=148; type="I_G_engineer_F"; @@ -2631,6 +2398,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=153; type="I_G_engineer_F"; @@ -2691,6 +2462,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=102; type="I_G_Soldier_GL_F"; @@ -2751,6 +2526,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=108; type="I_G_Soldier_GL_F"; @@ -2811,6 +2590,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=113; type="I_G_Soldier_GL_F"; @@ -2871,6 +2654,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=118; type="I_G_Soldier_GL_F"; @@ -2931,7 +2718,11 @@ class Mission { description="Grenadier"; isPlayable=1; - }; + class Inventory + { + map="ItemMap"; + }; + }; id=125; type="I_G_Soldier_GL_F"; class CustomAttributes @@ -2991,6 +2782,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=131; type="I_G_Soldier_GL_F"; @@ -3051,6 +2846,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=137; type="I_G_Soldier_GL_F"; @@ -3111,6 +2910,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=143; type="I_G_Soldier_GL_F"; @@ -3171,6 +2974,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=149; type="I_G_Soldier_GL_F"; @@ -3231,6 +3038,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=154; type="I_G_Soldier_GL_F"; @@ -3292,6 +3103,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=103; type="I_G_officer_F"; @@ -3353,6 +3168,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=109; type="I_G_officer_F"; @@ -3414,6 +3233,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=114; type="I_G_officer_F"; @@ -3475,6 +3298,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=119; type="I_G_officer_F"; @@ -3536,6 +3363,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=126; type="I_G_officer_F"; @@ -3597,6 +3428,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=132; type="I_G_officer_F"; @@ -3658,6 +3493,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=138; type="I_G_officer_F"; @@ -3719,6 +3558,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=144; type="I_G_officer_F"; @@ -3780,6 +3623,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=150; type="I_G_officer_F"; @@ -3840,6 +3687,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=99; type="I_G_Soldier_LAT_F"; @@ -3900,6 +3751,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=105; type="I_G_Soldier_LAT_F"; @@ -3960,6 +3815,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=110; type="I_G_Soldier_LAT_F"; @@ -4020,6 +3879,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=115; type="I_G_Soldier_LAT_F"; @@ -4080,6 +3943,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=122; type="I_G_Soldier_LAT_F"; @@ -4140,6 +4007,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=128; type="I_G_Soldier_LAT_F"; @@ -4200,6 +4071,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=134; type="I_G_Soldier_LAT_F"; @@ -4260,6 +4135,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=140; type="I_G_Soldier_LAT_F"; @@ -4320,6 +4199,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=146; type="I_G_Soldier_LAT_F"; @@ -4380,6 +4263,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=155; type="I_G_Soldier_LAT_F"; @@ -4432,7 +4319,7 @@ class Mission }; id=92; }; - class Item35 + class Item11 { dataType="Group"; side="Independent"; @@ -4523,7 +4410,7 @@ class Mission }; id=94; }; - class Item36 + class Item12 { dataType="Object"; class PositionInfo @@ -4563,7 +4450,7 @@ class Mission nAttributes=1; }; }; - class Item37 + class Item13 { dataType="Logic"; class PositionInfo @@ -4577,7 +4464,7 @@ class Mission type="HeadlessClient_F"; atlOffset=7.6293945e-006; }; - class Item38 + class Item14 { dataType="Logic"; class PositionInfo @@ -4591,7 +4478,7 @@ class Mission type="HeadlessClient_F"; atlOffset=1.5258789e-005; }; - class Item39 + class Item15 { dataType="Logic"; class PositionInfo @@ -4681,126 +4568,7 @@ class Mission nAttributes=4; }; }; - class Item40 - { - dataType="Object"; - class PositionInfo - { - position[]={940.42065,77.604866,5568.668}; - angles[]={6.214489,5.5869908,0.076654866}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=166; - type="C_Offroad_01_comms_F"; - atlOffset=-0.00023651123; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item41 - { - dataType="Object"; - class PositionInfo - { - position[]={943.35242,78.002869,5570.8989}; - angles[]={6.2049422,5.5869908,0.08618436}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=169; - type="C_Offroad_01_comms_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item42 - { - dataType="Object"; - class PositionInfo - { - position[]={946.13873,78.441414,5573.3994}; - angles[]={6.2304416,5.5869908,0.071872659}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=170; - type="C_Offroad_01_comms_F"; - atlOffset=7.6293945e-006; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item43 + class Item16 { dataType="Object"; class PositionInfo @@ -4841,7 +4609,7 @@ class Mission nAttributes=1; }; }; - class Item44 + class Item17 { dataType="Object"; class PositionInfo @@ -4881,7 +4649,7 @@ class Mission nAttributes=1; }; }; - class Item45 + class Item18 { dataType="Object"; class PositionInfo @@ -4898,16 +4666,7 @@ class Mission type="Flag_NATO_F"; atlOffset=-0.64300537; }; - class Item46 - { - dataType="Marker"; - position[]={245.15363,390.56497,737.99121}; - name="respawn_west"; - type="flag_CTRG"; - id=175; - atlOffset=4.0483093; - }; - class Item47 + class Item19 { dataType="Group"; side="West"; @@ -5289,16 +5048,7 @@ class Mission }; id=176; }; - class Item48 - { - dataType="Marker"; - position[]={1388.8798,263.23926,225.21986}; - name="respawn_east"; - type="flag_Viper"; - id=183; - atlOffset=5.421051; - }; - class Item49 + class Item20 { dataType="Group"; side="East"; @@ -5671,7 +5421,7 @@ class Mission }; id=184; }; - class Item50 + class Item21 { dataType="Object"; class PositionInfo @@ -5688,231 +5438,7 @@ class Mission id=191; type="Flag_Viper_F"; }; - class Item51 - { - dataType="Marker"; - position[]={1220.5964,90.339996,8959.0313}; - name="resource"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=72.040894; - b=66.637695; - id=192; - atlOffset=0.00071716309; - }; - class Item52 - { - dataType="Marker"; - position[]={2073.125,84.041,9473.5}; - name="resource_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=105.38583; - b=50; - angle=34.30983; - id=193; - }; - class Item53 - { - dataType="Marker"; - position[]={3132.6716,92.199997,12008.724}; - name="resource_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - id=194; - }; - class Item54 - { - dataType="Marker"; - position[]={5126.5,24.499023,10439.5}; - name="resource_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=73.913589; - b=156.8203; - angle=318.31445; - id=195; - atlOffset=-0.71657944; - }; - class Item55 - { - dataType="Marker"; - position[]={3814,31.533203,8470.375}; - name="resource_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=78.386719; - b=78.370117; - id=196; - atlOffset=-0.98679733; - }; - class Item56 - { - dataType="Marker"; - position[]={1314.2432,43.837196,8015.0566}; - name="resource_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=98.871033; - b=81.176025; - id=197; - atlOffset=2.8815651; - }; - class Item57 - { - dataType="Marker"; - position[]={4852.5,142.125,7299.375}; - name="resource_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=69.126396; - b=68.896507; - angle=8.6938763; - id=198; - atlOffset=0.52799988; - }; - class Item58 - { - dataType="Marker"; - position[]={2580.9646,226.5,5481.0532}; - name="resource_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=111.99742; - b=43.611252; - angle=45.048157; - id=199; - atlOffset=0.67408752; - }; - class Item59 - { - dataType="Marker"; - position[]={5218.5,198.95,5661}; - name="resource_8"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - id=200; - }; - class Item60 - { - dataType="Marker"; - position[]={1664.5,199.4552,3685}; - name="resource_9"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=76.100403; - b=94.005249; - angle=357.297; - id=201; - }; - class Item61 - { - dataType="Marker"; - position[]={7639.3828,126.75,2679.4541}; - name="resource_10"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - id=202; - }; - class Item62 - { - dataType="Marker"; - position[]={11571.317,42.501511,397.11075}; - name="resource_11"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - id=203; - }; - class Item63 - { - dataType="Marker"; - position[]={7831.875,74.617188,5842.125}; - name="resource_12"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=72.654297; - b=72.343262; - angle=336.49976; - id=204; - atlOffset=-1.5900192; - }; - class Item64 - { - dataType="Marker"; - position[]={9073.3477,129.75565,6643.3481}; - name="resource_13"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=66.131203; - b=50; - angle=343.26126; - id=205; - atlOffset=0.013580322; - }; - class Item65 - { - dataType="Marker"; - position[]={10654.603,63.91148,6963.7456}; - name="resource_14"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=64.756393; - angle=36.986652; - id=206; - atlOffset=-0.25345993; - }; - class Item66 - { - dataType="Marker"; - position[]={9831.25,46.625,8087.625}; - name="resource_15"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=67.521973; - b=73.392822; - angle=19.675964; - id=207; - atlOffset=-0.61500168; - }; - class Item67 - { - dataType="Marker"; - position[]={6849.5,5.4451981,11204.5}; - name="outpost_22"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGUER"; - a=50; - b=50; - angle=48.56834; - id=208; - }; - class Item68 + class Item22 { dataType="Object"; class PositionInfo @@ -5927,804 +5453,63 @@ class Mission id=209; type="Land_TTowerBig_2_F"; }; - class Item69 - { - dataType="Marker"; - position[]={4043.011,68.160004,10273.574}; - name="airport"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=208.591; - b=121.519; - angle=314.80792; - id=210; - }; - class Item70 - { - dataType="Marker"; - position[]={6468.5845,222.67999,3799.3018}; - name="airport_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=126.36222; - b=102.06323; - angle=247.21413; - id=211; - }; - class Item71 - { - dataType="Marker"; - position[]={7897.7119,150.53,9756.5381}; - name="airport_2"; - markerType="ELLIPSE"; - type="rectangle"; - colorName="ColorEAST"; - a=211.63815; - b=114.0815; - angle=244.91066; - id=212; - atlOffset=1.2146454; - }; - class Item72 - { - dataType="Marker"; - position[]={11749.5,50.799232,7801.875}; - name="airport_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=118.66162; - b=49.443848; - angle=7.3997993; - id=213; - }; - class Item73 + class Item23 { dataType="Layer"; name="Open Ammo Dump"; id=214; atlOffset=-252.33; }; - class Item74 + class Item24 { dataType="Layer"; name="Vehicle Repair"; id=239; atlOffset=-252.33; }; - class Item75 - { - dataType="Marker"; - position[]={11558,71.827148,7082.75}; - name="factory"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=89.593483; - b=135.97307; - angle=347.56018; - id=616; - atlOffset=-1.1972504; - }; - class Item76 - { - dataType="Marker"; - position[]={9291,15.333008,11162.625}; - name="factory_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=138.96671; - b=88.846985; - angle=320.82428; - id=617; - atlOffset=-1.2863922; - }; - class Item77 - { - dataType="Marker"; - position[]={1561.4736,4.6816406,7548.8047}; - name="factory_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=87.437256; - b=50; - angle=334.98184; - id=618; - atlOffset=-1.1683593; - }; - class Item78 - { - dataType="Marker"; - position[]={7338.6118,115.84275,2611.3584}; - name="factory_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=50; - b=50; - id=619; - atlOffset=-1.1972504; - }; - class Item79 - { - dataType="Marker"; - position[]={6385.0913,140.87888,4785.9814}; - name="factory_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=53.553616; - b=93.034897; - angle=39.117695; - id=620; - atlOffset=0.32502747; - }; - class Item80 - { - dataType="Marker"; - position[]={3085.25,79.049805,7071.5}; - name="factory_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=83.764648; - b=74.605957; - id=621; - atlOffset=-0.98019409; - }; - class Item81 - { - dataType="Marker"; - position[]={10999.75,14.292969,9020.5}; - name="factory_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=116.74219; - b=75.957031; - angle=2.1283612; - id=622; - atlOffset=-1.197031; - }; - class Item82 - { - dataType="Marker"; - position[]={11359.584,11.598531,9442.6133}; - name="factory_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=116.10118; - b=50; - angle=332.65359; - id=623; - atlOffset=-0.63055611; - }; - class Item83 - { - dataType="Marker"; - position[]={11157.151,2.9013834,11439.184}; - name="factory_8"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=62.923828; - b=63.897461; - angle=40.887455; - id=624; - atlOffset=-1.1605382; - }; - class Item84 + class Item25 { dataType="Layer"; name="Check Point (Large)"; id=631; atlOffset=-252.33; }; - class Item85 + class Item26 { dataType="Layer"; name="Check Point (Medium)"; id=636; atlOffset=-252.33; }; - class Item86 + class Item27 { dataType="Layer"; name="Check Point (Small)"; id=641; atlOffset=-252.33; }; - class Item87 + class Item28 { dataType="Layer"; name="Camp Ant"; id=678; atlOffset=-252.33; }; - class Item88 + class Item29 { dataType="Layer"; name="Camp Crow"; id=711; atlOffset=-252.33; }; - class Item89 + class Item30 { dataType="Layer"; name="One-Way Reinforced"; id=771; atlOffset=-252.33; }; - class Item90 - { - dataType="Marker"; - position[]={3366.25,217.26074,4336}; - name="control"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=772; - atlOffset=-2.5232544; - }; - class Item91 - { - dataType="Marker"; - position[]={3368.7512,316.22528,2126.0469}; - name="control_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=773; - atlOffset=-2.5232544; - }; - class Item92 - { - dataType="Marker"; - position[]={7643.0571,207.62411,3756.5042}; - name="control_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=775; - atlOffset=-2.5232544; - }; - class Item93 - { - dataType="Marker"; - position[]={8704.1357,196.07642,4150.4473}; - name="control_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=776; - atlOffset=-2.5232544; - }; - class Item94 - { - dataType="Marker"; - position[]={10088.347,176.83768,4208.6099}; - name="control_5"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=777; - atlOffset=-2.5232544; - }; - class Item95 - { - dataType="Marker"; - position[]={9026.4873,153.58763,5157.7935}; - name="control_6"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=778; - atlOffset=-2.5232544; - }; - class Item96 - { - dataType="Marker"; - position[]={1797.5,152.06641,6205}; - name="control_7"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=779; - atlOffset=-1.5395966; - }; - class Item97 - { - dataType="Marker"; - position[]={2200.6296,30.569206,7516.5586}; - name="control_8"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=780; - atlOffset=-2.5232544; - }; - class Item98 - { - dataType="Marker"; - position[]={1035.8557,23.535429,7294.0376}; - name="control_9"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=781; - atlOffset=-2.5232544; - }; - class Item99 - { - dataType="Marker"; - position[]={1365.106,7.1691446,7666.6128}; - name="control_10"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=782; - atlOffset=-2.5232544; - }; - class Item100 - { - dataType="Marker"; - position[]={4843.3237,24.360769,9696.4521}; - name="control_11"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=783; - atlOffset=-2.5232544; - }; - class Item101 - { - dataType="Marker"; - position[]={5378.9751,12.286582,10367.957}; - name="control_12"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=784; - atlOffset=-2.5232544; - }; - class Item102 - { - dataType="Marker"; - position[]={4153.0156,43.453606,10877.489}; - name="control_13"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=785; - atlOffset=-2.5232544; - }; - class Item103 - { - dataType="Marker"; - position[]={11597.131,26.272791,8044.8184}; - name="control_14"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=786; - atlOffset=-2.5232544; - }; - class Item104 - { - dataType="Marker"; - position[]={11819.995,47.01823,7690.5884}; - name="control_15"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=787; - atlOffset=-2.5232544; - }; - class Item105 - { - dataType="Marker"; - position[]={11659.081,140.50577,4951.9058}; - name="control_16"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=788; - atlOffset=-2.5232544; - }; - class Item106 - { - dataType="Marker"; - position[]={10900.278,172.10098,4129.5366}; - name="control_17"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=789; - atlOffset=-2.5232544; - }; - class Item107 - { - dataType="Marker"; - position[]={8779.4814,140.0092,6479.4951}; - name="control_18"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=790; - atlOffset=-2.5232544; - }; - class Item108 - { - dataType="Marker"; - position[]={8924.0811,145.39896,6891.0078}; - name="control_19"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=791; - atlOffset=-2.5232544; - }; - class Item109 - { - dataType="Marker"; - position[]={7962.3833,81.444267,8665.0469}; - name="control_20"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=792; - atlOffset=-2.5232544; - }; - class Item110 - { - dataType="Marker"; - position[]={8576,99.584961,8668.5}; - name="control_21"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=793; - atlOffset=-2.9246445; - }; - class Item111 - { - dataType="Marker"; - position[]={5913.6938,10.407352,10907.52}; - name="control_22"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=794; - atlOffset=-2.5232544; - }; - class Item112 - { - dataType="Marker"; - position[]={6444.8247,2.9953322,10871.798}; - name="control_23"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=795; - atlOffset=-2.5232544; - }; - class Item113 - { - dataType="Marker"; - position[]={8412.0811,1.5667458,11831.865}; - name="control_24"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=796; - atlOffset=-2.5232544; - }; - class Item114 - { - dataType="Marker"; - position[]={7971.1494,1.5426173,11779.96}; - name="control_25"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=797; - atlOffset=-2.5232544; - }; - class Item115 - { - dataType="Marker"; - position[]={11079.664,2.1455345,11370.186}; - name="control_26"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=798; - atlOffset=-2.5232544; - }; - class Item116 - { - dataType="Marker"; - position[]={9355.9678,42.334644,10707.669}; - name="control_27"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=799; - atlOffset=-2.5232544; - }; - class Item117 - { - dataType="Marker"; - position[]={9426.252,76.683098,10270.955}; - name="control_28"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=800; - atlOffset=-2.5232544; - }; - class Item118 - { - dataType="Marker"; - position[]={10859.868,12.415169,10777.237}; - name="control_29"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=801; - atlOffset=-2.5232544; - }; - class Item119 - { - dataType="Marker"; - position[]={10407.146,6.2089977,11205.414}; - name="control_30"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=802; - atlOffset=-2.5232763; - }; - class Item120 - { - dataType="Marker"; - position[]={7277.6733,52.785683,6554.4375}; - name="control_31"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=803; - atlOffset=-2.5232544; - }; - class Item121 - { - dataType="Marker"; - position[]={5853.1245,112.37883,6699.3228}; - name="control_32"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=804; - atlOffset=-2.5232544; - }; - class Item122 - { - dataType="Marker"; - position[]={8579.0283,215.64503,2336.7993}; - name="control_33"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=805; - atlOffset=-2.5232544; - }; - class Item123 - { - dataType="Marker"; - position[]={4750.417,296.77066,2555.5867}; - name="control_34"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=806; - atlOffset=-2.5232544; - }; - class Item124 - { - dataType="Marker"; - position[]={4104.6729,307.47437,1640.6548}; - name="control_35"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=807; - atlOffset=-2.5232544; - }; - class Item125 - { - dataType="Marker"; - position[]={2553.156,81.912445,10544.641}; - name="control_36"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=808; - atlOffset=-2.5232544; - }; - class Item126 - { - dataType="Marker"; - position[]={6198.0835,66.943924,7895.7246}; - name="control_37"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=809; - atlOffset=-2.5232544; - }; - class Item127 - { - dataType="Marker"; - position[]={5937.0996,210.42572,4428.6821}; - name="control_38"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=810; - atlOffset=-2.5232544; - }; - class Item128 - { - dataType="Marker"; - position[]={6636.0947,204.87622,3931.1021}; - name="control_39"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=811; - atlOffset=-2.5232544; - }; - class Item129 - { - dataType="Marker"; - position[]={6311.875,209.23047,3914.875}; - name="control_40"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=812; - atlOffset=-2.2235413; - }; - class Item130 - { - dataType="Marker"; - position[]={5390.1978,244.14975,3760.6187}; - name="control_41"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=813; - atlOffset=-2.5232544; - }; - class Item131 - { - dataType="Marker"; - position[]={11168.68,50.084843,795.14526}; - name="control_42"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=814; - atlOffset=-2.5232544; - }; - class Item132 - { - dataType="Marker"; - position[]={4062.5789,3.4024124,8967.9043}; - name="control_43"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=815; - atlOffset=-2.348166; - }; - class Item133 - { - dataType="Marker"; - position[]={5308.4849,1.7440257,9485.876}; - name="control_44"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=816; - atlOffset=-2.5232544; - }; - class Item134 - { - dataType="Marker"; - position[]={4713.4019,118.1113,7641.4106}; - name="control_45"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=817; - atlOffset=-2.5232544; - }; - class Item135 - { - dataType="Marker"; - position[]={3324.2793,66.125252,6649.729}; - name="control_46"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=818; - atlOffset=-2.5232544; - }; - class Item136 - { - dataType="Marker"; - position[]={10226.291,31.340343,8692.4482}; - name="control_47"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=819; - atlOffset=-2.5232544; - }; - class Item137 + class Item31 { dataType="Logic"; class PositionInfo @@ -6735,7 +5520,7 @@ class Mission id=820; type="HighCommand"; }; - class Item138 + class Item32 { dataType="Logic"; class PositionInfo @@ -6745,33 +5530,7 @@ class Mission id=821; type="HighCommandSubordinate"; }; - class Item139 - { - dataType="Marker"; - position[]={7881.0366,144.69,9563.6963}; - name="detectPlayer"; - markerType="RECTANGLE"; - type="rectangle"; - a=122.46957; - b=73.503365; - angle=6.6712604; - id=822; - atlOffset=2.1220245; - }; - class Item140 - { - dataType="Marker"; - position[]={8018.5132,145.5,9623.7666}; - name="detectPlayer_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=41.776703; - b=91.376221; - angle=30.725622; - id=823; - atlOffset=10.4617; - }; - class Item141 + class Item33 { dataType="Object"; class PositionInfo @@ -6783,12 +5542,11 @@ class Mission flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]]; " \n "}"; }; id=825; type="Land_HelipadSquare_F"; }; - class Item142 + class Item34 { dataType="Object"; class PositionInfo @@ -6800,12 +5558,11 @@ class Mission flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]]; " \n "}"; }; id=826; type="Land_HelipadSquare_F"; }; - class Item143 + class Item35 { dataType="Object"; class PositionInfo @@ -6817,13 +5574,12 @@ class Mission flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]]; " \n "}"; }; id=827; type="Land_HelipadSquare_F"; atlOffset=1.5258789e-005; }; - class Item144 + class Item36 { dataType="Object"; class PositionInfo @@ -6839,7 +5595,7 @@ class Mission id=836; type="Land_HBarrier_5_F"; }; - class Item145 + class Item37 { dataType="Object"; class PositionInfo @@ -6855,7 +5611,7 @@ class Mission id=837; type="Land_HBarrier_5_F"; }; - class Item146 + class Item38 { dataType="Object"; class PositionInfo @@ -6871,7 +5627,7 @@ class Mission id=838; type="Land_HBarrier_5_F"; }; - class Item147 + class Item39 { dataType="Object"; class PositionInfo @@ -6887,7 +5643,7 @@ class Mission id=839; type="Land_HBarrier_5_F"; }; - class Item148 + class Item40 { dataType="Object"; class PositionInfo @@ -6903,7 +5659,7 @@ class Mission id=840; type="Land_HBarrier_5_F"; }; - class Item149 + class Item41 { dataType="Object"; class PositionInfo @@ -6919,7 +5675,7 @@ class Mission id=841; type="Land_HBarrier_5_F"; }; - class Item150 + class Item42 { dataType="Object"; class PositionInfo @@ -6935,7 +5691,7 @@ class Mission id=842; type="Land_HBarrier_5_F"; }; - class Item151 + class Item43 { dataType="Object"; class PositionInfo @@ -6951,7 +5707,7 @@ class Mission id=843; type="Land_HBarrier_5_F"; }; - class Item152 + class Item44 { dataType="Object"; class PositionInfo @@ -6967,7 +5723,7 @@ class Mission id=844; type="Land_HBarrier_5_F"; }; - class Item153 + class Item45 { dataType="Object"; class PositionInfo @@ -6983,7 +5739,7 @@ class Mission id=845; type="Land_HBarrier_5_F"; }; - class Item154 + class Item46 { dataType="Object"; class PositionInfo @@ -6999,7 +5755,7 @@ class Mission id=846; type="Land_HBarrier_5_F"; }; - class Item155 + class Item47 { dataType="Object"; class PositionInfo @@ -7015,7 +5771,7 @@ class Mission id=847; type="Land_HBarrier_5_F"; }; - class Item156 + class Item48 { dataType="Object"; class PositionInfo @@ -7031,7 +5787,7 @@ class Mission id=848; type="Land_HBarrier_5_F"; }; - class Item157 + class Item49 { dataType="Object"; class PositionInfo @@ -7047,7 +5803,7 @@ class Mission id=849; type="Land_HBarrier_5_F"; }; - class Item158 + class Item50 { dataType="Object"; class PositionInfo @@ -7063,7 +5819,7 @@ class Mission id=850; type="Land_HBarrier_5_F"; }; - class Item159 + class Item51 { dataType="Object"; class PositionInfo @@ -7079,7 +5835,7 @@ class Mission id=851; type="Land_HBarrier_5_F"; }; - class Item160 + class Item52 { dataType="Object"; class PositionInfo @@ -7095,7 +5851,7 @@ class Mission id=852; type="Land_HBarrier_5_F"; }; - class Item161 + class Item53 { dataType="Object"; class PositionInfo @@ -7111,7 +5867,7 @@ class Mission id=853; type="Land_HBarrier_5_F"; }; - class Item162 + class Item54 { dataType="Object"; class PositionInfo @@ -7127,7 +5883,7 @@ class Mission id=854; type="Land_Barracks_06_F"; }; - class Item163 + class Item55 { dataType="Object"; class PositionInfo @@ -7143,7 +5899,7 @@ class Mission id=855; type="Land_MedicalTent_01_wdl_generic_open_F"; }; - class Item164 + class Item56 { dataType="Object"; class PositionInfo @@ -7159,7 +5915,7 @@ class Mission id=856; type="Land_MedicalTent_01_wdl_generic_open_F"; }; - class Item165 + class Item57 { dataType="Object"; class PositionInfo @@ -7175,7 +5931,7 @@ class Mission id=859; type="Land_GuardBox_01_brown_F"; }; - class Item166 + class Item58 { dataType="Object"; class PositionInfo @@ -7191,7 +5947,7 @@ class Mission id=860; type="Land_GuardBox_01_brown_F"; }; - class Item167 + class Item59 { dataType="Object"; class PositionInfo @@ -7208,7 +5964,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.0035858154; }; - class Item168 + class Item60 { dataType="Object"; class PositionInfo @@ -7225,7 +5981,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.00010681152; }; - class Item169 + class Item61 { dataType="Object"; class PositionInfo @@ -7242,7 +5998,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.00062561035; }; - class Item170 + class Item62 { dataType="Object"; class PositionInfo @@ -7259,7 +6015,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.00079345703; }; - class Item171 + class Item63 { dataType="Object"; class PositionInfo @@ -7276,7 +6032,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=-0.0002746582; }; - class Item172 + class Item64 { dataType="Object"; class PositionInfo @@ -7293,7 +6049,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.00024414063; }; - class Item173 + class Item65 { dataType="Object"; class PositionInfo @@ -7310,7 +6066,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=-6.1035156e-005; }; - class Item174 + class Item66 { dataType="Object"; class PositionInfo @@ -7327,7 +6083,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=6.1035156e-005; }; - class Item175 + class Item67 { dataType="Object"; class PositionInfo @@ -7344,7 +6100,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=3.0517578e-005; }; - class Item176 + class Item68 { dataType="Object"; class PositionInfo @@ -7361,7 +6117,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=-1.5258789e-005; }; - class Item177 + class Item69 { dataType="Object"; class PositionInfo @@ -7377,7 +6133,7 @@ class Mission id=873; type="Land_ConcreteTreePlanter_02_F"; }; - class Item178 + class Item70 { dataType="Object"; class PositionInfo @@ -7394,7 +6150,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.033691406; }; - class Item179 + class Item71 { dataType="Object"; class PositionInfo @@ -7410,7 +6166,7 @@ class Mission id=877; type="Land_CamoConcreteWall_01_l_4m_v2_F"; }; - class Item180 + class Item72 { dataType="Object"; class PositionInfo @@ -7426,7 +6182,7 @@ class Mission id=878; type="Land_CamoConcreteWall_01_l_4m_v2_F"; }; - class Item181 + class Item73 { dataType="Logic"; class PositionInfo @@ -7481,7 +6237,7 @@ class Mission nAttributes=2; }; }; - class Item182 + class Item74 { dataType="Object"; class PositionInfo @@ -7497,7 +6253,7 @@ class Mission id=881; type="Land_ConcreteTreePlanter_02_F"; }; - class Item183 + class Item75 { dataType="Object"; class PositionInfo @@ -7514,7 +6270,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.00021362305; }; - class Item184 + class Item76 { dataType="Object"; class PositionInfo @@ -7530,7 +6286,7 @@ class Mission id=883; type="Land_ConcreteTreePlanter_02_F"; }; - class Item185 + class Item77 { dataType="Object"; class PositionInfo @@ -7547,7 +6303,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.031066895; }; - class Item186 + class Item78 { dataType="Logic"; class PositionInfo @@ -7603,7 +6359,7 @@ class Mission nAttributes=2; }; }; - class Item187 + class Item79 { dataType="Object"; class PositionInfo @@ -7619,7 +6375,7 @@ class Mission id=886; type="Land_CamoConcreteWall_01_l_4m_v2_F"; }; - class Item188 + class Item80 { dataType="Object"; class PositionInfo @@ -7635,7 +6391,7 @@ class Mission id=887; type="Land_CamoConcreteWall_01_l_4m_v2_F"; }; - class Item189 + class Item81 { dataType="Logic"; class PositionInfo @@ -7691,7 +6447,7 @@ class Mission nAttributes=2; }; }; - class Item190 + class Item82 { dataType="Object"; class PositionInfo @@ -7708,7 +6464,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.00012207031; }; - class Item191 + class Item83 { dataType="Object"; class PositionInfo @@ -7725,7 +6481,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=1.5258789e-005; }; - class Item192 + class Item84 { dataType="Object"; class PositionInfo @@ -7741,7 +6497,7 @@ class Mission id=891; type="Land_CamoConcreteWall_01_l_4m_v2_F"; }; - class Item193 + class Item85 { dataType="Logic"; class PositionInfo @@ -7797,7 +6553,7 @@ class Mission nAttributes=2; }; }; - class Item194 + class Item86 { dataType="Logic"; class PositionInfo @@ -7854,7 +6610,7 @@ class Mission nAttributes=2; }; }; - class Item195 + class Item87 { dataType="Logic"; class PositionInfo @@ -7911,7 +6667,7 @@ class Mission nAttributes=2; }; }; - class Item196 + class Item88 { dataType="Logic"; class PositionInfo @@ -7968,7 +6724,7 @@ class Mission nAttributes=2; }; }; - class Item197 + class Item89 { dataType="Object"; class PositionInfo @@ -7980,12 +6736,11 @@ class Mission flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]]; " \n "}"; }; id=896; type="Land_HelipadSquare_F"; }; - class Item198 + class Item90 { dataType="Object"; class PositionInfo @@ -8001,7 +6756,7 @@ class Mission id=897; type="Land_HBarrier_5_F"; }; - class Item199 + class Item91 { dataType="Object"; class PositionInfo @@ -8017,7 +6772,7 @@ class Mission id=898; type="Land_HBarrier_5_F"; }; - class Item200 + class Item92 { dataType="Object"; class PositionInfo @@ -8033,7 +6788,7 @@ class Mission id=899; type="Land_HBarrier_5_F"; }; - class Item201 + class Item93 { dataType="Object"; class PositionInfo @@ -8049,7 +6804,7 @@ class Mission id=900; type="Land_HBarrier_5_F"; }; - class Item202 + class Item94 { dataType="Object"; class PositionInfo @@ -8065,7 +6820,7 @@ class Mission id=901; type="Land_HBarrier_5_F"; }; - class Item203 + class Item95 { dataType="Object"; class PositionInfo @@ -8081,7 +6836,7 @@ class Mission id=902; type="Land_HBarrier_5_F"; }; - class Item204 + class Item96 { dataType="Logic"; class PositionInfo @@ -8138,7 +6893,7 @@ class Mission nAttributes=2; }; }; - class Item205 + class Item97 { dataType="Object"; class PositionInfo @@ -8154,7 +6909,7 @@ class Mission id=904; type="Land_Cargo_Tower_V2_F"; }; - class Item206 + class Item98 { dataType="Object"; class PositionInfo @@ -8170,7 +6925,7 @@ class Mission id=905; type="Land_Cargo_Tower_V2_F"; }; - class Item207 + class Item99 { dataType="Object"; class PositionInfo @@ -8187,7 +6942,7 @@ class Mission type="Land_Cargo_Tower_V2_ruins_F"; atlOffset=-0.14894104; }; - class Item208 + class Item100 { dataType="Object"; class PositionInfo @@ -8203,7 +6958,7 @@ class Mission id=907; type="Land_Cargo_HQ_V2_F"; }; - class Item209 + class Item101 { dataType="Object"; class PositionInfo @@ -8220,7 +6975,7 @@ class Mission type="Land_Cargo_Patrol_V2_F"; atlOffset=0.030258179; }; - class Item210 + class Item102 { dataType="Object"; class PositionInfo @@ -8237,7 +6992,7 @@ class Mission type="Land_Cargo_Patrol_V2_F"; atlOffset=0.030258179; }; - class Item211 + class Item103 { dataType="Object"; class PositionInfo @@ -8254,7 +7009,7 @@ class Mission type="Land_Cargo_Patrol_V2_F"; atlOffset=0.030258179; }; - class Item212 + class Item104 { dataType="Logic"; class PositionInfo @@ -8309,29 +7064,28 @@ class Mission nAttributes=2; }; }; - class Item213 + class Item105 { dataType="Object"; class PositionInfo { - position[]={7852.5,148.05,9622.125}; + position[]={7850.75,148.036,9620.75}; angles[]={0,1.569418,0.0079935296}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]]; " \n "}"; }; id=912; type="Land_HelipadSquare_F"; }; - class Item214 + class Item106 { dataType="Object"; class PositionInfo { - position[]={7855.2065,148.23022,9612.0352}; + position[]={7853.4565,148.13988,9609.5352}; angles[]={6.2288389,3.1411035,6.2687831}; }; side="Empty"; @@ -8341,13 +7095,14 @@ class Mission }; id=915; type="Land_HBarrier_5_F"; + atlOffset=0.02041626; }; - class Item215 + class Item107 { dataType="Object"; class PositionInfo { - position[]={7849.625,148.31288,9612}; + position[]={7847.875,148.22253,9609.5}; angles[]={6.2336264,3.1411035,6.2639866}; }; side="Empty"; @@ -8358,19 +7113,18 @@ class Mission id=916; type="Land_HBarrier_5_F"; }; - class Item216 + class Item108 { dataType="Logic"; class PositionInfo { - position[]={7852.5132,148.09311,9621.0586}; + position[]={7852.25,148.048,9621.375}; }; areaSize[]={7.7509999,0,9.3715}; areaIsRectangle=1; flags=1; id=917; type="ModuleHideTerrainObjects_F"; - atlOffset=0.042999268; class CustomAttributes { class Attribute0 @@ -8414,7 +7168,7 @@ class Mission nAttributes=2; }; }; - class Item217 + class Item109 { dataType="Object"; class PositionInfo @@ -8430,7 +7184,7 @@ class Mission id=918; type="Land_Cargo_Patrol_V2_F"; }; - class Item218 + class Item110 { dataType="Logic"; class PositionInfo @@ -8484,7 +7238,7 @@ class Mission nAttributes=2; }; }; - class Item219 + class Item111 { dataType="Object"; class PositionInfo @@ -8501,7 +7255,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.0048522949; }; - class Item220 + class Item112 { dataType="Object"; class PositionInfo @@ -8518,7 +7272,7 @@ class Mission type="Land_WoodenWindBreak_01_F"; atlOffset=0.00044250488; }; - class Item221 + class Item113 { dataType="Object"; class PositionInfo @@ -8534,7 +7288,7 @@ class Mission id=922; type="Land_Cargo_Patrol_V2_F"; }; - class Item222 + class Item114 { dataType="Object"; class PositionInfo @@ -8550,7 +7304,7 @@ class Mission id=923; type="Land_HBarrier_Big_F"; }; - class Item223 + class Item115 { dataType="Object"; class PositionInfo @@ -8567,7 +7321,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=7.6293945e-006; }; - class Item224 + class Item116 { dataType="Object"; class PositionInfo @@ -8584,7 +7338,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=7.6293945e-006; }; - class Item225 + class Item117 { dataType="Object"; class PositionInfo @@ -8600,7 +7354,7 @@ class Mission id=926; type="Land_HBarrier_Big_F"; }; - class Item226 + class Item118 { dataType="Object"; class PositionInfo @@ -8616,7 +7370,7 @@ class Mission id=927; type="Land_HBarrier_Big_F"; }; - class Item227 + class Item119 { dataType="Object"; class PositionInfo @@ -8633,7 +7387,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=-7.6293945e-006; }; - class Item228 + class Item120 { dataType="Object"; class PositionInfo @@ -8649,7 +7403,7 @@ class Mission id=929; type="Land_HBarrier_Big_F"; }; - class Item229 + class Item121 { dataType="Object"; class PositionInfo @@ -8665,7 +7419,7 @@ class Mission id=930; type="Land_HBarrier_Big_F"; }; - class Item230 + class Item122 { dataType="Object"; class PositionInfo @@ -8681,7 +7435,7 @@ class Mission id=931; type="Land_HBarrier_Big_F"; }; - class Item231 + class Item123 { dataType="Object"; class PositionInfo @@ -8696,7 +7450,7 @@ class Mission id=932; type="Land_HBarrier_Big_F"; }; - class Item232 + class Item124 { dataType="Object"; class PositionInfo @@ -8711,7 +7465,7 @@ class Mission id=933; type="Land_HBarrier_Big_F"; }; - class Item233 + class Item125 { dataType="Object"; class PositionInfo @@ -8727,7 +7481,7 @@ class Mission id=934; type="Land_HBarrier_Big_F"; }; - class Item234 + class Item126 { dataType="Object"; class PositionInfo @@ -8744,7 +7498,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=7.6293945e-006; }; - class Item235 + class Item127 { dataType="Object"; class PositionInfo @@ -8760,7 +7514,7 @@ class Mission id=936; type="Land_HBarrier_Big_F"; }; - class Item236 + class Item128 { dataType="Object"; class PositionInfo @@ -8777,7 +7531,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=7.6293945e-006; }; - class Item237 + class Item129 { dataType="Object"; class PositionInfo @@ -8793,7 +7547,7 @@ class Mission id=938; type="Land_HBarrier_Big_F"; }; - class Item238 + class Item130 { dataType="Object"; class PositionInfo @@ -8809,7 +7563,7 @@ class Mission id=939; type="Land_HBarrier_Big_F"; }; - class Item239 + class Item131 { dataType="Object"; class PositionInfo @@ -8825,7 +7579,7 @@ class Mission id=940; type="Land_HBarrier_Big_F"; }; - class Item240 + class Item132 { dataType="Object"; class PositionInfo @@ -8841,7 +7595,7 @@ class Mission id=941; type="Land_HBarrier_Big_F"; }; - class Item241 + class Item133 { dataType="Object"; class PositionInfo @@ -8857,7 +7611,7 @@ class Mission id=942; type="Land_HBarrier_Big_F"; }; - class Item242 + class Item134 { dataType="Object"; class PositionInfo @@ -8873,7 +7627,7 @@ class Mission id=943; type="Land_HBarrier_Big_F"; }; - class Item243 + class Item135 { dataType="Object"; class PositionInfo @@ -8889,7 +7643,7 @@ class Mission id=944; type="Land_HBarrier_Big_F"; }; - class Item244 + class Item136 { dataType="Object"; class PositionInfo @@ -8905,7 +7659,7 @@ class Mission id=945; type="Land_HBarrier_Big_F"; }; - class Item245 + class Item137 { dataType="Object"; class PositionInfo @@ -8921,7 +7675,7 @@ class Mission id=946; type="Land_HBarrier_Big_F"; }; - class Item246 + class Item138 { dataType="Object"; class PositionInfo @@ -8938,7 +7692,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=7.6293945e-006; }; - class Item247 + class Item139 { dataType="Object"; class PositionInfo @@ -8954,7 +7708,7 @@ class Mission id=948; type="Land_HBarrier_Big_F"; }; - class Item248 + class Item140 { dataType="Object"; class PositionInfo @@ -8971,7 +7725,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=7.6293945e-006; }; - class Item249 + class Item141 { dataType="Object"; class PositionInfo @@ -8987,7 +7741,7 @@ class Mission type="Land_BarGate_F"; atlOffset=0.25; }; - class Item250 + class Item142 { dataType="Object"; class PositionInfo @@ -9003,7 +7757,7 @@ class Mission id=951; type="Land_HBarrier_Big_F"; }; - class Item251 + class Item143 { dataType="Object"; class PositionInfo @@ -9019,7 +7773,7 @@ class Mission id=952; type="Land_HBarrier_Big_F"; }; - class Item252 + class Item144 { dataType="Object"; class PositionInfo @@ -9035,7 +7789,7 @@ class Mission id=953; type="Land_HBarrier_Big_F"; }; - class Item253 + class Item145 { dataType="Object"; class PositionInfo @@ -9052,7 +7806,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=7.6293945e-006; }; - class Item254 + class Item146 { dataType="Object"; class PositionInfo @@ -9068,7 +7822,7 @@ class Mission id=955; type="Land_HBarrier_Big_F"; }; - class Item255 + class Item147 { dataType="Object"; class PositionInfo @@ -9084,7 +7838,7 @@ class Mission id=956; type="Land_HBarrier_Big_F"; }; - class Item256 + class Item148 { dataType="Object"; class PositionInfo @@ -9100,7 +7854,7 @@ class Mission id=957; type="Land_HBarrier_Big_F"; }; - class Item257 + class Item149 { dataType="Object"; class PositionInfo @@ -9116,7 +7870,7 @@ class Mission type="Land_BarGate_F"; atlOffset=0.25; }; - class Item258 + class Item150 { dataType="Object"; class PositionInfo @@ -9133,7 +7887,7 @@ class Mission type="Land_TTowerSmall_1_F"; atlOffset=0.11544037; }; - class Item259 + class Item151 { dataType="Object"; class PositionInfo @@ -9149,7 +7903,7 @@ class Mission id=960; type="Land_TTowerSmall_2_F"; }; - class Item260 + class Item152 { dataType="Object"; class PositionInfo @@ -9166,7 +7920,7 @@ class Mission type="Land_Medevac_house_V1_F"; atlOffset=7.6293945e-006; }; - class Item261 + class Item153 { dataType="Object"; class PositionInfo @@ -9182,7 +7936,7 @@ class Mission id=962; type="Land_Cargo_Patrol_V2_F"; }; - class Item262 + class Item154 { dataType="Object"; class PositionInfo @@ -9198,7 +7952,7 @@ class Mission id=963; type="Land_Cargo_Patrol_V2_F"; }; - class Item263 + class Item155 { dataType="Object"; class PositionInfo @@ -9215,7 +7969,7 @@ class Mission type="Land_Cargo_House_V2_F"; atlOffset=7.6293945e-006; }; - class Item264 + class Item156 { dataType="Object"; class PositionInfo @@ -9230,7 +7984,7 @@ class Mission id=965; type="Land_Cargo_Patrol_V2_F"; }; - class Item265 + class Item157 { dataType="Object"; class PositionInfo @@ -9246,7 +8000,7 @@ class Mission id=966; type="Land_Cargo_Patrol_V2_F"; }; - class Item266 + class Item158 { dataType="Object"; class PositionInfo @@ -9261,7 +8015,7 @@ class Mission id=967; type="Land_Cargo_House_V2_F"; }; - class Item267 + class Item159 { dataType="Object"; class PositionInfo @@ -9277,7 +8031,7 @@ class Mission type="Land_Cargo40_orange_F"; atlOffset=0.15374756; }; - class Item268 + class Item160 { dataType="Logic"; class PositionInfo @@ -9333,7 +8087,7 @@ class Mission nAttributes=2; }; }; - class Item269 + class Item161 { dataType="Object"; class PositionInfo @@ -9348,7 +8102,7 @@ class Mission type="Land_Cargo20_grey_F"; atlOffset=2.489975; }; - class Item270 + class Item162 { dataType="Object"; class PositionInfo @@ -9364,7 +8118,7 @@ class Mission type="Land_Cargo40_light_green_F"; atlOffset=0.1780014; }; - class Item271 + class Item163 { dataType="Logic"; class PositionInfo @@ -9419,7 +8173,7 @@ class Mission nAttributes=2; }; }; - class Item272 + class Item164 { dataType="Logic"; class PositionInfo @@ -9473,7 +8227,7 @@ class Mission nAttributes=2; }; }; - class Item273 + class Item165 { dataType="Logic"; class PositionInfo @@ -9528,7 +8282,7 @@ class Mission nAttributes=2; }; }; - class Item274 + class Item166 { dataType="Object"; class PositionInfo @@ -9544,7 +8298,7 @@ class Mission id=981; type="Land_Cargo_Patrol_V2_F"; }; - class Item275 + class Item167 { dataType="Logic"; class PositionInfo @@ -9599,7 +8353,7 @@ class Mission nAttributes=2; }; }; - class Item276 + class Item168 { dataType="Object"; class PositionInfo @@ -9615,7 +8369,7 @@ class Mission id=983; type="Land_Cargo_Patrol_V2_F"; }; - class Item277 + class Item169 { dataType="Object"; class PositionInfo @@ -9632,7 +8386,7 @@ class Mission type="Land_Cargo_Patrol_V2_F"; atlOffset=0.095653534; }; - class Item278 + class Item170 { dataType="Object"; class PositionInfo @@ -9649,7 +8403,7 @@ class Mission type="Land_BarGate_01_open_F"; atlOffset=-4.7683716e-007; }; - class Item279 + class Item171 { dataType="Object"; class PositionInfo @@ -9665,7 +8419,7 @@ class Mission id=987; type="Land_BagFence_01_short_green_F"; }; - class Item280 + class Item172 { dataType="Object"; class PositionInfo @@ -9681,31 +8435,7 @@ class Mission id=988; type="Land_BagFence_01_short_green_F"; }; - class Item281 - { - dataType="Marker"; - position[]={2230.5,113.0448,10698.5}; - name="control_48"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=989; - }; - class Item282 - { - dataType="Marker"; - position[]={3670.0986,70.181999,10017.701}; - name="detectPlayer_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=238.60878; - b=67.980186; - angle=318.93701; - id=990; - atlOffset=2.1220016; - }; - class Item283 + class Item173 { dataType="Object"; class PositionInfo @@ -9721,7 +8451,7 @@ class Mission id=991; type="Land_Cargo_Tower_V2_F"; }; - class Item284 + class Item174 { dataType="Object"; class PositionInfo @@ -9737,30 +8467,30 @@ class Mission id=992; type="Land_Cargo_Tower_V2_F"; }; - class Item285 + class Item175 { dataType="Object"; class PositionInfo { - position[]={3600.8921,72.369637,9845.6084}; - angles[]={0,5.5479188,0}; + position[]={3729,72.154999,9880.625}; + angles[]={0,6.0160375,0}; }; side="Empty"; - flags=5; + flags=1; class Attributes { }; id=993; type="Land_Cargo_Patrol_V2_F"; - atlOffset=-0.145401; + atlOffset=4.850193; }; - class Item286 + class Item176 { dataType="Object"; class PositionInfo { - position[]={3543.6492,72.967453,9842.8545}; - angles[]={0,0.77547681,0}; + position[]={3597.5,73.351372,10037.875}; + angles[]={0,2.0740635,0}; }; side="Empty"; flags=5; @@ -9769,9 +8499,8 @@ class Mission }; id=994; type="Land_Cargo_Patrol_V2_F"; - atlOffset=-0.145401; }; - class Item287 + class Item177 { dataType="Object"; class PositionInfo @@ -9788,7 +8517,7 @@ class Mission type="Land_Cargo_Patrol_V2_F"; atlOffset=0.017974854; }; - class Item288 + class Item178 { dataType="Object"; class PositionInfo @@ -9805,12 +8534,12 @@ class Mission type="Land_Cargo_Patrol_V2_F"; atlOffset=0.017974854; }; - class Item289 + class Item179 { dataType="Object"; class PositionInfo { - position[]={3926.5537,74.214951,10332.252}; + position[]={3906,74.529999,10353.75}; angles[]={0,2.3516929,0}; }; side="Empty"; @@ -9820,9 +8549,9 @@ class Mission }; id=997; type="Land_Cargo_Patrol_V2_F"; - atlOffset=0.017974854; + atlOffset=-1.8950119; }; - class Item290 + class Item180 { dataType="Object"; class PositionInfo @@ -9838,7 +8567,7 @@ class Mission id=998; type="Land_Cargo_Patrol_V2_F"; }; - class Item291 + class Item181 { dataType="Object"; class PositionInfo @@ -9854,7 +8583,7 @@ class Mission id=999; type="Land_Cargo_Patrol_V2_F"; }; - class Item292 + class Item182 { dataType="Object"; class PositionInfo @@ -9870,7 +8599,7 @@ class Mission id=1020; type="Land_HBarrier_Big_F"; }; - class Item293 + class Item183 { dataType="Object"; class PositionInfo @@ -9886,7 +8615,7 @@ class Mission id=1026; type="Land_HBarrier_Big_F"; }; - class Item294 + class Item184 { dataType="Object"; class PositionInfo @@ -9902,7 +8631,7 @@ class Mission id=1027; type="Land_HBarrier_Big_F"; }; - class Item295 + class Item185 { dataType="Object"; class PositionInfo @@ -9918,7 +8647,7 @@ class Mission id=1028; type="Land_HBarrier_Big_F"; }; - class Item296 + class Item186 { dataType="Object"; class PositionInfo @@ -9935,7 +8664,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=4.7683716e-007; }; - class Item297 + class Item187 { dataType="Object"; class PositionInfo @@ -9951,7 +8680,7 @@ class Mission id=1031; type="Land_HBarrier_Big_F"; }; - class Item298 + class Item188 { dataType="Object"; class PositionInfo @@ -9967,7 +8696,7 @@ class Mission id=1032; type="Land_HBarrier_Big_F"; }; - class Item299 + class Item189 { dataType="Object"; class PositionInfo @@ -9983,7 +8712,7 @@ class Mission id=1033; type="Land_HBarrier_Big_F"; }; - class Item300 + class Item190 { dataType="Object"; class PositionInfo @@ -10000,7 +8729,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=4.7683716e-007; }; - class Item301 + class Item191 { dataType="Object"; class PositionInfo @@ -10016,7 +8745,7 @@ class Mission id=1035; type="Land_HBarrier_Big_F"; }; - class Item302 + class Item192 { dataType="Object"; class PositionInfo @@ -10032,7 +8761,7 @@ class Mission id=1055; type="Land_TTowerSmall_2_F"; }; - class Item303 + class Item193 { dataType="Object"; class PositionInfo @@ -10048,7 +8777,7 @@ class Mission id=1056; type="Land_Medevac_house_V1_F"; }; - class Item304 + class Item194 { dataType="Object"; class PositionInfo @@ -10064,7 +8793,7 @@ class Mission id=1059; type="Land_Cargo_House_V2_F"; }; - class Item305 + class Item195 { dataType="Object"; class PositionInfo @@ -10081,7 +8810,7 @@ class Mission type="Land_Cargo_Patrol_V2_F"; atlOffset=-4.7683716e-007; }; - class Item306 + class Item196 { dataType="Object"; class PositionInfo @@ -10097,7 +8826,7 @@ class Mission id=1061; type="Land_Cargo_Patrol_V2_F"; }; - class Item307 + class Item197 { dataType="Object"; class PositionInfo @@ -10113,7 +8842,7 @@ class Mission id=1066; type="Land_HBarrier_Big_F"; }; - class Item308 + class Item198 { dataType="Object"; class PositionInfo @@ -10129,7 +8858,7 @@ class Mission id=1067; type="Land_HBarrier_Big_F"; }; - class Item309 + class Item199 { dataType="Object"; class PositionInfo @@ -10145,7 +8874,7 @@ class Mission id=1068; type="Land_HBarrier_Big_F"; }; - class Item310 + class Item200 { dataType="Object"; class PositionInfo @@ -10161,7 +8890,7 @@ class Mission id=1069; type="Land_HBarrier_Big_F"; }; - class Item311 + class Item201 { dataType="Object"; class PositionInfo @@ -10177,7 +8906,7 @@ class Mission id=1070; type="Land_HBarrier_Big_F"; }; - class Item312 + class Item202 { dataType="Object"; class PositionInfo @@ -10193,7 +8922,7 @@ class Mission id=1071; type="Land_HBarrier_Big_F"; }; - class Item313 + class Item203 { dataType="Object"; class PositionInfo @@ -10209,7 +8938,7 @@ class Mission id=1072; type="Land_HBarrier_Big_F"; }; - class Item314 + class Item204 { dataType="Object"; class PositionInfo @@ -10225,7 +8954,7 @@ class Mission id=1073; type="Land_HBarrier_Big_F"; }; - class Item315 + class Item205 { dataType="Object"; class PositionInfo @@ -10241,7 +8970,7 @@ class Mission id=1074; type="Land_HBarrier_Big_F"; }; - class Item316 + class Item206 { dataType="Object"; class PositionInfo @@ -10257,7 +8986,7 @@ class Mission id=1075; type="Land_HBarrier_Big_F"; }; - class Item317 + class Item207 { dataType="Object"; class PositionInfo @@ -10274,7 +9003,7 @@ class Mission type="Land_HBarrier_Big_F"; atlOffset=9.5367432e-007; }; - class Item318 + class Item208 { dataType="Object"; class PositionInfo @@ -10290,7 +9019,7 @@ class Mission id=1077; type="Land_HBarrier_Big_F"; }; - class Item319 + class Item209 { dataType="Object"; class PositionInfo @@ -10306,7 +9035,7 @@ class Mission type="Land_BarGate_F"; atlOffset=0.31480598; }; - class Item320 + class Item210 { dataType="Object"; class PositionInfo @@ -10322,7 +9051,7 @@ class Mission id=1079; type="Land_Cargo_Patrol_V2_F"; }; - class Item321 + class Item211 { dataType="Object"; class PositionInfo @@ -10338,7 +9067,7 @@ class Mission id=1080; type="Land_Cargo_Patrol_V2_F"; }; - class Item322 + class Item212 { dataType="Object"; class PositionInfo @@ -10354,7 +9083,7 @@ class Mission id=1081; type="Land_Cargo_House_V2_F"; }; - class Item323 + class Item213 { dataType="Object"; class PositionInfo @@ -10371,7 +9100,7 @@ class Mission type="Land_Cargo40_orange_F"; atlOffset=-6.1988831e-006; }; - class Item324 + class Item214 { dataType="Object"; class PositionInfo @@ -10388,7 +9117,7 @@ class Mission type="Land_Cargo40_red_F"; atlOffset=0.017612457; }; - class Item325 + class Item215 { dataType="Object"; class PositionInfo @@ -10405,28 +9134,28 @@ class Mission type="Land_Cargo_Patrol_V2_F"; atlOffset=0.0079727173; }; - class Item326 + class Item216 { dataType="Object"; class PositionInfo { - position[]={8155.8135,35.953526,10899.142}; - angles[]={0,4.5625453,0}; + position[]={8161.5,35.843002,10900}; + angles[]={0,1.3943994,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1085; - type="PortableHelipadLight_01_green_F"; - atlOffset=0.052845001; + id=1093; + type="Land_HelipadSquare_F"; + atlOffset=0.053001404; class CustomAttributes { class Attribute0 { - property="allowDamage"; - expression="_this allowdamage _value;"; + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; class Value { class data @@ -10438,508 +9167,240 @@ class Mission "BOOL" }; }; - value=0; + value=1; }; }; }; nAttributes=1; }; }; - class Item327 + class Item217 { dataType="Object"; class PositionInfo { - position[]={8162.3574,35.95385,10894.314}; - angles[]={0,2.9917493,0}; + position[]={8184.5,59.902245,10604.5}; + angles[]={0,6.14433,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1086; - type="PortableHelipadLight_01_green_F"; - atlOffset=0.00062942505; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=1094; + type="Land_Cargo_Patrol_V2_F"; }; - class Item328 + class Item218 { dataType="Object"; class PositionInfo { - position[]={8167.1846,35.986568,10900.858}; - angles[]={0,1.4209528,0}; + position[]={9456.5,76.945,10366}; + angles[]={0,4.0874434,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1087; - type="PortableHelipadLight_01_green_F"; - atlOffset=0.0004234314; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=1095; + type="Land_Cargo_Patrol_V2_F"; }; - class Item329 + class Item219 { dataType="Object"; class PositionInfo { - position[]={8160.6406,35.95266,10905.686}; - angles[]={0,6.1333418,0}; + position[]={9399.1436,76.945,10383.945}; + angles[]={0,2.5945249,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1088; - type="PortableHelipadLight_01_green_F"; - atlOffset=0.051979065; - class CustomAttributes + id=1097; + type="Land_Cargo_Patrol_V2_F"; + }; + class Item220 + { + dataType="Object"; + class PositionInfo + { + position[]={9448,77.098991,10314.5}; + angles[]={0,0.61845917,0}; + }; + side="Empty"; + flags=5; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=1098; + type="Land_Cargo_Patrol_V2_F"; }; - class Item330 + class Item221 { dataType="Object"; class PositionInfo { - position[]={8156.6719,35.953609,10893.456}; - angles[]={0,3.7771475,0}; + position[]={9446,74.178902,10308}; + angles[]={0.18505792,0.66274226,0.038381387}; }; side="Empty"; flags=4; class Attributes { }; - id=1089; - type="PortableHelipadLight_01_green_F"; - atlOffset=0.01234436; - class CustomAttributes + id=1100; + type="Land_HBarrier_Big_F"; + }; + class Item222 + { + dataType="Object"; + class PositionInfo + { + position[]={9452.5,76.115471,10377}; + angles[]={0,0.90796453,0}; + }; + side="Empty"; + flags=5; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=1101; + type="Land_BarGate_01_open_F"; }; - class Item331 + class Item223 { dataType="Object"; class PositionInfo { - position[]={8168.043,35.953354,10895.173}; - angles[]={0,2.2063513,0}; + position[]={9456.375,72.449715,10373.5}; + angles[]={0.001544081,0.85437727,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1090; - type="PortableHelipadLight_01_green_F"; - atlOffset=0.00017547607; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=1102; + type="Land_BagFence_01_long_green_F"; }; - class Item332 + class Item224 { dataType="Object"; class PositionInfo { - position[]={8166.3262,35.953476,10906.544}; - angles[]={0,0.63555473,0}; + position[]={9449.5,72.556908,10381.5}; + angles[]={6.2816033,4.0105963,0.0015822123}; }; side="Empty"; flags=4; class Attributes { }; - id=1091; - type="PortableHelipadLight_01_green_F"; - atlOffset=0.00011062622; - class CustomAttributes + id=1103; + type="Land_BagFence_01_long_green_F"; + }; + class Item225 + { + dataType="Object"; + class PositionInfo { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item333 - { - dataType="Object"; - class PositionInfo - { - position[]={8154.9551,35.95359,10904.827}; - angles[]={0,5.3479438,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1092; - type="PortableHelipadLight_01_green_F"; - atlOffset=0.00017547607; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item334 - { - dataType="Object"; - class PositionInfo - { - position[]={8161.5,35.843002,10900}; - angles[]={0,1.4209598,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol""]];}"; - }; - id=1093; - type="Land_HelipadSquare_F"; - atlOffset=0.00021743774; - class CustomAttributes - { - class Attribute0 - { - property="hideObject"; - expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item335 - { - dataType="Object"; - class PositionInfo - { - position[]={8184.5,59.902245,10604.5}; - angles[]={0,6.14433,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1094; - type="Land_Cargo_Patrol_V2_F"; - }; - class Item336 - { - dataType="Object"; - class PositionInfo - { - position[]={9456.5,76.945,10366}; - angles[]={0,4.0874434,0}; + position[]={9747.375,43.695,8516.625}; + angles[]={0,4.2615461,0}; }; side="Empty"; flags=5; class Attributes { }; - id=1095; + id=1104; type="Land_Cargo_Patrol_V2_F"; }; - class Item337 + class Item226 { dataType="Object"; class PositionInfo { - position[]={9399.1436,76.945,10383.945}; - angles[]={0,2.5945249,0}; + position[]={9666.125,48.555,8492.75}; + angles[]={0,0.57314408,0}; }; side="Empty"; flags=5; class Attributes { }; - id=1097; + id=1105; type="Land_Cargo_Patrol_V2_F"; }; - class Item338 + class Item227 { - dataType="Object"; - class PositionInfo - { - position[]={9448,77.098991,10314.5}; - angles[]={0,0.61845917,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1098; - type="Land_Cargo_Patrol_V2_F"; + dataType="Layer"; + name="Open Ammo Dump_1"; + id=1106; + atlOffset=-252.33; }; - class Item339 + class Item228 { - dataType="Object"; - class PositionInfo - { - position[]={9446,74.178902,10308}; - angles[]={0.18505792,0.66274226,0.038381387}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1100; - type="Land_HBarrier_Big_F"; + dataType="Layer"; + name="Vehicle Repair_1"; + id=1131; + atlOffset=-252.33; }; - class Item340 + class Item229 { dataType="Object"; class PositionInfo { - position[]={9452.5,76.115471,10377}; - angles[]={0,0.90796453,0}; + position[]={10672.875,67.264999,7008.25}; + angles[]={0,3.7231495,0}; }; side="Empty"; flags=5; class Attributes { }; - id=1101; - type="Land_BarGate_01_open_F"; - }; - class Item341 - { - dataType="Object"; - class PositionInfo - { - position[]={9456.375,72.449715,10373.5}; - angles[]={0.001544081,0.85437727,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1102; - type="Land_BagFence_01_long_green_F"; - }; - class Item342 - { - dataType="Object"; - class PositionInfo - { - position[]={9449.5,72.556908,10381.5}; - angles[]={6.2816033,4.0105963,0.0015822123}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1103; - type="Land_BagFence_01_long_green_F"; + id=1524; + type="Land_Cargo_Patrol_V2_F"; }; - class Item343 + class Item230 { dataType="Object"; class PositionInfo { - position[]={9747.375,43.695,8516.625}; - angles[]={0,4.2615461,0}; + position[]={10632.52,72.353394,6905.0747}; + angles[]={0,1.214445,0}; }; side="Empty"; flags=5; class Attributes { }; - id=1104; + id=1525; type="Land_Cargo_Patrol_V2_F"; }; - class Item344 + class Item231 { - dataType="Object"; - class PositionInfo - { - position[]={9666.125,48.555,8492.75}; - angles[]={0,0.57314408,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1105; - type="Land_Cargo_Patrol_V2_F"; + dataType="Layer"; + name="Open Ammo Dump_2"; + id=1574; + atlOffset=-252.33; }; - class Item345 + class Item232 { dataType="Layer"; - name="Open Ammo Dump_1"; + name="Vehicle Repair_2"; class Entities { - items=24; + items=16; class Item0 { dataType="Object"; class PositionInfo { - position[]={11778.494,51.522102,7779.3071}; - angles[]={0.016002094,4.862287,6.2336254}; + position[]={9947.625,180.92999,3914.8745}; + angles[]={0,1.5707964,0}; }; side="Empty"; flags=4; @@ -10947,17 +9408,16 @@ class Mission { skill=0.2; }; - id=1107; - type="Land_BagFence_Short_F"; - atlOffset=3.8146973e-006; + id=2115; + type="Land_ClutterCutter_large_F"; }; class Item1 { dataType="Object"; class PositionInfo { - position[]={11778.855,51.450565,7782.2549}; - angles[]={0.022394964,4.862287,6.2336264}; + position[]={9944.6572,182.15439,3915.1099}; + angles[]={0,1.4718361,0}; }; side="Empty"; flags=4; @@ -10965,17 +9425,16 @@ class Mission { skill=0.2; }; - id=1108; - type="Land_BagFence_Short_F"; - atlOffset=3.8146973e-006; + id=2116; + type="Land_Scrap_MRAP_01_F"; }; class Item2 { dataType="Object"; class PositionInfo { - position[]={11777.094,51.628742,7779.2207}; - angles[]={0.016002094,0.12277725,6.2336254}; + position[]={9949.8086,181.62552,3913.0952}; + angles[]={0,3.1729841,0}; }; side="Empty"; flags=4; @@ -10983,17 +9442,17 @@ class Mission { skill=0.2; }; - id=1109; - type="Land_Pallet_MilBoxes_F"; - atlOffset=3.8146973e-006; + id=2117; + type="Land_WeldingTrolley_01_F"; + atlOffset=-4.5776367e-005; }; class Item3 { dataType="Object"; class PositionInfo { - position[]={11777.148,51.539528,7782.4639}; - angles[]={0.022394964,4.8556199,6.2336264}; + position[]={9949.9912,181.42671,3915.9058}; + angles[]={0,1.5916976,0}; }; side="Empty"; flags=4; @@ -11001,35 +9460,35 @@ class Mission { skill=0.2; }; - id=1110; - type="Land_MetalBarrel_F"; - atlOffset=3.8146973e-006; + id=2118; + type="Land_Workbench_01_F"; + atlOffset=-3.0517578e-005; }; class Item4 { dataType="Object"; class PositionInfo { - position[]={11776.112,51.935772,7781.2231}; - angles[]={0.016002094,3.2802856,6.2336254}; + position[]={9949.5195,182.01183,3911.2651}; + angles[]={0,2.1507204,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { skill=0.2; }; - id=1111; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2119; + type="Land_PortableLight_double_F"; + atlOffset=-1.5258789e-005; }; class Item5 { dataType="Object"; class PositionInfo { - position[]={11776.24,51.58149,7782.603}; - angles[]={0.022394964,4.8728299,6.2336264}; + position[]={9947.7939,181.66534,3909.2891}; + angles[]={6.2816415,3.1587634,0}; }; side="Empty"; flags=4; @@ -11037,35 +9496,34 @@ class Mission { skill=0.2; }; - id=1112; - type="Land_MetalBarrel_F"; - atlOffset=3.8146973e-006; + id=2120; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; class Item6 { dataType="Object"; class PositionInfo { - position[]={11775.771,51.587246,7783.3848}; - angles[]={0.022394964,4.8242908,6.2336264}; + position[]={9949.332,182.01381,3917.9673}; + angles[]={0,1.2154121,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { skill=0.2; }; - id=1113; - type="Land_MetalBarrel_F"; - atlOffset=4.196167e-005; + id=2121; + type="Land_PortableLight_double_F"; }; class Item7 { dataType="Object"; class PositionInfo { - position[]={11775.275,51.62545,7782.7705}; - angles[]={0.022394964,4.8621821,6.2336264}; + position[]={9944.3955,181.63106,3909.3789}; + angles[]={0,3.1562533,6.2816415}; }; side="Empty"; flags=4; @@ -11073,17 +9531,16 @@ class Mission { skill=0.2; }; - id=1114; - type="Land_MetalBarrel_F"; - atlOffset=-0.00010681152; + id=2122; + type="Land_HBarrier_1_F"; }; class Item8 { dataType="Object"; class PositionInfo { - position[]={11774.145,51.760067,7779.5557}; - angles[]={0.017598685,4.862287,6.2479987}; + position[]={9951.3633,181.802,3911.8818}; + angles[]={6.2735858,4.7285681,0.10046153}; }; side="Empty"; flags=4; @@ -11091,17 +9548,16 @@ class Mission { skill=0.2; }; - id=1115; - type="Land_Pallet_MilBoxes_F"; - atlOffset=3.8146973e-006; + id=2123; + type="Land_HBarrier_5_F"; }; class Item9 { dataType="Object"; class PositionInfo { - position[]={11777.79,51.634899,7774.8032}; - angles[]={0.017598685,4.862287,6.2320304}; + position[]={9942.9893,181.6321,3909.3711}; + angles[]={0,3.1562533,0}; }; side="Empty"; flags=4; @@ -11109,17 +9565,16 @@ class Mission { skill=0.2; }; - id=1116; - type="Land_BagFence_Short_F"; - atlOffset=3.8146973e-006; + id=2124; + type="Land_HBarrier_1_F"; }; class Item10 { dataType="Object"; class PositionInfo { - position[]={11776.707,51.878193,7775.083}; - angles[]={0.017598685,4.862287,6.2320304}; + position[]={9947.8584,181.6705,3919.7119}; + angles[]={0,3.1587634,0}; }; side="Empty"; flags=4; @@ -11127,17 +9582,16 @@ class Mission { skill=0.2; }; - id=1117; - type="Land_PaperBox_open_empty_F"; - atlOffset=3.8146973e-006; + id=2125; + type="Land_HBarrier_5_F"; }; class Item11 { dataType="Object"; class PositionInfo { - position[]={11774.765,51.62941,7783.4624}; - angles[]={0.022394964,4.8487077,6.2575932}; + position[]={9951.3779,181.81126,3917.5386}; + angles[]={6.2719817,4.7285681,0.11153681}; }; side="Empty"; flags=4; @@ -11145,17 +9599,16 @@ class Mission { skill=0.2; }; - id=1118; - type="Land_MetalBarrel_F"; - atlOffset=7.6293945e-006; + id=2126; + type="Land_HBarrier_5_F"; }; class Item12 { dataType="Object"; class PositionInfo { - position[]={11774.136,51.657673,7782.9189}; - angles[]={0.022394964,4.8535781,6.2575932}; + position[]={9944.3818,181.6321,3919.8506}; + angles[]={0,3.1562533,0}; }; side="Empty"; flags=4; @@ -11163,17 +9616,16 @@ class Mission { skill=0.2; }; - id=1119; - type="Land_MetalBarrel_F"; - atlOffset=7.6293945e-006; + id=2127; + type="Land_HBarrier_1_F"; }; class Item13 { dataType="Object"; class PositionInfo { - position[]={11779.544,51.31361,7786.5859}; - angles[]={0.02399601,4.862287,6.2320304}; + position[]={9939.8916,180.92999,3914.9814}; + angles[]={0,1.5707964,0}; }; side="Empty"; flags=4; @@ -11181,17 +9633,16 @@ class Mission { skill=0.2; }; - id=1120; - type="Land_BagFence_Short_F"; - atlOffset=7.6293945e-006; + id=2128; + type="Land_ClutterCutter_large_F"; }; class Item14 { dataType="Object"; class PositionInfo { - position[]={11775.159,51.990295,7775.272}; - angles[]={0.017598685,4.862287,6.2320304}; + position[]={9943.1846,181.6321,3919.8828}; + angles[]={0,3.1562533,0}; }; side="Empty"; flags=4; @@ -11199,143 +9650,16 @@ class Mission { skill=0.2; }; - id=1121; - type="Land_PaperBox_closed_F"; - atlOffset=3.8146973e-006; + id=2129; + type="Land_HBarrier_1_F"; }; class Item15 { dataType="Object"; class PositionInfo { - position[]={11778.58,51.506878,7786.9756}; - angles[]={0.02399601,4.9232364,6.2320304}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1122; - type="Land_WaterBarrel_F"; - atlOffset=-9.9182129e-005; - }; - class Item16 - { - dataType="Object"; - class PositionInfo - { - position[]={11772.545,52.067245,7781.5532}; - angles[]={0.031988446,4.862287,6.2480001}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1123; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item17 - { - dataType="Object"; - class PositionInfo - { - position[]={11776.046,51.758793,7786.8218}; - angles[]={0.02399601,3.2572296,6.2320304}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1124; - type="Land_WaterTank_F"; - atlOffset=7.6293945e-006; - }; - class Item18 - { - dataType="Object"; - class PositionInfo - { - position[]={11773.56,52.144188,7775.5005}; - angles[]={0.027193764,4.8496156,6.2384152}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1125; - type="Land_CargoBox_V1_F"; - atlOffset=-8.7738037e-005; - }; - class Item19 - { - dataType="Object"; - class PositionInfo - { - position[]={11774.977,52.126472,7773.5859}; - angles[]={0.017598685,3.2802856,6.2384152}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1126; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item20 - { - dataType="Object"; - class PositionInfo - { - position[]={11777.15,51.69664,7788.5527}; - angles[]={0.041577213,3.2802856,6.2320304}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1127; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item21 - { - dataType="Object"; - class PositionInfo - { - position[]={11771.759,52.216217,7776.0859}; - angles[]={0.027193764,4.862287,6.2384152}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1128; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item22 - { - dataType="Object"; - class PositionInfo - { - position[]={11773.358,51.905025,7786.9434}; - angles[]={0.022394964,4.862287,6.2575932}; + position[]={9947.625,182.99992,3914.875}; + angles[]={0,1.7472317,0}; }; side="Empty"; flags=4; @@ -11343,5656 +9667,6138 @@ class Mission { skill=0.2; }; - id=1129; - type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; - }; - class Item23 - { - dataType="Object"; - class PositionInfo - { - position[]={11775.723,55.033546,7781.4111}; - angles[]={0,4.862287,0}; - }; - side="Empty"; - class Attributes - { - skill=0.2; - }; - id=1130; - type="CamoNet_wdl_open_F"; - atlOffset=1.264389; + id=2130; + type="CamoNet_wdl_big_F"; }; }; - id=1106; - atlOffset=1.3159904; + id=1599; + atlOffset=0.0049133301; }; - class Item346 + class Item233 { - dataType="Layer"; - name="Vehicle Repair_1"; - class Entities + dataType="Object"; + class PositionInfo { - items=16; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={11801.907,49.341625,7810.0903}; - angles[]={0.022394964,1.7206945,6.2400126}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1132; - type="Land_ClutterCutter_large_F"; - atlOffset=3.8146973e-006; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={11799.008,50.650719,7810.7661}; - angles[]={0.022397626,1.6217346,6.2655869}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1133; - type="Land_Scrap_MRAP_01_F"; - atlOffset=3.8146973e-006; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={11803.797,50.002785,7808.0073}; - angles[]={0.022394964,3.3228824,6.2400126}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1134; - type="Land_WeldingTrolley_01_F"; - atlOffset=-0.00022506714; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={11804.398,49.728806,7810.7578}; - angles[]={0.017598685,1.7415957,6.2448039}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1135; - type="Land_Workbench_01_F"; - atlOffset=-0.00017929077; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={11803.24,50.454044,7806.2388}; - angles[]={0,2.3006186,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=1136; - type="Land_PortableLight_double_F"; - atlOffset=7.6293945e-006; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={11801.239,50.230789,7804.5425}; - angles[]={0.025594741,3.3086617,6.2320304}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1137; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={11804.057,50.288597,7812.8936}; - angles[]={0,1.3653107,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=1138; - type="Land_PortableLight_double_F"; - atlOffset=3.8146973e-006; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={11797.893,50.304646,7805.1387}; - angles[]={0.025594741,3.3061516,6.2527928}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1139; - type="Land_HBarrier_1_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={11805.155,50.020584,7806.5732}; - angles[]={0.022394964,4.8784661,6.2400126}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1140; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={11796.502,50.341728,7805.3408}; - angles[]={0.025594741,3.3061516,6.2527928}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1141; - type="Land_HBarrier_1_F"; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={11802.86,49.944561,7814.8389}; - angles[]={0.02399601,3.3086617,6.2448039}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1142; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item11 - { - dataType="Object"; - class PositionInfo - { - position[]={11806.014,49.885509,7812.1646}; - angles[]={0.017598685,4.8784661,6.2448039}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1143; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item12 - { - dataType="Object"; - class PositionInfo - { - position[]={11799.441,50.007378,7815.4951}; - angles[]={0.023993526,3.3061516,6.2703872}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1144; - type="Land_HBarrier_1_F"; - atlOffset=3.8146973e-006; - }; - class Item13 - { - dataType="Object"; - class PositionInfo - { - position[]={11794.276,49.504471,7811.3506}; - angles[]={0.035186876,1.7206945,6.2527928}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1145; - type="Land_ClutterCutter_large_F"; - atlOffset=3.8146973e-006; - }; - class Item14 - { - dataType="Object"; - class PositionInfo - { - position[]={11798.264,50.017414,7815.7056}; - angles[]={0.023993526,3.3061516,6.2703872}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1146; - type="Land_HBarrier_1_F"; - atlOffset=3.8146973e-006; - }; - class Item15 - { - dataType="Object"; - class PositionInfo - { - position[]={11801.907,51.411549,7810.0908}; - angles[]={0.022394964,1.89713,6.2400126}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=1147; - type="CamoNet_wdl_big_F"; - atlOffset=3.8146973e-006; - }; - }; - id=1131; - atlOffset=-0.032398224; - }; - class Item347 - { - dataType="Object"; - class PositionInfo - { - position[]={11694.405,47.432938,7810.5059}; - angles[]={0.10362818,0.14989856,0.098876528}; + position[]={9883.375,181.6705,3925.6057}; + angles[]={0,3.221293,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1148; + id=2003; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item348 + class Item234 { dataType="Object"; class PositionInfo { - position[]={11700.091,48.103157,7809.647}; - angles[]={0.098876528,0.14989856,0.10520995}; + position[]={9877.6426,181.6705,3926.0635}; + angles[]={0,3.221293,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1149; + id=2004; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item349 + class Item235 { dataType="Object"; class PositionInfo { - position[]={11705.776,48.805202,7808.7886}; - angles[]={0.090948075,0.14989856,0.11311506}; + position[]={9886.6611,181.6705,3940.7278}; + angles[]={0,1.6371984,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1150; + id=2005; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item350 + class Item236 { dataType="Object"; class PositionInfo { - position[]={11683.453,48.202438,7796.6162}; - angles[]={0.12415843,4.848989,0.1083728}; + position[]={9886.3975,181.6705,3935.0659}; + angles[]={0,1.6371984,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1151; + id=2006; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item351 + class Item237 { dataType="Object"; class PositionInfo { - position[]={11684.113,47.556736,7802.2456}; - angles[]={0.1146941,4.848989,0.09570726}; + position[]={9886,181.6705,3929.375}; + angles[]={0,1.6371984,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1152; + id=2007; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item352 + class Item238 { dataType="Object"; class PositionInfo { - position[]={11684.908,46.938889,7807.895}; - angles[]={0.10204481,4.848989,0.078239501}; + position[]={9887.0654,181.6705,3946.385}; + angles[]={0,1.6459875,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1153; + id=2008; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item353 + class Item239 { dataType="Object"; class PositionInfo { - position[]={11682.652,48.860394,7791.0015}; - angles[]={0.13517025,4.8577781,0.1178508}; + position[]={9887.4951,181.67053,3952.0259}; + angles[]={0,1.6459875,6.2767911}; }; side="Empty"; flags=4; class Attributes { }; - id=1154; + id=2009; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item354 + class Item240 { dataType="Object"; class PositionInfo { - position[]={11681.827,49.524757,7785.4043}; - angles[]={0.13517068,4.8577781,0.11942901}; + position[]={9884.4199,181.6705,3910.4019}; + angles[]={0,4.7946086,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1155; + id=2010; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item355 + class Item241 { dataType="Object"; class PositionInfo { - position[]={11687.746,45.668041,7826.6816}; - angles[]={0.075058199,1.7232141,0.097291566}; + position[]={9884.9043,181.6705,3915.9807}; + angles[]={0,4.7946086,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1156; + id=2011; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item356 + class Item242 { dataType="Object"; class PositionInfo { - position[]={11686.871,45.976921,7821.1509}; - angles[]={0.068691261,1.7232141,0.09253493}; + position[]={9885.3906,181.6705,3921.6646}; + angles[]={0,4.7946086,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1157; + id=2012; type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; }; - class Item357 + class Item243 { dataType="Object"; class PositionInfo { - position[]={11685.987,46.305126,7815.5151}; - angles[]={0.071875811,1.7232141,0.084597312}; + position[]={9883.8799,181.6705,3904.73}; + angles[]={0,4.7946086,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1158; + id=2013; type="Land_HBarrier_5_F"; }; - class Item358 + class Item244 { dataType="Object"; class PositionInfo { - position[]={11688.683,45.34108,7832.3018}; - angles[]={0.078241028,1.7232141,0.10362703}; + position[]={9883.4102,181.65163,3899.0928}; + angles[]={6.2623916,4.7946086,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1159; + id=2014; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=-1.5258789e-005; }; - class Item359 + class Item245 { dataType="Object"; class PositionInfo { - position[]={11689.546,45.006351,7837.8921}; - angles[]={0.084597312,1.7232141,0.11153521}; + position[]={9871.9111,181.66798,3926.5212}; + angles[]={6.2816033,3.221293,0.0015822123}; }; side="Empty"; flags=4; class Attributes { }; - id=1160; + id=2015; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item360 + class Item246 { dataType="Object"; class PositionInfo { - position[]={11711.462,49.474125,7807.9297}; - angles[]={0.086185835,0.14989856,0.10679241}; + position[]={9866.1797,181.66908,3926.979}; + angles[]={6.2767911,3.221293,0.0015822123}; }; side="Empty"; flags=4; class Attributes { }; - id=1161; + id=2016; type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; + atlOffset=1.5258789e-005; }; - class Item361 + class Item247 { dataType="Object"; class PositionInfo { - position[]={11717.147,50.046227,7807.0708}; - angles[]={0.086186528,0.14989856,0.083008662}; + position[]={9860.4482,181.67267,3927.4368}; + angles[]={6.2767911,3.221293,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=1162; + id=2017; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item362 + class Item248 { dataType="Object"; class PositionInfo { - position[]={11722.833,50.560753,7806.2124}; - angles[]={0.084597312,0.14989856,0.075058997}; + position[]={9859.1748,182.05708,3942.5034}; + angles[]={6.2800021,1.6371984,6.1811419}; }; side="Empty"; flags=4; class Attributes { }; - id=1163; + id=2018; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item363 + class Item249 { dataType="Object"; class PositionInfo { - position[]={11711.231,51.127998,7792.5298}; - angles[]={0.10362703,4.848989,0.078241028}; + position[]={9858.9082,181.82014,3936.8416}; + angles[]={6.2816033,1.6371984,6.2496004}; }; side="Empty"; flags=4; class Attributes { }; - id=1164; + id=2019; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item364 + class Item250 { dataType="Object"; class PositionInfo { - position[]={11711.895,50.564598,7798.1592}; - angles[]={0.1083739,4.848989,0.09253557}; + position[]={9858.5127,181.70262,3931.1504}; + angles[]={6.2767911,1.6371984,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=1165; + id=2020; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item365 + class Item251 { dataType="Object"; class PositionInfo { - position[]={11712.688,50.013016,7803.8086}; - angles[]={0.10995446,4.848989,0.068692133}; + position[]={9859.5771,182.21587,3948.1606}; + angles[]={6.2081265,1.6459875,6.2272429}; }; side="Empty"; flags=4; class Attributes { }; - id=1166; + id=2021; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item366 + class Item252 { dataType="Object"; class PositionInfo { - position[]={11710.433,51.682934,7786.9146}; - angles[]={0.098877132,4.8577781,0.060724311}; + position[]={9860.0088,182.52191,3953.8015}; + angles[]={6.2129011,1.6459875,6.2575908}; }; side="Empty"; flags=4; class Attributes { }; - id=1167; + id=2022; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item367 + class Item253 { dataType="Object"; class PositionInfo { - position[]={11709.607,52.228565,7781.3179}; - angles[]={0.11311506,4.8577781,0.046366453}; + position[]={9857.0801,181.63887,3912.7144}; + angles[]={6.278389,4.7946086,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=1168; + id=2023; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item368 + class Item254 { dataType="Object"; class PositionInfo { - position[]={11715.596,48.650723,7822.6235}; - angles[]={0.083008662,1.7232141,0.084597312}; + position[]={9857.5654,181.66135,3918.293}; + angles[]={6.2816033,4.7946086,6.2767911}; }; side="Empty"; flags=4; class Attributes { }; - id=1169; + id=2024; type="Land_HBarrier_5_F"; }; - class Item369 + class Item255 { dataType="Object"; class PositionInfo { - position[]={11714.722,49.014797,7817.0928}; - angles[]={0.081419133,1.7232141,0.089361183}; + position[]={9858.0518,181.6757,3923.9771}; + angles[]={6.2799835,4.7946086,6.2767911}; }; side="Empty"; flags=4; class Attributes { }; - id=1170; + id=2025; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item370 + class Item256 { dataType="Object"; class PositionInfo { - position[]={11713.838,49.393787,7811.457}; - angles[]={0.079830162,1.7232141,0.089360513}; + position[]={9856.541,181.63084,3907.0425}; + angles[]={6.2816033,4.7946086,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=1171; + id=2026; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item371 + class Item257 { dataType="Object"; class PositionInfo { - position[]={11716.531,48.283443,7828.2441}; - angles[]={0.079829417,1.7232141,0.079829417}; + position[]={9856.0703,181.64009,3901.4053}; + angles[]={6.2799649,4.7946086,6.144875}; }; side="Empty"; flags=4; class Attributes { }; - id=1172; + id=2027; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item372 + class Item258 { dataType="Object"; class PositionInfo { - position[]={11717.396,47.934456,7833.834}; - angles[]={0.068691261,1.7232141,0.079829417}; + position[]={9872.29,182.00946,3924.9861}; + angles[]={0,0.079700232,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1173; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2030; + type="Land_PortableLight_single_F"; + atlOffset=-1.5258789e-005; }; - class Item373 + class Item259 { dataType="Object"; class PositionInfo { - position[]={11728.519,51.032833,7805.354}; - angles[]={0.07824026,0.14989856,0.068691261}; + position[]={9872.5293,182.01381,3927.9766}; + angles[]={0,3.221293,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1174; - type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; + id=2031; + type="Land_PortableLight_single_F"; }; - class Item374 + class Item260 { dataType="Object"; class PositionInfo { - position[]={11734.204,51.387627,7804.4951}; - angles[]={0.062319059,0.14989856,0.043172773}; + position[]={9871.2949,181.67407,3912.5259}; + angles[]={0,0.07969173,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=1175; - type="Land_HBarrier_5_F"; + id=2033; + type="Land_HelipadSquare_F"; + atlOffset=0.75; }; - class Item375 + class Item261 { dataType="Object"; class PositionInfo { - position[]={11739.89,51.556854,7803.6367}; - angles[]={0.062319059,0.14989856,6.271987}; + position[]={9873.5039,180.93719,3940.188}; + angles[]={0,3.2212842,6.2784033}; }; side="Empty"; flags=4; class Attributes { }; - id=1176; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2035; + type="Land_HelipadSquare_F"; + atlOffset=1.5258789e-005; }; - class Item376 + class Item262 { dataType="Object"; class PositionInfo { - position[]={11740.103,52.458626,7788.5176}; - angles[]={0.059130985,4.848989,6.2671871}; + position[]={9873.9619,181.08931,3945.9199}; + angles[]={6.278389,0.079700232,6.2464032}; }; side="Empty"; flags=4; class Attributes { }; - id=1177; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item377 - { - dataType="Object"; - class PositionInfo - { - position[]={11740.764,52.119408,7794.147}; - angles[]={0.06072529,4.848989,6.2687874}; - }; - side="Empty"; - flags=4; - class Attributes + id=2045; + type="PortableHelipadLight_01_green_F"; + atlOffset=-6.1035156e-005; + class CustomAttributes { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; }; - id=1178; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item378 + class Item263 { dataType="Object"; class PositionInfo { - position[]={11741.559,51.77684,7799.7959}; - angles[]={0.057536088,4.848989,6.271987}; + position[]={9867.7725,181.0589,3940.6455}; + angles[]={6.278389,4.7920895,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=1179; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item379 - { - dataType="Object"; - class PositionInfo - { - position[]={11739.303,52.783073,7782.9028}; - angles[]={0.052750662,4.8577781,6.2719922}; - }; - side="Empty"; - flags=4; - class Attributes + id=2046; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; }; - id=1180; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item380 + class Item264 { dataType="Object"; class PositionInfo { - position[]={11738.478,53.113136,7777.3062}; - angles[]={0.06072529,4.8577781,6.2655869}; + position[]={9873.0469,181.04066,3934.4561}; + angles[]={0,3.221293,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1181; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2047; + type="PortableHelipadLight_01_green_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item381 + class Item265 { dataType="Object"; class PositionInfo { - position[]={11744.28,50.682175,7818.0864}; - angles[]={0.059129976,1.7232141,6.2687874}; + position[]={9879.2363,181.04068,3939.7305}; + angles[]={0,1.6504965,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1182; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2048; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item382 + class Item266 { dataType="Object"; class PositionInfo { - position[]={11743.406,51.016415,7812.5557}; - angles[]={0.073466748,1.7232141,0}; + position[]={9868.2305,181.189,3946.3777}; + angles[]={6.2464013,5.5774879,6.2416096}; }; side="Empty"; flags=4; class Attributes { }; - id=1183; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2049; + type="PortableHelipadLight_01_green_F"; + atlOffset=-0.00019836426; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item383 + class Item267 { dataType="Object"; class PositionInfo { - position[]={11742.521,51.337482,7806.9199}; - angles[]={0.063912325,1.7232141,6.2751846}; + position[]={9867.3145,181.04759,3934.9138}; + angles[]={0,4.0066915,6.2784014}; }; side="Empty"; flags=4; class Attributes { }; - id=1184; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2050; + type="PortableHelipadLight_01_green_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item384 + class Item268 { dataType="Object"; class PositionInfo { - position[]={11745.216,50.329178,7823.7065}; - angles[]={0.054346491,1.7232141,6.2751846}; + position[]={9878.7783,181.04068,3933.9983}; + angles[]={0,2.435895,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1185; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2051; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item385 + class Item269 { dataType="Object"; class PositionInfo { - position[]={11746.081,50.044182,7829.2969}; - angles[]={0.035185181,1.7232141,0.006394445}; + position[]={9879.6943,181.04817,3945.4622}; + angles[]={0,0.86509848,6.2784014}; }; side="Empty"; flags=4; class Attributes { }; - id=1186; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2052; + type="PortableHelipadLight_01_green_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item386 + class Item270 { dataType="Object"; class PositionInfo { - position[]={11772.025,51.39856,7798.7827}; - angles[]={0.052750662,0.14989856,6.2655869}; + position[]={9871.7529,181.03548,3918.2581}; + angles[]={0,0.079700232,0.001544081}; }; side="Empty"; flags=4; class Attributes { }; - id=1198; - type="Land_HBarrierWall_corridor_F"; + id=2053; + type="PortableHelipadLight_01_green_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item387 + class Item271 { dataType="Object"; class PositionInfo { - position[]={11780.77,50.063007,7839.9385}; - angles[]={0.0095932409,4.862287,0}; + position[]={9865.5635,181.01108,3912.9841}; + angles[]={6.2816033,4.7920895,0.006394445}; }; side="Empty"; flags=4; class Attributes { }; - id=1199; - type="Land_HBarrierWall_corner_F"; - atlOffset=7.6293945e-006; + id=2054; + type="PortableHelipadLight_01_green_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item388 + class Item272 { dataType="Object"; class PositionInfo { - position[]={11775.182,50.064613,7839.771}; - angles[]={0.0095932409,0.14989856,0}; + position[]={9870.8369,181.00174,3906.7947}; + angles[]={6.2751846,3.221293,0.0080009829}; }; side="Empty"; flags=4; class Attributes { }; - id=1200; - type="Land_HBarrierWall_corner_F"; - atlOffset=3.8146973e-006; + id=2055; + type="PortableHelipadLight_01_green_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item389 + class Item273 { dataType="Object"; class PositionInfo { - position[]={11777.177,51.615223,7832.8965}; - angles[]={0,1.7234354,0}; + position[]={9877.0264,181.04068,3912.0686}; + angles[]={0,1.6504965,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1201; - type="Land_Mil_WiredFence_Gate_F"; - atlOffset=3.8146973e-006; + id=2056; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item390 + class Item274 { dataType="Object"; class PositionInfo { - position[]={11772.771,51.113655,7803.7271}; - angles[]={0.052750662,4.862287,6.2703872}; + position[]={9866.0215,181.01759,3918.7158}; + angles[]={0,5.5774879,0.004784164}; }; side="Empty"; flags=4; class Attributes { }; - id=1202; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; - }; - class Item391 - { + id=2057; + type="PortableHelipadLight_01_green_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item275 + { dataType="Object"; class PositionInfo { - position[]={11773.594,50.799591,7809.165}; - angles[]={0.059129976,4.862287,6.2687874}; + position[]={9865.1055,180.98228,3907.2524}; + angles[]={6.2816033,4.0066915,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1203; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2058; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item392 + class Item276 { dataType="Object"; class PositionInfo { - position[]={11774.415,50.474983,7814.6035}; - angles[]={0.054346491,4.862287,6.2703872}; + position[]={9876.5693,181.03333,3906.3367}; + angles[]={6.2816033,2.435895,0.0015822123}; }; side="Empty"; flags=4; class Attributes { }; - id=1204; - type="Land_HBarrierWall_corridor_F"; - atlOffset=7.6293945e-006; + id=2059; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item393 + class Item277 { dataType="Object"; class PositionInfo { - position[]={11775.236,50.20903,7820.042}; - angles[]={0.023993526,4.862287,6.2751846}; + position[]={9877.4844,181.04068,3917.8003}; + angles[]={0,0.86509848,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1205; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2060; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item394 + class Item278 { dataType="Object"; class PositionInfo { - position[]={11777.074,50.061012,7828.8662}; - angles[]={0.0015822123,0.14989856,6.2816033}; + position[]={9949.5811,181.4864,3855.0955}; + angles[]={6.2703872,3.1677177,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=1206; + id=2070; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item395 + class Item279 { dataType="Object"; class PositionInfo { - position[]={11776.057,50.089458,7825.48}; - angles[]={0.0015822123,4.862287,6.2816033}; + position[]={9943.832,181.50934,3855.2456}; + angles[]={0,3.1677177,6.2687874}; }; side="Empty"; flags=4; class Attributes { }; - id=1207; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2071; + type="Land_HBarrier_5_F"; }; - class Item396 + class Item280 { dataType="Object"; class PositionInfo { - position[]={11778.269,50.060516,7836.7764}; - angles[]={0,3.291491,0}; + position[]={9952.0527,181.57962,3870.3718}; + angles[]={0,1.5836232,0.028790962}; }; side="Empty"; flags=4; class Attributes { }; - id=1208; + id=2072; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item397 + class Item281 { dataType="Object"; class PositionInfo { - position[]={11767.499,52.494465,7772.1602}; - angles[]={0.01919602,4.862287,6.2527947}; + position[]={9952.0918,181.57761,3864.7041}; + angles[]={6.2815661,1.5836232,0.030390549}; }; side="Empty"; flags=4; class Attributes { }; - id=1209; - type="Land_HBarrierWall_corridor_F"; + id=2073; + type="Land_HBarrier_5_F"; }; - class Item398 + class Item282 { dataType="Object"; class PositionInfo { - position[]={11768.32,52.340874,7777.5986}; - angles[]={0.027193764,4.862287,6.260788}; + position[]={9952,181.57851,3859}; + angles[]={6.2815661,1.5836232,0.036785569}; }; side="Empty"; flags=4; class Attributes { }; - id=1210; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2074; + type="Land_HBarrier_5_F"; }; - class Item399 + class Item283 { dataType="Object"; class PositionInfo { - position[]={11769.142,52.160957,7783.0371}; - angles[]={0.031988446,4.862287,6.2480001}; + position[]={9952.1533,181.58252,3876.0427}; + angles[]={0,1.5924122,0.028790962}; }; side="Empty"; flags=4; class Attributes { }; - id=1211; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2075; + type="Land_HBarrier_5_F"; }; - class Item400 + class Item284 { dataType="Object"; class PositionInfo { - position[]={11769.963,51.957195,7788.4756}; - angles[]={0.044770103,4.862287,6.2575884}; + position[]={9952.2803,181.58983,3881.6985}; + angles[]={0,1.5924122,0.030390549}; }; side="Empty"; flags=4; class Attributes { }; - id=1212; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2076; + type="Land_HBarrier_5_F"; }; - class Item401 + class Item285 { dataType="Object"; class PositionInfo { - position[]={11770.784,51.696949,7793.9136}; - angles[]={0.057536088,4.862287,6.260788}; + position[]={9951.4385,181.78957,3839.9695}; + angles[]={0.041575778,4.7410336,0.12573248}; }; side="Empty"; flags=4; class Attributes { }; - id=1213; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2077; + type="Land_HBarrier_5_F"; }; - class Item402 + class Item286 { dataType="Object"; class PositionInfo { - position[]={11766.977,52.636284,7768.6992}; - angles[]={0.025594741,0.14989856,6.2400112}; + position[]={9951.623,181.75595,3845.5662}; + angles[]={0.0048090173,4.7410336,0.19123264}; }; side="Empty"; flags=4; class Attributes { }; - id=1214; - type="Land_HBarrier_3_F"; - atlOffset=7.6293945e-006; + id=2078; + type="Land_HBarrier_5_F"; }; - class Item403 + class Item287 { dataType="Object"; class PositionInfo { - position[]={11759.625,53.291065,7760.2021}; - angles[]={0.039979152,0.14989856,6.2176785}; + position[]={9951.8047,181.64459,3851.2681}; + angles[]={6.2703872,4.7410336,0.11469462}; }; side="Empty"; flags=4; class Attributes { }; - id=1215; + id=2079; type="Land_HBarrier_5_F"; }; - class Item404 + class Item288 { dataType="Object"; class PositionInfo { - position[]={11757.843,53.947632,7758.4482}; - angles[]={0.039979152,0.14989856,6.2176785}; + position[]={9951.2031,181.94572,3834.2769}; + angles[]={0.02399601,4.7410336,0.13045581}; }; side="Empty"; flags=4; class Attributes { }; - id=1216; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2080; + type="Land_HBarrier_5_F"; }; - class Item405 + class Item289 { dataType="Object"; class PositionInfo { - position[]={11754.186,53.591904,7761.0234}; - angles[]={0.039979152,0.14989856,6.228838}; + position[]={9951.0352,182.10654,3828.6226}; + angles[]={0.043174155,4.7410336,0.12730782}; }; side="Empty"; flags=4; class Attributes { }; - id=1217; + id=2081; type="Land_HBarrier_5_F"; }; - class Item406 + class Item290 { dataType="Object"; class PositionInfo { - position[]={11749.438,54.360172,7759.7183}; - angles[]={0.038381387,0.14989856,6.2416096}; + position[]={9938.084,181.51913,3855.396}; + angles[]={6.2816415,3.1677177,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1218; - type="Land_HBarrier_Big_F"; + id=2082; + type="Land_HBarrier_5_F"; }; - class Item407 + class Item291 { dataType="Object"; class PositionInfo { - position[]={11748.748,53.837761,7761.8447}; - angles[]={0.038381387,0.14989856,6.2416096}; + position[]={9932.3369,181.52763,3855.5461}; + angles[]={6.2816033,3.1677177,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=1219; + id=2083; type="Land_HBarrier_5_F"; }; - class Item408 + class Item292 { dataType="Object"; class PositionInfo { - position[]={11742.814,54.019543,7762.7412}; - angles[]={0.084597312,0.14989856,6.2623887}; + position[]={9926.5889,181.5305,3855.6963}; + angles[]={0,3.1677177,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1220; + id=2084; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item409 + class Item293 { dataType="Object"; class PositionInfo { - position[]={11741.033,54.594925,7760.9873}; - angles[]={0.031990308,0.14989856,6.2623887}; + position[]={9924.5107,181.5305,3870.6731}; + angles[]={0,1.5836232,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1221; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2085; + type="Land_HBarrier_5_F"; }; - class Item410 + class Item294 { dataType="Object"; class PositionInfo { - position[]={11737.377,54.062038,7763.562}; - angles[]={0.084597312,0.14989856,6.2703872}; + position[]={9924.5469,181.5305,3865.0051}; + angles[]={0,1.5836232,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1222; + id=2086; type="Land_HBarrier_5_F"; }; - class Item411 + class Item295 { dataType="Object"; class PositionInfo { - position[]={11732.629,54.721706,7762.2568}; - angles[]={0.03358667,0.14989856,6.2639894}; + position[]={9924.457,181.5305,3859.301}; + angles[]={0,1.5836232,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1223; - type="Land_HBarrier_Big_F"; + id=2087; + type="Land_HBarrier_5_F"; }; - class Item412 + class Item296 { dataType="Object"; class PositionInfo { - position[]={11731.939,54.085567,7764.3833}; - angles[]={0.090948731,0.14989856,6.2639894}; + position[]={9924.6094,181.53203,3876.3438}; + angles[]={6.2816033,1.5924122,0.0015822123}; }; side="Empty"; flags=4; class Attributes { }; - id=1224; + id=2088; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item413 + class Item297 { dataType="Object"; class PositionInfo { - position[]={11726.006,54.065872,7765.2798}; - angles[]={0.10046034,0.14989856,6.2687874}; + position[]={9924.7383,181.5417,3881.9998}; + angles[]={6.2816415,1.5924122,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1225; + id=2089; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=-1.5258789e-005; }; - class Item414 + class Item298 { dataType="Object"; class PositionInfo { - position[]={11724.224,54.714134,7763.5264}; - angles[]={0.10046034,0.14989856,0.015998369}; + position[]={9924.0137,181.5305,3840.8147}; + angles[]={0,4.7410336,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1226; - type="Land_HBarrier_Big_F"; + id=2090; + type="Land_HBarrier_5_F"; }; - class Item415 + class Item299 { dataType="Object"; class PositionInfo { - position[]={11720.568,53.94257,7766.1011}; - angles[]={0.11942901,0.14989856,6.2799835}; + position[]={9924.1992,181.5305,3846.4111}; + angles[]={0,4.7410336,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1227; + id=2091; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item416 + class Item300 { dataType="Object"; class PositionInfo { - position[]={11715.819,54.526478,7764.7954}; - angles[]={0.13202716,0.14989856,0.0064037596}; + position[]={9924.3809,181.5305,3852.1133}; + angles[]={0,4.7410336,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1228; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2092; + type="Land_HBarrier_5_F"; }; - class Item417 + class Item301 { dataType="Object"; class PositionInfo { - position[]={11715.129,53.780346,7766.9224}; - angles[]={0.11942901,0.14989856,0.019199125}; + position[]={9923.7793,181.51909,3835.1221}; + angles[]={6.2784014,4.7410336,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1229; + id=2093; type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; }; - class Item418 + class Item302 { dataType="Object"; class PositionInfo { - position[]={11709.196,53.576069,7767.8184}; - angles[]={0.13202716,0.14989856,0.017598685}; + position[]={9923.6113,181.45871,3829.4678}; + angles[]={6.2559938,4.7410336,6.278389}; }; side="Empty"; flags=4; class Attributes { }; - id=1230; + id=2094; type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item419 + class Item303 { dataType="Object"; class PositionInfo { - position[]={11707.415,54.200924,7766.0649}; - angles[]={0.10204422,0.14989856,0.047963165}; + position[]={9938.5449,181.86003,3853.8833}; + angles[]={0,0.026124954,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1231; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2095; + type="Land_PortableLight_single_F"; }; - class Item420 + class Item304 { dataType="Object"; class PositionInfo { - position[]={11703.758,53.304173,7768.6396}; - angles[]={0.10204364,0.14989856,0.043172773}; + position[]={9938.623,181.86201,3856.8823}; + angles[]={0,3.1677177,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1232; - type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; + id=2096; + type="Land_PortableLight_single_F"; }; - class Item421 + class Item305 { dataType="Object"; class PositionInfo { - position[]={11699.01,53.704506,7767.334}; - angles[]={0.11469462,0.14989856,0.059130985}; + position[]={9938.2188,181.47021,3841.3879}; + angles[]={0,0.026127579,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=1233; - type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; + id=2097; + type="Land_HelipadSquare_F"; + atlOffset=0.75; }; - class Item422 + class Item306 { dataType="Object"; class PositionInfo { - position[]={11698.32,52.934357,7769.4609}; - angles[]={0.13517113,0.14989856,0.059130985}; + position[]={9938.9424,180.78,3869.1282}; + angles[]={0,3.1677177,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1234; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2098; + type="Land_HelipadSquare_F"; }; - class Item423 + class Item307 { dataType="Object"; class PositionInfo { - position[]={11692.881,52.490936,7770.2822}; - angles[]={0.13517113,0.14989856,0.070283718}; + position[]={9939.0928,180.89069,3874.8765}; + angles[]={0,0.026124954,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1235; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2099; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item424 + class Item308 { dataType="Object"; class PositionInfo { - position[]={11690.604,53.048725,7768.6035}; - angles[]={0.16955605,0.14989856,0.065506049}; + position[]={9933.1953,180.89841,3869.2783}; + angles[]={6.2816033,4.7385139,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=1236; - type="Land_HBarrier_Big_F"; - atlOffset=9.9182129e-005; + id=2100; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item425 + class Item309 { dataType="Object"; class PositionInfo { - position[]={11780.464,52.121071,7757.5605}; - angles[]={0.015998369,0.14989856,6.2304335}; + position[]={9938.793,180.89069,3863.3801}; + angles[]={0,3.1677177,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1237; - type="Land_HBarrier_5_F"; + id=2101; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item426 + class Item310 { dataType="Object"; class PositionInfo { - position[]={11776.21,52.955391,7756.1802}; - angles[]={6.2591896,0.14989856,6.2065363}; + position[]={9944.6914,180.89069,3868.9785}; + angles[]={0,1.5969212,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1238; - type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; + id=2102; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item427 + class Item311 { dataType="Object"; class PositionInfo { - position[]={11775.025,52.493317,7758.3818}; - angles[]={0.039977662,0.14989856,6.2065363}; + position[]={9933.3457,180.90398,3875.0269}; + angles[]={0,5.5239124,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=1239; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2103; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item428 + class Item312 { dataType="Object"; class PositionInfo { - position[]={11764.445,53.113163,7757.7466}; - angles[]={0.039979152,4.8954244,6.2272439}; + position[]={9933.0449,180.89781,3863.5303}; + angles[]={0,3.9531162,6.2816415}; }; side="Empty"; flags=4; class Attributes { }; - id=1240; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2104; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item429 + class Item313 { dataType="Object"; class PositionInfo { - position[]={11763.598,54.714108,7753.0283}; - angles[]={0.0207968,0.15489009,6.2304335}; + position[]={9944.541,180.88942,3863.23}; + angles[]={0,2.3823197,6.2816415}; }; side="Empty"; flags=4; class Attributes { }; - id=1241; - type="Land_HBarrierTower_F"; - atlOffset=3.8146973e-006; - }; - class Item430 - { - dataType="Object"; - class PositionInfo - { - position[]={11792.524,51.282658,7753.7163}; - angles[]={6.2623887,0.14989856,6.1732306}; - }; - side="Empty"; - flags=4; - class Attributes + id=2105; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; }; - id=1242; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item431 + class Item314 { dataType="Object"; class PositionInfo { - position[]={11791.34,50.989677,7755.9175}; - angles[]={6.2623887,0.14989856,6.1732306}; + position[]={9944.8418,180.89069,3874.7263}; + angles[]={0,0.8115232,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1243; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2106; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item432 + class Item315 { dataType="Object"; class PositionInfo { - position[]={11784.12,52.21323,7754.9858}; - angles[]={6.2480001,0.14989856,6.1748123}; + position[]={9938.3691,180.8793,3847.136}; + angles[]={0,0.026124954,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=1244; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2107; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item433 + class Item316 { dataType="Object"; class PositionInfo { - position[]={11785.902,51.58651,7756.7393}; - angles[]={0.015998369,0.14989856,6.1748123}; + position[]={9932.4707,180.8643,3841.5383}; + angles[]={6.2799835,4.7385139,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=1245; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2108; + type="PortableHelipadLight_01_green_F"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item434 + class Item317 { dataType="Object"; class PositionInfo { - position[]={11769.587,52.777618,7759.2031}; - angles[]={0.039979152,3.291491,6.2304349}; + position[]={9938.0674,180.76877,3835.6401}; + angles[]={0.011198638,3.1677177,0.030390549}; }; side="Empty"; flags=4; class Attributes { }; - id=1246; - type="Land_HBarrierWall4_F"; - atlOffset=3.8146973e-006; + id=2109; + type="PortableHelipadLight_01_green_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item435 + class Item318 { dataType="Object"; class PositionInfo { - position[]={11795.79,50.643173,7755.2461}; - angles[]={6.278389,0.14989856,6.2144942}; + position[]={9943.9658,180.84833,3841.2378}; + angles[]={6.2703872,1.5969212,0.046366453}; }; side="Empty"; flags=4; class Attributes { }; - id=1247; - type="Land_HBarrier_3_F"; - atlOffset=7.6293945e-006; + id=2110; + type="PortableHelipadLight_01_green_F"; + atlOffset=-0.00030517578; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item436 + class Item319 { dataType="Object"; class PositionInfo { - position[]={11799.631,49.671722,7837.5957}; - angles[]={0.006394445,3.291491,6.2511969}; + position[]={9932.6211,180.8963,3847.2864}; + angles[]={0,5.5239124,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=1248; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2111; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item437 + class Item320 { dataType="Object"; class PositionInfo { - position[]={11803.885,49.976757,7838.9756}; - angles[]={0.011203959,3.291491,6.2480001}; + position[]={9932.3203,180.87315,3835.7903}; + angles[]={0.0095932409,3.9531162,6.2607903}; }; side="Empty"; flags=4; class Attributes { }; - id=1249; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2112; + type="PortableHelipadLight_01_green_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; }; - class Item438 + class Item321 { dataType="Object"; class PositionInfo { - position[]={11805.069,49.494869,7836.7739}; - angles[]={0.017598685,3.291491,6.2480001}; + position[]={9943.8164,180.85744,3835.4895}; + angles[]={0.031990308,2.3823197,0.03837828}; }; side="Empty"; flags=4; class Attributes { }; - id=1250; - type="Land_HBarrier_5_F"; - }; - class Item439 - { - dataType="Object"; - class PositionInfo - { - position[]={11787.57,50.459408,7841.4399}; - angles[]={0.004796607,3.291491,6.2591896}; - }; - side="Empty"; - flags=4; - class Attributes + id=2113; + type="PortableHelipadLight_01_green_F"; + atlOffset=-0.00024414063; + class CustomAttributes { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; }; - id=1251; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item440 + class Item322 { dataType="Object"; class PositionInfo { - position[]={11788.755,49.972073,7839.2383}; - angles[]={0.004796607,3.291491,6.2591896}; + position[]={9944.1162,180.87289,3846.9858}; + angles[]={6.2816033,0.8115232,6.2751918}; }; side="Empty"; flags=4; class Attributes { }; - id=1252; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item441 - { - dataType="Object"; - class PositionInfo - { - position[]={11795.975,50.241745,7840.1704}; - angles[]={0.006394445,3.291491,6.2511969}; - }; - side="Empty"; - flags=4; - class Attributes + id=2114; + type="PortableHelipadLight_01_green_F"; + atlOffset=-4.5776367e-005; + class CustomAttributes { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; }; - id=1253; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item442 + class Item323 { dataType="Object"; class PositionInfo { - position[]={11794.192,49.840511,7838.417}; - angles[]={0.006394445,3.291491,6.2511969}; + position[]={9955.875,182.58728,3950.75}; + angles[]={6.1843095,1.5707964,0.073465936}; }; side="Empty"; flags=4; class Attributes { }; - id=1254; + id=2131; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item443 + class Item324 { dataType="Object"; class PositionInfo { - position[]={11784.306,50.070763,7839.9102}; - angles[]={0.0095994528,3.291491,6.2751846}; + position[]={9932.25,197.77466,3954.375}; }; side="Empty"; - flags=4; class Attributes { }; - id=1255; - type="Land_HBarrier_3_F"; - atlOffset=3.8146973e-006; + id=2132; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=13.34729; }; - class Item444 + class Item325 { dataType="Object"; class PositionInfo { - position[]={11856.999,47.08329,7835.7578}; - angles[]={0.0079935296,3.291491,6.189065}; + position[]={9946.5166,181.51276,3910.7314}; + angles[]={6.2816415,3.1415927,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1256; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2133; + type="Land_PressureWasher_01_F"; + atlOffset=-1.5258789e-005; }; - class Item445 + class Item326 { dataType="Object"; class PositionInfo { - position[]={11862.237,46.620735,7831.9326}; - angles[]={0.004796607,1.7206945,6.1922374}; + position[]={9946.875,194.28941,3950.75}; + angles[]={6.2256494,4.712389,0.05115639}; }; side="Empty"; flags=4; class Attributes { }; - id=1257; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2134; + type="Land_Cargo_Tower_V2_F"; }; - class Item446 + class Item327 { dataType="Object"; class PositionInfo { - position[]={11867.125,46.210487,7824.1152}; - angles[]={0.0079935296,1.7206945,6.189065}; + position[]={9932.25,182.32275,3954.375}; + angles[]={6.2816033,0,0.011198638}; }; side="Empty"; flags=4; class Attributes { }; - id=1258; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2135; + type="Land_MedicalTent_01_wdl_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item447 + class Item328 { dataType="Object"; class PositionInfo { - position[]={11864.682,46.003082,7828.0234}; - angles[]={0.0064037596,0.14989856,6.1890645}; + position[]={9917.375,197.75645,3954.875}; }; side="Empty"; - flags=4; class Attributes { }; - id=1259; - type="Land_HBarrier_3_F"; - atlOffset=3.8146973e-006; + id=2136; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=13.338715; }; - class Item448 + class Item329 { dataType="Object"; class PositionInfo { - position[]={11813.883,49.443203,7824.8237}; - angles[]={0.0015822123,1.7206945,6.2559919}; + position[]={9917.375,182.30455,3954.875}; }; side="Empty"; flags=4; class Attributes { }; - id=1260; - type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; + id=2137; + type="Land_MedicalTent_01_wdl_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item449 + class Item330 { dataType="Object"; class PositionInfo { - position[]={11815.637,49.867832,7823.042}; - angles[]={0.0015822123,1.7206945,6.2559919}; + position[]={9904.0332,197.75645,3955.1919}; }; side="Empty"; - flags=4; class Attributes { }; - id=1261; - type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; + id=2138; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=13.338715; }; - class Item450 + class Item331 { dataType="Object"; class PositionInfo { - position[]={11814.442,49.956142,7815.1318}; - angles[]={0.0064037596,1.7206945,6.2384167}; + position[]={9904.0332,182.30455,3955.1919}; }; side="Empty"; flags=4; class Attributes { }; - id=1262; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2139; + type="Land_MedicalTent_01_wdl_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item451 + class Item332 { dataType="Object"; class PositionInfo { - position[]={11813.062,49.522736,7819.3857}; - angles[]={0.011198638,1.7206945,6.2464013}; + position[]={9864,184.61079,3829.375}; + angles[]={0.027191572,0,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=1263; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2140; + type="Land_Cargo_HQ_V2_F"; }; - class Item452 + class Item333 { dataType="Object"; class PositionInfo { - position[]={11812.241,49.591209,7813.9473}; - angles[]={0.006394445,1.7206945,6.2448058}; + position[]={9940.7051,184.73285,3896.3281}; + angles[]={6.2815661,0,6.2623887}; }; side="Empty"; flags=4; class Attributes { }; - id=1264; - type="Land_HBarrier_5_F"; + id=2141; + type="Land_Cargo_HQ_V2_F"; }; - class Item453 + class Item334 { dataType="Object"; class PositionInfo { - position[]={11864.895,45.97908,7819.395}; - angles[]={0.004796607,0.14989856,6.1922374}; + position[]={9959.417,186.44383,3788.845}; + angles[]={6.2799835,5.1471882,6.271987}; }; side="Empty"; flags=4; class Attributes { }; - id=1265; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2142; + type="Land_Cargo_Patrol_V2_F"; }; - class Item454 + class Item335 { dataType="Object"; class PositionInfo { - position[]={11856.703,48.277348,7750.0913}; - angles[]={0.043172773,4.862287,6.1543036}; + position[]={9803.0645,193.48499,3794.322}; + angles[]={6.2208662,1.8451034,0.011198638}; }; side="Empty"; flags=4; class Attributes { }; - id=1266; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2143; + type="Land_Cargo_Patrol_V2_F"; }; - class Item455 + class Item336 { dataType="Object"; class PositionInfo { - position[]={11852.915,48.969624,7745.1006}; - angles[]={0.039979152,3.2914913,6.148015}; + position[]={9862.9531,182.17456,3852.1628}; + angles[]={0,1.6160313,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1267; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - }; - class Item456 + id=2144; + type="Land_MedicalTent_01_wdl_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + class Item337 { dataType="Object"; class PositionInfo { - position[]={11844.604,50.08279,7740.2881}; - angles[]={0.022397626,3.2914913,6.1843095}; + position[]={9864.125,182.17456,3867}; + angles[]={0,1.6160313,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1268; - type="Land_HBarrier_Big_F"; - atlOffset=-0.00014877319; + id=2145; + type="Land_MedicalTent_01_wdl_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item457 + class Item338 { dataType="Object"; class PositionInfo { - position[]={11849.007,49.148064,7742.6572}; - angles[]={0.030390549,1.7206945,6.1763926}; + position[]={9865.0449,182.17456,3880.3137}; + angles[]={0,1.6160313,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1269; - type="Land_HBarrier_3_F"; + id=2146; + type="Land_MedicalTent_01_wdl_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item458 + class Item339 + { + dataType="Layer"; + name="Open Ammo Dump_3"; + id=2147; + atlOffset=-252.33; + }; + class Item340 + { + dataType="Layer"; + name="Vehicle Repair_3"; + id=2172; + atlOffset=-252.33; + }; + class Item341 { dataType="Object"; class PositionInfo { - position[]={11811.42,49.683613,7808.5093}; - angles[]={0.011198638,1.7206945,6.2384152}; + position[]={6456.25,223.4205,3842.875}; + angles[]={0,0.9217658,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1270; + id=2562; type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; }; - class Item459 + class Item342 { dataType="Object"; class PositionInfo { - position[]={11813.173,50.092361,7806.7271}; - angles[]={0.011198638,1.7206945,6.2352223}; + position[]={6459.6147,223.4205,3838.3987}; + angles[]={0,0.9217658,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1271; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2563; + type="Land_HBarrier_5_F"; }; - class Item460 + class Item343 { dataType="Object"; class PositionInfo { - position[]={11811.979,50.278381,7798.8169}; - angles[]={0.017598685,1.7206945,6.2304349}; + position[]={6452.8638,223.49359,3847.4568}; + angles[]={0,0.9217658,6.1874781}; }; side="Empty"; flags=4; class Attributes { }; - id=1272; - type="Land_HBarrier_Big_F"; + id=2564; + type="Land_HBarrier_5_F"; + atlOffset=0.0730896; }; - class Item461 + class Item344 { dataType="Object"; class PositionInfo { - position[]={11810.599,49.808769,7803.0708}; - angles[]={0.016002094,1.7206945,6.232029}; + position[]={6470.375,223.375,3851.125}; + angles[]={0,2.4900429,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=1273; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2573; + type="Land_HelipadSquare_F"; + atlOffset=0.69500732; }; - class Item462 + class Item345 { dataType="Object"; class PositionInfo { - position[]={11809.776,49.946003,7797.6323}; - angles[]={0.017598685,1.7206945,6.2304349}; + position[]={6445.25,224,3831.125}; + angles[]={0,2.4900429,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=1274; - type="Land_HBarrier_5_F"; + id=2582; + type="Land_HelipadSquare_F"; + atlOffset=0.92480469; }; - class Item463 + class Item346 { dataType="Object"; class PositionInfo { - position[]={11808.955,50.085102,7792.1938}; - angles[]={0.017598685,1.7206945,6.2304349}; + position[]={6366.625,226.69621,3880.875}; + angles[]={0,3.1394875,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1275; - type="Land_HBarrier_5_F"; + id=2583; + type="Land_Cargo_Tower_V2_F"; }; - class Item464 + class Item347 { dataType="Object"; class PositionInfo { - position[]={11809.514,50.695679,7782.502}; - angles[]={0.017598685,1.7206945,6.2304335}; + position[]={6416.4771,227.17841,3719.75}; + angles[]={0,2.2848804,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1276; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2584; + type="Land_Cargo_Tower_V2_F"; }; - class Item465 + class Item348 { dataType="Object"; class PositionInfo { - position[]={11808.134,50.224163,7786.7554}; - angles[]={0.017598685,1.7206945,6.2304349}; + position[]={6517,234.20383,3762.25}; + angles[]={0,0.40608576,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1277; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2585; + type="Land_Cargo_Tower_V2_F"; }; - class Item466 + class Item349 { dataType="Object"; class PositionInfo { - position[]={11807.313,50.363258,7781.3174}; - angles[]={0.017598685,1.7206945,6.2304335}; + position[]={6507.0498,221.67171,3923.6167}; + angles[]={0.11153521,3.9301395,6.2160864}; }; side="Empty"; flags=4; class Attributes { }; - id=1278; + id=2586; type="Land_HBarrier_5_F"; - atlOffset=8.392334e-005; }; - class Item467 + class Item350 { dataType="Object"; class PositionInfo { - position[]={11850.804,48.067356,7759.5786}; - angles[]={0.065506049,1.7206945,6.1621799}; + position[]={6509.5259,221.93607,3923.9626}; + angles[]={0.11153521,3.9301395,6.2160864}; }; side="Empty"; flags=4; class Attributes { }; - id=1279; - type="Land_HBarrierWall6_F"; - atlOffset=3.8146973e-006; + id=2587; + type="Land_HBarrier_Big_F"; }; - class Item468 + class Item351 { dataType="Object"; class PositionInfo { - position[]={11855.473,47.734638,7755.334}; - angles[]={0.043174155,0.14989856,6.1621795}; + position[]={6510.9268,221.84804,3919.7158}; + angles[]={0.11153521,3.9301395,6.2160864}; }; side="Empty"; flags=4; class Attributes { }; - id=1280; + id=2588; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item469 + class Item352 { dataType="Object"; class PositionInfo { - position[]={11652.455,44.601837,7790.5469}; - angles[]={0.13045444,1.7206945,0.14144896}; + position[]={6515.5171,222.19225,3917.9333}; + angles[]={0.155533,3.9301395,6.1985884}; }; side="Empty"; flags=4; class Attributes { }; - id=1281; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2589; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item470 + class Item353 { dataType="Object"; class PositionInfo { - position[]={11654.918,43.250698,7806.8623}; - angles[]={0.095706634,1.7206945,0.15084559}; + position[]={6514.8032,222.10844,3915.8142}; + angles[]={0.14458455,3.9301395,6.2097163}; }; side="Empty"; flags=4; class Attributes { }; - id=1282; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2590; + type="Land_HBarrier_5_F"; }; - class Item471 + class Item354 { dataType="Object"; class PositionInfo { - position[]={11657.383,42.078236,7823.1768}; - angles[]={0.081419863,1.7206945,0.15553378}; + position[]={6519.0322,222.39803,3911.5583}; + angles[]={0.13674109,3.9301395,6.1700721}; }; side="Empty"; flags=4; class Attributes { }; - id=1283; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2591; + type="Land_HBarrier_5_F"; }; - class Item472 + class Item355 { dataType="Object"; class PositionInfo { - position[]={11658.204,41.785515,7828.6152}; - angles[]={0.071875811,1.7206945,0.14928113}; + position[]={6521.5088,222.58707,3911.9041}; + angles[]={0.11469462,3.9301395,6.1922379}; }; side="Empty"; flags=4; class Attributes { }; - id=1284; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2592; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item473 + class Item356 { dataType="Object"; class PositionInfo { - position[]={11659.025,41.517605,7834.0537}; - angles[]={0.063913256,1.7206945,0.14144853}; + position[]={6522.9097,222.4944,3907.657}; + angles[]={0.13674109,3.9301395,6.1700721}; }; side="Empty"; flags=4; class Attributes { }; - id=1285; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2593; + type="Land_HBarrier_5_F"; }; - class Item474 + class Item357 { dataType="Object"; class PositionInfo { - position[]={11660.668,40.974739,7844.9302}; - angles[]={0.063911393,1.7206945,0.12573342}; + position[]={6527.5,222.53317,3905.875}; + angles[]={0.067101084,3.9301395,6.1198516}; }; side="Empty"; flags=4; class Attributes { }; - id=1286; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2594; + type="Land_HBarrier_Big_F"; }; - class Item475 + class Item358 { dataType="Object"; class PositionInfo { - position[]={11649.282,46.822937,7782.9355}; - angles[]={0,1.7234354,0}; + position[]={6526.7866,222.32822,3903.7556}; + angles[]={0.073466748,3.9301395,6.1136303}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1287; - type="Land_Mil_WiredFence_Gate_F"; + id=2595; + type="Land_HBarrier_5_F"; }; - class Item476 + class Item359 { dataType="Object"; class PositionInfo { - position[]={11649.775,47.218925,7776.1606}; - angles[]={0.29512221,4.862287,0.11785181}; + position[]={6531.0156,221.91743,3899.4998}; + angles[]={0.073466748,3.9301395,6.1136303}; }; side="Empty"; flags=4; class Attributes { }; - id=1288; - type="Land_HBarrier_3_F"; - atlOffset=7.6293945e-006; + id=2596; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item477 + class Item360 { dataType="Object"; class PositionInfo { - position[]={11659.885,41.76086,7853.1392}; - angles[]={0,1.7234354,0}; + position[]={6533.4912,221.93518,3899.8452}; + angles[]={0.079829417,3.9301395,6.1120749}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1289; - type="Land_Mil_WiredFence_Gate_F"; - atlOffset=3.8146973e-006; + id=2597; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item478 + class Item361 { dataType="Object"; class PositionInfo { - position[]={11662.265,40.002052,7858.8481}; - angles[]={0.13045534,4.862287,0.14928073}; + position[]={6534.3701,221.61618,3895.9951}; + angles[]={0.073466748,4.3126512,6.1182976}; }; side="Empty"; flags=4; class Attributes { }; - id=1290; - type="Land_HBarrier_3_F"; - atlOffset=3.8146973e-006; + id=2598; + type="Land_HBarrier_5_F"; }; - class Item479 - { - dataType="Object"; - class PositionInfo - { - position[]={11693.262,43.984554,7853.1548}; - angles[]={0.1210065,3.291491,0.10679185}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1291; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item480 + class Item362 { dataType="Object"; class PositionInfo { - position[]={11695.043,44.43578,7854.9087}; - angles[]={0.121006,3.291491,0.10995446}; + position[]={6537.9639,221.7594,3892.6282}; + angles[]={0.086184449,4.3126512,6.1386008}; }; side="Empty"; flags=4; class Attributes { }; - id=1292; + id=2599; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item481 + class Item363 { dataType="Object"; class PositionInfo { - position[]={11698.7,44.684845,7852.334}; - angles[]={0.11942901,3.291491,0.11153521}; + position[]={6536.5107,221.66893,3890.9287}; + angles[]={0.086184449,4.3126512,6.1182976}; }; side="Empty"; flags=4; class Attributes { }; - id=1293; + id=2600; type="Land_HBarrier_5_F"; }; - class Item482 + class Item364 { dataType="Object"; class PositionInfo { - position[]={11703.448,45.509895,7853.6392}; - angles[]={0.10995501,3.291491,0.11311559}; + position[]={6538.8462,221.82065,3885.4016}; + angles[]={0.10362876,4.3126512,6.137033}; }; side="Empty"; flags=4; class Attributes { }; - id=1294; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2601; + type="Land_HBarrier_5_F"; }; - class Item483 + class Item365 { dataType="Object"; class PositionInfo { - position[]={11704.138,45.359352,7851.5122}; - angles[]={0.11942901,3.291491,0.10362761}; + position[]={6541.272,221.99744,3884.7983}; + angles[]={0.10204422,4.3126512,6.1386008}; }; side="Empty"; flags=4; class Attributes { }; - id=1295; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2602; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item484 + class Item366 { dataType="Object"; class PositionInfo { - position[]={11710.071,46.047112,7850.6162}; - angles[]={0.10995446,3.291491,0.09253493}; + position[]={6540.9868,222.01486,3880.3352}; + angles[]={0.084599428,4.3126512,6.1370335}; }; side="Empty"; flags=4; class Attributes { }; - id=1296; + id=2603; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item485 + class Item367 { dataType="Object"; class PositionInfo { - position[]={11711.854,46.504887,7852.3701}; - angles[]={0.10046034,3.291491,0.10204481}; + position[]={6544.5801,222.25154,3876.9685}; + angles[]={0.084600136,4.3126512,6.1495843}; }; side="Empty"; flags=4; class Attributes { }; - id=1297; + id=2604; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item486 + class Item368 { dataType="Object"; class PositionInfo { - position[]={11715.51,46.640072,7849.7949}; - angles[]={0.075058997,3.291491,0.094121099}; + position[]={6543.127,222.12209,3875.269}; + angles[]={0.063911393,4.3126512,6.1574535}; }; side="Empty"; flags=4; class Attributes { }; - id=1298; + id=2605; type="Land_HBarrier_5_F"; }; - class Item487 + class Item369 { dataType="Object"; class PositionInfo { - position[]={11720.257,47.450901,7851.1006}; - angles[]={0.089361183,3.291491,0.098877132}; + position[]={6545.4619,221.9568,3869.7419}; + angles[]={0.025592413,4.3126512,6.1448755}; }; side="Empty"; flags=4; class Attributes { }; - id=1299; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2606; + type="Land_HBarrier_5_F"; }; - class Item488 + class Item370 { dataType="Object"; class PositionInfo { - position[]={11720.948,47.214279,7848.9736}; - angles[]={0.063912325,3.291491,0.098877132}; + position[]={6547.8882,222.10402,3869.1387}; + angles[]={0.025592413,4.3126512,6.1448755}; }; side="Empty"; flags=4; class Attributes { }; - id=1300; - type="Land_HBarrier_5_F"; + id=2607; + type="Land_HBarrier_Big_F"; }; - class Item489 + class Item371 { dataType="Object"; class PositionInfo { - position[]={11726.881,47.827026,7848.0776}; - angles[]={0.063912325,3.291491,0.081419863}; + position[]={6495.4194,219.40509,3935.3208}; + angles[]={0.10995501,3.9301395,6.2735858}; }; side="Empty"; flags=4; class Attributes { }; - id=1301; + id=2608; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item490 + class Item372 { dataType="Object"; class PositionInfo { - position[]={11728.662,48.368786,7849.8311}; - angles[]={0.052751794,3.291491,0.09253493}; + position[]={6497.895,219.83485,3935.6665}; + angles[]={0.10046153,3.9301395,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1302; + id=2609; type="Land_HBarrier_Big_F"; }; - class Item491 + class Item373 { dataType="Object"; class PositionInfo { - position[]={11732.318,48.359158,7847.2559}; - angles[]={0.052750662,3.291491,0.078239501}; + position[]={6499.2964,219.79854,3931.4197}; + angles[]={0.10995501,3.9301395,6.2735858}; }; side="Empty"; flags=4; class Attributes { }; - id=1303; + id=2610; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item492 + class Item374 { dataType="Object"; class PositionInfo { - position[]={11737.067,49.132061,7848.5615}; - angles[]={0.052749533,3.291491,0.07824026}; + position[]={6503.8867,220.99249,3929.6372}; + angles[]={0.16644593,3.9301395,0.11311349}; }; side="Empty"; flags=4; class Attributes { }; - id=1304; + id=2611; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item493 + class Item375 { dataType="Object"; class PositionInfo { - position[]={11737.757,48.828449,7846.4351}; - angles[]={0.052750662,3.291491,0.076649368}; + position[]={6503.1729,220.81671,3927.5183}; + angles[]={0.19893262,3.9301395,0.079829417}; }; side="Empty"; flags=4; class Attributes { }; - id=1305; + id=2612; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item494 + class Item376 { dataType="Object"; class PositionInfo { - position[]={11743.689,49.334129,7845.5391}; - angles[]={0.051155224,3.291491,0.078239501}; + position[]={6555.3706,220.65236,3846.7791}; + angles[]={0.004796607,4.3126512,6.1182976}; }; side="Empty"; flags=4; class Attributes { }; - id=1306; + id=2613; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item495 + class Item377 { dataType="Object"; class PositionInfo { - position[]={11745.472,49.787521,7847.292}; - angles[]={0.051155224,3.291491,0.039979152}; + position[]={6557.7969,220.72351,3846.1758}; + angles[]={0.0048090173,4.3126512,6.119854}; }; side="Empty"; flags=4; class Attributes { }; - id=1307; + id=2614; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item496 + class Item378 { dataType="Object"; class PositionInfo { - position[]={11749.128,49.597477,7844.7173}; - angles[]={0.036783949,3.291491,0.054347586}; + position[]={6557.5112,220.31592,3841.7129}; + angles[]={0.0015822123,4.3126512,6.119854}; }; side="Empty"; flags=4; class Attributes { }; - id=1308; + id=2615; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item497 + class Item379 { dataType="Object"; class PositionInfo { - position[]={11753.876,50.140781,7846.0229}; - angles[]={0.036782328,3.291491,0.01919602}; + position[]={6561.1045,220.19861,3838.3459}; + angles[]={0.0015822123,4.3126512,6.119854}; }; side="Empty"; flags=4; class Attributes { }; - id=1309; + id=2616; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item498 + class Item380 { dataType="Object"; class PositionInfo { - position[]={11754.566,49.762825,7843.896}; - angles[]={0.036782328,3.291491,0.01919602}; + position[]={6559.6514,219.97273,3836.6465}; + angles[]={0.0032018756,4.3126512,6.119854}; }; side="Empty"; flags=4; class Attributes { }; - id=1310; + id=2617; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item499 + class Item381 { dataType="Object"; class PositionInfo { - position[]={11760.5,49.891708,7843}; - angles[]={0.012798273,3.291491,0.01919602}; + position[]={6561.9863,219.60513,3831.1196}; + angles[]={0,4.3126512,6.119854}; }; side="Empty"; flags=4; class Attributes { }; - id=1311; + id=2618; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item500 + class Item382 { dataType="Object"; class PositionInfo { - position[]={11762.281,50.354252,7844.7534}; - angles[]={0.030388586,3.291491,0.023993526}; + position[]={6564.4126,219.67595,3830.5161}; + angles[]={0.0015822123,4.3126512,6.119854}; }; side="Empty"; flags=4; class Attributes { }; - id=1312; + id=2619; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; + atlOffset=-1.5258789e-005; }; - class Item501 + class Item383 { dataType="Object"; class PositionInfo { - position[]={11765.938,49.979599,7842.1787}; - angles[]={0.0095994528,3.291491,0.012798273}; + position[]={6564.127,219.25505,3826.053}; + angles[]={0,4.3126512,6.1214113}; }; side="Empty"; flags=4; class Attributes { }; - id=1313; + id=2620; type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; }; - class Item502 + class Item384 { dataType="Object"; class PositionInfo { - position[]={11770.686,50.472553,7843.4844}; - angles[]={0.0095932409,3.291491,0}; + position[]={6567.7207,219.12688,3822.6863}; + angles[]={6.278389,4.3126512,6.1214113}; }; side="Empty"; flags=4; class Attributes { }; - id=1314; + id=2621; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; + atlOffset=1.5258789e-005; }; - class Item503 + class Item385 { dataType="Object"; class PositionInfo { - position[]={11770.387,50.079887,7841.5063}; - angles[]={0.0095932409,0.14989856,0}; + position[]={6566.2676,218.88602,3820.9866}; + angles[]={6.2767911,4.3126512,6.1229692}; }; side="Empty"; flags=4; class Attributes { }; - id=1315; - type="Land_HBarrier_3_F"; - atlOffset=7.6293945e-006; + id=2622; + type="Land_HBarrier_5_F"; }; - class Item504 + class Item386 { dataType="Object"; class PositionInfo { - position[]={11771.722,49.995289,7840.2939}; - angles[]={0.0095932409,4.862287,0}; + position[]={6568.6025,218.44691,3815.4597}; + angles[]={6.2687874,4.3126512,6.1229687}; }; side="Empty"; flags=4; class Attributes { }; - id=1316; - type="Land_HBarrier_1_F"; - atlOffset=3.8146973e-006; + id=2623; + type="Land_HBarrier_5_F"; }; - class Item505 + class Item387 { dataType="Object"; class PositionInfo { - position[]={11655.006,44.406151,7795.7241}; - angles[]={0.10362703,4.862287,0.15865518}; + position[]={6571.0283,218.48297,3814.8562}; + angles[]={6.2687874,4.3126512,6.1089687}; }; side="Empty"; flags=4; class Attributes { }; - id=1317; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2624; + type="Land_HBarrier_Big_F"; }; - class Item506 + class Item388 { dataType="Object"; class PositionInfo { - position[]={11649.396,43.396828,7797.0771}; - angles[]={0.050939117,0.18303493,6.1027765}; + position[]={6570.7427,217.96683,3810.3933}; + angles[]={6.2623887,4.3126512,6.0996752}; }; side="Empty"; flags=4; class Attributes { }; - id=1318; - type="Land_HBarrierWall_corridor_F"; - atlOffset=-0.00022125244; + id=2625; + type="Land_HBarrier_5_F"; }; - class Item507 + class Item389 { dataType="Object"; class PositionInfo { - position[]={11644.676,44.035225,7797.9253}; - angles[]={0.10204422,1.7256861,0.14771642}; + position[]={6574.3364,217.70041,3807.0264}; + angles[]={6.2527971,4.3126512,6.1089687}; }; side="Empty"; flags=4; class Attributes { }; - id=1319; - type="Land_HBarrierTower_F"; - atlOffset=3.8146973e-006; + id=2626; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item508 + class Item390 { dataType="Object"; class PositionInfo { - position[]={11655.966,40.664097,7840.584}; - angles[]={0.014168691,0.18303493,6.0794587}; + position[]={6572.8833,217.44064,3805.3269}; + angles[]={6.2368178,4.3126512,6.0996757}; }; side="Empty"; flags=4; class Attributes { }; - id=1320; - type="Land_HBarrierWall_corridor_F"; + id=2627; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item509 + class Item391 { dataType="Object"; class PositionInfo { - position[]={11651.247,41.44265,7841.4321}; - angles[]={0.065506049,1.7256861,0.12415794}; + position[]={6575.2188,216.74026,3799.7998}; + angles[]={6.2065368,4.3126512,6.0811791}; }; side="Empty"; flags=4; class Attributes { }; - id=1321; - type="Land_HBarrierTower_F"; - atlOffset=3.8146973e-006; + id=2628; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item510 + class Item392 { dataType="Object"; class PositionInfo { - position[]={11661.482,41.433689,7839.3633}; - angles[]={0.068692133,4.862287,0.12573342}; + position[]={6577.6445,216.66673,3799.1965}; + angles[]={6.2065368,4.3126512,6.0811791}; }; side="Empty"; flags=4; class Attributes { }; - id=1322; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2629; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item511 + class Item393 { dataType="Object"; class PositionInfo { - position[]={11658.027,41.073097,7837.4907}; - angles[]={0.076649368,4.862287,0.1288821}; + position[]={6577.3594,215.93617,3794.7334}; + angles[]={6.2144942,4.3126512,6.073513}; }; side="Empty"; flags=4; class Attributes { }; - id=1323; - type="Land_HBarrier_1_F"; - atlOffset=3.8146973e-006; + id=2630; + type="Land_HBarrier_5_F"; }; - class Item512 + class Item394 { dataType="Object"; class PositionInfo { - position[]={11651.327,43.970665,7793.8823}; - angles[]={0.10362703,4.862287,0.15865518}; + position[]={6580.9526,215.37883,3791.3667}; + angles[]={6.2017651,4.3126512,6.0735126}; }; side="Empty"; flags=4; class Attributes { }; - id=1324; - type="Land_HBarrier_1_F"; - atlOffset=3.8146973e-006; + id=2631; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item513 + class Item395 { dataType="Object"; class PositionInfo { - position[]={11766.379,54.261818,7764.7446}; - angles[]={0,1.7234354,0}; + position[]={6579.4995,215.07993,3789.6672}; + angles[]={6.2017651,4.3126512,6.0735126}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1325; - type="Land_Mil_WiredFence_Gate_F"; - atlOffset=3.8146973e-006; + id=2632; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item514 + class Item396 { dataType="Object"; class PositionInfo { - position[]={11772.011,50.010357,7827.7573}; - angles[]={0.001544081,4.862287,0}; - }; + position[]={6581.8345,214.29814,3784.1401}; + angles[]={6.2543945,4.3126512,6.0552187}; + }; side="Empty"; flags=4; class Attributes { }; - id=1326; - type="Land_WaterTank_F"; - atlOffset=-0.00015258789; + id=2633; + type="Land_HBarrier_5_F"; }; - class Item515 + class Item397 { dataType="Object"; class PositionInfo { - position[]={11770.525,50.009705,7827.9829}; - angles[]={0.001544081,4.862287,0}; + position[]={6584.2607,214.18741,3783.5369}; + angles[]={6.2543945,4.3126512,6.0552187}; }; side="Empty"; flags=4; class Attributes { }; - id=1327; - type="Land_WaterTank_F"; - atlOffset=-0.00044250488; + id=2634; + type="Land_HBarrier_Big_F"; }; - class Item516 + class Item398 { dataType="Object"; class PositionInfo { - position[]={11770.149,50.013092,7825.5112}; - angles[]={0.001544081,1.7206945,0}; + position[]={6548.9492,221.59848,3861.9783}; + angles[]={0.0095994528,4.3126512,6.1386008}; }; side="Empty"; flags=4; class Attributes { }; - id=1328; - type="Land_WaterTank_F"; - atlOffset=-0.0010108948; + id=2635; + type="Land_HBarrier_5_F"; }; - class Item517 + class Item399 { dataType="Object"; class PositionInfo { - position[]={11771.635,50.013435,7825.2871}; - angles[]={0.001544081,1.7206945,0}; + position[]={6551.375,221.69583,3861.375}; + angles[]={0.0032018756,4.3126512,6.1260924}; }; side="Empty"; flags=4; class Attributes { }; - id=1329; - type="Land_WaterTank_F"; - atlOffset=-0.0010261536; + id=2636; + type="Land_HBarrier_Big_F"; }; - class Item518 + class Item400 { dataType="Object"; class PositionInfo { - position[]={11829.444,50.101715,7754.5874}; - angles[]={0.0095994528,1.7206945,6.271987}; + position[]={6551.0898,221.31461,3856.9121}; + angles[]={0.0095994528,4.3126512,6.119854}; }; side="Empty"; flags=4; class Attributes { }; - id=1330; - type="Land_PowerGenerator_F"; + id=2637; + type="Land_HBarrier_5_F"; }; - class Item519 + class Item401 { dataType="Object"; class PositionInfo { - position[]={11833.504,57.724926,7753.8477}; - angles[]={0,4.862287,0}; + position[]={6554.6831,221.20692,3853.5452}; + angles[]={0.0032018756,4.3126512,6.119854}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1331; - type="Land_TTowerSmall_2_F"; - atlOffset=3.8146973e-006; + id=2638; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item520 + class Item402 { dataType="Object"; class PositionInfo { - position[]={11642.477,46.336067,7776.3779}; - angles[]={0.3398782,3.291491,0.1335994}; + position[]={6553.23,220.98425,3851.8457}; + angles[]={0.004796607,4.3126512,6.1182976}; }; side="Empty"; flags=4; class Attributes { }; - id=1332; - type="Land_DragonsTeeth_01_4x2_new_redwhite_F"; - atlOffset=7.6293945e-006; + id=2639; + type="Land_HBarrier_5_F"; }; - class Item521 + class Item403 { dataType="Object"; class PositionInfo { - position[]={11655.096,38.638248,7859.9302}; - angles[]={0.13988063,3.291491,0.14458413}; + position[]={6410.918,216.69241,3900.7048}; + angles[]={6.2448058,2.6710341,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=1333; - type="Land_DragonsTeeth_01_4x2_new_redwhite_F"; - atlOffset=3.8146973e-006; + id=2640; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; }; - class Item522 + class Item404 { dataType="Object"; class PositionInfo { - position[]={11657.223,43.030869,7812.0767}; - angles[]={0.10521051,4.862287,0.15865518}; + position[]={6411.3477,217.36053,3903.1677}; + angles[]={6.1954112,2.6710341,0.059131995}; }; side="Empty"; flags=4; class Attributes { }; - id=1334; - type="Land_HBarrier_5_F"; + id=2641; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item523 + class Item405 { dataType="Object"; class PositionInfo { - position[]={11658.044,42.642387,7817.5142}; - angles[]={0.097292177,4.862287,0.15553378}; + position[]={6415.8198,217.24095,3903.1987}; + angles[]={6.2049446,2.6710341,0.075058997}; }; side="Empty"; flags=4; class Attributes { }; - id=1335; + id=2642; type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; }; - class Item524 + class Item406 { dataType="Object"; class PositionInfo { - position[]={11654.107,42.685081,7811.5352}; - angles[]={0.10520995,4.862287,0.14144896}; + position[]={6418.9238,218.19569,3907.0212}; + angles[]={6.2751918,2.6710341,0.11153413}; }; side="Empty"; flags=4; class Attributes { }; - id=1336; - type="Land_HBarrier_3_F"; + id=2643; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item525 + class Item407 { dataType="Object"; class PositionInfo { - position[]={11650.796,42.003944,7813.0469}; - angles[]={0.090948075,0.14989856,0.14144896}; + position[]={6420.7222,217.92413,3905.6919}; + angles[]={0.004796607,2.6710341,0.11153467}; }; side="Empty"; flags=4; class Attributes { }; - id=1337; + id=2644; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=4.5776367e-005; }; - class Item526 + class Item408 { dataType="Object"; class PositionInfo { - position[]={11651.991,41.485252,7820.9575}; - angles[]={0.073468372,0.14989856,0.13831106}; + position[]={6426.0698,218.37373,3908.4121}; + angles[]={0.049559005,2.6710341,0.075058997}; }; side="Empty"; flags=4; class Attributes { }; - id=1338; + id=2645; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item527 + class Item409 { dataType="Object"; class PositionInfo { - position[]={11647.438,41.6292,7817.5996}; - angles[]={0.090948075,4.862287,0.12258231}; + position[]={6426.5,218.7534,3910.875}; + angles[]={0.049559005,2.6710341,0.075058997}; }; side="Empty"; flags=4; class Attributes { }; - id=1339; + id=2646; type="Land_HBarrier_Big_F"; - atlOffset=-9.5367432e-005; }; - class Item528 + class Item410 { dataType="Object"; class PositionInfo { - position[]={11632.094,44.012188,7777.9463}; - angles[]={0.1973955,3.291491,0.28483859}; + position[]={6430.9722,218.4646,3910.906}; + angles[]={0.08459802,2.6710341,0.039979152}; }; side="Empty"; flags=4; class Attributes { }; - id=1340; - type="Land_DragonsTeeth_01_4x2_new_redwhite_F"; - atlOffset=3.8146973e-006; + id=2647; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item529 + class Item411 { dataType="Object"; class PositionInfo { - position[]={11644.713,37.072491,7861.4985}; - angles[]={0.11942852,3.291491,0.13202716}; + position[]={6434.0762,219.04439,3914.7288}; + angles[]={6.2591896,2.6710341,0.063912325}; }; side="Empty"; flags=4; class Attributes { }; - id=1341; - type="Land_DragonsTeeth_01_4x2_new_redwhite_F"; - atlOffset=3.8146973e-006; + id=2648; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item530 + class Item412 { dataType="Object"; class PositionInfo { - position[]={11637.455,38.038055,7846.9189}; - angles[]={0.076649368,4.862287,0.081419133}; + position[]={6435.8745,218.65807,3913.3997}; + angles[]={6.2591896,2.6710341,0.063912325}; }; side="Empty"; flags=4; class Attributes { }; - id=1342; - type="Land_Razorwire_F"; - atlOffset=3.8146973e-006; + id=2649; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item531 + class Item413 { dataType="Object"; class PositionInfo { - position[]={11640.635,38.976982,7837.8423}; - angles[]={0.055942677,4.862287,0.1146941}; + position[]={6441.2222,218.92622,3916.1199}; + angles[]={0.059129976,2.6710341,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1343; - type="Land_Razorwire_F"; - atlOffset=3.8146973e-006; + id=2650; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item532 + class Item414 { dataType="Object"; class PositionInfo { - position[]={11634.916,38.830086,7830.1099}; - angles[]={0.065506049,4.862287,0.09253557}; + position[]={6441.6528,219.24995,3918.5823}; + angles[]={0.059129976,2.6710341,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1344; - type="Land_Razorwire_F"; + id=2651; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item533 + class Item415 { dataType="Object"; class PositionInfo { - position[]={11638.096,39.736103,7821.0332}; - angles[]={0.063912325,4.862287,0.12888163}; + position[]={6446.1245,219.05836,3918.613}; + angles[]={0.0766517,2.6710341,0.11627284}; }; side="Empty"; flags=4; class Attributes { }; - id=1345; - type="Land_Razorwire_F"; - atlOffset=3.8146973e-006; + id=2652; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; }; - class Item534 + class Item416 { dataType="Object"; class PositionInfo { - position[]={11632.377,39.582451,7813.3003}; - angles[]={0.060726274,4.862287,0.12888163}; + position[]={6449.2285,219.84012,3922.436}; + angles[]={0.027193764,2.6710341,0.038379833}; }; side="Empty"; flags=4; class Attributes { }; - id=1346; - type="Land_Razorwire_F"; - atlOffset=3.8146973e-006; + id=2653; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item535 + class Item417 { dataType="Object"; class PositionInfo { - position[]={11635.558,40.683414,7804.2236}; - angles[]={0.08459802,4.862287,0.1398802}; + position[]={6451.0269,219.58266,3921.1069}; + angles[]={0.027193764,2.6710341,0.14144896}; }; side="Empty"; flags=4; class Attributes { }; - id=1347; - type="Land_Razorwire_F"; - atlOffset=7.6293945e-006; + id=2654; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item536 + class Item418 { dataType="Object"; class PositionInfo { - position[]={11629.838,40.497459,7796.4907}; - angles[]={0.089361846,4.862287,0.13517068}; + position[]={6456.375,219.69394,3923.8276}; + angles[]={0.13831063,2.6710341,0.0814206}; }; side="Empty"; flags=4; class Attributes { }; - id=1348; - type="Land_Razorwire_F"; + id=2655; + type="Land_HBarrier_5_F"; }; - class Item537 + class Item419 { dataType="Object"; class PositionInfo { - position[]={11654.813,47.573196,7776.0317}; - angles[]={0.29512221,3.291491,0.067099303}; + position[]={6456.8047,220.03941,3926.29}; + angles[]={0.0015822123,2.6710341,0.09253493}; }; side="Empty"; flags=4; class Attributes { }; - id=1349; - type="Land_HBarrierWall6_F"; - atlOffset=-9.9182129e-005; + id=2656; + type="Land_HBarrier_Big_F"; }; - class Item538 + class Item420 { dataType="Object"; class PositionInfo { - position[]={11688.432,52.159119,7770.9546}; - angles[]={0.13988063,0.14989856,0.065506049}; + position[]={6461.2769,219.97879,3926.3213}; + angles[]={0.063912325,2.6710341,0.030392511}; }; side="Empty"; flags=4; class Attributes { }; - id=1350; - type="Land_HBarrier_3_F"; - atlOffset=7.6293945e-006; + id=2657; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item539 + class Item421 { dataType="Object"; class PositionInfo { - position[]={11776.625,51.29834,7829}; - angles[]={0,0.14989856,0}; + position[]={6464.3809,220.28947,3930.1438}; + angles[]={0.094122365,2.6710341,0.0079935296}; }; side="Empty"; + flags=4; class Attributes { }; - id=1351; - type="Land_HBarrier_3_F"; - atlOffset=1.1790009; + id=2658; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item540 + class Item422 { dataType="Object"; class PositionInfo { - position[]={11778.25,51.29834,7836.75}; - angles[]={0,0.14989856,0}; + position[]={6466.1792,219.95982,3928.8147}; + angles[]={0.094122365,2.6710341,0.0079935296}; }; side="Empty"; + flags=4; class Attributes { }; - id=1352; - type="Land_HBarrier_3_F"; - atlOffset=1.1800003; + id=2659; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item541 + class Item423 { dataType="Object"; class PositionInfo { - position[]={11767,53.79834,7768.75}; - angles[]={0,0.14989856,0}; + position[]={6471.5269,219.8454,3931.5349}; + angles[]={0.025592413,2.6710341,0.036785569}; }; side="Empty"; + flags=4; class Attributes { }; - id=1353; - type="Land_HBarrier_3_F"; - atlOffset=1.1643944; + id=2660; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item542 + class Item424 { dataType="Object"; class PositionInfo { - position[]={11767.274,64.186905,7770.6772}; - angles[]={0.01919602,3.2914908,6.2527947}; + position[]={6471.957,220.26768,3933.9978}; + angles[]={0.025592413,2.6710341,0.036785569}; }; side="Empty"; flags=4; class Attributes { }; - id=1354; - type="Land_LampAirport_F"; + id=2661; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item543 + class Item425 { dataType="Object"; class PositionInfo { - position[]={11776.281,61.743866,7826.9634}; - angles[]={0.0015822123,0.14989856,6.2816033}; + position[]={6396.6411,216.33041,3895.6865}; + angles[]={6.1748133,2.6710341,0.19123295}; }; side="Empty"; flags=4; class Attributes { }; - id=1355; - type="Land_LampAirport_F"; - atlOffset=3.8146973e-006; + id=2662; + type="Land_HBarrier_Big_F"; }; - class Item544 + class Item426 { dataType="Object"; class PositionInfo { - position[]={11671.962,45.244957,7815.918}; - angles[]={0,3.291491,0}; + position[]={6401.1128,216.32187,3895.7178}; + angles[]={6.2623858,2.6710341,6.2655869}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1356; - type="Land_PortableLight_single_F"; - atlOffset=7.6293945e-006; + id=2663; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item545 + class Item427 { dataType="Object"; class PositionInfo { - position[]={11671.364,45.560036,7811.9634}; - angles[]={0,0.14989856,0}; + position[]={6404.2173,216.99661,3899.5403}; + angles[]={6.2144923,2.6710341,0.030390549}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1357; - type="Land_PortableLight_single_F"; - atlOffset=7.6293945e-006; + id=2664; + type="Land_HBarrier_Big_F"; + atlOffset=4.5776367e-005; }; - class Item546 + class Item428 { dataType="Object"; class PositionInfo { - position[]={11699.647,48.192921,7811.7368}; - angles[]={0,3.291491,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1358; - type="Land_PortableLight_single_F"; - atlOffset=7.6293945e-006; - }; - class Item547 - { - dataType="Object"; - class PositionInfo - { - position[]={11699.051,48.523136,7807.7817}; - angles[]={0,0.14989856,0}; + position[]={6406.0151,216.49031,3898.2112}; + angles[]={6.2144923,2.6710341,0.030390549}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1359; - type="Land_PortableLight_single_F"; - atlOffset=7.6293945e-006; + id=2665; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; }; - class Item548 + class Item429 { dataType="Object"; class PositionInfo { - position[]={11728.249,51.232285,7806.9116}; - angles[]={0,3.291491,0}; + position[]={6476.271,219.82942,3934.1775}; + angles[]={0.054348685,2.6710341,0.0064037596}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1360; - type="Land_PortableLight_single_F"; - atlOffset=3.8146973e-006; + id=2666; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; }; - class Item549 + class Item430 { dataType="Object"; class PositionInfo { - position[]={11727.801,51.43721,7803.9453}; - angles[]={0,0.14989856,0}; + position[]={6479.375,220.02481,3938}; + angles[]={0.030388586,2.6710341,6.2671871}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1361; - type="Land_PortableLight_single_F"; - atlOffset=7.6293945e-006; + id=2667; + type="Land_HBarrier_Big_F"; }; - class Item550 + class Item431 { dataType="Object"; class PositionInfo { - position[]={11649.03,49.711456,7777.9165}; - angles[]={0,1.7206945,0}; + position[]={6481.1733,219.60544,3936.6709}; + angles[]={0.076648585,2.6710341,6.2671909}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1362; - type="Land_LampSolar_F"; - atlOffset=3.8146973e-006; + id=2668; + type="Land_HBarrier_5_F"; }; - class Item551 + class Item432 { dataType="Object"; class PositionInfo { - position[]={11660.929,43.090851,7857.5327}; - angles[]={0,4.862287,0}; + position[]={6486.521,219.36827,3939.3911}; + angles[]={0.038379833,2.6710341,6.2623887}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1363; - type="Land_LampSolar_F"; - atlOffset=3.8146973e-006; + id=2669; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; }; - class Item552 + class Item433 { dataType="Object"; class PositionInfo { - position[]={11799.516,60.852928,7795.6177}; - angles[]={0,1.7206945,0}; + position[]={6486.9512,219.73427,3941.854}; + angles[]={0.038379833,2.6710341,6.2623887}; }; side="Empty"; + flags=4; class Attributes { }; - id=1364; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=7.7765961; + id=2670; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item553 + class Item434 { dataType="Object"; class PositionInfo { - position[]={11797.551,54.672554,7785.3198}; - angles[]={0,1.7206945,0}; + position[]={6493.375,219.79037,3940.125}; + angles[]={6.2208662,3.9301395,0.062319059}; }; side="Empty"; + flags=4; class Attributes { }; - id=1365; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=1.1636887; + id=2671; + type="Land_HBarrier_Big_F"; }; - class Item554 + class Item435 { dataType="Object"; class PositionInfo { - position[]={11780.715,54.607712,7804.4233}; - angles[]={0,0.14989856,0}; + position[]={6491.375,219.19972,3939.375}; + angles[]={0.03837828,3.9301395,6.2448072}; }; side="Empty"; + flags=4; class Attributes { }; - id=1366; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=0.99996948; + id=2672; + type="Land_HBarrier_5_F"; }; - class Item555 + class Item436 { dataType="Object"; class PositionInfo { - position[]={11782.75,54.636341,7817.896}; - angles[]={0,0.14989856,0}; + position[]={6583.1133,213.9183,3779.5825}; + angles[]={0,4.6438065,6.0552192}; }; side="Empty"; + flags=4; class Attributes { }; - id=1367; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=1.7089539; + id=2673; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; }; - class Item556 + class Item437 { dataType="Object"; class PositionInfo { - position[]={11810.766,50.483837,7790.7827}; - angles[]={0.017598685,1.7206945,6.2304349}; + position[]={6585.417,213.86214,3775.23}; + angles[]={0.004796607,4.6438065,6.0506692}; }; side="Empty"; flags=4; class Attributes { }; - id=1368; + id=2674; type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item557 + class Item438 { dataType="Object"; class PositionInfo { - position[]={11800.189,50.089451,7806.1611}; - angles[]={0.017595299,3.291491,6.2400126}; + position[]={6583.4907,213.85858,3774.0952}; + angles[]={0.0095994528,4.6438065,6.0506692}; }; side="Empty"; flags=4; class Attributes { }; - id=1369; - type="Land_PressureWasher_01_F"; - atlOffset=-0.00016403198; + id=2675; + type="Land_HBarrier_5_F"; }; - class Item558 + class Item439 { dataType="Object"; class PositionInfo { - position[]={11804.706,50.10498,7790.1064}; - angles[]={0.017598685,1.7206945,6.2352223}; + position[]={6583.9019,213.82713,3768.1091}; + angles[]={0.004796607,4.6438065,6.0476403}; }; side="Empty"; flags=4; class Attributes { }; - id=1370; - type="Land_AirConditioner_03_F"; - atlOffset=7.6293945e-006; + id=2676; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item559 + class Item440 { dataType="Object"; class PositionInfo { - position[]={11796.104,50.723473,7779.4902}; - angles[]={0.017598685,3.291491,6.2304335}; + position[]={6586,213.79959,3766.75}; + angles[]={0.004796607,4.6438065,6.0476403}; }; side="Empty"; flags=4; class Attributes { }; - id=1371; - type="Land_AirConditioner_02_F"; - atlOffset=3.8146973e-006; + id=2677; + type="Land_HBarrier_Big_F"; }; - class Item560 + class Item441 { dataType="Object"; class PositionInfo { - position[]={11780.28,49.827152,7825.7031}; - angles[]={0.0015822123,5.6476855,6.2816033}; + position[]={6584.2788,213.77293,3762.6221}; + angles[]={0.0080009829,4.6438065,6.0446162}; }; side="Empty"; flags=4; class Attributes { }; - id=1372; - type="Land_AirConditioner_04_F"; - atlOffset=3.8146973e-006; + id=2678; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item561 + class Item442 { dataType="Object"; class PositionInfo { - position[]={11806.471,61.868122,7793.71}; - angles[]={0.017598685,4.862287,6.2304349}; + position[]={6586.5825,213.71709,3758.27}; + angles[]={0.0080009829,4.6438065,6.0446162}; }; side="Empty"; flags=4; class Attributes { }; - id=1373; - type="Land_LampAirport_F"; + id=2679; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item562 + class Item443 { dataType="Object"; class PositionInfo { - position[]={11665.73,44.114113,7814.8369}; - angles[]={0.097292177,0.14989856,0.15709512}; + position[]={6584.6558,213.71889,3757.1355}; + angles[]={0.004796607,4.6438065,6.0476403}; }; side="Empty"; flags=4; class Attributes { }; - id=1374; + id=2680; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item563 + class Item444 { dataType="Object"; class PositionInfo { - position[]={11671.416,45.021297,7813.978}; - angles[]={0.10046093,0.14989856,0.1304549}; + position[]={6585.0669,213.6692,3751.1492}; + angles[]={6.2799835,4.6438065,6.0628242}; }; side="Empty"; flags=4; class Attributes { }; - id=1375; + id=2681; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item564 + class Item445 { dataType="Object"; class PositionInfo { - position[]={11677.102,45.766617,7813.1191}; - angles[]={0.089361846,0.14989856,0.086185835}; + position[]={6587.165,213.6701,3749.7898}; + angles[]={0.02399601,4.6438065,6.0628242}; }; side="Empty"; flags=4; class Attributes { }; - id=1376; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2682; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item565 + class Item446 { dataType="Object"; class PositionInfo { - position[]={11682.787,46.321362,7812.2607}; - angles[]={0.10520938,0.14989856,0.075058997}; + position[]={6585.1987,213.69928,3747.3684}; + angles[]={0.02399601,5.4027257,6.0628242}; }; side="Empty"; flags=4; class Attributes { }; - id=1377; + id=2683; type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item566 + class Item447 { dataType="Object"; class PositionInfo { - position[]={11688.474,46.844414,7811.4019}; - angles[]={0.10520995,0.14989856,0.079830162}; + position[]={6583.875,214.53731,3742.625}; + angles[]={0.03838294,5.4027257,6.0781093}; }; side="Empty"; flags=4; class Attributes { }; - id=1378; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2684; + type="Land_HBarrier_Big_F"; }; - class Item567 + class Item448 { dataType="Object"; class PositionInfo { - position[]={11660.786,43.318634,7815.583}; - angles[]={0.097292177,0.14989856,0.15553378}; + position[]={6581.6963,214.49849,3743.1272}; + angles[]={0.0207968,5.4027257,6.095037}; }; side="Empty"; flags=4; class Attributes { }; - id=1379; - type="Land_HBarrier_3_F"; - atlOffset=3.8146973e-006; + id=2685; + type="Land_HBarrier_5_F"; }; - class Item568 + class Item449 { dataType="Object"; class PositionInfo { - position[]={11676.946,41.984497,7855.6187}; - angles[]={0.10204422,3.291491,0.10204422}; + position[]={6577.8755,215.18224,3738.5007}; + angles[]={0.0095994528,5.4027257,6.1386032}; }; side="Empty"; flags=4; class Attributes { }; - id=1380; + id=2686; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item569 + class Item450 { dataType="Object"; class PositionInfo { - position[]={11678.729,42.435329,7857.3726}; - angles[]={0.12100551,3.291491,0.10204422}; + position[]={6578.4624,215.60564,3736.0708}; + angles[]={0.0207968,5.4027257,6.1386032}; }; side="Empty"; flags=4; class Attributes { }; - id=1381; + id=2687; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item570 + class Item451 { dataType="Object"; class PositionInfo { - position[]={11682.386,42.636414,7854.7979}; - angles[]={0.10204422,3.291491,0.11153574}; + position[]={6574.373,215.7552,3734.26}; + angles[]={0.0207968,5.4027257,6.1606021}; }; side="Empty"; flags=4; class Attributes { }; - id=1382; + id=2688; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=3.0517578e-005; }; - class Item571 + class Item452 { dataType="Object"; class PositionInfo { - position[]={11687.134,43.439819,7856.103}; - angles[]={0.11311506,3.291491,0.10046093}; + position[]={6573.0498,216.45267,3729.5171}; + angles[]={0.017598685,5.4027257,6.1748128}; }; side="Empty"; flags=4; class Attributes { }; - id=1383; + id=2689; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; }; - class Item572 + class Item453 { dataType="Object"; class PositionInfo { - position[]={11687.823,43.285973,7853.9766}; - angles[]={0.11311506,3.291491,0.11469462}; + position[]={6570.8711,216.21141,3730.0198}; + angles[]={0.017598685,5.4027257,6.1748128}; }; side="Empty"; flags=4; class Attributes { }; - id=1384; + id=2690; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item573 + class Item454 { dataType="Object"; class PositionInfo { - position[]={11670.324,41.417274,7858.6416}; - angles[]={0.10995446,3.291491,0.10837335}; + position[]={6566.75,217.06003,3724.25}; + angles[]={6.2816033,5.7879038,6.2176795}; }; side="Empty"; flags=4; class Attributes { }; - id=1385; + id=2693; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item574 + class Item455 { dataType="Object"; class PositionInfo { - position[]={11671.015,41.257656,7856.5151}; - angles[]={0.10995446,3.291491,0.10837335}; + position[]={6564.9199,216.72116,3725.5344}; + angles[]={6.2655869,5.7879038,6.2176785}; }; side="Empty"; flags=4; class Attributes { }; - id=1386; + id=2694; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item575 + class Item456 { dataType="Object"; class PositionInfo { - position[]={11667.059,40.790382,7857.1123}; - angles[]={0.13045534,0.14989856,0.1146941}; + position[]={6559.6406,216.98526,3722.6824}; + angles[]={6.2655869,5.7879038,6.2288389}; }; side="Empty"; flags=4; class Attributes { }; - id=1387; - type="Land_HBarrier_3_F"; - atlOffset=7.6293945e-006; + id=2695; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item576 + class Item457 { dataType="Object"; class PositionInfo { - position[]={11684.477,51.610733,7771.5518}; - angles[]={0.17421561,0.14989856,0.081419863}; + position[]={6559.2715,217.41719,3720.21}; + angles[]={6.2575908,5.7879038,6.2368193}; }; side="Empty"; flags=4; class Attributes { }; - id=1388; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2696; + type="Land_HBarrier_Big_F"; }; - class Item577 + class Item458 { dataType="Object"; class PositionInfo { - position[]={11682.201,52.190052,7769.8726}; - angles[]={0.17421561,0.14989856,0.081419863}; + position[]={6554.8018,217.17126,3720.0681}; + angles[]={6.2495971,5.7879038,6.2304349}; }; side="Empty"; flags=4; class Attributes { }; - id=1389; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2697; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item578 + class Item459 { dataType="Object"; class PositionInfo { - position[]={11680.027,51.11087,7772.2241}; - angles[]={0.17421561,0.14989856,0.14301692}; + position[]={6551.793,217.69789,3716.1699}; + angles[]={6.2575908,5.7879038,6.2352223}; }; side="Empty"; flags=4; class Attributes { }; - id=1390; - type="Land_HBarrier_3_F"; - atlOffset=3.8146973e-006; + id=2698; + type="Land_HBarrier_Big_F"; }; - class Item579 + class Item460 { dataType="Object"; class PositionInfo { - position[]={11675.578,50.340588,7772.8955}; - angles[]={0.20354189,0.14989856,0.11311506}; + position[]={6549.9629,217.34969,3717.4543}; + angles[]={6.2575908,5.7879038,6.2208662}; }; side="Empty"; flags=4; class Attributes { }; - id=1391; + id=2699; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item580 + class Item461 { dataType="Object"; class PositionInfo { - position[]={11673.302,50.862644,7771.2168}; - angles[]={0.20354189,0.14989856,0.1335994}; + position[]={6544.6836,217.57526,3714.6028}; + angles[]={6.2480001,5.7879038,6.2304349}; }; side="Empty"; flags=4; class Attributes { }; - id=1392; - type="Land_HBarrier_Big_F"; + id=2700; + type="Land_HBarrier_5_F"; }; - class Item581 + class Item462 { dataType="Object"; class PositionInfo { - position[]={11671.129,49.67363,7773.5679}; - angles[]={0.20354189,0.14989856,0.1335994}; + position[]={6544.3145,217.98488,3712.1301}; + angles[]={6.2687912,5.7879038,6.2304349}; }; side="Empty"; flags=4; class Attributes { }; - id=1393; - type="Land_HBarrier_3_F"; + id=2701; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item582 + class Item463 { dataType="Object"; class PositionInfo { - position[]={11666.679,48.939068,7774.2402}; - angles[]={0.22492847,0.14989856,0.11311506}; + position[]={6522.771,217.37057,3702.5486}; + angles[]={6.2017665,5.7879038,6.2687831}; }; side="Empty"; flags=4; class Attributes { }; - id=1394; + id=2702; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item583 + class Item464 { dataType="Object"; class PositionInfo { - position[]={11664.402,49.535858,7772.561}; - angles[]={0.22796741,0.14989856,0.10995446}; + position[]={6522.4019,217.63959,3700.0759}; + angles[]={6.2001762,5.7879038,6.2703824}; }; side="Empty"; flags=4; class Attributes { }; - id=1395; + id=2703; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item584 + class Item465 { dataType="Object"; class PositionInfo { - position[]={11662.229,48.354401,7774.9121}; - angles[]={0.22796714,0.14989856,0.052750662}; + position[]={6517.9321,217.17899,3699.9346}; + angles[]={6.201767,5.7879038,0.031988446}; }; side="Empty"; flags=4; class Attributes { }; - id=1396; - type="Land_HBarrier_3_F"; - atlOffset=4.5776367e-005; - }; - class Item585 - { - dataType="Object"; - class PositionInfo - { - position[]={11659.459,49.067749,7773.3076}; - angles[]={0,3.291491,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1397; - type="Land_SandbagBarricade_01_F"; - atlOffset=3.8146973e-006; - }; - class Item586 - { - dataType="Object"; - class PositionInfo - { - position[]={11664.601,40.09697,7859.2534}; - angles[]={0,0.14989856,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1398; - type="Land_SandbagBarricade_01_half_F"; - atlOffset=3.8146973e-006; + id=2704; + type="Land_HBarrier_5_F"; }; - class Item587 + class Item466 { dataType="Object"; class PositionInfo { - position[]={11664.714,39.762905,7859.9951}; - angles[]={0.13045534,0.14989856,0.1146941}; + position[]={6514.9233,217.2415,3696.0364}; + angles[]={6.2065344,5.7879038,0.027195957}; }; side="Empty"; flags=4; class Attributes { }; - id=1399; - type="Land_BagFence_Long_F"; - atlOffset=3.8146973e-006; - }; - class Item588 - { - dataType="Object"; - class PositionInfo - { - position[]={11730.114,50.02932,7819.2715}; - angles[]={0,3.291491,0}; - }; - side="Empty"; - class Attributes - { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; - }; - id=1400; - type="Land_HelipadSquare_F"; - atlOffset=0.75; + id=2705; + type="Land_HBarrier_Big_F"; }; - class Item589 + class Item467 { dataType="Object"; class PositionInfo { - position[]={11701.44,47.24115,7823.6025}; - angles[]={0,3.291491,0}; + position[]={6513.0928,216.82088,3697.3208}; + angles[]={6.2065344,5.7879038,0.027195957}; }; side="Empty"; + flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=1401; - type="Land_HelipadSquare_F"; - atlOffset=0.74999619; + id=2706; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item590 + class Item468 { dataType="Object"; class PositionInfo { - position[]={11673.754,43.34174,7827.7837}; - angles[]={0.094121099,3.291491,0.13987978}; + position[]={6507.814,216.46751,3694.4692}; + angles[]={6.2144933,5.7879038,0.023993526}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=1402; - type="Land_HelipadSquare_F"; + id=2707; + type="Land_HBarrier_5_F"; }; - class Item591 + class Item469 { dataType="Object"; class PositionInfo { - position[]={11725.972,51.273018,7791.8325}; - angles[]={0.086186528,0.14989856,0.038381387}; + position[]={6507.4448,216.76299,3691.9966}; + angles[]={6.2097173,5.7879038,0.035185181}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=1403; - type="Land_HelipadSquare_F"; - atlOffset=3.8146973e-006; + id=2708; + type="Land_HBarrier_Big_F"; }; - class Item592 + class Item470 { dataType="Object"; class PositionInfo { - position[]={11697.296,48.775669,7796.1631}; - angles[]={0.14144938,0.14989856,0.081419133}; + position[]={6502.9746,215.96327,3691.855}; + angles[]={6.2097173,5.7879038,0.084597312}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=1404; - type="Land_HelipadSquare_F"; - atlOffset=3.8146973e-006; + id=2709; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item593 + class Item471 { dataType="Object"; class PositionInfo { - position[]={11669.61,45.441444,7800.3447}; - angles[]={0.10362645,0.14989856,0.12415843}; + position[]={6499.9658,215.63268,3687.9565}; + angles[]={6.1653333,5.7879038,0.039979152}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=1405; - type="Land_HelipadSquare_F"; - atlOffset=3.8146973e-006; + id=2710; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item594 + class Item472 { dataType="Object"; class PositionInfo { - position[]={11858.873,46.552174,7818.0288}; - angles[]={0.004796607,1.7206945,6.1874781}; + position[]={6498.1353,215.23949,3689.241}; + angles[]={6.144875,5.7879038,0.060723327}; }; side="Empty"; flags=4; class Attributes { }; - id=1406; + id=2711; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item595 + class Item473 { dataType="Object"; class PositionInfo { - position[]={11860.627,46.861828,7816.2471}; - angles[]={0.004796607,1.7206945,6.1874781}; + position[]={6537.2881,217.73567,3710.3909}; + angles[]={6.2208652,5.7879038,6.2511935}; }; side="Empty"; flags=4; class Attributes { }; - id=1407; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2712; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item596 + class Item474 { dataType="Object"; class PositionInfo { - position[]={11859.432,47.029839,7808.3369}; - angles[]={0.004796607,1.7206945,6.1922374}; + position[]={6536.9189,218.0627,3707.9185}; + angles[]={6.2208652,5.7879038,6.2511935}; }; side="Empty"; flags=4; class Attributes { }; - id=1408; + id=2713; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + atlOffset=-1.5258789e-005; }; - class Item597 + class Item475 { dataType="Object"; class PositionInfo { - position[]={11858.052,46.657158,7812.5908}; - angles[]={0.004796607,1.7206945,6.187479}; + position[]={6532.4492,217.65973,3707.7766}; + angles[]={6.2017641,5.7879038,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=1409; + id=2714; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item598 + class Item476 { dataType="Object"; class PositionInfo { - position[]={11857.23,46.766777,7807.1523}; - angles[]={0.004796607,1.7206945,6.1922374}; + position[]={6529.4404,217.87532,3703.8784}; + angles[]={6.2113104,5.7879038,6.2687874}; }; side="Empty"; flags=4; class Attributes { }; - id=1410; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2715; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item599 + class Item477 { dataType="Object"; class PositionInfo { - position[]={11856.409,46.867817,7801.7144}; - angles[]={0.004796607,1.7206945,6.1922374}; + position[]={6527.6099,217.52466,3705.1628}; + angles[]={6.2113104,5.7879038,6.2687874}; }; side="Empty"; flags=4; class Attributes { }; - id=1411; + id=2716; type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + atlOffset=1.5258789e-005; }; - class Item600 + class Item478 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={11858.162,47.185856,7799.9326}; - angles[]={0.0031832056,1.7206945,6.1922374}; + position[]={6524.5,218.875,3703}; + angles[]={0,5.9300461,0}; }; - side="Empty"; - flags=4; - class Attributes + areaSize[]={2.1719999,0,6.0549998}; + areaIsRectangle=1; + flags=1; + id=2717; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.83222961; + class CustomAttributes { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; }; - id=1412; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item601 + class Item479 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={11856.969,47.352077,7792.0215}; - angles[]={0.0064037596,1.7206945,6.1874781}; - }; - side="Empty"; - flags=4; - class Attributes - { + position[]={6508.4414,216.36656,3691.2664}; + angles[]={0,4.8049746,0}; + }; + areaSize[]={2.1719999,0,6.0549998}; + areaIsRectangle=1; + flags=1; + id=2718; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.83222961; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; }; - id=1413; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item602 + class Item480 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={11855.588,46.98283,7796.2759}; - angles[]={0.0079935296,1.7206945,6.189065}; + position[]={6576.6021,217.13634,3793.1047}; + angles[]={0,4.5601711,0}; }; - side="Empty"; - flags=4; - class Attributes + areaSize[]={2.1719999,0,4.1310802}; + areaIsRectangle=1; + flags=1; + id=2719; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.8999481; + class CustomAttributes { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; }; - id=1414; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item603 + class Item481 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={11854.766,47.099308,7790.8374}; - angles[]={0.0064037596,1.7206945,6.1890645}; + position[]={6555.6396,219.88422,3809.2634}; + angles[]={0,4.4781942,0}; }; - side="Empty"; - flags=4; - class Attributes + areaSize[]={2.1719999,0,15.157852}; + areaIsRectangle=1; + flags=1; + id=2720; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.11579895; + class CustomAttributes { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; }; - id=1415; - type="Land_HBarrier_5_F"; }; - class Item604 + class Item482 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={11853.945,47.207855,7785.3989}; - angles[]={0.006394445,1.7206945,6.1906514}; + position[]={6465.0083,221.10483,3912.1467}; + angles[]={0,5.7721376,0}; }; - side="Empty"; - flags=4; - class Attributes + areaSize[]={2.1719999,0,15.157852}; + areaIsRectangle=1; + flags=1; + id=2721; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.11579895; + class CustomAttributes { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; }; - id=1416; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; }; - class Item605 + class Item483 { dataType="Object"; class PositionInfo { - position[]={11854.504,47.703617,7775.707}; - angles[]={0.0080009829,1.7206945,6.1922374}; + position[]={6500.9141,223.36551,3805.4551}; + angles[]={0,5.6388001,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1417; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2722; + type="Land_HBarrier_5_F"; + atlOffset=-0.054992676; }; - class Item606 + class Item484 { dataType="Object"; class PositionInfo { - position[]={11853.124,47.323032,7779.9604}; - angles[]={0.0095994528,1.7206945,6.1906505}; + position[]={6505.4058,223.36551,3808.7991}; + angles[]={0,5.6388001,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1418; + id=2723; type="Land_HBarrier_5_F"; + atlOffset=-0.054992676; }; - class Item607 + class Item485 { dataType="Object"; class PositionInfo { - position[]={11852.303,47.444351,7774.5225}; - angles[]={0.0080009829,1.7206945,6.1922374}; + position[]={6496.3169,223.36551,3802.0901}; + angles[]={0,5.6388001,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1419; + id=2724; type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; + atlOffset=-0.054992676; }; - class Item608 + class Item486 { dataType="Object"; class PositionInfo { - position[]={11855.755,47.518425,7783.9883}; - angles[]={0.006394445,1.7206945,6.1906514}; + position[]={6492,223.375,3819.25}; + angles[]={0,4.0491638,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=1420; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2733; + type="Land_HelipadSquare_F"; + atlOffset=0.69500732; }; - class Item609 + class Item487 { dataType="Object"; class PositionInfo { - position[]={11805.431,50.175755,7753.7896}; - angles[]={6.278389,0.14989856,6.2623887}; + position[]={6511.6641,223.32001,3794.2051}; + angles[]={0,4.0491638,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=1421; - type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; + id=2742; + type="Land_HelipadSquare_F"; + atlOffset=0.64001465; }; - class Item610 + class Item488 { dataType="Object"; class PositionInfo { - position[]={11801.178,50.727081,7752.4097}; - angles[]={6.278389,0.14989856,6.2623887}; + position[]={6488.396,234.11803,3919.9109}; + angles[]={0,4.712389,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1422; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2743; + type="Land_Cargo_Tower_V2_F"; }; - class Item611 + class Item489 { dataType="Object"; class PositionInfo { - position[]={11799.992,50.293232,7754.6113}; - angles[]={6.278389,0.14989856,6.2144942}; + position[]={6382.25,214.00281,3727.875}; + angles[]={6.2735858,0.93489391,6.278389}; }; side="Empty"; flags=4; class Attributes { }; - id=1423; - type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; + id=2745; + type="Land_HBarrier_Big_F"; }; - class Item612 + class Item490 { dataType="Object"; class PositionInfo { - position[]={11817.492,50.582016,7749.9453}; - angles[]={0,0.14989856,6.2816415}; + position[]={6377.2017,214.05748,3734.7134}; + angles[]={6.2687874,0.93489391,0.0080009829}; }; side="Empty"; flags=4; class Attributes { }; - id=1424; + id=2747; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item613 + class Item491 { dataType="Object"; class PositionInfo { - position[]={11816.308,50.117859,7752.147}; - angles[]={6.2816033,0.14989856,6.2816033}; + position[]={6372.1528,214.09033,3741.5518}; + angles[]={6.278389,0.93489391,0.0032018756}; }; side="Empty"; flags=4; class Attributes { }; - id=1425; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2750; + type="Land_HBarrier_Big_F"; }; - class Item614 + class Item492 { dataType="Object"; class PositionInfo { - position[]={11809.087,50.606754,7751.2148}; - angles[]={6.278389,0.14989856,6.2799835}; + position[]={6357.147,213.89066,3761.5591}; + angles[]={0.012798273,0.93489391,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=1426; + id=2752; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item615 + class Item493 { dataType="Object"; class PositionInfo { - position[]={11810.869,50.135704,7752.9683}; - angles[]={6.2816033,0.14989856,6.2767911}; + position[]={6352.0991,213.72147,3768.3977}; + angles[]={0.012798273,0.93489391,0.017598685}; }; side="Empty"; flags=4; class Attributes { }; - id=1427; - type="Land_HBarrier_5_F"; + id=2754; + type="Land_HBarrier_Big_F"; }; - class Item616 + class Item494 { dataType="Object"; class PositionInfo { - position[]={11821.993,50.103268,7751.2881}; - angles[]={0.0015822123,0.14989856,6.2816033}; + position[]={6347.0508,213.48338,3775.2361}; + angles[]={0.017595299,0.93489391,0.014398213}; }; side="Empty"; flags=4; class Attributes { }; - id=1428; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2757; + type="Land_HBarrier_Big_F"; }; - class Item617 + class Item495 { dataType="Object"; class PositionInfo { - position[]={11834.055,50.514393,7747.4438}; - angles[]={0.012798273,0.14989856,6.2623916}; + position[]={6366.9468,214.08284,3748.2844}; + angles[]={6.2816033,0.93489391,0.0080009829}; }; side="Empty"; flags=4; class Attributes { }; - id=1429; + id=2760; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item618 + class Item496 { dataType="Object"; class PositionInfo { - position[]={11832.869,50.041374,7749.646}; - angles[]={0.012798273,0.14989856,6.2623916}; + position[]={6361.8984,214.01147,3755.1228}; + angles[]={0.006394445,0.93489391,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=1430; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2762; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item619 + class Item497 { dataType="Object"; class PositionInfo { - position[]={11825.649,50.571026,7748.7134}; - angles[]={0.0015822123,0.14989856,6.2816033}; + position[]={6404.1221,213.11432,3701.8059}; + angles[]={6.1370354,0.87696218,0.10837226}; }; side="Empty"; flags=4; class Attributes { }; - id=1431; + id=2764; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item620 + class Item498 { dataType="Object"; class PositionInfo { - position[]={11827.431,50.087357,7750.4668}; - angles[]={0.0032018756,0.14989856,6.278389}; + position[]={6398.6865,213.39998,3708.3403}; + angles[]={6.2559919,0.87696218,6.2655869}; }; side="Empty"; flags=4; class Attributes { }; - id=1432; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2765; + type="Land_HBarrier_Big_F"; }; - class Item621 + class Item499 { dataType="Object"; class PositionInfo { - position[]={11837.319,50.015251,7748.9736}; - angles[]={0.012798273,0.14989856,6.2623916}; + position[]={6393.25,213.66722,3714.875}; + angles[]={6.2575908,0.87696218,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=1433; - type="Land_HBarrier_3_F"; - atlOffset=3.8146973e-006; + id=2766; + type="Land_HBarrier_Big_F"; }; - class Item622 + class Item500 { dataType="Object"; class PositionInfo { - position[]={11839.726,50.333912,7744.8174}; - angles[]={0.01280293,4.862288,6.2192731}; + position[]={6387.6631,213.88271,3721.2949}; + angles[]={6.2655869,0.87696218,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=1434; + id=2767; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item623 + class Item501 { dataType="Object"; class PositionInfo { - position[]={11853.519,47.889202,7767.5122}; - angles[]={0.028793031,1.7206945,6.1906505}; + position[]={6416.75,212.79201,3690.25}; + angles[]={6.2687912,0.70096266,6.2719922}; }; side="Empty"; flags=4; class Attributes { }; - id=1435; + id=2768; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item624 + class Item502 { dataType="Object"; class PositionInfo { - position[]={11851.69,47.553215,7768.7998}; - angles[]={0.0095994528,1.7206945,6.1906505}; + position[]={6410.2544,212.92105,3695.7317}; + angles[]={6.1433072,0.70096266,0.10995284}; }; side="Empty"; flags=4; class Attributes { }; - id=1436; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2769; + type="Land_HBarrier_Big_F"; }; - class Item625 + class Item503 { dataType="Object"; class PositionInfo { - position[]={11851.206,47.67017,7765.5859}; - angles[]={0.038379833,4.862287,6.1811414}; + position[]={6430.5,212.3736,3680.375}; + angles[]={6.1401696,0.61142558,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=1437; - type="Land_HBarrier_1_F"; - atlOffset=3.8146973e-006; + id=2770; + type="Land_HBarrier_Big_F"; }; - class Item626 + class Item504 { dataType="Object"; class PositionInfo { - position[]={11851.267,47.712841,7764.3125}; - angles[]={0.038379833,4.862287,6.1811414}; + position[]={6423.54,212.64403,3685.2539}; + angles[]={6.2687912,0.61142558,6.271987}; }; side="Empty"; flags=4; class Attributes { }; - id=1438; - type="Land_HBarrier_1_F"; - atlOffset=3.8146973e-006; + id=2771; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item627 + class Item505 { dataType="Object"; class PositionInfo { - position[]={11806.435,50.502934,7775.5083}; - angles[]={0.016002094,1.7206945,6.2320304}; + position[]={6443.125,212.774,3673.75}; + angles[]={6.182724,0.45607495,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1439; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2772; + type="Land_HBarrier_Big_F"; }; - class Item628 + class Item506 { dataType="Object"; class PositionInfo { - position[]={11806.994,50.823017,7765.8159}; - angles[]={6.2511969,1.7206945,6.2655902}; + position[]={6437.375,212.8918,3676.5}; + angles[]={0,0.45607495,0.065506049}; }; side="Empty"; flags=4; class Attributes { }; - id=1440; + id=2773; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item629 + class Item507 { dataType="Object"; class PositionInfo { - position[]={11805.613,50.50478,7770.0698}; - angles[]={6.2735858,1.7206945,6.2336264}; + position[]={6451,212.38802,3670}; + angles[]={6.1811414,0.45607495,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1441; - type="Land_HBarrier_5_F"; + id=2774; + type="Land_HBarrier_Big_F"; }; - class Item630 + class Item508 { dataType="Object"; class PositionInfo { - position[]={11804.793,50.424297,7764.6313}; - angles[]={6.2511969,1.7206945,6.2176795}; + position[]={6459.125,212.28201,3666.5}; + angles[]={0.0015822123,0.34703127,0.006394445}; }; side="Empty"; flags=4; class Attributes { }; - id=1442; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2775; + type="Land_HBarrier_Big_F"; }; - class Item631 + class Item509 { dataType="Object"; class PositionInfo { - position[]={11808.245,50.887852,7774.0972}; - angles[]={0,1.7206945,6.2320304}; + position[]={6467.375,212.37061,3663.625}; + angles[]={0.0015822123,0.32439926,0.012793615}; }; side="Empty"; flags=4; class Attributes { }; - id=1443; + id=2776; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item632 + class Item510 { dataType="Object"; class PositionInfo { - position[]={11824.636,49.153431,7834.0718}; - angles[]={0,3.291491,6.2751918}; + position[]={6475.75,212.51279,3661.5}; + angles[]={6.2671871,0.2205524,0.038379833}; }; side="Empty"; flags=4; class Attributes { }; - id=1444; - type="Land_HBarrier_5_F"; + id=2777; + type="Land_HBarrier_Big_F"; }; - class Item633 + class Item511 { dataType="Object"; class PositionInfo { - position[]={11828.889,49.457241,7835.4521}; - angles[]={6.2735796,3.291491,6.2464013}; + position[]={6484.25,212.724,3660.125}; + angles[]={0.0032018756,0.11290161,0.028793031}; }; side="Empty"; flags=4; class Attributes { }; - id=1445; + id=2778; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item634 + class Item512 { dataType="Object"; class PositionInfo { - position[]={11830.073,48.923038,7833.251}; - angles[]={6.2735796,3.291491,6.2464013}; + position[]={6494.875,214.76921,3682.25}; + angles[]={6.2081265,4.8304386,6.2511969}; }; side="Empty"; flags=4; class Attributes { }; - id=1446; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2779; + type="Land_HBarrier_Big_F"; }; - class Item635 + class Item513 { dataType="Object"; class PositionInfo { - position[]={11812.574,49.741726,7837.9165}; - angles[]={0.017598685,3.291491,6.2703872}; + position[]={6494,213.61198,3673.75}; + angles[]={6.197001,4.8304386,0.039979152}; }; side="Empty"; flags=4; class Attributes { }; - id=1447; + id=2780; type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; }; - class Item636 + class Item514 { dataType="Object"; class PositionInfo { - position[]={11813.759,49.28894,7835.7148}; - angles[]={0.015998369,3.291491,6.2671871}; + position[]={6493,213.03081,3659.5}; + angles[]={0.0032018756,0.076137125,0.03837828}; }; side="Empty"; flags=4; class Attributes { }; - id=1448; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2781; + type="Land_HBarrier_Big_F"; }; - class Item637 + class Item515 { dataType="Object"; class PositionInfo { - position[]={11820.979,49.652168,7836.647}; - angles[]={0,3.291491,6.2751918}; + position[]={6494.875,214.24379,3665.625}; + angles[]={0,1.6222429,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1449; - type="Land_HBarrier_Big_F"; + id=2782; + type="Land_Mil_WiredFence_Gate_F"; }; - class Item638 + class Item516 { dataType="Object"; class PositionInfo { - position[]={11819.196,49.224602,7834.8936}; - angles[]={0.012798273,3.291491,6.2623916}; + position[]={6476.9058,216.595,3673.9395}; + angles[]={0,0.15343541,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1450; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2783; + type="Land_Cargo_Patrol_V2_F"; }; - class Item639 + class Item517 { dataType="Object"; class PositionInfo { - position[]={11809.309,49.437851,7836.3867}; - angles[]={0.015998369,3.291491,6.2575908}; + position[]={6576.9712,219.51978,3754.1665}; + angles[]={0,4.9084444,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1451; - type="Land_HBarrier_3_F"; + id=2785; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=-0.025588989; }; - class Item640 + class Item518 { dataType="Object"; class PositionInfo { - position[]={11841.197,48.073933,7831.5708}; - angles[]={6.2799835,3.291491,6.2001767}; + position[]={6531.042,227.23828,3884.0693}; + angles[]={0,4.2672644,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1452; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2786; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=-0.025588989; }; - class Item641 + class Item519 { dataType="Object"; class PositionInfo { - position[]={11845.451,48.16946,7832.9512}; - angles[]={0.004796607,3.291491,6.1938243}; + position[]={6361.2476,218.68941,3817.1052}; + angles[]={0,1.9076691,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1453; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2787; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=-0.025588989; }; - class Item642 + class Item520 { dataType="Object"; class PositionInfo { - position[]={11846.636,47.605194,7830.749}; - angles[]={0.006394445,3.291491,6.1938248}; + position[]={6400.3735,219.96907,3888.738}; + angles[]={0,2.1754453,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1454; - type="Land_HBarrier_5_F"; - atlOffset=7.6293945e-006; + id=2788; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=-0.025588989; }; - class Item643 + class Item521 { dataType="Object"; class PositionInfo { - position[]={11837.541,48.855904,7834.1455}; - angles[]={6.2799835,3.291491,6.2001767}; + position[]={5519.5,263.39621,3769}; + angles[]={0,2.6254983,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1455; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2789; + type="Land_Cargo_Tower_V2_F"; }; - class Item644 + class Item522 { dataType="Object"; class PositionInfo { - position[]={11835.759,48.525249,7832.3921}; - angles[]={6.2735858,3.291491,6.2065363}; + position[]={5546.75,255.41499,3826.875}; + angles[]={0,2.6924222,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1456; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; + id=2790; + type="Land_Cargo_Patrol_V2_F"; }; - class Item645 + class Item523 { dataType="Object"; class PositionInfo { - position[]={11851.039,47.664608,7833.1182}; - angles[]={0.004796607,1.7206945,6.19065}; + position[]={5733.8857,254.37801,3750.6606}; + angles[]={0,5.8794231,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1457; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; + id=2791; + type="Land_Cargo_Patrol_V2_F"; }; - class Item646 + class Item524 { dataType="Object"; class PositionInfo { - position[]={11833.05,54.880569,7794.3701}; - angles[]={0,0.14989856,0}; + position[]={5636.5,257.09659,3878.25}; + angles[]={0,2.9383073,0}; }; side="Empty"; flags=5; class Attributes { }; - id=1458; - type="Land_MobileRadar_01_radar_F"; - atlOffset=3.8146973e-006; + id=2792; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=1.5258789e-005; }; - class Item647 + class Item525 { dataType="Object"; class PositionInfo { - position[]={11832.588,49.840988,7789.6357}; - angles[]={0,0.14989856,0}; + position[]={4628.125,136.938,6317.5}; + angles[]={0,4.2753401,0}; }; side="Empty"; flags=5; class Attributes { }; - id=1459; - type="Land_MobileRadar_01_generator_F"; - atlOffset=3.8146973e-006; + id=2793; + type="Land_Cargo_Patrol_V2_F"; }; - class Item648 + class Item526 { dataType="Object"; class PositionInfo { - position[]={11760.75,52.644794,7776.5}; - angles[]={0.044768773,4.862287,6.2448039}; + position[]={6407.6855,58.373013,8180.1694}; + angles[]={0,2.3810947,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1460; - type="StorageBladder_01_fuel_forest_F"; + id=2794; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=0.0091171265; }; - class Item649 + class Item527 { dataType="Object"; class PositionInfo { - position[]={11762.393,52.191795,7787.376}; - angles[]={0.038381387,4.862287,6.2623887}; + position[]={8906,140.06662,6548.125}; + angles[]={0.00034526698,2.7269034,0.0075565549}; }; side="Empty"; flags=4; class Attributes { }; - id=1461; - type="StorageBladder_01_fuel_forest_F"; + id=2888; + type="Land_DeconTent_01_AAF_F"; }; - class Item650 + class Item528 { dataType="Object"; class PositionInfo { - position[]={11827.479,53.123535,7760.8262}; - angles[]={0.027191572,0.14989856,6.2559938}; + position[]={8947.3496,139.98642,6567.0693}; + angles[]={0.00034526698,2.7269034,0.0075565549}; }; side="Empty"; flags=4; class Attributes { }; - id=1462; - type="Land_Cargo_HQ_V2_F"; - atlOffset=3.8146973e-006; + id=2889; + type="Land_DeconTent_01_AAF_F"; + atlOffset=0.023544312; }; - class Item651 + class Item529 { dataType="Object"; class PositionInfo { - position[]={11836.514,51.547882,7820.6475}; - angles[]={6.2816033,3.291491,6.2129016}; + position[]={8926.4697,140.0873,6557.6382}; + angles[]={6.2660117,5.838604,6.2749715}; }; side="Empty"; flags=4; class Attributes { }; - id=1463; - type="Land_Cargo_HQ_V2_F"; + id=2891; + type="Land_MedicalTent_01_aaf_generic_open_F"; + atlOffset=0.0002746582; }; - class Item652 + class Item530 { dataType="Object"; class PositionInfo { - position[]={11804.985,61.838036,7826.168}; - angles[]={0.017598685,4.862287,6.2575908}; + position[]={8926.9014,140.35733,6611.603}; + angles[]={6.2528124,5.838604,6.2694311}; }; side="Empty"; flags=4; class Attributes { }; - id=1464; - type="Land_Cargo_Tower_V2_F"; - atlOffset=3.8146973e-006; + id=2892; + type="Land_MedicalTent_01_aaf_generic_open_F"; + atlOffset=0.0002746582; }; - class Item653 + class Item531 { dataType="Object"; class PositionInfo { - position[]={11797.858,63.117126,7770.6094}; - angles[]={0.017598685,3.2914908,6.2208662}; + position[]={8908.5,143.83058,6605.75}; + angles[]={0,2.7845759,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1465; - type="Land_Cargo_Tower_V2_F"; - atlOffset=7.6293945e-006; + id=2893; + type="Land_Cargo_Patrol_V2_F"; }; - class Item654 + class Item532 { dataType="Object"; class PositionInfo { - position[]={11862.526,50.338406,7823.7979}; - angles[]={0,4.8622952,0}; + position[]={8892.2725,143.44676,6555.5366}; + angles[]={0,1.154559,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1466; + id=2894; type="Land_Cargo_Patrol_V2_F"; }; - class Item655 + class Item533 { dataType="Object"; class PositionInfo { - position[]={11857.07,50.807926,7831.1958}; - angles[]={0,3.2914991,0}; + position[]={8943.7627,143.40901,6551.5654}; + angles[]={0,5.8636169,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1467; + id=2895; type="Land_Cargo_Patrol_V2_F"; - atlOffset=3.8146973e-006; }; - class Item656 + class Item534 { dataType="Object"; class PositionInfo { - position[]={11844.781,53.640495,7744.813}; - angles[]={0,0.14990632,0}; + position[]={8909.75,306.88721,2088.375}; + angles[]={0,2.0327702,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1468; + id=2896; type="Land_Cargo_Patrol_V2_F"; }; - class Item657 + class Item535 { dataType="Object"; class PositionInfo { - position[]={11852.18,52.560921,7750.269}; - angles[]={0,4.8622952,0}; + position[]={11063,187.9892,2444.25}; + angles[]={6.2719817,3.0360308,6.251195}; }; side="Empty"; flags=4; class Attributes { }; - id=1469; - type="Land_Cargo_Patrol_V2_F"; + id=2897; + type="Land_DeconTent_01_AAF_F"; + atlOffset=0.22538757; }; - class Item658 + class Item536 { dataType="Object"; class PositionInfo { - position[]={11651.888,45.969803,7816.9272}; - angles[]={0.094121099,1.7206945,0.13831106}; + position[]={11120.5,185.59541,2455}; + angles[]={0,6.0400758,6.2496004}; }; side="Empty"; flags=4; class Attributes { }; - id=1470; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=3.8146973e-006; + id=2898; + type="Land_DeconTent_01_AAF_F"; }; - class Item659 + class Item537 { dataType="Object"; class PositionInfo { - position[]={11654.097,43.696083,7801.4238}; - angles[]={0.098875925,1.7206945,0.15865555}; + position[]={11100.625,186.58017,2447.625}; + angles[]={0.011198638,2.8414578,6.2336264}; }; side="Empty"; flags=4; class Attributes { }; - id=1471; - type="Land_HBarrierWall_corridor_F"; - atlOffset=3.8146973e-006; + id=2899; + type="Land_MedicalTent_01_aaf_generic_open_F"; }; - class Item660 + class Item538 { dataType="Object"; class PositionInfo { - position[]={11668.748,46.037666,7794.6567}; - angles[]={0.10362818,3.291491,0.1304549}; + position[]={11091.5,186.67776,2470.875}; + angles[]={6.2799835,4.5131998,6.2448072}; }; side="Empty"; flags=4; class Attributes { }; - id=1472; - type="PortableHelipadLight_01_green_F"; - atlOffset=8.7738037e-005; - class CustomAttributes + id=2900; + type="Land_MedicalTent_01_aaf_generic_open_F"; + }; + class Item539 + { + dataType="Object"; + class PositionInfo + { + position[]={11182.375,191.32541,2537.75}; + angles[]={0,3.9105396,0}; + }; + side="Empty"; + flags=5; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=2901; + type="Land_Cargo_Patrol_V2_F"; }; - class Item661 + class Item540 { dataType="Object"; class PositionInfo { - position[]={11675.293,46.353786,7799.4834}; - angles[]={0.10995446,1.7206945,0.1178513}; + position[]={11064,193.40939,2526.75}; + angles[]={0,1.6165732,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1473; - type="PortableHelipadLight_01_green_F"; - atlOffset=2.6702881e-005; + id=2902; + type="Land_Cargo_Patrol_V2_F"; + }; + class Item541 + { + dataType="Object"; + class PositionInfo + { + position[]={11055.75,191.05182,2402}; + angles[]={0,0.13436407,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2903; + type="Land_Cargo_Patrol_V2_F"; + }; + class Item542 + { + dataType="Logic"; + class PositionInfo + { + position[]={11094.582,185.32007,2472.304}; + angles[]={0,6.0440054,0}; + }; + areaSize[]={8.5979996,0,4.6459999}; + areaIsRectangle=1; + flags=1; + id=2904; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.13499451; class CustomAttributes { class Attribute0 { - property="allowDamage"; - expression="_this allowdamage _value;"; + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; class Value { class data @@ -17001,38 +15807,17 @@ class Mission { type[]= { - "BOOL" + "SCALAR" }; }; - value=0; + value=14; }; }; }; - nAttributes=1; - }; - }; - class Item662 - { - dataType="Object"; - class PositionInfo - { - position[]={11670.466,45.074081,7806.0273}; - angles[]={0.10046093,0.14989856,0.12730782}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1474; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.00015640259; - class CustomAttributes - { - class Attribute0 + class Attribute1 { - property="allowDamage"; - expression="_this allowdamage _value;"; + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; class Value { class data @@ -17048,10254 +15833,7311 @@ class Mission }; }; }; - nAttributes=1; + nAttributes=2; }; }; - class Item663 + class Item543 { dataType="Object"; class PositionInfo { - position[]={11663.922,44.614098,7801.2007}; - angles[]={0.10521051,4.862287,0.15240864}; - }; + position[]={6413.5,146.14059,4743}; + angles[]={0,5.4284697,0}; + }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=1475; - type="PortableHelipadLight_01_green_F"; - atlOffset=-8.392334e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2906; + type="Land_Cargo_Patrol_V2_F"; }; - class Item664 + class Item544 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={11674.434,46.872913,7793.7979}; - angles[]={0.10362818,2.506093,0.1304549}; - }; - side="Empty"; - flags=4; - class Attributes - { + position[]={960.92102,77.552872,5552.938}; }; - id=1476; - type="PortableHelipadLight_01_green_F"; - atlOffset=3.0517578e-005; - class CustomAttributes + name="pathfinding"; + id=2910; + type="Logic"; + }; + class Item545 + { + dataType="Layer"; + name="Open Ammo Dump_4"; + class Entities { - class Attribute0 + items=24; + class Item0 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11384.737,12.040413,8931.1514}; + angles[]={0.063913256,5.9506416,6.2687831}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2912; + type="Land_BagFence_Short_F"; }; - nAttributes=1; - }; - }; - class Item665 - { - dataType="Object"; - class PositionInfo - { - position[]={11676.151,45.859463,7805.1694}; - angles[]={0.11469357,0.93529701,0.089361183}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1477; - type="PortableHelipadLight_01_green_F"; - atlOffset=-4.5776367e-005; - class CustomAttributes - { - class Attribute0 + class Item1 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11387.518,11.930265,8932.1973}; + angles[]={0.067098416,5.9506416,6.2607903}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2913; + type="Land_BagFence_Short_F"; }; - nAttributes=1; - }; - }; - class Item666 - { - dataType="Object"; - class PositionInfo - { - position[]={11664.78,44.149342,7806.8862}; - angles[]={0.10520995,5.6476855,0.15397188}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1478; - type="PortableHelipadLight_01_green_F"; - atlOffset=5.3405762e-005; - class CustomAttributes - { - class Attribute0 + class Item2 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11384.011,12.002911,8932.3506}; + angles[]={0.070283718,1.2111311,6.2687874}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2914; + type="Land_Pallet_MilBoxes_F"; + atlOffset=9.5367432e-007; }; - nAttributes=1; - }; - }; - class Item667 - { - dataType="Object"; - class PositionInfo - { - position[]={11663.063,45.075104,7795.5156}; - angles[]={0.10362761,4.0768895,0.15240864}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1479; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.00037002563; - class CustomAttributes - { - class Attribute0 + class Item3 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11386.856,11.837889,8933.7959}; + angles[]={0.067098416,5.9439745,6.271987}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2915; + type="Land_MetalBarrel_F"; + atlOffset=-0.0018825531; }; - nAttributes=1; - }; - }; - class Item668 - { - dataType="Object"; - class PositionInfo - { - position[]={11696.435,49.584743,7790.4766}; - angles[]={0.13517025,3.291491,0.07346756}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1480; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.8146973e-006; - class CustomAttributes - { - class Attribute0 + class Item4 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11385.329,12.150008,8934.1494}; + angles[]={0.067098416,4.3686399,6.271987}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2916; + type="Land_HBarrier_5_F"; }; - nAttributes=1; - }; - }; - class Item669 - { - dataType="Object"; - class PositionInfo - { - position[]={11702.979,49.495888,7795.3032}; - angles[]={0.1335994,1.7206945,0.084597312}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1481; - type="PortableHelipadLight_01_green_F"; - atlOffset=7.6293945e-006; - class CustomAttributes - { - class Attribute0 + class Item5 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11386.557,11.782755,8934.6689}; + angles[]={0.067098416,5.961184,6.271987}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2917; + type="Land_MetalBarrel_F"; + atlOffset=-0.0017223358; }; - nAttributes=1; - }; - }; - class Item670 - { - dataType="Object"; - class PositionInfo - { - position[]={11698.151,48.189335,7801.8477}; - angles[]={0.13831106,0.14989856,0.089361183}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1482; - type="PortableHelipadLight_01_green_F"; - atlOffset=4.9591064e-005; - class CustomAttributes - { - class Attribute0 + class Item6 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11387.032,11.725275,8935.4424}; + angles[]={0.067098416,5.9126453,6.271987}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2918; + type="Land_MetalBarrel_F"; + atlOffset=-0.0018911362; }; - nAttributes=1; - }; - }; - class Item671 - { - dataType="Object"; - class PositionInfo - { - position[]={11691.607,48.291328,7797.0205}; - angles[]={0.14144938,4.862287,0.086185142}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1483; - type="PortableHelipadLight_01_green_F"; - atlOffset=-7.2479248e-005; - class CustomAttributes - { - class Attribute0 + class Item7 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11386.261,11.723471,8935.6006}; + angles[]={0.067098416,5.9505363,6.271987}; }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2919; + type="Land_MetalBarrel_F"; + atlOffset=-0.0017223358; }; - nAttributes=1; - }; - }; - class Item672 - { - dataType="Object"; - class PositionInfo - { - position[]={11702.12,50.146904,7789.6182}; - angles[]={0.12730782,2.506093,0.07824026}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1484; - type="PortableHelipadLight_01_green_F"; - atlOffset=-9.5367432e-005; - class CustomAttributes - { - class Attribute0 + class Item8 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11382.939,11.823364,8935.1201}; + angles[]={0.070283718,5.9506416,6.2687874}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2920; + type="Land_Pallet_MilBoxes_F"; }; - nAttributes=1; - }; - }; - class Item673 - { - dataType="Object"; - class PositionInfo - { - position[]={11703.837,48.852333,7800.9888}; - angles[]={0.12888163,0.93529701,0.095706634}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1485; - type="PortableHelipadLight_01_green_F"; - atlOffset=-2.6702881e-005; - class CustomAttributes - { - class Attribute0 + class Item9 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11380.42,12.207422,8929.6855}; + angles[]={0.07346756,5.9506416,6.2735858}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2921; + type="Land_BagFence_Short_F"; + atlOffset=9.5367432e-007; }; - nAttributes=1; - }; - }; - class Item674 - { - dataType="Object"; - class PositionInfo - { - position[]={11692.466,47.572651,7802.7061}; - angles[]={0.13831106,5.6476855,0.079830162}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1486; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.8146973e-006; - class CustomAttributes - { - class Attribute0 + class Item10 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11380.165,12.322321,8930.7764}; + angles[]={0.07346756,5.9506416,6.2735858}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2922; + type="Land_PaperBox_open_empty_F"; + atlOffset=9.5367432e-007; }; - nAttributes=1; - }; - }; - class Item675 - { - dataType="Object"; - class PositionInfo - { - position[]={11690.749,48.996677,7791.3354}; - angles[]={0.13517025,4.0768895,0.090948731}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1487; - type="PortableHelipadLight_01_green_F"; - atlOffset=-9.9182129e-005; - class CustomAttributes - { - class Attribute0 + class Item11 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11386.637,11.667374,8936.373}; + angles[]={0.067098416,5.9370623,6.271987}; }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2923; + type="Land_MetalBarrel_F"; + atlOffset=-0.0017204285; }; - nAttributes=1; - }; - }; - class Item676 - { - dataType="Object"; - class PositionInfo - { - position[]={11725.109,51.83366,7786.146}; - angles[]={0.081419133,3.291491,0.019199125}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1488; - type="PortableHelipadLight_01_green_F"; - atlOffset=3.8146973e-005; - class CustomAttributes - { - class Attribute0 + class Item12 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11385.863,11.733366,8936.6777}; + angles[]={0.067098416,5.9419322,6.271987}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2924; + type="Land_MetalBarrel_F"; + atlOffset=0.076114655; }; - nAttributes=1; - }; - }; - class Item677 - { - dataType="Object"; - class PositionInfo - { - position[]={11731.654,51.703327,7790.9731}; - angles[]={0.07346756,1.7206945,6.278389}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1489; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.0001335144; - class CustomAttributes - { - class Attribute0 + class Item13 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11391.671,11.744827,8933.5977}; + angles[]={0.06072529,5.9506416,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2925; + type="Land_BagFence_Short_F"; + atlOffset=1.1444092e-005; }; - nAttributes=1; - }; - }; - class Item678 - { - dataType="Object"; - class PositionInfo - { - position[]={11726.827,50.93726,7797.5171}; - angles[]={0.089361846,0.14989856,0.051155224}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1490; - type="PortableHelipadLight_01_green_F"; - atlOffset=7.6293945e-006; - class CustomAttributes - { - class Attribute0 + class Item14 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11379.614,12.25174,8932.2344}; + angles[]={0.078239501,5.9506416,6.2735858}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2926; + type="Land_PaperBox_closed_F"; + atlOffset=9.5367432e-007; }; - nAttributes=1; - }; - }; - class Item679 - { - dataType="Object"; - class PositionInfo - { - position[]={11720.282,51.008617,7792.6904}; - angles[]={0.086186528,4.862287,0.055941612}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1491; - type="PortableHelipadLight_01_green_F"; - atlOffset=3.4332275e-005; - class CustomAttributes - { - class Attribute0 + class Item15 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11391.511,11.83679,8934.6309}; + angles[]={0.06072529,6.011591,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2927; + type="Land_WaterBarrel_F"; + atlOffset=-0.0013647079; }; - nAttributes=1; - }; - }; - class Item680 - { - dataType="Object"; - class PositionInfo - { - position[]={11730.795,52.081512,7785.2881}; - angles[]={0.062320013,2.506093,0.038379833}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1492; - type="PortableHelipadLight_01_green_F"; - atlOffset=3.0517578e-005; - class CustomAttributes - { - class Attribute0 + class Item16 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11383.965,11.942622,8937.4629}; + angles[]={0.067098416,5.9506416,6.271987}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2928; + type="Land_HBarrier_5_F"; }; - nAttributes=1; - }; - }; - class Item681 - { - dataType="Object"; - class PositionInfo - { - position[]={11732.513,51.285061,7796.6582}; - angles[]={0.078239501,0.93529701,0.0095994528}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1493; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.00011062622; - class CustomAttributes - { - class Attribute0 + class Item17 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11390.172,11.843445,8936.7881}; + angles[]={0.06072529,4.3455839,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2929; + type="Land_WaterTank_F"; + atlOffset=-0.0033740997; }; - nAttributes=1; - }; - }; - class Item682 - { - dataType="Object"; - class PositionInfo - { - position[]={11721.142,50.519989,7798.3755}; - angles[]={0.089361846,5.6476855,0.063912325}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1494; - type="PortableHelipadLight_01_green_F"; - atlOffset=8.0108643e-005; - class CustomAttributes - { - class Attribute0 + class Item18 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11378.993,12.230066,8933.7383}; + angles[]={0.070283718,5.9379702,6.2816033}; }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2930; + type="Land_CargoBox_V1_F"; + atlOffset=-0.0025558472; }; - nAttributes=1; - }; - }; - class Item683 - { - dataType="Object"; - class PositionInfo - { - position[]={11719.424,51.485008,7787.0049}; - angles[]={0.081419863,4.0768895,0.049559005}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1495; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.8146973e-005; - class CustomAttributes - { - class Attribute0 + class Item19 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11378.038,12.412877,8931.6133}; + angles[]={0.078239501,4.3686399,6.2735858}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2931; + type="Land_HBarrier_5_F"; }; - nAttributes=1; - }; - }; - class Item684 - { - dataType="Object"; - class PositionInfo - { - position[]={11729.254,49.806229,7813.5845}; - angles[]={0.078239501,3.291491,0.075058997}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1496; - type="PortableHelipadLight_01_green_F"; - atlOffset=4.9591064e-005; - class CustomAttributes - { - class Attribute0 + class Item20 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11392.304,11.876493,8936.6309}; + angles[]={0.06072529,4.3686399,6.2671871}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2932; + type="Land_HBarrier_5_F"; }; - nAttributes=1; - }; - }; - class Item685 - { - dataType="Object"; - class PositionInfo - { - position[]={11735.798,49.84177,7818.4111}; - angles[]={0.073466748,1.7206945,0.067098416}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1497; - type="PortableHelipadLight_01_green_F"; - atlOffset=-4.5776367e-005; - class CustomAttributes - { - class Attribute0 + class Item21 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11378.759,12.106576,8935.624}; + angles[]={0.070283718,5.9506416,6.2816033}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2933; + type="Land_HBarrier_5_F"; }; - nAttributes=1; - }; - }; - class Item686 - { - dataType="Object"; - class PositionInfo - { - position[]={11730.972,48.995243,7824.9556}; - angles[]={0.079830162,0.14989856,0.070284568}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1498; - type="PortableHelipadLight_01_green_F"; - atlOffset=-2.2888184e-005; - class CustomAttributes - { - class Attribute0 + class Item22 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11389.118,11.757575,8939.2422}; + angles[]={0.067099303,5.9506416,6.2671833}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2934; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={11385.313,15.200818,8934.584}; + angles[]={0,5.9506416,0}; + }; + side="Empty"; + class Attributes + { + skill=0.2; }; + id=2935; + type="CamoNet_BLUFOR_open_F"; + atlOffset=1.2659712; }; - nAttributes=1; }; + id=2911; + atlOffset=1.3202038; }; - class Item687 + class Item546 { - dataType="Object"; - class PositionInfo - { - position[]={11724.427,48.924862,7820.1284}; - angles[]={0.081419863,4.862287,0.076649368}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1499; - type="PortableHelipadLight_01_green_F"; - atlOffset=-2.2888184e-005; - class CustomAttributes + dataType="Layer"; + name="Vehicle Repair_4"; + class Entities { - class Attribute0 + items=15; + class Item0 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11300.742,12.381502,8903.8623}; + angles[]={0.087774232,5.9693551,0.028790962}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2937; + type="Land_ClutterCutter_large_F"; + atlOffset=9.5367432e-007; }; - nAttributes=1; - }; - }; - class Item688 - { - dataType="Object"; - class PositionInfo - { - position[]={11734.939,50.228653,7812.7256}; - angles[]={0.084597312,2.506093,0.055941612}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1500; - type="PortableHelipadLight_01_green_F"; - atlOffset=-6.4849854e-005; - class CustomAttributes - { - class Attribute0 + class Item1 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11301.435,13.880642,8900.9668}; + angles[]={0.087774232,5.8703947,0.028790962}; }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2938; + type="Land_Scrap_MRAP_01_F"; + atlOffset=9.5367432e-007; }; - nAttributes=1; - }; - }; - class Item689 - { - dataType="Object"; - class PositionInfo - { - position[]={11736.657,49.461296,7824.0972}; - angles[]={0.076649368,0.93529701,0.070283718}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1501; - type="PortableHelipadLight_01_green_F"; - atlOffset=6.4849854e-005; - class CustomAttributes - { - class Attribute0 + class Item2 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11301.749,12.872812,8906.5039}; + angles[]={0.09570726,1.2883568,0.028793031}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2939; + type="Land_WeldingTrolley_01_F"; + atlOffset=-0.0022754669; }; - nAttributes=1; - }; - }; - class Item690 - { - dataType="Object"; - class PositionInfo - { - position[]={11725.286,48.526321,7825.814}; - angles[]={0.079830162,5.6476855,0.070284568}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1502; - type="PortableHelipadLight_01_green_F"; - atlOffset=-2.2888184e-005; - class CustomAttributes - { - class Attribute0 + class Item3 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11299.024,12.663193,8905.8066}; + angles[]={0.087773547,5.9902563,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2940; + type="Land_Workbench_01_F"; + atlOffset=-0.0012559891; }; - nAttributes=1; - }; - }; - class Item691 - { - dataType="Object"; - class PositionInfo - { - position[]={11723.568,49.311275,7814.4429}; - angles[]={0.078239501,4.0768895,0.075058997}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1503; - type="PortableHelipadLight_01_green_F"; - atlOffset=-7.6293945e-006; - class CustomAttributes - { - class Attribute0 + class Item4 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11303.592,13.286651,8906.7773}; + angles[]={0,0.26609325,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; }; + id=2941; + type="Land_PortableLight_double_F"; }; - nAttributes=1; - }; - }; - class Item692 - { - dataType="Object"; - class PositionInfo - { - position[]={11700.578,46.865948,7817.915}; - angles[]={0.070283718,3.291491,0.11311506}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1504; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.00018692017; - class CustomAttributes - { - class Attribute0 + class Item5 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11306.002,13.107617,8905.7471}; + angles[]={0.087774232,1.2741365,0.028790962}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=2942; + type="Land_HBarrier_5_F"; }; - nAttributes=1; - }; - }; - class Item693 - { - dataType="Object"; - class PositionInfo - { - position[]={11707.123,47.21582,7822.7412}; - angles[]={0.073468372,1.7206945,0.10046034}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1505; - type="PortableHelipadLight_01_green_F"; - atlOffset=5.3405762e-005; - class CustomAttributes - { - class Attribute0 + class Item6 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={11297.274,13.319856,8904.5293}; + angles[]={0,5.6139708,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; }; + id=2943; + type="Land_PortableLight_double_F"; + atlOffset=9.5367432e-007; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={11306.966,13.38499,8902.4873}; + angles[]={0.087774232,1.2716265,0.030390549}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2944; + type="Land_HBarrier_1_F"; + atlOffset=9.5367432e-007; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={11302.434,12.759828,8908.3418}; + angles[]={0.09570726,2.8439407,0.028793031}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2945; + type="Land_HBarrier_5_F"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={11307.409,13.515958,8901.1523}; + angles[]={0.087774232,1.2716265,0.030390549}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2946; + type="Land_HBarrier_1_F"; + atlOffset=9.5367432e-007; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={11296.068,13.118138,8902.5908}; + angles[]={0.087773547,1.2741365,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2947; + type="Land_HBarrier_5_F"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={11297.05,12.785357,8906.6084}; + angles[]={0.095706634,2.8439407,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2948; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={11297.012,13.391114,8899.2412}; + angles[]={0.079829417,1.2716265,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2949; + type="Land_HBarrier_1_F"; + atlOffset=9.5367432e-007; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={11297.351,13.491284,8898.0908}; + angles[]={0.079829417,1.2716265,0.02399601}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2950; + type="Land_HBarrier_1_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={11300.742,14.451439,8903.8623}; + angles[]={0.087774232,6.1457906,0.028790962}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=2951; + type="CamoNet_BLUFOR_big_F"; + atlOffset=9.5367432e-007; }; - nAttributes=1; }; + id=2936; + atlOffset=-0.0021696091; }; - class Item694 + class Item547 { dataType="Object"; class PositionInfo { - position[]={11702.296,46.320145,7829.2856}; - angles[]={0.063912325,0.14989856,0.09253557}; + position[]={11370.753,8.8295393,8980.8418}; + angles[]={0.059129976,3.386554,0.022394964}; }; side="Empty"; flags=4; class Attributes { }; - id=1506; - type="PortableHelipadLight_01_green_F"; - atlOffset=3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2952; + type="Land_HBarrier_5_F"; }; - class Item695 + class Item548 { dataType="Object"; class PositionInfo { - position[]={11695.752,45.979599,7824.4595}; - angles[]={0.06072529,4.862287,0.097292177}; + position[]={11376.466,8.9011545,8981.6377}; + angles[]={0.052750662,2.8253374,0.014398213}; }; side="Empty"; flags=4; class Attributes { }; - id=1507; - type="PortableHelipadLight_01_green_F"; - atlOffset=-9.5367432e-005; - class CustomAttributes + id=2953; + type="Land_HBarrier_5_F"; + }; + class Item549 + { + dataType="Object"; + class PositionInfo + { + position[]={11377.271,9.257205,8984.0059}; + angles[]={0.052750662,2.8253374,0.014398213}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=2954; + type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; }; - class Item696 + class Item550 { dataType="Object"; class PositionInfo { - position[]={11706.264,47.550411,7817.0562}; - angles[]={0.075058199,2.506093,0.10679241}; + position[]={11381.694,8.8791647,8983.3496}; + angles[]={0.054346491,2.8253374,0.0064037596}; }; side="Empty"; flags=4; class Attributes { }; - id=1508; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.4332275e-005; - class CustomAttributes + id=2955; + type="Land_HBarrier_5_F"; + atlOffset=2.7656555e-005; + }; + class Item551 + { + dataType="Object"; + class PositionInfo + { + position[]={11385.35,9.1924725,8986.6504}; + angles[]={0.054346491,2.8253374,0.0064037596}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=2956; + type="Land_HBarrier_Big_F"; + atlOffset=1.4305115e-006; }; - class Item697 + class Item552 { dataType="Object"; class PositionInfo { - position[]={11707.981,46.908218,7828.4272}; - angles[]={0.063912325,0.93529701,0.09570726}; + position[]={11386.922,8.8195848,8985.0596}; + angles[]={0.054346491,2.8253374,0.0064037596}; }; side="Empty"; flags=4; class Attributes { }; - id=1509; - type="PortableHelipadLight_01_green_F"; - atlOffset=-4.9591064e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2957; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item698 + class Item553 { dataType="Object"; class PositionInfo { - position[]={11696.611,45.690823,7830.1445}; - angles[]={0.060724311,5.6476855,0.10520995}; + position[]={11392.148,8.7227545,8986.7705}; + angles[]={0.054346491,2.8253374,6.2815661}; }; side="Empty"; flags=4; class Attributes { }; - id=1510; - type="PortableHelipadLight_01_green_F"; - atlOffset=-7.6293945e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2958; + type="Land_HBarrier_5_F"; }; - class Item699 + class Item554 { dataType="Object"; class PositionInfo { - position[]={11694.893,46.241348,7818.7739}; - angles[]={0.06072529,4.0768895,0.097292177}; + position[]={11393.426,9.0616283,8989.292}; + angles[]={0.049559005,2.8253374,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=1511; - type="PortableHelipadLight_01_green_F"; - atlOffset=-9.9182129e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2959; + type="Land_HBarrier_Big_F"; }; - class Item700 + class Item555 { dataType="Object"; class PositionInfo { - position[]={11672.893,43.848915,7822.0957}; - angles[]={0.089361846,3.291491,0.14301692}; + position[]={11299.262,8.3076696,8957.3447}; + angles[]={0.075058199,2.8253374,0}; }; side="Empty"; flags=4; class Attributes { }; - id=1512; - type="PortableHelipadLight_01_green_F"; - atlOffset=-9.9182129e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2960; + type="Land_HBarrier_Big_F"; }; - class Item701 + class Item556 { dataType="Object"; class PositionInfo { - position[]={11679.438,44.187458,7826.9229}; - angles[]={0.081419863,1.7206945,0.11942901}; + position[]={11301.31,7.9696512,8955.9121}; + angles[]={0.089361183,2.8253374,0.014402352}; }; side="Empty"; flags=4; class Attributes { }; - id=1513; - type="PortableHelipadLight_01_green_F"; - atlOffset=7.6293945e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2961; + type="Land_HBarrier_5_F"; + atlOffset=1.4305115e-006; }; - class Item702 + class Item557 { dataType="Object"; class PositionInfo { - position[]={11674.61,43.051666,7833.4668}; - angles[]={0.089361183,0.14989856,0.13202807}; + position[]={11297.031,8.1067839,8954.5117}; + angles[]={0.084597312,2.8253374,0.006394445}; }; side="Empty"; flags=4; class Attributes { }; - id=1514; - type="PortableHelipadLight_01_green_F"; - atlOffset=-7.6293945e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2962; + type="Land_HBarrier_3_F"; + atlOffset=9.5367432e-007; }; - class Item703 + class Item558 { dataType="Object"; class PositionInfo { - position[]={11668.066,42.564117,7828.6392}; - angles[]={0.090948731,4.862287,0.13988063}; + position[]={11325.815,16.038284,8876.4629}; + angles[]={0.041575778,5.9669304,0.011198638}; }; side="Empty"; flags=4; class Attributes { }; - id=1515; - type="PortableHelipadLight_01_green_F"; - atlOffset=5.7220459e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2963; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item704 + class Item559 { dataType="Object"; class PositionInfo { - position[]={11678.578,44.566402,7821.2373}; - angles[]={0.089361846,2.506093,0.094121099}; + position[]={11324.147,15.480357,8877.877}; + angles[]={0.041575778,5.9669304,0.023993526}; }; side="Empty"; flags=4; class Attributes { }; - id=1516; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.00017929077; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2964; + type="Land_HBarrier_5_F"; }; - class Item705 + class Item560 { dataType="Object"; class PositionInfo { - position[]={11680.296,43.815746,7832.6079}; - angles[]={0.089361183,0.93529701,0.11942901}; + position[]={11276.943,15.980733,8854.7891}; + angles[]={0.028790962,5.9910469,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=1517; - type="PortableHelipadLight_01_green_F"; - atlOffset=5.7220459e-005; - class CustomAttributes + id=2965; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; + }; + class Item561 + { + dataType="Object"; + class PositionInfo + { + position[]={11270.574,15.870774,8856.0059}; + angles[]={0.030390549,4.4202504,0.01280293}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=2966; + type="Land_HBarrier_Big_F"; + atlOffset=2.8610229e-006; }; - class Item706 + class Item562 { dataType="Object"; class PositionInfo { - position[]={11668.925,42.195789,7834.3252}; - angles[]={0.081419863,5.6476855,0.13987978}; + position[]={11262.812,15.574746,8860.9814}; + angles[]={0.039977662,4.4202504,0.012798273}; }; side="Empty"; flags=4; class Attributes { }; - id=1518; - type="PortableHelipadLight_01_green_F"; - atlOffset=3.8146973e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2967; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item707 + class Item563 { dataType="Object"; class PositionInfo { - position[]={11667.207,42.9445,7822.9536}; - angles[]={0.090948075,4.0768895,0.15084559}; + position[]={11266.693,15.31259,8858.4932}; + angles[]={0.038379833,2.849453,0.014398213}; }; side="Empty"; flags=4; class Attributes { }; - id=1519; - type="PortableHelipadLight_01_green_F"; - atlOffset=4.5776367e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2968; + type="Land_HBarrier_3_F"; }; - class Item708 + class Item564 { dataType="Object"; class PositionInfo { - position[]={11780.715,51.505955,7804.4233}; - angles[]={0.047963165,0.14989856,6.2575908}; + position[]={11291.818,12.65553,8911.6396}; + angles[]={0.095706634,5.9693551,0.01919602}; }; side="Empty"; flags=4; class Attributes { }; - id=1520; - type="Land_MedicalTent_01_wdl_generic_open_F"; - atlOffset=7.6293945e-006; - class CustomAttributes + id=2969; + type="Land_HBarrier_Big_F"; + atlOffset=2.8610229e-006; + }; + class Item565 + { + dataType="Object"; + class PositionInfo + { + position[]={11262.809,14.879182,8866.2002}; + angles[]={0.044770103,2.849453,0.014398213}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; }; + id=2970; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item709 + class Item566 { dataType="Object"; class PositionInfo { - position[]={11782.75,50.818188,7817.896}; - angles[]={0.038381387,0.14989856,6.2703872}; + position[]={11240.565,11.263806,8932.3477}; + angles[]={0.057537124,1.278657,6.2495971}; }; side="Empty"; flags=4; class Attributes { }; - id=1521; - type="Land_MedicalTent_01_wdl_generic_open_F"; - atlOffset=7.6293945e-006; - class CustomAttributes + id=2971; + type="Land_HBarrier_Big_F"; + }; + class Item567 + { + dataType="Object"; + class PositionInfo { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; + position[]={11241.854,10.844234,8938.4775}; + angles[]={0.052751794,5.9910469,6.2432065}; }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2972; + type="Land_HBarrier_Big_F"; + atlOffset=-2.9563904e-005; }; - class Item710 + class Item568 { dataType="Object"; class PositionInfo { - position[]={11797.551,51.412292,7785.3198}; - angles[]={0.017598685,4.862287,6.2304335}; + position[]={11247.25,10.160042,8946.375}; + angles[]={0.051155224,5.9910469,6.2416096}; }; side="Empty"; flags=4; class Attributes { }; - id=1522; - type="Land_MedicalTent_01_wdl_generic_open_F"; - atlOffset=3.8146973e-006; - class CustomAttributes + id=2973; + type="Land_HBarrier_Big_F"; + }; + class Item569 + { + dataType="Object"; + class PositionInfo + { + position[]={11244.342,10.092138,8942.3584}; + angles[]={0.06072529,4.4202504,6.2480001}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; }; + id=2974; + type="Land_HBarrier_3_F"; + atlOffset=9.5367432e-007; }; - class Item711 + class Item570 { dataType="Object"; class PositionInfo { - position[]={11799.045,51.14719,7795.2085}; - angles[]={0.014398213,4.862287,6.2480001}; + position[]={11299.904,12.577147,8914.2637}; + angles[]={0.10204422,5.9693551,0.02399601}; }; side="Empty"; flags=4; class Attributes { }; - id=1523; - type="Land_MedicalTent_01_wdl_closed_F"; - class CustomAttributes + id=2975; + type="Land_HBarrier_Big_F"; + }; + class Item571 + { + dataType="Object"; + class PositionInfo + { + position[]={11307.513,12.546811,8916.7344}; + angles[]={0.10204422,5.9693551,0.031990308}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="MedSign_Hide"; - expression="_this animateSource ['MedSign_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="Door_Hide"; - expression="_this animateSource ['Door_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - class Attribute2 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=3; }; + id=2976; + type="Land_HBarrier_Big_F"; }; - class Item712 + class Item572 { dataType="Object"; class PositionInfo { - position[]={10672.875,67.264999,7008.25}; - angles[]={0,3.7231495,0}; + position[]={11323.208,12.573472,8921.8262}; + angles[]={0.10520995,5.9693551,0.039979152}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1524; - type="Land_Cargo_Patrol_V2_F"; + id=2977; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item713 + class Item573 { dataType="Object"; class PositionInfo { - position[]={10632.52,72.353394,6905.0747}; - angles[]={0,1.214445,0}; + position[]={11249.956,10.959391,8926.2949}; + angles[]={0.07346756,4.4202504,6.2543926}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=1525; - type="Land_Cargo_Patrol_V2_F"; + id=2978; + type="Land_HBarrierWall6_F"; }; - class Item714 - { - dataType="Layer"; - name="Open Ammo Dump_2"; - id=1574; - atlOffset=-252.33; - }; - class Item715 - { - dataType="Layer"; - name="Vehicle Repair_2"; - class Entities - { - items=16; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={9947.625,180.92999,3914.8745}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2115; - type="Land_ClutterCutter_large_F"; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={9944.6572,182.15439,3915.1099}; - angles[]={0,1.4718361,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2116; - type="Land_Scrap_MRAP_01_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={9949.8086,181.62552,3913.0952}; - angles[]={0,3.1729841,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2117; - type="Land_WeldingTrolley_01_F"; - atlOffset=-4.5776367e-005; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={9949.9912,181.42671,3915.9058}; - angles[]={0,1.5916976,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2118; - type="Land_Workbench_01_F"; - atlOffset=-3.0517578e-005; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={9949.5195,182.01183,3911.2651}; - angles[]={0,2.1507204,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=2119; - type="Land_PortableLight_double_F"; - atlOffset=-1.5258789e-005; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={9947.7939,181.66534,3909.2891}; - angles[]={6.2816415,3.1587634,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2120; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={9949.332,182.01381,3917.9673}; - angles[]={0,1.2154121,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=2121; - type="Land_PortableLight_double_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={9944.3955,181.63106,3909.3789}; - angles[]={0,3.1562533,6.2816415}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2122; - type="Land_HBarrier_1_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={9951.3633,181.802,3911.8818}; - angles[]={6.2735858,4.7285681,0.10046153}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2123; - type="Land_HBarrier_5_F"; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={9942.9893,181.6321,3909.3711}; - angles[]={0,3.1562533,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2124; - type="Land_HBarrier_1_F"; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={9947.8584,181.6705,3919.7119}; - angles[]={0,3.1587634,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2125; - type="Land_HBarrier_5_F"; - }; - class Item11 - { - dataType="Object"; - class PositionInfo - { - position[]={9951.3779,181.81126,3917.5386}; - angles[]={6.2719817,4.7285681,0.11153681}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2126; - type="Land_HBarrier_5_F"; - }; - class Item12 - { - dataType="Object"; - class PositionInfo - { - position[]={9944.3818,181.6321,3919.8506}; - angles[]={0,3.1562533,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2127; - type="Land_HBarrier_1_F"; - }; - class Item13 - { - dataType="Object"; - class PositionInfo - { - position[]={9939.8916,180.92999,3914.9814}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2128; - type="Land_ClutterCutter_large_F"; - }; - class Item14 - { - dataType="Object"; - class PositionInfo - { - position[]={9943.1846,181.6321,3919.8828}; - angles[]={0,3.1562533,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2129; - type="Land_HBarrier_1_F"; - }; - class Item15 - { - dataType="Object"; - class PositionInfo - { - position[]={9947.625,182.99992,3914.875}; - angles[]={0,1.7472317,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=2130; - type="CamoNet_wdl_big_F"; - }; - }; - id=1599; - atlOffset=0.0049133301; - }; - class Item716 - { - dataType="Object"; - class PositionInfo - { - position[]={9883.375,181.6705,3925.6057}; - angles[]={0,3.221293,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2003; - type="Land_HBarrier_5_F"; - }; - class Item717 - { - dataType="Object"; - class PositionInfo - { - position[]={9877.6426,181.6705,3926.0635}; - angles[]={0,3.221293,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2004; - type="Land_HBarrier_5_F"; - }; - class Item718 - { - dataType="Object"; - class PositionInfo - { - position[]={9886.6611,181.6705,3940.7278}; - angles[]={0,1.6371984,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2005; - type="Land_HBarrier_5_F"; - }; - class Item719 - { - dataType="Object"; - class PositionInfo - { - position[]={9886.3975,181.6705,3935.0659}; - angles[]={0,1.6371984,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2006; - type="Land_HBarrier_5_F"; - }; - class Item720 - { - dataType="Object"; - class PositionInfo - { - position[]={9886,181.6705,3929.375}; - angles[]={0,1.6371984,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2007; - type="Land_HBarrier_5_F"; - }; - class Item721 - { - dataType="Object"; - class PositionInfo - { - position[]={9887.0654,181.6705,3946.385}; - angles[]={0,1.6459875,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2008; - type="Land_HBarrier_5_F"; - }; - class Item722 - { - dataType="Object"; - class PositionInfo - { - position[]={9887.4951,181.67053,3952.0259}; - angles[]={0,1.6459875,6.2767911}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2009; - type="Land_HBarrier_5_F"; - }; - class Item723 - { - dataType="Object"; - class PositionInfo - { - position[]={9884.4199,181.6705,3910.4019}; - angles[]={0,4.7946086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2010; - type="Land_HBarrier_5_F"; - }; - class Item724 - { - dataType="Object"; - class PositionInfo - { - position[]={9884.9043,181.6705,3915.9807}; - angles[]={0,4.7946086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2011; - type="Land_HBarrier_5_F"; - }; - class Item725 - { - dataType="Object"; - class PositionInfo - { - position[]={9885.3906,181.6705,3921.6646}; - angles[]={0,4.7946086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2012; - type="Land_HBarrier_5_F"; - }; - class Item726 - { - dataType="Object"; - class PositionInfo - { - position[]={9883.8799,181.6705,3904.73}; - angles[]={0,4.7946086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2013; - type="Land_HBarrier_5_F"; - }; - class Item727 - { - dataType="Object"; - class PositionInfo - { - position[]={9883.4102,181.65163,3899.0928}; - angles[]={6.2623916,4.7946086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2014; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; - }; - class Item728 - { - dataType="Object"; - class PositionInfo - { - position[]={9871.9111,181.66798,3926.5212}; - angles[]={6.2816033,3.221293,0.0015822123}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2015; - type="Land_HBarrier_5_F"; - }; - class Item729 - { - dataType="Object"; - class PositionInfo - { - position[]={9866.1797,181.66908,3926.979}; - angles[]={6.2767911,3.221293,0.0015822123}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2016; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item730 - { - dataType="Object"; - class PositionInfo - { - position[]={9860.4482,181.67267,3927.4368}; - angles[]={6.2767911,3.221293,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2017; - type="Land_HBarrier_5_F"; - }; - class Item731 - { - dataType="Object"; - class PositionInfo - { - position[]={9859.1748,182.05708,3942.5034}; - angles[]={6.2800021,1.6371984,6.1811419}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2018; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item732 - { - dataType="Object"; - class PositionInfo - { - position[]={9858.9082,181.82014,3936.8416}; - angles[]={6.2816033,1.6371984,6.2496004}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2019; - type="Land_HBarrier_5_F"; - }; - class Item733 - { - dataType="Object"; - class PositionInfo - { - position[]={9858.5127,181.70262,3931.1504}; - angles[]={6.2767911,1.6371984,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2020; - type="Land_HBarrier_5_F"; - }; - class Item734 - { - dataType="Object"; - class PositionInfo - { - position[]={9859.5771,182.21587,3948.1606}; - angles[]={6.2081265,1.6459875,6.2272429}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2021; - type="Land_HBarrier_5_F"; - }; - class Item735 - { - dataType="Object"; - class PositionInfo - { - position[]={9860.0088,182.52191,3953.8015}; - angles[]={6.2129011,1.6459875,6.2575908}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2022; - type="Land_HBarrier_5_F"; - }; - class Item736 - { - dataType="Object"; - class PositionInfo - { - position[]={9857.0801,181.63887,3912.7144}; - angles[]={6.278389,4.7946086,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2023; - type="Land_HBarrier_5_F"; - }; - class Item737 - { - dataType="Object"; - class PositionInfo - { - position[]={9857.5654,181.66135,3918.293}; - angles[]={6.2816033,4.7946086,6.2767911}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2024; - type="Land_HBarrier_5_F"; - }; - class Item738 - { - dataType="Object"; - class PositionInfo - { - position[]={9858.0518,181.6757,3923.9771}; - angles[]={6.2799835,4.7946086,6.2767911}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2025; - type="Land_HBarrier_5_F"; - }; - class Item739 - { - dataType="Object"; - class PositionInfo - { - position[]={9856.541,181.63084,3907.0425}; - angles[]={6.2816033,4.7946086,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2026; - type="Land_HBarrier_5_F"; - }; - class Item740 - { - dataType="Object"; - class PositionInfo - { - position[]={9856.0703,181.64009,3901.4053}; - angles[]={6.2799649,4.7946086,6.144875}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2027; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item741 - { - dataType="Object"; - class PositionInfo - { - position[]={9872.29,182.00946,3924.9861}; - angles[]={0,0.079700232,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2030; - type="Land_PortableLight_single_F"; - atlOffset=-1.5258789e-005; - }; - class Item742 - { - dataType="Object"; - class PositionInfo - { - position[]={9872.5293,182.01381,3927.9766}; - angles[]={0,3.221293,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2031; - type="Land_PortableLight_single_F"; - }; - class Item743 - { - dataType="Object"; - class PositionInfo - { - position[]={9871.2949,181.67407,3912.5259}; - angles[]={0,0.07969173,0}; - }; - side="Empty"; - class Attributes - { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport""]];}"; - }; - id=2033; - type="Land_HelipadSquare_F"; - atlOffset=0.75; - }; - class Item744 - { - dataType="Object"; - class PositionInfo - { - position[]={9873.5039,180.93719,3940.188}; - angles[]={0,3.2212842,6.2784033}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport""]];}"; - }; - id=2035; - type="Land_HelipadSquare_F"; - atlOffset=1.5258789e-005; - }; - class Item745 - { - dataType="Object"; - class PositionInfo - { - position[]={9873.9619,181.08931,3945.9199}; - angles[]={6.278389,0.079700232,6.2464032}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2045; - type="PortableHelipadLight_01_green_F"; - atlOffset=-6.1035156e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item746 - { - dataType="Object"; - class PositionInfo - { - position[]={9867.7725,181.0589,3940.6455}; - angles[]={6.278389,4.7920895,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2046; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item747 - { - dataType="Object"; - class PositionInfo - { - position[]={9873.0469,181.04066,3934.4561}; - angles[]={0,3.221293,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2047; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item748 - { - dataType="Object"; - class PositionInfo - { - position[]={9879.2363,181.04068,3939.7305}; - angles[]={0,1.6504965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2048; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item749 - { - dataType="Object"; - class PositionInfo - { - position[]={9868.2305,181.189,3946.3777}; - angles[]={6.2464013,5.5774879,6.2416096}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2049; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.00019836426; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item750 - { - dataType="Object"; - class PositionInfo - { - position[]={9867.3145,181.04759,3934.9138}; - angles[]={0,4.0066915,6.2784014}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2050; - type="PortableHelipadLight_01_green_F"; - atlOffset=3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item751 - { - dataType="Object"; - class PositionInfo - { - position[]={9878.7783,181.04068,3933.9983}; - angles[]={0,2.435895,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2051; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item752 - { - dataType="Object"; - class PositionInfo - { - position[]={9879.6943,181.04817,3945.4622}; - angles[]={0,0.86509848,6.2784014}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2052; - type="PortableHelipadLight_01_green_F"; - atlOffset=3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item753 - { - dataType="Object"; - class PositionInfo - { - position[]={9871.7529,181.03548,3918.2581}; - angles[]={0,0.079700232,0.001544081}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2053; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item754 - { - dataType="Object"; - class PositionInfo - { - position[]={9865.5635,181.01108,3912.9841}; - angles[]={6.2816033,4.7920895,0.006394445}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2054; - type="PortableHelipadLight_01_green_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item755 - { - dataType="Object"; - class PositionInfo - { - position[]={9870.8369,181.00174,3906.7947}; - angles[]={6.2751846,3.221293,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2055; - type="PortableHelipadLight_01_green_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item756 - { - dataType="Object"; - class PositionInfo - { - position[]={9877.0264,181.04068,3912.0686}; - angles[]={0,1.6504965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2056; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item757 - { - dataType="Object"; - class PositionInfo - { - position[]={9866.0215,181.01759,3918.7158}; - angles[]={0,5.5774879,0.004784164}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2057; - type="PortableHelipadLight_01_green_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item758 - { - dataType="Object"; - class PositionInfo - { - position[]={9865.1055,180.98228,3907.2524}; - angles[]={6.2816033,4.0066915,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2058; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item759 - { - dataType="Object"; - class PositionInfo - { - position[]={9876.5693,181.03333,3906.3367}; - angles[]={6.2816033,2.435895,0.0015822123}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2059; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item760 - { - dataType="Object"; - class PositionInfo - { - position[]={9877.4844,181.04068,3917.8003}; - angles[]={0,0.86509848,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2060; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item761 - { - dataType="Object"; - class PositionInfo - { - position[]={9949.5811,181.4864,3855.0955}; - angles[]={6.2703872,3.1677177,6.2816033}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2070; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item762 - { - dataType="Object"; - class PositionInfo - { - position[]={9943.832,181.50934,3855.2456}; - angles[]={0,3.1677177,6.2687874}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2071; - type="Land_HBarrier_5_F"; - }; - class Item763 - { - dataType="Object"; - class PositionInfo - { - position[]={9952.0527,181.57962,3870.3718}; - angles[]={0,1.5836232,0.028790962}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2072; - type="Land_HBarrier_5_F"; - }; - class Item764 - { - dataType="Object"; - class PositionInfo - { - position[]={9952.0918,181.57761,3864.7041}; - angles[]={6.2815661,1.5836232,0.030390549}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2073; - type="Land_HBarrier_5_F"; - }; - class Item765 - { - dataType="Object"; - class PositionInfo - { - position[]={9952,181.57851,3859}; - angles[]={6.2815661,1.5836232,0.036785569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2074; - type="Land_HBarrier_5_F"; - }; - class Item766 - { - dataType="Object"; - class PositionInfo - { - position[]={9952.1533,181.58252,3876.0427}; - angles[]={0,1.5924122,0.028790962}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2075; - type="Land_HBarrier_5_F"; - }; - class Item767 - { - dataType="Object"; - class PositionInfo - { - position[]={9952.2803,181.58983,3881.6985}; - angles[]={0,1.5924122,0.030390549}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2076; - type="Land_HBarrier_5_F"; - }; - class Item768 - { - dataType="Object"; - class PositionInfo - { - position[]={9951.4385,181.78957,3839.9695}; - angles[]={0.041575778,4.7410336,0.12573248}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2077; - type="Land_HBarrier_5_F"; - }; - class Item769 - { - dataType="Object"; - class PositionInfo - { - position[]={9951.623,181.75595,3845.5662}; - angles[]={0.0048090173,4.7410336,0.19123264}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2078; - type="Land_HBarrier_5_F"; - }; - class Item770 - { - dataType="Object"; - class PositionInfo - { - position[]={9951.8047,181.64459,3851.2681}; - angles[]={6.2703872,4.7410336,0.11469462}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2079; - type="Land_HBarrier_5_F"; - }; - class Item771 - { - dataType="Object"; - class PositionInfo - { - position[]={9951.2031,181.94572,3834.2769}; - angles[]={0.02399601,4.7410336,0.13045581}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2080; - type="Land_HBarrier_5_F"; - }; - class Item772 - { - dataType="Object"; - class PositionInfo - { - position[]={9951.0352,182.10654,3828.6226}; - angles[]={0.043174155,4.7410336,0.12730782}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2081; - type="Land_HBarrier_5_F"; - }; - class Item773 - { - dataType="Object"; - class PositionInfo - { - position[]={9938.084,181.51913,3855.396}; - angles[]={6.2816415,3.1677177,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2082; - type="Land_HBarrier_5_F"; - }; - class Item774 - { - dataType="Object"; - class PositionInfo - { - position[]={9932.3369,181.52763,3855.5461}; - angles[]={6.2816033,3.1677177,6.2816033}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2083; - type="Land_HBarrier_5_F"; - }; - class Item775 - { - dataType="Object"; - class PositionInfo - { - position[]={9926.5889,181.5305,3855.6963}; - angles[]={0,3.1677177,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2084; - type="Land_HBarrier_5_F"; - }; - class Item776 - { - dataType="Object"; - class PositionInfo - { - position[]={9924.5107,181.5305,3870.6731}; - angles[]={0,1.5836232,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2085; - type="Land_HBarrier_5_F"; - }; - class Item777 - { - dataType="Object"; - class PositionInfo - { - position[]={9924.5469,181.5305,3865.0051}; - angles[]={0,1.5836232,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2086; - type="Land_HBarrier_5_F"; - }; - class Item778 - { - dataType="Object"; - class PositionInfo - { - position[]={9924.457,181.5305,3859.301}; - angles[]={0,1.5836232,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2087; - type="Land_HBarrier_5_F"; - }; - class Item779 - { - dataType="Object"; - class PositionInfo - { - position[]={9924.6094,181.53203,3876.3438}; - angles[]={6.2816033,1.5924122,0.0015822123}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2088; - type="Land_HBarrier_5_F"; - }; - class Item780 - { - dataType="Object"; - class PositionInfo - { - position[]={9924.7383,181.5417,3881.9998}; - angles[]={6.2816415,1.5924122,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2089; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; - }; - class Item781 - { - dataType="Object"; - class PositionInfo - { - position[]={9924.0137,181.5305,3840.8147}; - angles[]={0,4.7410336,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2090; - type="Land_HBarrier_5_F"; - }; - class Item782 - { - dataType="Object"; - class PositionInfo - { - position[]={9924.1992,181.5305,3846.4111}; - angles[]={0,4.7410336,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2091; - type="Land_HBarrier_5_F"; - }; - class Item783 - { - dataType="Object"; - class PositionInfo - { - position[]={9924.3809,181.5305,3852.1133}; - angles[]={0,4.7410336,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2092; - type="Land_HBarrier_5_F"; - }; - class Item784 - { - dataType="Object"; - class PositionInfo - { - position[]={9923.7793,181.51909,3835.1221}; - angles[]={6.2784014,4.7410336,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2093; - type="Land_HBarrier_5_F"; - }; - class Item785 - { - dataType="Object"; - class PositionInfo - { - position[]={9923.6113,181.45871,3829.4678}; - angles[]={6.2559938,4.7410336,6.278389}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2094; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item786 - { - dataType="Object"; - class PositionInfo - { - position[]={9938.5449,181.86003,3853.8833}; - angles[]={0,0.026124954,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2095; - type="Land_PortableLight_single_F"; - }; - class Item787 - { - dataType="Object"; - class PositionInfo - { - position[]={9938.623,181.86201,3856.8823}; - angles[]={0,3.1677177,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2096; - type="Land_PortableLight_single_F"; - }; - class Item788 - { - dataType="Object"; - class PositionInfo - { - position[]={9938.2188,181.47021,3841.3879}; - angles[]={0,0.026127579,0}; - }; - side="Empty"; - class Attributes - { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport""]];}"; - }; - id=2097; - type="Land_HelipadSquare_F"; - atlOffset=0.75; - }; - class Item789 - { - dataType="Object"; - class PositionInfo - { - position[]={9938.9424,180.78,3869.1282}; - angles[]={0,3.1677177,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; - }; - id=2098; - type="Land_HelipadSquare_F"; - }; - class Item790 - { - dataType="Object"; - class PositionInfo - { - position[]={9939.0928,180.89069,3874.8765}; - angles[]={0,0.026124954,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2099; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item791 - { - dataType="Object"; - class PositionInfo - { - position[]={9933.1953,180.89841,3869.2783}; - angles[]={6.2816033,4.7385139,6.2816033}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2100; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item792 - { - dataType="Object"; - class PositionInfo - { - position[]={9938.793,180.89069,3863.3801}; - angles[]={0,3.1677177,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2101; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item793 - { - dataType="Object"; - class PositionInfo - { - position[]={9944.6914,180.89069,3868.9785}; - angles[]={0,1.5969212,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2102; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item794 - { - dataType="Object"; - class PositionInfo - { - position[]={9933.3457,180.90398,3875.0269}; - angles[]={0,5.5239124,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2103; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item795 - { - dataType="Object"; - class PositionInfo - { - position[]={9933.0449,180.89781,3863.5303}; - angles[]={0,3.9531162,6.2816415}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2104; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item796 - { - dataType="Object"; - class PositionInfo - { - position[]={9944.541,180.88942,3863.23}; - angles[]={0,2.3823197,6.2816415}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2105; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item797 - { - dataType="Object"; - class PositionInfo - { - position[]={9944.8418,180.89069,3874.7263}; - angles[]={0,0.8115232,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2106; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item798 - { - dataType="Object"; - class PositionInfo - { - position[]={9938.3691,180.8793,3847.136}; - angles[]={0,0.026124954,6.2816033}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2107; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item799 - { - dataType="Object"; - class PositionInfo - { - position[]={9932.4707,180.8643,3841.5383}; - angles[]={6.2799835,4.7385139,6.2591896}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2108; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item800 - { - dataType="Object"; - class PositionInfo - { - position[]={9938.0674,180.76877,3835.6401}; - angles[]={0.011198638,3.1677177,0.030390549}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2109; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item801 - { - dataType="Object"; - class PositionInfo - { - position[]={9943.9658,180.84833,3841.2378}; - angles[]={6.2703872,1.5969212,0.046366453}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2110; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.00030517578; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item802 - { - dataType="Object"; - class PositionInfo - { - position[]={9932.6211,180.8963,3847.2864}; - angles[]={0,5.5239124,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2111; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item803 - { - dataType="Object"; - class PositionInfo - { - position[]={9932.3203,180.87315,3835.7903}; - angles[]={0.0095932409,3.9531162,6.2607903}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2112; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item804 - { - dataType="Object"; - class PositionInfo - { - position[]={9943.8164,180.85744,3835.4895}; - angles[]={0.031990308,2.3823197,0.03837828}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2113; - type="PortableHelipadLight_01_green_F"; - atlOffset=-0.00024414063; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item805 - { - dataType="Object"; - class PositionInfo - { - position[]={9944.1162,180.87289,3846.9858}; - angles[]={6.2816033,0.8115232,6.2751918}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2114; - type="PortableHelipadLight_01_green_F"; - atlOffset=-4.5776367e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item806 - { - dataType="Object"; - class PositionInfo - { - position[]={9955.875,182.58728,3950.75}; - angles[]={6.1843095,1.5707964,0.073465936}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2131; - type="Land_HBarrier_5_F"; - }; - class Item807 - { - dataType="Object"; - class PositionInfo - { - position[]={9932.25,197.77466,3954.375}; - }; - side="Empty"; - class Attributes - { - }; - id=2132; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=13.34729; - }; - class Item808 - { - dataType="Object"; - class PositionInfo - { - position[]={9946.5166,181.51276,3910.7314}; - angles[]={6.2816415,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2133; - type="Land_PressureWasher_01_F"; - atlOffset=-1.5258789e-005; - }; - class Item809 - { - dataType="Object"; - class PositionInfo - { - position[]={9946.875,194.28941,3950.75}; - angles[]={6.2256494,4.712389,0.05115639}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2134; - type="Land_Cargo_Tower_V2_F"; - }; - class Item810 - { - dataType="Object"; - class PositionInfo - { - position[]={9932.25,182.32275,3954.375}; - angles[]={6.2816033,0,0.011198638}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2135; - type="Land_MedicalTent_01_wdl_generic_open_F"; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item811 - { - dataType="Object"; - class PositionInfo - { - position[]={9917.375,197.75645,3954.875}; - }; - side="Empty"; - class Attributes - { - }; - id=2136; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=13.338715; - }; - class Item812 - { - dataType="Object"; - class PositionInfo - { - position[]={9917.375,182.30455,3954.875}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2137; - type="Land_MedicalTent_01_wdl_generic_open_F"; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item813 - { - dataType="Object"; - class PositionInfo - { - position[]={9904.0332,197.75645,3955.1919}; - }; - side="Empty"; - class Attributes - { - }; - id=2138; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=13.338715; - }; - class Item814 - { - dataType="Object"; - class PositionInfo - { - position[]={9904.0332,182.30455,3955.1919}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2139; - type="Land_MedicalTent_01_wdl_generic_open_F"; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item815 - { - dataType="Object"; - class PositionInfo - { - position[]={9864,184.61079,3829.375}; - angles[]={0.027191572,0,0.0095994528}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2140; - type="Land_Cargo_HQ_V2_F"; - }; - class Item816 - { - dataType="Object"; - class PositionInfo - { - position[]={9940.7051,184.73285,3896.3281}; - angles[]={6.2815661,0,6.2623887}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2141; - type="Land_Cargo_HQ_V2_F"; - }; - class Item817 - { - dataType="Object"; - class PositionInfo - { - position[]={9959.417,186.44383,3788.845}; - angles[]={6.2799835,5.1471882,6.271987}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2142; - type="Land_Cargo_Patrol_V2_F"; - }; - class Item818 - { - dataType="Object"; - class PositionInfo - { - position[]={9803.0645,193.48499,3794.322}; - angles[]={6.2208662,1.8451034,0.011198638}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2143; - type="Land_Cargo_Patrol_V2_F"; - }; - class Item819 - { - dataType="Object"; - class PositionInfo - { - position[]={9862.9531,182.17456,3852.1628}; - angles[]={0,1.6160313,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2144; - type="Land_MedicalTent_01_wdl_generic_open_F"; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item820 - { - dataType="Object"; - class PositionInfo - { - position[]={9864.125,182.17456,3867}; - angles[]={0,1.6160313,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2145; - type="Land_MedicalTent_01_wdl_generic_open_F"; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item821 - { - dataType="Object"; - class PositionInfo - { - position[]={9865.0449,182.17456,3880.3137}; - angles[]={0,1.6160313,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2146; - type="Land_MedicalTent_01_wdl_generic_open_F"; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item822 - { - dataType="Layer"; - name="Open Ammo Dump_3"; - id=2147; - atlOffset=-252.33; - }; - class Item823 - { - dataType="Layer"; - name="Vehicle Repair_3"; - id=2172; - atlOffset=-252.33; - }; - class Item824 - { - dataType="Object"; - class PositionInfo - { - position[]={6452.625,223.4205,3847.25}; - angles[]={0,0.9217658,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2562; - type="Land_HBarrier_5_F"; - }; - class Item825 - { - dataType="Object"; - class PositionInfo - { - position[]={6455.9897,223.4205,3842.7737}; - angles[]={0,0.9217658,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2563; - type="Land_HBarrier_5_F"; - }; - class Item826 - { - dataType="Object"; - class PositionInfo - { - position[]={6449.2388,223.49359,3851.8318}; - angles[]={0,0.9217658,6.1874781}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2564; - type="Land_HBarrier_5_F"; - }; - class Item827 - { - dataType="Object"; - class PositionInfo - { - position[]={6460.5605,222.79068,3851.8606}; - angles[]={0,4.0608392,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2565; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item828 - { - dataType="Object"; - class PositionInfo - { - position[]={6469.7046,222.79068,3858.8345}; - angles[]={0,0.91924644,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2566; - type="PortableHelipadLight_01_red_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item829 - { - dataType="Object"; - class PositionInfo - { - position[]={6473.1919,222.79068,3854.2625}; - angles[]={0,1.7046449,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2567; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item830 - { - dataType="Object"; - class PositionInfo - { - position[]={6466.2178,222.79068,3863.4065}; - angles[]={0,0.13384843,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2568; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item831 - { - dataType="Object"; - class PositionInfo - { - position[]={6457.0737,222.79068,3856.4329}; - angles[]={0,4.8462377,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2569; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item832 - { - dataType="Object"; - class PositionInfo - { - position[]={6464.0474,222.79068,3847.2886}; - angles[]={0,3.2754412,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2570; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item833 - { - dataType="Object"; - class PositionInfo - { - position[]={6468.6196,222.79068,3850.7756}; - angles[]={0,2.4900429,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2571; - type="PortableHelipadLight_01_white_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item834 + class Item574 { dataType="Object"; class PositionInfo { - position[]={6461.646,222.79068,3859.9197}; - angles[]={0,5.6316357,0}; + position[]={11243.921,10.955968,8928.1357}; + angles[]={0.067098416,2.849453,6.2607903}; }; side="Empty"; flags=4; class Attributes { }; - id=2572; - type="PortableHelipadLight_01_yellow_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2979; + type="Land_HBarrier_5_F"; }; - class Item835 + class Item575 { dataType="Object"; class PositionInfo { - position[]={6465.1328,223.42999,3855.3472}; - angles[]={0,2.4900429,0}; + position[]={11451.425,10.028561,8961.7764}; + angles[]={0,4.3988743,0}; }; side="Empty"; + flags=5; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=2573; - type="Land_HelipadSquare_F"; - atlOffset=0.75; + id=2980; + type="Land_Mil_WiredFence_Gate_F"; }; - class Item836 + class Item576 { dataType="Object"; class PositionInfo { - position[]={6437.5015,223.31068,3834.2747}; - angles[]={0,4.0608392,0}; + position[]={11429.057,11.550597,8912.5693}; + angles[]={0.031988446,5.9669304,6.2320304}; }; side="Empty"; flags=4; class Attributes { }; - id=2574; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2981; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item837 + class Item577 { dataType="Object"; class PositionInfo { - position[]={6446.6475,223.07005,3841.2427}; - angles[]={0,0.91924667,6.2001767}; + position[]={11428.252,12.140754,8910.2012}; + angles[]={0.03358667,5.9669304,6.2320304}; }; side="Empty"; flags=4; class Attributes { }; - id=2575; - type="PortableHelipadLight_01_red_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2982; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item838 + class Item578 { dataType="Object"; class PositionInfo { - position[]={6450.1343,222.7903,3836.6707}; - angles[]={0,1.7046452,0}; + position[]={11423.829,11.871165,8910.8574}; + angles[]={0.031990308,5.9669304,6.2336254}; }; side="Empty"; flags=4; class Attributes { }; - id=2576; - type="Land_PortableHelipadLight_01_F"; - atlOffset=-0.00038146973; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2983; + type="Land_HBarrier_5_F"; }; - class Item839 + class Item579 { dataType="Object"; class PositionInfo { - position[]={6443.1606,223.3103,3845.8149}; - angles[]={0,0.13384819,0}; + position[]={11420.174,12.627542,8907.5576}; + angles[]={0.031990308,5.9669304,6.2336254}; }; side="Empty"; flags=4; class Attributes { }; - id=2577; - type="Land_PortableHelipadLight_01_F"; - atlOffset=-0.00038146973; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2984; + type="Land_HBarrier_Big_F"; }; - class Item840 + class Item580 { dataType="Object"; class PositionInfo { - position[]={6434.0146,223.31068,3838.8467}; - angles[]={0,4.8462377,0}; + position[]={11418.603,12.184918,8909.1475}; + angles[]={0.031988446,5.9669304,6.2352223}; }; side="Empty"; flags=4; class Attributes { }; - id=2578; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2985; + type="Land_HBarrier_5_F"; }; - class Item841 + class Item581 { dataType="Object"; class PositionInfo { - position[]={6440.9883,223.18193,3829.7024}; - angles[]={6.2001767,3.2754412,0}; + position[]={11412.899,12.533803,8907.2813}; + angles[]={0.035186876,5.9669304,6.232029}; }; side="Empty"; flags=4; class Attributes { }; - id=2579; - type="Land_PortableHelipadLight_01_F"; - atlOffset=-0.00036621094; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2986; + type="Land_HBarrier_5_F"; }; - class Item842 + class Item582 { dataType="Object"; class PositionInfo { - position[]={6445.5605,223.91602,3833.1897}; - angles[]={0,2.4900429,0}; + position[]={11412.095,13.120723,8904.915}; + angles[]={0.030390549,5.9669304,6.2336264}; }; side="Empty"; + flags=4; class Attributes { }; - id=2580; - type="PortableHelipadLight_01_white_F"; - atlOffset=0.75558472; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=2987; + type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; }; - class Item843 + class Item583 { dataType="Object"; class PositionInfo { - position[]={6438.5864,223.31068,3842.3335}; - angles[]={0,5.6316357,0}; + position[]={11407.672,12.85068,8905.5703}; + angles[]={0.030390549,5.9669304,6.2336264}; }; side="Empty"; flags=4; class Attributes { }; - id=2581; - type="PortableHelipadLight_01_yellow_F"; - class CustomAttributes + id=2988; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; + }; + class Item584 + { + dataType="Object"; + class PositionInfo + { + position[]={11404.017,13.604569,8902.2705}; + angles[]={0.031988446,5.9669304,6.2352223}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=2989; + type="Land_HBarrier_Big_F"; }; - class Item844 + class Item585 { dataType="Object"; class PositionInfo { - position[]={6442.0737,223.95,3837.761}; - angles[]={0,2.4900429,0}; + position[]={11402.227,13.175254,8903.7422}; + angles[]={0.036783949,5.9556952,6.2304335}; }; side="Empty"; + flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=2582; - type="Land_HelipadSquare_F"; - atlOffset=0.75; + id=2990; + type="Land_HBarrier_5_F"; }; - class Item845 + class Item586 { dataType="Object"; class PositionInfo { - position[]={6366.625,226.69621,3880.875}; - angles[]={0,3.1394875,0}; + position[]={11397.302,13.537543,8900.749}; + angles[]={0.041575778,5.334136,6.2320304}; }; side="Empty"; flags=4; class Attributes { }; - id=2583; - type="Land_Cargo_Tower_V2_F"; + id=2991; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item846 + class Item587 { dataType="Object"; class PositionInfo { - position[]={6416.4771,227.17841,3719.75}; - angles[]={0,2.2848804,0}; + position[]={11397.008,14.14586,8896.9521}; + angles[]={0.030390549,5.334136,6.2320304}; }; side="Empty"; flags=4; class Attributes { }; - id=2584; - type="Land_Cargo_Tower_V2_F"; + id=2992; + type="Land_HBarrier_Big_F"; + atlOffset=-9.5367432e-007; }; - class Item847 + class Item588 { dataType="Object"; class PositionInfo { - position[]={6517,234.20383,3762.25}; - angles[]={0,0.40608576,0}; + position[]={11393.891,13.882569,8896.0254}; + angles[]={0.035185181,5.334136,6.2272439}; }; side="Empty"; flags=4; class Attributes { }; - id=2585; - type="Land_Cargo_Tower_V2_F"; + id=2993; + type="Land_HBarrier_5_F"; }; - class Item848 + class Item589 { dataType="Object"; class PositionInfo { - position[]={6507.0498,221.67171,3923.6167}; - angles[]={0.11153521,3.9301395,6.2160864}; + position[]={11392.058,14.638864,8890.043}; + angles[]={0.028790962,5.334136,6.2288389}; }; side="Empty"; flags=4; class Attributes { }; - id=2586; - type="Land_HBarrier_5_F"; + id=2994; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item849 + class Item590 { dataType="Object"; class PositionInfo { - position[]={6509.5259,221.93607,3923.9626}; - angles[]={0.11153521,3.9301395,6.2160864}; + position[]={11390.478,14.219054,8891.3027}; + angles[]={0.028790962,5.334136,6.2288389}; }; side="Empty"; flags=4; class Attributes { }; - id=2587; - type="Land_HBarrier_Big_F"; + id=2995; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item850 + class Item591 { dataType="Object"; class PositionInfo { - position[]={6510.9268,221.84804,3919.7158}; - angles[]={0.11153521,3.9301395,6.2160864}; + position[]={11387.067,14.567601,8886.5801}; + angles[]={0.025594741,5.334136,6.2288389}; }; side="Empty"; flags=4; class Attributes { }; - id=2588; + id=2996; type="Land_HBarrier_5_F"; }; - class Item851 + class Item592 { dataType="Object"; class PositionInfo { - position[]={6515.5171,222.19225,3917.9333}; - angles[]={0.155533,3.9301395,6.1985884}; + position[]={11387.105,15.123235,8883.1338}; + angles[]={0.025594741,5.334136,6.2288389}; }; side="Empty"; flags=4; class Attributes { }; - id=2589; + id=2997; type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; }; - class Item852 + class Item593 { dataType="Object"; class PositionInfo { - position[]={6514.8032,222.10844,3915.8142}; - angles[]={0.14458455,3.9301395,6.2097163}; + position[]={11383.654,14.895013,8881.8545}; + angles[]={0.031990308,5.334136,6.2224603}; }; side="Empty"; flags=4; class Attributes { }; - id=2590; + id=2998; type="Land_HBarrier_5_F"; }; - class Item853 + class Item594 { dataType="Object"; class PositionInfo { - position[]={6519.0322,222.39803,3911.5583}; - angles[]={0.13674109,3.9301395,6.1700721}; + position[]={11382.155,15.572278,8876.2246}; + angles[]={0.0207968,5.334136,6.2144933}; }; side="Empty"; flags=4; class Attributes { }; - id=2591; - type="Land_HBarrier_5_F"; + id=2999; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item854 + class Item595 { dataType="Object"; class PositionInfo { - position[]={6521.5088,222.58707,3911.9041}; - angles[]={0.11469462,3.9301395,6.1922379}; + position[]={11380.243,15.191308,8877.1309}; + angles[]={0.020799667,5.334136,6.2384138}; }; side="Empty"; flags=4; class Attributes { }; - id=2592; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=3000; + type="Land_HBarrier_5_F"; }; - class Item855 + class Item596 { dataType="Object"; class PositionInfo { - position[]={6522.9097,222.4944,3907.657}; - angles[]={0.13674109,3.9301395,6.1700721}; + position[]={11376.074,15.426505,8873.4707}; + angles[]={6.2816033,6.0059185,6.2352223}; }; side="Empty"; flags=4; class Attributes { }; - id=2593; + id=3001; type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item856 + class Item597 { dataType="Object"; class PositionInfo { - position[]={6527.5,222.53317,3905.875}; - angles[]={0.067101084,3.9301395,6.1198516}; + position[]={11375.416,15.92386,8871.1357}; + angles[]={6.2816033,6.0059185,6.2352223}; }; side="Empty"; flags=4; class Attributes { }; - id=2594; + id=3002; type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item857 + class Item598 { dataType="Object"; class PositionInfo { - position[]={6526.7866,222.32822,3903.7556}; - angles[]={0.073466748,3.9301395,6.1136303}; + position[]={11370.783,15.600307,8871.9658}; + angles[]={0.0015822123,6.0059185,6.2511969}; }; side="Empty"; flags=4; class Attributes { }; - id=2595; + id=3003; type="Land_HBarrier_5_F"; + atlOffset=1.9073486e-006; }; - class Item858 + class Item599 { dataType="Object"; class PositionInfo { - position[]={6531.0156,221.91743,3899.4998}; - angles[]={0.073466748,3.9301395,6.1136303}; + position[]={11367.239,16.171146,8868.8076}; + angles[]={0.004796607,6.0059185,6.2623887}; }; side="Empty"; flags=4; class Attributes { }; - id=2596; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=3004; + type="Land_HBarrier_Big_F"; }; - class Item859 + class Item600 { dataType="Object"; class PositionInfo { - position[]={6533.4912,221.93518,3899.8452}; - angles[]={0.079829417,3.9301395,6.1120749}; + position[]={11366.456,15.766537,8870.7344}; + angles[]={0.004796607,2.8643255,6.2623887}; }; side="Empty"; flags=4; class Attributes { }; - id=2597; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=3005; + type="Land_HBarrier_3_F"; + atlOffset=9.5367432e-007; }; - class Item860 + class Item601 { dataType="Object"; class PositionInfo { - position[]={6534.3701,221.61618,3895.9951}; - angles[]={0.073466748,4.3126512,6.1182976}; + position[]={11323.436,13.722235,8912.2236}; + angles[]={0.090948731,2.8277617,0.036783949}; }; side="Empty"; flags=4; class Attributes { }; - id=2598; - type="Land_HBarrier_5_F"; + id=3006; + type="Land_MedicalTent_01_NATO_generic_open_F"; + atlOffset=-9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item861 + class Item602 { dataType="Object"; class PositionInfo { - position[]={6537.9639,221.7594,3892.6282}; - angles[]={0.086184449,4.3126512,6.1386008}; + position[]={11464.233,9.2769022,8929.6934}; + angles[]={0.036783949,1.2545404,6.251195}; }; side="Empty"; flags=4; class Attributes { }; - id=2599; - type="Land_HBarrier_Big_F"; + id=3007; + type="Land_Razorwire_F"; }; - class Item862 + class Item603 { dataType="Object"; class PositionInfo { - position[]={6536.5107,221.66893,3890.9287}; - angles[]={0.086184449,4.3126512,6.1182976}; + position[]={11457.313,9.2776003,8936.373}; + angles[]={0.039979152,1.2545404,6.2432065}; }; side="Empty"; flags=4; class Attributes { }; - id=2600; - type="Land_HBarrier_5_F"; + id=3008; + type="Land_Razorwire_F"; }; - class Item863 + class Item604 { dataType="Object"; class PositionInfo { - position[]={6538.8462,221.82065,3885.4016}; - angles[]={0.10362876,4.3126512,6.137033}; + position[]={11458.946,8.8538198,8945.8506}; + angles[]={0.038381387,1.2545404,6.249599}; }; side="Empty"; flags=4; class Attributes { }; - id=2601; - type="Land_HBarrier_5_F"; + id=3009; + type="Land_Razorwire_F"; }; - class Item864 + class Item605 { dataType="Object"; class PositionInfo { - position[]={6541.272,221.99744,3884.7983}; - angles[]={0.10204422,4.3126512,6.1386008}; + position[]={11443.722,8.1550398,8976.3779}; + angles[]={0.036783949,1.2545404,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=2602; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=3010; + type="Land_Razorwire_F"; + atlOffset=9.5367432e-007; }; - class Item865 + class Item606 { dataType="Object"; class PositionInfo { - position[]={6540.9868,222.01486,3880.3352}; - angles[]={0.084599428,4.3126512,6.1370335}; + position[]={11445.354,7.7943311,8985.8555}; + angles[]={0.031990308,1.2545404,6.2623887}; }; side="Empty"; flags=4; class Attributes { }; - id=2603; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3011; + type="Land_Razorwire_F"; + atlOffset=-3.1471252e-005; }; - class Item866 + class Item607 { dataType="Object"; class PositionInfo { - position[]={6544.5801,222.25154,3876.9685}; - angles[]={0.084600136,4.3126512,6.1495843}; + position[]={11438.435,7.7245679,8992.5332}; + angles[]={0.031990308,1.2545404,6.2623887}; }; side="Empty"; flags=4; class Attributes { }; - id=2604; - type="Land_HBarrier_Big_F"; + id=3012; + type="Land_Razorwire_F"; + atlOffset=4.7683716e-007; }; - class Item867 + class Item608 { dataType="Object"; class PositionInfo { - position[]={6543.127,222.12209,3875.269}; - angles[]={0.063911393,4.3126512,6.1574535}; + position[]={11396.425,8.6837177,8988.1699}; + angles[]={0.049560208,2.8253374,6.2751846}; }; side="Empty"; flags=4; class Attributes { }; - id=2605; - type="Land_HBarrier_5_F"; + id=3013; + type="Land_HBarrier_3_F"; }; - class Item868 + class Item609 { dataType="Object"; class PositionInfo { - position[]={6545.4619,221.9568,3869.7419}; - angles[]={0.025592413,4.3126512,6.1448755}; + position[]={11450.687,11.496729,8966.2793}; + angles[]={0,4.3848987,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=2606; - type="Land_HBarrier_5_F"; + id=3014; + type="Land_LampSolar_F"; }; - class Item869 + class Item610 { dataType="Object"; class PositionInfo { - position[]={6547.8882,222.10402,3869.1387}; - angles[]={0.025592413,4.3126512,6.1448755}; + position[]={11314.758,29.555788,8908.1963}; + angles[]={0,5.9693551,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=2607; - type="Land_HBarrier_Big_F"; + id=3015; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=13.827841; }; - class Item870 + class Item611 { dataType="Object"; class PositionInfo { - position[]={6495.4194,219.40509,3935.3208}; - angles[]={0.10995501,3.9301395,6.2735858}; + position[]={11323.436,12.496593,8912.2236}; + angles[]={0.090948731,5.9693551,0.036783949}; }; side="Empty"; flags=4; class Attributes { }; - id=2608; - type="Land_HBarrier_5_F"; + id=3016; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.14892101; }; - class Item871 + class Item612 { dataType="Object"; class PositionInfo { - position[]={6497.895,219.83485,3935.6665}; - angles[]={0.10046153,3.9301395,0}; + position[]={11315.24,12.547988,8919.2432}; + angles[]={0.10679241,5.9693551,0.036783949}; }; side="Empty"; flags=4; class Attributes { }; - id=2609; + id=3017; type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item872 + class Item613 { dataType="Object"; class PositionInfo { - position[]={6499.2964,219.79854,3931.4197}; - angles[]={0.10995501,3.9301395,6.2735858}; + position[]={11305.002,13.067051,8904.1328}; + angles[]={0.087774232,1.2569656,0.028790962}; }; side="Empty"; flags=4; class Attributes { }; - id=2610; - type="Land_HBarrier_5_F"; + id=3018; + type="Land_PressureWasher_01_F"; + atlOffset=-0.0014600754; }; - class Item873 + class Item614 { dataType="Object"; class PositionInfo { - position[]={6503.8867,220.99249,3929.6372}; - angles[]={0.16644593,3.9301395,0.11311349}; + position[]={11315.955,12.152332,8916.4834}; + angles[]={0.10046093,5.9693551,0.036783949}; }; side="Empty"; flags=4; class Attributes { }; - id=2611; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=3019; + type="Land_AirConditioner_03_F"; + atlOffset=-9.5367432e-007; }; - class Item874 + class Item615 { dataType="Object"; class PositionInfo { - position[]={6503.1729,220.81671,3927.5183}; - angles[]={0.19893262,3.9301395,0.079829417}; + position[]={11329.296,12.934837,8913.5391}; + angles[]={0.098875925,1.2569656,0.035185181}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=3020; + type="Land_AirConditioner_02_F"; + }; + class Item616 + { + dataType="Object"; + class PositionInfo + { + position[]={11313.924,13.675396,8909.1357}; + angles[]={0.095706634,2.8277617,0.03358667}; }; side="Empty"; flags=4; class Attributes { }; - id=2612; - type="Land_HBarrier_5_F"; + id=3021; + type="Land_MedicalTent_01_NATO_generic_closed_F"; + class CustomAttributes + { + class Attribute0 + { + property="MedSign_Hide"; + expression="_this animateSource ['MedSign_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute1 + { + property="Door_Hide"; + expression="_this animateSource ['Door_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute2 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=3; + }; }; - class Item875 + class Item617 { dataType="Object"; class PositionInfo { - position[]={6555.3706,220.65236,3846.7791}; - angles[]={0.004796607,4.3126512,6.1182976}; + position[]={11444.737,10.581731,8917.7012}; + angles[]={0.036782328,5.9669304,6.2352223}; }; side="Empty"; flags=4; class Attributes { }; - id=2613; + id=3022; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; }; - class Item876 + class Item618 { dataType="Object"; class PositionInfo { - position[]={6557.7969,220.72351,3846.1758}; - angles[]={0.0048090173,4.3126512,6.119854}; + position[]={11443.935,11.176864,8915.334}; + angles[]={0.036782328,5.9669304,6.2352223}; }; side="Empty"; flags=4; class Attributes { }; - id=2614; + id=3023; type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item877 + class Item619 { dataType="Object"; class PositionInfo { - position[]={6557.5112,220.31592,3841.7129}; - angles[]={0.0015822123,4.3126512,6.119854}; + position[]={11439.51,10.908029,8915.9893}; + angles[]={0.035185181,5.9669304,6.2336254}; }; side="Empty"; flags=4; class Attributes { }; - id=2615; + id=3024; type="Land_HBarrier_5_F"; }; - class Item878 + class Item620 { dataType="Object"; class PositionInfo { - position[]={6561.1045,220.19861,3838.3459}; - angles[]={0.0015822123,4.3126512,6.119854}; + position[]={11435.854,11.675269,8912.6895}; + angles[]={0.033588443,5.9669304,6.2336254}; }; side="Empty"; flags=4; class Attributes { }; - id=2616; + id=3025; type="Land_HBarrier_Big_F"; + atlOffset=-3.6239624e-005; }; - class Item879 - { - dataType="Object"; - class PositionInfo - { - position[]={6559.6514,219.97273,3836.6465}; - angles[]={0.0032018756,4.3126512,6.119854}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2617; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item880 + class Item621 { dataType="Object"; class PositionInfo { - position[]={6561.9863,219.60513,3831.1196}; - angles[]={0,4.3126512,6.119854}; + position[]={11434.283,11.230287,8914.2803}; + angles[]={0.033588443,5.9669304,6.2336254}; }; side="Empty"; flags=4; class Attributes { }; - id=2618; + id=3026; type="Land_HBarrier_5_F"; }; - class Item881 + class Item622 { dataType="Object"; class PositionInfo { - position[]={6564.4126,219.67595,3830.5161}; - angles[]={0.0015822123,4.3126512,6.119854}; + position[]={11452.013,10.69629,8917.9775}; + angles[]={0.038381387,5.9669304,6.2368193}; }; side="Empty"; flags=4; class Attributes { }; - id=2619; + id=3027; type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + atlOffset=-9.5367432e-007; }; - class Item882 + class Item623 { dataType="Object"; class PositionInfo { - position[]={6564.127,219.25505,3826.053}; - angles[]={0,4.3126512,6.1214113}; + position[]={11450.439,10.238776,8919.5664}; + angles[]={0.038381387,5.9669304,6.2368193}; }; side="Empty"; flags=4; class Attributes { }; - id=2620; + id=3028; type="Land_HBarrier_5_F"; }; - class Item883 + class Item624 { dataType="Object"; class PositionInfo { - position[]={6567.7207,219.12688,3822.6863}; - angles[]={6.278389,4.3126512,6.1214113}; + position[]={11454.242,10.072355,8920.8115}; + angles[]={0.038381387,2.8253374,6.2368193}; }; side="Empty"; flags=4; class Attributes { }; - id=2621; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=3029; + type="Land_HBarrier_3_F"; + atlOffset=-9.5367432e-007; }; - class Item884 + class Item625 { dataType="Object"; class PositionInfo { - position[]={6566.2676,218.88602,3820.9866}; - angles[]={6.2767911,4.3126512,6.1229692}; + position[]={11400.228,8.5357218,8989.4141}; + angles[]={0.047963165,2.8253374,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=2622; + id=3030; type="Land_HBarrier_5_F"; }; - class Item885 + class Item626 { dataType="Object"; class PositionInfo { - position[]={6568.6025,218.44691,3815.4597}; - angles[]={6.2687874,4.3126512,6.1229687}; + position[]={11401.506,8.8677807,8991.9365}; + angles[]={0.047963165,2.8253374,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=2623; - type="Land_HBarrier_5_F"; + id=3031; + type="Land_HBarrier_Big_F"; }; - class Item886 + class Item627 { dataType="Object"; class PositionInfo { - position[]={6571.0283,218.48297,3814.8562}; - angles[]={6.2687874,4.3126512,6.1089687}; + position[]={11404.503,8.4741659,8990.8135}; + angles[]={0.046366453,2.8253374,6.271987}; }; side="Empty"; flags=4; class Attributes { }; - id=2624; - type="Land_HBarrier_Big_F"; + id=3032; + type="Land_HBarrier_3_F"; }; - class Item887 + class Item628 { dataType="Object"; class PositionInfo { - position[]={6570.7427,217.96683,3810.3933}; - angles[]={6.2623887,4.3126512,6.0996752}; + position[]={11408.78,8.2929554,8992.2129}; + angles[]={0.044770103,2.8253374,6.2687874}; }; side="Empty"; flags=4; class Attributes { }; - id=2625; + id=3033; type="Land_HBarrier_5_F"; }; - class Item888 + class Item629 { dataType="Object"; class PositionInfo { - position[]={6574.3364,217.70041,3807.0264}; - angles[]={6.2527971,4.3126512,6.1089687}; + position[]={11410.058,8.6342049,8994.7354}; + angles[]={0.041575778,2.8253374,6.2687831}; }; side="Empty"; flags=4; class Attributes { }; - id=2626; + id=3034; type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + atlOffset=9.5367432e-007; }; - class Item889 + class Item630 { dataType="Object"; class PositionInfo { - position[]={6572.8833,217.44064,3805.3269}; - angles[]={6.2368178,4.3126512,6.0996757}; + position[]={11413.058,8.2242079,8993.6133}; + angles[]={0.041575778,2.8253374,6.2655902}; }; side="Empty"; flags=4; class Attributes { }; - id=2627; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3035; + type="Land_HBarrier_3_F"; + atlOffset=9.5367432e-007; }; - class Item890 + class Item631 { dataType="Object"; class PositionInfo { - position[]={6575.2188,216.74026,3799.7998}; - angles[]={6.2065368,4.3126512,6.0811791}; + position[]={11417.334,8.0349302,8995.0127}; + angles[]={0.039977662,2.8253374,6.2655869}; }; side="Empty"; flags=4; class Attributes { }; - id=2628; + id=3036; type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + atlOffset=4.7683716e-007; }; - class Item891 + class Item632 { dataType="Object"; class PositionInfo { - position[]={6577.6445,216.66673,3799.1965}; - angles[]={6.2065368,4.3126512,6.0811791}; + position[]={11418.613,8.392664,8997.5361}; + angles[]={0.036782328,2.8253374,6.2687874}; }; side="Empty"; flags=4; class Attributes { }; - id=2629; + id=3037; type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; - }; - class Item892 - { - dataType="Object"; - class PositionInfo - { - position[]={6577.3594,215.93617,3794.7334}; - angles[]={6.2144942,4.3126512,6.073513}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2630; - type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item893 + class Item633 { dataType="Object"; class PositionInfo { - position[]={6580.9526,215.37883,3791.3667}; - angles[]={6.2017651,4.3126512,6.0735126}; + position[]={11421.611,7.965425,8996.4131}; + angles[]={0.036782328,2.8253374,6.2639894}; }; side="Empty"; flags=4; class Attributes { }; - id=2631; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=3038; + type="Land_HBarrier_3_F"; + atlOffset=4.7683716e-007; }; - class Item894 + class Item634 { dataType="Object"; class PositionInfo { - position[]={6579.4995,215.07993,3789.6672}; - angles[]={6.2017651,4.3126512,6.0735126}; + position[]={11267.666,14.770862,8870.0117}; + angles[]={0.047963165,4.4202504,0.017598685}; }; side="Empty"; flags=4; class Attributes { }; - id=2632; + id=3039; type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; }; - class Item895 + class Item635 { dataType="Object"; class PositionInfo { - position[]={6581.8345,214.29814,3784.1401}; - angles[]={6.2543945,4.3126512,6.0552187}; + position[]={11265.319,15.161962,8870.8721}; + angles[]={0.051155224,4.4202504,0.014398213}; }; side="Empty"; flags=4; class Attributes { }; - id=2633; - type="Land_HBarrier_5_F"; + id=3040; + type="Land_HBarrier_Big_F"; }; - class Item896 + class Item636 { dataType="Object"; class PositionInfo { - position[]={6584.2607,214.18741,3783.5369}; - angles[]={6.2543945,4.3126512,6.0552187}; + position[]={11263.015,14.721278,8878.5322}; + angles[]={0.055941612,4.4202504,0.017598685}; }; side="Empty"; flags=4; class Attributes { }; - id=2634; + id=3041; type="Land_HBarrier_Big_F"; }; - class Item897 + class Item637 { dataType="Object"; class PositionInfo { - position[]={6548.9492,221.59848,3861.9783}; - angles[]={0.0095994528,4.3126512,6.1386008}; + position[]={11266.084,14.487947,8875.2793}; + angles[]={0.055941612,4.4202504,0.017598685}; }; side="Empty"; flags=4; class Attributes { }; - id=2635; + id=3042; type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item898 + class Item638 { dataType="Object"; class PositionInfo { - position[]={6551.375,221.69583,3861.375}; - angles[]={0.0032018756,4.3126512,6.1260924}; + position[]={11264.499,14.167241,8880.5449}; + angles[]={0.054346491,4.4202504,0.019199125}; }; side="Empty"; flags=4; class Attributes { }; - id=2636; - type="Land_HBarrier_Big_F"; + id=3043; + type="Land_HBarrier_5_F"; + atlOffset=-1.9073486e-006; }; - class Item899 + class Item639 { dataType="Object"; class PositionInfo { - position[]={6551.0898,221.31461,3856.9121}; - angles[]={0.0095994528,4.3126512,6.119854}; + position[]={11262.915,13.821092,8885.8125}; + angles[]={0.06072529,4.4202504,0.019199125}; }; side="Empty"; flags=4; class Attributes { }; - id=2637; + id=3044; type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item900 + class Item640 { dataType="Object"; class PositionInfo { - position[]={6554.6831,221.20692,3853.5452}; - angles[]={0.0032018756,4.3126512,6.119854}; + position[]={11260.567,14.205506,8886.6738}; + angles[]={0.06072529,4.4202504,0.01280293}; }; side="Empty"; flags=4; class Attributes { }; - id=2638; + id=3045; type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + atlOffset=5.7220459e-006; }; - class Item901 + class Item641 { dataType="Object"; class PositionInfo { - position[]={6553.23,220.98425,3851.8457}; - angles[]={0.004796607,4.3126512,6.1182976}; + position[]={11258.264,13.680064,8894.335}; + angles[]={0.067099303,4.4202504,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=2639; - type="Land_HBarrier_5_F"; + id=3046; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; }; - class Item902 + class Item642 { dataType="Object"; class PositionInfo { - position[]={6410.918,216.69241,3900.7048}; - angles[]={6.2448058,2.6710341,0.0095994528}; + position[]={11261.33,13.45873,8891.0801}; + angles[]={0.067099303,4.4202504,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=2640; + id=3047; type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; + atlOffset=7.6293945e-006; }; - class Item903 + class Item643 { dataType="Object"; class PositionInfo { - position[]={6411.3477,217.36053,3903.1677}; - angles[]={6.1954112,2.6710341,0.059131995}; + position[]={11259.746,13.089662,8896.3457}; + angles[]={0.067099303,4.4202504,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=2641; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=3048; + type="Land_HBarrier_5_F"; + atlOffset=7.6293945e-006; }; - class Item904 + class Item644 { dataType="Object"; class PositionInfo { - position[]={6415.8198,217.24095,3903.1987}; - angles[]={6.2049446,2.6710341,0.075058997}; + position[]={11258.163,12.703631,8901.6123}; + angles[]={0.071875811,4.4202504,0.004796607}; }; side="Empty"; flags=4; class Attributes { }; - id=2642; + id=3049; type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; + atlOffset=7.6293945e-006; }; - class Item905 + class Item645 { dataType="Object"; class PositionInfo { - position[]={6418.9238,218.19569,3907.0212}; - angles[]={6.2751918,2.6710341,0.11153413}; + position[]={11253.51,12.559724,8910.1357}; + angles[]={0.075058997,4.4202504,6.275177}; }; side="Empty"; flags=4; class Attributes { }; - id=2643; + id=3050; type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; + atlOffset=9.5367432e-007; }; - class Item906 + class Item646 { dataType="Object"; class PositionInfo { - position[]={6420.7222,217.92413,3905.6919}; - angles[]={0.004796607,2.6710341,0.11153467}; + position[]={11256.578,12.313592,8906.8809}; + angles[]={0.075058199,4.4202504,0.0015822123}; }; side="Empty"; flags=4; class Attributes { }; - id=2644; + id=3051; type="Land_HBarrier_5_F"; - atlOffset=4.5776367e-005; + atlOffset=9.5367432e-007; }; - class Item907 + class Item647 { dataType="Object"; class PositionInfo { - position[]={6426.0698,218.37373,3908.4121}; - angles[]={0.049559005,2.6710341,0.075058997}; + position[]={11254.994,11.926951,8912.1494}; + angles[]={0.075058997,4.4202504,6.275177}; }; side="Empty"; flags=4; class Attributes { }; - id=2645; + id=3052; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item908 - { - dataType="Object"; - class PositionInfo - { - position[]={6426.5,218.7534,3910.875}; - angles[]={0.049559005,2.6710341,0.075058997}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2646; - type="Land_HBarrier_Big_F"; }; - class Item909 + class Item648 { dataType="Object"; class PositionInfo { - position[]={6430.9722,218.4646,3910.906}; - angles[]={0.08459802,2.6710341,0.039979152}; + position[]={11255.924,13.128308,8902.1143}; + angles[]={0.071875811,4.4202504,6.2815661}; }; side="Empty"; flags=4; class Attributes { - }; - id=2647; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + }; + id=3053; + type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; }; - class Item910 + class Item649 { dataType="Object"; class PositionInfo { - position[]={6434.0762,219.04439,3914.7288}; - angles[]={6.2591896,2.6710341,0.063912325}; + position[]={11287.767,8.2696943,8951.4795}; + angles[]={0.075058199,2.8253374,0.0015822123}; }; side="Empty"; flags=4; class Attributes { }; - id=2648; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; + id=3054; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item911 + class Item650 { dataType="Object"; class PositionInfo { - position[]={6435.8745,218.65807,3913.3997}; - angles[]={6.2591896,2.6710341,0.063912325}; + position[]={11290.946,8.496067,8954.625}; + angles[]={0.081419863,2.8253374,6.278389}; }; side="Empty"; flags=4; class Attributes { }; - id=2649; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3055; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; }; - class Item912 + class Item651 { dataType="Object"; class PositionInfo { - position[]={6441.2222,218.92622,3916.1199}; - angles[]={0.059129976,2.6710341,0}; + position[]={11292.993,8.1338549,8953.1904}; + angles[]={0.081419863,2.8253374,6.278389}; }; side="Empty"; flags=4; class Attributes { }; - id=2650; + id=3056; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + atlOffset=-4.7683716e-007; }; - class Item913 + class Item652 { dataType="Object"; class PositionInfo { - position[]={6441.6528,219.24995,3918.5823}; - angles[]={0.059129976,2.6710341,0}; + position[]={11275.265,9.0458832,8949.4941}; + angles[]={0.076649368,2.8253374,6.271987}; }; side="Empty"; flags=4; class Attributes { }; - id=2651; + id=3057; type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + atlOffset=4.7683716e-007; }; - class Item914 + class Item653 { dataType="Object"; class PositionInfo { - position[]={6446.1245,219.05836,3918.613}; - angles[]={0.0766517,2.6710341,0.11627284}; + position[]={11277.312,8.6613894,8948.0586}; + angles[]={0.083008662,2.8253374,6.2655869}; }; side="Empty"; flags=4; class Attributes { }; - id=2652; + id=3058; type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; }; - class Item915 + class Item654 { dataType="Object"; class PositionInfo { - position[]={6449.2285,219.84012,3922.436}; - angles[]={0.027193764,2.6710341,0.038379833}; + position[]={11283.342,8.7327728,8952.1377}; + angles[]={0.070283718,2.8253374,6.2751918}; }; side="Empty"; flags=4; class Attributes { }; - id=2653; + id=3059; type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + atlOffset=4.7683716e-007; }; - class Item916 + class Item655 { dataType="Object"; class PositionInfo { - position[]={6451.0269,219.58266,3921.1069}; - angles[]={0.027193764,2.6710341,0.14144896}; + position[]={11282.539,8.440114,8949.7695}; + angles[]={0.086185835,2.8253374,6.2751846}; }; side="Empty"; flags=4; class Attributes { }; - id=2654; + id=3060; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + atlOffset=1.4305115e-006; }; - class Item917 + class Item656 { dataType="Object"; class PositionInfo { - position[]={6456.375,219.69394,3923.8276}; - angles[]={0.13831063,2.6710341,0.0814206}; + position[]={11271.846,8.895503,8946.2715}; + angles[]={0.07346756,2.8253374,6.2639894}; }; side="Empty"; flags=4; class Attributes { }; - id=2655; + id=3061; type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item918 + class Item657 { dataType="Object"; class PositionInfo { - position[]={6456.8047,220.03941,3926.29}; - angles[]={0.0015822123,2.6710341,0.09253493}; + position[]={11259.345,9.831748,8944.2842}; + angles[]={0.063913256,2.8253374,6.2527947}; }; side="Empty"; flags=4; class Attributes { }; - id=2656; + id=3062; type="Land_HBarrier_Big_F"; }; - class Item919 + class Item658 { dataType="Object"; class PositionInfo { - position[]={6461.2769,219.97879,3926.3213}; - angles[]={0.063912325,2.6710341,0.030392511}; + position[]={11261.391,9.4034967,8942.8486}; + angles[]={0.076649368,2.8253374,6.2527947}; }; side="Empty"; flags=4; class Attributes { }; - id=2657; + id=3063; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + atlOffset=1.9073486e-006; }; - class Item920 + class Item659 { dataType="Object"; class PositionInfo { - position[]={6464.3809,220.28947,3930.1438}; - angles[]={0.094122365,2.6710341,0.0079935296}; + position[]={11267.424,9.4165144,8946.9268}; + angles[]={0.07346756,2.8253374,6.2527947}; }; side="Empty"; flags=4; class Attributes { }; - id=2658; + id=3064; type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + atlOffset=-9.5367432e-007; }; - class Item921 + class Item660 { dataType="Object"; class PositionInfo { - position[]={6466.1792,219.95982,3928.8147}; - angles[]={0.094122365,2.6710341,0.0079935296}; + position[]={11266.62,9.1392469,8944.5615}; + angles[]={0.068692133,2.8253374,6.2575908}; }; side="Empty"; flags=4; class Attributes { }; - id=2659; + id=3065; type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; }; - class Item922 + class Item661 { dataType="Object"; class PositionInfo { - position[]={6471.5269,219.8454,3931.5349}; - angles[]={0.025592413,2.6710341,0.036785569}; + position[]={11257.116,9.6918526,8941.4492}; + angles[]={0.071875811,2.8253374,6.2575908}; }; side="Empty"; flags=4; class Attributes { }; - id=2660; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3066; + type="Land_HBarrier_3_F"; + atlOffset=4.7683716e-006; }; - class Item923 + class Item662 { dataType="Object"; class PositionInfo { - position[]={6471.957,220.26768,3933.9978}; - angles[]={0.025592413,2.6710341,0.036785569}; + position[]={11253.656,10.015141,8944.3779}; + angles[]={0.057536088,1.278657,6.2480001}; }; side="Empty"; flags=4; class Attributes { }; - id=2661; + id=3067; type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + atlOffset=-9.5367432e-007; }; - class Item924 + class Item663 { dataType="Object"; class PositionInfo { - position[]={6396.6411,216.33041,3895.6865}; - angles[]={6.1748133,2.6710341,0.19123295}; + position[]={11250.896,12.008994,8917.9629}; + angles[]={0.076649368,4.4202504,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=2662; + id=3068; type="Land_HBarrier_Big_F"; }; - class Item925 + class Item664 { dataType="Object"; class PositionInfo { - position[]={6401.1128,216.32187,3895.7178}; - angles[]={6.2623858,2.6710341,6.2655869}; + position[]={11253.1,11.540612,8917.5811}; + angles[]={0.076649368,4.4202504,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=2663; + id=3069; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + atlOffset=9.5367432e-007; }; - class Item926 + class Item665 { dataType="Object"; class PositionInfo { - position[]={6404.2173,216.99661,3899.5403}; - angles[]={6.2144923,2.6710341,0.030390549}; + position[]={11252.163,11.281289,8920.6953}; + angles[]={0.07346756,1.278657,6.2703824}; }; side="Empty"; flags=4; class Attributes { }; - id=2664; - type="Land_HBarrier_Big_F"; - atlOffset=4.5776367e-005; + id=3070; + type="Land_HBarrier_1_F"; + atlOffset=9.5367432e-007; }; - class Item927 + class Item666 { dataType="Object"; class PositionInfo { - position[]={6406.0151,216.49031,3898.2112}; - angles[]={6.2144923,2.6710341,0.030390549}; + position[]={11251.564,11.206185,8921.8193}; + angles[]={0.07346756,1.278657,6.2703824}; }; side="Empty"; flags=4; class Attributes { }; - id=2665; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; + id=3071; + type="Land_HBarrier_1_F"; }; - class Item928 + class Item667 { dataType="Object"; class PositionInfo { - position[]={6476.271,219.82942,3934.1775}; - angles[]={0.054348685,2.6710341,0.0064037596}; + position[]={11304.935,15.317258,8871.4502}; + angles[]={0.039977662,5.9669304,0.01919602}; }; side="Empty"; flags=4; class Attributes { }; - id=2666; + id=3072; type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; }; - class Item929 + class Item668 { dataType="Object"; class PositionInfo { - position[]={6479.375,220.02481,3938}; - angles[]={0.030388586,2.6710341,6.2671871}; + position[]={11301.756,15.860147,8868.3066}; + angles[]={0.027193764,5.9669304,0.015998369}; }; side="Empty"; flags=4; class Attributes { }; - id=2667; + id=3073; type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; }; - class Item930 + class Item669 { dataType="Object"; class PositionInfo { - position[]={6481.1733,219.60544,3936.6709}; - angles[]={0.076648585,2.6710341,6.2671909}; + position[]={11299.709,15.302203,8869.7393}; + angles[]={0.043172773,5.9669304,0.019199125}; }; side="Empty"; flags=4; class Attributes { }; - id=2668; + id=3074; type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item931 + class Item670 { dataType="Object"; class PositionInfo { - position[]={6486.521,219.36827,3939.3911}; - angles[]={0.038379833,2.6710341,6.2623887}; + position[]={11317.576,15.965848,8873.5039}; + angles[]={0.03358667,5.9669304,0.0207968}; }; side="Empty"; flags=4; class Attributes { }; - id=2669; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; + id=3075; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item932 + class Item671 { dataType="Object"; class PositionInfo { - position[]={6486.9512,219.73427,3941.854}; - angles[]={0.038379833,2.6710341,6.2623887}; + position[]={11315.39,15.404918,8874.8721}; + angles[]={0.03358667,5.9669304,0.0207968}; }; side="Empty"; flags=4; class Attributes { }; - id=2670; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; + id=3076; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item933 + class Item672 { dataType="Object"; class PositionInfo { - position[]={6493.375,219.79037,3940.125}; - angles[]={6.2208662,3.9301395,0.062319059}; + position[]={11309.359,15.893054,8870.792}; + angles[]={0.039977662,5.9669304,0.017598685}; }; side="Empty"; flags=4; class Attributes { }; - id=2671; + id=3077; type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item934 + class Item673 { dataType="Object"; class PositionInfo { - position[]={6491.375,219.19972,3939.375}; - angles[]={0.03837828,3.9301395,6.2448072}; + position[]={11310.163,15.352942,8873.1602}; + angles[]={0.035185181,5.9669304,0.022397626}; }; side="Empty"; flags=4; class Attributes { }; - id=2672; + id=3078; type="Land_HBarrier_5_F"; + atlOffset=-9.5367432e-007; }; - class Item935 + class Item674 { dataType="Object"; class PositionInfo { - position[]={6583.1133,213.9183,3779.5825}; - angles[]={0,4.6438065,6.0552192}; + position[]={11319.805,15.498011,8876.3379}; + angles[]={0.041575778,5.9669304,0.02399601}; }; side="Empty"; flags=4; class Attributes { }; - id=2673; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; + id=3079; + type="Land_HBarrier_3_F"; + atlOffset=9.5367432e-007; }; - class Item936 + class Item675 { dataType="Object"; class PositionInfo { - position[]={6585.417,213.86214,3775.23}; - angles[]={0.004796607,4.6438065,6.0506692}; + position[]={11289.017,15.262326,8866.2393}; + angles[]={0.036783949,5.9669304,0.01280293}; }; side="Empty"; flags=4; class Attributes { }; - id=2674; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=3080; + type="Land_HBarrier_5_F"; }; - class Item937 + class Item676 { dataType="Object"; class PositionInfo { - position[]={6583.4907,213.85858,3774.0952}; - angles[]={0.0095994528,4.6438065,6.0506692}; + position[]={11285.836,15.806775,8863.0957}; + angles[]={0.036783949,5.9669304,0.01280293}; }; side="Empty"; flags=4; class Attributes { }; - id=2675; - type="Land_HBarrier_5_F"; + id=3081; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item938 + class Item677 { dataType="Object"; class PositionInfo { - position[]={6583.9019,213.82713,3768.1091}; - angles[]={0.004796607,4.6438065,6.0476403}; + position[]={11283.789,15.258332,8864.5293}; + angles[]={0.036783949,5.9669304,0.01280293}; }; side="Empty"; flags=4; class Attributes { }; - id=2676; + id=3082; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + atlOffset=9.5367432e-007; }; - class Item939 + class Item678 { dataType="Object"; class PositionInfo { - position[]={6586,213.79959,3766.75}; - angles[]={0.004796607,4.6438065,6.0476403}; + position[]={11293.439,15.821418,8865.584}; + angles[]={0.03358667,5.9669304,0.015998369}; }; side="Empty"; flags=4; class Attributes { }; - id=2677; + id=3083; type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; }; - class Item940 + class Item679 { dataType="Object"; class PositionInfo { - position[]={6584.2788,213.77293,3762.6221}; - angles[]={0.0080009829,4.6438065,6.0446162}; + position[]={11294.243,15.282847,8867.9521}; + angles[]={0.033588443,5.9669304,0.011203959}; }; side="Empty"; flags=4; class Attributes { }; - id=2678; + id=3084; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; }; - class Item941 + class Item680 { dataType="Object"; class PositionInfo { - position[]={6586.5825,213.71709,3758.27}; - angles[]={0.0080009829,4.6438065,6.0446162}; + position[]={11281.203,15.862655,8859.7246}; + angles[]={0.03358667,4.4202504,0.012798273}; }; side="Empty"; flags=4; class Attributes { }; - id=2679; + id=3085; type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + atlOffset=9.5367432e-007; }; - class Item942 + class Item681 { dataType="Object"; class PositionInfo { - position[]={6584.6558,213.71889,3757.1355}; - angles[]={0.004796607,4.6438065,6.0476403}; + position[]={11303.747,17.147989,8924.8467}; + angles[]={0,4.3985615,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=2680; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3086; + type="Land_MobileRadar_01_radar_F"; }; - class Item943 + class Item682 { dataType="Object"; class PositionInfo { - position[]={6585.0669,213.6692,3751.1492}; - angles[]={6.2799835,4.6438065,6.0628242}; + position[]={11308.21,12.228333,8926.3447}; + angles[]={0,4.3985615,0}; }; side="Empty"; - flags=4; + flags=1; class Attributes { }; - id=2681; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3087; + type="Land_MobileRadar_01_generator_F"; + atlOffset=0.2510004; }; - class Item944 + class Item683 { dataType="Object"; class PositionInfo { - position[]={6587.165,213.6701,3749.7898}; - angles[]={0.02399601,4.6438065,6.0628242}; + position[]={11299.52,11.871069,8946.8721}; + angles[]={0,2.8426702,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2682; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=3088; + type="Land_Cargo_HQ_V1_F"; + atlOffset=4.7683716e-007; }; - class Item945 + class Item684 { dataType="Object"; class PositionInfo { - position[]={6585.1987,213.69928,3747.3684}; - angles[]={0.02399601,5.4027257,6.0628242}; + position[]={11266.833,19.234545,8863.2334}; + angles[]={0,1.2786632,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2683; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3089; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-9.5367432e-007; }; - class Item946 + class Item685 { dataType="Object"; class PositionInfo { - position[]={6583.875,214.53731,3742.625}; - angles[]={0.03838294,5.4027257,6.0781093}; + position[]={11274.93,19.517155,8858.8818}; + angles[]={0,5.9910522,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2684; - type="Land_HBarrier_Big_F"; + id=3090; + type="Land_Cargo_Patrol_V1_F"; }; - class Item947 + class Item686 { dataType="Object"; class PositionInfo { - position[]={6581.6963,214.49849,3743.1272}; - angles[]={0.0207968,5.4027257,6.095037}; + position[]={11249.083,14.016047,8942.2188}; + angles[]={0,2.8494594,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2685; - type="Land_HBarrier_5_F"; + id=3091; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-9.5367432e-007; }; - class Item948 + class Item687 { dataType="Object"; class PositionInfo { - position[]={6577.8755,215.18224,3738.5007}; - angles[]={0.0095994528,5.4027257,6.1386032}; + position[]={11244.73,14.702976,8934.1221}; + angles[]={0,1.2786632,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2686; - type="Land_HBarrier_5_F"; + id=3092; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-9.5367432e-007; }; - class Item949 + class Item688 { dataType="Object"; class PositionInfo { - position[]={6578.4624,215.60564,3736.0708}; - angles[]={0.0207968,5.4027257,6.1386032}; + position[]={11366.953,15.316151,8885.5547}; + angles[]={0,5.9669304,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=2687; - type="Land_HBarrier_Big_F"; + id=3093; + type="Land_HelipadSquare_F"; + atlOffset=0.65579605; }; - class Item950 + class Item689 { dataType="Object"; class PositionInfo { - position[]={6574.373,215.7552,3734.26}; - angles[]={0.0207968,5.4027257,6.1606021}; + position[]={11425.84,7.7856817,8997.8389}; + angles[]={0.03358667,2.8157158,6.2623887}; }; side="Empty"; flags=4; class Attributes { }; - id=2688; + id=3094; type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; + atlOffset=4.7683716e-007; }; - class Item951 + class Item690 { dataType="Object"; class PositionInfo { - position[]={6573.0498,216.45267,3729.5171}; - angles[]={0.017598685,5.4027257,6.1748128}; + position[]={11427.088,8.1524076,9000.377}; + angles[]={0.028790962,2.8253374,6.2655869}; }; side="Empty"; flags=4; class Attributes { }; - id=2689; + id=3095; type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; }; - class Item952 + class Item691 { dataType="Object"; class PositionInfo { - position[]={6570.8711,216.21141,3730.0198}; - angles[]={0.017598685,5.4027257,6.1748128}; + position[]={11429.75,7.7457166,8996.75}; + angles[]={0.030390549,4.3580632,6.2655902}; }; side="Empty"; flags=4; class Attributes { }; - id=2690; + id=3096; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; }; - class Item953 + class Item692 { dataType="Object"; class PositionInfo { - position[]={6566.75,217.06003,3724.25}; - angles[]={6.2816033,5.7879038,6.2176795}; + position[]={11432.013,8.1856518,8996.3721}; + angles[]={0.030390549,4.3580632,6.2639894}; }; side="Empty"; flags=4; class Attributes { }; - id=2693; + id=3097; type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item954 + class Item693 { dataType="Object"; class PositionInfo { - position[]={6564.9199,216.72116,3725.5344}; - angles[]={6.2655869,5.7879038,6.2176785}; + position[]={11358.935,15.830688,8870.6846}; + angles[]={0.0080009829,0.32061911,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=2694; + id=3098; type="Land_HBarrier_5_F"; + atlOffset=1.9073486e-006; }; - class Item955 + class Item694 { dataType="Object"; class PositionInfo { - position[]={6559.6406,216.98526,3722.6824}; - angles[]={6.2655869,5.7879038,6.2288389}; + position[]={11350.828,16.352947,8871.2314}; + angles[]={0.012798273,0.35251522,6.2767911}; }; side="Empty"; flags=4; class Attributes { }; - id=2695; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=3099; + type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; }; - class Item956 + class Item695 { dataType="Object"; class PositionInfo { - position[]={6559.2715,217.41719,3720.21}; - angles[]={6.2575908,5.7879038,6.2368193}; + position[]={11353.715,15.855233,8872.418}; + angles[]={0.0080009829,0.32061911,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=2696; - type="Land_HBarrier_Big_F"; + id=3100; + type="Land_HBarrier_5_F"; + atlOffset=1.9073486e-006; }; - class Item957 + class Item696 { dataType="Object"; class PositionInfo { - position[]={6554.8018,217.17126,3720.0681}; - angles[]={6.2495971,5.7879038,6.2304349}; + position[]={11358.867,16.315231,8868.5508}; + angles[]={6.2767911,0.35251522,6.2703872}; }; side="Empty"; flags=4; class Attributes { }; - id=2697; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3101; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item958 + class Item697 { dataType="Object"; class PositionInfo { - position[]={6551.793,217.69789,3716.1699}; - angles[]={6.2575908,5.7879038,6.2352223}; + position[]={11343.039,15.776361,8875.9629}; + angles[]={0.027191572,0.32061911,0.011198638}; }; side="Empty"; flags=4; class Attributes { }; - id=2698; - type="Land_HBarrier_Big_F"; + id=3102; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item959 + class Item698 { dataType="Object"; class PositionInfo { - position[]={6549.9629,217.34969,3717.4543}; - angles[]={6.2575908,5.7879038,6.2208662}; + position[]={11334.431,16.140106,8876.751}; + angles[]={0.028790962,0.35251522,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=2699; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=3103; + type="Land_HBarrier_Big_F"; + atlOffset=-9.5367432e-007; }; - class Item960 + class Item699 { dataType="Object"; class PositionInfo { - position[]={6544.6836,217.57526,3714.6028}; - angles[]={6.2480001,5.7879038,6.2304349}; + position[]={11337.818,15.675895,8877.6973}; + angles[]={0.028790962,0.32061911,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=2700; + id=3104; type="Land_HBarrier_5_F"; }; - class Item961 + class Item700 { dataType="Object"; class PositionInfo { - position[]={6544.3145,217.98488,3712.1301}; - angles[]={6.2687912,5.7879038,6.2304349}; + position[]={11342.629,16.28537,8873.9912}; + angles[]={0.015998369,0.35251522,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=2701; + id=3105; type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + atlOffset=-9.5367432e-007; }; - class Item962 + class Item701 { dataType="Object"; class PositionInfo { - position[]={6522.771,217.37057,3702.5486}; - angles[]={6.2017665,5.7879038,6.2687831}; + position[]={11348.258,15.842013,8874.2295}; + angles[]={0.012798273,0.32061911,0.004796607}; }; side="Empty"; flags=4; class Attributes { }; - id=2702; + id=3106; type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; }; - class Item963 + class Item702 { dataType="Object"; class PositionInfo { - position[]={6522.4019,217.63959,3700.0759}; - angles[]={6.2001762,5.7879038,6.2703824}; + position[]={11363.209,15.838747,8869.7607}; + angles[]={0.004796607,2.8643255,6.2623887}; }; side="Empty"; flags=4; class Attributes { }; - id=2703; - type="Land_HBarrier_Big_F"; + id=3107; + type="Land_HBarrier_3_F"; }; - class Item964 + class Item703 { dataType="Object"; class PositionInfo { - position[]={6517.9321,217.17899,3699.9346}; - angles[]={6.201767,5.7879038,0.031988446}; + position[]={11306.077,7.8111272,8958.7686}; + angles[]={0.078239501,2.1799536,0.011198638}; }; side="Empty"; flags=4; class Attributes { }; - id=2704; + id=3108; type="Land_HBarrier_5_F"; }; - class Item965 + class Item704 { dataType="Object"; class PositionInfo { - position[]={6514.9233,217.2415,3696.0364}; - angles[]={6.2065344,5.7879038,0.027195957}; + position[]={11306.324,7.9867597,8962.5684}; + angles[]={0.070284568,2.1799536,0.0207968}; }; side="Empty"; flags=4; class Attributes { }; - id=2705; + id=3109; type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; }; - class Item966 + class Item705 { dataType="Object"; class PositionInfo { - position[]={6513.0928,216.82088,3697.3208}; - angles[]={6.2065344,5.7879038,0.027195957}; + position[]={11309.432,7.5139108,8963.5342}; + angles[]={0.070284568,2.1799536,0.0207968}; }; side="Empty"; flags=4; class Attributes { }; - id=2706; + id=3110; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + atlOffset=4.7683716e-007; }; - class Item967 + class Item706 { dataType="Object"; class PositionInfo { - position[]={6507.814,216.46751,3694.4692}; - angles[]={6.2144933,5.7879038,0.023993526}; + position[]={11311.187,7.5925727,8969.541}; + angles[]={0.055941612,2.1799536,0.017598685}; }; side="Empty"; flags=4; class Attributes { }; - id=2707; - type="Land_HBarrier_5_F"; + id=3111; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; }; - class Item968 + class Item707 { dataType="Object"; class PositionInfo { - position[]={6507.4448,216.76299,3691.9966}; - angles[]={6.2097173,5.7879038,0.035185181}; + position[]={11312.782,7.2326217,8968.3008}; + angles[]={0.07346756,2.1799536,0.031988446}; }; side="Empty"; flags=4; class Attributes { }; - id=2708; - type="Land_HBarrier_Big_F"; + id=3112; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item969 + class Item708 { dataType="Object"; class PositionInfo { - position[]={6502.9746,215.96327,3691.855}; - angles[]={6.2097173,5.7879038,0.084597312}; + position[]={11316.135,7.0203357,8973.0674}; + angles[]={0.065506049,2.1799536,0.025594741}; }; side="Empty"; flags=4; class Attributes { }; - id=2709; + id=3113; type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + atlOffset=9.5367432e-007; }; - class Item970 + class Item709 { dataType="Object"; class PositionInfo { - position[]={6499.9658,215.63268,3687.9565}; - angles[]={6.1653333,5.7879038,0.039979152}; + position[]={11316.054,7.2909198,8976.5098}; + angles[]={0.046367738,2.1799536,0.025594741}; }; side="Empty"; flags=4; class Attributes { }; - id=2710; + id=3114; type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + atlOffset=4.7683716e-007; }; - class Item971 + class Item710 { dataType="Object"; class PositionInfo { - position[]={6498.1353,215.23949,3689.241}; - angles[]={6.144875,5.7879038,0.060723327}; + position[]={11319.487,6.8471293,8977.833}; + angles[]={0.049560208,2.1799536,0.036783949}; }; side="Empty"; flags=4; class Attributes { }; - id=2711; + id=3115; type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item972 + class Item711 { dataType="Object"; class PositionInfo { - position[]={6537.2881,217.73567,3710.3909}; - angles[]={6.2208652,5.7879038,6.2511935}; + position[]={11320.915,7.1248622,8983.4824}; + angles[]={0.030390549,2.1799536,0.03358667}; }; side="Empty"; flags=4; class Attributes { }; - id=2712; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=3116; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; }; - class Item973 + class Item712 { dataType="Object"; class PositionInfo { - position[]={6536.9189,218.0627,3707.9185}; - angles[]={6.2208652,5.7879038,6.2511935}; + position[]={11322.838,6.7469063,8982.5977}; + angles[]={0.030390549,2.1799536,0.03358667}; }; side="Empty"; flags=4; class Attributes { }; - id=2713; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=3117; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item974 + class Item713 { dataType="Object"; class PositionInfo { - position[]={6532.4492,217.65973,3707.7766}; - angles[]={6.2017641,5.7879038,6.2703872}; + position[]={11326.963,6.780242,8986.3125}; + angles[]={0.039977662,2.8517361,0.036782328}; }; side="Empty"; flags=4; class Attributes { }; - id=2714; + id=3118; type="Land_HBarrier_5_F"; }; - class Item975 + class Item714 { dataType="Object"; class PositionInfo { - position[]={6529.4404,217.87532,3703.8784}; - angles[]={6.2113104,5.7879038,6.2687874}; + position[]={11327.591,7.1994729,8988.6553}; + angles[]={0.022397626,2.8517361,0.036782328}; }; side="Empty"; flags=4; class Attributes { }; - id=2715; + id=3119; type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + atlOffset=4.7683716e-007; }; - class Item976 + class Item715 { dataType="Object"; class PositionInfo { - position[]={6527.6099,217.52466,3705.1628}; - angles[]={6.2113104,5.7879038,6.2687874}; + position[]={11332.232,6.9256783,8987.8828}; + angles[]={0.027193764,2.8517361,0.046366453}; }; side="Empty"; flags=4; class Attributes { }; - id=2716; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item977 - { - dataType="Logic"; - class PositionInfo - { - position[]={6524.5,218.875,3703}; - angles[]={0,5.9300461,0}; - }; - areaSize[]={2.1719999,0,6.0549998}; - areaIsRectangle=1; - flags=1; - id=2717; - type="ModuleHideTerrainObjects_F"; - atlOffset=0.83222961; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item978 - { - dataType="Logic"; - class PositionInfo - { - position[]={6508.4414,216.36656,3691.2664}; - angles[]={0,4.8049746,0}; - }; - areaSize[]={2.1719999,0,6.0549998}; - areaIsRectangle=1; - flags=1; - id=2718; - type="ModuleHideTerrainObjects_F"; - atlOffset=0.83222961; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; + id=3120; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item979 + class Item716 { - dataType="Logic"; + dataType="Object"; class PositionInfo { - position[]={6576.6021,217.13634,3793.1047}; - angles[]={0,4.5601711,0}; + position[]={11335.735,7.4589043,8991.0869}; + angles[]={0.033588443,2.8517361,0.039979152}; }; - areaSize[]={2.1719999,0,4.1310802}; - areaIsRectangle=1; - flags=1; - id=2719; - type="ModuleHideTerrainObjects_F"; - atlOffset=1.8999481; - class CustomAttributes + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; }; + id=3121; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; }; - class Item980 + class Item717 { - dataType="Logic"; + dataType="Object"; class PositionInfo { - position[]={6555.6396,219.88422,3809.2634}; - angles[]={0,4.4781942,0}; + position[]={11336.546,7.1440248,8989.1709}; + angles[]={0.033588443,5.993329,0.039979152}; }; - areaSize[]={2.1719999,0,15.157852}; - areaIsRectangle=1; - flags=1; - id=2720; - type="ModuleHideTerrainObjects_F"; - atlOffset=-0.11579895; - class CustomAttributes + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; }; + id=3122; + type="Land_HBarrier_3_F"; + atlOffset=4.7683716e-007; }; - class Item981 + class Item718 { - dataType="Logic"; + dataType="Object"; class PositionInfo { - position[]={6465.0083,221.10483,3912.1467}; - angles[]={0,5.7721376,0}; + position[]={11344.063,7.4183836,8989.3125}; + angles[]={0.036782328,3.4496229,0.046366453}; }; - areaSize[]={2.1719999,0,15.157852}; - areaIsRectangle=1; - flags=1; - id=2721; - type="ModuleHideTerrainObjects_F"; - atlOffset=-0.11579895; - class CustomAttributes + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; }; + id=3123; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item982 + class Item719 { dataType="Object"; class PositionInfo { - position[]={6503.375,223.4205,3801.25}; - angles[]={0,5.6388001,0}; + position[]={11352.177,8.2692223,8988.8701}; + angles[]={0.039977662,3.481519,0.043172773}; }; side="Empty"; flags=4; class Attributes { }; - id=2722; + id=3124; + type="Land_HBarrier_Big_F"; + }; + class Item720 + { + dataType="Object"; + class PositionInfo + { + position[]={11349.306,7.7228818,8987.6475}; + angles[]={0.036782328,3.4496229,0.046366453}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=3125; type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item983 + class Item721 { dataType="Object"; class PositionInfo { - position[]={6507.8667,223.4205,3804.594}; - angles[]={0,5.6388001,0}; + position[]={11344.104,7.8110757,8991.4502}; + angles[]={0.036782328,3.481519,0.046366453}; }; side="Empty"; flags=4; class Attributes { }; - id=2723; + id=3126; + type="Land_HBarrier_Big_F"; + atlOffset=3.5762787e-005; + }; + class Item722 + { + dataType="Object"; + class PositionInfo + { + position[]={11360.026,8.3313885,8984.2354}; + angles[]={0.049560208,3.4496229,0.036783949}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=3127; type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item984 + class Item723 { dataType="Object"; class PositionInfo { - position[]={6498.7778,223.4205,3797.885}; - angles[]={0,5.6388001,0}; + position[]={11368.643,9.1088209,8983.5566}; + angles[]={0.051155224,3.481519,0.028793031}; }; side="Empty"; flags=4; class Attributes { }; - id=2724; + id=3128; + type="Land_HBarrier_Big_F"; + atlOffset=5.2452087e-006; + }; + class Item724 + { + dataType="Object"; + class PositionInfo + { + position[]={11365.267,8.5892229,8982.5684}; + angles[]={0.049559005,3.4496229,0.030392511}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=3129; type="Land_HBarrier_5_F"; }; - class Item985 + class Item725 { dataType="Object"; class PositionInfo { - position[]={6498.8013,222.79068,3809.207}; - angles[]={0,2.4946883,0}; + position[]={11360.41,8.716835,8986.2148}; + angles[]={0.049560208,3.481519,0.036783949}; }; side="Empty"; flags=4; class Attributes { }; - id=2725; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes + id=3130; + type="Land_HBarrier_Big_F"; + }; + class Item726 + { + dataType="Object"; + class PositionInfo + { + position[]={11354.785,8.0464363,8985.9033}; + angles[]={0.049559005,3.4496229,0.043172773}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=3131; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item986 + class Item727 { dataType="Object"; class PositionInfo { - position[]={6491.8701,222.79068,3818.3833}; - angles[]={0,5.636281,0}; + position[]={11339.779,7.2539001,8990.1846}; + angles[]={0.03358667,5.993329,0.046366453}; }; side="Empty"; flags=4; class Attributes { }; - id=2726; - type="PortableHelipadLight_01_red_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3132; + type="Land_HBarrier_3_F"; + atlOffset=4.7683716e-007; }; - class Item987 + class Item728 { dataType="Object"; class PositionInfo { - position[]={6496.4585,222.79068,3821.8494}; - angles[]={0,0.13849419,0}; + position[]={11328.487,15.55295,8879.4824}; + angles[]={0.028790962,5.9669304,0.02399601}; }; side="Empty"; flags=4; class Attributes { }; - id=2727; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3133; + type="Land_HBarrier_3_F"; }; - class Item988 + class Item729 { dataType="Object"; class PositionInfo { - position[]={6487.2817,222.79068,3814.9177}; - angles[]={0,4.850883,0}; + position[]={11333.468,15.648808,8879.1953}; + angles[]={0.028790962,0.32328033,0.0095994528}; }; side="Empty"; flags=4; class Attributes { }; - id=2728; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3134; + type="Land_HBarrier_3_F"; + atlOffset=9.5367432e-007; }; - class Item989 + class Item730 { dataType="Object"; class PositionInfo { - position[]={6494.2129,222.79068,3805.7415}; - angles[]={0,3.2800868,0}; + position[]={11331.014,15.507783,8879.8145}; + angles[]={0.028790962,0.098769665,0.02399601}; }; side="Empty"; flags=4; class Attributes { }; - id=2729; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes + id=3135; + type="Land_HBarrier_1_F"; + atlOffset=9.5367432e-007; + }; + class Item731 + { + dataType="Object"; + class PositionInfo + { + position[]={11337.234,7.7909112,8973.8096}; + angles[]={0,2.8141022,0}; + }; + side="Empty"; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=3136; + type="Land_HelipadSquare_F"; + atlOffset=0.64489794; }; - class Item990 + class Item732 { dataType="Object"; class PositionInfo { - position[]={6503.3896,222.79068,3812.6724}; - angles[]={0,1.7092903,0}; + position[]={11435.063,8.3863335,8988.3027}; + angles[]={0.035185181,1.2293053,6.260788}; }; side="Empty"; flags=4; class Attributes { }; - id=2730; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3137; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; }; - class Item991 + class Item733 { dataType="Object"; class PositionInfo { - position[]={6499.9238,222.79068,3817.261}; - angles[]={0,0.9238922,0}; + position[]={11431.839,7.8800097,8991.4014}; + angles[]={0.035185181,1.2293053,6.260788}; }; side="Empty"; flags=4; class Attributes { }; - id=2731; - type="PortableHelipadLight_01_white_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3138; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item992 + class Item734 { dataType="Object"; class PositionInfo { - position[]={6490.7476,222.79068,3810.3298}; - angles[]={0,4.065485,0}; + position[]={11433.681,8.0211029,8986.2207}; + angles[]={0.035185181,1.2293053,6.260788}; }; side="Empty"; flags=4; class Attributes { }; - id=2732; - type="PortableHelipadLight_01_yellow_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3139; + type="Land_HBarrier_5_F"; }; - class Item993 + class Item735 { dataType="Object"; class PositionInfo { - position[]={6495.3359,223.42999,3813.7954}; - angles[]={0,0.9238922,0}; + position[]={11435.522,8.1727877,8981.0381}; + angles[]={0.039979152,1.2293053,6.2559919}; }; side="Empty"; + flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=2733; - type="Land_HelipadSquare_F"; - atlOffset=0.75; + id=3140; + type="Land_HBarrier_5_F"; + atlOffset=4.7683716e-007; }; - class Item994 + class Item736 { dataType="Object"; class PositionInfo { - position[]={6516.2798,222.79068,3786.0667}; - angles[]={0,2.4946883,0}; + position[]={11437.909,8.6071157,8980.2939}; + angles[]={0.039979152,1.2293053,6.2559919}; }; side="Empty"; flags=4; class Attributes { }; - id=2734; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3141; + type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; }; - class Item995 + class Item737 { dataType="Object"; class PositionInfo { - position[]={6509.3545,222.7907,3795.2449}; - angles[]={0,5.636281,0}; + position[]={11440.588,8.8322525,8972.7549}; + angles[]={0.038381387,1.2293053,6.2559919}; }; side="Empty"; flags=4; class Attributes { }; - id=2735; - type="PortableHelipadLight_01_red_F"; + id=3142; + type="Land_HBarrier_Big_F"; atlOffset=1.5258789e-005; - class CustomAttributes + }; + class Item738 + { + dataType="Object"; + class PositionInfo + { + position[]={11437.365,8.3300076,8975.8545}; + angles[]={0.039979152,1.2293053,6.2559919}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=3143; + type="Land_HBarrier_5_F"; }; - class Item996 + class Item739 { dataType="Object"; class PositionInfo { - position[]={6513.9429,222.79068,3798.7102}; - angles[]={0,0.13849419,0}; + position[]={11439.207,8.4929504,8970.6709}; + angles[]={0.043172773,1.2293053,6.2511969}; }; side="Empty"; flags=4; class Attributes { }; - id=2736; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3144; + type="Land_HBarrier_5_F"; + atlOffset=8.1062317e-006; }; - class Item997 + class Item740 { dataType="Object"; class PositionInfo { - position[]={6504.7661,222.79068,3791.7791}; - angles[]={0,4.8508825,0}; + position[]={11449.246,9.6310053,8947.0273}; + angles[]={0.043174155,1.2955189,6.2400112}; }; side="Empty"; flags=4; class Attributes { }; - id=2737; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3145; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item998 + class Item741 { dataType="Object"; class PositionInfo { - position[]={6511.6919,222.79068,3782.6008}; - angles[]={0,3.2800868,0}; + position[]={11447.506,9.2910891,8945.7852}; + angles[]={0.044770103,1.2955189,6.2384152}; }; side="Empty"; flags=4; class Attributes { }; - id=2738; - type="Land_PortableHelipadLight_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3146; + type="Land_HBarrier_5_F"; }; - class Item999 + class Item742 { dataType="Object"; class PositionInfo { - position[]={6520.8687,222.7907,3789.532}; - angles[]={0,1.7092903,0}; + position[]={11451.804,9.8738508,8938.6602}; + angles[]={0.041575778,1.2955189,6.2400126}; }; side="Empty"; flags=4; class Attributes { }; - id=2739; - type="Land_PortableHelipadLight_01_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3147; + type="Land_HBarrier_Big_F"; + atlOffset=8.5830688e-006; }; - class Item1000 + class Item743 { dataType="Object"; class PositionInfo { - position[]={6517.4023,223.54665,3794.1204}; - angles[]={0,0.9238922,0}; + position[]={11449.251,9.4473448,8940.3066}; + angles[]={0.041577213,1.2955189,6.2384167}; }; side="Empty"; + flags=4; class Attributes { }; - id=2740; - type="PortableHelipadLight_01_white_F"; - atlOffset=0.75596619; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=3148; + type="Land_HBarrier_5_F"; }; - class Item1001 + class Item744 { dataType="Object"; class PositionInfo { - position[]={6508.2261,222.79068,3787.189}; - angles[]={0,4.065485,0}; + position[]={11450.748,9.6005487,8935.0117}; + angles[]={0.041577213,1.2955189,6.2384167}; }; side="Empty"; flags=4; class Attributes { }; - id=2741; - type="PortableHelipadLight_01_yellow_F"; - class CustomAttributes + id=3149; + type="Land_HBarrier_5_F"; + atlOffset=9.5367432e-007; + }; + class Item745 + { + dataType="Object"; + class PositionInfo + { + position[]={11452.24,9.75138,8929.7197}; + angles[]={0.039977662,1.2955189,6.2384167}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=3150; + type="Land_HBarrier_5_F"; + atlOffset=-9.5367432e-007; }; - class Item1002 + class Item746 { dataType="Object"; class PositionInfo { - position[]={6512.8149,223.42999,3790.6548}; - angles[]={0,0.9238922,0}; + position[]={11456.289,10.313666,8922.7793}; + angles[]={0.038381387,1.2955189,6.2416096}; }; side="Empty"; + flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=2742; - type="Land_HelipadSquare_F"; - atlOffset=0.75; + id=3151; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item1003 + class Item747 { dataType="Object"; class PositionInfo { - position[]={6488.396,234.11803,3919.9109}; - angles[]={0,4.712389,0}; + position[]={11453.735,9.8992529,8924.4258}; + angles[]={0.038381387,1.2955189,6.2368193}; }; side="Empty"; flags=4; class Attributes { }; - id=2743; - type="Land_Cargo_Tower_V2_F"; + id=3152; + type="Land_HBarrier_5_F"; + atlOffset=-1.9073486e-006; }; - class Item1004 + class Item748 { dataType="Object"; class PositionInfo { - position[]={6382.25,214.00281,3727.875}; - angles[]={6.2735858,0.93489391,6.278389}; + position[]={11454.013,10.096641,8930.8408}; + angles[]={0.039977662,1.2955189,6.2384167}; }; side="Empty"; flags=4; class Attributes { }; - id=2745; + id=3153; type="Land_HBarrier_Big_F"; + atlOffset=2.8610229e-006; }; - class Item1005 + class Item749 { dataType="Object"; class PositionInfo { - position[]={6377.2017,214.05748,3734.7134}; - angles[]={6.2687874,0.93489391,0.0080009829}; + position[]={11445.982,22.391195,8924.9443}; + angles[]={0,1.2545426,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2747; - type="Land_HBarrier_Big_F"; + id=3154; + type="Land_Cargo_Tower_V1_F"; }; - class Item1006 + class Item750 { dataType="Object"; class PositionInfo { - position[]={6372.1528,214.09033,3741.5518}; - angles[]={6.278389,0.93489391,0.0032018756}; + position[]={11426.003,20.207169,8989.9736}; + angles[]={0,4.3781586,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2750; - type="Land_HBarrier_Big_F"; + id=3155; + type="Land_Cargo_Tower_V1_F"; }; - class Item1007 + class Item751 { dataType="Object"; class PositionInfo { - position[]={6357.147,213.89066,3761.5591}; - angles[]={0.012798273,0.93489391,0.0095994528}; + position[]={11318.46,27.213188,8883.7344}; + angles[]={0,1.2545426,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2752; - type="Land_HBarrier_Big_F"; + id=3156; + type="Land_Cargo_Tower_V1_F"; + atlOffset=9.5367432e-007; }; - class Item1008 + class Item752 { dataType="Object"; class PositionInfo { - position[]={6352.0991,213.72147,3768.3977}; - angles[]={0.012798273,0.93489391,0.017598685}; + position[]={11284.583,14.246471,8883.9756}; + angles[]={0,0.45790768,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=2754; - type="Land_HBarrier_Big_F"; + id=3157; + type="Land_HelipadSquare_F"; + atlOffset=0.70659256; }; - class Item1009 + class Item753 { dataType="Object"; class PositionInfo { - position[]={6347.0508,213.48338,3775.2361}; - angles[]={0.017595299,0.93489391,0.014398213}; + position[]={11269.873,10.524092,8926.1074}; + angles[]={0,2.0287037,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=2757; - type="Land_HBarrier_Big_F"; + id=3158; + type="Land_HelipadSquare_F"; + atlOffset=0.63049412; }; - class Item1010 + class Item754 { dataType="Object"; class PositionInfo { - position[]={6366.9468,214.08284,3748.2844}; - angles[]={6.2816033,0.93489391,0.0080009829}; + position[]={11414.22,11.861256,8921.6777}; + angles[]={0,0.45790768,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=2760; - type="Land_HBarrier_Big_F"; + id=3159; + type="Land_HelipadSquare_F"; + atlOffset=0.66751099; }; - class Item1011 + class Item755 { dataType="Object"; class PositionInfo { - position[]={6361.8984,214.01147,3755.1228}; - angles[]={0.006394445,0.93489391,0.0095994528}; + position[]={11396.607,9.3345757,8973.5195}; + angles[]={0,2.0287037,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=2762; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=3160; + type="Land_HelipadSquare_F"; + atlOffset=0.61739731; }; - class Item1012 + class Item756 { dataType="Object"; class PositionInfo { - position[]={6404.1221,213.11432,3701.8059}; - angles[]={6.1370354,0.87696218,0.10837226}; + position[]={11374.281,23.625355,8937.8145}; + angles[]={0.081419133,4.3798451,0.011193314}; }; side="Empty"; flags=4; class Attributes { }; - id=2764; - type="Land_HBarrier_Big_F"; + id=3161; + type="Land_LampAirport_F"; + atlOffset=9.5367432e-007; }; - class Item1013 + class Item757 { dataType="Object"; class PositionInfo { - position[]={6398.6865,213.39998,3708.3403}; - angles[]={6.2559919,0.87696218,6.2655869}; + position[]={11417.728,22.016502,8950.9893}; + angles[]={0.059130985,1.2382526,6.2480001}; }; side="Empty"; flags=4; class Attributes { }; - id=2765; - type="Land_HBarrier_Big_F"; + id=3162; + type="Land_LampAirport_F"; }; - class Item1014 + class Item758 { dataType="Object"; class PositionInfo { - position[]={6393.25,213.66722,3714.875}; - angles[]={6.2575908,0.87696218,6.2703872}; + position[]={11399.243,12.236088,8938.5645}; + angles[]={0.059130985,1.2382526,6.2639894}; }; side="Empty"; flags=4; class Attributes { }; - id=2766; - type="Land_HBarrier_Big_F"; + id=3163; + type="Land_MedicalTent_01_NATO_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item1015 + class Item759 { dataType="Object"; class PositionInfo { - position[]={6387.6631,213.88271,3721.2949}; - angles[]={6.2655869,0.87696218,6.2703872}; + position[]={11399.243,14.485369,8938.5645}; + angles[]={6.0024781,1.2382526,6.145391}; }; side="Empty"; flags=4; class Attributes { }; - id=2767; - type="Land_HBarrier_Big_F"; + id=3164; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.17053032; }; - class Item1016 + class Item760 { dataType="Object"; class PositionInfo { - position[]={6416.75,212.79201,3690.25}; - angles[]={6.2687912,0.70096266,6.2719922}; + position[]={11412.12,11.615068,8943.0127}; + angles[]={0.052750662,1.2382526,6.2527947}; }; side="Empty"; flags=4; class Attributes { }; - id=2768; - type="Land_HBarrier_Big_F"; + id=3165; + type="Land_MedicalTent_01_NATO_generic_open_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item1017 + class Item761 { dataType="Object"; class PositionInfo { - position[]={6410.2544,212.92105,3695.7317}; - angles[]={6.1433072,0.70096266,0.10995284}; + position[]={11412.12,13.908028,8943.0127}; + angles[]={5.9955802,1.2382526,6.1341295}; }; side="Empty"; flags=4; class Attributes { }; - id=2769; - type="Land_HBarrier_Big_F"; + id=3166; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.2069521; }; - class Item1018 + class Item762 { dataType="Object"; class PositionInfo { - position[]={6430.5,212.3736,3680.375}; - angles[]={6.1401696,0.61142558,6.2703872}; + position[]={11417.893,10.220989,8948.8223}; + angles[]={0.054345392,0.45285416,6.2480001}; }; side="Empty"; flags=4; class Attributes { }; - id=2770; - type="Land_HBarrier_Big_F"; + id=3167; + type="Land_AirConditioner_04_F"; }; - class Item1019 + class Item763 { dataType="Object"; class PositionInfo { - position[]={6423.54,212.64403,3685.2539}; - angles[]={6.2687912,0.61142558,6.271987}; + position[]={11372.875,11.602781,8942.875}; + angles[]={0.078239501,5.9506416,0.014398213}; }; side="Empty"; flags=4; class Attributes { }; - id=2771; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=3168; + type="StorageBladder_01_fuel_forest_F"; }; - class Item1020 + class Item764 { dataType="Object"; class PositionInfo { - position[]={6443.125,212.774,3673.75}; - angles[]={6.182724,0.45607495,0}; + position[]={11383.25,11.368201,8946.625}; + angles[]={0.071875811,5.9506416,6.278389}; }; side="Empty"; flags=4; class Attributes { }; - id=2772; - type="Land_HBarrier_Big_F"; + id=3169; + type="StorageBladder_01_fuel_forest_F"; }; - class Item1021 + class Item765 { dataType="Object"; class PositionInfo { - position[]={6437.375,212.8918,3676.5}; - angles[]={0,0.45607495,0.065506049}; + position[]={11380.327,12.264771,8939.8408}; + angles[]={0.07346756,5.9693551,0.0032018756}; }; side="Empty"; flags=4; class Attributes { }; - id=2773; + id=3170; type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item1022 + class Item766 { dataType="Object"; class PositionInfo { - position[]={6451,212.38802,3670}; - angles[]={6.1811414,0.45607495,0}; + position[]={11388.413,12.021636,8942.4668}; + angles[]={0.067099303,5.9693551,6.2671833}; }; side="Empty"; flags=4; class Attributes { }; - id=2774; + id=3171; type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item1023 + class Item767 { dataType="Object"; class PositionInfo { - position[]={6459.125,212.28201,3666.5}; - angles[]={0.0015822123,0.34703127,0.006394445}; + position[]={11396.021,11.750527,8944.9355}; + angles[]={0.063912325,5.9693551,6.2639894}; }; side="Empty"; flags=4; class Attributes { }; - id=2775; + id=3172; type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item1024 + class Item768 { dataType="Object"; class PositionInfo { - position[]={6467.375,212.37061,3663.625}; - angles[]={0.0015822123,0.32439926,0.012793615}; + position[]={11411.716,11.070687,8950.0313}; + angles[]={0.06072529,5.9693551,6.2543926}; }; side="Empty"; flags=4; class Attributes { }; - id=2776; + id=3173; type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item1025 + class Item769 { dataType="Object"; class PositionInfo { - position[]={6475.75,212.51279,3661.5}; - angles[]={6.2671871,0.2205524,0.038379833}; + position[]={11403.75,11.433267,8947.4434}; + angles[]={0.057536088,5.9693551,6.260788}; }; side="Empty"; flags=4; class Attributes { }; - id=2777; + id=3174; type="Land_HBarrier_Big_F"; + atlOffset=1.9073486e-006; }; - class Item1026 + class Item770 { dataType="Object"; class PositionInfo { - position[]={6484.25,212.724,3660.125}; - angles[]={0.0032018756,0.11290161,0.028793031}; + position[]={11328.152,23.783936,8923.5957}; + angles[]={0.10204422,1.2433062,0.038381387}; }; side="Empty"; flags=4; class Attributes { }; - id=2778; - type="Land_HBarrier_Big_F"; + id=3175; + type="Land_LampAirport_F"; }; - class Item1027 + class Item771 { dataType="Object"; class PositionInfo { - position[]={6494.875,214.76921,3682.25}; - angles[]={6.2081265,4.8304386,6.2511969}; + position[]={11286.372,23.939781,8909.7969}; + angles[]={0.094121099,4.3798451,0.012798273}; }; side="Empty"; flags=4; class Attributes { }; - id=2779; - type="Land_HBarrier_Big_F"; + id=3176; + type="Land_LampAirport_F"; + atlOffset=9.5367432e-007; }; - class Item1028 + class Item772 { dataType="Object"; class PositionInfo { - position[]={6494,213.61198,3673.75}; - angles[]={6.197001,4.8304386,0.039979152}; + position[]={11453.304,11.739883,8957.7959}; + angles[]={0,1.2433062,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=2780; - type="Land_HBarrier_Big_F"; + id=3177; + type="Land_LampSolar_F"; + atlOffset=4.7683716e-007; }; - class Item1029 + class Item773 { dataType="Object"; class PositionInfo { - position[]={6493,213.03081,3659.5}; - angles[]={0.0032018756,0.076137125,0.03837828}; + position[]={11446.052,8.8674297,8967.8721}; + angles[]={0.038381387,6.2195921,6.2543945}; }; side="Empty"; flags=4; class Attributes { }; - id=2781; + id=3178; type="Land_HBarrier_Big_F"; + atlOffset=4.7683716e-007; }; - class Item1030 + class Item774 { dataType="Object"; class PositionInfo { - position[]={6494.875,214.24379,3665.625}; - angles[]={0,1.6222429,0}; + position[]={11450.639,9.2807322,8953.9854}; + angles[]={0.041577213,5.7903814,6.2464013}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2782; - type="Land_Mil_WiredFence_Gate_F"; + id=3179; + type="Land_HBarrier_Big_F"; + atlOffset=9.5367432e-007; }; - class Item1031 + class Item775 { dataType="Object"; class PositionInfo { - position[]={6476.9058,216.595,3673.9395}; - angles[]={0,0.15343541,0}; + position[]={11435.132,12.836953,8969.707}; + angles[]={0,4.3848953,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2783; - type="Land_Cargo_Patrol_V2_F"; + id=3180; + type="Land_Cargo_Patrol_V1_F"; }; - class Item1032 + class Item776 { dataType="Object"; class PositionInfo { - position[]={6576.9712,219.51978,3754.1665}; - angles[]={0,4.9084444,0}; + position[]={11442.75,13.752237,8944}; + angles[]={0,4.3848953,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2785; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=-0.025588989; + id=3181; + type="Land_Cargo_Patrol_V1_F"; }; - class Item1033 + class Item777 { - dataType="Object"; - class PositionInfo - { - position[]={6531.042,227.23828,3884.0693}; - angles[]={0,4.2672644,0}; - }; - side="Empty"; - flags=5; - class Attributes + dataType="Layer"; + name="Airfields"; + class Entities { + items=12; + class Item0 + { + dataType="Marker"; + position[]={7894.75,150.5,9742.5}; + name="airport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=239.14899; + b=151.89774; + angle=248.19386; + id=212; + atlOffset=1.3180084; + }; + class Item1 + { + dataType="Marker"; + position[]={3914.0186,68.160004,10210.035}; + name="airport"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=361.85641; + b=148.96893; + angle=320.09518; + id=210; + atlOffset=0.15761566; + }; + class Item2 + { + dataType="Marker"; + position[]={6468.5845,222.67999,3799.3018}; + name="airport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=126.36222; + b=102.06323; + angle=247.21413; + id=211; + }; + class Item3 + { + dataType="Marker"; + position[]={11349.085,50.75,8927.5781}; + name="airport_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=110.95676; + b=73.756149; + angle=342.70255; + id=213; + atlOffset=39.107067; + }; + class Item4 + { + dataType="Marker"; + position[]={4039.75,68.026001,10206.5}; + name="airp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=31.424999; + b=13.036; + angle=134.382; + id=3204; + atlOffset=0.0004119873; + }; + class Item5 + { + dataType="Marker"; + position[]={3986.5129,68.160004,10152}; + name="airp_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=3201; + }; + class Item6 + { + dataType="Marker"; + position[]={6467.625,58,3820.75}; + name="airp_1_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=3190; + atlOffset=-164.67999; + }; + class Item7 + { + dataType="Marker"; + position[]={7904.625,139.625,9758.25}; + name="airp_2_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=6.4925308; + b=6.2019529; + id=3205; + atlOffset=-9.7825928; + }; + class Item8 + { + dataType="Marker"; + position[]={6384.625,51.375,3853.875}; + name="airp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=28.97348; + b=11.090794; + angle=258.53625; + id=3189; + atlOffset=-162.435; + }; + class Item9 + { + dataType="Marker"; + position[]={7903.5,133,9866.75}; + name="airp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.010422; + b=8.6266327; + angle=90.943764; + id=3206; + atlOffset=-18.179993; + }; + class Item10 + { + dataType="Marker"; + position[]={3971,67.875,10252}; + name="airp_hangar_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorRed"; + a=50; + b=25.348; + angle=312.93091; + id=3203; + atlOffset=-0.00019836426; + }; + class Item11 + { + dataType="Marker"; + position[]={11405.53,7.0110002,9007.2695}; + name="airp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=161.98796; + id=3216; + atlOffset=-0.00051355362; + }; }; - id=2786; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=-0.025588989; + id=3184; + atlOffset=-75.780121; }; - class Item1034 + class Item778 { - dataType="Object"; - class PositionInfo - { - position[]={6361.2476,218.68941,3817.1052}; - angles[]={0,1.9076691,0}; - }; - side="Empty"; - flags=5; - class Attributes + dataType="Layer"; + name="Resources"; + class Entities { + items=18; + class Item0 + { + dataType="Marker"; + position[]={1220.5964,90.339996,8959.0313}; + name="resource"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=72.040894; + b=66.637695; + id=192; + atlOffset=0.00071716309; + }; + class Item1 + { + dataType="Marker"; + position[]={2073.125,84.041,9473.5}; + name="resource_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=105.38583; + b=50; + angle=34.30983; + id=193; + }; + class Item2 + { + dataType="Marker"; + position[]={7639.3828,126.75,2679.4541}; + name="resource_10"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + id=202; + }; + class Item3 + { + dataType="Marker"; + position[]={11571.317,42.501511,397.11075}; + name="resource_11"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + id=203; + }; + class Item4 + { + dataType="Marker"; + position[]={7831.875,74.617188,5842.125}; + name="resource_12"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=72.654297; + b=72.343262; + angle=336.49976; + id=204; + atlOffset=-1.5900192; + }; + class Item5 + { + dataType="Marker"; + position[]={9073.3477,129.75565,6643.3481}; + name="resource_13"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=66.131203; + b=50; + angle=343.26126; + id=205; + atlOffset=0.013580322; + }; + class Item6 + { + dataType="Marker"; + position[]={10654.603,63.91148,6963.7456}; + name="resource_14"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=64.756393; + angle=36.986652; + id=206; + atlOffset=-0.25345993; + }; + class Item7 + { + dataType="Marker"; + position[]={9831.25,46.625,8087.625}; + name="resource_15"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=67.521973; + b=73.392822; + angle=19.675964; + id=207; + atlOffset=-0.61500168; + }; + class Item8 + { + dataType="Marker"; + position[]={3132.6716,92.199997,12008.724}; + name="resource_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + id=194; + }; + class Item9 + { + dataType="Marker"; + position[]={5126.5,24.499023,10439.5}; + name="resource_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=73.913589; + b=156.8203; + angle=318.31445; + id=195; + atlOffset=-0.71657944; + }; + class Item10 + { + dataType="Marker"; + position[]={3814,31.533203,8470.375}; + name="resource_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=78.386719; + b=78.370117; + id=196; + atlOffset=-0.98679733; + }; + class Item11 + { + dataType="Marker"; + position[]={1314.2432,43.837196,8015.0566}; + name="resource_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=98.871033; + b=81.176025; + id=197; + atlOffset=2.8815651; + }; + class Item12 + { + dataType="Marker"; + position[]={4852.5,142.125,7299.375}; + name="resource_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=69.126396; + b=68.896507; + angle=8.6938763; + id=198; + atlOffset=0.52799988; + }; + class Item13 + { + dataType="Marker"; + position[]={2580.9646,226.5,5481.0532}; + name="resource_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=111.99742; + b=43.611252; + angle=45.048157; + id=199; + atlOffset=0.67408752; + }; + class Item14 + { + dataType="Marker"; + position[]={5218.5,198.95,5661}; + name="resource_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + id=200; + }; + class Item15 + { + dataType="Marker"; + position[]={1664.5,199.4552,3685}; + name="resource_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=76.100403; + b=94.005249; + angle=357.297; + id=201; + }; + class Item16 + { + dataType="Marker"; + position[]={1356.004,41.870998,8035.1641}; + name="reso_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=130.30399; + id=3227; + atlOffset=-0.00046157837; + }; + class Item17 + { + dataType="Marker"; + position[]={1658.625,199.41901,3634.875}; + name="reso_9_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=86.959999; + id=3225; + atlOffset=0.00039672852; + }; }; - id=2787; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=-0.025588989; + id=3185; + atlOffset=-48.311417; }; - class Item1035 + class Item779 { - dataType="Object"; - class PositionInfo - { - position[]={6400.3735,219.96907,3888.738}; - angles[]={0,2.1754453,0}; - }; - side="Empty"; - flags=5; - class Attributes + dataType="Layer"; + name="Outposts"; + class Entities { + items=36; + class Item0 + { + dataType="Marker"; + position[]={1078.702,275.09799,11408.5}; + name="outpost"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=50; + b=50; + id=56; + atlOffset=0.00015258789; + }; + class Item1 + { + dataType="Marker"; + position[]={2065.5,109.73633,11150.5}; + name="outpost_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=218.24034; + b=239.39792; + angle=67.836891; + id=57; + atlOffset=-8.0124741; + }; + class Item2 + { + dataType="Marker"; + position[]={8923.75,308.25,2067.875}; + name="outpost_10"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=85.130371; + b=72.120605; + id=66; + atlOffset=5.7438049; + }; + class Item3 + { + dataType="Marker"; + position[]={9898.8945,184.75,3894.9941}; + name="outpost_11"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=95.76815; + b=130.22659; + angle=6.1560383; + id=67; + atlOffset=3.924118; + }; + class Item4 + { + dataType="Marker"; + position[]={11123.143,185.5,2473.3086}; + name="outpost_12"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=84.215332; + b=81.173462; + id=68; + atlOffset=1.3292236; + }; + class Item5 + { + dataType="Marker"; + position[]={11311.66,176.89999,4201.9844}; + name="outpost_13"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=104.21985; + b=69.965927; + angle=340.66489; + id=69; + }; + class Item6 + { + dataType="Marker"; + position[]={7641.375,63.0014,5972.125}; + name="outpost_14"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=69.077148; + b=65.789063; + angle=332.43008; + id=70; + }; + class Item7 + { + dataType="Marker"; + position[]={8916.625,138.5596,6578.5}; + name="outpost_15"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=50; + b=50; + angle=334.25339; + id=71; + }; + class Item8 + { + dataType="Marker"; + position[]={9680.9219,43.615002,8495.7031}; + name="outpost_16"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=74.474213; + b=56.669998; + angle=322.1239; + id=72; + atlOffset=-0.01770401; + }; + class Item9 + { + dataType="Marker"; + position[]={9428.8545,72.030151,10362.884}; + name="outpost_17"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=30.086159; + b=61.861637; + angle=321.72488; + id=73; + atlOffset=0.016929626; + }; + class Item10 + { + dataType="Marker"; + position[]={8159.8047,35.146511,10768.631}; + name="outpost_18"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=57.197998; + b=171.13599; + angle=350.74753; + id=74; + atlOffset=-8.6170387; + }; + class Item11 + { + dataType="Marker"; + position[]={7823.1758,169.28152,10093.804}; + name="outpost_19"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=60.068604; + b=50; + id=75; + atlOffset=-0.045181274; + }; + class Item12 + { + dataType="Marker"; + position[]={4266.7583,70,10486.607}; + name="outpost_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=102.14345; + b=144.61456; + angle=314.80792; + id=58; + atlOffset=1.8328552; + }; + class Item13 + { + dataType="Marker"; + position[]={6302.375,36.669998,9906.25}; + name="outpost_20"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=50; + b=50; + id=76; + }; + class Item14 + { + dataType="Marker"; + position[]={6415.625,53.427208,8178.375}; + name="outpost_21"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=79.035378; + b=67.170029; + angle=314.43701; + id=77; + }; + class Item15 + { + dataType="Marker"; + position[]={6849.5,5.4451981,11204.5}; + name="outpost_22"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=50; + b=50; + angle=48.56834; + id=208; + }; + class Item16 + { + dataType="Marker"; + position[]={2046.8824,50.054153,7278.7412}; + name="outpost_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=54.100723; + b=56.806438; + angle=27.074936; + id=59; + atlOffset=-2.2098808; + }; + class Item17 + { + dataType="Marker"; + position[]={4617.0688,131.88693,6314.8472}; + name="outpost_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=55.822796; + b=43.394402; + angle=338.12772; + id=60; + atlOffset=0.099838257; + }; + class Item18 + { + dataType="Marker"; + position[]={3182.5,235.84601,4950}; + name="outpost_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=50; + b=50; + angle=45.087116; + id=61; + }; + class Item19 + { + dataType="Marker"; + position[]={4544,115.01487,4745}; + name="outpost_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=86.644043; + b=100.35596; + id=62; + }; + class Item20 + { + dataType="Marker"; + position[]={5614.6919,251.62126,3780.3594}; + name="outpost_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=122.63338; + b=88.012146; + angle=331.32162; + id=63; + atlOffset=0.16125488; + }; + class Item21 + { + dataType="Marker"; + position[]={4952.9375,357.83502,2149.1367}; + name="outpost_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=168.66092; + b=127.42848; + angle=48.552986; + id=64; + atlOffset=3.6047058; + }; + class Item22 + { + dataType="Marker"; + position[]={3831.0908,388.78015,1830.3856}; + name="outpost_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=50; + b=50; + id=65; + atlOffset=0.00015258789; + }; + class Item23 + { + dataType="Marker"; + position[]={4302.8921,68.219002,10482.914}; + name="outp_2_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=3202; + atlOffset=-0.00030517578; + }; + class Item24 + { + dataType="Marker"; + position[]={8912,306.125,2048.875}; + name="outp_10_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.157; + b=5.3210001; + angle=89.540985; + id=3221; + atlOffset=0.78518677; + }; + class Item25 + { + dataType="Marker"; + position[]={9909.375,180.78999,3858.5}; + name="outp_11_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=92.50798; + id=3220; + }; + class Item26 + { + dataType="Marker"; + position[]={11326.25,176.80299,4183.875}; + name="outp_13_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=157.245; + id=3219; + }; + class Item27 + { + dataType="Marker"; + position[]={9415,72.036003,10383}; + name="outp_17_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.047; + b=5.342; + angle=146.63097; + id=3213; + }; + class Item28 + { + dataType="Marker"; + position[]={8121.25,44.875,10757}; + name="outp_18_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.01; + b=8.6269999; + angle=79.769997; + id=3211; + atlOffset=0.62099457; + }; + class Item29 + { + dataType="Marker"; + position[]={2099,110.717,11007.25}; + name="outp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.536; + b=5.2579999; + angle=72.349976; + id=3208; + atlOffset=0.00020599365; + }; + class Item30 + { + dataType="Marker"; + position[]={6341.751,36.414001,9913.377}; + name="outp_20_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.01; + b=8.6269999; + angle=90.944; + id=3209; + atlOffset=0.00025558472; + }; + class Item31 + { + dataType="Marker"; + position[]={6881.25,5.915,11228.125}; + name="outp_22_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.01; + b=8.6269999; + angle=50.79599; + id=3210; + }; + class Item32 + { + dataType="Marker"; + position[]={2069.405,53.279999,7275.6421}; + name="outp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=5.1599998; + angle=148.31696; + id=3226; + }; + class Item33 + { + dataType="Marker"; + position[]={3165.7,234.722,4924.603}; + name="outp_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.075; + b=6.1609998; + angle=45.19799; + id=3224; + atlOffset=-0.10426331; + }; + class Item34 + { + dataType="Marker"; + position[]={5543.125,250.50999,3784.25}; + name="outp_7_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=150.44295; + id=3222; + }; + class Item35 + { + dataType="Marker"; + position[]={5016.957,347.82001,2142.4619}; + name="outp_8_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.547; + b=5.6399999; + angle=88.968979; + id=3223; + }; }; - id=2788; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=-0.025588989; + id=3186; + atlOffset=46.574249; }; - class Item1036 + class Item780 { - dataType="Object"; - class PositionInfo + dataType="Layer"; + name="Factories"; + class Entities { - position[]={5519.5,263.39621,3769}; - angles[]={0,2.6254983,0}; + items=14; + class Item0 + { + dataType="Marker"; + position[]={11558,71.827148,7082.75}; + name="factory"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=89.593483; + b=135.97307; + angle=347.56018; + id=616; + atlOffset=-1.1972504; + }; + class Item1 + { + dataType="Marker"; + position[]={9291,15.333008,11162.625}; + name="factory_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=138.96671; + b=88.846985; + angle=320.82428; + id=617; + atlOffset=-1.2863922; + }; + class Item2 + { + dataType="Marker"; + position[]={1561.4736,4.6816406,7548.8047}; + name="factory_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=87.437256; + b=50; + angle=334.98184; + id=618; + atlOffset=-1.1683593; + }; + class Item3 + { + dataType="Marker"; + position[]={7328.75,115.875,2605.75}; + name="factory_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=59.157471; + b=67.04834; + id=619; + atlOffset=-1.1650009; + }; + class Item4 + { + dataType="Marker"; + position[]={6385.0913,140.87888,4785.9814}; + name="factory_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=53.553616; + b=93.034897; + angle=39.117695; + id=620; + atlOffset=0.32502747; + }; + class Item5 + { + dataType="Marker"; + position[]={3085.25,79.049805,7071.5}; + name="factory_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=83.764648; + b=74.605957; + id=621; + atlOffset=-0.98019409; + }; + class Item6 + { + dataType="Marker"; + position[]={10999.75,14.292969,9020.5}; + name="factory_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=116.74219; + b=75.957031; + angle=2.1283612; + id=622; + atlOffset=-1.197031; + }; + class Item7 + { + dataType="Marker"; + position[]={11359.584,11.598531,9442.6133}; + name="factory_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=116.10118; + b=50; + angle=332.65359; + id=623; + atlOffset=-0.63055611; + }; + class Item8 + { + dataType="Marker"; + position[]={11157.151,2.9013834,11439.184}; + name="factory_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=62.923828; + b=63.897461; + angle=40.887455; + id=624; + atlOffset=-1.1605382; + }; + class Item9 + { + dataType="Marker"; + position[]={9351.416,16.662001,11191.668}; + name="fact_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.91; + b=7.704; + angle=51.057987; + id=3212; + atlOffset=0.003200531; + }; + class Item10 + { + dataType="Marker"; + position[]={10971.515,15.49,9001.5029}; + name="fact_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.076; + b=7.158; + angle=91.825996; + id=3217; + }; + class Item11 + { + dataType="Marker"; + position[]={11314.375,12.717,9420.125}; + name="fact_7_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=155.29495; + id=3215; + atlOffset=-0.00020313263; + }; + class Item12 + { + dataType="Marker"; + position[]={11142.137,4.0999999,11420.187}; + name="fact_8_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=130.30399; + id=3214; + }; + class Item13 + { + dataType="Marker"; + position[]={11503.621,73.073997,7062.1182}; + name="fact_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.457001; + b=7.158; + angle=88.679985; + id=3218; + atlOffset=0.00026702881; + }; }; - side="Empty"; - flags=5; - class Attributes + id=3187; + atlOffset=25.882332; + }; + class Item781 + { + dataType="Layer"; + name="Roadblocks"; + class Entities { + items=53; + class Item0 + { + dataType="Marker"; + position[]={3366.25,217.26074,4336}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=772; + atlOffset=-2.5232544; + }; + class Item1 + { + dataType="Marker"; + position[]={3368.7512,316.22528,2126.0469}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=773; + atlOffset=-2.5232544; + }; + class Item2 + { + dataType="Marker"; + position[]={1365.106,7.1691446,7666.6128}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=782; + atlOffset=-2.5232544; + }; + class Item3 + { + dataType="Marker"; + position[]={4843.3237,24.360769,9696.4521}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=783; + atlOffset=-2.5232544; + }; + class Item4 + { + dataType="Marker"; + position[]={5378.9751,12.286582,10367.957}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=784; + atlOffset=-2.5232544; + }; + class Item5 + { + dataType="Marker"; + position[]={4153.0156,43.453606,10877.489}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=785; + atlOffset=-2.5232544; + }; + class Item6 + { + dataType="Marker"; + position[]={11560.375,26.25,8819.875}; + name="control_14"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=786; + atlOffset=6.0272121; + }; + class Item7 + { + dataType="Marker"; + position[]={11819.995,47.01823,7690.5884}; + name="control_15"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=787; + atlOffset=-2.5232544; + }; + class Item8 + { + dataType="Marker"; + position[]={11659.081,140.50577,4951.9058}; + name="control_16"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=788; + atlOffset=-2.5232544; + }; + class Item9 + { + dataType="Marker"; + position[]={10900.278,172.10098,4129.5366}; + name="control_17"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=789; + atlOffset=-2.5232544; + }; + class Item10 + { + dataType="Marker"; + position[]={8779.4814,140.0092,6479.4951}; + name="control_18"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=790; + atlOffset=-2.5232544; + }; + class Item11 + { + dataType="Marker"; + position[]={8924.0811,145.39896,6891.0078}; + name="control_19"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=791; + atlOffset=-2.5232544; + }; + class Item12 + { + dataType="Marker"; + position[]={7962.3833,81.444267,8665.0469}; + name="control_20"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=792; + atlOffset=-2.5232544; + }; + class Item13 + { + dataType="Marker"; + position[]={8576,99.584961,8668.5}; + name="control_21"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=793; + atlOffset=-2.9246445; + }; + class Item14 + { + dataType="Marker"; + position[]={5913.6938,10.407352,10907.52}; + name="control_22"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=794; + atlOffset=-2.5232544; + }; + class Item15 + { + dataType="Marker"; + position[]={6444.8247,2.9953322,10871.798}; + name="control_23"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=795; + atlOffset=-2.5232544; + }; + class Item16 + { + dataType="Marker"; + position[]={8412.0811,1.5667458,11831.865}; + name="control_24"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=796; + atlOffset=-2.5232544; + }; + class Item17 + { + dataType="Marker"; + position[]={7971.1494,1.5426173,11779.96}; + name="control_25"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=797; + atlOffset=-2.5232544; + }; + class Item18 + { + dataType="Marker"; + position[]={11079.664,2.1455345,11370.186}; + name="control_26"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=798; + atlOffset=-2.5232544; + }; + class Item19 + { + dataType="Marker"; + position[]={9355.9678,42.334644,10707.669}; + name="control_27"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=799; + atlOffset=-2.5232544; + }; + class Item20 + { + dataType="Marker"; + position[]={9426.252,76.683098,10270.955}; + name="control_28"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=800; + atlOffset=-2.5232544; + }; + class Item21 + { + dataType="Marker"; + position[]={10859.868,12.415169,10777.237}; + name="control_29"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=801; + atlOffset=-2.5232544; + }; + class Item22 + { + dataType="Marker"; + position[]={7643.0571,207.62411,3756.5042}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=775; + atlOffset=-2.5232544; + }; + class Item23 + { + dataType="Marker"; + position[]={10407.146,6.2089977,11205.414}; + name="control_30"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=802; + atlOffset=-2.5232763; + }; + class Item24 + { + dataType="Marker"; + position[]={7277.6733,52.785683,6554.4375}; + name="control_31"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=803; + atlOffset=-2.5232544; + }; + class Item25 + { + dataType="Marker"; + position[]={5853.1245,112.37883,6699.3228}; + name="control_32"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=804; + atlOffset=-2.5232544; + }; + class Item26 + { + dataType="Marker"; + position[]={8579.0283,215.64503,2336.7993}; + name="control_33"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=805; + atlOffset=-2.5232544; + }; + class Item27 + { + dataType="Marker"; + position[]={4750.417,296.77066,2555.5867}; + name="control_34"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=806; + atlOffset=-2.5232544; + }; + class Item28 + { + dataType="Marker"; + position[]={4104.6729,307.47437,1640.6548}; + name="control_35"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=807; + atlOffset=-2.5232544; + }; + class Item29 + { + dataType="Marker"; + position[]={2553.156,81.912445,10544.641}; + name="control_36"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=808; + atlOffset=-2.5232544; + }; + class Item30 + { + dataType="Marker"; + position[]={6198.0835,66.943924,7895.7246}; + name="control_37"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=809; + atlOffset=-2.5232544; + }; + class Item31 + { + dataType="Marker"; + position[]={5937.0996,210.42572,4428.6821}; + name="control_38"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=810; + atlOffset=-2.5232544; + }; + class Item32 + { + dataType="Marker"; + position[]={6636.0947,204.87622,3931.1021}; + name="control_39"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=811; + atlOffset=-2.5232544; + }; + class Item33 + { + dataType="Marker"; + position[]={8704.1357,196.07642,4150.4473}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=776; + atlOffset=-2.5232544; + }; + class Item34 + { + dataType="Marker"; + position[]={6311.875,209.23047,3914.875}; + name="control_40"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=812; + atlOffset=-2.2235413; + }; + class Item35 + { + dataType="Marker"; + position[]={5390.1978,244.14975,3760.6187}; + name="control_41"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=813; + atlOffset=-2.5232544; + }; + class Item36 + { + dataType="Marker"; + position[]={11168.68,50.084843,795.14526}; + name="control_42"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=814; + atlOffset=-2.5232544; + }; + class Item37 + { + dataType="Marker"; + position[]={4062.5789,3.4024124,8967.9043}; + name="control_43"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=815; + atlOffset=-2.348166; + }; + class Item38 + { + dataType="Marker"; + position[]={5308.4849,1.7440257,9485.876}; + name="control_44"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=816; + atlOffset=-2.5232544; + }; + class Item39 + { + dataType="Marker"; + position[]={4713.4019,118.1113,7641.4106}; + name="control_45"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=817; + atlOffset=-2.5232544; + }; + class Item40 + { + dataType="Marker"; + position[]={3324.2793,66.125252,6649.729}; + name="control_46"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=818; + atlOffset=-2.5232544; + }; + class Item41 + { + dataType="Marker"; + position[]={10226.291,31.340343,8692.4482}; + name="control_47"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=819; + atlOffset=-2.5232544; + }; + class Item42 + { + dataType="Marker"; + position[]={2230.5,113.0448,10698.5}; + name="control_48"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=989; + }; + class Item43 + { + dataType="Marker"; + position[]={10088.347,176.83768,4208.6099}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=777; + atlOffset=-2.5232544; + }; + class Item44 + { + dataType="Marker"; + position[]={9026.4873,153.58763,5157.7935}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=778; + atlOffset=-2.5232544; + }; + class Item45 + { + dataType="Marker"; + position[]={1797.5,152.06641,6205}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=779; + atlOffset=-1.5395966; + }; + class Item46 + { + dataType="Marker"; + position[]={2200.6296,30.569206,7516.5586}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=780; + atlOffset=-2.5232544; + }; + class Item47 + { + dataType="Marker"; + position[]={1035.8557,23.535429,7294.0376}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=50; + b=50; + id=781; + atlOffset=-2.5232544; + }; + class Item48 + { + dataType="Marker"; + position[]={7881.0366,144.69,9563.6963}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=122.46957; + b=73.503365; + angle=6.6712604; + id=822; + atlOffset=2.1220245; + }; + class Item49 + { + dataType="Marker"; + position[]={8018.5132,145.5,9623.7666}; + name="detectPlayer_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=41.776703; + b=91.376221; + angle=30.725622; + id=823; + atlOffset=10.4617; + }; + class Item50 + { + dataType="Marker"; + position[]={3898.0298,70.181999,10234.328}; + name="detectPlayer_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=569.40137; + b=81.80806; + angle=317.42856; + id=990; + atlOffset=2.0219955; + }; + class Item51 + { + dataType="Marker"; + position[]={4173.1475,72.875,10271.655}; + name="detectPlayer_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=346.33704; + b=81.80806; + angle=317.42856; + id=3182; + atlOffset=1.0064163; + }; + class Item52 + { + dataType="Marker"; + position[]={3728.9324,68.099998,9974.0342}; + name="detectPlayer_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=231.71259; + b=81.80806; + angle=339.95712; + id=3183; + atlOffset=0.019996643; + }; }; - id=2789; - type="Land_Cargo_Tower_V2_F"; + id=3188; + atlOffset=20.586609; }; - class Item1037 + class Item782 { - dataType="Object"; - class PositionInfo - { - position[]={5546.75,255.41499,3826.875}; - angles[]={0,2.6924222,0}; - }; - side="Empty"; - flags=5; - class Attributes + dataType="Layer"; + name="Old marker"; + class Entities { + items=43; + class Item0 + { + dataType="Marker"; + position[]={11086.125,128,10254.125}; + name="road"; + type="hd_arrow"; + id=2799; + atlOffset=121.9604; + }; + class Item1 + { + dataType="Marker"; + position[]={8562.917,140.98709,9715.6709}; + name="road_1"; + type="hd_arrow"; + id=2800; + atlOffset=-0.00018310547; + }; + class Item2 + { + dataType="Marker"; + position[]={5294.9448,18.276405,10318.331}; + name="road_10"; + type="hd_arrow"; + id=2809; + atlOffset=-0.00018310547; + }; + class Item3 + { + dataType="Marker"; + position[]={4791.8447,29.731018,9608.4932}; + name="road_11"; + type="hd_arrow"; + id=2810; + atlOffset=-0.00018310547; + }; + class Item4 + { + dataType="Marker"; + position[]={8835.375,62.753906,8086.75}; + name="road_12"; + type="hd_arrow"; + id=2811; + atlOffset=-62.236496; + }; + class Item5 + { + dataType="Marker"; + position[]={3520.3079,22.827456,8411.6797}; + name="road_13"; + type="hd_arrow"; + id=2812; + atlOffset=-0.00018310547; + }; + class Item6 + { + dataType="Marker"; + position[]={2695.04,37.912689,7707.5264}; + name="road_14"; + type="hd_arrow"; + id=2813; + atlOffset=-0.00018310547; + }; + class Item7 + { + dataType="Marker"; + position[]={1748.1615,29.73444,7341.0615}; + name="road_15"; + type="hd_arrow"; + id=2814; + atlOffset=-0.00018310547; + }; + class Item8 + { + dataType="Marker"; + position[]={1830.3436,160.3118,6137.5269}; + name="road_16"; + type="hd_arrow"; + id=2815; + atlOffset=-0.00018310547; + }; + class Item9 + { + dataType="Marker"; + position[]={2665.0835,231.95938,5465.7339}; + name="road_17"; + type="hd_arrow"; + id=2816; + atlOffset=-0.00018310547; + }; + class Item10 + { + dataType="Marker"; + position[]={3267.4446,225.75246,4828.4434}; + name="road_18"; + type="hd_arrow"; + id=2817; + atlOffset=-0.00018310547; + }; + class Item11 + { + dataType="Marker"; + position[]={3332.6882,230.16058,3820.1021}; + name="road_19"; + type="hd_arrow"; + id=2818; + atlOffset=-0.00018310547; + }; + class Item12 + { + dataType="Marker"; + position[]={10322.375,6.4939976,11271.875}; + name="road_2"; + type="hd_arrow"; + id=2801; + }; + class Item13 + { + dataType="Marker"; + position[]={3219.991,264.24762,3135.6833}; + name="road_20"; + type="hd_arrow"; + id=2819; + atlOffset=-0.00018310547; + }; + class Item14 + { + dataType="Marker"; + position[]={3088.5647,287.82925,2541.3162}; + name="road_21"; + type="hd_arrow"; + id=2820; + atlOffset=-0.00018310547; + }; + class Item15 + { + dataType="Marker"; + position[]={3366.3691,318.09369,2092.7925}; + name="road_22"; + type="hd_arrow"; + id=2821; + atlOffset=-0.00018310547; + }; + class Item16 + { + dataType="Marker"; + position[]={4172.4478,332.7579,2409.3071}; + name="road_23"; + type="hd_arrow"; + id=2822; + atlOffset=-0.00018310547; + }; + class Item17 + { + dataType="Marker"; + position[]={4805.6548,280.17676,2716.5176}; + name="road_24"; + type="hd_arrow"; + id=2823; + atlOffset=-0.00018310547; + }; + class Item18 + { + dataType="Marker"; + position[]={5114.6558,261.82782,3465.2373}; + name="road_25"; + type="hd_arrow"; + id=2824; + atlOffset=-0.00018310547; + }; + class Item19 + { + dataType="Marker"; + position[]={6111.3408,216.39474,4140.3848}; + name="road_26"; + type="hd_arrow"; + id=2825; + atlOffset=-0.00018310547; + }; + class Item20 + { + dataType="Marker"; + position[]={7190.9292,207.46956,3966.7412}; + name="road_27"; + type="hd_arrow"; + id=2826; + atlOffset=-0.00018310547; + }; + class Item21 + { + dataType="Marker"; + position[]={8760,140.29492,6192.75}; + name="road_28"; + type="hd_arrow"; + id=2827; + atlOffset=-0.72589111; + }; + class Item22 + { + dataType="Marker"; + position[]={8171.3799,209.93561,3855.4893}; + name="road_29"; + type="hd_arrow"; + id=2828; + atlOffset=-0.00018310547; + }; + class Item23 + { + dataType="Marker"; + position[]={9479.373,75.502831,10297.341}; + name="road_3"; + type="hd_arrow"; + id=2802; + atlOffset=-0.00018310547; + }; + class Item24 + { + dataType="Marker"; + position[]={9037.0293,170.9929,4394.124}; + name="road_30"; + type="hd_arrow"; + id=2829; + atlOffset=-0.00018310547; + }; + class Item25 + { + dataType="Marker"; + position[]={10916.195,174.29092,4131.9785}; + name="road_31"; + type="hd_arrow"; + id=2830; + atlOffset=-0.00018310547; + }; + class Item26 + { + dataType="Marker"; + position[]={11396.061,164.2227,4434.313}; + name="road_32"; + type="hd_arrow"; + id=2831; + atlOffset=-0.00018310547; + }; + class Item27 + { + dataType="Marker"; + position[]={11745.959,137.35884,5132.4722}; + name="road_33"; + type="hd_arrow"; + id=2832; + atlOffset=-0.00018310547; + }; + class Item28 + { + dataType="Marker"; + position[]={12422.016,115.52794,6152.5947}; + name="road_34"; + type="hd_arrow"; + id=2833; + atlOffset=-0.00018310547; + }; + class Item29 + { + dataType="Marker"; + position[]={12067.134,99.297836,6767.3872}; + name="road_35"; + type="hd_arrow"; + id=2834; + atlOffset=-0.00018310547; + }; + class Item30 + { + dataType="Marker"; + position[]={11717.827,66.907127,7415.6035}; + name="road_36"; + type="hd_arrow"; + id=2835; + atlOffset=-0.00018310547; + }; + class Item31 + { + dataType="Marker"; + position[]={11670.094,27.014524,8459.0215}; + name="road_37"; + type="hd_arrow"; + id=2836; + atlOffset=-0.00018310547; + }; + class Item32 + { + dataType="Marker"; + position[]={11478.669,10.774491,9485.6982}; + name="road_38"; + type="hd_arrow"; + id=2837; + atlOffset=-0.00018310547; + }; + class Item33 + { + dataType="Marker"; + position[]={9315.3057,38.280392,10761.403}; + name="road_4"; + type="hd_arrow"; + id=2803; + atlOffset=-0.00018310547; + }; + class Item34 + { + dataType="Marker"; + position[]={8901.9717,20.449211,11258.684}; + name="road_5"; + type="hd_arrow"; + id=2804; + atlOffset=-0.00018310547; + }; + class Item35 + { + dataType="Marker"; + position[]={8422.9395,4.7527308,11778.245}; + name="road_6"; + type="hd_arrow"; + id=2805; + atlOffset=-0.00018310547; + }; + class Item36 + { + dataType="Marker"; + position[]={8359.248,40.714165,12348.514}; + name="road_7"; + type="hd_arrow"; + id=2806; + atlOffset=-0.00018310547; + }; + class Item37 + { + dataType="Marker"; + position[]={7264.4912,3.9998169,11407.471}; + name="road_8"; + type="hd_arrow"; + id=2807; + atlOffset=-0.00018310547; + }; + class Item38 + { + dataType="Marker"; + position[]={6449.2734,4.915637,10981.103}; + name="road_9"; + type="hd_arrow"; + id=2808; + atlOffset=-0.00018310547; + }; + class Item39 + { + dataType="Marker"; + position[]={4479.562,59.393002,10465.873}; + name="spawnPoint"; + type="hd_start"; + id=2795; + atlOffset=-0.00026702881; + }; + class Item40 + { + dataType="Marker"; + position[]={6412.7114,216.80989,3918.6729}; + name="spawnPoint_1"; + type="hd_start"; + id=3242; + }; + class Item41 + { + dataType="Marker"; + position[]={7985.749,148.04671,9836.4512}; + name="spawnPoint_2"; + type="hd_start"; + id=3243; + }; + class Item42 + { + dataType="Marker"; + position[]={11463.902,7.2081103,8968.9775}; + name="spawnPoint_3"; + type="hd_start"; + id=3244; + }; }; - id=2790; - type="Land_Cargo_Patrol_V2_F"; + id=3193; + atlOffset=23.501625; }; - class Item1038 + class Item783 { - dataType="Object"; - class PositionInfo - { - position[]={5733.8857,254.37801,3750.6606}; - angles[]={0,5.8794231,0}; - }; - side="Empty"; - flags=5; - class Attributes + dataType="Layer"; + name="SeaAttackSpawnPoints"; + class Entities { + items=8; + class Item0 + { + dataType="Marker"; + position[]={-931,218.60742,13144.625}; + name="seaAttackSpawn"; + type="mil_ambush"; + id=2878; + atlOffset=-1.4444122; + }; + class Item1 + { + dataType="Marker"; + position[]={-1348.7396,72.563736,6363.9351}; + name="seaAttackSpawn_1"; + type="mil_ambush"; + id=2879; + atlOffset=-0.00039672852; + }; + class Item2 + { + dataType="Marker"; + position[]={-1065.1031,354.63818,-483.08258}; + name="seaAttackSpawn_2"; + type="mil_ambush"; + id=2880; + atlOffset=-0.00039672852; + }; + class Item3 + { + dataType="Marker"; + position[]={6658.5327,280.2598,-897.39532}; + name="seaAttackSpawn_3"; + type="mil_ambush"; + id=2881; + atlOffset=-0.00039672852; + }; + class Item4 + { + dataType="Marker"; + position[]={13574.896,130.17221,-810.16998}; + name="seaAttackSpawn_4"; + type="mil_ambush"; + id=2882; + atlOffset=-0.00039672852; + }; + class Item5 + { + dataType="Marker"; + position[]={14229.441,111.76187,6385.7412}; + name="seaAttackSpawn_5"; + type="mil_ambush"; + id=2883; + atlOffset=-0.00039672852; + }; + class Item6 + { + dataType="Marker"; + position[]={13814.898,15.896471,13080.119}; + name="seaAttackSpawn_6"; + type="mil_ambush"; + id=2884; + atlOffset=-0.00039672852; + }; + class Item7 + { + dataType="Marker"; + position[]={6331.2607,69.274628,13603.458}; + name="seaAttackSpawn_7"; + type="mil_ambush"; + id=2885; + atlOffset=-0.00039672852; + }; }; - id=2791; - type="Land_Cargo_Patrol_V2_F"; + id=3194; + atlOffset=54.222801; }; - class Item1039 + class Item784 { dataType="Object"; class PositionInfo { - position[]={5636.5,257.09659,3878.25}; - angles[]={0,2.9383073,0}; + position[]={3991.604,71.936157,10271.789}; + angles[]={0,2.3312404,0}; }; side="Empty"; flags=5; class Attributes { }; - id=2792; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=1.5258789e-005; + id=3195; + type="Land_TentHangar_V1_F"; + atlOffset=7.6293945e-006; }; - class Item1040 + class Item785 { dataType="Object"; class PositionInfo { - position[]={4628.125,136.938,6317.5}; - angles[]={0,4.2753401,0}; + position[]={3970.439,71.958878,10250.249}; + angles[]={0,2.3312404,0}; }; side="Empty"; flags=5; class Attributes { }; - id=2793; - type="Land_Cargo_Patrol_V2_F"; + id=3196; + type="Land_TentHangar_V1_F"; }; - class Item1041 + class Item786 { dataType="Object"; class PositionInfo { - position[]={6407.6855,58.373013,8180.1694}; - angles[]={0,2.3810947,0}; + position[]={3949.125,72.163177,10228.5}; + angles[]={0,2.3312404,0}; }; side="Empty"; flags=5; class Attributes { }; - id=2794; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=0.0091171265; - }; - class Item1042 - { - dataType="Marker"; - position[]={4479.562,59.393002,10465.873}; - name="spawnPoint"; - type="hd_start"; - id=2795; - atlOffset=-0.00026702881; - }; - class Item1043 - { - dataType="Marker"; - position[]={11608.361,39.206417,7789.4546}; - name="spawnPoint_1"; - type="hd_start"; - id=2796; - atlOffset=-0.00026702881; - }; - class Item1044 - { - dataType="Marker"; - position[]={6386.2993,214.57443,3908.5112}; - name="spawnPoint_2"; - type="hd_start"; - id=2797; - atlOffset=-0.00025939941; - }; - class Item1045 - { - dataType="Marker"; - position[]={7986.0229,148.04132,9836.3691}; - name="spawnPoint_3"; - type="hd_start"; - id=2798; - atlOffset=-0.0002746582; - }; - class Item1046 - { - dataType="Marker"; - position[]={11086.125,128,10254.125}; - name="road"; - type="hd_arrow"; - id=2799; - atlOffset=121.9604; - }; - class Item1047 - { - dataType="Marker"; - position[]={8562.917,140.98709,9715.6709}; - name="road_1"; - type="hd_arrow"; - id=2800; - atlOffset=-0.00018310547; - }; - class Item1048 - { - dataType="Marker"; - position[]={10322.375,6.4939976,11271.875}; - name="road_2"; - type="hd_arrow"; - id=2801; - }; - class Item1049 - { - dataType="Marker"; - position[]={9479.373,75.502831,10297.341}; - name="road_3"; - type="hd_arrow"; - id=2802; - atlOffset=-0.00018310547; - }; - class Item1050 - { - dataType="Marker"; - position[]={9315.3057,38.280392,10761.403}; - name="road_4"; - type="hd_arrow"; - id=2803; - atlOffset=-0.00018310547; - }; - class Item1051 - { - dataType="Marker"; - position[]={8901.9717,20.449211,11258.684}; - name="road_5"; - type="hd_arrow"; - id=2804; - atlOffset=-0.00018310547; - }; - class Item1052 - { - dataType="Marker"; - position[]={8422.9395,4.7527308,11778.245}; - name="road_6"; - type="hd_arrow"; - id=2805; - atlOffset=-0.00018310547; - }; - class Item1053 - { - dataType="Marker"; - position[]={8359.248,40.714165,12348.514}; - name="road_7"; - type="hd_arrow"; - id=2806; - atlOffset=-0.00018310547; - }; - class Item1054 - { - dataType="Marker"; - position[]={7264.4912,3.9998169,11407.471}; - name="road_8"; - type="hd_arrow"; - id=2807; - atlOffset=-0.00018310547; - }; - class Item1055 - { - dataType="Marker"; - position[]={6449.2734,4.915637,10981.103}; - name="road_9"; - type="hd_arrow"; - id=2808; - atlOffset=-0.00018310547; - }; - class Item1056 - { - dataType="Marker"; - position[]={5294.9448,18.276405,10318.331}; - name="road_10"; - type="hd_arrow"; - id=2809; - atlOffset=-0.00018310547; - }; - class Item1057 - { - dataType="Marker"; - position[]={4791.8447,29.731018,9608.4932}; - name="road_11"; - type="hd_arrow"; - id=2810; - atlOffset=-0.00018310547; - }; - class Item1058 - { - dataType="Marker"; - position[]={8835.375,62.753906,8086.75}; - name="road_12"; - type="hd_arrow"; - id=2811; - atlOffset=-62.236496; - }; - class Item1059 - { - dataType="Marker"; - position[]={3520.3079,22.827456,8411.6797}; - name="road_13"; - type="hd_arrow"; - id=2812; - atlOffset=-0.00018310547; - }; - class Item1060 - { - dataType="Marker"; - position[]={2695.04,37.912689,7707.5264}; - name="road_14"; - type="hd_arrow"; - id=2813; - atlOffset=-0.00018310547; - }; - class Item1061 - { - dataType="Marker"; - position[]={1748.1615,29.73444,7341.0615}; - name="road_15"; - type="hd_arrow"; - id=2814; - atlOffset=-0.00018310547; - }; - class Item1062 - { - dataType="Marker"; - position[]={1830.3436,160.3118,6137.5269}; - name="road_16"; - type="hd_arrow"; - id=2815; - atlOffset=-0.00018310547; - }; - class Item1063 - { - dataType="Marker"; - position[]={2665.0835,231.95938,5465.7339}; - name="road_17"; - type="hd_arrow"; - id=2816; - atlOffset=-0.00018310547; - }; - class Item1064 - { - dataType="Marker"; - position[]={3267.4446,225.75246,4828.4434}; - name="road_18"; - type="hd_arrow"; - id=2817; - atlOffset=-0.00018310547; - }; - class Item1065 - { - dataType="Marker"; - position[]={3332.6882,230.16058,3820.1021}; - name="road_19"; - type="hd_arrow"; - id=2818; - atlOffset=-0.00018310547; - }; - class Item1066 - { - dataType="Marker"; - position[]={3219.991,264.24762,3135.6833}; - name="road_20"; - type="hd_arrow"; - id=2819; - atlOffset=-0.00018310547; - }; - class Item1067 - { - dataType="Marker"; - position[]={3088.5647,287.82925,2541.3162}; - name="road_21"; - type="hd_arrow"; - id=2820; - atlOffset=-0.00018310547; - }; - class Item1068 - { - dataType="Marker"; - position[]={3366.3691,318.09369,2092.7925}; - name="road_22"; - type="hd_arrow"; - id=2821; - atlOffset=-0.00018310547; - }; - class Item1069 - { - dataType="Marker"; - position[]={4172.4478,332.7579,2409.3071}; - name="road_23"; - type="hd_arrow"; - id=2822; - atlOffset=-0.00018310547; - }; - class Item1070 - { - dataType="Marker"; - position[]={4805.6548,280.17676,2716.5176}; - name="road_24"; - type="hd_arrow"; - id=2823; - atlOffset=-0.00018310547; - }; - class Item1071 - { - dataType="Marker"; - position[]={5114.6558,261.82782,3465.2373}; - name="road_25"; - type="hd_arrow"; - id=2824; - atlOffset=-0.00018310547; - }; - class Item1072 - { - dataType="Marker"; - position[]={6111.3408,216.39474,4140.3848}; - name="road_26"; - type="hd_arrow"; - id=2825; - atlOffset=-0.00018310547; - }; - class Item1073 - { - dataType="Marker"; - position[]={7190.9292,207.46956,3966.7412}; - name="road_27"; - type="hd_arrow"; - id=2826; - atlOffset=-0.00018310547; - }; - class Item1074 - { - dataType="Marker"; - position[]={8760,140.29492,6192.75}; - name="road_28"; - type="hd_arrow"; - id=2827; - atlOffset=-0.72589111; - }; - class Item1075 - { - dataType="Marker"; - position[]={8171.3799,209.93561,3855.4893}; - name="road_29"; - type="hd_arrow"; - id=2828; - atlOffset=-0.00018310547; - }; - class Item1076 - { - dataType="Marker"; - position[]={9037.0293,170.9929,4394.124}; - name="road_30"; - type="hd_arrow"; - id=2829; - atlOffset=-0.00018310547; - }; - class Item1077 - { - dataType="Marker"; - position[]={10916.195,174.29092,4131.9785}; - name="road_31"; - type="hd_arrow"; - id=2830; - atlOffset=-0.00018310547; - }; - class Item1078 - { - dataType="Marker"; - position[]={11396.061,164.2227,4434.313}; - name="road_32"; - type="hd_arrow"; - id=2831; - atlOffset=-0.00018310547; - }; - class Item1079 - { - dataType="Marker"; - position[]={11745.959,137.35884,5132.4722}; - name="road_33"; - type="hd_arrow"; - id=2832; - atlOffset=-0.00018310547; - }; - class Item1080 - { - dataType="Marker"; - position[]={12422.016,115.52794,6152.5947}; - name="road_34"; - type="hd_arrow"; - id=2833; - atlOffset=-0.00018310547; - }; - class Item1081 - { - dataType="Marker"; - position[]={12067.134,99.297836,6767.3872}; - name="road_35"; - type="hd_arrow"; - id=2834; - atlOffset=-0.00018310547; - }; - class Item1082 - { - dataType="Marker"; - position[]={11717.827,66.907127,7415.6035}; - name="road_36"; - type="hd_arrow"; - id=2835; - atlOffset=-0.00018310547; - }; - class Item1083 - { - dataType="Marker"; - position[]={11670.094,27.014524,8459.0215}; - name="road_37"; - type="hd_arrow"; - id=2836; - atlOffset=-0.00018310547; - }; - class Item1084 - { - dataType="Marker"; - position[]={11478.669,10.774491,9485.6982}; - name="road_38"; - type="hd_arrow"; - id=2837; - atlOffset=-0.00018310547; - }; - class Item1085 - { - dataType="Marker"; - position[]={-931,218.60742,13144.625}; - name="seaAttackSpawn"; - type="mil_ambush"; - id=2878; - atlOffset=-1.4444122; - }; - class Item1086 - { - dataType="Marker"; - position[]={-1348.7396,72.563736,6363.9351}; - name="seaAttackSpawn_1"; - type="mil_ambush"; - id=2879; - atlOffset=-0.00039672852; - }; - class Item1087 - { - dataType="Marker"; - position[]={-1065.1031,354.63818,-483.08258}; - name="seaAttackSpawn_2"; - type="mil_ambush"; - id=2880; - atlOffset=-0.00039672852; - }; - class Item1088 - { - dataType="Marker"; - position[]={6658.5327,280.2598,-897.39532}; - name="seaAttackSpawn_3"; - type="mil_ambush"; - id=2881; - atlOffset=-0.00039672852; - }; - class Item1089 - { - dataType="Marker"; - position[]={13574.896,130.17221,-810.16998}; - name="seaAttackSpawn_4"; - type="mil_ambush"; - id=2882; - atlOffset=-0.00039672852; - }; - class Item1090 - { - dataType="Marker"; - position[]={14229.441,111.76187,6385.7412}; - name="seaAttackSpawn_5"; - type="mil_ambush"; - id=2883; - atlOffset=-0.00039672852; - }; - class Item1091 - { - dataType="Marker"; - position[]={13814.898,15.896471,13080.119}; - name="seaAttackSpawn_6"; - type="mil_ambush"; - id=2884; - atlOffset=-0.00039672852; + id=3197; + type="Land_TentHangar_V1_F"; }; - class Item1092 - { - dataType="Marker"; - position[]={6331.2607,69.274628,13603.458}; - name="seaAttackSpawn_7"; - type="mil_ambush"; - id=2885; - atlOffset=-0.00039672852; - }; - class Item1093 - { - dataType="Marker"; - position[]={-1659.125,122.99609,2892}; - name="NATO_carrier"; - type="flag_NATO"; - id=2886; - atlOffset=-27.415909; - }; - class Item1094 - { - dataType="Marker"; - position[]={14583.024,-0.016000001,12800.195}; - name="CSAT_carrier"; - type="flag_CSAT"; - id=2887; - atlOffset=2.9620171; - }; - class Item1095 + class Item787 { dataType="Object"; class PositionInfo { - position[]={8906,140.06662,6548.125}; - angles[]={0.00034526698,2.7269034,0.0075565549}; + position[]={4111.2378,68.343857,10388.865}; + angles[]={0,5.4486198,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2888; - type="Land_DeconTent_01_AAF_F"; + id=3198; + type="Land_HelipadSquare_F"; + atlOffset=8.392334e-005; }; - class Item1096 + class Item788 { dataType="Object"; class PositionInfo { - position[]={8947.3496,139.98642,6567.0693}; - angles[]={0.00034526698,2.7269034,0.0075565549}; + position[]={4148.8345,68.366928,10428.553}; + angles[]={0,5.4486198,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2889; - type="Land_DeconTent_01_AAF_F"; - atlOffset=0.023544312; + id=3199; + type="Land_HelipadSquare_F"; + atlOffset=0.00024414063; }; - class Item1097 + class Item789 { dataType="Object"; class PositionInfo { - position[]={8926.4697,140.0873,6557.6382}; - angles[]={6.2660117,5.838604,6.2749715}; + position[]={4225.417,68.378044,10507.549}; + angles[]={0,5.4486198,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2891; - type="Land_MedicalTent_01_aaf_generic_open_F"; - atlOffset=0.0002746582; + id=3200; + type="Land_HelipadSquare_F"; + atlOffset=0.074050903; }; - class Item1098 + class Item790 { - dataType="Object"; - class PositionInfo - { - position[]={8926.9014,140.35733,6611.603}; - angles[]={6.2528124,5.838604,6.2694311}; - }; - side="Empty"; - flags=4; - class Attributes + dataType="Layer"; + name="Basics"; + class Entities { + items=6; + class Item0 + { + dataType="Marker"; + position[]={14583.024,-0.016000001,12800.195}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=2887; + atlOffset=2.9620171; + }; + class Item1 + { + dataType="Marker"; + position[]={245.15363,390.56497,737.99121}; + name="respawn_west"; + type="flag_CTRG"; + id=175; + atlOffset=4.0483093; + }; + class Item2 + { + dataType="Marker"; + position[]={-1704,-0.66315949,7956.125}; + name="NATO_carrier"; + type="flag_NATO"; + id=2886; + }; + class Item3 + { + dataType="Marker"; + position[]={953.14001,78.643997,5568.0278}; + name="Synd_HQ"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorPink"; + a=50; + b=50; + id=78; + atlOffset=1.603363; + }; + class Item4 + { + dataType="Marker"; + position[]={1388.8798,263.23926,225.21986}; + name="respawn_east"; + type="flag_Viper"; + id=183; + atlOffset=5.421051; + }; + class Item5 + { + dataType="Marker"; + position[]={954.47308,2.7037606e+012,5570.207}; + name="respawn_guerrila"; + text="Your Headquarters"; + type="hd_flag"; + colorName="ColorGUER"; + id=79; + atlOffset=2.7037606e+012; + }; }; - id=2892; - type="Land_MedicalTent_01_aaf_generic_open_F"; - atlOffset=0.0002746582; + id=3207; + atlOffset=1.3518803e+012; }; - class Item1099 + class Item791 { dataType="Object"; class PositionInfo { - position[]={8908.5,143.83058,6605.75}; - angles[]={0,2.7845759,0}; + position[]={8884.75,138.59959,6588.75}; + angles[]={0,1.0895481,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2893; - type="Land_Cargo_Patrol_V2_F"; + id=3228; + type="Land_HelipadCircle_F"; }; - class Item1100 + class Item792 { dataType="Object"; class PositionInfo { - position[]={8892.2725,143.44676,6555.5366}; - angles[]={0,1.154559,0}; + position[]={11094.75,186.125,2503.875}; + angles[]={0,1.4552404,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2894; - type="Land_Cargo_Patrol_V2_F"; + id=3229; + type="Land_HelipadCircle_F"; }; - class Item1101 + class Item793 { dataType="Object"; class PositionInfo { - position[]={8943.7627,143.40901,6551.5654}; - angles[]={0,5.8636169,0}; + position[]={11366.875,175.125,4256.25}; + angles[]={0,2.7159262,0}; }; side="Empty"; - flags=5; class Attributes { }; - id=2895; - type="Land_Cargo_Patrol_V2_F"; + id=3230; + type="Land_HelipadCircle_F"; + atlOffset=1.8399506; }; - class Item1102 + class Item794 { dataType="Object"; class PositionInfo { - position[]={8909.75,306.88721,2088.375}; - angles[]={0,2.0327702,0}; + position[]={7347.75,117.04,2613.375}; + angles[]={0,1.6257827,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2896; - type="Land_Cargo_Patrol_V2_F"; + id=3232; + type="Land_HelipadCircle_F"; }; - class Item1103 + class Item795 { dataType="Object"; class PositionInfo { - position[]={11063,187.9892,2444.25}; - angles[]={6.2719817,3.0360308,6.251195}; + position[]={4923.125,354.16,2122.625}; + angles[]={0,5.8519688,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2897; - type="Land_DeconTent_01_AAF_F"; - atlOffset=0.22538757; + id=3233; + type="Land_HelipadCircle_F"; }; - class Item1104 + class Item796 { dataType="Object"; class PositionInfo { - position[]={11120.5,185.59541,2455}; - angles[]={0,6.0400758,6.2496004}; + position[]={4490.625,111.46,4800.25}; + angles[]={0,1.5873392,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2898; - type="Land_DeconTent_01_AAF_F"; + id=3234; + type="Land_HelipadCircle_F"; }; - class Item1105 + class Item797 { dataType="Object"; class PositionInfo { - position[]={11100.625,186.58017,2447.625}; - angles[]={0.011198638,2.8414578,6.2336264}; + position[]={4497.25,116.365,4833.125}; + angles[]={0,4.0228968,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=2899; - type="Land_MedicalTent_01_aaf_generic_open_F"; + id=3235; + type="Land_Cargo_Patrol_V2_F"; }; - class Item1106 + class Item798 { dataType="Object"; class PositionInfo { - position[]={11091.5,186.67776,2470.875}; - angles[]={6.2799835,4.5131998,6.2448072}; + position[]={2052.625,53.279999,7248}; + angles[]={0,6.2779412,0}; }; side="Empty"; flags=4; class Attributes { }; - id=2900; - type="Land_MedicalTent_01_aaf_generic_open_F"; + id=3236; + type="Land_HelipadCircle_F"; }; - class Item1107 + class Item799 { dataType="Object"; class PositionInfo { - position[]={11182.375,191.32541,2537.75}; - angles[]={0,3.9105396,0}; + position[]={4248.7334,69.109573,10397.498}; + angles[]={0,0.82908094,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2901; - type="Land_Cargo_Patrol_V2_F"; + id=3238; + type="Land_HelipadCircle_F"; + atlOffset=5.3405762e-005; }; - class Item1108 + class Item800 { dataType="Object"; class PositionInfo { - position[]={11064,193.40939,2526.75}; - angles[]={0,1.6165732,0}; + position[]={6861.896,5.100287,11188.406}; + angles[]={0,3.9884927,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2902; - type="Land_Cargo_Patrol_V2_F"; + id=3239; + type="Land_HelipadCircle_F"; }; - class Item1109 + class Item801 { dataType="Object"; class PositionInfo { - position[]={11055.75,191.05182,2402}; - angles[]={0,0.13436407,0}; + position[]={11120.688,4.0151787,11453.879}; + angles[]={0,1.6087209,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2903; - type="Land_Cargo_Patrol_V2_F"; - }; - class Item1110 - { - dataType="Logic"; - class PositionInfo - { - position[]={11094.582,185.32007,2472.304}; - angles[]={0,6.0440054,0}; - }; - areaSize[]={8.5979996,0,4.6459999}; - areaIsRectangle=1; - flags=1; - id=2904; - type="ModuleHideTerrainObjects_F"; - atlOffset=0.13499451; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=14; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; + id=3240; + type="Land_HelipadCircle_F"; + atlOffset=2.8610229e-006; }; - class Item1111 + class Item802 { dataType="Object"; class PositionInfo { - position[]={6413.5,146.14059,4743}; - angles[]={0,5.4284697,0}; + position[]={6424.3486,53.662663,8156.5156}; + angles[]={0,5.5036583,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=2906; - type="Land_Cargo_Patrol_V2_F"; - }; - class Item1112 - { - dataType="Logic"; - class PositionInfo - { - position[]={960.92102,77.552872,5552.938}; - }; - name="pathfinding"; - id=2910; - type="Logic"; + id=3241; + type="Land_HelipadCircle_F"; }; }; class Connections diff --git a/Map-Templates/Antistasi-Livonia.Enoch/roadsDBLivonia.sqf b/Map-Templates/Antistasi-Livonia.Enoch/roadsDBLivonia.sqf new file mode 100644 index 0000000000..933e697b0b --- /dev/null +++ b/Map-Templates/Antistasi-Livonia.Enoch/roadsDBLivonia.sqf @@ -0,0 +1 @@ +{roadsX setVariable [_x select 0,_x select 1]} forEach [["Bielawa",[[1138,9587,0],[1125,9595,0],[1123,9829,0],[1150,9830,0],[1159,9574,0],[1183,9559,0],[1177,9832,0],[1205,9360,0],[1225,9382,0],[1243,9404,0],[1233,9528,0],[1203,9547,0],[1216,9538,0],[1202,9834,0],[1227,9836,0],[1259,9307,0],[1259,9337,0],[1263,9393,0],[1261,9363,0],[1257,9425,0],[1266,9420,0],[1265,9440,0],[1268,9436,0],[1284,9482,0],[1273,9457,0],[1287,9496,0],[1274,9504,0],[1254,9515,0],[1292,9501,0],[1299,9507,0],[1250,9837,0],[1271,9838,0],[1290,9839,0],[1343,9493,0],[1300,9521,0],[1317,9501,0],[1309,9541,0],[1304,9505,0],[1331,9582,0],[1318,9558,0],[1342,9604,0],[1310,9840,0],[1331,9839,0],[1374,9483,0],[1400,9474,0],[1362,9639,0],[1351,9619,0],[1376,9662,0],[1399,9662,0],[1387,9682,0],[1396,9696,0],[1390,9676,0],[1351,9836,0],[1387,9823,0],[1371,9830,0],[1435,9462,0],[1416,9493,0],[1418,9468,0],[1410,9475,0],[1413,9483,0],[1431,9537,0],[1422,9511,0],[1426,9597,0],[1433,9579,0],[1437,9558,0],[1437,9568,0],[1418,9619,0],[1412,9637,0],[1407,9649,0],[1445,9749,0],[1432,9731,0],[1416,9718,0],[1404,9707,0],[1429,9794,0],[1445,9782,0],[1407,9811,0],[1493,9445,0],[1456,9455,0],[1472,9450,0],[1462,9788,0],[1478,9755,0],[1454,9766,0],[1457,9757,0],[1452,9777,0],[1463,9756,0],[1483,9823,0],[1471,9807,0],[1497,9837,0],[1539,9434,0],[1518,9439,0],[1505,9752,0],[1531,9751,0],[1512,9846,0],[1535,9859,0],[1562,9428,0],[1586,9422,0],[1569,9750,0],[1587,9752,0],[1553,9750,0],[1574,9879,0],[1556,9870,0],[1592,9887,0],[1608,9417,0],[1645,9408,0],[1627,9413,0],[1613,9755,0],[1639,9757,0],[1610,9894,0],[1629,9902,0],[1648,9909,0],[1684,9399,0],[1663,9404,0],[1699,9693,0],[1685,9714,0],[1665,9741,0],[1653,9755,0],[1667,9916,0],[1686,9922,0],[1708,9400,0],[1701,9397,0],[1731,9446,0],[1724,9426,0],[1716,9409,0],[1738,9466,0],[1743,9484,0],[1747,9494,0],[1740,9670,0],[1723,9677,0],[1709,9684,0],[1724,9939,0],[1704,9930,0],[1743,9950,0],[1787,9547,0],[1768,9524,0],[1755,9506,0],[1761,9663,0],[1794,9678,0],[1780,9656,0],[1790,9656,0],[1792,9662,0],[1796,9703,0],[1800,9719,0],[1796,9996,0],[1761,9963,0],[1776,9976,0],[1783,9983,0],[1778,9974,0],[1783,9973,0],[1810,9574,0],[1832,9600,0],[1801,9648,0],[1822,9638,0],[1839,9625,0],[1845,9616,0],[1834,9731,0],[1816,9728,0],[1804,9724,0],[1848,9891,0],[1844,9915,0],[1841,9937,0],[1802,9973,0],[1837,9956,0],[1834,9967,0],[1830,9971,0],[1824,9972,0],[1818,10019,0],[1839,10042,0],[1827,10044,0],[1829,10035,0],[1820,10081,0],[1825,10059,0],[1808,10111,0],[1877,9600,0],[1890,9595,0],[1856,9613,0],[1887,9613,0],[1882,9640,0],[1875,9690,0],[1879,9659,0],[1878,9671,0],[1871,9715,0],[1853,9734,0],[1870,9732,0],[1866,9736,0],[1869,9750,0],[1863,9793,0],[1867,9774,0],[1856,9837,0],[1859,9813,0],[1852,9865,0],[1858,10062,0],[1926,9576,0],[1902,9587,0],[1998,9544,0],[1954,9564,0],[1977,9553,0],[2037,9508,0],[2027,9524,0],[2019,9534,0],[2035,9540,0],[2012,9539,0],[2026,9540,0],[2019,9539,0]]],["Lukow",[[3060,12067,0],[3088,12084,0],[3108,11719,0],[3144,11739,0],[3131,11742,0],[3123,11734,0],[3131,11738,0],[3147,11756,0],[3112,12097,0],[3135,12110,0],[3165,11739,0],[3186,11736,0],[3188,11787,0],[3168,11773,0],[3165,12088,0],[3173,12103,0],[3177,12133,0],[3156,12121,0],[3183,12123,0],[3197,12144,0],[3190,12137,0],[3190,12140,0],[3245,11712,0],[3223,11727,0],[3206,11733,0],[3235,11721,0],[3248,11833,0],[3208,11803,0],[3227,11817,0],[3247,11886,0],[3246,11901,0],[3247,11922,0],[3238,12171,0],[3213,12155,0],[3229,12364,0],[3285,11532,0],[3277,11674,0],[3259,11696,0],[3294,11653,0],[3263,11844,0],[3259,11865,0],[3251,11877,0],[3266,11857,0],[3267,11850,0],[3251,11940,0],[3286,11997,0],[3273,11977,0],[3263,11960,0],[3257,11950,0],[3299,12017,0],[3290,12070,0],[3279,12094,0],[3261,12134,0],[3269,12114,0],[3263,12187,0],[3284,12200,0],[3254,12159,0],[3252,12176,0],[3298,12208,0],[3255,12378,0],[3269,12385,0],[3306,11546,0],[3346,11571,0],[3349,11591,0],[3323,11557,0],[3312,11632,0],[3332,11610,0],[3331,11986,0],[3346,11954,0],[3316,12018,0],[3302,12045,0],[3306,12029,0],[3330,12221,0],[3311,12214,0],[3386,11590,0],[3369,11582,0],[3359,11581,0],[3387,11893,0],[3360,11927,0],[3374,11907,0],[3354,12230,0],[3374,12238,0],[3395,12245,0],[3400,12232,0],[3386,12242,0],[3405,11599,0],[3428,11608,0],[3438,11850,0],[3418,11866,0],[3401,11881,0],[3439,12123,0],[3427,12150,0],[3416,12176,0],[3408,12199,0],[3402,12217,0],[3402,12246,0],[3400,12243,0],[3425,12281,0],[3409,12261,0],[3405,12253,0],[3446,12302,0],[3492,11641,0],[3451,11618,0],[3472,11628,0],[3458,11833,0],[3478,11817,0],[3482,12033,0],[3500,12008,0],[3451,12097,0],[3461,12073,0],[3470,12055,0],[3485,12296,0],[3493,12336,0],[3468,12318,0],[3467,12311,0],[3471,12308,0],[3527,11678,0],[3544,11699,0],[3511,11659,0],[3500,11799,0],[3537,11772,0],[3519,11784,0],[3527,11972,0],[3540,11956,0],[3515,11988,0],[3545,12233,0],[3536,12250,0],[3508,12278,0],[3523,12265,0],[3544,12372,0],[3518,12354,0],[3592,11748,0],[3574,11733,0],[3559,11718,0],[3580,11742,0],[3564,11754,0],[3568,11922,0],[3585,11903,0],[3553,11941,0],[3589,12169,0],[3574,12182,0],[3560,12196,0],[3551,12214,0],[3570,12391,0],[3596,12410,0],[3620,11647,0],[3649,11677,0],[3631,11658,0],[3616,11764,0],[3642,11782,0],[3649,11847,0],[3624,11868,0],[3603,11886,0],[3630,12136,0],[3608,12154,0],[3624,12430,0],[3646,12446,0],[3668,11696,0],[3695,11737,0],[3681,11710,0],[3689,11721,0],[3662,11797,0],[3670,11829,0],[3689,11813,0],[3687,11839,0],[3682,11816,0],[3677,11810,0],[3672,11805,0],[3673,11830,0],[3686,12085,0],[3652,12117,0],[3670,12100,0],[3746,11772,0],[3724,11787,0],[3706,11800,0],[3711,11764,0],[3724,11781,0],[3703,11755,0],[3718,11774,0],[3701,11752,0],[3713,11855,0],[3741,11872,0],[3741,11988,0],[3750,11959,0],[3747,11973,0],[3731,12011,0],[3723,12033,0],[3718,12047,0],[3705,12064,0],[3773,11755,0],[3764,11885,0],[3785,11890,0],[3777,11896,0],[3795,11890,0],[3776,11890,0],[3764,11921,0],[3754,11941,0],[3773,11904,0],[3827,11586,0],[3838,11615,0],[3848,11642,0],[3803,11735,0],[3830,11717,0],[3849,11703,0],[3811,11899,0],[3849,11926,0],[3831,11913,0],[3881,11678,0],[3865,11691,0],[3878,11691,0],[3856,11664,0],[3864,11678,0],[3894,11797,0],[3883,11805,0],[3876,11810,0],[3866,11938,0],[3883,11950,0],[3901,11663,0],[3901,11707,0],[3927,11724,0],[3949,11738,0],[3927,11772,0],[3910,11785,0],[3943,11759,0],[3926,11981,0],[3948,11997,0],[3904,11965,0],[3966,11749,0],[3957,11748,0],[3959,11744,0],[3983,11759,0],[3952,11752,0],[3994,12029,0],[3970,12012,0],[4012,12042,0]]],["Gliniska",[[4648,10274,0],[4674,10245,0],[4686,10231,0],[4698,10217,0],[4661,10260,0],[4749,10160,0],[4736,10175,0],[4723,10189,0],[4711,10203,0],[4751,9514,0],[4762,9539,0],[4774,9567,0],[4785,9594,0],[4797,9616,0],[4775,10130,0],[4762,10145,0],[4788,10114,0],[4811,9642,0],[4836,9680,0],[4846,9697,0],[4825,9664,0],[4845,10049,0],[4802,10099,0],[4815,10085,0],[4827,10070,0],[4870,9735,0],[4857,9713,0],[4883,9758,0],[4892,9777,0],[4899,9785,0],[4868,10024,0],[4888,10001,0],[4902,9799,0],[4945,9753,0],[4912,9778,0],[4928,9767,0],[4915,9826,0],[4930,9855,0],[4943,9880,0],[4938,9943,0],[4905,9981,0],[4920,9964,0],[4989,9695,0],[4974,9716,0],[4960,9737,0],[4958,9904,0],[4975,9928,0],[4954,9927,0],[4962,9920,0],[4993,9951,0],[5000,9953,0],[5031,9641,0],[5049,9621,0],[5003,9679,0],[5015,9663,0],[5046,9822,0],[5042,9843,0],[5038,9867,0],[5033,9893,0],[5013,9942,0],[5030,9914,0],[5027,9925,0],[5025,9931,0],[5024,9989,0],[5009,9971,0],[5038,10007,0],[5082,9582,0],[5097,9562,0],[5065,9603,0],[5099,9729,0],[5068,9778,0],[5085,9752,0],[5087,9794,0],[5056,9796,0],[5076,9782,0],[5097,9829,0],[5052,9805,0],[5097,9808,0],[5096,9855,0],[5095,9874,0],[5096,9886,0],[5068,10043,0],[5053,10024,0],[5085,10064,0],[5098,10087,0],[5127,9532,0],[5110,9547,0],[5144,9519,0],[5137,9678,0],[5124,9695,0],[5112,9711,0],[5105,9895,0],[5120,9905,0],[5132,9911,0],[5112,10140,0],[5132,10110,0],[5107,10111,0],[5119,10124,0],[5113,10130,0],[5115,10175,0],[5138,10239,0],[5120,10204,0],[5126,10221,0],[5166,9509,0],[5193,9504,0],[5186,9503,0],[5194,9605,0],[5164,9644,0],[5178,9627,0],[5151,9661,0],[5152,9913,0],[5179,9915,0],[5152,10089,0],[5188,10055,0],[5171,10071,0],[5158,10259,0],[5179,10273,0],[5198,10346,0],[5190,10354,0],[5249,9531,4],[5216,9532,0],[5203,9513,0],[5238,9540,0],[5231,9546,0],[5225,9546,0],[5210,9580,0],[5222,9559,0],[5223,9935,0],[5247,9946,0],[5202,9924,0],[5233,10017,0],[5208,10038,0],[5226,10293,0],[5201,10284,0],[5212,10330,0],[5228,10312,0],[5236,10302,0],[5271,9514,6],[5261,9994,0],[5275,9954,0],[5284,9976,0],[5298,9964,0],[5297,9961,0],[5292,9959,0],[5252,10303,0],[5280,10312,0],[5312,9950,0],[5339,9916,0],[5327,9932,0],[5393,9848,0],[5381,9863,0],[5353,9899,0],[5366,9883,0]]],["Brena",[[6124,11233,0],[6148,11253,0],[6188,10960,0],[6191,11230,0],[6174,11247,0],[6173,11274,0],[6164,11259,0],[6219,10962,0],[6234,11192,0],[6212,11211,0],[6200,11298,0],[6249,11344,0],[6234,11330,0],[6220,11317,0],[6251,10964,0],[6281,10965,0],[6278,11139,0],[6293,11116,0],[6264,11162,0],[6252,11177,0],[6265,11359,0],[6281,11375,0],[6297,11390,0],[6307,10966,0],[6332,10996,0],[6326,10967,0],[6339,10968,0],[6333,10974,0],[6332,10981,0],[6329,11024,0],[6324,11057,0],[6307,11100,0],[6319,11078,0],[6316,11088,0],[6318,11409,0],[6343,11431,0],[6378,10972,0],[6354,10969,0],[6366,11448,0],[6391,11466,0],[6381,11537,0],[6391,11512,0],[6370,11562,0],[6360,11584,0],[6351,11606,0],[6417,10771,0],[6426,10794,0],[6434,10817,0],[6439,10839,0],[6446,10893,6],[6443,10858,0],[6446,10879,0],[6445,10871,0],[6449,10949,7],[6448,10921,7],[6406,10974,0],[6429,10977,0],[6443,10978,0],[6445,11395,0],[6430,11425,0],[6439,11407,0],[6417,11455,0],[6419,11485,0],[6400,11491,0],[6408,11476,0],[6405,11479,0],[6442,11504,0],[6479,10994,0],[6462,10985,0],[6452,10980,0],[6450,10963,0],[6450,10986,0],[6450,10973,0],[6450,10993,0],[6450,11010,0],[6451,11036,0],[6451,11059,0],[6452,11082,0],[6453,11130,0],[6453,11105,0],[6454,11150,0],[6457,11172,0],[6462,11205,0],[6471,11241,0],[6466,11227,0],[6478,11260,0],[6483,11286,0],[6482,11273,0],[6487,11272,0],[6477,11339,0],[6484,11306,0],[6482,11328,0],[6484,11321,0],[6455,11378,0],[6467,11356,0],[6481,11537,0],[6463,11521,0],[6498,11553,0],[6503,10743,0],[6535,10758,0],[6533,11022,0],[6504,11007,0],[6506,11274,0],[6538,11277,0],[6516,11568,0],[6536,11585,0],[6591,10766,0],[6563,10773,0],[6579,10797,0],[6580,10783,0],[6592,10786,0],[6584,10785,0],[6583,10787,0],[6581,10820,0],[6587,10832,0],[6587,10843,0],[6576,10809,0],[6571,10861,0],[6555,10875,0],[6563,11039,0],[6592,11054,0],[6590,11238,0],[6572,11264,0],[6559,11276,0],[6573,11615,0],[6554,11601,0],[6593,11629,0],[6603,10733,0],[6643,10800,0],[6606,10785,0],[6619,10782,0],[6635,10788,0],[6629,10783,0],[6616,11068,0],[6634,11077,0],[6647,11084,0],[6621,11197,0],[6636,11179,0],[6647,11164,0],[6607,11215,0],[6617,11646,0],[6639,11664,0],[6650,11669,0],[6675,10827,0],[6654,10813,0],[6668,11094,0],[6664,11141,0],[6673,11124,0],[6681,11111,0],[6688,11103,0],[6656,11154,0],[6683,11633,0],[6699,11613,0],[6657,11684,0],[6662,11656,0],[6673,11704,0],[6703,10844,0],[6725,10854,0],[6720,10853,0],[6703,11106,0],[6726,11109,0],[6741,11110,0],[6740,11563,0],[6726,11581,0],[6712,11598,0],[6759,11110,0],[6783,11109,0],[6796,11495,0],[6771,11525,0],[6755,11544,0],[6784,11509,0],[6827,11106,0],[6804,11108,0],[6849,11105,0],[6840,11444,0],[6825,11462,0],[6810,11479,0],[6878,11104,0],[6893,11136,0],[6883,11118,0],[6877,11107,0],[6888,11388,0],[6872,11407,0],[6856,11425,0],[6912,11103,0],[6943,11105,0],[6922,11174,0],[6940,11194,0],[6905,11154,0],[6934,11335,0],[6947,11319,0],[6904,11370,0],[6919,11352,0],[6974,11113,0],[6999,11126,0],[6972,11231,0],[6956,11212,0],[6962,11299,0],[6978,11278,0],[6983,11250,0],[6984,11264,0],[7015,11141,0],[7045,11175,0],[7030,11157,0],[7061,11193,0],[7097,11231,0],[7077,11211,0]]],["Tarnow",[[8860,10763,0],[8871,10786,0],[8896,10826,0],[8881,10805,0],[8895,10948,0],[8897,10967,0],[8895,11079,0],[8899,11063,0],[8884,11102,0],[8915,10849,0],[8928,10867,0],[8934,10879,0],[8934,10890,0],[8933,10898,0],[8919,10913,0],[8901,10932,0],[8902,10991,0],[8902,11043,0],[8904,11016,0],[8968,11229,0],[8993,11219,0],[9047,11192,0],[9011,11211,0],[9028,11202,0],[9071,11176,0],[9089,11161,0],[9150,10456,0],[9142,11092,0],[9102,11146,0],[9128,11112,0],[9115,11129,0],[9180,10498,0],[9163,10476,0],[9195,10518,0],[9192,11037,0],[9173,11055,0],[9156,11075,0],[9206,10534,0],[9219,10553,0],[9236,10573,0],[9249,10982,0],[9227,11005,0],[9207,11023,0],[9255,10589,0],[9278,10596,0],[9300,10781,0],[9283,10804,0],[9272,10820,0],[9268,10840,0],[9269,10828,0],[9272,10883,0],[9269,10859,0],[9275,10894,0],[9299,10927,0],[9267,10944,0],[9272,10907,0],[9287,10910,0],[9270,10927,0],[9280,10901,0],[9262,10961,0],[9305,10594,0],[9335,10592,0],[9340,10729,0],[9319,10756,0],[9313,10949,0],[9339,10997,0],[9326,10973,0],[9393,10518,0],[9386,10550,0],[9382,10578,0],[9360,10592,0],[9377,10592,0],[9372,10591,0],[9379,10605,0],[9376,10628,0],[9374,10656,0],[9369,10684,0],[9358,10704,0],[9352,11022,0],[9364,11043,0],[9383,11044,0],[9373,11049,0],[9399,11069,0],[9377,11056,0],[9429,10435,0],[9418,10456,0],[9401,10492,0],[9409,10475,0],[9406,11034,0],[9439,11022,0],[9425,11086,0],[9438,11098,0],[9445,11125,0],[9443,11108,0],[9447,11153,0],[9450,11180,0],[9498,10976,0],[9481,10998,0],[9493,11010,0],[9466,11014,0],[9471,11011,0],[9455,11226,0],[9452,11203,0],[9457,11249,0],[9460,11278,0],[9463,11313,0],[9465,11341,0],[9468,11367,0],[9534,10932,0],[9516,10954,0],[9520,11005,0],[9539,11002,0],[9587,10862,0],[9570,10887,0],[9553,10908,0],[9595,10992,0],[9558,10999,0],[9577,10996,0],[9649,10800,0],[9630,10817,0],[9614,10831,0],[9602,10842,0],[9637,10985,0],[9615,10989,0],[9668,10782,0],[9685,10765,0],[9699,10753,0],[9664,10980,0],[9691,10975,0],[9741,10736,0],[9717,10745,0],[9747,10960,0],[9713,10971,0],[9730,10968,0],[9768,10726,0],[9784,10944,0],[9766,10951,0],[9808,10936,0]]],["Sitnik",[[11135,9262,0],[11150,9280,0],[11165,9297,0],[11197,9335,0],[11179,9313,0],[11190,9493,0],[11192,9505,0],[11235,9382,0],[11216,9359,0],[11217,9442,0],[11232,9421,0],[11242,9405,0],[11201,9470,0],[11238,9529,0],[11210,9516,0],[11219,9948,0],[11239,9924,0],[11270,9544,0],[11294,9557,0],[11299,9836,0],[11286,9858,0],[11269,9883,0],[11264,9897,0],[11255,9903,0],[11287,9928,0],[11273,9909,0],[11330,9576,0],[11311,9566,0],[11333,9782,0],[11345,9762,0],[11321,9802,0],[11310,9820,0],[11304,9949,0],[11346,9997,0],[11324,9972,0],[11354,9588,0],[11379,9600,0],[11386,9695,0],[11396,9678,0],[11372,9719,0],[11357,9743,0],[11391,10046,0],[11369,10021,0],[11441,9100,0],[11444,9127,0],[11437,9546,0],[11447,9528,0],[11428,9574,0],[11421,9606,0],[11447,9626,0],[11417,9632,0],[11401,9611,0],[11415,9618,0],[11426,9622,0],[11408,9656,0],[11475,9193,0],[11462,9172,0],[11452,9150,0],[11492,9218,0],[11497,9457,0],[11482,9479,0],[11469,9496,0],[11458,9512,0],[11476,9632,0],[11512,9246,0],[11528,9271,0],[11537,9287,0],[11543,9308,0],[11545,9336,0],[11535,9385,0],[11542,9361,0],[11513,9431,0],[11526,9408,0],[11530,9413,0],[11539,9417,0],[11546,9421,0],[11532,9639,0],[11503,9636,0],[11563,9444,0],[11553,9430,0],[11586,9468,0],[11573,9455,0],[11560,9641,0],[11585,9643,0],[11600,9644,0],[11609,9489,0],[11634,9514,0],[11643,9584,0],[11628,9609,0],[11615,9629,0],[11606,9640,0],[11648,9679,0],[11615,9658,0],[11630,9668,0],[11604,9650,0],[11626,10038,0],[11641,10022,0],[11610,10056,0],[11653,9533,0],[11681,9539,0],[11661,9542,0],[11665,9539,0],[11657,9562,0],[11662,9550,0],[11667,9691,0],[11687,9703,0],[11690,9966,0],[11670,9989,0],[11654,10008,0],[11736,9534,0],[11706,9538,0],[11705,9714,0],[11738,9734,0],[11722,9724,0],[11734,9917,0],[11711,9943,0],[11781,9523,0],[11763,9528,0],[11754,9744,0],[11789,9766,0],[11771,9754,0],[11788,9858,0],[11754,9894,0],[11770,9877,0],[11849,9495,0],[11806,9513,0],[11832,9503,0],[11848,9787,0],[11809,9778,0],[11826,9788,0],[11836,9794,0],[11831,9808,0],[11815,9827,0],[11803,9841,0],[11874,9483,0],[11888,9743,0],[11869,9764,0],[11903,9468,0],[11930,9453,0],[11935,9691,0],[11918,9709,0],[11903,9726,0],[11957,9436,0],[11983,9638,0],[11951,9674,0],[11967,9656,0]]],["Borek",[[9315,8495,0],[9339,8495,0],[9392,8293,0],[9382,8268,0],[9388,8278,0],[9396,8314,0],[9362,8494,0],[9384,8493,0],[9392,8749,0],[9401,8341,0],[9407,8369,0],[9412,8396,0],[9418,8423,0],[9448,8491,0],[9424,8451,0],[9429,8475,0],[9405,8493,0],[9424,8492,0],[9432,8488,0],[9444,8738,0],[9418,8744,0],[9478,8490,0],[9492,8494,0],[9487,8530,0],[9490,8507,0],[9483,8555,0],[9475,8597,0],[9479,8578,0],[9467,8634,0],[9471,8615,0],[9464,8653,0],[9461,8672,0],[9459,8691,0],[9458,8715,0],[9469,8735,0],[9490,8733,0],[9458,8732,0],[9543,8079,0],[9530,8489,0],[9505,8490,0],[9512,8733,0],[9533,8734,0],[9552,8099,0],[9568,8136,0],[9560,8117,0],[9584,8175,0],[9576,8156,0],[9591,8194,0],[9598,8201,0],[9557,8489,0],[9580,8488,0],[9555,8737,0],[9589,8737,0],[9574,8739,0],[9641,8190,0],[9618,8193,0],[9606,8198,0],[9600,8217,0],[9611,8242,0],[9628,8264,0],[9647,8282,0],[9637,8479,0],[9605,8485,0],[9643,8679,0],[9632,8702,0],[9622,8724,0],[9614,8743,0],[9603,8733,0],[9614,8731,0],[9607,8786,0],[9608,8761,0],[9615,8836,0],[9609,8813,0],[9635,8876,0],[9624,8857,0],[9648,8901,0],[9675,8188,0],[9663,8297,0],[9691,8346,0],[9677,8317,0],[9691,8457,0],[9667,8469,0],[9682,8613,0],[9663,8639,0],[9671,8628,0],[9654,8657,0],[9670,8943,0],[9661,8924,0],[9680,8961,0],[9689,8978,0],[9744,8186,0],[9703,8187,0],[9722,8186,0],[9707,8376,0],[9714,8446,0],[9722,8402,0],[9745,8448,0],[9732,8423,0],[9732,8440,0],[9738,8436,0],[9746,8545,0],[9701,8590,0],[9726,8564,0],[9768,8187,0],[9786,8185,0],[9756,8467,0],[9762,8488,0],[9789,8524,0],[9766,8510,0],[9761,8535,0],[9774,8530,0],[9767,8527,0],[9837,8134,0],[9819,8153,0],[9800,8179,0],[9808,8170,0],[9849,8499,0],[9829,8507,0],[9809,8516,0],[9879,8009,0],[9879,8028,0],[9887,8081,0],[9881,8050,0],[9896,8111,0],[9856,8121,0],[9873,8112,0],[9883,8106,0],[9889,8101,0],[9891,8478,0],[9867,8490,0],[9908,8140,0],[9923,8171,0],[9936,8199,0],[9948,8225,0],[9916,8467,0],[9936,8461,0],[9957,8248,0],[9966,8299,0],[9962,8270,0],[9970,8330,0],[9974,8363,0],[9976,8392,0],[9999,8439,0],[9979,8416,0],[9986,8449,0],[9983,8432,0],[9989,8442,0],[9993,8480,0],[9954,8458,0],[9969,8458,0],[9985,8467,0],[9979,8462,0],[9978,8457,0],[10018,8429,0],[10038,8417,0],[10021,8527,0],[10004,8501,0],[10043,8553,0],[10080,8389,0],[10058,8404,0],[10093,8598,0],[10076,8584,0],[10061,8572,0],[10128,8357,0],[10103,8374,0],[10137,8631,0],[10114,8614,0],[10183,8320,0],[10155,8339,0],[10159,8648,0],[10179,8661,0],[10195,8672,0],[10180,8760,0],[10156,8771,0],[10164,8767,0],[10236,8283,0],[10210,8301,0],[10212,8683,0],[10227,8693,0],[10224,8723,0],[10204,8747,0],[10243,8703,0],[10234,8702,0],[10221,8748,0],[10217,8742,0],[10234,8755,0]]],["Zapadlisko",[[7743,8938,0],[7748,8908,0],[7737,8970,0],[7731,9003,0],[7726,9036,0],[7720,9067,0],[7791,8642,0],[7796,8622,0],[7799,8614,0],[7787,8668,0],[7784,8689,0],[7777,8734,0],[7780,8711,0],[7774,8758,0],[7770,8781,0],[7765,8811,0],[7760,8838,0],[7753,8881,0],[7757,8858,0],[7831,8287,0],[7842,8617,0],[7823,8611,0],[7810,8608,0],[7802,8609,0],[7858,8299,0],[7887,8311,0],[7864,8625,0],[7885,8633,0],[7898,8638,0],[7914,8323,0],[7939,8334,0],[7923,8648,0],[7906,8641,0],[7944,8656,0],[7958,8342,0],[7980,8352,0],[7987,8680,0],[7961,8663,0],[7974,8670,0],[7993,8692,0],[7988,8710,0],[7981,8749,0],[7982,8731,0],[7982,8770,0],[7986,8789,0],[7992,8806,0],[8035,8393,0],[8017,8377,0],[8001,8365,0],[8004,8694,0],[8022,8705,0],[8037,8714,0],[8048,8717,0],[8001,8831,0],[8008,8849,0],[8018,8862,0],[8028,8870,0],[8049,8887,0],[8012,8855,0],[8038,8873,0],[8048,8877,0],[8045,8874,0],[8034,9091,0],[8045,9076,0],[8029,9146,0],[8025,9108,0],[8021,9135,0],[8020,9120,0],[8019,9127,0],[8050,9162,0],[8055,8412,0],[8072,8426,0],[8096,8439,0],[8084,8434,0],[8065,8719,0],[8093,8721,0],[8081,8720,0],[8051,8913,0],[8054,8941,0],[8057,8990,0],[8056,8962,0],[8056,9022,0],[8055,9049,0],[8052,9065,0],[8072,9186,0],[8066,9176,0],[8079,9202,0],[8105,8447,0],[8118,8499,0],[8115,8478,0],[8111,8460,0],[8130,8464,0],[8115,8465,0],[8121,8524,0],[8124,8548,0],[8127,8568,0],[8131,8583,0],[8135,8594,0],[8134,8618,0],[8131,8634,0],[8137,8603,0],[8141,8669,0],[8134,8650,0],[8114,8728,0],[8127,8731,0],[8140,8728,0],[8104,8723,0],[8150,8725,0],[8195,8463,0],[8153,8465,0],[8175,8464,0],[8152,8695,0],[8184,8707,0],[8164,8716,0],[8160,8735,0],[8156,8721,0],[8172,8747,0],[8156,8726,0],[8164,8744,0],[8159,8715,0],[8192,8792,0],[8189,8774,0],[8186,8760,0],[8181,8751,0],[8195,8834,0],[8194,8812,0],[8196,8858,0],[8196,8883,0],[8194,8937,0],[8195,8909,0],[8192,8964,0],[8190,8988,0],[8182,9041,0],[8188,9013,0],[8172,9071,0],[8161,9132,0],[8164,9102,0],[8162,9198,0],[8161,9177,0],[8160,9157,0],[8219,8460,0],[8243,8458,0],[8230,8694,0],[8209,8700,0],[8273,8455,0],[8253,8688,0],[8276,8683,0],[8308,8453,0],[8340,8451,0],[8302,8676,0],[8329,8669,0],[8350,8665,0],[8369,8449,0],[8390,8664,0],[8369,8664,0],[8402,8446,0],[8429,8443,0],[8448,8440,0],[8414,8664,0],[8437,8665,0],[8475,8438,0],[8462,8667,0],[8489,8671,0],[8548,8673,0],[8516,8673,0],[8549,8763,0],[8542,8790,0],[8537,8808,0],[8532,8827,0],[8527,8845,0],[8520,8870,0],[8502,8932,0],[8511,8901,0]]],["Nidek",[[5752,7696,0],[5769,7735,0],[5761,7717,0],[5778,7754,0],[5787,7774,0],[5796,7792,0],[5814,7835,0],[5803,7810,0],[5826,7864,0],[5834,7888,0],[5846,7914,0],[5860,7946,0],[5882,7985,0],[5872,7969,0],[5897,8008,0],[5914,8033,0],[5940,8046,0],[5926,8045,0],[5962,7575,0],[5951,7551,0],[5973,7595,0],[5985,7612,0],[5997,7630,0],[5977,8039,0],[5998,8025,0],[5953,8047,0],[5962,8048,0],[5962,8060,0],[5958,8079,0],[5958,8091,0],[5999,8135,0],[5977,8115,0],[5964,8101,0],[6009,7646,0],[6019,7663,0],[6028,7680,0],[6038,7705,0],[6048,7730,0],[6050,8004,0],[6020,8016,0],[6050,8181,0],[6021,8153,0],[6035,8166,0],[6057,7747,0],[6071,7770,0],[6090,7799,0],[6100,7976,0],[6077,7989,0],[6065,8199,0],[6080,8221,0],[6098,8246,0],[6108,7825,0],[6123,7844,0],[6140,7858,0],[6121,7965,0],[6139,7957,0],[6140,8233,0],[6120,8249,0],[6119,8269,0],[6137,8287,0],[6110,8256,0],[6165,7874,0],[6188,7889,0],[6160,7947,0],[6181,7933,0],[6197,7919,0],[6196,8189,0],[6163,8214,0],[6176,8204,0],[6182,8202,0],[6192,8343,0],[6164,8315,0],[6150,8300,0],[6178,8328,0],[6201,7897,0],[6211,7908,0],[6224,7933,0],[6205,7909,0],[6221,7920,0],[6226,7980,0],[6225,7954,0],[6240,8043,0],[6231,8023,0],[6227,8003,0],[6229,8158,0],[6214,8171,0],[6209,8358,0],[6248,8379,0],[6228,8370,0],[6257,8064,0],[6274,8083,0],[6287,8098,0],[6250,8140,0],[6276,8119,0],[6300,8112,0],[6291,8106,0],[6272,8388,0],[6295,8397,0],[6327,8141,0],[6313,8126,0],[6341,8157,0],[6316,8406,0],[6335,8415,0],[6376,8194,0],[6358,8174,0],[6394,8215,0],[6395,8423,0],[6374,8435,0],[6354,8425,0],[6386,8436,0],[6413,8235,0],[6443,8268,0],[6429,8253,0],[6424,8382,0],[6444,8358,0],[6408,8404,0],[6497,8300,0],[6458,8284,0],[6472,8298,0],[6477,8320,0],[6461,8338,0],[6482,8308,0],[6543,8251,0],[6529,8266,0],[6515,8281,0],[6558,8237,0],[6573,8222,0],[6586,8208,0]]],["Topolin",[[1393,7200,0],[1390,7263,0],[1365,7256,0],[1379,7375,0],[1395,7377,0],[1436,7195,0],[1416,7198,0],[1420,7271,0],[1450,7278,0],[1427,7388,0],[1409,7380,0],[1450,7544,0],[1429,7579,7],[1445,7552,3],[1458,7192,0],[1477,7189,0],[1495,7187,0],[1480,7284,0],[1454,7402,0],[1478,7415,0],[1495,7424,0],[1481,7490,0],[1494,7466,0],[1468,7514,0],[1485,7536,0],[1457,7531,0],[1471,7529,0],[1528,7184,0],[1543,7182,0],[1512,7186,0],[1511,7289,0],[1540,7294,0],[1541,7388,0],[1507,7444,0],[1518,7424,0],[1529,7406,0],[1540,7427,0],[1528,7418,0],[1508,7430,0],[1506,7545,0],[1529,7556,0],[1549,7565,0],[1532,7704,0],[1598,6941,0],[1574,6938,0],[1577,7147,0],[1588,7133,0],[1579,7137,0],[1581,7133,0],[1555,7177,0],[1567,7169,0],[1574,7159,0],[1565,7298,0],[1570,7347,0],[1585,7326,0],[1588,7302,0],[1596,7310,0],[1555,7368,0],[1564,7443,0],[1552,7436,0],[1582,7450,0],[1569,7574,0],[1590,7584,0],[1597,7725,0],[1577,7715,0],[1557,7707,0],[1627,6946,0],[1605,7138,0],[1630,7143,0],[1615,7308,0],[1641,7315,0],[1631,7465,0],[1606,7457,0],[1647,7594,0],[1607,7591,0],[1626,7595,0],[1639,7743,0],[1616,7734,0],[1671,6964,0],[1651,6953,0],[1689,6976,0],[1655,7151,0],[1676,7158,0],[1687,7162,0],[1696,7163,0],[1680,7324,0],[1660,7319,0],[1660,7474,0],[1690,7483,0],[1684,7588,0],[1665,7590,0],[1666,7752,0],[1690,7759,0],[1733,6869,0],[1735,6898,0],[1735,6936,0],[1736,6920,0],[1731,6953,0],[1723,6970,0],[1706,6988,0],[1719,6988,0],[1716,6995,0],[1743,7034,0],[1730,7018,0],[1721,7004,0],[1726,7045,0],[1723,7032,0],[1724,7018,0],[1723,7024,0],[1730,7081,0],[1729,7063,0],[1729,7098,0],[1724,7111,0],[1716,7122,0],[1712,7133,0],[1711,7143,0],[1704,7160,0],[1709,7153,0],[1700,7330,0],[1720,7335,0],[1739,7339,0],[1749,7333,0],[1715,7491,0],[1733,7496,0],[1742,7493,0],[1746,7487,0],[1705,7594,0],[1728,7605,0],[1711,7766,0],[1733,7773,0],[1776,7074,0],[1795,7097,0],[1759,7052,0],[1793,7248,0],[1768,7282,0],[1780,7264,0],[1763,7345,0],[1758,7302,0],[1752,7319,0],[1793,7352,0],[1798,7390,0],[1777,7427,0],[1766,7448,0],[1788,7407,0],[1754,7471,0],[1756,7503,0],[1797,7501,0],[1780,7507,0],[1794,7515,0],[1785,7512,0],[1752,7620,0],[1768,7631,0],[1774,7638,0],[1778,7784,0],[1755,7779,0],[1811,7118,0],[1823,7137,0],[1844,7153,0],[1830,7161,0],[1829,7185,0],[1835,7170,0],[1808,7229,0],[1821,7206,0],[1821,7358,0],[1847,7364,0],[1808,7373,0],[1817,7360,0],[1839,7453,0],[1824,7471,0],[1811,7488,0],[1827,7527,0],[1808,7521,0],[1804,7789,0],[1847,7800,0],[1827,7794,0],[1890,7080,0],[1898,7054,0],[1898,7065,0],[1874,7104,0],[1858,7130,0],[1894,7299,0],[1884,7321,0],[1876,7341,0],[1897,7336,0],[1884,7333,0],[1871,7370,0],[1895,7376,0],[1869,7362,0],[1871,7353,0],[1865,7445,0],[1893,7449,0],[1878,7544,0],[1850,7534,0],[1869,7806,0],[1890,7813,0],[1924,6972,0],[1943,6962,0],[1912,6986,0],[1909,6997,0],[1931,7049,0],[1948,7039,0],[1906,7026,0],[1901,7041,0],[1909,7009,0],[1911,7061,0],[1945,7233,0],[1932,7248,0],[1916,7261,0],[1902,7283,0],[1924,7254,0],[1908,7270,0],[1904,7277,0],[1914,7340,0],[1932,7342,0],[1947,7389,0],[1919,7382,0],[1941,7460,0],[1915,7456,0],[1904,7552,0],[1934,7560,0],[1922,7557,0],[1945,7561,0],[1910,7818,0],[1930,7823,0],[1986,6889,0],[1983,6871,0],[1981,6861,0],[1986,6944,0],[1987,6915,0],[1984,6970,0],[1982,6990,0],[1962,6960,0],[1974,6959,0],[1982,6959,0],[1966,7027,0],[1986,7034,0],[1979,7010,0],[1993,7046,0],[1978,7022,0],[1999,7075,0],[1996,7057,0],[1999,7134,0],[1982,7190,0],[1997,7156,0],[1994,7170,0],[1990,7179,0],[1963,7214,0],[1974,7202,0],[1976,7344,0],[1951,7342,0],[1998,7344,0],[1975,7396,0],[1999,7401,0],[1994,7451,0],[1970,7458,0],[1985,7481,0],[1969,7471,0],[1960,7463,0],[1981,7527,0],[1995,7517,0],[1969,7538,0],[1960,7549,0],[1953,7557,0],[2002,7091,0],[2001,7109,0],[2014,7335,0],[2008,7342,0],[2035,7389,0],[2026,7394,0],[2011,7431,0],[2032,7410,0],[2013,7405,0],[2021,7401,0],[2018,7410,0],[2008,7495,0],[2034,7507,0],[2009,7509,0],[2019,7503,0],[2083,7379,0],[2054,7382,0],[2088,7443,0],[2068,7429,0],[2053,7419,0],[2054,7515,0],[2070,7521,0],[2084,7526,0],[2096,7526,0],[2134,7370,0],[2111,7376,0],[2109,7459,0],[2127,7472,0],[2144,7484,0],[2136,7479,0],[2126,7493,0],[2147,7464,0],[2131,7486,0],[2138,7473,0],[2142,7468,0],[2119,7501,0],[2112,7511,0],[2104,7520,0],[2199,7348,0],[2175,7350,0],[2156,7359,0],[2161,7494,0],[2180,7460,0],[2158,7460,0],[2185,7508,0],[2226,7348,0],[2248,7348,0],[2209,7462,0],[2240,7465,0],[2240,7539,0],[2223,7529,0],[2207,7520,0],[2287,7326,0],[2266,7341,0],[2293,7466,0],[2268,7465,0],[2257,7548,0],[2275,7558,0],[2292,7568,0],[2343,7285,0],[2325,7298,0],[2308,7311,0],[2316,7469,0],[2336,7472,0]]],["Adamow",[[2635,6948,0],[2603,6975,0],[2619,6958,0],[2656,6938,0],[2678,6928,0],[2700,6920,0],[2722,6915,0],[2743,6913,0],[2794,6465,0],[2776,6895,0],[2791,6872,0],[2783,6916,0],[2765,6909,0],[2757,6912,0],[2767,6912,0],[2804,6488,0],[2825,6511,0],[2845,6793,0],[2820,6830,0],[2832,6811,0],[2805,6851,0],[2842,6945,0],[2802,6922,0],[2817,6928,0],[2829,6934,0],[2851,6531,0],[2876,6549,0],[2868,6543,0],[2891,6555,0],[2883,6553,0],[2878,6731,0],[2891,6706,0],[2865,6757,0],[2856,6774,0],[2860,6960,0],[2878,6973,0],[2896,6982,0],[2928,6560,0],[2907,6557,0],[2939,6636,0],[2935,6643,0],[2902,6687,0],[2935,6690,0],[2925,6677,0],[2914,6677,0],[2934,6663,0],[2934,6652,0],[2934,6673,0],[2934,6680,0],[2945,6721,0],[2940,6708,0],[2919,6989,0],[2943,6993,0],[2955,6566,0],[2993,6592,0],[2976,6574,0],[2984,6581,0],[2993,6597,0],[2956,6622,0],[2980,6606,0],[2951,6732,0],[2963,6747,0],[2956,6741,0],[2978,6758,0],[2968,6997,0],[2997,7000,0],[2994,7342,0],[3048,6635,0],[3022,6619,0],[3004,6605,0],[3001,6773,0],[3023,6788,0],[3041,6842,0],[3043,6800,0],[3029,6812,0],[3035,6803,0],[3026,6829,0],[3025,6820,0],[3050,7008,0],[3024,7004,0],[3025,7342,0],[3074,6651,0],[3099,6663,0],[3066,6785,0],[3089,6765,0],[3077,6768,0],[3080,6765,0],[3061,6812,0],[3077,6820,0],[3092,6825,0],[3055,6804,0],[3069,6858,0],[3100,6863,0],[3098,7012,0],[3074,7012,0],[3054,7343,0],[3080,7345,0],[3099,7347,0],[3142,6677,0],[3120,6671,0],[3146,6747,0],[3123,6759,0],[3105,6764,0],[3116,6824,0],[3145,6844,0],[3141,6821,0],[3143,6826,0],[3126,6860,0],[3142,6857,0],[3147,6991,0],[3132,7002,0],[3118,7008,0],[3166,6685,0],[3188,6691,0],[3192,6726,0],[3164,6736,0],[3173,6727,0],[3179,6721,0],[3183,6721,0],[3196,6770,0],[3180,6790,0],[3166,6805,0],[3184,6825,0],[3158,6814,0],[3152,6819,0],[3169,6822,0],[3162,6816,0],[3165,6819,0],[3153,6865,0],[3167,6883,0],[3178,6898,0],[3184,6946,0],[3183,6912,0],[3185,6928,0],[3163,6978,0],[3175,6967,0],[3181,6959,0],[3246,6715,0],[3227,6735,0],[3210,6700,0],[3230,6710,0],[3206,6736,0],[3215,6742,0],[3240,6717,0],[3212,6752,0],[3233,6831,0],[3207,6828,0],[3265,6698,0],[3284,6683,0],[3295,6844,0],[3262,6836,0],[3346,6606,0],[3336,6627,0],[3327,6645,0],[3304,6667,0],[3319,6655,0],[3329,6867,0],[3345,6888,0],[3315,6852,0],[3391,6541,0],[3370,6565,0],[3356,6587,0],[3356,6904,0],[3364,6927,0],[3364,6940,0],[3363,6913,0],[3364,6918,0],[3382,6998,0],[3373,6976,0],[3365,6951,0],[3367,6961,0],[3389,7024,0],[3394,7051,0],[3412,6519,0],[3430,6501,0],[3401,7079,0],[3406,7099,0],[3434,7139,0],[3422,7125,0],[3413,7112,0],[3451,7156,0]]],["Muratyn",[[4081,6367,0],[4124,6293,0],[4146,6260,0],[4127,6273,0],[4133,6265,0],[4129,6344,0],[4145,6334,0],[4125,6315,0],[4133,6330,0],[4129,6325,0],[4104,6360,0],[4117,6354,0],[4176,6259,0],[4191,6258,0],[4161,6258,0],[4179,6339,0],[4159,6332,0],[4209,6249,0],[4230,6234,0],[4244,6346,0],[4204,6348,0],[4225,6350,0],[4238,6387,0],[4231,6394,0],[4231,6414,0],[4247,6418,0],[4238,6419,0],[4228,6407,0],[4228,6401,0],[4300,6194,0],[4276,6205,0],[4252,6221,0],[4264,6339,0],[4292,6342,0],[4282,6336,0],[4270,6371,0],[4251,6379,0],[4288,6364,0],[4294,6354,0],[4258,6412,0],[4295,6407,0],[4268,6406,0],[4279,6403,0],[4287,6404,0],[4348,6184,0],[4322,6189,0],[4312,6414,0],[4334,6420,0],[4334,6799,0],[4311,6806,0],[4374,6178,0],[4398,6410,0],[4372,6417,0],[4352,6421,0],[4387,6776,0],[4360,6789,0],[4422,5941,0],[4409,5922,0],[4435,5959,0],[4447,5977,0],[4431,6149,0],[4401,6168,0],[4419,6158,0],[4439,6398,0],[4448,6398,0],[4422,6402,0],[4431,6441,0],[4426,6426,0],[4423,6414,0],[4420,6406,0],[4443,6473,0],[4437,6457,0],[4450,6487,0],[4447,6733,0],[4434,6747,0],[4421,6758,0],[4405,6766,0],[4412,6762,0],[4427,6754,0],[4458,5998,0],[4469,6023,0],[4478,6045,0],[4493,6089,0],[4485,6063,0],[4453,6135,0],[4485,6121,0],[4471,6123,0],[4496,6116,0],[4497,6109,0],[4478,6432,0],[4465,6412,0],[4455,6401,0],[4490,6452,0],[4484,6478,0],[4466,6487,0],[4494,6451,0],[4456,6494,0],[4454,6496,0],[4497,6470,0],[4480,6535,0],[4467,6518,0],[4456,6501,0],[4460,6508,0],[4494,6553,0],[4483,6694,0],[4464,6714,0],[4511,6118,0],[4539,6116,0],[4531,6437,0],[4509,6446,0],[4511,6483,0],[4500,6469,0],[4529,6502,0],[4544,6519,0],[4521,6590,0],[4506,6570,0],[4538,6611,0],[4549,6631,0],[4531,6649,0],[4542,6642,0],[4548,6624,0],[4546,6644,0],[4500,6677,0],[4516,6661,0],[4549,6658,0],[4579,6113,0],[4560,6115,0],[4597,6393,0],[4597,6427,0],[4555,6425,0],[4578,6411,0],[4589,6408,0],[4590,6488,0],[4599,6456,0],[4576,6534,0],[4581,6514,0],[4551,6531,0],[4556,6544,0],[4560,6567,0],[4570,6555,0],[4560,6593,0],[4565,6574,0],[4561,6589,0],[4555,6612,0],[4567,6694,0],[4556,6677,0],[4582,6711,0],[4600,6725,0],[4604,6111,0],[4648,6107,0],[4628,6109,0],[4646,6310,0],[4631,6339,0],[4615,6368,0],[4640,6745,0],[4618,6735,0],[4669,6103,0],[4683,6105,0],[4692,6111,0],[4698,6216,0],[4685,6240,0],[4662,6280,0],[4676,6256,0],[4696,6749,0],[4663,6755,0],[4682,6764,0],[4691,6763,0],[4693,6770,0],[4705,6126,0],[4723,6147,0],[4713,6190,0],[4741,6167,0],[4723,6172,0],[4730,6162,0],[4748,6590,0],[4729,6646,0],[4739,6617,0],[4720,6676,0],[4711,6704,0],[4703,6729,0],[4704,6783,0],[4716,6799,0],[4728,6831,0],[4723,6812,0],[4734,6853,0],[4762,6191,0],[4785,6218,0],[4794,6455,0],[4785,6479,0],[4763,6545,0],[4770,6522,0],[4777,6501,0],[4755,6568,0],[4807,6244,0],[4827,6267,0],[4845,6286,0],[4843,6335,0],[4826,6376,0],[4835,6354,0],[4804,6428,0],[4816,6401,0],[4892,6203,0],[4882,6229,0],[4874,6253,0],[4866,6275,0],[4860,6293,0],[4855,6298,0],[4868,6336,0],[4852,6313,0],[4850,6328,0],[4899,6350,0],[4947,6070,0],[4941,6087,0],[4935,6119,0],[4923,6136,0],[4935,6108,0],[4930,6123,0],[4902,6178,0],[4912,6155,0],[4927,6364,0],[4966,6092,0],[4950,6104,0],[4978,6388,0],[4951,6375,0],[5038,6418,0],[5007,6403,0]]],["Radunin",[[7072,6047,0],[7087,6080,0],[7072,6068,0],[7067,6057,0],[7105,6092,0],[7128,6108,0],[7149,6126,0],[7139,6893,0],[7128,6919,0],[7122,6944,0],[7167,6150,0],[7180,6175,0],[7185,6196,0],[7188,6241,0],[7186,6230,0],[7187,6212,0],[7186,6222,0],[7198,6272,0],[7192,6255,0],[7177,6826,0],[7190,6805,0],[7165,6846,0],[7152,6869,0],[7206,6290,0],[7233,6331,0],[7214,6307,0],[7247,6341,0],[7221,6319,0],[7245,6660,0],[7240,6688,0],[7222,6748,0],[7229,6730,0],[7234,6711,0],[7212,6767,0],[7202,6785,0],[7276,5995,0],[7288,5999,0],[7283,5997,0],[7299,6012,0],[7273,6348,0],[7258,6345,0],[7295,6350,0],[7300,6453,0],[7295,6478,0],[7291,6499,0],[7280,6545,0],[7286,6521,0],[7286,6536,0],[7291,6540,0],[7272,6571,0],[7262,6602,0],[7253,6631,0],[7325,6047,0],[7312,6031,0],[7341,6070,0],[7348,6154,0],[7343,6174,0],[7340,6196,0],[7334,6248,0],[7338,6221,0],[7329,6278,0],[7323,6311,0],[7318,6337,0],[7319,6348,0],[7316,6350,0],[7336,6360,0],[7314,6366,0],[7310,6389,0],[7311,6352,0],[7304,6429,0],[7308,6408,0],[7302,6548,0],[7321,6562,0],[7342,6577,0],[7359,6097,0],[7395,6085,0],[7380,6104,0],[7359,6133,0],[7368,6118,0],[7369,6113,0],[7357,6377,0],[7371,6389,0],[7386,6403,0],[7397,6416,0],[7400,6416,0],[7389,6575,0],[7360,6588,0],[7377,6591,0],[7370,6594,0],[7361,6638,0],[7366,6617,0],[7371,6602,0],[7360,6697,0],[7359,6677,0],[7359,6658,0],[7363,6741,0],[7362,6717,0],[7365,6770,0],[7367,6797,0],[7369,6821,0],[7372,6847,0],[7375,6898,0],[7374,6870,0],[7389,6932,0],[7379,6922,0],[7436,6037,0],[7421,6054,0],[7407,6070,0],[7411,6298,0],[7428,6286,0],[7445,6291,0],[7416,6285,0],[7408,6319,0],[7406,6342,0],[7401,6397,0],[7404,6367,0],[7400,6428,0],[7402,6442,0],[7411,6494,0],[7409,6472,0],[7405,6456,0],[7412,6517,0],[7410,6546,0],[7412,6535,0],[7403,6558,0],[7410,6937,0],[7434,6937,0],[7453,6019,0],[7457,6293,0],[7463,6293,0],[7477,6934,0],[7453,6935,0],[7538,6927,0],[7506,6931,0]]],["Lembork",[[8243,6823,0],[8224,6815,0],[8292,6345,0],[8278,6849,0],[8261,6837,0],[8296,6861,0],[8320,6359,0],[8314,6872,0],[8349,6881,0],[8334,6881,0],[8325,6879,0],[8352,6375,0],[8382,6388,0],[8375,6880,0],[8405,6397,0],[8447,6411,0],[8423,6404,0],[8407,6876,0],[8435,6868,0],[8444,6867,0],[8446,7018,0],[8440,7040,0],[8443,7030,0],[8435,7061,0],[8478,6418,0],[8482,6831,0],[8499,6821,0],[8459,6850,0],[8471,6894,0],[8454,6877,0],[8493,6885,0],[8482,6906,0],[8469,6927,0],[8460,6942,0],[8482,6905,0],[8452,6995,0],[8454,6975,0],[8454,6961,0],[8456,6950,0],[8511,6425,0],[8539,6429,0],[8513,6846,0],[8534,6801,0],[8516,6811,0],[8516,6827,0],[8510,6818,0],[8502,6866,0],[8560,6431,0],[8581,6433,0],[8588,6753,0],[8569,6776,0],[8551,6791,0],[8630,6435,0],[8602,6434,0],[8630,6701,0],[8608,6727,0],[8663,6437,0],[8697,6442,0],[8684,6438,0],[8654,6678,0],[8675,6664,0],[8710,6449,0],[8729,6463,0],[8748,6481,0],[8731,6647,0],[8700,6655,0],[8763,6182,0],[8772,6152,0],[8756,6229,0],[8758,6208,0],[8754,6293,0],[8754,6252,0],[8753,6273,0],[8761,6335,0],[8757,6314,0],[8766,6359,0],[8770,6381,0],[8775,6408,0],[8778,6436,0],[8761,6497,0],[8779,6482,0],[8779,6458,0],[8787,6528,0],[8781,6504,0],[8770,6507,0],[8775,6512,0],[8780,6514,0],[8795,6552,0],[8764,6640,0],[8797,6635,0],[8814,6591,0],[8803,6570,0],[8828,6619,0],[8843,6646,0],[8820,6634,0],[8841,6635,0],[8832,6634,0],[8885,6642,0],[8868,6638,0],[8854,6636,0],[8856,6670,0],[8868,6691,0],[8878,6709,0],[8888,6727,0],[8897,6744,0],[8905,6648,0],[8931,6656,0],[8930,6790,0],[8906,6764,0],[8912,6785,0],[8915,6778,0],[8917,6829,0],[8915,6805,0],[8923,6882,0],[8920,6854,0],[8927,6915,0],[8931,6947,0],[8935,6977,0],[8937,7001,0],[8940,7044,0],[8939,7022,0],[8997,6676,0],[8974,6669,0],[8955,6663,0],[8951,6807,0],[8973,6823,0],[8995,6838,0],[9022,6685,0],[9049,6693,0],[9019,6854,0],[9044,6869,0],[9074,6701,0],[9096,6708,0],[9088,6891,0],[9065,6880,0],[9132,6717,0],[9113,6713,0],[9156,6718,0]]],["Gieraltow",[[10787,4248,0],[10797,4243,0],[10765,4264,0],[10776,4255,0],[10803,4142,0],[10828,4138,0],[10842,4239,0],[10824,4241,0],[10809,4242,0],[10858,4133,0],[10884,4129,0],[10890,4249,0],[10864,4241,0],[10889,4280,0],[10899,4268,0],[10881,4294,0],[10887,4327,0],[10879,4309,0],[10898,4699,0],[10889,4733,0],[10893,4714,0],[10914,4020,0],[10916,4040,0],[10918,4066,0],[10920,4094,0],[10939,4143,0],[10921,4132,0],[10903,4129,0],[10919,4112,0],[10917,4124,0],[10928,4141,0],[10924,4178,0],[10927,4153,0],[10919,4237,0],[10922,4210,0],[10911,4258,0],[10908,4256,0],[10907,4347,0],[10932,4363,0],[10939,4611,0],[10921,4647,0],[10930,4629,0],[10911,4667,0],[10903,4685,0],[10988,4188,0],[10971,4171,0],[10956,4157,0],[10993,4396,0],[10969,4383,0],[10952,4374,0],[10984,4523,0],[10999,4500,0],[10973,4540,0],[10952,4586,0],[10965,4558,0],[11020,4218,0],[11038,4234,0],[11004,4203,0],[11020,4411,0],[11037,4445,0],[11037,4421,0],[11047,4427,0],[11046,4432,0],[11023,4465,0],[11011,4484,0],[11054,4248,0],[11091,4277,0],[11069,4261,0],[11085,4412,0],[11060,4423,0],[11121,3899,0],[11147,3910,0],[11117,4293,0],[11138,4284,0],[11130,4297,0],[11140,4305,0],[11143,4389,0],[11114,4401,0],[11183,3892,0],[11181,3947,0],[11168,3921,0],[11183,3917,0],[11180,3927,0],[11178,3976,0],[11177,3997,0],[11196,4045,0],[11182,4028,0],[11177,4014,0],[11179,4240,0],[11162,4249,0],[11199,4236,0],[11150,4265,0],[11168,4318,0],[11169,4379,0],[11191,4369,0],[11234,4083,0],[11216,4066,0],[11247,4182,0],[11238,4202,0],[11231,4217,0],[11224,4228,0],[11214,4233,0],[11200,4332,0],[11230,4345,0],[11215,4344,0],[11206,4359,0],[11212,4351,0],[11250,4818,0],[11249,4839,0],[11248,4861,0],[11254,4105,0],[11266,4139,0],[11268,4121,0],[11270,4128,0],[11258,4158,0],[11296,4375,0],[11270,4363,0],[11252,4354,0],[11298,4562,0],[11293,4593,0],[11290,4616,0],[11286,4635,0],[11273,4679,0],[11280,4654,0],[11266,4708,0],[11260,4737,0],[11252,4792,0],[11255,4764,0],[11328,4389,0],[11338,4500,0],[11323,4510,0],[11303,4536,0],[11308,4525,0],[11313,4518,0],[11377,4419,0],[11399,4438,0],[11353,4402,0],[11361,4486,0],[11395,4459,0],[11382,4472,0],[11405,4450,0],[11425,4470,0],[11440,4490,0],[11411,4453,0],[11468,4526,0],[11453,4508,0],[11482,4545,0],[11495,4563,0],[11520,4599,0],[11506,4578,0],[11535,4624,0],[11547,4644,0],[11564,4679,0],[11579,4660,0],[11556,4660,0],[11596,4652,0],[11563,4667,0],[11578,4724,0],[11571,4701,0],[11629,4625,0],[11609,4642,0],[11673,4587,0],[11687,4576,0],[11699,4568,0],[11652,4605,0]]],["Nadbor",[[5628,3918,0],[5644,3932,0],[5650,3907,0],[5641,3915,0],[5638,3921,0],[5644,3910,0],[5660,3945,0],[5674,3907,0],[5657,3904,0],[5675,3958,0],[5691,3971,0],[5697,3982,0],[5697,3991,0],[5699,4016,0],[5697,4002,0],[5703,3914,0],[5731,3921,0],[5709,3986,0],[5730,4003,0],[5748,4016,0],[5704,4049,0],[5701,4029,0],[5703,4038,0],[5710,4086,0],[5707,4066,0],[5715,4109,0],[5719,4130,0],[5726,4154,0],[5734,4178,0],[5741,4198,0],[5736,4167,0],[5722,4238,0],[5743,4243,0],[5700,4241,0],[5745,4216,0],[5747,4229,0],[5743,4235,0],[5737,4236,0],[5732,4264,0],[5719,4288,0],[5779,3945,0],[5751,3925,0],[5762,3930,0],[5771,3937,0],[5789,3951,0],[5798,4046,0],[5764,4026,0],[5780,4036,0],[5757,4166,0],[5786,4166,0],[5779,4348,0],[5804,3953,0],[5842,3952,0],[5824,3953,0],[5818,4057,0],[5837,4067,0],[5812,4172,0],[5833,4181,0],[5826,4370,0],[5802,4359,0],[5863,3953,0],[5884,3954,0],[5899,3955,0],[5859,4078,0],[5884,4089,0],[5853,4191,0],[5875,4203,0],[5899,4215,0],[5852,4382,0],[5876,4393,0],[5943,3895,0],[5926,3934,0],[5931,3916,0],[5935,3908,0],[5920,3949,0],[5936,3963,0],[5912,3953,0],[5925,3950,0],[5929,3955,0],[5904,4097,0],[5925,4104,0],[5948,4111,0],[5940,4206,0],[5929,4219,0],[5917,4221,0],[5928,4449,0],[5938,4426,0],[5900,4403,0],[5923,4412,0],[5947,4407,0],[5938,4418,0],[5970,3845,0],[5989,3803,0],[5981,3820,0],[5956,3874,0],[5971,3985,0],[5952,3974,0],[5984,3996,0],[5999,4020,0],[5991,4005,0],[5995,4012,0],[5986,4120,0],[5965,4115,0],[5970,4139,0],[6000,4118,0],[5973,4123,0],[5953,4188,0],[5992,4185,0],[5961,4171,0],[5966,4157,0],[5975,4181,0],[5963,4179,0],[5993,4326,0],[5979,4349,0],[5994,4348,0],[5988,4342,0],[5957,4385,0],[5969,4365,0],[6047,3737,0],[6005,3782,0],[6029,3757,0],[6009,4040,0],[6003,4027,0],[6015,4077,0],[6015,4057,0],[6012,4093,0],[6011,4125,0],[6039,4130,0],[6006,4106,0],[6024,4197,0],[6009,4190,0],[6048,4232,0],[6038,4207,0],[6025,4271,0],[6015,4288,0],[6035,4254,0],[6006,4305,0],[6037,4347,0],[6048,4332,0],[6006,4355,0],[6030,4358,0],[6017,4361,0],[6024,4362,0],[6094,3618,0],[6085,3635,0],[6079,3654,0],[6072,3681,0],[6058,3720,0],[6066,3701,0],[6099,4094,0],[6091,4138,0],[6064,4134,0],[6069,4119,0],[6083,4107,0],[6058,4128,0],[6098,4144,0],[6087,4163,0],[6074,4187,0],[6062,4207,0],[6080,4229,0],[6096,4229,0],[6050,4215,0],[6060,4221,0],[6068,4226,0],[6091,4307,0],[6066,4319,0],[6141,3488,0],[6129,3529,0],[6134,3510,0],[6121,3556,0],[6106,3595,0],[6113,3580,0],[6117,4080,0],[6131,4069,0],[6144,4068,0],[6141,4125,0],[6129,4134,0],[6144,4143,0],[6115,4139,0],[6128,4140,0],[6109,4221,0],[6121,4213,0],[6143,4213,0],[6132,4211,0],[6135,4279,0],[6113,4294,0],[6197,4027,0],[6183,4053,0],[6158,4079,0],[6176,4078,0],[6169,4099,0],[6168,4091,0],[6172,4092,0],[6181,4118,0],[6169,4149,0],[6191,4140,0],[6152,4115,0],[6162,4106,0],[6173,4101,0],[6180,4194,0],[6198,4174,0],[6194,4159,0],[6164,4207,0],[6153,4213,0],[6159,4267,0],[6180,4258,0],[6200,4253,0],[6220,3999,0],[6235,3983,0],[6250,3969,0],[6209,4012,0],[6226,4187,0],[6212,4172,0],[6201,4157,0],[6239,4205,0],[6233,4263,0],[6217,4255,0],[6292,3929,0],[6274,3946,0],[6261,3958,0],[6264,4238,0],[6251,4222,0],[6293,4278,0],[6278,4257,0],[6254,4269,0],[6272,4270,0],[6282,4268,0],[6345,3791,0],[6337,3815,0],[6332,3836,0],[6318,3871,0],[6309,3895,0],[6326,3850,0],[6310,3915,0],[6343,3904,0],[6326,3908,0],[6304,3908,0],[6303,3916,0],[6309,4299,0],[6327,4325,0],[6347,4355,0],[6387,3730,0],[6367,3755,0],[6354,3774,0],[6398,3912,0],[6365,3904,0],[6380,3905,0],[6362,4379,0],[6373,4399,0],[6418,3696,0],[6435,3684,0],[6403,3710,0],[6438,3931,0],[6420,3921,0],[6450,3674,0],[6466,3668,0],[6481,3664,0],[6457,3941,0],[6474,3950,0],[6490,3957,0],[6510,3964,0],[6548,3964,0],[6530,3967,0],[6578,3948,0],[6596,3936,0],[6562,3959,0]]],["Zalesie",[[593,5175,0],[578,5162,0],[610,5189,0],[647,5220,0],[627,5204,0],[666,5235,0],[689,5254,0],[696,5944,0],[691,5989,0],[693,5971,0],[718,5278,0],[741,5298,0],[749,5771,0],[739,5791,0],[729,5812,0],[719,5833,0],[705,5883,0],[711,5856,0],[700,5912,0],[761,5317,0],[781,5336,0],[798,5355,0],[793,5593,0],[784,5614,0],[780,5635,0],[794,5645,0],[783,5645,0],[782,5661,0],[783,5690,0],[778,5714,0],[770,5732,0],[760,5750,0],[813,5375,0],[825,5396,0],[847,5432,0],[836,5416,0],[832,5408,0],[827,5544,0],[844,5527,0],[807,5569,0],[817,5652,0],[868,5452,0],[891,5485,0],[898,5470,0],[882,5497,0],[891,5469,0],[884,5464,0],[881,5527,0],[900,5545,0],[857,5516,0],[871,5507,0],[867,5515,0],[851,5663,0],[876,5674,0],[892,5685,0],[940,5394,0],[926,5416,0],[912,5438,0],[904,5454,0],[919,5562,0],[939,5579,0],[908,5697,0],[931,5712,0],[984,5347,0],[965,5361,0],[951,5377,0],[953,5591,0],[967,5600,0],[984,5610,0],[977,5726,0],[956,5722,0],[1048,5323,0],[1002,5337,0],[1018,5333,0],[1031,5331,0],[1029,5635,0],[1001,5618,0],[1042,5645,0],[1016,5626,0],[1049,5655,0],[1002,5728,0],[1027,5730,0],[1050,5731,0],[1095,5290,0],[1071,5307,0],[1067,5678,0],[1056,5666,0],[1078,5687,0],[1089,5692,0],[1098,5726,0],[1074,5730,0],[1119,5274,0],[1144,5258,0],[1101,5695,0],[1109,5698,0],[1120,5733,0],[1116,5718,0],[1113,5703,0],[1115,5710,0],[1114,5723,0],[1139,5786,0],[1128,5758,0],[1188,5229,0],[1166,5244,0],[1151,5812,0],[1164,5832,0],[1194,5874,0],[1176,5850,0],[1232,5189,0],[1211,5210,0],[1213,5897,0]]],["Huta",[[4846,5149,0],[4813,5123,0],[4831,5135,0],[4878,5190,0],[4862,5168,0],[4895,5214,0],[4876,5339,0],[4886,5320,0],[4892,5307,0],[4873,5374,0],[4885,5390,0],[4869,5357,0],[4899,5403,0],[4910,5236,0],[4924,5258,0],[4918,5293,0],[4934,5289,0],[4932,5275,0],[4932,5285,0],[4928,5288,0],[4947,5302,0],[4903,5300,0],[4917,5421,0],[4935,5437,0],[4949,5444,0],[4966,5318,0],[4986,5329,0],[4969,5447,0],[4991,5446,0],[4993,5935,0],[5003,5340,0],[5019,5357,0],[5046,5400,0],[5033,5378,0],[5030,5440,0],[5010,5444,0],[5048,5436,0],[5048,5817,0],[5029,5843,0],[5037,5830,0],[5018,5868,0],[5008,5893,0],[5001,5913,0],[5061,5424,0],[5074,5445,0],[5060,5433,0],[5090,5464,0],[5062,5795,0],[5094,5753,0],[5077,5773,0],[5145,5237,0],[5128,5226,0],[5122,5221,0],[5112,5483,0],[5135,5502,0],[5144,5699,0],[5148,5695,0],[5113,5732,0],[5132,5711,0],[5173,5255,0],[5196,5270,0],[5187,5441,0],[5173,5430,0],[5159,5526,0],[5185,5549,0],[5194,5635,0],[5168,5670,0],[5182,5652,0],[5154,5688,0],[5186,5953,0],[5234,5294,0],[5214,5281,0],[5245,5343,0],[5244,5365,0],[5239,5353,0],[5239,5360,0],[5226,5470,0],[5208,5456,0],[5243,5483,0],[5214,5571,0],[5243,5566,0],[5237,5586,0],[5218,5597,0],[5232,5578,0],[5226,5585,0],[5206,5615,0],[5203,5926,0],[5213,5911,0],[5228,5906,0],[5220,5907,0],[5252,5330,0],[5251,5305,0],[5257,5318,0],[5258,5310,0],[5259,5312,0],[5279,5392,0],[5257,5376,0],[5258,5495,0],[5276,5532,0],[5296,5510,0],[5274,5508,0],[5285,5517,0],[5258,5552,0],[5254,5596,0],[5279,5610,0],[5250,5909,0],[5277,5914,0],[5296,5917,0],[5305,5412,0],[5331,5431,0],[5347,5442,0],[5316,5487,0],[5333,5466,0],[5345,5451,0],[5324,5640,0],[5304,5626,0],[5348,5658,0],[5343,5913,0],[5317,5917,0],[5384,5387,0],[5394,5366,0],[5358,5432,0],[5372,5409,0],[5374,5680,0],[5396,5702,0],[5393,5891,0],[5369,5903,0],[5442,5265,0],[5428,5291,0],[5414,5319,0],[5402,5346,0],[5423,5741,0],[5410,5719,0],[5442,5790,0],[5434,5768,0],[5418,5874,0],[5443,5852,0],[5486,5188,0],[5498,5168,0],[5458,5237,0],[5473,5211,0],[5452,5814,0],[5476,5832,0],[5460,5838,0],[5461,5831,0],[5516,5146,0],[5508,5155,0],[5576,5231,0],[5563,5281,0],[5569,5256,0],[5559,5313,0],[5557,5342,0],[5556,5364,0],[5555,5386,0],[5553,5437,0],[5554,5408,0],[5552,5470,0],[5552,5496,0],[5557,5537,0],[5553,5516,0],[5562,5565,0],[5567,5588,0],[5573,5646,0],[5569,5607,0],[5571,5626,0],[5575,5668,0],[5577,5690,0],[5582,5700,0],[5579,5710,0]]],["Radacz",[[3800,7486,0],[3825,7491,0],[3851,7497,0],[3885,7528,0],[3876,7538,0],[3869,7505,0],[3872,7515,0],[3871,7526,0],[3871,7540,0],[3870,7533,0],[3872,7544,0],[3868,7564,0],[3863,7592,0],[3861,7612,0],[3860,7645,0],[3860,7629,0],[3862,7669,0],[3866,7693,0],[3884,7745,0],[3874,7721,0],[3869,7707,0],[3896,7775,0],[3899,7922,0],[3923,7492,0],[3939,7475,0],[3947,7464,0],[3902,7512,0],[3916,7835,0],[3907,7804,0],[3926,7862,0],[3946,7895,0],[3936,7880,0],[3923,7924,0],[3949,7924,0],[3906,7923,0],[3939,8178,0],[3948,8155,0],[3930,8203,0],[3923,8226,0],[3918,8245,0],[3915,8271,0],[3916,8296,0],[3924,8337,0],[3919,8315,0],[3932,8360,0],[3940,8381,0],[3947,8401,0],[3950,7455,0],[3995,7927,0],[3955,7911,0],[3972,7925,0],[3961,7921,0],[3992,8090,0],[3967,8121,0],[3979,8105,0],[3956,8138,0],[3954,8420,0],[4019,7932,0],[4036,7946,0],[4030,7938,0],[4041,7983,0],[4041,7962,0],[4037,8009,0],[4027,8043,0],[4034,8029,0],[4032,8034,0],[4005,8074,0],[4017,8059,0],[4142,8361,0],[4131,8389,0],[4119,8416,0],[4180,8297,0],[4192,8281,0],[4154,8337,0],[4167,8316,0],[4243,8213,0],[4229,8234,0],[4204,8266,0],[4217,8251,0],[4288,8136,0],[4259,8188,0],[4274,8162,0],[4338,8045,0],[4316,8083,0],[4327,8063,0],[4303,8108,0],[4397,7968,0],[4385,7983,0],[4370,8003,0],[4352,8026,0],[4438,7920,0],[4423,7936,0],[4410,7952,0],[4468,7887,0],[4495,7857,0],[4482,7872,0],[4453,7903,0]]],["Olszanka",[[4438,7920,0],[4423,7936,0],[4410,7952,0],[4468,7887,0],[4495,7857,0],[4482,7872,0],[4453,7903,0],[4541,7779,0],[4530,7803,0],[4518,7824,0],[4507,7842,0],[4568,7725,0],[4586,7702,0],[4553,7752,0],[4608,7684,0],[4630,7672,0],[4698,7648,0],[4676,7656,0],[4652,7664,0],[4717,7640,0],[4734,7631,0],[4748,7621,0],[4783,7191,0],[4788,7221,0],[4792,7244,0],[4798,7268,0],[4796,7563,0],[4777,7587,0],[4776,7635,0],[4761,7607,0],[4758,7619,0],[4805,7295,0],[4819,7346,0],[4812,7321,0],[4833,7400,0],[4826,7373,0],[4832,7388,0],[4843,7400,0],[4839,7428,0],[4844,7453,0],[4847,7492,0],[4847,7473,0],[4816,7541,0],[4831,7522,0],[4841,7508,0],[4801,7659,0],[4820,7682,0],[4841,7723,0],[4832,7703,0],[4863,7421,0],[4882,7440,0],[4896,7455,0],[4851,7742,0],[4861,7760,0],[4872,7778,0],[4881,7794,0],[4891,7809,0],[4942,7500,0],[4947,7479,0],[4910,7470,0],[4925,7484,0],[4935,7488,0],[4905,7825,0],[4922,7838,0],[4939,7848,0],[4992,7439,0],[4977,7453,0],[4962,7466,0],[4972,7533,0],[4959,7517,0],[4987,7554,0],[4999,7575,0],[4957,7879,0],[4950,7857,0],[4954,7863,0],[4959,7905,0],[4975,7948,0],[4967,7935,0],[4963,7927,0],[4961,7921,0],[4988,7963,0],[5046,7354,0],[5038,7378,0],[5028,7397,0],[5017,7413,0],[5005,7426,0],[5006,7596,0],[5013,7620,0],[5020,7642,0],[5031,7678,0],[5026,7659,0],[5034,7706,0],[5035,7734,0],[5036,7776,0],[5039,7800,0],[5035,7754,0],[5040,7824,0],[5040,7849,0],[5033,7893,0],[5037,7871,0],[5029,7913,0],[5027,7932,0],[5009,7979,0],[5026,7979,0],[5026,7953,0],[5026,7998,0],[5024,7990,0],[5037,8037,0],[5030,8014,0],[5047,8064,0],[5064,7242,0],[5059,7296,0],[5062,7272,0],[5053,7324,0],[5057,8093,0]]],["Lipina",[[5685,6396,0],[5678,6444,0],[5682,6420,0],[5675,6472,0],[5670,6501,0],[5666,6530,0],[5662,6557,0],[5659,6582,0],[5656,6622,0],[5657,6601,0],[5658,6644,0],[5656,6637,0],[5692,6668,0],[5674,6660,0],[5664,6653,0],[5714,6676,0],[5732,6681,0],[5747,6684,0],[5784,6681,0],[5764,6684,0],[5804,6675,0],[5842,6682,0],[5849,6693,0],[5819,6672,0],[5829,6673,0],[5835,6675,0],[5870,6693,0],[5893,6691,0],[5856,6697,0],[5859,6712,0],[5880,6738,0],[5868,6730,0],[5891,6744,0],[5918,6699,0],[5937,6743,0],[5944,6712,0],[5901,6746,0],[5929,6776,0],[5935,6795,0],[5921,6760,0],[5913,6751,0],[5922,6751,0],[5946,6832,0],[5941,6812,0],[5948,6988,0],[5949,6963,0],[5949,7018,0],[5948,7040,0],[5937,7096,0],[5942,7075,0],[5946,7057,0],[5929,7141,0],[5933,7116,0],[5923,7196,0],[5926,7170,0],[5921,7224,0],[5917,7280,0],[5918,7251,0],[5918,7310,0],[5964,6730,0],[5990,6717,0],[5962,6720,0],[5975,6722,0],[5951,6853,0],[5954,6873,0],[5956,6893,0],[5954,6919,0],[5951,6945,0],[6010,6707,0],[6047,6702,0],[6028,6701,0],[6087,6716,0],[6067,6708,0],[6110,6727,0],[6130,6737,0],[6150,6747,0],[6176,6764,0],[6199,6780,0],[6215,6792,0],[6236,6808,0],[6263,6826,0],[6278,6837,0]]],["Kolembrody",[[7941,11837,4],[7949,11823,0],[7942,12115,0],[7989,11750,0],[7998,11740,0],[7994,11723,0],[7999,11732,0],[7972,11780,0],[7981,11763,0],[7959,11803,0],[7957,12132,0],[7973,12148,0],[7988,12163,0],[8029,11728,0],[8009,11733,0],[8020,12197,0],[8002,12178,0],[8042,12217,0],[8087,11730,0],[8056,11727,0],[8060,12233,0],[8076,12244,0],[8097,12255,0],[8132,11736,0],[8113,11733,0],[8125,12269,0],[8197,11745,0],[8175,11742,0],[8153,11739,0],[8155,12284,0],[8179,12295,0],[8197,12304,0],[8220,11748,0],[8243,11751,0],[8215,12313,0],[8232,12322,0],[8289,11757,0],[8263,11754,0],[8254,12332,0],[8279,12342,0],[8319,11761,0],[8347,11764,0],[8304,12348,0],[8331,12350,0],[8398,11772,0],[8372,11767,0],[8399,12176,0],[8398,12190,0],[8390,12202,0],[8383,12227,0],[8370,12276,0],[8376,12251,0],[8364,12306,0],[8360,12333,0],[8361,12393,0],[8360,12373,0],[8359,12353,0],[8352,12351,0],[8367,12438,0],[8363,12413,0],[8373,12464,0],[8442,11737,0],[8449,11788,0],[8428,11763,0],[8421,11788,0],[8427,11780,0],[8417,11777,0],[8416,11807,0],[8413,11826,0],[8412,11850,0],[8412,11840,0],[8408,11890,5],[8411,11858,2],[8406,11921,3],[8405,11932,0],[8404,11942,0],[8409,11985,0],[8404,11953,0],[8406,11969,0],[8415,12005,0],[8419,12027,0],[8434,12018,0],[8421,12016,0],[8423,12079,0],[8422,12051,0],[8407,12150,0],[8415,12126,0],[8421,12105,0],[8410,12194,0],[8429,12202,0],[8496,11679,0],[8483,11693,0],[8470,11707,0],[8457,11720,0],[8477,11798,0],[8481,12020,0],[8457,12020,0],[8455,12213,0],[8498,12234,0],[8480,12225,0],[8545,11627,0],[8527,11646,0],[8510,11664,0],[8530,11814,0],[8502,11806,0],[8508,12016,0],[8536,12012,0],[8542,12175,0],[8528,12199,0],[8517,12221,0],[8517,12243,0],[8509,12235,0],[8536,12252,0],[8585,11585,0],[8564,11606,0],[8561,11822,0],[8590,11827,0],[8566,12024,0],[8557,12012,0],[8567,12042,0],[8567,12087,0],[8567,12060,0],[8557,12148,0],[8565,12123,0],[8566,12108,0],[8598,12281,0],[8576,12271,0],[8556,12261,0],[8627,11540,0],[8606,11563,0],[8615,11828,0],[8640,11828,0],[8622,12293,0],[8647,12305,0],[8692,11822,0],[8664,11826,0],[8691,12324,0],[8668,12315,0],[8723,11815,0],[8746,11810,0],[8735,12327,0],[8714,12329,0],[8783,11800,0],[8764,11805,0],[8759,12323,0],[8782,12321,0],[8829,11788,0],[8802,11795,0],[8861,11780,0]]],["Karlin",[[9584,7044,0],[9631,7044,0],[9605,7046,0],[9648,7196,0],[9696,7030,0],[9674,7034,0],[9656,7039,0],[9686,7047,0],[9686,7035,0],[9686,7040,0],[9679,7082,0],[9683,7062,0],[9674,7106,0],[9668,7130,0],[9663,7153,0],[9658,7175,0],[9683,7177,0],[9669,7179,0],[9660,7179,0],[9722,7025,0],[9748,7020,0],[9731,7163,0],[9704,7171,0],[9798,7010,0],[9773,7016,0],[9783,7149,0],[9759,7156,0],[9848,7000,0],[9822,7005,0],[9848,7134,0],[9805,7144,0],[9827,7139,0],[9898,6988,0],[9873,6994,0],[9900,7122,0],[9873,7129,0],[9941,6972,0],[9921,6981,0],[9927,7115,0],[9986,6949,0],[9964,6960,0],[9998,7093,0],[9975,7101,0],[9950,7109,0],[10005,6940,0],[10025,6931,0],[10044,6923,0],[10038,7076,0],[10016,7085,0],[10064,6913,0],[10088,6902,0],[10061,7064,0],[10084,7054,0],[10136,6880,0],[10111,6892,0],[10132,6945,0],[10116,6924,0],[10106,6910,0],[10101,6900,0],[10135,7029,0],[10105,7045,0],[10119,7038,0],[10196,6849,0],[10177,6860,0],[10158,6870,0],[10154,6969,0],[10173,6992,0],[10189,7003,0],[10171,7011,0],[10154,7020,0],[10184,7005,0],[10241,6827,0],[10216,6839,0],[10231,6983,0],[10207,6994,0],[10274,6813,0],[10299,6817,0],[10292,6808,0],[10259,6971,0],[10282,6961,0],[10305,6798,0],[10347,6777,0],[10329,6786,0],[10314,6837,0],[10335,6864,0],[10306,6948,0],[10330,6936,0],[10372,6764,0],[10399,6751,0],[10351,6887,0],[10375,6916,0],[10352,6926,0],[10364,6905,0],[10396,6907,0],[10372,6917,0],[10432,6748,0],[10418,6745,0],[10446,6763,0],[10422,6895,0],[10448,6883,0],[10471,6798,0],[10459,6781,0],[10485,6818,0],[10491,6861,0],[10469,6874,0],[10500,6840,0],[10543,6900,0],[10528,6879,0],[10515,6860,0],[10506,6853,0],[10559,6921,0]]],["Sobotka",[[5815,10086,0],[5840,10099,0],[5880,10118,0],[5862,10109,0],[5897,10127,0],[5931,10147,0],[5913,10136,0],[5947,10156,0],[5964,10166,0],[5982,10176,0],[6000,10188,0],[6044,10216,0],[6020,10201,0],[6073,10231,0],[6098,10241,0],[6141,10230,0],[6119,10240,0],[6127,10240,0],[6134,10254,0],[6200,10195,0],[6179,10207,0],[6161,10218,0],[6152,10276,0],[6172,10298,0],[6197,10344,0],[6186,10319,0],[6224,10090,0],[6218,10075,0],[6234,10112,0],[6244,10135,0],[6238,10171,0],[6219,10183,0],[6220,10393,0],[6207,10370,0],[6241,10405,0],[6252,10153,0],[6288,10181,0],[6264,10172,0],[6274,10178,0],[6257,10164,0],[6252,10162,0],[6300,10233,0],[6297,10253,0],[6296,10273,0],[6295,10287,0],[6295,10307,0],[6295,10331,0],[6291,10396,0],[6293,10373,0],[6295,10351,0],[6288,10422,0],[6262,10405,0],[6276,10404,0],[6286,10405,0],[6289,10479,0],[6287,10450,0],[6294,10503,0],[6345,9818,0],[6338,9849,0],[6334,9873,0],[6332,9887,0],[6336,9889,0],[6343,9886,0],[6333,9904,0],[6334,9929,0],[6335,9977,0],[6335,9952,0],[6331,10024,0],[6334,10001,0],[6328,10045,0],[6321,10084,0],[6325,10064,0],[6317,10105,0],[6314,10124,0],[6312,10143,0],[6308,10169,0],[6305,10195,0],[6302,10184,0],[6348,10245,0],[6328,10227,0],[6302,10214,0],[6314,10214,0],[6306,10207,0],[6302,10525,0],[6315,10553,0],[6328,10581,0],[6341,10609,0],[6350,9792,0],[6353,9773,0],[6393,9848,0],[6374,9863,0],[6354,9879,0],[6369,10262,0],[6384,10276,0],[6395,10282,0],[6356,10640,0],[6369,10669,0],[6381,10693,0],[6387,10689,0],[6390,10713,0],[6442,9808,0],[6423,9823,0],[6407,9836,0],[6431,10275,0],[6410,10281,0],[6403,10697,0],[6431,10710,0],[6487,10254,0],[6457,10265,0],[6520,10242,0],[6548,10232,0],[6582,10242,0],[6563,10228,0],[6575,10233,0],[6570,10230,0],[6594,10262,0],[6610,10287,0],[6649,10320,0],[6626,10308,0],[6648,10395,0],[6648,10418,0],[6698,10292,0],[6676,10312,0],[6661,10339,0],[6681,10325,0],[6654,10368,0],[6659,10441,0],[6676,10468,0],[6694,10487,0],[6743,10238,0],[6718,10273,0],[6733,10255,0],[6728,10330,0],[6707,10328,0],[6753,10220,0]]],["Roztoka",[[7383,4935,0],[7402,4943,0],[7423,4951,0],[7441,4959,0],[7466,4970,0],[7493,4986,0],[7492,5374,0],[7481,5370,0],[7472,5368,0],[7490,5712,0],[7475,5736,0],[7464,5752,0],[7535,4864,0],[7545,4879,0],[7515,5002,0],[7533,5018,0],[7544,5031,0],[7546,5397,0],[7514,5389,0],[7502,5381,0],[7528,5394,0],[7534,5630,0],[7546,5604,0],[7506,5686,0],[7521,5658,0],[7556,4895,0],[7571,4917,0],[7591,4941,0],[7595,5032,0],[7552,5047,0],[7573,5050,0],[7574,5095,0],[7566,5076,0],[7559,5062,0],[7561,5059,0],[7582,5121,0],[7590,5150,0],[7596,5193,0],[7597,5178,0],[7596,5181,0],[7594,5167,0],[7596,5174,0],[7598,5238,0],[7596,5212,0],[7585,5407,0],[7566,5400,0],[7587,5529,0],[7598,5505,0],[7560,5578,0],[7574,5553,0],[7608,4960,0],[7621,4973,0],[7628,4985,0],[7629,4997,0],[7615,5016,0],[7625,5005,0],[7631,5176,0],[7610,5176,0],[7607,5288,0],[7601,5263,0],[7615,5316,0],[7624,5346,0],[7636,5365,0],[7646,5409,0],[7607,5415,0],[7629,5434,0],[7636,5423,0],[7623,5419,0],[7635,5420,0],[7631,5420,0],[7619,5457,0],[7608,5484,0],[7633,5782,0],[7650,5765,0],[7617,5800,0],[7696,5192,0],[7700,5169,0],[7653,5176,0],[7674,5177,0],[7694,5178,0],[7687,5177,0],[7689,5247,0],[7691,5218,0],[7696,5300,0],[7690,5275,0],[7652,5375,0],[7671,5384,0],[7690,5390,0],[7657,5395,0],[7667,5387,0],[7663,5390,0],[7697,5685,0],[7685,5713,0],[7674,5735,0],[7663,5750,0],[7719,5098,0],[7731,5070,0],[7727,5085,0],[7735,5057,0],[7706,5128,0],[7702,5150,0],[7710,5110,0],[7706,5327,0],[7716,5359,0],[7723,5386,0],[7708,5395,0],[7722,5398,0],[7738,5447,0],[7736,5428,0],[7728,5404,0],[7732,5415,0],[7740,5468,0],[7742,5483,0],[7743,5492,0],[7746,5500,0],[7738,5584,0],[7747,5562,0],[7738,5623,0],[7718,5639,0],[7730,5608,0],[7725,5625,0],[7707,5659,0],[7774,5043,0],[7791,5034,0],[7750,5051,0],[7751,5519,0],[7752,5543,0],[7785,5607,0],[7761,5614,0],[7772,5610,0],[7805,5024,0],[7821,5016,0],[7838,5013,0],[7840,5609,0],[7843,5630,0],[7825,5618,0],[7806,5609,0],[7819,5612,0],[7893,4974,0],[7874,4995,0],[7852,5010,0],[7863,5005,0],[7874,5602,0],[7856,5643,0],[7868,5679,0],[7863,5659,0],[7873,5732,0],[7870,5705,0],[7878,5775,0],[7875,5756,0],[7947,4926,0],[7927,4939,0],[7912,4953,0],[7907,5593,0],[7933,5587,0],[7969,4918,0],[7984,4913,0],[7978,5573,0],[7951,5581,0],[8040,5545,0],[8005,5564,0],[8023,5555,0],[8064,5533,0],[8089,5521,0],[8129,5494,0],[8145,5477,0],[8110,5509,0],[8176,5438,0],[8163,5444,0],[8155,5458,0]]],["Polana",[[2841,1930,0],[2827,2296,0],[2812,2287,0],[2846,2316,0],[2889,1973,0],[2865,1951,0],[2864,2337,0],[2898,2368,0],[2878,2351,0],[2912,1990,0],[2931,2004,0],[2936,2389,0],[2915,2380,0],[2925,2384,0],[2957,2020,0],[2982,2033,0],[2953,2399,0],[2973,2411,0],[2992,2423,0],[3002,2039,0],[3022,2042,0],[3042,2045,0],[3012,2438,0],[3047,2475,0],[3031,2457,0],[3069,2048,0],[3099,2051,0],[3064,2496,0],[3078,2515,0],[3087,2547,0],[3085,2527,0],[3088,2535,0],[3085,2571,0],[3115,1695,0],[3100,1674,0],[3135,1723,0],[3126,2050,0],[3103,2537,0],[3145,2542,0],[3126,2537,0],[3152,1744,0],[3174,1792,0],[3167,1770,0],[3162,1757,0],[3196,1848,0],[3184,1820,0],[3154,2045,0],[3178,2037,0],[3185,2543,0],[3165,2545,0],[3218,1885,0],[3206,1868,0],[3236,1902,0],[3202,2028,0],[3226,2022,0],[3244,2021,0],[3207,2539,0],[3228,2534,0],[3251,1915,0],[3262,1928,0],[3267,1941,0],[3270,1959,0],[3272,1981,0],[3275,1996,0],[3270,2022,0],[3297,2023,0],[3280,2009,0],[3284,2020,0],[3265,2545,0],[3253,2528,0],[3281,2520,0],[3251,2531,0],[3290,2564,0],[3320,2022,0],[3339,2021,0],[3347,2182,0],[3339,2213,0],[3339,2241,0],[3347,2282,0],[3342,2261,0],[3347,2465,0],[3333,2486,0],[3318,2501,0],[3302,2511,0],[3319,2576,0],[3342,2587,0],[3384,1943,0],[3395,1917,0],[3374,1966,0],[3365,1986,0],[3360,2004,0],[3359,2037,0],[3359,2021,0],[3353,2020,0],[3363,2079,0],[3360,2055,0],[3390,2092,0],[3373,2091,0],[3368,2106,0],[3368,2133,0],[3359,2157,0],[3361,2330,0],[3354,2305,0],[3366,2357,0],[3368,2381,0],[3362,2424,0],[3357,2444,0],[3366,2402,0],[3359,2596,0],[3382,2610,0],[3444,1786,0],[3428,1829,0],[3435,1812,0],[3422,1847,0],[3406,1889,0],[3416,1864,0],[3438,2096,0],[3411,2092,0],[3479,1697,0],[3468,1725,0],[3456,1754,0],[3496,2111,0],[3467,2102,0],[3522,2125,0],[3541,2140,0],[3574,2165,0],[3556,2152,0],[3594,2174,0],[3642,2167,0],[3613,2176,0],[3625,2172,0],[3670,2159,0],[3698,2151,0],[3727,2148,0],[3774,2154,0],[3752,2151,0]]],["Dolnik",[[10850,724,0],[10817,717,0],[10831,722,0],[10823,721,0],[10878,727,0],[10876,900,0],[10909,732,0],[10936,738,0],[10929,876,0],[10903,887,0],[10921,895,0],[10917,887,0],[10905,890,0],[10905,897,0],[10937,900,0],[10900,923,0],[10904,915,0],[10905,905,0],[10956,744,0],[10976,750,0],[10995,755,0],[10955,864,0],[10982,852,0],[10984,898,0],[10961,900,0],[11018,757,0],[11046,755,0],[11005,841,0],[11024,830,0],[11040,819,0],[11007,895,0],[11028,894,0],[11038,1025,0],[11020,1038,0],[11094,740,0],[11071,748,0],[11063,812,0],[11088,809,0],[11084,898,0],[11054,894,0],[11075,993,0],[11092,973,0],[11056,1012,0],[11122,731,0],[11145,725,0],[11145,803,0],[11126,806,0],[11107,808,0],[11102,915,0],[11106,939,0],[11102,958,0],[11165,745,0],[11156,726,0],[11196,785,0],[11168,796,0],[11175,772,0],[11180,788,0],[11224,769,0],[11243,752,0],[11287,707,0],[11273,722,0],[11258,738,0],[11335,659,0],[11318,676,0],[11302,692,0],[11354,639,0],[11372,619,0],[11389,602,0],[11438,556,0],[11405,586,0],[11421,570,0],[11461,537,0],[11481,521,0],[11496,509,0],[11516,493,0],[11539,474,0],[11576,443,0],[11593,430,0],[11558,458,0],[11639,395,0],[11609,417,0],[11624,405,0],[11658,387,0],[11687,382,0],[11673,382,0],[11681,380,0],[11691,392,0],[11691,387,0],[11691,396,0],[11698,428,0],[11694,417,0],[11692,409,0],[11691,401,0],[11715,447,0],[11706,438,0],[11732,460,0],[11758,475,0]]],["Grabin",[[10229,10845,0],[10249,10861,0],[10283,10888,0],[10265,10873,0],[10288,11296,0],[10266,11308,0],[10318,10927,0],[10302,10905,0],[10333,10948,0],[10346,10966,0],[10343,11254,0],[10325,11270,0],[10308,11283,0],[10360,10985,0],[10395,11024,0],[10375,11003,0],[10361,11240,0],[10377,11227,0],[10391,11215,0],[10420,11047,0],[10444,11068,0],[10445,11187,0],[10425,11195,0],[10407,11204,0],[10468,11089,0],[10458,11080,0],[10490,11106,0],[10468,11179,0],[10489,11171,0],[10518,11125,0],[10532,11149,0],[10543,11142,0],[10538,11138,0],[10549,11145,0],[10513,11160,0],[10547,11481,0],[10534,11494,0],[10531,11506,0],[10598,11078,0],[10581,11098,0],[10556,11129,0],[10569,11113,0],[10584,11165,0],[10564,11153,0],[10570,11465,0],[10590,11451,0],[10627,11044,0],[10641,11028,0],[10614,11059,0],[10628,11191,0],[10605,11178,0],[10650,11203,0],[10609,11436,0],[10644,11410,0],[10627,11423,0],[10691,10969,0],[10670,10994,0],[10696,10998,0],[10684,10986,0],[10654,11013,0],[10685,11219,0],[10668,11212,0],[10699,11372,0],[10662,11396,0],[10679,11384,0],[10740,10912,0],[10724,10931,0],[10709,10948,0],[10715,11016,0],[10735,11035,0],[10742,11248,0],[10723,11234,0],[10704,11225,0],[10721,11363,0],[10739,11363,0],[10797,10847,0],[10776,10871,0],[10757,10893,0],[10774,11071,0],[10753,11052,0],[10794,11087,0],[10761,11259,0],[10799,11259,0],[10780,11262,0],[10759,11369,0],[10781,11378,0],[10839,10800,0],[10819,10823,0],[10811,11099,0],[10829,11112,0],[10845,11123,0],[10835,11241,0],[10848,11234,0],[10819,11250,0],[10826,11384,0],[10803,11382,0],[10898,10727,0],[10859,10776,0],[10880,10751,0],[10878,11144,0],[10860,11133,0],[10891,11195,0],[10897,11156,0],[10863,11223,0],[10878,11211,0],[10888,11388,0],[10854,11386,0],[10926,10605,0],[10950,10628,0],[10944,10644,0],[10940,10626,0],[10946,10636,0],[10927,10678,0],[10937,10659,0],[10914,10702,0],[10950,11062,0],[10940,11085,0],[10915,11143,0],[10931,11106,0],[10923,11123,0],[10916,11169,0],[10934,11184,0],[10901,11181,0],[10907,11171,0],[10908,11159,0],[10922,11389,0],[10986,11013,0],[10972,11028,0],[10961,11043,0],[10966,11220,0],[10951,11201,0],[10980,11238,0],[10992,11254,0],[10955,11389,0],[10986,11389,0],[11001,10998,0],[11017,10985,0],[11032,10974,0],[11007,11274,0],[11019,11289,0],[11028,11301,6],[11045,11323,6],[11084,10944,0],[11055,10961,0],[11114,10926,0],[11142,10911,0]]]] \ No newline at end of file diff --git a/A3-Antistasi/Templates/A3-Malden-Template.Malden/PIC.jpg b/Map-Templates/Antistasi-Malden.Malden/PIC.jpg similarity index 100% rename from A3-Antistasi/Templates/A3-Malden-Template.Malden/PIC.jpg rename to Map-Templates/Antistasi-Malden.Malden/PIC.jpg diff --git a/Map-Templates/Antistasi-Malden.Malden/description.ext b/Map-Templates/Antistasi-Malden.Malden/description.ext new file mode 100755 index 0000000000..8917f8e6ec --- /dev/null +++ b/Map-Templates/Antistasi-Malden.Malden/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_malden_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_malden_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_malden_mapname_text; +overviewText = $STR_antistasi_mission_info_malden_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Malden is Ours!"; + description = "The population of Malden loves you!
The SDK brave soldiers have proven their valour, and Petros, Maldens 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 = "Maru is Dead"; + subtitle = "Maru is Dead"; + description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Malden"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Malden is Destroyed"; + subtitle = "Malden got Destroyed by CSAT"; + description = "One third of the population in Malden has been murdered by CSAT.
Malden no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/A3-Antistasi/Templates/A3-Malden-Template.Malden/mission.sqm b/Map-Templates/Antistasi-Malden.Malden/mission.sqm similarity index 70% rename from A3-Antistasi/Templates/A3-Malden-Template.Malden/mission.sqm rename to Map-Templates/Antistasi-Malden.Malden/mission.sqm index 7df0a0910d..b0a9287e5f 100755 --- a/A3-Antistasi/Templates/A3-Malden-Template.Malden/mission.sqm +++ b/Map-Templates/Antistasi-Malden.Malden/mission.sqm @@ -5,22 +5,22 @@ class EditorData angleGridStep=0.2617994; scaleGridStep=1; autoGroupingDist=10; - toggles=1029; + toggles=1030; class ItemIDProvider { - nextID=8389; + nextID=8768; }; class MarkerIDProvider { - nextID=31; + nextID=35; }; class LayerIndexProvider { - nextID=470; + nextID=869; }; class Camera { - pos[]={3628.0625,64.935211,2986.1472}; + pos[]={9683.874,332.13535,3695.8391}; dir[]={0,-0.70710683,0.70710683}; up[]={0,0.70710677,0.70710677}; aside[]={0.99999994,0,0}; @@ -37,6 +37,7 @@ addons[]= "A3_Structures_F_Exp_Military_Flags", "A3_Weapons_F_Ammoboxes", "A3_Modules_F", + "A3_Weapons_F", "A3_Structures_F_EPC_Civ_InfoBoards", "A3_Modules_F_Curator_Curator", "A3_Structures_F_Civ_Camping", @@ -58,27 +59,27 @@ addons[]= "A3_Structures_F_Mil_BagFence", "A3_Structures_F_Mil_Helipads", "A3_Structures_F_EPA_Civ_Constructions", - "A3_Modules_F_Hc", "A3_Structures_F_Items_Vessels", "A3_Structures_F_Mil_Shelters", "A3_Structures_F_System", "A3_Structures_F_Heli_Civ_Constructions", "A3_Structures_F_Heli_Furniture", + "A3_Structures_F_Ind_AirPort", + "A3_Structures_F_Mil_TentHangar", "A3_Structures_F_Enoch_Military_Camps", - "A3_Structures_F_Tank_Military_Fortifications", "A3_Structures_F_Orange_Humanitarian_Camps", "A3_Structures_F_Heli_Ind_Machines", "A3_Props_F_Orange_Humanitarian_Camps", - "A3_Structures_F_Argo_Military_Fortifications", "A3_Structures_F_Enoch_Military_Radar", - "A3_Structures_F_Heli_Items_Airport", - "A3_Supplies_F_Heli_Bladders" + "A3_Supplies_F_Heli_Bladders", + "A3_Structures_F_Exp_Military_ContainerBases", + "A3_Modules_F_Hc" }; class AddonsMetaData { class List { - items=21; + items=19; class Item0 { className="A3_Ui_F"; @@ -192,34 +193,20 @@ class AddonsMetaData url="https://www.arma3.com"; }; class Item16 - { - className="A3_Structures_F_Tank"; - name="Arma 3 Tank - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item17 { className="A3_Structures_F_Orange"; name="Arma 3 Orange - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item18 + class Item17 { className="A3_Props_F_Orange"; name="Arma 3 Orange - Decorative and Mission Objects"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; - class Item19 - { - className="A3_Structures_F_Argo"; - name="Arma 3 Malden - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item20 + class Item18 { className="A3_Supplies_F_Heli"; name="Arma 3 Helicopters - Ammoboxes and Supplies"; @@ -229,355 +216,27 @@ class AddonsMetaData }; }; randomSeed=13388897; -class ScenarioData -{ - author=$STR_antistasi_credits_generic_author_text; -}; class Mission { class Intel { briefingName=$STR_antistasi_mission_info_malden_mapname_text; - overviewText=$STR_antistasi_credits_generic_version_text; resistanceWest=0; - timeOfChanges=1800.0002; - startWeather=0.30000001; startWind=0.1; - startWaves=0.1; - forecastWeather=0.30000001; forecastWind=0.1; forecastWaves=0.1; - forecastLightnings=0.1; year=2035; month=6; - day=24; - hour=12; + day=1; + hour=10; minute=0; - startFogDecay=0.014; - forecastFogDecay=0.014; + startFogDecay=0.0049333; + forecastFogDecay=0.0049333; }; class Entities { - items=977; + items=860; class Item0 - { - dataType="Marker"; - position[]={8010.6182,29.607,10048.31}; - name="airport_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=353.64713; - b=143.76234; - angle=270.10999; - id=0; - atlOffset=-0.34006882; - }; - class Item1 - { - dataType="Marker"; - position[]={8046.5879,30.57,10617.291}; - name="outpost"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=162.72192; - b=217.54248; - id=1; - atlOffset=-0.059080124; - }; - class Item2 - { - dataType="Marker"; - position[]={3051.209,3.9000001,8466.8428}; - name="seaport"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=77.894897; - b=69.481934; - angle=320.1973; - id=3; - }; - class Item3 - { - dataType="Marker"; - position[]={1049.1198,5.2878036,693.77484}; - name="seaport_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=50; - b=98.55957; - angle=12.74551; - id=4; - atlOffset=1.9634416; - }; - class Item4 - { - dataType="Marker"; - position[]={3597.1074,-17.862,3232.6548}; - name="seaport_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=83.311035; - b=60.568726; - angle=15.220214; - id=5; - atlOffset=-20.421999; - }; - class Item5 - { - dataType="Marker"; - position[]={5754.4385,2.6900001,2407.6201}; - name="seaport_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=89.391846; - b=71.890015; - id=6; - atlOffset=0.43078852; - }; - class Item6 - { - dataType="Marker"; - position[]={8441.5449,4.4878206,3847.5801}; - name="seaport_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=72.95166; - b=142.94824; - id=7; - atlOffset=-0.060138226; - }; - class Item7 - { - dataType="Marker"; - position[]={9340.9297,3.6800001,3798.5}; - name="seaport_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=56.070313; - b=104.13354; - id=8; - }; - class Item8 - { - dataType="Marker"; - position[]={5504.9224,3.0457392,11630.09}; - name="seaport_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=63.673393; - b=60.099941; - angle=332.67654; - id=9; - atlOffset=-0.0036528111; - }; - class Item9 - { - dataType="Marker"; - position[]={770.20099,28.92,12218.563}; - name="airport"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=245.19299; - b=128.724; - angle=359.98282; - id=10; - }; - class Item10 - { - dataType="Marker"; - position[]={915.83582,5.1100001,11888.687}; - name="seaport_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=80.919556; - b=76.199707; - angle=25.683172; - id=11; - }; - class Item11 - { - dataType="Marker"; - position[]={9651.6299,44.24609,3337.9001}; - name="outpost_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=72.356445; - b=75.024048; - id=17; - }; - class Item12 - { - dataType="Marker"; - position[]={9726.2695,38.889999,3934.7295}; - name="outpost_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=123.95703; - b=123.13635; - id=18; - }; - class Item13 - { - dataType="Marker"; - position[]={11332.623,32.368164,4142.3408}; - name="outpost_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=76.550781; - b=77.542969; - angle=333.78473; - id=19; - atlOffset=-0.8718071; - }; - class Item14 - { - dataType="Marker"; - position[]={7673.022,5.1409845,3348.5276}; - name="factory"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=50; - b=88.061829; - angle=348.87259; - id=20; - }; - class Item15 - { - dataType="Marker"; - position[]={5300.4443,86.306969,4740.1777}; - name="resource_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=63.408409; - b=64.500244; - angle=316.034; - id=22; - atlOffset=-0.64219666; - }; - class Item16 - { - dataType="Marker"; - position[]={6578.2607,156.52678,6030.8262}; - name="resource_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=60.398438; - b=61.015869; - angle=340.66174; - id=23; - }; - class Item17 - { - dataType="Marker"; - position[]={7421.0728,169.24702,8106.8564}; - name="factory_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=50; - b=50; - angle=31.913368; - id=24; - }; - class Item18 - { - dataType="Marker"; - position[]={7773.8516,199.99001,7545.8081}; - name="resource_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=67.712891; - b=66.645752; - angle=306.16391; - id=25; - }; - class Item19 - { - dataType="Marker"; - position[]={6018.1777,170.14127,9592.8613}; - name="resource_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=56.746811; - angle=347.50516; - id=26; - atlOffset=-0.39648438; - }; - class Item20 - { - dataType="Marker"; - position[]={3623.1519,60.189022,3863.6733}; - name="factory_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=55.103382; - b=66.169678; - angle=22.773102; - id=27; - }; - class Item21 - { - dataType="Marker"; - position[]={3013.6797,212.46721,5894.146}; - name="resource_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=57.681084; - angle=341.73367; - id=28; - atlOffset=0.082305908; - }; - class Item22 - { - dataType="Marker"; - position[]={3788.7478,68.698112,4933.604}; - name="resource"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=78.358322; - b=50; - angle=36.569485; - id=29; - }; - class Item23 - { - dataType="Marker"; - position[]={7024.6533,117.82715,10042.636}; - name="outpost_3"; - markerType="ELLIPSE"; - type="ellipse"; - colorName="ColorGreen"; - a=136.614; - b=160.85051; - angle=31.621452; - id=30; - atlOffset=-6.5293274; - }; - class Item24 { dataType="Marker"; position[]={737.85797,-0.078000002,9540.6084}; @@ -586,7 +245,7 @@ class Mission id=31; atlOffset=82.789467; }; - class Item25 + class Item1 { dataType="Marker"; position[]={3742.5637,-11.218758,12336.504}; @@ -595,7 +254,7 @@ class Mission id=32; atlOffset=82.789467; }; - class Item26 + class Item2 { dataType="Marker"; position[]={8918.0645,12.766129,12395.146}; @@ -604,7 +263,7 @@ class Mission id=33; atlOffset=82.789467; }; - class Item27 + class Item3 { dataType="Marker"; position[]={11558.064,11.086388,10170.956}; @@ -613,7 +272,7 @@ class Mission id=34; atlOffset=82.789467; }; - class Item28 + class Item4 { dataType="Marker"; position[]={11863.52,47.642849,6878.2813}; @@ -622,7 +281,7 @@ class Mission id=35; atlOffset=82.789467; }; - class Item29 + class Item5 { dataType="Marker"; position[]={9899.8828,14.547066,794.46484}; @@ -631,7 +290,7 @@ class Mission id=36; atlOffset=82.789467; }; - class Item30 + class Item6 { dataType="Marker"; position[]={5143.5195,7.6465988,358.35037}; @@ -640,7 +299,7 @@ class Mission id=37; atlOffset=82.789467; }; - class Item31 + class Item7 { dataType="Marker"; position[]={234.42841,-9.4440079,6115.0786}; @@ -649,53 +308,7 @@ class Mission id=39; atlOffset=82.789467; }; - class Item32 - { - dataType="Marker"; - position[]={8158.9409,29.363001,9831.0918}; - name="Spawnpoint"; - type="mil_start"; - id=40; - atlOffset=-3.0517578e-005; - }; - class Item33 - { - dataType="Marker"; - position[]={4981.4648,202.47549,2238.4595}; - name="outpost_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=72.835815; - b=55.046631; - angle=258.05438; - id=41; - atlOffset=158.72598; - }; - class Item34 - { - dataType="Marker"; - position[]={2366.2285,146.48926,5036.084}; - name="outpost_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=56.709351; - b=42.311295; - angle=335.20352; - id=42; - atlOffset=-8.4443817; - }; - class Item35 - { - dataType="Marker"; - position[]={2409.1025,198.62927,3658.1909}; - name="Spawnpoint_1"; - type="mil_start"; - id=43; - atlOffset=-3.0517578e-005; - }; - class Item36 + class Item8 { dataType="Marker"; position[]={2821.0415,210.01953,3743.6235}; @@ -704,7 +317,7 @@ class Mission id=44; atlOffset=-1.9511871; }; - class Item37 + class Item9 { dataType="Marker"; position[]={5460.022,4.5139999,11656.464}; @@ -713,7 +326,7 @@ class Mission id=142; atlOffset=10.4767; }; - class Item38 + class Item10 { dataType="Marker"; position[]={8050.375,2.75,2967}; @@ -722,7 +335,7 @@ class Mission id=152; atlOffset=6.3372011; }; - class Item39 + class Item11 { dataType="Marker"; position[]={6848,1,2886}; @@ -731,7 +344,7 @@ class Mission id=153; atlOffset=5.3435574; }; - class Item40 + class Item12 { dataType="Marker"; position[]={1434.75,-8.331604,4634.75}; @@ -739,7 +352,7 @@ class Mission type="hd_objective"; id=155; }; - class Item41 + class Item13 { dataType="Marker"; position[]={5519.875,-2.125,11685.5}; @@ -748,7 +361,7 @@ class Mission id=158; atlOffset=10.83787; }; - class Item42 + class Item14 { dataType="Marker"; position[]={2964.5,2.5,8476.5}; @@ -757,7 +370,7 @@ class Mission id=159; atlOffset=6.8696084; }; - class Item43 + class Item15 { dataType="Marker"; position[]={3650.875,0,3076.375}; @@ -766,7 +379,7 @@ class Mission id=161; atlOffset=5.4600673; }; - class Item44 + class Item16 { dataType="Marker"; position[]={6912.2588,72.374001,3499.0959}; @@ -778,19 +391,19 @@ class Mission id=162; atlOffset=-9.9956131; }; - class Item45 + class Item17 { dataType="Marker"; - position[]={7576.4663,38.828758,4852.2188}; + position[]={7179.75,38.875,5616.375}; name="control_1"; markerType="RECTANGLE"; type="rectangle"; a=97.387695; b=91.315063; id=163; - atlOffset=7.2441349; + atlOffset=2.6367073; }; - class Item46 + class Item18 { dataType="Marker"; position[]={7015.415,101.37928,6911.957}; @@ -802,7 +415,7 @@ class Mission id=164; atlOffset=7.244133; }; - class Item47 + class Item19 { dataType="Marker"; position[]={7944.4253,40.703712,9322.209}; @@ -814,7 +427,7 @@ class Mission id=165; atlOffset=7.244133; }; - class Item48 + class Item20 { dataType="Marker"; position[]={6782.48,115.61012,8818.8359}; @@ -826,7 +439,7 @@ class Mission id=166; atlOffset=7.2441406; }; - class Item49 + class Item21 { dataType="Marker"; position[]={6667.1328,85.974487,10901.193}; @@ -838,7 +451,7 @@ class Mission id=167; atlOffset=7.244133; }; - class Item50 + class Item22 { dataType="Marker"; position[]={5464.7852,176.30707,9830.6797}; @@ -850,7 +463,7 @@ class Mission id=168; atlOffset=7.2441254; }; - class Item51 + class Item23 { dataType="Marker"; position[]={4140.0234,272.99905,8008.9819}; @@ -862,7 +475,7 @@ class Mission id=169; atlOffset=7.2441406; }; - class Item52 + class Item24 { dataType="Marker"; position[]={5901.8403,268.38382,7105.8496}; @@ -874,7 +487,7 @@ class Mission id=170; atlOffset=7.2441406; }; - class Item53 + class Item25 { dataType="Marker"; position[]={4778.3501,422.0087,6963.2539}; @@ -886,7 +499,7 @@ class Mission id=171; atlOffset=7.2441406; }; - class Item54 + class Item26 { dataType="Marker"; position[]={3105.3132,221.41504,5683.8149}; @@ -898,7 +511,7 @@ class Mission id=172; atlOffset=7.2441254; }; - class Item55 + class Item27 { dataType="Marker"; position[]={2639.875,214.25,3746.875}; @@ -910,7 +523,7 @@ class Mission id=173; atlOffset=7.2348022; }; - class Item56 + class Item28 { dataType="Marker"; position[]={2338.9983,208.53323,3299.4727}; @@ -922,7 +535,7 @@ class Mission id=174; atlOffset=7.2441254; }; - class Item57 + class Item29 { dataType="Marker"; position[]={4337.5835,43.473461,4234.498}; @@ -934,7 +547,7 @@ class Mission id=175; atlOffset=7.244133; }; - class Item58 + class Item30 { dataType="Marker"; position[]={3160.7852,230.13663,6654.6768}; @@ -946,7 +559,7 @@ class Mission id=176; atlOffset=7.2441406; }; - class Item59 + class Item31 { dataType="Marker"; position[]={6578.3281,153.63599,8378.293}; @@ -958,7 +571,7 @@ class Mission id=177; atlOffset=7.2441254; }; - class Item60 + class Item32 { dataType="Marker"; position[]={10603.343,39.368202,4297.2563}; @@ -970,91 +583,7 @@ class Mission id=178; atlOffset=7.244133; }; - class Item61 - { - dataType="Marker"; - position[]={4057.4487,362.94629,6317.8652}; - name="outpost_8"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=56.709351; - b=42.311295; - angle=320.6485; - id=179; - atlOffset=-7.0951538; - }; - class Item62 - { - dataType="Marker"; - position[]={4779.4219,408.41113,7182.9644}; - name="outpost_9"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=38.468811; - b=37.33643; - angle=299.46161; - id=180; - atlOffset=-7.1465759; - }; - class Item63 - { - dataType="Marker"; - position[]={5324.4116,336.86328,9077.8574}; - name="outpost_10"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=56.709351; - b=42.311295; - angle=315.11307; - id=181; - atlOffset=-6.7668152; - }; - class Item64 - { - dataType="Marker"; - position[]={4911.0015,410.37598,7944.2793}; - name="outpost_11"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=34.313175; - b=27.776642; - angle=223.37611; - id=182; - atlOffset=-4.8578491; - }; - class Item65 - { - dataType="Marker"; - position[]={5700,349.78223,5589}; - name="outpost_12"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=50.433361; - b=48.203556; - angle=180.13968; - id=183; - atlOffset=-4.048584; - }; - class Item66 - { - dataType="Marker"; - position[]={5037.5986,52.918945,3741.0085}; - name="outpost_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=56.709; - b=42.311001; - angle=36.042061; - id=184; - atlOffset=-6.6352158; - }; - class Item67 + class Item33 { dataType="Marker"; position[]={11865.948,-0.063000001,6902.1182}; @@ -1063,7 +592,7 @@ class Mission id=186; atlOffset=33.860535; }; - class Item68 + class Item34 { dataType="Marker"; position[]={160.74699,0.0070000002,9152.9775}; @@ -1072,7 +601,7 @@ class Mission id=188; atlOffset=98.616539; }; - class Item69 + class Item35 { dataType="Marker"; position[]={9789.4736,11.325,5923.292}; @@ -1081,7 +610,7 @@ class Mission id=187; atlOffset=-0.00015830994; }; - class Item70 + class Item36 { dataType="Object"; class PositionInfo @@ -1098,7 +627,7 @@ class Mission type="Flag_NATO_F"; atlOffset=-0.6429987; }; - class Item71 + class Item37 { dataType="Group"; side="West"; @@ -1478,7 +1007,7 @@ class Mission }; id=420; }; - class Item72 + class Item38 { dataType="Marker"; position[]={10024.172,10.464907,2165.2004}; @@ -1487,7 +1016,7 @@ class Mission id=427; atlOffset=5.421051; }; - class Item73 + class Item39 { dataType="Group"; side="East"; @@ -1863,7 +1392,7 @@ class Mission }; id=428; }; - class Item74 + class Item40 { dataType="Object"; class PositionInfo @@ -1880,10 +1409,10 @@ class Mission id=435; type="Flag_Viper_F"; }; - class Item75 + class Item41 { dataType="Marker"; - position[]={7134.457,14.462,12252.207}; + position[]={8256.8984,13.932353,5974.8379}; name="Synd_HQ"; markerType="RECTANGLE"; type="rectangle"; @@ -1891,12 +1420,12 @@ class Mission a=50; b=50; id=436; - atlOffset=1.6027689; + atlOffset=2.6713161; }; - class Item76 + class Item42 { dataType="Marker"; - position[]={7135.79,2.7037606e+012,12254.386}; + position[]={8258.2305,2.7037606e+012,5977.0166}; name="respawn_guerrila"; text="Your Headquarters"; type="hd_flag"; @@ -1904,12 +1433,12 @@ class Mission id=437; atlOffset=2.7037606e+012; }; - class Item77 + class Item43 { dataType="Object"; class PositionInfo { - position[]={7140.3809,13.627144,12253.334}; + position[]={8262.7852,12.008932,5975.9258}; angles[]={0.064709939,0,6.2384152}; }; side="Empty"; @@ -1920,7 +1449,7 @@ class Mission }; id=438; type="Box_East_AmmoVeh_F"; - atlOffset=-9.5367432e-007; + atlOffset=-0.0074882507; class CustomAttributes { class Attribute0 @@ -1964,86 +1493,91 @@ class Mission nAttributes=2; }; }; - class Item78 + class Item44 { dataType="Logic"; class PositionInfo { - position[]={7132.208,12.648396,12245.525}; + position[]={8254.6484,12.118749,5968.1563}; angles[]={6.2631893,0,6.2485328}; }; name="server"; id=439; type="Logic"; - atlOffset=-9.5367432e-007; + atlOffset=0.63897514; }; - class Item79 + class Item45 { dataType="Logic"; class PositionInfo { - position[]={7133.7822,12.615615,12244.113}; + position[]={8256.2227,12.085968,5966.7441}; angles[]={6.2631893,0,6.2485328}; }; name="garrison"; id=440; type="Logic"; + atlOffset=0.58031368; }; - class Item80 + class Item46 { dataType="Logic"; class PositionInfo { - position[]={7135.5693,12.59102,12242.692}; + position[]={8258.0098,12.061373,5965.3232}; angles[]={6.2631893,0,6.2485328}; }; name="spawner"; id=441; type="Logic"; + atlOffset=0.53408051; }; - class Item81 + class Item47 { dataType="Logic"; class PositionInfo { - position[]={7127.9756,12.365007,12242.825}; + position[]={8250.416,11.835361,5965.4561}; angles[]={6.2818413,0,6.2431998}; }; name="hc"; isPlayable=1; id=442; type="HeadlessClient_F"; + atlOffset=0.14967728; }; - class Item82 + class Item48 { dataType="Logic"; class PositionInfo { - position[]={7137.4443,12.576426,12241.361}; + position[]={8259.8848,12.046779,5963.9922}; angles[]={6.2631893,0,6.2046809}; }; name="roadsX"; id=443; type="Logic"; + atlOffset=0.50354481; }; - class Item83 + class Item49 { dataType="Logic"; class PositionInfo { - position[]={7138.8604,12.486962,12240.277}; + position[]={8261.3008,11.957315,5962.9082}; angles[]={6.2325621,0,6.2046804}; }; name="timer"; id=446; type="Logic"; + atlOffset=0.39871597; }; - class Item84 + class Item50 { dataType="Object"; class PositionInfo { - position[]={7139.4434,13.934689,12248.582}; + position[]={8261.915,12.219932,5971.2168}; angles[]={6.2464032,0,6.2384152}; }; side="Empty"; @@ -2054,7 +1588,7 @@ class Mission }; id=447; type="IG_supplyCrate_F"; - atlOffset=-9.5367432e-007; + atlOffset=-0.0024576187; class CustomAttributes { class Attribute0 @@ -2098,43 +1632,45 @@ class Mission nAttributes=2; }; }; - class Item85 + class Item51 { dataType="Logic"; class PositionInfo { - position[]={7140.1299,12.38459,12239.025}; + position[]={8262.5703,11.854943,5961.6563}; angles[]={6.2325621,0,6.2046804}; }; name="sidesX"; id=448; type="Logic"; + atlOffset=0.26584625; }; - class Item86 + class Item52 { dataType="Logic"; class PositionInfo { - position[]={7141.041,12.315725,12238.193}; + position[]={8263.4824,11.786078,5960.8242}; angles[]={6.2325621,0,6.2046804}; }; name="killZones"; id=449; type="Logic"; + atlOffset=0.15910721; }; - class Item87 + class Item53 { dataType="Group"; side="Independent"; class Entities { - items=60; + items=25; class Item0 { dataType="Object"; class PositionInfo { - position[]={7136.1514,13.019125,12248.524}; + position[]={8258.625,11.349237,5971.1748}; angles[]={6.2136974,0,0.041575778}; }; side="Independent"; @@ -2145,6 +1681,10 @@ class Mission name="commanderX"; description="Default Commander"; isPlayer=1; + class Inventory + { + map="ItemMap"; + }; }; id=451; type="I_G_officer_F"; @@ -2196,7 +1736,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7151.1445,12.527542,12251.152}; + position[]={8273.625,12.233256,5973.7998}; angles[]={0.0095994528,6.2412972,6.2105141}; }; side="Independent"; @@ -2205,6 +1745,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=456; type="I_G_Soldier_AR_F"; @@ -2256,7 +1800,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7154.2183,12.301508,12251.388}; + position[]={8276.625,12.35534,5974.0498}; angles[]={0.0095994528,0,6.2105141}; }; side="Independent"; @@ -2265,6 +1809,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=457; type="I_G_Soldier_LAT_F"; @@ -2316,7 +1864,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7157.1484,12.091575,12251.039}; + position[]={8279.6777,11.9591,5973.6211}; angles[]={0.0095994528,0,6.2105141}; }; side="Independent"; @@ -2325,9 +1873,14 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=458; type="I_G_medic_F"; + atlOffset=-0.40356541; class CustomAttributes { class Attribute0 @@ -2376,7 +1929,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7160.0474,11.878794,12251.218}; + position[]={8282.5527,11.965999,5973.7461}; angles[]={0.0095994528,0,6.2105141}; }; side="Independent"; @@ -2385,9 +1938,14 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=459; type="I_G_engineer_F"; + atlOffset=-0.40356636; class CustomAttributes { class Attribute0 @@ -2436,7 +1994,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7163.0352,11.683618,12251.438}; + position[]={8285.4258,11.897231,5974.0918}; angles[]={6.2791886,0,6.2208662}; }; side="Independent"; @@ -2445,10 +2003,14 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=460; type="I_G_Soldier_GL_F"; - atlOffset=-2.8610229e-006; + atlOffset=-0.47922993; class CustomAttributes { class Attribute0 @@ -2497,7 +2059,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7148.6836,12.612949,12251.092}; + position[]={8271.125,12.009743,5973.6748}; angles[]={0.064709939,0,6.2384152}; }; side="Independent"; @@ -2507,6 +2069,10 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=461; type="I_G_officer_F"; @@ -2558,7 +2124,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7151.041,12.508267,12253.947}; + position[]={8273.5215,12.213982,5976.5947}; angles[]={0.0095994528,6.2412972,6.2105141}; }; side="Independent"; @@ -2567,10 +2133,14 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=462; type="I_G_Soldier_AR_F"; - atlOffset=-9.5367432e-007; + atlOffset=0.05105114; class CustomAttributes { class Attribute0 @@ -2619,7 +2189,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7154.1152,12.28217,12254.183}; + position[]={8276.5225,12.336002,5976.8447}; angles[]={0.0095994528,0,6.2105141}; }; side="Independent"; @@ -2628,9 +2198,14 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=463; type="I_G_Soldier_LAT_F"; + atlOffset=0.088599205; class CustomAttributes { class Attribute0 @@ -2679,7 +2254,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7157.0449,12.072236,12253.834}; + position[]={8279.5742,11.939761,5976.416}; angles[]={0.0095994528,0,6.2105141}; }; side="Independent"; @@ -2688,9 +2263,14 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=464; type="I_G_medic_F"; + atlOffset=-0.34069252; class CustomAttributes { class Attribute0 @@ -2739,7 +2319,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7159.9443,11.878596,12254.013}; + position[]={8282.4492,11.965801,5976.541}; angles[]={6.2791886,0,6.2240543}; }; side="Independent"; @@ -2748,9 +2328,14 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=465; type="I_G_engineer_F"; + atlOffset=-0.31404686; class CustomAttributes { class Attribute0 @@ -2799,7 +2384,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7162.9321,11.701222,12254.232}; + position[]={8285.3223,11.914836,5976.8857}; angles[]={6.2791886,0,6.2208662}; }; side="Independent"; @@ -2808,9 +2393,14 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=466; type="I_G_Soldier_GL_F"; + atlOffset=-0.3512373; class CustomAttributes { class Attribute0 @@ -2859,7 +2449,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7148.5801,12.569839,12253.887}; + position[]={8271.0215,11.966632,5976.4697}; angles[]={0.0095994528,0,0.010398259}; }; side="Independent"; @@ -2869,9 +2459,14 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=467; type="I_G_officer_F"; + atlOffset=0.021665573; class CustomAttributes { class Attribute0 @@ -2920,7 +2515,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7154.1152,12.253364,12257.184}; + position[]={8276.5225,12.307196,5979.8457}; angles[]={0.0095994528,0,6.2105141}; }; side="Independent"; @@ -2929,9 +2524,14 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=468; type="I_G_Soldier_LAT_F"; + atlOffset=0.23985386; class CustomAttributes { class Attribute0 @@ -2980,7 +2580,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7157.0449,12.061516,12256.835}; + position[]={8279.5215,12.33248,5979.4707}; angles[]={6.2791886,0,6.2240543}; }; side="Independent"; @@ -2989,9 +2589,14 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=469; type="I_G_medic_F"; + atlOffset=0.23544121; class CustomAttributes { class Attribute0 @@ -3040,7 +2645,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7159.9443,11.8906,12257.014}; + position[]={8282.4492,11.977805,5979.542}; angles[]={6.2791886,0,6.2240543}; }; side="Independent"; @@ -3049,10 +2654,14 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=470; type="I_G_engineer_F"; - atlOffset=9.5367432e-007; + atlOffset=-0.12198162; class CustomAttributes { class Attribute0 @@ -3101,7 +2710,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7162.9321,11.713225,12257.233}; + position[]={8285.3223,11.926839,5979.8867}; angles[]={6.2791886,0,6.2208662}; }; side="Independent"; @@ -3110,9 +2719,14 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=471; type="I_G_Soldier_GL_F"; + atlOffset=-0.1995821; class CustomAttributes { class Attribute0 @@ -3161,7 +2775,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7148.5801,12.541033,12256.888}; + position[]={8271.0215,11.937826,5979.4707}; angles[]={0.0095994528,0,0.010398259}; }; side="Independent"; @@ -3171,9 +2785,14 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=472; type="I_G_officer_F"; + atlOffset=0.10945988; class CustomAttributes { class Attribute0 @@ -3222,19 +2841,22 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7154.0117,12.252838,12259.771}; + position[]={8276.4189,12.30667,5982.4336}; angles[]={6.2791886,0,6.2240543}; }; side="Independent"; - flags=4; class Attributes { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=473; type="I_G_Soldier_LAT_F"; - atlOffset=-3.8146973e-006; + atlOffset=0.39484882; class CustomAttributes { class Attribute0 @@ -3283,18 +2905,22 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7156.9414,12.078007,12259.422}; + position[]={8279.418,12.348971,5982.0576}; angles[]={6.2791886,0,6.2240543}; }; side="Independent"; - flags=4; class Attributes { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=474; type="I_G_medic_F"; + atlOffset=0.40738583; class CustomAttributes { class Attribute0 @@ -3343,7 +2969,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7159.8408,11.90709,12259.601}; + position[]={8282.3457,11.994295,5982.1289}; angles[]={6.2791886,0,6.2240543}; }; side="Independent"; @@ -3352,9 +2978,14 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=475; type="I_G_engineer_F"; + atlOffset=0.020709991; class CustomAttributes { class Attribute0 @@ -3403,7 +3034,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7162.8281,11.730048,12259.82}; + position[]={8285.2188,11.943662,5982.4736}; angles[]={6.2791886,0,6.2208662}; }; side="Independent"; @@ -3412,9 +3043,14 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=476; type="I_G_Soldier_GL_F"; + atlOffset=-0.065043449; class CustomAttributes { class Attribute0 @@ -3463,7 +3099,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7148.4766,12.515118,12259.475}; + position[]={8270.918,11.911911,5982.0576}; angles[]={0.0095994528,0,0.010398259}; }; side="Independent"; @@ -3473,9 +3109,14 @@ class Mission skill=1; description="Officer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=477; type="I_G_officer_F"; + atlOffset=0.24547291; class CustomAttributes { class Attribute0 @@ -3524,7 +3165,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7151.1406,12.471072,12257.063}; + position[]={8273.6211,12.176786,5979.7109}; angles[]={0.0095994528,6.1574922,6.2105141}; }; side="Independent"; @@ -3533,9 +3174,14 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=478; type="I_G_Soldier_AR_F"; + atlOffset=0.19440269; class CustomAttributes { class Attribute0 @@ -3584,18 +3230,22 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7151.2354,12.439356,12259.65}; + position[]={8273.7148,12.14507,5982.2979}; angles[]={0.0095994528,0,6.2105141}; }; side="Independent"; - flags=4; class Attributes { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=479; type="I_G_Soldier_AR_F"; + atlOffset=0.31180954; class CustomAttributes { class Attribute0 @@ -3639,23 +3289,35 @@ class Mission nAttributes=2; }; }; - class Item25 + }; + class Attributes + { + }; + id=450; + }; + class Item54 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=1; + class Item0 { dataType="Object"; class PositionInfo { - position[]={7154.3438,12.243696,12262.396}; - angles[]={6.2791886,0,6.2240543}; + position[]={8252.75,11.284647,5974.7998}; + angles[]={0.087773547,2.1016905,0.041577213}; }; side="Independent"; - flags=4; + flags=6; class Attributes { - description="AT Launcher"; - isPlayable=1; + name="petros"; }; - id=480; - type="I_G_Soldier_LAT_F"; + id=453; + type="I_G_officer_F"; class CustomAttributes { class Attribute0 @@ -3673,7 +3335,7 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value="Male06GRE"; }; }; }; @@ -3696,32 +3358,10 @@ class Mission }; }; }; - nAttributes=2; - }; - }; - class Item26 - { - dataType="Object"; - class PositionInfo - { - position[]={7157.2734,12.068863,12262.048}; - angles[]={6.2791886,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=481; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 + class Attribute2 { - property="speaker"; - expression="_this setspeaker _value;"; + property="face"; + expression="_this setface _value;"; class Value { class data @@ -3733,12966 +3373,6592 @@ class Mission "STRING" }; }; - value="Male01FRE"; + value=""; }; }; }; - class Attribute1 + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=452; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={8255.8125,12.048439,5977.8125}; + angles[]={0.064709939,0,0.064709015}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="mapX"; + }; + id=514; + type="MapBoard_seismic_F"; + atlOffset=-0.0023269653; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; + "BOOL" }; }; + value=0; }; - nAttributes=2; }; }; - class Item27 - { - dataType="Object"; - class PositionInfo - { - position[]={7160.1729,11.897902,12262.227}; - angles[]={6.2791886,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=482; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 + nAttributes=1; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={8260.125,14.980715,5979.75}; + angles[]={0.064709939,0,6.2384152}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="flagX"; + }; + id=515; + type="Flag_Altis_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; + "BOOL" }; }; + value=0; }; - nAttributes=2; }; }; - class Item28 + nAttributes=1; + }; + }; + class Item57 + { + dataType="Logic"; + class PositionInfo + { + position[]={8252.4082,11.822508,5964.3154}; + angles[]={6.2818413,0,6.2431998}; + }; + name="hc_1"; + isPlayable=1; + id=516; + type="HeadlessClient_F"; + atlOffset=0.13149166; + }; + class Item58 + { + dataType="Logic"; + class PositionInfo + { + position[]={8254.2559,11.813785,5963.3213}; + angles[]={6.2818413,0,6.2431998}; + }; + name="hc_2"; + isPlayable=1; + id=517; + type="HeadlessClient_F"; + atlOffset=0.12053108; + }; + class Item59 + { + dataType="Logic"; + class PositionInfo + { + position[]={8281.75,12.3767,5965.625}; + }; + id=521; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 { - dataType="Object"; - class PositionInfo - { - position[]={7163.1606,11.723805,12262.446}; - angles[]={6.2719817,0,6.2280416}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=483; - type="I_G_Soldier_GL_F"; - class CustomAttributes + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; + "STRING" }; }; + value="#adminLogged"; }; - nAttributes=2; }; }; - class Item29 + class Attribute1 { - dataType="Object"; - class PositionInfo - { - position[]={7148.8086,12.493359,12262.101}; - angles[]={0.0095994528,0,0.010398259}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=484; - type="I_G_officer_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value { - class Attribute0 + class data { - property="speaker"; - expression="_this setspeaker _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; + "SCALAR" }; }; + value=0; }; - class Attribute1 + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; + "STRING" }; }; + value=""; }; - nAttributes=2; }; }; - class Item30 + class Attribute3 { - dataType="Object"; - class PositionInfo - { - position[]={7151.5674,12.407573,12262.276}; - angles[]={6.2791886,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=485; - type="I_G_Soldier_AR_F"; - class CustomAttributes + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value { - class Attribute0 + class data { - property="speaker"; - expression="_this setspeaker _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; + "SCALAR" }; }; + value=2; }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item31 - { - dataType="Object"; - class PositionInfo - { - position[]={7154.417,11.824089,12265.471}; - angles[]={0.14144896,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=486; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item32 - { - dataType="Object"; - class PositionInfo - { - position[]={7157.3472,11.700256,12265.122}; - angles[]={0.14144896,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=487; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item33 - { - dataType="Object"; - class PositionInfo - { - position[]={7160.2461,11.540553,12265.301}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=488; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item34 - { - dataType="Object"; - class PositionInfo - { - position[]={7163.2344,11.521333,12265.521}; - angles[]={0.067099303,0,6.2280416}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=489; - type="I_G_Soldier_GL_F"; - atlOffset=0.00010204315; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; }; }; - class Item35 - { - dataType="Object"; - class PositionInfo - { - position[]={7148.8823,12.108932,12265.175}; - angles[]={0.14144896,0,0.016801614}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=490; - type="I_G_officer_F"; - atlOffset=9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item36 - { - dataType="Object"; - class PositionInfo - { - position[]={7151.6411,12.005461,12265.351}; - angles[]={0.14144896,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=491; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item37 - { - dataType="Object"; - class PositionInfo - { - position[]={7151.4502,11.574469,12268.457}; - angles[]={0.14144896,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=492; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item38 - { - dataType="Object"; - class PositionInfo - { - position[]={7154.3804,11.45068,12268.108}; - angles[]={0.14144896,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=493; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item39 - { - dataType="Object"; - class PositionInfo - { - position[]={7157.2793,11.29236,12268.287}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=494; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item40 - { - dataType="Object"; - class PositionInfo - { - position[]={7160.2676,11.325409,12268.507}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=495; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item41 - { - dataType="Object"; - class PositionInfo - { - position[]={7145.9155,11.633748,12268.161}; - angles[]={0.14144896,0,0.016801614}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=496; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item42 - { - dataType="Object"; - class PositionInfo - { - position[]={7148.6743,11.655108,12268.337}; - angles[]={0.14144896,0,0.016801614}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=497; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item43 - { - dataType="Object"; - class PositionInfo - { - position[]={7151.3018,11.118394,12271.722}; - angles[]={0.14144896,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=498; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item44 - { - dataType="Object"; - class PositionInfo - { - position[]={7154.2319,11.036271,12271.373}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=499; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item45 - { - dataType="Object"; - class PositionInfo - { - position[]={7157.1309,11.070598,12271.552}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=500; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item46 - { - dataType="Object"; - class PositionInfo - { - position[]={7160.1191,11.103646,12271.771}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=501; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item47 - { - dataType="Object"; - class PositionInfo - { - position[]={7145.7671,11.166381,12271.426}; - angles[]={0.14144896,0,0.016801614}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=502; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item48 - { - dataType="Object"; - class PositionInfo - { - position[]={7148.5259,11.18774,12271.602}; - angles[]={0.14144896,0,0.016801614}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=503; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item49 - { - dataType="Object"; - class PositionInfo - { - position[]={7150.1152,10.79773,12274.467}; - angles[]={0.14144896,0,6.2240543}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=504; - type="I_G_Soldier_LAT_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item50 - { - dataType="Object"; - class PositionInfo - { - position[]={7153.0449,10.832758,12274.118}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=505; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item51 - { - dataType="Object"; - class PositionInfo - { - position[]={7155.9443,10.867147,12274.297}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=506; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item52 - { - dataType="Object"; - class PositionInfo - { - position[]={7158.9321,10.900184,12274.517}; - angles[]={0.067099303,0,0.016002094}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=507; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item53 - { - dataType="Object"; - class PositionInfo - { - position[]={7144.5801,10.755541,12274.171}; - angles[]={0.14144896,0,0.016801614}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=508; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item54 - { - dataType="Object"; - class PositionInfo - { - position[]={7147.3389,10.7769,12274.347}; - angles[]={0.14144896,0,0.016801614}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=509; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item55 - { - dataType="Object"; - class PositionInfo - { - position[]={7139.6846,12.803755,12245}; - angles[]={6.2136974,6.2412972,6.2711854}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=455; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item56 - { - dataType="Object"; - class PositionInfo - { - position[]={7145.6885,12.624569,12244.887}; - angles[]={6.2464032,0,6.2384152}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=510; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item57 - { - dataType="Object"; - class PositionInfo - { - position[]={7148.7139,12.498564,12245.146}; - angles[]={6.2464032,0,6.2384152}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=511; - type="I_G_engineer_F"; - atlOffset=-5.6266785e-005; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item58 - { - dataType="Object"; - class PositionInfo - { - position[]={7151.2983,12.402923,12245.552}; - angles[]={6.2464032,0,6.2424088}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=512; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item59 - { - dataType="Object"; - class PositionInfo - { - position[]={7142.7588,12.76865,12245.235}; - angles[]={6.2464032,0,6.2384152}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=513; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=450; - }; - class Item88 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={7130.3555,12.700855,12252.134}; - angles[]={0.087773547,2.1016905,0.041577213}; - }; - side="Independent"; - flags=6; - class Attributes - { - name="petros"; - }; - id=453; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - class Attribute2 - { - property="face"; - expression="_this setface _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=452; - }; - class Item89 - { - dataType="Object"; - class PositionInfo - { - position[]={7133.3594,13.545198,12255.238}; - angles[]={0.064709939,0,0.064709015}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="mapX"; - }; - id=514; - type="MapBoard_seismic_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item90 - { - dataType="Object"; - class PositionInfo - { - position[]={7137.6226,16.690918,12257.105}; - angles[]={0.064709939,0,6.2384152}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="flagX"; - }; - id=515; - type="Flag_Altis_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item91 - { - dataType="Logic"; - class PositionInfo - { - position[]={7129.9678,12.352155,12241.685}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_1"; - isPlayable=1; - id=516; - type="HeadlessClient_F"; - atlOffset=1.1444092e-005; - }; - class Item92 - { - dataType="Logic"; - class PositionInfo - { - position[]={7131.8145,12.343431,12240.69}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_2"; - isPlayable=1; - id=517; - type="HeadlessClient_F"; - atlOffset=1.6212463e-005; - }; - class Item93 - { - dataType="Logic"; - class PositionInfo - { - position[]={7133.0957,12.327504,12239.805}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_3"; - isPlayable=1; - id=518; - type="HeadlessClient_F"; - atlOffset=3.8146973e-005; - }; - class Item94 - { - dataType="Logic"; - class PositionInfo - { - position[]={7135.0181,12.3331,12239.062}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_4"; - isPlayable=1; - id=519; - type="HeadlessClient_F"; - atlOffset=2.0027161e-005; - }; - class Item95 - { - dataType="Logic"; - class PositionInfo - { - position[]={7136.2407,12.318789,12238.233}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_5"; - isPlayable=1; - id=520; - type="HeadlessClient_F"; - atlOffset=5.0544739e-005; - }; - class Item96 - { - dataType="Logic"; - class PositionInfo - { - position[]={7159.2964,11.909958,12243.07}; - }; - id=521; - type="ModuleCurator_F"; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#adminLogged"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - }; - nAttributes=4; - }; - }; - class Item97 - { - dataType="Marker"; - position[]={5459.8188,4.5114121,11656.509}; - name="seaPatrol_3"; - type="Empty"; - id=525; - atlOffset=10.4767; - }; - class Item98 - { - dataType="Marker"; - position[]={899.90588,-2.0057058,11832.569}; - name="seaPatrol_4"; - type="Empty"; - id=526; - atlOffset=10.4767; - }; - class Item99 - { - dataType="Marker"; - position[]={3027.8069,2.2266998,8529.0439}; - name="seaPatrol_5"; - type="Empty"; - id=527; - atlOffset=10.4767; - }; - class Item100 - { - dataType="Marker"; - position[]={978.70819,-0.040159225,702.729}; - name="seaPatrol_6"; - type="Empty"; - id=528; - atlOffset=10.4767; - }; - class Item101 - { - dataType="Marker"; - position[]={3560.2771,-6.8308105,3182.5996}; - name="seaPatrol_7"; - type="Empty"; - id=529; - atlOffset=10.4767; - }; - class Item102 - { - dataType="Marker"; - position[]={5749.25,-7.1310101,2344.25}; - name="seaPatrol_8"; - type="Empty"; - id=530; - }; - class Item103 - { - dataType="Marker"; - position[]={7620.25,-8.875,3294.125}; - name="seaPatrol_10"; - type="Empty"; - id=532; - atlOffset=1.779027; - }; - class Item104 - { - dataType="Marker"; - position[]={8522.9141,2.2630234,3814.4736}; - name="seaPatrol_11"; - type="Empty"; - id=533; - atlOffset=10.4767; - }; - class Item105 - { - dataType="Marker"; - position[]={9290.0762,-4.8026781,3807.6021}; - name="seaPatrol_12"; - type="Empty"; - id=534; - atlOffset=10.4767; - }; - class Item106 - { - dataType="Marker"; - position[]={3344.8081,97.235451,3924.2493}; - name="road_1"; - type="hd_arrow"; - id=537; - atlOffset=-1.9511871; - }; - class Item107 - { - dataType="Marker"; - position[]={3792.2085,54.855759,4022.9133}; - name="road_2"; - type="hd_arrow"; - id=538; - atlOffset=-1.9511871; - }; - class Item108 - { - dataType="Marker"; - position[]={3968.5962,62.769188,4546.5127}; - name="road_3"; - type="hd_arrow"; - id=539; - atlOffset=-1.9511871; - }; - class Item109 - { - dataType="Marker"; - position[]={4313.1338,34.167179,4250.2256}; - name="road_4"; - type="hd_arrow"; - id=540; - atlOffset=-1.9511871; - }; - class Item110 - { - dataType="Marker"; - position[]={5062.6729,58.106449,3772.0818}; - name="road_5"; - type="hd_arrow"; - id=541; - atlOffset=-1.9511871; - }; - class Item111 - { - dataType="Marker"; - position[]={5951.0396,52.085911,3526.146}; - name="road_6"; - type="hd_arrow"; - id=542; - atlOffset=-1.9511871; - }; - class Item112 - { - dataType="Marker"; - position[]={6805.5649,80.418816,3504.238}; - name="road_7"; - type="hd_arrow"; - id=543; - atlOffset=-1.9511871; - }; - class Item113 - { - dataType="Marker"; - position[]={7515.189,24.038086,3867.199}; - name="road_8"; - type="hd_arrow"; - id=544; - atlOffset=-1.9962158; - }; - class Item114 - { - dataType="Marker"; - position[]={7921.5635,33.903698,4095.3789}; - name="road_9"; - type="hd_arrow"; - id=545; - atlOffset=-1.9511871; - }; - class Item115 - { - dataType="Marker"; - position[]={7627.2896,28.220585,4787.7188}; - name="road_10"; - type="hd_arrow"; - id=546; - atlOffset=-1.9511871; - }; - class Item116 - { - dataType="Marker"; - position[]={7107.0107,71.474724,5913.645}; - name="road_11"; - type="hd_arrow"; - id=547; - atlOffset=-1.9511871; - }; - class Item117 - { - dataType="Marker"; - position[]={7030.9258,97.153801,6764.1006}; - name="road_12"; - type="hd_arrow"; - id=548; - atlOffset=-1.9511871; - }; - class Item118 - { - dataType="Marker"; - position[]={7243.9956,165.60881,7771.7681}; - name="road_13"; - type="hd_arrow"; - id=549; - atlOffset=-1.9511871; - }; - class Item119 - { - dataType="Marker"; - position[]={7294.104,85.09877,8842.1563}; - name="road_14"; - type="hd_arrow"; - id=550; - atlOffset=-1.9511871; - }; - class Item120 - { - dataType="Marker"; - position[]={6629.5889,191.49059,9293.9961}; - name="road_15"; - type="hd_arrow"; - id=551; - atlOffset=-1.9511871; - }; - class Item121 - { - dataType="Marker"; - position[]={8163.3667,28.222548,9480.6104}; - name="road_16"; - type="hd_arrow"; - id=552; - atlOffset=-1.9511871; - }; - class Item122 - { - dataType="Marker"; - position[]={7468.5342,80.622108,9119.1592}; - name="road_17"; - type="hd_arrow"; - id=553; - atlOffset=-1.9511871; - }; - class Item123 - { - dataType="Marker"; - position[]={5970.4902,189.11472,9280.1641}; - name="road_18"; - type="hd_arrow"; - id=554; - }; - class Item124 - { - dataType="Marker"; - position[]={5196.2578,343.00293,9170.8027}; - name="road_19"; - type="hd_arrow"; - id=555; - atlOffset=-17.439423; - }; - class Item125 - { - dataType="Marker"; - position[]={4860.9658,393.61743,8432.3506}; - name="road_20"; - type="hd_arrow"; - id=556; - atlOffset=-1.9512024; - }; - class Item126 - { - dataType="Marker"; - position[]={4922.2153,407.42645,7354.0083}; - name="road_21"; - type="hd_arrow"; - id=557; - atlOffset=-1.9511719; - }; - class Item127 - { - dataType="Marker"; - position[]={4174.2476,381.46332,6480.6943}; - name="road_22"; - type="hd_arrow"; - id=558; - atlOffset=-1.9512024; - }; - class Item128 - { - dataType="Marker"; - position[]={3058.4907,222.3761,6334.5635}; - name="road_23"; - type="hd_arrow"; - id=559; - atlOffset=-1.9511871; - }; - class Item129 - { - dataType="Marker"; - position[]={3375.7668,120.64616,5182.2998}; - name="road_24"; - type="hd_arrow"; - id=560; - atlOffset=-1.9511871; - }; - class Item130 - { - dataType="Marker"; - position[]={7808.6372,31.142761,9909.6582}; - name="road_25"; - type="hd_arrow"; - id=561; - atlOffset=-1.9511871; - }; - class Item131 - { - dataType="Marker"; - position[]={7443.7866,26.908813,10655.921}; - name="road_26"; - type="hd_arrow"; - id=562; - atlOffset=-1.9511871; - }; - class Item132 - { - dataType="Marker"; - position[]={6492.2104,88.4114,10943.818}; - name="road_27"; - type="hd_arrow"; - id=563; - atlOffset=-1.9511871; - }; - class Item133 - { - dataType="Marker"; - position[]={4225.5396,310.06995,7875.4868}; - name="road_28"; - type="hd_arrow"; - id=564; - atlOffset=-1.9512024; - }; - class Item134 - { - dataType="Marker"; - position[]={3584.8003,120.46836,8686.3906}; - name="road_29"; - type="hd_arrow"; - id=565; - atlOffset=-1.9511871; - }; - class Item135 - { - dataType="Marker"; - position[]={2216.0876,184.90233,2970.9983}; - name="road_30"; - type="hd_arrow"; - id=566; - atlOffset=-1.9511871; - }; - class Item136 - { - dataType="Marker"; - position[]={1652.4279,79.741798,1621.9436}; - name="road_31"; - type="hd_arrow"; - id=567; - atlOffset=-1.9511871; - }; - class Item137 - { - dataType="Object"; - class PositionInfo - { - position[]={7132.0811,13.503381,12248.96}; - angles[]={6.2137041,0,0.041573741}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="fireX"; - }; - id=568; - type="Land_TentDome_F"; - atlOffset=0.0020017624; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item138 - { - dataType="Marker"; - position[]={2488.9324,194.86035,3622.479}; - name="airport_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=47.858856; - b=110.46664; - angle=253.26059; - id=569; - atlOffset=-6.7026215; - }; - class Item139 - { - dataType="Object"; - class PositionInfo - { - position[]={4033.425,368.12869,6328.9736}; - angles[]={6.2631893,2.4496236,6.2807684}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=927; - type="Land_HBarrier_5_F"; - atlOffset=0.0089416504; - }; - class Item140 - { - dataType="Object"; - class PositionInfo - { - position[]={4037.6604,368.28491,6332.689}; - angles[]={6.251997,2.4496236,0.090155795}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=928; - type="Land_HBarrier_5_F"; - }; - class Item141 - { - dataType="Object"; - class PositionInfo - { - position[]={4041.9512,368.51694,6336.3638}; - angles[]={0.050357513,2.4496236,0.008802644}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=929; - type="Land_HBarrier_5_F"; - atlOffset=-3.0517578e-005; - }; - class Item142 - { - dataType="Object"; - class PositionInfo - { - position[]={4046.3105,368.57745,6340.0449}; - angles[]={6.2519951,2.4496236,0.008802644}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=930; - type="Land_HBarrier_5_F"; - }; - class Item143 - { - dataType="Object"; - class PositionInfo - { - position[]={4050.5405,368.7413,6343.7578}; - angles[]={6.2631893,2.4496236,0.15709321}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=931; - type="Land_HBarrier_5_F"; - }; - class Item144 - { - dataType="Object"; - class PositionInfo - { - position[]={4054.8022,369.16055,6347.4214}; - angles[]={0.12730548,2.4496236,0.010398259}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=932; - type="Land_HBarrier_5_F"; - }; - class Item145 - { - dataType="Object"; - class PositionInfo - { - position[]={4059.0764,368.90302,6351.0645}; - angles[]={6.2567925,2.4496236,0.010398259}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=933; - type="Land_HBarrier_5_F"; - }; - class Item146 - { - dataType="Object"; - class PositionInfo - { - position[]={4063.3584,369.31396,6354.6016}; - angles[]={6.2376194,2.4496236,0.22188357}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=934; - type="Land_HBarrier_5_F"; - }; - class Item147 - { - dataType="Object"; - class PositionInfo - { - position[]={4067.4624,370.27353,6355.3418}; - angles[]={6.2376194,4.0204201,0.22188357}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=935; - type="Land_HBarrier_5_F"; - }; - class Item148 - { - dataType="Object"; - class PositionInfo - { - position[]={4070.959,370.86581,6351.0317}; - angles[]={6.2376194,4.0204201,0.22188357}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=936; - type="Land_HBarrier_5_F"; - }; - class Item149 - { - dataType="Object"; - class PositionInfo - { - position[]={4074.5137,371.80081,6346.7383}; - angles[]={0.055143863,4.0204201,0.22188357}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=937; - type="Land_HBarrier_5_F"; - atlOffset=-3.0517578e-005; - }; - class Item150 - { - dataType="Object"; - class PositionInfo - { - position[]={4088.707,374.90762,6329.4624}; - angles[]={0.033584893,4.0204201,0.13752721}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=938; - type="Land_HBarrier_5_F"; - }; - class Item151 - { - dataType="Object"; - class PositionInfo - { - position[]={4092.2566,375.54526,6325.1064}; - angles[]={0.033584893,4.0204201,0.13752721}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=939; - type="Land_HBarrier_5_F"; - }; - class Item152 - { - dataType="Object"; - class PositionInfo - { - position[]={4063.0093,373.44043,6295.3867}; - angles[]={0.093329452,2.4496236,0.076648585}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=940; - type="Land_HBarrier_5_F"; - atlOffset=0.008972168; - }; - class Item153 - { - dataType="Object"; - class PositionInfo - { - position[]={4067.2449,373.9198,6299.1025}; - angles[]={6.2440076,2.4496236,0.20660846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=941; - type="Land_HBarrier_5_F"; - }; - class Item154 - { - dataType="Object"; - class PositionInfo - { - position[]={4071.5354,374.62775,6302.7769}; - angles[]={0.081418402,2.4496236,0.20660876}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=942; - type="Land_HBarrier_5_F"; - }; - class Item155 - { - dataType="Object"; - class PositionInfo - { - position[]={4075.8948,374.8494,6306.4585}; - angles[]={0.12179399,2.4496236,0.066304304}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=943; - type="Land_HBarrier_5_F"; - }; - class Item156 - { - dataType="Object"; - class PositionInfo - { - position[]={4080.1248,374.80331,6310.1714}; - angles[]={0.076650925,2.4496236,0.11153467}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=944; - type="Land_HBarrier_5_F"; - atlOffset=-3.0517578e-005; - }; - class Item157 - { - dataType="Object"; - class PositionInfo - { - position[]={4088.6611,375.35663,6317.4775}; - angles[]={0.044770103,2.4496236,0.11074629}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=946; - type="Land_HBarrier_5_F"; - }; - class Item158 - { - dataType="Object"; - class PositionInfo - { - position[]={4092.9426,375.71387,6321.0151}; - angles[]={0.017602073,2.4496236,0.13752721}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=947; - type="Land_HBarrier_5_F"; - }; - class Item159 - { - dataType="Object"; - class PositionInfo - { - position[]={4045.8259,371.13068,6280.6299}; - angles[]={6.2703872,2.4496236,0.11469462}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=948; - type="Land_HBarrier_5_F"; - atlOffset=0.008972168; - }; - class Item160 - { - dataType="Object"; - class PositionInfo - { - position[]={4050.0615,371.6604,6284.3457}; - angles[]={6.2703824,2.4496236,0.16566703}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=949; - type="Land_HBarrier_5_F"; - }; - class Item161 - { - dataType="Object"; - class PositionInfo - { - position[]={4054.3521,372.5163,6288.02}; - angles[]={0.04556872,2.4496236,0.19277626}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=950; - type="Land_HBarrier_5_F"; - }; - class Item162 - { - dataType="Object"; - class PositionInfo - { - position[]={4058.7114,373.17953,6291.7017}; - angles[]={0.093329452,2.4496236,0.14615022}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=951; - type="Land_HBarrier_5_F"; - }; - class Item163 - { - dataType="Object"; - class PositionInfo - { - position[]={4017.2703,367.85052,6312.3364}; - angles[]={0.01919602,4.0204201,0.022397626}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=952; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item164 - { - dataType="Object"; - class PositionInfo - { - position[]={4020.7666,368.01163,6308.0264}; - angles[]={0.01919602,4.0204201,0.022397626}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=953; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item165 - { - dataType="Object"; - class PositionInfo - { - position[]={4024.3215,368.17368,6303.7324}; - angles[]={0.01919602,4.0204201,0.022397626}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=954; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item166 - { - dataType="Object"; - class PositionInfo - { - position[]={4027.8118,368.49951,6299.4175}; - angles[]={0.093328811,4.0204201,0.065506957}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=955; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item167 - { - dataType="Object"; - class PositionInfo - { - position[]={4042.0645,370.71722,6282.1011}; - angles[]={6.2824135,4.0204201,0.10283634}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=956; - type="Land_HBarrier_5_F"; - }; - class Item168 - { - dataType="Object"; - class PositionInfo - { - position[]={4083.5095,375.01721,6313.1006}; - angles[]={0.073466748,2.4496236,0.11153467}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=957; - type="Land_HBarrier_3_F"; - }; - class Item169 - { - dataType="Object"; - class PositionInfo - { - position[]={4085.7415,375.36447,6311.8086}; - angles[]={0.076650925,4.0204201,0.11153467}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=958; - type="Land_HBarrier_3_F"; - atlOffset=-3.0517578e-005; - }; - class Item170 - { - dataType="Object"; - class PositionInfo - { - position[]={4088.6384,375.55267,6314.3359}; - angles[]={0.044770103,4.0204201,0.11074629}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=960; - type="Land_HBarrier_3_F"; - }; - class Item171 - { - dataType="Object"; - class PositionInfo - { - position[]={4089.7659,375.77853,6310.1646}; - angles[]={0.076650925,2.4496236,0.065504223}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=962; - type="Land_HBarrier_5_F"; - }; - class Item172 - { - dataType="Object"; - class PositionInfo - { - position[]={4066.8149,371.07294,6355.0269}; - angles[]={0,3.2350218,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=963; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item173 - { - dataType="Object"; - class PositionInfo - { - position[]={4065.2849,370.73346,6355.1523}; - angles[]={0,1.6642255,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=964; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item174 - { - dataType="Object"; - class PositionInfo - { - position[]={4063.3596,370.19583,6352.8965}; - angles[]={0,2.4496236,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=965; - type="Land_Mil_WallBig_4m_F"; - }; - class Item175 - { - dataType="Object"; - class PositionInfo - { - position[]={4068.2927,371.28784,6352.4385}; - angles[]={0,4.0204201,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=967; - type="Land_Mil_WallBig_4m_F"; - }; - class Item176 - { - dataType="Object"; - class PositionInfo - { - position[]={4047.0435,372.25665,6283.3877}; - angles[]={0,5.5776987,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=968; - type="Land_Mil_WallBig_4m_F"; - atlOffset=3.0517578e-005; - }; - class Item177 - { - dataType="Object"; - class PositionInfo - { - position[]={4045.1492,372.00967,6281.106}; - angles[]={0,4.7923007,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=969; - type="Land_Mil_WallBig_Corner_F"; - atlOffset=3.0517578e-005; - }; - class Item178 - { - dataType="Object"; - class PositionInfo - { - position[]={4043.6172,371.83658,6281.2114}; - angles[]={0,0.079911709,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=970; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item179 - { - dataType="Object"; - class PositionInfo - { - position[]={4042.1047,371.69272,6283.7793}; - angles[]={0,0.86530972,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=971; - type="Land_Mil_WallBig_4m_F"; - atlOffset=3.0517578e-005; - }; - class Item180 - { - dataType="Object"; - class PositionInfo - { - position[]={4065.9795,382.20563,6345.1738}; - angles[]={0,4.0204201,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=972; - type="Land_Cargo_Tower_V1_F"; - }; - class Item181 - { - dataType="Object"; - class PositionInfo - { - position[]={4057.5608,369.73318,6340.2783}; - angles[]={0,5.5912161,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=973; - type="Land_Cargo_House_V1_F"; - }; - class Item182 - { - dataType="Object"; - class PositionInfo - { - position[]={4050.3733,368.66434,6334.6602}; - angles[]={0,5.5912161,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=974; - type="Land_Cargo_House_V1_F"; - }; - class Item183 - { - dataType="Object"; - class PositionInfo - { - position[]={4037.5454,372.24295,6326.4058}; - angles[]={0,2.4496236,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=975; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item184 - { - dataType="Object"; - class PositionInfo - { - position[]={4031.3748,369.14676,6295}; - angles[]={0.093328811,4.0204201,0.065506957}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=976; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item185 - { - dataType="Object"; - class PositionInfo - { - position[]={4034.8713,369.77951,6290.6899}; - angles[]={0.093328811,4.0204201,0.065506957}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=977; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item186 - { - dataType="Object"; - class PositionInfo - { - position[]={4038.426,370.34518,6286.3965}; - angles[]={6.2824135,4.0204201,0.10283634}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=978; - type="Land_HBarrier_5_F"; - }; - class Item187 - { - dataType="Object"; - class PositionInfo - { - position[]={4078.1357,372.6694,6342.3071}; - angles[]={0.055143863,4.0204201,0.16255426}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=979; - type="Land_HBarrier_5_F"; - }; - class Item188 - { - dataType="Object"; - class PositionInfo - { - position[]={4081.6321,373.48071,6337.9971}; - angles[]={0.055143863,4.0204201,0.16255426}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=980; - type="Land_HBarrier_5_F"; - }; - class Item189 - { - dataType="Object"; - class PositionInfo - { - position[]={4085.187,374.21869,6333.7036}; - angles[]={0.03358667,4.0204201,0.16255391}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=981; - type="Land_HBarrier_5_F"; - atlOffset=-3.0517578e-005; - }; - class Item190 - { - dataType="Object"; - class PositionInfo - { - position[]={4088.0725,379.17902,6323.6523}; - angles[]={0,4.0204201,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=982; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item191 - { - dataType="Object"; - class PositionInfo - { - position[]={4045.2263,375.30365,6287.3867}; - angles[]={0,5.5912161,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=983; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=3.0517578e-005; - }; - class Item192 - { - dataType="Object"; - class PositionInfo - { - position[]={4023.3635,372.14783,6312.665}; - angles[]={0,2.4496236,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=984; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item193 - { - dataType="Object"; - class PositionInfo - { - position[]={4018.7,367.86789,6316.0986}; - angles[]={0.0032018756,2.4496236,0.022394964}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=985; - type="Land_HBarrier_5_F"; - }; - class Item194 - { - dataType="Object"; - class PositionInfo - { - position[]={4022.9355,367.98447,6319.8145}; - angles[]={6.2799835,2.4496236,0.028793031}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=986; - type="Land_HBarrier_5_F"; - }; - class Item195 - { - dataType="Object"; - class PositionInfo - { - position[]={4022.1667,367.97507,6323.7988}; - angles[]={6.2799835,4.0204201,0.028793031}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=987; - type="Land_HBarrier_5_F"; - }; - class Item196 - { - dataType="Object"; - class PositionInfo - { - position[]={4029.6157,368.15906,6330.4814}; - angles[]={6.2631893,4.0204201,6.2807684}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=988; - type="Land_HBarrier_5_F"; - }; - class Item197 - { - dataType="Object"; - class PositionInfo - { - position[]={4062.2747,372.67062,6302.6265}; - angles[]={0,2.4312165,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=989; - type="Land_Cargo_House_V1_F"; - }; - class Item198 - { - dataType="Object"; - class PositionInfo - { - position[]={4055.1919,372.12656,6296.877}; - angles[]={0,2.4312165,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=990; - type="Land_Cargo_House_V1_F"; - }; - class Item199 - { - dataType="Object"; - class PositionInfo - { - position[]={5297.6279,347.69464,9084.3838}; - angles[]={6.2033553,2.3561945,6.1930332}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1117; - type="Land_HBarrier_5_F"; - atlOffset=0.0090026855; - }; - class Item200 - { - dataType="Object"; - class PositionInfo - { - position[]={5301.498,347.6626,9088.4785}; - angles[]={6.1677032,2.3561945,6.1692791}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1118; - type="Land_HBarrier_5_F"; - }; - class Item201 - { - dataType="Object"; - class PositionInfo - { - position[]={5305.4272,347.68393,9092.5371}; - angles[]={6.1677032,2.3561945,6.1692791}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1119; - type="Land_HBarrier_5_F"; - }; - class Item202 - { - dataType="Object"; - class PositionInfo - { - position[]={5309.4238,347.49637,9096.6094}; - angles[]={6.2009706,2.3561945,6.1362514}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1120; - type="Land_HBarrier_5_F"; - }; - class Item203 - { - dataType="Object"; - class PositionInfo - { - position[]={5313.2891,347.25186,9100.7012}; - angles[]={6.2272429,2.3561945,6.1472297}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1121; - type="Land_HBarrier_5_F"; - }; - class Item204 - { - dataType="Object"; - class PositionInfo - { - position[]={5317.1904,346.9447,9104.7461}; - angles[]={6.2272429,2.3561945,6.1472297}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1122; - type="Land_HBarrier_5_F"; - }; - class Item205 - { - dataType="Object"; - class PositionInfo - { - position[]={5321.1064,346.61484,9108.7715}; - angles[]={6.2312322,2.3561945,6.1433039}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1123; - type="Land_HBarrier_5_F"; - }; - class Item206 - { - dataType="Object"; - class PositionInfo - { - position[]={5325.0396,346.26328,9112.6934}; - angles[]={6.2424073,2.3561945,6.1543045}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1124; - type="Land_HBarrier_5_F"; - }; - class Item207 - { - dataType="Object"; - class PositionInfo - { - position[]={5329.0566,345.7883,9113.8125}; - angles[]={6.2424073,3.9269907,6.1543045}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1125; - type="Land_HBarrier_5_F"; - }; - class Item208 - { - dataType="Object"; - class PositionInfo - { - position[]={5332.9399,345.10416,9109.8477}; - angles[]={6.2352209,3.9269907,6.1543045}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1126; - type="Land_HBarrier_5_F"; - }; - class Item209 - { - dataType="Object"; - class PositionInfo - { - position[]={5336.8799,344.4043,9105.9043}; - angles[]={6.2352209,3.9269907,6.1543045}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1127; - type="Land_HBarrier_5_F"; - }; - class Item210 - { - dataType="Object"; - class PositionInfo - { - position[]={5352.623,341.85834,9090.0283}; - angles[]={6.2480001,3.9269907,6.176394}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1128; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item211 - { - dataType="Object"; - class PositionInfo - { - position[]={5356.5635,341.30914,9086.0225}; - angles[]={6.2575908,3.9269907,6.1763935}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1129; - type="Land_HBarrier_5_F"; - atlOffset=6.1035156e-005; - }; - class Item212 - { - dataType="Object"; - class PositionInfo - { - position[]={5330.2163,342.20804,9053.7031}; - angles[]={6.1464443,2.3561945,6.2695923}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1130; - type="Land_HBarrier_5_F"; - atlOffset=0.0090026855; - }; - class Item213 - { - dataType="Object"; - class PositionInfo - { - position[]={5334.0869,342.34171,9057.7988}; - angles[]={6.2296381,2.3561945,6.1858935}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1131; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item214 - { - dataType="Object"; - class PositionInfo - { - position[]={5338.0156,342.17578,9061.8574}; - angles[]={6.2296381,2.3561945,6.1858935}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1132; - type="Land_HBarrier_5_F"; - atlOffset=6.1035156e-005; - }; - class Item215 - { - dataType="Object"; - class PositionInfo - { - position[]={5342.0127,341.99832,9065.9297}; - angles[]={6.2344222,2.3561945,6.188271}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1133; - type="Land_HBarrier_5_F"; - atlOffset=6.1035156e-005; - }; - class Item216 - { - dataType="Object"; - class PositionInfo - { - position[]={5345.8779,341.81906,9070.0205}; - angles[]={6.2376156,2.3561945,6.1851001}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1134; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item217 - { - dataType="Object"; - class PositionInfo - { - position[]={5353.6953,341.37241,9078.0918}; - angles[]={6.2503963,2.3561945,6.183517}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1135; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item218 - { - dataType="Object"; - class PositionInfo - { - position[]={5357.6279,341.09232,9082.0127}; - angles[]={6.2575908,2.3561945,6.1763935}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1136; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item219 - { - dataType="Object"; - class PositionInfo - { - position[]={5314.4844,341.27185,9037.4082}; - angles[]={6.2113104,2.3561945,6.1922379}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1137; - type="Land_HBarrier_5_F"; - atlOffset=0.008972168; - }; - class Item220 - { - dataType="Object"; - class PositionInfo - { - position[]={5318.355,341.29443,9041.5029}; - angles[]={6.1890626,2.3561945,6.1922388}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1138; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item221 - { - dataType="Object"; - class PositionInfo - { - position[]={5322.2842,341.43469,9045.5615}; - angles[]={6.1677032,2.3561945,6.2136955}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1139; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item222 - { - dataType="Object"; - class PositionInfo - { - position[]={5326.2813,341.68423,9049.6338}; - angles[]={6.1237497,2.3561945,6.2695832}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1140; - type="Land_HBarrier_5_F"; - atlOffset=6.1035156e-005; - }; - class Item223 - { - dataType="Object"; - class PositionInfo - { - position[]={5283.0957,348.39148,9066.3125}; - angles[]={0,3.9269907,6.0988994}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1141; - type="Land_HBarrier_5_F"; - }; - class Item224 - { - dataType="Object"; - class PositionInfo - { - position[]={5286.9785,347.65698,9062.3477}; - angles[]={6.2129035,3.9269907,6.0988994}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1142; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item225 - { - dataType="Object"; - class PositionInfo - { - position[]={5290.9189,346.65039,9058.4043}; - angles[]={6.2129035,3.9269907,6.1004472}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1143; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item226 - { - dataType="Object"; - class PositionInfo - { - position[]={5294.7959,345.65439,9054.4336}; - angles[]={6.2129035,3.9269907,6.1004472}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1144; - type="Land_HBarrier_5_F"; - }; - class Item227 - { - dataType="Object"; - class PositionInfo - { - position[]={5310.6025,341.82657,9038.5215}; - angles[]={6.2049446,3.9269907,6.1284318}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1145; - type="Land_HBarrier_5_F"; - }; - class Item228 - { - dataType="Object"; - class PositionInfo - { - position[]={5348.9746,341.71964,9073.2529}; - angles[]={6.2376156,2.3561945,6.1851001}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1146; - type="Land_HBarrier_3_F"; - atlOffset=9.1552734e-005; - }; - class Item229 - { - dataType="Object"; - class PositionInfo - { - position[]={5351.3174,341.44,9072.1748}; - angles[]={6.2376156,3.9269907,6.1851025}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1147; - type="Land_HBarrier_3_F"; - atlOffset=9.1552734e-005; - }; - class Item230 - { - dataType="Object"; - class PositionInfo - { - position[]={5353.9658,341.30014,9074.9609}; - angles[]={6.2392149,3.9269907,6.183517}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1148; - type="Land_HBarrier_3_F"; - atlOffset=9.1552734e-005; - }; - class Item231 - { - dataType="Object"; - class PositionInfo - { - position[]={5355.4775,340.91299,9070.9131}; - angles[]={6.2392149,2.3561945,6.183517}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1149; - type="Land_HBarrier_5_F"; - atlOffset=9.1552734e-005; - }; - class Item232 - { - dataType="Object"; - class PositionInfo - { - position[]={5328.4414,346.81259,9113.4385}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1150; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item233 - { - dataType="Object"; - class PositionInfo - { - position[]={5326.9063,347.0108,9113.4209}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1151; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item234 - { - dataType="Object"; - class PositionInfo - { - position[]={5325.2002,347.11646,9110.9951}; - angles[]={0,2.3561945,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1152; - type="Land_Mil_WallBig_4m_F"; - }; - class Item235 - { - dataType="Object"; - class PositionInfo - { - position[]={5330.1543,346.47989,9111}; - angles[]={0,3.9269907,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1153; - type="Land_Mil_WallBig_4m_F"; - }; - class Item236 - { - dataType="Object"; - class PositionInfo - { - position[]={5315.4395,342.40305,9040.2676}; - angles[]={0,5.4842696,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1154; - type="Land_Mil_WallBig_4m_F"; - atlOffset=3.0517578e-005; - }; - class Item237 - { - dataType="Object"; - class PositionInfo - { - position[]={5313.7666,342.3248,9037.8184}; - angles[]={0,4.6988716,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1155; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item238 - { - dataType="Object"; - class PositionInfo - { - position[]={5312.2314,342.47437,9037.7813}; - angles[]={0,6.2696681,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1156; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item239 - { - dataType="Object"; - class PositionInfo - { - position[]={5310.4858,342.94638,9040.1963}; - angles[]={0,0.77188063,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1157; - type="Land_Mil_WallBig_4m_F"; - atlOffset=3.0517578e-005; - }; - class Item240 - { - dataType="Object"; - class PositionInfo - { - position[]={5328.5288,357.49762,9103.5508}; - angles[]={0,3.9269907,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1158; - type="Land_Cargo_Tower_V1_F"; - }; - class Item241 - { - dataType="Object"; - class PositionInfo - { - position[]={5320.6035,346.03317,9097.8906}; - angles[]={0,5.497787,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1159; - type="Land_Cargo_House_V1_F"; - }; - class Item242 - { - dataType="Object"; - class PositionInfo - { - position[]={5313.9717,346.41049,9091.627}; - angles[]={0,5.497787,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1160; - type="Land_Cargo_House_V1_F"; - }; - class Item243 - { - dataType="Object"; - class PositionInfo - { - position[]={5301.9697,351.26028,9082.2119}; - angles[]={0,2.3561945,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1161; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item244 - { - dataType="Object"; - class PositionInfo - { - position[]={5298.7559,344.63632,9050.3672}; - angles[]={6.2129035,3.9269907,6.1004472}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1162; - type="Land_HBarrier_5_F"; - }; - class Item245 - { - dataType="Object"; - class PositionInfo - { - position[]={5302.6392,343.68677,9046.4023}; - angles[]={6.2049446,3.9269907,6.1284318}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1163; - type="Land_HBarrier_5_F"; - }; - class Item246 - { - dataType="Object"; - class PositionInfo - { - position[]={5306.5791,342.763,9042.459}; - angles[]={6.2049446,3.9269907,6.1284318}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1164; - type="Land_HBarrier_5_F"; - }; - class Item247 - { - dataType="Object"; - class PositionInfo - { - position[]={5340.8994,343.70682,9101.8301}; - angles[]={6.2352223,3.9269907,6.1598163}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1165; - type="Land_HBarrier_5_F"; - }; - class Item248 - { - dataType="Object"; - class PositionInfo - { - position[]={5344.7827,343.06232,9097.8652}; - angles[]={6.2479987,3.9269907,6.1598158}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1166; - type="Land_HBarrier_5_F"; - }; - class Item249 - { - dataType="Object"; - class PositionInfo - { - position[]={5348.7227,342.43497,9093.9219}; - angles[]={6.2479987,3.9269907,6.1598158}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1167; - type="Land_HBarrier_5_F"; - }; - class Item250 - { - dataType="Object"; - class PositionInfo - { - position[]={5352.5332,345.85291,9084.1836}; - angles[]={0,3.9269907,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1168; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item251 - { - dataType="Object"; - class PositionInfo - { - position[]={5313.2573,346.16705,9044.0801}; - angles[]={0,5.497787,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1169; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item252 - { - dataType="Object"; - class PositionInfo - { - position[]={5289.1318,351.82944,9067.208}; - angles[]={0,2.3561945,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1170; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item253 - { - dataType="Object"; - class PositionInfo - { - position[]={5284.168,348.51593,9070.1914}; - angles[]={6.20892,2.3561945,6.1716509}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1171; - type="Land_HBarrier_5_F"; - }; - class Item254 - { - dataType="Object"; - class PositionInfo - { - position[]={5288.0381,348.36307,9074.2861}; - angles[]={6.208921,2.3561945,6.1276526}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1172; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item255 - { - dataType="Object"; - class PositionInfo - { - position[]={5286.9014,348.63992,9078.1816}; - angles[]={6.2551947,3.9269907,6.1993804}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1173; - type="Land_HBarrier_5_F"; - }; - class Item256 - { - dataType="Object"; - class PositionInfo - { - position[]={5293.6943,348.13287,9085.5293}; - angles[]={6.2033553,3.9269907,6.1930332}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1174; - type="Land_HBarrier_5_F"; - }; - class Item257 - { - dataType="Object"; - class PositionInfo - { - position[]={5328.8096,342.96939,9060.8438}; - angles[]={0,2.3377874,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1175; - type="Land_Cargo_House_V1_F"; - atlOffset=-3.0517578e-005; - }; - class Item258 - { - dataType="Object"; - class PositionInfo - { - position[]={5322.2939,342.47278,9054.458}; - angles[]={0,2.3377874,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1176; - type="Land_Cargo_House_V1_F"; - }; - class Item259 - { - dataType="Object"; - class PositionInfo - { - position[]={4962.4741,41.897171,2223.6052}; - angles[]={6.1954112,1.3261855,6.2655869}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1238; - type="Land_HBarrier_5_F"; - atlOffset=0.0089454651; - }; - class Item260 - { - dataType="Object"; - class PositionInfo - { - position[]={4960.9561,42.386879,2229.0313}; - angles[]={6.2025609,1.3261855,6.2503982}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1239; - type="Land_HBarrier_5_F"; - }; - class Item261 - { - dataType="Object"; - class PositionInfo - { - position[]={4959.4995,42.875633,2234.489}; - angles[]={6.2025609,1.3261855,6.2503982}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1240; - type="Land_HBarrier_5_F"; - }; - class Item262 - { - dataType="Object"; - class PositionInfo - { - position[]={4958.0654,43.395023,2240.0117}; - angles[]={6.1922369,1.3261855,6.2503963}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1241; - type="Land_HBarrier_5_F"; - }; - class Item263 - { - dataType="Object"; - class PositionInfo - { - position[]={4956.5479,44.116455,2245.4316}; - angles[]={6.1043177,1.3261855,0.056738663}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1242; - type="Land_HBarrier_5_F"; - }; - class Item264 - { - dataType="Object"; - class PositionInfo - { - position[]={4955.0889,44.936512,2250.8589}; - angles[]={6.1938243,1.3261855,0.056738663}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1243; - type="Land_HBarrier_5_F"; - }; - class Item265 - { - dataType="Object"; - class PositionInfo - { - position[]={4953.6533,45.341473,2256.2886}; - angles[]={6.1938243,1.3261855,0.056738663}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1244; - type="Land_HBarrier_5_F"; - }; - class Item266 - { - dataType="Object"; - class PositionInfo - { - position[]={4952.3164,45.803558,2261.6792}; - angles[]={6.1574526,1.3261855,0.093327537}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1245; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item267 - { - dataType="Object"; - class PositionInfo - { - position[]={4953.4243,46.471718,2265.6995}; - angles[]={6.1401691,2.8969817,0.093328178}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1246; - type="Land_HBarrier_5_F"; - }; - class Item268 - { - dataType="Object"; - class PositionInfo - { - position[]={4958.8228,47.128147,2266.9875}; - angles[]={6.1819329,2.8969817,0.051155224}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1247; - type="Land_HBarrier_5_F"; - atlOffset=-3.8146973e-006; - }; - class Item269 - { - dataType="Object"; - class PositionInfo - { - position[]={4964.2319,47.48246,2268.3352}; - angles[]={6.1819329,2.8969817,0.016798066}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1248; - type="Land_HBarrier_5_F"; - }; - class Item270 - { - dataType="Object"; - class PositionInfo - { - position[]={4985.9473,48.232868,2273.6587}; - angles[]={6.182725,2.8969817,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1249; - type="Land_HBarrier_5_F"; - atlOffset=-3.8146973e-006; - }; - class Item271 - { - dataType="Object"; - class PositionInfo - { - position[]={4991.4097,48.393692,2274.9746}; - angles[]={6.186686,2.8969817,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1250; - type="Land_HBarrier_5_F"; - atlOffset=-3.8146973e-006; - }; - class Item272 - { - dataType="Object"; - class PositionInfo - { - position[]={5005.5532,44.386177,2235.749}; - angles[]={6.176393,1.3261855,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1251; - type="Land_HBarrier_5_F"; - atlOffset=0.0089416504; - }; - class Item273 - { - dataType="Object"; - class PositionInfo - { - position[]={5004.0352,44.949726,2241.1753}; - angles[]={6.1756024,1.3261855,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1252; - type="Land_HBarrier_5_F"; - }; - class Item274 - { - dataType="Object"; - class PositionInfo - { - position[]={5002.5786,45.527477,2246.6328}; - angles[]={6.1756024,1.3261855,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1253; - type="Land_HBarrier_5_F"; - }; - class Item275 - { - dataType="Object"; - class PositionInfo - { - position[]={5001.145,46.112488,2252.1558}; - angles[]={6.1756024,1.3261855,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1254; - type="Land_HBarrier_5_F"; - }; - class Item276 - { - dataType="Object"; - class PositionInfo - { - position[]={4999.6274,46.685715,2257.5759}; - angles[]={6.1756024,1.3261855,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1255; - type="Land_HBarrier_5_F"; - }; - class Item277 - { - dataType="Object"; - class PositionInfo - { - position[]={4996.7329,47.781715,2268.4326}; - angles[]={6.186686,1.3261855,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1256; - type="Land_HBarrier_5_F"; - atlOffset=-3.8146973e-006; - }; - class Item278 - { - dataType="Object"; - class PositionInfo - { - position[]={4995.3955,48.298138,2273.8228}; - angles[]={6.186686,1.3261855,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1257; - type="Land_HBarrier_5_F"; - atlOffset=-3.8146973e-006; - }; - class Item279 - { - dataType="Object"; - class PositionInfo - { - position[]={5011.4243,42.195663,2213.8728}; - angles[]={6.185894,1.3261855,0.0071928473}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1258; - type="Land_HBarrier_5_F"; - atlOffset=0.0089187622; - }; - class Item280 - { - dataType="Object"; - class PositionInfo - { - position[]={5009.9063,42.705418,2219.2991}; - angles[]={6.185894,1.3261855,0.0071928473}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1259; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item281 - { - dataType="Object"; - class PositionInfo - { - position[]={5008.4497,43.227638,2224.7571}; - angles[]={6.185894,1.3261855,0.0071928473}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1260; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item282 - { - dataType="Object"; - class PositionInfo - { - position[]={5007.0166,43.802856,2230.2803}; - angles[]={6.1771851,1.3261855,0.0071928473}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1261; - type="Land_HBarrier_5_F"; - }; - class Item283 - { - dataType="Object"; - class PositionInfo - { - position[]={4970.4858,40.341072,2201.8433}; - angles[]={6.1898575,2.8969817,0.053548392}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1262; - type="Land_HBarrier_5_F"; - }; - class Item284 - { - dataType="Object"; - class PositionInfo - { - position[]={4975.8838,40.732716,2203.1309}; - angles[]={6.1851015,2.8969817,0.015998369}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1263; - type="Land_HBarrier_5_F"; - }; - class Item285 - { - dataType="Object"; - class PositionInfo - { - position[]={4981.293,40.951897,2204.4788}; - angles[]={6.1851015,2.8969817,0.015998369}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1264; - type="Land_HBarrier_5_F"; - }; - class Item286 - { - dataType="Object"; - class PositionInfo - { - position[]={4986.6929,41.152351,2205.7585}; - angles[]={6.187479,2.8969817,0.013597663}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1265; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item287 - { - dataType="Object"; - class PositionInfo - { - position[]={5008.4712,41.885048,2211.1184}; - angles[]={6.1914434,2.8969817,0.012000273}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1266; - type="Land_HBarrier_5_F"; - }; - class Item288 - { - dataType="Object"; - class PositionInfo - { - position[]={4998.4502,47.200615,2261.8948}; - angles[]={6.1756024,1.3261855,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1267; - type="Land_HBarrier_3_F"; - atlOffset=3.4332275e-005; - }; - class Item289 - { - dataType="Object"; - class PositionInfo - { - position[]={5000.5806,47.362778,2263.3481}; - angles[]={6.186686,2.8969817,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1268; - type="Land_HBarrier_3_F"; - atlOffset=2.6702881e-005; - }; - class Item290 - { - dataType="Object"; - class PositionInfo - { - position[]={4999.5557,47.7173,2267.053}; - angles[]={6.186686,2.8969817,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1269; - type="Land_HBarrier_3_F"; - atlOffset=2.2888184e-005; - }; - class Item291 - { - dataType="Object"; - class PositionInfo - { - position[]={5003.8042,47.60022,2266.2651}; - angles[]={6.186686,1.3261855,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1270; - type="Land_HBarrier_5_F"; - atlOffset=2.6702881e-005; - }; - class Item292 - { - dataType="Object"; - class PositionInfo - { - position[]={4953.4287,47.328228,2264.9795}; - angles[]={0,2.1115837,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1271; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item293 - { - dataType="Object"; - class PositionInfo - { - position[]={4952.6533,47.064831,2263.6543}; - angles[]={0,0.54078722,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1272; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item294 - { - dataType="Object"; - class PositionInfo - { - position[]={4953.8545,46.813824,2260.9429}; - angles[]={0,1.3261855,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1273; - type="Land_Mil_WallBig_4m_F"; - atlOffset=3.8146973e-006; - }; - class Item295 - { - dataType="Object"; - class PositionInfo - { - position[]={4956.4014,47.636757,2265.1924}; - angles[]={0,2.8969817,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1274; - type="Land_Mil_WallBig_4m_F"; - }; - class Item296 - { - dataType="Object"; - class PositionInfo - { - position[]={5009.4648,43.355576,2216.1636}; - angles[]={0,4.4542608,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1275; - type="Land_Mil_WallBig_4m_F"; - atlOffset=3.8146973e-006; - }; - class Item297 - { - dataType="Object"; - class PositionInfo - { - position[]={5010.7026,43.097927,2213.469}; - angles[]={0,3.6688626,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1276; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item298 - { - dataType="Object"; - class PositionInfo - { - position[]={5009.9448,42.955864,2212.1333}; - angles[]={0,5.2396593,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1277; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item299 - { - dataType="Object"; - class PositionInfo - { - position[]={5006.9756,42.896549,2211.8801}; - angles[]={0,6.0250568,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1278; - type="Land_Mil_WallBig_4m_F"; - }; - class Item300 - { - dataType="Object"; - class PositionInfo - { - position[]={4961.9502,58.634171,2259.9641}; - angles[]={0,2.8969817,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1279; - type="Land_Cargo_Tower_V1_F"; - atlOffset=3.8146973e-006; - }; - class Item301 - { - dataType="Object"; - class PositionInfo - { - position[]={4962.7222,45.270168,2250.2561}; - angles[]={0,4.4677782,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1280; - type="Land_Cargo_House_V1_F"; - }; - class Item302 - { - dataType="Object"; - class PositionInfo - { - position[]={4964.6782,43.891815,2241.3457}; - angles[]={0,4.4677782,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1281; - type="Land_Cargo_House_V1_F"; - }; - class Item303 - { - dataType="Object"; - class PositionInfo - { - position[]={4966.5713,46.585381,2226.2095}; - angles[]={0,1.3261855,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1282; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item304 - { - dataType="Object"; - class PositionInfo - { - position[]={4992.2173,41.344883,2207.0601}; - angles[]={6.1874795,2.8969817,0.012000273}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1283; - type="Land_HBarrier_5_F"; - }; - class Item305 - { - dataType="Object"; - class PositionInfo - { - position[]={4997.6157,41.509453,2208.3481}; - angles[]={6.1914439,2.8969817,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1284; - type="Land_HBarrier_5_F"; - atlOffset=-3.8146973e-006; - }; - class Item306 - { - dataType="Object"; - class PositionInfo - { - position[]={5003.0244,41.68882,2209.6958}; - angles[]={6.1914434,2.8969817,0.012000273}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1285; - type="Land_HBarrier_5_F"; - }; - class Item307 - { - dataType="Object"; - class PositionInfo - { - position[]={4969.7935,47.70343,2269.6838}; - angles[]={6.186686,2.8969817,0.012000273}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1286; - type="Land_HBarrier_5_F"; - }; - class Item308 - { - dataType="Object"; - class PositionInfo - { - position[]={4975.1919,47.891357,2270.9719}; - angles[]={6.186686,2.8969817,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1287; - type="Land_HBarrier_5_F"; - }; - class Item309 - { - dataType="Object"; - class PositionInfo - { - position[]={4980.6006,48.05513,2272.3196}; - angles[]={6.182725,2.8969817,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1288; - type="Land_HBarrier_5_F"; - atlOffset=-3.8146973e-006; - }; - class Item310 - { - dataType="Object"; - class PositionInfo - { - position[]={4990.9111,52.12603,2270.573}; - angles[]={0,2.8969817,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1289; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item311 - { - dataType="Object"; - class PositionInfo - { - position[]={5005.0732,46.520428,2216.2554}; - angles[]={0,4.4677782,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1290; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item312 - { - dataType="Object"; - class PositionInfo - { - position[]={4972.8252,45.183952,2207.4792}; - angles[]={0,1.3261855,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1291; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item313 - { - dataType="Object"; - class PositionInfo - { - position[]={4967.7119,40.465336,2204.7595}; - angles[]={6.1898575,1.3261855,0.053548392}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1292; - type="Land_HBarrier_5_F"; - }; - class Item314 - { - dataType="Object"; - class PositionInfo - { - position[]={4966.1938,40.898476,2210.1855}; - angles[]={6.1851006,1.3261855,0.058334891}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1293; - type="Land_HBarrier_5_F"; - }; - class Item315 - { - dataType="Object"; - class PositionInfo - { - position[]={4962.269,40.793339,2211.2166}; - angles[]={6.1898575,2.8969817,6.2703824}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1294; - type="Land_HBarrier_5_F"; - }; - class Item316 - { - dataType="Object"; - class PositionInfo - { - position[]={4959.4663,41.696327,2220.823}; - angles[]={6.1954112,2.8969817,6.2655869}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1295; - type="Land_HBarrier_5_F"; - atlOffset=3.8146973e-006; - }; - class Item317 - { - dataType="Object"; - class PositionInfo - { - position[]={4998.708,44.538174,2238.2185}; - angles[]={0,1.3077784,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1296; - type="Land_Cargo_House_V1_F"; - }; - class Item318 - { - dataType="Object"; - class PositionInfo - { - position[]={5000.8276,43.608299,2229.3455}; - angles[]={0,1.3077784,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1297; - type="Land_Cargo_House_V1_F"; - }; - class Item319 - { - dataType="Object"; - class PositionInfo - { - position[]={2348.6714,151.92503,5053.7852}; - angles[]={0.14536762,2.7296197,0.10520938}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1358; - type="Land_HBarrier_5_F"; - atlOffset=0.0089569092; - }; - class Item320 - { - dataType="Object"; - class PositionInfo - { - position[]={2353.7688,152.25368,5056.1855}; - angles[]={0.14536762,2.7296197,0.14458497}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1359; - type="Land_HBarrier_5_F"; - }; - class Item321 - { - dataType="Object"; - class PositionInfo - { - position[]={2358.9077,152.44916,5058.5308}; - angles[]={0.1866035,2.7296197,0.10283692}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1360; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; - }; - class Item322 - { - dataType="Object"; - class PositionInfo - { - position[]={2364.1147,152.61568,5060.8647}; - angles[]={0.18660383,2.7296197,0.14536762}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1361; - type="Land_HBarrier_5_F"; - }; - class Item323 - { - dataType="Object"; - class PositionInfo - { - position[]={2369.2061,154.08754,5063.2637}; - angles[]={6.2272449,2.7296197,0.28631079}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1362; - type="Land_HBarrier_5_F"; - }; - class Item324 - { - dataType="Object"; - class PositionInfo - { - position[]={2374.3142,155.25,5065.6069}; - angles[]={0.13831063,2.7296197,0.098877132}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1363; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; - }; - class Item325 - { - dataType="Object"; - class PositionInfo - { - position[]={2379.4285,155.5407,5067.9268}; - angles[]={0.13831063,2.7296197,0.12258328}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1364; - type="Land_HBarrier_5_F"; - }; - class Item326 - { - dataType="Object"; - class PositionInfo - { - position[]={2384.5215,156.11339,5070.1431}; - angles[]={0.084597312,2.7296197,0.17576718}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1365; - type="Land_HBarrier_5_F"; - }; - class Item327 - { - dataType="Object"; - class PositionInfo - { - position[]={2388.6702,156.85144,5069.7202}; - angles[]={0.084597312,4.300416,0.14693274}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1366; - type="Land_HBarrier_5_F"; - }; - class Item328 - { - dataType="Object"; - class PositionInfo - { - position[]={2390.8394,157.60567,5064.6118}; - angles[]={0.084597312,4.300416,0.14693274}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1367; - type="Land_HBarrier_5_F"; - }; - class Item329 - { - dataType="Object"; - class PositionInfo - { - position[]={2393.0691,158.29936,5059.5029}; - angles[]={0.06152248,4.300416,0.14693274}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1368; - type="Land_HBarrier_5_F"; - }; - class Item330 - { - dataType="Object"; - class PositionInfo - { - position[]={2401.9358,160.77696,5038.9775}; - angles[]={0.053548392,4.300416,0.14144853}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1369; - type="Land_HBarrier_5_F"; - }; - class Item331 - { - dataType="Object"; - class PositionInfo - { - position[]={2404.1433,161.36533,5033.8105}; - angles[]={0.052750662,4.300416,0.14144853}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1370; - type="Land_HBarrier_5_F"; - }; - class Item332 - { - dataType="Object"; - class PositionInfo - { - position[]={2367.8218,157.1301,5013.3306}; - angles[]={0.051155224,2.7296197,0.15162733}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1371; - type="Land_HBarrier_5_F"; - atlOffset=0.0089569092; - }; - class Item333 - { - dataType="Object"; - class PositionInfo - { - position[]={2372.9192,157.77159,5015.731}; - angles[]={0.055941612,2.7296197,0.14693396}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1372; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; - }; - class Item334 - { - dataType="Object"; - class PositionInfo - { - position[]={2378.0581,158.39348,5018.0767}; - angles[]={0.055941612,2.7296197,0.14458331}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1373; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item335 - { - dataType="Object"; - class PositionInfo - { - position[]={2383.2651,159.04448,5020.4102}; - angles[]={0.049559005,2.7296197,0.1508448}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1374; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item336 - { - dataType="Object"; - class PositionInfo - { - position[]={2388.3564,159.69522,5022.8096}; - angles[]={0.049559005,2.7296197,0.14615022}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1375; - type="Land_HBarrier_5_F"; - }; - class Item337 - { - dataType="Object"; - class PositionInfo - { - position[]={2398.5793,160.92145,5027.4722}; - angles[]={0.054347586,2.7296197,0.14301735}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1376; - type="Land_HBarrier_5_F"; - }; - class Item338 - { - dataType="Object"; - class PositionInfo - { - position[]={2403.6716,161.5224,5029.689}; - angles[]={0.054346491,2.7296197,0.13987978}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1377; - type="Land_HBarrier_5_F"; - }; - class Item339 - { - dataType="Object"; - class PositionInfo - { - position[]={2347.2295,154.54169,5003.897}; - angles[]={0.053548392,2.7296197,0.15709588}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1378; - type="Land_HBarrier_5_F"; - atlOffset=0.0089111328; - }; - class Item340 - { - dataType="Object"; - class PositionInfo - { - position[]={2352.3269,155.20221,5006.2979}; - angles[]={0.053549506,2.7296197,0.1531899}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1379; - type="Land_HBarrier_5_F"; - }; - class Item341 - { - dataType="Object"; - class PositionInfo - { - position[]={2357.4658,155.84399,5008.6431}; - angles[]={0.060724311,2.7296197,0.14615022}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1380; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item342 - { - dataType="Object"; - class PositionInfo - { - position[]={2362.6729,156.46858,5010.9771}; - angles[]={0.060724311,2.7296197,0.14615144}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1381; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item343 - { - dataType="Object"; - class PositionInfo - { - position[]={2328.5479,149.12187,5042.2603}; - angles[]={0.1484984,4.300416,0.15475382}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1382; - type="Land_HBarrier_5_F"; - }; - class Item344 - { - dataType="Object"; - class PositionInfo - { - position[]={2330.717,150.18909,5037.1519}; - angles[]={0.04796192,4.300416,0.15475343}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1383; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item345 - { - dataType="Object"; - class PositionInfo - { - position[]={2332.947,150.7822,5032.043}; - angles[]={0.04796192,4.300416,0.15475343}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1384; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item346 - { - dataType="Object"; - class PositionInfo - { - position[]={2335.1086,151.36292,5026.9312}; - angles[]={0.043971907,4.300416,0.15865555}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1385; - type="Land_HBarrier_5_F"; - }; - class Item347 - { - dataType="Object"; - class PositionInfo - { - position[]={2344.021,153.89305,5006.3506}; - angles[]={0.053548392,4.300416,0.15709588}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1386; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; - }; - class Item348 - { - dataType="Object"; - class PositionInfo - { - position[]={2392.4189,160.24309,5024.6895}; - angles[]={0.052750662,2.7296197,0.14301692}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1387; - type="Land_HBarrier_3_F"; - atlOffset=4.5776367e-005; - }; - class Item349 - { - dataType="Object"; - class PositionInfo - { - position[]={2394.207,160.59871,5022.8311}; - angles[]={0.052750662,4.300416,0.14301692}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1388; - type="Land_HBarrier_3_F"; - atlOffset=4.5776367e-005; - }; - class Item350 - { - dataType="Object"; - class PositionInfo - { - position[]={2397.6892,161.01421,5024.459}; - angles[]={0.052750662,4.300416,0.14301692}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1389; - type="Land_HBarrier_3_F"; - atlOffset=3.0517578e-005; - }; - class Item351 - { - dataType="Object"; - class PositionInfo - { - position[]={2397.6201,161.17453,5020.1387}; - angles[]={0.052750662,2.7296197,0.14301692}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1390; - type="Land_HBarrier_5_F"; - atlOffset=4.5776367e-005; - }; - class Item352 - { - dataType="Object"; - class PositionInfo - { - position[]={2387.9607,157.71671,5069.5962}; - angles[]={0,3.515018,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1391; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item353 - { - dataType="Object"; - class PositionInfo - { - position[]={2386.5249,157.42923,5070.1396}; - angles[]={0,1.9442216,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1392; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item354 - { - dataType="Object"; - class PositionInfo - { - position[]={2384.0513,157.12822,5068.5039}; - angles[]={0,2.7296197,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1393; - type="Land_Mil_WallBig_4m_F"; - }; - class Item355 - { - dataType="Object"; - class PositionInfo - { - position[]={2388.6655,158.06613,5066.7007}; - angles[]={0,4.300416,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1394; - type="Land_Mil_WallBig_4m_F"; - }; - class Item356 - { - dataType="Object"; - class PositionInfo - { - position[]={2349.1616,155.67412,5006.2114}; - angles[]={0,5.8576946,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1395; - type="Land_Mil_WallBig_4m_F"; - atlOffset=-1.5258789e-005; - }; - class Item357 - { - dataType="Object"; - class PositionInfo - { - position[]={2346.7104,155.37578,5004.5415}; - angles[]={0,5.0722971,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1396; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item358 - { - dataType="Object"; - class PositionInfo - { - position[]={2345.2673,155.11908,5005.0659}; - angles[]={0,0.35990763,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1397; - type="Land_Mil_WallBig_Corner_F"; - }; - class Item359 - { - dataType="Object"; - class PositionInfo - { - position[]={2344.5234,154.84613,5007.9521}; - angles[]={0,1.1453059,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1398; - type="Land_Mil_WallBig_4m_F"; - atlOffset=-1.5258789e-005; - }; - class Item360 - { - dataType="Object"; - class PositionInfo - { - position[]={2384.4351,169.19572,5060.3579}; - angles[]={0,4.300416,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1399; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-1.5258789e-005; - }; - class Item361 - { - dataType="Object"; - class PositionInfo - { - position[]={2374.9912,155.88187,5057.9795}; - angles[]={0,5.871212,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1400; - type="Land_Cargo_House_V1_F"; - }; - class Item362 - { - dataType="Object"; - class PositionInfo - { - position[]={2366.531,154.10805,5054.5664}; - angles[]={0,5.871212,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1401; - type="Land_Cargo_House_V1_F"; - }; - class Item363 - { - dataType="Object"; - class PositionInfo - { - position[]={2351.9219,157.02867,5050.1787}; - angles[]={0,2.7296197,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1402; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item364 - { - dataType="Object"; - class PositionInfo - { - position[]={2337.3123,151.9852,5021.7012}; - angles[]={0.055941612,4.300416,0.15865518}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1403; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; - }; - class Item365 - { - dataType="Object"; - class PositionInfo - { - position[]={2339.4814,152.61514,5016.5928}; - angles[]={0.055941612,4.300416,0.15709549}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1404; - type="Land_HBarrier_5_F"; - }; - class Item366 - { - dataType="Object"; - class PositionInfo - { - position[]={2341.7114,153.25206,5011.4839}; - angles[]={0.053548392,4.300416,0.15709588}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1405; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; - }; - class Item367 - { - dataType="Object"; - class PositionInfo - { - position[]={2395.3257,158.95834,5054.2437}; - angles[]={0.063913256,4.300416,0.14458331}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1406; - type="Land_HBarrier_5_F"; - }; - class Item368 - { - dataType="Object"; - class PositionInfo - { - position[]={2397.4949,159.59212,5049.1353}; - angles[]={0.053548392,4.300416,0.14458331}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1407; - type="Land_HBarrier_5_F"; - }; - class Item369 - { - dataType="Object"; - class PositionInfo - { - position[]={2399.7246,160.21852,5044.0264}; - angles[]={0.053548392,4.300416,0.14458331}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1408; - type="Land_HBarrier_5_F"; - atlOffset=0.027923584; - }; - class Item370 - { - dataType="Object"; - class PositionInfo - { - position[]={2399.72,164.91855,5033.5688}; - angles[]={0,4.300416,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1409; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item371 - { - dataType="Object"; - class PositionInfo - { - position[]={2348.5205,158.5448,5010.5566}; - angles[]={0,5.871212,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1410; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=-1.5258789e-005; - }; - class Item372 - { - dataType="Object"; - class PositionInfo - { - position[]={2334.4949,154.39862,5040.8921}; - angles[]={0,2.7296197,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1411; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item373 - { - dataType="Object"; - class PositionInfo - { - position[]={2330.9617,148.9416,5045.481}; - angles[]={0.19893382,2.7296197,0.10362818}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1412; - type="Land_HBarrier_5_F"; - }; - class Item374 - { - dataType="Object"; - class PositionInfo - { - position[]={2336.0591,148.98776,5047.8813}; - angles[]={0.19893382,2.7296197,0.10362818}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1413; - type="Land_HBarrier_5_F"; - }; - class Item375 - { - dataType="Object"; - class PositionInfo - { - position[]={2336.4214,148.71373,5051.9233}; - angles[]={6.2232571,4.300416,0.10362761}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1414; - type="Land_HBarrier_5_F"; - }; - class Item376 - { - dataType="Object"; - class PositionInfo - { - position[]={2345.427,151.20723,5056.2866}; - angles[]={0.14536762,4.300416,0.10520938}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=1415; - type="Land_HBarrier_5_F"; - }; - class Item377 - { - dataType="Object"; - class PositionInfo - { - position[]={2369.1165,156.89172,5020.4912}; - angles[]={0,2.7112126,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1416; - type="Land_Cargo_House_V1_F"; - atlOffset=-1.5258789e-005; - }; - class Item378 - { - dataType="Object"; - class PositionInfo - { - position[]={2360.7205,155.79449,5016.9233}; - angles[]={0,2.7112126,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1417; - type="Land_Cargo_House_V1_F"; - }; - class Item379 - { - dataType="Object"; - class PositionInfo - { - position[]={9652.0791,49.150009,3340.9382}; - angles[]={0,3.1606307,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1418; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item380 - { - dataType="Object"; - class PositionInfo - { - position[]={9686.5098,43.794998,3912.8296}; - angles[]={0,1.6034911,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1419; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item381 - { - dataType="Object"; - class PositionInfo - { - position[]={9754.7529,43.789967,3951.5425}; - angles[]={0,4.6890874,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1420; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item382 - { - dataType="Object"; - class PositionInfo - { - position[]={11323.313,38.138653,4143.7534}; - angles[]={0,3.9176283,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1421; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item383 - { - dataType="Object"; - class PositionInfo - { - position[]={7696.9443,10.607181,3388.3284}; - angles[]={0,4.4722281,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1422; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item384 - { - dataType="Object"; - class PositionInfo - { - position[]={3635.4219,7.4650002,3248.6873}; - angles[]={0,3.3896317,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1423; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item385 - { - dataType="Layer"; - name="Open Ammo Dump"; - id=1424; - atlOffset=96.5; - }; - class Item386 - { - dataType="Layer"; - name="Vehicle Repair"; - id=1449; - atlOffset=96.5; - }; - class Item387 - { - dataType="Layer"; - name="Camp Audacity"; - id=1883; - atlOffset=96.5; - }; - class Item388 - { - dataType="Logic"; - class PositionInfo - { - position[]={6984.3989,124.74949,10021.305}; - angles[]={0,0,0.083803542}; - }; - areaSize[]={1,0,5}; - flags=1; - id=1884; - type="ModuleHideTerrainObjects_F"; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item389 - { - dataType="Object"; - class PositionInfo - { - position[]={6984.2583,125.46266,10021.116}; - angles[]={0,4.7399645,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1886; - type="Land_Wall_IndCnc_4_F"; - }; - class Item390 - { - dataType="Logic"; - class PositionInfo - { - position[]={6999.396,125.01,9944.4404}; - angles[]={0,5.3208961,0}; - }; - areaSize[]={1,0,5}; - flags=1; - id=1887; - type="ModuleHideTerrainObjects_F"; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item391 - { - dataType="Object"; - class PositionInfo - { - position[]={6999.8633,125.91182,9944.1416}; - angles[]={0,3.706985,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1889; - type="Land_ConcreteWall_01_l_8m_F"; - }; - class Item392 - { - dataType="Logic"; - class PositionInfo - { - position[]={7060.5503,125.01,10000.053}; - angles[]={0,6.0281544,0}; - }; - areaSize[]={1,0,5}; - flags=1; - id=1890; - type="ModuleHideTerrainObjects_F"; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item393 - { - dataType="Object"; - class PositionInfo - { - position[]={7060.0483,125.91182,10001.388}; - angles[]={0,1.3515491,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1891; - type="Land_ConcreteWall_01_l_8m_F"; - }; - class Item394 - { - dataType="Object"; - class PositionInfo - { - position[]={7061.0254,125.91,9997}; - angles[]={0,1.3411363,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1892; - type="Land_ConcreteWall_01_l_4m_F"; - }; - class Item395 - { - dataType="Layer"; - name="Open Ammo Dump_1"; - id=1955; - atlOffset=96.5; - }; - class Item396 - { - dataType="Layer"; - name="Vehicle Repair_1"; - id=1980; - atlOffset=96.5; - }; - class Item397 - { - dataType="Layer"; - name="Open Ammo Dump_2"; - id=2357; - atlOffset=96.5; - }; - class Item398 - { - dataType="Layer"; - name="Vehicle Repair_2"; - id=2382; - atlOffset=96.5; - }; - class Item399 - { - dataType="Object"; - class PositionInfo - { - position[]={5051.063,60.02533,3703.7239}; - angles[]={6.2671871,5.2879448,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2848; - type="Land_HBarrier_Big_F"; - }; - class Item400 - { - dataType="Object"; - class PositionInfo - { - position[]={5055.6899,60.107967,3710.8545}; - angles[]={6.2703872,5.2879448,6.2759843}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2849; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - }; - class Item401 - { - dataType="Object"; - class PositionInfo - { - position[]={5042.4644,60.173103,3709.303}; - angles[]={6.2671871,5.2879448,6.2759929}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2850; - type="Land_HBarrier_Big_F"; - }; - class Item402 - { - dataType="Object"; - class PositionInfo - { - position[]={5060.3164,60.207218,3717.9851}; - angles[]={6.26159,5.2879448,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2851; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - }; - class Item403 - { - dataType="Object"; - class PositionInfo - { - position[]={5064.9429,60.378368,3725.1155}; - angles[]={6.2575932,5.2879448,0.010398259}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2852; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - }; - class Item404 - { - dataType="Object"; - class PositionInfo - { - position[]={5069.5693,60.601753,3732.2461}; - angles[]={6.26159,5.2879448,0.0064037596}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2853; - type="Land_HBarrier_Big_F"; - atlOffset=-3.8146973e-006; - }; - class Item405 - { - dataType="Object"; - class PositionInfo - { - position[]={5074.1963,60.802547,3739.3767}; - angles[]={6.2503963,5.2879448,0.011203959}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2854; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - }; - class Item406 - { - dataType="Object"; - class PositionInfo - { - position[]={5072.105,60.989807,3745.7996}; - angles[]={6.2503963,3.7171483,0.011203959}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2855; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - }; - class Item407 - { - dataType="Object"; - class PositionInfo - { - position[]={5047.0913,60.258667,3716.4336}; - angles[]={6.2647886,5.2879448,6.277586}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2856; - type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; - }; - class Item408 - { - dataType="Object"; - class PositionInfo - { - position[]={5051.7178,60.362114,3723.5642}; - angles[]={6.26159,5.2879448,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2857; - type="Land_HBarrier_Big_F"; - }; - class Item409 - { - dataType="Object"; - class PositionInfo - { - position[]={5056.3442,60.488514,3730.6948}; - angles[]={6.2631893,5.2879448,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2858; - type="Land_HBarrier_Big_F"; - }; - class Item410 - { - dataType="Object"; - class PositionInfo - { - position[]={5060.9702,60.674576,3737.8254}; - angles[]={6.26159,5.2879448,0.0016194459}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2859; - type="Land_HBarrier_Big_F"; - }; - class Item411 - { - dataType="Object"; - class PositionInfo - { - position[]={5065.1841,61.054932,3750.29}; - angles[]={6.2663875,3.7171483,0.011198638}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2860; - type="Land_HBarrier_Big_F"; - }; - class Item412 - { - dataType="Object"; - class PositionInfo - { - position[]={5037.4136,60.198566,3708.408}; - angles[]={6.2679896,3.7171483,6.2743897}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2861; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - }; - class Item413 - { - dataType="Object"; - class PositionInfo - { - position[]={5030.2827,60.332066,3713.0344}; - angles[]={6.2671871,3.7171483,6.2743897}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2862; - type="Land_HBarrier_Big_F"; - }; - class Item414 - { - dataType="Object"; - class PositionInfo - { - position[]={5023.1523,60.476223,3717.6611}; - angles[]={6.2671871,3.7171483,6.2703872}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2863; - type="Land_HBarrier_Big_F"; - }; - class Item415 - { - dataType="Object"; - class PositionInfo - { - position[]={5016.022,60.641518,3722.2876}; - angles[]={6.2671871,3.7171483,6.2703872}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2864; - type="Land_HBarrier_Big_F"; - }; - class Item416 - { - dataType="Object"; - class PositionInfo - { - position[]={5008.8911,60.81649,3726.9143}; - angles[]={6.2711854,3.7171483,6.2655869}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2865; - type="Land_HBarrier_Big_F"; - }; - class Item417 - { - dataType="Object"; - class PositionInfo - { - position[]={5012.5601,60.935139,3738.5403}; - angles[]={6.2679858,5.2879448,6.271987}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2866; - type="Land_HBarrier_Big_F"; - }; - class Item418 - { - dataType="Object"; - class PositionInfo - { - position[]={5017.187,60.992847,3745.6707}; - angles[]={6.2647886,5.2879448,6.2751846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2867; - type="Land_HBarrier_Big_F"; - }; - class Item419 - { - dataType="Object"; - class PositionInfo - { - position[]={5021.8135,61.089272,3752.8013}; - angles[]={6.2639894,5.2879448,6.2751846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2868; - type="Land_HBarrier_Big_F"; - }; - class Item420 - { - dataType="Object"; - class PositionInfo - { - position[]={5026.4399,61.191479,3759.9319}; - angles[]={6.2639894,5.2879448,6.2767816}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2869; - type="Land_HBarrier_Big_F"; - }; - class Item421 - { - dataType="Object"; - class PositionInfo - { - position[]={5031.0664,61.392384,3767.0625}; - angles[]={6.2487988,5.2879448,6.2807684}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2870; - type="Land_HBarrier_Big_F"; - }; - class Item422 - { - dataType="Object"; - class PositionInfo - { - position[]={5057.9175,61.132065,3754.707}; - angles[]={6.2663875,3.7171483,6.2759929}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2871; - type="Land_HBarrier_Big_F"; - atlOffset=-3.8146973e-006; - }; - class Item423 - { - dataType="Object"; - class PositionInfo - { - position[]={5050.7866,61.224964,3759.3335}; - angles[]={6.2511969,3.7171483,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2872; - type="Land_HBarrier_Big_F"; - }; - class Item424 - { - dataType="Object"; - class PositionInfo - { - position[]={5043.6563,61.305462,3763.9602}; - angles[]={6.2583904,3.7171483,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2873; - type="Land_HBarrier_Big_F"; - }; - class Item425 - { - dataType="Object"; - class PositionInfo - { - position[]={5036.5254,61.382641,3768.5867}; - angles[]={6.2583928,3.7171483,6.2711902}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2874; - type="Land_HBarrier_Big_F"; - atlOffset=-3.8146973e-006; - }; - class Item426 - { - dataType="Object"; - class PositionInfo - { - position[]={5044.0732,63.147167,3702.5969}; - angles[]={6.2679896,3.7171483,6.2751918}; - }; - side="Empty"; - class Attributes - { - }; - id=2875; - type="Land_BarGate_F"; - atlOffset=0.25; - }; - class Item427 - { - dataType="Object"; - class PositionInfo - { - position[]={5034.127,64.044205,3716.2029}; - angles[]={0,0.57555532,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2876; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=7.6293945e-006; - }; - class Item428 - { - dataType="Object"; - class PositionInfo - { - position[]={5022.6665,61.602787,3773.4067}; - angles[]={6.2488008,2.1463523,0.0095994528}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2877; - type="Land_HBarrier_Big_F"; - }; - class Item429 - { - dataType="Object"; - class PositionInfo - { - position[]={5018.04,61.369122,3766.2761}; - angles[]={6.2663875,2.1463523,6.2751846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2878; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - }; - class Item430 - { - dataType="Object"; - class PositionInfo - { - position[]={5013.4136,61.278282,3759.1455}; - angles[]={6.2639894,2.1463523,6.2751846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2879; - type="Land_HBarrier_Big_F"; - }; - class Item431 - { - dataType="Object"; - class PositionInfo - { - position[]={5008.7871,61.191124,3752.0149}; - angles[]={6.2679858,2.1463523,6.269588}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2880; - type="Land_HBarrier_Big_F"; - }; - class Item432 - { - dataType="Object"; - class PositionInfo - { - position[]={5004.1602,61.146435,3744.8845}; - angles[]={6.2687874,2.1463523,6.2687874}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2881; - type="Land_HBarrier_Big_F"; - }; - class Item433 - { - dataType="Object"; - class PositionInfo - { - position[]={4999.5337,61.111629,3737.7542}; - angles[]={6.2711854,2.1463523,6.2647886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2882; - type="Land_HBarrier_Big_F"; - }; - class Item434 - { - dataType="Object"; - class PositionInfo - { - position[]={5001.6245,60.997383,3731.3311}; - angles[]={6.2711854,0.57555532,6.2655869}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2883; - type="Land_HBarrier_Big_F"; - }; - class Item435 - { - dataType="Object"; - class PositionInfo - { - position[]={5029.6563,64.702843,3774.5339}; - angles[]={6.2583928,0.57555532,6.2711902}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2884; - type="Land_BarGate_F"; - atlOffset=0.24999619; - }; - class Item436 - { - dataType="Object"; - class PositionInfo - { - position[]={5031.5874,64.84053,3758.6785}; - angles[]={0,2.1463523,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2885; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=3.8146973e-006; - }; - class Item437 - { - dataType="Object"; - class PositionInfo - { - position[]={5039.8862,64.868355,3760.446}; - angles[]={0,3.7171483,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2886; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=3.8146973e-006; - }; - class Item438 - { - dataType="Object"; - class PositionInfo - { - position[]={5056.0732,60.221806,3741.3008}; - angles[]={0,2.1463523,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2887; - type="Land_Cargo_House_V1_F"; - }; - class Item439 - { - dataType="Object"; - class PositionInfo - { - position[]={5017.248,60.308193,3735.2007}; - angles[]={0,5.2879448,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2888; - type="Land_Cargo_House_V1_F"; - }; - class Item440 - { - dataType="Object"; - class PositionInfo - { - position[]={5012.1362,64.654678,3734.5833}; - angles[]={0,1.6227527,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2889; - type="Land_TTowerSmall_1_F"; - }; - class Item441 - { - dataType="Object"; - class PositionInfo - { - position[]={5061.7534,68.052811,3741.7876}; - angles[]={0,2.1463523,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2890; - type="Land_TTowerSmall_2_F"; - atlOffset=3.8146973e-006; - }; - class Item442 - { - dataType="Object"; - class PositionInfo - { - position[]={5042.4258,64.011436,3717.9705}; - angles[]={0,5.2879448,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2891; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=3.8146973e-006; - }; - class Item443 - { - dataType="Object"; - class PositionInfo - { - position[]={5021.9272,61.11504,3747.9285}; - angles[]={6.2647886,5.2879448,6.2751846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2892; - type="Land_Cargo40_military_green_F"; - }; - class Item444 - { - dataType="Object"; - class PositionInfo - { - position[]={5024.2339,61.069038,3746.4314}; - angles[]={6.2647886,5.2879448,6.2751846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2893; - type="Land_Cargo40_military_green_F"; - atlOffset=-7.6293945e-006; - }; - class Item445 - { - dataType="Object"; - class PositionInfo - { - position[]={5022.9756,63.72966,3747.248}; - angles[]={6.2647886,5.2879448,6.2751846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2894; - type="Land_Cargo40_military_green_F"; - }; - class Item446 - { - dataType="Object"; - class PositionInfo - { - position[]={5048.5894,59.990963,3729.7661}; - angles[]={6.2631893,2.1463523,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2895; - type="Land_Medevac_house_V1_F"; - }; - class Item447 - { - dataType="Object"; - class PositionInfo - { - position[]={4917.687,414.59985,7907.0483}; - angles[]={6.1661229,5.4727268,0.069488183}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2896; - type="Land_HBarrier_Big_F"; - }; - class Item448 - { - dataType="Object"; - class PositionInfo - { - position[]={4923.5449,415.06644,7913.2075}; - angles[]={6.2320313,5.4727268,0.013597663}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2897; - type="Land_HBarrier_Big_F"; - }; - class Item449 - { - dataType="Object"; - class PositionInfo - { - position[]={4910.6162,414.76227,7913.6318}; - angles[]={6.1495867,5.4727268,0.14223404}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2898; - type="Land_HBarrier_Big_F"; - }; - class Item450 - { - dataType="Object"; - class PositionInfo - { - position[]={4929.4028,415.61905,7919.3667}; - angles[]={6.1954112,5.4727268,6.2751846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2899; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; - }; - class Item451 - { - dataType="Object"; - class PositionInfo - { - position[]={4935.2607,416.1839,7925.5259}; - angles[]={6.234426,5.4727268,0.00084572798}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2900; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; - }; - class Item452 - { - dataType="Object"; - class PositionInfo - { - position[]={4941.1187,416.83044,7931.6851}; - angles[]={6.1922379,5.4727268,0.016798066}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2901; - type="Land_HBarrier_Big_F"; - }; - class Item453 - { - dataType="Object"; - class PositionInfo - { - position[]={4946.9766,417.65588,7937.8442}; - angles[]={6.2184753,5.4727268,0.035185181}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2902; - type="Land_HBarrier_Big_F"; - }; - class Item454 - { - dataType="Object"; - class PositionInfo - { - position[]={4946.1011,418.09927,7944.542}; - angles[]={6.2057409,3.9019301,0.047963165}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2903; - type="Land_HBarrier_Big_F"; - }; - class Item455 - { - dataType="Object"; - class PositionInfo - { - position[]={4916.1177,415.32709,7920.2715}; - angles[]={6.2320313,5.4727268,0.013597663}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2904; - type="Land_HBarrier_Big_F"; - }; - class Item456 - { - dataType="Object"; - class PositionInfo - { - position[]={4921.9756,416.06967,7926.4307}; - angles[]={6.2328281,5.4727268,0.050357513}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2905; - type="Land_HBarrier_Big_F"; - }; - class Item457 - { - dataType="Object"; - class PositionInfo - { - position[]={4927.8335,416.52261,7932.5898}; - angles[]={6.234426,5.4727268,0.00084572798}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2906; - type="Land_HBarrier_Big_F"; - }; - class Item458 - { - dataType="Object"; - class PositionInfo - { - position[]={4933.6914,417.19543,7938.749}; - angles[]={6.2352223,5.4727268,0.043172773}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2907; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; - }; - class Item459 - { - dataType="Object"; - class PositionInfo - { - position[]={4940.123,418.25156,7950.2275}; - angles[]={6.2144923,3.9019301,0.047963165}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2908; - type="Land_HBarrier_Big_F"; - }; - class Item460 - { - dataType="Object"; - class PositionInfo - { - position[]={4905.1304,414.04779,7914.1606}; - angles[]={6.1495867,3.9019301,0.14223404}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2909; - type="Land_HBarrier_Big_F"; - }; - class Item461 - { - dataType="Object"; - class PositionInfo - { - position[]={4898.9712,414.03787,7920.0186}; - angles[]={6.1495867,3.9019301,0.060726274}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2910; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; - }; - class Item462 - { - dataType="Object"; - class PositionInfo - { - position[]={4892.812,414.38974,7925.8765}; - angles[]={6.2184763,3.9019301,0.06072529}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2911; - type="Land_HBarrier_Big_F"; - }; - class Item463 - { - dataType="Object"; - class PositionInfo - { - position[]={4886.6528,414.3989,7931.7344}; - angles[]={6.2184753,3.9019301,0.055940546}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2912; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item464 - { - dataType="Object"; - class PositionInfo - { - position[]={4880.4937,414.43451,7937.5923}; - angles[]={6.2089233,3.9019301,0.055939481}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2913; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; - }; - class Item465 - { - dataType="Object"; - class PositionInfo - { - position[]={4886.2363,415.44116,7948.3462}; - angles[]={6.2208643,5.4727268,0.043973263}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2914; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item466 - { - dataType="Object"; - class PositionInfo - { - position[]={4892.0942,416.14877,7954.5054}; - angles[]={6.2136984,5.4727268,0.051154058}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2915; - type="Land_HBarrier_Big_F"; - }; - class Item467 - { - dataType="Object"; - class PositionInfo - { - position[]={4897.9521,416.78091,7960.6646}; - angles[]={6.2248507,5.4727268,0.039979152}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2916; - type="Land_HBarrier_Big_F"; - atlOffset=6.1035156e-005; - }; - class Item468 - { - dataType="Object"; - class PositionInfo - { - position[]={4903.8101,417.39398,7966.8237}; - angles[]={6.2232571,5.4727268,0.043171391}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2917; - type="Land_HBarrier_Big_F"; - }; - class Item469 - { - dataType="Object"; - class PositionInfo - { - position[]={4909.668,418.53687,7972.9829}; - angles[]={6.1558776,5.4727268,0.1107436}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2918; - type="Land_HBarrier_Big_F"; - }; - class Item470 - { - dataType="Object"; - class PositionInfo - { - position[]={4933.792,418.38266,7955.9043}; - angles[]={6.2144923,3.9019301,0.035985984}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2919; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item471 - { - dataType="Object"; - class PositionInfo - { - position[]={4927.6328,418.564,7961.7622}; - angles[]={6.2144923,3.9019301,0.035985984}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2920; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item472 - { - dataType="Object"; - class PositionInfo - { - position[]={4921.4736,418.75778,7967.6201}; - angles[]={6.2384152,3.9019301,6.2807932}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2921; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item473 - { - dataType="Object"; - class PositionInfo - { - position[]={4915.3145,419.03503,7973.478}; - angles[]={6.2384152,3.9019301,6.2807932}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2922; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item474 - { - dataType="Object"; - class PositionInfo - { - position[]={4910.48,417.01147,7906.8062}; - angles[]={0,3.9019301,0}; - }; - side="Empty"; - class Attributes - { - }; - id=2923; - type="Land_BarGate_F"; - atlOffset=0.25006104; - }; - class Item475 - { - dataType="Object"; - class PositionInfo - { - position[]={4903.3315,418.53314,7922.4268}; - angles[]={0,0.76033735,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2924; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item476 - { - dataType="Object"; - class PositionInfo - { - position[]={4902.5767,418.6795,7980.7622}; - angles[]={6.1669126,2.3311338,0.11074414}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2925; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; - }; - class Item477 - { - dataType="Object"; - class PositionInfo - { - position[]={4896.7188,417.58588,7974.603}; - angles[]={6.2232571,2.3311338,0.033588443}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2926; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item478 - { - dataType="Object"; - class PositionInfo - { - position[]={4890.8608,416.99911,7968.4443}; - angles[]={6.2168837,2.3311338,0.039977662}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2927; - type="Land_HBarrier_Big_F"; - }; - class Item479 - { - dataType="Object"; - class PositionInfo - { - position[]={4885.0029,416.35916,7962.2852}; - angles[]={6.2136984,2.3311338,0.03838294}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2928; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; - }; - class Item480 - { - dataType="Object"; - class PositionInfo - { - position[]={4879.145,415.69302,7956.126}; - angles[]={6.2081265,2.3311338,0.043973263}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2929; - type="Land_HBarrier_Big_F"; - }; - class Item481 - { - dataType="Object"; - class PositionInfo - { - position[]={4873.2871,414.97211,7949.9668}; - angles[]={6.2089233,2.3311338,0.043971907}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2930; - type="Land_HBarrier_Big_F"; - }; - class Item482 - { - dataType="Object"; - class PositionInfo - { - position[]={4874.1626,414.51233,7943.269}; - angles[]={6.2089233,0.76033735,0.043971907}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2931; - type="Land_HBarrier_Big_F"; - }; - class Item483 - { - dataType="Object"; - class PositionInfo - { - position[]={4909.6543,422.22281,7980.5859}; - angles[]={0,0.76033735,0}; - }; - side="Empty"; - class Attributes - { - }; - id=2932; - type="Land_BarGate_F"; - atlOffset=0.25003052; - }; - class Item484 - { - dataType="Object"; - class PositionInfo - { - position[]={4908.6392,421.16699,7964.646}; - angles[]={0,2.3311338,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2933; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item485 - { - dataType="Object"; - class PositionInfo - { - position[]={4917.1221,421.88028,7964.8584}; - angles[]={0,3.9019301,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2934; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item486 - { - dataType="Object"; - class PositionInfo - { - position[]={4929.5161,416.70221,7943.0649}; - angles[]={0,2.3311338,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2935; - type="Land_Cargo_House_V1_F"; - }; - class Item487 - { - dataType="Object"; - class PositionInfo - { - position[]={4890.231,414.86676,7944.2021}; - angles[]={0,5.4727268,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2936; - type="Land_Cargo_House_V1_F"; - }; - class Item488 - { - dataType="Object"; - class PositionInfo - { - position[]={4885.0923,418.92673,7944.5347}; - angles[]={0,1.8075347,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2937; - type="Land_TTowerSmall_1_F"; - atlOffset=-3.0517578e-005; - }; - class Item489 - { - dataType="Object"; - class PositionInfo - { - position[]={4935.189,424.75406,7942.5}; - angles[]={0,2.3311338,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2938; - type="Land_TTowerSmall_2_F"; - atlOffset=3.0517578e-005; - }; - class Item490 - { - dataType="Object"; - class PositionInfo - { - position[]={4911.8145,419.05292,7922.6392}; - angles[]={0,5.4727268,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=2939; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=-3.0517578e-005; - }; - class Item491 - { - dataType="Object"; - class PositionInfo - { - position[]={4897.1182,416.59052,7955.8936}; - angles[]={6.2248507,5.4727268,0.039979152}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2940; - type="Land_Cargo40_military_green_F"; - atlOffset=-3.0517578e-005; - }; - class Item492 - { - dataType="Object"; - class PositionInfo - { - position[]={4899.1104,416.55951,7953.998}; - angles[]={6.2248507,5.4727268,0.039979152}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2941; - type="Land_Cargo40_military_green_F"; - atlOffset=3.0517578e-005; - }; - class Item493 - { - dataType="Object"; - class PositionInfo - { - position[]={4898.0239,419.19818,7955.0317}; - angles[]={6.2248507,5.4727268,0.039979152}; - }; - side="Empty"; - class Attributes - { - }; - id=2942; - type="Land_Cargo40_military_green_F"; - atlOffset=2.6217957; - }; - class Item494 - { - dataType="Object"; - class PositionInfo - { - position[]={4920.04,415.7933,7933.1016}; - angles[]={6.2344246,2.3311338,0.04876088}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=2943; - type="Land_Medevac_house_V1_F"; - }; - class Item495 - { - dataType="Layer"; - name="Open Ammo Dump_3"; - id=2945; - atlOffset=96.5; - }; - class Item496 - { - dataType="Layer"; - name="Vehicle Repair_3"; - id=2970; - atlOffset=96.5; - }; - class Item497 - { - dataType="Layer"; - name="Abandoned AA Gun Emplacement"; - id=3316; - atlOffset=96.5; - }; - class Item498 - { - dataType="Layer"; - name="Abandoned Field Hospital"; - id=3423; - atlOffset=96.5; - }; - class Item499 - { - dataType="Layer"; - name="Hasty Landing Zone"; - id=3470; - atlOffset=96.5; - }; - class Item500 - { - dataType="Layer"; - name="Landing Zone"; - id=3571; - atlOffset=96.5; - }; - class Item501 - { - dataType="Layer"; - name="Roadblock"; - id=3599; - atlOffset=96.5; - }; - class Item502 - { - dataType="Layer"; - name="Landing Zone"; - class Entities - { - items=51; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={4779.6255,416.77695,7202.6235}; - angles[]={0.0032018756,3.6792111,6.2559919}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3651; - type="Land_HBarrier_Big_F"; - atlOffset=0.001159668; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={4798.6406,416.00928,7191.8237}; - angles[]={0,3.6792111,6.2328305}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3652; - type="Land_HBarrier_Big_F"; - atlOffset=0.00076293945; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={4767.8003,417.03284,7199.7842}; - angles[]={0.0039967569,5.2789087,6.2663908}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3653; - type="Land_HBarrier_Big_F"; - atlOffset=0.0010375977; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={4801.3604,415.67633,7180.1406}; - angles[]={6.2767911,5.2789087,6.1253114}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3654; - type="Land_HBarrier_Big_F"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={4801.8047,419.39105,7186.1787}; - angles[]={0,4.5247526,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=3655; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={4758.292,417.1517,7182.9082}; - angles[]={6.2799835,5.2789087,0.0055992967}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3656; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={4772.791,416.46457,7204.6372}; - angles[]={0.0032018756,6.0856428,6.2655902}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3657; - type="Land_HBarrier_5_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={4791.4785,416.08893,7163.7227}; - angles[]={6.2687831,5.2789087,6.2408099}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3658; - type="Land_HBarrier_Big_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={4803.3354,415.22018,7186.8081}; - angles[]={6.1700716,1.3521285,6.2312312}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3659; - type="Land_HBarrier_5_F"; - atlOffset=0.0017089844; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={4761.063,417.08862,7170.4185}; - angles[]={6.2687874,3.6792111,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3660; - type="Land_HBarrier_Big_F"; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={4762.2617,416.60846,7198.3813}; - angles[]={0,0.48331404,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=3661; - type="Land_Cargo_House_V1_F"; - atlOffset=-3.0517578e-005; - }; - class Item11 - { - dataType="Object"; - class PositionInfo - { - position[]={4779.6348,416.46274,7160.0898}; - angles[]={6.2711854,3.6792111,6.2511969}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3662; - type="Land_HBarrier_Big_F"; - }; - class Item12 - { - dataType="Object"; - class PositionInfo - { - position[]={4758.229,420.85181,7176.2251}; - angles[]={0,1.4189048,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=3663; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item13 - { - dataType="Object"; - class PositionInfo - { - position[]={4756.3896,416.6507,7187.9858}; - angles[]={0,3.669332,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=3664; - type="Land_Cargo_House_V1_F"; - atlOffset=0.016052246; - }; - class Item14 - { - dataType="Object"; - class PositionInfo - { - position[]={4756.3896,416.72794,7175.8945}; - angles[]={0.0055992967,1.3521285,6.2799835}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3665; - type="Land_HBarrier_5_F"; - atlOffset=0.032867432; - }; - class Item15 - { - dataType="Object"; - class PositionInfo - { - position[]={4786.6553,415.75992,7158.6841}; - angles[]={6.2711854,6.0856428,6.2511969}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3666; - type="Land_HBarrier_5_F"; - atlOffset=0.0081787109; - }; - class Item16 - { - dataType="Object"; - class PositionInfo - { - position[]={4754.2842,417.24506,7166.8521}; - angles[]={6.2799835,5.2310181,6.2687874}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3667; - type="Land_Cargo10_light_green_F"; - atlOffset=-0.00024414063; - }; - class Item17 - { - dataType="Object"; - class PositionInfo - { - position[]={4801.5083,415.79175,7207.3301}; - angles[]={0.011198638,0.49141026,6.233624}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3668; - type="Land_HBarrier_Big_F"; - atlOffset=0.0086669922; - }; - class Item18 - { - dataType="Object"; - class PositionInfo - { - position[]={4755.4873,417.21854,7163.9849}; - angles[]={6.2799835,5.2310181,6.2687874}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3669; - type="Land_Cargo10_light_blue_F"; - atlOffset=-0.00024414063; - }; - class Item19 - { - dataType="Object"; - class PositionInfo - { - position[]={4789.1665,416.13577,7214.3091}; - angles[]={0.039977662,3.6600299,6.2456031}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3670; - type="Land_HBarrier_Big_F"; - atlOffset=0.00079345703; - }; - class Item20 - { - dataType="Object"; - class PositionInfo - { - position[]={4771.5869,416.58337,7152.0366}; - angles[]={6.2663836,0.51691675,6.2599902}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3671; - type="Land_HBarrier_Big_F"; - }; - class Item21 - { - dataType="Object"; - class PositionInfo - { - position[]={4749.269,417.32089,7173.2764}; - angles[]={6.2799835,5.2310181,0.0055992967}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3672; - type="Land_Cargo10_light_green_F"; - atlOffset=-0.0024414063; - }; - class Item22 - { - dataType="Object"; - class PositionInfo - { - position[]={4757.4634,416.99707,7159.7949}; - angles[]={6.2663875,3.6651783,6.2687874}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3673; - type="Land_HBarrier_Big_F"; - }; - class Item23 - { - dataType="Object"; - class PositionInfo - { - position[]={4750.2603,417.30533,7167.5825}; - angles[]={6.2799835,5.2310181,6.2687874}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3674; - type="Land_Cargo10_light_green_F"; - atlOffset=-0.00021362305; - }; - class Item24 - { - dataType="Object"; - class PositionInfo - { - position[]={4809.2974,415.44888,7203.3086}; - angles[]={0.026392808,0.52700472,6.2184763}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3675; - type="Land_HBarrier_Big_F"; - atlOffset=0.0086975098; - }; - class Item25 - { - dataType="Object"; - class PositionInfo - { - position[]={4781.4478,416.27454,7218.5063}; - angles[]={0.047963165,3.6600299,6.2352223}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3676; - type="Land_HBarrier_Big_F"; - atlOffset=0.0022888184; - }; - class Item26 - { - dataType="Object"; - class PositionInfo - { - position[]={4779.0366,416.12296,7148.0254}; - angles[]={6.1700692,0.51691675,6.2527947}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3677; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item27 - { - dataType="Object"; - class PositionInfo - { - position[]={4797.6094,415.38495,7215.0298}; - angles[]={0.046365164,0.5140667,6.2392149}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3678; - type="Land_HBarrier_3_F"; - atlOffset=0.0087890625; - }; - class Item28 - { - dataType="Object"; - class PositionInfo - { - position[]={4816.2012,414.35101,7179.6509}; - angles[]={6.1700721,5.2104931,6.2687874}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3679; - type="Land_HBarrier_Big_F"; - atlOffset=0.0059814453; - }; - class Item29 - { - dataType="Object"; - class PositionInfo - { - position[]={4747.3457,417.29813,7169.5288}; - angles[]={6.2799835,5.2310181,0.0055992967}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3680; - type="Land_Cargo10_light_green_F"; - atlOffset=-0.0024414063; - }; - class Item30 - { - dataType="Object"; - class PositionInfo - { - position[]={4762.6333,416.38208,7152.1929}; - angles[]={6.2663836,0.5140667,6.2599902}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3681; - type="Land_HBarrier_3_F"; - }; - class Item31 - { - dataType="Object"; - class PositionInfo - { - position[]={4749.8076,417.1539,7164.0649}; - angles[]={6.2799835,3.7007656,0.0055992967}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3682; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item32 - { - dataType="Object"; - class PositionInfo - { - position[]={4757.6089,417.06613,7212.0586}; - angles[]={0.0023920804,5.2597313,0.0055992967}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3683; - type="Land_HBarrier_Big_F"; - atlOffset=0.0024719238; - }; - class Item33 - { - dataType="Object"; - class PositionInfo - { - position[]={4802.8574,414.91241,7154.5249}; - angles[]={6.1874776,2.1166177,6.271987}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3684; - type="Land_HBarrier_Big_F"; - }; - class Item34 - { - dataType="Object"; - class PositionInfo - { - position[]={4743.5518,417.10837,7188.0083}; - angles[]={0.0039967569,2.1010666,0.0023920804}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3685; - type="Land_HBarrier_Big_F"; - atlOffset=0.0058898926; - }; - class Item35 - { - dataType="Object"; - class PositionInfo - { - position[]={4816.9614,414.51175,7199.2158}; - angles[]={0.03358667,0.52700472,6.0950394}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3686; - type="Land_HBarrier_Big_F"; - atlOffset=0.014862061; - }; - class Item36 - { - dataType="Object"; - class PositionInfo - { - position[]={4773.8462,416.39157,7222.7622}; - angles[]={0.047963165,3.6600299,6.271987}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3687; - type="Land_HBarrier_Big_F"; - atlOffset=0.0012207031; - }; - class Item37 - { - dataType="Object"; - class PositionInfo - { - position[]={4820.2983,414.09628,7187.291}; - angles[]={0.026395066,5.2104931,6.1299953}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3688; - type="Land_HBarrier_Big_F"; - atlOffset=0.0048522949; - }; - class Item38 - { - dataType="Object"; - class PositionInfo - { - position[]={4786.6362,415.40762,7143.7627}; - angles[]={6.1700692,0.51691675,6.2527947}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3689; - type="Land_HBarrier_Big_F"; - atlOffset=-3.0517578e-005; - }; - class Item39 - { - dataType="Object"; - class PositionInfo - { - position[]={4762.0601,416.69678,7219.71}; - angles[]={0.054346491,5.2597313,0.007209402}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3690; - type="Land_HBarrier_Big_F"; - atlOffset=0.002166748; - }; - class Item40 - { - dataType="Object"; - class PositionInfo - { - position[]={4798.4253,414.73672,7146.8569}; - angles[]={0.008802644,2.1166177,6.1574512}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3691; - type="Land_HBarrier_Big_F"; - atlOffset=3.0517578e-005; - }; - class Item41 - { - dataType="Object"; - class PositionInfo - { - position[]={4742.1558,417.1214,7168.6235}; - angles[]={6.2767911,3.7007656,0.0087958695}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3692; - type="Land_HBarrier_Big_F"; - atlOffset=0.0012512207; - }; - class Item42 - { - dataType="Object"; - class PositionInfo - { - position[]={4739.1758,417.12262,7180.4546}; - angles[]={0.0023920804,2.1010666,0.0055992967}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3693; - type="Land_HBarrier_Big_F"; - atlOffset=0.0063171387; - }; - class Item43 - { - dataType="Object"; - class PositionInfo - { - position[]={4767.2529,420.14902,7222.9741}; - angles[]={0,2.9935756,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=3694; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=-3.0517578e-005; - }; - class Item44 - { - dataType="Object"; - class PositionInfo - { - position[]={4793.0107,419.06738,7143.8506}; - angles[]={0,6.1171794,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=3695; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=0.0029907227; - }; - class Item45 - { - dataType="Object"; - class PositionInfo - { - position[]={4822.0352,413.22537,7194.335}; - angles[]={0.03358667,1.3337326,6.0950394}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3696; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; - }; - class Item46 - { - dataType="Object"; - class PositionInfo - { - position[]={4766.9624,415.91937,7224.6621}; - angles[]={0.047963165,6.0664654,6.271987}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3697; - type="Land_HBarrier_5_F"; - atlOffset=0.01260376; - }; - class Item47 - { - dataType="Object"; - class PositionInfo - { - position[]={4793.5298,414.67514,7141.8638}; - angles[]={6.1700692,2.9233611,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3698; - type="Land_HBarrier_5_F"; - atlOffset=0.0030822754; - }; - class Item48 - { - dataType="Object"; - class PositionInfo - { - position[]={4737.2534,416.64114,7173.563}; - angles[]={6.2767911,4.5075088,0.0023920804}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=3699; - type="Land_HBarrier_5_F"; - atlOffset=0.00042724609; - }; - class Item49 - { - dataType="Object"; - class PositionInfo - { - position[]={5666.7402,360.34012,5616.7847}; - angles[]={0,2.3030751,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7890; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=3.0517578e-005; - }; - class Item50 - { - dataType="Object"; - class PositionInfo - { - position[]={5732.6416,357.11926,5550.7334}; - angles[]={0,5.4741454,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7891; - type="Land_Cargo_Patrol_V1_F"; - }; - }; - id=3700; - atlOffset=-10.067444; - }; - class Item503 - { - dataType="Layer"; - name="Industrial Compound (Large)"; - id=3996; - atlOffset=96.5; - }; - class Item504 - { - dataType="Layer"; - name="Storage Facility and Warehouse"; - id=4280; - atlOffset=96.5; - }; - class Item505 - { - dataType="Layer"; - name="IDAP Refugee Camp Large"; - id=4597; - atlOffset=96.5; - }; - class Item506 - { - dataType="Layer"; - name="Basketball Court"; - id=4615; - atlOffset=96.5; - }; - class Item507 - { - dataType="Layer"; - name="Gas Station"; - id=4676; - atlOffset=96.5; - }; - class Item508 - { - dataType="Layer"; - name="Cargo Post"; - id=4692; - atlOffset=96.5; - }; - class Item509 - { - dataType="Layer"; - name="Bunker (Small) #1"; - id=4710; - atlOffset=96.5; - }; - class Item510 - { - dataType="Layer"; - name="Shoot House"; - id=5060; - atlOffset=96.5; - }; - class Item511 - { - dataType="Layer"; - name="Depot [BLU]"; - id=5115; - atlOffset=96.5; - }; - class Item512 - { - dataType="Layer"; - name="Hangar"; - id=5227; - atlOffset=96.5; - }; - class Item513 - { - dataType="Layer"; - name="Hangar"; - id=5339; - atlOffset=96.5; - }; - class Item514 - { - dataType="Layer"; - name="Factory Headquarters"; - id=5415; - atlOffset=96.5; - }; - class Item515 - { - dataType="Layer"; - name="Main Headquarters"; - id=5477; - atlOffset=96.5; - }; - class Item516 - { - dataType="Layer"; - name="Radar Dome"; - id=5539; - atlOffset=96.5; - }; - class Item517 - { - dataType="Layer"; - name="Fortified Comms Tower"; - id=5612; - atlOffset=96.5; - }; - class Item518 - { - dataType="Layer"; - name="Communications Post"; - id=5672; - atlOffset=96.5; - }; - class Item519 - { - dataType="Layer"; - name="Comms Post [BLU]"; - id=5708; - atlOffset=96.5; - }; - class Item520 - { - dataType="Layer"; - name="Comms Post [OPF]"; - id=5760; - atlOffset=96.5; - }; - class Item521 - { - dataType="Layer"; - name="Cargo HQ [BLU] #1"; - id=5851; - atlOffset=96.5; - }; - class Item522 - { - dataType="Layer"; - name="Cargo Tower [BLU]"; - id=5981; - atlOffset=96.5; - }; - class Item523 - { - dataType="Layer"; - name="Field Depot [BLU]"; - id=6077; - atlOffset=96.5; - }; - class Item524 - { - dataType="Layer"; - name="Field HQ [BLU]"; - id=6205; - atlOffset=96.5; - }; - class Item525 - { - dataType="Layer"; - name="Concrete Wall LZ"; - id=6319; - atlOffset=96.5; - }; - class Item526 - { - dataType="Layer"; - name="Heliport - Fortified [BLU]"; - id=6393; - atlOffset=96.5; - }; - class Item527 - { - dataType="Layer"; - name="Heliport [BLU]"; - id=6439; - atlOffset=96.5; - }; - class Item528 - { - dataType="Layer"; - name="Command Centre"; - id=6566; - atlOffset=96.5; - }; - class Item529 - { - dataType="Layer"; - name="Main Headquarters [BLU]"; - id=6757; - atlOffset=96.5; - }; - class Item530 - { - dataType="Layer"; - name="Headquarters"; - id=6794; - atlOffset=96.5; - }; - class Item531 - { - dataType="Layer"; - name="Headquarters (Fortified)"; - id=6858; - atlOffset=96.5; - }; - class Item532 - { - dataType="Layer"; - name="Military Compound"; - id=7018; - atlOffset=96.5; - }; - class Item533 - { - dataType="Layer"; - name="VIP Compound"; - id=7156; - atlOffset=96.5; - }; - class Item534 - { - dataType="Layer"; - name="Main Headquarters [OPF]"; - id=7410; - atlOffset=96.5; - }; - class Item535 - { - dataType="Layer"; - name="Main Headquarters [BLU]"; - id=7601; - atlOffset=96.5; - }; - class Item536 - { - dataType="Layer"; - name="Military Compound"; - id=7761; - atlOffset=96.5; - }; - class Item537 - { - dataType="Layer"; - name="Command Centre"; - class Entities - { - items=109; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,357.87314,5553.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7762; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.12460327; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,359.29453,5547.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7763; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.12945557; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,356.43808,5559.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7764; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.15838623; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={5663.6577,359.63678,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7765; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.050231934; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={5663.6577,355.63287,5562.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7766; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.015991211; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,355.34369,5577.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7767; - type="Land_Wall_IndCnc_4_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,355.53168,5589.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7768; - type="Land_Wall_IndCnc_4_F"; - atlOffset=6.1035156e-005; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,355.74692,5565.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7769; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.21279907; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,355.60849,5595.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7770; - type="Land_Wall_IndCnc_4_F"; - atlOffset=6.1035156e-005; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,355.43491,5583.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7771; - type="Land_Wall_IndCnc_4_F"; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.0952,355.35336,5571.7939}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7772; - type="Land_Wall_IndCnc_4_D_F"; - }; - class Item11 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,355.77921,5607.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7774; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item12 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,356.40292,5619.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7775; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item13 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,355.94751,5613.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7776; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item14 - { - dataType="Object"; - class PositionInfo - { - position[]={5660.5327,355.68811,5601.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7777; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item15 - { - dataType="Object"; - class PositionInfo - { - position[]={5663.6577,355.64755,5598.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7778; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item16 - { - dataType="Object"; - class PositionInfo - { - position[]={5663.4072,356.64963,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7779; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item17 - { - dataType="Object"; - class PositionInfo - { - position[]={5661.501,361.8172,5621.75}; - angles[]={0,4.1887903,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7780; - type="Land_LampHalogen_F"; - atlOffset=3.0517578e-005; - }; - class Item18 - { - dataType="Object"; - class PositionInfo - { - position[]={5690.0986,355.51215,5561.4287}; - angles[]={0.071078755,3.1415927,6.2408099}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7782; - type="Land_Cargo40_yellow_F"; - atlOffset=-0.0068359375; - }; - class Item19 - { - dataType="Object"; - class PositionInfo - { - position[]={5675.6577,357.61789,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7783; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item20 - { - dataType="Object"; - class PositionInfo - { - position[]={5693.6577,356.20917,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7784; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item21 - { - dataType="Object"; - class PositionInfo - { - position[]={5669.6577,358.66437,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7785; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item22 - { - dataType="Object"; - class PositionInfo - { - position[]={5681.6577,356.78302,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7786; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item23 - { - dataType="Object"; - class PositionInfo - { - position[]={5687.6577,356.44043,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7788; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item24 - { - dataType="Object"; - class PositionInfo - { - position[]={5668.1255,360.7196,5554.5}; - angles[]={0,5.497787,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7789; - type="Land_dp_smallTank_F"; - atlOffset=0.033294678; - }; - class Item25 - { - dataType="Object"; - class PositionInfo - { - position[]={5692.3755,356.70471,5557.5}; - angles[]={0,3.1402836,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - skill=0.2; - }; - id=7790; - type="Land_i_Shed_Ind_F"; - atlOffset=0.79580688; - }; - class Item26 - { - dataType="Object"; - class PositionInfo - { - position[]={5679.7393,355.19565,5582.6465}; - angles[]={6.2663875,5.6900353,6.2408113}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7791; - type="Land_Wreck_HMMWV_F"; - atlOffset=3.0517578e-005; - }; - class Item27 - { - dataType="Object"; - class PositionInfo - { - position[]={5670.5005,354.552,5579}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7792; - type="Land_i_Barracks_V1_F"; - atlOffset=3.0517578e-005; - }; - class Item28 - { - dataType="Object"; - class PositionInfo - { - position[]={5679.6196,354.86752,5585.8857}; - angles[]={6.2607903,0,6.2464013}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7793; - type="Land_GarbageBags_F"; - atlOffset=6.1035156e-005; - }; - class Item29 - { - dataType="Object"; - class PositionInfo - { - position[]={5676.4907,355.18573,5567.7778}; - angles[]={0.02399601,1.5707964,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7794; - type="Land_PaperBox_closed_F"; - atlOffset=3.0517578e-005; - }; - class Item30 - { - dataType="Object"; - class PositionInfo - { - position[]={5677.1211,354.72171,5570.6855}; - angles[]={0.02399601,0.7422815,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7795; - type="Land_JunkPile_F"; - atlOffset=3.0517578e-005; - }; - class Item31 - { - dataType="Object"; - class PositionInfo - { - position[]={5676.502,355.18808,5566.1538}; - angles[]={0.02399601,1.5707964,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7797; - type="Land_PaperBox_open_empty_F"; - atlOffset=3.0517578e-005; - }; - class Item32 - { - dataType="Object"; - class PositionInfo - { - position[]={5692.501,357.82565,5607}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7798; - type="Land_MilOffices_V1_F"; - atlOffset=0.026794434; - }; - class Item33 - { - dataType="Object"; - class PositionInfo - { - position[]={5687.4072,356.33978,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7799; - type="Land_Wall_IndCnc_4_F"; - }; - class Item34 - { - dataType="Object"; - class PositionInfo - { - position[]={5681.4072,356.46936,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7800; - type="Land_Wall_IndCnc_4_F"; - }; - class Item35 - { - dataType="Object"; - class PositionInfo - { - position[]={5693.4072,356.20032,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7801; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0049133301; - }; - class Item36 - { - dataType="Object"; - class PositionInfo - { - position[]={5669.4072,356.62573,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7802; - type="Land_Wall_IndCnc_4_F"; - atlOffset=6.1035156e-005; - }; - class Item37 - { - dataType="Object"; - class PositionInfo - { - position[]={5675.4468,356.60931,5623.312}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7803; - type="Land_Wall_IndCnc_4_D_F"; - atlOffset=3.0517578e-005; - }; - class Item38 - { - dataType="Object"; - class PositionInfo - { - position[]={5669.6577,355.60916,5598.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7804; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item39 - { - dataType="Object"; - class PositionInfo - { - position[]={5705.3916,353.90317,5562.3062}; - angles[]={0.071081273,3.9269907,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7805; - type="Land_BagFence_Round_F"; - atlOffset=3.0517578e-005; - }; - class Item40 - { - dataType="Object"; - class PositionInfo - { - position[]={5715.8921,353.3414,5563.1533}; - angles[]={0.016798066,2.3561945,6.2105131}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7806; - type="Land_BagFence_Round_F"; - atlOffset=3.0517578e-005; - }; - class Item41 - { - dataType="Object"; - class PositionInfo - { - position[]={5728.2676,352.32675,5563.6548}; - angles[]={0.015199739,3.1415927,6.1779771}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7807; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item42 - { - dataType="Object"; - class PositionInfo - { - position[]={5706.0166,354.05588,5559.8032}; - angles[]={0.071081273,1.5707964,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7808; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item43 - { - dataType="Object"; - class PositionInfo - { - position[]={5706.0166,354.25171,5557.0532}; - angles[]={0.071081273,1.5707964,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7809; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item44 - { - dataType="Object"; - class PositionInfo - { - position[]={5715.2671,353.52179,5560.6787}; - angles[]={0.067896426,1.5707964,6.2105141}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7810; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item45 - { - dataType="Object"; - class PositionInfo - { - position[]={5706.0166,354.44751,5554.3032}; - angles[]={0.071078755,1.5707964,6.2424107}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7811; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item46 - { - dataType="Object"; - class PositionInfo - { - position[]={5702.8994,353.98181,5562.9277}; - angles[]={0.021595482,3.1415927,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7812; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item47 - { - dataType="Object"; - class PositionInfo - { - position[]={5718.3926,353.14883,5563.7798}; - angles[]={0.016798066,0,6.2105131}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7813; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item48 - { - dataType="Object"; - class PositionInfo - { - position[]={5722.7505,352.88428,5555.875}; - angles[]={0.067896426,3.1421337,6.2105141}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7814; - type="Land_HelipadSquare_F"; - atlOffset=3.0517578e-005; - }; - class Item49 - { - dataType="Object"; - class PositionInfo - { - position[]={5717.6577,354.73694,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7815; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item50 - { - dataType="Object"; - class PositionInfo - { - position[]={5723.6577,354.28091,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7816; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item51 - { - dataType="Object"; - class PositionInfo - { - position[]={5705.6577,355.7338,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7817; - type="Land_Wall_IndCnc_4_F"; - atlOffset=6.1035156e-005; - }; - class Item52 - { - dataType="Object"; - class PositionInfo - { - position[]={5729.6577,353.61996,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7818; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item53 - { - dataType="Object"; - class PositionInfo - { - position[]={5699.6577,355.97397,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7819; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item54 - { - dataType="Object"; - class PositionInfo - { - position[]={5711.666,355.52176,5544.4932}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7820; - type="Land_Wall_IndCnc_4_D_F"; - atlOffset=6.1035156e-005; - }; - class Item55 - { - dataType="Object"; - class PositionInfo - { - position[]={5708.5474,355.76755,5547.5825}; - angles[]={0.12888117,3.1416101,6.2424107}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7821; - type="Land_FieldToilet_F"; - atlOffset=-0.0083007813; - }; - class Item56 - { - dataType="Object"; - class PositionInfo - { - position[]={5710.4224,355.69104,5547.5825}; - angles[]={0.12888117,3.4033921,6.2424107}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7822; - type="Land_FieldToilet_F"; - atlOffset=-0.0083312988; - }; - class Item57 - { - dataType="Object"; - class PositionInfo - { - position[]={5704.375,360.93454,5545.75}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7823; - type="Land_LampHalogen_F"; - atlOffset=6.1035156e-005; - }; - class Item58 - { - dataType="Object"; - class PositionInfo - { - position[]={5705.771,354.98596,5547.0293}; - angles[]={0.12888117,0,6.2424107}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7824; - type="Land_GarbagePallet_F"; - atlOffset=6.1035156e-005; - }; - class Item59 - { - dataType="Object"; - class PositionInfo - { - position[]={5706.8013,354.92633,5589.3452}; - angles[]={6.2559919,4.712389,6.2480001}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7825; - type="Land_Cargo20_cyan_F"; - atlOffset=-9.1552734e-005; - }; - class Item60 - { - dataType="Object"; - class PositionInfo - { - position[]={5711.4072,354.39612,5595.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7827; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0071105957; - }; - class Item61 - { - dataType="Object"; - class PositionInfo - { - position[]={5729.4072,353.27722,5595.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7828; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.011138916; - }; - class Item62 - { - dataType="Object"; - class PositionInfo - { - position[]={5723.4072,353.74918,5595.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7829; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.011138916; - }; - class Item63 - { - dataType="Object"; - class PositionInfo - { - position[]={5708.5327,354.19293,5586.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7830; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item64 - { - dataType="Object"; - class PositionInfo - { - position[]={5708.5327,354.36679,5592.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7831; - type="Land_Wall_IndCnc_4_F"; - }; - class Item65 - { - dataType="Object"; - class PositionInfo - { - position[]={5708.5327,354.01184,5580.7852}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7832; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0013427734; - }; - class Item66 - { - dataType="Object"; - class PositionInfo - { - position[]={5717.4072,354.07156,5595.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7833; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0071411133; - }; - class Item67 - { - dataType="Object"; - class PositionInfo - { - position[]={5723.5317,356.31952,5585}; - angles[]={0,1.5654486,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - skill=0.2; - }; - id=7834; - type="Land_Shed_Big_F"; - atlOffset=0.36413574; - }; - class Item68 - { - dataType="Object"; - class PositionInfo - { - position[]={5711.2505,354.20041,5578.375}; - angles[]={0,4.1887903,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7842; - type="Land_PortableLight_double_F"; - atlOffset=3.0517578e-005; - }; - class Item69 - { - dataType="Object"; - class PositionInfo - { - position[]={5709.3755,359.67838,5595.125}; - angles[]={0,5.497787,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7843; - type="Land_LampHalogen_F"; - }; - class Item70 - { - dataType="Object"; - class PositionInfo - { - position[]={5717.4072,355.59094,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7848; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0030212402; - }; - class Item71 - { - dataType="Object"; - class PositionInfo - { - position[]={5723.4072,355.33353,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7849; - type="Land_Wall_IndCnc_4_F"; - }; - class Item72 - { - dataType="Object"; - class PositionInfo - { - position[]={5711.4072,355.82919,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7850; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0030517578; - }; - class Item73 - { - dataType="Object"; - class PositionInfo - { - position[]={5729.4072,354.98303,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7851; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item74 - { - dataType="Object"; - class PositionInfo - { - position[]={5699.4072,356.061,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7852; - type="Land_Wall_IndCnc_4_F"; - }; - class Item75 - { - dataType="Object"; - class PositionInfo - { - position[]={5705.4072,355.93784,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7853; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0012817383; - }; - class Item76 - { - dataType="Object"; - class PositionInfo - { - position[]={5712.1382,354.96362,5616.7402}; - angles[]={6.1930332,5.7828341,6.2647853}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7854; - type="Land_GarbageBags_F"; - atlOffset=3.0517578e-005; - }; - class Item77 - { - dataType="Object"; - class PositionInfo - { - position[]={5711.2695,354.91754,5613.7354}; - angles[]={6.1930332,1.5707964,6.2647853}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7855; - type="Land_PaperBox_closed_F"; - atlOffset=3.0517578e-005; - }; - class Item78 - { - dataType="Object"; - class PositionInfo - { - position[]={5725.5005,372.70749,5610.125}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7856; - type="Land_TTowerBig_1_F"; - atlOffset=3.0517578e-005; - }; - class Item79 - { - dataType="Object"; - class PositionInfo - { - position[]={5722.9219,354.42667,5597.46}; - angles[]={6.2432065,0,6.2288389}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7857; - type="Land_Cargo20_light_green_F"; - atlOffset=-0.0020446777; - }; - class Item80 - { - dataType="Object"; - class PositionInfo - { - position[]={5711.2686,354.76498,5612.1084}; - angles[]={6.253592,1.5707964,6.259192}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7858; - type="Land_PaperBox_open_empty_F"; - }; - class Item81 - { - dataType="Object"; - class PositionInfo - { - position[]={5744.6768,350.80942,5559.0283}; - angles[]={0.050355144,5.497787,6.1811419}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7859; - type="Land_BagFence_Round_F"; - atlOffset=3.0517578e-005; - }; - class Item82 - { - dataType="Object"; - class PositionInfo - { - position[]={5745.2969,350.62015,5561.5239}; - angles[]={0.050355144,4.712389,6.1811419}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7860; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item83 - { - dataType="Object"; - class PositionInfo - { - position[]={5742.1572,351.099,5558.4023}; - angles[]={0.050355144,3.1415927,6.1811419}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7861; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item84 - { - dataType="Object"; - class PositionInfo - { - position[]={5731.4341,352.12979,5560.5537}; - angles[]={0.061521512,1.5707964,6.1779771}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7862; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item85 - { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,351.70953,5560.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7864; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item86 - { - dataType="Object"; - class PositionInfo - { - position[]={5735.6577,352.94452,5544.9106}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7865; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item87 - { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,352.43759,5548.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7866; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item88 - { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,352.07913,5554.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7867; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item89 - { - dataType="Object"; - class PositionInfo - { - position[]={5737.5,357.93982,5545.875}; - angles[]={0,1.0471976,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7868; - type="Land_LampHalogen_F"; - atlOffset=3.0517578e-005; - }; - class Item90 - { - dataType="Object"; - class PositionInfo - { - position[]={5737.5005,356.93988,5562.3755}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7869; - type="Land_LampHalogen_F"; - atlOffset=3.0517578e-005; - }; - class Item91 - { - dataType="Object"; - class PositionInfo - { - position[]={5730.7827,352.07062,5563.0293}; - angles[]={0.015199739,3.9269907,6.1779771}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7870; - type="Land_BagFence_Round_F"; - atlOffset=3.0517578e-005; - }; - class Item92 - { - dataType="Object"; - class PositionInfo - { - position[]={5744.6709,350.77725,5578.2568}; - angles[]={6.2352247,3.9269907,6.1874781}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7871; - type="Land_BagFence_Round_F"; - atlOffset=3.0517578e-005; - }; - class Item93 - { - dataType="Object"; - class PositionInfo - { - position[]={5745.2949,350.59827,5575.7759}; - angles[]={6.2352247,1.5707964,6.1874781}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7872; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item94 - { - dataType="Object"; - class PositionInfo - { - position[]={5742.1553,351.04874,5578.8813}; - angles[]={6.2352247,3.1415927,6.1874781}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7873; - type="Land_BagFence_Long_F"; - atlOffset=3.0517578e-005; - }; - class Item95 - { - dataType="Object"; - class PositionInfo - { - position[]={5733.7217,352.99646,5584.1475}; - angles[]={6.2352247,4.712389,6.1954107}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - }; - id=7874; - type="Land_Cargo40_military_green_F"; - atlOffset=-9.1552734e-005; - }; - class Item96 - { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,352.25272,5590.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7875; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0068969727; - }; - class Item97 - { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,351.66162,5578.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7876; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item98 - { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,351.94962,5584.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7877; - type="Land_Wall_IndCnc_4_F"; - atlOffset=3.0517578e-005; - }; - class Item99 - { - dataType="Object"; - class PositionInfo - { - position[]={5735.4072,352.82755,5595.9102}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7878; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.041473389; - }; - class Item100 - { - dataType="Object"; - class PositionInfo - { - position[]={5738.9453,352.52133,5596.062}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7879; - type="Land_Wall_IndCnc_4_D_F"; - atlOffset=0.043548584; - }; - class Item101 - { - dataType="Object"; - class PositionInfo - { - position[]={5738.5327,351.51578,5574.9106}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - skill=0.2; - }; - id=7880; - type="Land_Wall_IndCnc_Pole_F"; - atlOffset=6.1035156e-005; - }; - class Item102 + nAttributes=4; + }; + }; + class Item60 + { + dataType="Marker"; + position[]={5459.8188,4.5114121,11656.509}; + name="seaPatrol_3"; + type="Empty"; + id=525; + atlOffset=10.4767; + }; + class Item61 + { + dataType="Marker"; + position[]={899.90588,-2.0057058,11832.569}; + name="seaPatrol_4"; + type="Empty"; + id=526; + atlOffset=10.4767; + }; + class Item62 + { + dataType="Marker"; + position[]={3027.8069,2.2266998,8529.0439}; + name="seaPatrol_5"; + type="Empty"; + id=527; + atlOffset=10.4767; + }; + class Item63 + { + dataType="Marker"; + position[]={978.70819,-0.040159225,702.729}; + name="seaPatrol_6"; + type="Empty"; + id=528; + atlOffset=10.4767; + }; + class Item64 + { + dataType="Marker"; + position[]={3560.2771,-6.8308105,3182.5996}; + name="seaPatrol_7"; + type="Empty"; + id=529; + atlOffset=10.4767; + }; + class Item65 + { + dataType="Marker"; + position[]={5749.25,-7.1310101,2344.25}; + name="seaPatrol_8"; + type="Empty"; + id=530; + }; + class Item66 + { + dataType="Marker"; + position[]={7620.25,-8.875,3294.125}; + name="seaPatrol_10"; + type="Empty"; + id=532; + atlOffset=1.779027; + }; + class Item67 + { + dataType="Marker"; + position[]={8522.9141,2.2630234,3814.4736}; + name="seaPatrol_11"; + type="Empty"; + id=533; + atlOffset=10.4767; + }; + class Item68 + { + dataType="Marker"; + position[]={9290.0762,-4.8026781,3807.6021}; + name="seaPatrol_12"; + type="Empty"; + id=534; + atlOffset=10.4767; + }; + class Item69 + { + dataType="Marker"; + position[]={3344.8081,97.235451,3924.2493}; + name="road_1"; + type="hd_arrow"; + id=537; + atlOffset=-1.9511871; + }; + class Item70 + { + dataType="Marker"; + position[]={3792.2085,54.855759,4022.9133}; + name="road_2"; + type="hd_arrow"; + id=538; + atlOffset=-1.9511871; + }; + class Item71 + { + dataType="Marker"; + position[]={3968.5962,62.769188,4546.5127}; + name="road_3"; + type="hd_arrow"; + id=539; + atlOffset=-1.9511871; + }; + class Item72 + { + dataType="Marker"; + position[]={4313.1338,34.167179,4250.2256}; + name="road_4"; + type="hd_arrow"; + id=540; + atlOffset=-1.9511871; + }; + class Item73 + { + dataType="Marker"; + position[]={5062.6729,58.106449,3772.0818}; + name="road_5"; + type="hd_arrow"; + id=541; + atlOffset=-1.9511871; + }; + class Item74 + { + dataType="Marker"; + position[]={5951.0396,52.085911,3526.146}; + name="road_6"; + type="hd_arrow"; + id=542; + atlOffset=-1.9511871; + }; + class Item75 + { + dataType="Marker"; + position[]={6805.5649,80.418816,3504.238}; + name="road_7"; + type="hd_arrow"; + id=543; + atlOffset=-1.9511871; + }; + class Item76 + { + dataType="Marker"; + position[]={7515.189,24.038086,3867.199}; + name="road_8"; + type="hd_arrow"; + id=544; + atlOffset=-1.9962158; + }; + class Item77 + { + dataType="Marker"; + position[]={7921.5635,33.903698,4095.3789}; + name="road_9"; + type="hd_arrow"; + id=545; + atlOffset=-1.9511871; + }; + class Item78 + { + dataType="Marker"; + position[]={7627.2896,28.220585,4787.7188}; + name="road_10"; + type="hd_arrow"; + id=546; + atlOffset=-1.9511871; + }; + class Item79 + { + dataType="Marker"; + position[]={7107.0107,71.474724,5913.645}; + name="road_11"; + type="hd_arrow"; + id=547; + atlOffset=-1.9511871; + }; + class Item80 + { + dataType="Marker"; + position[]={7030.9258,97.153801,6764.1006}; + name="road_12"; + type="hd_arrow"; + id=548; + atlOffset=-1.9511871; + }; + class Item81 + { + dataType="Marker"; + position[]={7243.9956,165.60881,7771.7681}; + name="road_13"; + type="hd_arrow"; + id=549; + atlOffset=-1.9511871; + }; + class Item82 + { + dataType="Marker"; + position[]={7294.104,85.09877,8842.1563}; + name="road_14"; + type="hd_arrow"; + id=550; + atlOffset=-1.9511871; + }; + class Item83 + { + dataType="Marker"; + position[]={6629.5889,191.49059,9293.9961}; + name="road_15"; + type="hd_arrow"; + id=551; + atlOffset=-1.9511871; + }; + class Item84 + { + dataType="Marker"; + position[]={8163.3667,28.222548,9480.6104}; + name="road_16"; + type="hd_arrow"; + id=552; + atlOffset=-1.9511871; + }; + class Item85 + { + dataType="Marker"; + position[]={7468.5342,80.622108,9119.1592}; + name="road_17"; + type="hd_arrow"; + id=553; + atlOffset=-1.9511871; + }; + class Item86 + { + dataType="Marker"; + position[]={5970.4902,189.11472,9280.1641}; + name="road_18"; + type="hd_arrow"; + id=554; + }; + class Item87 + { + dataType="Marker"; + position[]={5196.2578,343.00293,9170.8027}; + name="road_19"; + type="hd_arrow"; + id=555; + atlOffset=-17.439423; + }; + class Item88 + { + dataType="Marker"; + position[]={4860.9658,393.61743,8432.3506}; + name="road_20"; + type="hd_arrow"; + id=556; + atlOffset=-1.9512024; + }; + class Item89 + { + dataType="Marker"; + position[]={4922.2153,407.42645,7354.0083}; + name="road_21"; + type="hd_arrow"; + id=557; + atlOffset=-1.9511719; + }; + class Item90 + { + dataType="Marker"; + position[]={4174.2476,381.46332,6480.6943}; + name="road_22"; + type="hd_arrow"; + id=558; + atlOffset=-1.9512024; + }; + class Item91 + { + dataType="Marker"; + position[]={3058.4907,222.3761,6334.5635}; + name="road_23"; + type="hd_arrow"; + id=559; + atlOffset=-1.9511871; + }; + class Item92 + { + dataType="Marker"; + position[]={3375.7668,120.64616,5182.2998}; + name="road_24"; + type="hd_arrow"; + id=560; + atlOffset=-1.9511871; + }; + class Item93 + { + dataType="Marker"; + position[]={7808.6372,31.142761,9909.6582}; + name="road_25"; + type="hd_arrow"; + id=561; + atlOffset=-1.9511871; + }; + class Item94 + { + dataType="Marker"; + position[]={7443.7866,26.908813,10655.921}; + name="road_26"; + type="hd_arrow"; + id=562; + atlOffset=-1.9511871; + }; + class Item95 + { + dataType="Marker"; + position[]={6492.2104,88.4114,10943.818}; + name="road_27"; + type="hd_arrow"; + id=563; + atlOffset=-1.9511871; + }; + class Item96 + { + dataType="Marker"; + position[]={4225.5396,310.06995,7875.4868}; + name="road_28"; + type="hd_arrow"; + id=564; + atlOffset=-1.9512024; + }; + class Item97 + { + dataType="Marker"; + position[]={3584.8003,120.46836,8686.3906}; + name="road_29"; + type="hd_arrow"; + id=565; + atlOffset=-1.9511871; + }; + class Item98 + { + dataType="Marker"; + position[]={2216.0876,184.90233,2970.9983}; + name="road_30"; + type="hd_arrow"; + id=566; + atlOffset=-1.9511871; + }; + class Item99 + { + dataType="Marker"; + position[]={1652.4279,79.741798,1621.9436}; + name="road_31"; + type="hd_arrow"; + id=567; + atlOffset=-1.9511871; + }; + class Item100 + { + dataType="Object"; + class PositionInfo + { + position[]={8254.5,11.974053,5971.625}; + angles[]={6.2137041,0,0.041573741}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=568; + type="Land_TentDome_F"; + class CustomAttributes + { + class Attribute0 { - dataType="Object"; - class PositionInfo - { - position[]={5737.5,357.83215,5595}; - angles[]={0,1.0471976,0}; - }; - side="Empty"; - flags=5; - class Attributes + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value { - skill=0.2; + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; }; - id=7881; - type="Land_LampHalogen_F"; }; - class Item103 + nAttributes=1; + }; + }; + class Item101 + { + dataType="Object"; + class PositionInfo + { + position[]={4033.425,368.12869,6328.9736}; + angles[]={6.2631893,2.4496236,6.2807684}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=927; + type="Land_HBarrier_5_F"; + atlOffset=0.0089416504; + }; + class Item102 + { + dataType="Object"; + class PositionInfo + { + position[]={4037.6604,368.28491,6332.689}; + angles[]={6.251997,2.4496236,0.090155795}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=928; + type="Land_HBarrier_5_F"; + }; + class Item103 + { + dataType="Object"; + class PositionInfo + { + position[]={4041.9512,368.51694,6336.3638}; + angles[]={0.050357513,2.4496236,0.008802644}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=929; + type="Land_HBarrier_5_F"; + atlOffset=-3.0517578e-005; + }; + class Item104 + { + dataType="Object"; + class PositionInfo + { + position[]={4046.3105,368.57745,6340.0449}; + angles[]={6.2519951,2.4496236,0.008802644}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=930; + type="Land_HBarrier_5_F"; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={4050.5405,368.7413,6343.7578}; + angles[]={6.2631893,2.4496236,0.15709321}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=931; + type="Land_HBarrier_5_F"; + }; + class Item106 + { + dataType="Object"; + class PositionInfo + { + position[]={4054.8022,369.16055,6347.4214}; + angles[]={0.12730548,2.4496236,0.010398259}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=932; + type="Land_HBarrier_5_F"; + }; + class Item107 + { + dataType="Object"; + class PositionInfo + { + position[]={4059.0764,368.90302,6351.0645}; + angles[]={6.2567925,2.4496236,0.010398259}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=933; + type="Land_HBarrier_5_F"; + }; + class Item108 + { + dataType="Object"; + class PositionInfo + { + position[]={4063.3584,369.31396,6354.6016}; + angles[]={6.2376194,2.4496236,0.22188357}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=934; + type="Land_HBarrier_5_F"; + }; + class Item109 + { + dataType="Object"; + class PositionInfo + { + position[]={4067.4624,370.27353,6355.3418}; + angles[]={6.2376194,4.0204201,0.22188357}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=935; + type="Land_HBarrier_5_F"; + }; + class Item110 + { + dataType="Object"; + class PositionInfo + { + position[]={4070.959,370.86581,6351.0317}; + angles[]={6.2376194,4.0204201,0.22188357}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=936; + type="Land_HBarrier_5_F"; + }; + class Item111 + { + dataType="Object"; + class PositionInfo + { + position[]={4074.5137,371.80081,6346.7383}; + angles[]={0.055143863,4.0204201,0.22188357}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=937; + type="Land_HBarrier_5_F"; + atlOffset=-3.0517578e-005; + }; + class Item112 + { + dataType="Object"; + class PositionInfo + { + position[]={4088.707,374.90762,6329.4624}; + angles[]={0.033584893,4.0204201,0.13752721}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=938; + type="Land_HBarrier_5_F"; + }; + class Item113 + { + dataType="Object"; + class PositionInfo + { + position[]={4092.2566,375.54526,6325.1064}; + angles[]={0.033584893,4.0204201,0.13752721}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=939; + type="Land_HBarrier_5_F"; + }; + class Item114 + { + dataType="Object"; + class PositionInfo + { + position[]={4063.0093,373.44043,6295.3867}; + angles[]={0.093329452,2.4496236,0.076648585}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=940; + type="Land_HBarrier_5_F"; + atlOffset=0.008972168; + }; + class Item115 + { + dataType="Object"; + class PositionInfo + { + position[]={4067.2449,373.9198,6299.1025}; + angles[]={6.2440076,2.4496236,0.20660846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=941; + type="Land_HBarrier_5_F"; + }; + class Item116 + { + dataType="Object"; + class PositionInfo + { + position[]={4071.5354,374.62775,6302.7769}; + angles[]={0.081418402,2.4496236,0.20660876}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=942; + type="Land_HBarrier_5_F"; + }; + class Item117 + { + dataType="Object"; + class PositionInfo + { + position[]={4075.8948,374.8494,6306.4585}; + angles[]={0.12179399,2.4496236,0.066304304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=943; + type="Land_HBarrier_5_F"; + }; + class Item118 + { + dataType="Object"; + class PositionInfo + { + position[]={4080.1248,374.80331,6310.1714}; + angles[]={0.076650925,2.4496236,0.11153467}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=944; + type="Land_HBarrier_5_F"; + atlOffset=-3.0517578e-005; + }; + class Item119 + { + dataType="Object"; + class PositionInfo + { + position[]={4088.6611,375.35663,6317.4775}; + angles[]={0.044770103,2.4496236,0.11074629}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=946; + type="Land_HBarrier_5_F"; + }; + class Item120 + { + dataType="Object"; + class PositionInfo + { + position[]={4092.9426,375.71387,6321.0151}; + angles[]={0.017602073,2.4496236,0.13752721}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=947; + type="Land_HBarrier_5_F"; + }; + class Item121 + { + dataType="Object"; + class PositionInfo + { + position[]={4045.8259,371.13068,6280.6299}; + angles[]={6.2703872,2.4496236,0.11469462}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=948; + type="Land_HBarrier_5_F"; + atlOffset=0.008972168; + }; + class Item122 + { + dataType="Object"; + class PositionInfo + { + position[]={4050.0615,371.6604,6284.3457}; + angles[]={6.2703824,2.4496236,0.16566703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=949; + type="Land_HBarrier_5_F"; + }; + class Item123 + { + dataType="Object"; + class PositionInfo + { + position[]={4054.3521,372.5163,6288.02}; + angles[]={0.04556872,2.4496236,0.19277626}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=950; + type="Land_HBarrier_5_F"; + }; + class Item124 + { + dataType="Object"; + class PositionInfo + { + position[]={4058.7114,373.17953,6291.7017}; + angles[]={0.093329452,2.4496236,0.14615022}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=951; + type="Land_HBarrier_5_F"; + }; + class Item125 + { + dataType="Object"; + class PositionInfo + { + position[]={4017.2703,367.85052,6312.3364}; + angles[]={0.01919602,4.0204201,0.022397626}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=952; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item126 + { + dataType="Object"; + class PositionInfo + { + position[]={4020.7666,368.01163,6308.0264}; + angles[]={0.01919602,4.0204201,0.022397626}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=953; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item127 + { + dataType="Object"; + class PositionInfo + { + position[]={4024.3215,368.17368,6303.7324}; + angles[]={0.01919602,4.0204201,0.022397626}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=954; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item128 + { + dataType="Object"; + class PositionInfo + { + position[]={4027.8118,368.49951,6299.4175}; + angles[]={0.093328811,4.0204201,0.065506957}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=955; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item129 + { + dataType="Object"; + class PositionInfo + { + position[]={4042.0645,370.71722,6282.1011}; + angles[]={6.2824135,4.0204201,0.10283634}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=956; + type="Land_HBarrier_5_F"; + }; + class Item130 + { + dataType="Object"; + class PositionInfo + { + position[]={4083.5095,375.01721,6313.1006}; + angles[]={0.073466748,2.4496236,0.11153467}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=957; + type="Land_HBarrier_3_F"; + }; + class Item131 + { + dataType="Object"; + class PositionInfo + { + position[]={4085.7415,375.36447,6311.8086}; + angles[]={0.076650925,4.0204201,0.11153467}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=958; + type="Land_HBarrier_3_F"; + atlOffset=-3.0517578e-005; + }; + class Item132 + { + dataType="Object"; + class PositionInfo + { + position[]={4088.6384,375.55267,6314.3359}; + angles[]={0.044770103,4.0204201,0.11074629}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=960; + type="Land_HBarrier_3_F"; + }; + class Item133 + { + dataType="Object"; + class PositionInfo + { + position[]={4089.7659,375.77853,6310.1646}; + angles[]={0.076650925,2.4496236,0.065504223}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=962; + type="Land_HBarrier_5_F"; + }; + class Item134 + { + dataType="Object"; + class PositionInfo + { + position[]={4066.8149,371.07294,6355.0269}; + angles[]={0,3.2350218,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=963; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item135 + { + dataType="Object"; + class PositionInfo + { + position[]={4065.2849,370.73346,6355.1523}; + angles[]={0,1.6642255,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=964; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item136 + { + dataType="Object"; + class PositionInfo + { + position[]={4063.3596,370.19583,6352.8965}; + angles[]={0,2.4496236,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=965; + type="Land_Mil_WallBig_4m_F"; + }; + class Item137 + { + dataType="Object"; + class PositionInfo + { + position[]={4068.2927,371.28784,6352.4385}; + angles[]={0,4.0204201,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=967; + type="Land_Mil_WallBig_4m_F"; + }; + class Item138 + { + dataType="Object"; + class PositionInfo + { + position[]={4047.0435,372.25665,6283.3877}; + angles[]={0,5.5776987,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=968; + type="Land_Mil_WallBig_4m_F"; + atlOffset=3.0517578e-005; + }; + class Item139 + { + dataType="Object"; + class PositionInfo + { + position[]={4045.1492,372.00967,6281.106}; + angles[]={0,4.7923007,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=969; + type="Land_Mil_WallBig_Corner_F"; + atlOffset=3.0517578e-005; + }; + class Item140 + { + dataType="Object"; + class PositionInfo + { + position[]={4043.6172,371.83658,6281.2114}; + angles[]={0,0.079911709,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=970; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item141 + { + dataType="Object"; + class PositionInfo + { + position[]={4042.1047,371.69272,6283.7793}; + angles[]={0,0.86530972,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=971; + type="Land_Mil_WallBig_4m_F"; + atlOffset=3.0517578e-005; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={4065.9795,382.20563,6345.1738}; + angles[]={0,4.0204201,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=972; + type="Land_Cargo_Tower_V1_F"; + }; + class Item143 + { + dataType="Object"; + class PositionInfo + { + position[]={4057.5608,369.73318,6340.2783}; + angles[]={0,5.5912161,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=973; + type="Land_Cargo_House_V1_F"; + }; + class Item144 + { + dataType="Object"; + class PositionInfo + { + position[]={4050.3733,368.66434,6334.6602}; + angles[]={0,5.5912161,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=974; + type="Land_Cargo_House_V1_F"; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={4037.5454,372.24295,6326.4058}; + angles[]={0,2.4496236,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=975; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item146 + { + dataType="Object"; + class PositionInfo + { + position[]={4031.3748,369.14676,6295}; + angles[]={0.093328811,4.0204201,0.065506957}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=976; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item147 + { + dataType="Object"; + class PositionInfo + { + position[]={4034.8713,369.77951,6290.6899}; + angles[]={0.093328811,4.0204201,0.065506957}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=977; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item148 + { + dataType="Object"; + class PositionInfo + { + position[]={4038.426,370.34518,6286.3965}; + angles[]={6.2824135,4.0204201,0.10283634}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=978; + type="Land_HBarrier_5_F"; + }; + class Item149 + { + dataType="Object"; + class PositionInfo + { + position[]={4078.1357,372.6694,6342.3071}; + angles[]={0.055143863,4.0204201,0.16255426}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=979; + type="Land_HBarrier_5_F"; + }; + class Item150 + { + dataType="Object"; + class PositionInfo + { + position[]={4081.6321,373.48071,6337.9971}; + angles[]={0.055143863,4.0204201,0.16255426}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=980; + type="Land_HBarrier_5_F"; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={4085.187,374.21869,6333.7036}; + angles[]={0.03358667,4.0204201,0.16255391}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=981; + type="Land_HBarrier_5_F"; + atlOffset=-3.0517578e-005; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={4088.0725,379.17902,6323.6523}; + angles[]={0,4.0204201,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=982; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={4045.2263,375.30365,6287.3867}; + angles[]={0,5.5912161,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=983; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=3.0517578e-005; + }; + class Item154 + { + dataType="Object"; + class PositionInfo + { + position[]={4023.3635,372.14783,6312.665}; + angles[]={0,2.4496236,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=984; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={4018.7,367.86789,6316.0986}; + angles[]={0.0032018756,2.4496236,0.022394964}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=985; + type="Land_HBarrier_5_F"; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={4022.9355,367.98447,6319.8145}; + angles[]={6.2799835,2.4496236,0.028793031}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=986; + type="Land_HBarrier_5_F"; + }; + class Item157 + { + dataType="Object"; + class PositionInfo + { + position[]={4022.1667,367.97507,6323.7988}; + angles[]={6.2799835,4.0204201,0.028793031}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=987; + type="Land_HBarrier_5_F"; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={4029.6157,368.15906,6330.4814}; + angles[]={6.2631893,4.0204201,6.2807684}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=988; + type="Land_HBarrier_5_F"; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={4062.2747,372.67062,6302.6265}; + angles[]={0,2.4312165,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=989; + type="Land_Cargo_House_V1_F"; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={4055.1919,372.12656,6296.877}; + angles[]={0,2.4312165,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=990; + type="Land_Cargo_House_V1_F"; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={5297.6279,347.69464,9084.3838}; + angles[]={6.2033553,2.3561945,6.1930332}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1117; + type="Land_HBarrier_5_F"; + atlOffset=0.0090026855; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={5301.498,347.6626,9088.4785}; + angles[]={6.1677032,2.3561945,6.1692791}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1118; + type="Land_HBarrier_5_F"; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={5305.4272,347.68393,9092.5371}; + angles[]={6.1677032,2.3561945,6.1692791}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1119; + type="Land_HBarrier_5_F"; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={5309.4238,347.49637,9096.6094}; + angles[]={6.2009706,2.3561945,6.1362514}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1120; + type="Land_HBarrier_5_F"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={5313.2891,347.25186,9100.7012}; + angles[]={6.2272429,2.3561945,6.1472297}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1121; + type="Land_HBarrier_5_F"; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={5317.1904,346.9447,9104.7461}; + angles[]={6.2272429,2.3561945,6.1472297}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1122; + type="Land_HBarrier_5_F"; + }; + class Item167 + { + dataType="Object"; + class PositionInfo + { + position[]={5321.1064,346.61484,9108.7715}; + angles[]={6.2312322,2.3561945,6.1433039}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1123; + type="Land_HBarrier_5_F"; + }; + class Item168 + { + dataType="Object"; + class PositionInfo + { + position[]={5325.0396,346.26328,9112.6934}; + angles[]={6.2424073,2.3561945,6.1543045}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1124; + type="Land_HBarrier_5_F"; + }; + class Item169 + { + dataType="Object"; + class PositionInfo + { + position[]={5329.0566,345.7883,9113.8125}; + angles[]={6.2424073,3.9269907,6.1543045}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1125; + type="Land_HBarrier_5_F"; + }; + class Item170 + { + dataType="Object"; + class PositionInfo + { + position[]={5332.9399,345.10416,9109.8477}; + angles[]={6.2352209,3.9269907,6.1543045}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1126; + type="Land_HBarrier_5_F"; + }; + class Item171 + { + dataType="Object"; + class PositionInfo + { + position[]={5336.8799,344.4043,9105.9043}; + angles[]={6.2352209,3.9269907,6.1543045}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1127; + type="Land_HBarrier_5_F"; + }; + class Item172 + { + dataType="Object"; + class PositionInfo + { + position[]={5352.623,341.85834,9090.0283}; + angles[]={6.2480001,3.9269907,6.176394}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1128; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item173 + { + dataType="Object"; + class PositionInfo + { + position[]={5356.5635,341.30914,9086.0225}; + angles[]={6.2575908,3.9269907,6.1763935}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1129; + type="Land_HBarrier_5_F"; + atlOffset=6.1035156e-005; + }; + class Item174 + { + dataType="Object"; + class PositionInfo + { + position[]={5330.2163,342.20804,9053.7031}; + angles[]={6.1464443,2.3561945,6.2695923}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1130; + type="Land_HBarrier_5_F"; + atlOffset=0.0090026855; + }; + class Item175 + { + dataType="Object"; + class PositionInfo + { + position[]={5334.0869,342.34171,9057.7988}; + angles[]={6.2296381,2.3561945,6.1858935}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1131; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item176 + { + dataType="Object"; + class PositionInfo + { + position[]={5338.0156,342.17578,9061.8574}; + angles[]={6.2296381,2.3561945,6.1858935}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1132; + type="Land_HBarrier_5_F"; + atlOffset=6.1035156e-005; + }; + class Item177 + { + dataType="Object"; + class PositionInfo + { + position[]={5342.0127,341.99832,9065.9297}; + angles[]={6.2344222,2.3561945,6.188271}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1133; + type="Land_HBarrier_5_F"; + atlOffset=6.1035156e-005; + }; + class Item178 + { + dataType="Object"; + class PositionInfo + { + position[]={5345.8779,341.81906,9070.0205}; + angles[]={6.2376156,2.3561945,6.1851001}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1134; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item179 + { + dataType="Object"; + class PositionInfo + { + position[]={5353.6953,341.37241,9078.0918}; + angles[]={6.2503963,2.3561945,6.183517}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1135; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item180 + { + dataType="Object"; + class PositionInfo + { + position[]={5357.6279,341.09232,9082.0127}; + angles[]={6.2575908,2.3561945,6.1763935}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1136; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item181 + { + dataType="Object"; + class PositionInfo + { + position[]={5314.4844,341.27185,9037.4082}; + angles[]={6.2113104,2.3561945,6.1922379}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1137; + type="Land_HBarrier_5_F"; + atlOffset=0.008972168; + }; + class Item182 + { + dataType="Object"; + class PositionInfo + { + position[]={5318.355,341.29443,9041.5029}; + angles[]={6.1890626,2.3561945,6.1922388}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1138; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item183 + { + dataType="Object"; + class PositionInfo + { + position[]={5322.2842,341.43469,9045.5615}; + angles[]={6.1677032,2.3561945,6.2136955}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1139; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item184 + { + dataType="Object"; + class PositionInfo + { + position[]={5326.2813,341.68423,9049.6338}; + angles[]={6.1237497,2.3561945,6.2695832}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1140; + type="Land_HBarrier_5_F"; + atlOffset=6.1035156e-005; + }; + class Item185 + { + dataType="Object"; + class PositionInfo + { + position[]={5283.0957,348.39148,9066.3125}; + angles[]={0,3.9269907,6.0988994}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1141; + type="Land_HBarrier_5_F"; + }; + class Item186 + { + dataType="Object"; + class PositionInfo + { + position[]={5286.9785,347.65698,9062.3477}; + angles[]={6.2129035,3.9269907,6.0988994}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1142; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item187 + { + dataType="Object"; + class PositionInfo + { + position[]={5290.9189,346.65039,9058.4043}; + angles[]={6.2129035,3.9269907,6.1004472}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1143; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item188 + { + dataType="Object"; + class PositionInfo + { + position[]={5294.7959,345.65439,9054.4336}; + angles[]={6.2129035,3.9269907,6.1004472}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1144; + type="Land_HBarrier_5_F"; + }; + class Item189 + { + dataType="Object"; + class PositionInfo + { + position[]={5310.6025,341.82657,9038.5215}; + angles[]={6.2049446,3.9269907,6.1284318}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1145; + type="Land_HBarrier_5_F"; + }; + class Item190 + { + dataType="Object"; + class PositionInfo + { + position[]={5348.9746,341.71964,9073.2529}; + angles[]={6.2376156,2.3561945,6.1851001}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1146; + type="Land_HBarrier_3_F"; + atlOffset=9.1552734e-005; + }; + class Item191 + { + dataType="Object"; + class PositionInfo + { + position[]={5351.3174,341.44,9072.1748}; + angles[]={6.2376156,3.9269907,6.1851025}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1147; + type="Land_HBarrier_3_F"; + atlOffset=9.1552734e-005; + }; + class Item192 + { + dataType="Object"; + class PositionInfo + { + position[]={5353.9658,341.30014,9074.9609}; + angles[]={6.2392149,3.9269907,6.183517}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1148; + type="Land_HBarrier_3_F"; + atlOffset=9.1552734e-005; + }; + class Item193 + { + dataType="Object"; + class PositionInfo + { + position[]={5355.4775,340.91299,9070.9131}; + angles[]={6.2392149,2.3561945,6.183517}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1149; + type="Land_HBarrier_5_F"; + atlOffset=9.1552734e-005; + }; + class Item194 + { + dataType="Object"; + class PositionInfo + { + position[]={5328.4414,346.81259,9113.4385}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1150; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item195 + { + dataType="Object"; + class PositionInfo + { + position[]={5326.9063,347.0108,9113.4209}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1151; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item196 + { + dataType="Object"; + class PositionInfo + { + position[]={5325.2002,347.11646,9110.9951}; + angles[]={0,2.3561945,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1152; + type="Land_Mil_WallBig_4m_F"; + }; + class Item197 + { + dataType="Object"; + class PositionInfo + { + position[]={5330.1543,346.47989,9111}; + angles[]={0,3.9269907,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1153; + type="Land_Mil_WallBig_4m_F"; + }; + class Item198 + { + dataType="Object"; + class PositionInfo + { + position[]={5315.4395,342.40305,9040.2676}; + angles[]={0,5.4842696,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1154; + type="Land_Mil_WallBig_4m_F"; + atlOffset=3.0517578e-005; + }; + class Item199 + { + dataType="Object"; + class PositionInfo + { + position[]={5313.7666,342.3248,9037.8184}; + angles[]={0,4.6988716,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1155; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item200 + { + dataType="Object"; + class PositionInfo + { + position[]={5312.2314,342.47437,9037.7813}; + angles[]={0,6.2696681,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1156; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item201 + { + dataType="Object"; + class PositionInfo + { + position[]={5310.4858,342.94638,9040.1963}; + angles[]={0,0.77188063,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1157; + type="Land_Mil_WallBig_4m_F"; + atlOffset=3.0517578e-005; + }; + class Item202 + { + dataType="Object"; + class PositionInfo + { + position[]={5328.5288,357.49762,9103.5508}; + angles[]={0,3.9269907,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1158; + type="Land_Cargo_Tower_V1_F"; + }; + class Item203 + { + dataType="Object"; + class PositionInfo + { + position[]={5320.6035,346.03317,9097.8906}; + angles[]={0,5.497787,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1159; + type="Land_Cargo_House_V1_F"; + }; + class Item204 + { + dataType="Object"; + class PositionInfo + { + position[]={5313.9717,346.41049,9091.627}; + angles[]={0,5.497787,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1160; + type="Land_Cargo_House_V1_F"; + }; + class Item205 + { + dataType="Object"; + class PositionInfo + { + position[]={5301.9697,351.26028,9082.2119}; + angles[]={0,2.3561945,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1161; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item206 + { + dataType="Object"; + class PositionInfo + { + position[]={5298.7559,344.63632,9050.3672}; + angles[]={6.2129035,3.9269907,6.1004472}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1162; + type="Land_HBarrier_5_F"; + }; + class Item207 + { + dataType="Object"; + class PositionInfo + { + position[]={5302.6392,343.68677,9046.4023}; + angles[]={6.2049446,3.9269907,6.1284318}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1163; + type="Land_HBarrier_5_F"; + }; + class Item208 + { + dataType="Object"; + class PositionInfo + { + position[]={5306.5791,342.763,9042.459}; + angles[]={6.2049446,3.9269907,6.1284318}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1164; + type="Land_HBarrier_5_F"; + }; + class Item209 + { + dataType="Object"; + class PositionInfo + { + position[]={5340.8994,343.70682,9101.8301}; + angles[]={6.2352223,3.9269907,6.1598163}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1165; + type="Land_HBarrier_5_F"; + }; + class Item210 + { + dataType="Object"; + class PositionInfo + { + position[]={5344.7827,343.06232,9097.8652}; + angles[]={6.2479987,3.9269907,6.1598158}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1166; + type="Land_HBarrier_5_F"; + }; + class Item211 + { + dataType="Object"; + class PositionInfo + { + position[]={5348.7227,342.43497,9093.9219}; + angles[]={6.2479987,3.9269907,6.1598158}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1167; + type="Land_HBarrier_5_F"; + }; + class Item212 + { + dataType="Object"; + class PositionInfo + { + position[]={5352.5332,345.85291,9084.1836}; + angles[]={0,3.9269907,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1168; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item213 + { + dataType="Object"; + class PositionInfo + { + position[]={5313.2573,346.16705,9044.0801}; + angles[]={0,5.497787,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1169; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item214 + { + dataType="Object"; + class PositionInfo + { + position[]={5289.1318,351.82944,9067.208}; + angles[]={0,2.3561945,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1170; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item215 + { + dataType="Object"; + class PositionInfo + { + position[]={5284.168,348.51593,9070.1914}; + angles[]={6.20892,2.3561945,6.1716509}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1171; + type="Land_HBarrier_5_F"; + }; + class Item216 + { + dataType="Object"; + class PositionInfo + { + position[]={5288.0381,348.36307,9074.2861}; + angles[]={6.208921,2.3561945,6.1276526}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1172; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item217 + { + dataType="Object"; + class PositionInfo + { + position[]={5286.9014,348.63992,9078.1816}; + angles[]={6.2551947,3.9269907,6.1993804}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1173; + type="Land_HBarrier_5_F"; + }; + class Item218 + { + dataType="Object"; + class PositionInfo + { + position[]={5293.6943,348.13287,9085.5293}; + angles[]={6.2033553,3.9269907,6.1930332}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1174; + type="Land_HBarrier_5_F"; + }; + class Item219 + { + dataType="Object"; + class PositionInfo + { + position[]={5328.8096,342.96939,9060.8438}; + angles[]={0,2.3377874,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1175; + type="Land_Cargo_House_V1_F"; + atlOffset=-3.0517578e-005; + }; + class Item220 + { + dataType="Object"; + class PositionInfo + { + position[]={5322.2939,342.47278,9054.458}; + angles[]={0,2.3377874,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1176; + type="Land_Cargo_House_V1_F"; + }; + class Item221 + { + dataType="Object"; + class PositionInfo + { + position[]={4962.4741,41.897171,2223.6052}; + angles[]={6.1954112,1.3261855,6.2655869}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1238; + type="Land_HBarrier_5_F"; + atlOffset=0.0089454651; + }; + class Item222 + { + dataType="Object"; + class PositionInfo + { + position[]={4960.9561,42.386879,2229.0313}; + angles[]={6.2025609,1.3261855,6.2503982}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1239; + type="Land_HBarrier_5_F"; + }; + class Item223 + { + dataType="Object"; + class PositionInfo + { + position[]={4959.4995,42.875633,2234.489}; + angles[]={6.2025609,1.3261855,6.2503982}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1240; + type="Land_HBarrier_5_F"; + }; + class Item224 + { + dataType="Object"; + class PositionInfo + { + position[]={4958.0654,43.395023,2240.0117}; + angles[]={6.1922369,1.3261855,6.2503963}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1241; + type="Land_HBarrier_5_F"; + }; + class Item225 + { + dataType="Object"; + class PositionInfo + { + position[]={4956.5479,44.116455,2245.4316}; + angles[]={6.1043177,1.3261855,0.056738663}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1242; + type="Land_HBarrier_5_F"; + }; + class Item226 + { + dataType="Object"; + class PositionInfo + { + position[]={4955.0889,44.936512,2250.8589}; + angles[]={6.1938243,1.3261855,0.056738663}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1243; + type="Land_HBarrier_5_F"; + }; + class Item227 + { + dataType="Object"; + class PositionInfo + { + position[]={4953.6533,45.341473,2256.2886}; + angles[]={6.1938243,1.3261855,0.056738663}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1244; + type="Land_HBarrier_5_F"; + }; + class Item228 + { + dataType="Object"; + class PositionInfo + { + position[]={4952.3164,45.803558,2261.6792}; + angles[]={6.1574526,1.3261855,0.093327537}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1245; + type="Land_HBarrier_5_F"; + atlOffset=3.8146973e-006; + }; + class Item229 + { + dataType="Object"; + class PositionInfo + { + position[]={4953.4243,46.471718,2265.6995}; + angles[]={6.1401691,2.8969817,0.093328178}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1246; + type="Land_HBarrier_5_F"; + }; + class Item230 + { + dataType="Object"; + class PositionInfo + { + position[]={4958.8228,47.128147,2266.9875}; + angles[]={6.1819329,2.8969817,0.051155224}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1247; + type="Land_HBarrier_5_F"; + atlOffset=-3.8146973e-006; + }; + class Item231 + { + dataType="Object"; + class PositionInfo + { + position[]={4964.2319,47.48246,2268.3352}; + angles[]={6.1819329,2.8969817,0.016798066}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1248; + type="Land_HBarrier_5_F"; + }; + class Item232 + { + dataType="Object"; + class PositionInfo + { + position[]={4985.9473,48.232868,2273.6587}; + angles[]={6.182725,2.8969817,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1249; + type="Land_HBarrier_5_F"; + atlOffset=-3.8146973e-006; + }; + class Item233 + { + dataType="Object"; + class PositionInfo + { + position[]={4991.4097,48.393692,2274.9746}; + angles[]={6.186686,2.8969817,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1250; + type="Land_HBarrier_5_F"; + atlOffset=-3.8146973e-006; + }; + class Item234 + { + dataType="Object"; + class PositionInfo + { + position[]={5005.5532,44.386177,2235.749}; + angles[]={6.176393,1.3261855,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1251; + type="Land_HBarrier_5_F"; + atlOffset=0.0089416504; + }; + class Item235 + { + dataType="Object"; + class PositionInfo + { + position[]={5004.0352,44.949726,2241.1753}; + angles[]={6.1756024,1.3261855,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1252; + type="Land_HBarrier_5_F"; + }; + class Item236 + { + dataType="Object"; + class PositionInfo + { + position[]={5002.5786,45.527477,2246.6328}; + angles[]={6.1756024,1.3261855,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1253; + type="Land_HBarrier_5_F"; + }; + class Item237 + { + dataType="Object"; + class PositionInfo + { + position[]={5001.145,46.112488,2252.1558}; + angles[]={6.1756024,1.3261855,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1254; + type="Land_HBarrier_5_F"; + }; + class Item238 + { + dataType="Object"; + class PositionInfo + { + position[]={4999.6274,46.685715,2257.5759}; + angles[]={6.1756024,1.3261855,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1255; + type="Land_HBarrier_5_F"; + }; + class Item239 + { + dataType="Object"; + class PositionInfo + { + position[]={4996.7329,47.781715,2268.4326}; + angles[]={6.186686,1.3261855,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1256; + type="Land_HBarrier_5_F"; + atlOffset=-3.8146973e-006; + }; + class Item240 + { + dataType="Object"; + class PositionInfo + { + position[]={4995.3955,48.298138,2273.8228}; + angles[]={6.186686,1.3261855,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1257; + type="Land_HBarrier_5_F"; + atlOffset=-3.8146973e-006; + }; + class Item241 + { + dataType="Object"; + class PositionInfo + { + position[]={5011.4243,42.195663,2213.8728}; + angles[]={6.185894,1.3261855,0.0071928473}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1258; + type="Land_HBarrier_5_F"; + atlOffset=0.0089187622; + }; + class Item242 + { + dataType="Object"; + class PositionInfo + { + position[]={5009.9063,42.705418,2219.2991}; + angles[]={6.185894,1.3261855,0.0071928473}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1259; + type="Land_HBarrier_5_F"; + atlOffset=3.8146973e-006; + }; + class Item243 + { + dataType="Object"; + class PositionInfo + { + position[]={5008.4497,43.227638,2224.7571}; + angles[]={6.185894,1.3261855,0.0071928473}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1260; + type="Land_HBarrier_5_F"; + atlOffset=3.8146973e-006; + }; + class Item244 + { + dataType="Object"; + class PositionInfo + { + position[]={5007.0166,43.802856,2230.2803}; + angles[]={6.1771851,1.3261855,0.0071928473}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1261; + type="Land_HBarrier_5_F"; + }; + class Item245 + { + dataType="Object"; + class PositionInfo + { + position[]={4970.4858,40.341072,2201.8433}; + angles[]={6.1898575,2.8969817,0.053548392}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1262; + type="Land_HBarrier_5_F"; + }; + class Item246 + { + dataType="Object"; + class PositionInfo + { + position[]={4975.8838,40.732716,2203.1309}; + angles[]={6.1851015,2.8969817,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1263; + type="Land_HBarrier_5_F"; + }; + class Item247 + { + dataType="Object"; + class PositionInfo + { + position[]={4981.293,40.951897,2204.4788}; + angles[]={6.1851015,2.8969817,0.015998369}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1264; + type="Land_HBarrier_5_F"; + }; + class Item248 + { + dataType="Object"; + class PositionInfo + { + position[]={4986.6929,41.152351,2205.7585}; + angles[]={6.187479,2.8969817,0.013597663}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1265; + type="Land_HBarrier_5_F"; + atlOffset=3.8146973e-006; + }; + class Item249 + { + dataType="Object"; + class PositionInfo + { + position[]={5008.4712,41.885048,2211.1184}; + angles[]={6.1914434,2.8969817,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1266; + type="Land_HBarrier_5_F"; + }; + class Item250 + { + dataType="Object"; + class PositionInfo + { + position[]={4998.4502,47.200615,2261.8948}; + angles[]={6.1756024,1.3261855,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1267; + type="Land_HBarrier_3_F"; + atlOffset=3.4332275e-005; + }; + class Item251 + { + dataType="Object"; + class PositionInfo + { + position[]={5000.5806,47.362778,2263.3481}; + angles[]={6.186686,2.8969817,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1268; + type="Land_HBarrier_3_F"; + atlOffset=2.6702881e-005; + }; + class Item252 + { + dataType="Object"; + class PositionInfo + { + position[]={4999.5557,47.7173,2267.053}; + angles[]={6.186686,2.8969817,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1269; + type="Land_HBarrier_3_F"; + atlOffset=2.2888184e-005; + }; + class Item253 + { + dataType="Object"; + class PositionInfo + { + position[]={5003.8042,47.60022,2266.2651}; + angles[]={6.186686,1.3261855,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1270; + type="Land_HBarrier_5_F"; + atlOffset=2.6702881e-005; + }; + class Item254 + { + dataType="Object"; + class PositionInfo + { + position[]={4953.4287,47.328228,2264.9795}; + angles[]={0,2.1115837,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1271; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item255 + { + dataType="Object"; + class PositionInfo + { + position[]={4952.6533,47.064831,2263.6543}; + angles[]={0,0.54078722,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1272; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item256 + { + dataType="Object"; + class PositionInfo + { + position[]={4953.8545,46.813824,2260.9429}; + angles[]={0,1.3261855,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1273; + type="Land_Mil_WallBig_4m_F"; + atlOffset=3.8146973e-006; + }; + class Item257 + { + dataType="Object"; + class PositionInfo + { + position[]={4956.4014,47.636757,2265.1924}; + angles[]={0,2.8969817,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1274; + type="Land_Mil_WallBig_4m_F"; + }; + class Item258 + { + dataType="Object"; + class PositionInfo + { + position[]={5009.4648,43.355576,2216.1636}; + angles[]={0,4.4542608,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1275; + type="Land_Mil_WallBig_4m_F"; + atlOffset=3.8146973e-006; + }; + class Item259 + { + dataType="Object"; + class PositionInfo + { + position[]={5010.7026,43.097927,2213.469}; + angles[]={0,3.6688626,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1276; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item260 + { + dataType="Object"; + class PositionInfo + { + position[]={5009.9448,42.955864,2212.1333}; + angles[]={0,5.2396593,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1277; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item261 + { + dataType="Object"; + class PositionInfo + { + position[]={5006.9756,42.896549,2211.8801}; + angles[]={0,6.0250568,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1278; + type="Land_Mil_WallBig_4m_F"; + }; + class Item262 + { + dataType="Object"; + class PositionInfo + { + position[]={4961.9502,58.634171,2259.9641}; + angles[]={0,2.8969817,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1279; + type="Land_Cargo_Tower_V1_F"; + atlOffset=3.8146973e-006; + }; + class Item263 + { + dataType="Object"; + class PositionInfo + { + position[]={4962.7222,45.270168,2250.2561}; + angles[]={0,4.4677782,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1280; + type="Land_Cargo_House_V1_F"; + }; + class Item264 + { + dataType="Object"; + class PositionInfo + { + position[]={4964.6782,43.891815,2241.3457}; + angles[]={0,4.4677782,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1281; + type="Land_Cargo_House_V1_F"; + }; + class Item265 + { + dataType="Object"; + class PositionInfo + { + position[]={4966.5713,46.585381,2226.2095}; + angles[]={0,1.3261855,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1282; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item266 + { + dataType="Object"; + class PositionInfo + { + position[]={4992.2173,41.344883,2207.0601}; + angles[]={6.1874795,2.8969817,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1283; + type="Land_HBarrier_5_F"; + }; + class Item267 + { + dataType="Object"; + class PositionInfo + { + position[]={4997.6157,41.509453,2208.3481}; + angles[]={6.1914439,2.8969817,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1284; + type="Land_HBarrier_5_F"; + atlOffset=-3.8146973e-006; + }; + class Item268 + { + dataType="Object"; + class PositionInfo + { + position[]={5003.0244,41.68882,2209.6958}; + angles[]={6.1914434,2.8969817,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1285; + type="Land_HBarrier_5_F"; + }; + class Item269 + { + dataType="Object"; + class PositionInfo + { + position[]={4969.7935,47.70343,2269.6838}; + angles[]={6.186686,2.8969817,0.012000273}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1286; + type="Land_HBarrier_5_F"; + }; + class Item270 + { + dataType="Object"; + class PositionInfo + { + position[]={4975.1919,47.891357,2270.9719}; + angles[]={6.186686,2.8969817,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1287; + type="Land_HBarrier_5_F"; + }; + class Item271 + { + dataType="Object"; + class PositionInfo + { + position[]={4980.6006,48.05513,2272.3196}; + angles[]={6.182725,2.8969817,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1288; + type="Land_HBarrier_5_F"; + atlOffset=-3.8146973e-006; + }; + class Item272 + { + dataType="Object"; + class PositionInfo + { + position[]={4990.9111,52.12603,2270.573}; + angles[]={0,2.8969817,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1289; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item273 + { + dataType="Object"; + class PositionInfo + { + position[]={5005.0732,46.520428,2216.2554}; + angles[]={0,4.4677782,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1290; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item274 + { + dataType="Object"; + class PositionInfo + { + position[]={4972.8252,45.183952,2207.4792}; + angles[]={0,1.3261855,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1291; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item275 + { + dataType="Object"; + class PositionInfo + { + position[]={4967.7119,40.465336,2204.7595}; + angles[]={6.1898575,1.3261855,0.053548392}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1292; + type="Land_HBarrier_5_F"; + }; + class Item276 + { + dataType="Object"; + class PositionInfo + { + position[]={4966.1938,40.898476,2210.1855}; + angles[]={6.1851006,1.3261855,0.058334891}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1293; + type="Land_HBarrier_5_F"; + }; + class Item277 + { + dataType="Object"; + class PositionInfo + { + position[]={4962.269,40.793339,2211.2166}; + angles[]={6.1898575,2.8969817,6.2703824}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1294; + type="Land_HBarrier_5_F"; + }; + class Item278 + { + dataType="Object"; + class PositionInfo + { + position[]={4959.4663,41.696327,2220.823}; + angles[]={6.1954112,2.8969817,6.2655869}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1295; + type="Land_HBarrier_5_F"; + atlOffset=3.8146973e-006; + }; + class Item279 + { + dataType="Object"; + class PositionInfo + { + position[]={4998.708,44.538174,2238.2185}; + angles[]={0,1.3077784,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1296; + type="Land_Cargo_House_V1_F"; + }; + class Item280 + { + dataType="Object"; + class PositionInfo + { + position[]={5000.8276,43.608299,2229.3455}; + angles[]={0,1.3077784,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1297; + type="Land_Cargo_House_V1_F"; + }; + class Item281 + { + dataType="Object"; + class PositionInfo + { + position[]={2348.6714,151.92503,5053.7852}; + angles[]={0.14536762,2.7296197,0.10520938}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1358; + type="Land_HBarrier_5_F"; + atlOffset=0.0089569092; + }; + class Item282 + { + dataType="Object"; + class PositionInfo + { + position[]={2353.7688,152.25368,5056.1855}; + angles[]={0.14536762,2.7296197,0.14458497}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1359; + type="Land_HBarrier_5_F"; + }; + class Item283 + { + dataType="Object"; + class PositionInfo + { + position[]={2358.9077,152.44916,5058.5308}; + angles[]={0.1866035,2.7296197,0.10283692}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1360; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item284 + { + dataType="Object"; + class PositionInfo + { + position[]={2364.1147,152.61568,5060.8647}; + angles[]={0.18660383,2.7296197,0.14536762}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1361; + type="Land_HBarrier_5_F"; + }; + class Item285 + { + dataType="Object"; + class PositionInfo + { + position[]={2369.2061,154.08754,5063.2637}; + angles[]={6.2272449,2.7296197,0.28631079}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1362; + type="Land_HBarrier_5_F"; + }; + class Item286 + { + dataType="Object"; + class PositionInfo + { + position[]={2374.3142,155.25,5065.6069}; + angles[]={0.13831063,2.7296197,0.098877132}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1363; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item287 + { + dataType="Object"; + class PositionInfo + { + position[]={2379.4285,155.5407,5067.9268}; + angles[]={0.13831063,2.7296197,0.12258328}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1364; + type="Land_HBarrier_5_F"; + }; + class Item288 + { + dataType="Object"; + class PositionInfo + { + position[]={2384.5215,156.11339,5070.1431}; + angles[]={0.084597312,2.7296197,0.17576718}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1365; + type="Land_HBarrier_5_F"; + }; + class Item289 + { + dataType="Object"; + class PositionInfo + { + position[]={2388.6702,156.85144,5069.7202}; + angles[]={0.084597312,4.300416,0.14693274}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1366; + type="Land_HBarrier_5_F"; + }; + class Item290 + { + dataType="Object"; + class PositionInfo + { + position[]={2390.8394,157.60567,5064.6118}; + angles[]={0.084597312,4.300416,0.14693274}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1367; + type="Land_HBarrier_5_F"; + }; + class Item291 + { + dataType="Object"; + class PositionInfo + { + position[]={2393.0691,158.29936,5059.5029}; + angles[]={0.06152248,4.300416,0.14693274}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1368; + type="Land_HBarrier_5_F"; + }; + class Item292 + { + dataType="Object"; + class PositionInfo + { + position[]={2401.9358,160.77696,5038.9775}; + angles[]={0.053548392,4.300416,0.14144853}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1369; + type="Land_HBarrier_5_F"; + }; + class Item293 + { + dataType="Object"; + class PositionInfo + { + position[]={2404.1433,161.36533,5033.8105}; + angles[]={0.052750662,4.300416,0.14144853}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1370; + type="Land_HBarrier_5_F"; + }; + class Item294 + { + dataType="Object"; + class PositionInfo + { + position[]={2367.8218,157.1301,5013.3306}; + angles[]={0.051155224,2.7296197,0.15162733}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1371; + type="Land_HBarrier_5_F"; + atlOffset=0.0089569092; + }; + class Item295 + { + dataType="Object"; + class PositionInfo + { + position[]={2372.9192,157.77159,5015.731}; + angles[]={0.055941612,2.7296197,0.14693396}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1372; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item296 + { + dataType="Object"; + class PositionInfo + { + position[]={2378.0581,158.39348,5018.0767}; + angles[]={0.055941612,2.7296197,0.14458331}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1373; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item297 + { + dataType="Object"; + class PositionInfo + { + position[]={2383.2651,159.04448,5020.4102}; + angles[]={0.049559005,2.7296197,0.1508448}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1374; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item298 + { + dataType="Object"; + class PositionInfo + { + position[]={2388.3564,159.69522,5022.8096}; + angles[]={0.049559005,2.7296197,0.14615022}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1375; + type="Land_HBarrier_5_F"; + }; + class Item299 + { + dataType="Object"; + class PositionInfo + { + position[]={2398.5793,160.92145,5027.4722}; + angles[]={0.054347586,2.7296197,0.14301735}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1376; + type="Land_HBarrier_5_F"; + }; + class Item300 + { + dataType="Object"; + class PositionInfo + { + position[]={2403.6716,161.5224,5029.689}; + angles[]={0.054346491,2.7296197,0.13987978}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1377; + type="Land_HBarrier_5_F"; + }; + class Item301 + { + dataType="Object"; + class PositionInfo + { + position[]={2347.2295,154.54169,5003.897}; + angles[]={0.053548392,2.7296197,0.15709588}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1378; + type="Land_HBarrier_5_F"; + atlOffset=0.0089111328; + }; + class Item302 + { + dataType="Object"; + class PositionInfo + { + position[]={2352.3269,155.20221,5006.2979}; + angles[]={0.053549506,2.7296197,0.1531899}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1379; + type="Land_HBarrier_5_F"; + }; + class Item303 + { + dataType="Object"; + class PositionInfo + { + position[]={2357.4658,155.84399,5008.6431}; + angles[]={0.060724311,2.7296197,0.14615022}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1380; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item304 + { + dataType="Object"; + class PositionInfo + { + position[]={2362.6729,156.46858,5010.9771}; + angles[]={0.060724311,2.7296197,0.14615144}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1381; + type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; + }; + class Item305 + { + dataType="Object"; + class PositionInfo + { + position[]={2328.5479,149.12187,5042.2603}; + angles[]={0.1484984,4.300416,0.15475382}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1382; + type="Land_HBarrier_5_F"; + }; + class Item306 + { + dataType="Object"; + class PositionInfo + { + position[]={2330.717,150.18909,5037.1519}; + angles[]={0.04796192,4.300416,0.15475343}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1383; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item307 + { + dataType="Object"; + class PositionInfo + { + position[]={2332.947,150.7822,5032.043}; + angles[]={0.04796192,4.300416,0.15475343}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1384; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item308 + { + dataType="Object"; + class PositionInfo + { + position[]={2335.1086,151.36292,5026.9312}; + angles[]={0.043971907,4.300416,0.15865555}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1385; + type="Land_HBarrier_5_F"; + }; + class Item309 + { + dataType="Object"; + class PositionInfo + { + position[]={2344.021,153.89305,5006.3506}; + angles[]={0.053548392,4.300416,0.15709588}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1386; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item310 + { + dataType="Object"; + class PositionInfo + { + position[]={2392.4189,160.24309,5024.6895}; + angles[]={0.052750662,2.7296197,0.14301692}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1387; + type="Land_HBarrier_3_F"; + atlOffset=4.5776367e-005; + }; + class Item311 + { + dataType="Object"; + class PositionInfo + { + position[]={2394.207,160.59871,5022.8311}; + angles[]={0.052750662,4.300416,0.14301692}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1388; + type="Land_HBarrier_3_F"; + atlOffset=4.5776367e-005; + }; + class Item312 + { + dataType="Object"; + class PositionInfo + { + position[]={2397.6892,161.01421,5024.459}; + angles[]={0.052750662,4.300416,0.14301692}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1389; + type="Land_HBarrier_3_F"; + atlOffset=3.0517578e-005; + }; + class Item313 + { + dataType="Object"; + class PositionInfo + { + position[]={2397.6201,161.17453,5020.1387}; + angles[]={0.052750662,2.7296197,0.14301692}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1390; + type="Land_HBarrier_5_F"; + atlOffset=4.5776367e-005; + }; + class Item314 + { + dataType="Object"; + class PositionInfo + { + position[]={2387.9607,157.71671,5069.5962}; + angles[]={0,3.515018,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1391; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item315 + { + dataType="Object"; + class PositionInfo + { + position[]={2386.5249,157.42923,5070.1396}; + angles[]={0,1.9442216,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1392; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item316 + { + dataType="Object"; + class PositionInfo + { + position[]={2384.0513,157.12822,5068.5039}; + angles[]={0,2.7296197,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1393; + type="Land_Mil_WallBig_4m_F"; + }; + class Item317 + { + dataType="Object"; + class PositionInfo + { + position[]={2388.6655,158.06613,5066.7007}; + angles[]={0,4.300416,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1394; + type="Land_Mil_WallBig_4m_F"; + }; + class Item318 + { + dataType="Object"; + class PositionInfo + { + position[]={2349.1616,155.67412,5006.2114}; + angles[]={0,5.8576946,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1395; + type="Land_Mil_WallBig_4m_F"; + atlOffset=-1.5258789e-005; + }; + class Item319 + { + dataType="Object"; + class PositionInfo + { + position[]={2346.7104,155.37578,5004.5415}; + angles[]={0,5.0722971,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1396; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item320 + { + dataType="Object"; + class PositionInfo + { + position[]={2345.2673,155.11908,5005.0659}; + angles[]={0,0.35990763,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1397; + type="Land_Mil_WallBig_Corner_F"; + }; + class Item321 + { + dataType="Object"; + class PositionInfo + { + position[]={2344.5234,154.84613,5007.9521}; + angles[]={0,1.1453059,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1398; + type="Land_Mil_WallBig_4m_F"; + atlOffset=-1.5258789e-005; + }; + class Item322 + { + dataType="Object"; + class PositionInfo + { + position[]={2384.4351,169.19572,5060.3579}; + angles[]={0,4.300416,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1399; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-1.5258789e-005; + }; + class Item323 + { + dataType="Object"; + class PositionInfo + { + position[]={2374.9912,155.88187,5057.9795}; + angles[]={0,5.871212,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1400; + type="Land_Cargo_House_V1_F"; + }; + class Item324 + { + dataType="Object"; + class PositionInfo + { + position[]={2366.531,154.10805,5054.5664}; + angles[]={0,5.871212,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1401; + type="Land_Cargo_House_V1_F"; + }; + class Item325 + { + dataType="Object"; + class PositionInfo + { + position[]={2351.9219,157.02867,5050.1787}; + angles[]={0,2.7296197,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1402; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item326 + { + dataType="Object"; + class PositionInfo + { + position[]={2337.3123,151.9852,5021.7012}; + angles[]={0.055941612,4.300416,0.15865518}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1403; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item327 + { + dataType="Object"; + class PositionInfo + { + position[]={2339.4814,152.61514,5016.5928}; + angles[]={0.055941612,4.300416,0.15709549}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1404; + type="Land_HBarrier_5_F"; + }; + class Item328 + { + dataType="Object"; + class PositionInfo + { + position[]={2341.7114,153.25206,5011.4839}; + angles[]={0.053548392,4.300416,0.15709588}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1405; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; + }; + class Item329 + { + dataType="Object"; + class PositionInfo + { + position[]={2395.3257,158.95834,5054.2437}; + angles[]={0.063913256,4.300416,0.14458331}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1406; + type="Land_HBarrier_5_F"; + }; + class Item330 + { + dataType="Object"; + class PositionInfo + { + position[]={2397.4949,159.59212,5049.1353}; + angles[]={0.053548392,4.300416,0.14458331}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1407; + type="Land_HBarrier_5_F"; + }; + class Item331 + { + dataType="Object"; + class PositionInfo + { + position[]={2399.7246,160.21852,5044.0264}; + angles[]={0.053548392,4.300416,0.14458331}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1408; + type="Land_HBarrier_5_F"; + atlOffset=0.027923584; + }; + class Item332 + { + dataType="Object"; + class PositionInfo + { + position[]={2399.72,164.91855,5033.5688}; + angles[]={0,4.300416,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1409; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item333 + { + dataType="Object"; + class PositionInfo + { + position[]={2348.5205,158.5448,5010.5566}; + angles[]={0,5.871212,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1410; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-1.5258789e-005; + }; + class Item334 + { + dataType="Object"; + class PositionInfo + { + position[]={2334.4949,154.39862,5040.8921}; + angles[]={0,2.7296197,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1411; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item335 + { + dataType="Object"; + class PositionInfo + { + position[]={2330.9617,148.9416,5045.481}; + angles[]={0.19893382,2.7296197,0.10362818}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1412; + type="Land_HBarrier_5_F"; + }; + class Item336 + { + dataType="Object"; + class PositionInfo + { + position[]={2336.0591,148.98776,5047.8813}; + angles[]={0.19893382,2.7296197,0.10362818}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1413; + type="Land_HBarrier_5_F"; + }; + class Item337 + { + dataType="Object"; + class PositionInfo + { + position[]={2336.4214,148.71373,5051.9233}; + angles[]={6.2232571,4.300416,0.10362761}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1414; + type="Land_HBarrier_5_F"; + }; + class Item338 + { + dataType="Object"; + class PositionInfo + { + position[]={2345.427,151.20723,5056.2866}; + angles[]={0.14536762,4.300416,0.10520938}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1415; + type="Land_HBarrier_5_F"; + }; + class Item339 + { + dataType="Object"; + class PositionInfo + { + position[]={2369.1165,156.89172,5020.4912}; + angles[]={0,2.7112126,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1416; + type="Land_Cargo_House_V1_F"; + atlOffset=-1.5258789e-005; + }; + class Item340 + { + dataType="Object"; + class PositionInfo + { + position[]={2360.7205,155.79449,5016.9233}; + angles[]={0,2.7112126,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1417; + type="Land_Cargo_House_V1_F"; + }; + class Item341 + { + dataType="Object"; + class PositionInfo + { + position[]={9652.0791,49.150009,3340.9382}; + angles[]={0,3.1606307,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1418; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item342 + { + dataType="Object"; + class PositionInfo + { + position[]={9686.5098,43.794998,3912.8296}; + angles[]={0,1.6034911,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1419; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item343 + { + dataType="Object"; + class PositionInfo + { + position[]={9754.7529,43.789967,3951.5425}; + angles[]={0,4.6890874,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1420; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item344 + { + dataType="Object"; + class PositionInfo + { + position[]={11323.313,38.138653,4143.7534}; + angles[]={0,3.9176283,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1421; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item345 + { + dataType="Object"; + class PositionInfo + { + position[]={7696.9443,10.607181,3388.3284}; + angles[]={0,4.4722281,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1422; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item346 + { + dataType="Object"; + class PositionInfo + { + position[]={3635.4219,7.4650002,3248.6873}; + angles[]={0,3.3896317,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1423; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item347 + { + dataType="Layer"; + name="Open Ammo Dump"; + id=1424; + atlOffset=96.5; + }; + class Item348 + { + dataType="Layer"; + name="Vehicle Repair"; + id=1449; + atlOffset=96.5; + }; + class Item349 + { + dataType="Layer"; + name="Camp Audacity"; + id=1883; + atlOffset=96.5; + }; + class Item350 + { + dataType="Logic"; + class PositionInfo + { + position[]={6984.3989,124.74949,10021.305}; + angles[]={0,0,0.083803542}; + }; + areaSize[]={1,0,5}; + flags=1; + id=1884; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 { - dataType="Object"; - class PositionInfo - { - position[]={5740.8755,354.83295,5569.0005}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value { - skill=0.2; + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; }; - id=7882; - type="Land_BarGate_F"; - atlOffset=0.20944214; }; - class Item104 + class Attribute1 { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,353.51553,5614.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value { - skill=0.2; + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; }; - id=7883; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.0059814453; }; - class Item105 + nAttributes=2; + }; + }; + class Item351 + { + dataType="Object"; + class PositionInfo + { + position[]={6984.2583,125.46266,10021.116}; + angles[]={0,4.7399645,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1886; + type="Land_Wall_IndCnc_4_F"; + }; + class Item352 + { + dataType="Logic"; + class PositionInfo + { + position[]={6999.396,125.01,9944.4404}; + angles[]={0,5.3208961,0}; + }; + areaSize[]={1,0,5}; + flags=1; + id=1887; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,354.13724,5620.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value { - skill=0.2; + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; }; - id=7884; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.013275146; }; - class Item106 + class Attribute1 { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,353.14023,5608.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value { - skill=0.2; + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; }; - id=7885; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.01651001; }; - class Item107 + nAttributes=2; + }; + }; + class Item353 + { + dataType="Object"; + class PositionInfo + { + position[]={6999.8633,125.91182,9944.1416}; + angles[]={0,3.706985,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1889; + type="Land_ConcreteWall_01_l_8m_F"; + }; + class Item354 + { + dataType="Logic"; + class PositionInfo + { + position[]={7060.5503,125.01,10000.053}; + angles[]={0,6.0281544,0}; + }; + areaSize[]={1,0,5}; + flags=1; + id=1890; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 { - dataType="Object"; - class PositionInfo - { - position[]={5735.4072,354.64154,5622.9102}; - }; - side="Empty"; - flags=5; - class Attributes + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value { - skill=0.2; + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; }; - id=7886; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.023345947; }; - class Item108 + class Attribute1 { - dataType="Object"; - class PositionInfo - { - position[]={5738.5322,352.84094,5602.0356}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=5; - class Attributes + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value { - skill=0.2; + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; }; - id=7887; - type="Land_Wall_IndCnc_4_F"; - atlOffset=0.010040283; }; + nAttributes=2; + }; + }; + class Item355 + { + dataType="Object"; + class PositionInfo + { + position[]={7060.0483,125.91182,10001.388}; + angles[]={0,1.3515491,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1891; + type="Land_ConcreteWall_01_l_8m_F"; + }; + class Item356 + { + dataType="Object"; + class PositionInfo + { + position[]={7061.0254,125.91,9997}; + angles[]={0,1.3411363,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1892; + type="Land_ConcreteWall_01_l_4m_F"; + }; + class Item357 + { + dataType="Layer"; + name="Open Ammo Dump_1"; + id=1955; + atlOffset=96.5; + }; + class Item358 + { + dataType="Layer"; + name="Vehicle Repair_1"; + id=1980; + atlOffset=96.5; + }; + class Item359 + { + dataType="Layer"; + name="Open Ammo Dump_2"; + id=2357; + atlOffset=96.5; + }; + class Item360 + { + dataType="Layer"; + name="Vehicle Repair_2"; + id=2382; + atlOffset=96.5; + }; + class Item361 + { + dataType="Object"; + class PositionInfo + { + position[]={5051.063,60.02533,3703.7239}; + angles[]={6.2671871,5.2879448,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2848; + type="Land_HBarrier_Big_F"; + }; + class Item362 + { + dataType="Object"; + class PositionInfo + { + position[]={5055.6899,60.107967,3710.8545}; + angles[]={6.2703872,5.2879448,6.2759843}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2849; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; + }; + class Item363 + { + dataType="Object"; + class PositionInfo + { + position[]={5042.4644,60.173103,3709.303}; + angles[]={6.2671871,5.2879448,6.2759929}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2850; + type="Land_HBarrier_Big_F"; + }; + class Item364 + { + dataType="Object"; + class PositionInfo + { + position[]={5060.3164,60.207218,3717.9851}; + angles[]={6.26159,5.2879448,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2851; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; + }; + class Item365 + { + dataType="Object"; + class PositionInfo + { + position[]={5064.9429,60.378368,3725.1155}; + angles[]={6.2575932,5.2879448,0.010398259}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2852; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; + }; + class Item366 + { + dataType="Object"; + class PositionInfo + { + position[]={5069.5693,60.601753,3732.2461}; + angles[]={6.26159,5.2879448,0.0064037596}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2853; + type="Land_HBarrier_Big_F"; + atlOffset=-3.8146973e-006; + }; + class Item367 + { + dataType="Object"; + class PositionInfo + { + position[]={5074.1963,60.802547,3739.3767}; + angles[]={6.2503963,5.2879448,0.011203959}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2854; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; + }; + class Item368 + { + dataType="Object"; + class PositionInfo + { + position[]={5072.105,60.989807,3745.7996}; + angles[]={6.2503963,3.7171483,0.011203959}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2855; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; + }; + class Item369 + { + dataType="Object"; + class PositionInfo + { + position[]={5047.0913,60.258667,3716.4336}; + angles[]={6.2647886,5.2879448,6.277586}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2856; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; + }; + class Item370 + { + dataType="Object"; + class PositionInfo + { + position[]={5051.7178,60.362114,3723.5642}; + angles[]={6.26159,5.2879448,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2857; + type="Land_HBarrier_Big_F"; + }; + class Item371 + { + dataType="Object"; + class PositionInfo + { + position[]={5056.3442,60.488514,3730.6948}; + angles[]={6.2631893,5.2879448,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2858; + type="Land_HBarrier_Big_F"; + }; + class Item372 + { + dataType="Object"; + class PositionInfo + { + position[]={5060.9702,60.674576,3737.8254}; + angles[]={6.26159,5.2879448,0.0016194459}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2859; + type="Land_HBarrier_Big_F"; + }; + class Item373 + { + dataType="Object"; + class PositionInfo + { + position[]={5065.1841,61.054932,3750.29}; + angles[]={6.2663875,3.7171483,0.011198638}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2860; + type="Land_HBarrier_Big_F"; + }; + class Item374 + { + dataType="Object"; + class PositionInfo + { + position[]={5037.4136,60.198566,3708.408}; + angles[]={6.2679896,3.7171483,6.2743897}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2861; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; + }; + class Item375 + { + dataType="Object"; + class PositionInfo + { + position[]={5030.2827,60.332066,3713.0344}; + angles[]={6.2671871,3.7171483,6.2743897}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2862; + type="Land_HBarrier_Big_F"; + }; + class Item376 + { + dataType="Object"; + class PositionInfo + { + position[]={5023.1523,60.476223,3717.6611}; + angles[]={6.2671871,3.7171483,6.2703872}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2863; + type="Land_HBarrier_Big_F"; + }; + class Item377 + { + dataType="Object"; + class PositionInfo + { + position[]={5016.022,60.641518,3722.2876}; + angles[]={6.2671871,3.7171483,6.2703872}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2864; + type="Land_HBarrier_Big_F"; + }; + class Item378 + { + dataType="Object"; + class PositionInfo + { + position[]={5008.8911,60.81649,3726.9143}; + angles[]={6.2711854,3.7171483,6.2655869}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2865; + type="Land_HBarrier_Big_F"; + }; + class Item379 + { + dataType="Object"; + class PositionInfo + { + position[]={5012.5601,60.935139,3738.5403}; + angles[]={6.2679858,5.2879448,6.271987}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2866; + type="Land_HBarrier_Big_F"; + }; + class Item380 + { + dataType="Object"; + class PositionInfo + { + position[]={5017.187,60.992847,3745.6707}; + angles[]={6.2647886,5.2879448,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2867; + type="Land_HBarrier_Big_F"; + }; + class Item381 + { + dataType="Object"; + class PositionInfo + { + position[]={5021.8135,61.089272,3752.8013}; + angles[]={6.2639894,5.2879448,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2868; + type="Land_HBarrier_Big_F"; + }; + class Item382 + { + dataType="Object"; + class PositionInfo + { + position[]={5026.4399,61.191479,3759.9319}; + angles[]={6.2639894,5.2879448,6.2767816}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2869; + type="Land_HBarrier_Big_F"; + }; + class Item383 + { + dataType="Object"; + class PositionInfo + { + position[]={5031.0664,61.392384,3767.0625}; + angles[]={6.2487988,5.2879448,6.2807684}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2870; + type="Land_HBarrier_Big_F"; + }; + class Item384 + { + dataType="Object"; + class PositionInfo + { + position[]={5057.9175,61.132065,3754.707}; + angles[]={6.2663875,3.7171483,6.2759929}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2871; + type="Land_HBarrier_Big_F"; + atlOffset=-3.8146973e-006; + }; + class Item385 + { + dataType="Object"; + class PositionInfo + { + position[]={5050.7866,61.224964,3759.3335}; + angles[]={6.2511969,3.7171483,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2872; + type="Land_HBarrier_Big_F"; + }; + class Item386 + { + dataType="Object"; + class PositionInfo + { + position[]={5043.6563,61.305462,3763.9602}; + angles[]={6.2583904,3.7171483,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2873; + type="Land_HBarrier_Big_F"; + }; + class Item387 + { + dataType="Object"; + class PositionInfo + { + position[]={5036.5254,61.382641,3768.5867}; + angles[]={6.2583928,3.7171483,6.2711902}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2874; + type="Land_HBarrier_Big_F"; + atlOffset=-3.8146973e-006; + }; + class Item388 + { + dataType="Object"; + class PositionInfo + { + position[]={5044.0732,63.147167,3702.5969}; + angles[]={6.2679896,3.7171483,6.2751918}; + }; + side="Empty"; + class Attributes + { + }; + id=2875; + type="Land_BarGate_F"; + atlOffset=0.25; + }; + class Item389 + { + dataType="Object"; + class PositionInfo + { + position[]={5034.127,64.044205,3716.2029}; + angles[]={0,0.57555532,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2876; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=7.6293945e-006; + }; + class Item390 + { + dataType="Object"; + class PositionInfo + { + position[]={5022.6665,61.602787,3773.4067}; + angles[]={6.2488008,2.1463523,0.0095994528}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2877; + type="Land_HBarrier_Big_F"; + }; + class Item391 + { + dataType="Object"; + class PositionInfo + { + position[]={5018.04,61.369122,3766.2761}; + angles[]={6.2663875,2.1463523,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2878; + type="Land_HBarrier_Big_F"; + atlOffset=3.8146973e-006; + }; + class Item392 + { + dataType="Object"; + class PositionInfo + { + position[]={5013.4136,61.278282,3759.1455}; + angles[]={6.2639894,2.1463523,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2879; + type="Land_HBarrier_Big_F"; + }; + class Item393 + { + dataType="Object"; + class PositionInfo + { + position[]={5008.7871,61.191124,3752.0149}; + angles[]={6.2679858,2.1463523,6.269588}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2880; + type="Land_HBarrier_Big_F"; + }; + class Item394 + { + dataType="Object"; + class PositionInfo + { + position[]={5004.1602,61.146435,3744.8845}; + angles[]={6.2687874,2.1463523,6.2687874}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2881; + type="Land_HBarrier_Big_F"; + }; + class Item395 + { + dataType="Object"; + class PositionInfo + { + position[]={4999.5337,61.111629,3737.7542}; + angles[]={6.2711854,2.1463523,6.2647886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2882; + type="Land_HBarrier_Big_F"; + }; + class Item396 + { + dataType="Object"; + class PositionInfo + { + position[]={5001.6245,60.997383,3731.3311}; + angles[]={6.2711854,0.57555532,6.2655869}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2883; + type="Land_HBarrier_Big_F"; + }; + class Item397 + { + dataType="Object"; + class PositionInfo + { + position[]={5029.6563,64.702843,3774.5339}; + angles[]={6.2583928,0.57555532,6.2711902}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2884; + type="Land_BarGate_F"; + atlOffset=0.24999619; + }; + class Item398 + { + dataType="Object"; + class PositionInfo + { + position[]={5031.5874,64.84053,3758.6785}; + angles[]={0,2.1463523,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2885; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=3.8146973e-006; + }; + class Item399 + { + dataType="Object"; + class PositionInfo + { + position[]={5039.8862,64.868355,3760.446}; + angles[]={0,3.7171483,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2886; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=3.8146973e-006; + }; + class Item400 + { + dataType="Object"; + class PositionInfo + { + position[]={5056.0732,60.221806,3741.3008}; + angles[]={0,2.1463523,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2887; + type="Land_Cargo_House_V1_F"; + }; + class Item401 + { + dataType="Object"; + class PositionInfo + { + position[]={5017.248,60.308193,3735.2007}; + angles[]={0,5.2879448,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2888; + type="Land_Cargo_House_V1_F"; + }; + class Item402 + { + dataType="Object"; + class PositionInfo + { + position[]={5012.1362,64.654678,3734.5833}; + angles[]={0,1.6227527,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2889; + type="Land_TTowerSmall_1_F"; + }; + class Item403 + { + dataType="Object"; + class PositionInfo + { + position[]={5061.7534,68.052811,3741.7876}; + angles[]={0,2.1463523,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2890; + type="Land_TTowerSmall_2_F"; + atlOffset=3.8146973e-006; + }; + class Item404 + { + dataType="Object"; + class PositionInfo + { + position[]={5042.4258,64.011436,3717.9705}; + angles[]={0,5.2879448,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2891; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=3.8146973e-006; + }; + class Item405 + { + dataType="Object"; + class PositionInfo + { + position[]={5021.9272,61.11504,3747.9285}; + angles[]={6.2647886,5.2879448,6.2751846}; }; - id=7888; - atlOffset=0.17941284; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2892; + type="Land_Cargo40_military_green_F"; }; - class Item538 + class Item406 { - dataType="Logic"; + dataType="Object"; class PositionInfo { - position[]={5701.9141,353.69931,5586.7319}; - angles[]={6.2527928,0,6.2479987}; + position[]={5024.2339,61.069038,3746.4314}; + angles[]={6.2647886,5.2879448,6.2751846}; }; - areaSize[]={42.750244,0,41.096436}; - areaIsRectangle=1; - flags=1; - id=7889; - type="ModuleHideTerrainObjects_F"; - class CustomAttributes + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; }; + id=2893; + type="Land_Cargo40_military_green_F"; + atlOffset=-7.6293945e-006; }; - class Item539 + class Item407 { - dataType="Marker"; - position[]={7071.4385,254.80283,6756.9844}; - name="outpost_13"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=31.32979; - b=25.969643; - angle=264.17685; - id=7892; - atlOffset=157.98735; + dataType="Object"; + class PositionInfo + { + position[]={5022.9756,63.72966,3747.248}; + angles[]={6.2647886,5.2879448,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2894; + type="Land_Cargo40_military_green_F"; }; - class Item540 + class Item408 { dataType="Object"; class PositionInfo { - position[]={7052.4829,99.348541,6723.6274}; - angles[]={6.2567906,6.1866245,6.1253104}; + position[]={5048.5894,59.990963,3729.7661}; + angles[]={6.2631893,2.1463523,6.2791886}; }; side="Empty"; flags=4; class Attributes { }; - id=7893; - type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; + id=2895; + type="Land_Medevac_house_V1_F"; }; - class Item541 + class Item409 { dataType="Object"; class PositionInfo { - position[]={7060.9429,98.023308,6724.4473}; - angles[]={6.2567906,6.1866245,6.1253104}; + position[]={4917.687,414.59985,7907.0483}; + angles[]={6.1661229,5.4727268,0.069488183}; }; side="Empty"; flags=4; class Attributes { }; - id=7894; + id=2896; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; }; - class Item542 + class Item410 { dataType="Object"; class PositionInfo { - position[]={7051.4946,99.633896,6733.8301}; - angles[]={6.2727871,6.1866245,6.1253104}; + position[]={4923.5449,415.06644,7913.2075}; + angles[]={6.2320313,5.4727268,0.013597663}; }; side="Empty"; flags=4; class Attributes { }; - id=7895; + id=2897; type="Land_HBarrier_Big_F"; }; - class Item543 + class Item411 { dataType="Object"; class PositionInfo { - position[]={7069.4033,97.509224,6725.2666}; - angles[]={6.259192,6.1866245,6.2416096}; + position[]={4910.6162,414.76227,7913.6318}; + angles[]={6.1495867,5.4727268,0.14223404}; }; side="Empty"; flags=4; class Attributes { }; - id=7896; + id=2898; type="Land_HBarrier_Big_F"; }; - class Item544 + class Item412 { dataType="Object"; class PositionInfo { - position[]={7077.8638,97.22805,6726.0859}; - angles[]={6.2480001,6.1866245,6.2551923}; + position[]={4929.4028,415.61905,7919.3667}; + angles[]={6.1954112,5.4727268,6.2751846}; }; side="Empty"; flags=4; class Attributes { }; - id=7897; + id=2899; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; + atlOffset=3.0517578e-005; }; - class Item545 + class Item413 { dataType="Object"; class PositionInfo { - position[]={7086.3242,97.02993,6726.9058}; - angles[]={6.2344246,6.1866245,6.2687874}; + position[]={4935.2607,416.1839,7925.5259}; + angles[]={6.234426,5.4727268,0.00084572798}; }; side="Empty"; flags=4; class Attributes { }; - id=7898; + id=2900; type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item546 + class Item414 { dataType="Object"; class PositionInfo { - position[]={7094.7847,96.959755,6727.7251}; - angles[]={6.2344232,6.1866245,6.2703824}; + position[]={4941.1187,416.83044,7931.6851}; + angles[]={6.1922379,5.4727268,0.016798066}; }; side="Empty"; flags=4; class Attributes { }; - id=7899; + id=2901; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; }; - class Item547 + class Item415 { dataType="Object"; class PositionInfo { - position[]={7098.5088,97.307961,6733.3604}; - angles[]={6.2168837,4.615828,0.004796607}; + position[]={4946.9766,417.65588,7937.8442}; + angles[]={6.2184753,5.4727268,0.035185181}; }; side="Empty"; flags=4; class Attributes { }; - id=7900; + id=2902; type="Land_HBarrier_Big_F"; - atlOffset=-7.6293945e-006; }; - class Item548 + class Item416 { dataType="Object"; class PositionInfo { - position[]={7059.9551,98.392143,6734.6494}; - angles[]={6.259192,6.1866245,6.1386018}; + position[]={4946.1011,418.09927,7944.542}; + angles[]={6.2057409,3.9019301,0.047963165}; }; side="Empty"; flags=4; class Attributes { }; - id=7901; + id=2903; type="Land_HBarrier_Big_F"; }; - class Item549 + class Item417 { dataType="Object"; class PositionInfo { - position[]={7068.4155,97.838669,6735.4688}; - angles[]={6.2479987,6.1866245,6.2527947}; + position[]={4916.1177,415.32709,7920.2715}; + angles[]={6.2320313,5.4727268,0.013597663}; }; side="Empty"; flags=4; class Attributes { }; - id=7902; + id=2904; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; }; - class Item550 + class Item418 { dataType="Object"; class PositionInfo { - position[]={7076.8755,98.078941,6736.2886}; - angles[]={0,6.1866245,0}; + position[]={4921.9756,416.06967,7926.4307}; + angles[]={6.2328281,5.4727268,0.050357513}; }; side="Empty"; + flags=4; class Attributes { }; - id=7903; + id=2905; type="Land_HBarrier_Big_F"; - atlOffset=0.4550705; }; - class Item551 + class Item419 { dataType="Object"; class PositionInfo { - position[]={7085.3359,97.542023,6737.1079}; - angles[]={6.2344246,6.1866245,6.2687874}; + position[]={4927.8335,416.52261,7932.5898}; + angles[]={6.234426,5.4727268,0.00084572798}; }; side="Empty"; flags=4; class Attributes { }; - id=7904; + id=2906; type="Land_HBarrier_Big_F"; - atlOffset=-7.6293945e-006; }; - class Item552 + class Item420 { dataType="Object"; class PositionInfo { - position[]={7097.7134,97.728912,6741.5718}; - angles[]={6.2392135,4.615828,0.017598685}; + position[]={4933.6914,417.19543,7938.749}; + angles[]={6.2352223,5.4727268,0.043172773}; }; side="Empty"; flags=4; class Attributes { }; - id=7905; + id=2907; type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item553 + class Item421 { dataType="Object"; class PositionInfo { - position[]={7047.6494,99.909019,6737.2251}; - angles[]={6.2727871,4.615828,6.2824135}; + position[]={4940.123,418.25156,7950.2275}; + angles[]={6.2144923,3.9019301,0.047963165}; }; side="Empty"; flags=4; class Attributes { }; - id=7906; + id=2908; type="Land_HBarrier_Big_F"; }; - class Item554 + class Item422 { dataType="Object"; class PositionInfo { - position[]={7046.8296,100.0264,6745.6855}; - angles[]={6.269588,4.615828,6.2816033}; + position[]={4905.1304,414.04779,7914.1606}; + angles[]={6.1495867,3.9019301,0.14223404}; }; side="Empty"; flags=4; class Attributes { }; - id=7907; + id=2909; type="Land_HBarrier_Big_F"; }; - class Item555 + class Item423 { dataType="Object"; class PositionInfo { - position[]={7046.0103,100.14609,6754.146}; - angles[]={6.2687874,4.615828,6.2816033}; + position[]={4898.9712,414.03787,7920.0186}; + angles[]={6.1495867,3.9019301,0.060726274}; }; side="Empty"; flags=4; class Attributes { }; - id=7908; + id=2910; type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item556 + class Item424 { dataType="Object"; class PositionInfo { - position[]={7045.1909,100.26897,6762.6064}; - angles[]={6.2711854,4.615828,6.2816033}; + position[]={4892.812,414.38974,7925.8765}; + angles[]={6.2184763,3.9019301,0.06072529}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2911; + type="Land_HBarrier_Big_F"; + }; + class Item425 + { + dataType="Object"; + class PositionInfo + { + position[]={4886.6528,414.3989,7931.7344}; + angles[]={6.2184753,3.9019301,0.055940546}; }; side="Empty"; flags=4; class Attributes { }; - id=7909; + id=2912; type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item557 + class Item426 { dataType="Object"; class PositionInfo { - position[]={7044.3711,100.04752,6771.0664}; - angles[]={0.098084196,4.615828,6.1716504}; + position[]={4880.4937,414.43451,7937.5923}; + angles[]={6.2089233,3.9019301,0.055939481}; }; side="Empty"; flags=4; class Attributes { }; - id=7910; + id=2913; type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item558 + class Item427 { dataType="Object"; class PositionInfo { - position[]={7055.7534,98.492706,6775.4341}; - angles[]={0.060726274,6.1866245,6.1946177}; + position[]={4886.2363,415.44116,7948.3462}; + angles[]={6.2208643,5.4727268,0.043973263}; }; side="Empty"; flags=4; class Attributes { }; - id=7911; + id=2914; type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item559 + class Item428 { dataType="Object"; class PositionInfo { - position[]={7064.2134,97.819611,6776.2539}; - angles[]={0.043971907,6.1866245,6.2567906}; + position[]={4892.0942,416.14877,7954.5054}; + angles[]={6.2136984,5.4727268,0.051154058}; }; side="Empty"; flags=4; class Attributes { }; - id=7912; + id=2915; type="Land_HBarrier_Big_F"; }; - class Item560 + class Item429 { dataType="Object"; class PositionInfo { - position[]={7072.6738,97.560196,6777.0732}; - angles[]={0.043971907,6.1866245,6.2567906}; + position[]={4897.9521,416.78091,7960.6646}; + angles[]={6.2248507,5.4727268,0.039979152}; }; side="Empty"; flags=4; class Attributes { }; - id=7913; + id=2916; type="Land_HBarrier_Big_F"; + atlOffset=6.1035156e-005; }; - class Item561 + class Item430 { dataType="Object"; class PositionInfo { - position[]={7081.1343,97.44738,6777.8926}; - angles[]={0.054346491,6.1866245,0.0023920804}; + position[]={4903.8101,417.39398,7966.8237}; + angles[]={6.2232571,5.4727268,0.043171391}; }; side="Empty"; flags=4; class Attributes { }; - id=7914; + id=2917; type="Land_HBarrier_Big_F"; }; - class Item562 + class Item431 { dataType="Object"; class PositionInfo { - position[]={7089.5947,97.425438,6778.7124}; - angles[]={0.066302508,6.1866245,0.024795037}; + position[]={4909.668,418.53687,7972.9829}; + angles[]={6.1558776,5.4727268,0.1107436}; }; side="Empty"; flags=4; class Attributes { }; - id=7915; + id=2918; type="Land_HBarrier_Big_F"; }; - class Item563 + class Item432 { dataType="Object"; class PositionInfo { - position[]={7096.645,98.080971,6750.0083}; - angles[]={6.2799835,4.615828,0.017595299}; + position[]={4933.792,418.38266,7955.9043}; + angles[]={6.2144923,3.9019301,0.035985984}; }; side="Empty"; flags=4; class Attributes { }; - id=7916; + id=2919; type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item564 + class Item433 { dataType="Object"; class PositionInfo { - position[]={7095.8257,98.148575,6758.4688}; - angles[]={6.2671871,4.615828,0.030390549}; + position[]={4927.6328,418.564,7961.7622}; + angles[]={6.2144923,3.9019301,0.035985984}; }; side="Empty"; flags=4; class Attributes { }; - id=7917; + id=2920; type="Land_HBarrier_Big_F"; - atlOffset=-7.6293945e-006; + atlOffset=-3.0517578e-005; }; - class Item565 + class Item434 { dataType="Object"; class PositionInfo { - position[]={7095.0059,98.067711,6766.9292}; - angles[]={0.027193764,4.615828,0.030390549}; + position[]={4921.4736,418.75778,7967.6201}; + angles[]={6.2384152,3.9019301,6.2807932}; }; side="Empty"; flags=4; class Attributes { }; - id=7918; + id=2921; type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item566 + class Item435 { dataType="Object"; class PositionInfo { - position[]={7094.1865,97.759941,6775.3896}; - angles[]={0.066302508,4.615828,0.024795037}; + position[]={4915.3145,419.03503,7973.478}; + angles[]={6.2384152,3.9019301,6.2807932}; }; side="Empty"; flags=4; class Attributes { }; - id=7919; + id=2922; type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item567 + class Item436 { dataType="Object"; class PositionInfo { - position[]={7047.2485,102.90779,6728.395}; - angles[]={6.2727871,4.615828,6.2824135}; + position[]={4910.48,417.01147,7906.8062}; + angles[]={0,3.9019301,0}; }; side="Empty"; class Attributes { }; - id=7920; + id=2923; type="Land_BarGate_F"; - atlOffset=0.25; + atlOffset=0.25006104; }; - class Item568 + class Item437 { dataType="Object"; class PositionInfo { - position[]={7051.7021,103.45441,6744.6504}; - angles[]={0,1.4742353,0}; + position[]={4903.3315,418.53314,7922.4268}; + angles[]={0,0.76033735,0}; }; side="Empty"; flags=5; class Attributes { }; - id=7921; + id=2924; type="Land_Cargo_Patrol_V1_F"; - atlOffset=-7.6293945e-006; }; - class Item569 + class Item438 { dataType="Object"; class PositionInfo { - position[]={7089.3291,96.657173,6789.2358}; - angles[]={0.097292177,3.0450318,0.019999012}; + position[]={4902.5767,418.6795,7980.7622}; + angles[]={6.1669126,2.3311338,0.11074414}; }; side="Empty"; flags=4; class Attributes { }; - id=7922; + id=2925; type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item570 + class Item439 { dataType="Object"; class PositionInfo { - position[]={7080.8687,96.777489,6788.416}; - angles[]={0.083007939,3.0450318,6.2735858}; + position[]={4896.7188,417.58588,7974.603}; + angles[]={6.2232571,2.3311338,0.033588443}; }; side="Empty"; flags=4; class Attributes { }; - id=7923; + id=2926; type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item571 + class Item440 { dataType="Object"; class PositionInfo { - position[]={7072.4082,96.998703,6787.5967}; - angles[]={0.068692133,3.0450318,6.2464013}; + position[]={4890.8608,416.99911,7968.4443}; + angles[]={6.2168837,2.3311338,0.039977662}; }; side="Empty"; flags=4; class Attributes { }; - id=7924; + id=2927; type="Land_HBarrier_Big_F"; }; - class Item572 + class Item441 { dataType="Object"; class PositionInfo { - position[]={7063.9478,97.356056,6786.7773}; - angles[]={0.054347586,3.0450318,6.2464013}; + position[]={4885.0029,416.35916,7962.2852}; + angles[]={6.2136984,2.3311338,0.03838294}; }; side="Empty"; flags=4; class Attributes { }; - id=7925; + id=2928; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; + atlOffset=3.0517578e-005; }; - class Item573 + class Item442 { dataType="Object"; class PositionInfo { - position[]={7055.4873,97.942802,6785.9575}; - angles[]={0.043971907,3.0450318,6.2113094}; + position[]={4879.145,415.69302,7956.126}; + angles[]={6.2081265,2.3311338,0.043973263}; }; side="Empty"; flags=4; class Attributes { }; - id=7926; + id=2929; type="Land_HBarrier_Big_F"; - atlOffset=-7.6293945e-006; }; - class Item574 + class Item443 { dataType="Object"; class PositionInfo { - position[]={7047.0269,98.958305,6785.1382}; - angles[]={0.06072529,3.0450318,6.101995}; + position[]={4873.2871,414.97211,7949.9668}; + angles[]={6.2089233,2.3311338,0.043971907}; }; side="Empty"; flags=4; class Attributes { }; - id=7927; + id=2930; type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-006; }; - class Item575 + class Item444 { dataType="Object"; class PositionInfo { - position[]={7043.3027,99.826904,6779.5029}; - angles[]={6.2727814,1.4742355,6.1716504}; + position[]={4874.1626,414.51233,7943.269}; + angles[]={6.2089233,0.76033735,0.043971907}; }; side="Empty"; flags=4; class Attributes { }; - id=7928; + id=2931; type="Land_HBarrier_Big_F"; }; - class Item576 + class Item445 { dataType="Object"; class PositionInfo { - position[]={7094.563,100.2374,6784.4683}; - angles[]={0.071079597,1.4742355,0.019996032}; + position[]={4909.6543,422.22281,7980.5859}; + angles[]={0,0.76033735,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=7929; + id=2932; type="Land_BarGate_F"; - atlOffset=0.24999237; + atlOffset=0.25003052; }; - class Item577 + class Item446 { dataType="Object"; class PositionInfo { - position[]={7083.3584,101.35715,6773.085}; - angles[]={0,3.0450318,0}; + position[]={4908.6392,421.16699,7964.646}; + angles[]={0,2.3311338,0}; }; side="Empty"; flags=5; class Attributes { }; - id=7930; + id=2933; type="Land_Cargo_Patrol_V1_F"; }; - class Item578 + class Item447 { dataType="Object"; class PositionInfo { - position[]={7089.9087,101.58702,6767.6914}; - angles[]={0,4.615828,0}; + position[]={4917.1221,421.88028,7964.8584}; + angles[]={0,3.9019301,0}; }; side="Empty"; flags=5; class Attributes { }; - id=7931; + id=2934; type="Land_Cargo_Patrol_V1_F"; }; - class Item579 + class Item448 { dataType="Object"; class PositionInfo { - position[]={7085.0063,97.188828,6743.104}; - angles[]={0,3.0450318,0}; + position[]={4929.5161,416.70221,7943.0649}; + angles[]={0,2.3311338,0}; }; side="Empty"; flags=5; class Attributes { }; - id=7932; + id=2935; type="Land_Cargo_House_V1_F"; }; - class Item580 + class Item449 { dataType="Object"; class PositionInfo { - position[]={7056.0586,98.108032,6769.687}; - angles[]={0,6.1866245,0}; + position[]={4890.231,414.86676,7944.2021}; + angles[]={0,5.4727268,0}; }; side="Empty"; flags=5; class Attributes { }; - id=7933; + id=2936; type="Land_Cargo_House_V1_F"; - atlOffset=7.6293945e-006; }; - class Item581 + class Item450 { dataType="Object"; class PositionInfo { - position[]={7052.3926,102.63477,6773.3027}; - angles[]={0,2.5214329,0}; + position[]={4885.0923,418.92673,7944.5347}; + angles[]={0,1.8075347,0}; }; side="Empty"; flags=5; class Attributes { }; - id=7934; + id=2937; type="Land_TTowerSmall_1_F"; - atlOffset=7.6293945e-006; + atlOffset=-3.0517578e-005; }; - class Item582 + class Item451 { dataType="Object"; class PositionInfo { - position[]={7088.9238,104.85121,6738.9624}; - angles[]={0,3.0450318,0}; + position[]={4935.189,424.75406,7942.5}; + angles[]={0,2.3311338,0}; }; side="Empty"; flags=5; class Attributes { }; - id=7935; + id=2938; type="Land_TTowerSmall_2_F"; - atlOffset=7.6293945e-006; + atlOffset=3.0517578e-005; }; - class Item583 + class Item452 { dataType="Object"; class PositionInfo { - position[]={7058.2529,102.42729,6739.2568}; - angles[]={0,6.1866245,0}; + position[]={4911.8145,419.05292,7922.6392}; + angles[]={0,5.4727268,0}; }; side="Empty"; flags=5; class Attributes { }; - id=7936; + id=2939; type="Land_Cargo_Patrol_V1_F"; + atlOffset=-3.0517578e-005; }; - class Item584 + class Item453 { dataType="Object"; class PositionInfo { - position[]={7068.9614,98.317513,6773.9507}; - angles[]={0.027990974,6.1866245,6.2567925}; + position[]={4897.1182,416.59052,7955.8936}; + angles[]={6.2248507,5.4727268,0.039979152}; }; side="Empty"; + flags=4; class Attributes { }; - id=7937; + id=2940; type="Land_Cargo40_military_green_F"; - atlOffset=0.41942596; + atlOffset=-3.0517578e-005; }; - class Item585 + class Item454 { dataType="Object"; class PositionInfo { - position[]={7069.2266,98.310173,6771.2134}; - angles[]={0.027990974,6.1866245,6.2567925}; + position[]={4899.1104,416.55951,7953.998}; + angles[]={6.2248507,5.4727268,0.039979152}; }; side="Empty"; + flags=4; class Attributes { }; - id=7938; + id=2941; type="Land_Cargo40_military_green_F"; - atlOffset=0.34242249; + atlOffset=3.0517578e-005; }; - class Item586 + class Item455 { dataType="Object"; class PositionInfo { - position[]={7069.082,103.81417,6772.7065}; - angles[]={0.027990974,6.1866245,6.2567925}; + position[]={4898.0239,419.19818,7955.0317}; + angles[]={6.2248507,5.4727268,0.039979152}; }; side="Empty"; class Attributes { }; - id=7939; + id=2942; type="Land_Cargo40_military_green_F"; - atlOffset=5.8844223; + atlOffset=2.6217957; }; - class Item587 + class Item456 { dataType="Object"; class PositionInfo { - position[]={7071.3203,97.361137,6741.7783}; - angles[]={6.2647886,3.0450318,6.260788}; + position[]={4920.04,415.7933,7933.1016}; + angles[]={6.2344246,2.3311338,0.04876088}; }; side="Empty"; flags=4; class Attributes { }; - id=7940; + id=2943; type="Land_Medevac_house_V1_F"; - atlOffset=7.6293945e-006; - }; - class Item588 - { - dataType="Logic"; - class PositionInfo - { - position[]={7070.0601,96.899574,6756.7241}; - angles[]={0,6.1748877,0}; - }; - areaSize[]={27.610001,0,31.806999}; - areaIsRectangle=1; - flags=1; - id=7941; - type="ModuleHideTerrainObjects_F"; - atlOffset=0.051010132; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item589 - { - dataType="Marker"; - position[]={7991.6089,30.379,9554.668}; - name="detectPlayer"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorKhaki"; - a=125.773; - b=141.15717; - id=7942; - atlOffset=-0.66100121; - }; - class Item590 - { - dataType="Marker"; - position[]={8193.2158,32.903679,10098.529}; - name="detectPlayer_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorKhaki"; - a=39.26651; - b=157.81145; - id=7944; - atlOffset=4.0136795; - }; - class Item591 - { - dataType="Marker"; - position[]={1156.386,32.94368,12278.309}; - name="detectPlayer_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorKhaki"; - a=141.90463; - b=68.14592; - id=7945; - atlOffset=4.0136795; - }; - class Item592 - { - dataType="Marker"; - position[]={4711,451.25,6649.625}; - name="island"; - markerType="RECTANGLE"; - type="ellipse"; - fillName="Border"; - angle=281.49893; - drawBorder=1; - id=7946; - atlOffset=39.145111; - }; - class Item593 - { - dataType="Marker"; - position[]={9766,38.889198,3987.75}; - name="island_1"; - markerType="RECTANGLE"; - type="rectangle"; - fillName="Border"; - angle=11.204995; - drawBorder=1; - id=7947; - }; - class Item594 - { - dataType="Marker"; - position[]={843.125,16.64209,11940.75}; - name="island_2"; - markerType="RECTANGLE"; - type="rectangle"; - fillName="Border"; - angle=11.204995; - drawBorder=1; - id=7948; - }; - class Item595 - { - dataType="Marker"; - position[]={9669.8359,38.885204,3988.9885}; - name="Spawnpoint_2"; - type="mil_start"; - id=7949; - atlOffset=-3.0517578e-005; - }; - class Item596 - { - dataType="Marker"; - position[]={9662.0869,33.314789,3789.7827}; - name="road_32"; - type="hd_arrow"; - id=7950; - atlOffset=-1.9511871; - }; - class Item597 - { - dataType="Marker"; - position[]={9430.9902,15.582298,3615.3931}; - name="road_33"; - type="hd_arrow"; - id=7951; - atlOffset=-1.9511871; - }; - class Item598 - { - dataType="Marker"; - position[]={9767.667,36.92873,3990.6501}; - name="road_34"; - type="hd_arrow"; - id=7952; - atlOffset=-1.9511871; - }; - class Item599 - { - dataType="Marker"; - position[]={10066.299,26.17466,4027.6467}; - name="road_35"; - type="hd_arrow"; - id=7953; - atlOffset=-1.9511871; }; - class Item600 + class Item457 { - dataType="Marker"; - position[]={10486.761,15.848598,4196.1509}; - name="road_36"; - type="hd_arrow"; - id=7954; - atlOffset=-1.9511881; + dataType="Layer"; + name="Open Ammo Dump_3"; + id=2945; + atlOffset=96.5; }; - class Item601 + class Item458 { - dataType="Marker"; - position[]={11058.517,22.712757,4197.6699}; - name="road_37"; - type="hd_arrow"; - id=7955; - atlOffset=-1.9511871; + dataType="Layer"; + name="Vehicle Repair_3"; + id=2970; + atlOffset=96.5; }; - class Item602 + class Item459 { - dataType="Marker"; - position[]={11261.775,15.748955,4268.458}; - name="road_38"; - type="hd_arrow"; - id=7956; - atlOffset=-1.9511871; + dataType="Layer"; + name="Abandoned AA Gun Emplacement"; + id=3316; + atlOffset=96.5; }; - class Item603 + class Item460 { - dataType="Marker"; - position[]={736.54559,28.525267,12092.669}; - name="Spawnpoint_3"; - type="mil_start"; - id=7957; - atlOffset=-3.0517578e-005; + dataType="Layer"; + name="Abandoned Field Hospital"; + id=3423; + atlOffset=96.5; }; - class Item604 + class Item461 { - dataType="Marker"; - position[]={833.31549,14.35758,11943.996}; - name="road_39"; - type="hd_arrow"; - id=7958; - atlOffset=-1.9511871; + dataType="Layer"; + name="Hasty Landing Zone"; + id=3470; + atlOffset=96.5; }; - class Item605 + class Item462 { - dataType="Logic"; - class PositionInfo - { - position[]={7126.4541,12.028394,12236.89}; - }; - name="HC_commanderX"; - id=7959; - type="HighCommand"; + dataType="Layer"; + name="Landing Zone"; + id=3571; + atlOffset=96.5; }; - class Item606 - { - dataType="Logic"; - class PositionInfo - { - position[]={7130.1294,11.875601,12232.691}; - }; - id=7960; - type="HighCommandSubordinate"; + class Item463 + { + dataType="Layer"; + name="Roadblock"; + id=3599; + atlOffset=96.5; }; - class Item607 + class Item464 { - dataType="Logic"; - class PositionInfo - { - position[]={2492.0898,201.44879,3621.0234}; - angles[]={6.241611,5.9668398,6.271987}; - }; - areaSize[]={113.49379,0,49.323151}; - areaIsRectangle=1; - flags=1; - id=7961; - type="ModuleHideTerrainObjects_F"; - atlOffset=-0.028778076; - class CustomAttributes + dataType="Layer"; + name="Landing Zone"; + class Entities { - class Attribute0 + items=51; + class Item0 { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; + position[]={4779.6255,416.77695,7202.6235}; + angles[]={0.0032018756,3.6792111,6.2559919}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=3651; + type="Land_HBarrier_Big_F"; + atlOffset=0.001159668; }; - class Attribute1 + class Item1 { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value + dataType="Object"; + class PositionInfo { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; + position[]={4798.6406,416.00928,7191.8237}; + angles[]={0,3.6792111,6.2328305}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; }; + id=3652; + type="Land_HBarrier_Big_F"; + atlOffset=0.00076293945; }; - nAttributes=2; - }; - }; - class Item608 - { - dataType="Layer"; - name="Open Ammo Dump_4"; - class Entities - { - items=24; - class Item0 + class Item2 { dataType="Object"; class PositionInfo { - position[]={2521.0125,201.17603,3613.6392}; - angles[]={6.2256494,4.4259648,6.26159}; + position[]={4767.8003,417.03284,7199.7842}; + angles[]={0.0039967569,5.2789087,6.2663908}; }; side="Empty"; flags=4; @@ -16700,16 +9966,156 @@ class Mission { skill=0.2; }; - id=7963; - type="Land_BagFence_Short_F"; + id=3653; + type="Land_HBarrier_Big_F"; + atlOffset=0.0010375977; }; - class Item1 + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={4801.3604,415.67633,7180.1406}; + angles[]={6.2767911,5.2789087,6.1253114}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=3654; + type="Land_HBarrier_Big_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={4801.8047,419.39105,7186.1787}; + angles[]={0,4.5247526,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=3655; + type="Land_Cargo_Patrol_V1_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={4758.292,417.1517,7182.9082}; + angles[]={6.2799835,5.2789087,0.0055992967}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=3656; + type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={4772.791,416.46457,7204.6372}; + angles[]={0.0032018756,6.0856428,6.2655902}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=3657; + type="Land_HBarrier_5_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={4791.4785,416.08893,7163.7227}; + angles[]={6.2687831,5.2789087,6.2408099}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=3658; + type="Land_HBarrier_Big_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={4803.3354,415.22018,7186.8081}; + angles[]={6.1700716,1.3521285,6.2312312}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=3659; + type="Land_HBarrier_5_F"; + atlOffset=0.0017089844; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={4761.063,417.08862,7170.4185}; + angles[]={6.2687874,3.6792111,6.2799835}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=3660; + type="Land_HBarrier_Big_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={4762.2617,416.60846,7198.3813}; + angles[]={0,0.48331404,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=3661; + type="Land_Cargo_House_V1_F"; + atlOffset=-3.0517578e-005; + }; + class Item11 { dataType="Object"; class PositionInfo { - position[]={2520.0952,201.35852,3616.4636}; - angles[]={6.2256494,4.4259648,6.26159}; + position[]={4779.6348,416.46274,7160.0898}; + angles[]={6.2711854,3.6792111,6.2511969}; }; side="Empty"; flags=4; @@ -16717,33 +10123,51 @@ class Mission { skill=0.2; }; - id=7964; - type="Land_BagFence_Short_F"; + id=3662; + type="Land_HBarrier_Big_F"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={4758.229,420.85181,7176.2251}; + angles[]={0,1.4189048,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=3663; + type="Land_Cargo_Patrol_V1_F"; }; - class Item2 + class Item13 { dataType="Object"; class PositionInfo { - position[]={2519.78,201.19986,3612.969}; - angles[]={6.2256494,5.9696403,6.26159}; + position[]={4756.3896,416.6507,7187.9858}; + angles[]={0,3.669332,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { skill=0.2; }; - id=7965; - type="Land_Pallet_MilBoxes_F"; + id=3664; + type="Land_Cargo_House_V1_F"; + atlOffset=0.016052246; }; - class Item3 + class Item14 { dataType="Object"; class PositionInfo { - position[]={2518.4534,201.37213,3615.925}; - angles[]={6.2256494,4.4192977,6.26159}; + position[]={4756.3896,416.72794,7175.8945}; + angles[]={0.0055992967,1.3521285,6.2799835}; }; side="Empty"; flags=4; @@ -16751,17 +10175,17 @@ class Mission { skill=0.2; }; - id=7966; - type="Land_MetalBarrel_F"; - atlOffset=-3.0517578e-005; + id=3665; + type="Land_HBarrier_5_F"; + atlOffset=0.032867432; }; - class Item4 + class Item15 { dataType="Object"; class PositionInfo { - position[]={2518.0447,201.6084,3614.3689}; - angles[]={6.2256494,2.8439631,6.26159}; + position[]={4786.6553,415.75992,7158.6841}; + angles[]={6.2711854,6.0856428,6.2511969}; }; side="Empty"; flags=4; @@ -16769,16 +10193,17 @@ class Mission { skill=0.2; }; - id=7967; + id=3666; type="Land_HBarrier_5_F"; + atlOffset=0.0081787109; }; - class Item5 + class Item16 { dataType="Object"; class PositionInfo { - position[]={2517.5706,201.37633,3615.6667}; - angles[]={6.2256494,4.4365072,6.26159}; + position[]={4754.2842,417.24506,7166.8521}; + angles[]={6.2799835,5.2310181,6.2687874}; }; side="Empty"; flags=4; @@ -16786,17 +10211,17 @@ class Mission { skill=0.2; }; - id=7968; - type="Land_MetalBarrel_F"; - atlOffset=-3.0517578e-005; + id=3667; + type="Land_Cargo10_light_green_F"; + atlOffset=-0.00024414063; }; - class Item6 + class Item17 { dataType="Object"; class PositionInfo { - position[]={2516.8154,201.42204,3616.1772}; - angles[]={6.2256494,4.3879685,6.26159}; + position[]={4801.5083,415.79175,7207.3301}; + angles[]={0.011198638,0.49141026,6.233624}; }; side="Empty"; flags=4; @@ -16804,17 +10229,17 @@ class Mission { skill=0.2; }; - id=7969; - type="Land_MetalBarrel_F"; - atlOffset=-1.5258789e-005; + id=3668; + type="Land_HBarrier_Big_F"; + atlOffset=0.0086669922; }; - class Item7 + class Item18 { dataType="Object"; class PositionInfo { - position[]={2516.6255,201.38211,3615.4126}; - angles[]={6.2256494,4.4258595,6.26159}; + position[]={4755.4873,417.21854,7163.9849}; + angles[]={6.2799835,5.2310181,6.2687874}; }; side="Empty"; flags=4; @@ -16822,17 +10247,17 @@ class Mission { skill=0.2; }; - id=7970; - type="Land_MetalBarrel_F"; - atlOffset=-3.0517578e-005; + id=3669; + type="Land_Cargo10_light_blue_F"; + atlOffset=-0.00024414063; }; - class Item8 + class Item19 { dataType="Object"; class PositionInfo { - position[]={2516.9648,201.20219,3612.0259}; - angles[]={6.2168822,4.4259648,6.2615871}; + position[]={4789.1665,416.13577,7214.3091}; + angles[]={0.039977662,3.6600299,6.2456031}; }; side="Empty"; flags=4; @@ -16840,16 +10265,17 @@ class Mission { skill=0.2; }; - id=7971; - type="Land_Pallet_MilBoxes_F"; + id=3670; + type="Land_HBarrier_Big_F"; + atlOffset=0.00079345703; }; - class Item9 + class Item20 { dataType="Object"; class PositionInfo { - position[]={2522.2781,200.86792,3609.2598}; - angles[]={6.2168822,4.4259648,6.2615871}; + position[]={4771.5869,416.58337,7152.0366}; + angles[]={6.2663836,0.51691675,6.2599902}; }; side="Empty"; flags=4; @@ -16857,16 +10283,16 @@ class Mission { skill=0.2; }; - id=7972; - type="Land_BagFence_Short_F"; + id=3671; + type="Land_HBarrier_Big_F"; }; - class Item10 + class Item21 { dataType="Object"; class PositionInfo { - position[]={2521.1765,201.07086,3609.0547}; - angles[]={6.2168822,4.4259648,6.2615871}; + position[]={4749.269,417.32089,7173.2764}; + angles[]={6.2799835,5.2310181,0.0055992967}; }; side="Empty"; flags=4; @@ -16874,16 +10300,17 @@ class Mission { skill=0.2; }; - id=7973; - type="Land_PaperBox_open_empty_F"; + id=3672; + type="Land_Cargo10_light_green_F"; + atlOffset=-0.0024414063; }; - class Item11 + class Item22 { dataType="Object"; class PositionInfo { - position[]={2515.8708,201.4221,3615.8237}; - angles[]={6.2256494,4.4123855,6.26159}; + position[]={4757.4634,416.99707,7159.7949}; + angles[]={6.2663875,3.6651783,6.2687874}; }; side="Empty"; flags=4; @@ -16891,17 +10318,16 @@ class Mission { skill=0.2; }; - id=7974; - type="Land_MetalBarrel_F"; - atlOffset=-1.5258789e-005; + id=3673; + type="Land_HBarrier_Big_F"; }; - class Item12 + class Item23 { dataType="Object"; class PositionInfo { - position[]={2515.5303,201.38579,3615.0659}; - angles[]={6.2256494,4.4172554,6.26159}; + position[]={4750.2603,417.30533,7167.5825}; + angles[]={6.2799835,5.2310181,6.2687874}; }; side="Empty"; flags=4; @@ -16909,17 +10335,17 @@ class Mission { skill=0.2; }; - id=7975; - type="Land_MetalBarrel_F"; - atlOffset=0.08026123; + id=3674; + type="Land_Cargo10_light_green_F"; + atlOffset=-0.00021362305; }; - class Item13 + class Item24 { dataType="Object"; class PositionInfo { - position[]={2518.8882,201.63736,3620.6794}; - angles[]={6.2208652,4.4259648,6.2663836}; + position[]={4809.2974,415.44888,7203.3086}; + angles[]={0.026392808,0.52700472,6.2184763}; }; side="Empty"; flags=4; @@ -16927,17 +10353,17 @@ class Mission { skill=0.2; }; - id=7976; - type="Land_BagFence_Short_F"; - atlOffset=1.5258789e-005; + id=3675; + type="Land_HBarrier_Big_F"; + atlOffset=0.0086975098; }; - class Item14 + class Item25 { dataType="Object"; class PositionInfo { - position[]={2519.6946,201.10698,3608.572}; - angles[]={6.2168822,4.4259648,6.2615871}; + position[]={4781.4478,416.27454,7218.5063}; + angles[]={0.047963165,3.6600299,6.2352223}; }; side="Empty"; flags=4; @@ -16945,16 +10371,17 @@ class Mission { skill=0.2; }; - id=7977; - type="Land_PaperBox_closed_F"; + id=3676; + type="Land_HBarrier_Big_F"; + atlOffset=0.0022888184; }; - class Item15 + class Item26 { dataType="Object"; class PositionInfo { - position[]={2517.844,201.80467,3620.6174}; - angles[]={6.2208652,4.4869142,6.2663836}; + position[]={4779.0366,416.12296,7148.0254}; + angles[]={6.1700692,0.51691675,6.2527947}; }; side="Empty"; flags=4; @@ -16962,17 +10389,17 @@ class Mission { skill=0.2; }; - id=7978; - type="Land_WaterBarrel_F"; - atlOffset=-1.5258789e-005; + id=3677; + type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item16 + class Item27 { dataType="Object"; class PositionInfo { - position[]={2514.6711,201.61163,3613.1599}; - angles[]={6.2256494,4.4259648,6.26159}; + position[]={4797.6094,415.38495,7215.0298}; + angles[]={0.046365164,0.5140667,6.2392149}; }; side="Empty"; flags=4; @@ -16980,16 +10407,17 @@ class Mission { skill=0.2; }; - id=7979; - type="Land_HBarrier_5_F"; + id=3678; + type="Land_HBarrier_3_F"; + atlOffset=0.0087890625; }; - class Item17 + class Item28 { dataType="Object"; class PositionInfo { - position[]={2515.6089,201.89671,3619.4045}; - angles[]={6.2256494,2.8209071,6.26159}; + position[]={4816.2012,414.35101,7179.6509}; + angles[]={6.1700721,5.2104931,6.2687874}; }; side="Empty"; flags=4; @@ -16997,17 +10425,17 @@ class Mission { skill=0.2; }; - id=7980; - type="Land_WaterTank_F"; - atlOffset=-4.5776367e-005; + id=3679; + type="Land_HBarrier_Big_F"; + atlOffset=0.0059814453; }; - class Item18 + class Item29 { dataType="Object"; class PositionInfo { - position[]={2518.1372,201.19972,3608.0938}; - angles[]={6.2168822,4.4132934,6.2615871}; + position[]={4747.3457,417.29813,7169.5288}; + angles[]={6.2799835,5.2310181,0.0055992967}; }; side="Empty"; flags=4; @@ -17015,17 +10443,17 @@ class Mission { skill=0.2; }; - id=7981; - type="Land_CargoBox_V1_F"; - atlOffset=-3.0517578e-005; + id=3680; + type="Land_Cargo10_light_green_F"; + atlOffset=-0.0024414063; }; - class Item19 + class Item30 { dataType="Object"; class PositionInfo { - position[]={2520.2429,201.08591,3606.9678}; - angles[]={6.2168822,2.8439631,6.2615871}; + position[]={4762.6333,416.38208,7152.1929}; + angles[]={6.2663836,0.5140667,6.2599902}; }; side="Empty"; flags=4; @@ -17033,16 +10461,16 @@ class Mission { skill=0.2; }; - id=7982; - type="Land_HBarrier_5_F"; + id=3681; + type="Land_HBarrier_3_F"; }; - class Item20 + class Item31 { dataType="Object"; class PositionInfo { - position[]={2515.8879,202.06288,3621.4504}; - angles[]={6.2256494,2.8439631,6.26159}; + position[]={4749.8076,417.1539,7164.0649}; + angles[]={6.2799835,3.7007656,0.0055992967}; }; side="Empty"; flags=4; @@ -17050,16 +10478,17 @@ class Mission { skill=0.2; }; - id=7983; - type="Land_HBarrier_5_F"; + id=3682; + type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item21 + class Item32 { dataType="Object"; class PositionInfo { - position[]={2516.2693,201.23251,3607.8726}; - angles[]={6.2176795,4.4259648,6.2607903}; + position[]={4757.6089,417.06613,7212.0586}; + angles[]={0.0023920804,5.2597313,0.0055992967}; }; side="Empty"; flags=4; @@ -17067,16 +10496,17 @@ class Mission { skill=0.2; }; - id=7984; - type="Land_HBarrier_5_F"; + id=3683; + type="Land_HBarrier_Big_F"; + atlOffset=0.0024719238; }; - class Item22 + class Item33 { dataType="Object"; class PositionInfo { - position[]={2513.1311,201.94611,3618.3892}; - angles[]={6.2256494,4.4259648,6.26159}; + position[]={4802.8574,414.91241,7154.5249}; + angles[]={6.1874776,2.1166177,6.271987}; }; side="Empty"; flags=4; @@ -17084,44 +10514,34 @@ class Mission { skill=0.2; }; - id=7985; - type="Land_HBarrier_5_F"; + id=3684; + type="Land_HBarrier_Big_F"; }; - class Item23 + class Item34 { dataType="Object"; class PositionInfo { - position[]={2517.6108,204.69572,3614.3738}; - angles[]={0,4.4259648,0}; + position[]={4743.5518,417.10837,7188.0083}; + angles[]={0.0039967569,2.1010666,0.0023920804}; }; side="Empty"; + flags=4; class Attributes { skill=0.2; }; - id=7986; - type="CamoNet_BLUFOR_open_F"; - atlOffset=1.2658386; + id=3685; + type="Land_HBarrier_Big_F"; + atlOffset=0.0058898926; }; - }; - id=7962; - atlOffset=1.3180542; - }; - class Item609 - { - dataType="Layer"; - name="Vehicle Repair_4"; - class Entities - { - items=16; - class Item0 + class Item35 { dataType="Object"; class PositionInfo { - position[]={2529.2219,202.69385,3651.4321}; - angles[]={6.2424073,1.2843723,6.2607903}; + position[]={4816.9614,414.51175,7199.2158}; + angles[]={0.03358667,0.52700472,6.0950394}; }; side="Empty"; flags=4; @@ -17129,16 +10549,17 @@ class Mission { skill=0.2; }; - id=7988; - type="Land_ClutterCutter_large_F"; + id=3686; + type="Land_HBarrier_Big_F"; + atlOffset=0.014862061; }; - class Item1 + class Item36 { dataType="Object"; class PositionInfo { - position[]={2526.3088,203.95851,3650.8196}; - angles[]={6.2424073,1.185412,6.2607903}; + position[]={4773.8462,416.39157,7222.7622}; + angles[]={0.047963165,3.6600299,6.271987}; }; side="Empty"; flags=4; @@ -17146,16 +10567,17 @@ class Mission { skill=0.2; }; - id=7989; - type="Land_Scrap_MRAP_01_F"; + id=3687; + type="Land_HBarrier_Big_F"; + atlOffset=0.0012207031; }; - class Item2 + class Item37 { dataType="Object"; class PositionInfo { - position[]={2531.8064,203.28708,3650.3333}; - angles[]={6.2424073,2.88656,6.2607903}; + position[]={4820.2983,414.09628,7187.291}; + angles[]={0.026395066,5.2104931,6.1299953}; }; side="Empty"; flags=4; @@ -17163,17 +10585,17 @@ class Mission { skill=0.2; }; - id=7990; - type="Land_WeldingTrolley_01_F"; - atlOffset=-0.00036621094; + id=3688; + type="Land_HBarrier_Big_F"; + atlOffset=0.0048522949; }; - class Item3 + class Item38 { dataType="Object"; class PositionInfo { - position[]={2531.1912,203.2142,3653.0833}; - angles[]={6.2424073,1.3052735,6.2607903}; + position[]={4786.6362,415.40762,7143.7627}; + angles[]={6.1700692,0.51691675,6.2527947}; }; side="Empty"; flags=4; @@ -17181,34 +10603,35 @@ class Mission { skill=0.2; }; - id=7991; - type="Land_Workbench_01_F"; - atlOffset=-0.00018310547; + id=3689; + type="Land_HBarrier_Big_F"; + atlOffset=-3.0517578e-005; }; - class Item4 + class Item39 { dataType="Object"; class PositionInfo { - position[]={2532.0591,203.56599,3648.5051}; - angles[]={0,1.8642963,0}; + position[]={4762.0601,416.69678,7219.71}; + angles[]={0.054346491,5.2597313,0.007209402}; }; side="Empty"; - flags=5; + flags=4; class Attributes { skill=0.2; }; - id=7992; - type="Land_PortableLight_double_F"; + id=3690; + type="Land_HBarrier_Big_F"; + atlOffset=0.002166748; }; - class Item5 + class Item40 { dataType="Object"; class PositionInfo { - position[]={2530.9619,203.10428,3646.1221}; - angles[]={6.2232571,2.8723392,6.260788}; + position[]={4798.4253,414.73672,7146.8569}; + angles[]={0.008802644,2.1166177,6.1574512}; }; side="Empty"; flags=4; @@ -17216,33 +10639,35 @@ class Mission { skill=0.2; }; - id=7993; - type="Land_HBarrier_5_F"; + id=3691; + type="Land_HBarrier_Big_F"; + atlOffset=3.0517578e-005; }; - class Item6 + class Item41 { dataType="Object"; class PositionInfo { - position[]={2529.9856,203.90128,3654.8811}; - angles[]={0,0.9289881,0}; + position[]={4742.1558,417.1214,7168.6235}; + angles[]={6.2767911,3.7007656,0.0087958695}; }; side="Empty"; - flags=5; + flags=4; class Attributes { skill=0.2; }; - id=7994; - type="Land_PortableLight_double_F"; + id=3692; + type="Land_HBarrier_Big_F"; + atlOffset=0.0012512207; }; - class Item7 + class Item42 { dataType="Object"; class PositionInfo { - position[]={2527.6765,203.10031,3645.248}; - angles[]={6.2296371,2.8698292,6.2543945}; + position[]={4739.1758,417.12262,7180.4546}; + angles[]={0.0023920804,2.1010666,0.0055992967}; }; side="Empty"; flags=4; @@ -17250,50 +10675,53 @@ class Mission { skill=0.2; }; - id=7995; - type="Land_HBarrier_1_F"; + id=3693; + type="Land_HBarrier_Big_F"; + atlOffset=0.0063171387; }; - class Item8 + class Item43 { dataType="Object"; class PositionInfo { - position[]={2533.6531,203.25374,3649.6177}; - angles[]={6.2232571,4.4421439,6.260788}; + position[]={4767.2529,420.14902,7222.9741}; + angles[]={0,2.9935756,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { skill=0.2; }; - id=7996; - type="Land_HBarrier_5_F"; + id=3694; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-3.0517578e-005; }; - class Item9 + class Item44 { dataType="Object"; class PositionInfo { - position[]={2526.3301,203.1174,3644.8433}; - angles[]={6.2296371,2.8698292,6.2543945}; + position[]={4793.0107,419.06738,7143.8506}; + angles[]={0,6.1171794,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { skill=0.2; }; - id=7997; - type="Land_HBarrier_1_F"; + id=3695; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.0029907227; }; - class Item10 + class Item45 { dataType="Object"; class PositionInfo { - position[]={2528.0793,203.65199,3656.1387}; - angles[]={6.2424073,2.8723392,6.2607903}; + position[]={4822.0352,413.22537,7194.335}; + angles[]={0.03358667,1.3337326,6.0950394}; }; side="Empty"; flags=4; @@ -17301,16 +10729,17 @@ class Mission { skill=0.2; }; - id=7998; + id=3696; type="Land_HBarrier_5_F"; + atlOffset=3.0517578e-005; }; - class Item11 + class Item46 { dataType="Object"; class PositionInfo { - position[]={2532.0688,203.51811,3655.0479}; - angles[]={6.2424073,4.4421439,6.2607903}; + position[]={4766.9624,415.91937,7224.6621}; + angles[]={0.047963165,6.0664654,6.271987}; }; side="Empty"; flags=4; @@ -17318,16 +10747,17 @@ class Mission { skill=0.2; }; - id=7999; + id=3697; type="Land_HBarrier_5_F"; + atlOffset=0.01260376; }; - class Item12 + class Item47 { dataType="Object"; class PositionInfo { - position[]={2524.7043,203.6467,3655.2891}; - angles[]={6.2424073,2.8698292,0.0039967569}; + position[]={4793.5298,414.67514,7141.8638}; + angles[]={6.1700692,2.9233611,6.2791886}; }; side="Empty"; flags=4; @@ -17335,17 +10765,17 @@ class Mission { skill=0.2; }; - id=8000; - type="Land_HBarrier_1_F"; - atlOffset=-1.5258789e-005; + id=3698; + type="Land_HBarrier_5_F"; + atlOffset=0.0030822754; }; - class Item13 + class Item48 { dataType="Object"; class PositionInfo { - position[]={2521.7737,202.71321,3649.3501}; - angles[]={6.2296381,1.2843723,6.277586}; + position[]={4737.2534,416.64114,7173.563}; + angles[]={6.2767911,4.5075088,0.0023920804}; }; side="Empty"; flags=4; @@ -17353,3559 +10783,7179 @@ class Mission { skill=0.2; }; - id=8001; - type="Land_ClutterCutter_large_F"; - atlOffset=-1.5258789e-005; + id=3699; + type="Land_HBarrier_5_F"; + atlOffset=0.00042724609; }; - class Item14 + class Item49 { dataType="Object"; class PositionInfo { - position[]={2523.5474,203.62953,3654.9819}; - angles[]={6.2424073,2.8698292,0.0039967569}; + position[]={5666.7402,360.34012,5616.7847}; + angles[]={0,2.3030751,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { skill=0.2; }; - id=8002; - type="Land_HBarrier_1_F"; - atlOffset=-1.5258789e-005; + id=7890; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=3.0517578e-005; }; - class Item15 + class Item50 { dataType="Object"; class PositionInfo { - position[]={2529.2219,204.76378,3651.4321}; - angles[]={6.2424073,1.4608077,6.2607903}; + position[]={5732.6416,357.11926,5550.7334}; + angles[]={0,5.4741454,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { skill=0.2; }; - id=8003; - type="CamoNet_BLUFOR_big_F"; + id=7891; + type="Land_Cargo_Patrol_V1_F"; }; }; - id=7987; - atlOffset=-0.018722534; + id=3700; + atlOffset=-10.067444; }; - class Item610 + class Item465 { - dataType="Object"; - class PositionInfo - { - position[]={2431.6165,199.7383,3606.3777}; - angles[]={6.2424088,5.9967613,0.06152248}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8004; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Industrial Compound (Large)"; + id=3996; + atlOffset=96.5; }; - class Item611 + class Item466 { - dataType="Object"; - class PositionInfo - { - position[]={2437.1321,200.14433,3608.0022}; - angles[]={6.2424088,5.9967613,0.06152248}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8005; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Storage Facility and Warehouse"; + id=4280; + atlOffset=96.5; }; - class Item612 + class Item467 { - dataType="Object"; - class PositionInfo - { - position[]={2442.6479,200.49493,3609.6267}; - angles[]={6.236021,5.9967613,0.054345392}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8006; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="IDAP Refugee Camp Large"; + id=4597; + atlOffset=96.5; }; - class Item613 + class Item468 { - dataType="Object"; - class PositionInfo - { - position[]={2427.5596,198.87134,3589.1606}; - angles[]={6.2424059,4.4126668,0.051954471}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8007; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Basketball Court"; + id=4615; + atlOffset=96.5; }; - class Item614 + class Item469 { - dataType="Object"; - class PositionInfo - { - position[]={2425.78,198.9984,3594.5422}; - angles[]={6.2424059,4.4126668,0.051954471}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8008; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Gas Station"; + id=4676; + atlOffset=96.5; }; - class Item615 + class Item470 { - dataType="Object"; - class PositionInfo - { - position[]={2424.1133,199.12439,3599.998}; - angles[]={6.2424073,4.4126668,0.06311693}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8009; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Cargo Post"; + id=4692; + atlOffset=96.5; }; - class Item616 + class Item471 { - dataType="Object"; - class PositionInfo - { - position[]={2429.2078,198.71455,3583.7339}; - angles[]={6.2368193,4.4214559,0.051953323}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8010; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Bunker (Small) #1"; + id=4710; + atlOffset=96.5; }; - class Item617 + class Item472 { - dataType="Object"; - class PositionInfo - { - position[]={2430.8252,198.56325,3578.3125}; - angles[]={6.241611,4.4214559,0.047164604}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8011; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Shoot House"; + id=5060; + atlOffset=96.5; }; - class Item618 + class Item473 { - dataType="Object"; - class PositionInfo - { - position[]={2418.7454,199.32843,3618.2239}; - angles[]={6.260788,1.2868916,0.060724311}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8012; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Depot [BLU]"; + id=5115; + atlOffset=96.5; + }; + class Item474 + { + dataType="Layer"; + name="Hangar"; + id=5227; + atlOffset=96.5; + }; + class Item475 + { + dataType="Layer"; + name="Hangar"; + id=5339; + atlOffset=96.5; + }; + class Item476 + { + dataType="Layer"; + name="Factory Headquarters"; + id=5415; + atlOffset=96.5; + }; + class Item477 + { + dataType="Layer"; + name="Main Headquarters"; + id=5477; + atlOffset=96.5; + }; + class Item478 + { + dataType="Layer"; + name="Radar Dome"; + id=5539; + atlOffset=96.5; }; - class Item619 + class Item479 { - dataType="Object"; - class PositionInfo - { - position[]={2420.2898,199.30177,3612.8416}; - angles[]={6.260788,1.2868916,0.060724311}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8013; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Fortified Comms Tower"; + id=5612; + atlOffset=96.5; }; - class Item620 + class Item480 { - dataType="Object"; - class PositionInfo - { - position[]={2421.8708,199.22581,3607.3604}; - angles[]={6.251195,1.2868916,0.06072529}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8014; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + dataType="Layer"; + name="Communications Post"; + id=5672; + atlOffset=96.5; }; - class Item621 + class Item481 { - dataType="Object"; - class PositionInfo - { - position[]={2417.2188,199.39429,3623.7131}; - angles[]={6.2503963,1.2868916,0.071080439}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8015; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + dataType="Layer"; + name="Comms Post [BLU]"; + id=5708; + atlOffset=96.5; }; - class Item622 + class Item482 { - dataType="Object"; - class PositionInfo - { - position[]={2415.6392,199.40692,3629.1448}; - angles[]={6.2631893,1.2868916,0.071079597}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8016; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Comms Post [OPF]"; + id=5760; + atlOffset=96.5; }; - class Item623 + class Item483 { - dataType="Object"; - class PositionInfo - { - position[]={2448.1636,200.87167,3611.2515}; - angles[]={6.236021,5.9967613,0.054345392}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8017; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Cargo HQ [BLU] #1"; + id=5851; + atlOffset=96.5; }; - class Item624 + class Item484 { - dataType="Object"; - class PositionInfo - { - position[]={2453.6794,201.2386,3612.8757}; - angles[]={6.2464013,5.9967613,0.052751794}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8018; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Cargo Tower [BLU]"; + id=5981; + atlOffset=96.5; }; - class Item625 + class Item485 { - dataType="Object"; - class PositionInfo - { - position[]={2459.1951,201.5896,3614.5002}; - angles[]={6.2464013,5.9967613,0.052751794}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8019; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Field Depot [BLU]"; + id=6077; + atlOffset=96.5; }; - class Item626 + class Item486 { - dataType="Object"; - class PositionInfo - { - position[]={2454.4644,200.51802,3597.197}; - angles[]={6.2344246,4.4126668,0.047963165}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8020; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + dataType="Layer"; + name="Field HQ [BLU]"; + id=6205; + atlOffset=96.5; }; - class Item627 + class Item487 { - dataType="Object"; - class PositionInfo - { - position[]={2452.6848,200.69109,3602.5786}; - angles[]={6.236021,4.4126668,0.047963165}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8021; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Concrete Wall LZ"; + id=6319; + atlOffset=96.5; }; - class Item628 + class Item488 { - dataType="Object"; - class PositionInfo - { - position[]={2451.0178,200.86859,3608.0344}; - angles[]={6.236021,4.4126668,0.047963165}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8022; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Heliport - Fortified [BLU]"; + id=6393; + atlOffset=96.5; }; - class Item629 + class Item489 { - dataType="Object"; - class PositionInfo - { - position[]={2456.1128,200.334,3591.7703}; - angles[]={6.2352238,4.4214559,0.047164604}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8023; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Heliport [BLU]"; + id=6439; + atlOffset=96.5; }; - class Item630 + class Item490 { - dataType="Object"; - class PositionInfo - { - position[]={2457.7305,200.14648,3586.3494}; - angles[]={6.2320304,4.4214559,0.047164604}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8024; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + dataType="Layer"; + name="Command Centre"; + id=6566; + atlOffset=96.5; }; - class Item631 + class Item491 { - dataType="Object"; - class PositionInfo - { - position[]={2445.7012,201.27847,3626.3159}; - angles[]={6.2639866,1.2868916,0.055144947}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8025; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Main Headquarters [BLU]"; + id=6757; + atlOffset=96.5; }; - class Item632 + class Item492 { - dataType="Object"; - class PositionInfo - { - position[]={2447.2458,201.1888,3620.9333}; - angles[]={6.2464013,1.2868916,0.055143863}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8026; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + dataType="Layer"; + name="Headquarters"; + id=6794; + atlOffset=96.5; }; - class Item633 + class Item493 { - dataType="Object"; - class PositionInfo - { - position[]={2448.8267,201.07434,3615.4519}; - angles[]={6.2464013,1.2868916,0.055143863}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8027; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + dataType="Layer"; + name="Headquarters (Fortified)"; + id=6858; + atlOffset=96.5; + }; + class Item494 + { + dataType="Layer"; + name="Military Compound"; + id=7018; + atlOffset=96.5; }; - class Item634 + class Item495 { - dataType="Object"; - class PositionInfo - { - position[]={2444.1741,201.30267,3631.8047}; - angles[]={6.2607903,1.2868916,0.058332846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8028; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + dataType="Layer"; + name="VIP Compound"; + id=7156; + atlOffset=96.5; }; - class Item635 + class Item496 { - dataType="Object"; - class PositionInfo - { - position[]={2442.5952,201.33215,3637.2368}; - angles[]={6.2607903,1.2868916,0.058332846}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8029; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + dataType="Layer"; + name="Main Headquarters [OPF]"; + id=7410; + atlOffset=96.5; }; - class Item636 + class Item497 { - dataType="Object"; - class PositionInfo - { - position[]={2464.7107,201.88098,3616.1248}; - angles[]={6.2448058,5.9967613,0.023195164}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8030; - type="Land_HBarrier_5_F"; + dataType="Layer"; + name="Main Headquarters [BLU]"; + id=7601; + atlOffset=96.5; }; - class Item637 + class Item498 { - dataType="Object"; - class PositionInfo - { - position[]={2470.2266,202.07285,3617.7495}; - angles[]={6.241611,5.9967613,0.026395066}; - }; - side="Empty"; - flags=4; - class Attributes + dataType="Layer"; + name="Military Compound"; + id=7761; + atlOffset=96.5; + }; + class Item499 + { + dataType="Layer"; + name="Command Centre"; + class Entities { + items=109; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,357.87314,5553.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7762; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.12460327; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,359.29453,5547.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7763; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.12945557; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,356.43808,5559.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7764; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.15838623; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5663.6577,359.63678,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7765; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.050231934; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5663.6577,355.63287,5562.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7766; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.015991211; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,355.34369,5577.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7767; + type="Land_Wall_IndCnc_4_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,355.53168,5589.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7768; + type="Land_Wall_IndCnc_4_F"; + atlOffset=6.1035156e-005; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,355.74692,5565.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7769; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.21279907; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,355.60849,5595.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7770; + type="Land_Wall_IndCnc_4_F"; + atlOffset=6.1035156e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,355.43491,5583.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7771; + type="Land_Wall_IndCnc_4_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.0952,355.35336,5571.7939}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7772; + type="Land_Wall_IndCnc_4_D_F"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,355.77921,5607.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7774; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,356.40292,5619.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7775; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,355.94751,5613.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7776; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={5660.5327,355.68811,5601.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7777; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={5663.6577,355.64755,5598.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7778; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={5663.4072,356.64963,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7779; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5661.501,361.8172,5621.75}; + angles[]={0,4.1887903,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7780; + type="Land_LampHalogen_F"; + atlOffset=3.0517578e-005; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={5690.0986,355.51215,5561.4287}; + angles[]={0.071078755,3.1415927,6.2408099}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7782; + type="Land_Cargo40_yellow_F"; + atlOffset=-0.0068359375; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={5675.6577,357.61789,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7783; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={5693.6577,356.20917,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7784; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={5669.6577,358.66437,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7785; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={5681.6577,356.78302,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7786; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={5687.6577,356.44043,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7788; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={5668.1255,360.7196,5554.5}; + angles[]={0,5.497787,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7789; + type="Land_dp_smallTank_F"; + atlOffset=0.033294678; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={5692.3755,356.70471,5557.5}; + angles[]={0,3.1402836,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + skill=0.2; + }; + id=7790; + type="Land_i_Shed_Ind_F"; + atlOffset=0.79580688; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={5679.7393,355.19565,5582.6465}; + angles[]={6.2663875,5.6900353,6.2408113}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7791; + type="Land_Wreck_HMMWV_F"; + atlOffset=3.0517578e-005; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={5670.5005,354.552,5579}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7792; + type="Land_i_Barracks_V1_F"; + atlOffset=3.0517578e-005; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={5679.6196,354.86752,5585.8857}; + angles[]={6.2607903,0,6.2464013}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7793; + type="Land_GarbageBags_F"; + atlOffset=6.1035156e-005; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={5676.4907,355.18573,5567.7778}; + angles[]={0.02399601,1.5707964,6.2424073}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7794; + type="Land_PaperBox_closed_F"; + atlOffset=3.0517578e-005; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={5677.1211,354.72171,5570.6855}; + angles[]={0.02399601,0.7422815,6.2424073}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7795; + type="Land_JunkPile_F"; + atlOffset=3.0517578e-005; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={5676.502,355.18808,5566.1538}; + angles[]={0.02399601,1.5707964,6.2424073}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7797; + type="Land_PaperBox_open_empty_F"; + atlOffset=3.0517578e-005; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={5692.501,357.82565,5607}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7798; + type="Land_MilOffices_V1_F"; + atlOffset=0.026794434; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={5687.4072,356.33978,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7799; + type="Land_Wall_IndCnc_4_F"; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={5681.4072,356.46936,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7800; + type="Land_Wall_IndCnc_4_F"; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={5693.4072,356.20032,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7801; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0049133301; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={5669.4072,356.62573,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7802; + type="Land_Wall_IndCnc_4_F"; + atlOffset=6.1035156e-005; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={5675.4468,356.60931,5623.312}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7803; + type="Land_Wall_IndCnc_4_D_F"; + atlOffset=3.0517578e-005; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={5669.6577,355.60916,5598.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7804; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={5705.3916,353.90317,5562.3062}; + angles[]={0.071081273,3.9269907,6.2424073}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7805; + type="Land_BagFence_Round_F"; + atlOffset=3.0517578e-005; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={5715.8921,353.3414,5563.1533}; + angles[]={0.016798066,2.3561945,6.2105131}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7806; + type="Land_BagFence_Round_F"; + atlOffset=3.0517578e-005; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={5728.2676,352.32675,5563.6548}; + angles[]={0.015199739,3.1415927,6.1779771}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7807; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={5706.0166,354.05588,5559.8032}; + angles[]={0.071081273,1.5707964,6.2424073}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7808; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={5706.0166,354.25171,5557.0532}; + angles[]={0.071081273,1.5707964,6.2424073}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7809; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={5715.2671,353.52179,5560.6787}; + angles[]={0.067896426,1.5707964,6.2105141}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7810; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={5706.0166,354.44751,5554.3032}; + angles[]={0.071078755,1.5707964,6.2424107}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7811; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={5702.8994,353.98181,5562.9277}; + angles[]={0.021595482,3.1415927,6.2424073}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7812; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={5718.3926,353.14883,5563.7798}; + angles[]={0.016798066,0,6.2105131}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7813; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={5722.7505,352.88428,5555.875}; + angles[]={0.067896426,3.1421337,6.2105141}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7814; + type="Land_HelipadSquare_F"; + atlOffset=3.0517578e-005; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={5717.6577,354.73694,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7815; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={5723.6577,354.28091,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7816; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={5705.6577,355.7338,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7817; + type="Land_Wall_IndCnc_4_F"; + atlOffset=6.1035156e-005; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={5729.6577,353.61996,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7818; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={5699.6577,355.97397,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7819; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.666,355.52176,5544.4932}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7820; + type="Land_Wall_IndCnc_4_D_F"; + atlOffset=6.1035156e-005; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={5708.5474,355.76755,5547.5825}; + angles[]={0.12888117,3.1416101,6.2424107}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7821; + type="Land_FieldToilet_F"; + atlOffset=-0.0083007813; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={5710.4224,355.69104,5547.5825}; + angles[]={0.12888117,3.4033921,6.2424107}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7822; + type="Land_FieldToilet_F"; + atlOffset=-0.0083312988; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={5704.375,360.93454,5545.75}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7823; + type="Land_LampHalogen_F"; + atlOffset=6.1035156e-005; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={5705.771,354.98596,5547.0293}; + angles[]={0.12888117,0,6.2424107}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7824; + type="Land_GarbagePallet_F"; + atlOffset=6.1035156e-005; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={5706.8013,354.92633,5589.3452}; + angles[]={6.2559919,4.712389,6.2480001}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7825; + type="Land_Cargo20_cyan_F"; + atlOffset=-9.1552734e-005; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.4072,354.39612,5595.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7827; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0071105957; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={5729.4072,353.27722,5595.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7828; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.011138916; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={5723.4072,353.74918,5595.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7829; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.011138916; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={5708.5327,354.19293,5586.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7830; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={5708.5327,354.36679,5592.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7831; + type="Land_Wall_IndCnc_4_F"; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={5708.5327,354.01184,5580.7852}; + angles[]={0,4.712389,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7832; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0013427734; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={5717.4072,354.07156,5595.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7833; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0071411133; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={5723.5317,356.31952,5585}; + angles[]={0,1.5654486,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + skill=0.2; + }; + id=7834; + type="Land_Shed_Big_F"; + atlOffset=0.36413574; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.2505,354.20041,5578.375}; + angles[]={0,4.1887903,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7842; + type="Land_PortableLight_double_F"; + atlOffset=3.0517578e-005; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={5709.3755,359.67838,5595.125}; + angles[]={0,5.497787,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7843; + type="Land_LampHalogen_F"; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={5717.4072,355.59094,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7848; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0030212402; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={5723.4072,355.33353,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7849; + type="Land_Wall_IndCnc_4_F"; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.4072,355.82919,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7850; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0030517578; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={5729.4072,354.98303,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7851; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={5699.4072,356.061,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7852; + type="Land_Wall_IndCnc_4_F"; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={5705.4072,355.93784,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7853; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0012817383; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={5712.1382,354.96362,5616.7402}; + angles[]={6.1930332,5.7828341,6.2647853}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7854; + type="Land_GarbageBags_F"; + atlOffset=3.0517578e-005; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.2695,354.91754,5613.7354}; + angles[]={6.1930332,1.5707964,6.2647853}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7855; + type="Land_PaperBox_closed_F"; + atlOffset=3.0517578e-005; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={5725.5005,372.70749,5610.125}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7856; + type="Land_TTowerBig_1_F"; + atlOffset=3.0517578e-005; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={5722.9219,354.42667,5597.46}; + angles[]={6.2432065,0,6.2288389}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7857; + type="Land_Cargo20_light_green_F"; + atlOffset=-0.0020446777; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.2686,354.76498,5612.1084}; + angles[]={6.253592,1.5707964,6.259192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7858; + type="Land_PaperBox_open_empty_F"; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={5744.6768,350.80942,5559.0283}; + angles[]={0.050355144,5.497787,6.1811419}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7859; + type="Land_BagFence_Round_F"; + atlOffset=3.0517578e-005; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={5745.2969,350.62015,5561.5239}; + angles[]={0.050355144,4.712389,6.1811419}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7860; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={5742.1572,351.099,5558.4023}; + angles[]={0.050355144,3.1415927,6.1811419}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7861; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={5731.4341,352.12979,5560.5537}; + angles[]={0.061521512,1.5707964,6.1779771}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7862; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,351.70953,5560.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7864; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={5735.6577,352.94452,5544.9106}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7865; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,352.43759,5548.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7866; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,352.07913,5554.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7867; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={5737.5,357.93982,5545.875}; + angles[]={0,1.0471976,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7868; + type="Land_LampHalogen_F"; + atlOffset=3.0517578e-005; + }; + class Item90 + { + dataType="Object"; + class PositionInfo + { + position[]={5737.5005,356.93988,5562.3755}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7869; + type="Land_LampHalogen_F"; + atlOffset=3.0517578e-005; + }; + class Item91 + { + dataType="Object"; + class PositionInfo + { + position[]={5730.7827,352.07062,5563.0293}; + angles[]={0.015199739,3.9269907,6.1779771}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7870; + type="Land_BagFence_Round_F"; + atlOffset=3.0517578e-005; + }; + class Item92 + { + dataType="Object"; + class PositionInfo + { + position[]={5744.6709,350.77725,5578.2568}; + angles[]={6.2352247,3.9269907,6.1874781}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7871; + type="Land_BagFence_Round_F"; + atlOffset=3.0517578e-005; + }; + class Item93 + { + dataType="Object"; + class PositionInfo + { + position[]={5745.2949,350.59827,5575.7759}; + angles[]={6.2352247,1.5707964,6.1874781}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7872; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item94 + { + dataType="Object"; + class PositionInfo + { + position[]={5742.1553,351.04874,5578.8813}; + angles[]={6.2352247,3.1415927,6.1874781}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7873; + type="Land_BagFence_Long_F"; + atlOffset=3.0517578e-005; + }; + class Item95 + { + dataType="Object"; + class PositionInfo + { + position[]={5733.7217,352.99646,5584.1475}; + angles[]={6.2352247,4.712389,6.1954107}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=7874; + type="Land_Cargo40_military_green_F"; + atlOffset=-9.1552734e-005; + }; + class Item96 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,352.25272,5590.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7875; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0068969727; + }; + class Item97 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,351.66162,5578.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7876; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item98 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,351.94962,5584.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7877; + type="Land_Wall_IndCnc_4_F"; + atlOffset=3.0517578e-005; + }; + class Item99 + { + dataType="Object"; + class PositionInfo + { + position[]={5735.4072,352.82755,5595.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7878; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.041473389; + }; + class Item100 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.9453,352.52133,5596.062}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7879; + type="Land_Wall_IndCnc_4_D_F"; + atlOffset=0.043548584; + }; + class Item101 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5327,351.51578,5574.9106}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7880; + type="Land_Wall_IndCnc_Pole_F"; + atlOffset=6.1035156e-005; + }; + class Item102 + { + dataType="Object"; + class PositionInfo + { + position[]={5737.5,357.83215,5595}; + angles[]={0,1.0471976,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7881; + type="Land_LampHalogen_F"; + }; + class Item103 + { + dataType="Object"; + class PositionInfo + { + position[]={5740.8755,354.83295,5569.0005}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7882; + type="Land_BarGate_F"; + atlOffset=0.20944214; + }; + class Item104 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,353.51553,5614.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7883; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.0059814453; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,354.13724,5620.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7884; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.013275146; + }; + class Item106 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,353.14023,5608.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7885; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.01651001; + }; + class Item107 + { + dataType="Object"; + class PositionInfo + { + position[]={5735.4072,354.64154,5622.9102}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7886; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.023345947; + }; + class Item108 + { + dataType="Object"; + class PositionInfo + { + position[]={5738.5322,352.84094,5602.0356}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=7887; + type="Land_Wall_IndCnc_4_F"; + atlOffset=0.010040283; + }; }; - id=8031; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=7888; + atlOffset=0.17941284; }; - class Item638 + class Item500 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={2475.7424,202.25813,3619.3738}; - angles[]={6.241611,5.9967613,6.271987}; + position[]={5684.9873,353.69931,5586.7319}; + angles[]={6.2527928,0,6.2479987}; }; - side="Empty"; - flags=4; - class Attributes + areaSize[]={59.677002,0,41.096436}; + areaIsRectangle=1; + flags=1; + id=7889; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.55593872; + class CustomAttributes { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; }; - id=8032; - type="Land_HBarrier_5_F"; }; - class Item639 + class Item501 { dataType="Object"; class PositionInfo { - position[]={2482.325,201.5157,3605.7615}; - angles[]={6.2264457,4.4126668,6.271987}; + position[]={7052.4829,99.348541,6723.6274}; + angles[]={6.2567906,6.1866245,6.1253104}; }; side="Empty"; flags=4; class Attributes { }; - id=8033; - type="Land_HBarrier_5_F"; + id=7893; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; }; - class Item640 + class Item502 { dataType="Object"; class PositionInfo { - position[]={2480.5457,201.84134,3611.1431}; - angles[]={6.2264457,4.4126668,6.271987}; + position[]={7060.9429,98.023308,6724.4473}; + angles[]={6.2567906,6.1866245,6.1253104}; }; side="Empty"; flags=4; class Attributes { }; - id=8034; - type="Land_HBarrier_5_F"; + id=7894; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; }; - class Item641 + class Item503 { dataType="Object"; class PositionInfo { - position[]={2478.8782,202.10759,3616.5989}; - angles[]={6.241611,4.4126668,6.271987}; + position[]={7051.4946,99.633896,6733.8301}; + angles[]={6.2727871,6.1866245,6.1253104}; }; side="Empty"; flags=4; class Attributes { }; - id=8035; - type="Land_HBarrier_5_F"; + id=7895; + type="Land_HBarrier_Big_F"; }; - class Item642 + class Item504 { dataType="Object"; class PositionInfo { - position[]={2483.9736,201.19157,3600.335}; - angles[]={6.2272429,4.4214559,6.2711854}; + position[]={7069.4033,97.509224,6725.2666}; + angles[]={6.259192,6.1866245,6.2416096}; }; side="Empty"; flags=4; class Attributes { }; - id=8036; - type="Land_HBarrier_5_F"; + id=7896; + type="Land_HBarrier_Big_F"; }; - class Item643 + class Item505 { dataType="Object"; class PositionInfo { - position[]={2485.5908,200.85233,3594.9138}; - angles[]={6.2240543,4.4214559,6.2711854}; + position[]={7077.8638,97.22805,6726.0859}; + angles[]={6.2480001,6.1866245,6.2551923}; }; side="Empty"; flags=4; class Attributes { }; - id=8037; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=7897; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; }; - class Item644 + class Item506 { dataType="Object"; class PositionInfo { - position[]={2473.6155,202.74193,3634.3259}; - angles[]={6.2527928,1.2868916,0.030392511}; + position[]={7086.3242,97.02993,6726.9058}; + angles[]={6.2344246,6.1866245,6.2687874}; }; side="Empty"; flags=4; class Attributes { }; - id=8038; - type="Land_HBarrier_5_F"; + id=7898; + type="Land_HBarrier_Big_F"; }; - class Item645 + class Item507 { dataType="Object"; class PositionInfo { - position[]={2475.1602,202.61948,3628.9434}; - angles[]={6.2527947,1.2868916,6.277586}; + position[]={7094.7847,96.959755,6727.7251}; + angles[]={6.2344232,6.1866245,6.2703824}; }; side="Empty"; flags=4; class Attributes { }; - id=8039; - type="Land_HBarrier_5_F"; + id=7899; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; }; - class Item646 + class Item508 { dataType="Object"; class PositionInfo { - position[]={2476.7407,202.41814,3623.4622}; - angles[]={6.236022,1.2868916,6.277586}; + position[]={7098.5088,97.307961,6733.3604}; + angles[]={6.2168837,4.615828,0.004796607}; }; side="Empty"; flags=4; class Attributes { }; - id=8040; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=7900; + type="Land_HBarrier_Big_F"; + atlOffset=-7.6293945e-006; }; - class Item647 + class Item509 { dataType="Object"; class PositionInfo { - position[]={2472.0886,202.86609,3639.8149}; - angles[]={6.251195,1.2868916,0.030390549}; + position[]={7059.9551,98.392143,6734.6494}; + angles[]={6.259192,6.1866245,6.1386018}; }; side="Empty"; flags=4; class Attributes { }; - id=8041; - type="Land_HBarrier_5_F"; + id=7901; + type="Land_HBarrier_Big_F"; }; - class Item648 + class Item510 { dataType="Object"; class PositionInfo { - position[]={2470.51,202.98409,3645.2468}; - angles[]={6.2535939,1.2868916,0.027993103}; + position[]={7068.4155,97.838669,6735.4688}; + angles[]={6.2479987,6.1866245,6.2527947}; }; side="Empty"; flags=4; class Attributes { }; - id=8042; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=7902; + type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; }; - class Item649 + class Item511 { dataType="Object"; class PositionInfo { - position[]={2506.9185,202.52768,3628.5559}; - angles[]={6.2416096,5.9967613,6.2799835}; + position[]={7076.8755,98.078941,6736.2886}; + angles[]={0,6.1866245,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=8054; - type="Land_HBarrierWall_corridor_F"; + id=7903; + type="Land_HBarrier_Big_F"; + atlOffset=0.4550705; }; - class Item650 + class Item512 { dataType="Object"; class PositionInfo { - position[]={2497.4504,204.19075,3669.5513}; - angles[]={6.2767911,4.4259648,0.015998369}; + position[]={7085.3359,97.542023,6737.1079}; + angles[]={6.2344246,6.1866245,6.2687874}; }; side="Empty"; flags=4; class Attributes { }; - id=8055; - type="Land_HBarrierWall_corner_F"; + id=7904; + type="Land_HBarrier_Big_F"; + atlOffset=-7.6293945e-006; }; - class Item651 + class Item513 { dataType="Object"; class PositionInfo { - position[]={2492.457,204.09235,3667.0381}; - angles[]={6.2759929,5.9967613,0.016794518}; + position[]={7097.7134,97.728912,6741.5718}; + angles[]={6.2392135,4.615828,0.017598685}; }; side="Empty"; flags=4; class Attributes { }; - id=8056; - type="Land_HBarrierWall_corner_F"; - }; - class Item652 - { - dataType="Object"; - class PositionInfo - { - position[]={2497.1711,205.62079,3661.6504}; - angles[]={0,1.2871128,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=8057; - type="Land_Mil_WiredFence_Gate_F"; + id=7905; + type="Land_HBarrier_Big_F"; }; - class Item653 + class Item514 { dataType="Object"; class PositionInfo { - position[]={2505.5059,202.7404,3633.3521}; - angles[]={6.2352238,4.4259648,0.0031832056}; + position[]={7047.6494,99.909019,6737.2251}; + angles[]={6.2727871,4.615828,6.2824135}; }; side="Empty"; flags=4; class Attributes { }; - id=8058; - type="Land_HBarrierWall_corridor_F"; + id=7906; + type="Land_HBarrier_Big_F"; }; - class Item654 + class Item515 { dataType="Object"; class PositionInfo { - position[]={2503.9517,202.98599,3638.6282}; - angles[]={6.237618,4.4259648,0.0031832056}; + position[]={7046.8296,100.0264,6745.6855}; + angles[]={6.269588,4.615828,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=8059; - type="Land_HBarrierWall_corridor_F"; + id=7907; + type="Land_HBarrier_Big_F"; }; - class Item655 + class Item516 { dataType="Object"; class PositionInfo { - position[]={2502.3979,203.22159,3643.9038}; - angles[]={6.237618,4.4259648,0.0031832056}; + position[]={7046.0103,100.14609,6754.146}; + angles[]={6.2687874,4.615828,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=8060; - type="Land_HBarrierWall_corridor_F"; + id=7908; + type="Land_HBarrier_Big_F"; }; - class Item656 + class Item517 { dataType="Object"; class PositionInfo { - position[]={2500.844,203.45726,3649.1799}; - angles[]={6.2352223,4.4259648,0.0055992967}; + position[]={7045.1909,100.26897,6762.6064}; + angles[]={6.2711854,4.615828,6.2816033}; }; side="Empty"; flags=4; class Attributes { }; - id=8061; - type="Land_HBarrierWall_corridor_F"; + id=7909; + type="Land_HBarrier_Big_F"; }; - class Item657 + class Item518 { dataType="Object"; class PositionInfo { - position[]={2498.781,203.88911,3657.9546}; - angles[]={6.2280407,5.9967613,0.016798066}; + position[]={7044.3711,100.04752,6771.0664}; + angles[]={0.098084196,4.615828,6.1716504}; }; side="Empty"; flags=4; class Attributes { }; - id=8062; - type="Land_HBarrier_5_F"; + id=7910; + type="Land_HBarrier_Big_F"; }; - class Item658 + class Item519 { dataType="Object"; class PositionInfo { - position[]={2499.2903,203.72595,3654.4561}; - angles[]={6.2280407,4.4259648,0.016798066}; + position[]={7055.7534,98.492706,6775.4341}; + angles[]={0.060726274,6.1866245,6.1946177}; }; side="Empty"; flags=4; class Attributes { }; - id=8063; - type="Land_HBarrierWall_corridor_F"; + id=7911; + type="Land_HBarrier_Big_F"; }; - class Item659 + class Item520 { dataType="Object"; class PositionInfo { - position[]={2496.5208,204.12457,3665.6287}; - angles[]={6.2759929,2.8551688,0.016794518}; + position[]={7064.2134,97.819611,6776.2539}; + angles[]={0.043971907,6.1866245,6.2567906}; }; side="Empty"; flags=4; class Attributes { }; - id=8064; - type="Land_HBarrier_5_F"; + id=7912; + type="Land_HBarrier_Big_F"; }; - class Item660 + class Item521 { dataType="Object"; class PositionInfo { - position[]={2514.0669,200.95177,3602.5146}; - angles[]={6.2176795,4.4259648,6.2607903}; + position[]={7072.6738,97.560196,6777.0732}; + angles[]={0.043971907,6.1866245,6.2567906}; }; side="Empty"; flags=4; class Attributes { }; - id=8065; - type="Land_HBarrierWall_corridor_F"; + id=7913; + type="Land_HBarrier_Big_F"; }; - class Item661 + class Item522 { dataType="Object"; class PositionInfo { - position[]={2512.5129,201.33266,3607.7905}; - angles[]={6.2176795,4.4259648,6.2607903}; + position[]={7081.1343,97.44738,6777.8926}; + angles[]={0.054346491,6.1866245,0.0023920804}; }; side="Empty"; flags=4; class Attributes { }; - id=8066; - type="Land_HBarrierWall_corridor_F"; + id=7914; + type="Land_HBarrier_Big_F"; }; - class Item662 + class Item523 { dataType="Object"; class PositionInfo { - position[]={2510.959,201.68805,3613.0664}; - angles[]={6.2344246,4.4259648,6.2711854}; + position[]={7089.5947,97.425438,6778.7124}; + angles[]={0.066302508,6.1866245,0.024795037}; }; side="Empty"; flags=4; class Attributes { }; - id=8067; - type="Land_HBarrierWall_corridor_F"; + id=7915; + type="Land_HBarrier_Big_F"; }; - class Item663 + class Item524 { dataType="Object"; class PositionInfo { - position[]={2509.4053,201.98836,3618.3425}; - angles[]={6.2256494,4.4259648,6.2799835}; + position[]={7096.645,98.080971,6750.0083}; + angles[]={6.2799835,4.615828,0.017595299}; }; side="Empty"; flags=4; class Attributes { }; - id=8068; - type="Land_HBarrierWall_corridor_F"; - atlOffset=1.5258789e-005; + id=7916; + type="Land_HBarrier_Big_F"; }; - class Item664 + class Item525 { dataType="Object"; class PositionInfo { - position[]={2507.8513,202.2972,3623.6182}; - angles[]={6.2256494,4.4259648,6.2799835}; + position[]={7095.8257,98.148575,6758.4688}; + angles[]={6.2671871,4.615828,0.030390549}; }; side="Empty"; flags=4; class Attributes { }; - id=8069; - type="Land_HBarrierWall_corridor_F"; - atlOffset=1.5258789e-005; + id=7917; + type="Land_HBarrier_Big_F"; + atlOffset=-7.6293945e-006; }; - class Item665 + class Item526 { dataType="Object"; class PositionInfo { - position[]={2515.0557,200.74582,3599.1572}; - angles[]={6.2176805,5.9967613,6.2607903}; + position[]={7095.0059,98.067711,6766.9292}; + angles[]={0.027193764,4.615828,0.030390549}; }; side="Empty"; flags=4; class Attributes { }; - id=8070; - type="Land_HBarrier_3_F"; - atlOffset=1.5258789e-005; + id=7918; + type="Land_HBarrier_Big_F"; }; - class Item666 + class Item527 { dataType="Object"; class PositionInfo { - position[]={2511.9841,200.05174,3588.3491}; - angles[]={6.2184753,5.9967613,6.2711802}; + position[]={7094.1865,97.759941,6775.3896}; + angles[]={0.066302508,4.615828,0.024795037}; }; side="Empty"; flags=4; class Attributes { }; - id=8071; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=7919; + type="Land_HBarrier_Big_F"; }; - class Item667 + class Item528 { dataType="Object"; class PositionInfo { - position[]={2511.1104,200.39003,3586.0068}; - angles[]={6.2192721,5.9967613,6.2647853}; + position[]={7047.2485,102.90779,6728.395}; + angles[]={6.2727871,4.615828,6.2824135}; }; side="Empty"; - flags=4; class Attributes { }; - id=8072; - type="Land_HBarrier_Big_F"; + id=7920; + type="Land_BarGate_F"; + atlOffset=0.25; }; - class Item668 + class Item529 { dataType="Object"; class PositionInfo { - position[]={2506.708,200.05196,3586.7952}; - angles[]={6.2192721,5.9967613,6.2647853}; + position[]={7051.7021,103.45441,6744.6504}; + angles[]={0,1.4742353,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8073; - type="Land_HBarrier_5_F"; + id=7921; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-7.6293945e-006; }; - class Item669 + class Item530 { dataType="Object"; class PositionInfo { - position[]={2502.9565,200.39009,3583.6052}; - angles[]={6.2232571,5.9967613,6.260788}; + position[]={7089.3291,96.657173,6789.2358}; + angles[]={0.097292177,3.0450318,0.019999012}; }; side="Empty"; flags=4; class Attributes { }; - id=8074; + id=7922; type="Land_HBarrier_Big_F"; }; - class Item670 + class Item531 { dataType="Object"; class PositionInfo { - position[]={2501.4321,200.05292,3585.2412}; - angles[]={6.2232571,5.9967613,6.260788}; + position[]={7080.8687,96.777489,6788.416}; + angles[]={0.083007939,3.0450318,6.2735858}; }; side="Empty"; flags=4; class Attributes { }; - id=8075; - type="Land_HBarrier_5_F"; + id=7923; + type="Land_HBarrier_Big_F"; }; - class Item671 + class Item532 { dataType="Object"; class PositionInfo { - position[]={2495.6768,200.04208,3583.5461}; - angles[]={6.2232571,5.9967613,6.269588}; + position[]={7072.4082,96.998703,6787.5967}; + angles[]={0.068692133,3.0450318,6.2464013}; }; side="Empty"; flags=4; class Attributes { }; - id=8076; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; + id=7924; + type="Land_HBarrier_Big_F"; }; - class Item672 + class Item533 { dataType="Object"; class PositionInfo { - position[]={2494.803,200.38292,3581.2039}; - angles[]={6.2232571,5.9967613,6.269588}; + position[]={7063.9478,97.356056,6786.7773}; + angles[]={0.054347586,3.0450318,6.2464013}; }; side="Empty"; flags=4; class Attributes { }; - id=8077; + id=7925; type="Land_HBarrier_Big_F"; + atlOffset=7.6293945e-006; }; - class Item673 + class Item534 { dataType="Object"; class PositionInfo { - position[]={2490.4006,200.03311,3581.9924}; - angles[]={6.2280426,5.9967613,6.2647886}; + position[]={7055.4873,97.942802,6785.9575}; + angles[]={0.043971907,3.0450318,6.2113094}; }; side="Empty"; flags=4; class Attributes { }; - id=8078; - type="Land_HBarrier_5_F"; + id=7926; + type="Land_HBarrier_Big_F"; + atlOffset=-7.6293945e-006; }; - class Item674 + class Item535 { dataType="Object"; class PositionInfo { - position[]={2486.6492,200.39348,3578.8022}; - angles[]={6.2280426,5.9967613,6.2671871}; + position[]={7047.0269,98.958305,6785.1382}; + angles[]={0.06072529,3.0450318,6.101995}; }; side="Empty"; flags=4; class Attributes { }; - id=8079; + id=7927; type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + atlOffset=7.6293945e-006; }; - class Item675 + class Item536 { dataType="Object"; class PositionInfo { - position[]={2485.125,200.0387,3580.4385}; - angles[]={6.2280426,5.9967613,6.2671871}; + position[]={7043.3027,99.826904,6779.5029}; + angles[]={6.2727814,1.4742355,6.1716504}; }; side="Empty"; flags=4; class Attributes { }; - id=8080; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=7928; + type="Land_HBarrier_Big_F"; }; - class Item676 + class Item537 { dataType="Object"; class PositionInfo { - position[]={2479.3691,200.04424,3578.7432}; - angles[]={6.2296362,5.9967613,6.2655869}; + position[]={7094.563,100.2374,6784.4683}; + angles[]={0.071079597,1.4742355,0.019996032}; }; side="Empty"; flags=4; class Attributes { }; - id=8081; - type="Land_HBarrier_5_F"; + id=7929; + type="Land_BarGate_F"; + atlOffset=0.24999237; }; - class Item677 + class Item538 { dataType="Object"; class PositionInfo { - position[]={2478.4954,200.40358,3576.4009}; - angles[]={6.2296362,5.9967613,6.2655869}; + position[]={7083.3584,101.35715,6773.085}; + angles[]={0,3.0450318,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8082; - type="Land_HBarrier_Big_F"; + id=7930; + type="Land_Cargo_Patrol_V1_F"; }; - class Item678 + class Item539 { dataType="Object"; class PositionInfo { - position[]={2474.0933,200.02623,3577.1895}; - angles[]={6.2296362,5.9967613,0.01280293}; + position[]={7089.9087,101.58702,6767.6914}; + angles[]={0,4.615828,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8083; - type="Land_HBarrier_5_F"; + id=7931; + type="Land_Cargo_Patrol_V1_F"; }; - class Item679 + class Item540 { dataType="Object"; class PositionInfo { - position[]={2470.3418,200.27832,3573.9995}; - angles[]={6.2200704,5.9967613,0.010398259}; + position[]={7085.0063,97.188828,6743.104}; + angles[]={0,3.0450318,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8084; - type="Land_HBarrier_Big_F"; + id=7932; + type="Land_Cargo_House_V1_F"; }; - class Item680 + class Item541 { dataType="Object"; class PositionInfo { - position[]={2468.8174,199.88873,3575.6355}; - angles[]={6.2320304,5.9967613,0.010398259}; + position[]={7056.0586,98.108032,6769.687}; + angles[]={0,6.1866245,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8085; - type="Land_HBarrier_5_F"; + id=7933; + type="Land_Cargo_House_V1_F"; + atlOffset=7.6293945e-006; }; - class Item681 + class Item542 { dataType="Object"; class PositionInfo { - position[]={2463.0618,199.73097,3573.9404}; - angles[]={6.2232571,5.9967613,0.0072011296}; + position[]={7052.3926,102.63477,6773.3027}; + angles[]={0,2.5214329,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8086; - type="Land_HBarrier_5_F"; + id=7934; + type="Land_TTowerSmall_1_F"; + atlOffset=7.6293945e-006; }; - class Item682 + class Item543 { dataType="Object"; class PositionInfo { - position[]={2462.188,200.04292,3571.5981}; - angles[]={6.2232571,5.9967613,0.041577213}; + position[]={7088.9238,104.85121,6738.9624}; + angles[]={0,3.0450318,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8087; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; + id=7935; + type="Land_TTowerSmall_2_F"; + atlOffset=7.6293945e-006; }; - class Item683 + class Item544 { dataType="Object"; class PositionInfo { - position[]={2457.7859,199.43762,3572.3865}; - angles[]={6.2232571,5.9967613,0.041577213}; + position[]={7058.2529,102.42729,6739.2568}; + angles[]={0,6.1866245,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8088; - type="Land_HBarrier_5_F"; - atlOffset=3.0517578e-005; + id=7936; + type="Land_Cargo_Patrol_V1_F"; }; - class Item684 + class Item545 { dataType="Object"; class PositionInfo { - position[]={2454.0342,199.5681,3569.1965}; - angles[]={6.2280416,5.9967613,0.036783949}; + position[]={7068.9614,98.317513,6773.9507}; + angles[]={0.027990974,6.1866245,6.2567925}; }; side="Empty"; - flags=4; class Attributes { }; - id=8089; - type="Land_HBarrier_Big_F"; + id=7937; + type="Land_Cargo40_military_green_F"; + atlOffset=0.41942596; }; - class Item685 + class Item546 { dataType="Object"; class PositionInfo { - position[]={2452.51,199.13281,3570.8325}; - angles[]={6.2280416,5.9967613,0.036783949}; + position[]={7069.2266,98.310173,6771.2134}; + angles[]={0.027990974,6.1866245,6.2567925}; }; side="Empty"; - flags=4; class Attributes { }; - id=8090; - type="Land_HBarrier_5_F"; + id=7938; + type="Land_Cargo40_military_green_F"; + atlOffset=0.34242249; }; - class Item686 + class Item547 { dataType="Object"; class PositionInfo { - position[]={2447.2339,198.83737,3569.2786}; - angles[]={6.2280407,5.9967613,0.042375464}; + position[]={7069.082,103.81417,6772.7065}; + angles[]={0.027990974,6.1866245,6.2567925}; }; side="Empty"; - flags=4; class Attributes { }; - id=8091; - type="Land_HBarrier_5_F"; + id=7939; + type="Land_Cargo40_military_green_F"; + atlOffset=5.8844223; }; - class Item687 + class Item548 { dataType="Object"; class PositionInfo { - position[]={2445.8806,199.11241,3566.7952}; - angles[]={6.2280407,5.9967613,0.042375464}; + position[]={7071.3203,97.361137,6741.7783}; + angles[]={6.2647886,3.0450318,6.260788}; }; side="Empty"; flags=4; class Attributes { }; - id=8092; - type="Land_HBarrier_Big_F"; + id=7940; + type="Land_Medevac_house_V1_F"; + atlOffset=7.6293945e-006; }; - class Item688 + class Item549 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={2531.9873,199.90018,3594.7617}; - angles[]={6.2129011,5.9967613,6.247201}; + position[]={7070.0601,96.899574,6756.7241}; + angles[]={0,6.1748877,0}; }; - side="Empty"; - flags=4; - class Attributes + areaSize[]={27.610001,0,31.806999}; + areaIsRectangle=1; + flags=1; + id=7941; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.051010132; + class CustomAttributes { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; }; - id=8093; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; }; - class Item689 + class Item550 + { + dataType="Marker"; + position[]={5411.4707,451.25,5968.7446}; + name="island"; + markerType="RECTANGLE"; + type="ellipse"; + fillName="Border"; + a=7260.3525; + b=3881.4094; + angle=281.49884; + drawBorder=1; + id=7946; + atlOffset=80.688202; + }; + class Item551 + { + dataType="Marker"; + position[]={10685.275,38.889198,3810.7349}; + name="island_1"; + markerType="RECTANGLE"; + type="rectangle"; + fillName="Border"; + a=1628.6877; + b=1110.517; + angle=351.11893; + drawBorder=1; + id=7947; + atlOffset=15.959801; + }; + class Item552 + { + dataType="Marker"; + position[]={1119.0909,16.625,11948.07}; + name="island_2"; + markerType="RECTANGLE"; + type="rectangle"; + fillName="Border"; + a=911.43744; + b=688.78528; + angle=11.204995; + drawBorder=1; + id=7948; + atlOffset=-13.964973; + }; + class Item553 + { + dataType="Marker"; + position[]={9662.0869,33.314789,3789.7827}; + name="road_32"; + type="hd_arrow"; + id=7950; + atlOffset=-1.9511871; + }; + class Item554 + { + dataType="Marker"; + position[]={9430.9902,15.582298,3615.3931}; + name="road_33"; + type="hd_arrow"; + id=7951; + atlOffset=-1.9511871; + }; + class Item555 + { + dataType="Marker"; + position[]={9767.667,36.92873,3990.6501}; + name="road_34"; + type="hd_arrow"; + id=7952; + atlOffset=-1.9511871; + }; + class Item556 + { + dataType="Marker"; + position[]={10066.299,26.17466,4027.6467}; + name="road_35"; + type="hd_arrow"; + id=7953; + atlOffset=-1.9511871; + }; + class Item557 { - dataType="Object"; - class PositionInfo - { - position[]={2528.7153,200.2948,3591.7131}; - angles[]={6.2176795,5.9967613,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8094; - type="Land_HBarrier_Big_F"; + dataType="Marker"; + position[]={10486.761,15.848598,4196.1509}; + name="road_36"; + type="hd_arrow"; + id=7954; + atlOffset=-1.9511881; }; - class Item690 + class Item558 { - dataType="Object"; - class PositionInfo - { - position[]={2526.7114,200.0051,3593.2078}; - angles[]={6.2176795,5.9967613,6.2424073}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8095; - type="Land_HBarrier_5_F"; + dataType="Marker"; + position[]={11058.517,22.712757,4197.6699}; + name="road_37"; + type="hd_arrow"; + id=7955; + atlOffset=-1.9511871; }; - class Item691 + class Item559 { - dataType="Object"; - class PositionInfo - { - position[]={2517.375,200.2619,3588.125}; - angles[]={0,4.4591022,0}; - }; - side="Empty"; - class Attributes - { - }; - id=8096; - type="Land_HBarrierWall_corridor_F"; - atlOffset=0.27203369; + dataType="Marker"; + position[]={11261.775,15.748955,4268.458}; + name="road_38"; + type="hd_arrow"; + id=7956; + atlOffset=-1.9511871; }; - class Item692 + class Item560 { - dataType="Object"; - class PositionInfo - { - position[]={2518.6167,201.01653,3583.5264}; - angles[]={6.2136965,6.0017529,6.2599902}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8097; - type="Land_HBarrierTower_F"; + dataType="Marker"; + position[]={833.31549,14.35758,11943.996}; + name="road_39"; + type="hd_arrow"; + id=7958; + atlOffset=-1.9511871; }; - class Item693 + class Item561 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={2544.543,200.03125,3596.3748}; - angles[]={6.2129011,5.9967613,6.247201}; + position[]={2479.1504,186.625,3599.5476}; + angles[]={0.023195164,5.9668398,0.059129976}; }; - side="Empty"; - flags=4; - class Attributes + areaSize[]={113.49379,0,66.107864}; + areaIsRectangle=1; + flags=1; + id=7961; + type="ModuleHideTerrainObjects_F"; + atlOffset=-13.838409; + class CustomAttributes { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; }; - id=8098; - type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; }; - class Item694 + class Item562 { - dataType="Object"; - class PositionInfo - { - position[]={2542.5391,199.73914,3597.8694}; - angles[]={6.2129011,5.9967613,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes + dataType="Layer"; + name="Open Ammo Dump_4"; + class Entities { + items=24; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={2440.7461,199.55856,3597.6765}; + angles[]={6.2352238,2.8215117,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8485; + type="Land_BagFence_Short_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={2437.9539,199.39439,3596.6646}; + angles[]={6.2416081,2.8215117,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8486; + type="Land_BagFence_Short_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={2441.4565,199.57043,3596.467}; + angles[]={6.2352238,4.3651872,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8487; + type="Land_Pallet_MilBoxes_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={2438.5261,199.35976,3595.0449}; + angles[]={6.2416081,2.8148446,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8488; + type="Land_MetalBarrel_F"; + atlOffset=-0.00019836426; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2440.1165,199.7283,3594.686}; + angles[]={6.2416081,1.2395102,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8489; + type="Land_HBarrier_5_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2438.814,199.33537,3594.1711}; + angles[]={6.2416081,2.8320541,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8490; + type="Land_MetalBarrel_F"; + atlOffset=-0.00022888184; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={2438.3298,199.28317,3593.4006}; + angles[]={6.2416081,2.7835155,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8491; + type="Land_MetalBarrel_F"; + atlOffset=-0.00022888184; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2439.0994,199.30833,3593.2356}; + angles[]={6.2416081,2.8214064,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8492; + type="Land_MetalBarrel_F"; + atlOffset=-0.00019836426; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={2442.4937,199.49515,3593.6853}; + angles[]={6.2416081,2.8215117,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8493; + type="Land_Pallet_MilBoxes_F"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={2445.0803,199.8344,3599.0891}; + angles[]={6.2352238,2.8215117,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8494; + type="Land_BagFence_Short_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={2445.3218,199.98622,3597.9946}; + angles[]={6.2352238,2.8215117,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8495; + type="Land_PaperBox_open_empty_F"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={2438.7139,199.26036,3592.4678}; + angles[]={6.2416081,2.8079324,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8496; + type="Land_MetalBarrel_F"; + atlOffset=-0.00021362305; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={2439.467,199.3569,3592.1648}; + angles[]={6.2416081,2.8128023,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8497; + type="Land_MetalBarrel_F"; + atlOffset=0.077606201; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={2433.7813,199.12309,3595.3159}; + angles[]={6.2416096,2.8215117,0.052750662}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8498; + type="Land_BagFence_Short_F"; + atlOffset=1.5258789e-005; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={2445.855,199.97768,3596.5298}; + angles[]={6.2352238,2.8215117,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8499; + type="Land_PaperBox_closed_F"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={2433.8499,199.23698,3594.2803}; + angles[]={6.2416096,2.8824611,0.052750662}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8500; + type="Land_WaterBarrel_F"; + atlOffset=-0.00036621094; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={2441.4382,199.6447,3591.3547}; + angles[]={6.2416081,2.8215117,0.041577213}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8501; + type="Land_HBarrier_5_F"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={2435.1323,199.33179,3592.0867}; + angles[]={6.2416096,1.2164541,0.052750662}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8502; + type="Land_WaterTank_F"; + atlOffset=-0.00047302246; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={2446.3347,200.01683,3594.9785}; + angles[]={6.2352238,2.8088403,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8503; + type="Land_CargoBox_V1_F"; + atlOffset=-0.00019836426; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={2447.4385,200.17986,3597.1316}; + angles[]={6.2352238,1.2395102,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8504; + type="Land_HBarrier_5_F"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={2433.1111,199.28812,3592.2915}; + angles[]={6.2416096,1.2395102,0.052750662}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8505; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={2446.6682,199.95081,3593.1299}; + angles[]={6.2352238,2.8215117,0.04796192}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8506; + type="Land_HBarrier_5_F"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={2436.2637,199.34425,3589.6399}; + angles[]={6.2416096,2.8215117,0.052750662}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8507; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={2440.1267,202.7867,3594.2515}; + angles[]={0,2.8215117,0}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=8508; + type="CamoNet_BLUFOR_open_F"; + atlOffset=1.2602386; + }; }; - id=8099; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=7962; + atlOffset=1.3211975; }; - class Item695 + class Item563 { - dataType="Object"; - class PositionInfo - { - position[]={2536.3894,200.15569,3593.9731}; - angles[]={6.2129011,5.9967613,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes + dataType="Layer"; + name="Vehicle Repair_4"; + class Entities { + items=15; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={2525.0737,201.31969,3623.9158}; + angles[]={6.2208662,2.8402252,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8509; + type="Land_ClutterCutter_large_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={2524.418,202.71846,3626.8201}; + angles[]={6.2296362,2.7412648,6.2719817}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8510; + type="Land_Scrap_MRAP_01_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={2523.98,201.87053,3621.2573}; + angles[]={6.2208652,4.4424129,6.2663836}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8511; + type="Land_WeldingTrolley_01_F"; + atlOffset=-7.6293945e-005; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={2526.7283,201.63388,3621.9297}; + angles[]={6.2208662,2.8611264,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8512; + type="Land_Workbench_01_F"; + atlOffset=-0.00035095215; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2522.1892,202.2737,3621.0359}; + angles[]={0,3.4201493,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=8513; + type="Land_PortableLight_double_F"; + atlOffset=1.5258789e-005; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2519.7913,202.03688,3622.0969}; + angles[]={6.2208652,4.4281917,6.2663836}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8514; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={2528.5337,202.24011,3623.2046}; + angles[]={0,2.4848409,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=8515; + type="Land_PortableLight_double_F"; + atlOffset=-1.5258789e-005; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2518.8669,202.21283,3625.3684}; + angles[]={6.2352223,4.4256816,6.2663875}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8516; + type="Land_HBarrier_1_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={2523.3259,201.81282,3619.4583}; + angles[]={6.2208652,5.9979968,6.2663836}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8517; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={2518.4424,202.28432,3626.7095}; + angles[]={6.2352223,4.4256816,6.2663875}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8518; + type="Land_HBarrier_1_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={2529.7627,201.98116,3625.1284}; + angles[]={6.2296371,4.4281917,6.2503963}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8519; + type="Land_HBarrier_5_F"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={2528.7322,201.75429,3621.1238}; + angles[]={6.2208662,5.9979968,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8520; + type="Land_HBarrier_5_F"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={2528.8621,202.15256,3628.4912}; + angles[]={6.2296371,4.4256816,6.2503963}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8521; + type="Land_HBarrier_1_F"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={2528.5388,202.22495,3629.644}; + angles[]={6.2296371,4.4256816,6.2503963}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8522; + type="Land_HBarrier_1_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={2525.0737,203.38962,3623.9158}; + angles[]={6.2208662,3.0166607,6.247201}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=8523; + type="CamoNet_BLUFOR_big_F"; + }; }; - id=8100; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=7987; + atlOffset=-0.01071167; }; - class Item696 + class Item564 { dataType="Object"; class PositionInfo { - position[]={2537.2632,199.81963,3596.3154}; - angles[]={6.2129011,5.9967613,6.247201}; + position[]={5808.5,7.583497,2430.375}; + angles[]={0,3.8920476,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8101; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=8380; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=2.3841858e-007; }; - class Item697 + class Item565 { dataType="Object"; class PositionInfo { - position[]={2521.4353,200.08228,3591.6541}; - angles[]={6.2176805,2.8551688,6.2607903}; + position[]={8449.25,9.3365993,3719.75}; + angles[]={0,0.210719,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8102; - type="Land_HBarrierWall4_F"; - atlOffset=1.5258789e-005; + id=8381; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=-4.7683716e-007; }; - class Item698 + class Item566 { dataType="Object"; class PositionInfo { - position[]={2546.856,199.73106,3599.1409}; - angles[]={6.2129011,5.9967613,6.247201}; + position[]={9341.625,8.585,3734.375}; + angles[]={0,6.2532845,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8103; - type="Land_HBarrier_3_F"; - atlOffset=1.5258789e-005; + id=8382; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=-2.3841858e-007; }; - class Item699 + class Item567 { dataType="Object"; class PositionInfo { - position[]={2515.5354,204.49162,3675.3987}; - angles[]={6.2767911,2.8551688,0.015998369}; + position[]={958,10.035,11854.25}; + angles[]={0,5.8783731,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8104; - type="Land_HBarrier_5_F"; + id=8383; + type="Land_Cargo_Patrol_V2_F"; + atlOffset=-4.7683716e-007; }; - class Item700 + class Item568 { dataType="Object"; class PositionInfo { - position[]={2518.8071,205.03297,3678.4473}; - angles[]={6.2767911,2.8551688,0.015998369}; + position[]={800.56268,41.816208,12128.037}; + angles[]={0,1.6371516,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8105; - type="Land_HBarrier_Big_F"; + id=8384; + type="Land_Cargo_Tower_V2_F"; + atlOffset=-1.9073486e-006; }; - class Item701 + class Item569 { dataType="Object"; class PositionInfo { - position[]={2520.811,204.58597,3676.9526}; - angles[]={6.2767911,2.8551688,0.015998369}; + position[]={1003.374,41.816208,12240.091}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8106; - type="Land_HBarrier_5_F"; + id=8385; + type="Land_Cargo_Tower_V2_F"; + atlOffset=-1.9073486e-006; }; - class Item702 + class Item570 { dataType="Object"; class PositionInfo { - position[]={2502.9792,204.70811,3673.7856}; - angles[]={6.2424088,2.8551688,0.015998369}; + position[]={574.7486,33.825001,12324.54}; + angles[]={0,2.2862699,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8107; - type="Land_HBarrier_Big_F"; + id=8386; + type="Land_Cargo_Patrol_V2_F"; }; - class Item703 + class Item571 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={2504.9834,204.2097,3672.2908}; - angles[]={6.2424088,2.8551688,0.015998369}; - }; - side="Empty"; - flags=4; - class Attributes - { + position[]={8264.625,11.6933,5959.375}; }; - id=8108; - type="Land_HBarrier_5_F"; + name="pathfinding"; + id=8387; + type="Logic"; }; - class Item704 + class Item572 + { + dataType="Marker"; + position[]={8515.5879,-1.2098112,3849.7024}; + name="seaSpawn_3"; + type="hd_objective"; + id=8388; + atlOffset=6.3372011; + }; + class Item573 { dataType="Object"; class PositionInfo { - position[]={2511.1331,204.89574,3676.187}; - angles[]={6.2767911,2.8551688,0.015998369}; + position[]={796.48413,28.927189,12248.518}; + angles[]={0,3.177263,0.00069053395}; }; side="Empty"; flags=4; class Attributes { }; - id=8109; - type="Land_HBarrier_Big_F"; + id=8389; + type="Land_HelipadCircle_F"; + atlOffset=1.9073486e-006; }; - class Item705 + class Item574 { dataType="Object"; class PositionInfo { - position[]={2510.2593,204.35751,3673.845}; - angles[]={6.2424088,2.8551688,0.015998369}; + position[]={824.37927,28.930002,12247.419}; + angles[]={0,3.177263,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8110; - type="Land_HBarrier_5_F"; + id=8390; + type="Land_HelipadCircle_F"; + atlOffset=1.9073486e-006; }; - class Item706 + class Item575 { dataType="Object"; class PositionInfo { - position[]={2500.6665,204.26059,3671.0195}; - angles[]={6.2767816,2.8551688,6.2647886}; + position[]={855.18127,28.930002,12247.855}; + angles[]={0,3.177263,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8111; - type="Land_HBarrier_3_F"; + id=8391; + type="Land_HelipadCircle_F"; + atlOffset=1.9073486e-006; }; - class Item707 + class Item576 { dataType="Object"; class PositionInfo { - position[]={2568.3059,205.7939,3697.9775}; - angles[]={6.2001767,2.8551688,0.017598685}; + position[]={883.08856,28.930002,12246.437}; + angles[]={0,3.177263,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8112; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=8392; + type="Land_HelipadCircle_F"; + atlOffset=1.9073486e-006; }; - class Item708 + class Item577 { dataType="Object"; class PositionInfo { - position[]={2574.6694,205.80161,3696.7241}; - angles[]={6.2001767,1.2843723,0.017598685}; + position[]={649.25,34.383457,12166.75}; + angles[]={0,4.7403245,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8113; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=8393; + type="Land_Hangar_F"; }; - class Item709 + class Item578 { dataType="Object"; class PositionInfo { - position[]={2582.4026,205.04044,3691.7046}; - angles[]={6.2001777,1.2843723,6.236021}; + position[]={863.125,33.019966,12141}; + angles[]={0,6.0655122,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8114; - type="Land_HBarrier_Big_F"; + id=8394; + type="Land_TentHangar_V1_F"; }; - class Item710 + class Item579 { dataType="Object"; class PositionInfo { - position[]={2578.5359,205.02011,3694.2146}; - angles[]={6.2001777,5.9967613,6.236021}; + position[]={899.36371,33.019966,12150.025}; + angles[]={0,6.0779552,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8115; - type="Land_HBarrier_3_F"; + id=8395; + type="Land_TentHangar_V1_F"; }; - class Item711 + class Item580 { dataType="Object"; class PositionInfo { - position[]={2533.8499,204.17834,3669.8469}; - angles[]={6.2416081,1.2843723,6.2551923}; + position[]={936.07361,33.019966,12158.457}; + angles[]={0,6.0490637,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8116; - type="Land_HBarrier_5_F"; + id=8396; + type="Land_TentHangar_V1_F"; }; - class Item712 + class Item581 { dataType="Object"; class PositionInfo { - position[]={2536.1921,204.5459,3668.9729}; - angles[]={6.2416081,1.2843723,6.2551923}; + position[]={8038.4619,29.755375,10267.219}; + angles[]={6.2743897,4.6746531,0.0039967569}; }; side="Empty"; flags=4; class Attributes { }; - id=8117; - type="Land_HBarrier_Big_F"; + id=8399; + type="Land_HelipadCircle_F"; + atlOffset=1.9073486e-006; }; - class Item713 + class Item582 { dataType="Object"; class PositionInfo { - position[]={2538.4521,204.16064,3661.2988}; - angles[]={6.2368178,1.2843723,6.2583904}; + position[]={8038.3208,30.15959,10313.423}; + angles[]={6.2807932,4.6746531,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=8118; - type="Land_HBarrier_Big_F"; + id=8400; + type="Land_HelipadCircle_F"; + atlOffset=1.9073486e-006; }; - class Item714 + class Item583 { dataType="Object"; class PositionInfo { - position[]={2535.4038,203.91505,3664.5708}; - angles[]={6.2304358,1.2843723,6.2663875}; + position[]={8036.0615,30.220402,10365.878}; + angles[]={6.2824135,4.6746531,0.0015822123}; }; side="Empty"; flags=4; class Attributes { }; - id=8119; - type="Land_HBarrier_5_F"; + id=8401; + type="Land_HelipadCircle_F"; + atlOffset=1.9073486e-006; }; - class Item715 + class Item584 { dataType="Object"; class PositionInfo { - position[]={2536.9575,203.63091,3659.2949}; - angles[]={6.2368178,1.2843723,6.2663836}; + position[]={8093.375,34.113766,10349.625}; + angles[]={0,4.6672049,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8120; - type="Land_HBarrier_5_F"; + id=8402; + type="Land_TentHangar_V1_F"; }; - class Item716 + class Item585 { dataType="Object"; class PositionInfo { - position[]={2582.3762,204.04364,3686.4846}; - angles[]={6.1089687,5.9967613,6.236021}; + position[]={8093.75,33.884762,10316.125}; + angles[]={0,4.6672049,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8121; - type="Land_HBarrier_5_F"; + id=8403; + type="Land_TentHangar_V1_F"; + atlOffset=-1.9073486e-006; }; - class Item717 + class Item586 { dataType="Object"; class PositionInfo { - position[]={2604.2405,195.77231,3620.2117}; - angles[]={6.1922374,4.4259648,0.12179399}; + position[]={8094.8667,33.634186,10287.107}; + angles[]={0,4.6672049,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8122; - type="Land_HBarrier_Big_F"; + id=8404; + type="Land_TentHangar_V1_F"; }; - class Item718 + class Item587 + { + dataType="Layer"; + name="Airports"; + class Entities + { + items=11; + class Item0 + { + dataType="Marker"; + position[]={8007.25,29.656,10127}; + name="airp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=38.950001; + b=6; + angle=91.023949; + id=8405; + atlOffset=-0.00020217896; + }; + class Item1 + { + dataType="Marker"; + position[]={2466.625,202.125,3618.375}; + name="airp_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.458; + b=6; + angle=164.26862; + id=8406; + atlOffset=0.85369873; + }; + class Item2 + { + dataType="Marker"; + position[]={737.32501,28.92,12192.586}; + name="airp_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=38.950001; + b=6; + angle=179.98801; + id=8397; + }; + class Item3 + { + dataType="Marker"; + position[]={770.20099,28.92,12218.563}; + name="airport"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=245.19299; + b=128.724; + angle=359.98282; + id=10; + }; + class Item4 + { + dataType="Marker"; + position[]={8010.6182,29.607,10048.31}; + name="airport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=353.64713; + b=143.76234; + angle=270.10999; + id=0; + atlOffset=-0.34006882; + }; + class Item5 + { + dataType="Marker"; + position[]={2474.3821,194.875,3599.9299}; + name="airport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=56.975945; + b=110.46664; + angle=253.26059; + id=569; + atlOffset=-5.6492462; + }; + class Item6 + { + dataType="Marker"; + position[]={8114.625,29.513,10129.5}; + name="airp_1_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.3979998; + b=5.5040002; + id=8398; + atlOffset=-0.00020217896; + }; + class Item7 + { + dataType="Marker"; + position[]={7983.373,30.379,10134.592}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorKhaki"; + a=134.00934; + b=721.08051; + id=7942; + atlOffset=0.70843697; + }; + class Item8 + { + dataType="Marker"; + position[]={8193.2158,32.903679,10098.529}; + name="detectPlayer_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorKhaki"; + a=39.26651; + b=157.81145; + id=7944; + atlOffset=4.0136795; + }; + class Item9 + { + dataType="Marker"; + position[]={1156.386,32.94368,12278.309}; + name="detectPlayer_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorKhaki"; + a=141.90463; + b=68.14592; + id=7945; + atlOffset=4.0136795; + }; + class Item10 + { + dataType="Marker"; + position[]={2480.9316,194.125,3600.3179}; + name="detectPlayer_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorKhaki"; + a=70.838394; + b=124.25774; + angle=72.733604; + id=8755; + atlOffset=-6.3616028; + }; + }; + id=8407; + atlOffset=-188.48845; + }; + class Item588 { dataType="Object"; class PositionInfo { - position[]={2602.9167,195.05188,3614.0884}; - angles[]={6.1922374,2.8551688,0.12179399}; + position[]={7414.7573,168.91441,8153.6377}; + angles[]={0.012000273,4.8067594,0.065506957}; }; side="Empty"; flags=4; class Attributes { }; - id=8123; - type="Land_HBarrier_Big_F"; + id=8410; + type="Land_HelipadCircle_F"; }; - class Item719 + class Item589 { dataType="Object"; class PositionInfo { - position[]={2597.4172,196.60497,3606.2139}; - angles[]={0,2.8551688,0}; + position[]={3619.5,59.194496,3806.375}; + angles[]={6.2551947,0.38687754,6.2511969}; }; side="Empty"; + flags=4; class Attributes { }; - id=8124; - type="Land_HBarrier_Big_F"; - atlOffset=2.3995819; + id=8413; + type="Land_HelipadCircle_F"; }; - class Item720 + class Item590 + { + dataType="Layer"; + name="Factories"; + class Entities + { + items=7; + class Item0 + { + dataType="Marker"; + position[]={7433.75,169.252,8117.625}; + name="fact_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.911; + b=6; + angle=184.36493; + id=8411; + atlOffset=-0.00030517578; + }; + class Item1 + { + dataType="Marker"; + position[]={3668.79,58.174,3842.1831}; + name="fact_2_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.911; + b=6; + angle=205.11798; + id=8412; + atlOffset=0.00051498413; + }; + class Item2 + { + dataType="Marker"; + position[]={7732.375,6.579,3342.375}; + name="fact_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.911; + b=6; + angle=261.4689; + id=8408; + atlOffset=0.00014734268; + }; + class Item3 + { + dataType="Marker"; + position[]={7718.125,5.7199998,3401.75}; + name="fact_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.911; + b=6; + angle=260.8526; + id=8409; + }; + class Item4 + { + dataType="Marker"; + position[]={7673.022,5.1409845,3348.5276}; + name="factory"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=50; + b=88.061829; + angle=348.87259; + id=20; + }; + class Item5 + { + dataType="Marker"; + position[]={7421.0728,169.24702,8106.8564}; + name="factory_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=50; + b=50; + angle=31.913368; + id=24; + }; + class Item6 + { + dataType="Marker"; + position[]={3623.1519,60.189022,3863.6733}; + name="factory_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=55.103382; + b=66.169678; + angle=22.773102; + id=27; + }; + }; + id=8415; + atlOffset=-70.355667; + }; + class Item591 { dataType="Object"; class PositionInfo { - position[]={2600.407,194.00703,3610.2217}; - angles[]={6.2081265,1.2843724,0.0980848}; + position[]={3860.75,67.391701,4913.125}; + angles[]={6.2727871,5.3622956,6.2687874}; }; side="Empty"; flags=4; class Attributes { }; - id=8125; - type="Land_HBarrier_3_F"; + id=8418; + type="Land_HelipadCircle_F"; }; - class Item721 + class Item592 { dataType="Object"; class PositionInfo { - position[]={2538.5115,203.3519,3654.019}; - angles[]={6.2368178,1.2843723,6.2583904}; + position[]={3845.0708,67.531143,4892.7036}; + angles[]={6.2816033,5.3622956,6.2663875}; }; side="Empty"; flags=4; class Attributes { }; - id=8126; - type="Land_HBarrier_5_F"; + id=8419; + type="Land_HelipadCircle_F"; + atlOffset=7.6293945e-006; }; - class Item722 + class Item593 { dataType="Object"; class PositionInfo { - position[]={2540.8538,203.72275,3653.145}; - angles[]={6.2368178,1.2843723,6.2583904}; + position[]={3830,67.835999,4873.75}; + angles[]={0.0080009829,5.3622956,6.2583928}; }; side="Empty"; flags=4; class Attributes { }; - id=8127; - type="Land_HBarrier_Big_F"; + id=8420; + type="Land_HelipadCircle_F"; }; - class Item723 + class Item594 { dataType="Object"; class PositionInfo { - position[]={2543.114,203.25264,3645.4709}; - angles[]={6.2240534,1.2843723,6.2583904}; + position[]={5274.75,88.402512,4795.125}; + angles[]={0.015199739,2.407856,6.249599}; }; side="Empty"; flags=4; class Attributes { }; - id=8128; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=8422; + type="Land_HelipadSquare_F"; }; - class Item724 + class Item595 { dataType="Object"; class PositionInfo { - position[]={2540.0654,203.05246,3648.7432}; - angles[]={6.2240534,1.2843723,6.2583904}; + position[]={5297.25,88.758812,4810.75}; + angles[]={0.075853623,2.4970336,0.008802644}; }; side="Empty"; flags=4; class Attributes { }; - id=8129; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=8423; + type="Land_HelipadSquare_F"; }; - class Item725 + class Item596 { dataType="Object"; class PositionInfo { - position[]={2541.6194,202.69966,3643.467}; - angles[]={6.2232571,1.2843723,6.2591896}; + position[]={7826.0757,199.90311,7529.3999}; + angles[]={0,5.3281245,6.2025604}; }; side="Empty"; flags=4; class Attributes { }; - id=8130; - type="Land_HBarrier_5_F"; + id=8426; + type="Land_HelipadSquare_F"; + atlOffset=1.5258789e-005; }; - class Item726 + class Item597 { dataType="Object"; class PositionInfo { - position[]={2543.1731,202.34583,3638.1914}; - angles[]={6.2232571,1.2843723,6.2591896}; + position[]={6060,168.64603,9623.75}; + angles[]={0.05115639,2.7786937,6.2224593}; }; side="Empty"; flags=4; class Attributes { }; - id=8131; - type="Land_HBarrier_5_F"; + id=8428; + type="Land_HelipadSquare_F"; }; - class Item727 + class Item598 { dataType="Object"; class PositionInfo { - position[]={2547.7754,202.15427,3629.6433}; - angles[]={6.2184763,1.2843723,6.2591896}; + position[]={3022.1199,212.45816,5880.564}; + angles[]={0.0023920804,4.6210556,6.2791886}; }; side="Empty"; flags=4; class Attributes { }; - id=8132; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=8430; + type="Land_HelipadSquare_F"; + }; + class Item599 + { + dataType="Layer"; + name="Resources"; + class Entities + { + items=14; + class Item0 + { + dataType="Marker"; + position[]={5260.25,85.329002,4697}; + name="reso_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.875; + b=6; + angle=143.91901; + id=8421; + atlOffset=0.00043487549; + }; + class Item1 + { + dataType="Marker"; + position[]={6636.25,151.27901,6043.375}; + name="reso_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.875; + b=6; + angle=286.93387; + id=8424; + atlOffset=0.00018310547; + }; + class Item2 + { + dataType="Marker"; + position[]={7761.125,199.99001,7528.875}; + name="reso_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.875; + b=6; + angle=303.70499; + id=8425; + }; + class Item3 + { + dataType="Marker"; + position[]={6019.6909,169.85699,9615.8965}; + name="reso_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.804; + b=6; + angle=259.52194; + id=8427; + atlOffset=0.10258484; + }; + class Item4 + { + dataType="Marker"; + position[]={2998.625,210.438,5928.5}; + name="reso_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.875; + b=6; + angle=84.048981; + id=8429; + atlOffset=0.00030517578; + }; + class Item5 + { + dataType="Marker"; + position[]={3799.5381,68.508003,4910.6729}; + name="reso_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.875; + b=6; + angle=33.047997; + id=8417; + atlOffset=0.089248657; + }; + class Item6 + { + dataType="Marker"; + position[]={3788.7478,68.698112,4933.604}; + name="resource"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=78.358322; + b=50; + angle=36.569485; + id=29; + }; + class Item7 + { + dataType="Marker"; + position[]={5300.4443,86.306969,4740.1777}; + name="resource_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=63.408409; + b=64.500244; + angle=316.034; + id=22; + atlOffset=-0.64219666; + }; + class Item8 + { + dataType="Marker"; + position[]={6578.2607,156.52678,6030.8262}; + name="resource_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=60.398438; + b=61.015869; + angle=340.66174; + id=23; + }; + class Item9 + { + dataType="Marker"; + position[]={7773.8516,199.99001,7545.8081}; + name="resource_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=67.712891; + b=66.645752; + angle=306.16391; + id=25; + }; + class Item10 + { + dataType="Marker"; + position[]={6023.124,170.14127,9593.957}; + name="resource_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=55.066452; + b=56.746811; + angle=347.50516; + id=26; + atlOffset=-0.21235657; + }; + class Item11 + { + dataType="Marker"; + position[]={3013.6797,212.46721,5894.146}; + name="resource_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=57.681084; + angle=341.73367; + id=28; + atlOffset=0.082305908; + }; + class Item12 + { + dataType="Marker"; + position[]={5382.4629,64.404839,3691.5237}; + name="resource_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=78.358322; + b=50; + angle=311.47577; + id=8758; + }; + class Item13 + { + dataType="Marker"; + position[]={5404.5,63.967201,3710.5}; + name="reso_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.875; + b=6; + angle=60.169682; + id=8760; + }; + }; + id=8431; + atlOffset=12.317612; }; - class Item728 + class Item600 { dataType="Object"; class PositionInfo { - position[]={2544.7271,201.96994,3632.9153}; - angles[]={6.2184763,1.2843723,6.2591896}; + position[]={1050.157,3.4221988,691.05896}; + angles[]={0.0087958695,1.6255023,0.022394964}; }; side="Empty"; flags=4; class Attributes { }; - id=8133; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=8434; + type="Land_HelipadSquare_F"; + atlOffset=1.1920929e-006; }; - class Item729 + class Item601 { dataType="Object"; class PositionInfo { - position[]={2546.2808,201.59857,3627.6394}; - angles[]={6.2256494,1.2843723,6.2519951}; + position[]={1050.5715,3.6283917,665.65149}; + angles[]={0.014402352,1.586879,0.041575778}; }; side="Empty"; flags=4; class Attributes { }; - id=8134; - type="Land_HBarrier_5_F"; + id=8435; + type="Land_HelipadSquare_F"; }; - class Item730 + class Item602 { dataType="Object"; class PositionInfo { - position[]={2594.8845,195.53633,3626.3171}; - angles[]={6.1425219,1.2843723,6.2623887}; + position[]={3547.1206,2.41712,3282.8889}; + angles[]={6.2671871,0.7164948,0.02399601}; }; side="Empty"; flags=4; class Attributes { }; - id=8135; - type="Land_HBarrierWall6_F"; + id=8438; + type="Land_HelipadSquare_F"; + atlOffset=3.3378601e-006; }; - class Item731 + class Item603 { dataType="Object"; class PositionInfo { - position[]={2600.9094,195.27367,3624.4431}; - angles[]={6.2129011,5.9967613,0.10125301}; + position[]={5759.1475,2.3247507,2403.1003}; + angles[]={0.012000273,0.010262722,0.0023920804}; }; side="Empty"; flags=4; class Attributes { }; - id=8136; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=8441; + type="Land_HelipadSquare_F"; }; - class Item732 + class Item604 { dataType="Object"; class PositionInfo { - position[]={2402.0305,196.68958,3570.5601}; - angles[]={6.2424088,1.2843723,0.053548392}; + position[]={5736.75,2.1292,2403.25}; + angles[]={0.015998369,6.2538157,6.2416096}; }; side="Empty"; flags=4; class Attributes { }; - id=8137; - type="Land_HBarrierWall_corridor_F"; + id=8442; + type="Land_HelipadSquare_F"; }; - class Item733 + class Item605 { dataType="Object"; class PositionInfo { - position[]={2397.3689,197.00137,3586.3877}; - angles[]={6.247201,1.2843723,0.064709939}; + position[]={8462.5,6,3903.5}; + angles[]={0,3.910322,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=8138; - type="Land_HBarrierWall_corridor_F"; - atlOffset=1.5258789e-005; + id=8445; + type="Land_HelipadSquare_F"; + atlOffset=1.4099998; }; - class Item734 + class Item606 { dataType="Object"; class PositionInfo { - position[]={2392.707,197.14133,3602.2156}; - angles[]={6.2615871,1.2843723,0.075058997}; + position[]={9357.625,3.6800001,3793.5}; + angles[]={0,1.5023501,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8139; - type="Land_HBarrierWall_corridor_F"; + id=8447; + type="Land_HelipadSquare_F"; }; - class Item735 + class Item607 { dataType="Object"; class PositionInfo { - position[]={2391.1533,197.13846,3607.4912}; - angles[]={6.2615871,1.2843723,0.075058997}; + position[]={9359.5098,3.6800001,3770.4961}; + angles[]={0,1.5023501,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8140; - type="Land_HBarrierWall_corridor_F"; + id=8448; + type="Land_HelipadSquare_F"; }; - class Item736 + class Item608 { dataType="Object"; class PositionInfo { - position[]={2389.5994,197.13866,3612.7673}; - angles[]={6.2687874,1.2843723,0.077443115}; + position[]={9360.875,3.6800001,3750}; + angles[]={0,1.5023501,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8141; - type="Land_HBarrierWall_corridor_F"; + id=8449; + type="Land_HelipadSquare_F"; }; - class Item737 + class Item609 { - dataType="Object"; - class PositionInfo - { - position[]={2386.4917,196.99136,3623.3191}; - angles[]={6.2687831,1.2843723,0.13438509}; - }; - side="Empty"; - flags=4; - class Attributes + dataType="Layer"; + name="Seaports"; + class Entities { + items=19; + class Item0 + { + dataType="Marker"; + position[]={1109.625,11.174,629}; + name="seap_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.875; + b=6; + angle=236.32191; + id=8433; + atlOffset=-0.00049591064; + }; + class Item1 + { + dataType="Marker"; + position[]={3624.4971,2.5599999,3222.252}; + name="seap_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=7.539; + b=6; + angle=282.41898; + id=8436; + }; + class Item2 + { + dataType="Marker"; + position[]={3567.625,0,3227.125}; + name="seap_2_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=7.539; + b=6; + angle=54.692429; + id=8437; + atlOffset=0.90610528; + }; + class Item3 + { + dataType="Marker"; + position[]={5790.875,2.6900001,2419.25}; + name="seap_3_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=7.539; + b=6; + angle=339.30817; + id=8439; + }; + class Item4 + { + dataType="Marker"; + position[]={5820.75,4.3439999,2446.75}; + name="seap_3_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=7.539; + b=6; + angle=290.42194; + id=8440; + atlOffset=-0.00018644333; + }; + class Item5 + { + dataType="Marker"; + position[]={8454.875,4.4400001,3795.125}; + name="seap_4_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=7.539; + b=6; + angle=179.9129; + id=8443; + }; + class Item6 + { + dataType="Marker"; + position[]={8454.375,4.4400001,3829.5}; + name="seap_4_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=7.539; + b=6; + angle=0.54599983; + id=8444; + }; + class Item7 + { + dataType="Marker"; + position[]={9334.875,3.6800001,3840}; + name="seap_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.567436; + b=6; + angle=76.988068; + id=8446; + }; + class Item8 + { + dataType="Marker"; + position[]={5523.5,4.2989998,11602.875}; + name="seap_6_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.567; + b=6; + angle=87.17498; + id=8450; + atlOffset=0.00036525726; + }; + class Item9 + { + dataType="Marker"; + position[]={939.75,5.1220002,11880.125}; + name="seap_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=8.8149996; + b=6; + angle=42.67498; + id=8451; + atlOffset=0.00019979477; + }; + class Item10 + { + dataType="Marker"; + position[]={3049.5,4.4088221,8442.5}; + name="seap_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.875; + b=6; + angle=291.93985; + id=8432; + }; + class Item11 + { + dataType="Marker"; + position[]={3051.209,3.9000001,8466.8428}; + name="seaport"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=77.894897; + b=69.481934; + angle=320.1973; + id=3; + }; + class Item12 + { + dataType="Marker"; + position[]={1049.1198,5.2878036,693.77484}; + name="seaport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=50; + b=98.55957; + angle=12.74551; + id=4; + atlOffset=1.9634416; + }; + class Item13 + { + dataType="Marker"; + position[]={3597.1074,-17.862,3232.6548}; + name="seaport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=83.311035; + b=60.568726; + angle=15.220214; + id=5; + atlOffset=-20.421999; + }; + class Item14 + { + dataType="Marker"; + position[]={5754.4385,2.6900001,2407.6201}; + name="seaport_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=89.391846; + b=71.890015; + id=6; + atlOffset=0.43078852; + }; + class Item15 + { + dataType="Marker"; + position[]={8441.5449,4.4878206,3847.5801}; + name="seaport_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=72.95166; + b=142.94824; + id=7; + atlOffset=-0.060138226; + }; + class Item16 + { + dataType="Marker"; + position[]={9340.9297,3.6800001,3798.5}; + name="seaport_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=56.070313; + b=104.13354; + id=8; + }; + class Item17 + { + dataType="Marker"; + position[]={5504.9224,3.0457392,11630.09}; + name="seaport_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=63.673393; + b=60.099941; + angle=332.67654; + id=9; + atlOffset=-0.0036528111; + }; + class Item18 + { + dataType="Marker"; + position[]={915.83582,5.1100001,11888.687}; + name="seaport_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=80.919556; + b=76.199707; + angle=25.683172; + id=11; + }; }; - id=8142; - type="Land_HBarrierWall_corridor_F"; + id=8452; + atlOffset=14.458153; }; - class Item738 + class Item610 { dataType="Object"; class PositionInfo { - position[]={2402.3723,197.90491,3562.3208}; - angles[]={0,1.2871128,0}; + position[]={8002.9717,30.53899,10683.684}; + angles[]={0.0055992967,4.6181393,6.2824135}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8143; - type="Land_Mil_WiredFence_Gate_F"; + id=8453; + type="Land_HelipadCircle_F"; }; - class Item739 + class Item611 { dataType="Object"; class PositionInfo { - position[]={2405.6829,196.33907,3556.3894}; - angles[]={6.2424073,4.4259648,0.052750662}; + position[]={8011.3784,30.589775,10625.852}; + angles[]={6.2824135,4.6181393,0.00077204045}; }; side="Empty"; flags=4; class Attributes { }; - id=8144; - type="Land_HBarrier_3_F"; + id=8455; + type="Land_HelipadCircle_F"; }; - class Item740 + class Item612 { dataType="Object"; class PositionInfo { - position[]={2382.313,198.24149,3630.4282}; - angles[]={0,1.2871128,0}; + position[]={8016.6128,30.55328,10563.813}; + angles[]={0,4.6181393,0.00069053395}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8145; - type="Land_Mil_WiredFence_Gate_F"; + id=8456; + type="Land_HelipadCircle_F"; }; - class Item741 + class Item613 { dataType="Object"; class PositionInfo { - position[]={2382.0569,196.62813,3636.6077}; - angles[]={0.015998369,4.4259648,0.068692133}; + position[]={5637.1797,354.59006,5593.7729}; + angles[]={6.2647886,1.5598973,0.047963165}; }; side="Empty"; flags=4; class Attributes { }; - id=8146; - type="Land_HBarrier_3_F"; + id=8462; + type="Land_HelipadSquare_F"; + atlOffset=3.0517578e-005; }; - class Item742 + class Item614 { dataType="Object"; class PositionInfo { - position[]={2412.5559,199.46721,3644.5479}; - angles[]={6.2671871,2.8551688,0.070283718}; + position[]={5637.375,354.48367,5566.5}; + angles[]={0.022397626,1.595036,0.053547278}; }; side="Empty"; flags=4; class Attributes { }; - id=8147; - type="Land_HBarrier_5_F"; + id=8463; + type="Land_HelipadSquare_F"; }; - class Item743 + class Item615 { dataType="Object"; class PositionInfo { - position[]={2413.4299,200.03571,3646.8901}; - angles[]={6.2671871,2.8551688,0.070283718}; + position[]={9706.875,38.849998,4003}; + angles[]={0,3.1835322,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8148; - type="Land_HBarrier_Big_F"; + id=8471; + type="Land_HelipadSquare_F"; }; - class Item744 + class Item616 { dataType="Object"; class PositionInfo { - position[]={2417.8318,199.87494,3646.1016}; - angles[]={6.2591896,2.8551688,0.07824026}; + position[]={9738.375,38.849998,4002.25}; + angles[]={0,3.1683295,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8149; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=8472; + type="Land_HelipadSquare_F"; }; - class Item745 + class Item617 { dataType="Object"; class PositionInfo { - position[]={2421.5833,200.7151,3649.2915}; - angles[]={6.2591896,2.8551688,0.07824026}; + position[]={11294.903,33.23753,4154.5156}; + angles[]={0.047963165,2.528795,6.2392135}; }; side="Empty"; flags=4; class Attributes { }; - id=8150; - type="Land_HBarrier_Big_F"; - atlOffset=-1.5258789e-005; + id=8476; + type="Land_HelipadSquare_F"; }; - class Item746 + class Item618 { dataType="Object"; class PositionInfo { - position[]={2423.1079,200.32588,3647.6555}; - angles[]={6.2591896,2.8551688,0.07824026}; + position[]={11327.756,31.923527,4173.1621}; + angles[]={0.13202763,2.4967201,6.2575908}; }; side="Empty"; flags=4; class Attributes { }; - id=8151; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=8477; + type="Land_HelipadSquare_F"; }; - class Item747 + class Item619 { dataType="Object"; class PositionInfo { - position[]={2428.8633,200.78325,3649.3506}; - angles[]={6.2535958,2.8551688,0.070283718}; + position[]={4082.7043,371.0174,6358.4565}; + angles[]={0.11469462,5.6087732,0.19123547}; }; side="Empty"; flags=4; class Attributes { }; - id=8152; - type="Land_HBarrier_5_F"; + id=8480; + type="Land_HelipadSquare_F"; + atlOffset=3.0517578e-005; }; - class Item748 + class Item620 { dataType="Object"; class PositionInfo { - position[]={2429.7373,201.34435,3651.6929}; - angles[]={6.2767816,2.8551688,0.070284568}; + position[]={4100.958,375.66397,6338.8018}; + angles[]={0.061521512,5.5607395,0.12888117}; }; side="Empty"; flags=4; class Attributes { }; - id=8153; - type="Land_HBarrier_Big_F"; + id=8481; + type="Land_HelipadSquare_F"; }; - class Item749 + class Item621 { dataType="Object"; class PositionInfo { - position[]={2434.1394,201.1797,3650.9045}; - angles[]={6.2767816,2.8551688,0.070284568}; + position[]={4779.8335,415.54065,7182.6191}; + angles[]={6.2719817,2.0813165,6.251195}; }; side="Empty"; flags=4; class Attributes { }; - id=8154; - type="Land_HBarrier_5_F"; + id=8483; + type="Land_HelipadSquare_F"; }; - class Item750 + class Item622 { - dataType="Object"; - class PositionInfo - { - position[]={2437.8909,201.9476,3654.0945}; - angles[]={6.2727814,2.8551688,0.063913256}; - }; - side="Empty"; - flags=4; - class Attributes + dataType="Layer"; + name="Outposts"; + class Entities { + items=29; + class Item0 + { + dataType="Marker"; + position[]={5311.625,343.53101,9062.5}; + name="outp_10_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.672; + b=6; + angle=316.04288; + id=8460; + atlOffset=0.00021362305; + }; + class Item1 + { + dataType="Marker"; + position[]={4938.5,417.85901,7986.25}; + name="outp_11_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=220.9269; + id=8461; + atlOffset=0.00021362305; + }; + class Item2 + { + dataType="Marker"; + position[]={5757.25,349.53601,5584.125}; + name="outp_12_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=90.60997; + id=8464; + atlOffset=-0.00039672852; + }; + class Item3 + { + dataType="Marker"; + position[]={7022.5762,99.279999,6753.6182}; + name="outp_13_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=86.269974; + id=8465; + atlOffset=-0.0004119873; + }; + class Item4 + { + dataType="Marker"; + position[]={5003.25,60.130299,3756.875}; + name="outp_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.477364; + b=6; + angle=301.67484; + id=8458; + }; + class Item5 + { + dataType="Marker"; + position[]={4987.4209,43.151001,2223.8279}; + name="outp_2_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=11.386; + b=6; + angle=255.37396; + id=8466; + atlOffset=0.92180634; + }; + class Item6 + { + dataType="Marker"; + position[]={7028.4653,125,10048.75}; + name="outp_3_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.154379; + b=5.3131795; + angle=83.795937; + id=8467; + atlOffset=0.8065567; + }; + class Item7 + { + dataType="Marker"; + position[]={9632,42.366001,3369.875}; + name="outp_4_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=74.91098; + id=8468; + atlOffset=-3.8146973e-006; + }; + class Item8 + { + dataType="Marker"; + position[]={9775.875,38.886002,3969.5}; + name="outp_5_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=271.76801; + id=8474; + atlOffset=-0.00029754639; + }; + class Item9 + { + dataType="Marker"; + position[]={9664,38.889999,3894.625}; + name="outp_5_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=89.408951; + id=8469; + }; + class Item10 + { + dataType="Marker"; + position[]={11352.5,33.006001,4154.5}; + name="outp_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=135.28493; + id=8475; + atlOffset=-1.1444092e-005; + }; + class Item11 + { + dataType="Marker"; + position[]={2358.75,152.4734,5089.875}; + name="outp_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=152.83; + id=8478; + }; + class Item12 + { + dataType="Marker"; + position[]={4102.75,370.923,6392.375}; + name="outp_8_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=320.21686; + id=8479; + atlOffset=0.00021362305; + }; + class Item13 + { + dataType="Marker"; + position[]={4837.5991,412.70901,7155.7129}; + name="outp_9_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.476999; + b=6; + angle=302.53891; + id=8482; + atlOffset=6.1035156e-005; + }; + class Item14 + { + dataType="Marker"; + position[]={7976.7871,31.487,10645.887}; + name="outp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=32.474998; + b=6; + angle=264.487; + id=8454; + atlOffset=-0.56937408; + }; + class Item15 + { + dataType="Marker"; + position[]={8046.5879,30.57,10617.291}; + name="outpost"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=162.72192; + b=217.54248; + id=1; + atlOffset=-0.059080124; + }; + class Item16 + { + dataType="Marker"; + position[]={5037.5986,52.918945,3741.0085}; + name="outpost_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=56.709; + b=42.311001; + angle=36.042061; + id=184; + atlOffset=-6.6352158; + }; + class Item17 + { + dataType="Marker"; + position[]={5324.4116,336.86328,9077.8574}; + name="outpost_10"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=56.709351; + b=42.311295; + angle=315.11307; + id=181; + atlOffset=-6.7668152; + }; + class Item18 + { + dataType="Marker"; + position[]={4911.25,408.17578,7947.875}; + name="outpost_11"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=46.277237; + b=54.517422; + angle=223.37611; + id=182; + atlOffset=-7.2622681; + }; + class Item19 + { + dataType="Marker"; + position[]={5687.5581,349.78223,5589.0303}; + name="outpost_12"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=62.875336; + b=48.203556; + angle=180.13968; + id=183; + atlOffset=-4.4351501; + }; + class Item20 + { + dataType="Marker"; + position[]={7071.4385,254.80283,6756.9844}; + name="outpost_13"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=31.32979; + b=25.969643; + angle=264.17685; + id=7892; + atlOffset=157.98735; + }; + class Item21 + { + dataType="Marker"; + position[]={4981.4648,202.47549,2238.4595}; + name="outpost_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=72.835815; + b=55.046631; + angle=258.05438; + id=41; + atlOffset=158.72598; + }; + class Item22 + { + dataType="Marker"; + position[]={9651.6299,44.24609,3337.9001}; + name="outpost_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=72.356445; + b=75.024048; + id=17; + }; + class Item23 + { + dataType="Marker"; + position[]={9726.2695,38.889999,3934.7295}; + name="outpost_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=123.95703; + b=123.13635; + id=18; + }; + class Item24 + { + dataType="Marker"; + position[]={11332.623,32.368164,4142.3408}; + name="outpost_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=76.550781; + b=77.542969; + angle=333.78473; + id=19; + atlOffset=-0.8718071; + }; + class Item25 + { + dataType="Marker"; + position[]={2366.2285,146.48926,5036.084}; + name="outpost_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=56.709351; + b=42.311295; + angle=335.20352; + id=42; + atlOffset=-8.4443817; + }; + class Item26 + { + dataType="Marker"; + position[]={4062.875,366.47949,6323.75}; + name="outpost_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=92.440216; + b=71.702629; + angle=320.6485; + id=179; + atlOffset=-3.5238037; + }; + class Item27 + { + dataType="Marker"; + position[]={4795,412.31445,7174.25}; + name="outpost_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=56.892014; + b=58.021568; + angle=299.46161; + id=180; + atlOffset=-2.5505371; + }; + class Item28 + { + dataType="Marker"; + position[]={7023.5625,117.875,10016.679}; + name="outpost_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorGreen"; + a=136.614; + b=158.58591; + angle=31.621452; + id=30; + atlOffset=-7.1350021; + }; }; - id=8155; - type="Land_HBarrier_Big_F"; + id=8484; + atlOffset=25.185242; }; - class Item751 + class Item623 { dataType="Object"; class PositionInfo { - position[]={2439.4153,201.55865,3652.4585}; - angles[]={6.2727814,2.8551688,0.063913256}; + position[]={2454.1089,197.75909,3547.8152}; + angles[]={6.2073312,0.25742424,0.035185181}; }; side="Empty"; flags=4; class Attributes { }; - id=8156; + id=8524; type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item752 + class Item624 { dataType="Object"; class PositionInfo { - position[]={2445.1707,201.94463,3654.1536}; - angles[]={6.2727814,2.8551688,0.063913256}; + position[]={2448.387,197.5437,3547.0903}; + angles[]={6.2200694,5.9793925,0.032787289}; }; side="Empty"; flags=4; class Attributes { }; - id=8157; + id=8525; type="Land_HBarrier_5_F"; }; - class Item753 + class Item625 { dataType="Object"; class PositionInfo { - position[]={2446.0447,202.49849,3656.4958}; - angles[]={6.2711854,2.8551688,0.065505132}; + position[]={2447.553,197.83682,3544.7324}; + angles[]={6.2200694,5.9793925,0.032787289}; }; side="Empty"; flags=4; class Attributes { }; - id=8158; + id=8526; type="Land_HBarrier_Big_F"; - atlOffset=1.5258789e-005; }; - class Item754 + class Item626 { dataType="Object"; class PositionInfo { - position[]={2450.4468,202.30365,3655.7073}; - angles[]={6.2711854,2.8551688,0.055144947}; + position[]={2443.1384,197.26753,3545.4441}; + angles[]={6.2200694,5.9793925,0.032787289}; }; side="Empty"; flags=4; class Attributes { }; - id=8159; + id=8527; type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item755 + class Item627 { dataType="Object"; class PositionInfo { - position[]={2454.1982,203.01947,3658.8975}; - angles[]={6.269588,2.8551688,0.056738663}; + position[]={2439.4414,197.45703,3542.1897}; + angles[]={6.2280407,5.9793925,0.024795037}; }; side="Empty"; flags=4; class Attributes { }; - id=8160; + id=8528; type="Land_HBarrier_Big_F"; }; - class Item756 + class Item628 { dataType="Object"; class PositionInfo { - position[]={2455.7227,202.6143,3657.2612}; - angles[]={6.269588,2.8551688,0.056738663}; + position[]={2437.8901,197.03789,3543.7991}; + angles[]={6.2280407,5.9793925,0.024795037}; }; side="Empty"; flags=4; class Attributes { }; - id=8161; + id=8529; type="Land_HBarrier_5_F"; }; - class Item757 + class Item629 { dataType="Object"; class PositionInfo { - position[]={2461.4783,202.96428,3658.9565}; - angles[]={6.269588,2.8551688,0.056738663}; + position[]={2432.6416,196.7562,3542.1538}; + angles[]={6.2352209,5.9793925,0.030390549}; }; side="Empty"; flags=4; class Attributes { }; - id=8162; + id=8530; type="Land_HBarrier_5_F"; }; - class Item758 + class Item630 { dataType="Object"; class PositionInfo { - position[]={2462.3521,203.51526,3661.2988}; - angles[]={6.269588,2.8551688,0.056738663}; + position[]={2431.3323,197.06558,3539.6472}; + angles[]={6.2352209,5.9793925,0.030390549}; }; side="Empty"; flags=4; class Attributes { }; - id=8163; + id=8531; type="Land_HBarrier_Big_F"; }; - class Item759 + class Item631 { dataType="Object"; class PositionInfo { - position[]={2466.7542,203.18793,3660.5105}; - angles[]={6.2583904,2.8551688,0.0391808}; + position[]={2525.8879,198.93387,3570.4177}; + angles[]={6.2113094,5.9793925,6.2424073}; }; side="Empty"; flags=4; class Attributes { }; - id=8164; - type="Land_HBarrier_5_F"; + id=8532; + type="Land_HBarrier_Big_F"; }; - class Item760 + class Item632 { dataType="Object"; class PositionInfo { - position[]={2470.5056,203.87112,3663.7002}; - angles[]={6.2687874,2.8551688,0.03917928}; + position[]={2523.8582,198.63857,3571.8774}; + angles[]={6.2113094,5.9793925,6.2543926}; }; side="Empty"; flags=4; class Attributes { }; - id=8165; - type="Land_HBarrier_Big_F"; + id=8533; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item761 + class Item633 { dataType="Object"; class PositionInfo { - position[]={2472.03,203.43327,3662.0642}; - angles[]={6.2583904,2.8551688,0.0391808}; + position[]={2528.1526,198.63515,3573.2239}; + angles[]={6.2089214,5.9793925,6.2448058}; }; side="Empty"; flags=4; class Attributes { }; - id=8166; - type="Land_HBarrier_5_F"; + id=8534; + type="Land_HBarrier_3_F"; }; - class Item762 + class Item634 { dataType="Object"; class PositionInfo { - position[]={2477.7856,203.66455,3663.7593}; - angles[]={6.2695832,2.8551688,0.03119017}; + position[]={2500.3445,204.03159,3651.6245}; + angles[]={6.2280416,2.8378005,0.0055992967}; }; side="Empty"; flags=4; class Attributes { }; - id=8167; - type="Land_HBarrier_5_F"; + id=8535; + type="Land_HBarrier_Big_F"; }; - class Item763 + class Item635 { dataType="Object"; class PositionInfo { - position[]={2478.6594,204.19318,3666.1016}; - angles[]={6.2695832,2.8551688,0.03119017}; + position[]={2501.9951,203.4922,3650.1907}; + angles[]={6.2280416,2.8378005,0.0055992967}; }; side="Empty"; flags=4; class Attributes { }; - id=8168; - type="Land_HBarrier_Big_F"; + id=8536; + type="Land_HBarrier_5_F"; }; - class Item764 + class Item636 { dataType="Object"; class PositionInfo { - position[]={2483.0615,203.85028,3665.3132}; - angles[]={6.2695832,2.8551688,0.03119017}; + position[]={2549.4819,204.55359,3672.6899}; + angles[]={6.2312312,2.861917,6.2759843}; }; side="Empty"; flags=4; class Attributes { }; - id=8169; - type="Land_HBarrier_5_F"; + id=8537; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item765 + class Item637 { dataType="Object"; class PositionInfo { - position[]={2486.8132,204.44621,3668.5032}; - angles[]={6.2759843,2.8551688,0.024795037}; + position[]={2555.8369,204.3951,3671.3936}; + angles[]={6.2264481,1.2911204,6.2711854}; }; side="Empty"; flags=4; class Attributes { }; - id=8170; + id=8538; type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item766 + class Item638 { dataType="Object"; class PositionInfo { - position[]={2487.3784,204.03473,3666.5847}; - angles[]={6.2759843,5.9967613,0.024795037}; + position[]={2563.5,203.9045,3666.375}; + angles[]={6.2264466,1.2911204,6.1582394}; }; side="Empty"; flags=4; class Attributes { }; - id=8171; - type="Land_HBarrier_3_F"; + id=8539; + type="Land_HBarrier_Big_F"; }; - class Item767 + class Item639 { dataType="Object"; class PositionInfo { - position[]={2489.0999,203.96452,3666.0491}; - angles[]={6.2759929,4.4259648,0.016794518}; + position[]={2559.6863,203.79323,3668.8579}; + angles[]={6.2264481,6.003509,6.2711854}; }; side="Empty"; flags=4; class Attributes { }; - id=8172; - type="Land_HBarrier_1_F"; + id=8540; + type="Land_HBarrier_3_F"; + atlOffset=-1.5258789e-005; }; - class Item768 + class Item640 { dataType="Object"; class PositionInfo { - position[]={2402.1553,196.91599,3576.3301}; - angles[]={6.247201,4.4259648,0.059131995}; + position[]={2533.8989,201.7198,3616.0283}; + angles[]={6.2208662,2.8402252,6.247201}; }; side="Empty"; flags=4; class Attributes { }; - id=8173; - type="Land_HBarrier_5_F"; + id=8541; + type="Land_HBarrier_Big_F"; }; - class Item769 + class Item641 { dataType="Object"; class PositionInfo { - position[]={2396.4983,196.54698,3575.1853}; - angles[]={0.052870356,6.0298982,6.0273838}; + position[]={2563.5,202.86169,3661.125}; + angles[]={6.222465,6.0035138,6.0904136}; }; side="Empty"; flags=4; class Attributes { }; - id=8174; - type="Land_HBarrierWall_corridor_F"; + id=8542; + type="Land_HBarrier_5_F"; + atlOffset=-0.19999695; }; - class Item770 + class Item642 { dataType="Object"; class PositionInfo { - position[]={2391.863,197.62834,3573.9602}; - angles[]={6.2424088,1.2893637,0.063115984}; + position[]={2584.8916,194.51569,3594.6831}; + angles[]={6.2176795,4.432713,6.1144071}; }; side="Empty"; flags=4; class Attributes { }; - id=8175; - type="Land_HBarrierTower_F"; + id=8543; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item771 + class Item643 { dataType="Object"; class PositionInfo { - position[]={2384.0674,196.57826,3617.3928}; - angles[]={0.045310218,6.0298982,6.129684}; + position[]={2583.5261,194.50766,3588.5693}; + angles[]={6.2727871,2.861917,6.0612993}; }; side="Empty"; flags=4; class Attributes { }; - id=8176; - type="Land_HBarrierWall_corridor_F"; + id=8544; + type="Land_HBarrier_Big_F"; }; - class Item772 + class Item644 { dataType="Object"; class PositionInfo { - position[]={2379.4321,197.21623,3616.1675}; - angles[]={6.2368193,1.2893637,0.16566847}; + position[]={2578,195.70364,3580.75}; + angles[]={0.027191572,2.861917,5.9917288}; }; side="Empty"; flags=4; class Attributes { }; - id=8177; - type="Land_HBarrierTower_F"; + id=8545; + type="Land_HBarrier_Big_F"; }; - class Item773 + class Item645 { dataType="Object"; class PositionInfo { - position[]={2389.583,197.20024,3618.6182}; - angles[]={6.2687874,4.4259648,0.077443115}; + position[]={2580.9905,194.52567,3584.7197}; + angles[]={6.236021,1.2911204,6.0612993}; }; side="Empty"; flags=4; class Attributes { }; - id=8178; - type="Land_HBarrier_5_F"; + id=8546; + type="Land_HBarrier_3_F"; }; - class Item774 + class Item646 { dataType="Object"; class PositionInfo { - position[]={2387.2422,196.91988,3615.4609}; - angles[]={6.2687831,4.4259648,0.13438509}; + position[]={2525.7822,201.8546,3613.5056}; + angles[]={6.2208662,2.8402252,6.247201}; }; side="Empty"; flags=4; class Attributes { }; - id=8179; - type="Land_HBarrier_1_F"; + id=8547; + type="Land_HBarrier_Big_F"; }; - class Item775 + class Item647 { dataType="Object"; class PositionInfo { - position[]={2399.6001,196.59956,3573.1064}; - angles[]={6.2424088,4.4259648,0.063115984}; + position[]={2518.1433,201.87715,3611.1301}; + angles[]={6.2168822,2.8402252,6.2615871}; }; side="Empty"; flags=4; class Attributes { }; - id=8180; - type="Land_HBarrier_1_F"; + id=8548; + type="Land_HBarrier_Big_F"; }; - class Item776 + class Item648 { dataType="Object"; class PositionInfo { - position[]={2516.1858,201.96645,3595.3203}; - angles[]={0,1.2871128,0}; + position[]={2502.3865,201.80022,3606.2327}; + angles[]={6.2176805,2.8402252,6.2711854}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8181; - type="Land_Mil_WiredFence_Gate_F"; + id=8549; + type="Land_HBarrier_Big_F"; }; - class Item777 + class Item649 { dataType="Object"; class PositionInfo { - position[]={2581.6274,203.42224,3613.8123}; - angles[]={0,4.4259648,0}; + position[]={2575.5764,196.03857,3600.8518}; + angles[]={6.2440047,1.2911204,6.1144071}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8187; - type="Land_TTowerSmall_2_F"; + id=8550; + type="Land_HBarrierWall6_F"; }; - class Item778 + class Item650 { dataType="Object"; class PositionInfo { - position[]={2535.7422,202.52852,3627.1416}; - angles[]={6.2256494,4.4259648,6.2543945}; + position[]={2581.5886,194.88806,3598.9368}; + angles[]={6.2176795,6.003509,6.1144071}; }; side="Empty"; flags=4; class Attributes { }; - id=8188; - type="Land_MedicalTent_01_NATO_generic_open_F"; + id=8551; + type="Land_HBarrier_5_F"; atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; }; - class Item779 + class Item651 { dataType="Object"; class PositionInfo { - position[]={2398.9753,195.6866,3553.5017}; - angles[]={6.2424088,2.8551688,0.059130985}; + position[]={2373.6829,195.66454,3567.8835}; + angles[]={0,1.2697445,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8189; - type="Land_DragonsTeeth_01_4x2_new_redwhite_F"; - atlOffset=-1.5258789e-005; + id=8552; + type="Land_Mil_WiredFence_Gate_F"; + atlOffset=1.5258789e-005; }; - class Item780 + class Item652 { dataType="Object"; class PositionInfo { - position[]={2375.1021,195.81999,3634.5593}; - angles[]={6.2328281,2.8551688,0.13438509}; + position[]={2396.6621,197.72745,3616.8096}; + angles[]={6.2647886,2.8378005,0.081419863}; }; side="Empty"; flags=4; class Attributes { }; - id=8190; - type="Land_DragonsTeeth_01_4x2_new_redwhite_F"; + id=8553; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item781 + class Item653 { dataType="Object"; class PositionInfo { - position[]={2397.2537,197.1418,3592.0872}; - angles[]={6.2487988,4.4259648,0.075058997}; + position[]={2397.4954,198.30829,3619.1665}; + angles[]={6.2647886,2.8378005,0.081419863}; }; side="Empty"; flags=4; class Attributes { }; - id=8191; - type="Land_HBarrier_5_F"; + id=8554; + type="Land_HBarrier_Big_F"; atlOffset=1.5258789e-005; }; - class Item782 + class Item654 { dataType="Object"; class PositionInfo { - position[]={2395.7,197.20647,3597.3633}; - angles[]={6.2487988,4.4259648,0.075058997}; + position[]={2401.9099,198.16757,3618.4541}; + angles[]={6.2647886,2.8378005,0.071876638}; }; side="Empty"; flags=4; class Attributes { }; - id=8192; + id=8555; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; }; - class Item783 + class Item655 { dataType="Object"; class PositionInfo { - position[]={2394.6584,196.96893,3590.2805}; - angles[]={6.2591896,4.4259648,0.064709015}; + position[]={2405.6057,198.97231,3621.709}; + angles[]={6.260788,2.8378005,0.075853623}; }; side="Empty"; flags=4; class Attributes { }; - id=8193; - type="Land_HBarrier_3_F"; + id=8556; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item784 + class Item656 { dataType="Object"; class PositionInfo { - position[]={2391.0186,196.67453,3590.251}; - angles[]={6.2591896,5.9967613,0.064709015}; + position[]={2407.1582,198.58475,3620.1003}; + angles[]={6.260788,2.8378005,0.075853623}; }; side="Empty"; flags=4; class Attributes { }; - id=8194; + id=8557; type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item785 + class Item657 { dataType="Object"; class PositionInfo { - position[]={2388.7583,196.71225,3597.925}; - angles[]={6.2591896,5.9967613,0.064709015}; + position[]={2412.8835,199.05428,3621.8953}; + angles[]={6.260788,2.8378005,0.060724311}; }; side="Empty"; flags=4; class Attributes { }; - id=8195; + id=8558; type="Land_HBarrier_5_F"; }; - class Item786 + class Item658 { dataType="Object"; class PositionInfo { - position[]={2386.0515,196.86974,3592.9578}; - angles[]={6.2591896,4.4259648,0.076650143}; + position[]={2413.717,199.63213,3624.2517}; + angles[]={6.2503963,2.8378005,0.071080439}; }; side="Empty"; flags=4; class Attributes { }; - id=8196; + id=8559; type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item787 + class Item659 { dataType="Object"; class PositionInfo { - position[]={2388.9033,194.97777,3550.5352}; - angles[]={6.2432065,2.8551688,0.05833387}; + position[]={2418.1311,199.45357,3623.54}; + angles[]={6.2503963,2.8378005,0.071080439}; }; side="Empty"; flags=4; class Attributes { }; - id=8197; - type="Land_DragonsTeeth_01_4x2_new_redwhite_F"; + id=8560; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item788 + class Item660 { dataType="Object"; class PositionInfo { - position[]={2364.6125,194.76003,3615.3115}; - angles[]={6.2384152,4.4259648,0.023197735}; + position[]={2421.8274,200.26999,3626.7939}; + angles[]={6.2631893,2.8378005,0.071079597}; }; side="Empty"; flags=4; class Attributes { }; - id=8199; - type="Land_Razorwire_F"; + id=8561; + type="Land_HBarrier_Big_F"; }; - class Item789 + class Item661 { dataType="Object"; class PositionInfo { - position[]={2371.3308,195.07002,3608.4292}; - angles[]={0.068692133,4.4259648,0.023195164}; + position[]={2423.5991,199.89677,3625.3005}; + angles[]={6.2631893,2.8265653,0.071079597}; }; side="Empty"; flags=4; class Attributes { }; - id=8200; - type="Land_Razorwire_F"; + id=8562; + type="Land_HBarrier_5_F"; }; - class Item790 + class Item662 { dataType="Object"; class PositionInfo { - position[]={2369.4158,194.97929,3599.0042}; - angles[]={6.2599931,4.4259648,0.1304549}; + position[]={2428.5603,200.28325,3628.2314}; + angles[]={6.2639894,2.2050061,0.064709015}; }; side="Empty"; flags=4; class Attributes { }; - id=8201; - type="Land_Razorwire_F"; + id=8563; + type="Land_HBarrier_5_F"; }; - class Item791 + class Item663 { dataType="Object"; class PositionInfo { - position[]={2376.1335,195.63844,3592.1218}; - angles[]={6.2599902,4.4259648,0.075854406}; + position[]={2428.9019,200.8477,3632.0239}; + angles[]={6.2639894,2.2050061,0.064709015}; }; side="Empty"; flags=4; class Attributes { }; - id=8202; - type="Land_Razorwire_F"; + id=8564; + type="Land_HBarrier_Big_F"; }; - class Item792 + class Item664 { dataType="Object"; class PositionInfo { - position[]={2374.2185,195.12257,3582.6965}; - angles[]={6.2352209,4.4259648,0.11706242}; + position[]={2432.0303,200.59798,3632.9126}; + angles[]={6.2639894,2.2050061,0.064709015}; }; side="Empty"; flags=4; class Attributes { }; - id=8203; - type="Land_Razorwire_F"; + id=8565; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item793 + class Item665 { dataType="Object"; class PositionInfo { - position[]={2380.9365,195.41605,3575.8142}; - angles[]={6.2352209,4.4259648,0.089361846}; + position[]={2433.938,201.31212,3638.8723}; + angles[]={6.259192,2.2050061,0.064709015}; }; side="Empty"; flags=4; class Attributes { }; - id=8204; - type="Land_Razorwire_F"; + id=8566; + type="Land_HBarrier_Big_F"; }; - class Item794 + class Item666 { dataType="Object"; class PositionInfo { - position[]={2379.0215,194.65723,3566.3894}; - angles[]={6.1962056,4.4259648,0.13909611}; + position[]={2435.501,200.91319,3637.593}; + angles[]={6.259192,2.2050061,0.064709015}; }; side="Empty"; flags=4; class Attributes { }; - id=8205; - type="Land_Razorwire_F"; + id=8567; + type="Land_HBarrier_5_F"; }; - class Item795 + class Item667 { dataType="Object"; class PositionInfo { - position[]={2410.3025,196.63512,3558.4016}; - angles[]={6.2416096,2.8551688,0.053548392}; + position[]={2438.9717,201.26776,3642.2737}; + angles[]={6.2535958,2.2050061,0.058332846}; }; side="Empty"; flags=4; class Attributes { }; - id=8206; - type="Land_HBarrierWall6_F"; + id=8568; + type="Land_HBarrier_5_F"; }; - class Item796 + class Item668 { dataType="Object"; class PositionInfo { - position[]={2442.9172,198.64581,3568.0073}; - angles[]={6.2304335,5.9967613,0.039979152}; + position[]={2438.9761,201.83946,3645.7185}; + angles[]={6.2535958,2.2050061,0.058332846}; }; side="Empty"; flags=4; class Attributes { }; - id=8207; - type="Land_HBarrier_3_F"; + id=8569; + type="Land_HBarrier_Big_F"; }; - class Item797 + class Item669 { dataType="Object"; class PositionInfo { - position[]={2498.3013,205.10994,3657.8132}; - angles[]={0,5.9967613,0}; + position[]={2442.4421,201.61961,3646.9543}; + angles[]={6.2480001,2.2050061,0.063912325}; }; side="Empty"; + flags=4; class Attributes { }; - id=8208; - type="Land_HBarrier_3_F"; - atlOffset=1.1788483; + id=8570; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item798 + class Item670 { dataType="Object"; class PositionInfo { - position[]={2496.5208,205.36125,3665.6287}; - angles[]={0,5.9967613,0}; + position[]={2444.0122,202.32347,3652.5667}; + angles[]={6.2727814,2.2050061,0.063913256}; }; side="Empty"; + flags=4; class Attributes { }; - id=8209; - type="Land_HBarrier_3_F"; - atlOffset=1.1788483; + id=8571; + type="Land_HBarrier_Big_F"; }; - class Item799 + class Item671 { dataType="Object"; class PositionInfo { - position[]={2515,201.92334,3599.125}; - angles[]={0,5.9967613,0}; + position[]={2445.9126,201.96591,3651.635}; + angles[]={6.2727814,2.2050061,0.063913256}; }; side="Empty"; + flags=4; class Attributes { }; - id=8210; - type="Land_HBarrier_3_F"; - atlOffset=1.1784058; + id=8572; + type="Land_HBarrier_5_F"; }; - class Item800 + class Item672 { dataType="Object"; class PositionInfo { - position[]={2514.4907,212.50504,3601.0757}; - angles[]={6.2176795,2.8551683,6.2607903}; + position[]={2450.127,202.28043,3655.2434}; + angles[]={6.2711854,2.8767886,0.055144947}; }; side="Empty"; flags=4; class Attributes { }; - id=8211; - type="Land_LampAirport_F"; + id=8573; + type="Land_HBarrier_5_F"; }; - class Item801 + class Item673 { dataType="Object"; class PositionInfo { - position[]={2498.8665,215.4554,3655.8948}; - angles[]={6.2280407,5.9967613,0.016798066}; + position[]={2450.8147,202.81583,3657.571}; + angles[]={6.2711854,2.8767886,0.055144947}; }; side="Empty"; flags=4; class Attributes { }; - id=8212; - type="Land_LampAirport_F"; + id=8574; + type="Land_HBarrier_Big_F"; }; - class Item802 + class Item674 { dataType="Object"; class PositionInfo { - position[]={2408.9885,198.56065,3601.7981}; - angles[]={0,2.8551688,0}; + position[]={2455.4353,202.59071,3656.6826}; + angles[]={6.2711854,2.8767886,0.055144947}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8213; - type="Land_PortableLight_single_F"; + id=8575; + type="Land_HBarrier_5_F"; }; - class Item803 + class Item675 { dataType="Object"; class PositionInfo { - position[]={2410.1187,198.52188,3597.9612}; - angles[]={0,5.9967613,0}; + position[]={2459.019,203.30553,3659.7971}; + angles[]={6.269588,2.8767886,0.056738663}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8214; - type="Land_PortableLight_single_F"; + id=8576; + type="Land_HBarrier_Big_F"; }; - class Item804 + class Item676 { dataType="Object"; class PositionInfo { - position[]={2435.8477,200.47815,3609.709}; - angles[]={0,2.8551688,0}; + position[]={2459.7793,202.91071,3657.8608}; + angles[]={6.269588,6.0183806,0.056738663}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8215; - type="Land_PortableLight_single_F"; + id=8577; + type="Land_HBarrier_3_F"; }; - class Item805 + class Item677 { dataType="Object"; class PositionInfo { - position[]={2436.9778,200.39122,3605.8718}; - angles[]={0,5.9967613,0}; + position[]={2502.2781,202.54012,3615.8379}; + angles[]={6.2344246,5.9818177,6.2711854}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8216; - type="Land_PortableLight_single_F"; + id=8578; + type="Land_MedicalTent_01_NATO_generic_open_F"; + class CustomAttributes + { + class Attribute0 + { + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=1; + }; }; - class Item806 + class Item678 { dataType="Object"; class PositionInfo { - position[]={2463.8074,202.25316,3617.4224}; - angles[]={0,2.8551688,0}; + position[]={2361.2729,194.09871,3600.124}; + angles[]={6.26159,4.4085965,6.2823396}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8217; - type="Land_PortableLight_single_F"; + id=8579; + type="Land_Razorwire_F"; }; - class Item807 + class Item679 { dataType="Object"; class PositionInfo { - position[]={2464.655,202.16234,3614.5447}; - angles[]={0,5.9967613,0}; + position[]={2368.1099,194.69104,3593.3591}; + angles[]={6.2735858,4.4085965,0.11706191}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8218; - type="Land_PortableLight_single_F"; + id=8580; + type="Land_Razorwire_F"; }; - class Item808 + class Item680 { dataType="Object"; class PositionInfo { - position[]={2404.2644,199.43062,3557.6655}; - angles[]={0,1.2843723,0}; + position[]={2366.3589,194.25618,3583.9026}; + angles[]={6.2352209,4.4085965,0.11706242}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8219; - type="Land_LampSolar_F"; + id=8581; + type="Land_Razorwire_F"; }; - class Item809 + class Item681 { dataType="Object"; class PositionInfo { - position[]={2381.4014,199.72549,3634.8508}; - angles[]={0,4.4259648,0}; + position[]={2381.2017,194.33044,3553.189}; + angles[]={6.2687874,4.4085965,0.1139039}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8220; - type="Land_LampSolar_F"; + id=8582; + type="Land_Razorwire_F"; }; - class Item810 + class Item682 { dataType="Object"; class PositionInfo { - position[]={2533.1711,212.75026,3637.3049}; - angles[]={0,1.2843722,0}; + position[]={2379.4497,193.89984,3543.7319}; + angles[]={6.2679858,4.4085965,0.094120465}; }; side="Empty"; + flags=4; class Attributes { }; - id=8221; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=7.6675873; + id=8583; + type="Land_Razorwire_F"; }; - class Item811 + class Item683 { dataType="Object"; class PositionInfo { - position[]={2535.7422,204.74614,3627.1416}; - angles[]={0.28533283,1.2843723,0.074824944}; + position[]={2386.2866,194.43472,3536.9666}; + angles[]={6.2535958,4.4085965,0.094120465}; }; side="Empty"; flags=4; class Attributes { }; - id=8222; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=0.1489563; + id=8584; + type="Land_Razorwire_F"; }; - class Item812 + class Item684 { dataType="Object"; class PositionInfo { - position[]={2512.4102,203.56659,3637.3403}; - angles[]={6.2352238,5.9967613,0.0031832056}; + position[]={2428.3484,196.6189,3540.8076}; + angles[]={6.2352209,5.9793925,0.030390549}; }; side="Empty"; flags=4; class Attributes { }; - id=8223; - type="Land_MedicalTent_01_NATO_generic_open_F"; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; + id=8585; + type="Land_HBarrier_3_F"; }; - class Item813 + class Item685 { dataType="Object"; class PositionInfo { - position[]={2512.4102,205.82883,3637.3403}; - angles[]={0.056943256,5.9967613,5.943893}; + position[]={2374.364,196.94046,3563.3726}; + angles[]={0,1.2557691,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8224; - type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=0.15959167; + id=8586; + type="Land_LampSolar_F"; + atlOffset=1.5258789e-005; }; - class Item814 + class Item686 { dataType="Object"; class PositionInfo { - position[]={2508.5608,204.17514,3650.4102}; - angles[]={6.2280416,5.9967613,0.0055992967}; + position[]={2511.0068,222.79994,3619.7566}; + angles[]={0,2.8402252,0}; }; side="Empty"; - flags=4; class Attributes { }; - id=8225; - type="Land_MedicalTent_01_NATO_generic_open_F"; - class CustomAttributes - { - class Attribute0 - { - property="SolarPanel2_Hide"; - expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; + id=8587; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=18.18277; }; - class Item815 + class Item687 { dataType="Object"; class PositionInfo { - position[]={2508.5608,202.9547,3650.4102}; - angles[]={6.2280416,5.9967613,0.0055992967}; + position[]={2502.2781,204.76514,3615.8379}; + angles[]={0.062013965,2.8402252,5.9302912}; }; side="Empty"; flags=4; class Attributes { }; - id=8226; + id=8588; type="Land_MedicalTent_01_floor_dark_F"; - atlOffset=0.15411377; + atlOffset=0.11151123; }; - class Item816 + class Item688 { dataType="Object"; class PositionInfo { - position[]={2545.4094,202.73079,3637.677}; - angles[]={6.2232571,1.2843723,6.2591896}; + position[]={2510.3848,201.86732,3608.7188}; + angles[]={6.2176785,2.8402252,6.2711854}; }; side="Empty"; flags=4; class Attributes { }; - id=8227; + id=8589; type="Land_HBarrier_Big_F"; }; - class Item817 + class Item689 { dataType="Object"; class PositionInfo { - position[]={2529.3196,203.04813,3647.1367}; - angles[]={6.2232571,2.8551688,6.260788}; + position[]={2520.7446,201.96783,3623.7126}; + angles[]={6.2208652,4.4110217,6.2663836}; }; side="Empty"; flags=4; class Attributes { }; - id=8228; + id=8590; type="Land_PressureWasher_01_F"; - atlOffset=-0.00010681152; + atlOffset=-0.00012207031; }; - class Item818 + class Item690 { dataType="Object"; class PositionInfo { - position[]={2540.2048,201.94974,3634.5042}; - angles[]={6.2256494,1.2843723,6.2519951}; + position[]={2509.7061,201.3537,3611.4856}; + angles[]={6.2176785,2.8402252,6.2711854}; }; side="Empty"; flags=4; class Attributes { }; - id=8229; + id=8591; type="Land_AirConditioner_03_F"; }; - class Item819 + class Item691 { dataType="Object"; class PositionInfo { - position[]={2536.8945,201.26035,3621.2468}; - angles[]={6.2176805,2.8551688,6.2503982}; + position[]={2496.4004,201.65584,3614.5972}; + angles[]={6.236022,4.4110217,6.277586}; }; side="Empty"; flags=4; class Attributes { }; - id=8230; + id=8592; type="Land_AirConditioner_02_F"; - atlOffset=-1.5258789e-005; - }; - class Item820 - { - dataType="Object"; - class PositionInfo - { - position[]={2503.0232,203.60927,3656.4424}; - angles[]={6.2280416,5.2113633,0.0055992967}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=8231; - type="Land_AirConditioner_04_F"; }; - class Item821 + class Item692 { dataType="Object"; class PositionInfo { - position[]={2532.917,203.1624,3636.7341}; - angles[]={6.2256494,4.4259648,6.2543945}; + position[]={2511.8264,202.61993,3618.8059}; + angles[]={6.2256494,5.9818177,6.2799835}; }; side="Empty"; flags=4; class Attributes { }; - id=8232; + id=8593; type="Land_MedicalTent_01_NATO_generic_closed_F"; - atlOffset=-1.5258789e-005; + atlOffset=1.5258789e-005; class CustomAttributes { class Attribute0 @@ -20968,3159 +18018,2323 @@ class Mission nAttributes=3; }; }; - class Item822 + class Item693 { dataType="Object"; class PositionInfo { - position[]={2540.2808,214.11324,3638.5154}; - angles[]={6.2232571,4.4259648,6.2591896}; + position[]={2380.9177,195.83643,3611.8738}; + angles[]={6.2615871,2.8378005,0.16566847}; }; side="Empty"; flags=4; class Attributes { }; - id=8233; - type="Land_LampAirport_F"; + id=8594; + type="Land_HBarrier_5_F"; }; - class Item823 + class Item694 { dataType="Object"; class PositionInfo { - position[]={2403.7976,197.79634,3598.1846}; - angles[]={6.2511969,5.9967613,0.061521512}; + position[]={2381.75,196.53886,3614.23}; + angles[]={6.2368193,2.8378005,0.16566847}; }; side="Empty"; flags=4; class Attributes { }; - id=8234; - type="Land_HBarrier_5_F"; + id=8595; + type="Land_HBarrier_Big_F"; }; - class Item824 + class Item695 { dataType="Object"; class PositionInfo { - position[]={2409.3137,198.18811,3599.8091}; - angles[]={6.2511969,5.9967613,0.061521512}; + position[]={2386.1663,196.77478,3613.5188}; + angles[]={6.2368193,2.8378005,0.16566847}; }; side="Empty"; flags=4; class Attributes { }; - id=8235; + id=8596; type="Land_HBarrier_5_F"; }; - class Item825 + class Item696 { dataType="Object"; class PositionInfo { - position[]={2414.8293,198.58704,3601.4336}; - angles[]={6.2487974,5.9967613,0.06311693}; + position[]={2389.8621,197.66484,3616.7737}; + angles[]={6.2687874,2.8378005,0.077443115}; }; side="Empty"; flags=4; class Attributes { }; - id=8236; - type="Land_HBarrier_5_F"; + id=8597; + type="Land_HBarrier_Big_F"; }; - class Item826 + class Item697 { dataType="Object"; class PositionInfo { - position[]={2420.3452,198.99152,3603.0581}; - angles[]={6.2487974,5.9967613,0.06311693}; + position[]={2391.4138,197.29256,3615.1633}; + angles[]={6.2687874,2.8378005,0.077443115}; }; side="Empty"; flags=4; class Attributes { }; - id=8237; + id=8598; type="Land_HBarrier_5_F"; }; - class Item827 + class Item698 + { + dataType="Object"; + class PositionInfo + { + position[]={2373.6396,195.35437,3611.6873}; + angles[]={0.068692133,2.8378005,0.023195164}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=8599; + type="Land_HBarrier_Big_F"; + }; + class Item699 { dataType="Object"; class PositionInfo { - position[]={2425.8608,199.37581,3604.6826}; - angles[]={6.2511969,5.9967613,0.052751794}; + position[]={2375.1921,195.04187,3610.0784}; + angles[]={0.068692133,2.8378005,0.076649368}; }; side="Empty"; flags=4; class Attributes { }; - id=8238; + id=8600; type="Land_HBarrier_5_F"; }; - class Item828 + class Item700 { dataType="Object"; class PositionInfo { - position[]={2399.0017,197.49225,3596.772}; - angles[]={6.2487988,5.9967613,0.075058997}; + position[]={2371.375,195.08313,3608.8821}; + angles[]={0.068692133,5.9793925,0.023195164}; }; side="Empty"; flags=4; class Attributes { }; - id=8239; + id=8601; type="Land_HBarrier_3_F"; - atlOffset=1.5258789e-005; }; - class Item829 + class Item701 { dataType="Object"; class PositionInfo { - position[]={2396.728,198.01379,3639.886}; - angles[]={6.237618,2.8551688,0.10520938}; + position[]={2424.531,196.38235,3539.6113}; + angles[]={6.2352209,5.9793925,0.041577213}; }; side="Empty"; flags=4; class Attributes { }; - id=8240; + id=8602; type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item830 + class Item702 { dataType="Object"; class PositionInfo { - position[]={2397.6018,198.62457,3642.2285}; - angles[]={6.2623858,2.8551688,0.080625966}; + position[]={2423.2209,196.68079,3537.1045}; + angles[]={6.237618,5.9793925,0.039977662}; }; side="Empty"; flags=4; class Attributes { }; - id=8241; + id=8603; type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item831 + class Item703 { dataType="Object"; class PositionInfo { - position[]={2402.0042,198.50882,3641.4402}; - angles[]={6.2623887,2.8551688,0.087774232}; + position[]={2420.238,196.20337,3538.2651}; + angles[]={6.2368193,5.9793925,0.039977662}; }; side="Empty"; flags=4; class Attributes { }; - id=8242; - type="Land_HBarrier_5_F"; + id=8604; + type="Land_HBarrier_3_F"; }; - class Item832 + class Item704 { dataType="Object"; class PositionInfo { - position[]={2405.7559,199.37297,3644.6299}; - angles[]={6.2671871,2.8551688,0.083007939}; + position[]={2415.9429,195.91168,3536.9185}; + angles[]={6.237618,5.9793925,0.039977662}; }; side="Empty"; flags=4; class Attributes { }; - id=8243; - type="Land_HBarrier_Big_F"; + id=8605; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item833 + class Item705 { dataType="Object"; class PositionInfo { - position[]={2407.28,199.0041,3642.9939}; - angles[]={6.2671871,2.8551688,0.083007939}; + position[]={2414.6335,196.22296,3534.4124}; + angles[]={6.2464013,5.9793925,0.031192081}; }; side="Empty"; flags=4; class Attributes { }; - id=8244; - type="Land_HBarrier_5_F"; + id=8606; + type="Land_HBarrier_Big_F"; }; - class Item834 + class Item706 { dataType="Object"; class PositionInfo { - position[]={2389.4485,197.71187,3639.8269}; - angles[]={6.237618,2.8551688,0.10520938}; + position[]={2411.6494,195.74796,3535.5728}; + angles[]={6.2464032,5.9793925,0.046366453}; }; side="Empty"; flags=4; class Attributes { }; - id=8245; - type="Land_HBarrier_Big_F"; + id=8607; + type="Land_HBarrier_3_F"; + atlOffset=1.5258789e-005; }; - class Item835 + class Item707 { dataType="Object"; class PositionInfo { - position[]={2390.9727,197.32872,3638.1909}; - angles[]={6.237618,2.8551688,0.10520938}; + position[]={2407.3552,195.44131,3534.2261}; + angles[]={6.2464032,5.9793925,0.046366453}; }; side="Empty"; flags=4; class Attributes { }; - id=8246; + id=8608; type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item836 + class Item708 { dataType="Object"; class PositionInfo { - position[]={2387.1355,196.97031,3637.0608}; - angles[]={0.015998369,5.9967613,0.068692133}; + position[]={2406.0452,195.7578,3531.7192}; + angles[]={6.2464032,5.9793925,0.046366453}; }; side="Empty"; flags=4; class Attributes { }; - id=8247; - type="Land_HBarrier_3_F"; + id=8609; + type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item837 + class Item709 { dataType="Object"; class PositionInfo { - position[]={2439.0803,198.37482,3566.8772}; - angles[]={6.2304335,5.9967613,0.039979152}; + position[]={2403.061,195.25282,3532.8796}; + angles[]={6.2480001,5.9793925,0.044770103}; }; side="Empty"; flags=4; class Attributes { }; - id=8248; - type="Land_HBarrier_5_F"; + id=8610; + type="Land_HBarrier_3_F"; }; - class Item838 + class Item710 { dataType="Object"; class PositionInfo { - position[]={2437.7268,198.65907,3564.3936}; - angles[]={6.2304335,5.9967613,0.039979152}; + position[]={2558.5691,203.09355,3657.3523}; + angles[]={6.2224603,1.2911204,6.2663875}; }; side="Empty"; flags=4; class Attributes { }; - id=8249; - type="Land_HBarrier_Big_F"; + id=8611; + type="Land_HBarrier_5_F"; }; - class Item839 + class Item711 { dataType="Object"; class PositionInfo { - position[]={2434.7637,198.17314,3565.6057}; - angles[]={6.2304335,5.9967613,0.047164604}; + position[]={2560.905,203.46973,3656.4624}; + angles[]={6.2224603,1.2911204,6.2663875}; }; side="Empty"; flags=4; class Attributes { }; - id=8250; - type="Land_HBarrier_3_F"; + id=8612; + type="Land_HBarrier_Big_F"; }; - class Item840 + class Item712 { dataType="Object"; class PositionInfo { - position[]={2430.4468,197.86951,3564.3345}; - angles[]={6.2352223,5.9967613,0.042374056}; + position[]={2563.114,202.8369,3648.7734}; + angles[]={6.2232571,1.2911204,6.0597782}; }; side="Empty"; flags=4; class Attributes { }; - id=8251; - type="Land_HBarrier_5_F"; + id=8613; + type="Land_HBarrier_Big_F"; }; - class Item841 + class Item713 { dataType="Object"; class PositionInfo { - position[]={2429.0935,198.15668,3561.8508}; - angles[]={6.2264481,5.9967613,0.042374056}; + position[]={2560.0867,202.74913,3652.0654}; + angles[]={6.2296371,1.2911204,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=8252; - type="Land_HBarrier_Big_F"; + id=8614; + type="Land_HBarrier_5_F"; }; - class Item842 + class Item714 { dataType="Object"; class PositionInfo { - position[]={2426.1301,197.68327,3563.063}; - angles[]={6.2352223,5.9967613,0.042374056}; + position[]={2561.6047,202.40872,3646.7793}; + angles[]={6.2232571,1.2911204,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=8253; - type="Land_HBarrier_3_F"; + id=8615; + type="Land_HBarrier_5_F"; + atlOffset=-3.0517578e-005; }; - class Item843 + class Item715 { dataType="Object"; class PositionInfo { - position[]={2421.8135,197.34798,3561.7917}; - angles[]={6.2312331,5.9967613,0.051952176}; + position[]={2563.124,201.92834,3641.4934}; + angles[]={6.2232571,1.2911204,6.0597782}; }; side="Empty"; flags=4; class Attributes { }; - id=8254; + id=8616; type="Land_HBarrier_5_F"; }; - class Item844 + class Item716 { dataType="Object"; class PositionInfo { - position[]={2420.46,197.61794,3559.3081}; - angles[]={6.2312331,5.9967613,0.051952176}; + position[]={2565.46,201.81371,3640.603}; + angles[]={6.2232571,1.2911204,6.0597782}; }; side="Empty"; flags=4; class Attributes { }; - id=8255; + id=8617; type="Land_HBarrier_Big_F"; }; - class Item845 + class Item717 { dataType="Object"; class PositionInfo { - position[]={2417.4968,197.11522,3560.5203}; - angles[]={6.2312331,5.9967613,0.051952176}; + position[]={2567.625,200.61024,3632.875}; + angles[]={6.1700706,1.2911204,6.0597782}; }; side="Empty"; flags=4; class Attributes { }; - id=8256; - type="Land_HBarrier_3_F"; + id=8618; + type="Land_HBarrier_Big_F"; }; - class Item846 + class Item718 { dataType="Object"; class PositionInfo { - position[]={2415.6638,197.38577,3557.8955}; - angles[]={0,2.8551688,0}; + position[]={2564.6423,201.19688,3636.2073}; + angles[]={6.1700706,1.2911204,6.0597782}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8257; - type="Land_SandbagBarricade_01_F"; + id=8619; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item847 + class Item719 { dataType="Object"; class PositionInfo { - position[]={2384.0032,196.64099,3637.9626}; - angles[]={0,5.9967613,0}; + position[]={2566.1606,200.37515,3630.9204}; + angles[]={6.2121058,1.2911204,6.0198469}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8258; - type="Land_SandbagBarricade_01_half_F"; + id=8620; + type="Land_HBarrier_5_F"; }; - class Item848 + class Item720 { dataType="Object"; class PositionInfo { - position[]={2383.7913,196.41183,3638.6821}; - angles[]={6.2344232,5.9967613,0.068692133}; + position[]={2567.6777,199.5898,3625.6348}; + angles[]={6.2121058,1.2911204,6.0198469}; }; side="Empty"; flags=4; class Attributes { }; - id=8259; - type="Land_BagFence_Long_F"; + id=8621; + type="Land_HBarrier_5_F"; }; - class Item849 + class Item721 { dataType="Object"; class PositionInfo { - position[]={2460.2759,202.16658,3629.4131}; - angles[]={0,2.8551688,0}; + position[]={2572.2239,198.15286,3617.0552}; + angles[]={6.2033553,1.2911204,6.0198469}; }; side="Empty"; + flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8260; - type="Land_HelipadSquare_F"; - atlOffset=0.74996948; + id=8622; + type="Land_HBarrier_Big_F"; }; - class Item850 + class Item722 { dataType="Object"; class PositionInfo { - position[]={2432.4573,200.34709,3621.22}; - angles[]={0,2.8551688,0}; + position[]={2569.197,198.76286,3620.3481}; + angles[]={6.2033553,1.2911204,6.0198469}; }; side="Empty"; + flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8261; - type="Land_HelipadSquare_F"; - atlOffset=0.74995422; + id=8623; + type="Land_HBarrier_5_F"; }; - class Item851 + class Item723 { dataType="Object"; class PositionInfo { - position[]={2405.5981,197.59795,3613.3093}; - angles[]={6.2647886,2.8551688,0.071876638}; + position[]={2570.7146,197.94591,3615.061}; + angles[]={6.2121053,1.2911204,6.0116615}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8262; - type="Land_HelipadSquare_F"; + id=8624; + type="Land_HBarrier_5_F"; }; - class Item852 + class Item724 { dataType="Object"; class PositionInfo { - position[]={2468.116,200.5531,3602.7939}; - angles[]={6.2312331,5.9967613,0.01919602}; + position[]={2569.9109,199.41949,3625.1047}; + angles[]={6.2121058,1.2911204,6.0198469}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8263; - type="Land_HelipadSquare_F"; + id=8625; + type="Land_HBarrier_Big_F"; }; - class Item853 + class Item725 { dataType="Object"; class PositionInfo { - position[]={2440.2974,198.99174,3594.6003}; - angles[]={6.2416081,5.9967613,0.041577213}; + position[]={2537.4551,198.42902,3576.1411}; + angles[]={6.2160869,5.9793925,6.2424073}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8264; - type="Land_HelipadSquare_F"; + id=8626; + type="Land_HBarrier_5_F"; }; - class Item854 + class Item726 { dataType="Object"; class PositionInfo { - position[]={2413.4382,197.26733,3586.6897}; - angles[]={6.241611,5.9967613,0.054345392}; + position[]={2534.2378,198.79912,3573.0356}; + angles[]={6.2089214,5.9793925,6.2448058}; }; side="Empty"; flags=4; class Attributes { - init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8265; - type="Land_HelipadSquare_F"; + id=8627; + type="Land_HBarrier_Big_F"; }; - class Item855 + class Item727 { dataType="Object"; class PositionInfo { - position[]={2577.4961,203.70764,3682.7017}; - angles[]={6.1511574,1.2843723,6.1930304}; + position[]={2532.208,198.51611,3574.4946}; + angles[]={6.2089214,5.9793925,6.2448058}; }; side="Empty"; flags=4; class Attributes { }; - id=8266; + id=8628; type="Land_HBarrier_5_F"; }; - class Item856 + class Item728 { dataType="Object"; class PositionInfo { - position[]={2579.8386,203.84935,3681.8279}; - angles[]={6.1511574,1.2843723,6.1930304}; + position[]={2549.9814,198.53221,3577.9709}; + angles[]={6.2121058,5.9793925,6.2472029}; }; side="Empty"; flags=4; class Attributes { }; - id=8267; + id=8629; type="Land_HBarrier_Big_F"; }; - class Item857 + class Item729 { dataType="Object"; class PositionInfo { - position[]={2582.0986,202.68753,3674.1538}; - angles[]={6.2232571,1.2843723,6.1930304}; + position[]={2547.9524,198.23972,3579.4314}; + angles[]={6.2121058,5.9793925,6.2472029}; }; side="Empty"; flags=4; class Attributes { }; - id=8268; - type="Land_HBarrier_Big_F"; + id=8630; + type="Land_HBarrier_5_F"; }; - class Item858 + class Item730 { dataType="Object"; class PositionInfo { - position[]={2579.05,202.86652,3677.4258}; - angles[]={6.1511574,1.2843723,6.1930304}; + position[]={2541.8708,198.67398,3575.4287}; + angles[]={6.2160869,5.9793925,6.2432079}; }; side="Empty"; flags=4; class Attributes { }; - id=8269; - type="Land_HBarrier_5_F"; + id=8631; + type="Land_HBarrier_Big_F"; }; - class Item859 + class Item731 { dataType="Object"; class PositionInfo { - position[]={2580.6038,202.23289,3672.1499}; - angles[]={6.2232571,1.2843723,6.1930304}; + position[]={2542.7041,198.32953,3577.7854}; + angles[]={6.2160869,5.9793925,6.2432079}; }; side="Empty"; flags=4; class Attributes { }; - id=8270; + id=8632; type="Land_HBarrier_5_F"; }; - class Item860 + class Item732 { dataType="Object"; class PositionInfo { - position[]={2582.1577,201.74564,3666.8738}; - angles[]={6.1922374,1.2843723,6.2240534}; + position[]={2553.4397,198.14812,3581.1509}; + angles[]={6.2121058,5.9793925,6.2424088}; }; side="Empty"; flags=4; class Attributes { }; - id=8271; + id=8633; type="Land_HBarrier_5_F"; }; - class Item861 + class Item733 { dataType="Object"; class PositionInfo { - position[]={2584.5,201.98122,3666}; - angles[]={6.2232571,1.2843723,6.1930304}; + position[]={2565.9644,198.0937,3582.9819}; + angles[]={6.2113104,5.9793925,6.1993818}; }; side="Empty"; flags=4; class Attributes { }; - id=8272; + id=8634; type="Land_HBarrier_Big_F"; }; - class Item862 + class Item734 { dataType="Object"; class PositionInfo { - position[]={2586.7603,200.66893,3658.3259}; - angles[]={6.0765772,1.2843723,6.2240534}; + position[]={2563.9365,197.89969,3584.4421}; + angles[]={6.2113104,5.9793925,6.1993818}; }; side="Empty"; flags=4; class Attributes { }; - id=8273; - type="Land_HBarrier_Big_F"; + id=8635; + type="Land_HBarrier_5_F"; atlOffset=1.5258789e-005; }; - class Item863 + class Item735 { dataType="Object"; class PositionInfo { - position[]={2583.7117,201.06578,3661.5981}; - angles[]={6.0765772,1.2843723,6.2240534}; + position[]={2557.853,198.3875,3580.439}; + angles[]={6.2113104,5.9793925,6.2432065}; }; side="Empty"; flags=4; class Attributes { }; - id=8274; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=8636; + type="Land_HBarrier_Big_F"; }; - class Item864 + class Item736 { dataType="Object"; class PositionInfo { - position[]={2585.2656,199.8679,3656.322}; - angles[]={6.0765772,1.2843723,6.2240534}; + position[]={2558.6863,198.05437,3582.7959}; + angles[]={6.2113104,5.9793925,6.2432065}; }; side="Empty"; flags=4; class Attributes { }; - id=8275; + id=8637; type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; }; - class Item865 + class Item737 { dataType="Object"; class PositionInfo { - position[]={2586.8196,198.67004,3651.0459}; - angles[]={6.0765772,1.2843723,6.2240534}; + position[]={2568.2288,197.29539,3585.7878}; + angles[]={0.027191572,5.9793925,6.1019955}; }; side="Empty"; flags=4; class Attributes { }; - id=8276; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=8638; + type="Land_HBarrier_3_F"; + atlOffset=-1.5258789e-005; }; - class Item866 + class Item738 { dataType="Object"; class PositionInfo { - position[]={2591.4221,198.02693,3642.498}; - angles[]={6.19065,1.2843723,6.2432079}; + position[]={2571.6516,197.16081,3582.8176}; + angles[]={0.027191572,4.432713,6.1019955}; }; side="Empty"; flags=4; class Attributes { }; - id=8277; + id=8639; type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item867 + class Item739 { dataType="Object"; class PositionInfo { - position[]={2588.3733,197.98306,3645.7703}; - angles[]={6.19065,1.2843723,6.2432079}; + position[]={2574.741,196.98257,3609.1953}; + angles[]={6.2440047,1.2911204,6.0116615}; }; side="Empty"; flags=4; class Attributes { }; - id=8278; - type="Land_HBarrier_5_F"; + id=8640; + type="Land_HBarrier_Big_F"; }; - class Item868 + class Item740 { dataType="Object"; class PositionInfo { - position[]={2589.9272,197.43127,3640.4941}; - angles[]={6.19065,1.2843723,6.2432079}; + position[]={2572.5425,197.1412,3609.6045}; + angles[]={6.2440047,1.2911204,6.0116615}; }; side="Empty"; flags=4; class Attributes { }; - id=8279; + id=8641; type="Land_HBarrier_5_F"; }; - class Item869 + class Item741 { dataType="Object"; class PositionInfo { - position[]={2589.0559,198.98276,3650.532}; - angles[]={6.0765772,1.2843723,6.277586}; + position[]={2573.4392,196.73062,3606.4797}; + angles[]={6.2440047,4.432713,6.0116615}; }; side="Empty"; flags=4; class Attributes { }; - id=8280; - type="Land_HBarrier_Big_F"; + id=8642; + type="Land_HBarrier_1_F"; }; - class Item870 + class Item742 { dataType="Object"; class PositionInfo { - position[]={2556.2085,199.51361,3601.8955}; - angles[]={6.2113094,5.9967613,6.2440047}; + position[]={2574.0247,196.52332,3605.3484}; + angles[]={6.2440047,4.432713,6.0116615}; }; side="Empty"; flags=4; class Attributes { }; - id=8281; - type="Land_HBarrier_5_F"; + id=8643; + type="Land_HBarrier_1_F"; }; - class Item871 + class Item743 { dataType="Object"; class PositionInfo { - position[]={2552.9365,199.89276,3598.8467}; - angles[]={6.2121058,5.9967613,6.2440062}; + position[]={2521.2852,203.71587,3656.3782}; + angles[]={6.2424073,2.8378005,0.0039967569}; }; side="Empty"; flags=4; class Attributes { }; - id=8282; - type="Land_HBarrier_Big_F"; + id=8644; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item872 + class Item744 { dataType="Object"; class PositionInfo { - position[]={2550.9326,199.60854,3600.3416}; - angles[]={6.2113094,5.9967613,6.2440047}; + position[]={2524.5029,204.32492,3659.4832}; + angles[]={6.2424073,2.8378005,0.0039967569}; }; side="Empty"; flags=4; class Attributes { }; - id=8283; - type="Land_HBarrier_5_F"; + id=8645; + type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item873 + class Item745 { dataType="Object"; class PositionInfo { - position[]={2568.7644,198.32973,3603.5085}; - angles[]={6.2097187,5.9967613,6.0438614}; + position[]={2526.5327,203.76352,3658.0232}; + angles[]={6.2424073,2.8378005,6.2607903}; }; side="Empty"; flags=4; class Attributes { }; - id=8284; - type="Land_HBarrier_Big_F"; + id=8646; + type="Land_HBarrier_5_F"; }; - class Item874 + class Item746 { dataType="Object"; class PositionInfo { - position[]={2566.7603,198.45923,3605.0032}; - angles[]={6.2097187,5.9967613,6.0438614}; + position[]={2508.6196,204.22122,3654.4817}; + angles[]={6.251997,2.8378005,6.2647886}; }; side="Empty"; flags=4; class Attributes { }; - id=8285; - type="Land_HBarrier_5_F"; + id=8647; + type="Land_HBarrier_Big_F"; }; - class Item875 + class Item747 { dataType="Object"; class PositionInfo { - position[]={2560.6108,199.75378,3601.1069}; - angles[]={6.2113094,5.9967613,6.2440047}; + position[]={2510.7888,203.66835,3653.0881}; + angles[]={6.251997,2.8378005,6.2647886}; }; side="Empty"; flags=4; class Attributes { }; - id=8286; - type="Land_HBarrier_Big_F"; + id=8648; + type="Land_HBarrier_5_F"; }; - class Item876 + class Item748 { dataType="Object"; class PositionInfo { - position[]={2561.4846,199.42253,3603.4492}; - angles[]={6.2097178,5.9967613,6.2456031}; + position[]={2516.8694,204.20676,3657.0906}; + angles[]={6.251997,2.8378005,6.277586}; }; side="Empty"; flags=4; class Attributes { }; - id=8287; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=8649; + type="Land_HBarrier_Big_F"; }; - class Item877 + class Item749 { dataType="Object"; class PositionInfo { - position[]={2572.2764,197.09859,3606.6277}; - angles[]={6.2440047,5.9967613,6.0116615}; + position[]={2516.0366,203.66837,3654.7332}; + angles[]={6.251997,2.8378005,6.277586}; }; side="Empty"; flags=4; class Attributes { }; - id=8288; + id=8650; type="Land_HBarrier_5_F"; }; - class Item878 + class Item750 { dataType="Object"; class PositionInfo { - position[]={2584.832,195.31357,3608.2407}; - angles[]={6.2232571,5.9967613,6.1346869}; + position[]={2506.3552,203.6564,3651.675}; + angles[]={6.2280416,2.8378005,0.0055992967}; }; side="Empty"; flags=4; class Attributes { }; - id=8289; - type="Land_HBarrier_Big_F"; + id=8651; + type="Land_HBarrier_3_F"; }; - class Item879 + class Item751 { dataType="Object"; class PositionInfo { - position[]={2582.8281,195.23354,3609.7354}; - angles[]={6.2232571,5.9967613,6.1346869}; + position[]={2537.2671,203.72285,3661.3887}; + angles[]={6.2368178,2.8378005,6.2663836}; }; side="Empty"; flags=4; class Attributes { }; - id=8290; + id=8652; type="Land_HBarrier_5_F"; }; - class Item880 + class Item752 { dataType="Object"; class PositionInfo { - position[]={2576.6782,196.49295,3605.8391}; - angles[]={6.2440047,5.9967613,6.1144071}; + position[]={2540.4868,204.2704,3664.4944}; + angles[]={6.2416096,2.8378005,6.2655902}; }; side="Empty"; flags=4; class Attributes { }; - id=8291; + id=8653; type="Land_HBarrier_Big_F"; }; - class Item881 + class Item753 { dataType="Object"; class PositionInfo { - position[]={2577.552,195.96635,3608.1816}; - angles[]={6.2440047,5.9967613,6.1144071}; + position[]={2542.5156,203.70444,3663.0339}; + angles[]={6.2416096,2.8378005,6.2655902}; }; side="Empty"; flags=4; class Attributes { }; - id=8292; + id=8654; type="Land_HBarrier_5_F"; }; - class Item882 + class Item754 { dataType="Object"; class PositionInfo { - position[]={2587.1448,194.72192,3611.0068}; - angles[]={6.2232571,5.9967613,6.1346869}; + position[]={2532.8528,204.29955,3662.1006}; + angles[]={6.2368178,2.8378005,6.2663836}; }; side="Empty"; flags=4; class Attributes { }; - id=8293; - type="Land_HBarrier_3_F"; + id=8655; + type="Land_HBarrier_Big_F"; }; - class Item883 + class Item755 { dataType="Object"; class PositionInfo { - position[]={2591.0818,194.68332,3608.2571}; - angles[]={6.2232571,4.4259653,6.2184744}; + position[]={2532.0195,203.7347,3659.7439}; + angles[]={6.2368178,2.8378005,6.2663836}; }; side="Empty"; flags=4; class Attributes { }; - id=8294; - type="Land_HBarrier_Big_F"; + id=8656; + type="Land_HBarrier_5_F"; }; - class Item884 + class Item756 { dataType="Object"; class PositionInfo { - position[]={2593.9924,197.11203,3634.6548}; - angles[]={6.1613913,1.2843723,6.2432065}; + position[]={2545.1609,204.3308,3667.8071}; + angles[]={6.2312312,1.2911204,6.2759843}; }; side="Empty"; flags=4; class Attributes { }; - id=8295; + id=8657; type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item885 + class Item757 { dataType="Object"; class PositionInfo { - position[]={2591.7915,196.77885,3635.0491}; - angles[]={6.1613913,1.2843723,6.2432065}; + position[]={2521.8074,206.83588,3602.9719}; + angles[]={0,1.2694265,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8296; - type="Land_HBarrier_5_F"; + id=8658; + type="Land_MobileRadar_01_radar_F"; }; - class Item886 + class Item758 { dataType="Object"; class PositionInfo { - position[]={2592.7097,196.31526,3631.9316}; - angles[]={6.1425219,4.4259648,6.2623887}; + position[]={2517.3276,201.95351,3601.53}; + angles[]={0,1.2694288,0}; }; side="Empty"; - flags=4; + flags=1; class Attributes { }; - id=8297; - type="Land_HBarrier_1_F"; + id=8659; + type="Land_MobileRadar_01_generator_F"; + atlOffset=0.25138855; }; - class Item887 + class Item759 { dataType="Object"; class PositionInfo { - position[]={2593.3027,196.1431,3630.803}; - angles[]={6.1425219,4.4259648,6.2623887}; + position[]={2525.75,202.3455,3580.875}; + angles[]={0,5.9967246,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8298; - type="Land_HBarrier_1_F"; + id=8660; + type="Land_Cargo_HQ_V1_F"; }; - class Item888 + class Item760 { dataType="Object"; class PositionInfo { - position[]={2547.9407,201.20061,3622.0037}; - angles[]={6.2184763,1.2843723,6.2519951}; + position[]={2559.5,207.63991,3664.125}; + angles[]={6.2312322,4.4327111,6.2663875}; }; side="Empty"; flags=4; class Attributes { }; - id=8299; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=8661; + type="Land_Cargo_Patrol_V1_F"; }; - class Item889 + class Item761 { dataType="Object"; class PositionInfo { - position[]={2552.5432,200.9563,3613.4558}; - angles[]={6.2184753,1.2843723,6.2456031}; + position[]={2551.5,208.0083,3668.625}; + angles[]={6.2312322,2.8619151,6.2663875}; }; side="Empty"; flags=4; class Attributes { }; - id=8300; - type="Land_HBarrier_Big_F"; + id=8662; + type="Land_Cargo_Patrol_V1_F"; }; - class Item890 + class Item762 { dataType="Object"; class PositionInfo { - position[]={2549.4944,200.81026,3616.7278}; - angles[]={6.2184763,1.2843723,6.2519951}; + position[]={2576.25,199.81143,3584.875}; + angles[]={0.027192229,6.0035138,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8301; - type="Land_HBarrier_5_F"; - atlOffset=1.5258789e-005; + id=8663; + type="Land_Cargo_Patrol_V1_F"; }; - class Item891 + class Item763 { dataType="Object"; class PositionInfo { - position[]={2551.0486,200.40392,3611.4519}; - angles[]={6.2097178,1.2843723,6.2456031}; + position[]={2580.75,198.87502,3593}; + angles[]={0,4.4327173,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8302; - type="Land_HBarrier_5_F"; - atlOffset=-1.5258789e-005; + id=8664; + type="Land_Cargo_Patrol_V1_F"; }; - class Item892 + class Item764 { dataType="Object"; class PositionInfo { - position[]={2550.177,201.56586,3621.4895}; - angles[]={6.2184753,1.2843723,6.2456031}; + position[]={2459.0974,202.40544,3643.0474}; + angles[]={0,2.8378005,0}; }; side="Empty"; - flags=4; class Attributes { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8303; - type="Land_HBarrier_Big_F"; + id=8665; + type="Land_HelipadSquare_F"; + atlOffset=0.65576172; }; - class Item893 + class Item765 { dataType="Object"; class PositionInfo { - position[]={2539.6858,204.64162,3682.7722}; - angles[]={6.236022,2.8551688,6.2759843}; + position[]={2398.8162,194.94603,3531.5059}; + angles[]={6.2480001,5.9697719,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8304; + id=8666; type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item894 + class Item766 { dataType="Object"; class PositionInfo { - position[]={2542.9578,205.33121,3685.8208}; - angles[]={6.2097187,2.8551688,0.01919602}; + position[]={2397.5344,195.25807,3528.9841}; + angles[]={6.2480001,5.9793925,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8305; + id=8667; type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item895 + class Item767 { dataType="Object"; class PositionInfo { - position[]={2544.9617,204.79018,3684.3262}; - angles[]={6.2097187,2.8551688,0.01919602}; + position[]={2394.9182,194.77715,3532.6431}; + angles[]={6.2480001,1.2289335,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8306; + id=8668; type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item896 + class Item768 { dataType="Object"; class PositionInfo { - position[]={2527.1301,205.08977,3681.1592}; - angles[]={6.2767816,2.8551688,6.2551947}; + position[]={2392.6599,195.13988,3533.0491}; + angles[]={6.2480001,1.2289335,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8307; + id=8669; type="Land_HBarrier_Big_F"; + atlOffset=-1.5258789e-005; }; - class Item897 + class Item769 { dataType="Object"; class PositionInfo { - position[]={2529.134,204.55461,3679.6646}; - angles[]={6.2767816,2.8551688,6.2551947}; + position[]={2467.3,203.1425,3657.8159}; + angles[]={6.2583904,3.4746752,0.0391808}; }; side="Empty"; flags=4; class Attributes { }; - id=8308; + id=8670; type="Land_HBarrier_5_F"; }; - class Item898 + class Item770 { dataType="Object"; class PositionInfo { - position[]={2535.2837,205.1357,3683.5608}; - angles[]={6.236021,2.8551688,0.01280293}; + position[]={2475.3994,203.90193,3657.1685}; + angles[]={6.2583904,3.5065713,0.010398259}; }; side="Empty"; flags=4; class Attributes { }; - id=8309; + id=8671; type="Land_HBarrier_Big_F"; }; - class Item899 + class Item771 { dataType="Object"; class PositionInfo { - position[]={2534.4099,204.54446,3681.2185}; - angles[]={6.236021,2.8551688,0.01280293}; + position[]={2472.4976,203.30167,3656.0186}; + angles[]={6.2583904,3.4746752,0.0391808}; }; side="Empty"; flags=4; class Attributes { }; - id=8310; + id=8672; type="Land_HBarrier_5_F"; }; - class Item900 + class Item772 { dataType="Object"; class PositionInfo { - position[]={2524.8174,204.71712,3678.3931}; - angles[]={6.2767911,2.8551688,0.015998369}; + position[]={2467.3933,203.66858,3659.95}; + angles[]={6.2583904,3.5065713,0.0391808}; }; side="Empty"; flags=4; class Attributes { }; - id=8311; - type="Land_HBarrier_3_F"; + id=8673; + type="Land_HBarrier_Big_F"; }; - class Item901 + class Item773 { dataType="Object"; class PositionInfo { - position[]={2555.7534,205.2126,3687.5044}; - angles[]={6.277586,2.8551688,0.015998369}; + position[]={2483.1289,203.39311,3652.3411}; + angles[]={6.2583904,3.4746752,0.010398259}; }; side="Empty"; flags=4; class Attributes { }; - id=8312; + id=8674; type="Land_HBarrier_5_F"; }; - class Item902 + class Item774 { dataType="Object"; class PositionInfo { - position[]={2559.0254,205.75151,3690.553}; - angles[]={6.277586,2.8551688,0.015998369}; + position[]={2491.7261,203.94635,3651.4456}; + angles[]={6.2376165,3.5065713,0.0071928473}; }; side="Empty"; flags=4; class Attributes { }; - id=8313; + id=8675; type="Land_HBarrier_Big_F"; }; - class Item903 + class Item775 { dataType="Object"; class PositionInfo { - position[]={2561.0293,205.30571,3689.0583}; - angles[]={6.277586,2.8551688,0.015998369}; + position[]={2488.3271,203.41116,3650.5417}; + angles[]={6.2376165,3.4746752,0.0071928473}; }; side="Empty"; flags=4; class Attributes { }; - id=8314; + id=8676; type="Land_HBarrier_5_F"; }; - class Item904 + class Item776 { dataType="Object"; class PositionInfo { - position[]={2551.3513,205.61607,3688.293}; - angles[]={6.277586,2.8551688,0.015998369}; + position[]={2483.5625,203.92358,3654.3071}; + angles[]={6.2376165,3.5065713,0.031188259}; }; side="Empty"; flags=4; class Attributes { }; - id=8315; + id=8677; type="Land_HBarrier_Big_F"; + atlOffset=1.5258789e-005; }; - class Item905 + class Item777 { dataType="Object"; class PositionInfo { - position[]={2550.4775,205.00075,3685.9507}; - angles[]={6.2097178,2.8551688,6.2711854}; + position[]={2477.9314,203.38362,3654.1384}; + angles[]={6.2583904,3.4746752,0.010398259}; }; side="Empty"; flags=4; class Attributes { }; - id=8316; + id=8678; type="Land_HBarrier_5_F"; }; - class Item906 + class Item778 { dataType="Object"; class PositionInfo { - position[]={2564.0188,205.73006,3693.0662}; - angles[]={6.277597,1.2843723,6.223258}; + position[]={2463.0374,203.09297,3658.7932}; + angles[]={6.2695832,6.0183806,0.027993103}; }; side="Empty"; flags=4; class Attributes { }; - id=8317; - type="Land_HBarrier_Big_F"; + id=8679; + type="Land_HBarrier_3_F"; }; - class Item907 + class Item779 { dataType="Object"; class PositionInfo { - position[]={2553.125,208.86108,3650.125}; - angles[]={0,5.9967589,0}; + position[]={2519.0547,198.57559,3569.0813}; + angles[]={6.2113094,5.3340096,6.2543926}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8318; - type="Land_MobileRadar_01_radar_F"; + id=8680; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item908 + class Item780 { dataType="Object"; class PositionInfo { - position[]={2554.5,203.71313,3645.625}; - angles[]={0,5.9967613,0}; + position[]={2518.7607,198.78844,3565.2842}; + angles[]={6.2136974,5.3340096,6.2519951}; }; side="Empty"; - flags=1; + flags=4; class Attributes { }; - id=8319; - type="Land_MobileRadar_01_generator_F"; - atlOffset=0.29374695; + id=8681; + type="Land_HBarrier_Big_F"; }; - class Item909 + class Item781 { dataType="Object"; class PositionInfo { - position[]={2398.9226,196.91212,3581.1118}; - angles[]={6.247201,1.2843723,0.064709939}; + position[]={2515.6433,198.35168,3564.3569}; + angles[]={6.2136974,5.3340096,6.2519951}; }; side="Empty"; flags=4; class Attributes { }; - id=8320; - type="Land_HBarrierWall_corridor_F"; - atlOffset=1.5258789e-005; + id=8682; + type="Land_HBarrier_5_F"; }; - class Item910 + class Item782 { dataType="Object"; class PositionInfo { - position[]={2415.0608,197.24011,3581.175}; - angles[]={6.2424088,2.8551688,0.053548392}; + position[]={2513.8105,198.42993,3558.3733}; + angles[]={6.2057409,5.3340096,6.2527947}; }; side="Empty"; flags=4; class Attributes { }; - id=8321; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8683; + type="Land_HBarrier_Big_F"; }; - class Item911 + class Item783 { dataType="Object"; class PositionInfo { - position[]={2418.9517,197.73796,3588.3154}; - angles[]={6.2511969,1.2843723,0.054346491}; + position[]={2512.2322,198.10382,3559.6331}; + angles[]={6.20574,5.3340096,6.2615871}; }; side="Empty"; flags=4; class Attributes { }; - id=8322; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8684; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item912 + class Item784 { dataType="Object"; class PositionInfo { - position[]={2411.8118,197.46915,3592.2065}; - angles[]={6.2511969,5.9967613,0.061521512}; + position[]={2508.8201,197.8109,3554.9084}; + angles[]={6.20574,5.3340096,6.2615871}; }; side="Empty"; flags=4; class Attributes { }; - id=8323; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes + id=8685; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; + }; + class Item785 + { + dataType="Object"; + class PositionInfo + { + position[]={2508.8589,198.01575,3551.4641}; + angles[]={6.2073302,5.3340096,6.2599902}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=8686; + type="Land_HBarrier_Big_F"; }; - class Item913 + class Item786 { dataType="Object"; class PositionInfo { - position[]={2407.9204,196.96863,3585.0667}; - angles[]={6.2424088,4.4259648,0.063912325}; + position[]={2505.4089,197.52905,3550.1848}; + angles[]={6.2073302,5.3340096,6.2599902}; }; side="Empty"; flags=4; class Attributes { }; - id=8324; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8687; + type="Land_HBarrier_5_F"; }; - class Item914 + class Item787 { dataType="Object"; class PositionInfo { - position[]={2420.5767,197.60475,3582.7996}; - angles[]={6.241611,2.0697708,0.054345392}; + position[]={2503.9102,197.60225,3544.5537}; + angles[]={6.2073312,5.3340096,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=8325; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8688; + type="Land_HBarrier_Big_F"; }; - class Item915 + class Item788 { dataType="Object"; class PositionInfo { - position[]={2417.3276,197.8261,3593.8313}; - angles[]={6.2511969,0.49897444,0.054346491}; + position[]={2501.9985,197.24757,3545.4609}; + angles[]={6.2073312,5.3340096,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=8326; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8689; + type="Land_HBarrier_5_F"; }; - class Item916 + class Item789 { dataType="Object"; class PositionInfo { - position[]={2406.2961,197.06998,3590.5823}; - angles[]={6.2487988,5.2113633,0.063913256}; + position[]={2497.8296,197.06937,3541.7996}; + angles[]={6.2073312,6.0057921,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=8327; - type="PortableHelipadLight_01_green_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8690; + type="Land_HBarrier_5_F"; }; - class Item917 + class Item790 { dataType="Object"; class PositionInfo { - position[]={2409.5449,196.84755,3579.5505}; - angles[]={6.2424088,3.6405668,0.063912325}; + position[]={2497.1711,197.38058,3539.4636}; + angles[]={6.2113094,6.0057921,6.2551923}; }; side="Empty"; flags=4; class Attributes { }; - id=8328; - type="PortableHelipadLight_01_green_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8691; + type="Land_HBarrier_Big_F"; }; - class Item918 + class Item791 { dataType="Object"; class PositionInfo { - position[]={2441.9197,198.94067,3589.0852}; - angles[]={6.2416081,2.8551688,0.041577213}; + position[]={2492.5396,197.10052,3540.2935}; + angles[]={6.2113094,6.0057921,6.2551923}; }; side="Empty"; flags=4; class Attributes { }; - id=8329; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8692; + type="Land_HBarrier_5_F"; }; - class Item919 + class Item792 { dataType="Object"; class PositionInfo { - position[]={2445.8108,199.42867,3596.2256}; - angles[]={6.2352238,1.2843723,0.04796192}; + position[]={2488.9956,197.44029,3537.134}; + angles[]={6.2073312,6.0057921,6.2551923}; }; side="Empty"; flags=4; class Attributes { }; - id=8330; - type="PortableHelipadLight_01_green_F"; + id=8693; + type="Land_HBarrier_Big_F"; atlOffset=-1.5258789e-005; - class CustomAttributes + }; + class Item793 + { + dataType="Object"; + class PositionInfo + { + position[]={2488.2104,197.19084,3539.061}; + angles[]={6.2113094,2.8641992,6.2551923}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=8694; + type="Land_HBarrier_3_F"; }; - class Item920 + class Item794 { dataType="Object"; class PositionInfo { - position[]={2438.6709,199.27187,3600.1169}; - angles[]={6.2424088,5.9967613,0.047963165}; + position[]={2480.6904,197.31158,3539.0117}; + angles[]={6.2121053,0.32049304,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=8331; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes + id=8695; + type="Land_HBarrier_5_F"; + }; + class Item795 + { + dataType="Object"; + class PositionInfo + { + position[]={2472.5837,197.95277,3539.5566}; + angles[]={6.2073317,0.35238916,0.0055992967}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=8696; + type="Land_HBarrier_Big_F"; }; - class Item921 + class Item796 { dataType="Object"; class PositionInfo { - position[]={2434.7795,198.77513,3592.9768}; - angles[]={6.2416096,4.4259648,0.052750662}; + position[]={2475.4705,197.56012,3540.7429}; + angles[]={6.2121053,0.32049304,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=8332; - type="PortableHelipadLight_01_green_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; + id=8697; + type="Land_HBarrier_5_F"; + }; + class Item797 + { + dataType="Object"; + class PositionInfo + { + position[]={2480.6233,197.62762,3536.876}; + angles[]={6.2073312,0.35238916,6.2591896}; + }; + side="Empty"; + flags=4; + class Attributes + { }; + id=8698; + type="Land_HBarrier_Big_F"; }; - class Item922 + class Item798 { dataType="Object"; class PositionInfo { - position[]={2447.4355,199.24194,3590.71}; - angles[]={6.2352238,2.0697708,0.04796192}; + position[]={2464.7932,197.79909,3544.2861}; + angles[]={6.2073317,0.32049304,0.0055992967}; }; side="Empty"; flags=4; class Attributes { }; - id=8333; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8699; + type="Land_HBarrier_5_F"; }; - class Item923 + class Item799 { dataType="Object"; class PositionInfo { - position[]={2444.1868,199.60291,3601.7415}; - angles[]={6.2424088,0.49897444,0.047963165}; + position[]={2456.1853,198.09337,3545.074}; + angles[]={6.2073312,0.35238916,0.035185181}; }; side="Empty"; flags=4; class Attributes { }; - id=8334; - type="PortableHelipadLight_01_green_F"; + id=8700; + type="Land_HBarrier_Big_F"; atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; }; - class Item924 + class Item800 { dataType="Object"; class PositionInfo { - position[]={2433.1553,198.91882,3598.4927}; - angles[]={6.2416096,5.2113633,0.052750662}; + position[]={2459.5735,197.815,3546.0198}; + angles[]={6.2073312,0.32049304,0.035185181}; }; side="Empty"; flags=4; class Attributes { }; - id=8335; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8701; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item925 + class Item801 { dataType="Object"; class PositionInfo { - position[]={2436.4041,198.63216,3587.4612}; - angles[]={6.2368193,3.6405668,0.051953323}; + position[]={2464.3843,198.1165,3542.3149}; + angles[]={6.2073317,0.35238916,0.0055992967}; }; side="Empty"; flags=4; class Attributes { }; - id=8336; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8702; + type="Land_HBarrier_Big_F"; }; - class Item926 + class Item802 { dataType="Object"; class PositionInfo { - position[]={2469.7383,200.39961,3597.2783}; - angles[]={6.2280416,2.8551688,0.019199125}; + position[]={2470.0137,197.69641,3542.5547}; + angles[]={6.2121058,0.32049304,0.00084572798}; }; side="Empty"; flags=4; class Attributes { }; - id=8337; - type="PortableHelipadLight_01_green_F"; + id=8703; + type="Land_HBarrier_5_F"; atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; }; - class Item927 + class Item803 { dataType="Object"; class PositionInfo { - position[]={2473.6294,200.86644,3604.4177}; - angles[]={6.2272429,1.2843723,0.023195164}; + position[]={2484.9646,197.20102,3538.0874}; + angles[]={6.2121053,2.8641992,6.2591896}; }; side="Empty"; flags=4; class Attributes { }; - id=8338; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8704; + type="Land_HBarrier_3_F"; }; - class Item928 + class Item804 { dataType="Object"; class PositionInfo { - position[]={2466.4895,200.91954,3608.3098}; - angles[]={6.2312331,5.9967613,0.01919602}; + position[]={2497.6365,203.44922,3648.6387}; + angles[]={6.237618,2.8378005,0.0071928473}; }; side="Empty"; flags=4; class Attributes { }; - id=8339; - type="PortableHelipadLight_01_green_F"; + id=8705; + type="Land_HBarrier_3_F"; atlOffset=-1.5258789e-005; - class CustomAttributes + }; + class Item805 + { + dataType="Object"; + class PositionInfo + { + position[]={2492.658,203.42934,3648.9883}; + angles[]={6.237618,3.4773364,0.0071928473}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=8706; + type="Land_HBarrier_3_F"; + atlOffset=-1.5258789e-005; }; - class Item929 + class Item806 { dataType="Object"; class PositionInfo { - position[]={2462.5979,200.47351,3601.1694}; - angles[]={6.2312331,4.4259648,0.01919602}; + position[]={2495.1045,203.32112,3648.3394}; + angles[]={6.237618,3.2528253,0.0071928473}; }; side="Empty"; flags=4; class Attributes { }; - id=8340; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes + id=8707; + type="Land_HBarrier_1_F"; + atlOffset=-1.5258789e-005; + }; + class Item807 + { + dataType="Object"; + class PositionInfo { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; + position[]={2487.7136,198.17273,3554.428}; + angles[]={0,5.9681582,0}; }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; + }; + id=8708; + type="Land_HelipadSquare_F"; + atlOffset=0.64489746; }; - class Item930 + class Item808 { dataType="Object"; class PositionInfo { - position[]={2475.2539,200.58614,3598.9019}; - angles[]={6.2280426,2.0697708,6.2671871}; + position[]={2389.7112,195.2672,3541.1555}; + angles[]={6.2480001,4.3833613,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8341; - type="PortableHelipadLight_01_green_F"; - atlOffset=-4.5776367e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8709; + type="Land_HBarrier_Big_F"; }; - class Item931 + class Item809 { dataType="Object"; class PositionInfo { - position[]={2472.0051,201.13765,3609.9333}; - angles[]={6.2272429,0.49897444,0.023195164}; + position[]={2392.897,194.85797,3538.0171}; + angles[]={6.2480001,4.3833613,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8342; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8710; + type="Land_HBarrier_5_F"; }; - class Item932 + class Item810 { dataType="Object"; class PositionInfo { - position[]={2460.9736,200.67802,3606.6855}; - angles[]={6.2312331,5.2113633,0.052750662}; + position[]={2391.1189,194.94586,3543.2214}; + angles[]={6.2480001,4.3833613,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8343; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8711; + type="Land_HBarrier_5_F"; }; - class Item933 + class Item811 { dataType="Object"; class PositionInfo { - position[]={2464.2224,200.22075,3595.6538}; - angles[]={6.2344232,3.6405668,0.01280293}; + position[]={2389.3423,195.03516,3548.427}; + angles[]={6.2432065,4.3833613,0.05833387}; }; side="Empty"; flags=4; class Attributes { }; - id=8344; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8712; + type="Land_HBarrier_5_F"; + atlOffset=-1.5258789e-005; }; - class Item934 + class Item812 { dataType="Object"; class PositionInfo { - position[]={2461.8984,201.46588,3623.8979}; - angles[]={6.2448058,2.8551688,0.054345392}; + position[]={2386.9644,195.37057,3549.2004}; + angles[]={6.2480001,4.3833613,0.1139039}; }; side="Empty"; flags=4; class Attributes { }; - id=8345; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8713; + type="Land_HBarrier_Big_F"; }; - class Item935 + class Item813 { dataType="Object"; class PositionInfo { - position[]={2465.7898,201.78693,3631.0374}; - angles[]={6.2567925,1.2843723,0.026392808}; + position[]={2384.3806,195.29414,3556.7717}; + angles[]={6.2432079,4.3833613,0.13909611}; }; side="Empty"; flags=4; class Attributes { }; - id=8346; - type="PortableHelipadLight_01_green_F"; - atlOffset=-4.5776367e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8714; + type="Land_HBarrier_Big_F"; }; - class Item936 + class Item814 { dataType="Object"; class PositionInfo { - position[]={2458.6494,201.57813,3634.9297}; - angles[]={6.2567925,5.9967613,0.058332846}; + position[]={2387.564,195.13953,3553.6316}; + angles[]={6.2432065,4.3833613,0.05833387}; }; side="Empty"; flags=4; class Attributes { }; - id=8347; - type="PortableHelipadLight_01_green_F"; - atlOffset=-4.5776367e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8715; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item937 + class Item815 { dataType="Object"; class PositionInfo { - position[]={2454.7581,201.18214,3627.7893}; - angles[]={6.2607903,4.4259648,0.054345392}; + position[]={2385.7876,195.10425,3558.8369}; + angles[]={6.2432079,4.3833613,0.13909611}; }; side="Empty"; flags=4; class Attributes { }; - id=8348; - type="PortableHelipadLight_01_green_F"; - atlOffset=-4.5776367e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8716; + type="Land_HBarrier_5_F"; + atlOffset=1.5258789e-005; }; - class Item938 + class Item816 { dataType="Object"; class PositionInfo { - position[]={2467.4141,201.68419,3625.5215}; - angles[]={6.2567925,2.0697708,0.026392808}; + position[]={2376.0444,195.75862,3582.605}; + angles[]={6.2352209,4.449574,0.089361846}; }; side="Empty"; flags=4; class Attributes { }; - id=8349; - type="PortableHelipadLight_01_green_F"; - atlOffset=-6.1035156e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8717; + type="Land_HBarrier_Big_F"; }; - class Item939 + class Item817 { dataType="Object"; class PositionInfo { - position[]={2464.1653,201.89259,3636.5535}; - angles[]={6.2527928,0.49897444,0.030392511}; + position[]={2377.7986,195.50488,3583.8257}; + angles[]={6.2352209,4.449574,0.089361846}; }; side="Empty"; flags=4; class Attributes { }; - id=8350; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8718; + type="Land_HBarrier_5_F"; }; - class Item940 + class Item818 { dataType="Object"; class PositionInfo { - position[]={2453.1335,201.21735,3633.3052}; - angles[]={6.2607903,5.2113633,0.054345392}; + position[]={2373.5916,195.79651,3591.0044}; + angles[]={6.2599931,4.449574,0.1304549}; }; side="Empty"; flags=4; class Attributes { }; - id=8351; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8719; + type="Land_HBarrier_Big_F"; }; - class Item941 + class Item819 { dataType="Object"; class PositionInfo { - position[]={2456.3828,201.10345,3622.2737}; - angles[]={6.2448058,3.6405668,0.054345392}; + position[]={2376.1218,195.55814,3589.3264}; + angles[]={6.2599902,4.449574,0.075854406}; }; side="Empty"; flags=4; class Attributes { }; - id=8352; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8720; + type="Land_HBarrier_5_F"; }; - class Item942 + class Item820 { dataType="Object"; class PositionInfo { - position[]={2434.0801,199.61542,3615.7053}; - angles[]={6.2503963,2.8551688,0.06152248}; + position[]={2374.6929,195.5558,3594.6382}; + angles[]={6.2599931,4.449574,0.1304549}; }; side="Empty"; flags=4; class Attributes { }; - id=8353; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8721; + type="Land_HBarrier_5_F"; }; - class Item943 + class Item821 { dataType="Object"; class PositionInfo { - position[]={2437.9714,200.11897,3622.8452}; - angles[]={6.247201,1.2843723,0.054345392}; + position[]={2373.2654,195.49171,3599.9487}; + angles[]={6.2599931,4.449574,0.1304549}; }; side="Empty"; flags=4; class Attributes { }; - id=8354; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8722; + type="Land_HBarrier_5_F"; }; - class Item944 + class Item822 { dataType="Object"; class PositionInfo { - position[]={2430.8313,199.77211,3626.7366}; - angles[]={6.2639894,5.9967613,0.064709015}; + position[]={2369.3032,195.58057,3606.937}; + angles[]={0.068692133,4.449574,0.023195164}; }; side="Empty"; flags=4; class Attributes { }; - id=8355; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8723; + type="Land_HBarrier_Big_F"; }; - class Item945 + class Item823 { dataType="Object"; class PositionInfo { - position[]={2426.9397,199.30319,3619.5969}; - angles[]={6.2503963,4.4259648,0.06152248}; + position[]={2371.8354,195.28519,3605.26}; + angles[]={0.068692133,4.449574,0.023195164}; }; side="Empty"; flags=4; class Attributes { }; - id=8356; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8724; + type="Land_HBarrier_5_F"; }; - class Item946 + class Item824 { dataType="Object"; class PositionInfo { - position[]={2439.5957,200.00877,3617.3296}; - angles[]={6.247201,2.0697708,0.054345392}; + position[]={2371.48,195.70149,3598.8499}; + angles[]={6.2599931,4.449574,0.1304549}; }; side="Empty"; flags=4; class Attributes { }; - id=8357; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8725; + type="Land_HBarrier_Big_F"; }; - class Item947 + class Item825 { dataType="Object"; class PositionInfo { - position[]={2436.3467,200.16069,3628.3613}; - angles[]={6.2639894,0.49897444,0.064709015}; + position[]={2379.583,207.89854,3604.646}; + angles[]={0,4.408597,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8358; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes + id=8726; + type="Land_Cargo_Tower_V1_F"; + }; + class Item826 + { + dataType="Object"; + class PositionInfo + { + position[]={2398.75,207.36807,3539.3721}; + angles[]={0,1.2490275,0}; + }; + side="Empty"; + flags=4; + class Attributes { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=8727; + type="Land_Cargo_Tower_V1_F"; + atlOffset=-1.5258789e-005; }; - class Item948 + class Item827 { dataType="Object"; class PositionInfo { - position[]={2425.3154,199.3835,3625.1125}; - angles[]={6.2639894,5.2113633,0.064709015}; + position[]={2507.6079,215.38342,3644.2629}; + angles[]={0,4.408597,0}; }; side="Empty"; flags=4; class Attributes { }; - id=8359; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes + id=8728; + type="Land_Cargo_Tower_V1_F"; + }; + class Item828 + { + dataType="Object"; + class PositionInfo { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; + position[]={2541.4802,202.67709,3643.6006}; + angles[]={0,3.6119633,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; + id=8729; + type="Land_HelipadSquare_F"; + atlOffset=0.70658875; }; - class Item949 + class Item829 { dataType="Object"; class PositionInfo { - position[]={2428.5642,199.22237,3614.0811}; - angles[]={6.2503963,3.6405668,0.06152248}; + position[]={2555.6633,199.38116,3601.2876}; + angles[]={0,5.1827598,0}; }; side="Empty"; - flags=4; class Attributes { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8360; - type="PortableHelipadLight_01_green_F"; - atlOffset=1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; + id=8730; + type="Land_HelipadSquare_F"; + atlOffset=0.63046265; + }; + class Item830 + { + dataType="Object"; + class PositionInfo + { + position[]={2411.3835,198.49561,3607.5151}; + angles[]={0,3.6119633,0}; + }; + side="Empty"; + class Attributes + { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; + id=8731; + type="Land_HelipadSquare_F"; + atlOffset=0.66749573; }; - class Item950 + class Item831 { dataType="Object"; class PositionInfo { - position[]={2407.2209,197.64905,3607.7947}; - angles[]={6.2487974,2.8551688,0.071876638}; + position[]={2428.3474,197.18712,3555.4595}; + angles[]={0,5.1827598,0}; }; side="Empty"; - flags=4; class Attributes { + init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}"; }; - id=8361; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8732; + type="Land_HelipadSquare_F"; + atlOffset=0.61737061; }; - class Item951 + class Item832 { dataType="Object"; class PositionInfo { - position[]={2411.1123,198.14008,3614.9351}; - angles[]={6.260788,1.2843723,0.075853623}; + position[]={2451.1172,211.73416,3590.8831}; + angles[]={6.2352238,1.2507154,0.047164604}; }; side="Empty"; flags=4; class Attributes { }; - id=8362; - type="PortableHelipadLight_01_green_F"; - atlOffset=-3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8733; + type="Land_LampAirport_F"; }; - class Item952 + class Item833 { dataType="Object"; class PositionInfo { - position[]={2403.9722,197.69337,3618.8264}; - angles[]={6.2647886,5.9967613,0.071876638}; + position[]={2407.5105,208.98065,3578.25}; + angles[]={6.247201,4.3923078,0.059131995}; }; side="Empty"; flags=4; class Attributes { }; - id=8363; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8734; + type="Land_LampAirport_F"; }; - class Item953 + class Item834 { dataType="Object"; class PositionInfo { - position[]={2400.0806,197.27634,3611.6863}; - angles[]={6.2591896,4.4259648,0.061521512}; + position[]={2426.1484,199.48441,3590.4441}; + angles[]={6.2424059,4.3923078,0.051954471}; }; side="Empty"; flags=4; class Attributes { }; - id=8364; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; + id=8735; + type="Land_MedicalTent_01_NATO_generic_open_F"; class CustomAttributes { class Attribute0 { - property="allowDamage"; - expression="_this allowdamage _value;"; + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; class Value { class data @@ -24129,78 +20343,54 @@ class Mission { type[]= { - "BOOL" + "SCALAR" }; }; - value=0; + value=1; }; }; }; nAttributes=1; }; }; - class Item954 + class Item835 { dataType="Object"; class PositionInfo { - position[]={2412.7366,198.09995,3609.4194}; - angles[]={6.2487974,2.0697708,0.06311693}; + position[]={2426.1484,201.75349,3590.4441}; + angles[]={0.3019498,4.3923078,0.16657287}; }; side="Empty"; flags=4; class Attributes { }; - id=8365; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8736; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.1688385; }; - class Item955 + class Item836 { dataType="Object"; class PositionInfo { - position[]={2409.488,198.14018,3620.4507}; - angles[]={6.260788,0.49897444,0.075853623}; + position[]={2413.2163,198.60815,3586.157}; + angles[]={6.2424088,4.3923078,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8366; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; + id=8737; + type="Land_MedicalTent_01_NATO_generic_open_F"; class CustomAttributes { class Attribute0 { - property="allowDamage"; - expression="_this allowdamage _value;"; + property="SolarPanel2_Hide"; + expression="_this animateSource ['SolarPanel2_Hide',_value,true]"; class Value { class data @@ -24209,410 +20399,373 @@ class Mission { type[]= { - "BOOL" + "SCALAR" }; }; - value=0; + value=1; }; }; }; nAttributes=1; }; }; - class Item956 + class Item837 { dataType="Object"; class PositionInfo { - position[]={2398.4563,197.25162,3617.2024}; - angles[]={6.2647886,5.2113633,0.081419863}; + position[]={2413.2163,200.89568,3586.157}; + angles[]={0.302039,4.3923078,0.16814582}; }; side="Empty"; flags=4; class Attributes { }; - id=8367; - type="PortableHelipadLight_01_green_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8738; + type="Land_MedicalTent_01_floor_dark_F"; + atlOffset=0.18666077; }; - class Item957 + class Item838 { dataType="Object"; class PositionInfo { - position[]={2401.7056,197.24406,3606.1704}; - angles[]={6.2591896,3.6405668,0.061521512}; + position[]={2407.3728,197.13968,3580.4194}; + angles[]={6.2424088,3.6069102,0.063912325}; }; side="Empty"; flags=4; class Attributes { }; - id=8368; - type="PortableHelipadLight_01_green_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + id=8739; + type="Land_AirConditioner_04_F"; }; - class Item958 + class Item839 { dataType="Object"; class PositionInfo { - position[]={2506.625,201.0929,3602.25}; - angles[]={6.2176805,4.4259648,6.2711854}; + position[]={2452.5063,200.01665,3585.814}; + angles[]={6.2320304,2.8215117,0.047164604}; }; side="Empty"; flags=4; class Attributes { }; - id=8369; + id=8740; type="StorageBladder_01_fuel_forest_F"; + atlOffset=0.069885254; }; - class Item959 + class Item840 { dataType="Object"; class PositionInfo { - position[]={2503.5,201.81499,3612.75}; - angles[]={6.2344246,4.4259648,6.2711854}; + position[]={2442.0063,200.05913,3582.1289}; + angles[]={6.2368193,2.8215117,0.042374056}; }; side="Empty"; - flags=4; class Attributes { }; - id=8370; + id=8741; type="StorageBladder_01_fuel_forest_F"; + atlOffset=0.7224884; }; - class Item960 + class Item841 { dataType="Object"; class PositionInfo { - position[]={2556.125,207.30789,3675.625}; - angles[]={0,2.8551667,0}; + position[]={2445.0464,200.16347,3588.9312}; + angles[]={6.2416081,2.8402252,0.041577213}; }; side="Empty"; flags=4; class Attributes { }; - id=8372; - type="Land_Cargo_HQ_V1_F"; + id=8742; + type="Land_HBarrier_Big_F"; }; - class Item961 + class Item842 { dataType="Object"; class PositionInfo { - position[]={2578.3679,208.74028,3689.4741}; - angles[]={0,4.4259629,0}; + position[]={2436.9297,199.70969,3586.4082}; + angles[]={6.2368193,2.8402252,0.051953323}; }; side="Empty"; flags=4; class Attributes { }; - id=8373; - type="Land_Cargo_Patrol_V1_F"; + id=8743; + type="Land_HBarrier_Big_F"; }; - class Item962 + class Item843 { dataType="Object"; class PositionInfo { - position[]={2570.2971,209.18242,3693.873}; - angles[]={0,2.8551667,0}; + position[]={2429.2905,199.20222,3584.033}; + angles[]={6.2368193,2.8402252,0.051953323}; }; side="Empty"; flags=4; class Attributes { }; - id=8374; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=-1.5258789e-005; + id=8744; + type="Land_HBarrier_Big_F"; }; - class Item963 + class Item844 { dataType="Object"; class PositionInfo { - position[]={2595.667,198.30115,3610.3889}; - angles[]={0,5.9967589,0}; + position[]={2413.5337,198.17413,3579.1353}; + angles[]={6.2424088,2.8402252,0.053548392}; }; side="Empty"; flags=4; class Attributes { }; - id=8375; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=-1.5258789e-005; + id=8745; + type="Land_HBarrier_Big_F"; }; - class Item964 + class Item845 { dataType="Object"; class PositionInfo { - position[]={2600.0649,198.79655,3618.4609}; - angles[]={0,4.4259629,0}; + position[]={2421.5317,198.70679,3581.6216}; + angles[]={6.241611,2.8402252,0.054345392}; }; side="Empty"; flags=4; class Attributes { }; - id=8376; - type="Land_Cargo_Patrol_V1_F"; + id=8746; + type="Land_HBarrier_Big_F"; }; - class Item965 + class Item846 { dataType="Object"; class PositionInfo { - position[]={2390.3679,200.89233,3594.229}; - angles[]={0,1.2843703,0}; + position[]={2497.4189,212.94035,3604.5254}; + angles[]={6.2176805,4.3973613,6.277586}; }; side="Empty"; flags=4; class Attributes { }; - id=8377; - type="Land_Cargo_Patrol_V1_F"; + id=8747; + type="Land_LampAirport_F"; + atlOffset=-1.5258789e-005; }; - class Item966 + class Item847 { dataType="Object"; class PositionInfo { - position[]={2525.217,216.37621,3667.304}; - angles[]={0,4.4259629,0}; + position[]={2539.3699,212.87003,3617.8022}; + angles[]={6.2176795,1.2507154,6.2527928}; }; side="Empty"; flags=4; class Attributes { }; - id=8378; - type="Land_Cargo_Tower_V1_F"; + id=8748; + type="Land_LampAirport_F"; }; - class Item967 + class Item848 { dataType="Object"; class PositionInfo { - position[]={2542.2371,212.9966,3613.939}; - angles[]={0,2.8551667,0}; + position[]={2371.8518,197.49211,3571.8884}; + angles[]={0,4.3973613,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { }; - id=8379; - type="Land_Cargo_Tower_V1_F"; + id=8749; + type="Land_LampSolar_F"; + atlOffset=1.5258789e-005; }; - class Item968 + class Item849 { dataType="Object"; class PositionInfo { - position[]={5808.5,7.583497,2430.375}; - angles[]={0,3.8920476,0}; + position[]={2378.9778,194.73573,3561.7209}; + angles[]={6.2432079,3.0904622,0.13909611}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8380; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=2.3841858e-007; + id=8750; + type="Land_HBarrier_Big_F"; }; - class Item969 + class Item850 { dataType="Object"; class PositionInfo { - position[]={8449.25,9.3365993,3719.75}; - angles[]={0,0.210719,0}; + position[]={2374.5654,195.54643,3575.665}; + angles[]={0,2.6612515,0}; }; side="Empty"; - flags=5; class Attributes { }; - id=8381; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=-4.7683716e-007; + id=8751; + type="Land_HBarrier_Big_F"; + atlOffset=0.265625; }; - class Item970 + class Item851 { dataType="Object"; class PositionInfo { - position[]={9341.625,8.585,3734.375}; - angles[]={0,6.2532845,0}; + position[]={2389.875,199.6837,3559.75}; + angles[]={0,1.2557644,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8382; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=-2.3841858e-007; + id=8752; + type="Land_Cargo_Patrol_V1_F"; }; - class Item971 + class Item852 { dataType="Object"; class PositionInfo { - position[]={958,10.035,11854.25}; - angles[]={0,5.8783731,0}; + position[]={2382.6531,200.09535,3585.137}; + angles[]={0,1.2557644,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8383; - type="Land_Cargo_Patrol_V2_F"; - atlOffset=-4.7683716e-007; + id=8753; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=1.5258789e-005; }; - class Item972 + class Item853 { dataType="Object"; class PositionInfo { - position[]={800.56268,41.816208,12128.037}; - angles[]={0,1.6371516,0}; + position[]={6996.75,125.01,9993.625}; + angles[]={0,6.2231741,0}; }; side="Empty"; - flags=5; + flags=4; class Attributes { }; - id=8384; - type="Land_Cargo_Tower_V2_F"; - atlOffset=-1.9073486e-006; + id=8756; + type="Land_HelipadCircle_F"; }; - class Item973 + class Item854 { dataType="Object"; class PositionInfo { - position[]={1003.374,41.816208,12240.091}; + position[]={6986.125,129.91501,9976.75}; + angles[]={0,1.6612021,0}; }; side="Empty"; flags=5; class Attributes { }; - id=8385; - type="Land_Cargo_Tower_V2_F"; - atlOffset=-1.9073486e-006; + id=8757; + type="Land_Cargo_Patrol_V4_F"; + atlOffset=7.6293945e-006; }; - class Item974 + class Item855 { - dataType="Object"; + dataType="Logic"; class PositionInfo { - position[]={574.7486,33.825001,12324.54}; - angles[]={0,2.2862699,0}; - }; - side="Empty"; - flags=5; - class Attributes - { + position[]={8254.1826,10.71443,5985.0322}; }; - id=8386; - type="Land_Cargo_Patrol_V2_F"; + name="HC_commanderX"; + id=8761; + type="HighCommand"; + atlOffset=0.043842316; }; - class Item975 + class Item856 { dataType="Logic"; class PositionInfo { - position[]={7142.1841,12.222947,12236.744}; + position[]={8257.583,10.71443,5984.9375}; }; - name="pathfinding"; - id=8387; - type="Logic"; - atlOffset=-9.5367432e-007; + id=8762; + type="HighCommandSubordinate"; + atlOffset=-0.043831825; }; - class Item976 + class Item857 { dataType="Marker"; - position[]={8515.5879,-1.2098112,3849.7024}; - name="seaSpawn_3"; - type="hd_objective"; - id=8388; - atlOffset=6.3372011; + position[]={737.70398,27.885,12084.651}; + name="spawnPoint"; + type="hd_start"; + id=8765; + atlOffset=0.00016021729; + }; + class Item858 + { + dataType="Marker"; + position[]={8157.2852,29.357891,9844.3545}; + name="spawnPoint_1"; + type="hd_start"; + id=8766; + }; + class Item859 + { + dataType="Marker"; + position[]={2353.4297,193.33873,3599.1111}; + name="spawnPoint_2"; + type="hd_start"; + id=8767; }; }; class Connections { class LinkIDProvider { - nextID=61; + nextID=26; }; class Links { - items=61; + items=26; class Item0 { linkID=0; - item0=7960; - item1=7959; + item0=8761; + item1=8762; class CustomData { type="Sync"; @@ -24622,7 +20775,7 @@ class Mission { linkID=1; item0=451; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24632,7 +20785,7 @@ class Mission { linkID=2; item0=456; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24642,7 +20795,7 @@ class Mission { linkID=3; item0=457; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24652,7 +20805,7 @@ class Mission { linkID=4; item0=458; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24662,7 +20815,7 @@ class Mission { linkID=5; item0=459; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24672,7 +20825,7 @@ class Mission { linkID=6; item0=460; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24682,7 +20835,7 @@ class Mission { linkID=7; item0=461; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24692,7 +20845,7 @@ class Mission { linkID=8; item0=462; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24702,7 +20855,7 @@ class Mission { linkID=9; item0=463; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24712,7 +20865,7 @@ class Mission { linkID=10; item0=464; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24722,7 +20875,7 @@ class Mission { linkID=11; item0=465; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24732,7 +20885,7 @@ class Mission { linkID=12; item0=466; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24742,7 +20895,7 @@ class Mission { linkID=13; item0=467; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24752,7 +20905,7 @@ class Mission { linkID=14; item0=468; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24762,7 +20915,7 @@ class Mission { linkID=15; item0=469; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24772,7 +20925,7 @@ class Mission { linkID=16; item0=470; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24782,7 +20935,7 @@ class Mission { linkID=17; item0=471; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24792,7 +20945,7 @@ class Mission { linkID=18; item0=472; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24802,7 +20955,7 @@ class Mission { linkID=19; item0=473; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24812,7 +20965,7 @@ class Mission { linkID=20; item0=474; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24822,7 +20975,7 @@ class Mission { linkID=21; item0=475; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24832,7 +20985,7 @@ class Mission { linkID=22; item0=476; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24842,7 +20995,7 @@ class Mission { linkID=23; item0=477; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24852,7 +21005,7 @@ class Mission { linkID=24; item0=478; - item1=7959; + item1=8761; class CustomData { type="Sync"; @@ -24862,357 +21015,7 @@ class Mission { linkID=25; item0=479; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item26 - { - linkID=26; - item0=480; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item27 - { - linkID=27; - item0=481; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item28 - { - linkID=28; - item0=482; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item29 - { - linkID=29; - item0=483; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item30 - { - linkID=30; - item0=484; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item31 - { - linkID=31; - item0=485; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item32 - { - linkID=32; - item0=486; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item33 - { - linkID=33; - item0=487; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item34 - { - linkID=34; - item0=488; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item35 - { - linkID=35; - item0=489; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item36 - { - linkID=36; - item0=490; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item37 - { - linkID=37; - item0=491; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item38 - { - linkID=38; - item0=492; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item39 - { - linkID=39; - item0=493; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item40 - { - linkID=40; - item0=494; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item41 - { - linkID=41; - item0=495; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item42 - { - linkID=42; - item0=496; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item43 - { - linkID=43; - item0=497; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item44 - { - linkID=44; - item0=498; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item45 - { - linkID=45; - item0=499; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item46 - { - linkID=46; - item0=500; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item47 - { - linkID=47; - item0=501; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item48 - { - linkID=48; - item0=502; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item49 - { - linkID=49; - item0=503; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item50 - { - linkID=50; - item0=504; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item51 - { - linkID=51; - item0=505; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item52 - { - linkID=52; - item0=506; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item53 - { - linkID=53; - item0=507; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item54 - { - linkID=54; - item0=508; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item55 - { - linkID=55; - item0=509; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item56 - { - linkID=56; - item0=455; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item57 - { - linkID=57; - item0=510; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item58 - { - linkID=58; - item0=511; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item59 - { - linkID=59; - item0=512; - item1=7959; - class CustomData - { - type="Sync"; - }; - }; - class Item60 - { - linkID=60; - item0=513; - item1=7959; + item1=8761; class CustomData { type="Sync"; diff --git a/Map-Templates/Antistasi-Malden.Malden/roadsDBmalden.sqf b/Map-Templates/Antistasi-Malden.Malden/roadsDBmalden.sqf new file mode 100644 index 0000000000..efcfd875d1 --- /dev/null +++ b/Map-Templates/Antistasi-Malden.Malden/roadsDBmalden.sqf @@ -0,0 +1 @@ +{roadsX setVariable [_x select 0,_x select 1]} forEach [["Malden_C_Larche",[[5539,8701,0],[5567,8691,0],[5557,8696,0],[5599,8632,0],[5594,8643,0],[5587,8661,0],[5591,8652,0],[5578,8678,0],[5620,8613,0],[5608,8621,0],[5639,8603,0],[5661,8590,0],[5678,8582,0],[5692,8579,0],[5721,8587,0],[5707,8581,0],[5739,8598,0],[5759,8607,0],[5777,8613,0],[5795,8621,0],[5818,8628,0],[5842,8637,0],[5862,8643,0],[5881,8491,0],[5879,8481,0],[5886,8518,0],[5883,8505,0],[5895,8529,0],[5880,8642,0],[5924,8545,0],[5909,8538,0],[5904,8641,0],[5937,8551,0],[5944,8555,0],[5929,8641,0],[5946,8641,0],[5964,8568,0],[5954,8560,0],[5963,8557,0],[5971,8555,0],[5959,8563,0],[5971,8576,0],[5967,8644,0],[5957,8643,0],[5999,8544,0],[5981,8551,0],[5996,8600,0],[5979,8583,0],[5987,8591,0],[6000,8640,0],[5981,8644,0],[6017,8538,0],[6004,8611,0],[6007,8622,0],[6020,8635,0],[6012,8644,0],[6009,8631,0],[6020,8669,0],[6015,8654,0],[6023,8839,0],[6018,8852,0],[6018,8863,0],[6017,8880,0],[6016,8894,0],[6034,8535,0],[6049,8532,0],[6026,8541,0],[6029,8557,0],[6036,8583,0],[6044,8596,0],[6050,8595,0],[6043,8608,0],[6045,8623,0],[6037,8630,0],[6026,8685,0],[6033,8695,0],[6039,8704,0],[6042,8714,0],[6040,8737,0],[6037,8766,0],[6037,8789,0],[6032,8823,0],[6038,8806,0],[6058,8530,0],[6066,8587,0],[6074,8581,0],[6057,8592,0],[6070,8623,0],[6055,8625,0],[6092,8574,0],[6082,8577,0],[6096,8634,0],[6082,8626,0],[6108,8574,0],[6123,8576,0],[6118,8648,0],[6136,8577,0],[6150,8577,0],[6139,8659,0],[6165,8578,0],[6153,8665,0],[6165,8667,0],[6197,8574,0],[6182,8577,0],[6199,8675,0],[6180,8669,0],[6216,8572,0],[6225,8683,0],[6238,8572,0],[6261,8571,0],[6254,8689,0],[6275,8693,0],[6282,8569,0],[6297,8567,0],[6297,8699,0],[6320,8561,0],[6307,8565,0],[6321,8707,0],[6342,8552,0],[6340,8715,0],[6371,8542,0],[6363,8724,0],[6364,8847,0],[6369,8836,0],[6360,8860,0],[6356,8873,0],[6352,8884,0],[6354,8879,0],[6397,8533,0],[6393,8735,0],[6396,8795,0],[6383,8814,0],[6390,8804,0],[6375,8825,0],[6414,8527,0],[6416,8762,0],[6412,8771,0],[6419,8755,0],[6402,8787,0],[6408,8779,0],[6445,8499,0],[6428,8519,0],[6426,8745,0],[6463,8472,0],[6457,8753,0],[6484,8760,0]]],["Malden_C_LaTrinite",[[6798,8028,0],[6799,8040,0],[6782,8039,0],[6819,8012,0],[6819,8040,0],[6848,7966,0],[6835,7990,0],[6838,8036,0],[6874,7878,0],[6861,7902,0],[6856,7925,0],[6854,7945,0],[6864,8029,0],[6900,7842,0],[6888,7858,0],[6892,8026,0],[6923,7814,0],[6912,7826,0],[6914,8023,0],[6942,7801,0],[6934,8018,0],[6965,7787,0],[6958,8015,0],[6974,8014,0],[6973,8074,0],[6970,8085,0],[6967,8096,0],[6974,8125,0],[6970,8115,0],[6967,8105,0],[6995,7739,0],[6985,7764,0],[6978,7777,0],[6992,8009,0],[6979,8013,0],[6992,8060,0],[6978,8064,0],[6975,8067,0],[6978,8134,0],[6999,8146,0],[6988,8145,0],[6982,8140,0],[7018,7692,0],[7007,7711,0],[7013,8003,0],[7000,8005,0],[7012,8054,0],[7024,8051,0],[7017,8149,0],[7009,8146,0],[7024,8151,0],[7049,7592,0],[7040,7614,0],[7034,7633,0],[7032,7647,0],[7034,7660,0],[7039,7670,0],[7031,7681,0],[7040,7677,0],[7046,7862,0],[7041,7896,0],[7039,7877,0],[7048,7918,0],[7034,8002,0],[7033,8021,0],[7030,8006,0],[7031,8013,0],[7031,8041,0],[7028,8048,0],[7034,8034,0],[7034,8030,0],[7057,7570,0],[7065,7552,0],[7052,7678,0],[7071,7684,0],[7060,7848,0],[7053,7941,0],[7054,7970,0],[7054,7998,0],[7054,7989,0],[7057,8001,0],[7074,8165,0],[7053,8166,0],[7092,7512,0],[7078,7532,0],[7095,7692,0],[7092,7813,0],[7075,7833,0],[7077,8000,0],[7092,7997,0],[7113,7465,0],[7102,7496,0],[7109,7481,0],[7120,7703,0],[7123,7750,0],[7118,7762,0],[7110,7782,0],[7103,7796,0],[7123,7966,0],[7111,7983,0],[7102,7993,0],[7104,7998,0],[7113,8002,0],[7100,8160,0],[7115,8151,0],[7145,7717,0],[7143,7722,0],[7135,7734,0],[7126,7744,0],[7137,7944,0],[7149,7927,0],[7140,8017,0],[7126,8007,0],[7126,8139,0],[7141,8134,0],[7174,7734,0],[7159,7917,0],[7168,7913,0],[7165,8049,0],[7154,8030,0],[7162,8137,0],[7194,7744,0],[7190,7912,0],[7180,8069,0],[7185,8143,0],[7211,7749,0],[7220,7911,0],[7208,7916,0],[7212,7934,0],[7219,7947,0],[7217,7957,0],[7222,7976,0],[7225,7991,0],[7218,8092,0],[7200,8082,0],[7204,8150,0],[7219,8158,0],[7231,7758,0],[7243,7770,0],[7249,7766,0],[7248,7780,0],[7245,7911,0],[7232,7947,0],[7234,8106,0],[7245,8123,0],[7250,8134,0],[7247,8162,0],[7228,8165,0],[7238,8174,0],[7233,8170,0],[7240,8182,0],[7237,8218,0],[7236,8201,0],[7239,8240,0],[7243,8261,0],[7248,8288,0],[7258,7771,0],[7251,7795,0],[7273,7776,0],[7254,7814,0],[7261,7835,0],[7267,7857,0],[7272,7870,0],[7269,7899,0],[7268,7878,0],[7264,7911,0],[7269,7928,0],[7250,7946,0],[7265,7946,0],[7270,7959,0],[7270,7983,0],[7271,8025,0],[7271,8003,0],[7269,8048,0],[7265,8071,0],[7261,8095,0],[7256,8123,0],[7252,8147,0],[7262,8166,0],[7253,8164,0],[7269,8168,0],[7255,8323,0],[7260,8356,0],[7266,8387,0],[7270,8412,0],[7287,7781,0],[7284,7882,0],[7290,7889,0],[7278,7876,0],[7297,7921,0],[7294,7902,0],[7300,7917,0],[7288,7973,0],[7275,7973,0],[7299,8010,0],[7276,8012,0],[7283,8012,0],[7283,8169,0],[7298,8170,0],[7303,7788,0],[7319,7794,0],[7308,7915,0],[7301,7941,0],[7305,7963,0],[7301,7973,0],[7310,7987,0],[7324,8008,0],[7313,8005,0],[7312,8170,0],[7342,7794,0],[7331,7797,0],[7326,7911,0],[7346,7906,0],[7342,8007,0],[7341,8164,0],[7325,8170,0],[7357,7785,0],[7373,7776,0],[7359,7899,0],[7371,7889,0],[7367,8001,0],[7356,8004,0],[7366,8151,0],[7356,8157,0],[7389,7764,0],[7381,7770,0],[7398,7875,0],[7379,7883,0],[7397,7980,0],[7380,7993,0],[7383,8141,0],[7398,8132,0],[7403,7761,0],[7417,7762,0],[7425,7865,0],[7418,7964,0],[7415,7994,0],[7404,7979,0],[7407,8126,0],[7430,7768,0],[7442,7773,0],[7449,7775,0],[7444,7858,0],[7442,7948,0],[7429,8014,0],[7436,8025,0],[7441,8038,0],[7442,8060,0],[7438,8069,0],[7445,8052,0],[7458,7778,0],[7467,7835,0],[7462,7848,0],[7457,7853,0],[7463,7932,0],[7477,7782,0],[7483,7798,0],[7495,7786,0],[7488,7788,0],[7475,7815,0],[7488,7914,0],[7516,7793,0],[7505,7789,0],[7513,7896,0],[7530,7798,0],[7545,7803,0],[7534,7881,0],[7560,7809,0],[7573,7815,0],[7567,7860,0],[7552,7870,0],[7597,7822,0],[7583,7820,0],[7589,7822,0],[7581,7844,0],[7590,7830,0],[7603,7818,0],[7617,7807,0],[7612,7812,0],[7627,7799,0],[7642,7794,0],[7657,7792,0],[7667,7790,0],[7692,7790,0],[7678,7788,0],[7719,7787,0],[7705,7792,0],[7731,7777,0]]],["Malden_C_LaPessagne",[[2998,6049,0],[2999,6069,0],[3020,5844,0],[3007,5922,0],[3009,5913,0],[3005,5938,0],[3010,5965,0],[3005,5954,0],[3017,5975,0],[3015,5988,0],[3007,6008,0],[3001,6030,0],[3001,6092,0],[3004,6112,0],[3010,6130,0],[3020,6155,0],[3041,5847,0],[3049,5906,0],[3039,5932,0],[3027,5962,0],[3028,6179,0],[3032,6202,0],[3036,6228,0],[3040,6251,0],[3043,6276,0],[3047,6299,0],[3062,5835,0],[3056,5848,0],[3058,5862,0],[3054,5884,0],[3050,6316,0],[3057,6332,0],[3068,6340,0],[3087,6340,0],[3118,6334,0],[3102,6342,0],[3106,6359,0],[3112,6382,0],[3119,6392,0],[3119,6403,0],[3104,6823,0],[3122,6815,0],[3133,6388,0],[3126,6422,0],[3135,6442,0],[3145,6462,0],[3146,6597,0],[3141,6611,0],[3140,6622,0],[3146,6634,0],[3139,6804,0],[3153,6326,0],[3172,6337,0],[3171,6327,0],[3174,6350,0],[3174,6365,0],[3154,6383,0],[3169,6376,0],[3150,6480,0],[3154,6503,0],[3155,6531,0],[3154,6559,0],[3152,6581,0],[3157,6650,0],[3172,6667,0],[3173,6761,0],[3152,6790,0],[3162,6776,0],[3188,6318,0],[3187,6685,0],[3198,6702,0],[3186,6748,0],[3194,6738,0],[3199,6728,0],[3218,6311,0],[3202,6716,0],[3243,6302,0],[3268,6291,0],[3296,6275,0],[3323,6261,0],[3345,6257,0],[3372,6256,0],[3398,6258,0],[3423,6264,0],[3457,6273,0],[3483,6283,0],[3503,6293,0],[3524,6307,0],[3545,6328,0],[3565,6357,0],[3580,6382,0],[3591,6401,0],[3602,6421,0]]],["Malden_C_Chapoi",[[5344,3561,0],[5368,3551,0],[5397,3541,0],[5381,3735,0],[5422,3534,0],[5401,3743,0],[5418,3751,0],[5443,3532,0],[5435,3760,0],[5471,3526,0],[5455,3771,0],[5472,3783,0],[5499,3518,0],[5489,3799,0],[5515,3513,0],[5501,3822,0],[5505,3844,0],[5508,3864,0],[5515,3880,0],[5535,3512,0],[5532,3899,0],[5560,3512,0],[5570,3924,0],[5552,3915,0],[5579,3512,0],[5596,3937,0],[5605,3515,0],[5618,3951,0],[5634,3519,0],[5631,3970,0],[5654,3067,0],[5658,3094,0],[5655,3083,0],[5665,3105,0],[5674,3463,0],[5670,3483,0],[5660,3524,0],[5668,3503,0],[5668,3517,0],[5670,3543,0],[5668,3533,0],[5672,3555,0],[5674,3567,0],[5670,3994,0],[5677,3123,0],[5695,3147,0],[5688,3400,0],[5686,3413,0],[5682,3437,0],[5683,3528,0],[5682,3581,0],[5696,3602,0],[5693,3979,0],[5712,3171,0],[5723,3358,0],[5725,3353,0],[5702,3531,0],[5706,3623,0],[5715,3612,0],[5707,3614,0],[5711,3642,0],[5715,3660,0],[5718,3677,0],[5723,3686,0],[5722,3701,0],[5712,3969,0],[5725,3189,0],[5738,3206,0],[5747,3320,0],[5733,3333,0],[5726,3346,0],[5730,3536,0],[5728,3611,0],[5745,3610,0],[5742,3682,0],[5731,3684,0],[5726,3724,0],[5730,3739,0],[5739,3754,0],[5748,3948,0],[5731,3958,0],[5765,3042,0],[5753,3226,0],[5772,3250,0],[5764,3315,0],[5759,3539,0],[5761,3609,0],[5774,3608,0],[5765,3676,0],[5759,3775,0],[5770,3928,0],[5760,3938,0],[5780,3061,0],[5793,3080,0],[5792,3235,0],[5780,3245,0],[5787,3270,0],[5793,3281,0],[5794,3290,0],[5780,3316,0],[5795,3306,0],[5794,3314,0],[5790,3318,0],[5792,3329,0],[5790,3355,0],[5789,3383,0],[5789,3400,0],[5789,3412,3],[5789,3424,0],[5789,3445,0],[5789,3430,0],[5790,3469,0],[5799,3475,0],[5792,3495,0],[5794,3520,0],[5782,3540,0],[5793,3535,0],[5783,3607,0],[5794,3670,0],[5781,3796,0],[5799,3813,0],[5787,3912,0],[5806,3096,0],[5819,3110,0],[5808,3220,0],[5810,3475,0],[5821,3475,0],[5800,3540,0],[5813,3538,0],[5823,3545,0],[5813,3668,0],[5813,3829,0],[5810,3894,0],[5834,3129,0],[5831,3202,0],[5838,3482,0],[5847,3524,0],[5826,3532,0],[5837,3527,0],[5826,3559,0],[5835,3586,0],[5846,3615,0],[5826,3668,0],[5833,3669,0],[5828,3846,0],[5849,3861,0],[5841,3860,0],[5837,3857,0],[5831,3878,0],[5851,3150,0],[5864,3167,0],[5851,3185,0],[5861,3177,0],[5860,3493,0],[5868,3523,0],[5852,3649,0],[5853,3638,0],[5851,3630,0],[5850,3661,0],[5868,3675,0],[5868,3839,0],[5879,3186,0],[5898,3209,0],[5896,3523,0],[5879,3503,0],[5895,3511,0],[5890,3696,0],[5877,3682,0],[5888,3815,0],[5920,3233,0],[5923,3524,0],[5905,3516,0],[5908,3520,0],[5910,3545,0],[5910,3532,0],[5910,3560,0],[5911,3576,0],[5912,3597,0],[5911,3587,0],[5924,3616,0],[5916,3607,0],[5904,3712,0],[5920,3728,0],[5906,3795,0],[5924,3778,0],[5936,3251,0],[5943,3259,0],[5946,3486,0],[5948,3524,0],[5939,3509,0],[5936,3520,0],[5936,3623,0],[5945,3629,0],[5949,3750,0],[5933,3737,0],[5945,3742,0],[5940,3740,0],[5939,3763,0],[5962,3445,0],[5956,3459,0],[5973,3526,0],[5972,3646,0],[5950,3636,0],[5953,3645,0],[5960,3648,0],[5954,3660,0],[5954,3682,0],[5954,3711,0],[5953,3736,0],[5995,3527,0],[5991,3644,0],[6016,3526,0],[6015,3642,0],[6047,3357,0],[6050,3387,0],[6039,3524,0],[6038,3639,0],[6052,3082,0],[6051,3089,0],[6054,3103,0],[6061,3128,0],[6067,3146,0],[6072,3162,0],[6073,3217,0],[6075,3236,0],[6061,3321,0],[6050,3337,0],[6055,3416,0],[6058,3443,0],[6059,3470,0],[6060,3495,0],[6064,3520,0],[6063,3510,0],[6059,3636,0],[6075,3633,0],[6078,3179,0],[6080,3191,0],[6088,3183,0],[6077,3205,0],[6080,3262,0],[6084,3283,0],[6083,3297,0],[6076,3306,0],[6089,3519,0],[6092,3623,0],[6105,3182,0],[6114,3524,0],[6114,3606,0],[6130,3178,0],[6139,3530,0],[6148,3571,0],[6130,3593,0],[6140,3584,0],[6151,3173,0],[6168,3534,0],[6158,3539,0],[6155,3553,0],[6178,3172,0],[6200,3536,0],[6244,3536,0],[6225,3536,0],[6266,3535,0],[6292,3536,0],[6319,3536,0]]],["Malden_V_Vigny",[[3068,6340,0],[3060,6848,0],[3087,6340,0],[3079,6837,0],[3102,6342,0],[3106,6359,0],[3112,6382,0],[3119,6392,0],[3119,6403,0],[3104,6823,0],[3122,6815,0],[3133,6388,0],[3126,6422,0],[3135,6442,0],[3145,6462,0],[3146,6597,0],[3141,6611,0],[3140,6622,0],[3146,6634,0],[3139,6804,0],[3174,6350,0],[3174,6365,0],[3154,6383,0],[3169,6376,0],[3150,6480,0],[3154,6503,0],[3155,6531,0],[3154,6559,0],[3152,6581,0],[3157,6650,0],[3172,6667,0],[3173,6761,0],[3152,6790,0],[3162,6776,0],[3187,6685,0],[3198,6702,0],[3186,6748,0],[3194,6738,0],[3199,6728,0],[3202,6716,0]]],["Malden_V_SainteMarie",[[5061,4232,0],[5084,4215,0],[5095,4202,0],[5101,4198,0],[5167,4548,0],[5183,4536,0],[5218,4496,0],[5201,4517,0],[5245,4471,0],[5231,4480,0],[5272,4438,0],[5261,4456,0],[5295,4382,0],[5280,4420,0],[5286,4401,0],[5315,4364,0],[5338,4344,0],[5360,4328,0],[5399,4321,0],[5379,4321,0],[5422,4319,0],[5435,3760,0],[5442,4313,0],[5455,3771,0],[5472,3783,0],[5459,4305,0],[5489,3799,0],[5481,4293,0],[5501,3822,0],[5505,3844,0],[5508,3864,0],[5515,3880,0],[5519,4246,0],[5523,4239,0],[5522,4234,0],[5514,4259,0],[5503,4277,0],[5532,3899,0],[5546,4234,0],[5530,4234,0],[5570,3924,0],[5552,3915,0],[5573,4122,0],[5569,4142,0],[5567,4159,0],[5566,4177,0],[5562,4194,0],[5560,4209,0],[5559,4220,0],[5567,4234,0],[5559,4229,0],[5596,3937,0],[5598,4035,0],[5589,4043,0],[5581,4074,0],[5585,4055,0],[5577,4098,0],[5580,4234,0],[5618,3951,0],[5616,4026,0],[5631,3970,0],[5641,3992,0],[5642,4012,0],[5646,4003,0],[5670,3994,0],[5693,3979,0],[5712,3969,0],[5748,3948,0],[5731,3958,0],[5770,3928,0],[5760,3938,0],[5781,3796,0],[5799,3813,0],[5787,3912,0],[5813,3829,0],[5810,3894,0],[5828,3846,0],[5849,3861,0],[5841,3860,0],[5837,3857,0],[5831,3878,0]]],["Malden_V_LaRiviere",[[3440,3522,0],[3431,3527,0],[3468,3511,0],[3452,3515,0],[3488,3509,0],[3517,3512,0],[3545,3514,0],[3571,3276,0],[3570,3516,0],[3586,3273,0],[3577,3275,0],[3599,3519,0],[3604,3273,0],[3624,3273,0],[3618,3521,0],[3625,3532,0],[3623,3548,0],[3622,3568,0],[3623,3595,0],[3625,3624,0],[3625,3672,0],[3624,3687,0],[3642,3273,0],[3648,3469,0],[3635,3496,0],[3628,3518,0],[3626,3651,0],[3631,3657,0],[3630,3706,0],[3642,3735,0],[3668,3264,0],[3656,3271,0],[3662,3444,0],[3652,3658,0],[3679,3256,0],[3694,3255,0],[3686,3255,0],[3698,3354,0],[3698,3371,0],[3693,3379,0],[3688,3399,0],[3677,3419,0],[3682,3656,0],[3704,3256,0],[3717,3259,0],[3711,3257,0],[3724,3277,0],[3716,3301,0],[3706,3327,0],[3710,3371,0],[3721,3643,0],[3704,3650,0],[3739,3066,0],[3736,3055,0],[3742,3084,0],[3747,3103,0],[3750,3119,0],[3750,3157,0],[3748,3179,0],[3745,3200,0],[3737,3226,0],[3730,3254,0],[3749,3281,0],[3725,3288,0],[3733,3287,0],[3732,3372,0],[3740,3636,0],[3750,3137,0],[3764,3197,0],[3771,3196,0],[3751,3192,0],[3757,3194,0],[3770,3272,0],[3772,3389,0],[3750,3376,0],[3758,3383,0],[3762,3574,0],[3759,3559,0],[3767,3602,0],[3770,3622,0],[3760,3629,0],[3795,3021,0],[3793,3036,0],[3791,3066,0],[3790,3050,0],[3796,3089,0],[3800,3114,0],[3795,3145,0],[3787,3162,0],[3778,3182,0],[3793,3209,0],[3776,3202,0],[3783,3268,0],[3791,3267,0],[3800,3267,0],[3792,3391,0],[3786,3623,0],[3821,2968,0],[3811,2987,0],[3800,3004,0],[3801,3130,0],[3815,3219,0],[3820,3262,0],[3810,3266,0],[3803,3267,0],[3812,3390,0],[3814,3617,0],[3838,2936,0],[3849,2926,0],[3829,2951,0],[3842,3231,0],[3837,3254,0],[3841,3353,0],[3833,3375,0],[3831,3397,0],[3826,3390,0],[3836,3413,0],[3836,3605,0],[3873,2908,0],[3861,2919,0],[3859,3245,0],[3866,3241,0],[3861,3238,0],[3858,3339,0],[3857,3420,0],[3860,3586,0],[3900,2821,0],[3894,2870,0],[3899,2857,0],[3885,2889,0],[3886,3243,0],[3889,3250,0],[3896,3264,0],[3896,3320,0],[3878,3329,0],[3890,3428,0],[3887,3569,0],[3911,2795,0],[3905,2809,0],[3900,2835,0],[3901,2848,0],[3913,3242,0],[3905,3285,0],[3906,3305,0],[3908,3439,0],[3911,3462,0],[3915,3486,0],[3914,3557,0],[3939,3236,0],[3931,3502,0],[3949,3521,0],[3936,3544,0],[3949,3536,0],[3966,3228,0],[3958,3539,0],[3968,3558,0],[3986,3221,0],[3977,3583,0],[3984,3615,0],[3989,3645,0],[3994,3671,0],[4005,3214,0],[4028,3204,0],[4051,3194,0],[4071,3184,0],[4099,3161,0],[4085,3173,0],[4114,3146,0],[4147,3120,0],[4129,3133,0],[4168,3110,0],[4194,3108,0]]],["Malden_V_Cancon",[[5017,3097,0],[5040,2490,0],[5045,3040,0],[5034,3060,0],[5025,3078,0],[5057,2501,0],[5057,3020,0],[5068,3002,0],[5076,2511,0],[5094,2522,0],[5088,2942,0],[5085,2954,0],[5082,2969,0],[5077,2984,0],[5111,2533,0],[5116,2914,0],[5100,2927,0],[5128,2542,0],[5150,2900,0],[5130,2908,0],[5150,2555,0],[5178,2571,0],[5198,2873,0],[5175,2887,0],[5204,2585,0],[5216,2863,0],[5220,3063,0],[5214,3084,0],[5207,3107,0],[5204,3122,0],[5216,3133,0],[5207,3128,0],[5225,2598,0],[5239,2607,0],[5243,2783,0],[5231,2780,0],[5236,2853,0],[5246,3021,0],[5226,3047,0],[5233,3035,0],[5229,3138,0],[5245,3144,0],[5238,3142,0],[5251,2618,0],[5265,2635,0],[5274,2788,0],[5259,2787,0],[5260,2844,0],[5265,3006,0],[5282,2655,0],[5297,2674,0],[5291,2787,0],[5297,2830,0],[5280,2837,0],[5284,2991,0],[5315,2696,0],[5306,2684,0],[5308,2787,0],[5320,2786,0],[5320,2823,0],[5324,2942,0],[5313,2959,0],[5301,2976,0],[5327,2710,0],[5345,2731,0],[5347,2771,0],[5332,2781,0],[5347,2817,0],[5344,2915,0],[5335,2926,0],[5364,2733,0],[5356,2739,0],[5366,2753,0],[5362,2759,0],[5357,2763,0],[5369,2813,0],[5350,2824,0],[5352,2843,0],[5355,2865,0],[5373,2871,0],[5363,2873,0],[5355,2889,0],[5356,2877,0],[5351,2903,0],[5377,2722,0],[5396,2710,0],[5388,2713,0],[5390,2779,0],[5393,2807,0],[5387,2869,0],[5425,2696,0],[5416,2703,0],[5406,2707,0],[5403,2796,0],[5413,2800,0],[5403,2867,0],[5417,2864,0],[5442,2338,0],[5449,2350,0],[5434,2688,0],[5443,2682,0],[5444,2774,0],[5427,2792,0],[5445,2852,0],[5432,2859,0],[5462,2370,0],[5475,2648,0],[5462,2661,0],[5468,2654,0],[5458,2669,0],[5465,2670,0],[5452,2676,0],[5462,2750,0],[5471,2774,0],[5457,2763,0],[5466,2834,0],[5456,2844,0],[5479,2391,0],[5495,2414,0],[5499,2549,0],[5493,2633,0],[5482,2642,0],[5476,2680,0],[5488,2693,0],[5493,2711,0],[5495,2701,0],[5477,2731,0],[5491,2790,0],[5477,2823,0],[5487,2812,0],[5496,2802,0],[5493,2805,0],[5505,2442,0],[5508,2471,0],[5508,2501,0],[5504,2527,0],[5500,2541,0],[5502,2565,0],[5507,2586,0],[5505,2622,0],[5510,2603,0],[5511,2613,0],[5512,2691,0],[5506,2800,0],[5518,2803,0],[5531,2670,0],[5547,2652,0],[5530,2800,0],[5544,2796,0],[5564,2638,0],[5569,2797,0],[5557,2794,0],[5595,2613,0],[5582,2626,0],[5581,2806,0],[5594,2818,0],[5607,2599,0],[5618,2583,0],[5621,2841,0],[5607,2829,0],[5631,2567,0],[5648,2552,0],[5632,2855,0],[5638,2871,0],[5644,2886,0],[5649,2917,0],[5645,2937,0],[5645,2958,0],[5647,2980,0],[5649,3005,0],[5662,2544,0],[5650,2900,0],[5655,2911,0],[5670,2928,0],[5651,3028,0],[5653,3048,0],[5654,3067,0],[5658,3094,0],[5655,3083,0],[5665,3105,0],[5678,2538,0],[5690,2950,0],[5677,3123,0],[5695,3147,0],[5701,2530,0],[5706,2968,0],[5721,2986,0],[5712,3171,0],[5726,2521,0],[5749,2512,0],[5750,3022,0],[5735,3003,0],[5770,2504,0],[5765,3042,0],[5793,2495,0],[5780,3061,0],[5793,3080,0]]],["Malden_V_LePort",[[7744,3290,0],[7730,3305,0],[7765,3273,0],[7788,3253,0],[7821,3163,0],[7816,3187,0],[7811,3208,0],[7807,3225,0],[7802,3239,0],[7842,3100,0],[7830,3122,0],[7833,3111,0],[7825,3142,0],[7828,3130,0],[7865,3083,0],[7890,3069,0],[7920,3050,0],[7907,3057,0],[7930,3048,0],[7945,3053,0],[7966,3063,0],[7972,3277,0],[7963,3285,0],[7992,3067,0],[7986,3264,0],[8019,3067,0],[8003,3250,0],[8018,3237,0],[8043,3066,0],[8042,3157,0],[8033,3183,0],[8032,3210,0],[8028,3227,0],[8063,3067,0],[8070,3115,0],[8058,3135,0],[8079,3071,0],[8096,3078,0],[8077,3095,0],[8080,3081,0],[8122,3089,0],[8140,3098,0],[8144,3103,0],[8151,3113,0],[8170,3145,0],[8158,3125,0],[8169,3129,0],[8186,3119,0],[8182,3170,0],[8192,3196,0],[8195,3588,0],[8176,3614,0],[8207,3108,0],[8220,3104,0],[8202,3219,0],[8215,3238,0],[8218,3578,0],[8247,3106,0],[8232,3104,0],[8231,3256,0],[8243,3271,0],[8247,3558,0],[8242,3582,0],[8234,3579,0],[8238,3603,0],[8241,3613,0],[8266,2873,0],[8269,2878,0],[8274,2984,0],[8271,2997,0],[8270,3006,0],[8267,3108,0],[8271,3284,0],[8251,3286,0],[8258,3292,0],[8261,3306,0],[8272,3326,0],[8273,3437,0],[8265,3461,0],[8258,3485,0],[8255,3511,0],[8251,3536,0],[8288,2891,0],[8277,2884,0],[8297,2900,0],[8299,2943,0],[8292,2956,0],[8283,2965,0],[8277,2973,0],[8276,3015,0],[8286,3029,0],[8290,3042,0],[8293,3063,0],[8292,3052,0],[8298,3084,0],[8296,3109,0],[8284,3110,0],[8292,3271,0],[8280,3341,0],[8284,3359,0],[8282,3396,0],[8284,3377,0],[8278,3416,0],[8287,3408,0],[8300,2912,0],[8301,2927,0],[8315,3107,0],[8302,3102,0],[8312,3262,0],[8306,3408,0],[8339,3103,0],[8346,3257,0],[8328,3258,0],[8335,3407,0],[8356,3100,0],[8368,3257,0],[8373,3424,0],[8358,3405,0],[8370,3410,0],[8370,3402,0],[8385,3259,0],[8394,3266,0],[8399,3272,0],[8400,3380,0],[8381,3394,0],[8377,3447,0],[8381,3474,0],[8384,3500,0],[8386,3522,0],[8387,3544,0],[8395,3538,0],[8381,3571,0],[8417,3275,0],[8407,3275,0],[8413,3370,0],[8416,3537,0],[8403,3538,0],[8428,3272,0],[8437,3268,0],[8441,3531,0],[8428,3534,0],[8451,3262,0],[8471,3254,0],[8451,3537,0],[8498,3237,0],[8486,3247,0],[8520,3217,0],[8510,3226,0],[8527,3214,0],[8534,3213,0]]],["Malden_V_Houdan",[[6648,6067,0],[6633,6054,0],[6669,6075,0],[6692,6076,0],[6725,6074,0],[6712,6075,0],[6729,5791,0],[6741,5801,0],[6750,5900,0],[6739,5913,0],[6731,5927,0],[6726,5940,0],[6730,5970,0],[6727,5952,0],[6736,5991,0],[6741,6013,0],[6742,6041,0],[6743,6029,0],[6742,6056,0],[6736,6073,0],[6743,6068,0],[6751,5812,0],[6754,5822,0],[6758,5849,0],[6755,5834,0],[6761,5864,0],[6760,5878,0],[6757,5889,0],[6773,6073,0],[6753,6072,0],[6794,6073,0],[6820,6072,0],[6847,6072,0],[6866,6073,0],[6883,6076,0],[6903,6077,0],[6926,6077,0],[6954,6076,0],[6982,6076,0],[7019,6072,0],[7003,6076,0],[7023,6100,0],[7046,6063,0],[7035,6065,0],[7030,6068,0],[7032,6071,0],[7026,6092,0],[7030,6084,0],[7032,6078,0],[7060,6060,0],[7073,6060,0],[7075,6053,0],[7074,6348,0],[7071,6366,0],[7067,6387,0],[7063,6407,0],[7058,6433,0],[7063,6434,0],[7069,6435,0],[7054,6463,0],[7052,6487,0],[7051,6507,0],[7052,6548,0],[7051,6526,0],[7097,5852,0],[7095,5873,0],[7099,5888,0],[7091,6018,0],[7090,6009,0],[7091,6003,0],[7082,6032,0],[7076,6040,0],[7077,6035,0],[7088,6029,0],[7075,6047,0],[7090,6028,0],[7091,6025,0],[7085,6063,0],[7098,6065,0],[7098,6213,0],[7093,6239,0],[7099,6226,0],[7089,6263,0],[7085,6284,0],[7082,6298,0],[7081,6308,0],[7077,6327,4],[7093,6440,0],[7078,6437,0],[7116,5793,0],[7106,5821,0],[7106,5907,0],[7113,5927,0],[7121,5951,0],[7100,5996,0],[7112,5988,0],[7119,5983,0],[7125,6053,0],[7121,6073,0],[7116,6068,0],[7108,6067,0],[7119,6088,0],[7115,6107,0],[7110,6135,0],[7106,6164,0],[7102,6188,0],[7117,6221,0],[7116,6441,0],[7142,5723,0],[7149,5701,0],[7134,5746,0],[7125,5769,0],[7126,5975,0],[7127,6000,0],[7127,6027,0],[7142,6080,0],[7127,6080,0],[7133,6080,0],[7147,6211,0],[7141,6441,0],[7173,5637,0],[7165,5660,0],[7157,5681,0],[7165,6079,0],[7152,6080,0],[7175,6155,0],[7166,6188,0],[7161,6442,0],[7181,5597,0],[7178,5617,0],[7185,6077,0],[7182,6093,0],[7182,6082,0],[7183,6109,0],[7180,6128,0],[7200,6443,0],[7176,6443,0],[7224,6075,0],[7205,6076,0],[7231,6445,0],[7251,6074,0],[7258,6447,0],[7283,6074,0],[7282,6445,0],[7297,6435,0],[7309,6070,0],[7315,6279,0],[7312,6298,0],[7312,6321,0],[7310,6343,0],[7308,6367,0],[7305,6391,0],[7303,6415,0],[7331,6065,0],[7330,6268,0],[7355,6063,0],[7360,6267,0],[7384,6062,0],[7389,6269,0],[7411,6061,0],[7412,6271,0],[7439,5990,0],[7434,6013,0],[7435,6034,0],[7428,6059,0],[7435,6050,0],[7434,6274,0],[7473,5959,0],[7453,5971,0],[7454,6278,0],[7495,5947,0],[7492,6099,0],[7481,6280,0],[7504,5760,0],[7507,5785,0],[7510,5813,0],[7514,5842,0],[7518,5871,0],[7521,5896,0],[7523,5915,0],[7517,5935,0],[7503,5947,0],[7522,5973,0],[7510,5957,0],[7525,6072,0],[7502,6100,0],[7518,6100,0],[7524,6101,0],[7511,6100,0],[7517,6273,0],[7509,6280,0],[7503,6282,0],[7542,5918,0],[7525,5928,0],[7529,5992,0],[7530,6015,0],[7528,6043,0],[7528,6149,0],[7526,6128,0],[7532,6176,0],[7542,6203,0],[7548,6241,0],[7531,6259,0],[7565,5898,0],[7556,6219,0],[7570,6217,0],[7575,6214,0],[7569,6228,0],[7558,6230,0],[7584,6214,0],[7583,6243,0]]],["Malden_V_Dourdan",[[6671,7404,0],[6651,7424,0],[6662,7415,0],[6689,7386,0],[6710,7369,0],[6747,7340,0],[6728,7356,0],[6767,7323,0],[6781,6685,0],[6787,7306,0],[6802,6685,0],[6811,7285,0],[6827,6684,0],[6840,7262,0],[6829,7272,0],[6845,7292,0],[6836,7281,0],[6874,6678,0],[6851,6683,0],[6862,7233,0],[6851,7249,0],[6858,7308,0],[6892,7196,0],[6877,7213,0],[6876,7325,0],[6898,7342,0],[6901,6673,0],[6923,6669,0],[6924,7175,0],[6908,7183,0],[6920,7369,0],[6912,7355,0],[6924,7386,0],[6948,6666,0],[6941,7168,0],[6930,7398,0],[6943,7407,0],[6960,7162,0],[6964,7411,0],[6977,6666,0],[6999,6667,0],[6986,7152,0],[6988,7411,0],[7012,6669,0],[7024,6806,0],[7019,6828,0],[7017,6851,0],[7017,6881,0],[7017,6916,0],[7018,6949,0],[7022,6977,0],[7016,7141,0],[7013,7412,0],[7048,6620,0],[7044,6637,4],[7041,6656,0],[7039,6667,0],[7038,6680,0],[7037,6695,0],[7035,6719,0],[7034,6750,0],[7030,6780,0],[7040,6966,0],[7026,6968,0],[7027,7007,0],[7031,7030,0],[7033,7052,0],[7034,7078,0],[7039,7122,0],[7036,7100,0],[7044,7141,0],[7038,7134,0],[7032,7136,0],[7049,7164,0],[7037,7414,0],[7049,7592,0],[7063,6962,0],[7073,7150,0],[7056,7154,0],[7054,7191,0],[7058,7216,0],[7063,7243,0],[7070,7273,0],[7070,7254,0],[7061,7414,0],[7057,7570,0],[7065,7552,0],[7088,6956,0],[7095,7146,0],[7087,7166,0],[7085,7152,0],[7090,7184,0],[7093,7206,0],[7096,7223,0],[7083,7241,0],[7095,7230,0],[7077,7302,0],[7084,7329,0],[7090,7349,0],[7100,7373,0],[7085,7411,0],[7092,7512,0],[7078,7532,0],[7115,6950,0],[7118,6974,0],[7114,6960,0],[7117,7142,0],[7108,7221,0],[7109,7403,0],[7100,7409,0],[7113,7427,0],[7114,7448,0],[7113,7465,0],[7102,7496,0],[7109,7481,0],[7141,6945,0],[7125,6995,0],[7136,7022,0],[7139,7137,0],[7133,7207,0],[7163,6943,0],[7151,7055,0],[7163,7083,0],[7171,7107,0],[7169,7124,0],[7157,7131,0],[7164,7128,0],[7161,7195,0],[7190,6933,0],[7178,6940,0],[7179,7128,0],[7187,7147,0],[7191,7159,0],[7176,7188,0],[7220,6916,0],[7203,6924,0],[7242,6907,0],[7266,6899,0],[7290,6892,0],[7318,6881,0],[7344,6870,0],[7365,6861,0],[7386,6854,0],[7407,6847,0],[7428,6839,0],[7449,6828,0]]],["Malden_V_Arudy",[[5161,6669,0],[5186,6679,0],[5214,6688,0],[5240,6696,0],[5250,6954,0],[5244,6975,0],[5243,6987,0],[5246,7006,0],[5264,6702,0],[5271,6845,0],[5268,6861,0],[5265,6883,0],[5262,6906,0],[5257,6928,0],[5257,7046,0],[5251,7027,0],[5264,7067,0],[5271,7086,0],[5286,6715,0],[5277,6707,0],[5295,6729,0],[5292,6792,0],[5298,6782,0],[5285,6806,0],[5277,6826,0],[5283,7109,0],[5296,7133,0],[5302,6749,0],[5305,6767,0],[5309,6782,0],[5304,6777,0],[5321,6803,0],[5307,7151,0],[5318,7171,0],[5336,6828,0],[5348,6848,0],[5328,7191,0],[5338,7212,0],[5348,7233,0],[5360,6870,0],[5374,6892,0],[5362,7255,0],[5384,6911,0],[5389,6923,0],[5394,6947,0],[5391,6934,0],[5379,7278,0],[5396,7300,0],[5422,6970,0],[5402,6959,0],[5411,6965,0],[5411,7319,0],[5422,7340,0],[5437,6973,0],[5431,7361,0],[5439,7379,0],[5451,6975,0],[5464,6977,0],[5450,7402,0],[5462,7428,0],[5470,7449,0],[5473,7468,0],[5481,6985,0],[5504,6998,0],[5526,7010,0],[5544,7019,0],[5560,7024,0],[5573,7025,0],[5591,7023,0],[5610,7017,0],[5620,7011,0],[5633,7001,0],[5668,6978,0],[5650,6989,0],[5688,6968,0],[5711,6958,0],[5734,6948,0],[5769,6924,0],[5754,6937,0],[5782,6916,0],[5796,6915,0],[5820,6919,0],[5821,7005,0],[5815,7024,0],[5816,7040,0],[5822,7051,0],[5844,6926,0],[5849,6962,0],[5834,6984,0],[5834,7060,0],[5855,6935,0],[5857,6945,0],[5850,7068,0],[5871,7076,0],[5890,7089,0],[5900,7102,0],[5906,7121,0],[5912,7141,0],[5920,7156,0],[5932,7166,0],[5943,7171,0],[5970,7171,0],[5955,7173,0],[5984,7171,0]]],["Malden_V_Goisse",[[3129,8411,0],[3165,8415,0],[3198,8419,0],[3226,8423,0],[3248,8426,0],[3267,8431,0],[3286,8145,0],[3279,8129,0],[3283,8437,0],[3294,8443,0],[3305,8162,0],[3310,8467,0],[3303,8451,0],[3314,8488,0],[3317,8508,0],[3322,8522,0],[3327,8178,0],[3343,8190,0],[3327,8531,0],[3331,8539,0],[3332,8549,0],[3332,8575,7],[3332,8559,0],[3332,8588,0],[3332,8618,0],[3331,8601,0],[3332,8639,0],[3332,8662,0],[3336,8685,0],[3346,8706,0],[3353,8200,0],[3361,8214,0],[3373,8233,0],[3362,8721,0],[3387,8249,0],[3399,8263,0],[3382,8729,0],[3417,8278,0],[3402,8731,0],[3432,8294,0],[3446,8311,0],[3426,8729,0],[3471,8342,0],[3460,8328,0],[3453,8725,0],[3481,8357,0],[3490,8366,0],[3496,8375,0],[3499,8391,0],[3480,8722,0],[3508,8424,0],[3503,8410,0],[3512,8438,0],[3516,8453,0],[3523,8465,0],[3520,8461,0],[3505,8717,0],[3525,8468,0],[3536,8476,0],[3549,8485,0],[3527,8712,0],[3547,8707,0],[3561,8493,0],[3572,8504,0],[3566,8699,0],[3588,8522,0],[3582,8515,0],[3587,8513,0],[3593,8508,0],[3598,8534,5],[3583,8689,0],[3599,8678,0],[3621,8481,0],[3603,8498,0],[3608,8545,0],[3613,8568,0],[3612,8552,0],[3614,8559,0],[3611,8578,0],[3609,8588,0],[3610,8599,0],[3621,8622,0],[3616,8615,0],[3612,8608,0],[3616,8669,0],[3641,8461,0],[3645,8646,0],[3636,8636,0],[3628,8629,0],[3632,8659,0],[3643,8651,0],[3661,8440,0],[3653,8655,0],[3667,8671,0],[3662,8665,0],[3674,8678,0],[3677,8423,0],[3689,8410,0],[3682,8687,0],[3689,8697,0],[3698,8706,0],[3716,8396,0],[3702,8402,0],[3712,8713,0],[3747,8380,0],[3730,8390,0],[3733,8724,0],[3771,8306,0],[3767,8324,0],[3767,8338,0],[3766,8352,0],[3764,8364,0],[3759,8371,0],[3754,8736,0],[3768,8746,0],[3798,8260,0],[3790,8267,0],[3783,8277,0],[3777,8289,0],[3787,8774,0],[3781,8764,0],[3775,8754,0],[3794,8784,0],[3813,8251,0],[3803,8791,0],[3814,8797,0],[3825,8805,0],[3829,8242,0],[3845,8233,0],[3839,8819,0],[3870,8222,0],[3859,8227,0],[3863,8845,0],[3852,8833,0],[3872,8858,0],[3885,8222,0],[3878,8873,0],[3884,8889,0],[3890,8904,0],[3901,8223,0],[3910,8227,0],[3928,8234,0],[3947,8241,0],[3967,8244,0],[3956,8243,0],[3982,8244,0]]],["Malden_V_SaintLouis",[[6690,8806,0],[6712,8810,0],[6733,8815,0],[6750,9254,0],[6775,8818,0],[6755,8818,0],[6772,9246,0],[6796,8819,0],[6789,9241,0],[6815,8819,0],[6807,9233,0],[6832,8819,0],[6846,8820,0],[6830,9218,0],[6860,8824,0],[6869,9186,0],[6852,9201,0],[6880,8831,0],[6886,9171,0],[6904,8840,0],[6917,9144,0],[6902,9157,0],[6929,8849,0],[6932,9131,0],[6970,8863,0],[6950,8856,0],[6974,9098,0],[6951,9116,0],[6997,8873,0],[7000,9077,0],[7019,8882,0],[7034,8892,0],[7049,8906,0],[7049,9035,0],[7026,9054,0],[7066,8919,0],[7066,9020,0],[7088,8932,0],[7086,9004,0],[7109,8945,0],[7123,8970,0],[7123,8956,0],[7106,8986,0],[7139,8955,0],[7139,8969,0],[7149,8978,0],[7142,9047,0],[7165,8929,0],[7152,8941,0],[7167,8993,0],[7162,9023,0],[7170,9013,0],[7151,9036,0],[7200,8910,0],[7182,8919,0],[7198,9014,0],[7186,9008,0],[7176,9005,0],[7180,9004,0],[7218,8900,0],[7218,9020,0],[7238,8885,0],[7243,9027,0],[7263,8865,0],[7267,9036,0],[7289,8500,0],[7294,8522,0],[7300,8542,0],[7295,8631,0],[7287,8653,0],[7282,8673,0],[7282,8692,0],[7285,8724,0],[7283,8709,0],[7289,8748,0],[7295,8775,0],[7299,8796,0],[7285,8848,0],[7296,8837,0],[7285,9043,0],[7304,8562,0],[7306,8581,0],[7305,8598,0],[7302,8613,0],[7302,8812,0],[7300,8826,0],[7311,8825,0],[7301,8831,0],[7303,9052,0],[7326,8819,0],[7341,8817,0],[7327,9063,0],[7349,9072,0],[7360,8818,0],[7368,9079,0],[7388,8821,0],[7394,9089,0],[7395,9161,0],[7389,9174,0],[7391,9169,0],[7385,9182,0],[7422,8824,0],[7420,9098,0],[7413,9115,0],[7416,9106,0],[7407,9130,0],[7400,9147,0],[7441,9105,0],[7455,8826,0],[7471,9120,0],[7458,9112,0],[7479,8827,0],[7493,8827,0],[7496,8832,0],[7499,8835,0],[7487,9133,0],[7504,8848,0],[7508,8827,0],[7523,8828,0],[7510,8876,0],[7517,8905,0],[7507,9150,0],[7522,9167,0],[7550,8823,0],[7537,8828,0],[7526,8929,0],[7537,8955,0],[7549,8981,0],[7533,9181,0],[7542,9197,0],[7564,8815,0],[7558,9006,0],[7564,9029,0],[7569,9051,0],[7573,9073,0],[7551,9212,0],[7592,8795,0],[7580,8804,0],[7578,9094,0],[7585,9117,0],[7603,8786,0],[7601,9140,0]]],["Malden_V_Lolisse",[[5548,11192,0],[5537,11194,0],[5541,11349,0],[5537,11369,0],[5539,11392,0],[5547,11416,0],[5547,11544,0],[5535,11558,0],[5532,11585,0],[5531,11611,0],[5530,11623,0],[5567,11189,0],[5558,11232,0],[5558,11239,0],[5560,11257,0],[5565,11277,0],[5567,11307,0],[5552,11328,0],[5559,11441,0],[5572,11466,0],[5565,11533,0],[5594,11184,0],[5599,11295,0],[5576,11286,0],[5578,11294,0],[5578,11491,0],[5577,11515,0],[5609,10698,0],[5620,10712,0],[5623,11180,0],[5633,10728,0],[5646,10744,0],[5626,11303,0],[5659,10758,0],[5670,10771,0],[5652,11175,0],[5653,11314,0],[5682,10786,0],[5690,10797,0],[5696,10797,0],[5690,10797,0],[5697,10804,0],[5682,11169,0],[5677,11326,0],[5695,11334,0],[5715,10773,0],[5704,10790,0],[5710,10821,0],[5709,11164,0],[5715,11340,0],[5728,10758,0],[5741,10752,0],[5729,10843,0],[5747,10863,0],[5735,11157,0],[5735,11347,0],[5757,10750,0],[5767,10886,0],[5765,11149,0],[5751,11355,0],[5767,11361,0],[5783,10749,0],[5787,10911,0],[5799,11044,0],[5795,11067,0],[5793,11088,0],[5792,11109,0],[5795,11145,0],[5792,11128,0],[5792,11142,0],[5788,11357,0],[5806,10750,0],[5803,10933,0],[5815,10952,0],[5821,10969,0],[5816,10992,0],[5806,11020,0],[5822,11143,0],[5809,11346,0],[5849,11139,0],[5835,11334,0],[5874,11136,0],[5869,11322,0],[5895,11136,0],[5898,11313,0],[5918,11136,0],[5918,11311,0],[5942,11137,0],[5937,11323,0],[5966,11135,0],[5951,11341,0],[5962,11362,0],[5974,11386,0],[5986,11130,0],[5992,11405,0],[6006,11123,0],[6025,11116,0],[6043,11109,0]]],["Malden_C_Airport",[[7699,10240,0],[7713,10214,0],[7743,10142,0],[7734,10167,0],[7725,10189,0],[7768,10073,0],[7758,10099,0],[7752,10118,0],[7799,9952,0],[7796,9972,0],[7795,9989,0],[7792,10007,0],[7778,10046,0],[7786,10027,0],[7821,9837,0],[7817,9856,0],[7810,9895,0],[7814,9875,0],[7804,9923,0],[7816,10390,0],[7814,10409,0],[7815,10449,0],[7812,10434,0],[7834,9763,0],[7830,9782,0],[7825,9809,0],[7911,9697,0],[7911,9717,0],[7911,9737,0],[7911,9757,0],[7911,9777,0],[7911,9797,0],[7911,9817,0],[7911,9837,0],[7911,9857,0],[7911,9897,0],[7911,9877,0],[7911,9918,0],[7911,9938,0],[7911,9958,0],[7910,9998,0],[7911,9978,0],[7910,10018,0],[7910,10038,0],[7910,10058,0],[7910,10098,0],[7910,10078,0],[7910,10118,0],[7910,10138,0],[7910,10158,0],[7910,10198,0],[7910,10178,0],[7910,10218,0],[7910,10238,0],[7910,10258,0],[7910,10298,0],[7910,10278,0],[7910,10318,0],[7910,10339,0],[7910,10359,0],[7910,10379,0],[7910,10399,0],[7910,10419,0],[7910,10439,0],[7910,10459,0],[7910,10479,0],[7910,10499,0],[7910,10519,0],[7910,10539,0],[7931,9697,0],[7931,9677,0],[7931,9717,0],[7931,9737,0],[7931,9757,0],[7931,9777,0],[7931,9797,0],[7931,9817,0],[7931,9837,0],[7931,9857,0],[7931,9897,0],[7931,9877,0],[7931,9918,0],[7931,9938,0],[7931,9958,0],[7931,9978,0],[7930,9998,0],[7930,10018,0],[7930,10038,0],[7930,10058,0],[7930,10078,0],[7930,10098,0],[7930,10118,0],[7930,10138,0],[7930,10158,0],[7930,10178,0],[7930,10198,0],[7930,10218,0],[7930,10238,0],[7930,10258,0],[7930,10298,0],[7930,10278,0],[7930,10318,0],[7930,10339,0],[7930,10359,0],[7930,10379,0],[7930,10399,0],[7930,10419,0],[7930,10439,0],[7930,10459,0],[7931,10479,0],[7931,10499,0],[7931,10519,0],[7931,10539,0],[8047,9845,0],[8026,9844,0],[8067,9645,0],[8051,9645,0],[8090,9645,0],[8078,9845,0],[8114,9644,0],[8106,9845,0],[8119,9849,0],[8119,9862,0],[8120,9882,0],[8120,9907,0],[8120,9936,0],[8120,9967,0],[8120,9996,0],[8120,10023,0],[8121,10044,0],[8121,10059,0],[8105,10066,0],[8113,10146,0],[8137,9645,0],[8142,9749,0],[8129,9749,0],[8134,9844,0],[8126,10066,0],[8135,10146,0],[8160,9628,0],[8153,9645,0],[8160,9653,0],[8160,9682,0],[8160,9709,0],[8160,9736,0],[8156,9749,0],[8160,9763,0],[8160,9792,0],[8159,9819,0],[8160,9840,0],[8154,9844,0],[8172,9865,0],[8161,9850,0],[8175,10067,0],[8152,10066,0],[8161,10146,0],[8167,10225,0],[8175,10444,0],[8172,10466,0],[8170,10487,0],[8167,10514,0],[8165,10536,0],[8189,9885,0],[8197,10067,0],[8182,10145,0],[8187,10235,0],[8190,10370,0],[8184,10386,0],[8180,10403,0],[8177,10425,0],[8223,9924,0],[8205,9904,0],[8219,10067,0],[8203,10145,0],[8223,10145,0],[8216,10249,0],[8213,10318,0],[8221,10300,0],[8201,10343,0],[8240,9944,0],[8246,10067,0],[8248,10145,0],[8244,10251,0],[8235,10259,0],[8232,10276,0],[8258,9966,0],[8270,9984,0],[8274,10008,0],[8267,10068,0],[8275,10128,0],[8266,10145,0],[8274,10153,0],[8273,10172,0],[8271,10186,0],[8263,10207,0],[8253,10231,0],[8275,10039,0],[8276,10068,0],[8275,10099,0]]],["Malden_L_Moray",[[590,12275,0],[590,12295,0],[610,12275,0],[610,12294,0],[649,12275,0],[629,12275,0],[629,12295,0],[649,12294,0],[669,12274,0],[669,12294,0],[689,12274,0],[689,12294,0],[708,12274,0],[708,12294,0],[750,12037,0],[745,12052,0],[741,12071,0],[737,12086,0],[737,12101,0],[737,12122,0],[738,12136,0],[747,12274,0],[728,12274,0],[747,12294,0],[728,12294,0],[774,11996,0],[758,12020,0],[767,12274,0],[767,12294,0],[797,11971,0],[787,12274,0],[787,12294,0],[816,11953,0],[806,12275,0],[806,12295,0],[834,11944,0],[846,11945,0],[849,11951,0],[846,12275,0],[826,12275,0],[846,12294,0],[826,12295,0],[852,11935,0],[869,11933,0],[862,11958,0],[865,12275,0],[865,12294,0],[891,11932,0],[897,11969,0],[880,11965,0],[885,12274,0],[885,12294,0],[913,11929,0],[920,11974,0],[905,12274,0],[924,12274,0],[905,12294,0],[924,12294,0],[945,11890,0],[930,11916,0],[941,11900,0],[940,11975,0],[944,12274,0],[944,12294,0],[957,11969,0],[970,11962,0],[963,12275,0],[963,12294,0],[988,11952,0],[976,11958,0],[983,12274,0],[983,12294,0],[1007,11945,0],[1022,12274,0],[1003,12274,0],[1003,12294,0],[1022,12294,0],[1028,11941,0],[1044,11940,0],[1042,12274,0],[1042,12294,0],[1057,11944,0],[1062,12274,0],[1062,12294,0],[1079,11957,0],[1082,12274,0],[1082,12294,0],[1105,11973,0],[1122,11983,0],[1121,12274,0],[1101,12274,0],[1121,12294,0],[1101,12294,0],[1136,11994,0],[1148,12009,0],[1141,12275,0],[1141,12295,0],[1151,12031,0],[1152,12055,0],[1157,12073,0],[1153,12068,0],[1161,12078,0],[1160,12275,0],[1160,12294,0],[1200,12274,0],[1180,12274,0],[1200,12294,0],[1180,12294,0],[1219,12275,0],[1219,12295,0],[1239,12275,0],[1239,12295,0],[1259,12275,0],[1259,12294,0]]]] \ No newline at end of file diff --git a/Map-Templates/Antistasi-Tembelan-Island.Tembelan/PIC.jpg b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/PIC.jpg new file mode 100644 index 0000000000..69bd4e40cb Binary files /dev/null and b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/PIC.jpg differ diff --git a/Map-Templates/Antistasi-Tembelan-Island.Tembelan/description.ext b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/description.ext new file mode 100755 index 0000000000..9cce407d2e --- /dev/null +++ b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_tembelan_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_tembelan_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_tembelan_mapname_text; +overviewText = $STR_antistasi_mission_info_tembelan_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Tembelan is Ours!"; + description = "The population of Tembelan loves you!
The SDK brave soldiers have proven their valour, and Petros, Tembelans 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 = "Maru is Dead"; + subtitle = "Maru is Dead"; + description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Tembelan"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Tembelan is Destroyed"; + subtitle = "Tembelan got Destroyed by CSAT"; + description = "One third of the population in Tembelan has been murdered by CSAT.
Tembelan no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/A3-Antistasi/Templates/A3-AATemplate.Altis/mission.sqm b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/mission.sqm old mode 100644 new mode 100755 similarity index 62% rename from A3-Antistasi/Templates/A3-AATemplate.Altis/mission.sqm rename to Map-Templates/Antistasi-Tembelan-Island.Tembelan/mission.sqm index b9810cfb4d..74d871ef08 --- a/A3-Antistasi/Templates/A3-AATemplate.Altis/mission.sqm +++ b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/mission.sqm @@ -5,25 +5,25 @@ class EditorData angleGridStep=0.2617994; scaleGridStep=1; autoGroupingDist=10; - toggles=1538; + toggles=1025; class ItemIDProvider { - nextID=1558; + nextID=355; }; class MarkerIDProvider { - nextID=177; + nextID=4; }; class LayerIndexProvider { - nextID=468; + nextID=51; }; class Camera { - pos[]={3641.1074,62.994942,10248.348}; - dir[]={0,-0.70710683,0.70710683}; - up[]={0,0.70710677,0.70710677}; - aside[]={0.99999994,0,-0}; + pos[]={4825.2744,308.02106,1269.7025}; + dir[]={-0.16478749,-0.85274255,-0.49571803}; + up[]={-0.2689963,0.52234536,-0.80920202}; + aside[]={-0.94897389,-6.4563937e-007,0.31545871}; }; }; binarizationWanted=0; @@ -33,25 +33,35 @@ addons[]= "A3_Weapons_F_Ammoboxes", "A3_Modules_F", "A3_Characters_F", - "A3_Modules_F_Hc", + "A3_Weapons_F", "A3_Structures_F_EPC_Civ_InfoBoards", - "A3_Structures_F_Ind_AirPort", - "A3_Structures_F_Mil_Cargo", - "A3_Structures_F_Mil_TentHangar", - "A3_Structures_F_Exp_Infrastructure_Airports", "A3_Structures_F_Mil_Flags", "A3_Ui_F_Exp", "A3_Characters_F_Patrol", "A3_Characters_F_Exp", "A3_Structures_F_Exp_Military_Flags", "A3_Modules_F_Curator_Curator", - "A3_Props_F_Enoch_Military_Camps" + "A3_Props_F_Enoch_Military_Camps", + "A3_Structures_F_Ind_DieselPowerPlant", + "A3_Structures_F_Mil_Cargo", + "A3_Structures_F_Exp_Military_Fortifications", + "A3_Props_F_Exp_Commercial_Market", + "A3_Structures_F_Items_Vessels", + "A3_Structures_F_Heli_Items_Luggage", + "A3_Structures_F_Heli_Ind_Cargo", + "A3_Structures_F_Ind_Cargo", + "A3_Structures_F_Enoch_Military_Camps", + "A3_Structures_F_Orange_Humanitarian_Camps", + "A3_Structures_F_Mil_Helipads", + "A3_Structures_F_Exp_Military_ContainerBases", + "A3_Modules_F_Hc", + "A3_Structures_F_Mil_Fortification" }; class AddonsMetaData { class List { - items=14; + items=18; class Item0 { className="A3_Ui_F"; @@ -89,7112 +99,4829 @@ class AddonsMetaData }; class Item5 { - className="A3_Structures_F_Ind"; - name="Arma 3 - Industrial Structures"; + className="A3_Structures_F_Mil"; + name="Arma 3 - Military Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item6 { - className="A3_Structures_F_Mil"; - name="Arma 3 - Military Buildings and Structures"; + className="A3_Ui_F_Exp"; + name="Arma 3 Apex - User Interface"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item7 { - className="A3_Structures_F_Exp_Infrastructure"; - name="Arma 3 Apex - Infrastructure Objects"; + className="A3_Characters_F_Patrol"; + name="Arma 3 Patrol - Characters and Clothing"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item8 { - className="A3_Ui_F_Exp"; - name="Arma 3 Apex - User Interface"; + className="A3_Characters_F_Exp"; + name="Arma 3 Apex - Characters and Clothing"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item9 { - className="A3_Characters_F_Patrol"; - name="Arma 3 Patrol - Characters and Clothing"; + className="A3_Structures_F_Exp"; + name="Arma 3 Apex - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item10 { - className="A3_Characters_F_Exp"; - name="Arma 3 Apex - Characters and Clothing"; + className="A3_Modules_F_Curator"; + name="Arma 3 Zeus Update - Scripted Modules"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item11 { - className="A3_Structures_F_Exp"; - name="Arma 3 Apex - Buildings and Structures"; + className="A3_Props_F_Enoch"; + name="Arma 3 Enoch - Decorative and Mission Objects"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item12 { - className="A3_Modules_F_Curator"; - name="Arma 3 Zeus Update - Scripted Modules"; + className="A3_Structures_F_Ind"; + name="Arma 3 - Industrial Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item13 { - className="A3_Props_F_Enoch"; - name="Arma 3 Enoch - Decorative and Mission Objects"; + className="A3_Props_F_Exp"; + name="Arma 3 Apex - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item14 + { + className="A3_Structures_F"; + name="Arma 3 - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item15 + { + className="A3_Structures_F_Heli"; + name="Arma 3 Helicopters - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item16 + { + className="A3_Structures_F_Enoch_Military"; + name="Arma 3 Enoch - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item17 + { + className="A3_Structures_F_Orange"; + name="Arma 3 Orange - Buildings and Structures"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; }; }; -randomSeed=8109385; -class ScenarioData -{ - author=$STR_antistasi_credits_generic_author_text; -}; +randomSeed=14599179; class Mission { class Intel { - briefingName=$STR_antistasi_credits_generic_missionname_text; - overviewText=$STR_antistasi_credits_generic_version_text; + briefingName=$STR_antistasi_mission_info_tembelan_mapname_text; resistanceWest=0; - startWeather=0; - startWind=0; - forecastWeather=0.16536765; - forecastWind=0; - forecastWaves=0.34750906; - forecastLightnings=0.099999994; + startWind=0.1; + forecastWind=0.1; + forecastWaves=0.1; year=2035; month=6; day=1; - hour=6; + hour=10; minute=0; - startFogDecay=0.013; - forecastFogDecay=0.013; + startFogDecay=0.0049333; + forecastFogDecay=0.0049333; }; class Entities { - items=299; + items=164; class Item0 { dataType="Marker"; - position[]={20671.299,17.236,15727.05}; - name="factory_6"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=240; - b=100; - angle=324.89685; - id=0; - atlOffset=0.00019645691; + position[]={348.789,0,-231.93201}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=5; + atlOffset=15; }; class Item1 { dataType="Marker"; - position[]={27005.279,21.662001,21521.68}; - name="factory_7"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=100; - b=100; - angle=227.32204; - id=2; - atlOffset=-0.00027656555; + position[]={273.49649,-19.917158,10056.298}; + name="NATO_carrier"; + type="flag_UN"; + id=6; + atlOffset=8.0148087; }; class Item2 { dataType="Marker"; - position[]={20082.896,101.02,6728.3408}; - name="outpost_38"; + position[]={907.37842,32.244999,5451.0469}; + name="Synd_HQ"; markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=60; - b=60; - angle=36.850998; - id=4; - atlOffset=-9.1552734e-005; + type="rectangle"; + colorName="ColorPink"; + a=50; + b=50; + id=8; + atlOffset=22.09317; }; class Item3 { dataType="Marker"; - position[]={17436.436,13.962,13169.224}; - name="outpost_39"; - markerType="RECTANGLE"; - type="Empty"; + position[]={908.71045,2.7037606e+012,5453.2246}; + name="respawn_guerrila"; + text="Your Headquarters"; + type="hd_flag"; colorName="ColorGUER"; - a=108; - b=95; - angle=46.794998; - id=5; - atlOffset=2.2888184e-005; - }; - class Item4 - { - dataType="Marker"; - position[]={21021.795,24.11792,7307.7485}; - name="airport"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=265.3201; - b=200.60085; - angle=129.67987; - id=6; - atlOffset=1.7094784; - }; - class Item5 - { - dataType="Marker"; - position[]={23075.848,0,18812.463}; - name="airport_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=279.2023; - b=205.09465; - angle=304.11368; - id=7; - atlOffset=-3.1900001; - }; - class Item6 - { - dataType="Marker"; - position[]={19613.592,28.158596,15636.103}; - name="resource"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=89.556335; - b=69.559898; - angle=281.88538; - id=8; - }; - class Item7 - { - dataType="Marker"; - position[]={18483.797,24.765739,14277.46}; - name="resource_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=80; - b=40; - angle=76.925522; id=9; + atlOffset=2.7037606e+012; }; - class Item8 + class Item4 { - dataType="Marker"; - position[]={17098.65,24.885092,11295.575}; - name="resource_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=100; - b=80; - angle=64.347397; + dataType="Object"; + class PositionInfo + { + position[]={896.07397,10.719809,5453.7979}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="vehicleBox"; + }; id=10; + type="Box_East_AmmoVeh_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; }; - class Item9 + class Item5 { - dataType="Marker"; - position[]={18292.928,47.48,15534.244}; - name="resource_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=160; - b=70; - angle=181.06282; + dataType="Logic"; + class PositionInfo + { + position[]={882.24371,10.66123,5435.4834}; + }; + name="server"; id=11; + type="Logic"; + atlOffset=0.73122978; }; - class Item10 + class Item6 { - dataType="Marker"; - position[]={25413.35,9.8909998,20337.379}; - name="factory_5"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=80; - b=80; - angle=324.89685; + dataType="Logic"; + class PositionInfo + { + position[]={883.81793,10.578421,5434.0732}; + }; + name="garrison"; id=12; - atlOffset=0.0003528595; + type="Logic"; + atlOffset=0.64842033; }; - class Item11 + class Item7 { - dataType="Marker"; - position[]={12628.22,0,16374.55}; - name="factory"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=121.49196; - b=80.056549; - angle=38.800323; + dataType="Logic"; + class PositionInfo + { + position[]={885.60504,10.48805,5432.6514}; + }; + name="spawner"; id=13; - atlOffset=-33.912735; + type="Logic"; + atlOffset=0.55805016; }; - class Item12 + class Item8 { - dataType="Marker"; - position[]={14340.091,36.934258,18940.465}; - name="factory_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=120; - b=80; - angle=317.49139; + dataType="Logic"; + class PositionInfo + { + position[]={878.01135,10.852491,5432.7842}; + }; + name="hc"; + isPlayable=1; id=14; + type="HeadlessClient_F"; + atlOffset=0.92249107; }; - class Item13 + class Item9 { - dataType="Marker"; - position[]={23076.543,48.156364,7296.7842}; - name="outpost"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=138.99269; - b=85.299866; - angle=148.493; + dataType="Logic"; + class PositionInfo + { + position[]={887.48004,10.343506,5431.3193}; + }; + name="roadsX"; id=15; + type="Logic"; + atlOffset=0.41350555; }; - class Item14 - { - dataType="Marker"; - position[]={14832.187,7.0898438,11130.582}; - name="outpost_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=111.65083; - b=92.584541; - angle=223.67722; - id=16; - atlOffset=-1.1140766; - }; - class Item15 - { - dataType="Marker"; - position[]={16660.623,2.5780001,12307.622}; - name="seaport"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=68.870865; - b=90; - angle=323.24988; - id=17; - atlOffset=0.07685256; - }; - class Item16 + class Item10 { - dataType="Marker"; - position[]={15391.129,0,15859.363}; - name="seaport_1"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=131.52846; - b=91.684944; - angle=169.33798; + dataType="Logic"; + class PositionInfo + { + position[]={888.896,10.207113,5430.2373}; + }; + name="timer"; id=18; - atlOffset=-4.3425069; - }; - class Item17 - { - dataType="Marker"; - position[]={19352.627,195.6532,9680.4424}; - name="outpost_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=113.56775; - b=93.518616; - angle=263.16; - id=20; + type="Logic"; + atlOffset=0.27711296; }; - class Item18 + class Item11 { - dataType="Marker"; - position[]={16832.633,5.0803537,12054.586}; - name="outpost_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=58.410248; - b=65.217522; - angle=180.25404; - id=21; - }; - class Item19 - { - dataType="Marker"; - position[]={24070.148,-0.050999999,29143.369}; - name="CSAT_carrier"; - type="flag_CSAT"; - id=22; - atlOffset=185.91901; - }; - class Item20 - { - dataType="Marker"; - position[]={12538.913,-185.97,4160.5513}; - name="NATO_carrier"; - type="flag_UN"; - id=23; - atlOffset=-13.617798; - }; - class Item21 - { - dataType="Marker"; - position[]={20940.734,0,19235.641}; - name="outpost_37"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=120; - b=120; - angle=16.886997; - id=24; - atlOffset=-14.022084; - }; - class Item22 - { - dataType="Marker"; - position[]={23594.504,93.648438,21100.33}; - name="outpost_36"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=228.10043; - b=126.62511; - angle=20.485994; - id=25; - atlOffset=-1.1075211; - }; - class Item23 - { - dataType="Marker"; - position[]={21928.252,17.296,20985.117}; - name="outpost_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=200.56374; - b=120; - angle=319.12381; - id=26; - atlOffset=-1.1193371; - }; - class Item24 - { - dataType="Marker"; - position[]={28323.988,14.552761,25754.41}; - name="outpost_5"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=82.389435; - b=86.495293; - angle=148.493; - id=27; - }; - class Item25 - { - dataType="Marker"; - position[]={25258.553,85.927757,21827.684}; - name="outpost_6"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=114.15364; - b=88.959595; - angle=358.83786; - id=29; - }; - class Item26 - { - dataType="Marker"; - position[]={14778.72,0,16401.324}; - name="airport_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=647.73114; - b=193.50763; - angle=135.513; - id=31; - atlOffset=-18.090067; - }; - class Item27 - { - dataType="Marker"; - position[]={15324.894,0,16240.821}; - name="factory_8"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=67.430664; - b=62.17627; - id=32; - atlOffset=-10.015665; - }; - class Item28 - { - dataType="Marker"; - position[]={12850.134,0,16721.346}; - name="outpost_31"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=138.9547; - b=103.76668; - angle=305.90884; - id=35; - atlOffset=-86.045792; - }; - class Item29 - { - dataType="Marker"; - position[]={14215.958,74.00531,21225.672}; - name="outpost_34"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=95.520119; - b=107.11905; - angle=108.33795; - id=36; - }; - class Item30 - { - dataType="Marker"; - position[]={16583.912,35.143253,19013.328}; - name="outpost_13"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=87.919167; - b=63.997223; - angle=320.76587; - id=37; - }; - class Item31 - { - dataType="Marker"; - position[]={20604.135,37.087017,18818.229}; - name="outpost_8"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=41.116524; - b=54.685825; - angle=321.35321; - id=38; - }; - class Item32 - { - dataType="Marker"; - position[]={20627.328,0,20103.941}; - name="outpost_9"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=73.530098; - b=137.52365; - angle=93.484039; - id=39; - atlOffset=-51.286819; - }; - class Item33 - { - dataType="Marker"; - position[]={9930.5068,243.52148,19386.279}; - name="outpost_28"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=124.20757; - b=92.790062; - angle=11.914993; - id=41; - atlOffset=0.8896637; - }; - class Item34 - { - dataType="Marker"; - position[]={12293.894,123.99323,8894.8789}; - name="outpost_40"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=78.936775; - b=67.439941; - angle=243.71994; - id=42; - }; - class Item35 - { - dataType="Marker"; - position[]={8291.4502,75.940002,10065.422}; - name="outpost_41"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=59.033436; - b=77.987457; - angle=54.859959; - id=43; - atlOffset=-0.90668488; - }; - class Item36 - { - dataType="Marker"; - position[]={5372.2686,44.961426,14237.143}; - name="outpost_42"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=195; - b=100; - angle=348.11884; - id=44; - atlOffset=1.4790726; - }; - class Item37 - { - dataType="Marker"; - position[]={11503.476,0,11701.17}; - name="airport_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=331.07092; - b=181.34116; - angle=314.02783; - id=45; - atlOffset=-22.98; - }; - class Item38 - { - dataType="Marker"; - position[]={9096.5146,15.348633,21508.184}; - name="airport_5"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=200; - b=100; - angle=143.29141; - id=46; - atlOffset=-1.2858829; - }; - class Item39 - { - dataType="Marker"; - position[]={12479.839,74.504509,15197.453}; - name="outpost_11"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=93.247932; - b=59.666313; - angle=179.33261; - id=47; - }; - class Item40 - { - dataType="Marker"; - position[]={3911.4023,50.124836,12297.667}; - name="outpost_14"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=35.515831; - b=30.457802; - angle=208.80701; - id=50; - }; - class Item41 - { - dataType="Marker"; - position[]={18089.898,18.779161,19181.254}; - name="outpost_18"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=64.573318; - b=62.230595; - angle=5.8140187; - id=53; - }; - class Item42 - { - dataType="Marker"; - position[]={9707.4619,2.5912011,22305.9}; - name="outpost_19"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=75.518005; - b=40; - angle=180.64592; - id=54; - }; - class Item43 - { - dataType="Marker"; - position[]={3208.104,0,12903.761}; - name="seaport_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=90; - b=77.211243; - angle=97.696968; - id=55; - atlOffset=-2; - }; - class Item44 - { - dataType="Marker"; - position[]={4424.5391,0,12602.417}; - name="resource_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBrown"; - a=40; - b=40; - angle=128.39394; - id=56; - atlOffset=-37.435524; - }; - class Item45 - { - dataType="Marker"; - position[]={5890.0864,217.63792,20206.713}; - name="resource_5"; - markerType="RECTANGLE"; - type="Empty"; - a=120; - b=100; - angle=281.88538; - id=57; + dataType="Object"; + class PositionInfo + { + position[]={907.05811,10.822423,5443.748}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=19; + type="IG_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; }; - class Item46 + class Item12 { - dataType="Marker"; - position[]={5955.3052,107.53288,12531.119}; - name="resource_6"; - markerType="RECTANGLE"; - type="Empty"; - a=80; - b=60; - angle=139.39099; - id=58; - atlOffset=7.6293945e-006; + dataType="Logic"; + class PositionInfo + { + position[]={890.16559,10.043829,5428.9834}; + }; + name="sidesX"; + id=20; + type="Logic"; + atlOffset=0.11382866; }; - class Item47 + class Item13 { - dataType="Marker"; - position[]={6339.8169,0,14889.688}; - name="factory_2"; - markerType="RECTANGLE"; - type="Empty"; - a=55; - b=40; - angle=27.999996; - id=59; - atlOffset=-35.288883; + dataType="Logic"; + class PositionInfo + { + position[]={891.0777,9.9300003,5428.1514}; + }; + name="killZones"; + id=21; + type="Logic"; }; - class Item48 + class Item14 { - dataType="Marker"; - position[]={6191,0,16249}; - name="factory_3"; - markerType="RECTANGLE"; - type="Empty"; - a=110; - b=60; - angle=178.99994; - id=60; - atlOffset=-43; - }; - class Item49 - { - dataType="Marker"; - position[]={3269.7837,6.9041038,12451.454}; - name="factory_4"; - markerType="RECTANGLE"; - type="Empty"; - a=40; - b=40; - angle=72.913567; - id=61; - }; - class Item50 - { - dataType="Marker"; - position[]={11013,0,12655}; - name="factory_9"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=100; - b=100; - angle=26.999985; - id=62; - atlOffset=-18.755997; - }; - class Item51 - { - dataType="Marker"; - position[]={8226.3398,14.246,10939.702}; - name="factory_10"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=100; - b=100; - angle=50.816978; - id=63; - atlOffset=-0.00012683868; - }; - class Item52 - { - dataType="Marker"; - position[]={4227.8091,18.129999,15052.771}; - name="factory_11"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorOrange"; - a=75; - b=60; - angle=180.3139; - id=64; - atlOffset=-0.00013160706; - }; - class Item53 - { - dataType="Marker"; - position[]={18726.775,209.29594,10212.497}; - name="outpost_20"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=90.591553; - b=102.88486; - angle=79.841003; - id=67; - }; - class Item54 - { - dataType="Marker"; - position[]={17860.475,88.995438,11747.802}; - name="outpost_21"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=69.961136; - b=65.694496; - angle=148.493; - id=68; - }; - class Item55 - { - dataType="Marker"; - position[]={6841.707,0,16108.049}; - name="outpost_22"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=79.827721; - b=78.197495; - angle=147.99994; - id=69; - atlOffset=-70.221909; - }; - class Item56 - { - dataType="Marker"; - position[]={26435.035,66.514542,22140.609}; - name="outpost_24"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=115.21288; - b=89.814232; - angle=187.06653; - id=71; - }; - class Item57 - { - dataType="Marker"; - position[]={10011.299,16.417982,11235.339}; - name="outpost_25"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=60; - b=40; - angle=103.32623; - id=91; - }; - class Item58 - { - dataType="Marker"; - position[]={4551.5327,261.15918,15426.164}; - name="outpost_26"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=80; - b=84.554283; - angle=311.44165; - id=93; - atlOffset=-1.2987671; - }; - class Item59 - { - dataType="Marker"; - position[]={8391.2852,180.06404,18250.793}; - name="outpost_27"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=36.370392; - b=50.811649; - angle=246.62001; - id=94; - }; - class Item60 - { - dataType="Marker"; - position[]={3336.6682,-76.557083,17040.561}; - name="seaPatrol"; - type="Empty"; - id=167; - }; - class Item61 - { - dataType="Marker"; - position[]={3246.4033,-106.48155,15365.642}; - name="seaPatrol_1"; - type="Empty"; - id=168; - atlOffset=7.6293945e-006; - }; - class Item62 - { - dataType="Marker"; - position[]={3003.3965,-32.717815,13714.215}; - name="seaPatrol_2"; - type="Empty"; - id=169; - atlOffset=-3.8146973e-006; - }; - class Item63 - { - dataType="Marker"; - position[]={2778.6235,-22.222387,12865.009}; - name="seaPatrol_3"; - type="Empty"; - id=170; - }; - class Item64 - { - dataType="Marker"; - position[]={2677.7971,-27.117685,12421.866}; - name="seaPatrol_4"; - type="Empty"; - id=171; - }; - class Item65 - { - dataType="Marker"; - position[]={2716.6533,-51.24736,10868.366}; - name="seaPatrol_5"; - type="Empty"; - id=172; - }; - class Item66 - { - dataType="Marker"; - position[]={14517.476,-138.09663,9156.4111}; - name="seaPatrol_6"; - type="Empty"; - id=173; - }; - class Item67 - { - dataType="Marker"; - position[]={13563.509,-95.191154,11121.483}; - name="seaPatrol_7"; - type="Empty"; - id=174; - atlOffset=7.6293945e-006; - }; - class Item68 - { - dataType="Marker"; - position[]={15388.874,-90.985153,12976.936}; - name="seaPatrol_8"; - type="Empty"; - id=175; - atlOffset=7.6293945e-006; - }; - class Item69 - { - dataType="Marker"; - position[]={15372.398,-56.407341,14833.389}; - name="seaPatrol_9"; - type="Empty"; - id=176; - atlOffset=3.8146973e-006; - }; - class Item70 - { - dataType="Marker"; - position[]={20686.037,0,19462.613}; - name="seaport_3"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=80; - b=97.842819; - angle=128.327; - id=192; - atlOffset=-4.2644506; - }; - class Item71 - { - dataType="Marker"; - position[]={27609.357,3.9330001,24576.766}; - name="seaport_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorBlue"; - a=87.280823; - b=91.807388; - angle=255.87393; - id=193; - atlOffset=1.3478315; - }; - class Item72 - { - dataType="Marker"; - position[]={27998.135,-27.567476,24279.234}; - name="seaPatrol_10"; - type="Empty"; - id=194; - }; - class Item73 - { - dataType="Marker"; - position[]={28477.717,-38.469158,24855.266}; - name="seaPatrol_11"; - type="Empty"; - id=195; - }; - class Item74 - { - dataType="Marker"; - position[]={28748.32,-32.852638,25988.58}; - name="seaPatrol_12"; - type="Empty"; - id=196; - }; - class Item75 - { - dataType="Marker"; - position[]={27754.328,-41.639271,25876.051}; - name="seaPatrol_13"; - type="Empty"; - id=197; - }; - class Item76 - { - dataType="Marker"; - position[]={26996.111,-30.678017,25463.451}; - name="seaPatrol_14"; - type="Empty"; - id=198; - }; - class Item77 - { - dataType="Marker"; - position[]={25961.938,-20.205185,24429.273}; - name="seaPatrol_16"; - type="Empty"; - id=200; - }; - class Item78 - { - dataType="Marker"; - position[]={26494.361,-15.289934,24999.549}; - name="seaPatrol_15"; - type="Empty"; - id=202; - }; - class Item79 - { - dataType="Marker"; - position[]={21036.824,-6.1421623,19983.729}; - name="seaPatrol_17"; - type="Empty"; - id=203; - atlOffset=4.7683716e-007; - }; - class Item80 - { - dataType="Marker"; - position[]={21439.777,-34.234825,20565.129}; - name="seaPatrol_18"; - type="Empty"; - id=204; - }; - class Item81 - { - dataType="Marker"; - position[]={20829.301,-111.35175,21007.574}; - name="seaPatrol_19"; - type="Empty"; - id=205; - atlOffset=-7.6293945e-006; - }; - class Item82 - { - dataType="Marker"; - position[]={19648.564,-57.419949,20357.688}; - name="seaPatrol_20"; - type="Empty"; - id=206; - }; - class Item83 - { - dataType="Marker"; - position[]={18765.316,-69.89045,19432.197}; - name="seaPatrol_21"; - type="Empty"; - id=207; - atlOffset=-7.6293945e-006; - }; - class Item84 - { - dataType="Marker"; - position[]={18104.803,-14.177645,18433.744}; - name="seaPatrol_22"; - type="Empty"; - id=208; - atlOffset=-9.5367432e-007; - }; - class Item85 - { - dataType="Marker"; - position[]={17654.916,-45.156113,19878.459}; - name="seaPatrol_23"; - type="Empty"; - id=209; - }; - class Item86 - { - dataType="Marker"; - position[]={17094.244,-35.017235,20416.088}; - name="seaPatrol_24"; - type="Empty"; - id=210; - }; - class Item87 - { - dataType="Marker"; - position[]={24401.896,-46.708607,24632.064}; - name="seaPatrol_25"; - type="Empty"; - id=211; - }; - class Item88 - { - dataType="Marker"; - position[]={21877.271,-84.539009,22557.137}; - name="seaPatrol_26"; - type="Empty"; - id=213; - }; - class Item89 - { - dataType="Marker"; - position[]={22721.441,-93.355537,24119.252}; - name="seaPatrol_27"; - type="Empty"; - id=214; - }; - class Item90 - { - dataType="Marker"; - position[]={16083.18,15.853616,17002.723}; - name="outpost_10"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=150; - b=150; - angle=59.834778; - id=40; - }; - class Item91 - { - dataType="Marker"; - position[]={15176.144,0,17362.143}; - name="outpost_23"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=130; - b=119.1669; - angle=132.5735; - id=822; - atlOffset=-17.914383; - }; - class Item92 - { - dataType="Marker"; - position[]={3088.7871,0,13200.854}; - name="outpost_29"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=122.33163; - b=104.55561; - angle=198.82098; - id=863; - atlOffset=-47.813633; - }; - class Item93 - { - dataType="Marker"; - position[]={6565.8325,0,22679.818}; - name="outpost_30"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=68.098083; - b=67.079865; - angle=207.99992; - id=864; - atlOffset=-91.033112; - }; - class Item94 - { - dataType="Marker"; - position[]={8850.5615,0,23451.566}; - name="outpost_32"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=72.266563; - b=72.315842; - angle=207.99992; - id=866; - atlOffset=-78.791023; - }; - class Item95 - { - dataType="Marker"; - position[]={5473.0254,0,15003.354}; - name="outpost_33"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=80; - b=106.27872; - angle=41.308632; - id=867; - atlOffset=-27.299999; - }; - class Item96 - { - dataType="Marker"; - position[]={4842.5063,0,21950.449}; - name="outpost_7"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=127.84441; - b=94.437592; - angle=6.0414243; - id=868; - atlOffset=-340.86981; - }; - class Item97 - { - dataType="Marker"; - position[]={7550.8413,0,12182.686}; - name="resource_7"; - markerType="RECTANGLE"; - type="Empty"; - a=40; - b=40; - angle=139.39099; - id=869; - atlOffset=-32.556042; - }; - class Item98 - { - dataType="Marker"; - position[]={8915,0,7477}; - name="outpost_15"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=90; - b=90; - angle=180.99997; - id=871; - atlOffset=-67.197334; - }; - class Item99 - { - dataType="Marker"; - position[]={13785.565,0,6390.001}; - name="outpost_16"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGreen"; - a=146.16084; - b=108.68304; - angle=180.99997; - id=872; - atlOffset=-60.326199; - }; - class Item100 - { - dataType="Marker"; - position[]={4276.1841,0,20684.613}; - name="outpost_35"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=62.662628; - b=62.290237; - angle=10.999998; - id=898; - atlOffset=-292.7337; - }; - class Item101 - { - dataType="Marker"; - position[]={3605.7153,17.346928,10279.321}; - name="Synd_HQ"; - markerType="RECTANGLE"; - type="rectangle"; - a=50; - b=50; - id=933; - atlOffset=1.6032429; - }; - class Item102 - { - dataType="Marker"; - position[]={3607.0483,2.7037606e+012,10281.5}; - name="respawn_guerrila"; - text="Your Headquarters"; - type="hd_flag"; - colorName="ColorGUER"; - id=934; - atlOffset=2.7037606e+012; - }; - class Item103 - { - dataType="Object"; - class PositionInfo - { - position[]={3611.6396,16.176582,10280.448}; - angles[]={6.2725215,0,6.2392201}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="vehicleBox"; - }; - id=935; - type="Box_East_AmmoVeh_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item104 - { - dataType="Logic"; - class PositionInfo - { - position[]={3603.4663,15.792626,10272.64}; - angles[]={6.2631893,0,6.2485328}; - }; - name="server"; - id=939; - type="Logic"; - }; - class Item105 - { - dataType="Logic"; - class PositionInfo - { - position[]={3605.0405,15.709817,10271.228}; - angles[]={6.2631893,0,6.2485328}; - }; - name="garrison"; - id=940; - type="Logic"; - }; - class Item106 - { - dataType="Logic"; - class PositionInfo - { - position[]={3606.8276,15.619447,10269.807}; - angles[]={6.2631893,0,6.2485328}; - }; - name="spawner"; - id=941; - type="Logic"; - }; - class Item107 - { - dataType="Logic"; - class PositionInfo - { - position[]={3599.2339,15.983887,10269.939}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc"; - isPlayable=1; - id=942; - type="HeadlessClient_F"; - }; - class Item108 - { - dataType="Logic"; - class PositionInfo - { - position[]={3608.7026,15.474901,10268.476}; - angles[]={6.2631893,0,6.2046809}; - }; - name="roadsX"; - id=945; - type="Logic"; - }; - class Item109 - { - dataType="Logic"; - class PositionInfo - { - position[]={3597.7456,16.048376,10273.652}; - angles[]={6.2818484,4.511023,6.2432065}; - }; - name="HC_commanderX"; - id=946; - type="HighCommand"; - }; - class Item110 - { - dataType="Logic"; - class PositionInfo - { - position[]={3592.0493,16.267527,10272.373}; - angles[]={6.2631893,1.3577622,6.1506338}; - }; - id=947; - type="HighCommandSubordinate"; - }; - class Item111 - { - dataType="Logic"; - class PositionInfo - { - position[]={3610.1187,15.338509,10267.392}; - angles[]={6.2325621,0,6.2046804}; - }; - name="timer"; - id=949; - type="Logic"; - }; - class Item112 - { - dataType="Object"; - class PositionInfo - { - position[]={3610.7017,16.36245,10275.696}; - angles[]={0.014660765,0,6.2139654}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="boxX"; - }; - id=950; - type="IG_supplyCrate_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item113 - { - dataType="Logic"; - class PositionInfo - { - position[]={3611.3882,15.175223,10266.14}; - angles[]={6.2325621,0,6.2046804}; - }; - name="sidesX"; - id=1010; - type="Logic"; - }; - class Item114 - { - dataType="Logic"; - class PositionInfo - { - position[]={3612.2993,15.061396,10265.308}; - angles[]={6.2325621,0,6.2046804}; - }; - name="killZones"; - id=1011; - type="Logic"; - }; - class Item115 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=60; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={3607.4099,15.69819,10275.639}; - angles[]={0.014660765,0,6.2232509}; - }; - side="Independent"; - flags=6; - class Attributes - { - skill=1; - name="commanderX"; - description="Default Commander"; - isPlayer=1; - }; - id=1013; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={3610.9431,15.376605,10272.114}; - angles[]={6.253861,6.2412972,6.213963}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1014; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.4028,14.829173,10278.267}; - angles[]={0.012000273,6.2412972,6.2179451}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1020; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.4768,14.704896,10278.502}; - angles[]={0.012000273,0,6.2445378}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1022; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.4067,14.617949,10278.153}; - angles[]={6.2805333,0,6.259192}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1024; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.3059,14.541884,10278.332}; - angles[]={6.2805333,0,6.253861}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1026; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={3634.2937,14.465902,10278.552}; - angles[]={6.2432079,0,0.0080009829}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1028; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={3619.9419,14.99068,10278.206}; - angles[]={0.012000273,0,6.2179451}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1030; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.2998,14.802361,10281.062}; - angles[]={0.012000273,6.2412972,6.2179451}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1032; - type="I_G_Soldier_AR_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.3738,14.699122,10281.297}; - angles[]={6.2805333,0,6.259192}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1034; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.3037,14.627873,10280.948}; - angles[]={6.2805333,0,6.259192}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1036; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item11 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.2029,14.552358,10281.127}; - angles[]={6.2805333,0,6.253861}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1038; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item12 - { - dataType="Object"; - class PositionInfo - { - position[]={3634.1907,14.576846,10281.347}; - angles[]={6.2432079,0,0.0080009829}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1040; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item13 - { - dataType="Object"; - class PositionInfo - { - position[]={3619.8389,14.963868,10281.001}; - angles[]={0.012000273,0,6.2179451}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1042; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item14 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.3738,14.728109,10284.298}; - angles[]={6.2685165,0,6.2591896}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1046; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item15 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.3037,14.652675,10283.949}; - angles[]={6.2685165,0,6.2591896}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1048; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item16 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.2029,14.622108,10284.128}; - angles[]={6.2698507,0,0.0079936078}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1050; - type="I_G_engineer_F"; - atlOffset=9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item17 - { - dataType="Object"; - class PositionInfo - { - position[]={3634.1907,14.64894,10284.348}; - angles[]={6.2698536,0,0.0079935296}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1052; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item18 - { - dataType="Object"; - class PositionInfo - { - position[]={3619.8389,15.026655,10284.002}; - angles[]={6.2272439,0,6.2179451}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1054; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item19 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.27,14.76855,10286.885}; - angles[]={6.2685165,0,6.2591896}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1058; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item20 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.2,14.690199,10286.536}; - angles[]={6.2698536,0,6.2578602}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1060; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item21 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.0991,14.655776,10286.715}; - angles[]={6.2698536,0,0.0079935296}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1062; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item22 - { - dataType="Object"; - class PositionInfo - { - position[]={3634.0869,14.683905,10286.935}; - angles[]={6.2685208,0,0.0093286335}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1064; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item23 - { - dataType="Object"; - class PositionInfo - { - position[]={3619.7351,15.12558,10286.589}; - angles[]={6.2685208,0,6.1769204}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1066; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item24 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.3989,14.806094,10284.178}; - angles[]={6.2685208,6.1574922,6.1769204}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1044; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item25 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.4939,14.833896,10286.765}; - angles[]={6.2685208,0,6.1769204}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1056; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item26 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.6023,14.795665,10289.511}; - angles[]={6.2698536,0,6.2578602}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1417; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item27 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.5322,14.716789,10289.162}; - angles[]={6.2698536,0,6.2578602}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1419; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item28 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.4314,14.694407,10289.341}; - angles[]={6.2685208,0,0.0093286335}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1421; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item29 - { - dataType="Object"; - class PositionInfo - { - position[]={3634.4192,14.725517,10289.561}; - angles[]={6.2685208,0,0.0093286335}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1423; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item30 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.0674,15.128654,10289.215}; - angles[]={6.2685208,0,6.1769204}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1425; - type="I_G_officer_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item31 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.8262,14.863952,10289.391}; - angles[]={6.2685165,0,6.2591896}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1427; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item32 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.6758,14.89904,10292.585}; - angles[]={6.2445378,0,6.2578578}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1429; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item33 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.6057,14.802868,10292.236}; - angles[]={6.2551947,0,6.247201}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1431; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item34 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.5049,14.771727,10292.415}; - angles[]={6.2551947,0,0.0093286335}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1433; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item35 - { - dataType="Object"; - class PositionInfo - { - position[]={3634.4927,14.805766,10292.635}; - angles[]={6.2551947,0,0.0093286335}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1435; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item36 - { - dataType="Object"; - class PositionInfo - { - position[]={3620.1409,15.237556,10292.289}; - angles[]={6.2365522,0,6.1769204}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1437; - type="I_G_officer_F"; - atlOffset=9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item37 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.8997,14.964696,10292.465}; - angles[]={6.2445378,0,6.2578578}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1439; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item38 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.709,15.089675,10295.571}; - angles[]={6.2445378,0,6.2578578}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1498; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item39 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.6389,14.993293,10295.223}; - angles[]={6.2551947,0,6.247201}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1500; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item40 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.5381,14.893919,10295.401}; - angles[]={6.2551947,0,6.247201}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1502; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item41 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.5259,14.861694,10295.621}; - angles[]={6.2551947,0,0.0093286335}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1504; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item42 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.1741,15.693403,10295.275}; - angles[]={6.2365522,0,6.1769204}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1506; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item43 - { - dataType="Object"; - class PositionInfo - { - position[]={3619.9329,15.384641,10295.451}; - angles[]={6.2445378,0,6.1690178}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1508; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item44 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.5605,15.217278,10298.836}; - angles[]={6.2458687,0,6.247201}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1510; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item45 - { - dataType="Object"; - class PositionInfo - { - position[]={3625.4905,15.098813,10298.487}; - angles[]={6.2458687,0,6.247201}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1512; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item46 - { - dataType="Object"; - class PositionInfo - { - position[]={3628.3896,15.001105,10298.666}; - angles[]={6.2458687,0,6.247201}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1514; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item47 - { - dataType="Object"; - class PositionInfo - { - position[]={3631.3774,15.023723,10298.886}; - angles[]={6.2192731,0,0.02666023}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1516; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item48 - { - dataType="Object"; - class PositionInfo - { - position[]={3617.0256,15.850656,10298.54}; - angles[]={6.2312322,0,6.1690178}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1518; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item49 - { - dataType="Object"; - class PositionInfo - { - position[]={3619.7844,15.543464,10298.716}; - angles[]={6.2312322,0,6.1690178}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1520; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item50 - { - dataType="Object"; - class PositionInfo - { - position[]={3621.3738,15.467607,10301.581}; - angles[]={6.2458706,0,6.1545658}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1522; - type="I_G_Soldier_LAT_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item51 - { - dataType="Object"; - class PositionInfo - { - position[]={3624.3037,15.524534,10301.232}; - angles[]={5.957521,0,0.24143139}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1524; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item52 - { - dataType="Object"; - class PositionInfo - { - position[]={3627.2029,15.174692,10301.411}; - angles[]={6.2192731,0,6.2738566}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1526; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item53 - { - dataType="Object"; - class PositionInfo - { - position[]={3630.1907,15.167741,10301.631}; - angles[]={6.2192731,0,0.02666023}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1528; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item54 - { - dataType="Object"; - class PositionInfo - { - position[]={3615.8389,16.323023,10301.285}; - angles[]={5.8855929,0,5.4282241}; - }; - side="Independent"; - flags=4; - class Attributes - { - skill=1; - description="Officer"; - isPlayable=1; - }; - id=1530; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item55 - { - dataType="Object"; - class PositionInfo - { - position[]={3618.5977,15.822173,10301.461}; - angles[]={6.2458706,0,6.1545658}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Machinegunner"; - isPlayable=1; - }; - id=1532; - type="I_G_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item56 - { - dataType="Object"; - class PositionInfo - { - position[]={3616.947,14.993358,10272.001}; - angles[]={6.253861,0,6.2325621}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Paramedic"; - isPlayable=1; - }; - id=1016; - type="I_G_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item57 - { - dataType="Object"; - class PositionInfo - { - position[]={3619.9722,14.865136,10272.26}; - angles[]={6.2458687,0,6.2405448}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Engineer"; - isPlayable=1; - }; - id=1017; - type="I_G_engineer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item58 - { - dataType="Object"; - class PositionInfo - { - position[]={3622.5569,14.771102,10272.666}; - angles[]={6.2458706,0,6.259192}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="Grenadier"; - isPlayable=1; - }; - id=1018; - type="I_G_Soldier_GL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item59 - { - dataType="Object"; - class PositionInfo - { - position[]={3614.0171,15.170384,10272.35}; - angles[]={6.253861,0,6.213963}; - }; - side="Independent"; - flags=4; - class Attributes - { - description="AT Launcher"; - isPlayable=1; - }; - id=1015; - type="I_G_Soldier_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01FRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=1067; - class CustomAttributes - { - class Attribute0 - { - property="groupID"; - expression="_this setGroupID [_value];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Guerillas"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item116 - { - dataType="Group"; - side="Independent"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={3601.614,15.950262,10279.248}; - angles[]={6.2725215,2.1016905,6.2485409}; - }; - side="Independent"; - flags=6; - class Attributes - { - name="petros"; - }; - id=1182; - type="I_G_officer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06GRE"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - class Attribute2 - { - property="face"; - expression="_this setface _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=1068; - class CustomAttributes - { - class Attribute0 - { - property="groupID"; - expression="_this setGroupID [_value];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Petros"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item117 - { - dataType="Object"; - class PositionInfo - { - position[]={3604.6182,16.735788,10282.353}; - angles[]={0.014660765,0,6.2232509}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="mapX"; - }; - id=1098; - type="MapBoard_seismic_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item118 - { - dataType="Marker"; - position[]={21332.969,18.857756,7321.6826}; - name="spawnpoint"; - type="hd_start"; - angle=28.14724; - id=1099; - }; - class Item119 - { - dataType="Marker"; - position[]={22912.727,9.9300003,19079.26}; - name="spawnPoint_1"; - type="hd_start"; - angle=311.68082; - id=1100; - atlOffset=-1.441308; - }; - class Item120 - { - dataType="Marker"; - position[]={26935.59,21.379999,24765.568}; - name="airport_2"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorEAST"; - a=296.36325; - b=131.5975; - angle=130.48837; - id=1101; - atlOffset=1.431879; - }; - class Item121 - { - dataType="Marker"; - position[]={26833.08,27.041002,24434.344}; - name="spawnPoint_2"; - type="hd_start"; - angle=220.45634; - id=1102; - }; - class Item122 - { - dataType="Marker"; - position[]={14415.215,16.554316,16811.631}; - name="spawnPoint_3"; - type="hd_start"; - angle=223.34677; - id=1103; - }; - class Item123 - { - dataType="Marker"; - position[]={11565.08,25.18574,12096.762}; - name="spawnPoint_4"; - type="hd_start"; - angle=286.13657; - id=1104; - }; - class Item124 - { - dataType="Marker"; - position[]={9184.3438,14.790446,21734.248}; - name="spawnPoint_5"; - type="hd_start"; - angle=143.57869; - id=1105; - }; - class Item125 - { - dataType="Marker"; - position[]={9210.2285,272.23004,19280.602}; - name="outpost_12"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=73.602417; - b=78.301773; - angle=11.914993; - id=1106; - }; - class Item126 - { - dataType="Marker"; - position[]={3181.1331,2.4200001,12482.095}; - name="control"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1107; - atlOffset=9.059906e-006; - }; - class Item127 - { - dataType="Marker"; - position[]={4219.2031,46.111389,12251.489}; - name="control_1"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1108; - }; - class Item128 - { - dataType="Marker"; - position[]={5096.9497,24.480274,13859.174}; - name="control_2"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1109; - }; - class Item129 - { - dataType="Marker"; - position[]={5202.4297,18.541693,14485.633}; - name="control_3"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1110; - }; - class Item130 - { - dataType="Marker"; - position[]={3631.2336,7.4565849,13874.588}; - name="control_4"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1111; - }; - class Item131 - { - dataType="Marker"; - position[]={4386.7471,71.040924,16015.587}; - name="control_5"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1112; - }; - class Item132 - { - dataType="Marker"; - position[]={5952.9072,236.78763,19864.762}; - name="control_6"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1113; - }; - class Item133 - { - dataType="Marker"; - position[]={9128.2422,20.68099,22068.809}; - name="control_7"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1114; - }; - class Item134 - { - dataType="Marker"; - position[]={8409.0273,55.321545,20834.262}; - name="control_8"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1115; - }; - class Item135 - { - dataType="Marker"; - position[]={9351.292,38.454903,21243.428}; - name="control_9"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1116; - }; - class Item136 - { - dataType="Marker"; - position[]={9466.1748,14.863552,21870.887}; - name="control_10"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1117; - }; - class Item137 - { - dataType="Marker"; - position[]={8783.5254,99.873222,15788.32}; - name="control_11"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1118; - }; - class Item138 - { - dataType="Marker"; - position[]={7240.957,4.4888473,11029.49}; - name="control_12"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1119; - }; - class Item139 - { - dataType="Marker"; - position[]={10771.739,3.4747643,10873.154}; - name="control_13"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1120; - }; - class Item140 - { - dataType="Marker"; - position[]={10830.928,17.216188,12156.106}; - name="control_14"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1121; - }; - class Item141 - { - dataType="Marker"; - position[]={10093.558,18.734219,12919.797}; - name="control_15"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1122; - }; - class Item142 - { - dataType="Marker"; - position[]={12377.377,21.578207,15871.573}; - name="control_16"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1123; - }; - class Item143 - { - dataType="Marker"; - position[]={11293.307,58.806793,17517.594}; - name="control_17"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1124; - }; - class Item144 - { - dataType="Marker"; - position[]={13547.545,19.099752,18669.258}; - name="control_18"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1125; - }; - class Item145 - { - dataType="Marker"; - position[]={14299.458,28.614883,19467.055}; - name="control_19"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1126; - }; - class Item146 - { - dataType="Marker"; - position[]={13645.276,19.155266,16084.521}; - name="control_20"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1127; - atlOffset=-3.8146973e-006; - }; - class Item147 - { - dataType="Marker"; - position[]={15868.175,14.615435,17421.17}; - name="control_21"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1128; - }; - class Item148 - { - dataType="Marker"; - position[]={15986.493,8.0299902,16130.729}; - name="control_22"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1129; - atlOffset=3.1471252e-005; - }; - class Item149 - { - dataType="Marker"; - position[]={18362.127,19.228302,17342.16}; - name="control_23"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1130; - }; - class Item150 - { - dataType="Marker"; - position[]={17490.688,5.5569239,14324.797}; - name="control_24"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1131; - }; - class Item151 - { - dataType="Marker"; - position[]={18271.459,27.275703,12900.734}; - name="control_25"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1132; - }; - class Item152 - { - dataType="Marker"; - position[]={20228.654,52.020004,9768.0547}; - name="control_26"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1133; - }; - class Item153 - { - dataType="Marker"; - position[]={21586.922,14.105127,7801.9902}; - name="control_27"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1134; - }; - class Item154 - { - dataType="Marker"; - position[]={20792.029,36.949718,16645.305}; - name="control_28"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1135; - }; - class Item155 - { - dataType="Marker"; - position[]={21685.58,22.36945,17643.285}; - name="control_29"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1136; - }; - class Item156 - { - dataType="Marker"; - position[]={22971.109,13.492899,19366.07}; - name="control_30"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1137; - }; - class Item157 - { - dataType="Marker"; - position[]={24790.133,20.474581,20720.881}; - name="control_31"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1138; - }; - class Item158 - { - dataType="Marker"; - position[]={25990.26,24.751326,21568.287}; - name="control_32"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1139; - }; - class Item159 - { - dataType="Marker"; - position[]={26981.279,11.84,23830.973}; - name="control_33"; - markerType="RECTANGLE"; - type="rectangle"; - a=15; - b=15; - angle=231.22296; - id=1140; - }; - class Item160 - { - dataType="Marker"; - position[]={5931.3213,35.499817,22072.861}; - name="control_34"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1141; - atlOffset=-180.69971; - }; - class Item161 - { - dataType="Marker"; - position[]={4078.9751,133.23485,22090.877}; - name="control_35"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1142; - }; - class Item162 - { - dataType="Marker"; - position[]={3876.7268,150.10907,21272.254}; - name="control_36"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1143; - }; - class Item163 - { - dataType="Marker"; - position[]={7787.8447,98.140869,21684.877}; - name="control_37"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1144; - atlOffset=-25.776688; - }; - class Item164 - { - dataType="Marker"; - position[]={3261.9119,122.53696,19385.77}; - name="control_38"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1145; - atlOffset=-42.672791; - }; - class Item165 - { - dataType="Marker"; - position[]={4095.1401,290.75259,19930.941}; - name="control_39"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1146; - }; - class Item166 - { - dataType="Marker"; - position[]={5528.4966,173.61342,21299.682}; - name="control_40"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1147; - }; - class Item167 - { - dataType="Marker"; - position[]={8185.0068,83.494675,22893.648}; - name="control_41"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1148; - }; - class Item168 - { - dataType="Marker"; - position[]={14258.698,96.381104,22076.549}; - name="control_42"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1149; - atlOffset=24.824684; - }; - class Item169 - { - dataType="Marker"; - position[]={8006.2344,70.981575,20042.875}; - name="control_43"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1150; - }; - class Item170 - { - dataType="Marker"; - position[]={5771.7959,189.49142,19094.035}; - name="control_44"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1151; - }; - class Item171 - { - dataType="Marker"; - position[]={11738.693,45.491325,8850.6113}; - name="control_45"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1152; - }; - class Item172 - { - dataType="Marker"; - position[]={21060.4,1.3683789,14717.646}; - name="control_46"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1153; - atlOffset=-3.4213066e-005; - }; - class Item173 - { - dataType="Marker"; - position[]={17992.082,69.924828,10671.903}; - name="control_47"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1154; - }; - class Item174 - { - dataType="Marker"; - position[]={22960.973,24.957481,21887.336}; - name="control_48"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1155; - }; - class Item175 - { - dataType="Marker"; - position[]={24232.799,66.273628,21795.674}; - name="control_49"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1156; - }; - class Item176 - { - dataType="Marker"; - position[]={23923.436,45.721985,22723.762}; - name="control_50"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1157; - }; - class Item177 - { - dataType="Marker"; - position[]={24347.379,25.81115,23560.189}; - name="control_51"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1158; - }; - class Item178 - { - dataType="Marker"; - position[]={28045.74,39.501999,25409.574}; - name="control_52"; - markerType="RECTANGLE"; - type="rectangle"; - a=200; - b=200; - angle=231.22296; - id=1159; - atlOffset=0.00048828125; - }; - class Item179 - { - dataType="Marker"; - position[]={25963.797,66.576874,22488.859}; - name="control_53"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1160; - }; - class Item180 - { - dataType="Marker"; - position[]={8799.5547,129.67937,15250.9}; - name="control_54"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1161; - }; - class Item181 - { - dataType="Marker"; - position[]={10822.622,106.28155,15025.045}; - name="control_55"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1162; - }; - class Item182 - { - dataType="Marker"; - position[]={6641.7202,132.51106,12197.677}; - name="control_56"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1163; - }; - class Item183 - { - dataType="Marker"; - position[]={9522.5645,52.498535,7532.7705}; - name="control_57"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1165; - atlOffset=-6.007225; - }; - class Item184 - { - dataType="Marker"; - position[]={23662.633,5.3028078,16239.605}; - name="control_58"; - markerType="RECTANGLE"; - type="rectangle"; - a=300; - b=300; - angle=231.22296; - id=1166; - }; - class Item185 - { - dataType="Marker"; - position[]={3376.6011,0,12753.058}; - name="seaSpawn"; - type="mil_objective"; - id=1167; - atlOffset=2.941112; - }; - class Item186 - { - dataType="Marker"; - position[]={3535.1458,2.8441161e-009,13774.347}; - name="seaSpawn_1"; - type="mil_objective"; - id=1168; - atlOffset=1.2454736; - }; - class Item187 - { - dataType="Marker"; - position[]={3807.0403,8.2976584e-008,17341.869}; - name="seaSpawn_2"; - type="mil_objective"; - id=1169; - atlOffset=4.6103921; - }; - class Item188 - { - dataType="Marker"; - position[]={16582.131,0,12303.811}; - name="seaSpawn_3"; - type="mil_objective"; - id=1170; - atlOffset=8.3859863; - }; - class Item189 - { - dataType="Marker"; - position[]={12749.965,2.2184195e-006,14198.212}; - name="seaSpawn_4"; - type="mil_objective"; - id=1171; - atlOffset=9.9826164; - }; - class Item190 - { - dataType="Marker"; - position[]={11837.512,-2.1113763e-006,13530.187}; - name="seaSpawn_5"; - type="mil_objective"; - id=1172; - atlOffset=4.5436969; - }; - class Item191 - { - dataType="Marker"; - position[]={2255.782,0,13234.797}; - name="seaAttackSpawn"; - type="mil_ambush"; - angle=28.695; - id=1174; - atlOffset=126.38051; - }; - class Item192 - { - dataType="Marker"; - position[]={3172.9761,2.8623674e-008,16757.107}; - name="seaAttackSpawn_1"; - type="mil_ambush"; - angle=327.2157; - id=1176; - atlOffset=107.35194; - }; - class Item193 - { - dataType="Marker"; - position[]={19879.293,0,21958.814}; - name="seaAttackSpawn_2"; - type="mil_ambush"; - angle=111.40697; - id=1177; - atlOffset=171.26703; - }; - class Item194 - { - dataType="Marker"; - position[]={25805.57,0,25990.992}; - name="seaAttackSpawn_3"; - type="mil_ambush"; - angle=28.695; - id=1178; - atlOffset=178.77411; - }; - class Item195 - { - dataType="Marker"; - position[]={24006.145,-6.4275355e-008,6603.1455}; - name="seaAttackSpawn_4"; - type="mil_ambush"; - angle=216.66417; - id=1179; - atlOffset=180.55885; - }; - class Item196 - { - dataType="Marker"; - position[]={15241.775,0,13870.712}; - name="seaAttackSpawn_5"; - type="mil_ambush"; - angle=28.695; - id=1180; - atlOffset=67.766624; - }; - class Item197 - { - dataType="Marker"; - position[]={13681.933,-8.68244e-008,10426.626}; - name="seaAttackSpawn_6"; - type="mil_ambush"; - angle=218.59846; - id=1181; - atlOffset=141.36031; - }; - class Item198 - { - dataType="Marker"; - position[]={14275.173,19.307659,16275.15}; - name="outpost_17"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorGUER"; - a=194.20959; - b=123.19038; - angle=135.83093; - id=1183; - atlOffset=-0.061647415; - }; - class Item199 - { - dataType="Marker"; - position[]={3239.0374,7.4641165e-010,12861.445}; - name="seaSpawn_6"; - type="mil_objective"; - id=1184; - atlOffset=8.8429317; - }; - class Item200 - { - dataType="Marker"; - position[]={20649.865,0,19497.082}; - name="seaSpawn_7"; - type="mil_objective"; - id=1185; - atlOffset=2.1248169; - }; - class Item201 - { - dataType="Marker"; - position[]={27619.545,1.5190345e-008,24543.322}; - name="seaSpawn_8"; - type="mil_objective"; - id=1186; - atlOffset=5.0577831; - }; - class Item202 - { - dataType="Marker"; - position[]={15382.954,-4.1486221e-008,15813.717}; - name="seaSpawn_9"; - type="mil_objective"; - id=1187; - atlOffset=6.1902537; - }; - class Item203 - { - dataType="Object"; - class PositionInfo - { - position[]={8977.3438,27.781113,21410.1}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1188; - type="Land_Airport_Tower_F"; - }; - class Item204 - { - dataType="Object"; - class PositionInfo - { - position[]={23033.316,8.6534567,18750.721}; - angles[]={0,4.7067919,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1200; - type="Land_Hangar_F"; - }; - class Item205 - { - dataType="Object"; - class PositionInfo - { - position[]={4842.5225,341.48743,22001.531}; - angles[]={0,4.7289844,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=1235; - type="Land_Cargo_HQ_V1_F"; - atlOffset=0.3626709; - }; - class Item206 - { - dataType="Object"; - class PositionInfo - { - position[]={8996.4727,21.45295,21409.941}; - angles[]={0,2.4943135,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1237; - type="Land_Cargo_HQ_V1_F"; - }; - class Item207 - { - dataType="Object"; - class PositionInfo - { - position[]={11422.4,29.309406,11671.359}; - angles[]={0,1.0115303,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=1238; - type="Land_Cargo_HQ_V1_F"; - atlOffset=1.0188999; - }; - class Item208 - { - dataType="Object"; - class PositionInfo - { - position[]={22995.125,8.8610163,18852.758}; - angles[]={0,5.6882114,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=1243; - type="Land_Cargo_HQ_V1_F"; - atlOffset=0.94216871; - class CustomAttributes - { - class Attribute0 - { - property="DoorStates"; - expression="['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;"; - class Value - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=3; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - class Item2 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - }; - }; - }; - nAttributes=1; - }; - }; - class Item209 - { - dataType="Object"; - class PositionInfo - { - position[]={26736.508,25.002501,24583.18}; - angles[]={0,2.2082093,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1244; - type="Land_Cargo_HQ_V1_F"; - }; - class Item210 - { - dataType="Object"; - class PositionInfo - { - position[]={20941.527,32.202915,7185.3008}; - angles[]={0,1.5555797,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1245; - type="Land_Cargo_HQ_V1_F"; - atlOffset=9.5367432e-006; - }; - class Item211 - { - dataType="Object"; - class PositionInfo - { - position[]={9293.0469,22.007439,21566.828}; - angles[]={0,4.30966,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1262; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item212 - { - dataType="Object"; - class PositionInfo - { - position[]={9170.5498,22.457399,21446.398}; - angles[]={0,5.6333933,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1264; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item213 - { - dataType="Object"; - class PositionInfo - { - position[]={9027.7578,23.531631,21343.953}; - angles[]={0,5.6333933,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1265; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item214 - { - dataType="Object"; - class PositionInfo - { - position[]={26822.635,28.719749,24575.076}; - angles[]={0,0.78758019,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1271; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item215 - { - dataType="Object"; - class PositionInfo - { - position[]={21135.934,28.32896,7179.5508}; - angles[]={0,4.8921785,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1273; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item216 - { - dataType="Object"; - class PositionInfo - { - position[]={20974.73,29.950148,7330.9082}; - angles[]={0,4.8921785,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1274; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=1.5258789e-005; - }; - class Item217 - { - dataType="Object"; - class PositionInfo - { - position[]={20725.863,36.504616,7208.3887}; - angles[]={0,0.99436247,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1275; - type="Land_Cargo_Patrol_V1_F"; - atlOffset=2.0980835e-005; - }; - class Item218 - { - dataType="Object"; - class PositionInfo - { - position[]={9126.1553,27.412918,21637.201}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1286; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-0.0099000931; - }; - class Item219 - { - dataType="Object"; - class PositionInfo - { - position[]={11477.765,35.963001,11723.507}; - angles[]={0,4.2127972,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1287; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-0.017017365; - }; - class Item220 - { - dataType="Object"; - class PositionInfo - { - position[]={22988.684,16.9498,18911.826}; - angles[]={0,4.0796099,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1289; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-4.7683716e-007; - }; - class Item221 - { - dataType="Object"; - class PositionInfo - { - position[]={26799.561,31.617382,24688.488}; - angles[]={0,5.3050466,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1292; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-1.011385; - }; - class Item222 - { - dataType="Object"; - class PositionInfo - { - position[]={21047.531,34.702774,7278.1133}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1293; - type="Land_Cargo_Tower_V1_F"; - atlOffset=-1.9073486e-006; - }; - class Item223 - { - dataType="Object"; - class PositionInfo - { - position[]={9061.2451,19.961628,21534.646}; - angles[]={0,2.360858,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1318; - type="Land_TentHangar_V1_F"; - atlOffset=-9.5367432e-007; - }; - class Item224 - { - dataType="Object"; - class PositionInfo - { - position[]={9091.042,19.327972,21561.338}; - angles[]={0,5.8653936,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1319; - type="Land_TentHangar_V1_F"; - atlOffset=9.5367432e-007; - }; - class Item225 - { - dataType="Object"; - class PositionInfo - { - position[]={21180.666,22.782005,7366.3877}; - angles[]={0,4.1899118,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1331; - type="Land_TentHangar_V1_F"; - atlOffset=1.9073486e-006; - }; - class Item226 - { - dataType="Object"; - class PositionInfo - { - position[]={21157.563,25.296978,7247.1904}; - angles[]={0,5.3663549,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1332; - type="Land_TentHangar_V1_F"; - }; - class Item227 - { - dataType="Object"; - class PositionInfo - { - position[]={23221.844,5.8685412,18859.59}; - angles[]={0,1.5504203,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1336; - type="Land_Airport_01_hangar_F"; - }; - class Item228 - { - dataType="Object"; - class PositionInfo - { - position[]={23218.164,8.0950003,18804.531}; - angles[]={0,5.2616692,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1337; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item229 - { - dataType="Object"; - class PositionInfo - { - position[]={26850.596,31.404058,24470.365}; - angles[]={0,6.2068391,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1338; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item230 - { - dataType="Object"; - class PositionInfo - { - position[]={26949.387,29.005325,24593.477}; - angles[]={0,4.8006735,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1339; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item231 - { - dataType="Object"; - class PositionInfo - { - position[]={26734.734,31.658321,24606.318}; - angles[]={0,3.7836525,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=1340; - type="Land_Airport_Tower_F"; - atlOffset=0.48480988; - }; - class Item232 - { - dataType="Object"; - class PositionInfo - { - position[]={23073.195,8.0950003,18689.061}; - angles[]={0,0.71987998,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1343; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item233 - { - dataType="Object"; - class PositionInfo + dataType="Group"; + side="Independent"; + class Entities { - position[]={11553.854,27.335001,11559.937}; - angles[]={0,5.1253457,0}; + items=60; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={872.28076,9.9314394,5455.6367}; + }; + side="Independent"; + flags=6; + class Attributes + { + skill=1; + name="commanderX"; + description="Default Commander"; + isPlayer=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=23; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={874.17572,10.536942,5449.3467}; + angles[]={0,6.2412972,0}; + }; + side="Independent"; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=27; + type="I_G_Soldier_AR_F"; + atlOffset=0.60550213; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={907.51428,10.107938,5430.9507}; + angles[]={0,1.5460157,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=28; + type="I_G_Soldier_AR_F"; + atlOffset=0.17649841; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={907.69604,9.9836626,5427.8726}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=29; + type="I_G_Soldier_LAT_F"; + atlOffset=0.052223206; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={907.29834,9.9314394,5424.9492}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=30; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={907.42841,9.9314394,5422.0483}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=31; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={907.59601,9.9314394,5419.0566}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=32; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={907.4939,10.269444,5433.4121}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=33; + type="I_G_officer_F"; + atlOffset=0.33800507; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={910.30865,10.081128,5431.0063}; + angles[]={0,1.5460157,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=34; + type="I_G_Soldier_AR_F"; + atlOffset=0.14968872; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={910.49426,9.9778872,5427.9282}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=35; + type="I_G_Soldier_LAT_F"; + atlOffset=0.046447754; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={910.09265,9.9314394,5425.0049}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=36; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={910.22272,9.9314394,5422.104}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=37; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={910.39032,9.9314394,5419.1123}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=38; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={910.29211,10.242635,5433.4678}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=39; + type="I_G_officer_F"; + atlOffset=0.31119537; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={913.49384,10.006875,5427.877}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=40; + type="I_G_Soldier_LAT_F"; + atlOffset=0.075435638; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={913.09613,9.9314394,5424.9536}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=41; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={913.22229,9.9314394,5422.0527}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=42; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={913.3938,9.9314394,5419.061}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=43; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={913.29169,10.305421,5433.4165}; + angles[]={0,1.5879039,0}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=44; + type="I_G_officer_F"; + atlOffset=0.37398148; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={934.73773,9.9744692,5452.0723}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=45; + type="I_G_Soldier_LAT_F"; + atlOffset=0.043029785; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={937.66742,9.9314394,5451.7246}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=46; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={940.56586,9.9314394,5451.9043}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=47; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={943.55414,9.9314394,5452.123}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=48; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={929.20258,10.331502,5451.7754}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=49; + type="I_G_officer_F"; + atlOffset=0.40006256; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={913.42365,10.084859,5430.853}; + angles[]={0,1.4622107,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=50; + type="I_G_Soldier_AR_F"; + atlOffset=0.15341949; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={931.96039,10.039815,5451.9512}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=51; + type="I_G_Soldier_AR_F"; + atlOffset=0.10837555; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={935.06976,10.001584,5454.6973}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=52; + type="I_G_Soldier_LAT_F"; + atlOffset=0.070144653; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={937.99945,9.9314394,5454.3496}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=53; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={940.89789,9.9314394,5454.5293}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=54; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={943.88617,9.9314394,5454.748}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=55; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={929.53461,10.334573,5454.4043}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=56; + type="I_G_officer_F"; + atlOffset=0.40313339; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={932.29242,10.069871,5454.5801}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=57; + type="I_G_Soldier_AR_F"; + atlOffset=0.13843155; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={935.14398,10.104962,5457.7715}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=58; + type="I_G_Soldier_LAT_F"; + atlOffset=0.17352295; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={938.07367,10.00879,5457.4238}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=59; + type="I_G_medic_F"; + atlOffset=0.077350616; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={940.97211,9.9776468,5457.6035}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=60; + type="I_G_engineer_F"; + atlOffset=0.046207428; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={943.96039,10.011685,5457.8223}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=61; + type="I_G_Soldier_GL_F"; + atlOffset=0.080245972; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={929.60883,10.443479,5457.4785}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=62; + type="I_G_officer_F"; + atlOffset=0.51203918; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={932.36664,10.170617,5457.6543}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=63; + type="I_G_Soldier_AR_F"; + atlOffset=0.2391777; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={912.66119,9.9314394,5477.187}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=64; + type="I_G_Soldier_LAT_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={913.03186,9.9314394,5480.1157}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=65; + type="I_G_medic_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={912.87891,9.9314394,5483.0156}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=66; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={912.67975,9.9314394,5486.0054}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=67; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={912.91449,10.535169,5471.6519}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=68; + type="I_G_officer_F"; + atlOffset=0.60372925; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={912.76044,10.226407,5474.4106}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=69; + type="I_G_Soldier_AR_F"; + atlOffset=0.29496765; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={909.39447,10.059045,5477.0645}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=70; + type="I_G_Soldier_LAT_F"; + atlOffset=0.12760544; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={909.7691,9.9405794,5479.9932}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=71; + type="I_G_medic_F"; + atlOffset=0.0091400146; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={909.61218,9.9314394,5482.8926}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=72; + type="I_G_engineer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={909.41693,9.9314394,5485.8828}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=73; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={909.64783,10.692422,5471.5288}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=74; + type="I_G_officer_F"; + atlOffset=0.76098251; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={909.49371,10.385228,5474.2881}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=75; + type="I_G_Soldier_AR_F"; + atlOffset=0.45378876; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={906.64307,10.309373,5475.9004}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=76; + type="I_G_Soldier_LAT_F"; + atlOffset=0.3779335; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={907.01373,10.3663,5478.8271}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=77; + type="I_G_medic_F"; + atlOffset=0.43486023; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={906.85687,10.016458,5481.7271}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=78; + type="I_G_engineer_F"; + atlOffset=0.085018158; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={906.66162,10.009507,5484.7168}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=79; + type="I_G_Soldier_GL_F"; + atlOffset=0.07806778; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={906.89246,11.164788,5470.3628}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + class Attributes + { + skill=1; + description="Officer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=80; + type="I_G_officer_F"; + atlOffset=1.2333488; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={906.7384,10.663938,5473.124}; + angles[]={0,4.7202539,0}; + }; + side="Independent"; + class Attributes + { + description="Machinegunner"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=81; + type="I_G_Soldier_AR_F"; + atlOffset=0.73249817; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={880.17963,10.153695,5449.2334}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Paramedic"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=82; + type="I_G_medic_F"; + atlOffset=0.22225571; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={883.20502,10.025476,5449.4912}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Engineer"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=83; + type="I_G_engineer_F"; + atlOffset=0.094037056; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={885.79095,9.9314394,5449.8975}; + }; + side="Independent"; + flags=4; + class Attributes + { + description="Grenadier"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=84; + type="I_G_Soldier_GL_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={877.24994,10.330724,5449.5811}; + }; + side="Independent"; + class Attributes + { + description="AT Launcher"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=85; + type="I_G_Soldier_LAT_F"; + atlOffset=0.39928436; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male01FRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; }; - side="Empty"; - flags=5; class Attributes { }; - id=1344; - type="Land_Cargo_Patrol_V1_F"; + id=22; }; - class Item234 + class Item15 { - dataType="Object"; - class PositionInfo + dataType="Group"; + side="Independent"; + class Entities { - position[]={11638.675,27.272053,11798.894}; - angles[]={0,4.1140165,0}; + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={870.58624,9.9314394,5449.3677}; + angles[]={0,2.1016905,0}; + }; + side="Independent"; + flags=6; + class Attributes + { + name="petros"; + }; + id=25; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute2 + { + property="face"; + expression="_this setface _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + nAttributes=3; + }; + }; }; - side="Empty"; - flags=5; class Attributes { }; - id=1345; - type="Land_Cargo_Patrol_V1_F"; + id=24; }; - class Item235 + class Item16 { dataType="Object"; class PositionInfo { - position[]={11661.325,27.89052,11990.291}; - angles[]={0,3.8163784,0}; + position[]={884.98059,10.898882,5456.8228}; }; side="Empty"; - flags=5; + flags=4; class Attributes { + name="mapX"; }; - id=1346; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item236 - { - dataType="Object"; - class PositionInfo - { - position[]={11542.937,28.960028,11928.523}; - angles[]={0,1.3898941,0}; - }; - side="Empty"; - flags=5; - class Attributes + id=86; + type="MapBoard_seismic_F"; + class CustomAttributes { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; }; - id=1347; - type="Land_Cargo_Patrol_V1_F"; }; - class Item237 + class Item17 { dataType="Object"; class PositionInfo { - position[]={14827.185,22.847755,16421.967}; - angles[]={0,4.4921894,0}; + position[]={908.93127,13.906805,5455.1626}; }; side="Empty"; - flags=5; + flags=4; class Attributes { + name="flagX"; }; - id=1350; - type="Land_Cargo_Patrol_V1_F"; - }; - class Item238 - { - dataType="Object"; - class PositionInfo - { - position[]={14730.716,30.796209,16571.352}; - angles[]={0,0.78664351,0}; - }; - side="Empty"; - flags=5; - class Attributes + id=91; + type="Flag_Altis_F"; + class CustomAttributes { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; }; - id=1351; - type="Land_Cargo_Tower_V1_F"; }; - class Item239 + class Item18 { dataType="Object"; class PositionInfo { - position[]={14770.462,21.7854,16646.947}; - angles[]={0,3.2631023,0}; + position[]={1553.0222,7.5292463,9045.9336}; }; side="Empty"; flags=5; class Attributes { + init="if (!isMultiplayer) then {deleteVehicle this};"; }; - id=1357; - type="Land_Cargo_HQ_V1_F"; + id=92; + type="Flag_NATO_F"; + atlOffset=-2.3841858e-007; }; - class Item240 + class Item19 { - dataType="Object"; - class PositionInfo - { - position[]={14897.738,22.811348,16668.238}; - angles[]={0,3.867835,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=1358; - type="Land_Cargo_Patrol_V1_F"; + dataType="Marker"; + position[]={1553.0457,3.9030445,9024.1406}; + name="respawn_west"; + type="flag_CTRG"; + id=93; }; - class Item241 + class Item20 { - dataType="Object"; - class PositionInfo - { - position[]={3608.8811,19.602364,10284.22}; - angles[]={6.2272477,0,6.2392201}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="flagX"; - }; - id=1370; - type="Flag_Altis_F"; - atlOffset=9.5367432e-007; - class CustomAttributes + dataType="Group"; + side="West"; + class Entities { - class Attribute0 + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1552.6785,3.6513946,9038.5566}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_blue_1"; + isPlayable=1; + }; + id=95; + type="B_recon_TL_F"; + atlOffset=2.3841858e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1557.6785,4.0521088,9033.5566}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; + name="pvp_blue_4"; + isPlayable=1; + }; + id=96; + type="B_recon_M_F"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data + position[]={1547.6785,3.4160376,9033.5566}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_blue_2"; + isPlayable=1; + }; + id=97; + type="B_recon_medic_F"; + atlOffset=2.3841858e-007; + class CustomAttributes + { + class Attribute0 { - class type + property="speaker"; + expression="_this setspeaker _value;"; + class Value { - type[]= + class data { - "BOOL" + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={1542.6785,3.1660376,9028.5566}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; + name="pvp_blue_5"; + isPlayable=1; + }; + id=98; + type="B_recon_LAT_F"; + atlOffset=2.3841858e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={1560.1589,4.2497554,9031.4355}; + angles[]={0.015998369,0,0.065904573}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; + name="pvp_blue_3"; + isPlayable=1; + }; + id=99; + type="B_Patrol_Soldier_MG_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={1554.9285,3.9500461,9029.2168}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; + name="pvp_blue_6"; + isPlayable=1; + }; + id=100; + type="B_recon_LAT_F"; + atlOffset=2.3841858e-007; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; }; }; - value=0; }; + nAttributes=2; }; }; - nAttributes=1; - }; - }; - class Item242 - { - dataType="Object"; - class PositionInfo - { - position[]={13537.357,18.774933,12085.127}; }; - side="Empty"; - flags=5; class Attributes { - init="if (!isMultiplayer) then {deleteVehicle this};"; }; - id=1389; - type="Flag_NATO_F"; - atlOffset=-0.6429987; + id=94; + atlOffset=2.3841858e-007; }; - class Item243 + class Item21 { dataType="Marker"; - position[]={13537.383,17.984203,12063.334}; - name="respawn_west"; - type="flag_CTRG"; - id=1390; - atlOffset=4.0483103; + position[]={2186.6816,98.928207,9258.084}; + name="respawn_east"; + type="flag_Viper"; + id=102; + atlOffset=92.907089; }; - class Item244 + class Item22 { dataType="Group"; - side="West"; + side="East"; class Entities { items=6; @@ -7203,19 +4930,19 @@ class Mission dataType="Object"; class PositionInfo { - position[]={13537.015,15.694531,12077.749}; + position[]={2185.2676,94.095329,9262.0645}; }; - side="West"; - flags=7; + side="East"; + flags=3; class Attributes { - rank="SERGEANT"; - init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; - name="pvp_blue_1"; + init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_red_1"; isPlayable=1; }; - id=1407; - type="B_recon_TL_F"; + id=104; + type="O_T_Recon_TL_F"; + atlOffset=88.093887; class CustomAttributes { class Attribute0 @@ -7233,7 +4960,7 @@ class Mission "STRING" }; }; - value="Male12ENG"; + value="Male03CHI"; }; }; }; @@ -7252,7 +4979,7 @@ class Mission "SCALAR" }; }; - value=0.99000001; + value=0.98000002; }; }; }; @@ -7264,21 +4991,19 @@ class Mission dataType="Object"; class PositionInfo { - position[]={13542.015,15.338387,12072.749}; + position[]={2180.4551,93.788376,9257.5527}; }; - side="West"; - flags=5; + side="East"; + flags=1; class Attributes { - skill=0.44999999; - rank="CORPORAL"; - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; - name="pvp_blue_4"; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_red_2"; isPlayable=1; }; - id=1408; - type="B_recon_M_F"; - atlOffset=-9.5367432e-007; + id=105; + type="O_T_Recon_Medic_F"; + atlOffset=87.78511; class CustomAttributes { class Attribute0 @@ -7296,7 +5021,7 @@ class Mission "STRING" }; }; - value="Male12ENG"; + value="Male02CHI"; }; }; }; @@ -7315,7 +5040,7 @@ class Mission "SCALAR" }; }; - value=0.98000002; + value=1.01; }; }; }; @@ -7327,19 +5052,19 @@ class Mission dataType="Object"; class PositionInfo { - position[]={13532.015,14.565668,12072.749}; + position[]={2189.9297,93.050819,9257.7031}; }; - side="West"; - flags=5; + side="East"; + flags=1; class Attributes { - skill=0.40000001; - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; - name="pvp_blue_2"; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; + name="pvp_red_4"; isPlayable=1; }; - id=1409; - type="B_recon_medic_F"; + id=106; + type="O_T_Recon_M_F"; + atlOffset=85.654083; class CustomAttributes { class Attribute0 @@ -7357,7 +5082,7 @@ class Mission "STRING" }; }; - value="Male03ENG"; + value="Male01CHI"; }; }; }; @@ -7376,7 +5101,7 @@ class Mission "SCALAR" }; }; - value=0.95999998; + value=1.03; }; }; }; @@ -7388,19 +5113,19 @@ class Mission dataType="Object"; class PositionInfo { - position[]={13527.015,14.16153,12067.749}; + position[]={2176.168,93.274101,9252.3613}; }; - side="West"; - flags=5; + side="East"; + flags=1; class Attributes { - skill=0.40000001; init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; - name="pvp_blue_5"; + name="pvp_red_5"; isPlayable=1; }; - id=1411; - type="B_recon_LAT_F"; + id=107; + type="O_T_Recon_LAT_F"; + atlOffset=87.272659; class CustomAttributes { class Attribute0 @@ -7418,7 +5143,7 @@ class Mission "STRING" }; }; - value="Male12ENG"; + value="Male01CHI"; }; }; }; @@ -7437,7 +5162,7 @@ class Mission "SCALAR" }; }; - value=0.97000003; + value=0.94999999; }; }; }; @@ -7449,21 +5174,19 @@ class Mission dataType="Object"; class PositionInfo { - position[]={13544.494,14.759296,12070.628}; + position[]={2186.6406,94.007996,9263.6543}; }; - side="West"; - flags=4; + side="East"; + flags=1; class Attributes { - skill=0.44999999; - rank="CORPORAL"; init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; - name="pvp_blue_3"; + name="pvp_red_3"; isPlayable=1; }; - id=1415; - type="B_Patrol_Soldier_MG_F"; - atlOffset=-9.5367432e-007; + id=108; + type="O_Soldier_AR_F"; + atlOffset=88.006554; class CustomAttributes { class Attribute0 @@ -7481,7 +5204,7 @@ class Mission "STRING" }; }; - value="Male07ENG"; + value="Male01PER"; }; }; }; @@ -7500,1087 +5223,3172 @@ class Mission "SCALAR" }; }; - value=0.94999999; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2185.7324,93.796448,9259.2969}; + }; + side="East"; + flags=1; + class Attributes + { + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; + name="pvp_red_6"; + isPlayable=1; + }; + id=109; + type="O_T_Recon_LAT_F"; + atlOffset=87.786133; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male03CHI"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=103; + atlOffset=88.093887; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={2177.1719,98.476715,9263.7148}; + }; + side="Empty"; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=110; + type="Flag_Viper_F"; + atlOffset=88.499908; + }; + class Item24 + { + dataType="Logic"; + class PositionInfo + { + position[]={880.00354,10.754942,5431.6436}; + }; + name="hc_1"; + isPlayable=1; + id=111; + type="HeadlessClient_F"; + atlOffset=0.82494164; + }; + class Item25 + { + dataType="Logic"; + class PositionInfo + { + position[]={881.85114,10.655134,5430.6494}; + }; + name="hc_2"; + isPlayable=1; + id=112; + type="HeadlessClient_F"; + atlOffset=0.7251339; + }; + class Item26 + { + dataType="Logic"; + class PositionInfo + { + position[]={900.78613,29.345961,5434.6372}; + }; + id=116; + type="ModuleCurator_F"; + atlOffset=18.51119; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" }; }; + value=""; }; - nAttributes=2; }; }; - class Item5 + class Attribute3 { - dataType="Object"; - class PositionInfo - { - position[]={13539.265,14.667098,12068.41}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; - name="pvp_blue_6"; - isPlayable=1; - }; - id=1552; - type="B_recon_LAT_F"; - class CustomAttributes + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value { - class Attribute0 + class data { - property="speaker"; - expression="_this setspeaker _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male12ENG"; + "SCALAR" }; }; + value=2; }; - class Attribute1 + }; + }; + nAttributes=4; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={878.6311,10.502403,5455.8652}; + angles[]={0,1.0016968,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=117; + type="Land_TentSolar_01_olive_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data { - property="pitch"; - expression="_this setpitch _value;"; - class Value + class type { - class data + type[]= { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; + "BOOL" }; }; + value=0; }; - nAttributes=2; }; }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={6837.8428,39.69825,6686.0239}; + angles[]={0,1.7458354,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="DarkDemise_hurt_my_back"; + }; + id=138; + type="Land_dp_transformer_F"; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={5134.4971,11.05,6055.0532}; + angles[]={0,5.4936333,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="Gydias"; + }; + id=139; + type="Land_Medevac_house_V1_F"; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={4106.125,358.64236,8060.519}; + angles[]={0,1.8957417,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + name="hyrios"; + }; + id=145; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.2539978; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={4113.9795,356.78409,8012.6421}; + angles[]={6.2113066,4.0305614,0.10363164}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=146; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={4121.0269,356.57382,8007.6001}; + angles[]={6.1362538,3.511687,0.037981652}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=147; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={4129.7715,356.50192,8006.1978}; + angles[]={6.1499825,3.0615859,6.2771854}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=148; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={4138.5059,356.70813,8007.8047}; + angles[]={6.1617823,2.8225691,6.2791886}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=149; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={4146.3042,356.83014,8012.1611}; + angles[]={6.2591896,2.4048307,6.2053399}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=150; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={4155.8901,355.76703,8024.3882}; + angles[]={0.012000273,2.1136765,6.1050935}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=151; + type="Land_HBarrier_01_big_4_green_F"; + atlOffset=-3.0517578e-005; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={4158.2432,355.1723,8032.728}; + angles[]={0.03798322,1.5948021,6.0723639}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=152; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={4156.5957,354.87912,8041.4302}; + angles[]={0.13909826,1.144701,6.0609183}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=153; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={4152.1211,354.56894,8049.1016}; + angles[]={0.15279722,0.90568423,6.1245327}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=154; + type="Land_HBarrier_01_big_4_green_F"; + atlOffset=-3.0517578e-005; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={4145.3774,354.5997,8054.9595}; + angles[]={0.17421664,0.4879458,6.1323385}; }; + side="Empty"; + flags=4; class Attributes { }; - id=1406; + id=155; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item41 + { + dataType="Marker"; + position[]={3022.4458,30.182636,4398.3501}; + name="spawnpoint_1"; + type="hd_start"; + angle=28.14724; + id=160; + atlOffset=15.667421; + }; + class Item42 + { + dataType="Marker"; + position[]={6562.4707,-21.497236,9898.9805}; + name="seaAttackSpawn_1"; + type="mil_ambush"; + angle=28.695; + id=163; + atlOffset=-3.1900005; }; - class Item245 + class Item43 { dataType="Marker"; - position[]={10027.582,17.59524,12814.658}; - name="road"; - type="hd_arrow"; - angle=227.508; - id=1440; + position[]={9445.8291,-12.703266,8644.8096}; + name="seaAttackSpawn_2"; + type="mil_ambush"; + angle=28.695; + id=164; + atlOffset=-3.1899996; }; - class Item246 + class Item44 { dataType="Marker"; - position[]={8780.8975,35.592316,12043.754}; - name="road_1"; - type="hd_arrow"; - angle=223.50795; - id=1441; + position[]={10633.654,-23.818001,5667.353}; + name="seaAttackSpawn_3"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=165; + atlOffset=-3.1903534; }; - class Item247 + class Item45 { dataType="Marker"; - position[]={7336.4771,16.04541,11418.288}; - name="road_2"; - type="hd_arrow"; - angle=13.06902; - id=1442; - atlOffset=3.2962132; + position[]={8909.3896,-87.276695,1407.0038}; + name="seaAttackSpawn_4"; + type="mil_ambush"; + angle=28.695; + id=166; + atlOffset=-3.1900024; }; - class Item248 + class Item46 { dataType="Marker"; - position[]={10432.575,14.689998,11982.5}; - name="road_4"; - type="hd_arrow"; - angle=227.508; - id=1445; + position[]={282.76001,-22.028179,9522.668}; + name="seaAttackSpawn_5"; + type="mil_ambush"; + angle=28.695; + id=167; + atlOffset=-3.1899986; }; - class Item249 + class Item47 { dataType="Marker"; - position[]={9615.0332,12.606598,11695.909}; - name="road_5"; - type="hd_arrow"; - angle=266.26797; - id=1446; - atlOffset=0.63069153; + position[]={-1235.7861,-57.114273,6836.1953}; + name="seaAttackSpawn_6"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=168; + atlOffset=-3.1903534; }; - class Item250 + class Item48 { dataType="Marker"; - position[]={11034.368,63.11581,12973.104}; - name="road_3"; - type="hd_arrow"; - angle=41.155243; - id=1443; - atlOffset=43.66288; + position[]={-1427.7869,-15.071719,1498.1366}; + name="seaAttackSpawn_7"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=169; + atlOffset=-3.1903534; }; - class Item251 + class Item49 { dataType="Marker"; - position[]={11738.429,13.323238,13913.249}; - name="road_6"; - type="hd_arrow"; - angle=26.564579; - id=1447; + position[]={2167.8496,-21.41099,-944.11133}; + name="seaAttackSpawn_8"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=170; + atlOffset=-3.1903534; }; - class Item252 + class Item50 { dataType="Marker"; - position[]={13483.127,15.282019,16028.804}; - name="road_7"; - type="hd_arrow"; - angle=254.67212; - id=1448; + position[]={6426.7598,-24.055374,-961.5564}; + name="seaAttackSpawn_9"; + type="mil_ambush"; + colorName="ColorWhite"; + angle=28.695; + id=171; + atlOffset=-3.1903534; }; - class Item253 + class Item51 { dataType="Marker"; - position[]={12479.82,32.146729,15886.568}; - name="road_8"; - type="hd_arrow"; - angle=263.33395; - id=1450; - atlOffset=12.854931; + position[]={2001.4104,-4.2427058,4919.978}; + name="seaPatrol_1"; + type="Empty"; + id=172; }; - class Item254 + class Item52 { dataType="Marker"; - position[]={14286.374,17.269678,18161.129}; - name="road_9"; - type="hd_arrow"; - angle=333.82483; - id=1451; + position[]={5697.2114,-93.79702,6299.3027}; + name="seaPatrol_2"; + type="Empty"; + id=173; + atlOffset=-79.747086; }; - class Item255 + class Item53 { dataType="Marker"; - position[]={14310.426,26.728813,19600.521}; - name="road_10"; - type="hd_arrow"; - angle=14.435917; - id=1452; + position[]={6030.4009,-86.154274,4879.6748}; + name="seaPatrol_3"; + type="Empty"; + id=174; + atlOffset=-79.747086; }; - class Item256 + class Item54 { dataType="Marker"; - position[]={14772.154,14.778986,17175.191}; - name="road_11"; - type="hd_arrow"; - angle=53.226994; - id=1453; + position[]={3435.8516,-1.8395869,3494.8071}; + name="seaSpawn_1"; + type="mil_objective"; + id=175; }; - class Item257 + class Item55 { dataType="Marker"; - position[]={16953.045,16.280811,17813.107}; - name="road_12"; - type="hd_arrow"; - angle=64.545609; - id=1454; + position[]={5639.0195,-8.2921238,5511.5728}; + name="seaSpawn_2"; + type="mil_objective"; + id=176; + atlOffset=-3.1900001; }; - class Item258 + class Item56 { dataType="Marker"; - position[]={15896.649,11.202651,16178.266}; - name="road_13"; - type="hd_arrow"; - angle=120.79032; - id=1455; + position[]={4461.9888,-9.0299997,3057.8823}; + name="seaPatrol_4"; + type="Empty"; + id=178; }; - class Item259 + class Item57 { dataType="Marker"; - position[]={17469.98,4.3621092,14443.852}; - name="road_14"; - type="hd_arrow"; - angle=148.54735; - id=1456; + position[]={1381.9493,-0.64816922,5374.3203}; + name="seaSpawn_3"; + type="mil_objective"; + id=179; }; - class Item260 + class Item58 { dataType="Marker"; - position[]={17045.52,15.683575,12893.139}; - name="road_15"; - type="hd_arrow"; - angle=227.508; - id=1457; + position[]={1334.0188,-3.2399633,7678.1855}; + name="seaSpawn_4"; + type="mil_objective"; + id=180; + }; + class Item59 + { + dataType="Marker"; + position[]={5854.8267,-2.4443359,1890.6775}; + name="seaSpawn_5"; + type="mil_objective"; + id=181; + }; + class Item60 + { + dataType="Marker"; + position[]={2805.1284,-1.8965716,3252.46}; + name="seaSpawn_6"; + type="mil_objective"; + id=182; + }; + class Item61 + { + dataType="Marker"; + position[]={5241.4707,-7.0143108,5754.8188}; + name="seaSpawn_7"; + type="mil_objective"; + id=183; + atlOffset=-3.1899993; + }; + class Item62 + { + dataType="Marker"; + position[]={6015.7021,-8.6722107,6663.0298}; + name="seaSpawn_8"; + type="mil_objective"; + id=184; + atlOffset=-3.1899991; + }; + class Item63 + { + dataType="Marker"; + position[]={6738.6128,-7.073514,5323.6289}; + name="seaSpawn_9"; + type="mil_objective"; + id=185; + atlOffset=-3.1899996; + }; + class Item64 + { + dataType="Marker"; + position[]={5734.9243,-2.1778834,8252.6475}; + name="seaSpawn_10"; + type="mil_objective"; + id=186; + }; + class Item65 + { + dataType="Marker"; + position[]={1312.3444,-5.2672153,8756.4482}; + name="seaSpawn_11"; + type="mil_objective"; + id=187; + atlOffset=-3.1899996; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={5315.6904,193.25938,7896.7705}; + angles[]={0.15670335,1.3458275,6.1775799}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=213; + type="Land_HBarrier_01_big_4_green_F"; + atlOffset=0.032302856; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={5312.396,192.2265,7913.4575}; + angles[]={0.09966857,1.502041,6.2132983}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=214; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={5310.9019,190.19995,7923.126}; + angles[]={0.30607069,4.6263027,6.2033529}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=215; + type="Land_HBarrier_01_big_4_green_F"; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={5303.8687,196.90347,7912.1289}; + angles[]={0,4.7706795,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=217; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.2731781; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={5289.7881,202.31198,7839.3916}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=218; + type="Land_WoodenCrate_01_stack_x5_F"; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={5292.4619,202.31198,7839.9912}; + angles[]={0,3.1543338,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=219; + type="Land_WoodenCrate_01_stack_x5_F"; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={5250.1494,201.9917,7838.2202}; + angles[]={0.037978511,1.8626232,0.013999403}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=220; + type="Land_WoodenCrate_01_stack_x5_F"; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={5292.3301,202.30664,7842.915}; + angles[]={0,5.2961135,0.0019834081}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=221; + type="Land_WoodenCrate_01_stack_x5_F"; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={5248.7314,201.77725,7841.8799}; + angles[]={0.049959254,0.38318992,0.039980642}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=222; + type="Land_WoodenCrate_01_stack_x5_F"; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={5289.8164,202.03091,7841.8271}; + angles[]={0.0019834081,0,0.0019834081}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=223; + type="Land_WaterTank_F"; + atlOffset=1.5258789e-005; }; - class Item261 + class Item76 { - dataType="Marker"; - position[]={9380.7666,47.546509,21152.375}; - name="road_16"; - type="hd_arrow"; - angle=155.2245; - id=1458; + dataType="Object"; + class PositionInfo + { + position[]={5252.7734,201.62344,7839.0684}; + angles[]={0.025996836,0,0.02599225}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=224; + type="Land_WaterBarrel_F"; }; - class Item262 + class Item77 { - dataType="Marker"; - position[]={9718.4492,183.56577,19929.207}; - name="road_17"; - type="hd_arrow"; - angle=117.23835; - id=1459; + dataType="Object"; + class PositionInfo + { + position[]={5250.4043,201.2657,7841.0718}; + angles[]={0.049958061,0.39338702,0.02599225}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=225; + type="Land_WoodenCrate_01_F"; }; - class Item263 + class Item78 { - dataType="Marker"; - position[]={9819.0234,94.69236,18539.961}; - name="road_18"; - type="hd_arrow"; - angle=227.508; - id=1460; + dataType="Object"; + class PositionInfo + { + position[]={5252.0161,201.11549,7841.0767}; + angles[]={0.049958061,0,0.02599225}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=226; + type="Land_MetalCase_01_small_F"; }; - class Item264 + class Item79 { - dataType="Marker"; - position[]={7528.1772,171.76268,17280.842}; - name="road_19"; - type="hd_arrow"; - angle=227.508; - id=1462; + dataType="Object"; + class PositionInfo + { + position[]={5249.1289,201.91965,7846.5488}; + angles[]={0.061923493,2.9139404,0.059926469}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=227; + type="Land_Cargo10_grey_F"; }; - class Item265 + class Item80 { - dataType="Marker"; - position[]={6922.4834,188.9752,19240.162}; - name="road_20"; - type="hd_arrow"; - angle=1.5074006; - id=1463; + dataType="Object"; + class PositionInfo + { + position[]={5294.021,202.66728,7846.4761}; + angles[]={0.0019834081,0,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=228; + type="Land_Cargo20_grey_F"; + atlOffset=-0.00018310547; }; - class Item266 + class Item81 { - dataType="Marker"; - position[]={5246.1899,230.57468,20359.127}; - name="road_21"; - type="hd_arrow"; - angle=284.62128; - id=1464; + dataType="Object"; + class PositionInfo + { + position[]={5294.0986,202.66234,7849.104}; + angles[]={0.0019834081,0,0.0039967569}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=229; + type="Land_Cargo20_grey_F"; + atlOffset=-0.00016784668; }; - class Item267 + class Item82 { - dataType="Marker"; - position[]={21951.461,14.131549,7363.1597}; - name="road_22"; - type="hd_arrow"; - angle=128.61185; - id=1465; + dataType="Object"; + class PositionInfo + { + position[]={5294.0913,205.28778,7847.8828}; + angles[]={0.0019834081,0,0.0039967569}; + }; + side="Empty"; + class Attributes + { + }; + id=230; + type="Land_Cargo20_light_blue_F"; + atlOffset=2.6228638; }; - class Item268 + class Item83 { - dataType="Marker"; - position[]={21274.943,15.456692,8186.6035}; - name="road_23"; - type="hd_arrow"; - angle=317.16461; - id=1466; + dataType="Object"; + class PositionInfo + { + position[]={5262.5132,202.99638,7813.4194}; + angles[]={0.011246439,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=231; + type="Land_DeconTent_01_white_F"; }; - class Item269 + class Item84 { - dataType="Marker"; - position[]={20046.328,55.846924,8865.0693}; - name="road_24"; - type="hd_arrow"; - angle=290.07159; - id=1467; + dataType="Object"; + class PositionInfo + { + position[]={5286.1895,203.01427,7812.4131}; + angles[]={0.018749893,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=232; + type="Land_MedicalTent_01_white_generic_outer_F"; }; - class Item270 + class Item85 { - dataType="Marker"; - position[]={20573.68,19.865625,10695.808}; - name="road_25"; - type="hd_arrow"; - angle=354.21683; - id=1468; + dataType="Logic"; + class PositionInfo + { + position[]={466.11465,8.7874355,358.69617}; + angles[]={0,5.4966431,0}; + }; + areaSize[]={10.551336,0,10.024108}; + areaIsRectangle=1; + flags=1; + id=233; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.00033473969; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; }; - class Item271 + class Item86 { - dataType="Marker"; - position[]={22282.488,15.448867,18421.662}; - name="road_26"; - type="hd_arrow"; - angle=227.508; - id=1469; + dataType="Object"; + class PositionInfo + { + position[]={385.73734,8.7600002,552.797}; + angles[]={0,2.3661182,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=235; + type="Land_HelipadSquare_F"; }; - class Item272 + class Item87 { dataType="Marker"; - position[]={21706.1,22.576994,17678.889}; - name="road_27"; - type="hd_arrow"; - angle=213.26985; - id=1470; + position[]={587.15283,-85.946854,523.54248}; + name="seaPatrol_5"; + type="Empty"; + id=236; + atlOffset=-79.747086; }; - class Item273 + class Item88 { dataType="Marker"; - position[]={21005.709,35.480789,17676.527}; - name="road_28"; - type="hd_arrow"; - angle=2.0592506; - id=1471; + position[]={417.36566,-83.491501,174.42444}; + name="seaPatrol_6"; + type="Empty"; + id=237; + atlOffset=-79.747086; }; - class Item274 + class Item89 { - dataType="Marker"; - position[]={20651.492,34.118702,18726.168}; - name="road_29"; - type="hd_arrow"; - angle=353.88327; - id=1472; + dataType="Object"; + class PositionInfo + { + position[]={1811.0693,12.41,4835.5352}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=238; + type="Land_HelipadSquare_F"; }; - class Item275 + class Item90 { - dataType="Marker"; - position[]={20633.316,30.614683,16457.666}; - name="road_30"; - type="hd_arrow"; - angle=227.508; - id=1473; + dataType="Object"; + class PositionInfo + { + position[]={1777.9683,12.41,4835.4785}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=239; + type="Land_HelipadSquare_F"; }; - class Item276 + class Item91 { - dataType="Marker"; - position[]={19814.211,16.058229,15687.382}; - name="road_31"; - type="hd_arrow"; - angle=227.508; - id=1474; + dataType="Object"; + class PositionInfo + { + position[]={1745.5701,12.41,4836.251}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=240; + type="Land_HelipadSquare_F"; }; - class Item277 + class Item92 { - dataType="Marker"; - position[]={23162.15,14.283377,19607.332}; - name="road_32"; - type="hd_arrow"; - angle=34.257725; - id=1475; + dataType="Object"; + class PositionInfo + { + position[]={1714.0297,12.41,4836.3008}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=241; + type="Land_HelipadSquare_F"; }; - class Item278 + class Item93 { - dataType="Marker"; - position[]={22555.17,27.099434,20589.469}; - name="road_33"; - type="hd_arrow"; - angle=335.03088; - id=1476; + dataType="Object"; + class PositionInfo + { + position[]={3062.5676,14.69,4317.0547}; + angles[]={0,2.1329734,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=249; + type="Land_HelipadSquare_F"; }; - class Item279 + class Item94 { - dataType="Marker"; - position[]={23029.904,51.844334,21113.5}; - name="road_34"; - type="hd_arrow"; - angle=63.785625; - id=1477; + dataType="Object"; + class PositionInfo + { + position[]={3044.9717,14.69,4289.0176}; + angles[]={0,2.1329734,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=250; + type="Land_HelipadSquare_F"; }; - class Item280 + class Item95 { - dataType="Marker"; - position[]={24637.473,21.285206,20648.904}; - name="road_35"; - type="hd_arrow"; - angle=57.619133; - id=1478; + dataType="Object"; + class PositionInfo + { + position[]={3027.0491,14.69,4262.0176}; + angles[]={0,2.1329734,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=251; + type="Land_HelipadSquare_F"; }; - class Item281 + class Item96 { - dataType="Marker"; - position[]={25174.367,14.661154,20623.25}; - name="road_36"; - type="hd_arrow"; - angle=127.69429; - id=1479; + dataType="Object"; + class PositionInfo + { + position[]={3010.1948,14.69,4235.3579}; + angles[]={0,2.1329734,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=252; + type="Land_HelipadSquare_F"; }; - class Item282 + class Item97 { - dataType="Marker"; - position[]={25325.771,17.582952,21110.881}; - name="road_37"; - type="hd_arrow"; - angle=334.7471; - id=1480; + dataType="Object"; + class PositionInfo + { + position[]={3054.6279,25.833622,4129.917}; + angles[]={0,0.41018143,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=253; + type="Land_Cargo_Tower_V4_F"; + atlOffset=0.27638435; }; - class Item283 + class Item98 { - dataType="Marker"; - position[]={24739.473,75.226112,21810.691}; - name="road_38"; - type="hd_arrow"; - angle=69.393608; - id=1481; + dataType="Object"; + class PositionInfo + { + position[]={3216.8315,21.973166,4399.9165}; + angles[]={0,4.3744025,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=254; + type="Land_Cargo_Patrol_V4_F"; }; - class Item284 + class Item99 { - dataType="Marker"; - position[]={26280.432,40.25845,21788.68}; - name="road_39"; - type="hd_arrow"; - angle=52.54501; - id=1482; + dataType="Object"; + class PositionInfo + { + position[]={3135.9656,19.594999,4436.5063}; + angles[]={0,3.1965852,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=255; + type="Land_Cargo_Patrol_V4_F"; + atlOffset=-9.5367432e-007; }; - class Item285 + class Item100 { - dataType="Marker"; - position[]={26493.066,20.179955,21324.83}; - name="road_40"; - type="hd_arrow"; - angle=113.11617; - id=1483; + dataType="Object"; + class PositionInfo + { + position[]={2906.9736,19.54129,4128.606}; + angles[]={0,1.4735304,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=256; + type="Land_Cargo_Patrol_V4_F"; + atlOffset=0.0026073456; }; - class Item286 + class Item101 { - dataType="Marker"; - position[]={27080.533,11.835176,24018.773}; - name="road_41"; - type="hd_arrow"; - angle=227.508; - id=1484; - atlOffset=9.5367432e-007; + dataType="Layer"; + name="Outposts"; + class Entities + { + items=19; + class Item0 + { + dataType="Marker"; + position[]={3739.729,-7.6830001,4851.084}; + name="outp_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.496; + b=13.036; + angle=116.033; + id=257; + atlOffset=-23.722893; + }; + class Item1 + { + dataType="Marker"; + position[]={4374.8516,65.53186,6630.457}; + name="outpost_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=35.475227; + b=37.37513; + angle=119.03481; + id=121; + atlOffset=44.96637; + }; + class Item2 + { + dataType="Marker"; + position[]={4898.874,52.779789,720.89624}; + name="outpost_10"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=107.89522; + b=161.41794; + angle=90.683784; + id=202; + atlOffset=45.632519; + }; + class Item3 + { + dataType="Marker"; + position[]={5142.7827,55.316368,6023.8721}; + name="outpost_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=44.519325; + b=47.903667; + angle=136.63515; + id=124; + atlOffset=44.96637; + }; + class Item4 + { + dataType="Marker"; + position[]={3731.907,60.426365,4883.9443}; + name="outpost_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=41.753052; + b=37.37513; + angle=114.06979; + id=125; + atlOffset=44.966366; + }; + class Item5 + { + dataType="Marker"; + position[]={9046.54,104.87637,6004.8291}; + name="outpost_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=44.42963; + b=130.77122; + angle=168.85548; + id=131; + atlOffset=44.966373; + }; + class Item6 + { + dataType="Marker"; + position[]={8841.5352,180.08636,6129.6963}; + name="outpost_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=76.77066; + b=37.37513; + angle=179.67282; + id=132; + atlOffset=44.96637; + }; + class Item7 + { + dataType="Marker"; + position[]={2816.0447,194.20055,7877.333}; + name="outpost_8"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=49.033043; + b=64.149734; + angle=179.27458; + id=156; + atlOffset=44.839493; + }; + class Item8 + { + dataType="Marker"; + position[]={9253.416,62.026367,5145.6909}; + name="outpost_9"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorGreen"; + a=58.205769; + b=40.860683; + angle=90.683784; + id=157; + atlOffset=44.96637; + }; + class Item9 + { + dataType="Marker"; + position[]={5072.8408,13.456,6039.4941}; + name="outp_2_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.083; + b=10.351; + angle=124.91899; + id=259; + atlOffset=0.6110363; + }; + class Item10 + { + dataType="Marker"; + position[]={9028.2471,46.042,6046.2861}; + name="outp_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=26.857; + b=10.307; + angle=89.650002; + id=260; + atlOffset=-20.43644; + }; + class Item11 + { + dataType="Marker"; + position[]={9055.375,44.542969,6045.6963}; + name="outp_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=26.857; + b=10.307; + angle=91.258873; + id=262; + atlOffset=-20.338295; + }; + class Item12 + { + dataType="Marker"; + position[]={9266.2891,17.059999,5118.4312}; + name="outp_9_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.487; + b=5.724; + angle=0.61699969; + id=263; + }; + class Item13 + { + dataType="Marker"; + position[]={7824.52,217.645,6896.438}; + name="outp_6_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=264; + atlOffset=0.00044250488; + }; + class Item14 + { + dataType="Marker"; + position[]={9254.0684,145.606,6024.4766}; + name="outpost"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorGreen"; + a=67.4021; + b=88.879227; + angle=99.203995; + id=130; + atlOffset=44.966003; + }; + class Item15 + { + dataType="Marker"; + position[]={5728.3301,99.069,4240.7578}; + name="outpost_11"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorGreen"; + a=55.234207; + b=88.771461; + angle=180.39397; + id=208; + atlOffset=44.959; + }; + class Item16 + { + dataType="Marker"; + position[]={7860.5967,257.4444,6993.2944}; + name="outpost_6"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorGreen"; + a=127.78634; + b=139.33255; + angle=61.681442; + id=133; + atlOffset=43.77684; + }; + class Item17 + { + dataType="Marker"; + position[]={4112.1362,401.95099,8046.6763}; + name="outpost_7"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorGreen"; + a=52.469822; + b=69.335587; + angle=119.035; + id=144; + atlOffset=46.06662; + }; + class Item18 + { + dataType="Marker"; + position[]={8858.1904,46.956001,4771.8765}; + name="outpost_12"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorGreen"; + a=75.85791; + b=63.35891; + angle=90.683983; + id=311; + atlOffset=44.966; + }; + }; + id=258; + atlOffset=141.31024; }; - class Item287 + class Item102 { - dataType="Marker"; - position[]={26716.645,23.527546,22928.643}; - name="road_42"; - type="hd_arrow"; - angle=227.508; - id=1485; + dataType="Object"; + class PositionInfo + { + position[]={2800.8835,150.04987,7837.4761}; + angles[]={6.2791886,1.5746711,6.2491965}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=265; + type="Land_HelipadSquare_F"; }; - class Item288 + class Item103 { - dataType="Marker"; - position[]={8431.4795,115.94597,25108.053}; - name="respawn_east"; - type="flag_Viper"; - id=1486; - atlOffset=5.421051; + dataType="Object"; + class PositionInfo + { + position[]={5727.5259,54.110001,4292.5586}; + angles[]={0,3.1410565,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=266; + type="Land_HelipadSquare_F"; }; - class Item289 + class Item104 { - dataType="Group"; - side="East"; + dataType="Layer"; + name="Resources"; class Entities { - items=6; + items=13; class Item0 { - dataType="Object"; - class PositionInfo - { - position[]={8430.0654,111.13419,25112.033}; - }; - side="East"; - flags=7; - class Attributes - { - init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; - name="pvp_red_1"; - isPlayable=1; - }; - id=1488; - type="O_T_Recon_TL_F"; - atlOffset=7.6293945e-006; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={1422.6705,29.839157,7367.5142}; + name="resource_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=51.972672; + b=47.111237; + angle=281.88538; + id=120; + atlOffset=24.693537; + }; + class Item1 + { + dataType="Marker"; + position[]={5274.0278,225.81081,7857.4761}; + name="resource_10"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=51.972672; + b=34.364311; + angle=281.88538; + id=211; + atlOffset=24.784958; + }; + class Item2 + { + dataType="Marker"; + position[]={4608.9536,47.294952,6907.3477}; + name="resource_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=74.769104; + b=46.792278; + angle=320.11829; + id=122; + atlOffset=24.93462; + }; + class Item3 + { + dataType="Marker"; + position[]={6836.9419,63.028564,6717.687}; + name="resource_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=34.811058; + b=47.13047; + angle=281.88538; + id=135; + atlOffset=24.907688; + }; + class Item4 + { + dataType="Marker"; + position[]={6170.6523,62.671005,7588.8853}; + name="resource_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=44.153847; + b=48.682899; + angle=180.22874; + id=136; + atlOffset=24.968193; + }; + class Item5 + { + dataType="Marker"; + position[]={7503.6934,84.778198,4912.6758}; + name="resource_6"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=34.811058; + b=34.364311; + angle=292.0361; + id=141; + atlOffset=24.968197; + }; + class Item6 + { + dataType="Marker"; + position[]={7264.8252,30.230194,3751.6431}; + name="resource_8"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=92.706749; + b=83.818871; + angle=359.92911; + id=209; + atlOffset=25.834967; + }; + class Item7 + { + dataType="Marker"; + position[]={2220.1301,49.251251,7395.7134}; + name="resource_9"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBrown"; + a=60.015854; + b=38.063274; + angle=281.88538; + id=210; + atlOffset=24.363857; + }; + class Item8 + { + dataType="Marker"; + position[]={1399.634,2.5109999,7399.4219}; + name="reso_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.496; + b=13.036; + angle=104.24695; + id=269; + atlOffset=0.0003426075; + }; + class Item9 + { + dataType="Marker"; + position[]={4648.459,23.781,6939.7822}; + name="reso_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.496; + b=13.036; + angle=48.666992; + id=270; + atlOffset=-1.335144e-005; + }; + class Item10 + { + dataType="Layer"; + name="Factories"; + class Entities + { + items=6; + class Item0 + { + dataType="Marker"; + position[]={1676.8789,7.1300001,5542.083}; + name="factory"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=48.23391; + b=64.200623; + angle=349.7236; + id=2; + }; + class Item1 + { + dataType="Marker"; + position[]={4880.5518,34.564274,7143.6343}; + name="factory_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=44.645691; + b=76.16835; + angle=320.94269; + id=123; + atlOffset=0.18236542; + }; + class Item2 + { + dataType="Marker"; + position[]={7036.0254,8.6422958,5721.0391}; + name="factory_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorOrange"; + a=61.469276; + b=91.140617; + angle=28.15921; + id=134; + atlOffset=-1.1736374; + }; + class Item3 + { + dataType="Marker"; + position[]={4910.3218,34.771999,7097.9849}; + name="fact_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.496; + b=13.036; + angle=48.666992; + id=271; + atlOffset=-0.00010299683; + }; + class Item4 + { + dataType="Marker"; + position[]={7036.0757,11.563978,5765.0483}; + name="fact_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.496; + b=11.538742; + angle=28.279594; + id=274; + atlOffset=-0.071720123; + }; + class Item5 + { + dataType="Marker"; + position[]={1678.4561,7.1300001,5566.1011}; + name="fact_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.3446674; + b=11.539; + angle=83.315842; + id=275; + }; + }; + id=272; + atlOffset=-46.750244; + }; + class Item11 + { + dataType="Marker"; + position[]={5427.8452,36.214279,3475.4954}; + name="resource_5"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorBrown"; + a=150.1561; + b=100.8366; + angle=292.8999; + id=137; + atlOffset=23.614279; + }; + class Item12 + { + dataType="Marker"; + position[]={6310.1411,30.053932,4770.8174}; + name="resource_7"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorBrown"; + a=69.968704; + b=76.622749; + angle=228.59036; + id=158; + atlOffset=25.352036; + }; + }; + id=268; + atlOffset=53.832367; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={4853.9849,33.866829,7132.9248}; + angles[]={6.261188,4.0101862,6.251195}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=273; + type="Land_HelipadSquare_F"; + }; + class Item106 + { + dataType="Layer"; + name="Airfports"; + class Entities + { + items=24; + class Item0 + { + dataType="Marker"; + position[]={3024.5549,14.69,4333.6865}; + name="airp_1_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=243; }; class Item1 { - dataType="Object"; - class PositionInfo - { - position[]={8425.2529,110.82542,25107.521}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; - name="pvp_red_2"; - isPlayable=1; - }; - id=1489; - type="O_T_Recon_Medic_F"; - atlOffset=-7.6293945e-006; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male02CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.01; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={2957.5935,14.69,4183.0469}; + name="airp_1_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=248; }; class Item2 { - dataType="Object"; - class PositionInfo - { - position[]={8434.7275,110.06153,25107.672}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];"; - name="pvp_red_4"; - isPlayable=1; - }; - id=1490; - type="O_T_Recon_M_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={1874.51,12.419,4799.0889}; + name="airp_3_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=246; + atlOffset=-0.00010967255; }; class Item3 { - dataType="Object"; - class PositionInfo - { - position[]={8420.9658,110.31297,25102.33}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];"; - name="pvp_red_5"; - isPlayable=1; - }; - id=1491; - type="O_T_Recon_LAT_F"; - atlOffset=7.6293945e-006; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={1812.287,12.41,4893.8804}; + name="airp_3_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + id=247; + }; + class Item4 + { + dataType="Marker"; + position[]={4645.0332,38.018002,1319.4414}; + name="airport_2"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorEAST"; + a=360.85574; + b=242.26671; + angle=89.304955; + id=127; + atlOffset=20.928001; + }; + class Item5 + { + dataType="Marker"; + position[]={1743.1516,33.338001,4827.8022}; + name="airport_3"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorEAST"; + a=117.07976; + b=213.5576; + angle=94.254211; + id=128; + atlOffset=20.928001; + }; + class Item6 + { + dataType="Marker"; + position[]={466.6673,8.787446,358.72314}; + name="airport_4"; + markerType="ELLIPSE"; + type="Empty"; + colorName="ColorEAST"; + a=273.11526; + b=281.46762; + angle=89.924965; + id=234; + }; + class Item7 + { + dataType="Marker"; + position[]={3013.2468,14.512,4196.4004}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=141.64407; + b=336.23666; + angle=31.019993; + id=140; + atlOffset=-0.1779995; + }; + class Item8 + { + dataType="Marker"; + position[]={8875.5361,4.8220005,4839.5718}; + name="detectPlayer_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=124.12324; + b=156.49829; + angle=1.0200374; + id=142; + atlOffset=1.0337131; + }; + class Item9 + { + dataType="Marker"; + position[]={9606.3525,5,4914.6206}; + name="detectPlayer_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=109.853; + b=84.629974; + angle=359.79218; + id=143; + }; + class Item10 + { + dataType="Marker"; + position[]={4589.8452,17.09,859.77271}; + name="detectPlayer_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=109.853; + b=253.32314; + angle=359.79218; + id=200; + }; + class Item11 + { + dataType="Marker"; + position[]={4926.8027,17.09,1103.3167}; + name="detectPlayer_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=109.853; + b=292.11807; + angle=314.63162; + id=201; + }; + class Item12 + { + dataType="Marker"; + position[]={2994.0081,-9.0351009,4230.438}; + name="airp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=23.413891; + b=13.036; + angle=119.23458; + id=242; + atlOffset=-23.725101; + }; + class Item13 + { + dataType="Marker"; + position[]={9233.9014,5,4845.6558}; + name="airport"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=148.07298; + b=320.45807; + angle=89.925354; + id=0; + }; + class Item14 + { + dataType="Marker"; + position[]={3063.5786,35.61792,4273.3955}; + name="airport_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorEAST"; + a=226.811; + b=113.39554; + angle=121.86916; + id=126; + atlOffset=20.927921; + }; + class Item15 + { + dataType="Marker"; + position[]={4781.7739,40.814999,1424.745}; + name="airp_2_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + angle=328.74692; + id=285; + atlOffset=23.724998; + }; + class Item16 + { + dataType="Marker"; + position[]={4544.1309,40.814999,1212.955}; + name="airp_2_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + angle=328.74692; + id=286; + atlOffset=23.724998; + }; + class Item17 + { + dataType="Marker"; + position[]={4563.5269,17.09,1095.5393}; + name="airp_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=10.765129; + b=8.1544609; + angle=89.855125; + id=287; + }; + class Item18 + { + dataType="Marker"; + position[]={4777.729,17.09,1211.0724}; + name="airp_2_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=10.765129; + b=8.1544609; + angle=44.752724; + id=295; + }; + class Item19 + { + dataType="Marker"; + position[]={391.77301,32.324001,453.20599}; + name="airp_4_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + angle=328.74692; + id=297; + atlOffset=23.725462; + }; + class Item20 + { + dataType="Marker"; + position[]={9355.793,5,4802.3599}; + name="airp_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + angle=74.174973; + id=298; + }; + class Item21 + { + dataType="Marker"; + position[]={9179.5898,10.095,4776.2856}; + name="airp_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=14.473; + b=13.825; + angle=74.174973; + id=299; + atlOffset=5.0950003; + }; + class Item22 + { + dataType="Marker"; + position[]={9305.5244,5,4879.0215}; + name="airp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=23.414; + b=13.036; + angle=180.14229; + id=300; + }; + class Item23 + { + dataType="Marker"; + position[]={1847.658,-11.315,4810.9458}; + name="airp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.922; + b=7.3150001; + angle=89.929001; + id=352; + atlOffset=-23.724998; + }; + }; + id=276; + atlOffset=13.611166; + }; + class Item107 + { + dataType="Layer"; + name="Seaports"; + class Entities + { + items=5; + class Item0 + { + dataType="Marker"; + position[]={6092.9604,3.9160156,4884.9072}; + name="seaport_1"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=72.381622; + b=83.836197; + angle=0.64454061; + id=118; + atlOffset=-0.68398428; + }; + class Item1 + { + dataType="Marker"; + position[]={3791.2571,3.1015625,823.21167}; + name="seaport_2"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=145.2323; + b=153.64438; + angle=290.15149; + id=119; + atlOffset=-0.81843758; + }; + class Item2 + { + dataType="Marker"; + position[]={1953.5848,5.2261763,4885.2139}; + name="seaport_3"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=78.267166; + b=76.173935; + angle=330.8866; + id=129; + }; + class Item3 + { + dataType="Marker"; + position[]={5756.4092,-5.321588,6238.4331}; + name="seaport_4"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=98.078941; + b=83.836197; + angle=65.808563; + id=159; + atlOffset=-10.562359; }; class Item4 { - dataType="Object"; - class PositionInfo - { - position[]={8431.4385,111.04685,25113.623}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];"; - name="pvp_red_3"; - isPlayable=1; - }; - id=1554; - type="O_Soldier_AR_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male01PER"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={4472.418,4.2741041,2944.1504}; + name="seaport_5"; + markerType="RECTANGLE"; + type="Empty"; + colorName="ColorBlue"; + a=98.013321; + b=101.58385; + angle=311.6795; + id=177; + }; + }; + id=277; + atlOffset=27.005886; + }; + class Item108 + { + dataType="Layer"; + name="Roadblocks"; + class Entities + { + items=19; + class Item0 + { + dataType="Marker"; + position[]={1213.9502,-1.5800781,5012.0195}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=88; + atlOffset=-0.77007812; + }; + class Item1 + { + dataType="Marker"; + position[]={4048.137,16.283482,4891.9023}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=188; + atlOffset=-0.77007866; + }; + class Item2 + { + dataType="Marker"; + position[]={7079.4277,30.212574,6757.9155}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=197; + atlOffset=-0.77007866; + }; + class Item3 + { + dataType="Marker"; + position[]={6402.2871,39.684525,4382.2109}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=198; + atlOffset=-0.77007675; + }; + class Item4 + { + dataType="Marker"; + position[]={7025.4971,9.5864372,3838.6333}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=199; + atlOffset=-0.77007771; }; class Item5 { - dataType="Object"; - class PositionInfo - { - position[]={8430.5313,110.82644,25109.266}; - }; - side="East"; - flags=5; - class Attributes - { - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];"; - name="pvp_red_6"; - isPlayable=1; - }; - id=1556; - type="O_T_Recon_LAT_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male03CHI"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; + dataType="Marker"; + position[]={4438.334,15.954399,699.72186}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=34.417679; + b=15; + angle=231.22296; + id=203; + }; + class Item6 + { + dataType="Marker"; + position[]={5110.1812,8.2443142,816.16058}; + name="control_14"; + markerType="RECTANGLE"; + type="rectangle"; + a=27.764128; + b=15; + angle=218.96999; + id=204; + atlOffset=-0.76836967; + }; + class Item7 + { + dataType="Marker"; + position[]={3458.4607,6.5873747,4405.1655}; + name="control_15"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=205; + atlOffset=-0.77007866; + }; + class Item8 + { + dataType="Marker"; + position[]={6566.355,6.59904,6334.2402}; + name="control_16"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=206; + atlOffset=-0.77007866; + }; + class Item9 + { + dataType="Marker"; + position[]={3361.1038,15.766315,6487.2876}; + name="control_17"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=207; + atlOffset=-0.77007866; + }; + class Item10 + { + dataType="Marker"; + position[]={4974.1914,25.133081,2197.0903}; + name="control_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=189; + atlOffset=-0.77007866; + }; + class Item11 + { + dataType="Marker"; + position[]={7610.9258,5.0599217,5607.2227}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=190; + atlOffset=-0.77007818; + }; + class Item12 + { + dataType="Marker"; + position[]={8221.4023,9.2798529,5766.9619}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=191; + atlOffset=-0.77007771; + }; + class Item13 + { + dataType="Marker"; + position[]={8567.4111,6.7299218,5149.6719}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=192; + atlOffset=-0.77007818; + }; + class Item14 + { + dataType="Marker"; + position[]={1892.3354,34.66436,7167.3887}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=193; + atlOffset=-0.77007675; + }; + class Item15 + { + dataType="Marker"; + position[]={2561.439,101.47334,7669.9229}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=194; + atlOffset=-0.77008057; }; + class Item16 + { + dataType="Marker"; + position[]={5179.3794,29.174879,7282.5156}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=195; + atlOffset=-0.77007866; + }; + class Item17 + { + dataType="Marker"; + position[]={6537.5107,28.41358,7603.8623}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=15; + b=15; + angle=231.22296; + id=196; + atlOffset=-0.77007866; + }; + class Item18 + { + dataType="Marker"; + position[]={4400.8374,15.719203,1348.9581}; + name="control_18"; + markerType="RECTANGLE"; + type="rectangle"; + a=34.417679; + b=15; + angle=270.44904; + id=296; + }; + }; + id=278; + atlOffset=52.915527; + }; + class Item109 + { + dataType="Object"; + class PositionInfo + { + position[]={576.50085,8.7600002,425.40857}; + angles[]={0,4.7175293,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=279; + type="Land_HelipadSquare_F"; + }; + class Item110 + { + dataType="Logic"; + class PositionInfo + { + position[]={869.13599,9.9300003,5442.1558}; + }; + name="HC_commanderX"; + id=280; + type="HighCommand"; + }; + class Item111 + { + dataType="Logic"; + class PositionInfo + { + position[]={872.53564,9.9300003,5442.061}; + }; + id=281; + type="HighCommandSubordinate"; + }; + class Item112 + { + dataType="Marker"; + position[]={3468.0591,7.256,4396.9609}; + name="road"; + type="hd_arrow"; + id=282; + atlOffset=4.2438507e-005; + }; + class Item113 + { + dataType="Object"; + class PositionInfo + { + position[]={9174.5,5,4872.5}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=301; + type="Land_HelipadSquare_F"; + }; + class Item114 + { + dataType="Object"; + class PositionInfo + { + position[]={9199.5,5,4872.5}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=302; + type="Land_HelipadSquare_F"; + }; + class Item115 + { + dataType="Object"; + class PositionInfo + { + position[]={9206.3066,9.9050007,4976.3516}; + angles[]={0,3.1415927,0}; + }; + side="Empty"; + flags=5; + class Attributes + { }; + id=303; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item116 + { + dataType="Object"; + class PositionInfo + { + position[]={9201.9326,5.7634072,4980.3555}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=304; + type="Land_HBarrierWall6_F"; + }; + class Item117 + { + dataType="Object"; + class PositionInfo + { + position[]={9210.3047,5.7634072,4980.6177}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=305; + type="Land_HBarrierWall6_F"; + }; + class Item118 + { + dataType="Object"; + class PositionInfo + { + position[]={8929.5586,9.9050007,4976.1611}; + angles[]={0,2.1118484,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=306; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item119 + { + dataType="Object"; + class PositionInfo + { + position[]={9467.5967,9.8829174,4971.104}; + angles[]={0,3.7873645,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=307; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=-4.7683716e-007; + }; + class Item120 + { + dataType="Object"; + class PositionInfo + { + position[]={9470.7158,6.1985631,4974.9194}; + angles[]={0.017997233,3.7873645,6.2651882}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=309; + type="Land_HBarrier_Big_F"; + }; + class Item121 + { + dataType="Object"; + class PositionInfo + { + position[]={8925.4609,6.21,4979.0303}; + angles[]={0,2.1118484,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=310; + type="Land_HBarrier_Big_F"; + }; + class Item122 + { + dataType="Object"; + class PositionInfo + { + position[]={9116.3701,9.9050007,4822.1743}; + angles[]={0,0.72487926,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=312; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item123 + { + dataType="Object"; + class PositionInfo + { + position[]={9112.7998,6.1949596,4818.6699}; + angles[]={6.2751846,0.72487926,0.0019834081}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=313; + type="Land_HBarrier_Big_F"; + }; + class Item124 + { + dataType="Object"; + class PositionInfo + { + position[]={9400.792,9.6539993,4815.2905}; + angles[]={0,5.3304138,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=314; + type="Land_Cargo_Patrol_V3_F"; + atlOffset=4.7683716e-007; + }; + class Item125 + { + dataType="Object"; + class PositionInfo + { + position[]={9404.6572,5.3677812,4812.1147}; + angles[]={6.1993828,5.3304138,6.1954112}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=315; + type="Land_HBarrier_Big_F"; + }; + class Item126 + { + dataType="Object"; + class PositionInfo + { + position[]={9248.1621,8.699235,4743.2109}; + angles[]={0,0.029731244,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=316; + type="Land_Cargo_Patrol_V3_F"; + }; + class Item127 + { + dataType="Object"; + class PositionInfo + { + position[]={9247.665,3.9983017,4738.2334}; + angles[]={6.0761933,0.029731244,0.025994543}; + }; + side="Empty"; + flags=4; class Attributes { }; - id=1487; - atlOffset=7.6293945e-006; + id=317; + type="Land_HBarrier_Big_F"; + atlOffset=2.3841858e-007; + }; + class Item128 + { + dataType="Marker"; + position[]={4982.8779,17.352125,5946.2769}; + name="road_1"; + type="hd_arrow"; + id=318; + atlOffset=4.196167e-005; + }; + class Item129 + { + dataType="Marker"; + position[]={6186.1226,4.5815167,7140.0923}; + name="road_2"; + type="hd_arrow"; + id=319; + atlOffset=4.2438507e-005; + }; + class Item130 + { + dataType="Marker"; + position[]={6407.4814,27.562088,7624.4834}; + name="road_3"; + type="hd_arrow"; + id=320; + atlOffset=4.196167e-005; + }; + class Item131 + { + dataType="Marker"; + position[]={6755.207,46.149174,6451.499}; + name="road_4"; + type="hd_arrow"; + id=321; + atlOffset=4.196167e-005; + }; + class Item132 + { + dataType="Marker"; + position[]={6669.332,9.7615795,7019.2314}; + name="road_5"; + type="hd_arrow"; + id=322; + atlOffset=4.196167e-005; + }; + class Item133 + { + dataType="Marker"; + position[]={6487.5713,5.1223044,6285.8096}; + name="road_6"; + type="hd_arrow"; + id=323; + atlOffset=4.2438507e-005; + }; + class Item134 + { + dataType="Marker"; + position[]={6076.0132,36.164722,5983.7061}; + name="road_7"; + type="hd_arrow"; + id=324; + atlOffset=4.196167e-005; + }; + class Item135 + { + dataType="Marker"; + position[]={5709.9146,9.3883533,5943.8403}; + name="road_8"; + type="hd_arrow"; + id=325; + atlOffset=4.2915344e-005; + }; + class Item136 + { + dataType="Marker"; + position[]={5800.8984,5.9700422,5545.0903}; + name="road_9"; + type="hd_arrow"; + id=326; + atlOffset=4.2438507e-005; + }; + class Item137 + { + dataType="Marker"; + position[]={6332.7788,22.075169,5732.4326}; + name="road_10"; + type="hd_arrow"; + id=327; + atlOffset=4.196167e-005; + }; + class Item138 + { + dataType="Marker"; + position[]={7389.5063,55.06031,6148.1665}; + name="road_11"; + type="hd_arrow"; + id=328; + atlOffset=4.196167e-005; + }; + class Item139 + { + dataType="Marker"; + position[]={7105.0298,12.872475,5777.6113}; + name="road_12"; + type="hd_arrow"; + id=329; + atlOffset=4.2915344e-005; + }; + class Item140 + { + dataType="Marker"; + position[]={8727.0811,105.12666,6250.9473}; + name="road_13"; + type="hd_arrow"; + id=330; + atlOffset=5.3405762e-005; + }; + class Item141 + { + dataType="Marker"; + position[]={8909.3047,23.660042,5291.5479}; + name="road_14"; + type="hd_arrow"; + id=331; + atlOffset=4.196167e-005; + }; + class Item142 + { + dataType="Marker"; + position[]={8264.3213,18.447327,5824.7241}; + name="road_15"; + type="hd_arrow"; + id=332; + atlOffset=4.196167e-005; + }; + class Item143 + { + dataType="Marker"; + position[]={7639.145,47.649624,4703.9355}; + name="road_16"; + type="hd_arrow"; + id=333; + atlOffset=4.196167e-005; + }; + class Item144 + { + dataType="Marker"; + position[]={6851.7676,42.503872,4757.21}; + name="road_17"; + type="hd_arrow"; + id=334; + atlOffset=4.196167e-005; + }; + class Item145 + { + dataType="Marker"; + position[]={6373.2373,38.162395,4359.1152}; + name="road_18"; + type="hd_arrow"; + id=335; + atlOffset=4.196167e-005; + }; + class Item146 + { + dataType="Marker"; + position[]={5335.3003,7.1832151,3627.9927}; + name="road_19"; + type="hd_arrow"; + id=336; + atlOffset=4.2438507e-005; }; - class Item290 + class Item147 { - dataType="Object"; - class PositionInfo - { - position[]={8421.9697,115.51557,25113.684}; - angles[]={6.2711902,0,0.04796192}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="if !(isMultiplayer) then {deleteVehicle this}"; - }; - id=1496; - type="Flag_Viper_F"; + dataType="Marker"; + position[]={4986.2813,25.105524,2205.9534}; + name="road_20"; + type="hd_arrow"; + id=337; + atlOffset=4.196167e-005; }; - class Item291 + class Item148 { - dataType="Logic"; - class PositionInfo - { - position[]={3601.2261,15.886338,10268.799}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_1"; - isPlayable=1; - id=1536; - type="HeadlessClient_F"; - atlOffset=1.1444092e-005; + dataType="Marker"; + position[]={4195.4937,15.27523,5266.2251}; + name="road_21"; + type="hd_arrow"; + id=338; + atlOffset=4.2915344e-005; }; - class Item292 + class Item149 { - dataType="Logic"; - class PositionInfo - { - position[]={3603.0728,15.78653,10267.805}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_2"; - isPlayable=1; - id=1537; - type="HeadlessClient_F"; - atlOffset=1.5258789e-005; + dataType="Marker"; + position[]={1545.5944,7.1300426,5697.5244}; + name="road_22"; + type="hd_arrow"; + id=339; + atlOffset=4.2438507e-005; }; - class Item293 + class Item150 { - dataType="Logic"; - class PositionInfo - { - position[]={3604.354,15.72323,10266.919}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_3"; - isPlayable=1; - id=1538; - type="HeadlessClient_F"; - atlOffset=3.8146973e-005; + dataType="Marker"; + position[]={1740.4181,40.745392,6775.5947}; + name="road_23"; + type="hd_arrow"; + id=340; + atlOffset=4.196167e-005; }; - class Item294 + class Item151 { - dataType="Logic"; - class PositionInfo - { - position[]={3606.2766,15.627611,10266.176}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_4"; - isPlayable=1; - id=1539; - type="HeadlessClient_F"; - atlOffset=2.0027161e-005; + dataType="Marker"; + position[]={2241.3816,19.702797,7326.8418}; + name="road_24"; + type="hd_arrow"; + id=341; + atlOffset=4.196167e-005; }; - class Item295 + class Item152 { - dataType="Logic"; - class PositionInfo - { - position[]={3607.4993,15.570157,10265.348}; - angles[]={6.2818413,0,6.2431998}; - }; - name="hc_5"; - isPlayable=1; - id=1540; - type="HeadlessClient_F"; - atlOffset=5.0544739e-005; + dataType="Marker"; + position[]={2298.2693,2.9884403,8497.6543}; + name="road_25"; + type="hd_arrow"; + id=342; + atlOffset=4.2438507e-005; }; - class Item296 + class Item153 { - dataType="Logic"; - class PositionInfo - { - position[]={3630.5549,14.448284,10270.185}; - }; - id=1542; - type="ModuleCurator_F"; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#adminLogged"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - }; - nAttributes=4; - }; + dataType="Marker"; + position[]={3297.8071,19.438557,6441.5225}; + name="road_26"; + type="hd_arrow"; + id=343; + atlOffset=4.196167e-005; }; - class Item297 + class Item154 { - dataType="Object"; - class PositionInfo - { - position[]={3605.1279,16.32,10278.098}; - angles[]={0.014660765,1.0016968,6.2232509}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="fireX"; - }; - id=1546; - type="Land_TentSolar_01_olive_F"; - atlOffset=-0.049278259; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; + dataType="Marker"; + position[]={4271.5156,20.920042,6582.3096}; + name="road_27"; + type="hd_arrow"; + id=344; + atlOffset=4.196167e-005; }; - class Item298 + class Item155 { - dataType="Logic"; - class PositionInfo - { - position[]={3612.949,14.978458,10264.68}; - }; - name="pathfinding"; - id=1557; - type="Logic"; - atlOffset=9.5367432e-007; + dataType="Marker"; + position[]={5187.7246,29.679436,7277.5586}; + name="road_28"; + type="hd_arrow"; + id=345; + atlOffset=4.196167e-005; + }; + class Item156 + { + dataType="Marker"; + position[]={5357.751,163.60167,7726.731}; + name="road_29"; + type="hd_arrow"; + id=346; + atlOffset=4.5776367e-005; + }; + class Item157 + { + dataType="Marker"; + position[]={7061.0146,9.0371151,3841.2427}; + name="road_30"; + type="hd_arrow"; + id=347; + atlOffset=4.196167e-005; + }; + class Item158 + { + dataType="Marker"; + position[]={4385.0557,30.939602,1348.6993}; + name="spawnpoint_2"; + type="hd_start"; + angle=28.14724; + id=348; + atlOffset=15.667422; + }; + class Item159 + { + dataType="Marker"; + position[]={1780.5658,28.087421,4922.3477}; + name="spawnpoint_3"; + type="hd_start"; + angle=28.14724; + id=349; + atlOffset=15.667421; + }; + class Item160 + { + dataType="Marker"; + position[]={521.91888,24.427422,333.45093}; + name="spawnpoint_4"; + type="hd_start"; + angle=28.14724; + id=350; + atlOffset=15.667421; + }; + class Item161 + { + dataType="Marker"; + position[]={9207.2539,20.667,4988.5352}; + name="spawnpoint"; + type="hd_start"; + angle=28.146994; + id=351; + atlOffset=15.667; + }; + class Item162 + { + dataType="Marker"; + position[]={4920.5439,0.38800001,5730.7168}; + name="island_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=5190.1421; + b=5239.7939; + angle=55.783993; + id=353; + atlOffset=-19.74058; + }; + class Item163 + { + dataType="Marker"; + position[]={479.26917,0,378.30554}; + name="island_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=405.41153; + b=418.44135; + id=354; + atlOffset=-8.79; }; }; class Connections @@ -8595,8 +8403,8 @@ class Mission class Item0 { linkID=0; - item0=946; - item1=947; + item0=280; + item1=281; class CustomData { type="Sync"; @@ -8605,8 +8413,8 @@ class Mission class Item1 { linkID=1; - item0=1013; - item1=946; + item0=23; + item1=280; class CustomData { type="Sync"; @@ -8615,8 +8423,8 @@ class Mission class Item2 { linkID=2; - item0=1014; - item1=946; + item0=27; + item1=280; class CustomData { type="Sync"; @@ -8625,8 +8433,8 @@ class Mission class Item3 { linkID=3; - item0=1020; - item1=946; + item0=28; + item1=280; class CustomData { type="Sync"; @@ -8635,8 +8443,8 @@ class Mission class Item4 { linkID=4; - item0=1022; - item1=946; + item0=29; + item1=280; class CustomData { type="Sync"; @@ -8645,8 +8453,8 @@ class Mission class Item5 { linkID=5; - item0=1024; - item1=946; + item0=30; + item1=280; class CustomData { type="Sync"; @@ -8655,8 +8463,8 @@ class Mission class Item6 { linkID=6; - item0=1026; - item1=946; + item0=31; + item1=280; class CustomData { type="Sync"; @@ -8665,8 +8473,8 @@ class Mission class Item7 { linkID=7; - item0=1028; - item1=946; + item0=32; + item1=280; class CustomData { type="Sync"; @@ -8675,8 +8483,8 @@ class Mission class Item8 { linkID=8; - item0=1030; - item1=946; + item0=33; + item1=280; class CustomData { type="Sync"; @@ -8685,8 +8493,8 @@ class Mission class Item9 { linkID=9; - item0=1032; - item1=946; + item0=34; + item1=280; class CustomData { type="Sync"; @@ -8695,8 +8503,8 @@ class Mission class Item10 { linkID=10; - item0=1034; - item1=946; + item0=35; + item1=280; class CustomData { type="Sync"; @@ -8705,8 +8513,8 @@ class Mission class Item11 { linkID=11; - item0=1036; - item1=946; + item0=36; + item1=280; class CustomData { type="Sync"; @@ -8715,8 +8523,8 @@ class Mission class Item12 { linkID=12; - item0=1038; - item1=946; + item0=37; + item1=280; class CustomData { type="Sync"; @@ -8725,8 +8533,8 @@ class Mission class Item13 { linkID=13; - item0=1040; - item1=946; + item0=38; + item1=280; class CustomData { type="Sync"; @@ -8735,8 +8543,8 @@ class Mission class Item14 { linkID=14; - item0=1042; - item1=946; + item0=39; + item1=280; class CustomData { type="Sync"; @@ -8745,8 +8553,8 @@ class Mission class Item15 { linkID=15; - item0=1046; - item1=946; + item0=40; + item1=280; class CustomData { type="Sync"; @@ -8755,8 +8563,8 @@ class Mission class Item16 { linkID=16; - item0=1048; - item1=946; + item0=41; + item1=280; class CustomData { type="Sync"; @@ -8765,8 +8573,8 @@ class Mission class Item17 { linkID=17; - item0=1050; - item1=946; + item0=42; + item1=280; class CustomData { type="Sync"; @@ -8775,8 +8583,8 @@ class Mission class Item18 { linkID=18; - item0=1052; - item1=946; + item0=43; + item1=280; class CustomData { type="Sync"; @@ -8785,8 +8593,8 @@ class Mission class Item19 { linkID=19; - item0=1054; - item1=946; + item0=44; + item1=280; class CustomData { type="Sync"; @@ -8795,8 +8603,8 @@ class Mission class Item20 { linkID=20; - item0=1058; - item1=946; + item0=45; + item1=280; class CustomData { type="Sync"; @@ -8805,8 +8613,8 @@ class Mission class Item21 { linkID=21; - item0=1060; - item1=946; + item0=46; + item1=280; class CustomData { type="Sync"; @@ -8815,8 +8623,8 @@ class Mission class Item22 { linkID=22; - item0=1062; - item1=946; + item0=47; + item1=280; class CustomData { type="Sync"; @@ -8825,8 +8633,8 @@ class Mission class Item23 { linkID=23; - item0=1064; - item1=946; + item0=48; + item1=280; class CustomData { type="Sync"; @@ -8835,8 +8643,8 @@ class Mission class Item24 { linkID=24; - item0=1066; - item1=946; + item0=49; + item1=280; class CustomData { type="Sync"; @@ -8845,8 +8653,8 @@ class Mission class Item25 { linkID=25; - item0=1044; - item1=946; + item0=50; + item1=280; class CustomData { type="Sync"; @@ -8855,8 +8663,8 @@ class Mission class Item26 { linkID=26; - item0=1056; - item1=946; + item0=51; + item1=280; class CustomData { type="Sync"; @@ -8865,8 +8673,8 @@ class Mission class Item27 { linkID=27; - item0=1417; - item1=946; + item0=52; + item1=280; class CustomData { type="Sync"; @@ -8875,8 +8683,8 @@ class Mission class Item28 { linkID=28; - item0=1419; - item1=946; + item0=53; + item1=280; class CustomData { type="Sync"; @@ -8885,8 +8693,8 @@ class Mission class Item29 { linkID=29; - item0=1421; - item1=946; + item0=54; + item1=280; class CustomData { type="Sync"; @@ -8895,8 +8703,8 @@ class Mission class Item30 { linkID=30; - item0=1423; - item1=946; + item0=55; + item1=280; class CustomData { type="Sync"; @@ -8905,8 +8713,8 @@ class Mission class Item31 { linkID=31; - item0=1425; - item1=946; + item0=56; + item1=280; class CustomData { type="Sync"; @@ -8915,8 +8723,8 @@ class Mission class Item32 { linkID=32; - item0=1427; - item1=946; + item0=57; + item1=280; class CustomData { type="Sync"; @@ -8925,8 +8733,8 @@ class Mission class Item33 { linkID=33; - item0=1429; - item1=946; + item0=58; + item1=280; class CustomData { type="Sync"; @@ -8935,8 +8743,8 @@ class Mission class Item34 { linkID=34; - item0=1431; - item1=946; + item0=59; + item1=280; class CustomData { type="Sync"; @@ -8945,8 +8753,8 @@ class Mission class Item35 { linkID=35; - item0=1433; - item1=946; + item0=60; + item1=280; class CustomData { type="Sync"; @@ -8955,8 +8763,8 @@ class Mission class Item36 { linkID=36; - item0=1435; - item1=946; + item0=61; + item1=280; class CustomData { type="Sync"; @@ -8965,8 +8773,8 @@ class Mission class Item37 { linkID=37; - item0=1437; - item1=946; + item0=62; + item1=280; class CustomData { type="Sync"; @@ -8975,8 +8783,8 @@ class Mission class Item38 { linkID=38; - item0=1439; - item1=946; + item0=63; + item1=280; class CustomData { type="Sync"; @@ -8985,8 +8793,8 @@ class Mission class Item39 { linkID=39; - item0=1498; - item1=946; + item0=64; + item1=280; class CustomData { type="Sync"; @@ -8995,8 +8803,8 @@ class Mission class Item40 { linkID=40; - item0=1500; - item1=946; + item0=65; + item1=280; class CustomData { type="Sync"; @@ -9005,8 +8813,8 @@ class Mission class Item41 { linkID=41; - item0=1502; - item1=946; + item0=66; + item1=280; class CustomData { type="Sync"; @@ -9015,8 +8823,8 @@ class Mission class Item42 { linkID=42; - item0=1504; - item1=946; + item0=67; + item1=280; class CustomData { type="Sync"; @@ -9025,8 +8833,8 @@ class Mission class Item43 { linkID=43; - item0=1506; - item1=946; + item0=68; + item1=280; class CustomData { type="Sync"; @@ -9035,8 +8843,8 @@ class Mission class Item44 { linkID=44; - item0=1508; - item1=946; + item0=69; + item1=280; class CustomData { type="Sync"; @@ -9045,8 +8853,8 @@ class Mission class Item45 { linkID=45; - item0=1510; - item1=946; + item0=70; + item1=280; class CustomData { type="Sync"; @@ -9055,8 +8863,8 @@ class Mission class Item46 { linkID=46; - item0=1512; - item1=946; + item0=71; + item1=280; class CustomData { type="Sync"; @@ -9065,8 +8873,8 @@ class Mission class Item47 { linkID=47; - item0=1514; - item1=946; + item0=72; + item1=280; class CustomData { type="Sync"; @@ -9075,8 +8883,8 @@ class Mission class Item48 { linkID=48; - item0=1516; - item1=946; + item0=73; + item1=280; class CustomData { type="Sync"; @@ -9085,8 +8893,8 @@ class Mission class Item49 { linkID=49; - item0=1518; - item1=946; + item0=74; + item1=280; class CustomData { type="Sync"; @@ -9095,8 +8903,8 @@ class Mission class Item50 { linkID=50; - item0=1520; - item1=946; + item0=75; + item1=280; class CustomData { type="Sync"; @@ -9105,8 +8913,8 @@ class Mission class Item51 { linkID=51; - item0=1522; - item1=946; + item0=76; + item1=280; class CustomData { type="Sync"; @@ -9115,8 +8923,8 @@ class Mission class Item52 { linkID=52; - item0=1524; - item1=946; + item0=77; + item1=280; class CustomData { type="Sync"; @@ -9125,8 +8933,8 @@ class Mission class Item53 { linkID=53; - item0=1526; - item1=946; + item0=78; + item1=280; class CustomData { type="Sync"; @@ -9135,8 +8943,8 @@ class Mission class Item54 { linkID=54; - item0=1528; - item1=946; + item0=79; + item1=280; class CustomData { type="Sync"; @@ -9145,8 +8953,8 @@ class Mission class Item55 { linkID=55; - item0=1530; - item1=946; + item0=80; + item1=280; class CustomData { type="Sync"; @@ -9155,8 +8963,8 @@ class Mission class Item56 { linkID=56; - item0=1532; - item1=946; + item0=81; + item1=280; class CustomData { type="Sync"; @@ -9165,8 +8973,8 @@ class Mission class Item57 { linkID=57; - item0=1016; - item1=946; + item0=82; + item1=280; class CustomData { type="Sync"; @@ -9175,8 +8983,8 @@ class Mission class Item58 { linkID=58; - item0=1017; - item1=946; + item0=83; + item1=280; class CustomData { type="Sync"; @@ -9185,8 +8993,8 @@ class Mission class Item59 { linkID=59; - item0=1018; - item1=946; + item0=84; + item1=280; class CustomData { type="Sync"; @@ -9195,8 +9003,8 @@ class Mission class Item60 { linkID=60; - item0=1015; - item1=946; + item0=85; + item1=280; class CustomData { type="Sync"; diff --git a/Map-Templates/Antistasi-Tembelan-Island.Tembelan/roadsDBTembelan.sqf b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/roadsDBTembelan.sqf new file mode 100644 index 0000000000..eb400da7f2 --- /dev/null +++ b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/roadsDBTembelan.sqf @@ -0,0 +1 @@ +{roadsX setVariable [_x select 0,_x select 1]} forEach [["DefaultKeyPoint1",[[1588,4777,0],[1588,4793,0],[1588,4782,0],[1588,4819,0],[1588,4847,0],[1588,4856,0],[1588,4873,0],[1588,4889,0],[1620,4753,0],[1601,4771,0],[1606,4856,0],[1633,4741,0],[1632,4743,0],[1636,4856,0],[1650,4743,0],[1678,4743,0],[1664,4856,0],[1685,4856,0],[1682,4857,0],[1682,4875,0],[1681,4901,0],[1681,4919,0],[1682,4923,0],[1704,4743,0],[1707,4856,0],[1701,4923,0],[1723,4743,0],[1729,4856,0],[1732,4923,0],[1744,4743,0],[1751,4856,0],[1765,4743,0],[1773,4856,0],[1766,4923,0],[1786,4743,0],[1795,4856,0],[1783,4859,0],[1782,4877,0],[1782,4903,0],[1782,4932,0],[1796,4923,0],[1782,4957,0],[1785,4981,0],[1792,5004,0],[1793,5082,0],[1807,4743,0],[1815,4856,0],[1818,4921,0],[1814,4923,0],[1804,5025,0],[1812,5044,0],[1803,5074,0],[1812,5061,0],[1827,4743,0],[1832,4908,0],[1846,4743,0],[1842,4856,0],[1854,4888,0],[1871,4743,0],[1871,4856,0],[1879,4865,0],[1898,4743,0],[1887,4856,0],[1913,4756,0],[1913,4741,0],[1913,4743,0],[1913,4777,0],[1913,4800,0],[1912,4833,0],[1913,4821,0],[1913,4832,0],[1913,4836,0],[1900,4844,0],[1926,4848,0],[1945,4870,0],[1958,4884,0]]],["DefaultKeyPoint4",[[2048,8409,0],[2066,8418,0],[2089,8431,0],[2117,8447,0],[2140,8461,0],[2161,8474,0],[2182,8490,0],[2217,8158,1],[2210,8196,1],[2205,8506,0],[2239,8184,0],[2231,8518,0],[2259,8186,0],[2258,8519,0],[2286,8187,0],[2297,8498,0],[2282,8506,0],[2316,8040,0],[2313,8069,0],[2313,8103,0],[2313,8135,0],[2314,8161,0],[2314,8176,0],[2313,8182,0],[2310,8187,0],[2308,8186,0],[2314,8184,0],[2308,8194,0],[2302,8187,0],[2308,8215,0],[2308,8242,0],[2307,8263,0],[2305,8286,0],[2306,8308,0],[2309,8329,0],[2314,8347,0],[2319,8474,0],[2304,8490,0],[2305,8514,0],[2337,7750,0],[2330,7988,0],[2322,8014,0],[2321,8182,0],[2324,8373,0],[2333,8373,0],[2325,8369,0],[2334,8400,0],[2338,8420,0],[2338,8439,0],[2331,8457,0],[2322,8541,0],[2339,8563,0],[2341,7779,0],[2345,7810,0],[2350,7843,0],[2351,7871,0],[2351,7893,0],[2350,7915,0],[2347,7936,0],[2340,7961,0],[2342,8183,0],[2343,8379,0],[2352,8388,0],[2356,8396,0],[2358,8403,0],[2353,8577,0],[2373,8184,0],[2375,8594,0],[2397,8607,0],[2405,8186,0],[2413,8616,0],[2427,8187,0],[2430,8624,0],[2446,8633,0],[2468,8645,0],[2493,8664,0],[2514,8685,0],[2579,7734,0],[2589,7760,0],[2599,7783,0],[2611,7805,0],[2624,7825,0],[2639,7843,0],[2655,7859,0],[2658,8389,0],[2674,7874,0],[2667,8396,0],[2691,7886,0],[2693,8407,0],[2711,7895,0],[2733,7901,0],[2724,8418,0],[2754,7904,0],[2754,8136,0],[2759,8122,0],[2755,8127,0],[2754,8151,0],[2755,8424,0],[2774,7906,0],[2762,8117,0],[2775,8179,0],[2761,8165,0],[2794,7907,0],[2789,8192,0],[2782,8426,0],[2815,7908,0],[2806,8203,0],[2816,8275,0],[2811,8294,0],[2809,8315,0],[2806,8338,0],[2805,8368,0],[2806,8394,0],[2808,8412,0],[2820,8428,0],[2808,8429,0],[2800,8427,0],[2806,8447,0],[2805,8468,0],[2814,8499,0],[2807,8486,0],[2837,7909,0],[2821,8212,0],[2825,8239,0],[2825,8223,0],[2821,8258,0],[2840,8424,0],[2824,8513,0],[2829,8525,0],[2829,8538,0],[2827,8553,0],[2851,7910,0],[2862,8415,0],[2887,8405,0],[2905,8398,0],[2918,8394,0],[2932,8399,0],[2927,8394,0],[2937,8409,0]]],["DefaultKeyPoint5",[[2244,6019,0],[2250,6029,0],[2264,6051,0],[2275,6079,0],[2280,6109,0],[2288,6136,0],[2298,6155,0],[2295,6514,0],[2290,6536,0],[2287,6555,0],[2285,6581,0],[2283,6607,0],[2282,6626,0],[2310,6171,0],[2318,6441,0],[2312,6457,0],[2307,6472,0],[2301,6490,0],[2313,6658,0],[2327,6189,0],[2339,6394,0],[2329,6412,0],[2323,6426,0],[2330,6659,0],[2350,6204,0],[2356,6360,0],[2347,6377,0],[2349,6661,0],[2376,6207,0],[2377,6325,0],[2367,6342,0],[2365,6666,0],[2377,6673,0],[2388,6150,0],[2388,6165,0],[2387,6194,0],[2389,6206,0],[2385,6222,0],[2383,6249,0],[2384,6274,0],[2389,6294,0],[2387,6313,0],[2396,6304,0],[2392,6305,0],[2388,6675,0],[2395,6675,0],[2397,6674,0],[2406,6297,0],[2423,6291,0],[2445,6286,0],[2457,6285,0],[2554,6168,0],[2576,6167,0],[2598,6323,0],[2592,6343,0],[2588,6362,0],[2588,6381,0],[2595,6402,0],[2609,6170,0],[2620,6276,0],[2613,6294,0],[2617,6292,0],[2607,6301,0],[2606,6425,0],[2638,6249,0],[2626,6290,0],[2638,6287,0],[2621,6451,0],[2638,6477,0],[2642,6175,0],[2656,6226,0],[2650,6284,0],[2654,6501,0],[2669,6176,0],[2668,6213,0],[2674,6209,0],[2678,6279,0],[2663,6281,0],[2667,6523,0],[2680,6544,0],[2689,5854,0],[2681,5864,0],[2689,6168,0],[2683,6205,0],[2692,6201,0],[2692,6280,0],[2691,6565,0],[2698,6587,0],[2705,5833,0],[2706,6155,0],[2716,6175,0],[2702,6194,0],[2709,6286,0],[2703,6283,0],[2704,6611,0],[2709,6635,0],[2712,6658,0],[2719,6679,0],[2724,5809,0],[2731,6147,0],[2728,6157,0],[2735,6148,0],[2730,6696,0],[2735,6721,0],[2733,6749,0],[2741,5787,0],[2760,6147,0],[2788,6153,0],[2811,6160,0],[2828,6168,0],[2846,6177,0],[2864,6187,0],[2884,6195,0],[2906,6202,0],[2929,6209,0],[2951,6217,0],[2969,6225,0],[2986,6234,0],[3007,6247,0],[3033,6263,0],[3060,6275,0],[3088,6285,0],[3115,6295,0]]],["DefaultKeyPoint10",[[2969,6225,0],[2986,6234,0],[3007,6247,0],[3033,6263,0],[3033,6648,0],[3060,6275,0],[3052,6613,0],[3042,6630,0],[3066,6592,0],[3088,6285,0],[3085,6567,0],[3115,6295,0],[3113,6529,0],[3100,6546,0],[3139,6306,0],[3132,6509,0],[3153,6491,0],[3162,6317,0],[3171,6478,0],[3181,6327,0],[3189,6467,0],[3201,6345,0],[3208,6458,0],[3221,6366,0],[3228,6452,0],[3241,6388,0],[3259,6409,0],[3249,6448,0],[3274,6422,0],[3268,6445,0],[3295,6439,0],[3287,6443,0],[3301,6442,0],[3321,6459,0],[3346,6478,0],[3376,5897,0],[3376,6476,0],[3367,6490,0],[3372,6488,0],[3382,5909,0],[3392,5934,0],[3385,5922,0],[3387,6364,0],[3386,6453,0],[3385,6497,0],[3413,5958,0],[3401,5946,0],[3404,6365,0],[3418,6403,0],[3402,6425,0],[3411,6508,0],[3436,5976,0],[3425,5967,0],[3425,6369,0],[3434,6377,0],[3432,6389,0],[3437,6384,0],[3433,6386,0],[3438,6515,0],[3449,5987,0],[3457,6352,0],[3444,6375,0],[3452,6362,0],[3460,6390,0],[3447,6384,0],[3459,6515,0],[3462,5997,0],[3472,6007,0],[3479,6019,0],[3467,6398,0],[3470,6404,0],[3485,6033,0],[3492,6050,0],[3498,6065,0],[3483,6514,0],[3507,6078,0],[3515,6090,0],[3510,6513,0],[3526,6102,0],[3533,6108,0],[3533,6512,0],[3542,6116,0],[3558,6107,0],[3542,6107,0],[3555,6129,0],[3554,6519,0],[3579,6109,0],[3567,6144,0],[3579,6162,0],[3575,6533,0],[3591,6179,0],[3588,6551,0],[3599,6576,0],[3600,6110,0],[3603,6195,0],[3616,6212,0],[3612,6596,0],[3624,6110,0],[3626,6227,0],[3633,6243,0],[3637,6257,0],[3637,6267,0],[3637,6272,0],[3634,6611,0],[3649,6110,0],[3674,6106,0],[3661,6620,0],[3683,6617,0],[3696,6609,0],[3703,6100,0],[3706,6603,0],[3707,6621,0],[3732,6093,0],[3729,6585,0],[3722,6637,0],[3734,6646,0],[3756,6085,0],[3757,6575,0],[3754,6648,0],[3745,6648,0],[3764,6645,0],[3780,6081,0],[3787,6579,0],[3780,6632,0],[3805,6076,0],[3813,6592,0],[3819,6594,0],[3804,6608,0],[3826,6072,0],[3836,6613,0],[3855,6636,0]]],["DefaultKeyPoint19",[[4258,6739,0],[4272,6691,0],[4261,6715,0],[4262,6763,0],[4270,6780,0],[4279,6806,0],[4293,6633,0],[4298,6622,0],[4290,6647,0],[4284,6666,0],[4287,6832,0],[4293,6851,0],[4319,6626,0],[4310,6623,0],[4303,6622,0],[4302,6868,0],[4310,6881,0],[4330,6632,0],[4339,6641,0],[4347,6650,0],[4352,6660,0],[4358,6665,0],[4365,6667,0],[4372,6666,0],[4394,6656,0],[4381,6662,0],[4418,6654,0],[4404,6650,0],[4412,6649,0],[4418,6694,0],[4418,6718,0],[4416,6703,0],[4422,6675,0],[4422,6664,0],[4420,6686,0],[4425,6734,0],[4437,6748,0],[4452,6758,0],[4457,6812,0],[4453,6836,0],[4454,6854,0],[4475,6762,0],[4471,6761,0],[4465,6781,0],[4471,6873,0],[4498,6889,0],[4507,6764,0],[4537,6768,0],[4527,6899,0],[4558,6772,0],[4551,6912,0],[4571,6777,0],[4580,6789,0],[4570,6926,0],[4591,6808,0],[4599,6825,0],[4588,6942,0],[4609,6840,0],[4606,6958,0],[4630,6856,0],[4625,6979,0],[4657,6876,0],[4647,7004,0],[4656,7013,0],[4660,7017,0],[4674,7030,0],[4673,7020,0],[4683,6897,0],[4700,6914,0],[4694,7049,0],[4710,6930,0],[4718,6947,0],[4704,7027,0],[4710,7064,0],[4724,6958,0],[4735,6969,0],[4730,7025,0],[4726,7081,0],[4752,6980,0],[4748,7018,0],[4744,7101,0],[4771,6992,0],[4772,6995,0],[4763,7006,0],[4761,7122,0],[4777,7143,0],[4791,7008,0],[4791,7165,0],[4807,7024,0],[4804,7189,0],[4816,7214,0],[4821,7034,0],[4834,7038,0],[4827,7236,0],[4839,7257,0],[4847,7037,0],[4859,7035,0],[4854,7276,0],[4866,7028,0],[4875,7020,0],[4870,7289,0],[4885,7014,0],[4896,7012,0],[4888,7295,0],[4906,7014,0],[4909,7299,0],[4936,7034,0],[4920,7022,0],[4929,7301,0],[4952,7047,0],[4948,7299,0],[4971,7068,0],[4966,7294,0],[4987,7090,0],[4997,7109,0],[4990,7282,0],[5008,7126,0],[5015,7263,0],[5025,7141,0],[5032,7241,0],[5050,7160,0],[5049,7218,0],[5079,7181,0],[5067,7196,0],[5078,7183,0]]],["DefaultKeyPoint20",[[4614,5741,0],[4645,5741,0],[4668,5742,0],[4691,5748,0],[4712,5757,0],[4724,5771,0],[4721,5762,0],[4725,5787,0],[4729,5799,0],[4743,5811,0],[4779,5834,0],[4762,5824,0],[4766,6094,0],[4783,6064,0],[4802,5847,0],[4803,6036,0],[4825,5308,0],[4830,5862,0],[4823,6010,0],[4845,5321,0],[4856,5875,0],[4854,5976,0],[4840,5990,0],[4862,5335,0],[4878,5887,0],[4870,5967,0],[4880,5349,0],[4893,5361,0],[4898,5897,0],[4891,5962,0],[4905,5378,0],[4916,5396,0],[4914,5961,0],[4924,5411,0],[4931,5437,0],[4928,5424,0],[4938,5456,0],[4921,5911,0],[4935,5959,0],[4956,5394,0],[4950,5418,0],[4949,5402,0],[4953,5434,0],[4958,5445,0],[4943,5475,0],[4945,5490,0],[4945,5506,0],[4947,5518,0],[4955,5526,0],[4953,5905,0],[4946,5927,0],[4944,5923,0],[4955,5956,0],[4968,5392,0],[4974,5445,0],[4970,5476,0],[4969,5491,0],[4970,5530,0],[4968,5878,0],[4971,5939,0],[4971,5952,0],[4982,5398,0],[4996,5410,0],[4983,5466,0],[4983,5501,0],[4988,5534,0],[4994,5534,0],[4995,5552,0],[4995,5574,0],[4995,5592,0],[4995,5613,0],[4995,5634,0],[4996,5638,0],[4995,5657,0],[4996,5680,0],[4996,5703,0],[4996,5726,0],[4996,5747,0],[4994,5743,0],[4996,5766,0],[4996,5790,0],[4997,5786,0],[4996,5811,0],[4996,5820,0],[4993,5829,0],[4983,5850,0],[4994,5947,0],[4982,5948,0],[5012,5418,0],[5000,5441,0],[5019,5446,0],[5019,5458,0],[5004,5464,0],[5014,5492,0],[5002,5501,0],[5014,5525,0],[5002,5533,0],[5018,5638,0],[5005,5743,0],[5020,5785,0],[5010,5954,0],[5032,5421,0],[5027,5479,0],[5027,5509,0],[5031,5743,0],[5034,5950,0],[5025,5961,0],[5021,5961,0],[5032,5977,0],[5031,5970,0],[5027,5964,0],[5029,5967,0],[5037,5986,0],[5035,5982,0],[5048,5418,0],[5057,5454,0],[5040,5465,0],[5041,5494,0],[5057,5485,0],[5045,5638,0],[5054,5785,0],[5048,5935,0],[5056,5999,0],[5045,5993,0],[5040,5990,0],[5049,5996,0],[5066,5410,0],[5077,5443,0],[5073,5486,0],[5066,5638,0],[5061,5744,0],[5079,5797,0],[5072,5820,0],[5071,5846,0],[5078,5874,0],[5063,5919,0],[5077,5904,0],[5066,6003,0],[5078,6004,0],[5062,6002,0],[5072,6004,0],[5074,6013,0],[5073,6006,0],[5078,6023,0],[5093,5407,0],[5090,5437,0],[5084,5496,0],[5092,5513,0],[5099,5531,0],[5098,5555,0],[5092,5568,0],[5089,5583,0],[5092,5601,0],[5097,5640,0],[5089,5638,0],[5095,5621,0],[5098,5661,0],[5099,5684,0],[5099,5712,0],[5095,5745,0],[5085,5744,0],[5096,5744,0],[5087,5774,0],[5088,5790,0],[5093,5898,0],[5086,5894,0],[5095,5998,0],[5090,6000,0],[5084,6003,0],[5090,6038,0],[5116,5416,0],[5101,5445,0],[5104,5464,0],[5114,5498,0],[5104,5481,0],[5101,5544,0],[5120,5569,0],[5114,5592,0],[5118,5609,0],[5111,5638,0],[5118,5838,0],[5115,5829,0],[5115,5831,0],[5111,5918,0],[5116,5981,0],[5106,5992,0],[5110,5988,0],[5101,5995,0],[5106,6056,0],[5135,5431,0],[5139,5495,0],[5139,5481,0],[5122,5515,0],[5126,5531,0],[5126,5549,0],[5138,5614,0],[5126,5613,0],[5135,5614,0],[5138,5638,0],[5120,5791,0],[5133,5824,0],[5124,5856,0],[5133,5884,0],[5140,5903,0],[5127,5932,0],[5139,5944,0],[5124,5971,0],[5131,5961,0],[5125,6074,0],[5137,6085,0],[5151,5446,0],[5155,5458,0],[5148,5470,0],[5145,5514,0],[5153,5531,0],[5149,5614,0],[5152,5614,0],[5152,5782,0],[5157,5818,0],[5159,5825,0],[5154,5918,0],[5143,5908,0],[5153,5959,0],[5142,5950,0],[5149,5954,0],[5142,5947,0],[5160,5546,0],[5165,5560,0],[5168,5574,0],[5171,5588,0],[5162,5611,0],[5170,5601,0],[5160,5638,0],[5163,5638,0],[5163,5657,0],[5164,5684,0],[5167,5715,0],[5171,5751,0],[5176,5779,0],[5173,5774,0],[5164,5814,0],[5164,5833,0],[5173,5852,0],[5161,5931,0],[5163,5926,0],[5165,5971,0],[5176,5983,0],[5181,5799,0],[5186,5818,0],[5181,5809,0],[5192,5836,0],[5185,5884,0],[5190,5899,0],[5184,5909,0],[5193,5903,0],[5193,6001,0],[5195,6001,0],[5206,5855,0],[5219,5875,0],[5220,5870,0],[5206,5888,0],[5207,5919,0],[5208,5988,0],[5205,6023,0],[5207,6045,0],[5207,6066,0],[5209,6062,0],[5207,6088,0],[5207,6114,0],[5207,6141,0],[5207,6151,0],[5207,6173,0],[5228,5942,0],[5228,5970,0],[5225,6062,0],[5225,6151,0],[5242,5957,0],[5241,5958,0],[5243,5979,0],[5243,5964,0],[5243,6000,0],[5243,6026,0],[5243,6055,0],[5241,6062,0],[5243,6084,0],[5244,6112,0],[5244,6143,0],[5250,6152,0],[5243,6170,0],[5245,6188,0],[5243,6183,0],[5268,6152,0]]],["DefaultKeyPoint21",[[1459,6833,0],[1454,6853,0],[1449,6881,0],[1447,6912,0],[1446,6935,0],[1445,6951,0],[1444,6968,0],[1443,6994,0],[1443,7023,0],[1442,7048,0],[1442,7072,0],[1442,7089,0],[1443,7098,0],[1453,7106,0],[1444,7102,0],[1448,7105,0],[1475,6804,0],[1465,6820,0],[1466,7106,0],[1500,6774,0],[1486,6788,0],[1486,7105,0],[1514,6764,0],[1519,7103,0],[1503,7105,0],[1527,6754,0],[1539,6745,0],[1535,7101,0],[1558,6741,0],[1551,7099,0],[1567,7098,0],[1579,7098,0],[1587,6213,0],[1592,6247,0],[1598,6281,0],[1583,6741,0],[1605,6315,0],[1620,6332,0],[1614,6350,0],[1616,6353,0],[1617,6343,0],[1618,6362,0],[1610,6741,0],[1629,6198,0],[1627,6196,0],[1636,6199,0],[1632,6198,0],[1628,6203,0],[1637,6205,0],[1633,6201,0],[1632,6223,0],[1634,6243,0],[1636,6263,0],[1635,6298,0],[1637,6281,0],[1629,6312,0],[1624,6322,0],[1620,6370,0],[1624,6384,0],[1634,6418,0],[1636,6741,0],[1623,6751,0],[1620,6744,0],[1634,6764,0],[1646,6206,0],[1640,6202,0],[1642,6210,0],[1644,6216,0],[1653,6216,0],[1651,6211,0],[1646,6226,0],[1647,6238,0],[1654,6224,0],[1655,6232,0],[1656,6242,0],[1645,6260,0],[1656,6257,0],[1647,6254,0],[1648,6248,0],[1657,6250,0],[1650,6268,0],[1640,6264,0],[1643,6273,0],[1654,6263,0],[1647,6271,0],[1643,6452,0],[1651,6486,0],[1660,6519,0],[1646,6774,0],[1654,6782,0],[1659,6838,0],[1658,6848,0],[1669,6551,0],[1677,6578,0],[1665,6743,0],[1661,6792,0],[1663,6814,0],[1664,6802,0],[1661,6827,0],[1661,6858,0],[1666,6870,0],[1674,6882,0],[1688,6330,0],[1680,6323,0],[1686,6599,0],[1694,6620,0],[1697,6748,0],[1696,6894,0],[1683,6889,0],[1703,6345,0],[1717,6359,0],[1703,6641,0],[1711,6662,0],[1719,6684,0],[1714,6900,0],[1730,6376,0],[1727,6707,0],[1734,6730,0],[1739,6758,0],[1723,6758,0],[1736,6770,0],[1739,6779,0],[1737,6912,0],[1727,6905,0],[1742,6399,0],[1753,6425,0],[1741,6791,0],[1742,6825,0],[1745,6857,0],[1752,6883,0],[1747,6931,0],[1743,6920,0],[1750,6943,0],[1752,6955,0],[1755,6969,0],[1765,6449,0],[1774,6469,0],[1779,6489,0],[1762,6904,0],[1774,6923,0],[1773,6994,0],[1761,6982,0],[1782,6508,0],[1784,6526,0],[1786,6550,0],[1789,6579,0],[1795,6607,0],[1786,6942,0],[1799,6961,0],[1793,6989,0],[1786,6998,0],[1794,7014,0],[1786,7005,0],[1783,7002,0],[1801,6634,0],[1808,6657,0],[1816,6678,0],[1818,6915,0],[1815,6913,0],[1814,6979,0],[1814,6967,0],[1803,6979,0],[1806,7029,0],[1817,7046,0],[1826,6703,0],[1822,6920,0],[1835,6925,0],[1826,6927,0],[1828,6935,0],[1830,6929,0],[1827,6929,0],[1826,6945,0],[1822,6956,0],[1828,6997,0],[1825,7065,0],[1829,7086,0],[1840,6729,0],[1859,6750,0],[1847,6912,0],[1842,7016,0],[1853,7038,0],[1879,6768,0],[1867,6892,0],[1862,7062,0],[1896,6785,0],[1890,6869,0],[1881,6879,0],[1910,6800,0],[1913,6840,0],[1902,6854,0],[1928,6816,0],[1936,6801,0],[1924,6821,0],[1949,6780,0],[1950,6828,0],[1970,6736,0],[1977,6720,0],[1962,6755,0],[1970,6836,0],[1998,6585,0],[1996,6602,0],[1993,6628,0],[1991,6647,0],[1987,6671,0],[1983,6699,0],[1990,6843,0],[2013,6847,0]]],["DefaultKeyPoint17",[[5339,6628,0],[5351,6610,0],[5351,6647,0],[5370,6600,0],[5366,6662,0],[5392,6480,0],[5387,6592,0],[5382,6674,0],[5397,6681,0],[5394,6680,0],[5397,6738,0],[5389,6757,0],[5384,6775,0],[5386,6797,0],[5393,6820,0],[5399,6835,0],[5404,6504,0],[5414,6525,0],[5406,6583,0],[5414,6686,0],[5406,6691,0],[5403,6713,0],[5401,6852,0],[5405,6870,0],[5414,6893,0],[5427,6550,0],[5426,6573,0],[5437,6569,0],[5431,6693,0],[5435,6720,0],[5436,6702,0],[5432,6742,0],[5429,6746,0],[5427,6766,0],[5429,6789,0],[5439,6812,0],[5423,6915,0],[5436,6931,0],[5448,6562,0],[5454,6722,0],[5442,6738,0],[5449,6834,0],[5457,6853,0],[5450,6951,0],[5471,6379,0],[5462,6361,0],[5470,6551,0],[5477,6681,0],[5466,6700,0],[5466,6874,0],[5475,6895,0],[5460,6971,0],[5474,6990,0],[5481,6398,0],[5489,6415,0],[5498,6433,0],[5493,6540,0],[5488,6666,0],[5483,6915,0],[5491,6934,0],[5499,6954,0],[5487,7004,0],[5495,7017,0],[5508,6453,0],[5519,6474,0],[5515,6529,0],[5506,6654,0],[5506,6971,0],[5514,6990,0],[5501,7034,0],[5506,7055,0],[5529,6495,0],[5540,6516,0],[5537,6519,0],[5534,6649,0],[5521,7006,0],[5557,6509,0],[5550,6537,0],[5577,6499,0],[5561,6557,0],[5570,6577,0],[5566,6648,0],[5578,7100,0],[5577,7109,0],[5579,7119,0],[5594,6491,0],[5583,6602,0],[5597,6629,0],[5596,6649,0],[5615,6480,0],[5601,6485,0],[5610,6503,0],[5605,6645,0],[5633,6471,0],[5620,6525,0],[5628,6542,0],[5638,6563,0],[5624,6650,0],[5651,6589,0],[5659,6604,0],[5652,6653,0],[5666,6609,0],[5673,6658,0],[5681,6615,0],[5683,6664,0],[5689,6671,0],[5694,6695,0],[5692,6681,0],[5695,6722,0],[5696,6756,0],[5697,6788,0],[5696,6816,0],[5698,6838,0],[5697,6832,0],[5693,6854,0],[5695,6844,0],[5692,6870,0],[5693,6896,0],[5691,6885,0],[5696,6903,0],[5699,6907,0],[5701,6623,0],[5702,6843,0],[5706,6846,0],[5714,6850,0],[5710,6849,0],[5716,6912,0],[5702,6910,0],[5706,6912,0],[5710,6912,0],[5734,6222,0],[5727,6633,0],[5740,6844,0],[5732,6847,0],[5737,6850,0],[5720,6850,0],[5726,6849,0],[5737,6858,0],[5734,6877,0],[5736,6866,0],[5732,6888,0],[5729,6896,0],[5726,6901,0],[5723,6906,0],[5720,6909,0],[5742,6213,0],[5752,6202,0],[5752,6644,0],[5759,6831,0],[5748,6838,0],[5773,6252,0],[5770,6651,0],[5780,6656,0],[5780,6679,0],[5780,6706,0],[5780,6728,0],[5780,6751,0],[5780,6772,0],[5780,6799,0],[5770,6826,0],[5780,6821,0],[5792,6230,0],[5781,6243,0],[5792,6655,0],[5794,6701,0],[5780,6701,0],[5796,6748,0],[5781,6748,0],[5788,6823,0],[5815,6197,0],[5815,6196,0],[5802,6219,0],[5808,6210,0],[5811,6219,0],[5815,6223,0],[5804,6233,0],[5803,6227,0],[5815,6701,0],[5817,6748,0],[5811,6824,0],[5821,6202,0],[5825,6205,0],[5822,6656,0],[5835,6700,0],[5831,6829,0],[5856,6656,0],[5855,6700,0],[5843,6748,0],[5857,6833,0],[5875,6700,0],[5871,6748,0],[5886,6655,0],[5896,6700,0],[5899,6748,0],[5883,6838,0],[5905,6654,0],[5908,6657,0],[5908,6672,0],[5908,6692,0],[5909,6700,0],[5908,6715,0],[5908,6735,0],[5908,6749,0],[5906,6842,0],[5925,6748,0],[5932,6851,0],[5951,6748,0],[5953,6863,0],[5975,6748,0],[5975,6745,0],[5972,6747,0],[5968,6748,0],[5969,6879,0],[5996,6711,0],[5985,6729,0],[5988,6763,0],[5981,6898,0],[5986,6919,0],[5988,6939,0],[5990,6954,0],[5992,6957,0],[5989,6950,0],[5994,6958,0],[5997,6959,0],[6017,6794,0],[6004,6780,0],[6018,6959,0],[6002,6960,0],[6013,6960,0],[6007,6960,0],[6030,6809,0],[6030,6948,0],[6039,6941,0],[6022,6955,0],[6058,6840,0],[6042,6823,0],[6053,6937,0],[6071,6854,0],[6070,6858,0],[6070,6880,0],[6070,6913,0],[6072,6934,0],[6070,6934,0],[6087,6933,0],[6114,6934,0],[6101,6933,0],[6124,6938,0],[6131,6945,0],[6136,6954,0],[6139,6965,0],[6142,6980,0],[6145,7002,0],[6147,7030,0],[6152,7052,0],[6160,7071,0]]],["DefaultKeyPoint22",[[5034,5950,0],[5025,5961,0],[5021,5961,0],[5032,5977,0],[5031,5970,0],[5027,5964,0],[5029,5967,0],[5037,5986,0],[5035,5982,0],[5048,5935,0],[5056,5999,0],[5045,5993,0],[5040,5990,0],[5049,5996,0],[5063,5919,0],[5066,6003,0],[5078,6004,0],[5062,6002,0],[5072,6004,0],[5074,6013,0],[5073,6006,0],[5078,6023,0],[5095,5998,0],[5090,6000,0],[5084,6003,0],[5090,6038,0],[5111,5918,0],[5116,5981,0],[5106,5992,0],[5110,5988,0],[5101,5995,0],[5106,6056,0],[5133,5884,0],[5140,5903,0],[5127,5932,0],[5139,5944,0],[5124,5971,0],[5131,5961,0],[5125,6074,0],[5137,6085,0],[5154,5918,0],[5143,5908,0],[5153,5959,0],[5142,5950,0],[5149,5954,0],[5142,5947,0],[5161,5931,0],[5163,5926,0],[5165,5971,0],[5176,5983,0],[5185,5884,0],[5190,5899,0],[5184,5909,0],[5193,5903,0],[5193,6001,0],[5195,6001,0],[5206,5855,0],[5219,5875,0],[5220,5870,0],[5206,5888,0],[5207,5919,0],[5208,5988,0],[5205,6023,0],[5207,6045,0],[5207,6066,0],[5209,6062,0],[5207,6088,0],[5207,6114,0],[5207,6141,0],[5207,6151,0],[5207,6173,0],[5208,6207,0],[5210,6235,0],[5210,6259,0],[5208,6284,0],[5206,6311,0],[5205,6336,0],[5216,6360,0],[5228,5942,0],[5228,5970,0],[5225,6062,0],[5225,6151,0],[5236,6384,0],[5242,5957,0],[5241,5958,0],[5243,5979,0],[5243,5964,0],[5243,6000,0],[5243,6026,0],[5243,6055,0],[5241,6062,0],[5243,6084,0],[5244,6112,0],[5244,6143,0],[5250,6152,0],[5243,6170,0],[5245,6188,0],[5243,6183,0],[5254,6207,0],[5256,6405,0],[5268,6152,0],[5269,6236,0],[5272,6425,0],[5283,6264,0],[5298,6295,0],[5284,6444,0],[5293,6462,0],[5314,6327,0],[5301,6481,0],[5308,6508,0],[5313,6541,0],[5319,6574,0],[5330,6359,0],[5328,6603,0],[5334,6618,0],[5339,6628,0],[5345,6388,0],[5357,6412,0],[5351,6610,0],[5351,6647,0],[5368,6433,0],[5380,6457,0],[5370,6600,0],[5366,6662,0],[5392,6480,0],[5387,6592,0],[5382,6674,0],[5397,6681,0],[5394,6680,0],[5397,6738,0],[5389,6757,0],[5384,6775,0],[5386,6797,0],[5393,6820,0],[5404,6504,0],[5414,6525,0],[5406,6583,0],[5414,6686,0],[5406,6691,0],[5403,6713,0],[5427,6550,0],[5426,6573,0],[5437,6569,0],[5431,6693,0],[5435,6720,0],[5436,6702,0],[5432,6742,0],[5429,6746,0],[5427,6766,0],[5429,6789,0],[5439,6812,0],[5448,6562,0],[5454,6722,0],[5442,6738,0],[5471,6379,0],[5462,6361,0],[5470,6551,0],[5477,6681,0],[5466,6700,0],[5481,6398,0],[5489,6415,0],[5498,6433,0],[5493,6540,0],[5488,6666,0],[5508,6453,0],[5519,6474,0],[5515,6529,0],[5506,6654,0],[5529,6495,0],[5540,6516,0],[5537,6519,0],[5534,6649,0],[5557,6509,0],[5550,6537,0],[5577,6499,0],[5561,6557,0],[5570,6577,0],[5566,6648,0],[5592,5980,0],[5594,6491,0],[5583,6602,0],[5597,6629,0],[5596,6649,0],[5616,5932,0],[5602,5959,0],[5615,6480,0],[5601,6485,0],[5610,6503,0],[5605,6645,0],[5633,6471,0],[5620,6525,0],[5628,6542,0],[5638,6563,0],[5624,6650,0],[5651,6589,0],[5659,6604,0],[5652,6653,0],[5666,6609,0],[5673,6658,0],[5694,5992,0],[5695,6015,0],[5681,6615,0],[5683,6664,0],[5689,6671,0],[5692,6681,0],[5704,6041,0],[5720,6068,0],[5701,6623,0],[5736,6090,0],[5734,6222,0],[5727,6633,0],[5753,6108,0],[5758,6192,0],[5742,6213,0],[5752,6202,0],[5776,6113,0],[5769,6118,0],[5771,6122,0],[5765,6175,0],[5766,6177,0],[5774,6180,0],[5762,6183,0],[5773,6252,0],[5786,6108,0],[5784,6106,0],[5792,6133,0],[5787,6185,0],[5792,6230,0],[5781,6243,0],[5815,6197,0],[5803,6191,0],[5815,6196,0],[5802,6219,0],[5808,6210,0],[5811,6219,0],[5815,6223,0],[5804,6233,0],[5803,6227,0],[5821,6202,0]]],["DefaultKeyPoint25",[[4791,7165,0],[4804,7189,0],[4816,7214,0],[4827,7236,0],[4839,7257,0],[4847,7037,0],[4859,7035,0],[4854,7276,0],[4866,7028,0],[4875,7020,0],[4870,7289,0],[4885,7014,0],[4896,7012,0],[4888,7295,0],[4906,7014,0],[4909,7299,0],[4936,7034,0],[4920,7022,0],[4929,7301,0],[4940,7622,0],[4936,7643,0],[4936,7659,0],[4937,7677,0],[4952,7047,0],[4948,7299,0],[4958,7547,0],[4953,7565,0],[4947,7592,0],[4941,7699,0],[4945,7727,0],[4971,7068,0],[4966,7294,0],[4978,7465,0],[4977,7470,0],[4972,7488,0],[4967,7508,0],[4968,7507,0],[4964,7524,0],[4968,7531,0],[4976,7555,0],[4987,7090,0],[4997,7109,0],[4990,7282,0],[4999,7394,0],[4993,7413,0],[4988,7432,0],[4982,7453,0],[4983,7448,0],[4991,7577,0],[5008,7126,0],[5015,7263,0],[5007,7376,0],[5005,7594,0],[5015,7610,0],[5025,7141,0],[5032,7241,0],[5020,7360,0],[5028,7628,0],[5050,7160,0],[5049,7218,0],[5046,7350,0],[5043,7647,0],[5079,7181,0],[5067,7196,0],[5078,7183,0],[5077,7343,0],[5066,7665,0],[5099,7335,0],[5099,7679,0],[5104,7200,0],[5117,7325,0],[5127,7219,0],[5139,7311,0],[5126,7684,0],[5147,7235,0],[5149,7686,0],[5164,7250,0],[5166,7292,0],[5175,7688,0],[5182,7269,0],[5188,7276,0],[5199,7290,0],[5205,7262,0],[5211,7303,0],[5203,7688,0],[5238,7237,0],[5222,7248,0],[5222,7308,0],[5231,7311,0],[5232,7688,0],[5257,7228,0],[5240,7313,0],[5279,7223,0],[5263,7689,0],[5299,7220,0],[5288,7690,0],[5319,7216,0],[5308,7693,0],[5337,7209,0],[5333,7702,0],[5354,7200,0],[5354,7718,0],[5378,7195,0],[5367,7737,0],[5379,7760,0],[5386,7787,0],[5405,6870,0],[5414,6893,0],[5408,7193,0],[5423,6915,0],[5436,6931,0],[5433,7193,0],[5450,6951,0],[5453,7191,0],[5475,6895,0],[5460,6971,0],[5474,6990,0],[5483,6915,0],[5491,6934,0],[5499,6954,0],[5487,7004,0],[5495,7017,0],[5480,7188,0],[5506,6971,0],[5514,6990,0],[5501,7034,0],[5506,7055,0],[5511,7076,0],[5516,7094,0],[5507,7182,0],[5521,7006,0],[5522,7117,0],[5527,7138,0],[5528,7142,0],[5531,7154,0],[5532,7160,0],[5536,7178,0],[5523,7174,0],[5534,7166,0],[5544,7197,0],[5553,7206,0],[5578,7100,0],[5577,7109,0],[5579,7119,0],[5560,7215,0],[5570,7228,0],[5578,7245,0],[5576,7284,0],[5569,7296,0],[5566,7312,0],[5565,7336,0],[5565,7364,0],[5565,7391,0],[5565,7415,0],[5568,7438,0],[5573,7456,0],[5585,7128,0],[5595,7138,0],[5593,7241,0],[5582,7255,0],[5582,7266,0],[5598,7480,0],[5581,7469,0],[5602,7149,0],[5605,7172,0],[5604,7160,0],[5609,7184,0],[5617,7195,0],[5611,7221,0],[5618,7489,0],[5620,7206,0],[5637,7498,0],[5657,7508,0],[5675,7519,0],[5692,7536,0]]],["DefaultKeyPoint29",[[2875,3192,0],[2869,3223,0],[2878,3247,0],[2888,3187,0],[2886,3257,0],[2888,3262,0],[2882,3277,0],[2887,3294,0],[2899,3313,0],[2908,3178,0],[2904,3248,0],[2914,3246,0],[2911,3326,0],[2924,3170,0],[2933,3168,0],[2925,3233,0],[2921,3253,0],[2929,3263,0],[2935,3273,0],[2922,3333,0],[2937,3337,0],[2936,3379,0],[2939,3372,0],[2934,3387,0],[2934,3395,0],[2935,3406,0],[2938,3417,0],[2953,3124,0],[2957,3121,0],[2954,3156,0],[2958,3186,0],[2960,3212,0],[2946,3220,0],[2950,3336,0],[2951,3362,0],[2944,3367,0],[2946,3430,0],[2943,3423,0],[2952,3450,0],[2959,3457,0],[2948,3440,0],[2979,3127,0],[2979,3164,0],[2966,3216,0],[2977,3250,0],[2977,3322,0],[2962,3331,0],[2961,3357,0],[2978,3349,0],[2969,3352,0],[2974,3476,0],[2966,3466,0],[2999,3169,0],[2986,3164,0],[2992,3280,0],[2994,3270,0],[2993,3311,0],[2998,3318,0],[2998,3315,0],[2992,3340,0],[2996,3335,0],[2999,3324,0],[2998,3329,0],[2986,3344,0],[2987,3485,0],[3012,3136,0],[3016,3177,0],[3009,3260,0],[3000,3266,0],[3009,3299,0],[3002,3301,0],[3017,3308,0],[3018,3325,0],[3011,3349,0],[3013,3374,0],[3003,3491,0],[3016,3495,0],[3028,3067,0],[3029,3071,0],[3028,3079,0],[3031,3100,0],[3028,3088,0],[3039,3110,0],[3027,3187,0],[3035,3200,0],[3040,3234,0],[3023,3248,0],[3031,3306,0],[3023,3312,0],[3025,3393,0],[3030,3495,0],[3048,3071,0],[3051,3118,0],[3042,3148,0],[3043,3211,0],[3048,3219,0],[3058,3220,0],[3053,3226,0],[3052,3295,0],[3044,3408,0],[3050,3491,0],[3066,3075,0],[3080,3079,0],[3066,3126,0],[3078,3133,0],[3062,3157,0],[3071,3163,0],[3071,3211,0],[3076,3292,0],[3066,3415,0],[3062,3416,0],[3063,3426,0],[3065,3445,0],[3068,3468,0],[3070,3488,0],[3072,3484,0],[3078,3488,0],[3092,3087,0],[3088,3176,0],[3095,3194,0],[3084,3202,0],[3089,3413,0],[3082,3488,0],[3105,3097,0],[3117,3108,0],[3111,3176,0],[3111,3198,0],[3101,3299,0],[3112,3401,0],[3104,3490,0],[3129,3121,0],[3133,3148,0],[3129,3219,0],[3124,3212,0],[3138,3236,0],[3121,3314,0],[3131,3336,0],[3133,3360,0],[3127,3383,0],[3123,3394,0],[3129,3399,0],[3125,3491,0],[3160,3093,0],[3154,3108,0],[3142,3132,0],[3147,3126,0],[3156,3143,0],[3149,3258,0],[3156,3273,0],[3141,3409,0],[3145,3495,0],[3163,3081,0],[3167,3154,0],[3175,3164,0],[3166,3283,0],[3164,3424,0],[3166,3501,0],[3177,3504,0],[3181,3171,0],[3184,3295,0],[3193,3437,0],[3189,3483,0],[3180,3499,0],[3181,3510,0],[3198,3536,0],[3187,3521,0],[3210,3309,0],[3220,3431,0],[3209,3452,0],[3215,3440,0],[3201,3464,0],[3208,3547,0],[3218,3550,0],[3237,3326,0],[3237,3412,0],[3227,3420,0],[3222,3453,0],[3235,3543,0],[3230,3546,0],[3224,3552,0],[3227,3548,0],[3221,3558,0],[3230,3573,0],[3223,3566,0],[3254,3409,0],[3244,3476,0],[3245,3535,0],[3254,3526,0],[3254,3591,0],[3240,3582,0],[3261,3347,0],[3270,3411,0],[3262,3502,0],[3266,3515,0],[3260,3520,0],[3276,3529,0],[3268,3604,0],[3278,3619,0],[3281,3364,0],[3300,3375,0],[3280,3418,0],[3290,3430,0],[3300,3442,0],[3285,3552,0],[3292,3570,0],[3284,3634,0],[3289,3649,0],[3296,3660,0],[3315,3387,0],[3311,3450,0],[3300,3587,0],[3311,3603,0],[3304,3672,0],[3311,3680,0],[3314,3683,0],[3316,3685,0],[3324,3408,0],[3327,3431,0],[3326,3459,0],[3328,3448,0],[3332,3459,0],[3328,3615,0],[3335,3609,0],[3331,3622,0],[3321,3692,0],[3333,3705,0],[3340,3468,0],[3351,3475,0],[3348,3601,0],[3352,3639,0],[3352,3637,0],[3358,3631,0],[3349,3718,0],[3359,3810,0],[3358,3818,0],[3359,3832,0],[3361,3484,0],[3369,3495,0],[3374,3510,0],[3376,3527,0],[3376,3545,0],[3371,3578,0],[3374,3563,0],[3363,3591,0],[3372,3621,0],[3366,3654,0],[3378,3671,0],[3366,3726,0],[3379,3733,0],[3379,3758,0],[3371,3778,0],[3364,3796,0],[3361,3857,0],[3364,3883,0],[3366,3906,0],[3370,3929,0],[3374,3953,0],[3380,3978,0],[3395,3608,0],[3387,3688,0],[3396,3703,0],[3398,3720,0],[3388,3738,0],[3388,3738,0],[3419,3596,0],[3417,3693,0],[3409,3704,0],[3402,3714,0],[3439,3585,0],[3428,3684,0],[3450,3579,0],[3450,3672,0],[3474,3659,0],[3491,3650,0],[3502,3644,0]]],["DefaultKeyPoint30",[[5315,7904,0],[5337,7897,0],[5355,7881,0],[5367,7737,0],[5379,7760,0],[5379,7844,0],[5368,7864,0],[5386,7787,0],[5387,7817,0],[5637,7498,0],[5657,7508,0],[5675,7519,0],[5692,7536,0],[5707,7550,0],[5721,7555,0],[5740,7572,0],[5754,7595,0],[5760,7613,0],[5767,7635,0],[5778,7656,0],[5799,7667,0],[5787,8039,0],[5789,8047,0],[5796,8062,0],[5810,8083,0],[5826,7671,0],[5825,8101,0],[5846,7672,0],[5842,8112,0],[5869,7662,0],[5868,8120,0],[5894,7648,0],[5895,8124,0],[5914,7640,0],[5914,8124,0],[5938,8120,0],[5941,7636,0],[5974,7635,0],[5967,8111,0],[5991,8103,0],[6002,7636,0],[6013,8099,0],[6023,7638,0],[6033,8096,0],[6050,7644,0],[6054,8094,0],[6075,7650,0],[6077,8092,0],[6094,7654,0],[6099,8091,0],[6119,7656,0],[6126,8088,0],[6151,7657,0],[6156,8083,0],[6178,8075,0],[6194,8064,0],[6208,8050,0],[6239,8013,0],[6223,8033,0],[6254,7993,0],[6267,7974,0]]],["DefaultKeyPoint32",[]],["DefaultKeyPoint2",[[1395,7437,0],[1397,7434,0],[1398,7423,0],[1397,7452,0],[1397,7479,0],[1397,7503,0],[1409,7412,0],[1419,7409,0],[1402,7416,0],[1404,7439,0],[1416,7443,0],[1439,7402,0],[1429,7406,0],[1428,7449,0],[1459,6833,0],[1454,6853,0],[1449,6881,0],[1447,6912,0],[1446,6935,0],[1445,6951,0],[1444,6968,0],[1443,6994,0],[1443,7023,0],[1442,7048,0],[1442,7072,0],[1442,7089,0],[1443,7098,0],[1453,7106,0],[1444,7102,0],[1448,7105,0],[1451,7397,0],[1441,7456,0],[1454,7465,0],[1475,6804,0],[1465,6820,0],[1466,7106,0],[1471,7387,0],[1465,7476,0],[1470,7488,0],[1472,7505,0],[1500,6774,0],[1486,6788,0],[1486,7105,0],[1493,7375,0],[1514,6764,0],[1519,7103,0],[1503,7105,0],[1510,7365,0],[1527,6754,0],[1539,6745,0],[1535,7101,0],[1533,7350,0],[1558,6741,0],[1551,7099,0],[1567,7098,0],[1579,7098,0],[1560,7334,0],[1583,6741,0],[1587,7321,0],[1610,6741,0],[1613,7312,0],[1636,6741,0],[1623,6751,0],[1620,6744,0],[1634,6764,0],[1638,7305,0],[1646,6774,0],[1654,6782,0],[1659,6838,0],[1658,6848,0],[1669,6551,0],[1677,6578,0],[1665,6743,0],[1661,6792,0],[1663,6814,0],[1664,6802,0],[1661,6827,0],[1661,6858,0],[1666,6870,0],[1674,6882,0],[1679,7270,0],[1671,7278,0],[1662,7300,0],[1667,7285,0],[1666,7305,0],[1666,7338,0],[1667,7369,0],[1669,7388,0],[1678,7404,0],[1686,6599,0],[1694,6620,0],[1697,6748,0],[1696,6894,0],[1683,6889,0],[1696,7248,0],[1687,7260,0],[1691,7290,0],[1692,7422,0],[1703,6641,0],[1711,6662,0],[1719,6684,0],[1714,6900,0],[1715,7217,0],[1705,7235,0],[1715,7279,0],[1713,7442,0],[1727,6707,0],[1734,6730,0],[1739,6758,0],[1723,6758,0],[1736,6770,0],[1739,6779,0],[1737,6912,0],[1727,6905,0],[1728,7201,0],[1732,7268,0],[1731,7458,0],[1737,7469,0],[1741,6791,0],[1742,6825,0],[1745,6857,0],[1752,6883,0],[1747,6931,0],[1743,6920,0],[1750,6943,0],[1752,6955,0],[1755,6969,0],[1753,7190,0],[1749,7257,0],[1762,6904,0],[1774,6923,0],[1773,6994,0],[1761,6982,0],[1768,7245,0],[1786,6942,0],[1799,6961,0],[1793,6989,0],[1786,6998,0],[1794,7014,0],[1786,7005,0],[1783,7002,0],[1781,7178,0],[1788,7231,0],[1801,6634,0],[1808,6657,0],[1816,6678,0],[1818,6915,0],[1815,6913,0],[1814,6979,0],[1814,6967,0],[1803,6979,0],[1806,7029,0],[1817,7046,0],[1817,7149,0],[1803,7165,0],[1810,7217,0],[1826,6703,0],[1822,6920,0],[1835,6925,0],[1826,6927,0],[1828,6935,0],[1830,6929,0],[1827,6929,0],[1826,6945,0],[1822,6956,0],[1828,6997,0],[1825,7065,0],[1829,7086,0],[1829,7109,0],[1826,7131,0],[1833,7206,0],[1840,6729,0],[1859,6750,0],[1847,6912,0],[1842,7016,0],[1853,7038,0],[1857,7195,0],[1879,6768,0],[1867,6892,0],[1862,7062,0],[1870,7088,0],[1878,7112,0],[1896,6785,0],[1890,6869,0],[1881,6879,0],[1888,7139,0],[1881,7177,0],[1896,7164,0],[1910,6800,0],[1913,6840,0],[1902,6854,0],[1902,7168,0],[1902,7161,0],[1916,7189,0],[1928,6816,0],[1936,6801,0],[1924,6821,0],[1930,7204,0],[1949,6780,0],[1950,6828,0],[1949,7217,0],[1970,6836,0],[1970,7230,0]]],["DefaultKeyPoint26",[[1305,5611,0],[1322,5612,0],[1346,5614,0],[1377,5612,0],[1362,5615,0],[1395,5603,0],[1399,5605,0],[1397,5627,0],[1394,5660,0],[1392,5683,0],[1394,5686,0],[1412,5591,0],[1407,5687,0],[1437,5438,0],[1437,5437,0],[1435,5454,0],[1432,5479,0],[1428,5506,0],[1426,5527,0],[1424,5537,0],[1435,5554,0],[1425,5540,0],[1430,5577,0],[1426,5688,0],[1457,5439,0],[1450,5573,0],[1443,5566,0],[1458,5582,0],[1448,5690,0],[1478,5586,0],[1461,5584,0],[1468,5692,0],[1489,5443,0],[1500,5535,0],[1495,5570,0],[1491,5602,0],[1488,5629,0],[1495,5657,0],[1487,5646,0],[1487,5643,0],[1493,5694,0],[1516,5446,0],[1510,5448,0],[1508,5469,0],[1504,5501,0],[1504,5519,0],[1503,5588,0],[1512,5678,0],[1532,5447,0],[1530,5448,0],[1525,5522,0],[1526,5591,0],[1524,5697,0],[1524,5695,0],[1535,5719,0],[1528,5743,0],[1523,5770,0],[1520,5798,0],[1522,5823,0],[1527,5845,0],[1532,5871,0],[1545,5437,0],[1559,5427,0],[1559,5526,0],[1554,5594,0],[1548,5693,0],[1544,5699,0],[1541,5899,0],[1551,5923,0],[1559,5947,0],[1570,5427,0],[1562,5426,0],[1576,5597,0],[1578,5602,0],[1575,5626,0],[1578,5634,0],[1572,5644,0],[1564,5666,0],[1562,5969,0],[1564,5990,0],[1565,6014,0],[1567,6039,0],[1569,6064,0],[1589,5430,0],[1597,5483,0],[1587,5497,0],[1584,5521,0],[1581,5529,0],[1583,5551,0],[1581,5576,0],[1598,5636,0],[1614,5433,0],[1613,5463,0],[1612,5471,0],[1627,5438,0],[1635,5421,0],[1632,5435,0],[1629,5473,0],[1623,5639,0],[1637,5640,0],[1635,5641,0],[1648,5385,0],[1642,5401,0],[1654,5476,0],[1655,5477,0],[1653,5491,0],[1651,5509,0],[1648,5534,0],[1647,5557,0],[1645,5552,0],[1654,5568,0],[1648,5632,0],[1669,5588,0],[1670,5614,0],[1682,5479,0],[1697,5593,0],[1682,5603,0],[1707,5482,0],[1719,5532,0],[1716,5561,0],[1713,5579,0],[1712,5581,0],[1723,5484,0],[1724,5486,0],[1722,5505,0]]],["DefaultKeyPoint38",[[5618,5895,0],[5603,5888,0],[5616,5932,0],[5602,5959,0],[5637,5889,0],[5626,5911,0],[5659,5844,0],[5647,5869,0],[5641,5908,0],[5676,5491,0],[5675,5489,0],[5669,5825,0],[5668,5922,0],[5699,5429,0],[5689,5453,0],[5681,5475,0],[5693,5499,0],[5693,5935,0],[5699,5970,0],[5694,5992,0],[5713,5391,0],[5717,5388,0],[5707,5406,0],[5718,5510,0],[5712,5555,0],[5703,5578,0],[5717,5926,0],[5708,5946,0],[5708,5943,0],[5731,5394,0],[5733,5504,0],[5724,5526,0],[5729,5899,0],[5732,5892,0],[5736,5887,0],[5724,5910,0],[5751,5403,0],[5752,5457,0],[5743,5480,0],[5741,5520,0],[5760,5527,0],[5760,5583,0],[5748,5598,0],[5744,5616,0],[5748,5638,0],[5753,5663,0],[5759,5889,0],[5754,5886,0],[5740,5885,0],[5751,5885,0],[5748,5884,0],[5744,5884,0],[5776,5397,0],[5765,5410,0],[5763,5430,0],[5776,5487,0],[5767,5509,0],[5762,5529,0],[5776,5567,0],[5763,5690,0],[5778,5714,0],[5778,5832,0],[5775,5857,0],[5772,5878,0],[5768,5896,0],[5770,5892,0],[5785,5376,0],[5799,5432,0],[5792,5450,0],[5784,5469,0],[5786,5539,0],[5792,5552,0],[5785,5742,0],[5785,5768,0],[5783,5788,0],[5781,5808,0],[5796,5917,0],[5782,5905,0],[5816,5391,0],[5809,5410,0],[5815,5549,0],[5804,5543,0],[5816,5933,0],[5834,5095,0],[5828,5109,0],[5836,5134,0],[5829,5123,0],[5833,5945,0],[5846,5085,0],[5848,5143,0],[5846,5558,0],[5844,5949,0],[5864,5082,0],[5880,5138,0],[5865,5145,0],[5864,5953,0],[5881,5089,0],[5890,5103,0],[5890,5123,0],[5896,5126,0],[5887,5123,0],[5895,5218,0],[5896,5233,0],[5881,5566,0],[5888,5956,0],[5909,5131,0],[5914,5194,0],[5900,5204,0],[5914,5253,0],[5902,5244,0],[5911,5573,0],[5909,5959,0],[5923,5140,0],[5927,5127,0],[5935,5120,0],[5922,5135,0],[5924,5153,0],[5928,5160,0],[5927,5162,0],[5938,5163,0],[5929,5160,0],[5929,5172,0],[5932,5191,0],[5936,5190,0],[5931,5180,0],[5931,5255,0],[5937,5579,0],[5937,5963,0],[5950,5121,0],[5959,5156,0],[5949,5163,0],[5947,5197,0],[5958,5213,0],[5958,5233,0],[5947,5248,0],[5962,5130,0],[5965,5143,0],[5965,5154,0],[5972,5159,0],[5974,5232,0],[5964,5223,0],[5965,5586,0],[5964,5970,0],[5982,5167,0],[5993,5176,0],[5996,5211,0],[5989,5229,0],[5985,5244,0],[5991,5252,0],[5989,5242,0],[5996,5261,0],[5994,5594,0],[5985,5977,0],[6001,5182,0],[6005,5196,0],[6005,5191,0],[6005,5186,0],[6003,5200,0],[6005,5277,0],[6015,5299,0],[6027,5327,0],[6037,5353,0],[6026,5603,0],[6049,5376,0],[6053,5611,0],[6059,5616,0],[6062,5397,0],[6073,5415,0],[6078,5540,0],[6075,5561,0],[6070,5581,0],[6064,5601,0],[6072,5616,0],[6081,5439,0],[6083,5470,0],[6083,5497,0],[6081,5518,0],[6090,5622,0],[6108,5627,0],[6133,5636,0],[6158,5645,0],[6175,5653,0],[6198,5664,0],[6222,5676,0],[6241,5686,0],[6266,5699,0]]],["DefaultKeyPoint40",[[8657,5285,0],[8680,5290,0],[8677,5387,0],[8692,5295,0],[8693,5305,0],[8692,5323,0],[8688,5347,0],[8684,5366,0],[8701,5292,0],[8727,5292,0],[8757,5292,0],[8778,5560,0],[8790,5291,0],[8799,5547,0],[8815,4880,0],[8803,4897,0],[8803,4921,0],[8803,4948,0],[8803,4973,0],[8808,4988,0],[8803,4989,0],[8837,4880,0],[8827,4988,0],[8823,5290,0],[8821,5533,0],[8851,4988,0],[8846,5091,0],[8856,5289,0],[8841,5519,0],[8859,5506,0],[8865,4880,0],[8871,4988,0],[8867,5091,0],[8896,4880,0],[8894,4988,0],[8895,5092,0],[8887,5288,0],[8899,5474,0],[8880,5490,0],[8919,4988,0],[8909,5090,0],[8909,5106,0],[8909,5130,0],[8909,5156,0],[8909,5179,0],[8913,5192,0],[8909,5198,0],[8909,5193,0],[8909,5220,0],[8910,5251,0],[8910,5276,0],[8914,5288,0],[8910,5300,0],[8910,5327,0],[8910,5355,0],[8910,5379,0],[8915,5389,0],[8910,5395,0],[8910,5399,0],[8910,5407,0],[8910,5425,0],[8908,5459,0],[8910,5443,0],[8928,4880,0],[8927,5091,0],[8923,5187,0],[8939,5288,0],[8926,5374,0],[8960,4880,0],[8946,4988,0],[8958,5096,0],[8940,5180,0],[8945,5359,0],[8974,4988,0],[8979,5109,0],[8962,5175,0],[8966,5288,0],[8970,5345,0],[8989,4880,0],[8993,5126,0],[8996,5132,0],[9000,5145,0],[8985,5170,0],[8995,5288,0],[8993,5340,0],[9013,4880,0],[9003,4988,0],[9010,5142,0],[9004,5164,0],[9003,5167,0],[9009,5188,0],[9011,5205,0],[9012,5203,0],[9012,5222,0],[9012,5252,0],[9012,5276,0],[9012,5299,0],[9012,5323,0],[9009,5339,0],[9012,5348,0],[9012,5370,0],[9012,5386,0],[9011,5386,0],[9035,4880,0],[9033,4988,0],[9030,5152,0],[9027,5205,0],[9022,5288,0],[9025,5386,0],[9056,4880,0],[9054,5157,0],[9053,5206,0],[9048,5288,0],[9045,5386,0],[9062,4988,0],[9078,5288,0],[9066,5386,0],[9083,4880,0],[9091,4988,0],[9100,5095,0],[9100,5110,0],[9100,5138,0],[9084,5157,0],[9100,5164,0],[9100,5183,0],[9084,5206,0],[9100,5204,0],[9100,5225,0],[9100,5247,0],[9099,5268,0],[9099,5289,0],[9099,5309,0],[9099,5336,0],[9099,5365,0],[9086,5386,0],[9099,5383,0],[9114,4875,0],[9120,4988,0],[9114,5153,0],[9120,5207,0],[9100,5288,0],[9100,5386,0],[9138,4771,0],[9138,4806,0],[9138,4835,0],[9133,4859,0],[9147,4988,0],[9142,5147,0],[9156,5207,0],[9172,4988,0],[9167,5138,0],[9179,5414,0],[9196,4988,0],[9188,5128,0],[9190,5207,0],[9193,5330,0],[9187,5351,0],[9184,5373,0],[9185,5396,0],[9194,5414,0],[9187,5413,0],[9216,4988,0],[9207,4991,0],[9207,5006,0],[9207,5029,0],[9207,5059,0],[9207,5091,0],[9207,5124,0],[9202,5120,0],[9207,5155,0],[9207,5180,0],[9207,5199,0],[9219,5207,0],[9207,5211,0],[9211,5233,0],[9216,5287,0],[9203,5309,0],[9217,5414,0],[9236,4988,0],[9226,5263,0],[9226,5271,0],[9257,4988,0],[9241,5206,0],[9243,5285,0],[9256,5300,0],[9242,5414,0],[9278,4988,0],[9260,5201,0],[9268,5310,0],[9278,5315,0],[9278,5321,0],[9277,5342,0],[9277,5361,0],[9277,5388,0],[9275,5419,0],[9265,5414,0],[9269,5447,0],[9265,5465,0],[9297,5087,0],[9297,5106,0],[9297,5134,0],[9295,5159,0],[9282,5184,0],[9288,5183,0],[9288,5201,0],[9288,5227,0],[9286,5252,0],[9283,5275,0],[9280,5298,0],[9291,5414,0],[9301,4988,0],[9323,4988,0],[9320,5414,0],[9346,4988,0],[9344,5411,0],[9369,4988,0],[9364,5405,0],[9391,4988,0],[9388,5398,0],[9412,4988,0],[9418,5393,0],[9433,4988,0],[9452,4988,0],[9442,5395,0],[9477,4988,0],[9462,5403,0],[9489,5412,0],[9503,4988,0],[9520,4988,0],[9510,5417,0]]],["DefaultKeyPoint43",[[6995,4848,0],[7014,4868,0],[7039,4897,0],[7026,4882,0],[7052,4912,0],[7070,4933,0],[7093,4957,0],[7113,4976,0],[7132,4995,0],[7151,5013,0],[7170,5032,0],[7188,5051,0],[7207,5070,0],[7226,5087,0],[7247,5103,0],[7270,5116,0],[7294,5129,0],[7319,5141,0],[7358,4605,0],[7347,4624,0],[7343,4646,0],[7355,4651,0],[7345,4653,0],[7350,4652,0],[7345,4669,0],[7351,4692,0],[7343,5154,0],[7374,4276,0],[7377,4588,0],[7373,4637,0],[7364,4646,0],[7361,4716,0],[7372,4735,0],[7377,4911,0],[7373,4946,0],[7373,4976,0],[7374,5001,0],[7377,5025,0],[7367,5167,0],[7384,4299,0],[7396,4320,0],[7393,4617,0],[7383,4626,0],[7383,4751,0],[7393,4769,0],[7386,4881,0],[7383,5048,0],[7394,5069,0],[7391,5181,0],[7410,4344,0],[7402,4574,0],[7402,4612,0],[7415,4610,0],[7408,4610,0],[7401,4791,0],[7406,4797,0],[7406,4812,0],[7407,4834,0],[7400,4857,0],[7411,5088,0],[7415,5194,0],[7425,4370,0],[7438,4398,0],[7425,4566,0],[7438,4563,0],[7422,4612,0],[7427,4616,0],[7433,4633,0],[7430,4623,0],[7439,4649,0],[7437,4643,0],[7426,4789,0],[7428,5109,0],[7437,5206,0],[7449,4429,0],[7459,4459,0],[7443,4562,0],[7441,4572,0],[7447,4589,0],[7456,4612,0],[7459,4613,0],[7450,4779,0],[7445,5131,0],[7458,5218,0],[7478,4479,0],[7467,4488,0],[7466,4482,0],[7471,4514,0],[7471,4535,0],[7460,4553,0],[7479,4605,0],[7468,4610,0],[7466,4637,0],[7477,4664,0],[7470,4771,0],[7463,5157,0],[7478,5229,0],[7495,4477,0],[7497,4597,0],[7487,4691,0],[7497,4716,0],[7496,4701,0],[7491,4762,0],[7481,5187,0],[7498,5217,0],[7497,5241,0],[7516,4477,0],[7518,4588,0],[7514,4694,0],[7507,4738,0],[7512,4754,0],[7513,4754,0],[7512,5247,0],[7534,4477,0],[7536,4580,0],[7539,4743,0],[7525,4838,0],[7521,4850,0],[7526,4870,0],[7534,4891,0],[7547,4477,0],[7554,4498,0],[7553,4482,0],[7555,4523,0],[7556,4544,0],[7560,4558,0],[7552,4573,0],[7541,4684,0],[7543,4827,0],[7541,4908,0],[7546,4922,0],[7564,4568,0],[7578,4565,0],[7565,4568,0],[7571,4672,0],[7567,4732,0],[7571,4817,0],[7593,4574,0],[7587,4567,0],[7588,4724,0],[7601,4593,0],[7613,4623,0],[7603,4659,0],[7608,4717,0],[7601,4806,0],[7623,4652,0],[7623,4651,0],[7631,4677,0],[7638,4701,0],[7627,4709,0],[7628,4795,0],[7654,4698,0],[7645,4725,0],[7652,4747,0],[7659,4768,0],[7652,4786,0],[7668,4780,0],[7664,4783,0],[7686,4686,0],[7713,4678,0],[7735,4676,0],[7756,4677,0],[7778,4679,0],[7802,4398,0],[7806,4431,0],[7810,4462,0],[7819,4490,0],[7802,4685,0],[7832,4516,0],[7828,4693,0],[7843,4539,0],[7853,4560,0],[7857,4703,0],[7867,4577,0],[7882,4592,0],[7893,4610,0],[7899,4633,0],[7885,4714,0],[7901,4663,0],[7901,4697,0],[7900,4718,0],[7912,4723,0],[7937,4731,0],[7961,4739,0]]],["DefaultKeyPoint44",[[6808,3669,0],[6825,3686,0],[6844,3703,0],[6865,3726,0],[6889,3753,0],[6911,3777,0],[6932,3796,0],[6955,3815,0],[6980,3647,0],[6964,3647,0],[6980,3721,0],[6977,3831,0],[6970,3828,0],[6995,3834,0],[7001,3647,0],[7002,3721,0],[7024,3647,0],[7038,3721,0],[7021,3837,0],[7046,3647,0],[7046,3839,0],[7061,3633,0],[7061,3648,0],[7060,3647,0],[7061,3672,0],[7061,3700,0],[7061,3727,0],[7062,3721,0],[7065,3739,0],[7061,3750,0],[7061,3773,0],[7061,3796,0],[7061,3817,0],[7062,3832,0],[7073,3842,0],[7061,3844,0],[7062,3851,0],[7063,3863,0],[7063,3868,0],[7070,3882,0],[7066,3883,0],[7072,3902,0],[7060,3979,0],[7069,3983,0],[7083,3739,0],[7099,3844,0],[7084,3897,0],[7081,3919,0],[7099,3939,0],[7087,3937,0],[7090,3954,0],[7094,3952,0],[7092,3973,0],[7092,3962,0],[7093,3995,0],[7082,3986,0],[7095,4016,0],[7097,4035,0],[7099,4055,0],[7106,3739,0],[7102,3906,0],[7112,3924,0],[7103,3987,0],[7105,4075,0],[7116,4090,0],[7116,4148,0],[7126,3739,0],[7123,3847,0],[7124,3909,0],[7125,3914,0],[7136,3910,0],[7125,3989,0],[7131,4103,0],[7134,4132,0],[7125,4143,0],[7148,3739,0],[7143,3848,0],[7158,3850,0],[7157,3850,0],[7146,3906,0],[7145,3989,0],[7146,3992,0],[7152,4018,0],[7150,4002,0],[7152,4038,0],[7152,4057,0],[7152,4077,0],[7149,4099,0],[7149,4112,0],[7143,4118,0],[7170,3739,0],[7172,3851,0],[7168,3854,0],[7168,3870,0],[7168,3889,0],[7168,3906,0],[7163,3904,0],[7174,3933,0],[7170,3920,0],[7179,3946,0],[7164,3987,0],[7179,3985,0],[7169,4115,0],[7192,3739,0],[7191,3854,0],[7181,3906,0],[7186,3963,0],[7195,3979,0],[7193,3980,0],[7186,3983,0],[7188,4113,0],[7196,4110,0],[7211,3739,0],[7216,3856,0],[7203,3910,0],[7207,3991,0],[7207,4105,0],[7211,4109,0],[7202,4109,0],[7230,3739,0],[7222,3914,0],[7239,3917,0],[7223,4000,0],[7238,4004,0],[7235,4078,0],[7240,4072,0],[7223,4093,0],[7239,4099,0],[7239,4083,0],[7227,4114,0],[7251,3739,0],[7243,3860,0],[7254,3873,0],[7259,3862,0],[7250,3888,0],[7246,3908,0],[7256,3921,0],[7244,3927,0],[7241,3947,0],[7240,3967,0],[7242,3986,0],[7258,4003,0],[7247,4005,0],[7249,4024,0],[7248,4043,0],[7243,4061,0],[7244,4118,0],[7255,4135,0],[7243,4125,0],[7258,4139,0],[7253,4133,0],[7274,3740,0],[7270,3863,0],[7275,3929,0],[7270,4147,0],[7298,3740,0],[7297,3866,0],[7294,3933,0],[7281,4001,0],[7288,4155,0],[7315,3931,0],[7300,4000,0],[7315,4000,0],[7307,4160,0],[7321,3740,0],[7320,3868,0],[7339,3870,0],[7333,3927,0],[7333,3975,0],[7329,3997,0],[7326,4001,0],[7329,4020,0],[7331,4043,0],[7332,4067,0],[7332,4089,0],[7333,4110,0],[7333,4129,0],[7333,4148,0],[7337,4169,0],[7324,4162,0],[7335,4163,0],[7343,3740,0],[7360,3872,0],[7355,3930,0],[7355,3925,0],[7346,3924,0],[7343,3953,0],[7345,4192,0],[7354,4218,0],[7369,3740,0],[7370,3873,0],[7378,3872,0],[7376,3872,0],[7370,3888,0],[7365,3909,0],[7364,4248,0],[7374,4276,0],[7388,3740,0],[7391,3872,0],[7384,4299,0],[7396,4320,0],[7411,3873,0],[7410,4344,0],[7431,3874,0],[7425,4370,0],[7438,4398,0],[7453,3874,0],[7475,3874,0],[7501,3872,0],[7532,3870,0],[7557,3871,0],[7575,3875,0],[7594,3881,0],[7612,3888,0],[7631,3895,0],[7652,3904,0]]],["DefaultKeyPoint45",[[6666,3439,0],[6676,3456,0],[6686,3474,0],[6696,3491,0],[6709,3515,0],[6724,3546,0],[6739,3576,0],[6754,3606,0],[6773,3632,0],[6792,3653,0],[6808,3669,0],[6825,3686,0],[6844,3703,0],[6865,3726,0],[6889,3753,0],[6911,3777,0],[6932,3796,0],[6955,3815,0],[6980,3647,0],[6964,3647,0],[6980,3721,0],[6977,3831,0],[6970,3828,0],[6995,3834,0],[7001,3647,0],[7002,3721,0],[7024,3647,0],[7038,3721,0],[7021,3837,0],[7046,3647,0],[7046,3839,0],[7061,3633,0],[7061,3648,0],[7060,3647,0],[7061,3672,0],[7061,3700,0],[7061,3727,0],[7062,3721,0],[7065,3739,0],[7061,3750,0],[7061,3773,0],[7061,3796,0],[7061,3817,0],[7062,3832,0],[7073,3842,0],[7061,3844,0],[7062,3851,0],[7063,3863,0],[7063,3868,0],[7070,3882,0],[7066,3883,0],[7072,3902,0],[7060,3979,0],[7069,3983,0],[7083,3739,0],[7099,3844,0],[7084,3897,0],[7081,3919,0],[7099,3939,0],[7087,3937,0],[7090,3954,0],[7094,3952,0],[7092,3973,0],[7092,3962,0],[7093,3995,0],[7082,3986,0],[7095,4016,0],[7097,4035,0],[7099,4055,0],[7106,3739,0],[7102,3906,0],[7112,3924,0],[7103,3987,0],[7105,4075,0],[7116,4090,0],[7116,4148,0],[7126,3739,0],[7123,3847,0],[7124,3909,0],[7125,3914,0],[7136,3910,0],[7125,3989,0],[7131,4103,0],[7134,4132,0],[7125,4143,0],[7148,3739,0],[7143,3848,0],[7158,3850,0],[7157,3850,0],[7146,3906,0],[7145,3989,0],[7146,3992,0],[7152,4018,0],[7150,4002,0],[7152,4038,0],[7152,4057,0],[7152,4077,0],[7149,4099,0],[7149,4112,0],[7143,4118,0],[7170,3739,0],[7172,3851,0],[7168,3854,0],[7168,3870,0],[7168,3889,0],[7168,3906,0],[7163,3904,0],[7174,3933,0],[7170,3920,0],[7179,3946,0],[7164,3987,0],[7179,3985,0],[7169,4115,0],[7192,3739,0],[7191,3854,0],[7181,3906,0],[7186,3963,0],[7195,3979,0],[7193,3980,0],[7186,3983,0],[7188,4113,0],[7196,4110,0],[7211,3739,0],[7216,3856,0],[7203,3910,0],[7207,3991,0],[7207,4105,0],[7211,4109,0],[7202,4109,0],[7230,3739,0],[7222,3914,0],[7239,3917,0],[7223,4000,0],[7238,4004,0],[7235,4078,0],[7240,4072,0],[7223,4093,0],[7239,4099,0],[7239,4083,0],[7227,4114,0],[7251,3739,0],[7243,3860,0],[7254,3873,0],[7259,3862,0],[7250,3888,0],[7246,3908,0],[7256,3921,0],[7244,3927,0],[7241,3947,0],[7240,3967,0],[7242,3986,0],[7258,4003,0],[7247,4005,0],[7249,4024,0],[7248,4043,0],[7243,4061,0],[7244,4118,0],[7255,4135,0],[7243,4125,0],[7258,4139,0],[7253,4133,0],[7274,3740,0],[7270,3863,0],[7275,3929,0],[7270,4147,0],[7298,3740,0],[7297,3866,0],[7294,3933,0],[7281,4001,0],[7315,3931,0],[7300,4000,0],[7315,4000,0],[7321,3740,0],[7320,3868,0],[7339,3870,0],[7333,3927,0],[7333,3975,0],[7329,3997,0],[7326,4001,0],[7329,4020,0],[7331,4043,0],[7332,4067,0],[7332,4089,0],[7333,4110,0],[7343,3740,0],[7360,3872,0],[7355,3930,0],[7355,3925,0],[7346,3924,0],[7343,3953,0],[7369,3740,0],[7370,3873,0],[7378,3872,0],[7376,3872,0],[7370,3888,0],[7365,3909,0],[7388,3740,0],[7391,3872,0],[7411,3873,0],[7431,3874,0],[7453,3874,0],[7475,3874,0],[7501,3872,0],[7532,3870,0],[7557,3871,0]]],["DefaultKeyPoint49",[[4978,3542,0],[4967,3579,0],[4976,3588,0],[4987,3556,0],[4986,3578,0],[4990,3568,0],[4985,3604,0],[4995,3668,0],[4994,3688,0],[4995,3698,0],[4994,3709,0],[4995,3729,0],[5004,3622,0],[5011,3629,0],[5002,3647,0],[5017,3698,0],[5021,3333,0],[5024,3634,0],[5047,3343,0],[5044,3641,0],[5051,3698,0],[5076,3356,0],[5064,3644,0],[5072,3698,0],[5100,3367,0],[5081,3507,0],[5093,3525,0],[5090,3647,0],[5117,3375,0],[5108,3554,0],[5115,3580,0],[5117,3603,0],[5116,3631,0],[5117,3650,0],[5115,3652,0],[5135,3383,0],[5136,3651,0],[5155,3393,0],[5158,3650,0],[5176,3402,0],[5196,3412,0],[5186,3647,0],[5215,3422,0],[5214,3642,0],[5232,3432,0],[5239,3638,0],[5254,3446,0],[5275,3459,0],[5262,3633,0],[5288,3472,0],[5284,3466,0],[5290,3479,0],[5294,3491,0],[5299,3510,0],[5283,3630,0],[5304,3532,0],[5309,3556,0],[5317,3582,0],[5309,3628,0],[5329,3611,0],[5340,3635,0],[5336,3627,0],[5330,3628,0],[5357,3619,0],[5349,3653,0],[5360,3671,0],[5378,3398,0],[5366,3391,0],[5370,3689,0],[5397,3408,0],[5390,3607,0],[5382,3710,0],[5395,3735,0],[5395,4036,0],[5385,4050,0],[5415,3597,0],[5412,3762,0],[5420,4006,0],[5409,4020,0],[5421,3423,0],[5436,3435,0],[5435,3590,0],[5439,3799,0],[5427,3785,0],[5440,3978,0],[5428,3994,0],[5442,3448,0],[5449,3467,0],[5456,3484,0],[5455,3582,0],[5455,3815,0],[5457,3964,0],[5463,3503,0],[5470,3522,0],[5479,3546,0],[5473,3575,0],[5475,3833,0],[5476,3958,0],[5487,3565,0],[5485,3571,0],[5498,3849,0],[5492,3955,0],[5520,3865,0],[5512,3954,0],[5532,3953,0],[5544,3883,0],[5558,3944,0],[5546,3951,0],[5570,3904,0],[5571,3932,0],[5578,3923,0],[5582,3917,0],[5596,3924,0],[5623,3944,0],[5646,3964,0],[5664,3981,0],[5683,4000,0]]],["DefaultKeyPoint50",[[4811,3275,0],[4800,3279,0],[4815,3264,0],[4806,3288,0],[4806,3299,0],[4804,3288,0],[4803,3283,0],[4810,3308,0],[4815,3313,0],[4805,3339,0],[4811,3355,0],[4807,3346,0],[4819,3364,0],[4823,3318,0],[4836,3322,0],[4834,3335,0],[4830,3326,0],[4833,3336,0],[4833,3331,0],[4835,3349,0],[4839,3371,0],[4830,3371,0],[4838,3377,0],[4847,3297,0],[4856,3286,0],[4847,3299,0],[4851,3314,0],[4840,3309,0],[4847,3305,0],[4857,3326,0],[4845,3391,0],[4842,3382,0],[4851,3402,0],[4877,3269,0],[4866,3277,0],[4861,3339,0],[4864,3350,0],[4865,3357,0],[4861,3411,0],[4871,3415,0],[4878,3416,0],[4881,3246,0],[4890,3258,0],[4898,3260,0],[4885,3262,0],[4897,3287,0],[4886,3314,0],[4882,3340,0],[4881,3369,0],[4882,3397,0],[4885,3426,0],[4894,3459,0],[4900,3591,0],[4917,3275,0],[4908,3267,0],[4905,3486,0],[4914,3485,0],[4904,3481,0],[4919,3509,0],[4910,3593,0],[4920,3596,0],[4920,3614,0],[4920,3619,0],[4920,3624,0],[4935,3290,0],[4929,3490,0],[4935,3532,0],[4927,3601,0],[4935,3605,0],[4923,3608,0],[4932,3605,0],[4927,3605,0],[4954,3304,0],[4947,3504,0],[4950,3554,0],[4960,3598,0],[4946,3604,0],[4974,3315,0],[4964,3525,0],[4978,3542,0],[4967,3579,0],[4976,3588,0],[4996,3324,0],[4987,3556,0],[4986,3578,0],[4990,3568,0],[4985,3604,0],[4995,3668,0],[4994,3688,0],[4995,3698,0],[4994,3709,0],[4995,3729,0],[4996,3743,0],[5004,3622,0],[5011,3629,0],[5002,3647,0],[5017,3698,0],[5021,3333,0],[5024,3634,0],[5047,3343,0],[5044,3641,0],[5051,3698,0],[5076,3356,0],[5064,3644,0],[5072,3698,0],[5100,3367,0],[5081,3507,0],[5093,3525,0],[5090,3647,0],[5117,3375,0],[5108,3554,0],[5115,3580,0],[5117,3603,0],[5116,3631,0],[5117,3650,0],[5115,3652,0],[5135,3383,0],[5136,3651,0],[5155,3393,0],[5158,3650,0],[5176,3402,0],[5196,3412,0],[5186,3647,0],[5215,3422,0],[5214,3642,0],[5232,3432,0],[5239,3638,0],[5254,3446,0],[5275,3459,0],[5262,3633,0],[5288,3472,0],[5284,3466,0],[5290,3479,0],[5294,3491,0],[5299,3510,0],[5283,3630,0],[5304,3532,0],[5309,3556,0],[5317,3582,0],[5309,3628,0],[5329,3611,0],[5340,3635,0],[5336,3627,0],[5330,3628,0],[5357,3619,0],[5349,3653,0],[5360,3671,0],[5378,3398,0],[5366,3391,0],[5370,3689,0],[5369,4080,0],[5377,4064,0],[5397,3408,0],[5390,3607,0],[5382,3710,0],[5395,3735,0],[5395,4036,0],[5385,4050,0],[5415,3597,0],[5412,3762,0],[5420,4006,0],[5409,4020,0],[5421,3423,0],[5436,3435,0],[5435,3590,0],[5439,3799,0],[5427,3785,0],[5440,3978,0],[5428,3994,0],[5442,3448,0],[5449,3467,0],[5456,3484,0],[5455,3582,0],[5455,3815,0],[5457,3964,0],[5463,3503,0],[5470,3522,0],[5479,3546,0],[5473,3575,0],[5475,3833,0],[5487,3565,0],[5485,3571,0],[5498,3849,0]]],["DefaultKeyPoint51",[[4270,2843,0],[4284,2781,0],[4291,2787,0],[4291,2787,0],[4287,2798,0],[4297,2789,0],[4289,2792,0],[4287,2785,0],[4283,2840,0],[4318,2788,0],[4304,2790,0],[4302,2837,0],[4333,2731,0],[4331,2737,0],[4338,2758,0],[4333,2751,0],[4331,2744,0],[4335,2755,0],[4339,2783,0],[4331,2787,0],[4323,2833,0],[4354,2691,0],[4341,2715,0],[4351,2742,0],[4343,2760,0],[4358,2795,0],[4352,2797,0],[4344,2798,0],[4340,2810,0],[4343,2829,0],[4344,2827,0],[4363,2676,0],[4367,2671,0],[4372,2667,0],[4379,2665,0],[4364,2723,0],[4377,2776,0],[4369,2787,0],[4364,2792,0],[4372,2781,0],[4370,2823,0],[4393,2665,0],[4382,2705,0],[4387,2745,0],[4382,2757,0],[4384,2750,0],[4381,2770,0],[4382,2763,0],[4397,2818,0],[4413,2665,0],[4404,2693,0],[4417,2696,0],[4416,2715,0],[4418,2703,0],[4418,2709,0],[4400,2732,0],[4413,2721,0],[4417,2814,0],[4440,2565,0],[4440,2672,0],[4434,2669,0],[4428,2667,0],[4428,2689,0],[4438,2751,0],[4429,2761,0],[4427,2766,0],[4427,2786,0],[4439,2809,0],[4427,2806,0],[4446,2554,0],[4442,2559,0],[4452,2550,0],[4459,2549,0],[4442,2579,0],[4440,2572,0],[4456,2592,0],[4450,2589,0],[4446,2585,0],[4444,2678,0],[4451,2681,0],[4457,2732,0],[4443,2749,0],[4446,2763,0],[4449,2777,0],[4449,2776,0],[4469,2550,0],[4480,2552,0],[4462,2596,0],[4468,2608,0],[4472,2615,0],[4465,2601,0],[4480,2606,0],[4471,2609,0],[4476,2608,0],[4471,2667,0],[4479,2711,0],[4473,2757,0],[4477,2780,0],[4462,2774,0],[4475,2772,0],[4473,2760,0],[4465,2804,0],[4461,2801,0],[4465,2821,0],[4470,2850,0],[4474,2876,0],[4474,2897,0],[4474,2919,0],[4472,2923,0],[4468,2943,0],[4487,2550,0],[4497,2542,0],[4493,2547,0],[4492,2549,0],[4494,2558,0],[4493,2554,0],[4496,2572,0],[4496,2564,0],[4492,2577,0],[4488,2596,0],[4491,2583,0],[4490,2589,0],[4485,2602,0],[4500,2635,0],[4484,2623,0],[4496,2631,0],[4487,2651,0],[4486,2652,0],[4497,2660,0],[4481,2707,0],[4482,2716,0],[4498,2734,0],[4484,2721,0],[4485,2727,0],[4486,2755,0],[4499,2752,0],[4498,2743,0],[4498,2749,0],[4495,2798,0],[4481,2800,0],[4498,2939,0],[4484,2927,0],[4511,2518,0],[4519,2514,0],[4515,2515,0],[4505,2524,0],[4500,2536,0],[4502,2530,0],[4500,2569,0],[4520,2573,0],[4506,2573,0],[4512,2574,0],[4500,2568,0],[4512,2617,0],[4512,2672,0],[4514,2674,0],[4502,2686,0],[4514,2707,0],[4500,2725,0],[4513,2951,0],[4522,2498,0],[4528,2519,0],[4524,2515,0],[4522,2509,0],[4522,2504,0],[4534,2523,0],[4536,2564,0],[4530,2567,0],[4525,2570,0],[4525,2602,0],[4531,2687,0],[4529,2691,0],[4539,2717,0],[4531,2728,0],[4528,2735,0],[4534,2747,0],[4527,2748,0],[4527,2747,0],[4527,2741,0],[4528,2792,0],[4533,2969,0],[4559,2535,0],[4553,2529,0],[4558,2529,0],[4550,2539,0],[4554,2534,0],[4540,2525,0],[4546,2527,0],[4547,2545,0],[4547,2559,0],[4546,2552,0],[4554,2570,0],[4550,2564,0],[4545,2563,0],[4558,2575,0],[4560,2579,0],[4542,2592,0],[4560,2584,0],[4557,2640,0],[4554,2654,0],[4559,2666,0],[4552,2703,0],[4556,2706,0],[4547,2707,0],[4555,2749,0],[4548,2747,0],[4559,2753,0],[4541,2746,0],[4560,2785,0],[4557,2992,0],[4563,2525,0],[4571,2521,0],[4567,2523,0],[4575,2547,0],[4563,2541,0],[4568,2544,0],[4563,2589,0],[4569,2622,0],[4578,2677,0],[4570,2677,0],[4565,2673,0],[4565,2694,0],[4574,2720,0],[4575,2743,0],[4563,2758,0],[4563,2754,0],[4568,2751,0],[4567,2768,0],[4570,2780,0],[4569,2775,0],[4576,3010,0],[4584,2556,0],[4580,2551,0],[4587,2570,0],[4583,2589,0],[4589,2594,0],[4589,2585,0],[4582,2609,0],[4587,2601,0],[4593,2659,0],[4595,2736,0],[4583,2734,0],[4589,2780,0],[4594,3022,0],[4602,2590,0],[4617,2660,0],[4607,2643,0],[4601,2647,0],[4614,2751,0],[4618,2774,0],[4611,3032,0],[4623,2593,0],[4622,2625,0],[4637,2676,0],[4629,2763,0],[4640,2771,0],[4640,2771,0],[4636,2770,0],[4627,3041,0],[4642,2596,0],[4655,2598,0],[4641,2608,0],[4653,2689,0],[4650,2780,0],[4643,3054,0],[4659,3070,0],[4662,2595,0],[4669,2703,0],[4666,2793,0],[4683,2588,0],[4683,2715,0],[4699,2727,0],[4681,2806,0],[4698,2820,0],[4681,3078,0],[4707,2582,0],[4706,2595,0],[4703,2586,0],[4714,2610,0],[4720,2739,0],[4719,2732,0],[4708,2735,0],[4715,2834,0],[4712,2833,0],[4705,3078,0],[4732,2577,0],[4732,2626,0],[4736,2697,0],[4724,2716,0],[4722,2750,0],[4725,2771,0],[4728,2791,0],[4729,2810,0],[4720,2824,0],[4736,2852,0],[4738,2905,0],[4733,2935,0],[4729,2960,0],[4728,2984,0],[4729,3009,0],[4731,3032,0],[4737,3054,0],[4729,3075,0],[4758,2573,0],[4755,2643,0],[4751,2678,0],[4740,2743,0],[4753,2841,0],[4745,2873,0],[4753,2866,0],[4745,3074,0],[4746,3073,0],[4755,3093,0],[4766,2653,0],[4775,2664,0],[4762,2663,0],[4778,2746,0],[4763,2745,0],[4777,2750,0],[4777,2749,0],[4773,2763,0],[4772,2769,0],[4768,2784,0],[4761,2811,0],[4768,3111,0],[4788,2570,0],[4792,2679,0],[4798,2700,0],[4787,2719,0],[4781,3128,0],[4798,3152,0],[4819,2568,0],[4810,2680,0],[4804,2688,0],[4837,2643,0],[4822,2662,0],[4846,2566,0],[4859,2599,0],[4850,2623,0],[4868,2553,0],[4864,2572,0],[4862,2565,0],[4885,2544,0],[4912,2545,0],[4937,2548,0],[4960,2541,0],[4979,2530,0],[4994,2518,0],[5010,2508,0],[5031,2496,0],[5058,2483,0]]],["DefaultKeyPoint53",[[5604,2260,0],[5614,2279,0],[5623,2297,0],[5634,2319,0],[5647,2345,0],[5660,2373,0],[5674,2402,0],[5686,2429,0],[5696,2454,0],[5707,2480,0],[5716,2506,0],[5727,2534,0],[5740,2565,0],[5750,2589,0],[5756,2603,0],[5766,2617,0],[5781,2633,0],[5797,2649,0],[5816,2667,0],[5835,2686,0],[5856,2708,0],[5875,2727,0],[5889,2742,0],[5904,2759,0],[5918,2780,0],[5931,2804,0],[5941,2823,0],[5948,2834,0],[5955,2841,0],[5973,2852,0],[5999,2866,0],[6024,2881,0],[6047,2893,0],[6066,2904,0],[6087,2915,0],[6107,2926,0],[6126,2936,0],[6144,2947,0],[6162,2957,0],[6179,2967,0],[6199,2979,0]]],["DefaultKeyPoint57",[[5889,2742,0],[5904,2759,0],[5918,2780,0],[5931,2804,0],[5941,2823,0],[5948,2834,0],[5955,2841,0],[5973,2852,0],[5999,2866,0],[6024,2881,0],[6047,2893,0],[6066,2904,0],[6087,2915,0],[6107,2926,0],[6126,2936,0],[6144,2947,0],[6162,2957,0],[6179,2967,0],[6199,2979,0],[6222,2993,0],[6244,3005,0],[6269,3015,0],[6299,3025,0],[6323,3033,0],[6343,3041,0],[6364,3051,0],[6383,3059,0],[6406,3072,0],[6434,3089,0],[6460,3106,0],[6483,3121,0],[6503,3136,0],[6519,3150,0],[6536,3167,0],[6560,3198,0],[6550,3182,0],[6570,3218,0],[6577,3238,0],[6585,3259,0],[6593,3282,0],[6602,3305,0],[6614,3330,0],[6629,3357,0],[6642,3385,0]]],["DefaultKeyPoint58",[[3433,568,0],[3451,577,0],[3473,589,0],[3491,599,0],[3510,609,0],[3528,620,0],[3553,636,0],[3582,656,0],[3609,678,0],[3633,700,0],[3652,717,0],[3667,739,0],[3661,728,0],[3675,760,0],[3685,787,0],[3695,814,0],[3703,837,0],[3710,857,0],[3717,875,0],[3724,893,0],[3731,913,0],[3739,934,0],[3748,961,0],[3761,986,0],[3776,1001,0],[3791,1012,0],[3809,1018,0],[3828,1020,0],[3851,1022,0],[3878,1026,0],[3900,1030,0],[3918,1033,0],[3942,1039,0],[3971,1047,0],[4000,1056,0],[4026,1063,0],[4049,1066,0],[4071,1068,0],[4094,1072,0],[4107,460,0],[4119,471,0],[4116,1034,0],[4117,1078,0],[4111,1061,0],[4107,1078,0],[4137,491,0],[4133,846,0],[4130,873,0],[4132,906,0],[4132,935,0],[4129,959,0],[4125,984,0],[4120,1008,0],[4138,1086,0],[4158,513,0],[4154,783,0],[4149,801,0],[4141,822,0],[4177,534,0],[4176,731,0],[4163,757,0],[4160,1095,0],[4193,555,0],[4188,713,0],[4180,1104,0],[4209,579,0],[4207,696,0],[4224,601,0],[4237,622,0],[4238,658,0],[4227,677,0],[4241,640,0],[4242,647,0],[4263,649,0]]],["DefaultKeyPoint60",[[4107,460,0],[4119,471,0],[4137,491,0],[4133,846,0],[4130,873,0],[4132,906,0],[4132,935,0],[4129,959,0],[4125,984,0],[4158,513,0],[4154,783,0],[4149,801,0],[4141,822,0],[4177,534,0],[4176,731,0],[4163,757,0],[4193,555,0],[4188,713,0],[4209,579,0],[4207,696,0],[4224,601,0],[4237,622,0],[4238,658,0],[4227,677,0],[4241,640,0],[4242,647,0],[4263,649,0],[4289,652,0],[4312,656,0],[4335,661,0],[4359,641,0],[4348,654,0],[4358,667,0],[4344,664,0],[4381,621,0],[4383,674,0],[4405,600,0],[4410,683,0],[4429,580,0],[4434,698,0],[4452,567,0],[4454,716,0],[4473,561,0],[4469,733,0],[4474,743,0],[4474,761,0],[4474,787,0],[4474,816,0],[4497,557,0],[4505,638,0],[4504,645,0],[4504,668,0],[4504,692,0],[4504,713,0],[4504,737,0],[4504,763,0],[4504,792,0],[4521,554,0],[4521,638,0],[4545,551,0],[4548,638,0],[4570,547,0],[4578,638,0],[4595,544,0]]],["DefaultKeyPoint67",[[6315,5011,0],[6316,5029,0],[6318,5025,0],[6306,5073,0],[6313,5079,0],[6322,5013,0],[6328,5021,0],[6338,5037,0],[6320,5020,0],[6339,5057,0],[6332,5073,0],[6322,5079,0],[6415,5574,0],[6404,5593,0],[6438,5537,0],[6426,5554,0],[6454,5523,0],[6470,5506,0],[6488,5488,0],[6505,5475,0],[6523,5467,0],[6541,5457,0],[6561,5448,0],[6586,5445,0],[6617,5450,0],[6649,5454,0],[6679,5458,0],[6717,5064,0],[6714,5094,0],[6714,5119,0],[6714,5145,0],[6714,5170,0],[6716,5194,0],[6703,5466,0],[6735,5021,0],[6724,5039,0],[6725,5216,0],[6733,5228,0],[6721,5478,0],[6737,5490,0],[6748,5001,0],[6753,5501,0],[6764,4977,0],[6775,5519,0],[6797,4922,0],[6781,4950,0],[6797,5537,0],[6820,4878,0],[6810,4899,0],[6811,5548,0],[6836,4838,0],[6829,4857,0],[6821,5557,0],[6850,4754,0],[6852,4753,0],[6849,4772,0],[6845,4797,0],[6841,4818,0],[6874,4765,0],[6893,4775,0],[6912,4787,0],[6931,4799,0],[6951,4812,0],[6972,4827,0],[6995,4848,0],[7014,4868,0],[7039,4897,0],[7026,4882,0],[7052,4912,0],[7070,4933,0],[7093,4957,0],[7113,4976,0],[7132,4995,0],[7151,5013,0],[7170,5032,0],[7188,5051,0],[7207,5070,0],[7226,5087,0]]],["DefaultKeyPoint76",[[5881,5566,0],[5911,5573,0],[5937,5579,0],[5937,5963,0],[5965,5586,0],[5964,5970,0],[5994,5594,0],[5985,5977,0],[6015,5299,0],[6007,5983,0],[6027,5327,0],[6037,5353,0],[6026,5603,0],[6037,5986,0],[6049,5376,0],[6053,5611,0],[6059,5616,0],[6062,5397,0],[6073,5415,0],[6078,5540,0],[6075,5561,0],[6070,5581,0],[6064,5601,0],[6072,5616,0],[6069,5984,0],[6081,5439,0],[6083,5470,0],[6083,5497,0],[6081,5518,0],[6090,5622,0],[6094,5982,0],[6108,5627,0],[6117,5978,0],[6133,5636,0],[6158,5645,0],[6141,5971,0],[6175,5653,0],[6172,5959,0],[6198,5664,0],[6201,5952,0],[6222,5676,0],[6230,5950,0],[6241,5686,0],[6260,5950,0],[6266,5699,0],[6294,5713,0],[6299,5881,0],[6297,5905,0],[6297,5926,0],[6288,5956,0],[6298,5944,0],[6300,5957,0],[6316,5724,0],[6313,5809,0],[6306,5834,0],[6302,5857,0],[6312,5968,0],[6337,5720,0],[6332,5732,0],[6331,5742,0],[6327,5765,0],[6321,5786,0],[6327,5984,0],[6338,6003,0],[6357,5680,0],[6346,5701,0],[6345,6026,0],[6350,6052,0],[6353,6082,0],[6356,6109,0],[6371,5660,0],[6363,6139,0],[6394,5611,0],[6384,5635,0],[6415,5574,0],[6404,5593,0],[6438,5537,0],[6426,5554,0],[6454,5523,0],[6470,5506,0],[6488,5488,0],[6505,5475,0],[6523,5467,0],[6541,5457,0],[6561,5448,0],[6586,5445,0],[6617,5450,0],[6649,5454,0],[6679,5458,0],[6703,5466,0],[6721,5478,0],[6737,5490,0],[6753,5501,0],[6775,5519,0],[6797,5537,0],[6811,5548,0],[6821,5557,0]]],["DefaultKeyPoint79",[[5834,5095,0],[5828,5109,0],[5836,5134,0],[5829,5123,0],[5846,5085,0],[5848,5143,0],[5864,5082,0],[5880,5138,0],[5865,5145,0],[5881,5089,0],[5890,5103,0],[5890,5123,0],[5896,5126,0],[5887,5123,0],[5909,5131,0],[5914,5194,0],[5900,5204,0],[5923,5140,0],[5927,5127,0],[5935,5120,0],[5922,5135,0],[5924,5153,0],[5928,5160,0],[5927,5162,0],[5938,5163,0],[5929,5160,0],[5929,5172,0],[5932,5191,0],[5936,5190,0],[5931,5180,0],[5950,5121,0],[5959,5156,0],[5949,5163,0],[5947,5197,0],[5958,5213,0],[5958,5233,0],[5947,5248,0],[5962,5130,0],[5965,5143,0],[5965,5154,0],[5972,5159,0],[5974,5232,0],[5964,5223,0],[5982,5167,0],[5993,5176,0],[5996,5211,0],[5989,5229,0],[5985,5244,0],[5991,5252,0],[5989,5242,0],[5996,5261,0],[6001,5182,0],[6005,5196,0],[6005,5191,0],[6005,5186,0],[6003,5200,0],[6005,5277,0],[6015,5299,0],[6108,4838,0],[6101,4856,0],[6103,4842,0],[6101,4876,0],[6101,4896,0],[6101,4914,0],[6101,4934,0],[6103,4952,0],[6116,4971,0],[6109,4964,0],[6121,4838,0],[6124,4976,0],[6131,4981,0],[6141,4839,0],[6157,4840,0],[6146,4983,0],[6178,4840,0],[6176,4982,0],[6162,4982,0],[6200,4736,0],[6196,4919,0],[6196,4906,0],[6197,4940,0],[6197,4960,0],[6194,4974,0],[6189,4980,0],[6193,4986,0],[6188,4984,0],[6208,4679,0],[6201,4706,0],[6202,4762,0],[6206,4783,0],[6212,4802,0],[6220,4820,0],[6216,4841,0],[6200,4841,0],[6215,4898,0],[6201,4900,0],[6201,4990,0],[6213,4993,0],[6221,4653,0],[6228,4836,0],[6230,4838,0],[6233,4850,0],[6235,4880,0],[6234,4864,0],[6235,4898,0],[6236,4898,0],[6236,4891,0],[6240,4991,0],[6227,4993,0],[6241,4628,0],[6257,4773,0],[6248,4762,0],[6259,4822,0],[6245,4832,0],[6251,4899,0],[6260,4901,0],[6256,4984,0],[6250,4987,0],[6257,4985,0],[6263,4607,0],[6269,4751,0],[6278,4762,0],[6271,4790,0],[6273,4810,0],[6278,4819,0],[6270,4823,0],[6261,4825,0],[6265,4825,0],[6265,4907,0],[6267,4921,0],[6267,4942,0],[6268,4961,0],[6265,4973,0],[6261,4979,0],[6272,4981,0],[6272,4990,0],[6262,4986,0],[6285,4588,0],[6286,4775,0],[6290,4795,0],[6289,4784,0],[6291,4792,0],[6294,4808,0],[6285,4814,0],[6281,4802,0],[6282,4995,0],[6286,4997,0],[6280,4994,0],[6298,5004,0],[6305,4570,0],[6318,4754,0],[6318,4751,0],[6318,4744,0],[6311,4765,0],[6312,4771,0],[6317,4774,0],[6303,4781,0],[6309,4798,0],[6305,4792,0],[6304,4785,0],[6317,4804,0],[6306,4805,0],[6314,4805,0],[6315,5011,0],[6316,5029,0],[6318,5025,0],[6306,5073,0],[6313,5079,0],[6335,4531,0],[6321,4553,0],[6337,4697,0],[6335,4710,0],[6333,4719,0],[6337,4702,0],[6321,4737,0],[6335,4724,0],[6327,4729,0],[6330,4726,0],[6322,4752,0],[6324,4777,0],[6337,4780,0],[6331,4810,0],[6320,4806,0],[6322,5013,0],[6328,5021,0],[6338,5037,0],[6320,5020,0],[6339,5057,0],[6332,5073,0],[6322,5079,0],[6359,4477,0],[6347,4505,0],[6357,4697,0],[6352,4707,0],[6342,4719,0],[6348,4714,0],[6355,4701,0],[6350,4780,0],[6350,4816,0],[6378,4399,0],[6375,4422,0],[6373,4433,0],[6368,4449,0],[6370,4442,0],[6375,4733,0],[6370,4738,0],[6367,4754,0],[6378,4759,0],[6368,4745,0],[6360,4775,0],[6367,4768,0],[6373,4762,0],[6366,4763,0],[6365,4770,0],[6367,4818,0],[6388,4420,0],[6381,4730,0],[6386,4729,0],[6382,4757,0],[6388,4818,0],[6409,4409,0],[6417,4811,0],[6405,4816,0],[6421,4391,0],[6427,4405,0],[6433,4798,0],[6442,4403,0],[6442,4403,0],[6456,4718,0],[6455,4733,0],[6454,4724,0],[6457,4746,0],[6455,4763,0],[6446,4781,0],[6462,4415,0],[6478,4707,0],[6462,4714,0],[6487,4428,0],[6514,4445,0],[6514,4671,0],[6500,4694,0],[6535,4461,0],[6524,4645,0],[6550,4477,0],[6541,4626,0],[6565,4496,0],[6576,4511,0],[6566,4618,0],[6586,4532,0],[6581,4520,0],[6597,4553,0],[6600,4614,0],[6590,4618,0],[6581,4619,0],[6587,4620,0],[6609,4572,0],[6616,4584,0],[6612,4595,0],[6614,4588,0],[6607,4605,0],[6615,4635,0],[6601,4625,0],[6620,4595,0],[6623,4615,0],[6622,4605,0],[6625,4635,0],[6623,4625,0],[6628,4646,0],[6626,4644,0],[6636,4661,0],[6643,4675,0],[6658,4690,0],[6649,4682,0],[6671,4697,0],[6685,4700,0],[6709,4700,0]]],["DefaultKeyPoint80",[[1438,8672,0],[1427,8680,0],[1423,8691,0],[1428,8711,0],[1439,8740,0],[1445,8765,0],[1447,8785,0],[1450,8809,0],[1453,8837,0],[1461,8662,0],[1475,8879,0],[1461,8861,0],[1488,8645,0],[1494,8894,0],[1520,8609,0],[1508,8627,0],[1509,8904,0],[1533,8588,0],[1548,8565,0],[1579,8513,0],[1565,8537,0],[1589,8497,0],[1605,8477,0],[1627,8451,0],[1649,8425,0],[1669,8399,0],[1688,8374,0],[1706,8353,0]]],["DefaultKeyPoint81",[[1395,7437,0],[1397,7434,0],[1398,7423,0],[1397,7452,0],[1397,7479,0],[1397,7503,0],[1397,7517,0],[1409,7412,0],[1419,7409,0],[1402,7416,0],[1404,7439,0],[1416,7443,0],[1439,7402,0],[1429,7406,0],[1428,7449,0],[1451,7397,0],[1441,7456,0],[1454,7465,0],[1471,7387,0],[1465,7476,0],[1470,7488,0],[1472,7505,0],[1474,7531,0],[1476,7554,0],[1477,7578,0],[1478,7568,0],[1472,7588,0],[1464,7596,0],[1493,7375,0],[1510,7365,0],[1533,7350,0],[1560,7334,0],[1587,7321,0],[1613,7312,0],[1638,7305,0],[1679,7270,0],[1671,7278,0],[1662,7300,0],[1667,7285,0],[1666,7305,0],[1666,7338,0],[1667,7369,0],[1669,7388,0],[1678,7404,0],[1696,7248,0],[1687,7260,0],[1691,7290,0],[1692,7422,0],[1715,7217,0],[1705,7235,0],[1715,7279,0],[1713,7442,0],[1732,7268,0],[1731,7458,0],[1737,7469,0],[1749,7257,0],[1742,7483,0],[1745,7496,0],[1747,7513,0],[1749,7535,0],[1754,7557,0],[1762,7577,0],[1772,7590,0],[1788,7601,0],[1805,7609,0],[1823,7617,0],[1839,7627,0],[1855,7630,0],[1873,7628,0],[1901,7624,0]]],["DefaultKeyPoint83",[[4452,6371,0],[4472,6368,0],[4493,6365,0],[4513,6357,0],[4534,6343,0],[4537,6768,0],[4554,6329,0],[4558,6772,0],[4572,6317,0],[4571,6777,0],[4580,6789,0],[4588,6309,0],[4591,6808,0],[4599,6825,0],[4610,6306,0],[4609,6840,0],[4635,6305,0],[4630,6856,0],[4654,6302,0],[4657,6876,0],[4667,6296,0],[4695,6266,0],[4681,6283,0],[4683,6897,0],[4720,6224,0],[4708,6246,0],[4736,6174,0],[4729,6198,0],[4752,6125,0],[4743,6151,0],[4766,6094,0],[4783,6064,0],[4803,6036,0],[4823,6010,0],[4840,5990,0],[5037,5986,0],[5035,5982,0],[5056,5999,0],[5045,5993,0],[5040,5990,0],[5049,5996,0],[5066,6003,0],[5078,6004,0],[5062,6002,0],[5072,6004,0],[5074,6013,0],[5073,6006,0],[5078,6023,0],[5090,6000,0],[5084,6003,0],[5090,6038,0],[5106,6056,0],[5125,6074,0],[5137,6085,0],[5207,6066,0],[5209,6062,0],[5207,6088,0],[5207,6114,0],[5207,6141,0],[5207,6151,0],[5207,6173,0],[5208,6207,0],[5210,6235,0],[5210,6259,0],[5208,6284,0],[5206,6311,0],[5205,6336,0],[5216,6360,0],[5225,6151,0],[5236,6384,0],[5243,6084,0],[5244,6112,0],[5244,6143,0],[5250,6152,0],[5243,6170,0],[5245,6188,0],[5243,6183,0],[5254,6207,0],[5256,6405,0],[5268,6152,0],[5269,6236,0],[5272,6425,0],[5283,6264,0],[5298,6295,0],[5284,6444,0],[5293,6462,0],[5314,6327,0],[5301,6481,0],[5308,6508,0],[5313,6541,0],[5319,6574,0],[5330,6359,0],[5328,6603,0],[5334,6618,0],[5339,6628,0],[5345,6388,0],[5357,6412,0],[5351,6610,0],[5351,6647,0],[5368,6433,0],[5380,6457,0],[5370,6600,0],[5366,6662,0],[5392,6480,0],[5387,6592,0],[5382,6674,0],[5404,6504,0],[5414,6525,0],[5406,6583,0],[5427,6550,0],[5426,6573,0]]]] \ No newline at end of file diff --git a/A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/PIC.jpg b/Map-Templates/Antistasi-WotP.Tanoa/PIC.jpg similarity index 100% rename from A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/PIC.jpg rename to Map-Templates/Antistasi-WotP.Tanoa/PIC.jpg diff --git a/Map-Templates/Antistasi-WotP.Tanoa/description.ext b/Map-Templates/Antistasi-WotP.Tanoa/description.ext new file mode 100755 index 0000000000..e350a14375 --- /dev/null +++ b/Map-Templates/Antistasi-WotP.Tanoa/description.ext @@ -0,0 +1,124 @@ +#include "defines.hpp" +#include "dialogs.hpp" + +author = $STR_antistasi_credits_generic_author_text; +OnLoadName = $STR_antistasi_mission_info_tanoa_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_tanoa_blurb_text; +loadScreen = "pic.jpg"; +briefingName = $STR_antistasi_mission_info_tanoa_mapname_text; +overviewText = $STR_antistasi_mission_info_tanoa_description_text; +overviewPicture = "pic.jpg"; + +#include "MissionDescription\debug.hpp" + +#include "MissionDescription\gameSettings.hpp" + +class CfgFunctions { + #include "functions.hpp" + #include "JeroenArsenal\functions.hpp" +}; + +class CfgSounds +{ + class fire + { + name="fire"; + sound[]={"Music\fire.ogg",db+12,1.0}; + titles[]={}; + }; +}; + +#include "MissionDescription\params.hpp" + +#include "MissionDescription\CfgIdentities.hpp" + +class CfgDebriefing +{ + class End1 + { + title = "V I C T O R Y"; + subtitle = "Tanoa is Ours!"; + description = "The population of Tanoa loves you!
The SDK brave soldiers have proven their valour, and Petros, Tanoa 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 = "Maru is Dead"; + subtitle = "Maru is Dead"; + description = "Congratulations!: Maru is Dead. Now with Syndikat without a leader, you may think about joining them, and free Tanoa"; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "Tanoa is Destroyed"; + subtitle = "Tanoa got Destroyed by CSAT"; + description = "One third of the population in Tanoa has been murdered by CSAT.
Tanoa no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class modUnautorized + { + title = "Incompatible Mods"; + subtitle = "Incompatible Mods detected"; + description = "An incompatible mod installed on the server or your PC has been detected. To avoid support problems the mission is finished. Please uninstall unsupported (ASR AI, aLIVE, MCC or any AI behaviour) mods from your computer or server to be able to play Antistasi."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class serverFull + { + title = "Reserved Slot"; + subtitle = "This slot is reserved"; + description = "Sorry, but this slot is reserved for a Server Member. To become member, please contact to the server admin or clan."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noPvP + { + title = "PVP Disabled"; + subtitle = "This slot is unavailable"; + description = "PvP is not enabled on this server."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class noJip + { + title = "JIP Unavailable"; + subtitle = "This slot is unavailable"; + description = "You need to have JIP enabled."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpMem + { + title = "You are not a Member"; + subtitle = "This slot is unavailable"; + description = "You need to be a Member to use PvP."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class pvpCount + { + title = "PvP Player Overflow"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there are too many PvP slots in use, or not enough Rebels online."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class BossMiss + { + title = "MIA Rebel Commander"; + subtitle = "This slot is unavailable"; + description = "PvP is not available as there is no Commander for the Rebels."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class hcDown + { + title = "HC Disconnected"; + subtitle = "Some Headless Client has been disconnected and mission has to stop to avoid malfunctions."; + picture = "b_unknown"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; +}; diff --git a/A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/mission.sqm b/Map-Templates/Antistasi-WotP.Tanoa/mission.sqm old mode 100644 new mode 100755 similarity index 65% rename from A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/mission.sqm rename to Map-Templates/Antistasi-WotP.Tanoa/mission.sqm index 0765699ba6..97adfed343 --- a/A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/mission.sqm +++ b/Map-Templates/Antistasi-WotP.Tanoa/mission.sqm @@ -1,53 +1,60 @@ version=53; class EditorData { - moveGridStep=1; + moveGridStep=0.5; angleGridStep=0.2617994; scaleGridStep=1; autoGroupingDist=10; - toggles=1537; + toggles=1541; class ItemIDProvider { - nextID=717; + nextID=878; }; class MarkerIDProvider { - nextID=35; + nextID=37; }; class LayerIndexProvider { - nextID=302; + nextID=328; }; class Camera { - pos[]={9033.1836,145.90244,10386.777}; + pos[]={9181.2354,246.07274,8692.4609}; dir[]={0,-0.70710683,0.70710683}; up[]={0,0.70710677,0.70710677}; - aside[]={0.99999994,0,0}; + aside[]={0.99999994,0,-0}; }; }; binarizationWanted=0; addons[]= { "A3_Characters_F_Exp", + "A3_Weapons_F", "A3_Ui_F", "A3_Weapons_F_Ammoboxes", "A3_Structures_F_EPC_Civ_InfoBoards", "A3_Modules_F", "A3_Characters_F", - "A3_Modules_F_Hc", "A3_Structures_F_Exp_Military_Flags", "A3_Structures_F_Mil_Flags", "A3_Ui_F_Exp", "A3_Structures_F_Ind_Transmitter_Tower", "A3_Props_F_Enoch_Military_Camps", - "A3_Modules_F_Curator_Curator" + "A3_Modules_F_Curator_Curator", + "A3_Structures_F_Mil_TentHangar", + "A3_Structures_F_Mil_Helipads", + "A3_Structures_F_Mil_Cargo", + "A3_Structures_F_Ind_AirPort", + "A3_Structures_F_Enoch_Military_Barracks", + "A3_Structures_F_Exp_Military_ContainerBases", + "A3_Modules_F_Hc" }; class AddonsMetaData { class List { - items=12; + items=13; class Item0 { className="A3_Characters_F_Exp"; @@ -57,15 +64,15 @@ class AddonsMetaData }; class Item1 { - className="A3_Ui_F"; - name="Arma 3 - User Interface"; + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item2 { - className="A3_Weapons_F"; - name="Arma 3 Alpha - Weapons and Accessories"; + className="A3_Ui_F"; + name="Arma 3 - User Interface"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; @@ -132,323 +139,31 @@ class AddonsMetaData author="Bohemia Interactive"; url="https://www.arma3.com"; }; - }; -}; -randomSeed=11834268; -class ScenarioData -{ - author=$STR_antistasi_credits_generic_author_text; - saving=0; - disabledAI=1; - respawn=3; - respawnDelay=30; - class Header - { - gameType="CTI"; - minPlayers=1; - maxPlayers=64; - }; -}; -class CustomAttributes -{ - class Category0 - { - name="Multiplayer"; - class Attribute0 - { - property="RespawnTemplates"; - expression="true"; - class Value - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Counter"; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Tickets"; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="ReviveRequiredTrait"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ReviveMode"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute3 - { - property="ReviveMedicSpeedMultiplier"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - }; - class Attribute4 - { - property="SharedObjectives"; - expression="if (isMultiplayer) then {[_value] spawn bis_fnc_sharedObjectives;};"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute5 - { - property="RespawnButton"; - expression="true"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - class Attribute6 - { - property="ReviveForceRespawnDelay"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=3; - }; - }; - }; - class Attribute7 - { - property="ReviveBleedOutDelay"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=20; - }; - }; - }; - class Attribute8 - { - property="ReviveDelay"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=6; - }; - }; - }; - class Attribute9 - { - property="ReviveUnconsciousStateMode"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute10 - { - property="ReviveRequiredItems"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - nAttributes=11; - }; - class Category1 - { - name="Scenario"; - class Attribute0 + class Item12 { - property="EnableDebugConsole"; - expression="true"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; + className="A3_Structures_F_Enoch_Military"; + name="Arma 3 Enoch - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; }; - nAttributes=1; }; }; +randomSeed=11834268; class Mission { class Intel { briefingName=$STR_antistasi_mission_info_tanoa_mapname_text; - overviewText=$STR_antistasi_credits_generic_version_text; resistanceWest=0; - timeOfChanges=1800.0002; - startWeather=0; - startWind=0.1; - startWaves=0.1; - forecastWeather=0; - forecastWind=0.1; - forecastWaves=0.1; - forecastLightnings=0.1; year=2035; month=6; - day=6; - hour=12; + day=1; + hour=10; minute=0; - startFogBase=250; - forecastFogBase=250; - startFogDecay=0.014; - forecastFogDecay=0.014; }; class Entities { - items=193; + items=235; class Item0 { dataType="Group"; @@ -471,6 +186,10 @@ class Mission name="commanderX"; description="Default Commander"; isPlayer=1; + class Inventory + { + map="ItemMap"; + }; }; id=311; type="I_C_Soldier_Para_7_F"; @@ -531,6 +250,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=360; type="I_C_Soldier_Para_4_F"; @@ -572,6 +295,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=654; type="I_C_Soldier_Para_4_F"; @@ -613,6 +340,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=656; type="I_C_Soldier_Para_5_F"; @@ -654,6 +385,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=658; type="I_C_Soldier_Para_3_F"; @@ -695,6 +430,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=660; type="I_C_Soldier_Para_8_F"; @@ -736,6 +475,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=662; type="I_C_Soldier_Para_6_F"; @@ -777,6 +520,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=664; type="I_C_Soldier_Para_7_F"; @@ -819,6 +566,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=666; type="I_C_Soldier_Para_4_F"; @@ -859,6 +610,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=668; type="I_C_Soldier_Para_5_F"; @@ -899,6 +654,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=670; type="I_C_Soldier_Para_3_F"; @@ -940,6 +699,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=672; type="I_C_Soldier_Para_8_F"; @@ -981,6 +744,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=674; type="I_C_Soldier_Para_6_F"; @@ -1022,6 +789,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=676; type="I_C_Soldier_Para_7_F"; @@ -1063,6 +834,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=678; type="I_C_Soldier_Para_4_F"; @@ -1103,6 +878,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=680; type="I_C_Soldier_Para_5_F"; @@ -1143,6 +922,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=682; type="I_C_Soldier_Para_3_F"; @@ -1183,6 +966,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=684; type="I_C_Soldier_Para_8_F"; @@ -1223,6 +1010,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=686; type="I_C_Soldier_Para_6_F"; @@ -1263,6 +1054,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=688; type="I_C_Soldier_Para_7_F"; @@ -1303,6 +1098,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=362; type="I_C_Soldier_Para_3_F"; @@ -1343,6 +1142,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=363; type="I_C_Soldier_Para_8_F"; @@ -1383,6 +1186,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=364; type="I_C_Soldier_Para_6_F"; @@ -1424,6 +1231,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=459; type="I_C_Soldier_Para_4_F"; @@ -1465,6 +1276,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=461; type="I_C_Soldier_Para_5_F"; @@ -1506,6 +1321,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=463; type="I_C_Soldier_Para_3_F"; @@ -1547,6 +1366,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=465; type="I_C_Soldier_Para_8_F"; @@ -1588,6 +1411,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=467; type="I_C_Soldier_Para_6_F"; @@ -1630,6 +1457,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=471; type="I_C_Soldier_Para_4_F"; @@ -1671,6 +1502,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=473; type="I_C_Soldier_Para_5_F"; @@ -1712,6 +1547,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=475; type="I_C_Soldier_Para_3_F"; @@ -1753,6 +1592,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=477; type="I_C_Soldier_Para_8_F"; @@ -1794,6 +1637,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=479; type="I_C_Soldier_Para_6_F"; @@ -1835,6 +1682,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=481; type="I_C_Soldier_Para_7_F"; @@ -1876,6 +1727,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=483; type="I_C_Soldier_Para_4_F"; @@ -1917,6 +1772,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=485; type="I_C_Soldier_Para_5_F"; @@ -1958,6 +1817,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=487; type="I_C_Soldier_Para_3_F"; @@ -1998,6 +1861,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=489; type="I_C_Soldier_Para_8_F"; @@ -2039,6 +1906,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=491; type="I_C_Soldier_Para_6_F"; @@ -2079,6 +1950,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=493; type="I_C_Soldier_Para_7_F"; @@ -2120,6 +1995,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=495; type="I_C_Soldier_Para_4_F"; @@ -2160,6 +2039,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=497; type="I_C_Soldier_Para_5_F"; @@ -2200,6 +2083,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=499; type="I_C_Soldier_Para_3_F"; @@ -2240,6 +2127,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=501; type="I_C_Soldier_Para_8_F"; @@ -2280,6 +2171,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=503; type="I_C_Soldier_Para_6_F"; @@ -2321,6 +2216,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=505; type="I_C_Soldier_Para_7_F"; @@ -2362,6 +2261,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=630; type="I_C_Soldier_Para_4_F"; @@ -2403,6 +2306,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=632; type="I_C_Soldier_Para_5_F"; @@ -2444,7 +2351,11 @@ class Mission { description="Paramedic"; isPlayable=1; - }; + class Inventory + { + map="ItemMap"; + }; + }; id=634; type="I_C_Soldier_Para_3_F"; atlOffset=0.0073394775; @@ -2485,6 +2396,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=636; type="I_C_Soldier_Para_8_F"; @@ -2525,6 +2440,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=638; type="I_C_Soldier_Para_6_F"; @@ -2565,6 +2484,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=640; type="I_C_Soldier_Para_7_F"; @@ -2607,6 +2530,10 @@ class Mission { description="Machinegunner"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=642; type="I_C_Soldier_Para_4_F"; @@ -2647,6 +2574,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=644; type="I_C_Soldier_Para_5_F"; @@ -2688,6 +2619,10 @@ class Mission { description="Paramedic"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=646; type="I_C_Soldier_Para_3_F"; @@ -2728,6 +2663,10 @@ class Mission { description="Engineer"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=648; type="I_C_Soldier_Para_8_F"; @@ -2769,6 +2708,10 @@ class Mission { description="Grenadier"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=650; type="I_C_Soldier_Para_6_F"; @@ -2810,6 +2753,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=652; type="I_C_Soldier_Para_7_F"; @@ -2850,6 +2797,10 @@ class Mission { description="AT Launcher"; isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=361; type="I_C_Soldier_Para_5_F"; @@ -2891,6 +2842,10 @@ class Mission class Attributes { isPlayable=1; + class Inventory + { + map="ItemMap"; + }; }; id=468; type="I_C_Soldier_Para_7_F"; @@ -3230,97 +3185,6 @@ class Mission type="Logic"; }; class Item11 - { - dataType="Marker"; - position[]={7444.499,-2.1337248e-018,8541.7168}; - name="factory_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=150; - b=80; - angle=137.121; - id=19; - atlOffset=-7.4899998; - }; - class Item12 - { - dataType="Marker"; - position[]={8353.2129,1.7197507e+027,10323.416}; - name="factory"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=150; - b=100; - angle=216.15884; - id=20; - atlOffset=1.7197507e+027; - }; - class Item13 - { - dataType="Marker"; - position[]={11063.061,-5.561666e-034,7914.4282}; - name="resource"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=200; - b=100; - angle=190.62489; - id=21; - atlOffset=-94.23735; - }; - class Item14 - { - dataType="Marker"; - position[]={11054.033,0,11494.828}; - name="outpost"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=181.69092; - b=97.355957; - id=22; - atlOffset=-350.38; - }; - class Item15 - { - dataType="Marker"; - position[]={5361.0322,2.21,10077.443}; - name="seaport"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=168.77954; - b=117.86035; - id=23; - }; - class Item16 - { - dataType="Logic"; - class PositionInfo - { - position[]={9189.1621,220.63734,8725.998}; - angles[]={6.253861,4.511023,6.2139649}; - }; - name="HC_commanderX"; - id=26; - type="HighCommand"; - }; - class Item17 - { - dataType="Logic"; - class PositionInfo - { - position[]={9183.4658,220.97295,8724.7188}; - angles[]={6.2511969,1.3577622,6.206008}; - }; - id=27; - type="HighCommandSubordinate"; - atlOffset=-1.5258789e-005; - }; - class Item18 { dataType="Marker"; position[]={11310.948,20.257759,5900.9492}; @@ -3331,7 +3195,7 @@ class Mission b=50; id=30; }; - class Item19 + class Item12 { dataType="Marker"; position[]={11383.694,2.8701169e+036,5275.6128}; @@ -3343,21 +3207,7 @@ class Mission id=31; atlOffset=2.8701169e+036; }; - class Item20 - { - dataType="Marker"; - position[]={2129.4917,39.575615,13164.805}; - name="airport_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=350; - b=200; - angle=323.39874; - id=174; - atlOffset=26.129467; - }; - class Item21 + class Item13 { dataType="Object"; class PositionInfo @@ -3374,654 +3224,258 @@ class Mission type="Flag_Syndikat_F"; atlOffset=-0.031982422; }; - class Item22 - { - dataType="Marker"; - position[]={11841.024,0,13132.96}; - name="airport_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=412.37488; - b=100; - angle=195.18698; - id=179; - atlOffset=-6.9499998; - }; - class Item23 + class Item14 { - dataType="Marker"; - position[]={11660.928,0,3161.4478}; - name="airport_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=427.43869; - b=124.13167; - angle=216.99487; - id=180; - atlOffset=-5.2667356; + dataType="Logic"; + class PositionInfo + { + position[]={9201.5352,219.98785,8719.7373}; + angles[]={0.018657569,0,6.2352238}; + }; + name="timer"; + id=284; + type="Logic"; + atlOffset=1.5258789e-005; }; - class Item24 + class Item15 { - dataType="Marker"; - position[]={2201.4783,12.95,3502.1121}; - name="airport_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorEAST"; - a=322.32379; - b=130.21062; - angle=163.07294; - id=181; + dataType="Object"; + class PositionInfo + { + position[]={9202.1182,220.80991,8728.042}; + angles[]={6.2618575,0,6.2219238}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=4; + type="IG_supplyCrate_F"; + atlOffset=-0.01600647; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=2; + }; }; - class Item25 + class Item16 { dataType="Marker"; - position[]={10028.207,404.91211,11771.499}; - name="outpost_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=125.02881; - b=102.70508; - id=182; - atlOffset=-4.9578857; + position[]={6773.5918,1.2565496e+029,7555.8301}; + name="spawnPoint"; + type="mil_start"; + angle=25.434; + id=336; + atlOffset=1.2565496e+029; }; - class Item26 + class Item17 { dataType="Marker"; - position[]={7487.0332,1.782996e+012,9652.8242}; - name="outpost_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=80; - b=80; - id=183; - atlOffset=1.782996e+012; + position[]={1736.8215,1.2565496e+029,12781.881}; + name="spawnPoint_1"; + type="mil_start"; + angle=173.55841; + id=337; + atlOffset=1.2565496e+029; }; - class Item27 + class Item18 { dataType="Marker"; - position[]={6007.9375,-1.3937988,10428.126}; - name="outpost_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=67.992432; - b=50; - id=184; - atlOffset=-63.580448; + position[]={11473.074,1.2565496e+029,13115.996}; + name="spawnPoint_2"; + type="mil_start"; + angle=269.59601; + id=338; + atlOffset=1.2565496e+029; }; - class Item28 + class Item19 { dataType="Marker"; - position[]={12879.342,0,8577.498}; - name="outpost_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=56.727051; - b=53.245117; - id=185; - atlOffset=-182.60187; + position[]={11553.529,1.2565496e+029,3081.9141}; + name="spawnPoint_3"; + type="mil_start"; + angle=308.33148; + id=339; + atlOffset=1.2565496e+029; }; - class Item29 + class Item20 { dataType="Marker"; - position[]={6628.6401,1.8181432e+019,7856.3931}; - name="outpost_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=50; - b=50; - angle=130.597; - id=186; - atlOffset=1.8181432e+019; + position[]={2265.8037,1.2565496e+029,3407.0894}; + name="spawnPoint_4"; + type="mil_start"; + angle=64.13488; + id=340; + atlOffset=1.2565496e+029; }; - class Item30 + class Item21 { - dataType="Marker"; - position[]={11019.162,4.4101563,4213.5776}; - name="outpost_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=62.983974; - b=64.560669; - angle=247.431; - id=187; - atlOffset=-178.11049; + dataType="Object"; + class PositionInfo + { + position[]={12752.012,40.864891,14220.89}; + }; + side="Empty"; + flags=5; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=344; + type="Flag_NATO_F"; + atlOffset=0.056999207; }; - class Item31 + class Item22 { dataType="Marker"; - position[]={4696.688,0,3163.7839}; - name="outpost_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=50; - b=50; - angle=161.63795; - id=188; - atlOffset=-88.578438; + position[]={12752.037,40.074604,14199.098}; + name="respawn_west"; + type="flag_CTRG"; + id=345; }; - class Item32 + class Item23 { - dataType="Marker"; - position[]={2672.458,0,2583.1741}; - name="outpost_8"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=50; - b=50; - angle=126.466; - id=189; - atlOffset=-214.47472; - }; - class Item33 - { - dataType="Marker"; - position[]={2394.196,4.4619592e-021,7234.3418}; - name="outpost_9"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=70; - b=50; - id=190; - atlOffset=-67.663582; - }; - class Item34 - { - dataType="Marker"; - position[]={2684.5491,170.41325,12322.022}; - name="outpost_10"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=58.491611; - b=67.653107; - angle=239.394; - id=191; - }; - class Item35 - { - dataType="Marker"; - position[]={9914.6182,0,13590.578}; - name="seaport_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=164.80374; - b=79.520996; - angle=8.9005032; - id=192; - atlOffset=-2.3099999; - }; - class Item36 - { - dataType="Marker"; - position[]={13334.84,0,12379.788}; - name="seaport_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=200; - b=200; - angle=237.51813; - id=193; - atlOffset=-2.55; - }; - class Item37 - { - dataType="Marker"; - position[]={11774.358,0.85009766,2744.5486}; - name="seaport_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=150; - b=100; - id=194; - atlOffset=-2.2099023; - }; - class Item38 - { - dataType="Marker"; - position[]={5594.9302,1.39,3996.49}; - name="seaport_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=100; - b=75; - angle=128.368; - id=195; - }; - class Item39 - { - dataType="Marker"; - position[]={1741.0649,-3.6915083,11959.301}; - name="seaport_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorWEST"; - a=80; - b=100; - angle=254.67094; - id=196; - atlOffset=-5.5342383; - }; - class Item40 - { - dataType="Marker"; - position[]={12114.387,3.5452611,2488.3894}; - name="outpost_11"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=155.1949; - b=122.86704; - angle=157.00845; - id=197; - }; - class Item41 - { - dataType="Marker"; - position[]={12399.69,-2.4187405e-033,7829.9102}; - name="resource_1"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=100; - b=50; - angle=84.14196; - id=199; - atlOffset=-32.302212; - }; - class Item42 - { - dataType="Marker"; - position[]={11742.922,0,6933.8647}; - name="resource_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=100; - b=50; - angle=241.38098; - id=200; - atlOffset=-18.562902; - }; - class Item43 - { - dataType="Marker"; - position[]={11914.558,2.8714324e+037,10292.786}; - name="resource_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=300; - b=400; - angle=274.83386; - id=201; - atlOffset=2.8714324e+037; - }; - class Item44 - { - dataType="Marker"; - position[]={8830.1475,2.8714324e+037,6643.9351}; - name="resource_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=100; - b=80; - angle=162.50697; - id=202; - atlOffset=2.8714324e+037; - }; - class Item45 - { - dataType="Marker"; - position[]={9424.9971,2.8714324e+037,7499.625}; - name="resource_5"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=60; - b=80; - angle=178.66571; - id=203; - atlOffset=2.8714324e+037; - }; - class Item46 - { - dataType="Marker"; - position[]={5498.4429,2.8714324e+037,11955.89}; - name="resource_6"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=70; - angle=215.83766; - id=204; - atlOffset=2.8714324e+037; - }; - class Item47 - { - dataType="Marker"; - position[]={8864.4775,0,11920.42}; - name="resource_7"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorBrown"; - a=50; - b=50; - angle=67.956985; - id=205; - atlOffset=-183.87277; - }; - class Item48 - { - dataType="Marker"; - position[]={4243.7529,5.0194619e+018,8418.4688}; - name="factory_2"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=100; - b=100; - angle=330.80289; - id=206; - atlOffset=5.0194619e+018; - }; - class Item49 - { - dataType="Marker"; - position[]={13987.172,1.7197507e+027,12131.255}; - name="factory_3"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=150; - b=100; - angle=146.02443; - id=207; - atlOffset=1.7197507e+027; - }; - class Item50 - { - dataType="Marker"; - position[]={2287.6694,-2.6757813,6328.0137}; - name="factory_4"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorOrange"; - a=74.983437; - b=69.612907; - angle=218.74934; - id=208; - atlOffset=-15.887868; - }; - class Item51 - { - dataType="Logic"; - class PositionInfo - { - position[]={9201.5352,219.98785,8719.7373}; - angles[]={0.018657569,0,6.2352238}; - }; - name="timer"; - id=284; - type="Logic"; - atlOffset=1.5258789e-005; - }; - class Item52 - { - dataType="Object"; - class PositionInfo - { - position[]={9202.1182,220.80991,8728.042}; - angles[]={6.2618575,0,6.2219238}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="boxX"; - }; - id=4; - type="IG_supplyCrate_F"; - atlOffset=-0.01600647; - class CustomAttributes + dataType="Group"; + side="West"; + class Entities { - class Attribute0 + items=6; + class Item0 { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value + dataType="Object"; + class PositionInfo { - class data + position[]={12751.78,38.133686,14212.558}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; + name="pvp_blue_1"; + isPlayable=1; + }; + id=705; + type="B_recon_TL_F"; + class CustomAttributes + { + class Attribute0 { - class type + property="speaker"; + expression="_this setspeaker _value;"; + class Value { - type[]= + class data { - "STRING" + class type + { + type[]= + { + "STRING" + }; + }; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.94999999; }; }; - value=""; }; + nAttributes=2; }; }; - class Attribute1 + class Item1 { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value + dataType="Object"; + class PositionInfo { - class data + position[]={12746.78,38.988949,14207.558}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; + name="pvp_blue_2"; + isPlayable=1; + }; + id=706; + type="B_recon_medic_F"; + class CustomAttributes + { + class Attribute0 { - class type + property="speaker"; + expression="_this setspeaker _value;"; + class Value { - type[]= + class data { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item53 - { - dataType="Marker"; - position[]={6773.5918,1.2565496e+029,7555.8301}; - name="spawnPoint"; - type="mil_start"; - angle=25.434; - id=336; - atlOffset=1.2565496e+029; - }; - class Item54 - { - dataType="Marker"; - position[]={1736.8215,1.2565496e+029,12781.881}; - name="spawnPoint_1"; - type="mil_start"; - angle=173.55841; - id=337; - atlOffset=1.2565496e+029; - }; - class Item55 - { - dataType="Marker"; - position[]={11473.074,1.2565496e+029,13115.996}; - name="spawnPoint_2"; - type="mil_start"; - angle=269.59601; - id=338; - atlOffset=1.2565496e+029; - }; - class Item56 - { - dataType="Marker"; - position[]={11553.529,1.2565496e+029,3081.9141}; - name="spawnPoint_3"; - type="mil_start"; - angle=308.33148; - id=339; - atlOffset=1.2565496e+029; - }; - class Item57 - { - dataType="Marker"; - position[]={2265.8037,1.2565496e+029,3407.0894}; - name="spawnPoint_4"; - type="mil_start"; - angle=64.13488; - id=340; - atlOffset=1.2565496e+029; - }; - class Item58 - { - dataType="Object"; - class PositionInfo - { - position[]={12752.012,40.864891,14220.89}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="if !(isMultiplayer) then {deleteVehicle this}"; - }; - id=344; - type="Flag_NATO_F"; - atlOffset=0.056999207; - }; - class Item59 - { - dataType="Marker"; - position[]={12752.037,40.074604,14199.098}; - name="respawn_west"; - type="flag_CTRG"; - id=345; - }; - class Item60 - { - dataType="Group"; - side="West"; - class Entities - { - items=6; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={12751.78,38.133686,14212.558}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];"; - name="pvp_blue_1"; - isPlayable=1; - }; - id=705; - type="B_recon_TL_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.94999999; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={12746.78,38.988949,14207.558}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];"; - name="pvp_blue_2"; - isPlayable=1; - }; - id=706; - type="B_recon_medic_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="Male06ENG"; + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06ENG"; }; }; }; @@ -4299,7 +3753,7 @@ class Mission }; id=346; }; - class Item61 + class Item24 { dataType="Object"; class PositionInfo @@ -4316,41 +3770,7 @@ class Mission type="Land_TTowerBig_2_F"; atlOffset=-0.0070114136; }; - class Item62 - { - dataType="Marker"; - position[]={7304.1992,0,12805.312}; - name="outpost_12"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=97.160553; - b=100.47148; - angle=245.058; - id=359; - atlOffset=-122.38188; - }; - class Item63 - { - dataType="Layer"; - name="Bloqueo de carretera"; - id=381; - atlOffset=60.779999; - }; - class Item64 - { - dataType="Marker"; - position[]={11031.42,4.3460913e+018,8466.3398}; - name="outpost_13"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=109.69287; - b=88.17334; - id=385; - atlOffset=4.3460913e+018; - }; - class Item65 + class Item25 { dataType="Marker"; position[]={6600.8726,10.616028,7316.522}; @@ -4362,7 +3782,7 @@ class Mission id=386; atlOffset=0.56116867; }; - class Item66 + class Item26 { dataType="Marker"; position[]={8978.1318,2.9196179,6711.1514}; @@ -4374,7 +3794,7 @@ class Mission id=387; atlOffset=-0.0047571659; }; - class Item67 + class Item27 { dataType="Marker"; position[]={4554.4268,3.3344629,8796.4805}; @@ -4386,7 +3806,7 @@ class Mission id=388; atlOffset=0.0053319931; }; - class Item68 + class Item28 { dataType="Marker"; position[]={5010.2993,6.9463086,9717.1338}; @@ -4398,7 +3818,7 @@ class Mission id=389; atlOffset=-0.0013327599; }; - class Item69 + class Item29 { dataType="Marker"; position[]={6783.1919,66.965408,10516.366}; @@ -4410,7 +3830,7 @@ class Mission id=390; atlOffset=0.030654907; }; - class Item70 + class Item30 { dataType="Marker"; position[]={5477.9604,4.1778955,11384.883}; @@ -4421,7 +3841,7 @@ class Mission b=50; id=391; }; - class Item71 + class Item31 { dataType="Marker"; position[]={6619.8584,15.548132,13042.848}; @@ -4433,7 +3853,7 @@ class Mission id=392; atlOffset=0.030707359; }; - class Item72 + class Item32 { dataType="Marker"; position[]={8926.5557,151.49054,11748.316}; @@ -4445,7 +3865,7 @@ class Mission id=393; atlOffset=0.086380005; }; - class Item73 + class Item33 { dataType="Marker"; position[]={8269.2715,7.7076759,13659.497}; @@ -4457,7 +3877,7 @@ class Mission id=394; atlOffset=-0.017329216; }; - class Item74 + class Item34 { dataType="Marker"; position[]={11271.37,9.6891108,13114.998}; @@ -4469,7 +3889,7 @@ class Mission id=395; atlOffset=0.025326729; }; - class Item75 + class Item35 { dataType="Marker"; position[]={14146.736,14.14368,11823.99}; @@ -4481,7 +3901,7 @@ class Mission id=396; atlOffset=0.011997223; }; - class Item76 + class Item36 { dataType="Marker"; position[]={12579.705,43.978226,8079.9775}; @@ -4493,7 +3913,7 @@ class Mission id=397; atlOffset=0.061321259; }; - class Item77 + class Item37 { dataType="Marker"; position[]={11795.972,8.2485685,6705.1025}; @@ -4505,7 +3925,7 @@ class Mission id=398; atlOffset=0.018662453; }; - class Item78 + class Item38 { dataType="Marker"; position[]={11243.428,22.984892,3305.29}; @@ -4517,7 +3937,7 @@ class Mission id=399; atlOffset=-0.011983871; }; - class Item79 + class Item39 { dataType="Marker"; position[]={4815.9033,13.932686,5106.6157}; @@ -4529,7 +3949,7 @@ class Mission id=400; atlOffset=-0.0066642761; }; - class Item80 + class Item40 { dataType="Marker"; position[]={3993.7673,23.998205,5735.2402}; @@ -4541,7 +3961,7 @@ class Mission id=401; atlOffset=0.0093154907; }; - class Item81 + class Item41 { dataType="Marker"; position[]={10773.011,107.41172,9557.2959}; @@ -4553,7 +3973,7 @@ class Mission id=402; atlOffset=-0.061325073; }; - class Item82 + class Item42 { dataType="Marker"; position[]={8341.5801,18.074375,9767.4131}; @@ -4565,7 +3985,7 @@ class Mission id=403; atlOffset=0.010663986; }; - class Item83 + class Item43 { dataType="Marker"; position[]={1831.4775,15.602764,12332.693}; @@ -4577,7 +3997,7 @@ class Mission id=404; atlOffset=0.018662453; }; - class Item84 + class Item44 { dataType="Marker"; position[]={10050.675,-3.9290747e+009,8565.627}; @@ -4589,7 +4009,7 @@ class Mission id=405; atlOffset=-3.9290749e+009; }; - class Item85 + class Item45 { dataType="Marker"; position[]={9156.2266,242.70625,9204.126}; @@ -4600,7 +4020,7 @@ class Mission b=400; id=406; }; - class Item86 + class Item46 { dataType="Marker"; position[]={8663.5928,-3.9290749e+009,7137.2651}; @@ -4612,7 +4032,7 @@ class Mission id=407; atlOffset=-3.9290749e+009; }; - class Item87 + class Item47 { dataType="Marker"; position[]={10020.399,-3.9290749e+009,7098.7363}; @@ -4624,7 +4044,7 @@ class Mission id=408; atlOffset=-3.9290749e+009; }; - class Item88 + class Item48 { dataType="Marker"; position[]={12015.701,-3.9290749e+009,7428.9941}; @@ -4636,7 +4056,7 @@ class Mission id=409; atlOffset=-3.9290752e+009; }; - class Item89 + class Item49 { dataType="Marker"; position[]={11727.472,-3.9290747e+009,8859.6553}; @@ -4648,7 +4068,7 @@ class Mission id=410; atlOffset=-3.9290749e+009; }; - class Item90 + class Item50 { dataType="Marker"; position[]={12605.63,-3.9290747e+009,9548.5293}; @@ -4660,7 +4080,7 @@ class Mission id=411; atlOffset=-3.9290749e+009; }; - class Item91 + class Item51 { dataType="Marker"; position[]={13530.334,-3.9290747e+009,10324.287}; @@ -4672,7 +4092,7 @@ class Mission id=412; atlOffset=-3.9290749e+009; }; - class Item92 + class Item52 { dataType="Marker"; position[]={12481.513,-3.9290747e+009,11047.294}; @@ -4684,7 +4104,7 @@ class Mission id=413; atlOffset=-3.9290749e+009; }; - class Item93 + class Item53 { dataType="Marker"; position[]={11649.902,-3.9290747e+009,11922.351}; @@ -4696,7 +4116,7 @@ class Mission id=414; atlOffset=-3.9290749e+009; }; - class Item94 + class Item54 { dataType="Marker"; position[]={8944.0605,-3.9290747e+009,12552.267}; @@ -4708,7 +4128,7 @@ class Mission id=415; atlOffset=-3.9290749e+009; }; - class Item95 + class Item55 { dataType="Marker"; position[]={7929.3696,-3.9290747e+009,11683.418}; @@ -4720,7 +4140,7 @@ class Mission id=416; atlOffset=-3.9290749e+009; }; - class Item96 + class Item56 { dataType="Marker"; position[]={6486.46,-3.9290747e+009,11832.364}; @@ -4732,7 +4152,7 @@ class Mission id=417; atlOffset=-3.9290749e+009; }; - class Item97 + class Item57 { dataType="Marker"; position[]={6874.3394,-3.9290747e+009,9703.6836}; @@ -4744,7 +4164,7 @@ class Mission id=418; atlOffset=-3.9290749e+009; }; - class Item98 + class Item58 { dataType="Marker"; position[]={5785.7461,0,8326.9873}; @@ -4756,7 +4176,7 @@ class Mission id=419; atlOffset=-73.637177; }; - class Item99 + class Item59 { dataType="Marker"; position[]={1388.0699,4.3460913e+018,7795.9229}; @@ -4768,7 +4188,7 @@ class Mission id=420; atlOffset=4.3460913e+018; }; - class Item100 + class Item60 { dataType="Marker"; position[]={5457.0317,4.3460913e+018,3490.8818}; @@ -4780,7 +4200,7 @@ class Mission id=421; atlOffset=4.3460913e+018; }; - class Item101 + class Item61 { dataType="Marker"; position[]={2160.438,5.6670865e+024,2712.7371}; @@ -4792,7 +4212,7 @@ class Mission id=422; atlOffset=5.6670865e+024; }; - class Item102 + class Item62 { dataType="Marker"; position[]={10814.768,4.3460913e+018,10971.475}; @@ -4804,7 +4224,7 @@ class Mission id=423; atlOffset=4.3460913e+018; }; - class Item103 + class Item63 { dataType="Marker"; position[]={9996.4326,4.3460913e+018,10809.105}; @@ -4816,7 +4236,7 @@ class Mission id=424; atlOffset=4.3460913e+018; }; - class Item104 + class Item64 { dataType="Marker"; position[]={10416.426,4.3460913e+018,10257.053}; @@ -4828,7 +4248,7 @@ class Mission id=425; atlOffset=4.3460913e+018; }; - class Item105 + class Item65 { dataType="Marker"; position[]={7509.6929,4.3460913e+018,10823.432}; @@ -4840,7 +4260,7 @@ class Mission id=426; atlOffset=4.3460913e+018; }; - class Item106 + class Item66 { dataType="Marker"; position[]={8739.9014,4.3460913e+018,8277.6982}; @@ -4852,7 +4272,7 @@ class Mission id=427; atlOffset=4.3460913e+018; }; - class Item107 + class Item67 { dataType="Marker"; position[]={11365.444,4.3460913e+018,6725.4893}; @@ -4864,7 +4284,7 @@ class Mission id=428; atlOffset=4.3460913e+018; }; - class Item108 + class Item68 { dataType="Marker"; position[]={13033.241,4.3460913e+018,8255.6816}; @@ -4876,7 +4296,7 @@ class Mission id=429; atlOffset=4.3460913e+018; }; - class Item109 + class Item69 { dataType="Marker"; position[]={13803.839,4.3460913e+018,11241.76}; @@ -4888,7 +4308,7 @@ class Mission id=430; atlOffset=4.3460913e+018; }; - class Item110 + class Item70 { dataType="Marker"; position[]={7913.7773,4.3460913e+018,12797.205}; @@ -4900,7 +4320,7 @@ class Mission id=431; atlOffset=4.3460913e+018; }; - class Item111 + class Item71 { dataType="Marker"; position[]={6636.9756,4.3460913e+018,8634.1777}; @@ -4912,7 +4332,7 @@ class Mission id=432; atlOffset=4.3460913e+018; }; - class Item112 + class Item72 { dataType="Marker"; position[]={5481.6724,4.3460913e+018,9581.9346}; @@ -4924,7 +4344,7 @@ class Mission id=433; atlOffset=4.3460913e+018; }; - class Item113 + class Item73 { dataType="Marker"; position[]={2963.6758,4.3460913e+018,5885.062}; @@ -4936,7 +4356,7 @@ class Mission id=434; atlOffset=4.3460913e+018; }; - class Item114 + class Item74 { dataType="Marker"; position[]={4366.7974,4.3460913e+018,4221.1406}; @@ -4948,7 +4368,7 @@ class Mission id=435; atlOffset=4.3460913e+018; }; - class Item115 + class Item75 { dataType="Marker"; position[]={7331.5747,5.7289289e+023,7982.5522}; @@ -4957,7 +4377,7 @@ class Mission id=509; atlOffset=5.7289289e+023; }; - class Item116 + class Item76 { dataType="Marker"; position[]={8899.6436,5.7289289e+023,10191.442}; @@ -4966,7 +4386,7 @@ class Mission id=510; atlOffset=5.7289289e+023; }; - class Item117 + class Item77 { dataType="Marker"; position[]={8301.5781,5.7289289e+023,13578.238}; @@ -4975,7 +4395,7 @@ class Mission id=511; atlOffset=5.7289289e+023; }; - class Item118 + class Item78 { dataType="Marker"; position[]={10214.967,5.7289289e+023,13433.782}; @@ -4984,7 +4404,7 @@ class Mission id=512; atlOffset=5.7289289e+023; }; - class Item119 + class Item79 { dataType="Marker"; position[]={11369.707,5.7289289e+023,13113.29}; @@ -4993,7 +4413,7 @@ class Mission id=513; atlOffset=5.7289289e+023; }; - class Item120 + class Item80 { dataType="Marker"; position[]={10947.353,5.7289289e+023,9575.9385}; @@ -5002,7 +4422,7 @@ class Mission id=514; atlOffset=5.7289289e+023; }; - class Item121 + class Item81 { dataType="Marker"; position[]={10454.875,5.7289289e+023,11003.146}; @@ -5011,7 +4431,7 @@ class Mission id=515; atlOffset=5.7289289e+023; }; - class Item122 + class Item82 { dataType="Marker"; position[]={9069.6123,5.7289289e+023,7909.2813}; @@ -5020,7 +4440,7 @@ class Mission id=517; atlOffset=5.7289289e+023; }; - class Item123 + class Item83 { dataType="Marker"; position[]={7633.4141,5.7289289e+023,7131.103}; @@ -5029,7 +4449,7 @@ class Mission id=518; atlOffset=5.7289289e+023; }; - class Item124 + class Item84 { dataType="Marker"; position[]={10740.525,5.7289289e+023,6589.7715}; @@ -5038,7 +4458,7 @@ class Mission id=519; atlOffset=5.7289289e+023; }; - class Item125 + class Item85 { dataType="Marker"; position[]={12672.212,5.7289289e+023,6876.0225}; @@ -5047,7 +4467,7 @@ class Mission id=520; atlOffset=5.7289289e+023; }; - class Item126 + class Item86 { dataType="Marker"; position[]={14005.407,5.7289289e+023,8007.8247}; @@ -5056,7 +4476,7 @@ class Mission id=521; atlOffset=5.7289289e+023; }; - class Item127 + class Item87 { dataType="Marker"; position[]={5363.8252,5.7289289e+023,8276.5537}; @@ -5065,7 +4485,7 @@ class Mission id=522; atlOffset=5.7289289e+023; }; - class Item128 + class Item88 { dataType="Marker"; position[]={6443.1035,5.7289289e+023,10687.489}; @@ -5074,7 +4494,7 @@ class Mission id=523; atlOffset=5.7289289e+023; }; - class Item129 + class Item89 { dataType="Marker"; position[]={5380.3657,5.7289289e+023,11796.427}; @@ -5083,7 +4503,7 @@ class Mission id=524; atlOffset=5.7289289e+023; }; - class Item130 + class Item90 { dataType="Marker"; position[]={6805.6309,5.7289289e+023,13251.575}; @@ -5092,7 +4512,7 @@ class Mission id=525; atlOffset=5.7289289e+023; }; - class Item131 + class Item91 { dataType="Marker"; position[]={12758.003,5.7289289e+023,12488.387}; @@ -5101,7 +4521,7 @@ class Mission id=526; atlOffset=5.7289289e+023; }; - class Item132 + class Item92 { dataType="Marker"; position[]={5308.6919,-1.0306302e-022,10124.372}; @@ -5110,7 +4530,7 @@ class Mission id=529; atlOffset=4.71; }; - class Item133 + class Item93 { dataType="Marker"; position[]={5641.4346,0.8378551,10479.436}; @@ -5119,7 +4539,7 @@ class Mission id=530; atlOffset=4.7303185; }; - class Item134 + class Item94 { dataType="Marker"; position[]={6272.2969,2.4648523,12865.763}; @@ -5128,7 +4548,7 @@ class Mission id=531; atlOffset=4.6979456; }; - class Item135 + class Item95 { dataType="Marker"; position[]={6853.5254,2.0206542,13443.509}; @@ -5137,7 +4557,7 @@ class Mission id=532; atlOffset=4.6707497; }; - class Item136 + class Item96 { dataType="Marker"; position[]={7873.2524,1.3554394,13623.727}; @@ -5146,7 +4566,7 @@ class Mission id=533; atlOffset=4.6953979; }; - class Item137 + class Item97 { dataType="Marker"; position[]={8408.4746,1.0033226,13792.548}; @@ -5155,7 +4575,7 @@ class Mission id=534; atlOffset=4.6766748; }; - class Item138 + class Item98 { dataType="Marker"; position[]={9645.5713,2.123208,13640.646}; @@ -5164,7 +4584,7 @@ class Mission id=535; atlOffset=4.6660109; }; - class Item139 + class Item99 { dataType="Marker"; position[]={9945.1426,-0.86934042,13637.755}; @@ -5173,7 +4593,7 @@ class Mission id=536; atlOffset=4.7030864; }; - class Item140 + class Item100 { dataType="Marker"; position[]={13297.544,-11.959624,12461.898}; @@ -5182,7 +4602,7 @@ class Mission id=537; atlOffset=4.7446585; }; - class Item141 + class Item101 { dataType="Marker"; position[]={13577.749,-12.489322,12137.162}; @@ -5191,7 +4611,7 @@ class Mission id=538; atlOffset=4.7007017; }; - class Item142 + class Item102 { dataType="Marker"; position[]={14533.363,2.089431,8877.585}; @@ -5200,7 +4620,7 @@ class Mission id=539; atlOffset=4.6865377; }; - class Item143 + class Item103 { dataType="Marker"; position[]={14071.688,2.3151612,8278.2979}; @@ -5209,7 +4629,7 @@ class Mission id=540; atlOffset=4.6981125; }; - class Item144 + class Item104 { dataType="Marker"; position[]={12923.383,2.3799708,7276.2222}; @@ -5218,7 +4638,7 @@ class Mission id=541; atlOffset=4.7113333; }; - class Item145 + class Item105 { dataType="Marker"; position[]={10809.46,0.0095715523,6147.105}; @@ -5227,7 +4647,7 @@ class Mission id=542; atlOffset=4.7994547; }; - class Item146 + class Item106 { dataType="Marker"; position[]={1676.7452,0.38597298,11951.487}; @@ -5236,7 +4656,7 @@ class Mission id=543; atlOffset=4.7086663; }; - class Item147 + class Item107 { dataType="Marker"; position[]={3146.6555,-1.2572956,10978.803}; @@ -5245,7 +4665,7 @@ class Mission id=544; atlOffset=4.6714544; }; - class Item148 + class Item108 { dataType="Marker"; position[]={2637.2192,2.2185743,7458.7847}; @@ -5254,7 +4674,7 @@ class Mission id=545; atlOffset=4.6379724; }; - class Item149 + class Item109 { dataType="Marker"; position[]={3442.2932,1.0303638,6833.6133}; @@ -5263,7 +4683,7 @@ class Mission id=546; atlOffset=4.753304; }; - class Item150 + class Item110 { dataType="Marker"; position[]={2702.9531,3.4872913,5579.9297}; @@ -5272,7 +4692,7 @@ class Mission id=547; atlOffset=4.6869841; }; - class Item151 + class Item111 { dataType="Marker"; position[]={1624.1685,3.6172795,6185.1455}; @@ -5281,7 +4701,7 @@ class Mission id=548; atlOffset=4.7326717; }; - class Item152 + class Item112 { dataType="Marker"; position[]={888.85211,-1.5593648,7784.0225}; @@ -5290,7 +4710,7 @@ class Mission id=549; atlOffset=4.7259989; }; - class Item153 + class Item113 { dataType="Marker"; position[]={7244.1997,3.1549413,4256.5703}; @@ -5299,7 +4719,7 @@ class Mission id=550; atlOffset=4.6397901; }; - class Item154 + class Item114 { dataType="Marker"; position[]={5615.5518,-1.4814858,3938.2827}; @@ -5308,7 +4728,7 @@ class Mission id=551; atlOffset=4.6607027; }; - class Item155 + class Item115 { dataType="Marker"; position[]={3659.6934,2.4331355,2033.28}; @@ -5317,7 +4737,7 @@ class Mission id=552; atlOffset=4.834157; }; - class Item156 + class Item116 { dataType="Marker"; position[]={1425.8173,4.0735149,3056.3782}; @@ -5326,7 +4746,7 @@ class Mission id=553; atlOffset=4.6793442; }; - class Item157 + class Item117 { dataType="Marker"; position[]={2182.48,3.3729064,4670.2998}; @@ -5335,7 +4755,7 @@ class Mission id=554; atlOffset=4.5817604; }; - class Item158 + class Item118 { dataType="Marker"; position[]={11145.637,-1.5138278,5338.1733}; @@ -5344,7 +4764,7 @@ class Mission id=555; atlOffset=4.7113333; }; - class Item159 + class Item119 { dataType="Marker"; position[]={11833.501,-2.2860084,2692.196}; @@ -5353,7 +4773,7 @@ class Mission id=556; atlOffset=4.7364573; }; - class Item160 + class Item120 { dataType="Marker"; position[]={13020.104,3.3825684,2064.5928}; @@ -5362,7 +4782,7 @@ class Mission id=557; atlOffset=4.71; }; - class Item161 + class Item121 { dataType="Marker"; position[]={10297.78,2.143883,2599.2866}; @@ -5371,7 +4791,7 @@ class Mission id=558; atlOffset=4.7993512; }; - class Item162 + class Item122 { dataType="Marker"; position[]={8807.7529,1.4429951,3579.0894}; @@ -5380,7 +4800,7 @@ class Mission id=559; atlOffset=4.7993507; }; - class Item163 + class Item123 { dataType="Marker"; position[]={8890.8428,-0.14791965,4771.9819}; @@ -5389,7 +4809,7 @@ class Mission id=560; atlOffset=4.6476417; }; - class Item164 + class Item124 { dataType="Marker"; position[]={9450.9326,0.96115494,4252.1318}; @@ -5398,7 +4818,7 @@ class Mission id=561; atlOffset=4.6119142; }; - class Item165 + class Item125 { dataType="Marker"; position[]={7324.7451,-1.9039157e-016,5456.5688}; @@ -5407,7 +4827,7 @@ class Mission id=562; atlOffset=15.577591; }; - class Item166 + class Item126 { dataType="Marker"; position[]={13425.588,-16.980122,5743.4419}; @@ -5416,7 +4836,7 @@ class Mission id=564; atlOffset=15.401009; }; - class Item167 + class Item127 { dataType="Marker"; position[]={14792.189,-42.48135,13713.367}; @@ -5425,7 +4845,7 @@ class Mission id=565; atlOffset=15.637577; }; - class Item168 + class Item128 { dataType="Marker"; position[]={11752.373,-6.2777367,14266.281}; @@ -5434,7 +4854,7 @@ class Mission id=566; atlOffset=15.591917; }; - class Item169 + class Item129 { dataType="Marker"; position[]={9617.6104,-12.346392,14578.438}; @@ -5443,7 +4863,7 @@ class Mission id=567; atlOffset=15.602919; }; - class Item170 + class Item130 { dataType="Marker"; position[]={4766.6724,-12.531301,12960.007}; @@ -5452,7 +4872,7 @@ class Mission id=568; atlOffset=15.577592; }; - class Item171 + class Item131 { dataType="Marker"; position[]={386.15823,-33.727009,12656.868}; @@ -5461,7 +4881,7 @@ class Mission id=569; atlOffset=15.575165; }; - class Item172 + class Item132 { dataType="Marker"; position[]={216.76779,-40.681499,3569.2603}; @@ -5470,7 +4890,7 @@ class Mission id=570; atlOffset=15.597591; }; - class Item173 + class Item133 { dataType="Marker"; position[]={6971.8569,-20.113533,2673.792}; @@ -5479,7 +4899,7 @@ class Mission id=571; atlOffset=15.572243; }; - class Item174 + class Item134 { dataType="Marker"; position[]={13770.102,-7.7526512,3487.022}; @@ -5488,7 +4908,7 @@ class Mission id=572; atlOffset=15.567667; }; - class Item175 + class Item135 { dataType="Marker"; position[]={3626.8403,-3.1850529,10294.673}; @@ -5497,7 +4917,7 @@ class Mission id=573; atlOffset=15.532999; }; - class Item176 + class Item136 { dataType="Logic"; class PositionInfo @@ -5510,7 +4930,7 @@ class Mission type="Logic"; atlOffset=1.5258789e-005; }; - class Item177 + class Item137 { dataType="Logic"; class PositionInfo @@ -5523,7 +4943,7 @@ class Mission type="Logic"; atlOffset=1.5258789e-005; }; - class Item178 + class Item138 { dataType="Marker"; position[]={13539.497,0,922.39398}; @@ -5532,7 +4952,7 @@ class Mission id=601; atlOffset=46.832657; }; - class Item179 + class Item139 { dataType="Marker"; position[]={862.94202,0,14749.403}; @@ -5541,21 +4961,7 @@ class Mission id=602; atlOffset=58.83152; }; - class Item180 - { - dataType="Marker"; - position[]={9033.7139,162.623,13305.167}; - name="outpost_14"; - markerType="RECTANGLE"; - type="rectangle"; - colorName="ColorGreen"; - a=87.72081; - b=64.236038; - angle=104.0977; - id=603; - atlOffset=1.165863; - }; - class Item181 + class Item140 { dataType="Marker"; position[]={5347.9351,26.059,14574.517}; @@ -5564,7 +4970,7 @@ class Mission id=607; atlOffset=0.00040054321; }; - class Item182 + class Item141 { dataType="Group"; side="East"; @@ -5933,111 +5339,2934 @@ class Mission }; }; }; - class Attributes - { - }; - id=617; + class Attributes + { + }; + id=617; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={5338.4258,27.61157,14580.147}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="if !(isMultiplayer) then {deleteVehicle this}"; + }; + id=689; + type="Flag_Viper_F"; + }; + class Item143 + { + dataType="Logic"; + class PositionInfo + { + position[]={9191.6787,220.34976,8721.3008}; + angles[]={0,0,6.2192717}; + }; + name="hc_1"; + isPlayable=1; + id=690; + type="HeadlessClient_F"; + atlOffset=-0.02305603; + }; + class Item144 + { + dataType="Logic"; + class PositionInfo + { + position[]={9192.624,220.31035,8720.4785}; + angles[]={0,0,6.2192717}; + }; + name="hc_2"; + isPlayable=1; + id=691; + type="HeadlessClient_F"; + atlOffset=-0.024688721; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={9198.2598,220.81984,8730.8447}; + angles[]={6.2086601,0,6.179565}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=695; + type="Land_TentSolar_01_olive_F"; + atlOffset=-0.046585083; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item146 + { + dataType="Logic"; + class PositionInfo + { + position[]={9181.2354,221.07274,8717.4609}; + }; + id=697; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + }; + nAttributes=4; + }; + }; + class Item147 + { + dataType="Marker"; + position[]={1841.3149,102.9043,12046.82}; + name="island_1"; + markerType="RECTANGLE"; + type="rectangle"; + fillName="Border"; + a=9.4702606; + b=8.9108276; + angle=28.575001; + drawBorder=1; + id=712; + atlOffset=98.114136; + }; + class Item148 + { + dataType="Marker"; + position[]={5478.9111,3.6075108,4052.4224}; + name="island_2"; + markerType="RECTANGLE"; + type="rectangle"; + fillName="Border"; + a=24.489929; + b=20.66391; + angle=315.12689; + drawBorder=1; + id=713; + }; + class Item149 + { + dataType="Marker"; + position[]={11311.72,65.052895,5980.4702}; + name="island_4"; + markerType="RECTANGLE"; + type="rectangle"; + fillName="Border"; + a=9.3255672; + b=9.510232; + angle=317.90918; + drawBorder=1; + id=715; + atlOffset=45.788303; + }; + class Item150 + { + dataType="Logic"; + class PositionInfo + { + position[]={9204.4336,219.98885,8716.6611}; + }; + name="pathfinding"; + id=716; + type="Logic"; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={7050.9468,6.7499647,7335.7593}; + angles[]={0,2.9675355,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=717; + type="Land_TentHangar_V1_F"; + atlOffset=-2.3841858e-007; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={7088.8213,6.7499647,7342.3657}; + angles[]={0,2.9553149,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=718; + type="Land_TentHangar_V1_F"; + atlOffset=-2.3841858e-007; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={7075.6816,2.6600001,7527.4683}; + angles[]={0,4.546566,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=719; + type="Land_HelipadCircle_F"; + }; + class Item154 + { + dataType="Object"; + class PositionInfo + { + position[]={7070.4927,2.6600001,7559.4204}; + angles[]={0,4.5376377,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=720; + type="Land_HelipadCircle_F"; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={7065.9546,2.6600001,7590.9922}; + angles[]={0,4.5735841,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=721; + type="Land_HelipadCircle_F"; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={7115.7563,2.6600001,7283.2007}; + angles[]={0,4.5007348,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=722; + type="Land_HelipadSquare_F"; + }; + class Item157 + { + dataType="Object"; + class PositionInfo + { + position[]={7123.6592,2.8917217,7240.6343}; + angles[]={0.031988446,4.4998274,0.087773547}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=723; + type="Land_HelipadSquare_F"; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={7160.9316,7.5650005,7517.9922}; + angles[]={0,4.0108824,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=724; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=2.3841858e-007; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={7196.1831,7.5650005,7312.3477}; + angles[]={0,5.048665,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=725; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=2.3841858e-007; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={2118.0347,18.913456,13319.102}; + angles[]={0,4.0310268,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=731; + type="Land_Hangar_F"; + atlOffset=-9.5367432e-007; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={2209.4944,13.45,13328.559}; + angles[]={0,5.6138611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=732; + type="Land_HelipadCircle_F"; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={2189.7917,13.45,13313.013}; + angles[]={0,5.6138611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=733; + type="Land_HelipadCircle_F"; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={2168.5449,13.45,13296.759}; + angles[]={0,5.6138611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=734; + type="Land_HelipadCircle_F"; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={2145.8528,13.45,13279.898}; + angles[]={0,5.6138611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=735; + type="Land_HelipadCircle_F"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={11872.619,7.25,13125.095}; + angles[]={0,3.464617,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=740; + type="Land_HelipadCircle_F"; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={11901.304,7.25,13117.043}; + angles[]={0,3.4385626,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=741; + type="Land_HelipadCircle_F"; + }; + class Item167 + { + dataType="Object"; + class PositionInfo + { + position[]={11932.635,7.25,13106.668}; + angles[]={0,3.4305913,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=742; + type="Land_HelipadCircle_F"; + }; + class Item168 + { + dataType="Object"; + class PositionInfo + { + position[]={11683.627,7.25,13180.04}; + angles[]={0,3.4033186,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=743; + type="Land_HelipadSquare_F"; + }; + class Item169 + { + dataType="Object"; + class PositionInfo + { + position[]={11639.054,7.25,13193.707}; + angles[]={0,3.431047,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=744; + type="Land_HelipadSquare_F"; + }; + class Item170 + { + dataType="Object"; + class PositionInfo + { + position[]={11606.576,5.2469416,3129.0417}; + angles[]={6.2485328,0.59444803,0.010664274}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=748; + type="Land_HelipadCircle_F"; + }; + class Item171 + { + dataType="Object"; + class PositionInfo + { + position[]={11585.058,5.56318,3144.6782}; + angles[]={6.2378831,0.59444803,0.018663859}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=749; + type="Land_HelipadCircle_F"; + }; + class Item172 + { + dataType="Object"; + class PositionInfo + { + position[]={11562.694,6.0594273,3160.8347}; + angles[]={6.2299027,0.59444803,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=750; + type="Land_HelipadCircle_F"; + atlOffset=1.2874603e-005; + }; + class Item173 + { + dataType="Object"; + class PositionInfo + { + position[]={11778.776,4.8600001,3005.4443}; + angles[]={0,0.66808051,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=751; + type="Land_HelipadSquare_F"; + }; + class Item174 + { + dataType="Object"; + class PositionInfo + { + position[]={11796.58,4.8600001,2992.4148}; + angles[]={0,0.66808051,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=752; + type="Land_HelipadSquare_F"; + }; + class Item175 + { + dataType="Object"; + class PositionInfo + { + position[]={11810.881,9.7534237,2970.6555}; + angles[]={0,4.4622369,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=755; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-0.0015764236; + }; + class Item176 + { + dataType="Object"; + class PositionInfo + { + position[]={11542.744,11.210489,3168.2876}; + angles[]={0,3.221839,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=756; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-0.0015764236; + }; + class Item177 + { + dataType="Object"; + class PositionInfo + { + position[]={2341.4968,17.039965,3558.5403}; + angles[]={0,2.8887093,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=757; + type="Land_TentHangar_V1_F"; + }; + class Item178 + { + dataType="Object"; + class PositionInfo + { + position[]={2298.3521,17.039965,3546.6008}; + angles[]={0,2.8694155,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=758; + type="Land_TentHangar_V1_F"; + }; + class Item179 + { + dataType="Object"; + class PositionInfo + { + position[]={2230.2756,12.95,3527.6526}; + angles[]={0,6.0015883,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=760; + type="Land_HelipadCircle_F"; + }; + class Item180 + { + dataType="Object"; + class PositionInfo + { + position[]={2199.8513,12.95,3517.9182}; + angles[]={0,6.0015883,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=761; + type="Land_HelipadCircle_F"; + }; + class Item181 + { + dataType="Object"; + class PositionInfo + { + position[]={2166.7224,12.95,3508.4084}; + angles[]={0,5.9873734,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=762; + type="Land_HelipadSquare_F"; + }; + class Item182 + { + dataType="Layer"; + name="Airports"; + class Entities + { + items=23; + class Item0 + { + dataType="Marker"; + position[]={2082.5779,12.95,3480.6121}; + name="airp_4_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=45.602001; + b=6; + angle=161.92497; + id=763; + }; + class Item1 + { + dataType="Marker"; + position[]={2308.5254,11.62353,13191.676}; + name="airp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.358407; + b=6; + angle=322.73132; + id=737; + }; + class Item2 + { + dataType="Marker"; + position[]={2255.4504,11.599365,13196.549}; + name="airp_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=10.667797; + b=6; + angle=119.60728; + id=738; + atlOffset=-0.94572163; + }; + class Item3 + { + dataType="Marker"; + position[]={1951.7731,14.75293,12937.271}; + name="airp_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.137188; + b=6; + angle=144.11099; + id=739; + atlOffset=-0.94707012; + }; + class Item4 + { + dataType="Marker"; + position[]={11690.477,6.9499998,13099.836}; + name="airp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.386; + b=6; + angle=17.517; + id=745; + }; + class Item5 + { + dataType="Marker"; + position[]={11579.28,6.9499998,13135.668}; + name="airp_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.436396; + b=6; + angle=200.63635; + id=746; + }; + class Item6 + { + dataType="Marker"; + position[]={11742.105,4.6900001,3020.073}; + name="airp_3_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.386; + b=6; + angle=37.32; + id=753; + }; + class Item7 + { + dataType="Marker"; + position[]={11674.66,4.8726125,3077.374}; + name="airp_3_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.386; + b=6; + angle=38.979134; + id=754; + }; + class Item8 + { + dataType="Marker"; + position[]={6817.563,2.6600001,7412.7202}; + name="airp_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.198; + b=6; + angle=258.38794; + id=726; + }; + class Item9 + { + dataType="Marker"; + position[]={6852.8701,2.6600001,7407.5981}; + name="airp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.527323; + b=6; + angle=80.001793; + id=728; + }; + class Item10 + { + dataType="Marker"; + position[]={2129.4917,39.575615,13164.805}; + name="airport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=350; + b=200; + angle=323.39874; + id=174; + atlOffset=26.129467; + }; + class Item11 + { + dataType="Marker"; + position[]={11847.49,0,13130.965}; + name="airport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=437.10519; + b=123.27355; + angle=195.18698; + id=179; + atlOffset=-6.9499998; + }; + class Item12 + { + dataType="Marker"; + position[]={11660.928,0,3161.4478}; + name="airport_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=427.43869; + b=124.13167; + angle=216.99487; + id=180; + atlOffset=-5.2667356; + }; + class Item13 + { + dataType="Marker"; + position[]={2201.4783,12.95,3502.1121}; + name="airport_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=322.32379; + b=130.21062; + angle=163.07294; + id=181; + }; + class Item14 + { + dataType="Marker"; + position[]={7064.5781,2.5280001,7365.9419}; + name="airport"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorEAST"; + a=282.12701; + b=395.642; + angle=348.02991; + id=698; + atlOffset=-0.13199997; + }; + class Item15 + { + dataType="Marker"; + position[]={6836.5,2.6600001,7308.5}; + name="airp_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + angle=219.04875; + id=730; + }; + class Item16 + { + dataType="Marker"; + position[]={7062.4751,2.6600001,7408.6851}; + name="airp_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=729; + }; + class Item17 + { + dataType="Marker"; + position[]={11787.7,7.25,13150.864}; + name="airp_2_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=747; + }; + class Item18 + { + dataType="Marker"; + position[]={2270.7209,13.45,13383.008}; + name="airp_1_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=736; + }; + class Item19 + { + dataType="Marker"; + position[]={2229.8899,13.078,13205.34}; + name="airp_1_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=867; + atlOffset=5.7220459e-006; + }; + class Item20 + { + dataType="Marker"; + position[]={6884,2.6600001,7444.5}; + name="airp_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=5.7296791; + b=5.1925688; + angle=219.04875; + id=868; + }; + class Item21 + { + dataType="Marker"; + position[]={2144.5,12.95,3503.5}; + name="airp_4_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=869; + }; + class Item22 + { + dataType="Marker"; + position[]={2099,12.791338,3416}; + name="airp_4_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=6.594471; + angle=349.46942; + id=870; + }; + }; + id=764; + atlOffset=23.520565; + }; + class Item183 + { + dataType="Object"; + class PositionInfo + { + position[]={7519.7168,7.4899998,8550.5068}; + angles[]={0,5.4845257,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=767; + type="Land_HelipadCircle_F"; + }; + class Item184 + { + dataType="Object"; + class PositionInfo + { + position[]={7533.5332,7.4899998,8565.3223}; + angles[]={0,5.4845257,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=768; + type="Land_HelipadCircle_F"; + }; + class Item185 + { + dataType="Object"; + class PositionInfo + { + position[]={4259.3701,3.7740436,8446.542}; + angles[]={6.2458706,1.635178,0.037314966}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=773; + type="Land_HelipadCircle_F"; + }; + class Item186 + { + dataType="Object"; + class PositionInfo + { + position[]={4259.2207,3.591131,8475.3389}; + angles[]={6.2751846,1.635178,0.053282689}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=774; + type="Land_HelipadCircle_F"; + }; + class Item187 + { + dataType="Object"; + class PositionInfo + { + position[]={2273.7751,13.084597,6331.0508}; + angles[]={0.0053265258,0.32548028,0.0080009829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=782; + type="Land_HelipadCircle_F"; + }; + class Item188 + { + dataType="Layer"; + name="Factories"; + class Entities + { + items=17; + class Item0 + { + dataType="Marker"; + position[]={7445.1372,7.4899998,8500.6172}; + name="fact_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.9700003; + b=6; + angle=312.59784; + id=769; + }; + class Item1 + { + dataType="Marker"; + position[]={7484.8467,7.5199485,8558.6182}; + name="fact_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.312172; + b=6; + angle=273.98151; + id=770; + atlOffset=0.003098011; + }; + class Item2 + { + dataType="Marker"; + position[]={7396.4849,7.3853054,8420.4336}; + name="fact_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.312172; + b=6; + angle=239.0217; + id=771; + }; + class Item3 + { + dataType="Marker"; + position[]={4178.7085,3.582,8387.6611}; + name="fact_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=23.026833; + b=6; + angle=153.95737; + id=775; + atlOffset=0.165838; + }; + class Item4 + { + dataType="Marker"; + position[]={4350.9448,4.8281031,8427.7354}; + name="fact_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.283346; + b=6; + angle=336.34869; + id=776; + }; + class Item5 + { + dataType="Marker"; + position[]={14073.85,2.55,12204.248}; + name="fact_3_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=16.402; + b=6; + angle=237.97299; + id=777; + }; + class Item6 + { + dataType="Marker"; + position[]={2331.697,13.262,6355.2012}; + name="fact_4_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.349; + b=6; + angle=121.61598; + id=780; + atlOffset=0.00028610229; + }; + class Item7 + { + dataType="Marker"; + position[]={2222.3784,10.86062,6319.5674}; + name="fact_4_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=13.349; + b=6; + angle=196.2906; + id=781; + atlOffset=-9.5367432e-007; + }; + class Item8 + { + dataType="Marker"; + position[]={8488.6934,19.43,10226.28}; + name="fact_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.924; + b=6; + angle=213.43794; + id=765; + }; + class Item9 + { + dataType="Marker"; + position[]={8417.9219,19.43,10247.556}; + name="fact_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.924; + b=6; + angle=193.40956; + id=766; + }; + class Item10 + { + dataType="Marker"; + position[]={8353.2129,1.7197507e+027,10323.416}; + name="factory"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=150; + b=100; + angle=216.15884; + id=20; + atlOffset=1.7197507e+027; + }; + class Item11 + { + dataType="Marker"; + position[]={7444.499,-2.1337248e-018,8541.7168}; + name="factory_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=150; + b=80; + angle=137.121; + id=19; + atlOffset=-7.4899998; + }; + class Item12 + { + dataType="Marker"; + position[]={4243.7529,5.0194619e+018,8418.4688}; + name="factory_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=100; + b=100; + angle=330.80289; + id=206; + atlOffset=5.0194619e+018; + }; + class Item13 + { + dataType="Marker"; + position[]={13987.172,1.7197507e+027,12131.255}; + name="factory_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=150; + b=100; + angle=146.02443; + id=207; + atlOffset=1.7197507e+027; + }; + class Item14 + { + dataType="Marker"; + position[]={2287.6694,-2.6757813,6328.0137}; + name="factory_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=74.983437; + b=69.612907; + angle=218.74934; + id=208; + atlOffset=-15.887868; + }; + class Item15 + { + dataType="Marker"; + position[]={7366.6309,7.4899998,8521.2539}; + name="fact_1_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=772; + }; + class Item16 + { + dataType="Marker"; + position[]={14044.953,2.55,12266.816}; + name="fact_3_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=779; + }; + }; + id=783; + atlOffset=1.2091998e+026; + }; + class Item189 + { + dataType="Object"; + class PositionInfo + { + position[]={11060.741,350.38,11495.545}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=784; + type="Land_HelipadCircle_F"; + }; + class Item190 + { + dataType="Object"; + class PositionInfo + { + position[]={11087.933,350.3909,11495.816}; + angles[]={0,0,6.2698579}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=785; + type="Land_HelipadCircle_F"; + }; + class Item191 + { + dataType="Object"; + class PositionInfo + { + position[]={11117.95,350.38623,11494.217}; + angles[]={6.2698579,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=786; + type="Land_HelipadCircle_F"; + }; + class Item192 + { + dataType="Object"; + class PositionInfo + { + position[]={2670.8662,171.66029,12313.188}; + angles[]={6.2778587,5.7454958,6.2485366}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=792; + type="Land_HelipadCircle_F"; + }; + class Item193 + { + dataType="Object"; + class PositionInfo + { + position[]={12033.552,3.3906534,2559.0791}; + angles[]={0,1.4497226,6.2299027}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=794; + type="Land_HelipadCircle_F"; + atlOffset=0.00010633469; + }; + class Item194 + { + dataType="Object"; + class PositionInfo + { + position[]={12155.941,3.4873364,2567.0125}; + angles[]={6.2299027,2.4072502,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=795; + type="Land_HelipadCircle_F"; + }; + class Item195 + { + dataType="Object"; + class PositionInfo + { + position[]={12044.137,8.3234653,2390.395}; + angles[]={0,5.7403111,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=798; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=-0.04157877; + }; + class Item196 + { + dataType="Object"; + class PositionInfo + { + position[]={12177.229,7.2554002,2474.8184}; + angles[]={0,3.0827606,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=799; + type="Land_Cargo_HQ_V1_F"; + }; + class Item197 + { + dataType="Object"; + class PositionInfo + { + position[]={12035.339,8.6425495,2517.1138}; + angles[]={0,1.2595772,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=800; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=0.15754938; + }; + class Item198 + { + dataType="Object"; + class PositionInfo + { + position[]={12187.53,8.4850006,2579.3708}; + angles[]={0,4.020155,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=801; + type="Land_Cargo_Patrol_V1_F"; + atlOffset=4.7683716e-007; + }; + class Item199 + { + dataType="Object"; + class PositionInfo + { + position[]={7262.9946,123.39986,12740.502}; + angles[]={0.071874976,0.90742207,6.2751846}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=803; + type="Land_HelipadSquare_F"; + }; + class Item200 + { + dataType="Object"; + class PositionInfo + { + position[]={12851.293,182.14136,8577.5762}; + angles[]={6.2618566,0,0.069220692}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=806; + type="Land_HelipadCircle_F"; + }; + class Item201 + { + dataType="Layer"; + name="Outposts"; + class Entities + { + items=29; + class Item0 + { + dataType="Marker"; + position[]={2718.575,168.16901,12342.113}; + name="outp_10_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.724; + b=6; + angle=325.74292; + id=793; + atlOffset=0.81913757; + }; + class Item1 + { + dataType="Marker"; + position[]={7336.9668,126.718,12805.1}; + name="outp_12_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.724; + b=6; + angle=112.57198; + id=802; + atlOffset=0.81963348; + }; + class Item2 + { + dataType="Marker"; + position[]={10140.121,406.99799,11776.5}; + name="outp_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.990999; + b=6; + angle=171.41898; + id=789; + atlOffset=1.5009155; + }; + class Item3 + { + dataType="Marker"; + position[]={7431.458,193.395,9736.1191}; + name="outp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.469999; + b=6; + angle=145.61197; + id=804; + atlOffset=-0.00012207031; + }; + class Item4 + { + dataType="Marker"; + position[]={6011.8682,56.337002,10395.732}; + name="outp_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.469999; + b=6; + angle=188.01497; + id=805; + atlOffset=-0.00036239624; + }; + class Item5 + { + dataType="Marker"; + position[]={11008.649,181.319,4184.3911}; + name="outp_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.469999; + b=6; + angle=315.9469; + id=807; + atlOffset=0.00032043457; + }; + class Item6 + { + dataType="Marker"; + position[]={4713.7671,84.865997,3139.3601}; + name="outp_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.469999; + b=6; + angle=251.30298; + id=808; + atlOffset=0.00024414063; + }; + class Item7 + { + dataType="Marker"; + position[]={2414.5701,64.331001,7197.937}; + name="outp_9_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.2; + b=6; + angle=264.005; + id=809; + atlOffset=-0.00011444092; + }; + class Item8 + { + dataType="Marker"; + position[]={11002.235,351.39801,11468.392}; + name="outp_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.358; + b=6; + angle=180; + id=787; + atlOffset=3.0517578e-005; + }; + class Item9 + { + dataType="Marker"; + position[]={10988.86,350.38004,11520.33}; + name="outp_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.358; + b=6; + angle=312.20087; + id=788; + atlOffset=3.0517578e-005; + }; + class Item10 + { + dataType="Marker"; + position[]={11054.033,0,11494.828}; + name="outpost"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=181.69092; + b=97.355957; + id=22; + atlOffset=-350.38; + }; + class Item11 + { + dataType="Marker"; + position[]={10028.207,404.91211,11771.499}; + name="outpost_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=125.02881; + b=102.70508; + id=182; + atlOffset=-4.9578857; + }; + class Item12 + { + dataType="Marker"; + position[]={2684.5491,170.41325,12322.022}; + name="outpost_10"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=58.491611; + b=67.653107; + angle=239.394; + id=191; + }; + class Item13 + { + dataType="Marker"; + position[]={12114.387,3.5452611,2488.3894}; + name="outpost_11"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=155.1949; + b=122.86704; + angle=157.00845; + id=197; + }; + class Item14 + { + dataType="Marker"; + position[]={7304.1992,0,12805.312}; + name="outpost_12"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=97.160553; + b=100.47148; + angle=245.058; + id=359; + atlOffset=-122.38188; + }; + class Item15 + { + dataType="Marker"; + position[]={11031.42,4.3460913e+018,8466.3398}; + name="outpost_13"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=109.69287; + b=88.17334; + id=385; + atlOffset=4.3460913e+018; + }; + class Item16 + { + dataType="Marker"; + position[]={9033.7139,162.623,13305.167}; + name="outpost_14"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=87.72081; + b=64.236038; + angle=104.0977; + id=603; + atlOffset=1.165863; + }; + class Item17 + { + dataType="Marker"; + position[]={7487.0332,1.782996e+012,9652.8242}; + name="outpost_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=80; + b=80; + id=183; + atlOffset=1.782996e+012; + }; + class Item18 + { + dataType="Marker"; + position[]={6007.9375,-1.3937988,10428.126}; + name="outpost_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=67.992432; + b=50; + id=184; + atlOffset=-63.580448; + }; + class Item19 + { + dataType="Marker"; + position[]={12879.342,0,8577.498}; + name="outpost_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=56.727051; + b=53.245117; + id=185; + atlOffset=-182.60187; + }; + class Item20 + { + dataType="Marker"; + position[]={6628.6401,1.8181432e+019,7856.3931}; + name="outpost_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=50; + b=50; + angle=130.597; + id=186; + atlOffset=1.8181432e+019; + }; + class Item21 + { + dataType="Marker"; + position[]={11019.162,4.4101563,4213.5776}; + name="outpost_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=62.983974; + b=64.560669; + angle=247.431; + id=187; + atlOffset=-178.11049; + }; + class Item22 + { + dataType="Marker"; + position[]={4696.688,0,3163.7839}; + name="outpost_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=50; + b=50; + angle=161.63795; + id=188; + atlOffset=-88.578438; + }; + class Item23 + { + dataType="Marker"; + position[]={2672.458,0,2583.1741}; + name="outpost_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=50; + b=50; + angle=126.466; + id=189; + atlOffset=-214.47472; + }; + class Item24 + { + dataType="Marker"; + position[]={2394.196,4.4619592e-021,7234.3418}; + name="outpost_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=70; + b=50; + id=190; + atlOffset=-67.663582; + }; + class Item25 + { + dataType="Marker"; + position[]={10045.5,409.87,11767.539}; + name="outp_1_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=790; + }; + class Item26 + { + dataType="Marker"; + position[]={12122.822,7.4299998,2468.9666}; + name="outp_11_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=797; + }; + class Item27 + { + dataType="Marker"; + position[]={12091.459,7.4299998,2502.563}; + name="outp_11_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=796; + }; + class Item28 + { + dataType="Marker"; + position[]={2557.0723,-27.044952,9039.1172}; + name="outpost_15"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=70; + b=50; + angle=258.68814; + id=863; + atlOffset=-67.663582; + }; + }; + id=810; + atlOffset=3.5775875e+016; + }; + class Item202 + { + dataType="Object"; + class PositionInfo + { + position[]={11141.023,94.625191,7902.5029}; + angles[]={5.9783278,4.7552395,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=811; + type="Land_HelipadCircle_F"; + }; + class Item203 + { + dataType="Object"; + class PositionInfo + { + position[]={11139.286,91.022621,7880.4648}; + angles[]={6.0077043,4.7321076,0.02666023}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=812; + type="Land_HelipadCircle_F"; + }; + class Item204 + { + dataType="Object"; + class PositionInfo + { + position[]={11714.315,18.959999,7010.1431}; + angles[]={0,0.91150618,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=817; + type="Land_HelipadCircle_F"; + }; + class Item205 + { + dataType="Object"; + class PositionInfo + { + position[]={11705.21,150.04536,10195.911}; + angles[]={6.2671833,5.1947112,0.082482211}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=819; + type="Land_HelipadCircle_F"; + atlOffset=6.1035156e-005; + }; + class Item206 + { + dataType="Object"; + class PositionInfo + { + position[]={11722.11,150.0403,10226.516}; + angles[]={0.0026744273,5.1947112,0.074531749}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=820; + type="Land_HelipadCircle_F"; + atlOffset=6.1035156e-005; + }; + class Item207 + { + dataType="Object"; + class PositionInfo + { + position[]={12312.503,190.05493,10256.695}; + angles[]={6.2805109,1.4752672,0.12205864}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=821; + type="Land_HelipadCircle_F"; + }; + class Item208 + { + dataType="Object"; + class PositionInfo + { + position[]={12306.923,189.97144,10281.584}; + angles[]={0.013332055,1.0587685,0.018663859}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=822; + type="Land_HelipadCircle_F"; + }; + class Item209 + { + dataType="Object"; + class PositionInfo + { + position[]={8876.1436,4.79598,6636.1196}; + angles[]={6.1901217,4.5056667,6.2378831}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=826; + type="Land_HelipadCircle_F"; + }; + class Item210 + { + dataType="Object"; + class PositionInfo + { + position[]={8880.1641,3.0980871,6615.8203}; + angles[]={6.2378845,4.4743004,0.0053265258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=827; + type="Land_HelipadCircle_F"; + }; + class Item211 + { + dataType="Object"; + class PositionInfo + { + position[]={9402.4121,41.704609,7568.0669}; + angles[]={6.2805333,1.5771431,0.0026520467}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=829; + type="Land_HelipadSquare_F"; + }; + class Item212 + { + dataType="Object"; + class PositionInfo + { + position[]={5540.3779,4.1103911,11985.606}; + angles[]={0,3.7989879,0.018660666}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=832; + type="Land_HelipadSquare_F"; + }; + class Item213 + { + dataType="Object"; + class PositionInfo + { + position[]={5461.8545,4.04,11894.1}; + angles[]={0,5.2854819,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=833; + type="Land_HelipadCircle_F"; + }; + class Item214 + { + dataType="Layer"; + name="Resources"; + class Entities + { + items=20; + class Item0 + { + dataType="Marker"; + position[]={12391.104,30.995001,7877.248}; + name="reso_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.469999; + b=6; + angle=259.88397; + id=814; + atlOffset=-0.00071144104; + }; + class Item1 + { + dataType="Marker"; + position[]={11749.992,18.261,6918.334}; + name="reso_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.9069996; + b=6; + angle=328.56592; + id=815; + atlOffset=0.78619957; + }; + class Item2 + { + dataType="Marker"; + position[]={11746.982,16.769958,6888.104}; + name="reso_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=9.9069996; + b=6; + angle=234.88091; + id=816; + atlOffset=0.97342968; + }; + class Item3 + { + dataType="Marker"; + position[]={5515.2959,4.8260002,11968.466}; + name="reso_6_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=19.632999; + b=6; + angle=309.76492; + id=831; + atlOffset=0.78600025; + }; + class Item4 + { + dataType="Marker"; + position[]={11785.289,158.909,10265.006}; + name="reso_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=31.993; + b=6; + angle=186.02695; + id=818; + atlOffset=1.7094421; + }; + class Item5 + { + dataType="Marker"; + position[]={12274.201,182.89944,10371.215}; + name="reso_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.872005; + b=6; + angle=166.72569; + id=823; + atlOffset=1.7094421; + }; + class Item6 + { + dataType="Marker"; + position[]={8879.5566,6.1360002,6686.6128}; + name="reso_4_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.087; + b=6; + angle=161.105; + id=828; + atlOffset=0.96119213; + }; + class Item7 + { + dataType="Marker"; + position[]={9463.8105,42.598999,7531.5508}; + name="reso_5_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=27.031; + b=6; + angle=275.254; + id=830; + atlOffset=0.73569107; + }; + class Item8 + { + dataType="Marker"; + position[]={8857.1807,187.39999,11861.73}; + name="reso_7_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=15.85; + b=6; + angle=184.02693; + id=834; + atlOffset=1.6584015; + }; + class Item9 + { + dataType="Marker"; + position[]={11195.073,91.431,7890.6592}; + name="reso_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.469999; + b=6; + angle=191.44501; + id=813; + atlOffset=-0.00035095215; + }; + class Item10 + { + dataType="Marker"; + position[]={11063.061,-5.561666e-034,7914.4282}; + name="resource"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=200; + b=100; + angle=190.62489; + id=21; + atlOffset=-94.23735; + }; + class Item11 + { + dataType="Marker"; + position[]={12399.69,-2.4187405e-033,7829.9102}; + name="resource_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=100; + b=50; + angle=84.14196; + id=199; + atlOffset=-32.302212; + }; + class Item12 + { + dataType="Marker"; + position[]={11742.922,0,6933.8647}; + name="resource_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=100; + b=50; + angle=241.38098; + id=200; + atlOffset=-18.562902; + }; + class Item13 + { + dataType="Marker"; + position[]={11914.527,2.8714324e+037,10292.789}; + name="resource_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=300; + b=414.61935; + angle=274.83386; + id=201; + atlOffset=2.8714324e+037; + }; + class Item14 + { + dataType="Marker"; + position[]={8830.1475,2.8714324e+037,6643.9351}; + name="resource_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=100; + b=80; + angle=162.50697; + id=202; + atlOffset=2.8714324e+037; + }; + class Item15 + { + dataType="Marker"; + position[]={9424.9971,2.8714324e+037,7499.625}; + name="resource_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=60; + b=80; + angle=178.66571; + id=203; + atlOffset=2.8714324e+037; + }; + class Item16 + { + dataType="Marker"; + position[]={5495.6045,2.8714324e+037,11951.959}; + name="resource_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=74.848274; + angle=215.83766; + id=204; + atlOffset=2.8714324e+037; + }; + class Item17 + { + dataType="Marker"; + position[]={8864.4775,0,11920.42}; + name="resource_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=50; + b=50; + angle=67.956985; + id=205; + atlOffset=-183.87277; + }; + class Item18 + { + dataType="Marker"; + position[]={12207.41,202.92799,10504.671}; + name="reso_3_mortar_4"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=825; + atlOffset=-9.1552734e-005; + }; + class Item19 + { + dataType="Marker"; + position[]={12131.879,216.38901,10361.087}; + name="reso_3_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=824; + atlOffset=-0.00012207031; + }; + }; + id=836; + atlOffset=3.3649598e+036; + }; + class Item215 + { + dataType="Object"; + class PositionInfo + { + position[]={5378.1025,2.21,10130.181}; + angles[]={0,3.1346879,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=839; + type="Land_HelipadSquare_F"; + }; + class Item216 + { + dataType="Object"; + class PositionInfo + { + position[]={5406.3584,2.21,10130.243}; + angles[]={0,3.1628277,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=840; + type="Land_HelipadSquare_F"; + }; + class Item217 + { + dataType="Object"; + class PositionInfo + { + position[]={9803.9082,2.3099999,13617.943}; + angles[]={0,1.7441468,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=843; + type="Land_HelipadSquare_F"; + }; + class Item218 + { + dataType="Object"; + class PositionInfo + { + position[]={13233.026,2.55,12496.956}; + angles[]={0,5.7113914,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=847; + type="Land_HelipadSquare_F"; + }; + class Item219 + { + dataType="Object"; + class PositionInfo + { + position[]={13265.007,2.55,12517.328}; + angles[]={0,5.7113914,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=848; + type="Land_HelipadSquare_F"; + }; + class Item220 + { + dataType="Object"; + class PositionInfo + { + position[]={13300.098,2.55,12539.419}; + angles[]={0,5.7505007,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=849; + type="Land_HelipadSquare_F"; + }; + class Item221 + { + dataType="Layer"; + name="Seaports"; + class Entities + { + items=19; + class Item0 + { + dataType="Marker"; + position[]={9926.2949,3.096,13545.935}; + name="seap_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=8.1630001; + b=6; + angle=5.967; + id=844; + atlOffset=0.78600001; + }; + class Item1 + { + dataType="Marker"; + position[]={10045.477,3.096,13537.958}; + name="seap_1_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=14.69718; + b=6; + angle=2.9611008; + id=846; + atlOffset=0.78600001; + }; + class Item2 + { + dataType="Marker"; + position[]={13175.366,3.336,12401.689}; + name="seap_2_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=25.462; + b=6; + angle=239.75392; + id=850; + atlOffset=0.78600001; + }; + class Item3 + { + dataType="Marker"; + position[]={13363.21,3.336,12134.26}; + name="seap_2_vehicle_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=48.355259; + b=6; + angle=201.90482; + id=852; + atlOffset=0.78600001; + }; + class Item4 + { + dataType="Marker"; + position[]={11692.045,3.846,2759.4641}; + name="seap_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.922001; + b=6; + angle=87.263; + id=853; + atlOffset=0.78600001; + }; + class Item5 + { + dataType="Marker"; + position[]={5559.8042,2.289,4033.8689}; + name="seap_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=11.104; + b=6; + angle=135.69296; + id=854; + atlOffset=0.76751328; + }; + class Item6 + { + dataType="Marker"; + position[]={5637.5068,2.1575131,4027.7695}; + name="seap_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=8.779129; + b=6; + angle=312.65286; + id=855; + atlOffset=0.76751316; + }; + class Item7 + { + dataType="Marker"; + position[]={1719.467,2.171,11975.972}; + name="seap_5_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.912001; + b=6; + angle=62.794994; + id=856; + atlOffset=0.74228048; + }; + class Item8 + { + dataType="Marker"; + position[]={1698.0518,2.1695347,12010.122}; + name="seap_5_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.912001; + b=6; + angle=60.981033; + id=857; + atlOffset=0.74228048; + }; + class Item9 + { + dataType="Marker"; + position[]={5463.04,2.9960001,10068.318}; + name="seap_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.954; + b=6; + angle=162.29193; + id=837; + atlOffset=0.78600001; + }; + class Item10 + { + dataType="Marker"; + position[]={5199.0396,4.2420912,10007.934}; + name="seap_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.638967; + b=6; + angle=281.4566; + id=838; + atlOffset=0.81891489; + }; + class Item11 + { + dataType="Marker"; + position[]={5361.0322,2.21,10077.443}; + name="seaport"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=168.77954; + b=117.86035; + id=23; + }; + class Item12 + { + dataType="Marker"; + position[]={9914.6182,0,13590.578}; + name="seaport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=164.80374; + b=79.520996; + angle=8.9005032; + id=192; + atlOffset=-2.3099999; + }; + class Item13 + { + dataType="Marker"; + position[]={13334.84,0,12379.788}; + name="seaport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=200; + b=200; + angle=237.51813; + id=193; + atlOffset=-2.55; + }; + class Item14 + { + dataType="Marker"; + position[]={11774.358,0.85009766,2744.5486}; + name="seaport_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=150; + b=100; + id=194; + atlOffset=-2.2099023; + }; + class Item15 + { + dataType="Marker"; + position[]={5594.9302,1.39,3996.49}; + name="seaport_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=100; + b=75; + angle=128.368; + id=195; + }; + class Item16 + { + dataType="Marker"; + position[]={1741.0649,-3.6915083,11959.301}; + name="seaport_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorWEST"; + a=80; + b=100; + angle=254.67094; + id=196; + atlOffset=-5.5342383; + }; + class Item17 + { + dataType="Marker"; + position[]={9929.4102,-6.7270002,13681.669}; + name="seap_1_mortar_3"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=842; + atlOffset=0.0004119873; + }; + class Item18 + { + dataType="Marker"; + position[]={5359.3052,2.21,10229.499}; + name="seap_mortar_2"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=8.2089996; + b=8.0620003; + id=841; + }; + }; + id=858; + atlOffset=-33.276302; }; - class Item183 + class Item222 { dataType="Object"; class PositionInfo { - position[]={5338.4258,27.61157,14580.147}; + position[]={2564.1733,48.122353,9042.0791}; }; side="Empty"; - flags=4; + flags=5; class Attributes { - init="if !(isMultiplayer) then {deleteVehicle this}"; }; - id=689; - type="Flag_Viper_F"; + id=859; + type="Land_ControlTower_01_F"; + atlOffset=0.022064209; }; - class Item184 + class Item223 { - dataType="Logic"; + dataType="Object"; class PositionInfo { - position[]={9191.6787,220.34976,8721.3008}; - angles[]={0,0,6.2192717}; + position[]={2550.2605,44.226475,9069.4053}; + angles[]={0,2.2690396,0}; }; - name="hc_1"; - isPlayable=1; - id=690; - type="HeadlessClient_F"; - atlOffset=-0.02305603; + side="Empty"; + flags=5; + class Attributes + { + }; + id=860; + type="Land_Cargo_Patrol_V4_F"; }; - class Item185 + class Item224 { - dataType="Logic"; + dataType="Object"; class PositionInfo { - position[]={9192.624,220.31035,8720.4785}; - angles[]={0,0,6.2192717}; + position[]={2544.3628,44.636456,9039.5664}; + angles[]={0,1.6726182,0}; }; - name="hc_2"; - isPlayable=1; - id=691; - type="HeadlessClient_F"; - atlOffset=-0.024688721; + side="Empty"; + flags=5; + class Attributes + { + }; + id=861; + type="Land_Cargo_Patrol_V4_F"; }; - class Item186 + class Item225 + { + dataType="Marker"; + position[]={2113,4.3460913e+018,8374}; + name="control_52"; + markerType="RECTANGLE"; + type="rectangle"; + a=32.497253; + b=37.803223; + id=864; + atlOffset=4.3460913e+018; + }; + class Item226 + { + dataType="Marker"; + position[]={4903.9785,4.3228164,8530.4082}; + name="seaSpawn_33"; + type="Empty"; + id=865; + atlOffset=4.7259989; + }; + class Item227 + { + dataType="Marker"; + position[]={5010.6436,4.7579079,8473.7617}; + name="seaSpawn_34"; + type="Empty"; + id=866; + atlOffset=4.7259989; + }; + class Item228 { dataType="Object"; class PositionInfo { - position[]={9198.2598,220.81984,8730.8447}; - angles[]={6.2086601,0,6.179565}; + position[]={12234.5,11.859666,12939}; + angles[]={0,0.30171326,0}; }; side="Empty"; - flags=4; + flags=5; class Attributes { - name="fireX"; - }; - id=695; - type="Land_TentSolar_01_olive_F"; - atlOffset=-0.046585083; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; }; + id=871; + type="Land_Cargo_Patrol_V4_F"; }; - class Item187 + class Item229 { dataType="Logic"; class PositionInfo { - position[]={9181.2354,221.07274,8717.4609}; + position[]={12232.098,6.9521437,12930.928}; }; - id=697; - type="ModuleCurator_F"; + areaSize[]={5,-1,5}; + flags=1; + id=872; + type="ModuleHideTerrainObjects_F"; + atlOffset=4.7683716e-007; class CustomAttributes { class Attribute0 { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; class Value { class data @@ -6046,17 +8275,17 @@ class Mission { type[]= { - "STRING" + "SCALAR" }; }; - value="#adminLogged"; + value=4; }; }; }; class Attribute1 { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; class Value { class data @@ -6065,122 +8294,81 @@ class Mission { type[]= { - "SCALAR" + "BOOL" }; }; value=0; }; }; }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - }; - nAttributes=4; + nAttributes=2; }; }; - class Item188 + class Item230 { - dataType="Marker"; - position[]={7064.5781,2.5280001,7365.9419}; - name="airport"; - markerType="ELLIPSE"; - type="ellipse"; - colorName="ColorEAST"; - a=282.12701; - b=395.642; - angle=348.02991; - id=698; - atlOffset=-0.13199997; + dataType="Object"; + class PositionInfo + { + position[]={11667,11.855,13097.5}; + angles[]={0,0.34413719,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=873; + type="Land_Cargo_Patrol_V4_F"; + atlOffset=-4.7683716e-007; }; - class Item189 + class Item231 { dataType="Marker"; - position[]={1841.3149,102.9043,12046.82}; - name="island_1"; + position[]={12588.62,12.005551,12606.07}; + name="control_53"; markerType="RECTANGLE"; type="rectangle"; - fillName="Border"; - a=9.4702606; - b=8.9108276; - angle=28.575001; - drawBorder=1; - id=712; - atlOffset=98.114136; + a=50; + b=50; + id=874; + atlOffset=0.025326729; }; - class Item190 + class Item232 { - dataType="Marker"; - position[]={5478.9111,3.6075108,4052.4224}; - name="island_2"; - markerType="RECTANGLE"; - type="rectangle"; - fillName="Border"; - a=24.489929; - b=20.66391; - angle=315.12692; - drawBorder=1; - id=713; + dataType="Object"; + class PositionInfo + { + position[]={2566.0698,55.171875,9016.1328}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=875; + type="Land_Communication_F"; + atlOffset=0.0031356812; }; - class Item191 + class Item233 { - dataType="Marker"; - position[]={11311.72,65.052895,5980.4702}; - name="island_4"; - markerType="RECTANGLE"; - type="rectangle"; - fillName="Border"; - a=9.3255672; - b=9.510232; - angle=317.90918; - drawBorder=1; - id=715; - atlOffset=45.788303; + dataType="Logic"; + class PositionInfo + { + position[]={9185.168,220.84666,8724.4121}; + }; + name="HC_commanderX"; + id=876; + type="HighCommand"; }; - class Item192 + class Item234 { dataType="Logic"; class PositionInfo { - position[]={9204.4336,219.98885,8716.6611}; + position[]={9188.5684,220.62469,8724.3184}; }; - name="pathfinding"; - id=716; - type="Logic"; + id=877; + type="HighCommandSubordinate"; }; }; class Connections @@ -6195,8 +8383,8 @@ class Mission class Item0 { linkID=0; - item0=26; - item1=27; + item0=876; + item1=877; class CustomData { type="Sync"; @@ -6206,7 +8394,7 @@ class Mission { linkID=1; item0=311; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6216,7 +8404,7 @@ class Mission { linkID=2; item0=360; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6226,7 +8414,7 @@ class Mission { linkID=3; item0=654; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6236,7 +8424,7 @@ class Mission { linkID=4; item0=656; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6246,7 +8434,7 @@ class Mission { linkID=5; item0=658; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6256,7 +8444,7 @@ class Mission { linkID=6; item0=660; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6266,7 +8454,7 @@ class Mission { linkID=7; item0=662; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6276,7 +8464,7 @@ class Mission { linkID=8; item0=664; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6286,7 +8474,7 @@ class Mission { linkID=9; item0=666; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6296,7 +8484,7 @@ class Mission { linkID=10; item0=668; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6306,7 +8494,7 @@ class Mission { linkID=11; item0=670; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6316,7 +8504,7 @@ class Mission { linkID=12; item0=672; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6326,7 +8514,7 @@ class Mission { linkID=13; item0=674; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6336,7 +8524,7 @@ class Mission { linkID=14; item0=676; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6346,7 +8534,7 @@ class Mission { linkID=15; item0=678; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6356,7 +8544,7 @@ class Mission { linkID=16; item0=680; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6366,7 +8554,7 @@ class Mission { linkID=17; item0=682; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6376,7 +8564,7 @@ class Mission { linkID=18; item0=684; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6386,7 +8574,7 @@ class Mission { linkID=19; item0=686; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6396,7 +8584,7 @@ class Mission { linkID=20; item0=688; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6406,7 +8594,7 @@ class Mission { linkID=21; item0=362; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6416,7 +8604,7 @@ class Mission { linkID=22; item0=363; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6426,7 +8614,7 @@ class Mission { linkID=23; item0=364; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6436,7 +8624,7 @@ class Mission { linkID=24; item0=459; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6446,7 +8634,7 @@ class Mission { linkID=25; item0=461; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6456,7 +8644,7 @@ class Mission { linkID=26; item0=463; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6466,7 +8654,7 @@ class Mission { linkID=27; item0=465; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6476,7 +8664,7 @@ class Mission { linkID=28; item0=467; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6486,7 +8674,7 @@ class Mission { linkID=29; item0=471; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6496,7 +8684,7 @@ class Mission { linkID=30; item0=473; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6506,7 +8694,7 @@ class Mission { linkID=31; item0=475; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6516,7 +8704,7 @@ class Mission { linkID=32; item0=477; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6526,7 +8714,7 @@ class Mission { linkID=33; item0=479; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6536,7 +8724,7 @@ class Mission { linkID=34; item0=481; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6546,7 +8734,7 @@ class Mission { linkID=35; item0=483; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6556,7 +8744,7 @@ class Mission { linkID=36; item0=485; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6566,7 +8754,7 @@ class Mission { linkID=37; item0=487; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6576,7 +8764,7 @@ class Mission { linkID=38; item0=489; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6586,7 +8774,7 @@ class Mission { linkID=39; item0=491; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6596,7 +8784,7 @@ class Mission { linkID=40; item0=493; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6606,7 +8794,7 @@ class Mission { linkID=41; item0=495; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6616,7 +8804,7 @@ class Mission { linkID=42; item0=497; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6626,7 +8814,7 @@ class Mission { linkID=43; item0=499; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6636,7 +8824,7 @@ class Mission { linkID=44; item0=501; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6646,7 +8834,7 @@ class Mission { linkID=45; item0=503; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6656,7 +8844,7 @@ class Mission { linkID=46; item0=505; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6666,7 +8854,7 @@ class Mission { linkID=47; item0=630; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6676,7 +8864,7 @@ class Mission { linkID=48; item0=632; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6686,7 +8874,7 @@ class Mission { linkID=49; item0=634; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6696,7 +8884,7 @@ class Mission { linkID=50; item0=636; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6706,7 +8894,7 @@ class Mission { linkID=51; item0=638; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6716,7 +8904,7 @@ class Mission { linkID=52; item0=640; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6726,7 +8914,7 @@ class Mission { linkID=53; item0=642; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6736,7 +8924,7 @@ class Mission { linkID=54; item0=644; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6746,7 +8934,7 @@ class Mission { linkID=55; item0=646; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6756,7 +8944,7 @@ class Mission { linkID=56; item0=648; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6766,7 +8954,7 @@ class Mission { linkID=57; item0=650; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6776,7 +8964,7 @@ class Mission { linkID=58; item0=652; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6786,7 +8974,7 @@ class Mission { linkID=59; item0=361; - item1=26; + item1=876; class CustomData { type="Sync"; @@ -6796,7 +8984,7 @@ class Mission { linkID=60; item0=468; - item1=26; + item1=876; class CustomData { type="Sync"; diff --git a/A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/roadsDB.sqf b/Map-Templates/Antistasi-WotP.Tanoa/roadsDB.sqf similarity index 100% rename from A3-Antistasi/Templates/A3-WotPTemplate.Tanoa/roadsDB.sqf rename to Map-Templates/Antistasi-WotP.Tanoa/roadsDB.sqf diff --git a/PrepareMissionForPacking.ps1 b/PrepareMissionForPacking.ps1 new file mode 100644 index 0000000000..f3367934eb --- /dev/null +++ b/PrepareMissionForPacking.ps1 @@ -0,0 +1,25 @@ +$root = $PSScriptRoot; + +$folderForPreparedMissions = New-Item -Path $root -Name "PreparedMissions" -ItemType "directory" -Force; + +Remove-Item $folderForPreparedMissions -Recurse; + +$missionTemplateFolders = Get-ChildItem -Path ".\Map-Templates" ; + +$mainDataPath = Join-Path $root 'A3-Antistasi'; +$stringTablePath = Join-Path $root 'A3-Antistasi\Stringtable.xml'; + +$stringTable = New-Object -TypeName XML; +$stringTable.Load($stringTablePath); + +$versionId = $stringTable.Project.Package.Container | Where-Object { $_.name -eq "credits_generic" } | ForEach-Object {$_.Key} | Where-Object {$_.ID -eq "STR_antistasi_credits_generic_version_text"} | ForEach {$_.Original}; +$formattedVersionId = $versionId.Split("\.") -join "-"; + +ForEach ($templateFolder in $missionTemplateFolders) { + $folderName = $templateFolder.Name; + $pair = $folderName.Split("\."); + $missionFolderName = $pair[0] + "-" + $formattedVersionId + "." + $pair[1]; + $destinationPath = $(Join-Path $folderForPreparedMissions.FullName $missionFolderName); + Copy-Item -Path $mainDataPath -Destination $destinationPath -Recurse; + Copy-Item -Path $(Join-Path $templateFolder.FullName "*") -Destination $destinationPath -Recurse -Force; +} \ No newline at end of file diff --git a/README.md b/README.md index 5cc0b544fa..021f4b31b4 100644 --- a/README.md +++ b/README.md @@ -56,12 +56,10 @@ Unstable Branch: [![Build Status](https://travis-ci.com/official-antistasi-commu ### How to build from GIT - Download ZIP file - Extract ZIP -- Copy the following files from the Template `A3-Antistasi/Templates/A3-*` for your mission of choice - - mission.sqm - - description.ext - - pic.jpg -- Paste them into the root of `A3-Antistasi/` -- Use a PBO Packager to Pack `A3-Antistasi/` +- Right click on `PrepareMissionsForPacking.ps1` and select 'Open with PowerShell' +- The script will create a new folder called `PreparedMissions/` +- Inside this folder you will find multiple subfolders, labeled `Antistasi-VersionNumber.MapName` +- Use a PBO Packager to pack the any of these mission folders ### Known Issues: For a list of known issues, please see the [Issues on Github](https://github.com/official-antistasi-community/A3-Antistasi-1.4/issues). diff --git a/Tools/Antistasi Dev Deploy.exe b/Tools/Antistasi Dev Deploy.exe new file mode 100644 index 0000000000..dadd994123 Binary files /dev/null and b/Tools/Antistasi Dev Deploy.exe differ